From 66a852234d4714bdba9da19b5e3adde2773e0030 Mon Sep 17 00:00:00 2001 From: David Wayne Smiley Date: Mon, 20 Feb 2012 22:45:32 +0000 Subject: [PATCH] Initial copy of https://lucene-spatial-playground.googlecode.com/svn/trunk/spatial-lucene git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3795_lsp_spatial_module@1291499 13f79535-47bb-0310-9956-ffa450edef68 --- modules/spatial-lucene/LICENSE.txt | 202 + modules/spatial-lucene/pom.xml | 105 + .../spatial/base/context/ParseUtils.java | 157 + .../spatial/base/context/SpatialContext.java | 249 + .../base/context/SpatialContextFactory.java | 114 + .../context/simple/SimpleSpatialContext.java | 139 + .../simple/SimpleSpatialContextFactory.java | 31 + .../distance/AbstractDistanceCalculator.java | 36 + .../base/distance/CartesianDistCalc.java | 98 + .../base/distance/DistanceCalculator.java | 45 + .../spatial/base/distance/DistanceUnits.java | 120 + .../spatial/base/distance/DistanceUtils.java | 427 + .../base/distance/GeodesicSphereDistCalc.java | 133 + .../spatial/base/distance/package-info.java | 22 + .../base/exception/InvalidShapeException.java | 29 + .../exception/InvalidSpatialArgument.java | 29 + .../UnsupportedSpatialOperation.java | 27 + .../lucene/spatial/base/io/LineReader.java | 113 + .../spatial/base/io/geonames/Geoname.java | 73 + .../base/io/geonames/GeonamesReader.java | 40 + .../spatial/base/io/sample/SampleData.java | 41 + .../base/io/sample/SampleDataReader.java | 45 + .../lucene/spatial/base/package-info.java | 23 + .../lucene/spatial/base/prefix/Node.java | 215 + .../base/prefix/SpatialPrefixTree.java | 246 + .../base/prefix/SpatialPrefixTreeFactory.java | 95 + .../prefix/geohash/GeohashPrefixTree.java | 150 + .../base/prefix/geohash/GeohashUtils.java | 196 + .../spatial/base/prefix/package-info.java | 28 + .../base/prefix/quad/QuadPrefixTree.java | 301 + .../spatial/base/query/SpatialArgs.java | 134 + .../spatial/base/query/SpatialArgsParser.java | 88 + .../spatial/base/query/SpatialOperation.java | 107 + .../spatial/base/query/package-info.java | 26 + .../lucene/spatial/base/shape/Circle.java | 25 + .../lucene/spatial/base/shape/MultiShape.java | 108 + .../lucene/spatial/base/shape/Point.java | 24 + .../lucene/spatial/base/shape/Rectangle.java | 40 + .../lucene/spatial/base/shape/Shape.java | 48 + .../spatial/base/shape/SpatialRelation.java | 69 + .../spatial/base/shape/simple/CircleImpl.java | 234 + .../base/shape/simple/GeoCircleImpl.java | 226 + .../spatial/base/shape/simple/PointImpl.java | 96 + .../base/shape/simple/RectangleImpl.java | 248 + .../spatial/benchmark/IndexShapeTask.java | 71 + .../spatial/benchmark/QueryShapeTask.java | 52 + .../spatial/benchmark/ShapeGenerator.java | 37 + .../spatial/benchmark/StrategyAware.java | 32 + .../strategy/SimpleSpatialFieldInfo.java | 32 + .../spatial/strategy/SpatialFieldInfo.java | 24 + .../spatial/strategy/SpatialStrategy.java | 82 + .../lucene/spatial/strategy/package-info.java | 26 + .../PointPrefixTreeFieldCacheProvider.java | 43 + .../strategy/prefix/PrefixCellsTokenizer.java | 89 + .../strategy/prefix/PrefixTreeStrategy.java | 174 + .../prefix/RecursivePrefixTreeFilter.java | 192 + .../prefix/RecursivePrefixTreeStrategy.java | 76 + .../prefix/TermQueryPrefixTreeStrategy.java | 62 + .../spatial/strategy/prefix/package-info.java | 22 + .../util/CachedDistanceValueSource.java | 106 + .../util/CachingDoubleValueSource.java | 91 + .../strategy/util/NumericFieldInfo.java | 51 + .../strategy/util/ShapeFieldCache.java | 46 + .../util/ShapeFieldCacheProvider.java | 82 + .../strategy/util/StringListTokenizer.java | 58 + .../spatial/strategy/util/TruncateFilter.java | 49 + .../strategy/util/ValueSourceFilter.java | 59 + .../strategy/vector/DistanceValueSource.java | 130 + .../strategy/vector/TwoDoublesFieldInfo.java | 48 + .../strategy/vector/TwoDoublesStrategy.java | 236 + .../org/apache/lucene/spatial/RandomSeed.java | 34 + .../lucene/spatial/SpatialMatchConcern.java | 32 + .../lucene/spatial/SpatialTestCase.java | 140 + .../lucene/spatial/SpatialTestQuery.java | 87 + .../lucene/spatial/StrategyTestCase.java | 150 + .../lucene/spatial/TestTestFramework.java | 62 + .../context/BaseSpatialContextTestCase.java | 169 + .../context/SpatialContextFactoryTest.java | 94 + .../base/context/SpatialContextTestCase.java | 31 + .../spatial/base/distance/TestDistances.java | 269 + .../base/prefix/SpatialPrefixTreeTest.java | 63 + .../base/prefix/TestGridMatchInfo.java | 68 + .../base/prefix/geohash/TestGeohashUtils.java | 103 + .../base/shape/AbstractTestShapes.java | 261 + .../spatial/base/shape/TestShapes2D.java | 94 + .../spatial/base/shape/TestShapesGeo.java | 165 + ...seRecursivePrefixTreeStrategyTestCase.java | 57 + .../RecursivePrefixTreeStrategyTestCase.java | 36 + .../prefix/TestSpatialPrefixField.java | 68 + .../TestTermQueryPrefixGridStrategy.java | 64 + .../BaseTwoDoublesStrategyTestCase.java | 48 + .../vector/TwoDoublesStrategyTestCase.java | 29 + .../test/resources/cities-IsWithin-BBox.txt | 7 + .../test/resources/data/countries-bbox.txt | 249 + .../test/resources/data/countries-poly.txt | 249 + .../src/test/resources/data/geonames-IE.txt | 22929 ++++++++++++++++ .../src/test/resources/data/states-bbox.txt | 52 + .../src/test/resources/data/states-poly.txt | 52 + .../resources/data/world-cities-points.txt | 2680 ++ .../test/resources/states-Intersects-BBox.txt | 3 + .../test/resources/states-IsWithin-BBox.txt | 4 + 101 files changed, 35321 insertions(+) create mode 100644 modules/spatial-lucene/LICENSE.txt create mode 100644 modules/spatial-lucene/pom.xml create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/ParseUtils.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContext.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContextFactory.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContext.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContextFactory.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/AbstractDistanceCalculator.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/CartesianDistCalc.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceCalculator.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUnits.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUtils.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/GeodesicSphereDistCalc.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/package-info.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidShapeException.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidSpatialArgument.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/UnsupportedSpatialOperation.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/LineReader.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/Geoname.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/GeonamesReader.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleData.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleDataReader.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/package-info.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/Node.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTree.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeFactory.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashPrefixTree.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashUtils.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/package-info.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/quad/QuadPrefixTree.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgs.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgsParser.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialOperation.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/package-info.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Circle.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/MultiShape.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Point.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Rectangle.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Shape.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/SpatialRelation.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/CircleImpl.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/GeoCircleImpl.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/PointImpl.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/RectangleImpl.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/IndexShapeTask.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/QueryShapeTask.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/ShapeGenerator.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/StrategyAware.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SimpleSpatialFieldInfo.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialFieldInfo.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialStrategy.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/package-info.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PointPrefixTreeFieldCacheProvider.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixCellsTokenizer.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixTreeStrategy.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeFilter.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategy.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/TermQueryPrefixTreeStrategy.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/package-info.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/CachedDistanceValueSource.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/CachingDoubleValueSource.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCache.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCacheProvider.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/StringListTokenizer.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/TruncateFilter.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ValueSourceFilter.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/DistanceValueSource.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesFieldInfo.java create mode 100644 modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategy.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/RandomSeed.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialMatchConcern.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestCase.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestQuery.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/StrategyTestCase.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/TestTestFramework.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/BaseSpatialContextTestCase.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextFactoryTest.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextTestCase.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/distance/TestDistances.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeTest.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/TestGridMatchInfo.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/geohash/TestGeohashUtils.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/AbstractTestShapes.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapes2D.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapesGeo.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/BaseRecursivePrefixTreeStrategyTestCase.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategyTestCase.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestSpatialPrefixField.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestTermQueryPrefixGridStrategy.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/BaseTwoDoublesStrategyTestCase.java create mode 100644 modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategyTestCase.java create mode 100644 modules/spatial-lucene/src/test/resources/cities-IsWithin-BBox.txt create mode 100644 modules/spatial-lucene/src/test/resources/data/countries-bbox.txt create mode 100644 modules/spatial-lucene/src/test/resources/data/countries-poly.txt create mode 100644 modules/spatial-lucene/src/test/resources/data/geonames-IE.txt create mode 100644 modules/spatial-lucene/src/test/resources/data/states-bbox.txt create mode 100644 modules/spatial-lucene/src/test/resources/data/states-poly.txt create mode 100644 modules/spatial-lucene/src/test/resources/data/world-cities-points.txt create mode 100644 modules/spatial-lucene/src/test/resources/states-Intersects-BBox.txt create mode 100644 modules/spatial-lucene/src/test/resources/states-IsWithin-BBox.txt diff --git a/modules/spatial-lucene/LICENSE.txt b/modules/spatial-lucene/LICENSE.txt new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/modules/spatial-lucene/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/modules/spatial-lucene/pom.xml b/modules/spatial-lucene/pom.xml new file mode 100644 index 00000000000..c4186b5f510 --- /dev/null +++ b/modules/spatial-lucene/pom.xml @@ -0,0 +1,105 @@ + + + + 4.0.0 + + + lucene-spatial-parent + org.apache.lucene.spatial + 0.1-SNAPSHOT + ../pom.xml + + + org.apache.lucene.spatial + spatial-lucene + 0.1-SNAPSHOT + + Spatial - Lucene + + lucene stuff + + jar + + + + + commons-lang + commons-lang + 2.5 + + + + + + org.apache.lucene + lucene-test-framework + ${lucene.version} + test + + + + org.apache.lucene + lucene-core + ${lucene.version} + + + + org.apache.lucene + lucene-queries + ${lucene.version} + + + + org.apache.lucene + lucene-analyzers-common + ${lucene.version} + + + + org.apache.lucene + lucene-benchmark + ${lucene.version} + true + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.1 + + + package + + test-jar + + + + + + + + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/ParseUtils.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/ParseUtils.java new file mode 100644 index 00000000000..c6ab3bf31ae --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/ParseUtils.java @@ -0,0 +1,157 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.context; + +import org.apache.lucene.spatial.base.exception.InvalidShapeException; + +/** + * Utility methods related to parsing shapes. + * Methods here were formerly in DistanceUtils. + */ +public class ParseUtils { + private ParseUtils() { + } + + /** + * Given a string containing dimension values encoded in it, separated by commas, return a String array of length dimension + * containing the values. + * + * @param out A preallocated array. Must be size dimension. If it is not it will be resized. + * @param externalVal The value to parse + * @param dimension The expected number of values for the point + * @return An array of the values that make up the point (aka vector) + * @throws org.apache.lucene.spatial.base.exception.InvalidShapeException if the dimension specified does not match the number of values in the externalValue. + */ + public static String[] parsePoint(String[] out, String externalVal, int dimension) throws InvalidShapeException { + //TODO: Should we support sparse vectors? + if (out == null || out.length != dimension) out = new String[dimension]; + int idx = externalVal.indexOf(','); + int end = idx; + int start = 0; + int i = 0; + if (idx == -1 && dimension == 1 && externalVal.length() > 0) {//we have a single point, dimension better be 1 + out[0] = externalVal.trim(); + i = 1; + } else if (idx > 0) {//if it is zero, that is an error + //Parse out a comma separated list of point values, as in: 73.5,89.2,7773.4 + for (; i < dimension; i++) { + while (start < end && externalVal.charAt(start) == ' ') start++; + while (end > start && externalVal.charAt(end - 1) == ' ') end--; + if (start == end) { + break; + } + out[i] = externalVal.substring(start, end); + start = idx + 1; + end = externalVal.indexOf(',', start); + idx = end; + if (end == -1) { + end = externalVal.length(); + } + } + } + if (i != dimension) { + throw new InvalidShapeException("incompatible dimension (" + dimension + + ") and values (" + externalVal + "). Only " + i + " values specified"); + } + return out; + } + + /** + * Given a string containing dimension values encoded in it, separated by commas, return a double array of length dimension + * containing the values. + * + * @param out A preallocated array. Must be size dimension. If it is not it will be resized. + * @param externalVal The value to parse + * @param dimension The expected number of values for the point + * @return An array of the values that make up the point (aka vector) + * @throws org.apache.lucene.spatial.base.exception.InvalidShapeException if the dimension specified does not match the number of values in the externalValue. + */ + public static double[] parsePointDouble(double[] out, String externalVal, int dimension) throws InvalidShapeException{ + if (out == null || out.length != dimension) out = new double[dimension]; + int idx = externalVal.indexOf(','); + int end = idx; + int start = 0; + int i = 0; + if (idx == -1 && dimension == 1 && externalVal.length() > 0) {//we have a single point, dimension better be 1 + out[0] = Double.parseDouble(externalVal.trim()); + i = 1; + } else if (idx > 0) {//if it is zero, that is an error + //Parse out a comma separated list of point values, as in: 73.5,89.2,7773.4 + for (; i < dimension; i++) { + //TODO: abstract common code with other parsePoint + while (start < end && externalVal.charAt(start) == ' ') start++; + while (end > start && externalVal.charAt(end - 1) == ' ') end--; + if (start == end) { + break; + } + out[i] = Double.parseDouble(externalVal.substring(start, end)); + start = idx + 1; + end = externalVal.indexOf(',', start); + idx = end; + if (end == -1) { + end = externalVal.length(); + } + } + } + if (i != dimension) { + throw new InvalidShapeException("incompatible dimension (" + dimension + + ") and values (" + externalVal + "). Only " + i + " values specified"); + } + return out; + } + + public static final double[] parseLatitudeLongitude(String latLonStr) throws InvalidShapeException { + return parseLatitudeLongitude(null, latLonStr); + } + + /** + * extract (by calling {@link #parsePoint(String[], String, int)} and validate the latitude and longitude contained + * in the String by making sure the latitude is between 90 & -90 and longitude is between -180 and 180. + *

+ * The latitude is assumed to be the first part of the string and the longitude the second part. + * + * @param latLon A preallocated array to hold the result + * @param latLonStr The string to parse. Latitude is the first value, longitude is the second. + * @return The lat long + * @throws org.apache.lucene.spatial.base.exception.InvalidShapeException if there was an error parsing + */ + public static final double[] parseLatitudeLongitude(double[] latLon, String latLonStr) throws InvalidShapeException { + if (latLon == null) { + latLon = new double[2]; + } + double[] toks = parsePointDouble(null, latLonStr, 2); + + if (toks[0] < -90.0 || toks[0] > 90.0) { + throw new InvalidShapeException( + "Invalid latitude: latitudes are range -90 to 90: provided lat: [" + + toks[0] + "]"); + } + latLon[0] = toks[0]; + + + if (toks[1] < -180.0 || toks[1] > 180.0) { + + throw new InvalidShapeException( + "Invalid longitude: longitudes are range -180 to 180: provided lon: [" + + toks[1] + "]"); + } + latLon[1] = toks[1]; + + return latLon; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContext.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContext.java new file mode 100644 index 00000000000..1f4ea4a0897 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContext.java @@ -0,0 +1,249 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.context; + +import org.apache.lucene.spatial.base.distance.*; +import org.apache.lucene.spatial.base.exception.InvalidShapeException; +import org.apache.lucene.spatial.base.shape.Circle; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.base.shape.simple.RectangleImpl; + +import java.text.NumberFormat; +import java.util.Locale; +import java.util.StringTokenizer; + +/** + * This holds things like distance units, distance calculator, and world bounds. + * Threadsafe & immutable. + */ +public abstract class SpatialContext { + + //These are non-null + private final DistanceUnits units; + private final DistanceCalculator calculator; + private final Rectangle worldBounds; + + public static RectangleImpl GEO_WORLDBOUNDS = new RectangleImpl(-180,180,-90,90); + public static RectangleImpl MAX_WORLDBOUNDS; + static { + double v = Double.MAX_VALUE; + MAX_WORLDBOUNDS = new RectangleImpl(-v, v, -v, v); + } + + protected final Double maxCircleDistance;//only for geo + protected final boolean NUDGE = false;//TODO document + + /** + * + * @param units Required; and establishes geo vs cartesian. + * @param calculator Optional; defaults to Haversine or cartesian depending on units. + * @param worldBounds Optional; defaults to GEO_WORLDBOUNDS or MAX_WORLDBOUNDS depending on units. + */ + protected SpatialContext(DistanceUnits units, DistanceCalculator calculator, Rectangle worldBounds) { + if (units == null) + throw new IllegalArgumentException("units can't be null"); + this.units = units; + + if (calculator == null) { + calculator = isGeo() + ? new GeodesicSphereDistCalc.Haversine(units.earthRadius()) + : new CartesianDistCalc(); + } + this.calculator = calculator; + + if (worldBounds == null) { + worldBounds = isGeo() ? GEO_WORLDBOUNDS : MAX_WORLDBOUNDS; + } else { + if (isGeo()) + assert new RectangleImpl(worldBounds).equals(GEO_WORLDBOUNDS); + if (worldBounds.getCrossesDateLine()) + throw new IllegalArgumentException("worldBounds shouldn't cross dateline: "+worldBounds); + } + //copy so we can ensure we have the right implementation + worldBounds = makeRect(worldBounds.getMinX(),worldBounds.getMaxX(),worldBounds.getMinY(),worldBounds.getMaxY()); + this.worldBounds = worldBounds; + + this.maxCircleDistance = isGeo() ? calculator.degreesToDistance(180) : null; + } + + public DistanceUnits getUnits() { + return units; + } + + public DistanceCalculator getDistCalc() { + return calculator; + } + + public Rectangle getWorldBounds() { + return worldBounds; + } + + public double normX(double x) { + if (isGeo()) { + return DistanceUtils.normLonDEG(x); + } else { + return x; + } + } + + public double normY(double y) { + if (isGeo()) { + y = DistanceUtils.normLatDEG(y); + } + return y; + } + + /** + * Is this a geospatial context (true) or simply 2d spatial (false) + * @return + */ + public boolean isGeo() { + return getUnits().isGeo(); + } + + /** + * Read a shape from a given string (ie, X Y, XMin XMax... WKT) + * + * (1) Point: X Y + * 1.23 4.56 + * + * (2) BOX: XMin YMin XMax YMax + * 1.23 4.56 7.87 4.56 + * + * (3) WKT + * POLYGON( ... ) + * http://en.wikipedia.org/wiki/Well-known_text + * + */ + public abstract Shape readShape(String value) throws InvalidShapeException; + + public Point readLatCommaLonPoint(String value) throws InvalidShapeException { + double[] latLon = ParseUtils.parseLatitudeLongitude(value); + return makePoint(latLon[1],latLon[0]); + } + + public abstract String toString(Shape shape); + + /** Construct a point. The parameters will be normalized. */ + public abstract Point makePoint( double x, double y ); + + /** Construct a rectangle. The parameters will be normalized. */ + public abstract Rectangle makeRect(double minX, double maxX, double minY, double maxY); + + /** Construct a circle. The parameters will be normalized. */ + public Circle makeCircle(double x, double y, double distance) { + return makeCircle(makePoint(x,y),distance); + } + + /** + * + * @param ctr + * @param distance The units of "distance" should be the same as {@link #getUnits()}. + * @return + */ + public abstract Circle makeCircle(Point ctr, double distance); + + protected Shape readStandardShape(String str) { + if (str.length() < 1) { + throw new InvalidShapeException(str); + } + + if(Character.isLetter(str.charAt(0))) { + if( str.startsWith( "Circle(" ) ) { + int idx = str.lastIndexOf( ')' ); + if( idx > 0 ) { + String body = str.substring( "Circle(".length(), idx ); + StringTokenizer st = new StringTokenizer(body, " "); + String token = st.nextToken(); + Point pt; + if (token.indexOf(',') != -1) { + pt = readLatCommaLonPoint(token); + } else { + double x = Double.parseDouble(token); + double y = Double.parseDouble(st.nextToken()); + pt = makePoint(x,y); + } + Double d = null; + + String arg = st.nextToken(); + idx = arg.indexOf( '=' ); + if( idx > 0 ) { + String k = arg.substring( 0,idx ); + if( k.equals( "d" ) || k.equals( "distance" ) ) { + d = Double.parseDouble( arg.substring(idx+1)); + } + else { + throw new InvalidShapeException( "unknown arg: "+k+" :: " +str ); + } + } + else { + d = Double.parseDouble(arg); + } + if( st.hasMoreTokens() ) { + throw new InvalidShapeException( "Extra arguments: "+st.nextToken()+" :: " +str ); + } + if( d == null ) { + throw new InvalidShapeException( "Missing Distance: "+str ); + } + //NOTE: we are assuming the units of 'd' is the same as that of the spatial context. + return makeCircle(pt, d); + } + } + return null; + } + + if (str.indexOf(',') != -1) + return readLatCommaLonPoint(str); + StringTokenizer st = new StringTokenizer(str, " "); + double p0 = Double.parseDouble(st.nextToken()); + double p1 = Double.parseDouble(st.nextToken()); + if (st.hasMoreTokens()) { + double p2 = Double.parseDouble(st.nextToken()); + double p3 = Double.parseDouble(st.nextToken()); + if (st.hasMoreTokens()) + throw new InvalidShapeException("Only 4 numbers supported (rect) but found more: "+str); + return makeRect(p0, p2, p1, p3); + } + return makePoint(p0, p1); + } + + public String writeRect(Rectangle rect) { + NumberFormat nf = NumberFormat.getInstance(Locale.US); + nf.setGroupingUsed(false); + nf.setMaximumFractionDigits(6); + nf.setMinimumFractionDigits(6); + + return + nf.format(rect.getMinX()) + " " + + nf.format(rect.getMinY()) + " " + + nf.format(rect.getMaxX()) + " " + + nf.format(rect.getMaxY()); + } + + @Override + public String toString() { + return getClass().getSimpleName()+"{" + + "units=" + units + + ", calculator=" + calculator + + ", worldBounds=" + worldBounds + + '}'; + } + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContextFactory.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContextFactory.java new file mode 100644 index 00000000000..8ebed98d525 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/SpatialContextFactory.java @@ -0,0 +1,114 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.context; + +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContextFactory; +import org.apache.lucene.spatial.base.distance.*; +import org.apache.lucene.spatial.base.shape.Rectangle; + +import java.util.Map; + +/** + * Factory for a SpatialContext. + * is + * @author dsmiley + */ +public abstract class SpatialContextFactory { + protected Map args; + protected ClassLoader classLoader; + + protected DistanceUnits units; + protected DistanceCalculator calculator; + protected Rectangle worldBounds; + + /** + * The factory class is lookuped up via "spatialContextFactory" in args + * then falling back to a Java system property (with initial caps). If neither are specified + * then {@link SimpleSpatialContextFactory} is chosen. + * @param args + * @param classLoader + * @return + */ + public static SpatialContext makeSpatialContext(Map args, ClassLoader classLoader) { + SpatialContextFactory instance; + String cname = args.get("spatialContextFactory"); + if (cname == null) + cname = System.getProperty("SpatialContextFactory"); + if (cname == null) + instance = new SimpleSpatialContextFactory(); + else { + try { + Class c = classLoader.loadClass(cname); + instance = (SpatialContextFactory) c.newInstance(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + instance.init(args,classLoader); + return instance.newSpatialContext(); + } + + protected void init(Map args, ClassLoader classLoader) { + this.args = args; + this.classLoader = classLoader; + initUnits(); + initCalculator(); + initWorldBounds(); + } + + protected void initUnits() { + String unitsStr = args.get("units"); + if (unitsStr != null) + units = DistanceUnits.findDistanceUnit(unitsStr); + if (units == null) + units = DistanceUnits.KILOMETERS; + } + + protected void initCalculator() { + String calcStr = args.get("distCalculator"); + if (calcStr == null) + return; + if (calcStr.equalsIgnoreCase("haversine")) { + calculator = new GeodesicSphereDistCalc.Haversine(units.earthRadius()); + } else if (calcStr.equalsIgnoreCase("lawOfCosines")) { + calculator = new GeodesicSphereDistCalc.LawOfCosines(units.earthRadius()); + } else if (calcStr.equalsIgnoreCase("vincentySphere")) { + calculator = new GeodesicSphereDistCalc.Vincenty(units.earthRadius()); + } else if (calcStr.equalsIgnoreCase("cartesian")) { + calculator = new CartesianDistCalc(); + } else if (calcStr.equalsIgnoreCase("cartesian^2")) { + calculator = new CartesianDistCalc(true); + } else { + throw new RuntimeException("Unknown calculator: "+calcStr); + } + } + + protected void initWorldBounds() { + String worldBoundsStr = args.get("worldBounds"); + if (worldBoundsStr == null) + return; + //kinda ugly we do this just to read a rectangle. TODO refactor + SimpleSpatialContext simpleCtx = new SimpleSpatialContext(units, calculator, null); + worldBounds = (Rectangle) simpleCtx.readShape(worldBoundsStr); + } + + /** Subclasses should simply construct the instance from the initialized configuration. */ + protected abstract SpatialContext newSpatialContext(); + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContext.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContext.java new file mode 100644 index 00000000000..413eae1d49e --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContext.java @@ -0,0 +1,139 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.context.simple; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceCalculator; +import org.apache.lucene.spatial.base.distance.DistanceUnits; +import org.apache.lucene.spatial.base.exception.InvalidShapeException; +import org.apache.lucene.spatial.base.shape.Circle; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.base.shape.simple.CircleImpl; +import org.apache.lucene.spatial.base.shape.simple.GeoCircleImpl; +import org.apache.lucene.spatial.base.shape.simple.PointImpl; +import org.apache.lucene.spatial.base.shape.simple.RectangleImpl; + +import java.text.NumberFormat; +import java.util.Locale; + +public class SimpleSpatialContext extends SpatialContext { + + public static SimpleSpatialContext GEO_KM = new SimpleSpatialContext(DistanceUnits.KILOMETERS); + + public SimpleSpatialContext(DistanceUnits units) { + this(units, null, null); + } + + public SimpleSpatialContext(DistanceUnits units, DistanceCalculator calculator, Rectangle worldBounds) { + super(units, calculator, worldBounds); + } + + @Override + public Shape readShape(String value) throws InvalidShapeException { + Shape s = super.readStandardShape( value ); + if( s == null ) { + throw new InvalidShapeException( "Unable to read: "+value ); + } + return s; + } + + @Override + public String toString(Shape shape) { + if (Point.class.isInstance(shape)) { + NumberFormat nf = NumberFormat.getInstance(Locale.US); + nf.setGroupingUsed(false); + nf.setMaximumFractionDigits(6); + nf.setMinimumFractionDigits(6); + Point point = (Point) shape; + return nf.format(point.getX()) + " " + nf.format(point.getY()); + } else if (Rectangle.class.isInstance(shape)) { + return writeRect((Rectangle) shape); + } + return shape.toString(); + } + + @Override + public Circle makeCircle(Point point, double distance) { + if (distance < 0) + throw new InvalidShapeException("distance must be >= 0; got "+distance); + if (isGeo()) + return new GeoCircleImpl( point, Math.min(distance,maxCircleDistance), this ); + else + return new CircleImpl( point, distance, this ); + } + + @Override + public Rectangle makeRect(double minX, double maxX, double minY, double maxY) { + //--Normalize parameters + if (isGeo()) { + double delta = calcWidth(minX,maxX); + if (delta >= 360) { + //The only way to officially support complete longitude wrap-around is via western longitude = -180. We can't + // support any point because 0 is undifferentiated in sign. + minX = -180; + maxX = 180; + } else { + minX = normX(minX); + maxX = normX(maxX); + assert Math.abs(delta - calcWidth(minX,maxX)) < 0.0001;//recompute delta; should be the same + } + if (minY > maxY) { + throw new IllegalArgumentException("maxY must be >= minY"); + } + if (minY < -90 || minY > 90 || maxY < -90 || maxY > 90) + throw new IllegalArgumentException("minY or maxY is outside of -90 to 90 bounds. What did you mean?"); +// debatable what to do in this situation. +// if (minY < -90) { +// minX = -180; +// maxX = 180; +// maxY = Math.min(90,Math.max(maxY,-90 + (-90 - minY))); +// minY = -90; +// } +// if (maxY > 90) { +// minX = -180; +// maxX = 180; +// minY = Math.max(-90,Math.min(minY,90 - (maxY - 90))); +// maxY = 90; +// } + + } else { + //these normalizations probably won't do anything since it's not geo but should probably call them any way. + minX = normX(minX); + maxX = normX(maxX); + minY = normY(minY); + maxY = normY(maxY); + } + return new RectangleImpl( minX, maxX, minY, maxY ); + } + + private double calcWidth(double minX,double maxX) { + double w = maxX - minX; + if (w < 0) {//only true when minX > maxX (WGS84 assumed) + w += 360; + assert w >= 0; + } + return w; + } + + @Override + public Point makePoint(double x, double y) { + return new PointImpl(normX(x),normY(y)); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContextFactory.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContextFactory.java new file mode 100644 index 00000000000..2ace22399f7 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/context/simple/SimpleSpatialContextFactory.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.context.simple; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.SpatialContextFactory; + +/** +* @author dsmiley +*/ +public class SimpleSpatialContextFactory extends SpatialContextFactory { + @Override + protected SpatialContext newSpatialContext() { + return new SimpleSpatialContext(units,calculator,worldBounds); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/AbstractDistanceCalculator.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/AbstractDistanceCalculator.java new file mode 100644 index 00000000000..e07598e6565 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/AbstractDistanceCalculator.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.distance; + +import org.apache.lucene.spatial.base.shape.Point; + +/** + * @author David Smiley - dsmiley@mitre.org + */ +public abstract class AbstractDistanceCalculator implements DistanceCalculator { + + @Override + public double distance(Point from, Point to) { + return distance(from, to.getX(), to.getY()); + } + + @Override + public String toString() { + return getClass().getSimpleName(); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/CartesianDistCalc.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/CartesianDistCalc.java new file mode 100644 index 00000000000..853eba7353b --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/CartesianDistCalc.java @@ -0,0 +1,98 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.distance; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; + +public class CartesianDistCalc extends AbstractDistanceCalculator { + + private final boolean squared; + + public CartesianDistCalc() { + this.squared = false; + } + + public CartesianDistCalc(boolean squared) { + this.squared = squared; + } + + @Override + public double distance(Point from, double toX, double toY) { + double result = 0; + + double v = from.getX() - toX; + result += (v * v); + + v = from.getY() - toY; + result += (v * v); + + if( squared ) + return result; + + return Math.sqrt(result); + } + + @Override + public Point pointOnBearing(Point from, double dist, double bearingDEG, SpatialContext ctx) { + if (dist == 0) + return from; + double bearingRAD = Math.toDegrees(bearingDEG); + double x = Math.sin(bearingRAD) * dist; + double y = Math.cos(bearingRAD) * dist; + return ctx.makePoint(from.getX()+x, from.getY()+y); + } + + @Override + public double distanceToDegrees(double distance) { + throw new UnsupportedOperationException("no geo!"); + } + + @Override + public double degreesToDistance(double degrees) { + throw new UnsupportedOperationException("no geo!"); + } + + @Override + public Rectangle calcBoxByDistFromPt(Point from, double distance, SpatialContext ctx) { + return ctx.makeRect(from.getX()-distance,from.getX()+distance,from.getY()-distance,from.getY()+distance); + } + + @Override + public double calcBoxByDistFromPtHorizAxis(Point from, double distance, SpatialContext ctx) { + return from.getY(); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + CartesianDistCalc that = (CartesianDistCalc) o; + + if (squared != that.squared) return false; + + return true; + } + + @Override + public int hashCode() { + return (squared ? 1 : 0); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceCalculator.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceCalculator.java new file mode 100644 index 00000000000..d6cdb9200d4 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceCalculator.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.distance; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; + +public interface DistanceCalculator { + + public double distance(Point from, Point to); + public double distance(Point from, double toX, double toY); + + public Point pointOnBearing(Point from, double dist, double bearingDEG, SpatialContext ctx); + + /** + * Converts a distance to radians (multiples of the radius). A spherical + * earth model is assumed for geospatial, and non-geospatial is the identity function. + */ + public double distanceToDegrees(double distance); + + public double degreesToDistance(double degrees); + + //public Point pointOnBearing(Point from, double angle); + + public Rectangle calcBoxByDistFromPt(Point from, double distance, SpatialContext ctx); + + public double calcBoxByDistFromPtHorizAxis(Point from, double distance, SpatialContext ctx); + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUnits.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUnits.java new file mode 100644 index 00000000000..8540b2709e6 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUnits.java @@ -0,0 +1,120 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.distance; + +/** + * Enum representing difference distance units, currently only kilometers and + * miles + */ +public enum DistanceUnits { + + //TODO do we need circumference? + KILOMETERS("km", DistanceUtils.EARTH_MEAN_RADIUS_KM, 40076), + MILES("miles", DistanceUtils.EARTH_MEAN_RADIUS_MI, 24902), + RADIANS("radians", 1, Math.PI * 2),//experimental + CARTESIAN("u", -1, -1); + + + private final String units; + + private final double earthCircumference; + + private final double earthRadius; + + /** + * Creates a new DistanceUnit that represents the given unit + * + * @param units Distance unit in String form + * @param earthRadius Radius of the Earth in the specific distance unit + * @param earthCircumfence Circumference of the Earth in the specific distance unit + */ + DistanceUnits(String units, double earthRadius, double earthCircumfence) { + this.units = units; + this.earthCircumference = earthCircumfence; + this.earthRadius = earthRadius; + } + + /** + * Returns the DistanceUnit which represents the given unit + * + * @param unit Unit whose DistanceUnit should be found + * @return DistanceUnit representing the unit + * @throws IllegalArgumentException if no DistanceUnit which represents the given unit is found + */ + public static DistanceUnits findDistanceUnit(String unit) { + if (MILES.getUnits().equalsIgnoreCase(unit) || unit.equalsIgnoreCase("mi")) { + return MILES; + } + if (KILOMETERS.getUnits().equalsIgnoreCase(unit)) { + return KILOMETERS; + } + if (CARTESIAN.getUnits().equalsIgnoreCase(unit) || unit.length()==0) { + return CARTESIAN; + } + throw new IllegalArgumentException("Unknown distance unit " + unit); + } + + /** + * Converts the given distance in given DistanceUnit, to a distance in the unit represented by {@code this} + * + * @param distance Distance to convert + * @param from Unit to convert the distance from + * @return Given distance converted to the distance in the given unit + */ + public double convert(double distance, DistanceUnits from) { + if (from == this) { + return distance; + } + if (this == CARTESIAN || from == CARTESIAN) { + throw new IllegalStateException("Can't convert cartesian distances: "+from+" -> "+this); + } + return (this == MILES) ? distance * DistanceUtils.KM_TO_MILES : distance * DistanceUtils.MILES_TO_KM; + } + + /** + * Returns the string representation of the distance unit + * + * @return String representation of the distance unit + */ + public String getUnits() { + return units; + } + + /** + * Returns the average earth radius + * + * @return the average earth radius + */ + public double earthRadius() { + return earthRadius; + } + + /** + * Returns the circumference of the Earth + * + * @return the circumference of the Earth + */ + public double earthCircumference() { + return earthCircumference; + } + + public boolean isGeo() { + return earthRadius > 0; + } +} + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUtils.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUtils.java new file mode 100644 index 00000000000..8b46f39142a --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/DistanceUtils.java @@ -0,0 +1,427 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.distance; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.Rectangle; + +import static java.lang.Math.toRadians; + +/** + * Various distance calculations and constants. + * Originally from Lucene 3x's old spatial module. It has been modified here. + */ +public class DistanceUtils { + + //pre-compute some angles that are commonly used + public static final double DEG_45_AS_RADS = Math.PI / 4.0; + public static final double SIN_45_AS_RADS = Math.sin(DEG_45_AS_RADS); + public static final double DEG_90_AS_RADS = Math.PI / 2; + public static final double DEG_180_AS_RADS = Math.PI; + public static final double DEG_225_AS_RADS = 5 * DEG_45_AS_RADS; + public static final double DEG_270_AS_RADS = 3 * DEG_90_AS_RADS; + + + public static final double KM_TO_MILES = 0.621371192; + public static final double MILES_TO_KM = 1 / KM_TO_MILES;//1.609 + + /** + * The International Union of Geodesy and Geophysics says the Earth's mean radius in KM is: + * + * [1] http://en.wikipedia.org/wiki/Earth_radius + */ + public static final double EARTH_MEAN_RADIUS_KM = 6371.0087714; + public static final double EARTH_EQUATORIAL_RADIUS_KM = 6378.1370; + + public static final double EARTH_MEAN_RADIUS_MI = EARTH_MEAN_RADIUS_KM * KM_TO_MILES; + public static final double EARTH_EQUATORIAL_RADIUS_MI = EARTH_EQUATORIAL_RADIUS_KM * KM_TO_MILES; + + /** + * Calculate the p-norm (i.e. length) between two vectors + * + * @param vec1 The first vector + * @param vec2 The second vector + * @param power The power (2 for cartesian distance, 1 for manhattan, etc.) + * @return The length. + *

+ * See http://en.wikipedia.org/wiki/Lp_space + * @see #vectorDistance(double[], double[], double, double) + */ + public static double vectorDistance(double[] vec1, double[] vec2, double power) { + return vectorDistance(vec1, vec2, power, 1.0 / power); + } + + /** + * Calculate the p-norm (i.e. length) between two vectors + * + * @param vec1 The first vector + * @param vec2 The second vector + * @param power The power (2 for cartesian distance, 1 for manhattan, etc.) + * @param oneOverPower If you've precalculated oneOverPower and cached it, use this method to save one division operation over {@link #vectorDistance(double[], double[], double)}. + * @return The length. + */ + public static double vectorDistance(double[] vec1, double[] vec2, double power, double oneOverPower) { + double result = 0; + + if (power == 0) { + for (int i = 0; i < vec1.length; i++) { + result += vec1[i] - vec2[i] == 0 ? 0 : 1; + } + + } else if (power == 1.0) { + for (int i = 0; i < vec1.length; i++) { + result += vec1[i] - vec2[i]; + } + } else if (power == 2.0) { + result = Math.sqrt(distSquaredCartesian(vec1, vec2)); + } else if (power == Integer.MAX_VALUE || Double.isInfinite(power)) {//infinite norm? + for (int i = 0; i < vec1.length; i++) { + result = Math.max(result, Math.max(vec1[i], vec2[i])); + } + } else { + for (int i = 0; i < vec1.length; i++) { + result += Math.pow(vec1[i] - vec2[i], power); + } + result = Math.pow(result, oneOverPower); + } + return result; + } + + /** + * Return the coordinates of a vector that is the corner of a box (upper right or lower left), assuming a Rectangular + * coordinate system. Note, this does not apply for points on a sphere or ellipse (although it could be used as an approximation). + * + * @param center The center point + * @param result Holds the result, potentially resizing if needed. + * @param distance The d from the center to the corner + * @param upperRight If true, return the coords for the upper right corner, else return the lower left. + * @return The point, either the upperLeft or the lower right + */ + public static double[] vectorBoxCorner(double[] center, double[] result, double distance, boolean upperRight) { + if (result == null || result.length != center.length) { + result = new double[center.length]; + } + if (upperRight == false) { + distance = -distance; + } + //We don't care about the power here, + // b/c we are always in a rectangular coordinate system, so any norm can be used by + //using the definition of sine + distance = SIN_45_AS_RADS * distance; // sin(Pi/4) == (2^0.5)/2 == opp/hyp == opp/distance, solve for opp, similarly for cosine + for (int i = 0; i < center.length; i++) { + result[i] = center[i] + distance; + } + return result; + } + + /** + * Given a start point (startLat, startLon) and a bearing on a sphere of radius sphereRadius, return the destination point. + * + * + * @param startLat The starting point latitude, in radians + * @param startLon The starting point longitude, in radians + * @param distanceRAD The distance to travel along the bearing in radians. + * @param bearingRAD The bearing, in radians. North is a 0, moving clockwise till radians(360). + * @param result A preallocated array to hold the results. If null, a new one is constructed. + * @return The destination point, in radians. First entry is latitude, second is longitude + */ + public static double[] pointOnBearingRAD(double startLat, double startLon, double distanceRAD, double bearingRAD, double[] result) { + /* + lat2 = asin(sin(lat1)*cos(d/R) + cos(lat1)*sin(d/R)*cos(θ)) + lon2 = lon1 + atan2(sin(θ)*sin(d/R)*cos(lat1), cos(d/R)−sin(lat1)*sin(lat2)) + + */ + double cosAngDist = Math.cos(distanceRAD); + double cosStartLat = Math.cos(startLat); + double sinAngDist = Math.sin(distanceRAD); + double sinStartLat = Math.sin(startLat); + double lat2 = Math.asin(sinStartLat * cosAngDist + + cosStartLat * sinAngDist * Math.cos(bearingRAD)); + + double lon2 = startLon + Math.atan2(Math.sin(bearingRAD) * sinAngDist * cosStartLat, + cosAngDist - sinStartLat * Math.sin(lat2)); + + /*lat2 = (lat2*180)/Math.PI; + lon2 = (lon2*180)/Math.PI;*/ + //From Lucene. Move back to Lucene when synced + // normalize lon first + if (result == null || result.length != 2){ + result = new double[2]; + } + result[0] = lat2; + result[1] = lon2; + normLngRAD(result); + + // normalize lat - could flip poles + normLatRAD(result); + return result; + } + + /** + * @param latLng The lat/lon, in radians. lat in position 0, lon in position 1 + */ + public static void normLatRAD(double[] latLng) { + + if (latLng[0] > DEG_90_AS_RADS) { + latLng[0] = DEG_90_AS_RADS - (latLng[0] - DEG_90_AS_RADS); + if (latLng[1] < 0) { + latLng[1] = latLng[1] + DEG_180_AS_RADS; + } else { + latLng[1] = latLng[1] - DEG_180_AS_RADS; + } + } else if (latLng[0] < -DEG_90_AS_RADS) { + latLng[0] = -DEG_90_AS_RADS - (latLng[0] + DEG_90_AS_RADS); + if (latLng[1] < 0) { + latLng[1] = latLng[1] + DEG_180_AS_RADS; + } else { + latLng[1] = latLng[1] - DEG_180_AS_RADS; + } + } + + } + + /** + * Returns a normalized Lng rectangle shape for the bounding box + * + * @param latLng The lat/lon, in radians, lat in position 0, lon in position 1 + */ + @Deprecated + public static void normLngRAD(double[] latLng) { + if (latLng[1] > DEG_180_AS_RADS) { + latLng[1] = -1.0 * (DEG_180_AS_RADS - (latLng[1] - DEG_180_AS_RADS)); + } else if (latLng[1] < -DEG_180_AS_RADS) { + latLng[1] = (latLng[1] + DEG_180_AS_RADS) + DEG_180_AS_RADS; + } + } + + /** + * Puts in range -180 <= lon_deg < +180. + */ + public static double normLonDEG(double lon_deg) { + if (lon_deg >= -180 && lon_deg < 180) + return lon_deg;//common case, and avoids slight double precision shifting + double off = (lon_deg + 180) % 360; + return off < 0 ? 180 + off : -180 + off; + } + + /** + * Puts in range -90 <= lat_deg <= 90. + */ + public static double normLatDEG(double lat_deg) { + if (lat_deg >= -90 && lat_deg <= 90) + return lat_deg;//common case, and avoids slight double precision shifting + double off = Math.abs((lat_deg + 90) % 360); + return (off <= 180 ? off : 360-off) - 90; + } + + public static Rectangle calcBoxByDistFromPtDEG(double lat, double lon, double distance, SpatialContext ctx) { + //See http://janmatuschek.de/LatitudeLongitudeBoundingCoordinates Section 3.1, 3.2 and 3.3 + + double radius = ctx.getUnits().earthRadius(); + double dist_rad = distance / radius; + double dist_deg = Math.toDegrees(dist_rad); + + if (dist_deg == 0) + return ctx.makeRect(lon,lon,lat,lat); + + if (dist_deg >= 180)//distance is >= opposite side of the globe + return ctx.getWorldBounds(); + + //--calc latitude bounds + double latN_deg = lat + dist_deg; + double latS_deg = lat - dist_deg; + + if (latN_deg >= 90 || latS_deg <= -90) {//touches either pole + //we have special logic for longitude + double lonW_deg = -180, lonE_deg = 180;//world wrap: 360 deg + if (latN_deg <= 90 && latS_deg >= -90) {//doesn't pass either pole: 180 deg + lonW_deg = lon -90; + lonE_deg = lon +90; + } + if (latN_deg > 90) + latN_deg = 90; + if (latS_deg < -90) + latS_deg = -90; + + return ctx.makeRect(lonW_deg, lonE_deg, latS_deg, latN_deg); + } else { + //--calc longitude bounds + double lon_delta_deg = calcBoxByDistFromPtVertAxisOffsetDEG(lat, lon, distance, radius); + + double lonW_deg = lon -lon_delta_deg; + double lonE_deg = lon +lon_delta_deg; + + return ctx.makeRect(lonW_deg, lonE_deg, latS_deg, latN_deg);//ctx will normalize longitude + } + } + + public static double calcBoxByDistFromPtVertAxisOffsetDEG(double lat, double lon, double distance, double radius) { + //http://gis.stackexchange.com/questions/19221/find-tangent-point-on-circle-furthest-east-or-west + if (distance == 0) + return 0; + double lat_rad = toRadians(lat); + double dist_rad = distance / radius; + double result_rad = Math.asin(Math.sin(dist_rad) / Math.cos(lat_rad)); + + if (!Double.isNaN(result_rad)) + return Math.toDegrees(result_rad); + return 90; + } + + public static double calcBoxByDistFromPtHorizAxisDEG(double lat, double lon, double distance, double radius) { + //http://gis.stackexchange.com/questions/19221/find-tangent-point-on-circle-furthest-east-or-west + if (distance == 0) + return lat; + double lat_rad = toRadians(lat); + double dist_rad = distance / radius; + double result_rad = Math.asin( Math.sin(lat_rad) / Math.cos(dist_rad)); + if (!Double.isNaN(result_rad)) + return Math.toDegrees(result_rad); + //TODO should we use use ctx.getBoundaryNudgeDegrees() offsets here or let caller? + if (lat > 0) + return 90; + if (lat < 0) + return -90; + return lat; + } + + /** + * The square of the cartesian Distance. Not really a distance, but useful if all that matters is + * comparing the result to another one. + * + * @param vec1 The first point + * @param vec2 The second point + * @return The squared cartesian distance + */ + public static double distSquaredCartesian(double[] vec1, double[] vec2) { + double result = 0; + for (int i = 0; i < vec1.length; i++) { + double v = vec1[i] - vec2[i]; + result += v * v; + } + return result; + } + + /** + * + * @param lat1 The y coordinate of the first point, in radians + * @param lon1 The x coordinate of the first point, in radians + * @param lat2 The y coordinate of the second point, in radians + * @param lon2 The x coordinate of the second point, in radians + * @return The distance between the two points, as determined by the Haversine formula, in radians. + */ + public static double distHaversineRAD(double lat1, double lon1, double lat2, double lon2) { + //TODO investigate slightly different formula using asin() and min() http://www.movable-type.co.uk/scripts/gis-faq-5.1.html + + // Check for same position + if (lat1 == lat2 && lon1 == lon2) + return 0.0; + double hsinX = Math.sin((lon1 - lon2) * 0.5); + double hsinY = Math.sin((lat1 - lat2) * 0.5); + double h = hsinY * hsinY + + (Math.cos(lat1) * Math.cos(lat2) * hsinX * hsinX); + return 2 * Math.atan2(Math.sqrt(h), Math.sqrt(1 - h)); + } + + /** + * Calculates the distance between two lat/lng's using the Law of Cosines. Due to numeric conditioning + * errors, it is not as accurate as the Haversine formula for small distances. But with + * double precision, it isn't that bad -- + * allegedly 1 meter. + *

+ * See + * Why is law of cosines more preferable than haversine when calculating distance between two latitude-longitude points? + *

+ * The arguments and return value are in radians. + */ + public static double distLawOfCosinesRAD(double lat1, double lon1, double lat2, double lon2) { + //TODO validate formula + + //(MIGRATED FROM org.apache.lucene.spatial.geometry.LatLng.arcDistance()) + // Imported from mq java client. Variable references changed to match. + + // Check for same position + if (lat1 == lat2 && lon1 == lon2) + return 0.0; + + // Get the m_dLongitude difference. Don't need to worry about + // crossing 180 since cos(x) = cos(-x) + double dLon = lon2 - lon1; + + double a = DEG_90_AS_RADS - lat1; + double c = DEG_90_AS_RADS - lat2; + double cosB = (Math.cos(a) * Math.cos(c)) + + (Math.sin(a) * Math.sin(c) * Math.cos(dLon)); + + // Find angle subtended (with some bounds checking) in radians + if (cosB < -1.0) + return Math.PI; + else if (cosB >= 1.0) + return 0; + else + return Math.acos(cosB); + } + + /** + * Calculates the great circle distance using the Vincenty Formula, simplified for a spherical model. This formula + * is accurate for any pair of points. The equation + * was taken from Wikipedia. + *

+ * The arguments are in radians, and the result is in radians. + */ + public static double distVincentyRAD(double lat1, double lon1, double lat2, double lon2) { + // Check for same position + if (lat1 == lat2 && lon1 == lon2) + return 0.0; + + double cosLat1 = Math.cos(lat1); + double cosLat2 = Math.cos(lat2); + double sinLat1 = Math.sin(lat1); + double sinLat2 = Math.sin(lat2); + double dLon = lon2 - lon1; + double cosDLon = Math.cos(dLon); + double sinDLon = Math.sin(dLon); + + double a = cosLat2 * sinDLon; + double b = cosLat1*sinLat2 - sinLat1*cosLat2*cosDLon; + double c = sinLat1*sinLat2 + cosLat1*cosLat2*cosDLon; + + return Math.atan2(Math.sqrt(a*a+b*b),c); + } + + /** + * Converts a distance in the units of the radius to degrees (360 degrees are in a circle). A spherical + * earth model is assumed. + */ + public static double dist2Degrees(double dist, double radius) { + return Math.toDegrees(dist2Radians(dist, radius)); + } + + /** + * Converts a distance in the units of the radius to radians (multiples of the radius). A spherical + * earth model is assumed. + */ + public static double dist2Radians(double dist, double radius) { + return dist / radius; + } + + public static double radians2Dist(double radians, double radius) { + return radians * radius; + } + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/GeodesicSphereDistCalc.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/GeodesicSphereDistCalc.java new file mode 100644 index 00000000000..304fcc9fd7b --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/GeodesicSphereDistCalc.java @@ -0,0 +1,133 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.distance; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; + +import static java.lang.Math.toRadians; + +/** + * A base class for a Distance Calculator that assumes a spherical earth model. + * @author dsmiley + */ +public abstract class GeodesicSphereDistCalc extends AbstractDistanceCalculator { + protected final double radius; + + public GeodesicSphereDistCalc(double radius) { + this.radius = radius; + } + + @Override + public double distanceToDegrees(double distance) { + return DistanceUtils.dist2Degrees(distance, radius); + } + + @Override + public double degreesToDistance(double degrees) { + return DistanceUtils.radians2Dist(toRadians(degrees), radius); + } + + @Override + public Point pointOnBearing(Point from, double dist, double bearingDEG, SpatialContext ctx) { + //TODO avoid unnecessary double[] intermediate object + if (dist == 0) + return from; + double[] latLon = DistanceUtils.pointOnBearingRAD( + toRadians(from.getY()), toRadians(from.getX()), + DistanceUtils.dist2Radians(dist,ctx.getUnits().earthRadius()), + toRadians(bearingDEG), null); + return ctx.makePoint(Math.toDegrees(latLon[1]), Math.toDegrees(latLon[0])); + } + + @Override + public Rectangle calcBoxByDistFromPt(Point from, double distance, SpatialContext ctx) { + assert radius == ctx.getUnits().earthRadius(); + if (distance == 0) + return from.getBoundingBox(); + return DistanceUtils.calcBoxByDistFromPtDEG(from.getY(), from.getX(), distance, ctx); + } + + @Override + public double calcBoxByDistFromPtHorizAxis(Point from, double distance, SpatialContext ctx) { + return DistanceUtils.calcBoxByDistFromPtHorizAxisDEG(from.getY(), from.getX(), distance, radius); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + GeodesicSphereDistCalc that = (GeodesicSphereDistCalc) o; + + if (Double.compare(that.radius, radius) != 0) return false; + + return true; + } + + @Override + public int hashCode() { + long temp = radius != +0.0d ? Double.doubleToLongBits(radius) : 0L; + return (int) (temp ^ (temp >>> 32)); + } + + @Override + public final double distance(Point from, double toX, double toY) { + return distanceLatLonRAD(toRadians(from.getY()), toRadians(from.getX()), toRadians(toY), toRadians(toX)) * radius; + } + + protected abstract double distanceLatLonRAD(double lat1, double lon1, double lat2, double lon2); + + public static class Haversine extends GeodesicSphereDistCalc { + + public Haversine(double radius) { + super(radius); + } + + @Override + protected double distanceLatLonRAD(double lat1, double lon1, double lat2, double lon2) { + return DistanceUtils.distHaversineRAD(lat1,lon1,lat2,lon2); + } + + } + + public static class LawOfCosines extends GeodesicSphereDistCalc { + + public LawOfCosines(double radius) { + super(radius); + } + + @Override + protected double distanceLatLonRAD(double lat1, double lon1, double lat2, double lon2) { + return DistanceUtils.distLawOfCosinesRAD(lat1, lon1, lat2, lon2); + } + + } + + public static class Vincenty extends GeodesicSphereDistCalc { + public Vincenty(double radius) { + super(radius); + } + + @Override + protected double distanceLatLonRAD(double lat1, double lon1, double lat2, double lon2) { + return DistanceUtils.distVincentyRAD(lat1, lon1, lat2, lon2); + } + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/package-info.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/package-info.java new file mode 100644 index 00000000000..0a15a97ae34 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/distance/package-info.java @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Ways to calculate distance + */ +package org.apache.lucene.spatial.base.distance; + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidShapeException.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidShapeException.java new file mode 100644 index 00000000000..a8c052dcfe1 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidShapeException.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.exception; + +public class InvalidShapeException extends RuntimeException { + + public InvalidShapeException(String reason, Throwable cause) { + super(reason, cause); + } + + public InvalidShapeException(String reason) { + super(reason); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidSpatialArgument.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidSpatialArgument.java new file mode 100644 index 00000000000..29dc10e56df --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/InvalidSpatialArgument.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.exception; + +public class InvalidSpatialArgument extends RuntimeException { + + public InvalidSpatialArgument(String reason, Throwable cause) { + super(reason, cause); + } + + public InvalidSpatialArgument(String reason) { + super(reason); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/UnsupportedSpatialOperation.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/UnsupportedSpatialOperation.java new file mode 100644 index 00000000000..74da848dd1e --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/exception/UnsupportedSpatialOperation.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.exception; + +import org.apache.lucene.spatial.base.query.SpatialOperation; + +public class UnsupportedSpatialOperation extends UnsupportedOperationException { + + public UnsupportedSpatialOperation(SpatialOperation op) { + super(op.getName()); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/LineReader.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/LineReader.java new file mode 100644 index 00000000000..0bad39a1b0f --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/LineReader.java @@ -0,0 +1,113 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.io; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.Reader; +import java.util.Iterator; + +public abstract class LineReader implements Iterator { + + private int count = 0; + private int lineNumber = 0; + private BufferedReader reader; + private String nextLine; + + public abstract T parseLine( String line ); + + protected void readComment( String line ) { + + } + + public LineReader(InputStream in) throws IOException { + reader = new BufferedReader( + new InputStreamReader( in, "UTF-8" ) ); + next(); + } + + public LineReader(Reader r) throws IOException { + if (r instanceof BufferedReader) { + reader = (BufferedReader) r; + } else { + reader = new BufferedReader(r); + } + next(); + } + + public LineReader(File f) throws IOException { + reader = new BufferedReader(new InputStreamReader(new FileInputStream(f), "UTF-8")); + next(); + } + + @Override + public boolean hasNext() { + return nextLine != null; + } + + @Override + public T next() { + T val = null; + if (nextLine != null) { + val = parseLine(nextLine); + count++; + } + + if (reader != null) { + try { + while( reader != null ) { + nextLine = reader.readLine(); + lineNumber++; + if (nextLine == null ) { + reader.close(); + reader = null; + } + else if( nextLine.startsWith( "#" ) ) { + readComment( nextLine ); + } + else { + nextLine = nextLine.trim(); + if( nextLine.length() > 0 ) { + break; + } + } + } + } catch (IOException ioe) { + throw new RuntimeException("IOException thrown while reading/closing reader", ioe); + } + } + return val; + } + + @Override + public void remove() { + throw new UnsupportedOperationException(); + } + + public int getLineNumber() { + return lineNumber; + } + + public int getCount() { + return count; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/Geoname.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/Geoname.java new file mode 100644 index 00000000000..cc6d8d6d384 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/Geoname.java @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.io.geonames; + +import java.sql.Date; + +public class Geoname { + public int id; + public String name; // name of geographical point (utf8) varchar(200) + public String nameASCII; // name of geographical point in plain ascii characters, varchar(200) + public String[] alternateNames; // alternatenames, comma separated varchar(5000) + public double latitude; + public double longitude; + public char featureClass; + public String featureCode; // 10 + public String countryCode; // 2 + public String[] countryCode2; // alternate country codes, comma separated, ISO-3166 2-letter country code, 60 characters + public String adminCode1; // fipscode (subject to change to iso code), see exceptions below, see file admin1Codes.txt for display names of this code; varchar(20) + public String adminCode2; // code for the second administrative division, a county in the US, see file admin2Codes.txt; varchar(80) + public String adminCode3; // code for third level administrative division, varchar(20) + public String adminCode4; // code for fourth level administrative division, varchar(20) + public Long population; + public Integer elevation; // in meters, integer + public Integer gtopo30; // average elevation of 30'x30' (ca 900mx900m) area in meters, integer + public String timezone; + public Date modified; // date of last modification in yyyy-MM-dd format + + public Geoname(String line) { + String[] vals = line.split("\t"); + id = Integer.parseInt(vals[0]); + name = vals[1]; + nameASCII = vals[2]; + alternateNames = vals[3].split(","); + latitude = Double.parseDouble(vals[4]); + longitude = Double.parseDouble(vals[5]); + featureClass = vals[6].length() > 0 ? vals[6].charAt(0) : 'S'; + featureCode = vals[7]; + countryCode = vals[8]; + countryCode2 = vals[9].split(","); + adminCode1 = vals[10]; + adminCode2 = vals[11]; + adminCode3 = vals[12]; + adminCode4 = vals[13]; + if (vals[14].length() > 0) { + population = Long.decode(vals[14]); + } + if (vals[15].length() > 0) { + elevation = Integer.decode(vals[15]); + } + if (vals[16].length() > 0) { + gtopo30 = Integer.decode(vals[16]); + } + timezone = vals[17]; + if (vals[18].length() > 0) { + modified = Date.valueOf(vals[18]); + } + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/GeonamesReader.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/GeonamesReader.java new file mode 100644 index 00000000000..9158d10f893 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/geonames/GeonamesReader.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.io.geonames; + +import java.io.File; +import java.io.IOException; +import java.io.Reader; + +import org.apache.lucene.spatial.base.io.LineReader; + +public class GeonamesReader extends LineReader { + + public GeonamesReader(Reader r) throws IOException { + super( r ); + } + + public GeonamesReader(File f) throws IOException { + super( f ); + } + + @Override + public Geoname parseLine(String line) { + return new Geoname( line ); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleData.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleData.java new file mode 100644 index 00000000000..caefe0704a0 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleData.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.io.sample; + +import java.util.Comparator; + + +public class SampleData { + public String id; + public String name; + public String shape; + + public SampleData(String line) { + String[] vals = line.split("\t"); + id = vals[0]; + name = vals[1]; + shape = vals[2]; + } + + public static Comparator NAME_ORDER = new Comparator() { + @Override + public int compare(SampleData o1, SampleData o2) { + return o1.name.compareTo( o2.name ); + } + }; +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleDataReader.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleDataReader.java new file mode 100644 index 00000000000..8d79cb7b015 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/io/sample/SampleDataReader.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.io.sample; + +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.Reader; + +import org.apache.lucene.spatial.base.io.LineReader; + +public class SampleDataReader extends LineReader { + + public SampleDataReader(InputStream r) throws IOException { + super( r ); + } + + public SampleDataReader(Reader r) throws IOException { + super( r ); + } + + public SampleDataReader(File f) throws IOException { + super( f ); + } + + @Override + public SampleData parseLine(String line) { + return new SampleData( line ); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/package-info.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/package-info.java new file mode 100644 index 00000000000..aa3585fd560 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/package-info.java @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * This package is spatal stuff without any lucene dependencies + * Things implemented in this package could be calculated on the client side + */ +package org.apache.lucene.spatial.base; + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/Node.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/Node.java new file mode 100644 index 00000000000..03a3a9f4c84 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/Node.java @@ -0,0 +1,215 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix; + +import org.apache.lucene.spatial.base.shape.SpatialRelation; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Shape; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +/** + * Represents a grid cell. These are not necessarily threadsafe, although new Cell("") (world cell) must be. + */ +public abstract class Node implements Comparable { + public static final byte LEAF_BYTE = '+';//NOTE: must sort before letters & numbers + + /* + Holds a byte[] and/or String representation of the cell. Both are lazy constructed from the other. + Neither contains the trailing leaf byte. + */ + private byte[] bytes; + private int b_off; + private int b_len; + + private String token;//this is the only part of equality + + protected SpatialRelation shapeRel;//set in getSubCells(filter), and via setLeaf(). + private SpatialPrefixTree spatialPrefixTree; + + protected Node(SpatialPrefixTree spatialPrefixTree, String token) { + this.spatialPrefixTree = spatialPrefixTree; + this.token = token; + if (token.length() > 0 && token.charAt(token.length() - 1) == (char) LEAF_BYTE) { + this.token = token.substring(0, token.length() - 1); + setLeaf(); + } + + if (getLevel() == 0) + getShape();//ensure any lazy instantiation completes to make this threadsafe + } + + protected Node(SpatialPrefixTree spatialPrefixTree, byte[] bytes, int off, int len) { + this.spatialPrefixTree = spatialPrefixTree; + this.bytes = bytes; + this.b_off = off; + this.b_len = len; + b_fixLeaf(); + } + + public void reset(byte[] bytes, int off, int len) { + assert getLevel() != 0; + token = null; + shapeRel = null; + this.bytes = bytes; + this.b_off = off; + this.b_len = len; + b_fixLeaf(); + } + + private void b_fixLeaf() { + if (bytes[b_off + b_len - 1] == LEAF_BYTE) { + b_len--; + setLeaf(); + } else if (getLevel() == spatialPrefixTree.getMaxLevels()) { + setLeaf(); + } + } + + public SpatialRelation getShapeRel() { + return shapeRel; + } + + public boolean isLeaf() { + return shapeRel == SpatialRelation.WITHIN; + } + + public void setLeaf() { + assert getLevel() != 0; + shapeRel = SpatialRelation.WITHIN; + } + + /** + * Note: doesn't contain a trailing leaf byte. + */ + public String getTokenString() { + if (token == null) { + token = new String(bytes, b_off, b_len, SpatialPrefixTree.UTF8); + } + return token; + } + + /** + * Note: doesn't contain a trailing leaf byte. + */ + public byte[] getTokenBytes() { + if (bytes != null) { + if (b_off != 0 || b_len != bytes.length) { + throw new IllegalStateException("Not supported if byte[] needs to be recreated."); + } + } else { + bytes = token.getBytes(SpatialPrefixTree.UTF8); + b_off = 0; + b_len = bytes.length; + } + return bytes; + } + + public int getLevel() { + return token != null ? token.length() : b_len; + } + + //TODO add getParent() and update some algorithms to use this? + //public Cell getParent(); + + /** + * Like {@link #getSubCells()} but with the results filtered by a shape. If that shape is a {@link org.apache.lucene.spatial.base.shape.Point} then it + * must call {@link #getSubCell(org.apache.lucene.spatial.base.shape.Point)}; + * Precondition: Never called when getLevel() == maxLevel. + * + * @param shapeFilter an optional filter for the returned cells. + * @return A set of cells (no dups), sorted. Not Modifiable. + */ + public Collection getSubCells(Shape shapeFilter) { + //Note: Higher-performing subclasses might override to consider the shape filter to generate fewer cells. + if (shapeFilter instanceof Point) { + return Collections.singleton(getSubCell((Point) shapeFilter)); + } + Collection cells = getSubCells(); + + if (shapeFilter == null) { + return cells; + } + List copy = new ArrayList(cells.size());//copy since cells contractually isn't modifiable + for (Node cell : cells) { + SpatialRelation rel = cell.getShape().relate(shapeFilter, spatialPrefixTree.ctx); + if (rel == SpatialRelation.DISJOINT) + continue; + cell.shapeRel = rel; + copy.add(cell); + } + cells = copy; + return cells; + } + + /** + * Performant implementations are expected to implement this efficiently by considering the current + * cell's boundary. + * Precondition: Never called when getLevel() == maxLevel. + * Precondition: this.getShape().relate(p) != DISJOINT. + * + * @param p + * @return + */ + public abstract Node getSubCell(Point p); + + //TODO Cell getSubCell(byte b) + + /** + * Gets the cells at the next grid cell level that cover this cell. + * Precondition: Never called when getLevel() == maxLevel. + * + * @return A set of cells (no dups), sorted. Not Modifiable. + */ + protected abstract Collection getSubCells(); + + /** + * {@link #getSubCells()}.size() -- usually a constant. Should be >=2 + */ + public abstract int getSubCellsSize(); + + public abstract Shape getShape(); + + public Point getCenter() { + return getShape().getCenter(); + } + + @Override + public int compareTo(Node o) { + return getTokenString().compareTo(o.getTokenString()); + } + + @Override + public boolean equals(Object obj) { + return !(obj == null || !(obj instanceof Node)) && getTokenString().equals(((Node) obj).getTokenString()); + } + + @Override + public int hashCode() { + return getTokenString().hashCode(); + } + + @Override + public String toString() { + return getTokenString() + (isLeaf() ? (char) LEAF_BYTE : ""); + } + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTree.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTree.java new file mode 100644 index 00000000000..58dbe1c8df7 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTree.java @@ -0,0 +1,246 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Shape; + +import java.nio.charset.Charset; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +/** + * A Spatial Prefix Tree, or Trie, which decomposes shapes into prefixed strings at variable lengths corresponding to + * variable precision. Each string corresponds to a spatial region. + * + * Implementations of this class should be thread-safe and immutable once initialized. + */ +public abstract class SpatialPrefixTree { + + protected static final Charset UTF8 = Charset.forName("UTF-8"); + + protected final int maxLevels; + + protected final SpatialContext ctx; + + public SpatialPrefixTree(SpatialContext ctx, int maxLevels) { + assert maxLevels > 0; + this.ctx = ctx; + this.maxLevels = maxLevels; + } + + public SpatialContext getSpatialContext() { + return ctx; + } + + public int getMaxLevels() { + return maxLevels; + } + + @Override + public String toString() { + return getClass().getSimpleName() + "(maxLevels:" + maxLevels + ",ctx:" + ctx + ")"; + } + + /** + * See {@link org.apache.lucene.spatial.base.query.SpatialArgs#getDistPrecision()}. + * A grid level looked up via {@link #getLevelForDistance(double)} is returned. + * + * @param shape + * @param precision 0-0.5 + * @return 1-maxLevels + */ + public int getMaxLevelForPrecision(Shape shape, double precision) { + if (precision < 0 || precision > 0.5) { + throw new IllegalArgumentException("Precision " + precision + " must be between [0-0.5]"); + } + if (precision == 0 || shape instanceof Point) { + return maxLevels; + } + double bboxArea = shape.getBoundingBox().getArea(); + if (bboxArea == 0) { + return maxLevels; + } + double avgSideLenFromCenter = Math.sqrt(bboxArea) / 2; + return getLevelForDistance(avgSideLenFromCenter * precision); + } + + /** + * Returns the level of the smallest grid size with a side length that is greater or equal to the provided + * distance. + * + * @param dist >= 0 + * @return level [1-maxLevels] + */ + public abstract int getLevelForDistance(double dist); + + //TODO double getDistanceForLevel(int level) + + private transient Node worldNode;//cached + + /** + * Returns the level 0 cell which encompasses all spatial data. Equivalent to {@link #getNode(String)} with "". + * This cell is threadsafe, just like a spatial prefix grid is, although cells aren't + * generally threadsafe. + * TODO rename to getTopCell or is this fine? + */ + public Node getWorldNode() { + if (worldNode == null) { + worldNode = getNode(""); + } + return worldNode; + } + + /** + * The cell for the specified token. The empty string should be equal to {@link #getWorldNode()}. + * Precondition: Never called when token length > maxLevel. + */ + public abstract Node getNode(String token); + + public abstract Node getNode(byte[] bytes, int offset, int len); + + public final Node getNode(byte[] bytes, int offset, int len, Node target) { + if (target == null) { + return getNode(bytes, offset, len); + } + + target.reset(bytes, offset, len); + return target; + } + + protected Node getNode(Point p, int level) { + return getNodes(p, level, false).get(0); + } + + /** + * Gets the intersecting & including cells for the specified shape, without exceeding detail level. + * The result is a set of cells (no dups), sorted. Unmodifiable. + *

+ * This implementation checks if shape is a Point and if so uses an implementation that + * recursively calls {@link Node#getSubCell(org.apache.lucene.spatial.base.shape.Point)}. Cell subclasses + * ideally implement that method with a quick implementation, otherwise, subclasses should + * override this method to invoke {@link #getNodesAltPoint(org.apache.lucene.spatial.base.shape.Point, int, boolean)}. + * TODO consider another approach returning an iterator -- won't build up all cells in memory. + */ + public List getNodes(Shape shape, int detailLevel, boolean inclParents) { + if (detailLevel > maxLevels) { + throw new IllegalArgumentException("detailLevel > maxLevels"); + } + + List cells; + if (shape instanceof Point) { + //optimized point algorithm + final int initialCapacity = inclParents ? 1 + detailLevel : 1; + cells = new ArrayList(initialCapacity); + recursiveGetNodes(getWorldNode(), (Point) shape, detailLevel, true, cells); + assert cells.size() == initialCapacity; + } else { + cells = new ArrayList(inclParents ? 1024 : 512); + recursiveGetNodes(getWorldNode(), shape, detailLevel, inclParents, cells); + } + if (inclParents) { + Node c = cells.remove(0);//remove getWorldNode() + assert c.getLevel() == 0; + } + return cells; + } + + private void recursiveGetNodes(Node node, Shape shape, int detailLevel, boolean inclParents, + Collection result) { + if (node.isLeaf()) {//cell is within shape + result.add(node); + return; + } + final Collection subCells = node.getSubCells(shape); + if (node.getLevel() == detailLevel - 1) { + if (subCells.size() < node.getSubCellsSize()) { + if (inclParents) + result.add(node); + for (Node subCell : subCells) { + subCell.setLeaf(); + } + result.addAll(subCells); + } else {//a bottom level (i.e. detail level) optimization where all boxes intersect, so use parent cell. + node.setLeaf(); + result.add(node); + } + } else { + if (inclParents) { + result.add(node); + } + for (Node subCell : subCells) { + recursiveGetNodes(subCell, shape, detailLevel, inclParents, result);//tail call + } + } + } + + private void recursiveGetNodes(Node node, Point point, int detailLevel, boolean inclParents, + Collection result) { + if (inclParents) { + result.add(node); + } + final Node pCell = node.getSubCell(point); + if (node.getLevel() == detailLevel - 1) { + pCell.setLeaf(); + result.add(pCell); + } else { + recursiveGetNodes(pCell, point, detailLevel, inclParents, result);//tail call + } + } + + /** + * Subclasses might override {@link #getNodes(org.apache.lucene.spatial.base.shape.Shape, int, boolean)} + * and check if the argument is a shape and if so, delegate + * to this implementation, which calls {@link #getNode(org.apache.lucene.spatial.base.shape.Point, int)} and + * then calls {@link #getNode(String)} repeatedly if inclParents is true. + */ + protected final List getNodesAltPoint(Point p, int detailLevel, boolean inclParents) { + Node cell = getNode(p, detailLevel); + if (!inclParents) { + return Collections.singletonList(cell); + } + + String endToken = cell.getTokenString(); + assert endToken.length() == detailLevel; + List cells = new ArrayList(detailLevel); + for (int i = 1; i < detailLevel; i++) { + cells.add(getNode(endToken.substring(0, i))); + } + cells.add(cell); + return cells; + } + + /** + * Will add the trailing leaf byte for leaves. This isn't particularly efficient. + */ + public static List nodesToTokenStrings(Collection nodes) { + List tokens = new ArrayList((nodes.size())); + for (Node node : nodes) { + final String token = node.getTokenString(); + if (node.isLeaf()) { + tokens.add(token + (char) Node.LEAF_BYTE); + } else { + tokens.add(token); + } + } + return tokens; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeFactory.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeFactory.java new file mode 100644 index 00000000000..56c6b42a12b --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeFactory.java @@ -0,0 +1,95 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceUnits; +import org.apache.lucene.spatial.base.distance.DistanceUtils; +import org.apache.lucene.spatial.base.prefix.geohash.GeohashPrefixTree; +import org.apache.lucene.spatial.base.prefix.quad.QuadPrefixTree; + +import java.util.Map; + +/** + * @author dsmiley + */ +public abstract class SpatialPrefixTreeFactory { + + private static final double DEFAULT_GEO_MAX_DETAIL_KM = 0.001;//1m + + protected Map args; + protected SpatialContext ctx; + protected Integer maxLevels; + + /** + * The factory is looked up via "prefixTree" in args, expecting "geohash" or "quad". + * If its neither of these, then "geohash" is chosen for a geo context, otherwise "quad" is chosen. + */ + public static SpatialPrefixTree makeSPT(Map args, ClassLoader classLoader, SpatialContext ctx) { + SpatialPrefixTreeFactory instance; + String cname = args.get("prefixTree"); + if (cname == null) + cname = ctx.isGeo() ? "geohash" : "quad"; + if ("geohash".equalsIgnoreCase(cname)) + instance = new GeohashPrefixTree.Factory(); + else if ("quad".equalsIgnoreCase(cname)) + instance = new QuadPrefixTree.Factory(); + else { + try { + Class c = classLoader.loadClass(cname); + instance = (SpatialPrefixTreeFactory) c.newInstance(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + instance.init(args,ctx); + return instance.newSPT(); + } + + protected void init(Map args, SpatialContext ctx) { + this.args = args; + this.ctx = ctx; + initMaxLevels(); + } + + protected void initMaxLevels() { + String mlStr = args.get("maxLevels"); + if (mlStr != null) { + maxLevels = Integer.valueOf(mlStr); + return; + } + + double degrees; + String maxDetailDistStr = args.get("maxDetailDist"); + if (maxDetailDistStr == null) { + if (!ctx.isGeo()) { + return;//let default to max + } + degrees = DistanceUtils.dist2Degrees(DEFAULT_GEO_MAX_DETAIL_KM, DistanceUnits.KILOMETERS.earthRadius()); + } else { + degrees = DistanceUtils.dist2Degrees(Double.parseDouble(maxDetailDistStr), ctx.getUnits().earthRadius()); + } + maxLevels = getLevelForDistance(degrees) + 1;//returns 1 greater + } + + /** Calls {@link SpatialPrefixTree#getLevelForDistance(double)}. */ + protected abstract int getLevelForDistance(double degrees); + + protected abstract SpatialPrefixTree newSPT(); + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashPrefixTree.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashPrefixTree.java new file mode 100644 index 00000000000..1f96c2cae40 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashPrefixTree.java @@ -0,0 +1,150 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix.geohash; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.prefix.Node; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTree; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTreeFactory; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Shape; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +/** + * A SpatialPrefixGrid based on Geohashes. Uses {@link GeohashUtils} to do all the geohash work. + */ +public class GeohashPrefixTree extends SpatialPrefixTree { + + public static class Factory extends SpatialPrefixTreeFactory { + + @Override + protected int getLevelForDistance(double degrees) { + GeohashPrefixTree grid = new GeohashPrefixTree(ctx, GeohashPrefixTree.getMaxLevelsPossible()); + return grid.getLevelForDistance(degrees) + 1;//returns 1 greater + } + + @Override + protected SpatialPrefixTree newSPT() { + return new GeohashPrefixTree(ctx, + maxLevels != null ? maxLevels : GeohashPrefixTree.getMaxLevelsPossible()); + } + } + + public GeohashPrefixTree(SpatialContext ctx, int maxLevels) { + super(ctx, maxLevels); + Rectangle bounds = ctx.getWorldBounds(); + if (bounds.getMinX() != -180) + throw new IllegalArgumentException("Geohash only supports lat-lon world bounds. Got "+bounds); + int MAXP = getMaxLevelsPossible(); + if (maxLevels <= 0 || maxLevels > MAXP) + throw new IllegalArgumentException("maxLen must be [1-"+MAXP+"] but got "+ maxLevels); + } + + /** Any more than this and there's no point (double lat & lon are the same). */ + public static int getMaxLevelsPossible() { + return GeohashUtils.MAX_PRECISION; + } + + @Override + public int getLevelForDistance(double dist) { + final int level = GeohashUtils.lookupHashLenForWidthHeight(dist, dist); + return Math.max(Math.min(level, maxLevels), 1); + } + + @Override + public Node getNode(Point p, int level) { + return new GhCell(GeohashUtils.encodeLatLon(p.getY(), p.getX(), level));//args are lat,lon (y,x) + } + + @Override + public Node getNode(String token) { + return new GhCell(token); + } + + @Override + public Node getNode(byte[] bytes, int offset, int len) { + return new GhCell(bytes, offset, len); + } + + @Override + public List getNodes(Shape shape, int detailLevel, boolean inclParents) { + return shape instanceof Point ? super.getNodesAltPoint((Point) shape, detailLevel, inclParents) : + super.getNodes(shape, detailLevel, inclParents); + } + + class GhCell extends Node { + GhCell(String token) { + super(GeohashPrefixTree.this, token); + } + + GhCell(byte[] bytes, int off, int len) { + super(GeohashPrefixTree.this, bytes, off, len); + } + + @Override + public void reset(byte[] bytes, int off, int len) { + super.reset(bytes, off, len); + shape = null; + } + + @Override + public Collection getSubCells() { + String[] hashes = GeohashUtils.getSubGeohashes(getGeohash());//sorted + List cells = new ArrayList(hashes.length); + for (String hash : hashes) { + cells.add(new GhCell(hash)); + } + return cells; + } + + @Override + public int getSubCellsSize() { + return 32;//8x4 + } + + @Override + public Node getSubCell(Point p) { + return GeohashPrefixTree.this.getNode(p,getLevel()+1);//not performant! + } + + private Shape shape;//cache + + @Override + public Shape getShape() { + if (shape == null) { + shape = GeohashUtils.decodeBoundary(getGeohash(), ctx); + } + return shape; + } + + @Override + public Point getCenter() { + return GeohashUtils.decode(getGeohash(), ctx); + } + + private String getGeohash() { + return getTokenString(); + } + + }//class GhCell + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashUtils.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashUtils.java new file mode 100644 index 00000000000..15fed96cfb3 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/geohash/GeohashUtils.java @@ -0,0 +1,196 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix.geohash; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Point; + +import java.util.Arrays; + +/** + * Utilities for encoding and decoding geohashes. Based on + * http://en.wikipedia.org/wiki/Geohash. + */ +public class GeohashUtils { + + private static final char[] BASE_32 = {'0', '1', '2', '3', '4', '5', '6', + '7', '8', '9', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n', + 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};//note: this is sorted + + private static final int[] BASE_32_IDX;//sparse array of indexes from '0' to 'z' + + public static final int MAX_PRECISION = 24;//DWS: I forget what level results in needless more precision but it's about this + private static final int[] BITS = {16, 8, 4, 2, 1}; + + static { + BASE_32_IDX = new int[BASE_32[BASE_32.length-1] - BASE_32[0] + 1]; + assert BASE_32_IDX.length < 100;//reasonable length + Arrays.fill(BASE_32_IDX,-500); + for (int i = 0; i < BASE_32.length; i++) { + BASE_32_IDX[BASE_32[i] - BASE_32[0]] = i; + } + } + + private GeohashUtils() { + } + + /** + * Encodes the given latitude and longitude into a geohash + * + * @param latitude Latitude to encode + * @param longitude Longitude to encode + * @return Geohash encoding of the longitude and latitude + */ + public static String encodeLatLon(double latitude, double longitude) { + return encodeLatLon(latitude, longitude, 12); + } + + public static String encodeLatLon(double latitude, double longitude, int precision) { + double[] latInterval = {-90.0, 90.0}; + double[] lngInterval = {-180.0, 180.0}; + + final StringBuilder geohash = new StringBuilder(precision); + boolean isEven = true; + + int bit = 0; + int ch = 0; + + while (geohash.length() < precision) { + double mid = 0.0; + if (isEven) { + mid = (lngInterval[0] + lngInterval[1]) / 2D; + if (longitude > mid) { + ch |= BITS[bit]; + lngInterval[0] = mid; + } else { + lngInterval[1] = mid; + } + } else { + mid = (latInterval[0] + latInterval[1]) / 2D; + if (latitude > mid) { + ch |= BITS[bit]; + latInterval[0] = mid; + } else { + latInterval[1] = mid; + } + } + + isEven = !isEven; + + if (bit < 4) { + bit++; + } else { + geohash.append(BASE_32[ch]); + bit = 0; + ch = 0; + } + } + + return geohash.toString(); + } + + /** + * Decodes the given geohash into a latitude and longitude + * + * @param geohash Geohash to deocde + * @return Array with the latitude at index 0, and longitude at index 1 + */ + public static Point decode(String geohash, SpatialContext ctx) { + Rectangle rect = decodeBoundary(geohash,ctx); + double latitude = (rect.getMinY() + rect.getMaxY()) / 2D; + double longitude = (rect.getMinX() + rect.getMaxX()) / 2D; + return ctx.makePoint(longitude,latitude); + } + + /** Returns min-max lat, min-max lon. */ + public static Rectangle decodeBoundary(String geohash, SpatialContext ctx) { + double minY = -90, maxY = 90, minX = -180, maxX = 180; + boolean isEven = true; + + for (int i = 0; i < geohash.length(); i++) { + char c = geohash.charAt(i); + if (c >= 'A' && c <= 'Z') + c -= ('A' - 'a'); + final int cd = BASE_32_IDX[c - BASE_32[0]];//TODO check successful? + + for (int mask : BITS) { + if (isEven) { + if ((cd & mask) != 0) { + minX = (minX + maxX) / 2D; + } else { + maxX = (minX + maxX) / 2D; + } + } else { + if ((cd & mask) != 0) { + minY = (minY + maxY) / 2D; + } else { + maxY = (minY + maxY) / 2D; + } + } + isEven = !isEven; + } + + } + return ctx.makeRect(minX, maxX, minY, maxY); + } + + /** Array of geohashes 1 level below the baseGeohash. Sorted. */ + public static String[] getSubGeohashes(String baseGeohash) { + String[] hashes = new String[BASE_32.length]; + for (int i = 0; i < BASE_32.length; i++) {//note: already sorted + char c = BASE_32[i]; + hashes[i] = baseGeohash+c; + } + return hashes; + } + + public static double[] lookupDegreesSizeForHashLen(int hashLen) { + return new double[]{hashLenToLatHeight[hashLen], hashLenToLonWidth[hashLen]}; + } + + /** + * Return the longest geohash length that will have a width & height >= specified arguments. + */ + public static int lookupHashLenForWidthHeight(double width, double height) { + //loop through hash length arrays from beginning till we find one. + for(int len = 1; len <= MAX_PRECISION; len++) { + double latHeight = hashLenToLatHeight[len]; + double lonWidth = hashLenToLonWidth[len]; + if (latHeight < height || lonWidth < width) + return len-1;//previous length is big enough to encompass specified width & height + } + return MAX_PRECISION; + } + + /** See the table at http://en.wikipedia.org/wiki/Geohash */ + private static final double[] hashLenToLatHeight, hashLenToLonWidth; + static { + hashLenToLatHeight = new double[MAX_PRECISION +1]; + hashLenToLonWidth = new double[MAX_PRECISION +1]; + hashLenToLatHeight[0] = 90*2; + hashLenToLonWidth[0] = 180*2; + boolean even = false; + for(int i = 1; i <= MAX_PRECISION; i++) { + hashLenToLatHeight[i] = hashLenToLatHeight[i-1]/(even?8:4); + hashLenToLonWidth[i] = hashLenToLonWidth[i-1]/(even?4:8); + even = ! even; + } + } + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/package-info.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/package-info.java new file mode 100644 index 00000000000..6b156d3ba1f --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/package-info.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * The Spatial Prefix package supports spatial indexing by index-time tokens + * where adding characters to a string gives greater resolution. + * + * Potential Implementations include: + * * http://en.wikipedia.org/wiki/Quadtree + * * http://en.wikipedia.org/wiki/Geohash + * * http://healpix.jpl.nasa.gov/ + */ +package org.apache.lucene.spatial.base.prefix; + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/quad/QuadPrefixTree.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/quad/QuadPrefixTree.java new file mode 100644 index 00000000000..a1ea653eb06 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/prefix/quad/QuadPrefixTree.java @@ -0,0 +1,301 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix.quad; + +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTreeFactory; +import org.apache.lucene.spatial.base.shape.SpatialRelation; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.prefix.Node; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTree; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.base.shape.simple.PointImpl; + +import java.text.NumberFormat; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +public class QuadPrefixTree extends SpatialPrefixTree { + + public static class Factory extends SpatialPrefixTreeFactory { + + @Override + protected int getLevelForDistance(double degrees) { + QuadPrefixTree grid = new QuadPrefixTree(ctx, MAX_LEVELS_POSSIBLE); + return grid.getLevelForDistance(degrees) + 1;//returns 1 greater + } + + @Override + protected SpatialPrefixTree newSPT() { + return new QuadPrefixTree(ctx, + maxLevels != null ? maxLevels : MAX_LEVELS_POSSIBLE); + } + } + + public static final int MAX_LEVELS_POSSIBLE = 50;//not really sure how big this should be + + public static final int DEFAULT_MAX_LEVELS = 12; + private final double xmin; + private final double xmax; + private final double ymin; + private final double ymax; + private final double xmid; + private final double ymid; + + private final double gridW; + public final double gridH; + + final double[] levelW; + final double[] levelH; + final int[] levelS; // side + final int[] levelN; // number + + public QuadPrefixTree( + SpatialContext ctx, Rectangle bounds, int maxLevels) { + super(ctx, maxLevels); + this.xmin = bounds.getMinX(); + this.xmax = bounds.getMaxX(); + this.ymin = bounds.getMinY(); + this.ymax = bounds.getMaxY(); + + levelW = new double[maxLevels]; + levelH = new double[maxLevels]; + levelS = new int[maxLevels]; + levelN = new int[maxLevels]; + + gridW = xmax - xmin; + gridH = ymax - ymin; + this.xmid = xmin + gridW/2.0; + this.ymid = ymin + gridH/2.0; + levelW[0] = gridW/2.0; + levelH[0] = gridH/2.0; + levelS[0] = 2; + levelN[0] = 4; + + for (int i = 1; i < levelW.length; i++) { + levelW[i] = levelW[i - 1] / 2.0; + levelH[i] = levelH[i - 1] / 2.0; + levelS[i] = levelS[i - 1] * 2; + levelN[i] = levelN[i - 1] * 4; + } + } + + public QuadPrefixTree(SpatialContext ctx) { + this(ctx, DEFAULT_MAX_LEVELS); + } + + public QuadPrefixTree( + SpatialContext ctx, int maxLevels) { + this(ctx, ctx.getWorldBounds(), maxLevels); + } + + public void printInfo() { + NumberFormat nf = NumberFormat.getNumberInstance(); + nf.setMaximumFractionDigits(5); + nf.setMinimumFractionDigits(5); + nf.setMinimumIntegerDigits(3); + + for (int i = 0; i < maxLevels; i++) { + System.out.println(i + "]\t" + nf.format(levelW[i]) + "\t" + nf.format(levelH[i]) + "\t" + + levelS[i] + "\t" + (levelS[i] * levelS[i])); + } + } + + @Override + public int getLevelForDistance(double dist) { + for (int i = 1; i < maxLevels; i++) { + //note: level[i] is actually a lookup for level i+1 + if(dist > levelW[i] || dist > levelH[i]) { + return i; + } + } + return maxLevels; + } + + @Override + public Node getNode(Point p, int level) { + List cells = new ArrayList(1); + build(xmid, ymid, 0, cells, new StringBuilder(), new PointImpl(p.getX(),p.getY()), level); + return cells.get(0);//note cells could be longer if p on edge + } + + @Override + public Node getNode(String token) { + return new QuadCell(token); + } + + @Override + public Node getNode(byte[] bytes, int offset, int len) { + return new QuadCell(bytes, offset, len); + } + + @Override //for performance + public List getNodes(Shape shape, int detailLevel, boolean inclParents) { + if (shape instanceof Point) + return super.getNodesAltPoint((Point) shape, detailLevel, inclParents); + else + return super.getNodes(shape, detailLevel, inclParents); + } + + private void build( + double x, + double y, + int level, + List matches, + StringBuilder str, + Shape shape, + int maxLevel) { + assert str.length() == level; + double w = levelW[level] / 2; + double h = levelH[level] / 2; + + // Z-Order + // http://en.wikipedia.org/wiki/Z-order_%28curve%29 + checkBattenberg('A', x - w, y + h, level, matches, str, shape, maxLevel); + checkBattenberg('B', x + w, y + h, level, matches, str, shape, maxLevel); + checkBattenberg('C', x - w, y - h, level, matches, str, shape, maxLevel); + checkBattenberg('D', x + w, y - h, level, matches, str, shape, maxLevel); + + // possibly consider hilbert curve + // http://en.wikipedia.org/wiki/Hilbert_curve + // http://blog.notdot.net/2009/11/Damn-Cool-Algorithms-Spatial-indexing-with-Quadtrees-and-Hilbert-Curves + // if we actually use the range property in the query, this could be useful + } + + private void checkBattenberg( + char c, + double cx, + double cy, + int level, + List matches, + StringBuilder str, + Shape shape, + int maxLevel) { + assert str.length() == level; + double w = levelW[level] / 2; + double h = levelH[level] / 2; + + int strlen = str.length(); + Rectangle rectangle = ctx.makeRect(cx - w, cx + w, cy - h, cy + h); + SpatialRelation v = shape.relate(rectangle, ctx); + if (SpatialRelation.CONTAINS == v) { + str.append(c); + //str.append(SpatialPrefixGrid.COVER); + matches.add(new QuadCell(str.toString(),v.transpose())); + } else if (SpatialRelation.DISJOINT == v) { + // nothing + } else { // SpatialRelation.WITHIN, SpatialRelation.INTERSECTS + str.append(c); + + int nextLevel = level+1; + if (nextLevel >= maxLevel) { + //str.append(SpatialPrefixGrid.INTERSECTS); + matches.add(new QuadCell(str.toString(),v.transpose())); + } else { + build(cx, cy, nextLevel, matches, str, shape, maxLevel); + } + } + str.setLength(strlen); + } + + class QuadCell extends Node { + + public QuadCell(String token) { + super(QuadPrefixTree.this, token); + } + + public QuadCell(String token, SpatialRelation shapeRel) { + super(QuadPrefixTree.this, token); + this.shapeRel = shapeRel; + } + + QuadCell(byte[] bytes, int off, int len) { + super(QuadPrefixTree.this, bytes, off, len); + } + + @Override + public void reset(byte[] bytes, int off, int len) { + super.reset(bytes, off, len); + shape = null; + } + + @Override + public Collection getSubCells() { + List cells = new ArrayList(4); + cells.add(new QuadCell(getTokenString()+"A")); + cells.add(new QuadCell(getTokenString()+"B")); + cells.add(new QuadCell(getTokenString()+"C")); + cells.add(new QuadCell(getTokenString()+"D")); + return cells; + } + + @Override + public int getSubCellsSize() { + return 4; + } + + @Override + public Node getSubCell(Point p) { + return QuadPrefixTree.this.getNode(p,getLevel()+1);//not performant! + } + + private Shape shape;//cache + + @Override + public Shape getShape() { + if (shape == null) + shape = makeShape(); + return shape; + } + + private Rectangle makeShape() { + String token = getTokenString(); + double xmin = QuadPrefixTree.this.xmin; + double ymin = QuadPrefixTree.this.ymin; + + for (int i = 0; i < token.length(); i++) { + char c = token.charAt(i); + if ('A' == c || 'a' == c) { + ymin += levelH[i]; + } else if ('B' == c || 'b' == c) { + xmin += levelW[i]; + ymin += levelH[i]; + } else if ('C' == c || 'c' == c) { + // nothing really + } + else if('D' == c || 'd' == c) { + xmin += levelW[i]; + } else { + throw new RuntimeException("unexpected char: " + c); + } + } + int len = token.length(); + double width, height; + if (len > 0) { + width = levelW[len-1]; + height = levelH[len-1]; + } else { + width = gridW; + height = gridH; + } + return ctx.makeRect(xmin, xmin + width, ymin, ymin + height); + } + }//QuadCell +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgs.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgs.java new file mode 100644 index 00000000000..c559358240f --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgs.java @@ -0,0 +1,134 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.query; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceUnits; +import org.apache.lucene.spatial.base.exception.InvalidSpatialArgument; +import org.apache.lucene.spatial.base.shape.Shape; + +public class SpatialArgs { + + public static final double DEFAULT_DIST_PRECISION = 0.025d; + + private SpatialOperation operation; + private Shape shape; + private double distPrecision = DEFAULT_DIST_PRECISION; + + // Useful for 'distance' calculations + private Double min; + private Double max; + + public SpatialArgs(SpatialOperation operation) { + this.operation = operation; + } + + public SpatialArgs(SpatialOperation operation, Shape shape) { + this.operation = operation; + this.shape = shape; + } + + /** + * Check if the arguments make sense -- throw an exception if not + */ + public void validate() throws InvalidSpatialArgument { + if (operation.isTargetNeedsArea() && !shape.hasArea()) { + throw new InvalidSpatialArgument(operation + " only supports geometry with area"); + } + } + + public String toString( SpatialContext context ) { + StringBuilder str = new StringBuilder(); + str.append( operation.getName() ).append( '(' ); + str.append( context.toString( shape ) ); + if( min != null ) { + str.append(" min=").append(min); + } + if( max != null ) { + str.append(" max=").append(max); + } + str.append(" distPrec=").append(String.format("%.2f%%", distPrecision/100d)); + str.append( ')' ); + return str.toString(); + } + + @Override + public String toString() + { + return toString( new SimpleSpatialContext(DistanceUnits.KILOMETERS) ); + } + + //------------------------------------------------ + // Getters & Setters + //------------------------------------------------ + + public SpatialOperation getOperation() { + return operation; + } + + public void setOperation(SpatialOperation operation) { + this.operation = operation; + } + + /** + * Considers {@link SpatialOperation#BBoxWithin} in returning the shape. + * @return + */ + public Shape getShape() { + if (shape != null && (operation == SpatialOperation.BBoxWithin || operation == SpatialOperation.BBoxIntersects)) + return shape.getBoundingBox(); + return shape; + } + + public void setShape(Shape shape) { + this.shape = shape; + } + + /** + * The fraction of the distance from the center of the query shape to its nearest edge that is considered acceptable + * error. The algorithm for computing the distance to the nearest edge is actually a little different. It normalizes + * the shape to a square given it's bounding box area: + *

sqrt(shape.bbox.area)/2
+ * And the error distance is beyond the shape such that the shape is a minimum shape. + */ + public Double getDistPrecision() { + return distPrecision; + } + + public void setDistPrecision(Double distPrecision) { + if (distPrecision != null) + this.distPrecision = distPrecision; + } + + public Double getMin() { + return min; + } + + public void setMin(Double min) { + this.min = min; + } + + public Double getMax() { + return max; + } + + public void setMax(Double max) { + this.max = max; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgsParser.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgsParser.java new file mode 100644 index 00000000000..961dd254060 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialArgsParser.java @@ -0,0 +1,88 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.query; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.exception.InvalidShapeException; +import org.apache.lucene.spatial.base.exception.InvalidSpatialArgument; +import org.apache.lucene.spatial.base.shape.Shape; + +import java.util.HashMap; +import java.util.Map; +import java.util.StringTokenizer; + +public class SpatialArgsParser +{ + public SpatialArgs parse(String v, SpatialContext ctx) throws InvalidSpatialArgument, InvalidShapeException { + int idx = v.indexOf('('); + int edx = v.lastIndexOf(')'); + + if (idx < 0 || idx > edx) { + throw new InvalidSpatialArgument("missing parens: " + v, null); + } + + SpatialOperation op = SpatialOperation.get(v.substring(0, idx).trim()); + + String body = v.substring(idx + 1, edx).trim(); + if (body.length() < 1) { + throw new InvalidSpatialArgument("missing body : " + v, null); + } + + Shape shape = ctx.readShape(body); + SpatialArgs args = new SpatialArgs(op,shape); + + if (v.length() > (edx + 1)) { + body = v.substring( edx+1 ).trim(); + if (body.length() > 0) { + Map aa = parseMap(body); + args.setMin(readDouble(aa.remove("min")) ); + args.setMax(readDouble(aa.remove("max"))); + args.setDistPrecision(readDouble(aa.remove("distPrec"))); + if (!aa.isEmpty()) { + throw new InvalidSpatialArgument("unused parameters: " + aa, null); + } + } + } + return args; + } + + protected static Double readDouble(String v) { + return v == null ? null : Double.valueOf(v); + } + + protected static boolean readBool(String v, boolean defaultValue) { + return v == null ? defaultValue : Boolean.parseBoolean(v); + } + + protected static Map parseMap(String body) { + Map map = new HashMap(); + StringTokenizer st = new StringTokenizer(body, " \n\t"); + while (st.hasMoreTokens()) { + String a = st.nextToken(); + int idx = a.indexOf('='); + if (idx > 0) { + String k = a.substring(0, idx); + String v = a.substring(idx + 1); + map.put(k, v); + } else { + map.put(a, a); + } + } + return map; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialOperation.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialOperation.java new file mode 100644 index 00000000000..b4be743d3b8 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/SpatialOperation.java @@ -0,0 +1,107 @@ +/* See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * Esri Inc. licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.lucene.spatial.base.query; + +import java.io.Serializable; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Locale; +import java.util.Map; + +import org.apache.lucene.spatial.base.exception.InvalidSpatialArgument; + +/** + * A clause that compares a stored geometry to a supplied geometry. + */ +public class SpatialOperation implements Serializable { + // Private registry + private static final Map registry = new HashMap(); + private static final List list = new ArrayList(); + + // Geometry Operations + public static final SpatialOperation BBoxIntersects = new SpatialOperation("BBoxIntersects", true, false, false); + public static final SpatialOperation BBoxWithin = new SpatialOperation("BBoxWithin", true, false, false); + public static final SpatialOperation Contains = new SpatialOperation("Contains", true, true, false); + public static final SpatialOperation Intersects = new SpatialOperation("Intersects", true, false, false); + public static final SpatialOperation IsEqualTo = new SpatialOperation("IsEqualTo", false, false, false); + public static final SpatialOperation IsDisjointTo = new SpatialOperation("IsDisjointTo", false, false, false); + public static final SpatialOperation IsWithin = new SpatialOperation("IsWithin", true, false, true); + public static final SpatialOperation Overlaps = new SpatialOperation("Overlaps", true, false, true); + + // Member variables + private final boolean scoreIsMeaningful; + private final boolean sourceNeedsArea; + private final boolean targetNeedsArea; + private final String name; + + protected SpatialOperation(String name, boolean scoreIsMeaningful, boolean sourceNeedsArea, boolean targetNeedsArea) { + this.name = name; + this.scoreIsMeaningful = scoreIsMeaningful; + this.sourceNeedsArea = sourceNeedsArea; + this.targetNeedsArea = targetNeedsArea; + registry.put(name, this); + registry.put(name.toUpperCase(Locale.US), this); + list.add( this ); + } + + public static SpatialOperation get( String v ) { + SpatialOperation op = registry.get( v ); + if( op == null ) { + op = registry.get(v.toUpperCase(Locale.US)); + } + if( op == null ) { + throw new InvalidSpatialArgument("Unknown Operation: " + v ); + } + return op; + } + + public static List values() { + return list; + } + + public static boolean is( SpatialOperation op, SpatialOperation ... tst ) { + for( SpatialOperation t : tst ) { + if( op == t ) { + return true; + } + } + return false; + } + + + // ================================================= Getters / Setters ============================================= + + public boolean isScoreIsMeaningful() { + return scoreIsMeaningful; + } + + public boolean isSourceNeedsArea() { + return sourceNeedsArea; + } + + public boolean isTargetNeedsArea() { + return targetNeedsArea; + } + + public String getName() { + return name; + } + + @Override + public String toString() { + return name; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/package-info.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/package-info.java new file mode 100644 index 00000000000..ded6980b32b --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/query/package-info.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +/** + * Lucene spatial Query options + *
    + *
  • useful for client side requets
  • + *
+ */ +package org.apache.lucene.spatial.base.query; + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Circle.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Circle.java new file mode 100644 index 00000000000..ad718f3474e --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Circle.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +/** + * This is basically a circle. + */ +public interface Circle extends Shape { + double getDistance(); +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/MultiShape.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/MultiShape.java new file mode 100644 index 00000000000..d2e6873737a --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/MultiShape.java @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +import org.apache.commons.lang.builder.EqualsBuilder; +import org.apache.commons.lang.builder.HashCodeBuilder; +import org.apache.lucene.spatial.base.context.SpatialContext; + +import java.util.Collection; + +/** + * A collection of Shape objects. + */ +public class MultiShape implements Shape { + private final Collection geoms; + private final Rectangle bbox; + + public MultiShape(Collection geoms, SpatialContext ctx) { + this.geoms = geoms; + double minX = Double.MAX_VALUE; + double minY = Double.MAX_VALUE; + double maxX = Double.MIN_VALUE; + double maxY = Double.MIN_VALUE; + for (Shape geom : geoms) { + Rectangle r = geom.getBoundingBox(); + minX = Math.min(minX,r.getMinX()); + minY = Math.min(minY,r.getMinY()); + maxX = Math.max(maxX,r.getMaxX()); + maxY = Math.max(maxY,r.getMaxY()); + } + this.bbox = ctx.makeRect(minX, maxX, minY, maxY); + } + + @Override + public Rectangle getBoundingBox() { + return bbox; + } + + @Override + public Point getCenter() { + return bbox.getCenter(); + } + + @Override + public boolean hasArea() { + for (Shape geom : geoms) { + if( geom.hasArea() ) { + return true; + } + } + return false; + } + + @Override + public SpatialRelation relate(Shape other, SpatialContext ctx) { + boolean allOutside = true; + boolean allContains = true; + for (Shape geom : geoms) { + SpatialRelation sect = geom.relate(other, ctx); + if (sect != SpatialRelation.DISJOINT) + allOutside = false; + if (sect != SpatialRelation.CONTAINS) + allContains = false; + if (!allContains && !allOutside) + return SpatialRelation.INTERSECTS;//short circuit + } + if (allOutside) + return SpatialRelation.DISJOINT; + if (allContains) + return SpatialRelation.CONTAINS; + return SpatialRelation.INTERSECTS; + } + + + @Override + public boolean equals(Object obj) { + if (obj == null) { return false; } + if (obj == this) { return true; } + if (obj.getClass() != getClass()) { + return false; + } + MultiShape rhs = (MultiShape) obj; + return new EqualsBuilder() + .append(geoms, rhs.geoms) + .isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(83, 29).append(geoms.hashCode()). + toHashCode(); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Point.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Point.java new file mode 100644 index 00000000000..fd660203b10 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Point.java @@ -0,0 +1,24 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +public interface Point extends Shape { + + public double getX(); + public double getY(); +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Rectangle.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Rectangle.java new file mode 100644 index 00000000000..f0935ff9a5d --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Rectangle.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +import org.apache.lucene.spatial.base.context.SpatialContext; + +public interface Rectangle extends Shape { + + public double getWidth(); + public double getHeight(); + + public double getMinX(); + public double getMinY(); + public double getMaxX(); + public double getMaxY(); + + /** If {@link #hasArea()} then this returns the area, otherwise it returns 0. */ + public double getArea(); + /** Only meaningful for geospatial contexts. */ + public boolean getCrossesDateLine(); + + /* There is no axis line shape, and this is more efficient then creating a flat Rectangle for intersect(). */ + public SpatialRelation relate_yRange(double minY, double maxY, SpatialContext ctx); + public SpatialRelation relate_xRange(double minX, double maxX, SpatialContext ctx); +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Shape.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Shape.java new file mode 100644 index 00000000000..3292c11619c --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/Shape.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +import org.apache.lucene.spatial.base.context.SpatialContext; + +public interface Shape { + + /** + * Describe the relationship between the two objects. For example + * + * this is WITHIN other + * this CONTAINS other + * this is DISJOINT other + * this INTERSECTS other + * + * The context object is optional -- it may include spatial reference. + */ + SpatialRelation relate(Shape other, SpatialContext ctx); + + /** + * Get the bounding box for this Shape + */ + Rectangle getBoundingBox(); + + /** + * @return true if the shape has area. This will be false for points and lines + */ + boolean hasArea(); + + Point getCenter(); +} + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/SpatialRelation.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/SpatialRelation.java new file mode 100644 index 00000000000..1a6181c4c87 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/SpatialRelation.java @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +/** + * The set of spatial relationships. Naming is consistent with OGC spec conventions as seen in SQL/MM and others. + * No equality case. If two Shape instances are equal then the result might be CONTAINS or WITHIN, and + * some logic might fail under this edge condition when it's not careful to check. + * Client code must be written to detect this and act accordingly. In RectangleImpl.relate(), it checks + * for this explicitly, for example. TestShapes2D.assertRelation() checks too. + */ +public enum SpatialRelation { + WITHIN, + CONTAINS, + DISJOINT, + INTERSECTS; + //Don't have these: TOUCHES, CROSSES, OVERLAPS + + public SpatialRelation transpose() { + switch(this) { + case CONTAINS: return SpatialRelation.WITHIN; + case WITHIN: return SpatialRelation.CONTAINS; + default: return this; + } + } + + /** + * If you were to call aShape.relate(bShape) and aShape.relate(cShape), you could call + * this to merge the intersect results as if bShape & cShape were combined into {@link MultiShape}. + * @param other + * @return + */ + public SpatialRelation combine(SpatialRelation other) { + if (this == other) + return this; + if (this == WITHIN || other == WITHIN) + return WITHIN; + return INTERSECTS; + } + + public boolean intersects() { + return this != DISJOINT; + } + + /** Not commutative! WITHIN.inverse().inverse() != WITHIN. */ + public SpatialRelation inverse() { + switch(this) { + case DISJOINT: return CONTAINS; + case CONTAINS: return DISJOINT; + case WITHIN: return INTERSECTS;//not commutative! + } + return INTERSECTS; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/CircleImpl.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/CircleImpl.java new file mode 100644 index 00000000000..144f0538913 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/CircleImpl.java @@ -0,0 +1,234 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape.simple; + +import org.apache.commons.lang.builder.EqualsBuilder; +import org.apache.commons.lang.builder.HashCodeBuilder; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.*; + +/** + * A circle, also known as a point-radius, based on a + * {@link org.apache.lucene.spatial.base.distance.DistanceCalculator} which does all the work. This implementation + * should work for both cartesian 2D and geodetic sphere surfaces. + * Threadsafe & immutable. + */ +public class CircleImpl implements Circle { + + protected final Point point; + protected final double distance; + + protected final SpatialContext ctx; + + /* below is calculated & cached: */ + + protected final Rectangle enclosingBox; + + //we don't have a line shape so we use a rectangle for these axis + + public CircleImpl(Point p, double dist, SpatialContext ctx) { + //We assume any normalization / validation of params already occurred (including bounding dist) + this.point = p; + this.distance = dist; + this.ctx = ctx; + this.enclosingBox = ctx.getDistCalc().calcBoxByDistFromPt(point, distance, ctx); + } + + public Point getCenter() { + return point; + } + + @Override + public double getDistance() { + return distance; + } + + public boolean contains(double x, double y) { + return ctx.getDistCalc().distance(point, x, y) <= distance; + } + + @Override + public boolean hasArea() { + return distance > 0; + } + + /** + * Note that the bounding box might contain a minX that is > maxX, due to WGS84 dateline. + * @return + */ + @Override + public Rectangle getBoundingBox() { + return enclosingBox; + } + + @Override + public SpatialRelation relate(Shape other, SpatialContext ctx) { + assert this.ctx == ctx; +//This shortcut was problematic in testing due to distinctions of CONTAINS/WITHIN for no-area shapes (lines, points). +// if (distance == 0) { +// return point.relate(other,ctx).intersects() ? SpatialRelation.WITHIN : SpatialRelation.DISJOINT; +// } + + if (other instanceof Point) { + return relate((Point) other, ctx); + } + if (other instanceof Rectangle) { + return relate((Rectangle) other, ctx); + } + if (other instanceof Circle) { + return relate((Circle) other, ctx); + } + return other.relate(this, ctx).transpose(); + } + + public SpatialRelation relate(Point point, SpatialContext ctx) { + return contains(point.getX(),point.getY()) ? SpatialRelation.CONTAINS : SpatialRelation.DISJOINT; + } + + public SpatialRelation relate(Rectangle r, SpatialContext ctx) { + //Note: Surprisingly complicated! + + //--We start by leveraging the fact we have a calculated bbox that is "cheaper" than use of DistanceCalculator. + final SpatialRelation bboxSect = enclosingBox.relate(r, ctx); + if (bboxSect == SpatialRelation.DISJOINT || bboxSect == SpatialRelation.WITHIN) + return bboxSect; + else if (bboxSect == SpatialRelation.CONTAINS && enclosingBox.equals(r))//nasty identity edge-case + return SpatialRelation.WITHIN; + //bboxSect is INTERSECTS or CONTAINS + //The result can be DISJOINT, CONTAINS, or INTERSECTS (not WITHIN) + + return relateRectanglePhase2(r, bboxSect, ctx); + } + + protected SpatialRelation relateRectanglePhase2(final Rectangle r, SpatialRelation bboxSect, SpatialContext ctx) { + /* + !! DOES NOT WORK WITH GEO CROSSING DATELINE OR WORLD-WRAP. + TODO upgrade to handle crossing dateline, but not world-wrap; use some x-shifting code from RectangleImpl. + */ + + //At this point, the only thing we are certain of is that circle is *NOT* WITHIN r, since the bounding box of a + // circle MUST be within r for the circle to be within r. + + //--Quickly determine if they are DISJOINT or not. + //see http://stackoverflow.com/questions/401847/circle-rectangle-collision-detection-intersection/1879223#1879223 + final double closestX; + double ctr_x = getXAxis(); + if ( ctr_x < r.getMinX() ) + closestX = r.getMinX(); + else if (ctr_x > r.getMaxX()) + closestX = r.getMaxX(); + else + closestX = ctr_x; + + final double closestY; + double ctr_y = getYAxis(); + if ( ctr_y < r.getMinY() ) + closestY = r.getMinY(); + else if (ctr_y > r.getMaxY()) + closestY = r.getMaxY(); + else + closestY = ctr_y; + + //Check if there is an intersection from this circle to closestXY + boolean didContainOnClosestXY = false; + if (ctr_x == closestX) { + double deltaY = Math.abs(ctr_y - closestY); + double distYCirc = (ctr_y < closestY ? enclosingBox.getMaxY() - ctr_y : ctr_y - enclosingBox.getMinY()); + if (deltaY > distYCirc) + return SpatialRelation.DISJOINT; + } else if (ctr_y == closestY) { + double deltaX = Math.abs(ctr_x - closestX); + double distXCirc = (ctr_x < closestX ? enclosingBox.getMaxX() - ctr_x : ctr_x - enclosingBox.getMinX()); + if (deltaX > distXCirc) + return SpatialRelation.DISJOINT; + } else { + //fallback on more expensive calculation + didContainOnClosestXY = true; + if(! contains(closestX,closestY) ) + return SpatialRelation.DISJOINT; + } + + //At this point we know that it's *NOT* DISJOINT, so there is some level of intersection. It's *NOT* WITHIN either. + // The only question left is whether circle CONTAINS r or simply intersects it. + + //If circle contains r, then its bbox MUST also CONTAIN r. + if (bboxSect != SpatialRelation.CONTAINS) + return SpatialRelation.INTERSECTS; + + //Find the farthest point of r away from the center of the circle. If that point is contained, then all of r is + // contained. + double farthestX = r.getMaxX() - ctr_x > ctr_x - r.getMinX() ? r.getMaxX() : r.getMinX(); + double farthestY = r.getMaxY() - ctr_y > ctr_y - r.getMinY() ? r.getMaxY() : r.getMinY(); + if (contains(farthestX,farthestY)) + return SpatialRelation.CONTAINS; + return SpatialRelation.INTERSECTS; + } + + /** + * The y axis horizontal of maximal left-right extent of the circle. + */ + protected double getYAxis() { + return point.getY(); + } + + protected double getXAxis() { + return point.getX(); + } + + public SpatialRelation relate(Circle circle, SpatialContext ctx) { + double crossDist = ctx.getDistCalc().distance(point, circle.getCenter()); + double aDist = distance, bDist = circle.getDistance(); + if (crossDist > aDist + bDist) + return SpatialRelation.DISJOINT; + if (crossDist < aDist && crossDist + bDist <= aDist) + return SpatialRelation.CONTAINS; + if (crossDist < bDist && crossDist + aDist <= bDist) + return SpatialRelation.WITHIN; + + return SpatialRelation.INTERSECTS; + } + + @Override + public String toString() { + return "Circle(" + point + ",d=" + distance + ')'; + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { return false; } + if (obj == this) { return true; } + if (obj.getClass() != getClass()) { + return false; + } + CircleImpl rhs = (CircleImpl) obj; + return new EqualsBuilder() + .append(point, rhs.point) + .append(distance, rhs.distance) + .append(ctx, rhs.ctx) + .isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(11, 97). + append(point). + append(distance). + append(ctx). + toHashCode(); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/GeoCircleImpl.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/GeoCircleImpl.java new file mode 100644 index 00000000000..8ac353d7b71 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/GeoCircleImpl.java @@ -0,0 +1,226 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape.simple; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.SpatialRelation; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; + +/** + * @author David Smiley - dsmiley@mitre.org + */ +public class GeoCircleImpl extends CircleImpl { + private final double distDEG;// [0 TO 180] + private final GeoCircleImpl inverseCircle;//when distance reaches > 1/2 way around the world, cache the inverse. + private final double horizAxisY;//see getYAxis + + public GeoCircleImpl(Point p, double dist, SpatialContext ctx) { + super(p, dist, ctx); + assert ctx.isGeo(); + + //In the direction of latitude (N,S), distance is the same number of degrees. + distDEG = ctx.getDistCalc().distanceToDegrees(distance); + + if (distDEG > 90) { + assert enclosingBox.getWidth() == 360; + double backDistDEG = 180 - distDEG; + if (backDistDEG >= 0) { + double backDistance = ctx.getDistCalc().degreesToDistance(backDistDEG); + Point backPoint = ctx.makePoint(getCenter().getX() + 180, getCenter().getY() + 180); + inverseCircle = new GeoCircleImpl(backPoint,backDistance,ctx); + } else + inverseCircle = null;//whole globe + horizAxisY = getCenter().getY();//although probably not used + } else { + inverseCircle = null; + double _horizAxisY = ctx.getDistCalc().calcBoxByDistFromPtHorizAxis(getCenter(), distance, ctx); + //some rare numeric conditioning cases can cause this to be barely beyond the box + if (_horizAxisY > enclosingBox.getMaxY()) { + horizAxisY = enclosingBox.getMaxY(); + } else if (_horizAxisY < enclosingBox.getMinY()) { + horizAxisY = enclosingBox.getMinY(); + } else { + horizAxisY = _horizAxisY; + } + //assert enclosingBox.relate_yRange(horizAxis,horizAxis,ctx).intersects(); + } + + } + + @Override + protected double getYAxis() { + return horizAxisY; + } + + /** + * Called after bounding box is intersected. + * @bboxSect INTERSECTS or CONTAINS from enclosingBox's intersection + * @result DISJOINT, CONTAINS, or INTERSECTS (not WITHIN) + */ + @Override + protected SpatialRelation relateRectanglePhase2(Rectangle r, SpatialRelation bboxSect, SpatialContext ctx) { + + //Rectangle wraps around the world longitudinally creating a solid band; there are no corners to test intersection + if (r.getWidth() == 360) { + return SpatialRelation.INTERSECTS; + } + + if (inverseCircle != null) { + return inverseCircle.relate(r, ctx).inverse(); + } + + //if a pole is wrapped, we have a separate algorithm + if (enclosingBox.getWidth() == 360) { + return relateRectangleCircleWrapsPole(r, ctx); + } + + //This is an optimization path for when there are no dateline or pole issues. + if (!enclosingBox.getCrossesDateLine() && !r.getCrossesDateLine()) { + return super.relateRectanglePhase2(r, bboxSect, ctx); + } + + //do quick check to see if all corners are within this circle for CONTAINS + int cornersIntersect = numCornersIntersect(r); + if (cornersIntersect == 4) { + //ensure r's x axis is within c's. If it doesn't, r sneaks around the globe to touch the other side (intersect). + SpatialRelation xIntersect = r.relate_xRange(enclosingBox.getMinX(), enclosingBox.getMaxX(), ctx); + if (xIntersect == SpatialRelation.WITHIN) + return SpatialRelation.CONTAINS; + return SpatialRelation.INTERSECTS; + } + + //INTERSECT or DISJOINT ? + if (cornersIntersect > 0) + return SpatialRelation.INTERSECTS; + + //Now we check if one of the axis of the circle intersect with r. If so we have + // intersection. + + /* x axis intersects */ + if ( r.relate_yRange(getYAxis(), getYAxis(), ctx).intersects() // at y vertical + && r.relate_xRange(enclosingBox.getMinX(), enclosingBox.getMaxX(), ctx).intersects() ) + return SpatialRelation.INTERSECTS; + + /* y axis intersects */ + if (r.relate_xRange(getXAxis(), getXAxis(), ctx).intersects()) { // at x horizontal + double yTop = getCenter().getY()+ distDEG; + assert yTop <= 90; + double yBot = getCenter().getY()- distDEG; + assert yBot >= -90; + if (r.relate_yRange(yBot, yTop, ctx).intersects())//back bottom + return SpatialRelation.INTERSECTS; + } + + return SpatialRelation.DISJOINT; + } + + private SpatialRelation relateRectangleCircleWrapsPole(Rectangle r, SpatialContext ctx) { + //This method handles the case where the circle wraps ONE pole, but not both. For both, + // there is the inverseCircle case handled before now. The only exception is for the case where + // the circle covers the entire globe, and we'll check that first. + if (distDEG == 180)//whole globe + return SpatialRelation.CONTAINS; + + //Check if r is within the pole wrap region: + double yTop = getCenter().getY()+ distDEG; + if (yTop > 90) { + double yTopOverlap = yTop - 90; + assert yTopOverlap <= 90; + if (r.getMinY() >= 90 - yTopOverlap) + return SpatialRelation.CONTAINS; + } else { + double yBot = point.getY() - distDEG; + if (yBot < -90) { + double yBotOverlap = -90 - yBot; + assert yBotOverlap <= 90; + if (r.getMaxY() <= -90 + yBotOverlap) + return SpatialRelation.CONTAINS; + } else { + //This point is probably not reachable ?? + assert yTop == 90 || yBot == -90;//we simply touch a pole + //continue + } + } + + //If there are no corners to check intersection because r wraps completely... + if (r.getWidth() == 360) + return SpatialRelation.INTERSECTS; + + //Check corners: + int cornersIntersect = numCornersIntersect(r); + // (It might be possible to reduce contains() calls within nCI() to exactly two, but this intersection + // code is complicated enough as it is.) + if (cornersIntersect == 4) {//all + double backX = ctx.normX(getCenter().getX()+180); + if (r.relate_xRange(backX, backX, ctx).intersects()) + return SpatialRelation.INTERSECTS; + else + return SpatialRelation.CONTAINS; + } else if (cornersIntersect == 0) {//none + double frontX = getCenter().getX(); + if (r.relate_xRange(frontX, frontX, ctx).intersects()) + return SpatialRelation.INTERSECTS; + else + return SpatialRelation.DISJOINT; + } else//partial + return SpatialRelation.INTERSECTS; + } + + /** Returns either 0 for none, 1 for some, or 4 for all. */ + private int numCornersIntersect(Rectangle r) { + //We play some logic games to avoid calling contains() which can be expensive. + boolean bool;//if true then all corners intersect, if false then no corners intersect + // for partial, we exit early with 1 and ignore bool. + bool = (contains(r.getMinX(),r.getMinY())); + if (contains(r.getMinX(),r.getMaxY())) { + if (!bool) + return 1;//partial + } else { + if (bool) + return 1;//partial + } + if (contains(r.getMaxX(),r.getMinY())) { + if (!bool) + return 1;//partial + } else { + if (bool) + return 1;//partial + } + if (contains(r.getMaxX(),r.getMaxY())) { + if (!bool) + return 1;//partial + } else { + if (bool) + return 1;//partial + } + return bool?4:0; + } + + @Override + public String toString() { + //I'm deliberately making this look basic and not fully detailed with class name & misc fields. + //Add distance in degrees, which is easier to recognize, and earth radius agnostic. + String dStr = String.format("%.1f",distance); + if (ctx.isGeo()) { + double distDEG = ctx.getDistCalc().distanceToDegrees(distance); + dStr += String.format("=%.1f\u00B0",distDEG); + } + return "Circle(" + point + ",d=" + dStr + ')'; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/PointImpl.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/PointImpl.java new file mode 100644 index 00000000000..054e90199d1 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/PointImpl.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape.simple; + +import org.apache.commons.lang.builder.EqualsBuilder; +import org.apache.commons.lang.builder.HashCodeBuilder; +import org.apache.lucene.spatial.base.shape.SpatialRelation; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Shape; + + +public class PointImpl implements Point { + + private final double x; + private final double y; + + public PointImpl(double x, double y) { + this.x = x; + this.y = y; + } + + @Override + public double getX() { + return x; + } + + @Override + public double getY() { + return y; + } + @Override + public Rectangle getBoundingBox() { + return new RectangleImpl(x, x, y, y); + } + + @Override + public PointImpl getCenter() { + return this; + } + + @Override + public SpatialRelation relate(Shape other, SpatialContext ctx) { + if (other instanceof Point) + return this.equals(other) ? SpatialRelation.INTERSECTS : SpatialRelation.DISJOINT; + return other.relate(this, ctx).transpose(); + } + + @Override + public boolean hasArea() { + return false; + } + + @Override + public String toString() { + return "Pt(x="+x+",y="+y+")"; + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { return false; } + if (obj == this) { return true; } + if (obj.getClass() != getClass()) { + return false; + } + PointImpl rhs = (PointImpl) obj; + return new EqualsBuilder() + .append(x, rhs.x) + .append(y, rhs.y) + .isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(5, 89). + append(x). + append(y). + toHashCode(); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/RectangleImpl.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/RectangleImpl.java new file mode 100644 index 00000000000..fb8e3c8985e --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/base/shape/simple/RectangleImpl.java @@ -0,0 +1,248 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape.simple; + +import org.apache.commons.lang.builder.EqualsBuilder; +import org.apache.commons.lang.builder.HashCodeBuilder; +import org.apache.lucene.spatial.base.shape.SpatialRelation; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceUtils; +import org.apache.lucene.spatial.base.shape.*; + +/** + * A simple Rectangle implementation that also supports a longitudinal wrap-around. When minX > maxX, this will assume + * it is world coordinates that cross the date line using degrees. + * Immutable & threadsafe. + */ +public class RectangleImpl implements Rectangle { + + private final double minX; + private final double maxX; + private final double minY; + private final double maxY; + + //TODO change to West South East North to be more consistent with OGC? + public RectangleImpl(double minX, double maxX, double minY, double maxY) { + //We assume any normalization / validation of params already occurred. + this.minX = minX; + this.maxX = maxX; + this.minY = minY; + this.maxY = maxY; + assert minY <= maxY; + } + + /** Copy constructor. */ + public RectangleImpl(Rectangle r) { + this(r.getMinX(),r.getMaxX(),r.getMinY(),r.getMaxY()); + } + + @Override + public boolean hasArea() { + return maxX != minX && maxY != minY; + } + + @Override + public double getArea() { + return getWidth() * getHeight(); + } + + @Override + public boolean getCrossesDateLine() { + return (minX > maxX); + } + + @Override + public double getHeight() { + return maxY - minY; + } + + @Override + public double getWidth() { + double w = maxX - minX; + if (w < 0) {//only true when minX > maxX (WGS84 assumed) + w += 360; + assert w >= 0; + } + return w; + } + + @Override + public double getMaxX() { + return maxX; + } + + @Override + public double getMaxY() { + return maxY; + } + + @Override + public double getMinX() { + return minX; + } + + @Override + public double getMinY() { + return minY; + } + + @Override + public Rectangle getBoundingBox() { + return this; + } + + @Override + public SpatialRelation relate(Shape other, SpatialContext ctx) { + if (other instanceof Point) { + return relate((Point) other, ctx); + } + if (other instanceof Rectangle) { + return relate((Rectangle) other, ctx); + } + return other.relate(this, ctx).transpose(); + } + + public SpatialRelation relate(Point point, SpatialContext ctx) { + if (point.getY() > getMaxY() || point.getY() < getMinY() || + (getCrossesDateLine() ? + (point.getX() < minX && point.getX() > maxX) + : (point.getX() < minX || point.getX() > maxX) )) + return SpatialRelation.DISJOINT; + return SpatialRelation.CONTAINS; + } + + public SpatialRelation relate(Rectangle rect, SpatialContext ctx) { + SpatialRelation yIntersect = relate_yRange(rect.getMinY(), rect.getMaxY(), ctx); + if (yIntersect == SpatialRelation.DISJOINT) + return SpatialRelation.DISJOINT; + + SpatialRelation xIntersect = relate_xRange(rect.getMinX(), rect.getMaxX(), ctx); + if (xIntersect == SpatialRelation.DISJOINT) + return SpatialRelation.DISJOINT; + + if (xIntersect == yIntersect)//in agreement + return xIntersect; + + //if one side is equal, return the other + if (getMinX() == rect.getMinX() && getMaxX() == rect.getMaxX()) + return yIntersect; + if (getMinY() == rect.getMinY() && getMaxY() == rect.getMaxY()) + return xIntersect; + + return SpatialRelation.INTERSECTS; + } + + public SpatialRelation relate_yRange(double ext_minY, double ext_maxY, SpatialContext ctx) { + if (ext_minY > maxY || ext_maxY < minY) { + return SpatialRelation.DISJOINT; + } + + if (ext_minY >= minY && ext_maxY <= maxY) { + return SpatialRelation.CONTAINS; + } + + if (ext_minY <= minY && ext_maxY >= maxY) { + return SpatialRelation.WITHIN; + } + return SpatialRelation.INTERSECTS; + } + + @Override + public SpatialRelation relate_xRange(double ext_minX, double ext_maxX, SpatialContext ctx) { + //For ext & this we have local minX and maxX variable pairs. We rotate them so that minX <= maxX + double minX = this.minX; + double maxX = this.maxX; + if (ctx.isGeo()) { + //the 360 check is an edge-case for complete world-wrap + double ext_width = ext_maxX - ext_minX; + if (ext_width < 0)//this logic unfortunately duplicates getWidth() + ext_width += 360; + + if (ext_width < 360) { + ext_maxX = ext_minX + ext_width; + } else { + ext_maxX = 180+360; + } + + if (getWidth() < 360) { + maxX = minX + getWidth(); + } else { + maxX = 180+360; + } + + if (maxX < ext_minX) { + minX += 360; + maxX += 360; + } else if (ext_maxX < minX) { + ext_minX += 360; + ext_maxX += 360; + } + } + + if (ext_minX > maxX || ext_maxX < minX ) { + return SpatialRelation.DISJOINT; + } + + if (ext_minX >= minX && ext_maxX <= maxX ) { + return SpatialRelation.CONTAINS; + } + + if (ext_minX <= minX && ext_maxX >= maxX ) { + return SpatialRelation.WITHIN; + } + return SpatialRelation.INTERSECTS; + } + + @Override + public String toString() { + return "Rect(minX=" + minX + ",maxX=" + maxX + ",minY=" + minY + ",maxY=" + maxY + ")"; + } + + @Override + public Point getCenter() { + final double y = getHeight() / 2 + minY; + double x = getWidth() / 2 + minX; + if (minX > maxX)//WGS84 + x = DistanceUtils.normLonDEG(x); + return new PointImpl(x, y); + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { return false; } + if (obj == this) { return true; } + if (obj.getClass() != getClass()) { + return false; + } + RectangleImpl rhs = (RectangleImpl) obj; + return new EqualsBuilder() + .append(minX, rhs.minX) + .append(minY, rhs.minY) + .append(maxX, rhs.maxX) + .append(maxY, rhs.maxY) + .isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(41, 37). + append(minX).append(minY). + append(maxX).append(maxY). + toHashCode(); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/IndexShapeTask.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/IndexShapeTask.java new file mode 100644 index 00000000000..559520be7fe --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/IndexShapeTask.java @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.benchmark; + +import org.apache.lucene.benchmark.byTask.PerfRunData; +import org.apache.lucene.benchmark.byTask.tasks.PerfTask; +import org.apache.lucene.benchmark.byTask.utils.Config; +import org.apache.lucene.document.Document; +import org.apache.lucene.document.Field; +import org.apache.lucene.document.StringField; +import org.apache.lucene.index.IndexableField; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.strategy.SpatialFieldInfo; +import org.apache.lucene.spatial.strategy.SpatialStrategy; + +import java.util.UUID; + +public abstract class IndexShapeTask extends PerfTask implements StrategyAware { + + private ShapeGenerator shapeGenerator; + private int numShapes; + + public IndexShapeTask(PerfRunData runData) { + super(runData); + } + + @Override + public void setup() throws Exception { + Config config = getRunData().getConfig(); + String shapeGeneratorName = config.get("index.shapegenerator", ""); // TODO (cmale) - Setup default shape generator + shapeGenerator = (ShapeGenerator) Class.forName(shapeGeneratorName) + .getConstructor(Config.class) + .newInstance(config); + numShapes = config.get("index.numshapes", 1); + } + + @Override + public int doLogic() throws Exception { + SpatialStrategy spatialStrategy = createSpatialStrategy(); + T fieldInfo = createFieldInfo(); + for (int i = 0; i < numShapes; i++) { + Shape shape = shapeGenerator.generate(); + IndexableField[] fields = spatialStrategy.createFields(fieldInfo, shape, true, true); + if (fields == null) { + continue; + } + Document document = new Document(); + document.add(new Field("id",UUID.randomUUID().toString(),StringField.TYPE_STORED)); + for (IndexableField field : fields) { + document.add(field); + } + getRunData().getIndexWriter().addDocument(document); + } + return 1; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/QueryShapeTask.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/QueryShapeTask.java new file mode 100644 index 00000000000..a71ac009eb1 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/QueryShapeTask.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.benchmark; + +import org.apache.lucene.benchmark.byTask.PerfRunData; +import org.apache.lucene.benchmark.byTask.tasks.PerfTask; +import org.apache.lucene.benchmark.byTask.utils.Config; +import org.apache.lucene.search.Query; +import org.apache.lucene.search.TopDocs; +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.query.SpatialArgsParser; +import org.apache.lucene.spatial.strategy.SpatialFieldInfo; + + +public abstract class QueryShapeTask extends PerfTask implements StrategyAware { + + private SpatialArgs spatialArgs; + + public QueryShapeTask(PerfRunData runData) { + super(runData); + } + + @Override + public void setup() { + Config config = getRunData().getConfig(); + String rawQuery = config.get("query.shapequery", ""); // TODO (cmale) - Come up with default query + this.spatialArgs = new SpatialArgsParser().parse(rawQuery, getSpatialContext()); + } + + @Override + public int doLogic() throws Exception { + Query query = createSpatialStrategy().makeQuery(spatialArgs, createFieldInfo()); + TopDocs topDocs = getRunData().getIndexSearcher().search(query, 10); + System.out.println("Numfound: " + topDocs.totalHits); + return 1; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/ShapeGenerator.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/ShapeGenerator.java new file mode 100644 index 00000000000..120519cb49c --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/ShapeGenerator.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.benchmark; + +import org.apache.lucene.benchmark.byTask.utils.Config; +import org.apache.lucene.spatial.base.shape.Shape; + + +public abstract class ShapeGenerator { + + private Config config; + + protected ShapeGenerator(Config config) { + this.config = config; + } + + public abstract Shape generate(); + + protected Config getConfig() { + return config; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/StrategyAware.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/StrategyAware.java new file mode 100644 index 00000000000..9f851f3f101 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/benchmark/StrategyAware.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.benchmark; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.strategy.SpatialFieldInfo; +import org.apache.lucene.spatial.strategy.SpatialStrategy; + + +public interface StrategyAware { + + T createFieldInfo(); + + SpatialStrategy createSpatialStrategy(); + + SpatialContext getSpatialContext(); +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SimpleSpatialFieldInfo.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SimpleSpatialFieldInfo.java new file mode 100644 index 00000000000..5d856d64cb9 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SimpleSpatialFieldInfo.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy; + + +public class SimpleSpatialFieldInfo implements SpatialFieldInfo { + + private final String fieldName; + + public SimpleSpatialFieldInfo(String fieldName) { + this.fieldName = fieldName; + } + + public String getFieldName() { + return fieldName; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialFieldInfo.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialFieldInfo.java new file mode 100644 index 00000000000..a97e55bc776 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialFieldInfo.java @@ -0,0 +1,24 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy; + +/** + * Information the strategy needs for the lucene fields + */ +public interface SpatialFieldInfo { +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialStrategy.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialStrategy.java new file mode 100644 index 00000000000..584abcbdd4b --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/SpatialStrategy.java @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy; + +import org.apache.lucene.index.IndexableField; +import org.apache.lucene.queries.function.ValueSource; +import org.apache.lucene.search.Filter; +import org.apache.lucene.search.Query; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.shape.Shape; + +/** + * must be thread safe + */ +public abstract class SpatialStrategy { + + protected boolean ignoreIncompatibleGeometry = false; + protected final SpatialContext ctx; + + public SpatialStrategy(SpatialContext ctx) { + this.ctx = ctx; + } + + public SpatialContext getSpatialContext() { + return ctx; + } + + /** Corresponds with Solr's FieldType.isPolyField(). */ + public boolean isPolyField() { + return false; + } + + /** + * Corresponds with Solr's FieldType.createField(). + * + * This may return a null field if it does not want to make anything. + * This is reasonable behavior if 'ignoreIncompatibleGeometry=true' and the + * geometry is incompatible + */ + public abstract IndexableField createField(T fieldInfo, Shape shape, boolean index, boolean store); + + /** Corresponds with Solr's FieldType.createFields(). */ + public IndexableField[] createFields(T fieldInfo, Shape shape, boolean index, boolean store) { + return new IndexableField[] { createField(fieldInfo, shape, index, store) }; + } + + public abstract ValueSource makeValueSource(SpatialArgs args, T fieldInfo); + + /** + * Make a query + */ + public abstract Query makeQuery(SpatialArgs args, T fieldInfo); + + /** + * Make a Filter + */ + public abstract Filter makeFilter(SpatialArgs args, T fieldInfo); + + public boolean isIgnoreIncompatibleGeometry() { + return ignoreIncompatibleGeometry; + } + + public void setIgnoreIncompatibleGeometry(boolean ignoreIncompatibleGeometry) { + this.ignoreIncompatibleGeometry = ignoreIncompatibleGeometry; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/package-info.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/package-info.java new file mode 100644 index 00000000000..c51f9840ec3 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/package-info.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +/** + * Lucene spatial search + * + * Check: + * http://blog.notdot.net/2009/11/Damn-Cool-Algorithms-Spatial-indexing-with-Quadtrees-and-Hilbert-Curves + */ +package org.apache.lucene.spatial.strategy; + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PointPrefixTreeFieldCacheProvider.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PointPrefixTreeFieldCacheProvider.java new file mode 100644 index 00000000000..c82ed12af52 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PointPrefixTreeFieldCacheProvider.java @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.spatial.base.prefix.Node; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTree; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.strategy.util.ShapeFieldCacheProvider; +import org.apache.lucene.util.BytesRef; + +public class PointPrefixTreeFieldCacheProvider extends ShapeFieldCacheProvider { + + final SpatialPrefixTree grid; // + + public PointPrefixTreeFieldCacheProvider(SpatialPrefixTree grid, String shapeField, int defaultSize) { + super( shapeField, defaultSize ); + this.grid = grid; + } + + //A kluge that this is a field + private Node scanCell = null; + + @Override + protected Point readShape(BytesRef term) { + scanCell = grid.getNode(term.bytes, term.offset, term.length, scanCell); + return scanCell.isLeaf() ? scanCell.getShape().getCenter() : null; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixCellsTokenizer.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixCellsTokenizer.java new file mode 100644 index 00000000000..01d0eff457a --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixCellsTokenizer.java @@ -0,0 +1,89 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import java.io.IOException; +import java.io.Reader; + +import org.apache.lucene.analysis.Tokenizer; +import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; + + +/** + * + */ +class PrefixCellsTokenizer extends Tokenizer { + public PrefixCellsTokenizer(Reader input) { + super(input); + } + + private final CharTermAttribute termAtt = addAttribute(CharTermAttribute.class); + + @Override + public final boolean incrementToken() throws IOException { + clearAttributes(); + int length = 0; + char[] buffer = termAtt.buffer(); + while (true) { + char c = (char) input.read(); + if (c < 0) break; + if (c == 'a' || c == 'A') { + buffer[length++] = 'A'; + continue; + } + if (c == 'b' || c == 'B') { + buffer[length++] = 'B'; + continue; + } + if (c == 'c' || c == 'C') { + buffer[length++] = 'C'; + continue; + } + if (c == 'd' || c == 'D') { + buffer[length++] = 'D'; + continue; + } + if (c == '*') { + buffer[length++] = '*'; + continue; + } + if (c == '+') { + buffer[length++] = '+'; + continue; + } + + if (length > 0) { + // Skip any other character + break; + } + } + + termAtt.setLength(length); + return length > 0; // should only happen at the end + } + + @Override + public final void end() { + + } + + @Override + public void reset(Reader input) throws IOException { + super.reset(input); + } +} \ No newline at end of file diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixTreeStrategy.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixTreeStrategy.java new file mode 100644 index 00000000000..307246d31eb --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/PrefixTreeStrategy.java @@ -0,0 +1,174 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.analysis.TokenStream; +import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; +import org.apache.lucene.document.Field; +import org.apache.lucene.document.FieldType; +import org.apache.lucene.document.StoredField; +import org.apache.lucene.index.IndexableField; +import org.apache.lucene.queries.function.ValueSource; +import org.apache.lucene.spatial.base.distance.DistanceCalculator; +import org.apache.lucene.spatial.base.prefix.Node; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTree; +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.strategy.SimpleSpatialFieldInfo; +import org.apache.lucene.spatial.strategy.SpatialStrategy; +import org.apache.lucene.spatial.strategy.util.CachedDistanceValueSource; + +import java.io.IOException; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +public abstract class PrefixTreeStrategy extends SpatialStrategy { + protected final SpatialPrefixTree grid; + private final Map provider = new ConcurrentHashMap(); + protected int defaultFieldValuesArrayLen = 2; + protected double distErrPct = SpatialArgs.DEFAULT_DIST_PRECISION; + + public PrefixTreeStrategy(SpatialPrefixTree grid) { + super(grid.getSpatialContext()); + this.grid = grid; + } + + /** Used in the in-memory ValueSource as a default ArrayList length for this field's array of values, per doc. */ + public void setDefaultFieldValuesArrayLen(int defaultFieldValuesArrayLen) { + this.defaultFieldValuesArrayLen = defaultFieldValuesArrayLen; + } + + /** See {@link SpatialPrefixTree#getMaxLevelForPrecision(org.apache.lucene.spatial.base.shape.Shape, double)}. */ + public void setDistErrPct(double distErrPct) { + this.distErrPct = distErrPct; + } + + @Override + public IndexableField createField(SimpleSpatialFieldInfo fieldInfo, Shape shape, boolean index, boolean store) { + int detailLevel = grid.getMaxLevelForPrecision(shape,distErrPct); + List cells = grid.getNodes(shape, detailLevel, true);//true=intermediates cells + //If shape isn't a point, add a full-resolution center-point so that + // PrefixFieldCacheProvider has the center-points. + // TODO index each center of a multi-point? Yes/no? + if (!(shape instanceof Point)) { + Point ctr = shape.getCenter(); + //TODO should be smarter; don't index 2 tokens for this in CellTokenizer. Harmless though. + cells.add(grid.getNodes(ctr,grid.getMaxLevels(),false).get(0)); + } + + String fname = fieldInfo.getFieldName(); + if( store ) { + //TODO figure out how to re-use original string instead of reconstituting it. + String wkt = grid.getSpatialContext().toString(shape); + if( index ) { + Field f = new Field(fname,wkt,TYPE_STORED); + f.setTokenStream(new CellTokenStream(cells.iterator())); + return f; + } + return new StoredField(fname,wkt); + } + + if( index ) { + return new Field(fname,new CellTokenStream(cells.iterator()),TYPE_UNSTORED); + } + + throw new UnsupportedOperationException("Fields need to be indexed or store ["+fname+"]"); + } + + /* Indexed, tokenized, not stored. */ + public static final FieldType TYPE_UNSTORED = new FieldType(); + + /* Indexed, tokenized, stored. */ + public static final FieldType TYPE_STORED = new FieldType(); + + static { + TYPE_UNSTORED.setIndexed(true); + TYPE_UNSTORED.setTokenized(true); + TYPE_UNSTORED.setOmitNorms(true); + TYPE_UNSTORED.freeze(); + + TYPE_STORED.setStored(true); + TYPE_STORED.setIndexed(true); + TYPE_STORED.setTokenized(true); + TYPE_STORED.setOmitNorms(true); + TYPE_STORED.freeze(); + } + + /** Outputs the tokenString of a cell, and if its a leaf, outputs it again with the leaf byte. */ + final static class CellTokenStream extends TokenStream { + + private final CharTermAttribute termAtt = addAttribute(CharTermAttribute.class); + + private Iterator iter = null; + + public CellTokenStream(Iterator tokens) { + this.iter = tokens; + } + + CharSequence nextTokenStringNeedingLeaf = null; + + @Override + public boolean incrementToken() throws IOException { + clearAttributes(); + if (nextTokenStringNeedingLeaf != null) { + termAtt.append(nextTokenStringNeedingLeaf); + termAtt.append((char) Node.LEAF_BYTE); + nextTokenStringNeedingLeaf = null; + return true; + } + if (iter.hasNext()) { + Node cell = iter.next(); + CharSequence token = cell.getTokenString(); + termAtt.append(token); + if (cell.isLeaf()) + nextTokenStringNeedingLeaf = token; + return true; + } + return false; + } + + } + + @Override + public ValueSource makeValueSource(SpatialArgs args, SimpleSpatialFieldInfo fieldInfo) { + DistanceCalculator calc = grid.getSpatialContext().getDistCalc(); + return makeValueSource(args, fieldInfo, calc); + } + + public ValueSource makeValueSource(SpatialArgs args, SimpleSpatialFieldInfo fieldInfo, DistanceCalculator calc) { + PointPrefixTreeFieldCacheProvider p = provider.get( fieldInfo.getFieldName() ); + if( p == null ) { + synchronized (this) {//double checked locking idiom is okay since provider is threadsafe + p = provider.get( fieldInfo.getFieldName() ); + if (p == null) { + p = new PointPrefixTreeFieldCacheProvider(grid, fieldInfo.getFieldName(), defaultFieldValuesArrayLen); + provider.put(fieldInfo.getFieldName(),p); + } + } + } + Point point = args.getShape().getCenter(); + return new CachedDistanceValueSource(point, calc, p); + } + + public SpatialPrefixTree getGrid() { + return grid; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeFilter.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeFilter.java new file mode 100644 index 00000000000..18f023f200d --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeFilter.java @@ -0,0 +1,192 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.index.*; +import org.apache.lucene.search.DocIdSet; +import org.apache.lucene.search.DocIdSetIterator; +import org.apache.lucene.search.Filter; +import org.apache.lucene.spatial.base.shape.SpatialRelation; +import org.apache.lucene.spatial.base.prefix.Node; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTree; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.util.Bits; +import org.apache.lucene.util.BytesRef; +import org.apache.lucene.util.OpenBitSet; +import org.apache.lucene.util.StringHelper; + +import java.io.IOException; +import java.util.LinkedList; + +/** + * Performs a spatial intersection filter against a field indexed with {@link SpatialPrefixTree}, a Trie. + * SPT yields terms (grids) at length 1 and at greater lengths corresponding to greater precisions. + * This filter recursively traverses each grid length and uses methods on {@link Shape} to efficiently know + * that all points at a prefix fit in the shape or not to either short-circuit unnecessary traversals or to efficiently + * load all enclosed points. + */ +public class RecursivePrefixTreeFilter extends Filter { + + /* TODOs for future: + +Can a polygon query shape be optimized / made-simpler at recursive depths (e.g. intersection of shape + cell box) + +RE "scan" threshold: + // IF configured to do so, we could use term.freq() as an estimate on the number of places at this depth. OR, perhaps + // make estimates based on the total known term count at this level? + if (!scan) { + //Make some estimations on how many points there are at this level and how few there would need to be to set + // !scan to false. + long termsThreshold = (long) estimateNumberIndexedTerms(cell.length(),queryShape.getDocFreqExpenseThreshold(cell)); + long thisOrd = termsEnum.ord(); + scan = (termsEnum.seek(thisOrd+termsThreshold+1) == TermsEnum.SeekStatus.END + || !cell.contains(termsEnum.term())); + termsEnum.seek(thisOrd);//return to last position + } + + */ + + private final String fieldName; + private final SpatialPrefixTree grid; + private final Shape queryShape; + private final int prefixGridScanLevel;//at least one less than grid.getMaxLevels() + private final int detailLevel; + + public RecursivePrefixTreeFilter(String fieldName, SpatialPrefixTree grid, Shape queryShape, int prefixGridScanLevel, + int detailLevel) { + this.fieldName = fieldName; + this.grid = grid; + this.queryShape = queryShape; + this.prefixGridScanLevel = Math.max(1,Math.min(prefixGridScanLevel,grid.getMaxLevels()-1)); + this.detailLevel = detailLevel; + assert detailLevel <= grid.getMaxLevels(); + } + + @Override + public DocIdSet getDocIdSet(AtomicReaderContext ctx, Bits acceptDocs) throws IOException { + AtomicReader reader = ctx.reader(); + OpenBitSet bits = new OpenBitSet(reader.maxDoc()); + Terms terms = reader.terms(fieldName); + if (terms == null) + return null; + TermsEnum termsEnum = terms.iterator(null); + DocsEnum docsEnum = null;//cached for termsEnum.docs() calls + Node scanCell = null; + + //cells is treated like a stack. LinkedList conveniently has bulk add to beginning. It's in sorted order so that we + // always advance forward through the termsEnum index. + LinkedList cells = new LinkedList( + grid.getWorldNode().getSubCells(queryShape) ); + + //This is a recursive algorithm that starts with one or more "big" cells, and then recursively dives down into the + // first such cell that intersects with the query shape. It's a depth first traversal because we don't move onto + // the next big cell (breadth) until we're completely done considering all smaller cells beneath it. For a given + // cell, if it's *within* the query shape then we can conveniently short-circuit the depth traversal and + // grab all documents assigned to this cell/term. For an intersection of the cell and query shape, we either + // recursively step down another grid level or we decide heuristically (via prefixGridScanLevel) that there aren't + // that many points, and so we scan through all terms within this cell (i.e. the term starts with the cell's term), + // seeing which ones are within the query shape. + while(!cells.isEmpty()) { + final Node cell = cells.removeFirst(); + final BytesRef cellTerm = new BytesRef(cell.getTokenBytes()); + TermsEnum.SeekStatus seekStat = termsEnum.seekCeil(cellTerm); + if (seekStat == TermsEnum.SeekStatus.END) + break; + if (seekStat == TermsEnum.SeekStatus.NOT_FOUND) + continue; + if (cell.getLevel() == detailLevel || cell.isLeaf()) { + docsEnum = termsEnum.docs(acceptDocs, docsEnum, false); + addDocs(docsEnum,bits); + } else {//any other intersection + //If the next indexed term is the leaf marker, then add all of them + BytesRef nextCellTerm = termsEnum.next(); + assert StringHelper.startsWith(nextCellTerm, cellTerm); + scanCell = grid.getNode(nextCellTerm.bytes, nextCellTerm.offset, nextCellTerm.length, scanCell); + if (scanCell.isLeaf()) { + docsEnum = termsEnum.docs(acceptDocs, docsEnum, false); + addDocs(docsEnum,bits); + termsEnum.next();//move pointer to avoid potential redundant addDocs() below + } + + //Decide whether to continue to divide & conquer, or whether it's time to scan through terms beneath this cell. + // Scanning is a performance optimization trade-off. + boolean scan = cell.getLevel() >= prefixGridScanLevel;//simple heuristic + + if (!scan) { + //Divide & conquer + cells.addAll(0, cell.getSubCells(queryShape));//add to beginning + } else { + //Scan through all terms within this cell to see if they are within the queryShape. No seek()s. + for(BytesRef term = termsEnum.term(); term != null && StringHelper.startsWith(term,cellTerm); term = termsEnum.next()) { + scanCell = grid.getNode(term.bytes, term.offset, term.length, scanCell); + int termLevel = scanCell.getLevel(); + if (termLevel > detailLevel) + continue; + if (termLevel == detailLevel || scanCell.isLeaf()) { + //TODO should put more thought into implications of box vs point + Shape cShape = termLevel == grid.getMaxLevels() ? scanCell.getCenter() : scanCell.getShape(); + if(queryShape.relate(cShape, grid.getSpatialContext()) == SpatialRelation.DISJOINT) + continue; + + docsEnum = termsEnum.docs(acceptDocs, docsEnum, false); + addDocs(docsEnum,bits); + } + }//term loop + } + } + }//cell loop + + return bits; + } + + private void addDocs(DocsEnum docsEnum, OpenBitSet bits) throws IOException { + int docid; + while ((docid = docsEnum.nextDoc()) != DocIdSetIterator.NO_MORE_DOCS) { + bits.fastSet(docid); + } + } + + @Override + public String toString() { + return "GeoFilter{fieldName='" + fieldName + '\'' + ", shape=" + queryShape + '}'; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + RecursivePrefixTreeFilter that = (RecursivePrefixTreeFilter) o; + + if (!fieldName.equals(that.fieldName)) return false; + //note that we don't need to look at grid since for the same field it should be the same + if (prefixGridScanLevel != that.prefixGridScanLevel) return false; + if (detailLevel != that.detailLevel) return false; + if (!queryShape.equals(that.queryShape)) return false; + + return true; + } + + @Override + public int hashCode() { + int result = fieldName.hashCode(); + result = 31 * result + queryShape.hashCode(); + result = 31 * result + detailLevel; + return result; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategy.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategy.java new file mode 100644 index 00000000000..c6446965a08 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategy.java @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.search.Filter; +import org.apache.lucene.search.FilteredQuery; +import org.apache.lucene.search.Query; +import org.apache.lucene.queries.function.ValueSource; +import org.apache.lucene.queries.function.FunctionQuery; +import org.apache.lucene.spatial.base.exception.UnsupportedSpatialOperation; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTree; +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.query.SpatialOperation; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.strategy.SimpleSpatialFieldInfo; + + +public class RecursivePrefixTreeStrategy extends PrefixTreeStrategy { + + private int prefixGridScanLevel;//TODO how is this customized? + + public RecursivePrefixTreeStrategy(SpatialPrefixTree grid) { + super(grid); + prefixGridScanLevel = grid.getMaxLevels() - 4;//TODO this default constant is dependent on the prefix grid size + } + + public void setPrefixGridScanLevel(int prefixGridScanLevel) { + this.prefixGridScanLevel = prefixGridScanLevel; + } + + @Override + public String toString() { + return getClass().getSimpleName()+"(prefixGridScanLevel:"+prefixGridScanLevel+",SPG:("+ grid +"))"; + } + + @Override + public Query makeQuery(SpatialArgs args, SimpleSpatialFieldInfo fieldInfo) { + Filter f = makeFilter(args, fieldInfo); + + ValueSource vs = makeValueSource(args, fieldInfo); + return new FilteredQuery( new FunctionQuery(vs), f ); + } + + @Override + public Filter makeFilter(SpatialArgs args, SimpleSpatialFieldInfo fieldInfo) { + final SpatialOperation op = args.getOperation(); + if (! SpatialOperation.is(op, SpatialOperation.IsWithin, SpatialOperation.Intersects, SpatialOperation.BBoxWithin)) + throw new UnsupportedSpatialOperation(op); + + Shape qshape = args.getShape(); + + int detailLevel = grid.getMaxLevelForPrecision(qshape,args.getDistPrecision()); + + return new RecursivePrefixTreeFilter( + fieldInfo.getFieldName(), grid,qshape, prefixGridScanLevel, detailLevel); + } +} + + + + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/TermQueryPrefixTreeStrategy.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/TermQueryPrefixTreeStrategy.java new file mode 100644 index 00000000000..bef5026b236 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/TermQueryPrefixTreeStrategy.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.index.Term; +import org.apache.lucene.search.*; +import org.apache.lucene.spatial.base.exception.UnsupportedSpatialOperation; +import org.apache.lucene.spatial.base.prefix.Node; +import org.apache.lucene.spatial.base.prefix.SpatialPrefixTree; +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.query.SpatialOperation; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.strategy.SimpleSpatialFieldInfo; + +import java.util.List; + +public class TermQueryPrefixTreeStrategy extends PrefixTreeStrategy { + + public TermQueryPrefixTreeStrategy(SpatialPrefixTree grid) { + super(grid); + } + + @Override + public Filter makeFilter(SpatialArgs args, SimpleSpatialFieldInfo fieldInfo) { + return new QueryWrapperFilter( makeQuery(args, fieldInfo) ); + } + + @Override + public Query makeQuery(SpatialArgs args, SimpleSpatialFieldInfo fieldInfo) { + if (args.getOperation() != SpatialOperation.Intersects && + args.getOperation() != SpatialOperation.IsWithin && + args.getOperation() != SpatialOperation.Overlaps ){ + // TODO -- can translate these other query types + throw new UnsupportedSpatialOperation(args.getOperation()); + } + Shape qshape = args.getShape(); + int detailLevel = grid.getMaxLevelForPrecision(qshape, args.getDistPrecision()); + List cells = grid.getNodes(qshape, detailLevel, false); + + BooleanQuery booleanQuery = new BooleanQuery(); + for (Node cell : cells) { + booleanQuery.add(new TermQuery(new Term(fieldInfo.getFieldName(), cell.getTokenString())), BooleanClause.Occur.SHOULD); + } + return booleanQuery; + } + +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/package-info.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/package-info.java new file mode 100644 index 00000000000..f470d833222 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/prefix/package-info.java @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Prefix Tree Strategy + */ +package org.apache.lucene.spatial.strategy.prefix; + diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/CachedDistanceValueSource.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/CachedDistanceValueSource.java new file mode 100644 index 00000000000..3070aeab3d9 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/CachedDistanceValueSource.java @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.util; + +import org.apache.commons.lang.builder.EqualsBuilder; +import org.apache.commons.lang.builder.HashCodeBuilder; +import org.apache.lucene.index.AtomicReaderContext; +import org.apache.lucene.queries.function.FunctionValues; +import org.apache.lucene.queries.function.ValueSource; +import org.apache.lucene.spatial.base.distance.DistanceCalculator; +import org.apache.lucene.spatial.base.shape.Point; + +import java.io.IOException; +import java.util.List; +import java.util.Map; + +/** + * + * An implementation of the Lucene ValueSource model to support spatial relevance ranking. + * + */ +public class CachedDistanceValueSource extends ValueSource { + + private final ShapeFieldCacheProvider provider; + private final DistanceCalculator calculator; + private final Point from; + + public CachedDistanceValueSource(Point from, DistanceCalculator calc, ShapeFieldCacheProvider provider) { + this.from = from; + this.provider = provider; + this.calculator = calc; + } + + @Override + public String description() { + return "DistanceValueSource("+calculator+")"; + } + + @Override + public FunctionValues getValues(Map context, AtomicReaderContext readerContext) throws IOException { + final ShapeFieldCache cache = + provider.getCache(readerContext.reader()); + + return new FunctionValues() { + @Override + public float floatVal(int doc) { + return (float) doubleVal(doc); + } + + @Override + public double doubleVal(int doc) { + List vals = cache.getShapes( doc ); + if( vals != null ) { + double v = calculator.distance(from, vals.get(0)); + for( int i=1; i cache; + + public CachingDoubleValueSource( ValueSource source ) + { + this.source = source; + cache = new HashMap(); + } + + @Override + public String description() { + return "Cached["+source.description()+"]"; + } + + @Override + public FunctionValues getValues(Map context, AtomicReaderContext readerContext) throws IOException { + final int base = readerContext.docBase; + final FunctionValues vals = source.getValues(context,readerContext); + return new FunctionValues() { + + @Override + public double doubleVal(int doc) { + Integer key = Integer.valueOf( base+doc ); + Double v = cache.get( key ); + if( v == null ) { + v = Double.valueOf( vals.doubleVal(doc) ); + cache.put( key, v ); + } + return v.doubleValue(); + } + + @Override + public float floatVal(int doc) { + return (float)doubleVal(doc); + } + + @Override + public String toString(int doc) { + return doubleVal(doc)+""; + } + }; + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { return false; } + if (obj == this) { return true; } + if (obj.getClass() != getClass()) { + return false; + } + CachingDoubleValueSource rhs = (CachingDoubleValueSource) obj; + return source.equals( rhs.source ); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(61, 23). + append(source). + toHashCode(); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java new file mode 100644 index 00000000000..407879a298a --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.util; + +import org.apache.lucene.analysis.NumericTokenStream; +import org.apache.lucene.document.DoubleField; +import org.apache.lucene.document.Field; +import org.apache.lucene.document.FieldType; +import org.apache.lucene.index.IndexableField; + +/** + * Hold some of the parameters used by solr... + */ +public class NumericFieldInfo { + public int precisionStep = 8; // same as solr default + public boolean store = true; + public boolean index = true; + + public void setPrecisionStep( int p ) { + precisionStep = p; + if (precisionStep<=0 || precisionStep>=64) + precisionStep=Integer.MAX_VALUE; + } + + public IndexableField createDouble( String name, double v ) { + if (!store && !index) + throw new IllegalArgumentException("field must be indexed or stored"); + + FieldType fieldType = new FieldType(DoubleField.TYPE); + fieldType.setStored(store); + fieldType.setIndexed(index); + fieldType.setNumericPrecisionStep(precisionStep); + return new DoubleField(name,v,fieldType); + + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCache.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCache.java new file mode 100644 index 00000000000..992a33ea567 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCache.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.util; + +import java.util.ArrayList; +import java.util.List; + +import org.apache.lucene.spatial.base.shape.Shape; + +public class ShapeFieldCache { + private List[] cache; + public int defaultLength; + + @SuppressWarnings({"unchecked"}) + public ShapeFieldCache( int length, int defaultLength ) { + cache = new List[length]; + this.defaultLength= defaultLength; + } + + public void add( int docid, T s ) { + List list = cache[docid]; + if( list == null ) { + list = cache[docid] = new ArrayList(defaultLength); + } + list.add( s ); + } + + public List getShapes( int docid ) { + return cache[docid]; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCacheProvider.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCacheProvider.java new file mode 100644 index 00000000000..38b42bdaae7 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ShapeFieldCacheProvider.java @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.util; + +import org.apache.lucene.index.*; +import org.apache.lucene.search.DocIdSetIterator; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.util.BytesRef; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.util.WeakHashMap; + + +public abstract class ShapeFieldCacheProvider { + static final Logger log = LoggerFactory.getLogger(ShapeFieldCacheProvider.class); + + // it may be a List or T + WeakHashMap> sidx = new WeakHashMap>(); + + protected final int defaultSize; + protected final String shapeField; + + public ShapeFieldCacheProvider(String shapeField, int defaultSize) { + this.shapeField = shapeField; + this.defaultSize = defaultSize; + } + + protected abstract T readShape( BytesRef term ); + + public synchronized ShapeFieldCache getCache(AtomicReader reader) throws IOException { + ShapeFieldCache idx = sidx.get(reader); + if (idx != null) { + return idx; + } + long startTime = System.currentTimeMillis(); + + log.info("Building Cache [" + reader.maxDoc() + "]"); + idx = new ShapeFieldCache(reader.maxDoc(),defaultSize); + int count = 0; + DocsEnum docs = null; + Terms terms = reader.terms(shapeField); + TermsEnum te = null; + if (terms != null) { + te = terms.iterator(te); + BytesRef term = te.next(); + while (term != null) { + T shape = readShape(term); + if( shape != null ) { + docs = te.docs(null, docs, false); + Integer docid = docs.nextDoc(); + while (docid != DocIdSetIterator.NO_MORE_DOCS) { + idx.add( docid, shape ); + docid = docs.nextDoc(); + count++; + } + } + term = te.next(); + } + } + sidx.put(reader, idx); + long elapsed = System.currentTimeMillis() - startTime; + log.info("Cached: [" + count + " in " + elapsed + "ms] " + idx); + return idx; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/StringListTokenizer.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/StringListTokenizer.java new file mode 100644 index 00000000000..6fb4c1bcdb8 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/StringListTokenizer.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.util; + +import java.io.IOException; +import java.io.Reader; +import java.util.Iterator; + +import org.apache.lucene.analysis.TokenStream; +import org.apache.lucene.analysis.Tokenizer; +import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; + +/** + * Put a list of strings directly into the token stream + */ +public final class StringListTokenizer extends TokenStream { + + private final CharTermAttribute termAtt = addAttribute(CharTermAttribute.class); + + private final Iterable tokens; + private Iterator iter = null; + + public StringListTokenizer(Iterable tokens) { + this.tokens = tokens; + } + + @Override + public boolean incrementToken() { + if (iter.hasNext()) { + clearAttributes(); + String t = iter.next(); + termAtt.append(t); + return true; + } + return false; + } + + @Override + public void reset() throws IOException { + super.reset(); + iter = tokens.iterator(); + } +} \ No newline at end of file diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/TruncateFilter.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/TruncateFilter.java new file mode 100644 index 00000000000..dd8cd96dc11 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/TruncateFilter.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.util; + + +import java.io.IOException; + +import org.apache.lucene.analysis.TokenFilter; +import org.apache.lucene.analysis.TokenStream; +import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; + +public class TruncateFilter extends TokenFilter { + + private final int maxTokenLength; + + private final CharTermAttribute termAttr = addAttribute(CharTermAttribute.class); + + public TruncateFilter(TokenStream in, int maxTokenLength) { + super(in); + this.maxTokenLength = maxTokenLength; + } + + @Override + public final boolean incrementToken() throws IOException { + if (!input.incrementToken()) { + return false; + } + + if (termAttr.length() > maxTokenLength) { + termAttr.setLength(maxTokenLength); + } + return true; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ValueSourceFilter.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ValueSourceFilter.java new file mode 100644 index 00000000000..5242cbc336c --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/util/ValueSourceFilter.java @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.util; + +import org.apache.lucene.index.AtomicReaderContext; +import org.apache.lucene.queries.function.FunctionValues; +import org.apache.lucene.queries.function.ValueSource; +import org.apache.lucene.search.DocIdSet; +import org.apache.lucene.search.Filter; +import org.apache.lucene.search.FilteredDocIdSet; +import org.apache.lucene.util.Bits; + +import java.io.IOException; + +public class ValueSourceFilter extends Filter { + + final Filter startingFilter; + final ValueSource source; + final double min; + final double max; + + public ValueSourceFilter( Filter startingFilter, ValueSource source, double min, double max ) + { + if (startingFilter == null) { + throw new IllegalArgumentException("please provide a non-null startingFilter; you can use QueryWrapperFilter(MatchAllDocsQuery) as a no-op filter"); + } + this.startingFilter = startingFilter; + this.source = source; + this.min = min; + this.max = max; + } + + @Override + public DocIdSet getDocIdSet(AtomicReaderContext context, Bits acceptDocs) throws IOException { + final FunctionValues values = source.getValues( null, context ); + return new FilteredDocIdSet(startingFilter.getDocIdSet(context, acceptDocs)) { + @Override + public boolean match(int doc) { + double val = values.doubleVal( doc ); + return val > min && val < max; + } + }; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/DistanceValueSource.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/DistanceValueSource.java new file mode 100644 index 00000000000..3ea40cb4715 --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/DistanceValueSource.java @@ -0,0 +1,130 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.vector; + +import org.apache.commons.lang.builder.EqualsBuilder; +import org.apache.commons.lang.builder.HashCodeBuilder; +import org.apache.lucene.index.AtomicReader; +import org.apache.lucene.index.AtomicReaderContext; +import org.apache.lucene.queries.function.FunctionValues; +import org.apache.lucene.queries.function.ValueSource; +import org.apache.lucene.search.FieldCache; +import org.apache.lucene.search.FieldCache.DoubleParser; +import org.apache.lucene.spatial.base.distance.DistanceCalculator; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.simple.PointImpl; +import org.apache.lucene.util.Bits; + +import java.io.IOException; +import java.util.Map; + +/** + * + * An implementation of the Lucene ValueSource model to support spatial relevance ranking. + * + */ +public class DistanceValueSource extends ValueSource { + + private final TwoDoublesFieldInfo fields; + private final DistanceCalculator calculator; + private final Point from; + private final DoubleParser parser; + + /** + * Constructor. + */ + public DistanceValueSource(Point from, DistanceCalculator calc, TwoDoublesFieldInfo fields, DoubleParser parser) { + this.from = from; + this.fields = fields; + this.calculator = calc; + this.parser = parser; + } + + /** + * Returns the ValueSource description. + */ + @Override + public String description() { + return "DistanceValueSource("+calculator+")"; + } + + + /** + * Returns the FunctionValues used by the function query. + */ + @Override + public FunctionValues getValues(Map context, AtomicReaderContext readerContext) throws IOException { + AtomicReader reader = readerContext.reader(); + + final double[] ptX = FieldCache.DEFAULT.getDoubles(reader, fields.getFieldNameX(), true); + final double[] ptY = FieldCache.DEFAULT.getDoubles(reader, fields.getFieldNameY(), true); + final Bits validX = FieldCache.DEFAULT.getDocsWithField(reader, fields.getFieldNameX()); + final Bits validY = FieldCache.DEFAULT.getDocsWithField(reader, fields.getFieldNameY()); + + return new FunctionValues() { + @Override + public float floatVal(int doc) { + return (float) doubleVal(doc); + } + + @Override + public double doubleVal(int doc) { + // make sure it has minX and area + if (validX.get(doc) && validY.get(doc)) { + PointImpl pt = new PointImpl( ptX[doc], ptY[doc] ); + return calculator.distance(from, pt); + } + return 0; + } + + @Override + public String toString(int doc) { + return description() + "=" + floatVal(doc); + } + }; + } + + /** + * Determines if this ValueSource is equal to another. + * @param obj the ValueSource to compare + * @return true if the two objects are based upon the same query envelope + */ + @Override + public boolean equals(Object obj) { + if (obj == null) { return false; } + if (obj == this) { return true; } + if (obj.getClass() != getClass()) { + return false; + } + DistanceValueSource rhs = (DistanceValueSource) obj; + return new EqualsBuilder() + .append(calculator, rhs.calculator) + .append(from, rhs.from) + .append(fields, rhs.fields) + .isEquals(); + } + + @Override + public int hashCode() { + return new HashCodeBuilder(59, 7). + append(calculator). + append(from). + append(fields). + toHashCode(); + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesFieldInfo.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesFieldInfo.java new file mode 100644 index 00000000000..3ae1881fe3f --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesFieldInfo.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.vector; + +import org.apache.lucene.spatial.strategy.SpatialFieldInfo; + +public class TwoDoublesFieldInfo implements SpatialFieldInfo { + + public static final String SUFFIX_X = "__x"; + public static final String SUFFIX_Y = "__y"; + + private final String fieldName; + private final String fieldNameX; + private final String fieldNameY; + + public TwoDoublesFieldInfo(String fieldNamePrefix) { + fieldName = fieldNamePrefix; + fieldNameX = fieldNamePrefix + SUFFIX_X; + fieldNameY = fieldNamePrefix + SUFFIX_Y; + } + + public String getFieldName() { + return fieldName; + } + + public String getFieldNameX() { + return fieldNameX; + } + + public String getFieldNameY() { + return fieldNameY; + } +} diff --git a/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategy.java b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategy.java new file mode 100644 index 00000000000..0475293e80d --- /dev/null +++ b/modules/spatial-lucene/src/main/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategy.java @@ -0,0 +1,236 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.vector; + +import org.apache.lucene.document.Field; +import org.apache.lucene.document.FieldType; +import org.apache.lucene.index.IndexableField; +import org.apache.lucene.queries.function.FunctionQuery; +import org.apache.lucene.queries.function.ValueSource; +import org.apache.lucene.search.*; +import org.apache.lucene.search.FieldCache.DoubleParser; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.exception.InvalidShapeException; +import org.apache.lucene.spatial.base.exception.UnsupportedSpatialOperation; +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.query.SpatialOperation; +import org.apache.lucene.spatial.base.shape.Circle; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.strategy.SpatialStrategy; +import org.apache.lucene.spatial.strategy.util.CachingDoubleValueSource; +import org.apache.lucene.spatial.strategy.util.NumericFieldInfo; +import org.apache.lucene.spatial.strategy.util.ValueSourceFilter; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + + +public class TwoDoublesStrategy extends SpatialStrategy { + + static final Logger log = LoggerFactory.getLogger(TwoDoublesStrategy.class); + + private final NumericFieldInfo finfo; + private final DoubleParser parser; + + public TwoDoublesStrategy(SpatialContext ctx, NumericFieldInfo finfo, DoubleParser parser) { + super(ctx); + this.finfo = finfo; + this.parser = parser; + } + + @Override + public boolean isPolyField() { + return true; + } + + @Override + public IndexableField[] createFields(TwoDoublesFieldInfo fieldInfo, + Shape shape, boolean index, boolean store) { + if( shape instanceof Point ) { + Point point = (Point)shape; + + IndexableField[] f = new IndexableField[(index ? 2 : 0) + (store ? 1 : 0)]; + if (index) { + f[0] = finfo.createDouble( fieldInfo.getFieldNameX(), point.getX() ); + f[1] = finfo.createDouble( fieldInfo.getFieldNameY(), point.getY() ); + } + if(store) { + FieldType customType = new FieldType(); + customType.setStored(true); + f[f.length-1] = new Field( fieldInfo.getFieldName(), ctx.toString( shape ), customType ); + } + return f; + } + if( !ignoreIncompatibleGeometry ) { + throw new IllegalArgumentException( "TwoDoublesStrategy can not index: "+shape ); + } + return null; + } + + @Override + public IndexableField createField(TwoDoublesFieldInfo indexInfo, Shape shape, + boolean index, boolean store) { + throw new UnsupportedOperationException("Point is poly field"); + } + + @Override + public ValueSource makeValueSource(SpatialArgs args, TwoDoublesFieldInfo fieldInfo) { + Point p = args.getShape().getCenter(); + return new DistanceValueSource(p, ctx.getDistCalc(), fieldInfo, parser); + } + + @Override + public Filter makeFilter(SpatialArgs args, TwoDoublesFieldInfo fieldInfo) { + if( args.getShape() instanceof Circle) { + if( SpatialOperation.is( args.getOperation(), + SpatialOperation.Intersects, + SpatialOperation.IsWithin )) { + Circle circle = (Circle)args.getShape(); + Query bbox = makeWithin(circle.getBoundingBox(), fieldInfo); + + // Make the ValueSource + ValueSource valueSource = makeValueSource(args, fieldInfo); + + return new ValueSourceFilter( + new QueryWrapperFilter( bbox ), valueSource, 0, circle.getDistance() ); + } + } + return new QueryWrapperFilter( makeQuery(args, fieldInfo) ); + } + + @Override + public Query makeQuery(SpatialArgs args, TwoDoublesFieldInfo fieldInfo) { + // For starters, just limit the bbox + Shape shape = args.getShape(); + if (!(shape instanceof Rectangle)) { + throw new InvalidShapeException("A rectangle is the only supported at this time, not "+shape.getClass());//TODO + } + Rectangle bbox = (Rectangle) shape; + if (bbox.getCrossesDateLine()) { + throw new UnsupportedOperationException( "Crossing dateline not yet supported" ); + } + + ValueSource valueSource = null; + + Query spatial = null; + SpatialOperation op = args.getOperation(); + + if( SpatialOperation.is( op, + SpatialOperation.BBoxWithin, + SpatialOperation.BBoxIntersects ) ) { + spatial = makeWithin(bbox, fieldInfo); + } + else if( SpatialOperation.is( op, + SpatialOperation.Intersects, + SpatialOperation.IsWithin ) ) { + spatial = makeWithin(bbox, fieldInfo); + if( args.getShape() instanceof Circle) { + Circle circle = (Circle)args.getShape(); + + // Make the ValueSource + valueSource = makeValueSource(args, fieldInfo); + + ValueSourceFilter vsf = new ValueSourceFilter( + new QueryWrapperFilter( spatial ), valueSource, 0, circle.getDistance() ); + + spatial = new FilteredQuery( new MatchAllDocsQuery(), vsf ); + } + } + else if( op == SpatialOperation.IsDisjointTo ) { + spatial = makeDisjoint(bbox, fieldInfo); + } + + if( spatial == null ) { + throw new UnsupportedSpatialOperation(args.getOperation()); + } + + try { + if( valueSource != null ) { + valueSource = new CachingDoubleValueSource(valueSource); + } + else { + valueSource = makeValueSource(args, fieldInfo); + } + Query spatialRankingQuery = new FunctionQuery(valueSource); + BooleanQuery bq = new BooleanQuery(); + bq.add(spatial,BooleanClause.Occur.MUST); + bq.add(spatialRankingQuery,BooleanClause.Occur.MUST); + return bq; + } catch(Exception ex) { + log.warn("error making score", ex); + } + return spatial; + } + + /** + * Constructs a query to retrieve documents that fully contain the input envelope. + * @return the spatial query + */ + private Query makeWithin(Rectangle bbox, TwoDoublesFieldInfo fieldInfo) { + Query qX = NumericRangeQuery.newDoubleRange( + fieldInfo.getFieldNameX(), + finfo.precisionStep, + bbox.getMinX(), + bbox.getMaxX(), + true, + true); + Query qY = NumericRangeQuery.newDoubleRange( + fieldInfo.getFieldNameY(), + finfo.precisionStep, + bbox.getMinY(), + bbox.getMaxY(), + true, + true); + + BooleanQuery bq = new BooleanQuery(); + bq.add(qX,BooleanClause.Occur.MUST); + bq.add(qY,BooleanClause.Occur.MUST); + return bq; + } + + /** + * Constructs a query to retrieve documents that fully contain the input envelope. + * @return the spatial query + */ + Query makeDisjoint(Rectangle bbox, TwoDoublesFieldInfo fieldInfo) { + Query qX = NumericRangeQuery.newDoubleRange( + fieldInfo.getFieldNameX(), + finfo.precisionStep, + bbox.getMinX(), + bbox.getMaxX(), + true, + true); + Query qY = NumericRangeQuery.newDoubleRange( + fieldInfo.getFieldNameY(), + finfo.precisionStep, + bbox.getMinY(), + bbox.getMaxY(), + true, + true); + + BooleanQuery bq = new BooleanQuery(); + bq.add(qX,BooleanClause.Occur.MUST_NOT); + bq.add(qY,BooleanClause.Occur.MUST_NOT); + return bq; + } +} + + + + diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/RandomSeed.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/RandomSeed.java new file mode 100644 index 00000000000..bd030a0339e --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/RandomSeed.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial; + +/** + * Reads "tests.seed" system property to initialized a global final constant. + * @author David Smiley - dsmiley@mitre.org + */ +public class RandomSeed { + private static final long _seed; + static { + _seed = Long.parseLong(System.getProperty("tests.seed", "" + System.currentTimeMillis())); + System.out.println("tests.seed="+_seed); + } + public static long seed() { + return _seed; + } + private RandomSeed() {} +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialMatchConcern.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialMatchConcern.java new file mode 100644 index 00000000000..bff21adf7aa --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialMatchConcern.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial; + +public class SpatialMatchConcern { + public final boolean orderIsImportant; + public final boolean resultsAreSuperset; // if the strategy can not give exact answers, but used to limit results + + private SpatialMatchConcern( boolean order, boolean superset ) { + this.orderIsImportant = order; + this.resultsAreSuperset = superset; + } + + public static final SpatialMatchConcern EXACT = new SpatialMatchConcern( true, false ); + public static final SpatialMatchConcern FILTER = new SpatialMatchConcern( false, false ); + public static final SpatialMatchConcern SUPERSET = new SpatialMatchConcern( false, true ); +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestCase.java new file mode 100644 index 00000000000..fa79eed85d5 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestCase.java @@ -0,0 +1,140 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial; + +import org.apache.lucene.analysis.core.WhitespaceAnalyzer; +import org.apache.lucene.document.Document; +import org.apache.lucene.index.DirectoryReader; +import org.apache.lucene.index.IndexWriter; +import org.apache.lucene.index.IndexWriterConfig; +import org.apache.lucene.search.IndexSearcher; +import org.apache.lucene.search.Query; +import org.apache.lucene.search.ScoreDoc; +import org.apache.lucene.search.TopDocs; +import org.apache.lucene.store.Directory; +import org.apache.lucene.util.LuceneTestCase; +import org.junit.After; +import org.junit.Before; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +public abstract class SpatialTestCase extends LuceneTestCase { + + private DirectoryReader indexReader; + private IndexWriter indexWriter; + private Directory directory; + private IndexSearcher indexSearcher; + + @Override + @Before + public void setUp() throws Exception { + super.setUp(); + + directory = newDirectory(); + + IndexWriterConfig writerConfig = newIndexWriterConfig(random, TEST_VERSION_CURRENT, new WhitespaceAnalyzer(TEST_VERSION_CURRENT)); + indexWriter = new IndexWriter(directory, writerConfig); + } + + @Override + @After + public void tearDown() throws Exception { + if (indexWriter != null) { + indexWriter.close(); + } + if (indexReader != null) { + indexReader.close(); + } + if (directory != null) { + directory.close(); + } + super.tearDown(); + } + + // ================================================= Helper Methods ================================================ + + protected void addDocument(Document doc) throws IOException { + indexWriter.addDocument(doc); + } + + protected void addDocumentsAndCommit(List documents) throws IOException { + for (Document document : documents) { + indexWriter.addDocument(document); + } + commit(); + } + + protected void deleteAll() throws IOException { + indexWriter.deleteAll(); + } + + protected void commit() throws IOException { + indexWriter.commit(); + if (indexReader == null) { + indexReader = DirectoryReader.open(directory); + } else { + indexReader = DirectoryReader.openIfChanged(indexReader); + } + indexSearcher = newSearcher(indexReader); + } + + protected void verifyDocumentsIndexed(int numDocs) { + assertEquals(numDocs, indexReader.numDocs()); + } + + protected SearchResults executeQuery(Query query, int numDocs) { + try { + TopDocs topDocs = indexSearcher.search(query, numDocs); + + List results = new ArrayList(); + for (ScoreDoc scoreDoc : topDocs.scoreDocs) { + results.add(new SearchResult(scoreDoc.score, indexSearcher.doc(scoreDoc.doc))); + } + return new SearchResults(topDocs.totalHits, results); + } catch (IOException ioe) { + throw new RuntimeException("IOException thrown while executing query", ioe); + } + } + + // ================================================= Inner Classes ================================================= + + protected static class SearchResults { + + public int numFound; + public List results; + + public SearchResults(int numFound, List results) { + this.numFound = numFound; + this.results = results; + } + } + + protected static class SearchResult { + + public float score; + public Document document; + + public SearchResult(float score, Document document) { + this.score = score; + this.document = document; + } + } +} + diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestQuery.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestQuery.java new file mode 100644 index 00000000000..d2f75d3bb64 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/SpatialTestQuery.java @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.io.LineReader; +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.query.SpatialArgsParser; + +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.StringTokenizer; + +/** + * Helper class to execute queries + */ +public class SpatialTestQuery { + public String testname; + public String line; + public int lineNumber = -1; + public SpatialArgs args; + public List ids = new ArrayList(); + + /** + * Get Test Queries + */ + public static Iterator getTestQueries( + final SpatialArgsParser parser, + final SpatialContext ctx, + final String name, + final InputStream in ) throws IOException { + return new LineReader(new InputStreamReader(in,"UTF-8")) { + + @Override + public SpatialTestQuery parseLine(String line) { + SpatialTestQuery test = new SpatialTestQuery(); + test.line = line; + test.lineNumber = getLineNumber(); + + try { + // skip a comment + if( line.startsWith( "[" ) ) { + int idx = line.indexOf( ']' ); + if( idx > 0 ) { + line = line.substring( idx+1 ); + } + } + + int idx = line.indexOf('@'); + StringTokenizer st = new StringTokenizer(line.substring(0, idx)); + while (st.hasMoreTokens()) { + test.ids.add(st.nextToken().trim()); + } + test.args = parser.parse(line.substring(idx + 1).trim(), ctx); + return test; + } + catch( Exception ex ) { + throw new RuntimeException( "invalid query line: "+test.line, ex ); + } + } + }; + } + + @Override + public String toString() { + return line; + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/StrategyTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/StrategyTestCase.java new file mode 100644 index 00000000000..d7111df58ff --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/StrategyTestCase.java @@ -0,0 +1,150 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial; + + +import junit.framework.Assert; +import org.apache.lucene.document.Document; +import org.apache.lucene.document.Field; +import org.apache.lucene.document.StringField; +import org.apache.lucene.index.IndexableField; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.io.sample.SampleData; +import org.apache.lucene.spatial.base.io.sample.SampleDataReader; +import org.apache.lucene.spatial.base.query.SpatialArgsParser; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.strategy.SpatialFieldInfo; +import org.apache.lucene.spatial.strategy.SpatialStrategy; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.io.InputStream; +import java.util.*; + +public abstract class StrategyTestCase extends SpatialTestCase { + + public static final String DATA_STATES_POLY = "states-poly.txt"; + public static final String DATA_STATES_BBOX = "states-bbox.txt"; + public static final String DATA_COUNTRIES_POLY = "countries-poly.txt"; + public static final String DATA_COUNTRIES_BBOX = "countries-bbox.txt"; + public static final String DATA_WORLD_CITIES_POINTS = "world-cities-points.txt"; + + public static final String QTEST_States_IsWithin_BBox = "states-IsWithin-BBox.txt"; + public static final String QTEST_States_Intersects_BBox = "states-Intersects-BBox.txt"; + + public static final String QTEST_Cities_IsWithin_BBox = "cities-IsWithin-BBox.txt"; + + protected final Logger log = LoggerFactory.getLogger(getClass()); + + protected final SpatialArgsParser argsParser = new SpatialArgsParser(); + + protected SpatialStrategy strategy; + protected SpatialContext ctx; + protected T fieldInfo; + protected boolean storeShape = true; + + protected void executeQueries(SpatialMatchConcern concern, String... testQueryFile) throws IOException { + log.info("testing queried for strategy "+strategy); + for( String path : testQueryFile ) { + Iterator testQueryIterator = getTestQueries(path, ctx); + runTestQueries(testQueryIterator, concern); + } + } + + protected void getAddAndVerifyIndexedDocuments(String testDataFile) throws IOException { + List testDocuments = getDocuments(testDataFile); + addDocumentsAndCommit(testDocuments); + verifyDocumentsIndexed(testDocuments.size()); + } + + protected List getDocuments(String testDataFile) throws IOException { + Iterator sampleData = getSampleData(testDataFile); + List documents = new ArrayList(); + while (sampleData.hasNext()) { + SampleData data = sampleData.next(); + Document document = new Document(); + document.add(new Field("id", data.id, StringField.TYPE_STORED)); + document.add(new Field("name", data.name, StringField.TYPE_STORED)); + Shape shape = ctx.readShape(data.shape); + for (IndexableField f : strategy.createFields(fieldInfo, shape, true, storeShape)) { + if( f != null ) { // null if incompatibleGeometry && ignore + document.add(f); + } + } + documents.add(document); + } + return documents; + } + + protected Iterator getSampleData(String testDataFile) throws IOException { + return new SampleDataReader( + getClass().getClassLoader().getResourceAsStream("data/"+testDataFile) ); + } + + protected Iterator getTestQueries(String testQueryFile, SpatialContext ctx) throws IOException { + InputStream in = getClass().getClassLoader().getResourceAsStream(testQueryFile); + return SpatialTestQuery.getTestQueries( + argsParser, ctx, testQueryFile, in ); + } + + public void runTestQueries( + Iterator queries, + SpatialMatchConcern concern) { + while (queries.hasNext()) { + SpatialTestQuery q = queries.next(); + + String msg = q.line; //"Query: " + q.args.toString(ctx); + SearchResults got = executeQuery(strategy.makeQuery(q.args, fieldInfo), 100); + if (concern.orderIsImportant) { + Iterator ids = q.ids.iterator(); + for (SearchResult r : got.results) { + String id = r.document.get("id"); + Assert.assertEquals( "out of order: " + msg, ids.next(), id); + } + if (ids.hasNext()) { + Assert.fail(msg + " :: expect more results then we got: " + ids.next()); + } + } else { + // We are looking at how the results overlap + if( concern.resultsAreSuperset ) { + Set found = new HashSet(); + for (SearchResult r : got.results) { + found.add(r.document.get("id")); + } + for( String s : q.ids ) { + if( !found.contains( s ) ) { + Assert.fail( "Results are mising id: "+s + " :: " + found ); + } + } + } + else { + List found = new ArrayList(); + for (SearchResult r : got.results) { + found.add(r.document.get("id")); + } + + // sort both so that the order is not important + Collections.sort(q.ids); + Collections.sort(found); + Assert.assertEquals(msg, q.ids.toString(), found.toString()); + } + } + } + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/TestTestFramework.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/TestTestFramework.java new file mode 100644 index 00000000000..1a79cd69380 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/TestTestFramework.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.query.SpatialArgsParser; +import org.apache.lucene.spatial.base.query.SpatialOperation; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.junit.Assert; +import org.junit.Test; + +import java.io.IOException; +import java.io.InputStream; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + + +/** + * Make sure we are reading the tests as expected + */ +public class TestTestFramework { + + @Test + public void testQueries() throws IOException { + String name = StrategyTestCase.QTEST_Cities_IsWithin_BBox; + + InputStream in = getClass().getClassLoader().getResourceAsStream(name); + SpatialContext ctx = SimpleSpatialContext.GEO_KM; + Iterator iter = SpatialTestQuery.getTestQueries( + new SpatialArgsParser(), ctx, name, in ); + List tests = new ArrayList(); + while( iter.hasNext() ) { + tests.add( iter.next() ); + } + Assert.assertEquals( 3, tests.size() ); + + SpatialTestQuery sf = tests.get(0); + // assert + Assert.assertEquals( 1, sf.ids.size() ); + Assert.assertTrue( sf.ids.get(0).equals( "G5391959" ) ); + Assert.assertTrue( sf.args.getShape() instanceof Rectangle); + Assert.assertEquals( SpatialOperation.IsWithin, sf.args.getOperation() ); + } + +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/BaseSpatialContextTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/BaseSpatialContextTestCase.java new file mode 100644 index 00000000000..b2c228e0481 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/BaseSpatialContextTestCase.java @@ -0,0 +1,169 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.context; + +import org.apache.lucene.spatial.base.query.SpatialArgs; +import org.apache.lucene.spatial.base.query.SpatialArgsParser; +import org.apache.lucene.spatial.base.query.SpatialOperation; +import org.apache.lucene.spatial.base.shape.MultiShape; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.base.shape.simple.CircleImpl; +import org.apache.lucene.spatial.base.shape.simple.PointImpl; +import org.apache.lucene.spatial.base.shape.simple.RectangleImpl; +import org.junit.Assert; +import org.junit.Test; + +import java.io.IOException; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + + +/** + */ +@SuppressWarnings("unchecked") +public abstract class BaseSpatialContextTestCase { + + protected abstract SpatialContext getSpatialContext(); + + public static void checkArgParser(SpatialContext ctx) { + SpatialArgsParser parser = new SpatialArgsParser(); + + String arg = SpatialOperation.IsWithin + "(-10 -20 10 20)"; + SpatialArgs out = parser.parse(arg, ctx); + assertEquals(SpatialOperation.IsWithin, out.getOperation()); + Rectangle bounds = (Rectangle) out.getShape(); + assertEquals(-10.0, bounds.getMinX(), 0D); + assertEquals(10.0, bounds.getMaxX(), 0D); + + // Disjoint should not be scored + arg = SpatialOperation.IsDisjointTo + " (-10 10 -20 20)"; + out = parser.parse(arg, ctx); + assertEquals(SpatialOperation.IsDisjointTo, out.getOperation()); + + try { + parser.parse(SpatialOperation.IsDisjointTo + "[ ]", ctx); + fail("spatial operations need args"); + } + catch (Exception ex) {//expected + } + + try { + parser.parse("XXXX(-10 10 -20 20)", ctx); + fail("unknown operation!"); + } + catch (Exception ex) {//expected + } + } + + public static void checkShapesImplementEquals( Class[] classes ) { + + for( Class clazz : classes ) { + try { + clazz.getDeclaredMethod( "equals", Object.class ); + } catch (Exception e) { + Assert.fail( "Shape needs to define 'equals' : " + clazz.getName() ); + } + try { + clazz.getDeclaredMethod( "hashCode" ); + } catch (Exception e) { + Assert.fail( "Shape needs to define 'hashCode' : " + clazz.getName() ); + } + } + } + + public static interface WriteReader { + Shape writeThenRead( Shape s ) throws IOException; + } + + public static void checkBasicShapeIO( SpatialContext ctx, WriteReader help ) throws Exception { + + // Simple Point + Shape s = ctx.readShape("10 20"); + assertEquals(s,ctx.readShape("20,10"));//check comma for y,x format + assertEquals(s,ctx.readShape("20, 10"));//test space + Point p = (Point) s; + assertEquals(10.0, p.getX(), 0D); + assertEquals(20.0, p.getY(), 0D); + p = (Point) help.writeThenRead(s); + assertEquals(10.0, p.getX(), 0D); + assertEquals(20.0, p.getY(), 0D); + Assert.assertFalse(s.hasArea()); + + // BBOX + s = ctx.readShape("-10 -20 10 20"); + Rectangle b = (Rectangle) s; + assertEquals(-10.0, b.getMinX(), 0D); + assertEquals(-20.0, b.getMinY(), 0D); + assertEquals(10.0, b.getMaxX(), 0D); + assertEquals(20.0, b.getMaxY(), 0D); + b = (Rectangle) help.writeThenRead(s); + assertEquals(-10.0, b.getMinX(), 0D); + assertEquals(-20.0, b.getMinY(), 0D); + assertEquals(10.0, b.getMaxX(), 0D); + assertEquals(20.0, b.getMaxY(), 0D); + Assert.assertTrue(s.hasArea()); + + // Point/Distance + s = ctx.readShape("Circle( 1.23 4.56 distance=7.89)"); + CircleImpl circle = (CircleImpl)s; + assertEquals(1.23, circle.getCenter().getX(), 0D); + assertEquals(4.56, circle.getCenter().getY(), 0D); + assertEquals(7.89, circle.getDistance(), 0D); + Assert.assertTrue(s.hasArea()); + + Shape s2 = ctx.readShape("Circle( 4.56,1.23 d=7.89 )"); // use lat,lon and use 'd' abbreviation + assertEquals(s,s2); + } + + //-------------------------------------------------------------- + // Actual tests + //-------------------------------------------------------------- + + @Test + public void testArgsParser() throws Exception { + checkArgParser( getSpatialContext() ); + } + + @Test + public void testImplementsEqualsAndHash() throws Exception { + checkShapesImplementEquals( new Class[] { + PointImpl.class, + CircleImpl.class, + RectangleImpl.class, + MultiShape.class, + }); + } + + @Test + public void testSimpleShapeIO() throws Exception { + final SpatialContext io = getSpatialContext(); + checkBasicShapeIO( io, new WriteReader() { + @Override + public Shape writeThenRead(Shape s) { + String buff = io.toString( s ); + return io.readShape( buff ); + } + }); + } + + //Looking for more tests? Shapes are tested in TestShapes2D. + +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextFactoryTest.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextFactoryTest.java new file mode 100644 index 00000000000..a3457775bcc --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextFactoryTest.java @@ -0,0 +1,94 @@ +package org.apache.lucene.spatial.base.context;/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceUnits; +import org.apache.lucene.spatial.base.distance.CartesianDistCalc; +import org.apache.lucene.spatial.base.distance.GeodesicSphereDistCalc; +import org.apache.lucene.spatial.base.shape.simple.RectangleImpl; +import org.junit.After; +import org.junit.Test; + +import java.util.HashMap; +import java.util.Map; + +import static junit.framework.Assert.assertEquals; + +/** + * @author dsmiley + */ +public class SpatialContextFactoryTest { + public static final String PROP = "SpatialContextFactory"; + + @After + public void tearDown() { + System.getProperties().remove(PROP); + } + + private SpatialContext call(String... argsStr) { + Map args = new HashMap(); + for (int i = 0; i < argsStr.length; i+=2) { + String key = argsStr[i]; + String val = argsStr[i+1]; + args.put(key,val); + } + return SpatialContextFactory.makeSpatialContext(args, getClass().getClassLoader()); + } + + @Test + public void testDefault() { + SpatialContext s = SimpleSpatialContext.GEO_KM; + SpatialContext t = call();//default + assertEquals(s.getClass(),t.getClass()); + assertEquals(s.getUnits(),t.getUnits()); + assertEquals(s.getDistCalc(),t.getDistCalc()); + assertEquals(s.getWorldBounds(),t.getWorldBounds()); + } + + @Test + public void testCustom() { + SpatialContext sc = call("units","u"); + assertEquals(DistanceUnits.CARTESIAN,sc.getUnits()); + assertEquals(new CartesianDistCalc(),sc.getDistCalc()); + + sc = call("units","u", + "distCalculator","cartesian^2", + "worldBounds","-100 0 75 200");//West South East North + assertEquals(new CartesianDistCalc(true),sc.getDistCalc()); + assertEquals(new RectangleImpl(-100,75,0,200),sc.getWorldBounds()); + + sc = call("units","miles", + "distCalculator","lawOfCosines"); + assertEquals(DistanceUnits.MILES,sc.getUnits()); + assertEquals(new GeodesicSphereDistCalc.LawOfCosines(sc.getUnits().earthRadius()), + sc.getDistCalc()); + } + + @Test + public void testSystemPropertyLookup() { + System.setProperty(PROP,DSCF.class.getName()); + assertEquals(DistanceUnits.CARTESIAN,call().getUnits());//DSCF returns this + } + + public static class DSCF extends SpatialContextFactory { + + @Override + protected SpatialContext newSpatialContext() { + return new SimpleSpatialContext(DistanceUnits.CARTESIAN); + } + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextTestCase.java new file mode 100644 index 00000000000..d64a55b01f2 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/context/SpatialContextTestCase.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.context; + +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; + + +/** + */ +public class SpatialContextTestCase extends BaseSpatialContextTestCase { + + @Override + protected SpatialContext getSpatialContext() { + return SimpleSpatialContext.GEO_KM; + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/distance/TestDistances.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/distance/TestDistances.java new file mode 100644 index 00000000000..abcfd78ecca --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/distance/TestDistances.java @@ -0,0 +1,269 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.distance; + +import org.apache.lucene.spatial.RandomSeed; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.shape.SpatialRelation; +import org.apache.lucene.spatial.base.shape.Point; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.junit.Before; +import org.junit.Test; + +import java.util.Random; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +/** + * @author David Smiley - dsmiley@mitre.org + */ +public class TestDistances { + + private final Random random = new Random(RandomSeed.seed()); + //NOTE! These are sometimes modified by tests. + private SpatialContext ctx; + private double EPS; + + @Before + public void beforeTest() { + ctx = new SimpleSpatialContext(DistanceUnits.KILOMETERS); + EPS = 10e-4;//delta when doing double assertions. Geo eps is not that small. + } + + private DistanceCalculator dc() { + return ctx.getDistCalc(); + } + + @Test + public void testSomeDistances() { + //See to verify: from http://www.movable-type.co.uk/scripts/latlong.html + Point ctr = pLL(0,100); + assertEquals(11100, dc().distance(ctr, pLL(10, 0)),3); + assertEquals(11100, dc().distance(ctr, pLL(10, -160)),3); + + assertEquals(314.40338, dc().distance(pLL(1, 2), pLL(3, 4)),EPS); + } + + @Test + public void testCalcBoxByDistFromPt() { + //first test regression + { + double d = 6894.1; + Point pCtr = pLL(-20, 84); + Point pTgt = pLL(-42, 15); + assertTrue(dc().distance(pCtr, pTgt) < d); + //since the pairwise distance is less than d, a bounding box from ctr with d should contain pTgt. + Rectangle r = dc().calcBoxByDistFromPt(pCtr, d, ctx); + assertEquals(SpatialRelation.CONTAINS,r.relate(pTgt, ctx)); + checkBBox(pCtr,d); + } + + assertEquals("0 dist, horiz line", + -45,dc().calcBoxByDistFromPtHorizAxis(ctx.makePoint(-180,-45),0,ctx),0); + + double MAXDIST = ctx.getUnits().earthCircumference() / 2; + checkBBox(ctx.makePoint(0,0), MAXDIST); + checkBBox(ctx.makePoint(0,0), MAXDIST *0.999999); + checkBBox(ctx.makePoint(0,0),0); + checkBBox(ctx.makePoint(0,0),0.000001); + checkBBox(ctx.makePoint(0,90),0.000001); + checkBBox(ctx.makePoint(-32.7,-5.42),9829); + checkBBox(ctx.makePoint(0,90-20),ctx.getDistCalc().degreesToDistance(20)); + { + double d = 0.010;//10m + checkBBox(ctx.makePoint(0,90-ctx.getDistCalc().distanceToDegrees(d+0.001)),d); + } + + for (int T = 0; T < 100; T++) { + double lat = -90 + random.nextDouble()*180; + double lon = -180 + random.nextDouble()*360; + Point ctr = ctx.makePoint(lon, lat); + double dist = MAXDIST*random.nextDouble(); + checkBBox(ctr, dist); + } + + } + + private void checkBBox(Point ctr, double dist) { + String msg = "ctr: "+ctr+" dist: "+dist; + + Rectangle r = dc().calcBoxByDistFromPt(ctr, dist, ctx); + double horizAxisLat = dc().calcBoxByDistFromPtHorizAxis(ctr,dist, ctx); + if (!Double.isNaN(horizAxisLat)) + assertTrue(r.relate_yRange(horizAxisLat, horizAxisLat, ctx).intersects()); + + //horizontal + if (r.getWidth() >= 180) { + double calcDist = dc().distance(ctr,r.getMinX(), r.getMaxY() == 90 ? 90 : -90 ); + assertTrue(msg,calcDist <= dist+EPS); + //horizAxisLat is meaningless in this context + } else { + Point tPt = findClosestPointOnVertToPoint(r.getMinX(), r.getMinY(), r.getMaxY(), ctr); + double calcDist = dc().distance(ctr,tPt); + assertEquals(msg,dist,calcDist,EPS); + assertEquals(msg,tPt.getY(),horizAxisLat,EPS); + } + + //vertical + double topDist = dc().distance(ctr,ctr.getX(),r.getMaxY()); + if (r.getMaxY() == 90) + assertTrue(msg,topDist <= dist+EPS); + else + assertEquals(msg,dist,topDist,EPS); + double botDist = dc().distance(ctr,ctr.getX(),r.getMinY()); + if (r.getMinY() == -90) + assertTrue(msg,botDist <= dist+EPS); + else + assertEquals(msg,dist,botDist,EPS); + } + + private Point findClosestPointOnVertToPoint(double lon, double lowLat, double highLat, Point ctr) { + //A binary search algorithm to find the point along the vertical lon between lowLat & highLat that is closest + // to ctr, and returns the distance. + double midLat = (highLat - lowLat)/2 + lowLat; + double midLatDist = ctx.getDistCalc().distance(ctr,lon,midLat); + for(int L = 0; L < 100 && (highLat - lowLat > 0.001|| L < 20); L++) { + boolean bottom = (midLat - lowLat > highLat - midLat); + double newMid = bottom ? (midLat - lowLat)/2 + lowLat : (highLat - midLat)/2 + midLat; + double newMidDist = ctx.getDistCalc().distance(ctr,lon,newMid); + if (newMidDist < midLatDist) { + if (bottom) { + highLat = midLat; + } else { + lowLat = midLat; + } + midLat = newMid; + midLatDist = newMidDist; + } else { + if (bottom) { + lowLat = newMid; + } else { + highLat = newMid; + } + } + } + return ctx.makePoint(lon,midLat); + } + + @Test + public void testDistCalcPointOnBearing_cartesian() { + ctx = new SimpleSpatialContext(DistanceUnits.CARTESIAN); + EPS = 10e-6;//tighter epsilon (aka delta) + for(int i = 0; i < 1000; i++) { + testDistCalcPointOnBearing(random.nextInt(100)); + } + } + + @Test + public void testDistCalcPointOnBearing_geo() { + //The haversine formula has a higher error if the points are near antipodal. We adjust EPS tolerance for this case. + //TODO Eventually we should add the Vincenty formula for improved accuracy, or try some other cleverness. + + //test known high delta +// { +// Point c = ctx.makePoint(-103,-79); +// double angRAD = Math.toRadians(236); +// double dist = 20025; +// Point p2 = dc().pointOnBearingRAD(c, dist, angRAD, ctx); +// //Pt(x=76.61200011750923,y=79.04946929870962) +// double calcDist = dc().distance(c, p2); +// assertEqualsRatio(dist, calcDist); +// } + double maxDist = ctx.getUnits().earthCircumference() / 2; + for(int i = 0; i < 1000; i++) { + int dist = random.nextInt((int) maxDist); + EPS = (dist < maxDist*0.75 ? 10e-6 : 10e-3); + testDistCalcPointOnBearing(dist); + } + } + + private void testDistCalcPointOnBearing(double dist) { + for(int angDEG = 0; angDEG < 360; angDEG += random.nextInt(20)+1) { + Point c = ctx.makePoint(random.nextInt(360),-90+random.nextInt(181)); + + //0 distance means same point + Point p2 = dc().pointOnBearing(c, 0, angDEG, ctx); + assertEquals(c,p2); + + p2 = dc().pointOnBearing(c, dist, angDEG, ctx); + double calcDist = dc().distance(c, p2); + assertEqualsRatio(dist, calcDist); + } + } + + private void assertEqualsRatio(double expected, double actual) { + double delta = Math.abs(actual - expected); + double base = Math.min(actual, expected); + double deltaRatio = base==0 ? delta : Math.min(delta,delta / base); + assertEquals(0,deltaRatio, EPS); + } + + @Test + public void testNormLat() { + double[][] lats = new double[][] { + {1.23,1.23},//1.23 might become 1.2299999 after some math and we want to ensure that doesn't happen + {-90,-90},{90,90},{0,0}, {-100,-80}, + {-90-180,90},{-90-360,-90},{90+180,-90},{90+360,90}, + {-12+180,12}}; + for (double[] pair : lats) { + assertEquals("input "+pair[0],pair[1],ctx.normY(pair[0]),0); + } + Random random = new Random(RandomSeed.seed()); + for(int i = -1000; i < 1000; i += random.nextInt(10)*10) { + double d = ctx.normY(i); + assertTrue(i + " " + d, d >= -90 && d <= 90); + } + } + + @Test + public void testNormLon() { + double[][] lons = new double[][] { + {1.23,1.23},//1.23 might become 1.2299999 after some math and we want to ensure that doesn't happen + {-180,-180},{180,-180},{0,0}, {-190,170}, + {-180-360,-180},{-180-720,-180},{180+360,-180},{180+720,-180}}; + for (double[] pair : lons) { + assertEquals("input "+pair[0],pair[1],ctx.normX(pair[0]),0); + } + Random random = new Random(RandomSeed.seed()); + for(int i = -1000; i < 1000; i += random.nextInt(10)*10) { + double d = ctx.normX(i); + assertTrue(i + " " + d, d >= -180 && d < 180); + } + } + + @Test + public void testDistToRadians() { + assertDistToRadians(0); + assertDistToRadians(500); + assertDistToRadians(ctx.getUnits().earthRadius()); + } + + private void assertDistToRadians(double dist) { + double radius = ctx.getUnits().earthRadius(); + assertEquals( + DistanceUtils.pointOnBearingRAD(0, 0, DistanceUtils.dist2Radians(dist, radius), DistanceUtils.DEG_90_AS_RADS, null)[1], + DistanceUtils.dist2Radians(dist, radius),10e-5); + } + + private Point pLL(double lat, double lon) { + return ctx.makePoint(lon,lat); + } + +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeTest.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeTest.java new file mode 100644 index 00000000000..77fdcd210fb --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/SpatialPrefixTreeTest.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix; + +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.prefix.geohash.GeohashPrefixTree; +import org.apache.lucene.spatial.base.shape.Rectangle; +import org.apache.lucene.spatial.base.shape.Shape; +import org.junit.Before; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +/** + * @author David Smiley - dsmiley@mitre.org + */ +public class SpatialPrefixTreeTest { + + //TODO plug in others and test them + private SimpleSpatialContext ctx; + private SpatialPrefixTree trie; + + @Before + public void setUp() throws Exception { + ctx = SimpleSpatialContext.GEO_KM; + trie = new GeohashPrefixTree(ctx,4); + } + + @Test + public void testNodeTraverse() { + Node prevN = null; + Node n = trie.getWorldNode(); + assertEquals(0,n.getLevel()); + assertEquals(ctx.getWorldBounds(),n.getShape()); + while(n.getLevel() < trie.getMaxLevels()) { + prevN = n; + n = n.getSubCells().iterator().next();//TODO random which one? + + assertEquals(prevN.getLevel()+1,n.getLevel()); + Rectangle prevNShape = (Rectangle) prevN.getShape(); + Shape s = n.getShape(); + Rectangle sbox = s.getBoundingBox(); + assertTrue(prevNShape.getWidth() > sbox.getWidth()); + assertTrue(prevNShape.getHeight() > sbox.getHeight()); + } + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/TestGridMatchInfo.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/TestGridMatchInfo.java new file mode 100644 index 00000000000..12d46769138 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/TestGridMatchInfo.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceUnits; +import org.apache.lucene.spatial.base.prefix.quad.QuadPrefixTree; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.base.shape.simple.PointImpl; +import org.apache.lucene.spatial.base.shape.simple.RectangleImpl; +import org.junit.Ignore; +import org.junit.Test; + +import java.util.List; + + +/** + */ +public class TestGridMatchInfo { + + @Test @Ignore + public void testMatchInfo() { + // Check Validation + SpatialContext ctx = new SimpleSpatialContext(DistanceUnits.CARTESIAN,null,new RectangleImpl(0,10,0,10)); + QuadPrefixTree grid = new QuadPrefixTree(ctx, 2); + + +// GeometricShapeFactory gsf = new GeometricShapeFactory(); +// gsf.setCentre( new com.vividsolutions.jts.geom.Coordinate( 5,5 ) ); +// gsf.setSize( 9.5 ); +// Shape shape = new JtsGeometry( gsf.createCircle() ); + + Shape shape = new RectangleImpl(0, 6, 5, 10); + + shape = new PointImpl(3, 3); + + //TODO UPDATE BASED ON NEW API + List m = SpatialPrefixTree.nodesToTokenStrings(grid.getNodes(shape,3,false)); + System.out.println(m); + + for (CharSequence s : m) { + System.out.println(s); + } + + +// // query should intersect everything one level down +// ArrayList descr = new ArrayList(); +// descr.add( "AAA*" ); +// descr.add( "AABC*" ); +// System.out.println( descr ); + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/geohash/TestGeohashUtils.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/geohash/TestGeohashUtils.java new file mode 100644 index 00000000000..809227eea1f --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/prefix/geohash/TestGeohashUtils.java @@ -0,0 +1,103 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.prefix.geohash; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceUnits; +import org.apache.lucene.spatial.base.shape.Point; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +/** + * Tests for {@link GeohashUtils} + */ +public class TestGeohashUtils { + SpatialContext ctx = new SimpleSpatialContext( DistanceUnits.KILOMETERS ); + + /** + * Pass condition: lat=42.6, lng=-5.6 should be encoded as "ezs42e44yx96", + * lat=57.64911 lng=10.40744 should be encoded as "u4pruydqqvj8" + */ + @Test + public void testEncode() { + String hash = GeohashUtils.encodeLatLon(42.6, -5.6); + assertEquals("ezs42e44yx96", hash); + + hash = GeohashUtils.encodeLatLon(57.64911, 10.40744); + assertEquals("u4pruydqqvj8", hash); + } + + /** + * Pass condition: lat=52.3738007, lng=4.8909347 should be encoded and then + * decoded within 0.00001 of the original value + */ + @Test + public void testDecodePreciseLongitudeLatitude() { + String hash = GeohashUtils.encodeLatLon(52.3738007, 4.8909347); + + Point point = GeohashUtils.decode(hash,ctx); + + assertEquals(52.3738007, point.getY(), 0.00001D); + assertEquals(4.8909347, point.getX(), 0.00001D); + } + + /** + * Pass condition: lat=84.6, lng=10.5 should be encoded and then decoded + * within 0.00001 of the original value + */ + @Test + public void testDecodeImpreciseLongitudeLatitude() { + String hash = GeohashUtils.encodeLatLon(84.6, 10.5); + + Point point = GeohashUtils.decode(hash, ctx); + + assertEquals(84.6, point.getY(), 0.00001D); + assertEquals(10.5, point.getX(), 0.00001D); + } + + /* + * see https://issues.apache.org/jira/browse/LUCENE-1815 for details + */ + @Test + public void testDecodeEncode() { + String geoHash = "u173zq37x014"; + assertEquals(geoHash, GeohashUtils.encodeLatLon(52.3738007, 4.8909347)); + Point point = GeohashUtils.decode(geoHash,ctx); + assertEquals(52.37380061d, point.getY(), 0.000001d); + assertEquals(4.8909343d, point.getX(), 0.000001d); + + assertEquals(geoHash, GeohashUtils.encodeLatLon(point.getY(), point.getX())); + + geoHash = "u173"; + point = GeohashUtils.decode("u173",ctx); + geoHash = GeohashUtils.encodeLatLon(point.getY(), point.getX()); + final Point point2 = GeohashUtils.decode(geoHash, ctx); + assertEquals(point.getY(), point2.getY(), 0.000001d); + assertEquals(point.getX(), point2.getX(), 0.000001d); + } + + /** see the table at http://en.wikipedia.org/wiki/Geohash */ + @Test + public void testHashLenToWidth() { + double[] box = GeohashUtils.lookupDegreesSizeForHashLen(3); + assertEquals(1.40625,box[0],0.0001); + assertEquals(1.40625,box[1],0.0001); + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/AbstractTestShapes.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/AbstractTestShapes.java new file mode 100644 index 00000000000..ace7ceec5e1 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/AbstractTestShapes.java @@ -0,0 +1,261 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +import org.apache.lucene.spatial.RandomSeed; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceCalculator; +import org.junit.Before; + +import java.util.Random; + +import static org.apache.lucene.spatial.base.shape.SpatialRelation.CONTAINS; +import static org.apache.lucene.spatial.base.shape.SpatialRelation.DISJOINT; +import static org.apache.lucene.spatial.base.shape.SpatialRelation.WITHIN; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +/** + * @author David Smiley - dsmiley@mitre.org + */ +public abstract class AbstractTestShapes { + protected Random random; + + protected SpatialContext ctx; + private static final double EPS = 10e-9; + + @Before + public void beforeClass() { + random = new Random(RandomSeed.seed()); + ctx = getContext(); + } + + protected void assertRelation(String msg, SpatialRelation expected, Shape a, Shape b) { + msg = a+" intersect "+b;//use different msg + _assertIntersect(msg,expected,a,b); + //check flipped a & b w/ transpose(), while we're at it + _assertIntersect("(transposed) " + msg, expected.transpose(), b, a); + } + + private void _assertIntersect(String msg, SpatialRelation expected, Shape a, Shape b) { + SpatialRelation sect = a.relate(b, ctx); + if (sect == expected) + return; + if (expected == WITHIN || expected == CONTAINS) { + if (a.getClass().equals(b.getClass())) // they are the same shape type + assertEquals(msg,a,b); + else { + //they are effectively points or lines that are the same location + assertTrue(msg,!a.hasArea()); + assertTrue(msg,!b.hasArea()); + + Rectangle aBBox = a.getBoundingBox(); + Rectangle bBBox = b.getBoundingBox(); + if (aBBox.getHeight() == 0 && bBBox.getHeight() == 0 + && (aBBox.getMaxY() == 90 && bBBox.getMaxY() == 90 + || aBBox.getMinY() == -90 && bBBox.getMinY() == -90)) + ;//== a point at the pole + else + assertEquals(msg, aBBox, bBBox); + } + } else { + assertEquals(msg,expected,sect); + } + } + + private void assertEqualsRatio(String msg, double expected, double actual) { + double delta = Math.abs(actual - expected); + double base = Math.min(actual, expected); + double deltaRatio = base==0 ? delta : Math.min(delta,delta / base); + assertEquals(msg,0,deltaRatio, EPS); + } + + protected void testRectangle(double minX, double width, double minY, double height) { + Rectangle r = ctx.makeRect(minX, minX + width, minY, minY+height); + //test equals & hashcode of duplicate + Rectangle r2 = ctx.makeRect(minX, minX + width, minY, minY+height); + assertEquals(r,r2); + assertEquals(r.hashCode(),r2.hashCode()); + + String msg = r.toString(); + + assertEquals(msg, width != 0 && height != 0, r.hasArea()); + assertEquals(msg, width != 0 && height != 0, r.getArea() > 0); + + assertEqualsRatio(msg, height, r.getHeight()); + assertEqualsRatio(msg, width, r.getWidth()); + Point center = r.getCenter(); + msg += " ctr:"+center; + //System.out.println(msg); + assertRelation(msg, CONTAINS, r, center); + + DistanceCalculator dc = ctx.getDistCalc(); + double dUR = dc.distance(center, r.getMaxX(), r.getMaxY()); + double dLR = dc.distance(center, r.getMaxX(), r.getMinY()); + double dUL = dc.distance(center, r.getMinX(), r.getMaxY()); + double dLL = dc.distance(center, r.getMinX(), r.getMinY()); + + assertEquals(msg,width != 0 || height != 0, dUR != 0); + if (dUR != 0) + assertTrue(dUR > 0 && dLL > 0); + assertEqualsRatio(msg, dUR, dUL); + assertEqualsRatio(msg, dLR, dLL); + if (!ctx.isGeo() || center.getY() == 0) + assertEqualsRatio(msg, dUR, dLL); + } + + protected void testRectIntersect() { + final double INCR = 45; + final double Y = 10; + for(double left = -180; left <= 180; left += INCR) { + for(double right = left; right - left <= 360; right += INCR) { + Rectangle r = ctx.makeRect(left,right,-Y,Y); + + //test contains (which also tests within) + for(double left2 = left; left2 <= right; left2 += INCR) { + for(double right2 = left2; right2 <= right; right2 += INCR) { + Rectangle r2 = ctx.makeRect(left2,right2,-Y,Y); + assertRelation(null, SpatialRelation.CONTAINS, r, r2); + } + } + //test point contains + assertRelation(null, SpatialRelation.CONTAINS, r, ctx.makePoint(left, Y)); + + //test disjoint + for(double left2 = right+INCR; left2 - left < 360; left2 += INCR) { + for(double right2 = left2; right2 - left < 360; right2 += INCR) { + Rectangle r2 = ctx.makeRect(left2,right2,-Y,Y); + assertRelation(null, SpatialRelation.DISJOINT, r, r2); + + //test point disjoint + assertRelation(null, SpatialRelation.DISJOINT, r, ctx.makePoint(left2, Y)); + } + } + //test intersect + for(double left2 = left+INCR; left2 <= right; left2 += INCR) { + for(double right2 = right+INCR; right2 - left < 360; right2 += INCR) { + Rectangle r2 = ctx.makeRect(left2,right2,-Y,Y); + assertRelation(null, SpatialRelation.INTERSECTS, r, r2); + } + } + + } + } + } + + protected void testCircle(double x, double y, double dist) { + Circle c = ctx.makeCircle(x, y, dist); + String msg = c.toString(); + final Circle c2 = ctx.makeCircle(ctx.makePoint(x, y), dist); + assertEquals(c, c2); + assertEquals(c.hashCode(),c2.hashCode()); + + assertEquals(msg,dist > 0, c.hasArea()); + final Rectangle bbox = c.getBoundingBox(); + assertEquals(msg,dist > 0, bbox.getArea() > 0); + if (!ctx.isGeo()) { + //if not geo then units of dist == units of x,y + assertEqualsRatio(msg, bbox.getHeight(), dist * 2); + assertEqualsRatio(msg, bbox.getWidth(), dist * 2); + } + assertRelation(msg, CONTAINS, c, c.getCenter()); + assertRelation(msg, CONTAINS, bbox, c); + } + + protected void testCircleIntersect() { + //Now do some randomized tests: + int i_C = 0, i_I = 0, i_W = 0, i_O = 0;//counters for the different intersection cases + int laps = 0; + int MINLAPSPERCASE = 20; + while(i_C < MINLAPSPERCASE || i_I < MINLAPSPERCASE || i_W < MINLAPSPERCASE || i_O < MINLAPSPERCASE) { + laps++; + double cX = randRange(-180,179); + double cY = randRange(-90,90); + double cR = randRange(0, 180); + double cR_dist = ctx.getDistCalc().distance(ctx.makePoint(0, 0), 0, cR); + Circle c = ctx.makeCircle(cX, cY, cR_dist); + + double rX = randRange(-180,179); + double rW = randRange(0,360); + double rY1 = randRange(-90,90); + double rY2 = randRange(-90,90); + double rYmin = Math.min(rY1,rY2); + double rYmax = Math.max(rY1,rY2); + Rectangle r = ctx.makeRect(rX, rX+rW, rYmin, rYmax); + + SpatialRelation ic = c.relate(r, ctx); + + Point p; + switch (ic) { + case CONTAINS: + i_C++; + p = randomPointWithin(random,r,ctx); + assertEquals(CONTAINS,c.relate(p, ctx)); + break; + case INTERSECTS: + i_I++; + //hard to test anything here; instead we'll test it separately + break; + case WITHIN: + i_W++; + p = randomPointWithin(random,c,ctx); + assertEquals(CONTAINS,r.relate(p, ctx)); + break; + case DISJOINT: + i_O++; + p = randomPointWithin(random,r,ctx); + assertEquals(DISJOINT,c.relate(p, ctx)); + break; + default: fail(""+ic); + } + } + System.out.println("Laps: "+laps); + + //TODO deliberately test INTERSECTS based on known intersection point + } + + /** Returns a random integer between [start, end] with a limited number of possibilities instead of end-start+1. */ + private int randRange(int start, int end) { + //I tested this. + double r = random.nextDouble(); + final int BUCKETS = 91; + int ir = (int) Math.round(r*(BUCKETS-1));//put into buckets + int result = (int)((double)((end - start) * ir) / (double)(BUCKETS-1) + (double)start); + assert result >= start && result <= end; + return result; + } + + private Point randomPointWithin(Random random, Circle c, SpatialContext ctx) { + double d = c.getDistance() * random.nextDouble(); + double angleDEG = 360*random.nextDouble(); + Point p = ctx.getDistCalc().pointOnBearing(c.getCenter(), d, angleDEG, ctx); + assertEquals(CONTAINS,c.relate(p, ctx)); + return p; + } + + private Point randomPointWithin(Random random, Rectangle r, SpatialContext ctx) { + double x = r.getMinX() + random.nextDouble()*r.getWidth(); + double y = r.getMinY() + random.nextDouble()*r.getHeight(); + Point p = ctx.makePoint(x,y); + assertEquals(CONTAINS,r.relate(p, ctx)); + return p; + } + + protected abstract SpatialContext getContext(); +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapes2D.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapes2D.java new file mode 100644 index 00000000000..ac5f17c4dd4 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapes2D.java @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.distance.DistanceUnits; +import org.junit.Test; + +import static org.apache.lucene.spatial.base.shape.SpatialRelation.*; +import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; + +/** + * @author dsmiley + */ +public class TestShapes2D extends AbstractTestShapes { + + @Override + protected SpatialContext getContext() { + return new SimpleSpatialContext(DistanceUnits.CARTESIAN); + } + + @Test + public void testSimplePoint() { + Point pt = ctx.makePoint(0,0); + String msg = pt.toString(); + + //test equals & hashcode + Point pt2 = ctx.makePoint(0,0); + assertEquals(msg, pt, pt2); + assertEquals(msg, pt.hashCode(), pt2.hashCode()); + + assertFalse(msg,pt.hasArea()); + assertEquals(msg,pt.getCenter(),pt); + Rectangle bbox = pt.getBoundingBox(); + assertFalse(msg,bbox.hasArea()); + assertEquals(msg,pt,bbox.getCenter()); + + assertRelation(msg, CONTAINS, pt, pt2); + assertRelation(msg, DISJOINT, pt, ctx.makePoint(0, 1)); + assertRelation(msg, DISJOINT, pt, ctx.makePoint(1, 0)); + assertRelation(msg, DISJOINT, pt, ctx.makePoint(1, 1)); + } + + @Test + public void testSimpleRectangle() { + double[] minXs = new double[]{-1000,-360,-180,-20,0,20,180,1000}; + for (double minX : minXs) { + double[] widths = new double[]{0,10,180,360,400}; + for (double width : widths) { + testRectangle(minX, width, 0, 0); + testRectangle(minX, width, -10, 10); + testRectangle(minX, width, 5, 10); + } + } + + testRectIntersect(); + } + + @Test + public void testSimpleCircle() { + double[] theXs = new double[]{-10,0,10}; + for (double x : theXs) { + double[] theYs = new double[]{-20,0,20}; + for (double y : theYs) { + testCircle(x, y, 0); + testCircle(x, y, 5); + } + } + //INTERSECTION: + //Start with some static tests that have shown to cause failures at some point: + assertEquals("getX not getY",INTERSECTS,ctx.makeCircle(107,-81,147).relate(ctx.makeRect(92, 121, -89, 74), ctx)); + + testCircleIntersect(); + } + + +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapesGeo.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapesGeo.java new file mode 100644 index 00000000000..afc061ab369 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/base/shape/TestShapesGeo.java @@ -0,0 +1,165 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.base.shape; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.distance.*; +import org.junit.Ignore; +import org.junit.Test; + +import static org.apache.lucene.spatial.base.shape.SpatialRelation.*; +import static org.junit.Assert.assertEquals; + +/** + * @author David Smiley - dsmiley@mitre.org + */ +public abstract class TestShapesGeo extends AbstractTestShapes { + + @Test + public void testGeoRectangle() { + double[] lons = new double[]{0,45,160,180,-45,-175, -180};//minX + for (double lon : lons) { + double[] lonWs = new double[]{0,20,180,200,355, 360};//width + for (double lonW : lonWs) { + testRectangle(lon, lonW, 0, 0); + testRectangle(lon, lonW, -10, 10); + testRectangle(lon, lonW, 80, 10);//polar cap + testRectangle(lon, lonW, -90, 180);//full lat range + } + } + + //Test geo rectangle intersections + testRectIntersect(); + } + + + @Test + public void testGeoCircle() { + //--Start with some static tests that once failed: + + //Bug: numeric edge at pole, fails to init + ctx.makeCircle( + 110,-12,ctx.getDistCalc().degreesToDistance(90 + 12)); + + //Bug: horizXAxis not in enclosing rectangle, assertion + ctx.makeCircle(-44,16,degToDist(106)); + ctx.makeCircle(-36,-76,degToDist(14)); + ctx.makeCircle(107,82,degToDist(172)); + +// TODO need to update this test to be valid +// { +// //Bug in which distance was being confused as being in the same coordinate system as x,y. +// double distDeltaToPole = 0.001;//1m +// double distDeltaToPoleDEG = ctx.getDistCalc().distanceToDegrees(distDeltaToPole); +// double dist = 1;//1km +// double distDEG = ctx.getDistCalc().distanceToDegrees(dist); +// Circle c = ctx.makeCircle(0,90-distDeltaToPoleDEG-distDEG,dist); +// Rectangle cBBox = c.getBoundingBox(); +// Rectangle r = ctx.makeRect(cBBox.getMaxX()*0.99,cBBox.getMaxX()+1,c.getCenter().getY(),c.getCenter().getY()); +// assertEquals(INTERSECTS,c.getBoundingBox().relate(r, ctx)); +// assertEquals("dist != xy space",INTERSECTS,c.relate(r,ctx));//once failed here +// } + + assertEquals("wrong estimate", DISJOINT,ctx.makeCircle(-166,59,5226.2).relate(ctx.makeRect(36, 66, 23, 23), ctx)); + + assertEquals("bad CONTAINS (dateline)",INTERSECTS,ctx.makeCircle(56,-50,12231.5).relate(ctx.makeRect(108, 26, 39, 48), ctx)); + + assertEquals("bad CONTAINS (backwrap2)",INTERSECTS, + ctx.makeCircle(112,-3,degToDist(91)).relate(ctx.makeRect(-163, 29, -38, 10), ctx)); + + assertEquals("bad CONTAINS (r x-wrap)",INTERSECTS, + ctx.makeCircle(-139,47,degToDist(80)).relate(ctx.makeRect(-180, 180, -3, 12), ctx)); + + assertEquals("bad CONTAINS (pwrap)",INTERSECTS, + ctx.makeCircle(-139,47,degToDist(80)).relate(ctx.makeRect(-180, 179, -3, 12), ctx)); + + assertEquals("no-dist 1",WITHIN, + ctx.makeCircle(135,21,0).relate(ctx.makeRect(-103, -154, -47, 52), ctx)); + + assertEquals("bbox <= >= -90 bug",CONTAINS, + ctx.makeCircle(-64,-84,degToDist(124)).relate(ctx.makeRect(-96, 96, -10, -10), ctx)); + + //The horizontal axis line of a geo circle doesn't necessarily pass through c's ctr. + assertEquals("c's horiz axis doesn't pass through ctr",INTERSECTS, + ctx.makeCircle(71,-44,degToDist(40)).relate(ctx.makeRect(15, 27, -62, -34), ctx)); + + assertEquals("pole boundary",INTERSECTS, + ctx.makeCircle(-100,-12,degToDist(102)).relate(ctx.makeRect(143, 175, 4, 32), ctx)); + + assertEquals("full circle assert",CONTAINS, + ctx.makeCircle(-64,32,degToDist(180)).relate(ctx.makeRect(47, 47, -14, 90), ctx)); + + //--Now proceed with systematic testing: + + double distToOpposeSide = ctx.getUnits().earthRadius()*Math.PI; + assertEquals(ctx.getWorldBounds(),ctx.makeCircle(0,0,distToOpposeSide).getBoundingBox()); + //assertEquals(ctx.makeCircle(0,0,distToOpposeSide/2 - 500).getBoundingBox()); + + double[] theXs = new double[]{-180,-45,90}; + for (double x : theXs) { + double[] theYs = new double[]{-90,-45,0,45,90}; + for (double y : theYs) { + testCircle(x, y, 0); + testCircle(x, y, 500); + testCircle(x, y, degToDist(90)); + testCircle(x, y, ctx.getUnits().earthRadius()*6); + } + } + + testCircleIntersect(); + } + + private double degToDist(int deg) { + return ctx.getDistCalc().degreesToDistance(deg); + } + + @Ignore + public static class TestLawOfCosines extends TestShapesGeo { + + @Override + protected SpatialContext getContext() { + DistanceUnits units = DistanceUnits.KILOMETERS; + return new SimpleSpatialContext(units, + new GeodesicSphereDistCalc.LawOfCosines(units.earthRadius()), + SpatialContext.GEO_WORLDBOUNDS); + } + } + + public static class TestHaversine extends TestShapesGeo { + + @Override + protected SpatialContext getContext() { + DistanceUnits units = DistanceUnits.KILOMETERS; + return new SimpleSpatialContext(units, + new GeodesicSphereDistCalc.Haversine(units.earthRadius()), + SpatialContext.GEO_WORLDBOUNDS); + } + } + + public static class TestVincentySphere extends TestShapesGeo { + + @Override + protected SpatialContext getContext() { + DistanceUnits units = DistanceUnits.KILOMETERS; + return new SimpleSpatialContext(units, + new GeodesicSphereDistCalc.Vincenty(units.earthRadius()), + SpatialContext.GEO_WORLDBOUNDS); + } + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/BaseRecursivePrefixTreeStrategyTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/BaseRecursivePrefixTreeStrategyTestCase.java new file mode 100644 index 00000000000..3d388286104 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/BaseRecursivePrefixTreeStrategyTestCase.java @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.prefix.geohash.GeohashPrefixTree; +import org.apache.lucene.spatial.strategy.SimpleSpatialFieldInfo; +import org.apache.lucene.spatial.SpatialMatchConcern; +import org.apache.lucene.spatial.StrategyTestCase; +import org.junit.Test; + +import java.io.IOException; + + +public abstract class BaseRecursivePrefixTreeStrategyTestCase extends StrategyTestCase { + + private int maxLength; + + protected abstract SpatialContext getSpatialContext(); + + @Override + public void setUp() throws Exception { + super.setUp(); + maxLength = GeohashPrefixTree.getMaxLevelsPossible(); + // SimpleIO + this.ctx = getSpatialContext(); + this.strategy = new RecursivePrefixTreeStrategy(new GeohashPrefixTree( + ctx, maxLength )); + this.fieldInfo = new SimpleSpatialFieldInfo( getClass().getSimpleName() ); + } + + @Test + public void testFilterWithVariableScanLevel() throws IOException { + getAddAndVerifyIndexedDocuments(DATA_WORLD_CITIES_POINTS); + + //execute queries for each prefix grid scan level + for(int i = 0; i <= maxLength; i++) { + ((RecursivePrefixTreeStrategy)strategy).setPrefixGridScanLevel(i); + executeQueries(SpatialMatchConcern.FILTER, QTEST_Cities_IsWithin_BBox); + } + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategyTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategyTestCase.java new file mode 100644 index 00000000000..71fb4d8e6cf --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/RecursivePrefixTreeStrategyTestCase.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.junit.Before; + + +public class RecursivePrefixTreeStrategyTestCase extends BaseRecursivePrefixTreeStrategyTestCase { + + @Before + public void setUp() throws Exception { + super.setUp(); + } + + @Override + protected SpatialContext getSpatialContext() { + return SimpleSpatialContext.GEO_KM; + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestSpatialPrefixField.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestSpatialPrefixField.java new file mode 100644 index 00000000000..27263704e11 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestSpatialPrefixField.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import java.util.Arrays; +import java.util.List; + +import org.junit.Test; + + +/** + * This is just a quick idea for *simple* tests + */ +public class TestSpatialPrefixField { + + @Test + public void testRawTokens() { + // Ignoring geometry for now, and focus on what tokens need to match + + List docA = Arrays.asList( + "AAAAAA*", + "AAAAAB+" + ); + + List docB = Arrays.asList( + "A*", + "BB*" + ); + + // Assumptions: + checkQuery("AAAAA", "docA", "docB"); + checkQuery("AAAAA*", "docA", "docB"); // for now * and + are essentially identical + checkQuery("AAAAA+", "docA", "docB"); // down the road, there may be a difference between 'covers' and an edge + + checkQuery("AA*", "docB", "docA"); // Bigger input query + + checkQuery("AAAAAAAAAAAA*", "docA", "docB"); // small + + checkQuery("BC"); // nothing + checkQuery("XX"); // nothing + + // match only B + checkQuery("B", "docB"); + checkQuery("BBBB", "docB"); + checkQuery("B*", "docB"); + checkQuery("BBBB*", "docB"); + } + + void checkQuery(String query, String... expect) { + // TODO, check that the query returns the docs in order + } + +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestTermQueryPrefixGridStrategy.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestTermQueryPrefixGridStrategy.java new file mode 100644 index 00000000000..4c36945ea6e --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/prefix/TestTermQueryPrefixGridStrategy.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.prefix; + +import org.apache.lucene.document.Document; +import org.apache.lucene.document.Field; +import org.apache.lucene.document.StringField; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; +import org.apache.lucene.spatial.base.prefix.quad.QuadPrefixTree; +import org.apache.lucene.spatial.base.query.SpatialArgsParser; +import org.apache.lucene.spatial.base.shape.Shape; +import org.apache.lucene.spatial.base.shape.simple.PointImpl; +import org.apache.lucene.spatial.strategy.SimpleSpatialFieldInfo; +import org.apache.lucene.spatial.SpatialTestCase; +import org.junit.Test; + +import java.io.IOException; +import java.util.Arrays; + + +public class TestTermQueryPrefixGridStrategy extends SpatialTestCase { + + @Test + public void testNGramPrefixGridLosAngeles() throws IOException { + SimpleSpatialFieldInfo fieldInfo = new SimpleSpatialFieldInfo("geo"); + SpatialContext ctx = SimpleSpatialContext.GEO_KM; + TermQueryPrefixTreeStrategy prefixGridStrategy = new TermQueryPrefixTreeStrategy(new QuadPrefixTree(ctx)); + + Shape point = new PointImpl(-118.243680, 34.052230); + + Document losAngeles = new Document(); + losAngeles.add(new Field("name", "Los Angeles", StringField.TYPE_STORED)); + losAngeles.add(prefixGridStrategy.createField(fieldInfo, point, true, true)); + + addDocumentsAndCommit(Arrays.asList(losAngeles)); + + // This won't work with simple spatial context... + SpatialArgsParser spatialArgsParser = new SpatialArgsParser(); + // TODO... use a non polygon query +// SpatialArgs spatialArgs = spatialArgsParser.parse( +// "IsWithin(POLYGON((-127.00390625 39.8125,-112.765625 39.98828125,-111.53515625 31.375,-125.94921875 30.14453125,-127.00390625 39.8125)))", +// new SimpleSpatialContext()); + +// Query query = prefixGridStrategy.makeQuery(spatialArgs, fieldInfo); +// SearchResults searchResults = executeQuery(query, 1); +// assertEquals(1, searchResults.numFound); + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/BaseTwoDoublesStrategyTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/BaseTwoDoublesStrategyTestCase.java new file mode 100644 index 00000000000..a981c48c370 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/BaseTwoDoublesStrategyTestCase.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.vector; + +import org.apache.lucene.search.FieldCache; +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.strategy.util.NumericFieldInfo; +import org.apache.lucene.spatial.SpatialMatchConcern; +import org.apache.lucene.spatial.StrategyTestCase; +import org.junit.Test; + +import java.io.IOException; + + +public abstract class BaseTwoDoublesStrategyTestCase extends StrategyTestCase { + + protected abstract SpatialContext getSpatialContext(); + + @Override + public void setUp() throws Exception { + super.setUp(); + this.ctx = getSpatialContext(); + this.strategy = new TwoDoublesStrategy(ctx, + new NumericFieldInfo(), FieldCache.NUMERIC_UTILS_DOUBLE_PARSER); + this.fieldInfo = new TwoDoublesFieldInfo(getClass().getSimpleName()); + } + + @Test + public void testCitiesWithinBBox() throws IOException { + getAddAndVerifyIndexedDocuments(DATA_WORLD_CITIES_POINTS); + executeQueries(SpatialMatchConcern.FILTER, QTEST_Cities_IsWithin_BBox); + } +} diff --git a/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategyTestCase.java b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategyTestCase.java new file mode 100644 index 00000000000..19586bf28d8 --- /dev/null +++ b/modules/spatial-lucene/src/test/java/org/apache/lucene/spatial/strategy/vector/TwoDoublesStrategyTestCase.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.lucene.spatial.strategy.vector; + +import org.apache.lucene.spatial.base.context.SpatialContext; +import org.apache.lucene.spatial.base.context.simple.SimpleSpatialContext; + +public class TwoDoublesStrategyTestCase extends BaseTwoDoublesStrategyTestCase { + + @Override + protected SpatialContext getSpatialContext() { + return SimpleSpatialContext.GEO_KM; + } +} diff --git a/modules/spatial-lucene/src/test/resources/cities-IsWithin-BBox.txt b/modules/spatial-lucene/src/test/resources/cities-IsWithin-BBox.txt new file mode 100644 index 00000000000..1df64eace42 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/cities-IsWithin-BBox.txt @@ -0,0 +1,7 @@ +[San Francisco] G5391959 @ IsWithin(-122.524918 37.674973 -122.360123 37.817108) +[Wellington] G2179537 @ IsWithin(174.711456 -41.360779 174.854279 -41.213837) +[Barcelona] G6544100 G3128760 @ IsWithin(2.127228 41.333313 2.226105 41.408844) + + + + diff --git a/modules/spatial-lucene/src/test/resources/data/countries-bbox.txt b/modules/spatial-lucene/src/test/resources/data/countries-bbox.txt new file mode 100644 index 00000000000..3653912b976 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/data/countries-bbox.txt @@ -0,0 +1,249 @@ +#id name shape +FLK Falkland Is. -61.148055 -52.343055 -57.733200 -51.249455 +GUF French Guiana -54.603782 2.113473 -51.648055 5.755418 +GUY Guyana -61.389727 1.186873 -56.470636 8.535273 +PCN Pitcairn Is. -130.105055 -25.082227 -128.286118 -24.325836 +SGS South Georgia & the South Sandwich Is. -38.023755 -58.498609 -26.241391 -53.989727 +SHN St. Helena -5.792782 -16.021946 -5.645282 -15.903755 +SUR Suriname -58.071400 1.836245 -53.986118 6.001809 +TTO Trinidad & Tobago -61.921600 10.040345 -60.520836 11.345554 +VEN Venezuela -73.378064 0.649164 -59.803055 12.197500 +ASM American Samoa -170.823227 -14.375555 -170.561873 -14.254309 +COK Cook Is. -165.848345 -21.940836 -157.703764 -10.881318 +PYF French Polynesia -151.497773 -17.870836 -138.809755 -8.778191 +UMI Jarvis I. -160.045164 -0.398055 -160.009464 -0.374309 +NIU Niue -169.952236 -19.145555 -169.781555 -18.963336 +WSM Samoa -172.780027 -14.057500 -171.429200 -13.460555 +TKL Tokelau -171.862718 -9.218891 -171.843764 -9.170627 +TON Tonga -175.360000 -21.268064 -173.906827 -18.568055 +WLF Wallis & Futuna -178.190273 -14.323891 -176.121936 -13.214864 +ARG Argentina -73.582300 -55.051673 -53.650009 -21.780518 +BOL Bolivia -69.656191 -22.901109 -57.521118 -9.679191 +BRA Brazil -74.004591 -33.741118 -34.792918 5.272709 +CHL Chile -109.446109 -55.902227 -66.420627 -17.505282 +ECU Ecuador -91.663891 -5.000309 -75.216846 1.437782 +PRY Paraguay -62.643773 -27.584727 -54.243900 -19.296809 +PER Peru -81.355146 -18.348546 -68.673909 -0.036873 +URY Uruguay -58.438609 -34.943818 -53.098300 -30.096673 +UMI Baker I. -176.467655 0.215282 -176.455855 0.222573 +CAN Canada -141.002991 41.675554 -52.617364 83.113873 +GTM Guatemala -92.246782 13.745836 -88.214736 17.821109 +UMI Howland I. -176.643082 0.790282 -176.631091 0.808609 +UMI Johnston Atoll -169.538936 16.724164 -169.523927 16.730273 +MEX Mexico -118.404164 14.550545 -86.738618 32.718454 +UMI Midway Is. -177.395845 28.184154 -177.360545 28.221518 +BRB Barbados -59.659446 13.050554 -59.427082 13.337082 +DMA Dominica -61.491391 15.198054 -61.250700 15.631945 +GRD Grenada -61.785182 11.996945 -61.596391 12.237154 +GLP Guadeloupe -61.796109 15.870000 -61.187082 16.512918 +MTQ Martinique -61.231536 14.402773 -60.816946 14.880136 +LCA St. Lucia -61.079582 13.709445 -60.878064 14.109309 +SPM St. Pierre & Miquelon -56.397782 46.747191 -56.145500 47.135827 +VCT St. Vincent & the Grenadines -61.280146 13.130282 -61.120282 13.383191 +ABW Aruba -70.059664 12.411109 -69.874864 12.627773 +BMU Bermuda -64.823064 32.260554 -64.676809 32.379509 +DOM Dominican Republic -72.003064 17.604164 -68.322927 19.930827 +HTI Haiti -74.467791 18.022782 -71.629182 20.091454 +JAM Jamaica -78.373900 17.697218 -76.221118 18.522500 +ANT Netherlands Antilles -69.163618 12.020554 -68.192927 12.383891 +BHS The Bahamas -78.978900 20.915273 -72.738891 26.929164 +TCA Turks & Caicos Is. -72.031464 21.429918 -71.127573 21.957773 +BLZ Belize -89.216400 15.889854 -87.779591 18.489900 +CYM Cayman Is. -81.400836 19.265000 -81.093064 19.354164 +COL Colombia -81.720146 -4.236873 -66.870455 12.590273 +CRI Costa Rica -85.911391 8.025673 -82.561400 11.212845 +CUB Cuba -84.952927 19.821945 -74.131255 23.194027 +SLV El Salvador -90.108064 13.156391 -87.694673 14.431982 +HND Honduras -89.350491 12.985173 -83.131855 16.435827 +NIC Nicaragua -87.689827 10.709691 -83.131855 15.022218 +PAN Panama -83.030291 7.206109 -77.198336 9.620136 +AIA Anguilla -63.167782 18.164445 -62.972709 18.272982 +ATG Antigua & Barbuda -61.891109 16.989718 -61.666946 17.724300 +VGB British Virgin Is. -64.698482 18.383891 -64.324527 18.504854 +MSR Montserrat -62.236946 16.671391 -62.138891 16.812354 +PRI Puerto Rico -67.266400 17.922218 -65.301118 18.519445 +KNA St. Kitts & Nevis -62.862782 17.208882 -62.622509 17.410136 +VIR Virgin Is. -65.023509 17.676664 -64.562573 18.387673 +FRO Faroe Is. -7.433473 61.388327 -6.389718 62.357500 +GRL Greenland -73.053609 59.790273 -12.157637 83.623600 +XGK Guernsey -2.668609 49.422491 -2.500973 49.508191 +ISL Iceland -24.538400 63.390000 -13.499446 66.536100 +IRL Ireland -10.474727 51.445545 -6.013055 55.379991 +XIM Isle of Man -4.787155 54.055545 -4.308682 54.416382 +SJM Jan Mayen -9.119909 70.803863 -7.928509 71.180818 +XJE Jersey -2.247364 49.167773 -2.015000 49.261109 +GBR United Kingdom -8.171664 49.955273 1.749445 60.843327 +CPV Cape Verde -25.360555 14.811109 -22.666109 17.192364 +CIV Cote d'Ivoire -8.606382 4.344718 -2.487782 10.735254 +GHA Ghana -3.248891 4.727082 1.202782 11.155691 +GIB Gibraltar -5.356173 36.112073 -5.334509 36.163309 +LBR Liberia -11.492327 4.343609 -7.368400 8.512782 +MAR Morocco -13.174964 27.664236 -1.011809 35.919164 +PRT Portugal -31.289027 32.637500 -6.190455 42.150673 +ESP Spain -18.169864 27.637500 4.316945 43.764300 +ESH Western Sahara -17.101527 20.764100 -8.666391 27.666954 +BFA Burkina Faso -5.520837 9.395691 2.397927 15.082773 +GIN Guinea -15.080837 7.193927 -7.653373 12.677500 +GNB Guinea-Bissau -16.717773 10.925100 -13.643891 12.684718 +MLI Mali -12.244837 10.142154 4.251391 25.000273 +MRT Mauritania -17.075555 14.725636 -4.806109 27.290454 +SEN Senegal -17.532782 12.301745 -11.369927 16.690618 +SLE Sierra Leone -13.295609 6.923609 -10.264309 9.997500 +GMB The Gambia -16.821664 13.059973 -13.798609 13.826391 +DJI Djibouti 41.759854 10.942218 43.420409 12.708327 +ERI Eritrea 36.443282 12.363891 43.121382 17.994882 +ETH Ethiopia 32.991800 3.406664 47.988245 14.883609 +MNG Mongolia 87.761100 41.586654 119.931509 52.142773 +SDN Sudan 21.829100 3.493391 38.607500 22.232218 +UGA Uganda 29.574300 -1.476109 35.009718 4.222782 +ISR Gaza Strip 34.216663 31.216545 34.558891 31.596100 +IRQ Iraq 38.794700 29.061664 48.560691 37.383673 +ISR Israel 34.267582 29.486709 35.681109 33.270273 +JOR Jordan 34.960418 29.188891 39.301109 33.377591 +KAZ Kazakhstan 46.499163 40.594436 87.348209 55.442627 +NOR Norway 4.789582 57.987918 31.073536 71.154709 +RUS Russia -180.000000 41.196582 180.000000 81.851927 +SWE Sweden 11.113336 55.339164 24.167009 69.060300 +ISR West Bank 34.888191 31.350691 35.570609 32.546391 +DZA Algeria -8.667218 18.976391 11.986473 37.089854 +AND Andorra 1.421391 42.436382 1.781718 42.655964 +CMR Cameroon 8.502363 1.654164 16.207000 13.085000 +CAF Central African Republic 14.418891 2.221264 27.459718 11.000836 +LBY Libya 9.311391 19.499064 25.151663 33.171136 +MCO Monaco 7.390900 43.727545 7.439291 43.768300 +TUN Tunisia 7.492218 30.234391 11.581663 37.340409 +BEN Benin 0.776663 6.218718 3.855000 12.396654 +TCD Chad 13.461945 7.458536 24.002745 23.450554 +GNQ Equatorial Guinea 8.424163 0.930154 11.353891 3.763336 +KIR Kiribati -157.581700 1.335991 172.947509 2.033054 +NER Niger 0.166663 11.693273 15.996663 23.522309 +NGA Nigeria 2.692500 4.272845 14.649654 13.891500 +STP Sao Tome & Principe 6.465136 0.018336 7.463473 1.701245 +TGO Togo -0.149764 6.100545 1.797800 11.138536 +ALB Albania 19.288536 39.645000 21.053327 42.660345 +BIH Bosnia & Herzegovina 15.740591 42.565827 19.619782 45.265945 +HRV Croatia 13.504791 42.399991 19.425000 46.535827 +ITA Italy 6.623963 36.649164 18.514445 47.094582 +MKD Macedonia 20.458818 40.855891 23.030973 42.358954 +MLT Malta 14.329100 35.800000 14.570000 35.991936 +SMR San Marino 12.406945 43.898682 12.511109 43.986873 +SMN Serbia & Montenegro 18.453327 41.849000 23.005000 46.181109 +VTC Vatican City 12.444473 41.900891 12.457718 41.908391 +BGR Bulgaria 22.365273 41.243045 28.605136 44.224718 +CYP Cyprus 32.269863 34.640273 34.586036 35.688609 +EGY Egypt 24.706800 21.994164 36.895827 31.646945 +GEO Georgia 40.002963 41.048045 46.710818 43.584718 +GRC Greece 19.640000 34.930545 28.238045 41.747773 +LBN Lebanon 35.100827 33.062082 36.623745 34.647500 +SYR Syria 35.614463 32.313609 42.378327 37.290545 +TUR Turkey 25.665827 35.818445 44.820545 42.109991 +AUT Austria 9.533573 46.407491 17.166382 49.018745 +CZE Czech Republic 12.093700 48.581382 18.852218 51.052491 +DNK Denmark 8.092918 54.561936 15.149163 57.745973 +HUN Hungary 16.111800 45.748327 22.894800 48.576173 +POL Poland 14.147636 49.002918 24.143473 54.836036 +SVK Slovakia 16.844718 47.737500 22.558054 49.600827 +SVN Slovenia 13.383473 45.425818 16.607873 46.876245 +SJM Svalbard 10.487918 74.343045 33.637500 80.764163 +BEL Belgium 2.541663 49.508882 6.398200 51.501245 +FRA France -4.790282 41.364927 9.562218 51.091109 +DEU Germany 5.865000 47.274718 15.033818 55.056527 +LIE Liechtenstein 9.474636 47.057454 9.633891 47.274545 +LUX Luxembourg 5.734445 49.448464 6.524027 50.181809 +NLD Netherlands 3.370863 50.753882 7.210973 53.465827 +CHE Switzerland 5.967009 45.829436 10.488209 47.806664 +USA United States -178.216555 18.925482 179.775936 71.351436 +BLR Belarus 23.165400 51.251845 32.740054 56.167491 +EST Estonia 21.837354 57.522636 28.194091 59.664718 +FIN Finland 19.511391 59.806800 31.581963 70.088609 +LVA Latvia 20.968609 55.674836 28.235963 58.083254 +LTU Lithuania 20.942836 53.890336 26.813054 56.449854 +MDA Moldova 26.634991 45.448645 30.128709 48.468318 +ROM Romania 20.261027 43.623309 29.672218 48.263882 +UKR Ukraine 22.151445 44.379154 40.178745 52.378600 +IND India 68.144227 6.745827 97.380536 35.505618 +MDV Maldives 72.863391 -0.641664 73.637272 7.027773 +OMN Oman 51.999291 16.642782 59.847082 26.368709 +SOM Somalia 40.988609 -1.674873 51.411318 11.979164 +LKA Sri Lanka 79.696091 5.918054 81.891663 9.828191 +TKM Turkmenistan 51.250182 35.145991 66.670882 42.796173 +UZB Uzbekistan 55.997491 37.184991 73.167545 45.570591 +YEM Yemen 42.555973 12.144718 54.473473 18.999345 +ARM Armenia 43.454163 38.841145 46.620536 41.297054 +AZE Azerbaijan 44.778863 38.262809 51.677009 42.710754 +BHR Bahrain 50.453327 25.571945 50.796391 26.288891 +IRN Iran 44.034954 25.075973 63.330273 39.779154 +KWT Kuwait 46.546945 28.538882 48.416591 30.084164 +QAT Qatar 50.751936 24.556045 51.615827 26.152500 +SAU Saudi Arabia 34.572145 16.377500 55.666109 32.154945 +ARE United Arab Emirates 51.583327 22.633327 56.381663 26.083882 +AFG Afghanistan 60.504163 29.406109 74.915736 38.471982 +KGZ Kyrgyzstan 69.249500 39.195473 80.281582 43.216900 +NPL Nepal 80.052200 26.368364 88.194554 30.424718 +PAK Pakistan 60.866300 23.688045 77.823927 37.060791 +TJK Tajikistan 67.364700 36.671845 75.187482 41.049254 +BGD Bangladesh 88.043872 20.744818 92.669345 26.626136 +BTN Bhutan 88.751936 26.703609 92.114218 28.325000 +BRN Brunei 114.095082 4.018191 115.360263 5.053054 +CHN China 73.620045 18.168882 134.768463 53.553745 +JPN Japan 123.678863 24.251391 145.812409 45.486382 +PRK North Korea 124.323954 37.671382 130.697418 43.006100 +PLW Palau 134.452482 7.305254 134.658872 7.729445 +PHL Philippines 116.950000 5.049164 126.598036 19.391109 +KOR South Korea 126.099018 33.192209 129.586872 38.625245 +KHM Cambodia 102.346509 10.422736 107.636382 14.708618 +LAO Laos 100.091372 13.926664 107.695254 22.499927 +MYS Malaysia 99.641936 0.852782 119.275818 7.352918 +MMR Myanmar 92.204991 9.839582 101.169427 28.546527 +SGP Singapore 103.640945 1.259027 103.997945 1.445282 +THA Thailand 97.347272 5.633473 105.639291 20.454582 +VNM Vietnam 102.140745 8.559236 109.464845 23.324164 +GUM Guam 144.634154 13.235000 144.953309 13.652291 +MHL Marshall Is. 162.324963 5.600273 171.378063 14.594027 +FSM Micronesia 158.120100 5.261664 163.042891 6.977636 +MNP Northern Mariana Is. 145.572682 14.908054 145.818082 15.268191 +UMI Wake I. 166.608981 19.279445 166.662200 19.324582 +BWA Botswana 19.996109 -26.875555 29.373618 -17.782082 +BDI Burundi 28.985000 -4.448055 30.853191 -2.301564 +ATF French Southern & Antarctic Lands 51.650836 -49.725009 70.567491 -46.327645 +HMD Heard I. & McDonald Is. 73.234709 -53.199445 73.773882 -52.965145 +KEN Kenya 33.907218 -4.669618 41.905163 4.622500 +RWA Rwanda 28.854445 -2.825491 30.893263 -1.054446 +TZA Tanzania 29.340827 -11.740418 40.436809 -0.997218 +ZMB Zambia 21.996391 -18.074918 33.702282 -8.191664 +ZWE Zimbabwe 25.237918 -22.414764 33.071591 -15.616527 +ATA Antarctica -180.000000 -90.000000 180.000000 -60.503336 +NOR Bouvet I. 3.342363 -54.462782 3.484163 -54.383609 +COM Comoros 43.214027 -12.383055 44.530418 -11.366946 +REU Juan De Nova I. 42.723818 -17.076118 42.760900 -17.052018 +LSO Lesotho 27.013973 -30.650527 29.455554 -28.570691 +MWI Malawi 32.681873 -17.135282 35.920963 -9.376673 +MOZ Mozambique 30.213018 -26.860282 40.846109 -10.471109 +ZAF South Africa 16.483327 -46.969727 37.892218 -22.136391 +SWZ Swaziland 30.798336 -27.316391 32.133400 -25.728336 +AGO Angola 11.731245 -18.016391 24.084445 -4.388991 +COG Congo 11.140663 -5.015000 18.643609 3.711109 +ZAR Congo, DRC 12.214554 -13.458055 31.302773 5.380691 +FJI Fiji -180.000000 -19.162782 180.000000 -16.153473 +GAB Gabon 8.700836 -3.925282 14.519582 2.317900 +NAM Namibia 11.716391 -28.961873 25.264427 -16.954173 +NZL New Zealand -176.848755 -52.578055 178.841063 -34.414718 +IOT British Indian Ocean Territory 72.357900 -7.436246 72.494282 -7.233473 +REU Glorioso Is. 47.279091 -11.577782 47.303054 -11.554100 +MDG Madagascar 43.236827 -25.588336 50.501391 -11.945555 +MUS Mauritius 57.306309 -20.520555 63.495754 -19.673336 +MYT Mayotte 45.039163 -12.992500 45.293345 -12.662500 +REU Reunion 55.220554 -21.373891 55.853054 -20.856527 +SYC Seychelles 46.205691 -9.463055 55.540554 -4.551664 +CXR Christmas I. 105.629000 -10.510973 105.751900 -10.384082 +CCK Cocos Is. 96.817491 -12.199446 96.864845 -12.130418 +IDN Indonesia 95.210945 -10.929655 141.007018 5.913473 +TLS Timor Leste 124.046100 -9.463627 127.308591 -8.140000 +AUS Australia 112.907209 -54.753891 158.960372 -10.135691 +NRU Nauru 166.904418 -0.552218 166.957045 -0.493336 +NCL New Caledonia 163.982745 -22.673891 168.130509 -20.087918 +NFK Norfolk I. 167.910945 -29.081109 167.998872 -29.000555 +PNG Papua New Guinea 140.858854 -11.642500 155.966845 -1.355282 +SLB Solomon Is. 155.671300 -11.845836 166.931836 -6.605518 +TUV Tuvalu 176.295254 -8.561291 179.232281 -6.089446 +VUT Vanuatu 166.521636 -20.254173 169.893863 -13.707218 diff --git a/modules/spatial-lucene/src/test/resources/data/countries-poly.txt b/modules/spatial-lucene/src/test/resources/data/countries-poly.txt new file mode 100644 index 00000000000..8192df24332 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/data/countries-poly.txt @@ -0,0 +1,249 @@ +#id name shape +FLK Falkland Is. MULTIPOLYGON (((-59.348063887634126 -52.34305496492924, -59.37944588766335 -52.32778196491501, -59.57444588784496 -52.21528196481024, -59.71611788797689 -52.11737296471905, -59.56667288783771 -51.91749996453291, -59.51805488779243 -51.87528196449359, -59.2883358875785 -51.746944964374066, -59.221254887516025 -51.71709096434626, -59.13306388743389 -51.69444496432517, -59.055554887361694 -51.691672964322585, -59.03087288733872 -51.7643819643903, -59.04139088734851 -51.81520896443764, -59.00083588731074 -51.8100089644328, -58.99472688730505 -51.80667296442969, -58.9826458872938 -51.79534496441914, -59.02389988733222 -51.67694496430887, -59.07833588738292 -51.631954964266974, -59.168263887466665 -51.585281964223505, -59.10860888741111 -51.513890964157014, -59.08416388738834 -51.53722696417875, -59.06986388737502 -51.557363964197506, -59.039308887346564 -51.58396396422228, -59.01430888732328 -51.575835964214704, -58.989445887300135 -51.50417296414796, -59.0461088873529 -51.47889096412442, -59.074726887379555 -51.469863964116016, -59.08472688738887 -51.41166396406181, -58.99110888730168 -51.40555496405612, -58.868754887187734 -51.37007296402307, -58.88430888720221 -51.33083596398653, -58.84861788716897 -51.291390963949794, -58.75403588708089 -51.32639096398239, -58.69667288702746 -51.336672963991965, -58.614508886950944 -51.3294089639852, -58.57972688691855 -51.30944496396661, -58.5444458868857 -51.30569996396312, -58.4673638868139 -51.307363963964676, -58.41250888676282 -51.32340896397962, -58.34361788669865 -51.36903596402211, -58.32459088668094 -51.416081964065924, -58.36194588671573 -51.44445496409235, -58.44389088679205 -51.45361796410088, -58.45917288680627 -51.43020896407908, -58.47597288682192 -51.39999996405095, -58.49610888684067 -51.39631796404752, -58.55028188689113 -51.43361796408225, -58.51833588686138 -51.47610896412183, -58.49889088684327 -51.50028196414434, -58.420563886770324 -51.556672964196856, -58.36249988671625 -51.567217964206684, -58.33583588669141 -51.56667296420617, -58.28167288664096 -51.606808964243555, -58.241390886603455 -51.65014496428391, -58.21743588658114 -51.65069996428443, -58.18278188654887 -51.60917296424575, -58.188899886554566 -51.585281964223505, -58.2572268866182 -51.53055496417254, -58.31409988667117 -51.50041796414447, -58.345554886700455 -51.509099964152554, -58.27479988663457 -51.413754964063756, -58.25028188661173 -51.40097296405185, -58.21736388658107 -51.39528196404655, -57.94445488632691 -51.371808964024694, -57.91541788629986 -51.37528196402793, -57.89680888628253 -51.3841729640362, -57.873890886261194 -51.4016729640525, -57.768054886162616 -51.50403596414784, -57.77291788616715 -51.54375496418483, -57.81389988620532 -51.54972696419039, -57.87861788626559 -51.54610896418702, -57.90472688628991 -51.543335964184436, -57.93028188631371 -51.539999964181334, -57.95360888633543 -51.53486396417655, -57.9794458863595 -51.52389096416633, -58.00417288638252 -51.50778196415133, -58.03541788641162 -51.50209096414603, -58.138963886508066 -51.54986396419052, -58.109308886480434 -51.570563964209796, -58.039235886415184 -51.59014496422803, -58.0087548863868 -51.59319996423088, -57.983545886363316 -51.58805496422609, -57.87694588626404 -51.60000896423722, -57.79764588619018 -51.61180896424821, -57.77528188616935 -51.621735964257454, -57.733199886130166 -51.69444496432517, -57.83444588622446 -51.723617964352336, -57.973890886354326 -51.74860896437561, -58.0324998864089 -51.7575089643839, -58.1119458864829 -51.76333596438933, -58.19778188656284 -51.761944964388036, -58.249172886610694 -51.7573999643838, -58.21389088657784 -51.78110896440588, -58.17361788654033 -51.796672964420374, -58.200008886564916 -51.793890964417784, -58.24680888660849 -51.79333596441727, -58.35833588671237 -51.82666396444831, -58.33778188669322 -51.83278196445401, -58.31514588667214 -51.83444496445556, -58.28528188664433 -51.82722696444883, -58.234726886597244 -51.83278196445401, -58.39291788674457 -51.89583596451273, -58.4199998867698 -51.90069996451726, -58.60639088694339 -51.90028196451687, -58.76812688709401 -51.89125496450846, -58.88945488720701 -51.84472696446513, -58.90917288722537 -51.83583596445685, -58.92347288723869 -51.820281964442366, -58.935554887249936 -51.80125496442464, -58.96243588727498 -51.81764496443991, -58.97382688728558 -51.85146396447141, -58.926672887241665 -51.87806396449618, -58.82389088714595 -51.91528196453084, -58.720626887049775 -51.94784496456116, -58.63396388696907 -51.96451796457669, -58.60389088694106 -52.001399964611046, -58.64694588698116 -52.067217964672345, -58.6802818870122 -52.090835964694335, -58.734726887062905 -52.046672964653204, -58.78791788711244 -52.03417296464156, -58.82500888714699 -52.047226964653724, -58.856526887176344 -52.0688909646739, -58.918890887234426 -52.099999964702874, -58.981108887292365 -52.06958196467454, -59.03333588734101 -52.02444496463251, -59.14236388744254 -51.985281964596034, -59.251672887544345 -51.99110896460146, -59.29430888758405 -52.0097269646188, -59.279654887570416 -52.02493596463297, -59.24444588753762 -52.01944496462785, -59.21959088751447 -52.0234729646316, -59.19180888748859 -52.029444964637165, -59.12222688742379 -52.063335964668724, -59.03625488734373 -52.1408359647409, -59.05069988735718 -52.217499964812305, -59.0720908873771 -52.231535964825376, -59.19389088749054 -52.206672964802216, -59.24083588753426 -52.18639096478333, -59.29249988758238 -52.157499964756425, -59.37951788766341 -52.11923596472079, -59.44979088772887 -52.1467359647464, -59.428408887708954 -52.21389096480894, -59.38444588766801 -52.22722696482136, -59.343472887629844 -52.25215496484458, -59.33805488762479 -52.324444964911905, -59.348063887634126 -52.34305496492924)), ((-60.34528188856285 -51.86083596448013, -60.310835888530775 -51.81139096443408, -60.25749988848111 -51.77486396440007, -60.222781888448765 -51.7877819644121, -60.18284588841158 -51.75785496438422, -60.178481888407504 -51.71222696434173, -60.201117888428584 -51.70333596433345, -60.22749988845317 -51.70028196433061, -60.35610888857293 -51.711317964340886, -60.38556388860037 -51.744726964372, -60.445281888655984 -51.76249996438855, -60.5561178887592 -51.77555496440071, -60.63437288883209 -51.72499996435363, -60.638408888835855 -51.67972696431146, -60.61389088881302 -51.671108964303436, -60.57722688877887 -51.68528196431664, -60.55722688876024 -51.69306396432388, -60.52472688872997 -51.69944496432983, -60.48861788869634 -51.702781964332935, -60.45722688866711 -51.70222696433242, -60.43625488864758 -51.697090964327636, -60.39939088861324 -51.67999996431172, -60.36472688858096 -51.66749996430008, -60.34389088856156 -51.66528196429801, -60.248890888473085 -51.665554964298266, -60.163608888393654 -51.67111796430344, -60.29444588851551 -51.59861796423592, -60.40444588861796 -51.55139096419194, -60.390626888605084 -51.4922909641369, -60.40391788861746 -51.46865496411488, -60.448126888658635 -51.44507296409292, -60.50555488871211 -51.43652696408496, -60.55500888875818 -51.437435964085815, -60.62201788882058 -51.41152696406168, -60.643617888840694 -51.358054964011885, -60.60694588880655 -51.34861796400309, -60.48360888869168 -51.38528196403724, -60.39744588861143 -51.42349996407283, -60.333617888551984 -51.45555496410269, -60.3133358885331 -51.46333596410993, -60.25583588847955 -51.48111796412649, -60.22264588844864 -51.486672964131664, -60.12722688835977 -51.49472696413917, -59.992363888234166 -51.46562696411207, -60.04291788828125 -51.45069996409816, -60.0624998882995 -51.42083596407035, -60.023199888262894 -51.38125496403349, -59.89417288814272 -51.37236396402521, -59.87028188812047 -51.38110896403335, -59.825835888079084 -51.40722696405768, -59.82389088807727 -51.43322696408189, -59.777781888034326 -51.44694496409467, -59.750835888009235 -51.44917296409674, -59.5136178877883 -51.46194496410864, -59.45861788773708 -51.45806396410502, -59.39535488767817 -51.43104496407986, -59.41667288769801 -51.41417296406414, -59.442154887721756 -51.40479096405541, -59.44889088772803 -51.35833596401214, -59.399799887682306 -51.33764496399287, -59.21167288750709 -51.40819996405858, -59.39833588768094 -51.60264496423967, -59.431945887712246 -51.62333596425894, -59.454235887733006 -51.62104496425681, -59.57778188784806 -51.68833596431948, -59.67361788793731 -51.771663964397085, -59.83167288808451 -51.8933359645104, -59.93194588817791 -51.968608964580504, -59.953054888197556 -51.98306396459397, -60.06486388830169 -51.940563964554386, -60.18999988841824 -51.97833596458956, -60.27250888849508 -52.04361796465036, -60.26451788848763 -52.07089996467577, -60.280554888502564 -52.09611796469925, -60.31444588853414 -52.1294449647303, -60.368054888584055 -52.15917296475798, -60.598617888798785 -52.24222696483533, -60.62458188882297 -52.243199964836236, -60.657363888853496 -52.22778196482188, -60.73528188892607 -52.17778196477531, -60.86278188904481 -52.119444964720984, -60.98083588915476 -52.06195496466744, -60.91111788908982 -52.03110896463871, -60.82020888900516 -52.033754964641176, -60.75041788894016 -52.00659996461589, -60.813408888998836 -51.99264496460289, -60.84403588902735 -51.9619449645743, -60.76611788895478 -51.95583596456861, -60.70722688889994 -51.96167296457404, -60.67583588887071 -51.968890964580766, -60.64110888883836 -51.975008964586465, -60.53389088873851 -51.97749996458879, -60.45972688866944 -51.97083596458258, -60.43972688865081 -51.96208196457442, -60.40649988861986 -51.92409996453905, -60.42444588863658 -51.911944964527734, -60.44944588865987 -51.88305496450083, -60.45403588866414 -51.80583596442891, -60.44034588865139 -51.782844964407495, -60.38125488859636 -51.76653596439231, -60.363199888579544 -51.8064639644295, -60.37610888859156 -51.83459096445569, -60.34528188856285 -51.86083596448013)), ((-60.99305488916613 -51.96583596457792, -61.02944588920003 -51.94722696456059, -61.112154889277065 -51.89541796451234, -61.14805488931049 -51.84639096446668, -61.13916388930221 -51.835281964456335, -61.12264588928683 -51.821390964443395, -61.01306388918478 -51.779726964404595, -60.99917288917183 -51.77847296440343, -60.96805488914285 -51.78110896440588, -60.938545889115375 -51.80680896442982, -60.945554889121894 -51.81917296444133, -60.95667288913225 -51.826117964447796, -60.994172889167174 -51.83861796445944, -61.01389088918555 -51.84806396446824, -61.03076388920125 -51.86590896448486, -61.01639988918788 -51.869726964488414, -60.97278188914726 -51.86028196447962, -60.94944588912553 -51.853335964473146, -60.92694588910457 -51.84528196446565, -60.9072268890862 -51.836390964457365, -60.89083588907094 -51.825835964447535, -60.87528188905645 -51.83999996446073, -60.86847288905011 -51.906108964522296, -60.88110888906188 -51.93444496454869, -60.91222688909086 -51.94389096455748, -60.96805488914285 -51.95972696457223, -60.99305488916613 -51.96583596457792)), ((-60.28526388850696 -51.37564496402826, -60.27944588850154 -51.36361796401706, -60.28917288851059 -51.28583596394462, -60.299172888519905 -51.274444963934016, -60.29097288851227 -51.26652696392664, -60.273199888495725 -51.26514496392535, -60.07944588831528 -51.30083596395859, -60.06806388830468 -51.3074999639648, -60.0483358882863 -51.33333596398886, -60.05278188829044 -51.34667296400128, -60.11360888834709 -51.40680896405729, -60.24986388847398 -51.403199964053925, -60.268335888491194 -51.39805496404914, -60.285135888506844 -51.38403596403608, -60.28526388850696 -51.37564496402826)), ((-59.791390888047005 -51.24945496391074, -59.73194588799164 -51.2530639639141, -59.58361788785349 -51.25750896391824, -59.48319988775998 -51.26389096392418, -59.47306388775054 -51.26778196392781, -59.45083588772984 -51.30555496396299, -59.44555488772491 -51.320281963976704, -59.467781887745616 -51.335281963990674, -59.50833588778339 -51.33749996399274, -59.53833588781133 -51.33749996399274, -59.55749988782918 -51.336672963991965, -59.57361788784418 -51.33361796398912, -59.802363888057215 -51.27459096393415, -59.81110888806536 -51.26972696392962, -59.80514588805981 -51.25499996391591, -59.791390888047005 -51.24945496391074))) +GUF French Guiana MULTIPOLYGON (((-54.60378188321566 2.3291910859882705, -54.499172883118234 2.3650000860216096, -54.420563883045034 2.434718086086548, -54.365908882994134 2.49660008614417, -54.35195488298113 2.5238910861695985, -54.32180888295305 2.5984730862390535, -54.31513588294685 2.629164086267636, -54.25695488289266 2.7188910863512064, -54.222917882860955 2.755554086385345, -54.20459088284389 2.775000086403452, -54.19528188283522 2.796245086423241, -54.16083588280314 2.9536090865697986, -54.176117882817366 3.043891086653886, -54.19574588283565 3.096200086702595, -54.2084728828475 3.124309086728772, -54.206117882845305 3.14528208674831, -54.187226882827716 3.1948640867944818, -54.11875488276395 3.27778208687171, -54.09445488274132 3.2950000868877396, -54.07110888271957 3.3127820869043063, -54.00110888265438 3.4483360870305546, -53.986117882640414 3.601527087173224, -53.99778188265128 3.626945087196887, -54.12764588277223 3.788609087347453, -54.14639088278969 3.7977820873559978, -54.18868188282907 3.808745087366205, -54.29028188292369 3.9338910874827633, -54.36076388298933 4.042427087583846, -54.365008882993294 4.163609087696699, -54.39389088302019 4.237218087765257, -54.43139988305512 4.369164087888137, -54.44023588306335 4.410645087926767, -54.45180888307412 4.512364088021499, -54.442917883065846 4.530691088038566, -54.42326388304754 4.5643090880698765, -54.42209088304645 4.601527088104547, -54.439726883062875 4.669164088167534, -54.47333588309418 4.734582088228464, -54.47778188309832 4.7541640882466965, -54.47610888309676 4.867773088352507, -54.45528188307736 5.004027088479404, -54.448063883070645 5.0241640884981535, -54.4086178830339 5.08055408855067, -54.37889088300622 5.112218088580164, -54.347781882977245 5.148336088613803, -54.317326882948876 5.208627088669942, -54.28348188291736 5.254864088713006, -54.244999882881515 5.2850000887410715, -54.19333588283341 5.315273088769274, -54.17069988281233 5.342218088794368, -54.16668188280859 5.347400088799191, -54.1398638827836 5.357782088808861, -54.091663882738715 5.3919450888406715, -54.06959088271816 5.4180540888649915, -54.058199882707555 5.437364088882973, -54.006735882659626 5.5447910889830325, -54.003890882656975 5.575691089011798, -54.0111178826637 5.605973089040006, -54.00569988265866 5.641527089073122, -53.99222688264611 5.673054089102479, -53.981672882636275 5.690554089118777, -53.93972688259721 5.7447180891692255, -53.91139088257083 5.750282089174405, -53.858608882521665 5.755418089179187, -53.7508358824213 5.731391089156816, -53.63667288231497 5.673054089102479, -53.52236388220851 5.60471808903884, -53.49917288218691 5.58028208901608, -53.49433588218241 5.572345089008692, -53.48360888217242 5.56805408900469, -53.40833588210232 5.548891088986849, -53.30278188200401 5.52305408896278, -53.18639088189562 5.499164088940532, -53.084445881800676 5.483336088925796, -52.97319988169707 5.473054088916214, -52.93778188166408 5.458336088902513, -52.88652688161635 5.420282088867069, -52.799726881535506 5.341945088794105, -52.78750888152413 5.321945088775479, -52.736390881476524 5.260554088718308, -52.611117881359846 5.129445088596199, -52.56750888131924 5.096664088565674, -52.42222688118393 4.99250008846866, -52.330699881098695 4.948891088428056, -52.28972688106053 4.938400088418277, -52.06444588085073 4.733891088227821, -52.02347288081256 4.685691088182921, -51.99694588078785 4.6430540881432165, -51.985281880776995 4.613609088115794, -51.97805488077026 4.586945088090957, -51.95625488074995 4.492364088002873, -51.950835880744904 4.456664087969628, -51.950835880744904 4.423891087939111, -51.96041788075385 4.400136087916977, -52.001254880791876 4.368891087887889, -52.029035880817744 4.352364087872488, -52.04069988082861 4.334582087855935, -51.99194588078319 4.348191087868599, -51.951181880745224 4.372636087891365, -51.92819988072384 4.400836087917639, -51.923617880719576 4.4270820879420825, -51.92639088072215 4.465282087977656, -51.929308880724875 4.486809087997699, -51.931399880726815 4.529164088037149, -51.931399880726815 4.570000088075176, -51.92444588072033 4.620973088122653, -51.91555488071205 4.646527088146456, -51.900008880697584 4.66180908816068, -51.8615998806618 4.659309088158352, -51.794445880599255 4.605554088108292, -51.76701788057372 4.5376360880450335, -51.75917288056641 4.500282088010252, -51.75639088056383 4.477218087988774, -51.75249988056021 4.455282087968342, -51.74417288055244 4.4211090879365145, -51.71389088052425 4.3129180878357545, -51.70249988051364 4.287082087811697, -51.6744458804875 4.253336087780269, -51.65569988047005 4.225418087754264, -51.648472880463316 4.200282087730855, -51.64805488046292 4.167218087700064, -51.65222688046683 4.1372180876721245, -51.66104588047503 4.081109087619865, -51.6744458804875 4.049445087590371, -51.68406388049647 4.034164087576144, -51.70417288051519 4.026109087568642, -51.728335880537685 4.01583608755908, -51.7538908805615 4.000554087544842, -51.77180888057819 3.9834730875289353, -51.78361788058919 3.961109087508106, -51.79389088059875 3.916664087466714, -51.81232688061593 3.876818087429612, -51.906390880703526 3.7908360873495326, -51.927081880722795 3.7769450873365855, -51.98104588077305 3.7000000872649252, -51.9900088807814 3.657500087225344, -51.995835880786814 3.6258360871958644, -52.1002818808841 3.448891087031072, -52.16528188094463 3.342218086931723, -52.226745881001875 3.253054086848678, -52.24965488102322 3.2437450868400077, -52.27360888104552 3.2410450868375023, -52.34493588111195 3.157400086759594, -52.353054881119505 3.1316640867356256, -52.34486388111188 3.0884730866954015, -52.35195488111849 3.0400000866502523, -52.37917288114383 2.9741640865889423, -52.40861788117125 2.9222180865405676, -52.46417288122299 2.8133360864391648, -52.519726881274735 2.697782086331543, -52.55278188130552 2.6212450862602594, -52.539863881293485 2.586391086227806, -52.54222688129569 2.565554086208394, -52.563754881315745 2.522082086167913, -52.59445488134433 2.4738910861230323, -52.67562688141993 2.3741640860301487, -52.78945488152594 2.3033360859641903, -52.88278188161286 2.22471808589097, -52.89646388162561 2.2068090858742835, -52.95472688167986 2.176182085845767, -52.99430888171672 2.175691085845301, -53.054863881773116 2.1869450858557826, -53.06959088178684 2.2030540858707894, -53.087363881803384 2.2194450858860506, -53.11180888182615 2.222500085888896, -53.196108881904664 2.21360908588062, -53.23917288194477 2.2083360858757146, -53.2261088819326 2.26444508592796, -53.296535881998196 2.3190090859787773, -53.319863882019916 2.3479820860057714, -53.340563882039206 2.3496540860073196, -53.34833588204644 2.3227090859822255, -53.45861788214914 2.2575000859214924, -53.52778188221356 2.249509085914056, -53.7016638823755 2.3102820859706554, -53.72153588239401 2.3417360859999548, -53.74610888241689 2.3709730860271776, -53.77680888244548 2.3645820860212297, -53.79944588246657 2.3523640860098425, -53.91028188256979 2.2772180859398645, -53.92806388258636 2.2527820859171044, -53.93263588259062 2.2280540858940725, -54.10965488275548 2.113473085787362, -54.32055488295188 2.1615270858321196, -54.4646548830861 2.211736085878883, -54.51861788313634 2.2575000859214924, -54.527226883144365 2.2893090859511176, -54.541326883157495 2.3152090859752406, -54.57389088318783 2.3252820859846253, -54.59361788320619 2.329718085988759, -54.60378188321566 2.3291910859882705))) +GUY Guyana MULTIPOLYGON (((-58.1726178865394 6.812218090163412, -58.154935886522935 6.828191090178279, -58.03889088641486 6.815554090166515, -57.98639088636597 6.790554090143232, -57.966672886347595 6.775418090129136, -57.94333588632587 6.750554090105979, -57.92778188631138 6.731664090088387, -57.91445488629897 6.711109090069243, -57.897917886283565 6.689864090049454, -57.88250888626922 6.674164090034836, -57.757781886153055 6.570000089937821, -57.64069988604402 6.485136089858784, -57.5943088860008 6.4345820898117125, -57.5213908859329 6.290345089677373, -57.519190885930854 6.270764089659139, -57.498617885911685 6.338682089722397, -57.469717885884776 6.34027308972388, -57.363617885785956 6.290000089677051, -57.33667288576086 6.2747180896628265, -57.261117885690496 6.2113910896038504, -57.22028188565247 6.169164089564518, -57.194308885628274 6.1393090895367095, -57.17778188561289 6.108336089507873, -57.16236388559852 6.056945089460001, -57.13576388557375 5.954100089364232, -57.17528188561056 5.637500089069363, -57.182781885617544 5.600691089035081, -57.195563885629454 5.568891089005476, -57.24850888567876 5.486109088928373, -57.27159988570027 5.384864088834078, -57.2994458857262 5.359718088810666, -57.32444588574948 5.303609088758407, -57.282781885710676 5.226391088686498, -57.26222688569153 5.22166408868209, -57.23520888566637 5.259945088717743, -57.20750888564058 5.223609088683901, -57.19104588562524 5.172009088635846, -57.231526885662944 5.146454088612046, -57.25055488568066 5.172636088636423, -57.27209088570072 5.177082088640574, -57.292363885719595 5.166245088630475, -57.321945885747155 5.075973088546405, -57.32722688575207 5.026109088499965, -57.41709088583576 4.989445088465814, -57.4736178858884 4.989164088465557, -57.61098188601633 4.992218088468405, -57.63417288603793 5.000282088475913, -57.67625488607713 5.011527088486389, -57.84111788623066 4.927782088408392, -57.901390886286805 4.855554088341123, -57.92333588630724 4.821945088309818, -57.92486388630866 4.796391088286029, -57.909026886293915 4.777782088268694, -57.88778188627413 4.7683360882599, -57.84035488622996 4.669027088167411, -57.8469458862361 4.6288910881300325, -57.902781886288096 4.503609088013349, -57.94861788633078 4.349164087869511, -57.9491728863313 4.317218087839763, -57.954517886336276 4.288336087812866, -58.00278188638123 4.239718087767585, -58.039172886415116 4.211391087741205, -58.0618088864362 4.180136087712086, -58.071399886445136 4.15569108768932, -58.04375488641939 4.001527087545753, -58.01639988639391 3.9636090875104344, -57.96889088634967 3.9291640874783553, -57.95041788633246 3.913191087463474, -57.93194588631526 3.8906910874425193, -57.876672886263776 3.8091640873665966, -57.86749988625523 3.7908360873495326, -57.85945488624775 3.771664087331672, -57.84930888623829 3.7388910873011554, -57.84597288623519 3.692636087258066, -57.83848188622821 3.6693090872363427, -57.8166728862079 3.6502820872186277, -57.76056388615565 3.624164087194302, -57.740835886137276 3.613745087184597, -57.66861788607001 3.5383360871143736, -57.65444588605682 3.518609087095996, -57.63840888604189 3.457009087038628, -57.65778188605992 3.4138910869984755, -57.642226886045435 3.3563910869449245, -57.61041788601581 3.3600000869482756, -57.53055488594143 3.3463910869356113, -57.42945488584728 3.3472180869363797, -57.304172885730594 3.380418086967296, -57.28354588571139 3.318682086909803, -57.29249988571972 3.2673640868620026, -57.28999988571739 3.181391086781943, -57.28361788571145 3.140973086744296, -57.255008885684816 3.103609086709497, -57.22028188565247 3.0650000866735354, -57.210281885643155 3.035836086646384, -57.207217885640304 3.004236086616956, -57.213335885646 2.878891086500218, -57.20083588563436 2.8228450864480124, -57.11688188555617 2.757191086386868, -56.94472688539584 2.4830540861315598, -56.917781885370744 2.428054086080337, -56.853890885311245 2.283336085945564, -56.810563885270895 2.1933360858617448, -56.77499988523776 2.1408360858128503, -56.68209088515124 2.0267640857066027, -56.64611788511773 2.028054085707808, -56.579726885055905 2.0273640857071626, -56.55597288503378 2.020554085700823, -56.47736388496057 1.9620820856463723, -56.470635884954305 1.944500085629997, -56.52555488500545 1.9225000856094994, -56.57791788505422 1.9216640856087253, -56.59499988507012 1.9322180856185582, -56.628199885101054 1.9394450856252803, -56.73500888520053 1.9141000856016746, -56.75209088521643 1.896945085585699, -56.77069088523376 1.8756270855658528, -56.87389088532987 1.8916640855807856, -57.00389088545094 1.9229180856098935, -57.050835885494664 1.9522180856371847, -57.06083588550398 1.984164085666933, -57.07423588551646 2.015764085696361, -57.10020888554064 2.0227820857029, -57.163063885599186 1.9966640856785745, -57.199172885632805 1.9711090856547742, -57.235345885666504 1.9497910856349279, -57.27667288570498 1.979509085662599, -57.298190885725035 1.9819450856648615, -57.33194588575647 1.9722180856558111, -57.42549088584359 1.9013910855898501, -57.42805488584597 1.8712450855617675, -57.450908885867264 1.8111090855057626, -57.512363885924486 1.730836085431008, -57.52806388593912 1.7158360854170382, -57.55930888596821 1.6997180854020257, -57.63333588603716 1.6927820853955637, -57.65361788605604 1.6966640853991777, -57.68749988608759 1.707500085409265, -57.72249988612019 1.7175000854185782, -57.75944588615461 1.717845085418901, -57.87610888626325 1.6650000853696838, -57.97249988635302 1.6134730853217008, -57.98291788636273 1.5723640852834109, -58.00715488638531 1.5156910852306282, -58.127781886497644 1.5177820852325823, -58.26833588662855 1.570554085281728, -58.29722688665545 1.5827820852931183, -58.387290886739336 1.4778450851953835, -58.50229088684644 1.454673085173809, -58.46930888681571 1.3584730850842135, -58.46764588681417 1.3376360850648013, -58.47514588682115 1.3140270850428237, -58.51961788686258 1.2696180850014542, -58.57249988691183 1.2752820850067366, -58.69299088702404 1.2847180850155269, -58.70889088703885 1.2629180849952206, -58.722917887051906 1.2323640849667612, -58.751945887078946 1.209582084945552, -58.810699887133666 1.1868730849244002, -58.8363998871576 1.1902820849275741, -58.86959088718851 1.2050000849412754, -58.89840888721535 1.2311090849655955, -58.89736388721437 1.261836084994215, -58.92486388723998 1.2993090850291082, -58.95750888727039 1.3144450850432037, -58.97278188728461 1.3197180850481232, -59.104726887407494 1.3447180850714062, -59.24396388753718 1.3865270851103446, -59.41445488769595 1.5633360852750116, -59.48361788776036 1.6505540853562337, -59.50750888778262 1.6875000853906386, -59.6054178878738 1.7194450854203893, -59.64576388791137 1.735136085435002, -59.675281887938866 1.7670820854647644, -59.653617887918685 1.8022180854974863, -59.632472887899 1.8422360855347506, -59.7263178879864 1.854164085545861, -59.74902688800755 1.8613910855525972, -59.75625488801428 1.908891085596835, -59.743617888002504 2.0727820857494663, -59.727017887987046 2.241245085906357, -59.73549088799494 2.2847180859468494, -59.79319988804869 2.297782085959014, -59.84972688810133 2.330554085989533, -59.893263888141874 2.3641000860207697, -59.901672888149704 2.384445086039719, -59.88889088813781 2.407082086060811, -59.89278188814143 2.4544450861049114, -59.925563888171965 2.567782086210471, -59.9541728881986 2.616391086255746, -59.98847288823055 2.688191086322604, -59.98278188822525 2.860282086482883, -59.97889088822163 2.899164086519093, -59.96278188820662 3.025836086637071, -59.949717888194456 3.071945086680003, -59.90472688815255 3.2041640868031465, -59.869726888119956 3.2763910868704187, -59.85611788810728 3.2977820868903365, -59.83569988808827 3.322082086912971, -59.810835888065114 3.3595820869478956, -59.81444588806848 3.498745087077495, -59.831945888084775 3.5241640871011697, -59.786117888042085 3.620554087190939, -59.6655548879298 3.711391087275544, -59.56860888783952 3.8994450874506725, -59.58167288785168 3.9988910875432992, -59.70861788796991 4.17069108770329, -59.722226887982586 4.191391087722579, -59.73110888799086 4.219164087748439, -59.73083588799061 4.293336087817522, -59.675281887938866 4.373336087892028, -59.67444588793809 4.385136087903007, -59.71722688797793 4.414164087930047, -59.79111788804674 4.456109087969111, -59.94180888818708 4.508054088017488, -59.96778188821128 4.501945088011794, -60.045281888283455 4.4940270880044295, -60.13069988836301 4.509718088019042, -60.14847288837956 4.52000008802861, -60.152226888383055 4.5733360880782925, -60.12389088835667 4.596664088100013, -60.09152688832653 4.600691088103758, -60.07209088830842 4.618473088120325, -60.02583588826535 4.707218088202978, -60.02056388826044 4.734445088228327, -60.00583588824672 4.8369450883237874, -59.983063888225516 5.022500088496599, -60.013890888254224 5.11000008857809, -60.080872888316605 5.161509088626062, -60.081945888317605 5.1730540886368175, -60.09833588833287 5.217218088677953, -60.114581888348 5.245691088704461, -60.202363888429744 5.272709088729627, -60.24999988847412 5.2584730887163715, -60.268408888491265 5.235282088694774, -60.317845888537306 5.197636088659706, -60.54639088875015 5.191391088653901, -60.5738268887757 5.197154088659261, -60.597426888797685 5.211945088673033, -60.689445888883384 5.216109088676916, -60.730372888921494 5.2048000886663885, -60.748890888938746 5.222500088682864, -60.781108888968745 5.2583360887162485, -60.86028188904248 5.348054088799799, -61.11610888928074 5.63471808906678, -61.38972688953557 5.940000089351088, -61.37345488952042 5.960973089370626, -61.3378908894873 5.972782089381624, -61.32306388947349 5.992500089399982, -61.282817889436004 6.056336089459435, -61.270281889424325 6.086391089487435, -61.26278188941734 6.107782089507353, -61.160145889321754 6.1825000895769335, -61.1386178893017 6.29916408968559, -61.140008889303004 6.408609089787518, -61.19652688935564 6.533682089904005, -61.20472688936327 6.5779180899452, -61.174445889335075 6.658745090020474, -61.12510888928912 6.714773090072654, -61.05472688922357 6.72889109008581, -61.03597288920611 6.719718090077265, -60.93965488911641 6.724582090081796, -60.89368188907359 6.765000090119429, -60.81611788900135 6.788336090141172, -60.71917288891106 6.759027090113875, -60.69778188889114 6.766664090120983, -60.676390888871225 6.790000090142712, -60.66499988886062 6.80750009015901, -60.63778188883526 6.834927090184564, -60.590835888791545 6.85083609019938, -60.526945888732044 6.87471809022162, -60.498890888705915 6.8877820902337845, -60.463617888673056 6.906664090251368, -60.40833588862158 6.947500090289395, -60.29125488851254 7.056600090391015, -60.28139088850335 7.090000090422109, -60.278054888500236 7.118745090448883, -60.309035888529095 7.143473090471915, -60.33667288855483 7.155282090482913, -60.36049088857702 7.176245090502434, -60.45611788866607 7.195836090520686, -60.50576388871231 7.17270909049914, -60.51499988872092 7.142982090471463, -60.5380638887424 7.124445090454188, -60.61749988881638 7.19444509051938, -60.6308358888288 7.221945090544992, -60.63423588883197 7.254309090575134, -60.61861788881741 7.2840270906028195, -60.595354888795754 7.30610909062338, -60.59139088879206 7.336391090651588, -60.6099998888094 7.381945090694003, -60.66083588885674 7.447218090754802, -60.688263888882275 7.453473090760625, -60.714026888906275 7.500973090804862, -60.71666388890873 7.540000090841204, -60.691108888884926 7.567082090866435, -60.662090888857904 7.566527090865918, -60.58875488878961 7.639309090933693, -60.57458188877641 7.7152090910043825, -60.533335888737994 7.803891091086982, -60.51319988871924 7.818191091100289, -60.31972688853905 7.877500091155525, -60.25754588848115 7.921573091196578, -60.23722688846222 7.946391091219695, -60.12486388835757 8.028327091296006, -60.09360888832846 8.041245091308028, -60.03778188827647 8.037009091304085, -60.0111818882517 8.059236091324792, -59.98701788822919 8.1469820914065, -59.9797268882224 8.174864091432468, -59.94618188819116 8.199991091455871, -59.92222688816885 8.211109091466227, -59.88889088813781 8.218609091473212, -59.83285488808562 8.231527091485248, -59.80305488805786 8.2833360915335, -59.81209088806628 8.306109091554703, -59.88611788813522 8.40083609164293, -59.98111788822369 8.518327091752354, -59.99028188823223 8.535273091768133, -59.95819988820236 8.514027091748346, -59.92930888817544 8.48416409172053, -59.902572888150544 8.445764091684765, -59.88945488813833 8.421664091662322, -59.87250888812255 8.397218091639559, -59.85583588810702 8.379445091622998, -59.83167288808451 8.361664091606443, -59.78625488804222 8.340973091587173, -59.76472688802217 8.349027091594678, -59.77930888803574 8.380973091624426, -59.764208888021685 8.407364091649, -59.6683358879324 8.360000091604888, -59.6508358879161 8.349445091595058, -59.35583588764136 8.173891091431571, -59.15472688745406 8.05639109132214, -59.12930888743038 8.040000091306865, -59.109445887411894 8.018473091286822, -59.09347288739701 7.987009091257519, -59.07583588738059 7.9691640912408985, -58.94389088725771 7.851109091130951, -58.80694588713017 7.730554091018675, -58.76889088709473 7.679718090971335, -58.751399887078435 7.6361090909307165, -58.71736388704673 7.59437309089185, -58.6419458869765 7.569445090868626, -58.48528188683059 7.368609090681588, -58.46854588681501 7.337573090652683, -58.465563886812234 7.135836090464807, -58.46666388681325 7.115000090445392, -58.4815268868271 7.009927090347546, -58.497508886841985 6.989445090328459, -58.51074588685431 6.980254090319903, -58.53709088687884 6.96069109030168, -58.55569988689618 6.937500090280082, -58.56305488690302 6.916391090260433, -58.59403588693188 6.801809090153711, -58.598608886936134 6.774309090128099, -58.60917288694597 6.656664090018538, -58.619090886955206 6.489491089862852, -58.637090886971976 6.421945089799934, -58.600726886938105 6.413945089792492, -58.59333588693123 6.420000089798123, -58.58132688692004 6.464973089840015, -58.574026886913245 6.509864089881816, -58.57278188691208 6.532500089902896, -58.576117886915185 6.562218089930582, -58.57319988691248 6.602636089968215, -58.54972688689061 6.6782640900386525, -58.47944588682516 6.794445090146851, -58.45695488680421 6.827782090177905, -58.41972688676954 6.870282090217486, -58.39833588674962 6.879309090225888, -58.3165998866735 6.894236090239801, -58.25569988661678 6.876109090222911, -58.208617886572924 6.843054090192126, -58.1726178865394 6.812218090163412))) +PCN Pitcairn Is. MULTIPOLYGON (((-128.33221795188064 -24.32726393883749, -128.3269359518757 -24.326117938836433, -128.31042695186034 -24.325835938836164, -128.30168195185217 -24.334445938844183, -128.29388195184492 -24.352499938861, -128.2866819518382 -24.38639093889256, -128.2861179518377 -24.40166393890678, -128.29111795184235 -24.411390938915844, -128.30156395185207 -24.411672938916112, -128.3130819518628 -24.404717938909627, -128.3278179518765 -24.390554938896443, -128.34308195189075 -24.367217938874703, -128.34695495189436 -24.353617938862044, -128.34600895189345 -24.33819993884768, -128.336945951885 -24.329163938839258, -128.33221795188064 -24.32726393883749)), ((-130.08139095350967 -25.082226939540604, -130.09068195351833 -25.080699939539187, -130.10262695352944 -25.074445939533362, -130.1050549535317 -25.061463939521275, -130.0905639535182 -25.055699939515904, -130.06384595349334 -25.06826393952761, -130.0769359535055 -25.079726939538276, -130.08139095350967 -25.082226939540604))) +SGS South Georgia & the South Sandwich Is. MULTIPOLYGON (((-36.99139086681285 -54.35056396679887, -36.99972686682062 -54.348617966797065, -37.05944586687622 -54.329999966779724, -37.08375486689886 -54.31881796676931, -37.08222686689746 -54.29389096674609, -37.146117866956956 -54.26139096671582, -37.241808867046075 -54.247363966702764, -37.266254867068824 -54.25875496671337, -37.365835867161564 -54.271944966725655, -37.408335867201146 -54.26493596671913, -37.403472867196626 -54.18500896664469, -37.367226867162884 -54.17556396663589, -37.33555486713337 -54.17361796663408, -37.25208186705564 -54.15229096661422, -37.48986386727708 -54.12944496659294, -37.56118186734349 -54.14607296660843, -37.52944586731394 -54.16250896662373, -37.56222686734449 -54.170563966631235, -37.58944586736982 -54.17528196663563, -37.650417867426626 -54.18167296664158, -37.68528186745908 -54.17528196663563, -37.71917286749064 -54.140563966603295, -37.71757286748917 -54.09416396656008, -37.676390867450806 -54.074717966541975, -37.653826867429785 -54.072154966539586, -37.61979086739808 -54.04611796651534, -37.69221786746553 -54.034999966504984, -37.89778186765699 -54.04722696651637, -38.02257286777322 -54.054726966523354, -38.0237548677743 -54.00743596647931, -37.93361786769037 -53.99222696646515, -37.91028186766863 -53.98972696646282, -37.74721786751675 -53.99499996646773, -37.49499986728188 -54.01056396648222, -37.46139986725058 -54.036117966506026, -37.37389086716908 -54.04805496651714, -37.27028186707258 -54.050281966519215, -37.162781866972466 -54.03139096650162, -37.02778186684674 -54.05611796652465, -36.80944586664339 -54.08833596655465, -36.65639086650086 -54.107781966572766, -36.62375486647045 -54.120699966584795, -36.584163866433585 -54.20889096666693, -36.66757286651128 -54.24409996669972, -36.662645866506665 -54.27514496672863, -36.62667286647317 -54.28361796673653, -36.604026866452074 -54.26611796672023, -36.55680886640812 -54.245563966701084, -36.517081866371115 -54.23445496669074, -36.47889086633555 -54.23889096669487, -36.47263586632971 -54.26513596671931, -36.456117866314344 -54.3275089667774, -36.36999986623414 -54.35499996680301, -36.33667286620309 -54.35229096680048, -36.362090866226765 -54.293054966745316, -36.38368186624686 -54.27826396673154, -36.394799866257216 -54.24917296670444, -36.290208866159816 -54.26583596671996, -36.257226866129116 -54.28666396673936, -36.22917286610297 -54.33778196678697, -36.25610886612807 -54.36847296681555, -36.15999986603856 -54.44472696688657, -36.09680886597971 -54.54959096698423, -36.06389086594905 -54.57153596700467, -35.979726865870674 -54.57889096701152, -35.93471786582873 -54.62306396705266, -35.933890865827976 -54.700563967124836, -35.917363865812575 -54.715144967138414, -35.85667286575605 -54.74305496716441, -35.8280548657294 -54.75083596717165, -35.79396386569766 -54.76020896718038, -35.82778186572915 -54.79278196721072, -35.914172865809604 -54.81347296722999, -35.95944586585176 -54.81110896722779, -35.979726865870674 -54.80917296722598, -36.0006998658902 -54.80083596721822, -36.02528186591309 -54.787781967206065, -36.04583586593222 -54.77889096719778, -36.074717865959116 -54.768054967187695, -36.095308865978296 -54.76993596718945, -36.02111786590922 -54.81721796723348, -35.98972686587999 -54.8305549672459, -35.96430886585631 -54.83167296724694, -35.923617865818414 -54.8504179672644, -35.96139986585359 -54.86944496728212, -36.07639086596069 -54.890281967301526, -36.10472686598709 -54.88923596730055, -36.131463866011984 -54.8688909672816, -36.19917286607503 -54.80917296722598, -36.29749986616662 -54.733335967155355, -36.30250886617128 -54.71305496713647, -36.31721786618496 -54.686954967112165, -36.46860886632598 -54.52889096696495, -36.525908866379325 -54.497081966935326, -36.582226866431796 -54.49986396693792, -36.65555486650007 -54.491108966929765, -36.736945866575866 -54.47028196691037, -36.809799866643715 -54.44541796688721, -36.801108866635644 -54.41118196685533, -36.86493586669508 -54.34652696679511, -36.92528186675128 -54.337917966787096, -36.99139086681285 -54.35056396679887)), ((-26.248890856808117 -58.49860897066204, -26.264163856822336 -58.48806397065222, -26.290972856847304 -58.47861797064343, -26.37167285692246 -58.46305497062893, -26.389726856939262 -58.45972697062583, -26.406526856954912 -58.45944497062557, -26.41999985696748 -58.45667297062299, -26.458199857003052 -58.430699970598795, -26.433608856980157 -58.38916397056011, -26.416663856964362 -58.38360897055494, -26.403890856952472 -58.382508970553914, -26.39305485694237 -58.38278197055417, -26.317781856872273 -58.38639097055753, -26.29152685684781 -58.38806397055909, -26.265699856823773 -58.39417297056478, -26.246672856806043 -58.404444970574346, -26.241390856801132 -58.47167297063696, -26.243617856803212 -58.49472697065843, -26.248890856808117 -58.49860897066204))) +SHN St. Helena MULTIPOLYGON (((-5.712972837682543 -15.992863931075476, -5.729163837697627 -16.005490931087238, -5.768472837734237 -16.021945931102564, -5.787217837751683 -16.009163931090654, -5.792781837756877 -15.991108931073839, -5.768890837734631 -15.94736393103311, -5.748608837715722 -15.929163931016149, -5.728890837697378 -15.91389093100193, -5.716390837685736 -15.905281930993908, -5.699517837670015 -15.903754930992491, -5.671390837643827 -15.90944593099779, -5.645281837619507 -15.93999993102625, -5.646390837620544 -15.958335931043322, -5.660417837633588 -15.985690931068802, -5.700417837670841 -16.003754931085624, -5.7105548376802915 -15.996390931078764, -5.712972837682543 -15.992863931075476))) +SUR Suriname MULTIPOLYGON (((-55.12796388370384 5.82217308924136, -55.10444588368195 5.839445089257438, -55.01610888359967 5.850418089267663, -54.946672883535 5.846109089263649, -54.86444588345843 5.855136089272051, -54.88729088347971 5.879545089294794, -54.9688908835557 5.873336089289012, -54.99534588358034 5.865764089281953, -55.10625488368363 5.904582089318112, -55.14472688371946 5.934164089345657, -55.15944588373317 5.9634000893728825, -55.047363883628776 6.001809089408653, -54.97028188355699 5.988054089395845, -54.87694588347007 5.985282089393266, -54.77944588337927 5.982500089390669, -54.70994588331453 5.962436089371991, -54.639163883248614 5.954718089364803, -54.34445488297415 5.906945089320303, -54.29861788293145 5.898054089312026, -54.204726882844014 5.879718089294954, -54.17860888281969 5.871391089287201, -54.02556388267716 5.818609089238038, -53.990208882644225 5.746945089171291, -54.00652688265943 5.721245089147359, -54.04646388269663 5.653536089084298, -54.051535882701344 5.590209089025322, -54.05180888270159 5.527082088966537, -54.067781882716474 5.491527088933424, -54.095835882742605 5.458054088902244, -54.120490882765566 5.431600088877616, -54.142226882785806 5.39527308884378, -54.16668188280859 5.347400088799191, -54.17069988281233 5.342218088794368, -54.19333588283341 5.315273088769274, -54.244999882881515 5.2850000887410715, -54.28348188291736 5.254864088713006, -54.317326882948876 5.208627088669942, -54.347781882977245 5.148336088613803, -54.37889088300622 5.112218088580164, -54.4086178830339 5.08055408855067, -54.448063883070645 5.0241640884981535, -54.45528188307736 5.004027088479404, -54.47610888309676 4.867773088352507, -54.47778188309832 4.7541640882466965, -54.47333588309418 4.734582088228464, -54.439726883062875 4.669164088167534, -54.42209088304645 4.601527088104547, -54.42326388304754 4.5643090880698765, -54.442917883065846 4.530691088038566, -54.45180888307412 4.512364088021499, -54.44023588306335 4.410645087926767, -54.43139988305512 4.369164087888137, -54.39389088302019 4.237218087765257, -54.365008882993294 4.163609087696699, -54.36076388298933 4.042427087583846, -54.29028188292369 3.9338910874827633, -54.18868188282907 3.808745087366205, -54.14639088278969 3.7977820873559978, -54.12764588277223 3.788609087347453, -53.99778188265128 3.626945087196887, -53.986117882640414 3.601527087173224, -54.00110888265438 3.4483360870305546, -54.07110888271957 3.3127820869043063, -54.09445488274132 3.2950000868877396, -54.11875488276395 3.27778208687171, -54.187226882827716 3.1948640867944818, -54.206117882845305 3.14528208674831, -54.2084728828475 3.124309086728772, -54.19574588283565 3.096200086702595, -54.176117882817366 3.043891086653886, -54.16083588280314 2.9536090865697986, -54.19528188283522 2.796245086423241, -54.20459088284389 2.775000086403452, -54.222917882860955 2.755554086385345, -54.25695488289266 2.7188910863512064, -54.31513588294685 2.629164086267636, -54.32180888295305 2.5984730862390535, -54.35195488298113 2.5238910861695985, -54.365908882994134 2.49660008614417, -54.420563883045034 2.434718086086548, -54.499172883118234 2.3650000860216096, -54.60378188321566 2.3291910859882705, -54.63472688324448 2.3200730859797716, -54.687499883293626 2.3255540859848765, -54.709099883313755 2.3879180860429585, -54.69020888329615 2.3995090860537545, -54.68986388329583 2.4516000861022604, -54.75312688335475 2.4706270861199897, -54.77538188337547 2.456845086107151, -54.80375488340191 2.4380540860896502, -54.84749988344264 2.436109086087839, -54.86916388346282 2.44194508609327, -54.96944588355622 2.550554086194424, -55.091945883670306 2.53471808617968, -55.11194588368893 2.527218086172695, -55.50333588405344 2.438891086090436, -55.71368188424934 2.4001360860543315, -55.86409988438943 2.471454086120758, -55.88639088441019 2.49708208614463, -55.91750888443917 2.5206910861666074, -55.94180888446179 2.5305540861757976, -55.96278188448133 2.533054086178126, -55.98249988449969 2.522082086167913, -56.00041788451638 2.4508360861015603, -56.08444588459464 2.3575000860146247, -56.11583588462388 2.2491640859137334, -56.03639088454989 2.208891085876232, -55.90396388442656 2.0477820857261833, -55.90173588442448 1.90104508558953, -55.94264588446258 1.856109085547672, -55.96583588448418 1.8452820855375904, -55.99597288451224 1.8376360855304625, -56.0274998845416 1.8362450855291712, -56.06806388457939 1.8455540855378416, -56.11333588462155 1.863609085554657, -56.201663884703805 1.8916640855807856, -56.326954884820495 1.9252820856120962, -56.426390884913104 1.9341640856203668, -56.470635884954305 1.944500085629997, -56.47736388496057 1.9620820856463723, -56.55597288503378 2.020554085700823, -56.579726885055905 2.0273640857071626, -56.64611788511773 2.028054085707808, -56.68209088515124 2.0267640857066027, -56.77499988523776 2.1408360858128503, -56.810563885270895 2.1933360858617448, -56.853890885311245 2.283336085945564, -56.917781885370744 2.428054086080337, -56.94472688539584 2.4830540861315598, -57.11688188555617 2.757191086386868, -57.20083588563436 2.8228450864480124, -57.213335885646 2.878891086500218, -57.207217885640304 3.004236086616956, -57.210281885643155 3.035836086646384, -57.22028188565247 3.0650000866735354, -57.255008885684816 3.103609086709497, -57.28361788571145 3.140973086744296, -57.28999988571739 3.181391086781943, -57.29249988571972 3.2673640868620026, -57.28354588571139 3.318682086909803, -57.304172885730594 3.380418086967296, -57.42945488584728 3.3472180869363797, -57.53055488594143 3.3463910869356113, -57.61041788601581 3.3600000869482756, -57.642226886045435 3.3563910869449245, -57.65778188605992 3.4138910869984755, -57.63840888604189 3.457009087038628, -57.65444588605682 3.518609087095996, -57.66861788607001 3.5383360871143736, -57.740835886137276 3.613745087184597, -57.76056388615565 3.624164087194302, -57.8166728862079 3.6502820872186277, -57.83848188622821 3.6693090872363427, -57.84597288623519 3.692636087258066, -57.84930888623829 3.7388910873011554, -57.85945488624775 3.771664087331672, -57.86749988625523 3.7908360873495326, -57.876672886263776 3.8091640873665966, -57.93194588631526 3.8906910874425193, -57.95041788633246 3.913191087463474, -57.96889088634967 3.9291640874783553, -58.01639988639391 3.9636090875104344, -58.04375488641939 4.001527087545753, -58.071399886445136 4.15569108768932, -58.0618088864362 4.180136087712086, -58.039172886415116 4.211391087741205, -58.00278188638123 4.239718087767585, -57.954517886336276 4.288336087812866, -57.9491728863313 4.317218087839763, -57.94861788633078 4.349164087869511, -57.902781886288096 4.503609088013349, -57.8469458862361 4.6288910881300325, -57.84035488622996 4.669027088167411, -57.88778188627413 4.7683360882599, -57.909026886293915 4.777782088268694, -57.92486388630866 4.796391088286029, -57.92333588630724 4.821945088309818, -57.901390886286805 4.855554088341123, -57.84111788623066 4.927782088408392, -57.67625488607713 5.011527088486389, -57.63417288603793 5.000282088475913, -57.61098188601633 4.992218088468405, -57.4736178858884 4.989164088465557, -57.41709088583576 4.989445088465814, -57.32722688575207 5.026109088499965, -57.321945885747155 5.075973088546405, -57.292363885719595 5.166245088630475, -57.27209088570072 5.177082088640574, -57.25055488568066 5.172636088636423, -57.231526885662944 5.146454088612046, -57.19104588562524 5.172009088635846, -57.20750888564058 5.223609088683901, -57.23520888566637 5.259945088717743, -57.26222688569153 5.22166408868209, -57.282781885710676 5.226391088686498, -57.32444588574948 5.303609088758407, -57.2994458857262 5.359718088810666, -57.27159988570027 5.384864088834078, -57.24850888567876 5.486109088928373, -57.18430888561896 5.51889108895891, -57.16742688560325 5.541391088979864, -57.13889088557667 5.671664089101185, -57.13597288557395 5.6925000891205855, -57.13249988557071 5.767500089190435, -57.06791788551057 5.941736089352716, -56.992499885440324 5.989445089397137, -56.96444588541421 5.997082089404259, -56.70056388516845 5.965554089374891, -56.60361788507815 5.940500089351559, -56.55445488503237 5.948336089358861, -56.48000888496304 5.945418089356139, -56.26056388475867 5.889164089303748, -56.01778188453255 5.818336089237789, -55.910554884432685 5.778364089200565, -55.89444588441769 5.730273089155773, -55.89860888442156 5.67444508910377, -55.89955488442244 5.671909089101419, -55.885972884409796 5.683054089111792, -55.87778188440217 5.717636089143994, -55.89110888441458 5.775836089198208, -55.922717884444026 5.876073089291552, -55.85583588438173 5.948891089359378, -55.8277818843556 5.958336089368174, -55.76806388429999 5.967218089376445, -55.62028188416235 5.974445089383167, -55.548617884095606 5.977782089386281, -55.4127818839691 5.964164089373597, -55.37722688393599 5.960000089369714, -55.33902688390042 5.950136089360527, -55.266672883833024 5.923609089335827, -55.25389088382113 5.915836089328593, -55.230563883799405 5.898054089312026, -55.174999883747645 5.9072180893205655, -55.11555488369228 5.876982089292397, -55.11402688369087 5.8400000892579556, -55.12796388370384 5.82217308924136))) +TTO Trinidad & Tobago MULTIPOLYGON (((-61.0794458892466 10.824164093899824, -61.075563889242986 10.826109093901636, -61.02541788919628 10.840273093914831, -60.92833588910587 10.838609093913277, -60.90923588908808 10.827009093902475, -60.92305488910094 10.797218093874733, -60.94445488912088 10.762218093842137, -60.96305488913819 10.739164093820662, -60.98722688916071 10.714718093797899, -61.01791788918929 10.698473093782766, -61.03417288920443 10.678191093763871, -61.0454178892149 10.489164093587831, -61.02097288919214 10.392218093497547, -60.99860888917131 10.351600093459723, -61.00444588917675 10.149582093271576, -61.083617889250476 10.102773093227981, -61.10722688927247 10.091945093217888, -61.15222688931438 10.075554093202626, -61.202917889361586 10.069164093196676, -61.405281889550054 10.066945093194605, -61.526672889663104 10.06833609319591, -61.67708188980319 10.076109093203144, -61.7055548898297 10.07889109320574, -61.80611788992336 10.0811090932078, -61.83361788994897 10.071391093198756, -61.858335889972 10.06221809319021, -61.88028188999243 10.042500093171839, -61.90951789001966 10.040345093169833, -61.92159989003092 10.064864093192668, -61.817781889934224 10.127773093251264, -61.6477818897759 10.19721809331594, -61.50409988964209 10.237636093353572, -61.46139088960231 10.274309093387728, -61.4537548895952 10.294164093406224, -61.46305488960385 10.571245093664274, -61.47361788961369 10.597773093688986, -61.49583588963439 10.63527309372391, -61.54625488968135 10.669445093755726, -61.60125488973257 10.684582093769833, -61.62291788975274 10.678891093764534, -61.65778188978521 10.680064093765623, -61.662017889789155 10.708400093792008, -61.60278188973399 10.74221809382351, -61.47999988961965 10.75055409383127, -61.42854588957172 10.753954093834437, -61.384590889530784 10.779718093858435, -61.24249988939846 10.790273093868265, -61.19639988935552 10.789445093867485, -61.17180888933261 10.79910009387649, -61.1433358893061 10.815273093891548, -61.0794458892466 10.824164093899824)), ((-60.79749988898402 11.14166409419552, -60.84493588902819 11.157218094210009, -60.847226889030324 11.176945094228373, -60.756672888945985 11.242218094289171, -60.70083588889399 11.275836094320482, -60.65778188885389 11.301391094344282, -60.5295908887345 11.345554094385406, -60.52083588872635 11.330554094371436, -60.52472688872997 11.273891094318671, -60.53180888873656 11.259027094304827, -60.64180888883901 11.202218094251919, -60.66889088886424 11.198891094248822, -60.68778188888183 11.201945094251656, -60.73875488892931 11.182636094233672, -60.758199888947416 11.171245094223067, -60.79749988898402 11.14166409419552))) +VEN Venezuela MULTIPOLYGON (((-66.3102908941182 10.626018093715288, -66.28309089409287 10.64465409373264, -66.22987289404331 10.640554093728824, -66.0816818939053 10.576664093669322, -66.11972689394072 10.500000093597919, -65.95861789379067 10.356664093464431, -65.93573589376938 10.298300093410077, -65.81445489365642 10.228336093344922, -65.0813908929737 10.060554093188657, -64.76445489267853 10.097218093222807, -64.73279089264904 10.113473093237943, -64.71473589263222 10.179718093299641, -64.62597289254956 10.246664093361986, -64.57972689250649 10.25860909337311, -64.48250889241595 10.238054093353966, -64.37854589231912 10.301109093412691, -64.39584589233523 10.337218093446324, -64.36805489230936 10.384164093490043, -64.18205489213612 10.456545093557452, -63.80944589178911 10.442218093544113, -63.697499891684856 10.485554093584469, -63.83889089181653 10.551664093646039, -63.966390891935276 10.578473093671008, -64.14868189210505 10.570000093663111, -64.20098189215375 10.550273093644748, -64.23569089218608 10.514373093611312, -64.29959089224559 10.626527093715765, -64.264590892213 10.657773093744865, -64.1468088921033 10.617918093707743, -63.84278189182015 10.645827093733743, -63.534445891533 10.627082093716282, -63.25306389127094 10.678336093764017, -63.17222689119565 10.719718093802555, -62.99375489102944 10.716391093799459, -62.90667289094833 10.695836093780315, -62.697499890753534 10.747773093828684, -62.19250889028322 10.694164093778753, -61.87959088999179 10.728327093810577, -61.88333588999528 10.694718093779272, -61.9530548900602 10.648891093736594, -62.0855548901836 10.627218093716408, -62.249172890335984 10.627009093716211, -62.331108890412295 10.531664093627413, -62.527226890594946 10.540418093635566, -62.64972689070903 10.568191093661426, -62.91229989095358 10.528745093624693, -63.0042358910392 10.45298209355414, -62.87250889091652 10.524445093620685, -62.83860889088494 10.511664093608786, -62.8377088908841 10.397291093502275, -62.87180889091586 10.389864093495348, -62.934308890974066 10.418473093521996, -63.00368189103868 10.394164093499356, -62.998408891033776 10.271600093385217, -62.93417289097394 10.279309093392385, -62.946663890985576 10.400900093505626, -62.8847358909279 10.374391093480938, -62.790090890839764 10.401336093506032, -62.73639089078975 10.37381809348041, -62.66639089072456 10.280554093393548, -62.630626890691246 10.107154093232054, -62.669308890727265 10.075000093202107, -62.82917289087615 10.053609093182189, -62.95694589099516 10.104309093229404, -63.015972891050126 10.095691093221376, -62.983854891020215 10.068918093196444, -62.91056389095196 10.076945093203918, -62.805281890853905 10.00860909314028, -62.66278189072119 10.059164093187363, -62.6157638906774 10.093191093219048, -62.605417890667766 10.127218093250747, -62.62333589068446 10.188609093307917, -62.60944589067152 10.223954093340836, -62.577499890641775 10.22513609334193, -62.48889089055925 10.153054093274804, -62.42694589050156 9.979164093112857, -62.31518189039747 9.752845092902078, -62.32264589040442 9.712082092864122, -62.277226890362115 9.747500092897099, -62.23680889032447 9.855000092997216, -62.25049089033722 9.967009093101538, -62.205699890295506 9.914027093052198, -62.165345890257925 9.715282092867099, -62.19610889028657 9.641664092798536, -62.17076389026296 9.657427092813222, -62.130008890225014 9.752109092901392, -62.133499890228265 9.82644509297063, -62.02743589012948 9.866418093007852, -62.11222689020845 9.929445093066548, -62.20153589029162 9.938336093074838, -62.231735890319754 9.964718093099407, -62.2092358902988 10.011036093142536, -62.17889089027054 10.014718093145973, -62.05389089015412 9.977500093111303, -61.96222689006875 9.91194509305025, -61.81167288992853 9.757891092906789, -61.73583588985791 9.600936092760605, -61.73333588985558 9.698745092851695, -61.80091788991852 9.812273092957426, -61.79278188991094 9.83110909297497, -61.77194588989154 9.830273092974195, -61.59770888972926 9.782773092929958, -61.57458188970773 9.800691092946636, -61.64805488977615 9.897364093036671, -61.619863889749894 9.90528209304405, -61.48056388962017 9.823609092967985, -61.407226889551865 9.704718092857263, -61.255981889411004 9.588891092749392, -61.04333588921297 9.575554092736965, -60.98757288916103 9.551809092714848, -60.85361788903627 9.444445092614856, -60.79819988898467 9.379309092554195, -60.78361788897108 9.305000092484988, -60.81889088900394 9.26889109245137, -60.987781889161226 9.188609092376595, -61.08459088925139 9.097500092291739, -61.098126889263995 9.043954092241876, -60.972708889147185 9.175209092364113, -60.9504908891265 9.175136092364042, -61.031535889201976 9.032082092230823, -61.09778188926367 8.963336092166799, -61.183335889343354 8.727782091947418, -61.210208889368374 8.595136091823875, -61.25090888940629 8.581454091811139, -61.436672889579285 8.60166409182996, -61.51972688965664 8.590418091819487, -61.59541788972713 8.616945091844187, -61.59889088973037 8.555000091786496, -61.39389088953945 8.474445091711473, -61.32917288947917 8.430827091670864, -61.16847288932951 8.495764091731331, -61.0775088892448 8.493054091728808, -61.0861088892528 8.421391091662073, -61.0735458892411 8.402918091644864, -61.017781889189166 8.46916409170656, -60.98125488915515 8.564445091795292, -60.71583588890796 8.604582091832683, -60.62716388882538 8.551182091782948, -60.46583588867513 8.5282640917616, -60.40875488862197 8.621600091848535, -60.23611788846118 8.627500091854017, -59.99028188823223 8.535273091768133, -59.80305488805786 8.2833360915335, -59.83285488808562 8.231527091485248, -59.92222688816885 8.211109091466227, -59.9797268882224 8.174864091432468, -60.0111818882517 8.059236091324792, -60.03778188827647 8.037009091304085, -60.12486388835757 8.028327091296006, -60.31972688853905 7.877500091155525, -60.533335888737994 7.803891091086982, -60.58875488878961 7.639309090933693, -60.662090888857904 7.566527090865918, -60.691108888884926 7.567082090866435, -60.71666388890873 7.540000090841204, -60.688263888882275 7.453473090760625, -60.66083588885674 7.447218090754802, -60.59139088879206 7.336391090651588, -60.63423588883197 7.254309090575134, -60.61749988881638 7.19444509051938, -60.5380638887424 7.124445090454188, -60.50576388871231 7.17270909049914, -60.45611788866607 7.195836090520686, -60.36049088857702 7.176245090502434, -60.278054888500236 7.118745090448883, -60.29125488851254 7.056600090391015, -60.463617888673056 6.906664090251368, -60.63778188883526 6.834927090184564, -60.69778188889114 6.766664090120983, -60.81611788900135 6.788336090141172, -60.89368188907359 6.765000090119429, -60.93965488911641 6.724582090081796, -61.12510888928912 6.714773090072654, -61.174445889335075 6.658745090020474, -61.20472688936327 6.5779180899452, -61.140008889303004 6.408609089787518, -61.160145889321754 6.1825000895769335, -61.26278188941734 6.107782089507353, -61.3378908894873 5.972782089381624, -61.38972688953557 5.940000089351088, -60.748890888938746 5.222500088682864, -60.65520888885149 5.181318088644517, -60.5785458887801 4.952636088431532, -60.649308888845994 4.842918088329355, -60.7202818889121 4.776109088267134, -60.88652688906693 4.709718088205307, -60.92986388910728 4.591873088095554, -60.987090889160584 4.519309088027967, -61.163890889325245 4.494309088004684, -61.313608889464675 4.506664088016194, -61.50736388964512 4.390554087908058, -61.51069988964824 4.3034730878269585, -61.55438188968891 4.248818087776058, -61.69917288982376 4.259027087785569, -61.76291788988313 4.2430540877706875, -61.8488908899632 4.160554087693853, -61.914863890024634 4.146945087681175, -61.987499890092295 4.169582087702267, -62.05319989015348 4.150136087684146, -62.14264589023678 4.093191087631112, -62.440135890513844 4.1826730877144485, -62.539935890606785 4.112291087648913, -62.6041638906666 4.041945087583386, -62.72833589078225 4.038609087580284, -62.75778189080967 4.020273087563211, -62.78041789083075 3.9087450874593372, -62.72749989078147 3.731109087293902, -62.73402689078755 3.6765270872430733, -62.78125489083153 3.604309087175807, -62.878054890921675 3.5601360871346657, -62.99056389102647 3.604309087175807, -63.24229089126091 3.8981270874494527, -63.335554891347755 3.9580540875052606, -63.419099891425574 3.967082087513674, -63.45819989146199 3.866454087419953, -63.491526891493024 3.857782087411877, -63.530135891528985 3.8672180874206674, -63.61417289160724 3.9448640874929737, -63.64445489163545 3.9486090874964646, -63.84806389182508 3.9588910875060463, -63.95625489192584 3.891245087443039, -64.01779089198314 3.886109087438257, -64.05270889201566 3.9084360874590516, -64.12639089208429 4.1095820876463875, -64.24889989219838 4.148054087682212, -64.33555489227909 4.154164087687903, -64.59201789251793 4.1277730876633285, -64.67472689259496 4.257500087784138, -64.74626389266159 4.287218087811823, -64.78167289269456 4.2863910878110545, -64.80000889271165 4.265073087791194, -64.80195489271345 4.210836087740688, -64.71313589263073 4.144027087678467, -64.62668189255022 3.9655540875122455, -64.44632689238225 3.7870090873459645, -64.30806389225349 3.7183360872820117, -64.19021789214374 3.5896540871621596, -64.18471789213861 3.5277820871045407, -64.23569989218609 3.432782087016065, -64.20529089215776 3.1933360867930674, -64.15889089211456 3.060836086669667, -63.987854891955266 2.718609086350938, -63.995417891962305 2.623054086261945, -64.04646389200985 2.509445086156134, -64.03403589199827 2.4713180861206325, -63.821808891800615 2.4258360860782773, -63.58167289157697 2.434718086086548, -63.36541789137557 2.4200000860728323, -63.346390891357856 2.4061090860598995, -63.360763891371235 2.259100085922981, -63.39944589140727 2.149509085820924, -63.60709089160065 2.105973085780377, -63.739172891723655 2.003054085684525, -63.825008891803606 1.9777820856609907, -63.93652689190746 1.9768090856600793, -64.00236389196877 1.9498640856349851, -64.0518908920149 1.8904820855796913, -64.07799089203921 1.6354180853421383, -64.11320889207201 1.5829180852932438, -64.26445489221287 1.4761090851937695, -64.3943088923338 1.5118090852270143, -64.52972689245992 1.4336090851541883, -64.59529089252098 1.3300000850576907, -64.69750889261618 1.262782084995095, -64.7572358926718 1.2443090849778855, -64.8190728927294 1.2794820850106419, -65.00695489290437 1.1658360849048108, -65.1362638930248 1.118473084860696, -65.16584589305235 0.9694450847218974, -65.19250889307719 0.9266640846820593, -65.32167289319747 0.9119450846683463, -65.38584589325724 0.8370820845986344, -65.40028189327069 0.7539540845212116, -65.43610889330405 0.6952820844665695, -65.52166389338373 0.6491640844236173, -65.55861789341814 0.6661090844393982, -65.58257289344046 0.7297910844987143, -65.5111178933739 0.8388910846003199, -65.510135893373 0.9019450846590331, -65.55944589341892 0.9711090847234516, -65.59542689345243 0.9904180847414352, -65.73529089358269 0.9827820847343247, -65.87083589370893 0.9083360846649953, -65.97959089381021 0.798745084562924, -66.12709089394758 0.7341640845027797, -66.31472689412233 0.7513910845188292, -66.87045489463989 1.2209270849561165, -66.89168189465967 1.2513910849844905, -66.92639089469199 1.4597180851785083, -66.99167289475278 1.6958360853984118, -67.21153589495755 2.2436090859085596, -67.21694589496259 2.275282085938059, -67.17418189492277 2.336527085995101, -67.19250889493983 2.392500086047221, -67.32520889506341 2.474027086123158, -67.48556389521276 2.653336086290153, -67.53528189525906 2.680000086314976, -67.60583589532477 2.7933360864205383, -67.76583589547378 2.832500086457003, -67.82361789552759 2.8270820864519663, -67.8330728955364 2.8766640864981383, -67.4355638951662 3.253891086849464, -67.34639989508315 3.313682086905146, -67.29285489503329 3.3960450869818573, -67.30659989504609 3.4527820870346915, -67.38111789511548 3.4859730870656023, -67.43709089516761 3.648336087216819, -67.49104589521787 3.7243090872875655, -67.59987289531922 3.740691087302821, -67.63514589535207 3.797636087355855, -67.7085088954204 4.0469540875880625, -67.78667289549318 4.166527087699421, -67.80625489551143 4.231809087760212, -67.78479989549145 4.334754087856098, -67.85875489556032 4.561245088067025, -67.80158189550707 4.973236088450719, -67.8486358955509 5.306518088761123, -67.80389089550923 5.38326408883259, -67.64944589536539 5.478336088921139, -67.61590889533416 5.5481910889861865, -67.65167289536745 5.683191089111915, -67.61999989533797 5.792218089213463, -67.4139818951461 5.995536089402819, -67.49252689521924 6.121409089520043, -67.48924589521619 6.153745089550156, -67.45445489518379 6.1930540895867665, -67.49626389522273 6.2054180895982824, -67.56361789528545 6.262500089651439, -67.6352818953522 6.28513608967252, -67.83118189553464 6.30757308969342, -67.91812689561561 6.238191089628799, -67.99792689568993 6.207218089599962, -68.15515489583636 6.222773089614449, -68.31945489598938 6.1680540895634834, -68.45389989611459 6.190554089584438, -68.63840889628644 6.135482089533156, -68.8277908964628 6.186391089580567, -69.05639989667571 6.2161090896082385, -69.19520889680498 6.100418089500494, -69.24174589684833 6.084100089485304, -69.2707088968753 6.090973089491698, -69.31611789691759 6.148609089545374, -69.42945489702315 6.1186090895174345, -70.11917289766549 6.975836090315795, -70.2218178977611 6.9740270903141095, -70.294726897829 6.9384730902809935, -70.55250889806908 7.058336090392629, -70.7197268982248 7.098054090429613, -70.88653589838016 7.07507309040821, -71.02500889850913 6.984445090323803, -71.18126389865465 6.9634730903042765, -71.33250889879551 7.022364090359119, -71.46389989891787 7.023336090360033, -71.60139089904592 7.057918090392235, -71.70195489913958 7.046391090381505, -71.83278189926142 6.987218090326394, -71.99236389941004 7.016245090353422, -72.06609989947871 7.06241809039642, -72.13292689954095 7.173336090499731, -72.16459989957045 7.262500090582762, -72.15472689956125 7.325282090641238, -72.26250889966164 7.389445090700988, -72.40167289979124 7.407218090717549, -72.47244589985715 7.497982090802083, -72.45972689984531 7.920554091195626, -72.38938189977979 8.047564091313916, -72.3286178997232 8.061809091327177, -72.3366728997307 8.151945091411122, -72.3881998997787 8.369445091613684, -72.66446390003598 8.641109091866696, -72.77972690014333 9.080273092275704, -72.8855639002419 9.11916409231192, -72.96250890031357 9.178054092366764, -72.9811269003309 9.260827092443861, -73.0099999003578 9.302009092482209, -73.22195490055519 9.171109092360297, -73.37806390070058 9.171391092360565, -73.36389090068738 9.225827092411265, -73.24514590057679 9.40847309258136, -73.08168190042456 9.609445092768524, -73.00472690035288 9.768327092916508, -72.97750890032754 10.001945093134069, -72.93889990029157 10.11645409324072, -72.90354590025865 10.444445093546179, -72.49125489987468 11.12277309417793, -72.31764589971299 11.164509094216797, -72.20935489961214 11.25000009429641, -71.9684818993878 11.666245094684072, -71.7697268992027 11.700836094716294, -71.40333589886147 11.812773094820542, -71.32471789878825 11.853054094858052, -71.37861789883844 11.753336094765189, -71.44584589890106 11.723891094737766, -71.76583589919908 11.662364094680456, -71.95417289937447 11.594718094617463, -71.96639989938586 11.506391094535203, -71.93278189935455 11.363054094401704, -71.7408458991758 11.034164094095402, -71.763617899197 11.013745094076384, -71.69111789912948 10.834164093909138, -71.6618088991022 10.77750009385636, -71.57792689902406 10.71610909379919, -71.58168189902757 10.674718093760646, -71.64889989909017 10.442500093544368, -71.75569989918964 10.369718093476592, -71.79444589922572 10.321809093431966, -71.8411268992692 10.218891093336126, -72.1253548995339 9.818191092962934, -72.07792689948973 9.735554092885977, -71.97917289939775 9.623336092781472, -71.91084589933412 9.493609092660648, -71.73319989916868 9.375691092550824, -71.72361789915975 9.345000092522241, -71.75945489919313 9.118327092311148, -71.7148638991516 9.077918092273507, -71.62389089906688 9.043054092241036, -71.55278189900065 9.040836092238976, -71.3136088987779 9.1105540923039, -71.24139089871065 9.155418092345684, -71.16541789863989 9.273745092455883, -71.07486389855555 9.312500092491973, -71.05597289853796 9.338745092516419, -71.08917289856888 9.536600092700695, -71.05334589853551 9.703609092856226, -71.07339989855419 9.851109092993596, -71.26945489873678 10.150136093272081, -71.38556389884492 10.282773093395619, -71.43667289889251 10.36944509347633, -71.45861789891295 10.460000093560666, -71.54570889899406 10.568327093661566, -71.52639989897608 10.726945093809277, -71.44667289890182 10.795554093873179, -71.45167289890648 10.916391093985723, -71.49285489894484 10.961036094027293, -71.4119548988695 10.984164094048836, -71.28110889874763 10.989164094053493, -70.82556389832338 11.211391094260463, -70.50847289802806 11.248191094294725, -70.4466728979705 11.290000094333664, -70.23918189777727 11.353054094392391, -70.14249989768723 11.418336094453196, -70.03486389758697 11.441318094474596, -70.02389989757677 11.491391094521234, -70.04779089759901 11.517773094545802, -69.987645897543 11.514718094542957, -69.87402689743719 11.426527094460823, -69.80139089736954 11.427218094461466, -69.7423998973146 11.499200094528504, -69.81653589738364 11.690973094707104, -70.18000889772216 11.603609094625739, -70.23598189777428 11.62889109464929, -70.24389989778166 11.775273094785618, -70.29403589782835 11.861664094866072, -70.28666389782148 11.92027309492066, -70.18749989772914 12.107773095095283, -70.01430889756783 12.197500095178839, -69.93471789749371 12.169718095152973, -69.85945489742362 12.071945095061906, -69.82375489739037 11.98805409498378, -69.81688189738396 11.850973094856116, -69.75778189732893 11.661391094679558, -69.7061178972808 11.548891094574785, -69.6318088972116 11.467636094499099, -69.5795178971629 11.46410009449582, -69.50695489709533 11.506945094535709, -69.36021789695867 11.493327094523039, -69.27487289687919 11.533954094560869, -68.95389989658025 11.45166409448423, -68.8436818964776 11.447082094479967, -68.66042689630693 11.349864094389417, -68.60196389625249 11.290554094334183, -68.41833589608147 11.180000094231218, -68.24250889591772 10.874373093946588, -68.25195489592652 10.856664093930092, -68.32529089599481 10.843609093917934, -68.3280638959974 10.767500093847048, -68.25361789592806 10.588891093680715, -68.16514589584567 10.498891093596896, -67.86798189556892 10.464873093565217, -67.79610889550197 10.491945093590417, -67.54333589526657 10.53277309362845, -67.28029089502158 10.546664093641382, -67.00222689476261 10.610282093700633, -66.47056389426747 10.629164093718217, -66.34299089414866 10.604718093695453, -66.3102908941182 10.626018093715288)), ((-64.05555489201832 10.857218093930612, -64.1363998920936 10.945000094012357, -64.17403589212866 10.960418094026721, -64.22792689217884 10.93124509399955, -64.40569989234442 10.970136094035766, -64.37834589231893 11.056945094116614, -64.20180889215452 11.08778209414534, -64.17584589213034 11.031664094093074, -64.10583589206514 10.995282094059192, -64.04278189200642 10.987636094052064, -63.98749989195494 11.076109094134466, -63.88493589185941 11.175618094227147, -63.84486389182209 11.127082094181944, -63.80472689178471 11.021391094083512, -63.81499989179429 10.978054094043145, -63.89000889186414 10.904445093974587, -64.05555489201832 10.857218093930612)), ((-61.163608889324976 8.68832709191068, -61.16499988932628 8.71527309193577, -61.042499889212195 8.821109092034334, -60.86055488904273 8.853336092064353, -60.97610888915035 8.725827091945604, -61.163608889324976 8.68832709191068)), ((-61.246945889402596 8.474718091711736, -61.2943088894467 8.493327091729071, -61.405281889550054 8.485836091722092, -61.543545889678825 8.54868209178062, -61.42639088956972 8.58332709181289, -61.279445889432864 8.569718091800212, -61.26149988941614 8.552964091784602, -61.27829988943179 8.516736091750872, -61.2635998894181 8.499927091735216, -61.185072889344966 8.496736091732245, -61.246945889402596 8.474718091711736)), ((-61.1291728892929 8.501664091736828, -61.26368188941818 8.510209091744784, -61.253063889408295 8.545273091777446, -61.21750888937518 8.572500091802794, -61.14912688931149 8.54089109177336, -61.083617889250476 8.609718091837465, -60.99806388917081 8.59694509182556, -60.99860888917131 8.557782091789093, -61.04055488921037 8.51416409174847, -61.1291728892929 8.501664091736828)), ((-60.91028188908905 8.894164092102372, -61.01972688919098 8.846945092058391, -61.046390889215814 8.843891092055557, -60.94167288911828 9.011664092211802, -60.880345889061175 9.026527092225649, -60.840563889024125 8.99832709219939, -60.85625488903874 8.947364092151915, -60.91028188908905 8.894164092102372)), ((-65.2811088931597 10.88028209395209, -65.39334589326423 10.906945093976915, -65.41611789328543 10.927218093995805, -65.36445489323732 10.969164094034866, -65.30445489318144 10.976109094041334, -65.21215489309549 10.954164094020896, -65.19959089308378 10.898336093968908, -65.2811088931597 10.88028209395209)), ((-61.048054889217354 8.639718091865404, -61.146945889309464 8.654445091879111, -61.17722688933766 8.67666409189981, -60.93778188911466 8.721245091941327, -60.99680888916963 8.652636091877426, -61.048054889217354 8.639718091865404)), ((-60.85831788904065 9.06495409226143, -60.94333588911984 9.022218092221635, -61.061390889229784 8.896945092104957, -61.096672889262635 8.89090009209933, -61.07062688923838 8.97131809217423, -60.947226889123456 9.054718092251903, -60.850417889033295 9.092982092287542, -60.85831788904065 9.06495409226143)), ((-60.92333588910121 8.618327091845487, -60.988617889162 8.635554091861522, -60.84159988902509 8.726945091946632, -60.80944588899514 8.716945091937319, -60.82333588900808 8.652364091877175, -60.92333588910121 8.618327091845487))) +ASM American Samoa MULTIPOLYGON (((-170.74389999137958 -14.375554929569248, -170.74941799138472 -14.373890929567693, -170.7664449914006 -14.363608929558112, -170.82322699145345 -14.323754929521002, -170.80917299144036 -14.308054929506383, -170.79765499142965 -14.299308929498238, -170.68167299132162 -14.258054929459817, -170.6640269913052 -14.255417929457352, -170.5679179912157 -14.254308929456329, -170.56187299121007 -14.269999929470941, -170.57861799122566 -14.279163929479466, -170.63726399128026 -14.289445929489048, -170.74389999137958 -14.375554929569248))) +COK Cook Is. MULTIPOLYGON (((-159.7469819811379 -21.25667293597779, -159.79363598118135 -21.252781935974156, -159.83251798121756 -21.248472935970142, -159.84000898122454 -21.23916393596147, -159.83471798121963 -21.199308935924364, -159.82723598121265 -21.189863935915568, -159.7883269811764 -21.187499935913365, -159.75613598114643 -21.192363935917896, -159.73292698112482 -21.22624593594945, -159.73916398113062 -21.2524999359739, -159.7469819811379 -21.25667293597779)), ((-157.92889097944467 -21.94083593661496, -157.94696397946151 -21.93958193661379, -157.96376397947716 -21.92041793659594, -157.96363597947703 -21.90819093658456, -157.95751797947133 -21.89528193657253, -157.94778197946226 -21.88805493656581, -157.921735979438 -21.88146393655967, -157.88384497940274 -21.925208936600413, -157.88766397940628 -21.936808936611214, -157.92889097944467 -21.94083593661496)), ((-158.11667297961955 -20.019172934825278, -158.12668197962887 -20.009445934816213, -158.13041797963237 -19.995281934803018, -158.1253999796277 -19.978472934787362, -158.11152697961478 -19.9713179347807, -158.09475497959914 -19.97417293478337, -158.0836359795888 -19.98444593479293, -158.0813909795867 -19.996390934804054, -158.08876397959358 -20.01069993481738, -158.0983549796025 -20.016108934822412, -158.11667297961955 -20.019172934825278)), ((-157.71304497924365 -19.857226934674443, -157.71887297924908 -19.85166393466926, -157.7408179792695 -19.817645934637582, -157.73919997926802 -19.807508934628146, -157.71229997924297 -19.77312693459612, -157.70376397923502 -19.836808934655437, -157.70864497923955 -19.853054934670567, -157.71304497924365 -19.857226934674443)), ((-163.16946398432535 -18.091945933030402, -163.17128198432704 -18.08417293302317, -163.15472698431162 -18.06145493300201, -163.15725498431397 -18.080554933019798, -163.1633269843196 -18.089445933028074, -163.16946398432535 -18.091945933030402)), ((-165.84167298681402 -10.890835926323845, -165.84834498682025 -10.8842359263177, -165.82765498680098 -10.881317926314978, -165.84167298681402 -10.890835926323845))) +PYF French Polynesia MULTIPOLYGON (((-149.1791999712959 -17.870835932824477, -149.25809097136937 -17.85278193280766, -149.27570897138577 -17.84631793280164, -149.28893597139808 -17.833054932789295, -149.29795497140648 -17.82083593277791, -149.3694729714731 -17.738890932701594, -149.3785999714816 -17.743608932705982, -149.42086397152096 -17.756108932717623, -149.47168197156827 -17.766390932727205, -149.48763597158313 -17.76597293272681, -149.59057297167902 -17.711390932675982, -149.63891797172403 -17.625972932596426, -149.64169097172663 -17.611945932583367, -149.64141797172636 -17.592781932565515, -149.63559097172094 -17.561672932536553, -149.63250897171807 -17.54999993252568, -149.62388197171003 -17.540699932517015, -149.58739097167606 -17.516181932494177, -149.4921089715873 -17.493754932473294, -149.44998197154808 -17.499445932478594, -149.41473597151526 -17.509172932487658, -149.37362697147697 -17.526945932504205, -149.3591639714635 -17.534454932511196, -149.34861797145368 -17.542090932518306, -149.3327639714389 -17.57028193254456, -149.32666397143322 -17.592226932564998, -149.32333597143014 -17.65249993262114, -149.3230909714299 -17.67110893263846, -149.3240359714308 -17.68778193265399, -149.32014497142717 -17.702154932667383, -149.3075089714154 -17.712635932677145, -149.29306397140192 -17.717499932681676, -149.2305639713437 -17.730281932693572, -149.2077909713225 -17.734172932697206, -149.18473597130105 -17.73139093269461, -149.1747089712917 -17.736117932699017, -149.1622269712801 -17.751390932713235, -149.1547269712731 -17.764445932725394, -149.14837297126718 -17.781954932741698, -149.1466819712656 -17.805699932763815, -149.15221797127077 -17.83361793278982, -149.15780897127598 -17.849726932804813, -149.16559097128322 -17.86360893281774, -149.1741639712912 -17.869163932822914, -149.1791999712959 -17.870835932824477)), ((-139.05474496186676 -9.859999925363809, -139.1089179619172 -9.846945925351648, -139.11913596192673 -9.843608925348533, -139.12890896193582 -9.838890925344145, -139.1411089619472 -9.830835925336643, -139.15142696195682 -9.820554925327073, -139.16879096197297 -9.79375492530211, -139.1722549619762 -9.772917925282698, -139.16726396197154 -9.759999925270677, -139.04444496185715 -9.69541792521052, -139.00472696182018 -9.69694592521195, -138.97568196179313 -9.708608925222805, -138.9687639617867 -9.722363925235626, -138.9570729617758 -9.741390925253341, -138.8903179617136 -9.757226925268085, -138.85058196167662 -9.756108925267043, -138.83611796166315 -9.749863925261238, -138.82531796165307 -9.740272925252299, -138.81251796164116 -9.737917925250102, -138.8097549616386 -9.748054925259552, -138.81558196164403 -9.759445925270157, -138.8319729616593 -9.770835925280764, -138.84915496167528 -9.781117925290346, -138.89585496171878 -9.806254925313752, -138.91085496173275 -9.808335925315689, -138.9794269617966 -9.8149999253219, -138.99999996181577 -9.8149999253219, -139.01319996182806 -9.811390925318534, -139.02973596184347 -9.807226925314652, -139.04862696186106 -9.808199925315563, -139.06133596187289 -9.818890925325519, -139.05474496186676 -9.859999925363809)), ((-140.17782696291272 -8.956390924522253, -140.18945496292355 -8.954163924520174, -140.2058359629388 -8.944726924511386, -140.22584496295744 -8.930417924498059, -140.2305639629618 -8.921390924489657, -140.25613596298564 -8.827363924402093, -140.25339096298308 -8.813054924388766, -140.2497549629797 -8.80278192437919, -140.2450269629753 -8.793890924370913, -140.2366639629675 -8.7838909243616, -140.2251449629568 -8.778190924356295, -140.06890896281126 -8.81167292438748, -140.04281796278696 -8.830281924404801, -140.01599096276198 -8.852845924425822, -140.01196396275824 -8.870972924442697, -140.01515496276122 -8.888472924458995, -140.0226639627682 -8.898054924467928, -140.07781796281955 -8.918054924486555, -140.0908359628317 -8.9220819244903, -140.10487296284475 -8.918754924487203, -140.1197179628586 -8.918890924487329, -140.1669639629026 -8.933054924500524, -140.17683596291178 -8.940135924507118, -140.17782696291272 -8.956390924522253)), ((-151.4444909734056 -16.904445931924457, -151.46543597342512 -16.902917931923028, -151.47512697343413 -16.89749993191799, -151.49169997344958 -16.849172931872985, -151.49777297345523 -16.784026931812306, -151.49136397344927 -16.759999931789935, -151.48751797344568 -16.7494459317801, -151.4725179734317 -16.73971793177104, -151.43098197339302 -16.745554931776482, -151.35111797331865 -16.84583593186987, -151.3509819733185 -16.860345931883387, -151.40032697336449 -16.888335931909452, -151.4444909734056 -16.904445931924457)), ((-149.85442697192474 -17.574445932548443, -149.86834497193772 -17.56833593254275, -149.87805497194674 -17.563617932538364, -149.9250449719905 -17.52528193250265, -149.93808197200266 -17.509726932488164, -149.941681972006 -17.497217932476516, -149.93725497200188 -17.484163932464355, -149.9227909719884 -17.477781932458413, -149.91113597197756 -17.476108932456853, -149.79462697186906 -17.466799932448183, -149.78529097186035 -17.47125493245234, -149.78321797185842 -17.487781932467726, -149.79849097187264 -17.52778193250498, -149.84596397191686 -17.572499932546634, -149.85442697192474 -17.574445932548443))) +UMI Jarvis I. MULTIPOLYGON (((-160.02114498139323 -0.3980549165516862, -160.02810898139973 -0.3980549165516862, -160.04349098141404 -0.3922179165462438, -160.0451639814156 -0.3801359165349964, -160.03391798140512 -0.3743089165295714, -160.0177909813901 -0.3747179165299457, -160.00946398138237 -0.3847179165392589, -160.0129269813856 -0.3958359165496148, -160.02114498139323 -0.3980549165516862))) +NIU Niue MULTIPOLYGON (((-169.89389099058795 -19.145554934011656, -169.9308819906224 -19.124445933991993, -169.9522359906423 -19.073335933944392, -169.93028199062184 -19.01360893388876, -169.89474499058875 -18.970281933848412, -169.88476399057944 -18.963335933841947, -169.86889999056467 -18.963617933842215, -169.8151359905146 -18.970272933848406, -169.78155499048333 -19.065281933936888, -169.79809999049874 -19.087226933957325, -169.82443599052326 -19.110835933979317, -169.85028199054733 -19.125835933993287, -169.8591639905556 -19.130554933997686, -169.88806399058254 -19.14444593401062, -169.89389099058795 -19.145554934011656))) +WSM Samoa MULTIPOLYGON (((-172.59649999310494 -13.509108928762302, -172.55193599306344 -13.497217928751226, -172.47528199299205 -13.479717928734928, -172.39111799291368 -13.464172928720458, -172.36083599288548 -13.460554928717087, -172.34835499287385 -13.461390928717861, -172.303417992832 -13.472154928727889, -172.28779999281744 -13.484163928739065, -172.22249999275664 -13.563054928812548, -172.20306399273855 -13.59194592883945, -172.1933639927295 -13.613335928859371, -172.1683549927062 -13.680972928922358, -172.16781799270572 -13.691390928932066, -172.21235499274718 -13.806526929039293, -172.225035992759 -13.808890929041496, -172.25849999279018 -13.804308929037234, -172.39333599291575 -13.791672929025466, -172.48599099300202 -13.806808929039562, -172.50890899302337 -13.806663929039416, -172.5279269930411 -13.802708929035745, -172.5744359930844 -13.765835929001398, -172.59002699309892 -13.739717928977072, -172.69109999319306 -13.626108928871261, -172.7516909932495 -13.57402692882276, -172.77282699326918 -13.54999992880039, -172.78002699327587 -13.532572928784148, -172.7725359932689 -13.517499928770121, -172.75558199325312 -13.51028192876339, -172.73890899323757 -13.508472928761705, -172.728635993228 -13.513335928766239, -172.65527299315968 -13.519172928771681, -172.59649999310494 -13.509108928762302)), ((-171.44198199202972 -14.057499929273035, -171.4652729920514 -14.052781929268633, -171.47998199206512 -14.050554929266568, -171.52055499210292 -14.047781929263977, -171.5461089921267 -14.050281929266305, -171.5889269921666 -14.052499929268379, -171.64837299222194 -14.050281929266305, -171.76809999233345 -14.035835929252855, -171.91113599246665 -14.012499929231126, -172.05059999259655 -13.912499929137994, -172.0584999926039 -13.903190929129323, -172.06475499260972 -13.87819092910604, -172.05975499260506 -13.866945929095564, -172.02932699257673 -13.840272929070721, -171.90670899246254 -13.806663929039416, -171.8839089924413 -13.805554929038394, -171.82226399238388 -13.807499929040205, -171.7480819923148 -13.83167292906272, -171.6191359921947 -13.87860892910642, -171.44418199203176 -13.984445929204995, -171.43070899201922 -14.002363929221687, -171.42919999201783 -14.01625492923462, -171.44198199202972 -14.057499929273035))) +TKL Tokelau MULTIPOLYGON (((-171.84805499240792 -9.218890924766725, -171.85885499241797 -9.209654924758127, -171.86271799242155 -9.18089992473135, -171.85243599241198 -9.170626924721773, -171.84419099240432 -9.191108924740846, -171.84376399240392 -9.210835924759223, -171.84805499240792 -9.218890924766725))) +TON Tonga MULTIPOLYGON (((-175.1452909954787 -21.268063935988394, -175.18639999551698 -21.252781935974156, -175.31445499563625 -21.17999993590638, -175.3236359956448 -21.174445935901204, -175.33642699565672 -21.161672935889314, -175.35140899567065 -21.14333593587223, -175.35748199567632 -21.131663935861354, -175.35999999567866 -21.10083593583265, -175.35319999567233 -21.0887549358214, -175.34112699566109 -21.074863935808466, -175.3142999956361 -21.06417293579851, -175.3035549956261 -21.069726935803672, -175.27667299560105 -21.124999935855158, -175.2452359955718 -21.12978193585961, -175.1490359954822 -21.17680893590341, -175.13836399547225 -21.175835935902498, -175.1319549954663 -21.159163935886966, -175.12945499546396 -21.14472693587352, -175.12139999545644 -21.13375493586331, -175.10723599544326 -21.12806393585801, -175.09362699543058 -21.124999935855158, -175.06542699540432 -21.125835935855932, -175.0487639953888 -21.13694593586628, -175.0459909953862 -21.149163935877652, -175.05169999539154 -21.161672935889314, -175.12083599545593 -21.262090935982826, -175.13503599546914 -21.267781935988125, -175.1452909954787 -21.268063935988394)), ((-173.93920899435545 -18.56889093347459, -173.93362699435025 -18.573054933478474, -173.9166909943345 -18.599726933503305, -173.9068269943253 -18.62375493352569, -173.90890899432722 -18.635563933536687, -173.98697299439993 -18.684172933581962, -174.05444499446276 -18.669726933568498, -174.06308199447082 -18.659299933558785, -174.07030899447756 -18.63597293353706, -174.06527299447285 -18.62499993352685, -174.05334499446175 -18.621117933523237, -174.03737299444688 -18.621117933523237, -174.0252999944356 -18.616672933519098, -174.01724499442813 -18.603054933506414, -174.01306399442424 -18.589726933493992, -174.00321799441505 -18.578199933483262, -173.99249099440507 -18.572226933477694, -173.9675269943818 -18.568054933473817, -173.93920899435545 -18.56889093347459))) +WLF Wallis & Futuna MULTIPOLYGON (((-178.06081799819398 -14.323890929521127, -178.13739099826532 -14.317081929514785, -178.15389999828068 -14.308054929506383, -178.17110899829672 -14.287781929487494, -178.1793549983044 -14.275417929475978, -178.18832699831276 -14.256108929457994, -178.19027299831455 -14.239726929442739, -178.18169999830658 -14.232363929435891, -178.12733599825594 -14.24860892945101, -178.04301799817742 -14.31749992951518, -178.06081799819398 -14.323890929521127)), ((-176.1650359964284 -13.35305492861697, -176.16906399643216 -13.351945928615933, -176.17724499643978 -13.341390928606103, -176.18808199644988 -13.313608928580223, -176.1910999964527 -13.286945928555397, -176.18581799644775 -13.257781928528232, -176.18307299644522 -13.24360892851503, -176.1783449964408 -13.232226928504431, -176.1583549964222 -13.21486392848827, -176.14809099641263 -13.216108928489419, -176.12193599638826 -13.258608928529, -176.14202699640697 -13.34381792860836, -176.16143599642507 -13.352772928616702, -176.1650359964284 -13.35305492861697))) +ARG Argentina MULTIPOLYGON (((-71.85916389928599 -41.0112819543757, -71.85028189927772 -40.91250895428371, -71.95014589937072 -40.72694595411089, -71.85930889928613 -40.64347295403315, -71.77987289921215 -40.40896395381475, -71.71569989915238 -40.42361795382839, -71.6639638991042 -40.33451795374541, -71.66861789910853 -40.29694595371042, -71.7027178991403 -40.27895495369366, -71.719590899156 -40.302363953715464, -71.81806389924772 -40.20459095362441, -71.79139989922288 -40.11500895354098, -71.66694589910698 -40.04749995347811, -71.63334589907568 -39.95056395338783, -71.70500889914243 -39.727499953180086, -71.68986389912831 -39.57549095303851, -71.59916389904384 -39.621117953081004, -71.49264589894464 -39.59917295306057, -71.38779089884699 -39.24041795272645, -71.42223589887907 -39.03959095253942, -71.39369089885248 -38.913535952422016, -71.05333589853551 -38.7484819522683, -70.92348189841456 -38.74083595226118, -70.86194589835726 -38.690135952213964, -70.82972689832725 -38.588054952118895, -70.84397289834052 -38.52194595205732, -70.97153589845932 -38.415490951958176, -71.01319989849813 -38.22764595178324, -70.99833589848429 -38.07020895163661, -71.17986389865334 -37.696463951288536, -71.1758458986496 -37.62639095122327, -71.12306389860045 -37.5881909511877, -71.10869089858706 -37.458963951067346, -71.19632689866867 -37.30222695092137, -71.11279089859087 -37.114445950746486, -71.18611789865916 -36.845554950496066, -71.03430889851779 -36.483890950159235, -70.70694589821291 -36.41451795009463, -70.70472689821084 -36.27056394996056, -70.5886178981027 -36.16472694986199, -70.46750889798992 -36.164172949861474, -70.42431789794969 -36.13603594983527, -70.39611789792342 -36.07556394977895, -70.41139989793766 -35.89305494960898, -70.34375489787466 -35.81135494953289, -70.41848189794425 -35.63493594936858, -70.39611789792342 -35.515008949256895, -70.42195489794749 -35.36444594911667, -70.550290898067 -35.29667294905355, -70.56499989808071 -35.241945949002584, -70.36299089789257 -35.1447909489121, -70.35975489788956 -34.996908948774376, -70.23250889777105 -34.66194594846242, -70.04549089759688 -34.400281948218726, -70.04761789759885 -34.2860089481123, -69.88806389745027 -34.27833594810515, -69.81757289738461 -34.23472694806454, -69.90500889746605 -33.77847294763962, -69.86972689743318 -33.55528194743176, -69.7749358973449 -33.38715494727518, -69.80361789737161 -33.27889094717435, -69.90250889746372 -33.23722694713555, -70.0004178975549 -33.29861794719272, -70.09555489764351 -33.17944594708173, -70.0996358976473 -33.05184594696289, -69.9933358975483 -32.87618194679929, -70.14486389768942 -32.759099946690256, -70.17084589771362 -32.62778194656796, -70.15417289769809 -32.47583594642644, -70.24432689778206 -32.309835946271846, -70.32098189785344 -32.26528194623035, -70.34889089787944 -32.08694594606426, -70.26492689780125 -32.042435946022806, -70.23750889777571 -31.938472945925987, -70.30403589783766 -31.882363945873728, -70.43028189795524 -31.868617945860926, -70.58673589810095 -31.563817945577064, -70.52084589803958 -31.159172945200204, -70.4513818979749 -31.09458194514005, -70.36195489789161 -31.093054945138626, -70.29500889782926 -31.029726945079652, -70.33168189786342 -30.931390944988067, -70.31639989784918 -30.82472694488873, -70.21167289775164 -30.559445944641666, -70.13389989767921 -30.43972694453017, -69.9384728974972 -30.37263594446769, -69.83168189739776 -30.190554944298107, -69.82917289739541 -30.143963944254722, -69.9249458974846 -29.999999944120646, -69.91445489747484 -29.720417943860262, -69.96278189751985 -29.678199943820943, -69.95986389751712 -29.555699943706855, -70.02902689758155 -29.374863943538436, -70.0289728975815 -29.291117943460442, -69.90159989746287 -29.138963943318743, -69.79278189736152 -29.095699943278447, -69.72334589729685 -28.79770894300092, -69.74598189731793 -28.669863942881854, -69.66930889724652 -28.575626942794088, -69.65538189723355 -28.4009359426314, -69.35056389694968 -28.126108942375446, -69.29598189689884 -27.996808942255022, -69.17778189678876 -27.951945942213243, -69.07347289669161 -27.630726941914084, -68.9034818965333 -27.364172941665835, -68.86695489649928 -27.209445941521736, -68.80743589644385 -27.118545941437077, -68.73889089638001 -27.103335941422912, -68.64584589629335 -27.13847294145564, -68.323335895993 -27.023335941348407, -68.29583589596739 -26.891672941225785, -68.5836178962354 -26.505281940865935, -68.56444589621755 -26.30395494067843, -68.39986389606426 -26.159372940543783, -68.49334589615133 -25.742781940155794, -68.59749989624834 -25.443335939876917, -68.49694589615468 -25.17110893962338, -68.35562689602307 -25.121254939576957, -68.5002908961578 -24.894999939366244, -68.54833589620254 -24.869581939342567, -68.57097289622362 -24.813335939290184, -68.54084589619556 -24.729445939212056, -68.39069989605574 -24.503754939001865, -68.31897289598894 -24.496945938995523, -68.25361789592806 -24.398608938903934, -67.33584589507332 -24.021663938552877, -67.15084589490102 -23.391945937966412, -67.00083589476132 -23.00278193760397, -67.18362689493156 -22.82166393743529, -67.12445489487645 -22.719581937340223, -67.01264589477232 -22.634172937260686, -67.02250889478151 -22.523890937157972, -66.77473589455074 -22.426945937067686, -66.73668189451531 -22.22749993688194, -66.34538189415088 -22.116626936778673, -66.30694589411509 -22.076945936741723, -66.22300889403691 -21.780517936465657, -66.07751789390142 -21.83194593651355, -65.9261178937604 -21.933335936607975, -65.7500088935964 -22.110072936772568, -64.98834589288704 -22.090835936754658, -64.59264589251852 -22.21319993686862, -64.54695489247597 -22.26056393691273, -64.52611789245655 -22.40889093705087, -64.4619458923968 -22.514445937149176, -64.45313589238859 -22.643963937269802, -64.36306389230471 -22.736945937356396, -64.33827289228162 -22.86979093748012, -64.30139089224727 -22.83249993744539, -64.25334589220252 -22.567781937198845, -64.12668189208456 -22.41028193705216, -63.94111789191173 -22.00083593667084, -62.81719089086499 -21.997381936667622, -62.765008890816404 -22.154726936814157, -62.521390890589515 -22.37083593701543, -62.25041789033715 -22.525281937159264, -62.15472689024803 -22.756108937374236, -62.02569989012787 -22.899026937507344, -61.990490890095074 -23.005490937606496, -61.757635889878216 -23.17152693776113, -61.74416388986566 -23.234235937819534, -61.671735889798214 -23.286317937868034, -61.59417288972597 -23.297090937878068, -61.45083588959248 -23.418054937990732, -61.111326889276285 -23.608399938168006, -61.010699889182575 -23.810835938356533, -60.61389088881302 -23.8944459384344, -60.57742688877906 -23.946317938482707, -60.2797268885018 -24.038472938568532, -60.03806388827674 -24.00972693854176, -59.470835887748464 -24.354726938863067, -59.33889088762558 -24.48889093898802, -58.98972688730039 -24.654726939142463, -58.80791788713107 -24.78152693926056, -58.449308886797084 -24.859581939333253, -58.352226886706674 -24.967917939434145, -58.181808886547955 -24.975554939441267, -57.858063886246455 -25.097499939554837, -57.76110888615615 -25.171526939623774, -57.63208188603599 -25.386390939823883, -57.55632688596543 -25.439999939873815, -57.576663885984374 -25.54944593997574, -57.8109818862026 -25.773135940184062, -57.80555488619754 -25.833054940239876, -57.90077288628622 -25.955072940353503, -57.86007288624832 -25.997917940393407, -58.144726886513425 -26.206945940588085, -58.13139088650101 -26.257226940634915, -58.20993588657416 -26.42034594078683, -58.217226886580946 -26.54139094089956, -58.168608886535665 -26.59999994095414, -58.18167288654783 -26.6561089410064, -58.31667288667356 -26.872781941208196, -58.394445886746 -26.90805494124104, -58.57860888691751 -27.122499941440758, -58.652090886985945 -27.158890941474652, -58.598963886936474 -27.249235941558794, -58.60461788694174 -27.316917941621824, -58.15639088652429 -27.268890941577098, -57.79139088618436 -27.292226941598834, -57.6169548860219 -27.371663941672814, -57.12167288556063 -27.490281941783287, -56.916181885369255 -27.419308941717183, -56.73139088519716 -27.505281941797257, -56.67305488514282 -27.461390941756378, -56.549999885028214 -27.452499941748094, -56.398054884886704 -27.58444594187098, -56.34555488483781 -27.570281941857793, -56.2749998847721 -27.468335941762845, -56.26812688476571 -27.389381941689315, -56.14402688465013 -27.31146394161675, -55.89250888441589 -27.332635941636468, -55.84472688437138 -27.40625494170503, -55.73167288426609 -27.436672941733356, -55.58459088412911 -27.316808941621723, -55.54749988409456 -27.112226941431196, -55.40083588395798 -26.974026941302483, -55.25110888381853 -26.93610894126717, -55.05562688363648 -26.80326394114345, -54.96333588355053 -26.783199941124764, -54.92889088351845 -26.688263941036347, -54.84222688343773 -26.657499941007693, -54.693199883298945 -26.428054940794006, -54.667499883275 -26.23888194061783, -54.6409728832503 -26.21430894059494, -54.660354883268354 -25.976254940373238, -54.604445883216286 -25.943608940342827, -54.62333588323388 -25.648608940068087, -54.59891788321113 -25.573226939997895, -54.54639088316222 -25.57028193999514, -54.452508883074785 -25.63305494005361, -54.31333588294517 -25.55528193998117, -54.17750888281867 -25.561945939987382, -54.10757288275353 -25.49639093992633, -53.88861788254961 -25.63375494005426, -53.82528188249063 -25.801390940210382, -53.82688188249212 -25.95139094035008, -53.6500088823274 -26.24999994062818, -53.711735882384886 -26.364099940734448, -53.73583588240733 -26.6958359410434, -53.69861788237266 -26.882917941217634, -53.83875488250318 -27.171117941486038, -53.8577818825209 -27.1491729414656, -54.005835882658786 -27.19110894150466, -54.07083588271932 -27.268054941576317, -54.1455548827889 -27.289999941596754, -54.28028188291438 -27.424517941722037, -54.358063882986826 -27.456945941752238, -54.68611788329234 -27.555281941843823, -54.77125488337164 -27.565135941853, -54.81360888341108 -27.535554941825445, -54.90819988349918 -27.730281942006805, -55.021663883604845 -27.833890942103295, -55.17972688375205 -27.856254942124124, -55.32125488388387 -27.92208194218543, -55.4477818840017 -28.086672942338716, -55.62629988416796 -28.141017942389333, -55.748335884281616 -28.21708194246017, -55.767508884299474 -28.256254942496653, -55.66763588420646 -28.33562694257057, -55.6975358842343 -28.407708942637704, -55.73291788426725 -28.363190942596248, -55.89306388441641 -28.369726942602334, -56.066117884577565 -28.626108942841107, -56.29541788479112 -28.797435943000664, -56.42739088491403 -29.069572943254116, -56.59222688506755 -29.14069094332035, -56.695835885164044 -29.343263943509008, -57.103890885544075 -29.762154943899134, -57.27991788570802 -29.805699943939686, -57.325490885750455 -29.978272944100404, -57.48694588590082 -30.13222694424379, -57.60799988601356 -30.18492694429287, -57.66889088607027 -30.35472694445101, -57.889454886275686 -30.534999944618903, -57.88986388627606 -30.598335944677885, -57.813890886205314 -30.71375494478538, -57.79694588618953 -30.883472944943442, -57.920835886304914 -31.27097294530433, -58.00444588638278 -31.417708945440985, -58.078890886452115 -31.47589994549518, -57.977781886357945 -31.580899945592968, -58.04020888641608 -31.789172945786937, -58.16222688652972 -31.841117945835315, -58.20014588656504 -31.894790945885305, -58.145972886514585 -31.993054945976816, -58.182290886548415 -32.15684594612936, -58.097554886469496 -32.29459094625765, -58.22472688658793 -32.521663946469126, -58.146526886515105 -33.04541794695691, -58.18819988655392 -33.09097294699934, -58.42569988677511 -33.09743594700535, -58.426672886776004 -33.261945947158566, -58.53195488687406 -33.51694594739605, -58.546945886888025 -33.7362549476003, -58.4665998868132 -33.848408947704755, -58.4482458867961 -34.010463947855676, -58.38528188673746 -34.05041794789289, -58.377508886730226 -34.185908948019076, -58.49889088684327 -34.32666394815016, -58.469726886816105 -34.539726948348594, -58.36968188672293 -34.586554948392205, -58.3258358866821 -34.65819994845893, -58.230835886593624 -34.717226948513904, -57.85499988624359 -34.85110894863859, -57.49653588590975 -35.047090948821115, -57.33555488575982 -35.15555494892213, -57.18833588562272 -35.3205549490758, -57.122781885561665 -35.42375494917191, -57.12971788556813 -35.47028194921524, -57.37610888579759 -35.78139094950498, -57.376672885798115 -35.96278194967392, -57.24194588567265 -36.178335949874665, -57.05333588549699 -36.31417295000117, -56.93333588538523 -36.36861795005188, -56.745345885210156 -36.31597295000285, -56.69833588516637 -36.4094459500899, -56.670972885140884 -36.5816729502503, -56.663063885133525 -36.90055495054729, -57.08278188552441 -37.45278195106159, -57.4840268858981 -37.83041795141329, -57.53167288594247 -37.93778195151328, -57.55194588596136 -38.113617951677035, -57.836399886226275 -38.29306395184416, -58.30111788665907 -38.48499995202292, -59.03209088733985 -38.69056395221436, -59.78972688804545 -38.83694595235069, -61.094454889260575 -38.995835952498666, -61.3908358895366 -38.980426952484315, -61.54028188967578 -39.013335952514964, -61.81806388993449 -38.986117952489614, -62.08882689018665 -38.916045952424355, -62.112781890208964 -38.8644459523763, -62.20833589029796 -38.816390952331545, -62.385145890462624 -38.80264595231875, -62.366672890445415 -38.880835952391564, -62.27889089036367 -38.95583595246141, -62.33694589041774 -39.078608952575756, -62.327499890408944 -39.2600089527447, -62.16598189025851 -39.28639095276927, -62.072645890171586 -39.327090952807175, -62.02437289012663 -39.387499952863436, -62.05635489015641 -39.41149095288578, -62.19139089028218 -39.30930895279061, -62.27486389035991 -39.338472952817774, -62.068754890167966 -39.5084729529761, -62.11709089021298 -39.83687295328195, -62.17291789026497 -39.860554953304, -62.26229989034822 -39.84535495328984, -62.309172890391864 -39.8922269533335, -62.35180889043157 -40.17861795360022, -62.48875489055912 -40.30257295371566, -62.421463890496454 -40.458126953860535, -62.26680889035241 -40.557708953953274, -62.24749989033444 -40.601181953993766, -62.26291789034879 -40.63201795402248, -62.33646389041729 -40.60709095399927, -62.33833589041903 -40.671317954059084, -62.195317890285835 -40.62840895401912, -62.32083589040273 -40.86535495423979, -62.39000889046716 -40.90194595427387, -63.03639989106915 -41.14930895450424, -63.77472689175677 -41.16486395451873, -63.99333589196037 -41.05306395441461, -64.72278189263972 -40.83222695420894, -64.80445489271578 -40.72194595410623, -64.98375489288277 -40.72375495410792, -65.1301458930191 -40.84417295422006, -65.17930889306488 -40.9905639543564, -65.1675088930539 -41.09083595444979, -65.06653589295986 -41.44028195477524, -64.99174589289021 -41.51743595484709, -65.02820889292417 -41.68541795500354, -64.99430889289259 -41.76812695508057, -65.07972689297215 -41.9577819552572, -65.0136268929106 -42.09222695538241, -64.87709089278343 -42.18944495547295, -64.46445489239913 -42.2656269555439, -64.60087289252618 -42.40726395567581, -64.59535489252104 -42.434444955701125, -64.45195489238749 -42.44583595571173, -64.11348189207226 -42.4315269556984, -64.04723589201056 -42.37778195564835, -64.06306389202531 -42.278617955555994, -64.32823589227228 -42.24618195552579, -63.750835891734525 -42.089999955380335, -63.58694589158189 -42.33180895560554, -63.57930889157477 -42.615008955869286, -63.62864589162072 -42.76482695600881, -63.684517891672755 -42.81576395605625, -64.09840889205823 -42.888544956124036, -64.24819989219773 -42.77514495601842, -64.19881789215174 -42.64528195589748, -64.3980548923373 -42.51583595577692, -64.61833589254245 -42.51917295578003, -64.82084589273104 -42.62861795588196, -64.95375489285483 -42.66110895591222, -65.0186908929153 -42.743963955989386, -64.98944589288807 -42.79459095603654, -64.80569989271694 -42.841526956080244, -64.62764589255112 -42.93222695616472, -64.4141728923523 -42.977499956206884, -64.32188189226635 -42.95209095618322, -64.29652689224274 -42.99118195621963, -64.59139989251736 -43.116672956336494, -64.8002908927119 -43.161117956377886, -64.92986389283257 -43.235835956447474, -65.03376389292934 -43.311526956517966, -65.32680889320226 -43.6618089568442, -65.31625489319244 -43.82722695699825, -65.2583458931385 -43.969726957130966, -65.21014589309361 -43.9580639571201, -65.22876389311095 -44.11125495726277, -65.29354589317128 -44.131290957281436, -65.31249989318894 -44.18695495733328, -65.24945489313022 -44.31305495745072, -65.3875088932588 -44.521663957644996, -65.5966818934536 -44.61667295773348, -65.68904589353963 -44.71209095782235, -65.71258189356153 -44.82959095793178, -65.5372998933983 -44.89229095799017, -65.61111789346704 -45.02056395810963, -65.68847289353909 -45.04236395812993, -65.84250889368255 -44.986390958077806, -66.18278189399945 -44.96444495805737, -66.51771789431139 -45.08438195816907, -66.56668189435699 -45.15749995823717, -66.94653589471075 -45.254172958327196, -67.18181789492988 -45.526526958580845, -67.31902689505766 -45.61986395866777, -67.38111789511548 -45.79556395883141, -67.58435489530477 -46.00029995902209, -67.61876389533681 -46.17722695918686, -67.5336178952575 -46.42236395941516, -67.35722689509323 -46.61083595959069, -67.09972689485342 -46.7580549597278, -66.81855489459156 -46.98917295994304, -66.70959089449008 -47.04209095999233, -66.20916389402402 -47.09360896004031, -65.98931789381928 -47.06722696001574, -65.77528189361993 -47.19520896013493, -65.73279089358036 -47.33055496026098, -65.75529089360131 -47.53639096045268, -65.87041789370853 -47.755554960656795, -66.02959089385678 -47.76291796066365, -66.11389089393529 -47.817499960714485, -66.2291178940426 -47.84038196073579, -66.2436178940561 -47.86028196075433, -65.95680889378899 -47.78639096068551, -65.7883458936321 -47.932917960821975, -65.78979089363345 -47.96583596085263, -65.96753589379898 -47.961844960848914, -65.96417289379585 -48.09278196097086, -66.0670818938917 -48.10041796097797, -66.46722689426436 -48.39805496125517, -66.66445489444804 -48.440281961294495, -66.82569989459822 -48.57013596141543, -67.08848189484294 -48.642090961482445, -67.2444458949882 -48.82319996165111, -67.40444589513721 -48.894026961717074, -67.58569989530602 -49.040417961853414, -67.63854589535524 -49.11833596192598, -67.61438189533273 -49.17104496197507, -67.82778189553147 -49.386390962175625, -67.72236389543329 -49.37854496216832, -67.65063589536649 -49.26007296205798, -67.60577289532472 -49.264099962061735, -67.76583589547378 -49.85611796261309, -67.89722689559615 -49.9858359627339, -68.06139989574905 -50.07333596281539, -68.27334589594643 -50.12333596286196, -68.42396389608672 -50.068190962810604, -68.59250889624369 -49.928608962680606, -68.69222689633655 -49.9744449627233, -68.85389989648712 -49.96889096271812, -69.00285489662585 -50.00965496275609, -68.58493589623663 -49.98041796272886, -68.50903589616594 -50.072917962815005, -68.37319989603944 -50.15520896289164, -68.42361789608638 -50.195281962928966, -68.8206998964562 -50.306254963032316, -68.94111789656834 -50.38806396310851, -69.10278189671891 -50.593608963299936, -69.14576389675894 -50.74375496343977, -69.14361789675694 -50.881672963568214, -69.40597289700128 -51.0796549637526, -69.19250889680248 -50.96680896364751, -68.96431789658996 -51.50444496414822, -68.97007289659531 -51.57278196421186, -69.0544548966739 -51.56778196420721, -69.13084589674504 -51.609999964246526, -69.37445489697193 -51.55639996419661, -69.60951789719084 -51.62417296425972, -69.38764589698421 -51.59209096422985, -69.17917289679005 -51.634172964269034, -68.99014589661401 -51.62444496425998, -68.68749989633216 -52.02222696463044, -68.40779089607165 -52.28389096487413, -68.38279089604836 -52.327363964914625, -68.42090889608387 -52.372508964956666, -68.44175489610328 -52.37778196496158, -68.43583589609777 -52.328754964915916, -68.82860889646356 -52.27972696487026, -69.23360889684075 -52.14333596474323, -69.4613998970529 -52.14361796474349, -69.99833589755296 -51.99639096460638, -71.91057289933387 -51.99583596460586, -71.95959089937952 -51.85459096447432, -72.13556389954341 -51.740008964367604, -72.28924589968653 -51.696254964326855, -72.40055489979021 -51.51361796415676, -72.34758189974087 -51.484790964129914, -72.31167289970742 -51.31139096396842, -72.24962689964964 -51.237854963899935, -72.37604589976738 -51.158963963826466, -72.39521789978524 -51.10812696377912, -72.33410889972832 -51.03430896371037, -72.26583589966474 -51.01069996368838, -72.24264589964314 -50.854590963543, -72.33861789973251 -50.731672963428515, -72.29389089969087 -50.65291796335517, -72.49125489987468 -50.60306396330874, -72.6394549000127 -50.671944963372894, -72.76611790013065 -50.620699963325166, -72.90610890026103 -50.667499963368755, -73.0180639003653 -50.74945496344508, -73.13709090047615 -50.76986396346409, -73.17652690051288 -50.73972696343602, -73.22889990056166 -50.598063963304085, -73.27750890060693 -50.32847296305301, -73.33209090065776 -50.249590962979546, -73.53625490084791 -50.12013596285898, -73.4699999007862 -50.00167296274865, -73.55424590086466 -49.940663962691836, -73.52902690084117 -49.85270896260992, -73.44646390076429 -49.790908962552365, -73.5154269008285 -49.60513596237935, -73.58229990089079 -49.54083596231946, -73.5400089008514 -49.44319996222853, -73.46473590078129 -49.311390962105776, -73.13612690047526 -49.30417296209905, -73.08673590042926 -49.26736396206478, -73.16769090050465 -49.25263596205106, -73.17681790051316 -49.22180896202235, -73.00639090035443 -48.99833596181422, -72.75528190012056 -48.92806396174878, -72.56111789993973 -48.79944496162899, -72.59556389997182 -48.473063961325025, -72.29188189968899 -48.34778196120835, -72.321954899717 -48.0783359609574, -72.5150178998968 -47.96110896084823, -72.53507289991548 -47.91549096080574, -72.32959989972412 -47.59583596050804, -72.30826389970424 -47.5054909604239, -72.3593088997518 -47.47812696039842, -72.35014589974325 -47.449999960372224, -72.15903589956527 -47.411108960336, -72.01737289943334 -47.27749996021157, -71.86791789929414 -47.21861796015673, -71.86250889928911 -47.13972696008326, -71.97639089939517 -47.03444495998521, -71.93924589936057 -46.816254959782, -71.8137548992437 -46.786044959753866, -71.67285489911248 -46.6839639596588, -71.67056389911035 -46.53833595952317, -71.72500889916105 -46.43055495942279, -71.74660889918117 -46.247017959251856, -71.90180889932572 -46.149099959160665, -71.7659728991992 -46.117090959130856, -71.60444589904877 -45.976944959000335, -71.64973589909094 -45.883608958913406, -71.75375489918783 -45.84909995888127, -71.79222689922365 -45.72903595876945, -71.78195489921409 -45.655008958700506, -71.75049089918478 -45.55854495861067, -71.46750889892124 -45.47749995853519, -71.29861789876394 -45.3050729583746, -71.32944589879266 -45.231254958305854, -71.58264589902846 -44.97541795806759, -72.06681789947939 -44.901672957998905, -72.0754268994874 -44.766390957872915, -71.84111789926918 -44.7923639578971, -71.77132689920418 -44.755344957862626, -71.65362689909458 -44.78278195788818, -71.49167289894373 -44.743754957851834, -71.36972689883017 -44.796390957900854, -71.27792689874467 -44.79819995790254, -71.22590889869623 -44.74680895785468, -71.23201789870191 -44.66333595777694, -71.18994589866273 -44.59188195771039, -71.14500889862089 -44.58667295770554, -71.10875489858712 -44.53528195765768, -71.1956998986681 -44.43028195755989, -71.4011178988594 -44.40041795753208, -71.77862689921099 -44.40805495753919, -71.85340889928064 -44.37243595750601, -71.79729089922837 -44.328408957465015, -71.81820889924785 -44.16236395731037, -71.64667289908809 -43.93805495710147, -71.80764589923801 -43.76333595693875, -71.80736389923774 -43.73430895691172, -71.70292689914048 -43.68923595686974, -71.70174589913938 -43.601672956788185, -71.93556389935715 -43.453399956650095, -71.92973589935171 -43.38694495658821, -71.89570889932003 -43.32528195653078, -71.74015489917515 -43.29764495650504, -71.7396638991747 -43.17610895639185, -71.83556389926402 -43.13299095635169, -72.05278189946631 -43.10472695632537, -72.11806389952712 -43.039172956264316, -72.13347289954146 -42.95610895618696, -72.10196389951211 -42.85472695609254, -72.13889989954652 -42.590699955846645, -72.04479989945888 -42.36896395564014, -72.13035489953856 -42.285426955562336, -72.03833589945286 -42.14917295543544, -71.96174589938153 -42.12917295541681, -71.90722689933075 -42.176254955460664, -71.72653589916247 -42.095072955385056, -71.78778189921951 -41.8612549551673, -71.91459089933761 -41.6520909549725, -71.85000889927747 -41.549444954876904, -71.89903589932312 -41.35666395469736, -71.86139089928807 -41.241672954590264, -71.85916389928599 -41.0112819543757)), ((-68.61758189626703 -52.641508965207194, -68.29472689596635 -52.9324999654782, -68.22417289590064 -53.10625496564002, -68.29126389596313 -53.003963965544756, -68.36834589603491 -53.003890965544684, -68.54362689619816 -53.126399965658784, -68.5675088962204 -53.188054965716205, -68.54362689619816 -53.22944496575475, -68.40417289606827 -53.29722696581788, -68.16319989584386 -53.29375496581464, -67.98861789568126 -53.59222696609262, -67.5855638953059 -53.831390966315354, -67.56360889528544 -53.91861796639659, -67.26722689500941 -54.07110896653861, -66.7036088944845 -54.289172966741695, -66.54959089434107 -54.4122269668563, -66.24167289405429 -54.537781966973235, -65.70584589355526 -54.671672967097926, -65.29722689317471 -54.63360896706248, -65.14007289302835 -54.65326396708078, -65.35056389322439 -54.92778196733645, -65.48583589335037 -54.902499967312906, -65.70668189355605 -54.925563967334384, -65.8886268937255 -54.89222696730334, -66.10417289392623 -54.97999996738508, -66.375563894179 -54.98639096739103, -66.4461178942447 -55.05167296745183, -66.63223589441803 -55.029726967431394, -66.79639989457092 -54.945554967353004, -67.02166389478072 -54.90749996731756, -67.71417289542566 -54.88694496729842, -68.24556389592057 -54.816944967233226, -68.49250889615055 -54.85556396726919, -68.5755638962279 -54.835835967250816, -68.63583589628404 -54.78833596720658, -68.61758189626703 -52.641508965207194)), ((-64.67834589259833 -54.90722696731731, -64.66930889258991 -54.86917296728186, -64.75556389267025 -54.8315269672468, -64.69278189261178 -54.77694496719597, -64.59834589252382 -54.79944496721693, -64.33750889228091 -54.727781967150186, -63.813754891793124 -54.72861796715097, -63.86861789184421 -54.78430896720283, -63.95472689192441 -54.81195496722858, -64.01139989197719 -54.77861796719753, -64.2575088922064 -54.8409729672556, -64.26529089221364 -54.806117967223145, -64.32639989227056 -54.788608967206834, -64.67834589259833 -54.90722696731731)), ((-61.89333589000459 -39.24361795272943, -62.061117890160844 -39.16667295265777, -62.092363890189944 -39.087645952584175, -61.88999989000149 -39.140490952633385, -61.85972688997329 -39.218335952705885, -61.89333589000459 -39.24361795272943)), ((-68.63612689628431 -54.804772967221886, -68.55789989621145 -54.875017967287306, -68.55961789621306 -54.881008967292885, -68.64310889629081 -54.888608967299966, -68.63612689628431 -54.804772967221886))) +BOL Bolivia MULTIPOLYGON (((-62.198835890289104 -20.471390935246433, -62.26944589035487 -20.562226935331026, -62.26778189035332 -20.62194593538665, -62.26528189035099 -20.742226935498664, -62.26416389034995 -20.810835935562565, -62.26109089034709 -21.000517935739225, -62.25889989034505 -21.056945935791774, -62.377781890455765 -21.426390936135846, -62.47055489054216 -21.71417293640387, -62.47480889054613 -21.728063936416802, -62.486117890556656 -21.764999936451204, -62.52444589059236 -21.883608936561657, -62.60110889066375 -22.12055493678234, -62.63417289069454 -22.221945936876764, -62.64377289070349 -22.23889993689255, -62.65722689071602 -22.23625493689009, -62.765008890816404 -22.154726936814157, -62.79236389084187 -22.115417936777547, -62.79306389084253 -22.093754936757378, -62.792781890842264 -22.058890936724907, -62.80069989084964 -22.017017936685903, -62.81719089086499 -21.997381936667622, -62.886117890929185 -21.99778193666799, -63.130281891156585 -22.000554936670582, -63.59333589158784 -22.003335936673167, -63.68583589167399 -22.00305493667291, -63.733063891717975 -22.002781936672648, -63.94111789191173 -22.00083593667084, -63.993054891960114 -22.09444593675802, -64.05862689202118 -22.249726936902633, -64.12668189208456 -22.41028193705216, -64.17264589212736 -22.470417937108166, -64.19939089215227 -22.49499993713107, -64.22307289217433 -22.512917937147748, -64.24417289219397 -22.54972693718203, -64.25334589220252 -22.567781937198845, -64.27987289222723 -22.645554937271285, -64.28611789223304 -22.727499937347602, -64.28389089223097 -22.754445937372694, -64.30139089224727 -22.83249993744539, -64.31639089226124 -22.86055493747152, -64.33827289228162 -22.86979093748012, -64.34807289229074 -22.84305493745522, -64.34778189229047 -22.814163937428305, -64.35250889229488 -22.767226937384592, -64.36306389230471 -22.736945937356396, -64.41639989235438 -22.683608937306715, -64.45313589238859 -22.643963937269802, -64.45528189239059 -22.615554937243346, -64.44389089237998 -22.579999937210232, -64.4619458923968 -22.514445937149176, -64.52611789245655 -22.40889093705087, -64.54008189246956 -22.28659993693698, -64.54695489247597 -22.26056393691273, -64.59264589251852 -22.21319993686862, -64.6835728926032 -22.175435936833452, -64.71569989263313 -22.182090936839643, -64.96945489286945 -22.107635936770308, -64.98834589288704 -22.090835936754658, -65.19019989307503 -22.094726936758278, -65.59889089345566 -22.099999936763197, -65.65749989351025 -22.108890936771473, -65.7500088935964 -22.110072936772568, -65.81279089365486 -22.07139093673655, -65.86750889370583 -22.00555493667524, -65.9261178937604 -21.933335936607975, -66.07751789390142 -21.83194593651355, -66.19473589401058 -21.788335936472933, -66.22300889403691 -21.780517936465657, -66.23625489404925 -21.796963936480964, -66.26306389407422 -21.902226936578998, -66.28195489409181 -21.978054936649627, -66.29126389410048 -22.035281936702916, -66.30694589411509 -22.076945936741723, -66.34538189415088 -22.116626936778673, -66.40223589420383 -22.134163936795005, -66.49556389429075 -22.1611089368201, -66.5597178943505 -22.17833593683615, -66.61639089440328 -22.191945936848825, -66.68889989447081 -22.196108936852696, -66.73668189451531 -22.22749993688194, -66.77139089454764 -22.37499993701931, -66.77473589455074 -22.426945937067686, -66.8502818946211 -22.453054937092006, -66.92639089469199 -22.47805493711529, -67.02250889478151 -22.523890937157972, -67.01806389477737 -22.57389093720454, -67.01264589477232 -22.634172937260686, -67.12445489487645 -22.719581937340223, -67.18362689493156 -22.82166393743529, -67.33500889507255 -22.852781937464272, -67.49999989522621 -22.88543593749469, -67.57918189529995 -22.901108937509278, -67.7933358954994 -22.878054937487818, -67.87639989557675 -22.82805493744125, -67.88417289558399 -22.712781937333887, -67.84972689555191 -22.554863937186823, -67.89056389558995 -22.42639093706717, -67.93278189562926 -22.300281936949716, -67.92291789562007 -22.27389093692514, -67.92264589561982 -22.239172936892814, -67.94445489564013 -22.10472693676759, -67.97278189566651 -22.0602819367262, -67.99694589568902 -22.046945936713783, -68.08515489577117 -21.961672936634372, -68.08750889577337 -21.913063936589097, -68.08611789577206 -21.88028193655856, -68.08750889577337 -21.842781936523636, -68.09056389577621 -21.819999936502427, -68.10514589578979 -21.745281936432832, -68.12194589580544 -21.698063936388863, -68.1387638958211 -21.66694593635988, -68.1700088958502 -21.6277819363234, -68.1861178958652 -21.609726936306586, -68.18860889586752 -21.29694593601529, -68.22980889590589 -21.233199935955923, -68.42403589608678 -20.938890935681826, -68.45360889611432 -20.939445935682343, -68.47889989613788 -20.941672935684423, -68.50569989616284 -20.937645935680663, -68.53181789618716 -20.926390935670184, -68.55257289620648 -20.904717935649998, -68.55769089621126 -20.89445493564044, -68.56000889621342 -20.891390935637588, -68.56556389621859 -20.870281935617925, -68.56499989621807 -20.733817935490833, -68.52889089618444 -20.687645935447833, -68.50917289616606 -20.671672935432966, -68.4721638961316 -20.650690935413422, -68.4670178961268 -20.63062693539473, -68.49250889615055 -20.604726935370607, -68.54945489620359 -20.567499935335945, -68.5708458962235 -20.558890935327923, -68.5997268962504 -20.549999935319647, -68.62944589627809 -20.53860893530903, -68.66195489630836 -20.523054935294553, -68.69098189633539 -20.504999935277738, -68.72472689636682 -20.470835935245915, -68.73918189638029 -20.45028193522677, -68.75222689639243 -20.42402693520232, -68.75479989639483 -20.373545935155306, -68.7350088963764 -20.352226935135448, -68.70360889634715 -20.33805493512226, -68.72111789636345 -20.237781935028863, -68.76645489640568 -20.13646393493451, -68.78465489642264 -20.114445934914002, -68.77722689641571 -20.08916393489045, -68.65055489629775 -20.056663934860183, -68.61063589626056 -20.0517359348556, -68.57778189622996 -20.053545934857283, -68.52334589617926 -19.91639093472955, -68.56695489621988 -19.833890934652715, -68.62610889627497 -19.78583593460796, -68.68972689633422 -19.742672934567764, -68.68715489633183 -19.703681934531446, -68.60196389625249 -19.60778193444213, -68.5725548962251 -19.566535934403717, -68.55139089620539 -19.539717934378743, -68.44368189610508 -19.43364593427995, -68.49167289614977 -19.369026934219775, -68.55125489620526 -19.319308934173478, -68.5826458962345 -19.303754934158988, -68.60833589625842 -19.297226934152903, -68.64223589628999 -19.2820819341388, -68.65833589630499 -19.2673639341251, -68.74084589638183 -19.17778193404166, -68.78249989642063 -19.14194593400829, -68.89987289652994 -19.064790933936436, -68.96583589659137 -18.953054933832377, -68.93278189656058 -18.88278193376692, -68.95139989657793 -18.845835933732516, -69.00056389662372 -18.7430549336368, -69.02444589664596 -18.658608933558142, -69.02917289665035 -18.611390933514173, -69.03249989665346 -18.559999933466315, -69.025554896647 -18.50749993341742, -69.02347289664505 -18.483472933395035, -69.03014589665126 -18.459172933372415, -69.03973589666019 -18.440972933355454, -69.06028189667933 -18.41430893333063, -69.07472689669278 -18.392226933310056, -69.08555489670287 -18.285835933210976, -69.09098189670792 -18.228126933157228, -69.11444589672978 -18.200835933131813, -69.1354178967493 -18.179590933112024, -69.14889989676186 -18.150690933085116, -69.13959089675319 -18.12514593306132, -69.11868189673372 -18.108890933046183, -69.08236389669989 -18.086945933025746, -69.07319989669136 -18.068335933008413, -69.07167289668993 -18.03889093298099, -69.07493589669298 -18.03791793298008, -69.13361789674762 -18.028890932971677, -69.29125489689444 -17.97944593292563, -69.30611789690828 -17.955699932903514, -69.31529089691682 -17.926945932876734, -69.32139989692251 -17.891945932844138, -69.31869089691999 -17.82513593278192, -69.32737289692808 -17.797499932756182, -69.35556389695434 -17.745554932707805, -69.37610889697346 -17.72694593269047, -69.48722689707695 -17.632917932602894, -69.49972689708859 -17.505281932484024, -69.50056389708938 -17.426945932411073, -69.50110889708988 -17.378890932366318, -69.53361789712015 -17.34778193233734, -69.59083589717345 -17.295281932288447, -69.65619089723431 -17.287245932280968, -69.61889989719958 -17.214726932213424, -69.59279089717526 -17.184717932185478, -69.53153589711822 -17.1298639321344, -69.4653818970566 -17.097045932103825, -69.40639989700168 -17.07222693208071, -69.38694589698356 -17.052917932062726, -69.32069989692187 -16.92625493194477, -69.19195489680196 -16.77805493180675, -69.10764589672344 -16.711599931744857, -69.05070889667041 -16.683754931718923, -69.01239089663473 -16.65698193169399, -69.01432689663653 -16.629363931668266, -69.032017896653 -16.60860893164893, -69.04139989666174 -16.547645931592157, -69.03418189665503 -16.473054931522697, -68.99084589661466 -16.419726931473022, -68.83334589646797 -16.354026931411838, -68.8242458964595 -16.32631793138603, -68.83848189647276 -16.298399931360038, -68.89289989652345 -16.28361793134627, -68.93256389656038 -16.250554931315477, -68.96819989659357 -16.209099931276867, -69.04472689666484 -16.207781931275633, -69.07069989668904 -16.227572931294063, -69.14000889675359 -16.222226931289086, -69.15972689677194 -16.211872931279444, -69.21381789682232 -16.157217931228544, -69.42098189701525 -15.621526930729644, -69.33250889693286 -15.438890930559552, -69.2683358968731 -15.326945930455295, -69.1959818968057 -15.26166393039449, -69.1698728967814 -15.263335930396053, -69.14313589675649 -15.254445930387774, -69.13709089675086 -15.227635930362808, -69.1708358967823 -15.187781930325684, -69.19778189680738 -15.158608930298513, -69.29500889689794 -15.079445930224793, -69.38139089697839 -14.964790930118014, -69.36479989696294 -14.80062692996512, -69.34348189694308 -14.77986392994579, -69.31056389691243 -14.766945929933755, -69.248899896855 -14.687499929859769, -69.24860889685472 -14.654163929828712, -69.24473589685111 -14.616390929793539, -69.23541789684243 -14.588954929767993, -69.11557289673082 -14.484163929670387, -68.98423589660851 -14.378126929571636, -68.999799896623 -14.336045929532446, -69.0023728966254 -14.248754929451152, -68.98639989661052 -14.231663929435229, -68.95889989658491 -14.223890929427995, -68.91278189654196 -14.216945929421527, -68.85789089649084 -14.200135929405874, -68.89860889652876 -14.03180892924911, -68.93737289656487 -14.005417929224521, -68.96097289658684 -13.987081929207449, -68.97514589660004 -13.966254929188054, -69.00168189662476 -13.839445929069953, -69.01417289663638 -13.79110892902493, -69.06279089668166 -13.707781928947327, -69.02309089664469 -13.642045928886105, -68.97917289660379 -13.566108928815382, -68.9612548965871 -13.506808928760165, -68.95945489658543 -13.45278192870984, -68.96055489658646 -13.272499928541947, -68.9683358965937 -13.166108928442853, -68.96848189659383 -13.096663928378177, -68.96334589658905 -13.026672928313005, -68.97334589659836 -13.00194592828997, -68.97334589659836 -12.865490928162885, -68.92222689655075 -12.80278192810448, -68.87944589651092 -12.757499928062316, -68.81556389645142 -12.73305492803955, -68.76834589640744 -12.644163927956754, -68.74361789638441 -12.5847269279014, -68.67390889631949 -12.501154927823578, -68.67750889632285 -12.495835927818618, -68.69862689634252 -12.454172927779823, -68.73639089637769 -12.37805492770893, -68.74945489638985 -12.350281927683056, -68.83555489647004 -12.17694592752163, -68.88028189651169 -12.08694592743781, -68.9252818965536 -11.998335927355285, -68.95722689658335 -11.944726927305354, -68.98722689661129 -11.896108927260073, -69.00083589662397 -11.875281927240678, -69.03946389665994 -11.81278192718247, -69.06945489668787 -11.76416392713719, -69.18055489679135 -11.583608926969035, -69.21473589682317 -11.528054926917306, -69.248899896855 -11.472499926865567, -69.432508897026 -11.173608926587193, -69.50056389708938 -11.062499926483724, -69.56843589715258 -10.951090926379962, -69.56750889715173 -10.950554926379468, -69.54055489712663 -10.95221792638101, -69.4869548970767 -10.951108926379973, -69.44764589704009 -10.947635926376748, -69.4122268970071 -10.937781926367563, -69.22278189683067 -10.950835926379725, -69.07612689669409 -10.967226926394986, -68.84889089648246 -11.01610892644051, -68.76183589640138 -11.003317926428608, -68.76670889640592 -11.137117926553216, -68.70056389634432 -11.134726926550982, -68.65472689630163 -11.124445926541412, -68.62083589627007 -11.11639092653391, -68.57645489622873 -11.103072926521506, -68.55222689620616 -11.088890926508299, -68.52257289617854 -11.059308926480753, -68.40250889606673 -11.017781926442069, -68.34403589601227 -11.00687292643191, -68.31306389598343 -10.9966639264224, -68.28090889595349 -10.979726926406627, -68.23028189590633 -10.911663926343238, -68.1245998958079 -10.759308926201356, -68.11896389580266 -10.731945926175868, -68.10196389578682 -10.70528192615103, -68.08222689576844 -10.690281926137061, -68.06110889574877 -10.676390926124128, -68.0176458957083 -10.660281926109121, -67.86584589556692 -10.656945926106019, -67.83668189553977 -10.659308926108224, -67.81750889552191 -10.665281926113778, -67.7872268954937 -10.684163926131362, -67.74237289545194 -10.712917926158141, -67.70333589541558 -10.6947269261412, -67.67499989538919 -10.619999926071614, -67.6097358953284 -10.53013592598792, -67.58250889530305 -10.504445925963992, -67.52917289525337 -10.481108925942252, -67.50917289523474 -10.472781925934498, -67.44944589517912 -10.441663925905516, -67.32667289506477 -10.358963925828505, -67.32327289506162 -10.323472925795443, -67.3002908950402 -10.3166639257891, -67.22541789497048 -10.311945925784713, -67.18320889493117 -10.32368192579564, -67.07695489483221 -10.268754925744489, -67.04639989480376 -10.243608925721063, -66.97083589473338 -10.172226925654584, -66.95000889471399 -10.151390925635184, -66.92528189469095 -10.123190925608924, -66.8937548946616 -10.09152692557943, -66.76028189453729 -9.990835925485655, -66.73222689451116 -9.97694592547272, -66.69348189447507 -9.963190925459912, -66.65923589444319 -9.948545925446268, -66.6425088944276 -9.930135925429127, -66.64025489442551 -9.91827292541808, -66.6304818944164 -9.905763925406418, -66.54569989433745 -9.8879179253898, -66.47931789427562 -9.88180892538412, -66.43709089423629 -9.888608925390443, -66.38334589418623 -9.866663925370005, -66.17499989399221 -9.797226925305338, -66.07764589390153 -9.775554925285164, -65.9719548938031 -9.77972692528904, -65.84389989368384 -9.77778192528723, -65.79223589363572 -9.774999925284646, -65.74583589359251 -9.770554925280507, -65.60598189346226 -9.834926925340454, -65.5693088934281 -9.835135925340651, -65.51569989337818 -9.773963925283681, -65.51221789337494 -9.741390925253341, -65.49250889335659 -9.719163925232635, -65.44233589330986 -9.679190925195414, -65.40688189327683 -9.686254925201993, -65.37695489324896 -9.7033359252179, -65.34194589321636 -9.762499925273005, -65.30180889317897 -9.842154925347188, -65.32271789319846 -9.903545925404359, -65.33645489321124 -9.947081925444905, -65.33041789320562 -10.043890925535067, -65.31306389318947 -10.075281925564298, -65.3037548931808 -10.1008359255881, -65.28861789316669 -10.195417925676182, -65.2891728931672 -10.217781925697011, -65.31152689318803 -10.288754925763115, -65.32472689320032 -10.306808925779933, -65.34792689322192 -10.325554925797391, -65.37819989325013 -10.354863925824688, -65.38889989326009 -10.372499925841112, -65.39584589326655 -10.393335925860512, -65.3957728932665 -10.393581925860744, -65.39125489326229 -10.41375492587953, -65.40236389327262 -10.442217925906036, -65.44197289330951 -10.473481925935147, -65.43806389330588 -10.618754926070451, -65.39001789326113 -10.755835926198117, -65.32919089320448 -10.851890926287581, -65.31584589319205 -10.880835926314532, -65.30265489317976 -10.985554926412064, -65.34333589321766 -11.058054926479585, -65.39361789326448 -11.149445926564695, -65.40194589327224 -11.169726926583579, -65.39070889326177 -11.274726926681367, -65.34834589322232 -11.40472692680244, -65.31028189318687 -11.494135926885718, -65.28973589316773 -11.504999926895835, -65.24153589312284 -11.505972926896732, -65.22292689310551 -11.518754926908642, -65.16945489305571 -11.614726926998017, -65.1883358930733 -11.656390927036824, -65.20083589308494 -11.68555492706399, -65.2091638930927 -11.711672927088316, -65.19174589307647 -11.752017927125877, -65.14951789303714 -11.77215492714464, -65.11838189300815 -11.698954927076471, -65.06237289295599 -11.75486392712854, -65.04333589293826 -11.80971792717962, -65.03557289293103 -11.88167292724664, -65.01695489291369 -11.9699999273289, -65.00834589290567 -11.989445927347006, -64.98430889288328 -12.011108927367175, -64.89611789280114 -12.023335927378568, -64.83584589274501 -12.023199927378442, -64.80959089272056 -12.028608927383473, -64.79111789270335 -12.041526927395509, -64.76333589267749 -12.097781927447897, -64.73861789265446 -12.150072927496595, -64.61765489254181 -12.210972927553314, -64.51653589244764 -12.242217927582416, -64.4969458924294 -12.366254927697938, -64.42139989235903 -12.441108927767644, -64.39944589233859 -12.45809092778346, -64.37306389231402 -12.468335927793007, -64.29330889223974 -12.482072927805802, -64.23889089218906 -12.479172927803106, -64.17639089213085 -12.485554927809048, -64.03951789200337 -12.51799092783925, -64.02000889198521 -12.537081927857031, -63.92796389189948 -12.547272927866516, -63.89860889187214 -12.528608927849135, -63.87056389184603 -12.493890927816807, -63.83250889181059 -12.474163927798429, -63.79749989177799 -12.459999927785248, -63.67195489166106 -12.470554927795078, -63.47139089147427 -12.570417927888073, -63.46436389146773 -12.595917927911827, -63.41555489142226 -12.653890927965818, -63.394617891402774 -12.6683639279793, -63.32487289133782 -12.704208928012676, -63.24709089126537 -12.705835928014196, -63.216108891236516 -12.680899927990978, -63.16333589118737 -12.648890927961162, -63.133345891159436 -12.635881927949043, -63.06709989109774 -12.659872927971392, -63.062299891093275 -12.6978909280068, -63.04917289108104 -12.747499928053003, -62.99417289102982 -12.839335928138524, -62.97376389101082 -12.85289992815116, -62.89666389093901 -12.900281928195284, -62.843845890889824 -12.942335928234456, -62.76972689082079 -13.005835928293592, -62.688254890744915 -12.96859992825891, -62.64586389070544 -13.007363928295021, -62.645481890705085 -13.032363928318304, -62.41921789049435 -13.132517928411573, -62.38472689046223 -13.145835928423978, -62.33083589041205 -13.147781928425786, -62.26852689035401 -13.140890928419367, -62.24459089033172 -13.126672928406137, -62.21375489030301 -13.120972928400818, -62.1136728902098 -13.153708928431314, -62.10972689020612 -13.183335928458902, -62.0855548901836 -13.27139092854091, -62.002499890106265 -13.362217928625498, -61.972945890078734 -13.375426928637808, -61.9444548900522 -13.395835928656808, -61.87418188998676 -13.453945928710922, -61.868445889981416 -13.48088192873601, -61.84030888995521 -13.538745928789908, -61.81006388992704 -13.548663928799144, -61.730181889852645 -13.536881928788162, -61.61639088974667 -13.513054928765982, -61.59352688972537 -13.50723592876055, -61.57749988971045 -13.525972928778003, -61.521135889657955 -13.550381928800746, -61.492781889631544 -13.553335928803492, -61.261645889416286 -13.523090928775318, -61.03898188920891 -13.49311792874741, -61.00417288917649 -13.54083592879185, -60.95778188913329 -13.582781928830912, -60.791599888978524 -13.679454928920947, -60.770654888959015 -13.683299928924527, -60.74429088893446 -13.682363928923664, -60.67556388887046 -13.738608928976035, -60.58333588878456 -13.768608929003975, -60.47680888868534 -13.803472929036445, -60.38449988859938 -13.987254929207609, -60.40055488861432 -14.029726929247161, -60.42583588863788 -14.067081929281954, -60.464863888674216 -14.101808929314302, -60.48199988869018 -14.167863929375812, -60.450517888660855 -14.291126929490616, -60.4274728886394 -14.324299929521501, -60.34650888856399 -14.483417929669699, -60.281108888503084 -14.623335929800007, -60.27611788849843 -14.706663929877607, -60.26445488848758 -14.913608930070339, -60.259999888483435 -15.036663930184943, -60.258899888482404 -15.093608930237977, -60.2924998885137 -15.094445930238763, -60.38472688859959 -15.092499930236954, -60.57139988877344 -15.09749993024161, -60.43972688865081 -15.241390930375616, -60.227226888452904 -15.478608930596536, -60.18430888841293 -15.980417931063883, -60.16028188839056 -16.26305493132712, -60.106672888340626 -16.265835931329704, -60.00556388824647 -16.269999931333587, -59.53278188780615 -16.289172931351445, -59.489726887766054 -16.290835931352987, -58.97278188728461 -16.310835931371614, -58.54194588688337 -16.32666393138635, -58.439172886787645 -16.329726931389203, -58.41500888676515 -16.319999931380153, -58.40069988675182 -16.3055549313667, -58.388890886740825 -16.282917931345608, -58.32750888668366 -16.27916393134211, -58.3258358866821 -16.306663931367723, -58.324445886680806 -16.396117931451045, -58.34639088670124 -16.50610893155347, -58.36209088671586 -16.525835931571848, -58.3977818867491 -16.553054931597202, -58.41944588676928 -16.573608931616334, -58.43167288678066 -16.58999993163161, -58.46791788681442 -16.64402693168192, -58.47577288682173 -16.674635931710426, -58.476390886822315 -16.72167293175424, -58.463481886810285 -16.900690931920963, -58.45875488680589 -16.924445931943083, -58.44513588679321 -16.95278193196947, -58.4351458867839 -16.97097293198641, -58.42444588677394 -17.009726932022502, -58.40736388675802 -17.11208193211783, -58.40667288675738 -17.138335932142283, -58.40944588675997 -17.19055493219092, -58.403063886754026 -17.22639093222429, -58.39041788674224 -17.2595819322552, -58.371117886724264 -17.278890932273185, -58.35110888670563 -17.287226932280944, -58.32194588667848 -17.292917932286244, -58.294445886652866 -17.299726932292586, -58.24999988661148 -17.326117932317175, -58.12056388649093 -17.412781932397877, -58.108890886480054 -17.438890932422197, -58.091663886464005 -17.45555493243772, -58.01667288639416 -17.49763593247691, -57.98355488636332 -17.500690932479756, -57.90167288628706 -17.46194593244367, -57.88083588626766 -17.47694593245764, -57.78806388618126 -17.55360893252903, -57.74550888614162 -17.593890932566552, -57.76583588616056 -17.61278193258414, -57.77948188617327 -17.6377459326074, -57.759172886154346 -17.686945932653217, -57.729454886126675 -17.72055493268452, -57.71728188611533 -17.727581932691066, -57.718172886116164 -17.738581932701308, -57.721117886118904 -17.774999932735227, -57.71889088611684 -17.84499993280042, -57.581672885989036 -18.096108933034273, -57.52111788593264 -18.20389093313466, -57.55236388596174 -18.246808933174634, -57.563335885971966 -18.274726933200625, -57.62694588603121 -18.468054933380685, -57.770281886164696 -18.906108933788644, -57.7230358861207 -18.91360893379563, -57.71666388611476 -18.93444593381504, -57.70472688610364 -19.0436089339167, -57.776672886170644 -19.047499933920335, -57.78722688618048 -19.06805493393948, -57.821399886212305 -19.137217934003885, -57.85499988624359 -19.20639093406831, -57.960554886341896 -19.421108934268275, -58.087226886459874 -19.677226934506805, -58.12111788649143 -19.741390934566567, -58.10333588647488 -19.760281934584157, -57.851872886240685 -19.975508934784614, -57.90083588628629 -20.029026934834448, -58.10972688648083 -20.14917293494635, -58.15889088652662 -20.168054934963934, -58.13722688650644 -20.116390934915813, -58.13305488650255 -20.08222693488399, -58.131254886500884 -19.986117934794493, -58.15097288651924 -19.831108934650118, -58.232226886594916 -19.782499934604857, -58.26805488662828 -19.76416393458777, -58.52056388686346 -19.638617934470858, -58.79261788711682 -19.501508934343164, -59.09583588739922 -19.348890934201023, -59.156390887455615 -19.34555493419792, -59.42833588770888 -19.329999934183434, -59.57361788784418 -19.32166393417566, -59.981808888224336 -19.296808934152523, -60.018526888258535 -19.302072934157422, -60.05749988829484 -19.3147269341692, -60.42444588863658 -19.410835934258714, -60.51639988872222 -19.434717934280954, -60.6133358888125 -19.459163934303717, -60.796390888982984 -19.4902819343327, -61.3572268895053 -19.58305493441911, -61.66889088979556 -19.633335934465933, -61.74249988986412 -19.6449999344768, -61.77444588989387 -19.724726934551043, -61.84749988996191 -19.910835934724375, -61.913072890022974 -20.08000893488193, -62.10195489019888 -20.33749993512174, -62.198835890289104 -20.471390935246433))) +BRA Brazil MULTIPOLYGON (((-44.695008873987405 -1.8177819178739014, -44.53889087384201 -1.8322179178873483, -44.48972687379623 -1.9866639180311836, -44.65493587395008 -2.323681918345059, -44.450835873759985 -2.1463909181799465, -44.36055487367591 -2.3419459183620717, -44.58209087388224 -2.566808918571496, -44.625972873923104 -3.0551359190262843, -44.78639087407251 -3.2974999192520045, -44.42306387373412 -2.9344459189138803, -44.356945873672544 -2.5266639185340978, -44.0633358733991 -2.405835918421573, -44.04194587337918 -2.547635918553638, -44.340354873657105 -2.8273639188141573, -44.19062687351766 -2.763399918754587, -44.198335873524826 -2.868890918852827, -43.92833587327337 -2.5484729185544097, -43.448335872826334 -2.5377819185444537, -43.4777088728537 -2.3827819184000987, -43.34749987273244 -2.3658359183843203, -42.235835871697105 -2.8377819188238504, -41.95209087143286 -2.844999918830581, -41.87083587135717 -2.7322179187255387, -41.24807287077718 -3.023554918996865, -41.222781870753636 -2.8802819188634317, -39.99875486961366 -2.846526918831998, -38.49653586821461 -3.7248639196500193, -37.17444586698332 -4.91860892076177, -36.68458186652711 -5.098472920929282, -35.97430886586562 -5.049163920883359, -35.47972686540501 -5.166108920992272, -35.22556386516828 -5.583608921381099, -34.980281864939855 -6.406390922147381, -34.9012908648663 -7.125254922816879, -34.831290864801105 -6.981799922683265, -34.830981864800805 -8.00930892364022, -35.32750886526324 -9.228890924776039, -36.389863866252625 -10.489163925949754, -37.01194586683198 -10.929726926360061, -37.032299866850934 -10.928754926359161, -37.02528186684441 -10.858890926294094, -37.09222686690677 -10.743890926186992, -37.155699866965875 -10.754026926196431, -37.0730638668889 -10.967226926394986, -37.15451786696477 -11.099790926518452, -37.27562686707756 -11.025208926448997, -37.20722686701387 -11.219445926629888, -37.37188186716722 -11.42986392682586, -37.29014586709107 -11.21125492662226, -37.34236386713971 -11.18749992660014, -37.61749986739596 -11.974999927333556, -38.04139086779074 -12.633054927946418, -38.47465486819425 -13.01659992830362, -38.5073638682247 -12.726454928033405, -38.69799086840223 -12.581108927898029, -38.818263868514265 -12.843545928142447, -38.90111786859143 -12.705554928013939, -38.85764586855092 -12.849863928148338, -38.73013586843217 -12.871254928168256, -38.95667286864315 -13.379999928642064, -39.05709086873668 -13.380281928642319, -39.08028186875828 -13.538335928789522, -38.96347286864949 -13.68610892892714, -39.036526868717516 -14.174999929382466, -38.92069986860966 -13.92513592914976, -39.0666728687456 -14.650417929825224, -38.87194586856424 -15.874172930964946, -39.20902686887817 -17.166117932168163, -39.13222686880667 -17.686317932652628, -39.64625486928537 -18.231254933160145, -39.78750886941694 -19.60361793443826, -40.00667286962104 -19.741390934566567, -40.24055486983886 -20.28381793507174, -40.349726869940554 -20.234726935026018, -40.28222686987769 -20.34360893512742, -40.40610886999306 -20.599445935365694, -40.7618818703244 -20.854654935603378, -40.96055487050941 -21.235835935958377, -40.98722687053427 -22.008608936678073, -41.763063871256804 -22.346108936992394, -41.98743587146578 -22.56569993719691, -42.03444587150955 -22.919172937526113, -43.0941728724965 -22.953335937557924, -43.075835872479416 -22.668335937292497, -43.25430887264565 -22.736599937356075, -43.14743587254611 -22.951808937556507, -43.227226872620435 -22.999026937600476, -44.00528187334504 -23.099863937694394, -43.60680887297394 -23.018890937618977, -43.85875487320857 -22.896808937505284, -44.191945873518875 -23.051108937648976, -44.35375487366957 -22.92041793752726, -44.675208873968955 -23.05569993765326, -44.709308874000726 -23.222226937808344, -44.500763873806505 -23.289581937871077, -44.574308873875 -23.353681937930773, -44.94389087421919 -23.36222693793873, -45.410835874654055 -23.628890938187084, -45.41548187465838 -23.828054938372574, -45.890008875100335 -23.767781938316432, -46.2797268754633 -24.025835938556767, -46.31167287549303 -24.0188909385503, -46.27479987545868 -23.991045938524366, -46.305490875487266 -23.919099938457364, -46.38041787555707 -23.868754938410476, -46.43610887560894 -24.021390938552628, -48.026117877089746 -25.014999939478002, -47.914308876985615 -25.152363939605934, -48.20819987725932 -25.460135939892567, -48.134054877190266 -25.284726939729197, -48.39499987743329 -25.296108939739796, -48.4806998775131 -25.480135939911193, -48.71860887773468 -25.424726939859582, -48.36180887740238 -25.57944594000368, -48.77014587778265 -25.884099940287413, -48.58111787760663 -25.872217940276343, -48.581045877606556 -26.17569094055898, -48.69889087771631 -26.240135940619, -48.79333587780425 -26.1322269405185, -48.75556387776908 -26.28944594066492, -48.60972687763328 -26.439654940804814, -48.68471787770309 -26.7052819410522, -48.486945877518906 -27.213472941525488, -48.62056387764335 -27.237081941547473, -48.563899877590586 -27.864445942131752, -48.76180887777491 -28.490699942714997, -48.85278187785963 -28.320281942556285, -48.842508877850065 -28.617781942833354, -49.75249987869756 -29.369726943533657, -50.74945487962603 -31.081108945127504, -52.06965488085558 -32.171945946143424, -52.08674588087149 -31.826808945821988, -51.86125488066148 -31.872917945864934, -51.251399880093516 -31.471672945491243, -51.158963880007434 -31.077845945124466, -50.97083587983221 -31.122217945165787, -50.95694587981927 -30.930554944987286, -50.70361787958336 -30.75139094482043, -50.68695487956782 -30.472499944560695, -50.56809987945715 -30.45755494454677, -50.604999879491515 -30.194026944301342, -50.96639087982808 -30.40889094450145, -51.275035880115524 -30.01055494413047, -51.27729088011762 -30.799935944865638, -51.35222688018743 -30.63472694471178, -51.467781880295036 -31.06097294510875, -51.96375488075694 -31.337363945366157, -52.04263588083042 -31.634999945643358, -52.2176358809934 -31.744999945745803, -52.25471788102793 -32.055281946034775, -52.09076388087523 -32.16438194613638, -52.3759088811408 -32.50028194644921, -52.63986388138662 -33.13375494703918, -53.39763588209236 -33.74111794760483, -53.53444588221977 -33.656954947526444, -53.52104588220729 -33.14160894704649, -53.098299881813574 -32.72343594665704, -53.55333588223736 -32.44610894639876, -53.87541788253732 -31.974445945959488, -54.28583588291956 -31.804445945801163, -54.59409988320665 -31.460908945481222, -55.22875488379772 -31.249726945284543, -55.58417288412872 -30.84625494490878, -56.008917884524294 -31.079790945126277, -56.001672884517546 -30.79583594486182, -56.81139088527166 -30.105281944218696, -57.07097288551341 -30.108890944222054, -57.21389088564652 -30.292081944392663, -57.60799988601356 -30.18492694429287, -56.42739088491403 -29.069572943254116, -55.89306388441641 -28.369726942602334, -55.6975358842343 -28.407708942637704, -55.748335884281616 -28.21708194246017, -55.021663883604845 -27.833890942103295, -54.81360888341108 -27.535554941825445, -54.358063882986826 -27.456945941752238, -53.83875488250318 -27.171117941486038, -53.6500088823274 -26.24999994062818, -53.88861788254961 -25.63375494005426, -54.10757288275353 -25.49639093992633, -54.452508883074785 -25.63305494005361, -54.59891788321113 -25.573226939997895, -54.2438998828805 -24.053608938582627, -54.62569988323608 -23.80492693835103, -55.03139088361391 -23.994445938527534, -55.41209088396846 -23.954308938490158, -55.609172884152 -22.63847293726468, -55.84972688437604 -22.28889093693911, -56.20291788470497 -22.274726936925916, -56.39652688488529 -22.068681936734023, -56.87749988533322 -22.27417293692541, -57.98510888636477 -22.09182693675558, -57.81459088620596 -20.978754935718953, -58.15889088652662 -20.168054934963934, -57.851872886240685 -19.975508934784614, -58.12111788649143 -19.741390934566567, -57.70472688610364 -19.0436089339167, -57.770281886164696 -18.906108933788644, -57.52111788593264 -18.20389093313466, -57.74550888614162 -17.593890932566552, -58.39041788674224 -17.2595819322552, -58.47577288682173 -16.674635931710426, -58.32750888668366 -16.27916393134211, -60.16028188839056 -16.26305493132712, -60.227226888452904 -15.478608930596536, -60.57139988877344 -15.09749993024161, -60.258899888482404 -15.093608930237977, -60.47680888868534 -13.803472929036445, -61.03898188920891 -13.49311792874741, -61.84030888995521 -13.538745928789908, -62.1136728902098 -13.153708928431314, -62.76972689082079 -13.005835928293592, -63.06709989109774 -12.659872927971392, -63.32487289133782 -12.704208928012676, -63.67195489166106 -12.470554927795078, -64.37306389231402 -12.468335927793007, -64.51653589244764 -12.242217927582416, -65.00834589290567 -11.989445927347006, -65.39070889326177 -11.274726926681367, -65.30265489317976 -10.985554926412064, -65.44197289330951 -10.473481925935147, -65.28861789316669 -10.195417925676182, -65.40688189327683 -9.686254925201993, -65.5693088934281 -9.835135925340651, -66.07764589390153 -9.775554925285164, -66.6304818944164 -9.905763925406418, -67.58250889530305 -10.504445925963992, -67.70333589541558 -10.6947269261412, -68.06110889574877 -10.676390926124128, -68.28090889595349 -10.979726926406627, -68.62083589627007 -11.11639092653391, -69.4122268970071 -10.937781926367563, -70.63139089814254 -11.009163926434042, -70.60759089812038 -9.575663925098993, -70.51466389803383 -9.427999924961469, -71.29639089876187 -9.995417925489917, -72.18583589959023 -10.002499925496522, -72.30152689969798 -9.533190925059444, -73.2006999005354 -9.4007639249361, -72.96236390031342 -8.988472924552127, -73.53319990084506 -8.352363923959714, -73.77195490106742 -7.948054923583172, -73.7066639010066 -7.776390923423293, -74.00215490128181 -7.530454923194242, -73.93111790121564 -7.359163923034714, -73.70583590100584 -7.309235922988222, -73.74417290104154 -6.8769459225856195, -73.12389990046387 -6.447217922185402, -73.22973590056243 -6.093608921856074, -72.96195490031305 -5.648608921441635, -72.8519639002106 -5.124717920953728, -71.90248189932633 -4.518190920388861, -70.9562638984451 -4.382217920262221, -70.76243589826458 -4.1477089200438115, -70.32014589785267 -4.139717920036375, -70.19782689773875 -4.332654920216058, -69.95029089750821 -4.262499920150731, -69.37854589697574 -1.3379179174269922, -69.60653589718807 -0.5198639166651304, -70.05806389760859 -0.1574999163276516, -70.04472689759616 0.5850000843638554, -69.45928189705093 0.7366000845050422, -69.12781789674223 0.6440270844188376, -69.26487289686987 1.0338910847819278, -69.84222689740757 1.0722180848176208, -69.84609989741118 1.7104540854120245, -68.15306389583442 1.724164085424789, -68.25723589593143 1.8527820855445754, -68.19639989587478 1.977500085660722, -67.91473589561245 1.7452820854444582, -67.42257289515409 2.142845085814713, -67.07118189482684 1.6204090853281627, -67.07529089483066 1.1725000849110074, -66.87045489463989 1.2209270849561165, -66.28695489409647 0.7477820845154639, -65.59542689345243 0.9904180847414352, -65.48577289335032 0.6618730844354559, -65.1362638930248 1.118473084860696, -64.3943088923338 1.5118090852270143, -64.26445489221287 1.4761090851937695, -64.07799089203921 1.6354180853421383, -64.00236389196877 1.9498640856349851, -63.39944589140727 2.149509085820924, -63.360763891371235 2.259100085922981, -63.36541789137557 2.4200000860728323, -64.03403589199827 2.4713180861206325, -63.987854891955266 2.718609086350938, -64.20529089215776 3.1933360867930674, -64.19021789214374 3.5896540871621596, -64.62668189255022 3.9655540875122455, -64.78167289269456 4.2863910878110545, -64.59201789251793 4.1277730876633285, -64.12639089208429 4.1095820876463875, -64.01779089198314 3.886109087438257, -63.64445489163545 3.9486090874964646, -63.491526891493024 3.857782087411877, -63.335554891347755 3.9580540875052606, -62.878054890921675 3.5601360871346657, -62.73402689078755 3.6765270872430733, -62.72833589078225 4.038609087580284, -62.440135890513844 4.1826730877144485, -61.8488908899632 4.160554087693853, -61.55438188968891 4.248818087776058, -61.313608889464675 4.506664088016194, -60.987090889160584 4.519309088027967, -60.5785458887801 4.952636088431532, -60.689445888883384 5.216109088676916, -60.114581888348 5.245691088704461, -59.983063888225516 5.022500088496599, -60.14847288837956 4.52000008802861, -59.67444588793809 4.385136087903007, -59.73110888799086 4.219164087748439, -59.56860888783952 3.8994450874506725, -59.831945888084775 3.5241640871011697, -59.98847288823055 2.688191086322604, -59.893263888141874 2.3641000860207697, -59.73549088799494 2.2847180859468494, -59.675281887938866 1.7670820854647644, -58.810699887133666 1.1868730849244002, -58.51961788686258 1.2696180850014542, -58.50229088684644 1.454673085173809, -58.29722688665545 1.5827820852931183, -58.00715488638531 1.5156910852306282, -57.75944588615461 1.717845085418901, -57.52806388593912 1.7158360854170382, -57.298190885725035 1.9819450856648615, -55.94264588446258 1.856109085547672, -55.90396388442656 2.0477820857261833, -56.11583588462388 2.2491640859137334, -55.96278188448133 2.533054086178126, -55.71368188424934 2.4001360860543315, -54.96944588355622 2.550554086194424, -54.10965488275548 2.113473085787362, -53.74610888241689 2.3709730860271776, -52.95472688167986 2.176182085845767, -52.59445488134433 2.4738910861230323, -52.34493588111195 3.157400086759594, -51.77180888057819 3.9834730875289353, -51.540281880362556 4.153609087687386, -51.44778188027641 3.9725000875187106, -51.548126880369864 4.385691087903524, -51.332090880168664 4.230273087758789, -51.07944587993336 3.8868090874389054, -51.02360887988138 3.1300000867340714, -50.679726879561116 2.1647180858350907, -50.44528187934276 1.8258360855194837, -49.93208187886481 1.709927085411536, -49.87861787881502 1.4455540851653126, -50.110554879031014 1.2134000849491002, -49.92917287886209 1.250000084983185, -49.94097287887308 1.118473084860696, -50.450008879347166 0.6618090844353901, -50.760417879636265 0.195973084001551, -51.297499880136456 -0.1913909163592109, -51.70000888051132 -0.7524999168817885, -51.71229988052275 -1.0238179171344655, -51.91965488071588 -1.166735917267573, -51.927508880723195 -1.3348639174241583, -52.07556388086108 -1.4195819175030522, -52.227645881002715 -1.3449269174335257, -52.70972688145169 -1.5655549176390053, -52.293335881063896 -1.5349999176105484, -52.20847288098486 -1.6920819177568376, -51.24680888008925 -1.2082639173062404, -50.99278187985266 -0.9986089171109853, -50.99534587985505 -0.9287549170459357, -50.82646387969777 -0.9287549170459357, -50.83549087970616 -1.3401359174290661, -50.667226879549474 -1.7716639178309492, -50.814726879686845 -1.898335917948927, -51.336599880172855 -1.6474269177152507, -51.52194588034547 -2.0463909180868143, -51.47819988030474 -2.2381269182653796, -51.38841788022111 -2.3192359183409224, -51.48083588030718 -2.0723639181110087, -51.308226880146435 -1.7669089178265267, -50.99111787985112 -2.029581918071159, -51.02916387988654 -2.3449999183649197, -50.99610887985577 -2.417781918432695, -50.843817879713924 -2.5074999185162596, -51.006254879865196 -2.3398639183601375, -50.984308879844775 -2.0691639181080177, -50.839999879710376 -2.0394459180803466, -50.71645487959532 -2.223263918251533, -50.82291787969447 -1.9599999180063605, -50.67795487955945 -1.8104459178670709, -50.416390879315855 -1.952217917999107, -50.002845878930714 -1.8209729178768725, -49.63833587859122 -1.8754909179276495, -49.280908878258344 -1.7177089177806977, -49.50583587846782 -2.257499918283429, -49.4900088784531 -2.5649999185698107, -49.1905638781742 -1.89805491794867, -48.97049087796924 -1.840554917895119, -48.69722687771477 -1.4691639175492242, -48.42722687746331 -1.6602819177272181, -48.41360887745063 -1.4994459175774324, -48.188963877241406 -1.4662549175465216, -48.49972687753083 -1.4614549175420422, -48.481181877513535 -1.3048639173962187, -48.339799877381864 -1.3174999174079858, -48.23806387728712 -0.867781916989145, -47.744590876827544 -0.6373639167745608, -47.732954876816706 -0.7464549168761465, -47.54875487664515 -0.6359729167732553, -47.39806387650481 -0.8127819169379222, -47.43139987653586 -0.5824999167234637, -46.959726876096596 -0.7027819168354767, -46.959999876096845 -0.8984729170177275, -46.82667287597266 -0.7131909168451784, -46.79083587593928 -0.842217916965339, -46.601108875762606 -0.867781916989145, -46.60999987577088 -1.0374999171472155, -46.41806387559211 -1.0374999171472155, -46.19194587538152 -0.9574999170727096, -46.259445875444385 -1.177781917277855, -46.12749987532152 -1.1061089172111025, -46.04667287524623 -1.210281917308123, -45.97569987518014 -1.0774999171844684, -45.86152687507379 -1.2595179173539748, -45.73555487495648 -1.179999917279929, -45.6961818749198 -1.3686819174556462, -45.446945874687685 -1.310835917401775, -45.46222687470194 -1.5455549176203789, -45.324726874573884 -1.314717917405389, -45.350699874598064 -1.7368089177984984, -45.15875487441929 -1.4804179175597056, -44.85889087414003 -1.4306269175133366, -44.95139087422618 -1.6016639176726244, -44.82721787411052 -1.5763179176490212, -44.695008873987405 -1.8177819178739014)), ((-48.87667287788187 -1.487781917566565, -49.513199878474694 -1.6270819176963016, -49.67249987862306 -1.7766639178356058, -49.75757287870229 -1.6387549177071747, -49.81299087875388 -1.814445917870799, -50.054308878978645 -1.7084729177720988, -50.57951787946777 -1.7986819178561149, -50.81430887968645 -1.3295179174191674, -50.781108879655534 -1.1519459172537978, -50.56945487945839 -1.1019459172072317, -50.79695487967027 -0.9719459170861597, -50.77499987964984 -0.644163916780883, -50.557426879447206 -0.6786089168129621, -50.726390879604565 -0.4977819166445556, -50.64666387953031 -0.2624999164254405, -50.32889987923437 -0.1002819162743549, -49.645563878597954 -0.2483359164122447, -49.189999878173694 -0.1358359163074709, -48.41028187744752 -0.262126916425089, -48.53917287756755 -0.900281917019413, -48.87667287788187 -1.487781917566565)), ((-51.90139088069887 -1.476663917556209, -51.88486388068347 -1.1833999172830971, -51.66222688047614 -1.083335917189899, -51.609726880427246 -0.7338909168644534, -51.198335880044084 -0.5302819166748236, -51.27680888011719 -1.0199999171309173, -51.90139088069887 -1.476663917556209)), ((-50.076390878999206 0.0000000838190317, -50.34986387925389 0.0218090838393437, -50.391945879293075 0.1897180839957286, -49.632226878585556 0.2761090840761824, -49.92125487885471 -0.0391639162174329, -50.076390878999206 0.0000000838190317)), ((-49.7698268787137 0.0000000838190317, -49.524172878484904 0.0752820838891495, -49.38110887835168 -0.0686089162448553, -49.69472687864376 -0.1563909163266146, -49.839726878778805 -0.0988909162730636, -49.7698268787137 0.0000000838190317)), ((-50.85778187972693 -0.2830549164445841, -51.02722687988475 -0.2241639163897276, -50.97278187983403 -0.0899999162647873, -50.562499879451934 -0.0541639162314027, -50.85778187972693 -0.2830549164445841)), ((-50.25417287916477 0.3419450841374925, -50.308063879214956 0.5063910842906552, -50.059863878983805 0.6430540844179262, -50.02305487894952 0.541945084323757, -50.25417287916477 0.3419450841374925)), ((-51.14000887998978 -0.9622179170770977, -51.070281879924835 -0.6944459168277177, -50.8136088796858 -0.5761089167175015, -50.82375487969523 -0.6915269168249978, -50.92361787978825 -0.719717916851252, -51.14000887998978 -0.9622179170770977)), ((-50.44111787933889 0.1711090839783935, -50.536390879427614 0.2223640840261254, -50.377781879279894 0.6183360843949117, -50.317781879224015 0.308891084106719, -50.44111787933889 0.1711090839783935)), ((-51.39000888022261 -0.4861089166336825, -51.23889088008187 -0.2016639163687728, -51.09930887995188 -0.1244459162968639, -51.13750887998745 -0.2852819164466496, -51.39000888022261 -0.4861089166336825)), ((-48.55667287758385 -27.822781942092952, -48.517781877547634 -27.433199941730123, -48.41354587745056 -27.39291794169261, -48.4063908774439 -27.592781941878748, -48.55667287758385 -27.822781942092952)), ((-50.404726879305 1.8800000855699182, -50.4994548793932 2.077782085754123, -50.37889087928093 2.1333360858058654, -50.298335879205894 1.9618090856461095, -50.404726879305 1.8800000855699182)), ((-50.501399879395024 -0.0330549162117535, -50.65459087953769 0.1280540839382951, -50.59139087947884 0.2083360840130695, -50.454172879351034 0.1263910839367526, -50.501399879395024 -0.0330549162117535)), ((-45.24333587449806 -23.96722693850218, -45.44791787468861 -23.917499938455876, -45.32194587457127 -23.726945938278405, -45.22236387447853 -23.777363938325365, -45.24333587449806 -23.96722693850218)), ((-50.846117879716076 -2.003890918047233, -51.03611787989303 -1.9758359180211045, -51.143963879993464 -1.824517917880172, -50.86569987973431 -1.909026917958883, -50.846117879716076 -2.003890918047233)), ((-52.20083588097775 -1.646663917714534, -52.1722268809511 -1.4972179175753553, -51.91514588071166 -1.520281917596833, -52.162508880942056 -1.5995819176706902, -52.20083588097775 -1.646663917714534)), ((-50.24499987915624 0.7441640845120929, -50.20444587911845 0.8770820846358873, -50.01056387893789 0.9195820846754685, -50.069172878992475 0.7886090845534852, -50.24499987915624 0.7441640845120929)), ((-51.38750888022028 -1.2149999173125252, -51.24889088009118 -1.0247179171353054, -51.203054880048484 -0.8416639169648192, -51.23944588008237 -1.1438909172462957, -51.38750888022028 -1.2149999173125252)), ((-48.585835877611004 -26.425554940791677, -48.70569987772265 -26.308817940682964, -48.526390877555656 -26.170563940554203, -48.48499987751711 -26.231526940610976, -48.585835877611004 -26.425554940791677)), ((-44.58999987388961 -3.062781919033398, -44.577508873877974 -2.80194591879048, -44.483890873790784 -2.7099999187048525, -44.494726873800886 -2.9481269189266186, -44.58999987388961 -3.062781919033398)), ((-50.98389087984438 -0.5763909167177701, -50.87833587974606 -0.3852819165397818, -50.776945879651635 -0.3838909165384905, -50.79695487967027 -0.4852819166329141, -50.98389087984438 -0.5763909167177701)), ((-44.32389087364177 -23.2211089378073, -44.36680887368175 -23.16360893775375, -44.23167287355588 -23.07167293766814, -44.084590873418904 -23.168817937758604, -44.32389087364177 -23.2211089378073)), ((-48.97083587796956 -1.7997179178570804, -49.046526878040055 -1.7083359177719757, -48.91180887791461 -1.5758359176485754, -48.90083587790437 -1.629999917699024, -48.97083587796956 -1.7997179178570804)), ((-51.115563879967 -0.5441639166877508, -51.130145879980574 -0.3993089165528545, -51.030563879887836 -0.2855549164469124, -50.94847287981139 -0.357917916514296, -51.047499879903626 -0.3988909165524603, -51.115563879967 -0.5441639166877508)), ((-50.973045879834274 -0.8689819169902648, -50.927154879791544 -0.870626916991796, -51.01261787987113 -0.9194999170373137, -51.01944587987748 -0.9916639171045176, -51.1780548800252 -1.092081917198044, -50.973045879834274 -0.8689819169902648)), ((-52.41833588118031 -1.5274999176035635, -52.43111788119221 -1.4663909175466472, -52.168617880947735 -1.408335917492579, -52.25917288103207 -1.468608917548707, -52.41833588118031 -1.5274999176035635)), ((-38.77972686847838 -13.135281928414145, -38.79430886849195 -13.060135928344167, -38.644654868352575 -12.891808928187402, -38.595145868306446 -12.990835928279623, -38.77972686847838 -13.135281928414145)), ((-38.94139086862893 -13.565281928814613, -39.04209086872271 -13.459726928716307, -39.033545868714754 -13.392426928653634, -38.903890868594004 -13.395281928656289, -38.94139086862893 -13.565281928814613)), ((-48.34778187738931 -1.2188909173161449, -48.46632687749971 -1.155554917257163, -48.41076387744798 -1.0749269171820686, -48.324935877368034 -1.0743089171814972, -48.34778187738931 -1.2188909173161449)), ((-50.908335879774 0.0000000838190317, -50.802645879675566 0.0673640838817704, -50.69791787957806 0.0197180838374038, -50.92361787978825 -0.0461089162239006, -50.908335879774 0.0000000838190317)), ((-51.07222687992666 -0.554163916697064, -51.06139087991656 -0.4727819166212726, -50.902226879768335 -0.3786819165336368, -50.959726879821886 -0.5073639166534889, -51.07222687992666 -0.554163916697064)), ((-44.99361787426551 -1.4024999174871482, -44.97556387424868 -1.2616639173559747, -44.87812687415794 -1.2869459173795263, -44.88417287416357 -1.332217917421687, -44.99361787426551 -1.4024999174871482)), ((-50.024445878950814 0.9297180846849074, -50.07444587899738 0.9811090847327648, -49.947781878879425 1.0544450848010598, -49.942363878874374 0.9988910847493315, -50.024445878950814 0.9297180846849074)), ((-50.935281879799106 -0.8463909169692272, -50.918754879783705 -0.7265269168575941, -50.84278187971296 -0.7277819168587598, -50.8505638797202 -0.814581916939602, -50.935281879799106 -0.8463909169692272)), ((-49.13861787812584 -1.8669459179196934, -49.0987548780887 -1.7484729178093517, -49.054863878047826 -1.7228459177854916, -49.02417287801924 -1.8291639178845003, -49.13861787812584 -1.8669459179196934)), ((-50.84694587971683 -0.3630549165190899, -50.90278187976884 -0.3463909165035659, -50.75146387962792 -0.2279179163932241, -50.76333587963896 -0.3302819164885591, -50.84694587971683 -0.3630549165190899)), ((-46.52417287569094 -1.022217917132977, -46.53667287570258 -0.9393089170557687, -46.47125487564165 -0.8808359170013063, -46.44028187561281 -1.0033359171153933, -46.52417287569094 -1.022217917132977)), ((-50.48499987937976 2.1175000857911073, -50.517226879409776 2.2030540858707894, -50.405554879305754 2.1936090858619934, -50.404726879305 2.146391085818024, -50.48499987937976 2.1175000857911073)), ((-44.769172874056466 -1.6722179177383367, -44.78333587406965 -1.6191639176889225, -44.68444587397755 -1.5662549176396539, -44.66166387395634 -1.6604909177274152, -44.769172874056466 -1.6722179177383367)), ((-45.67639087490139 -1.3619459174493755, -45.689726874913816 -1.3584729174461359, -45.62875487485701 -1.1279179172314144, -45.63417287486206 -1.3463909174348885, -45.67639087490139 -1.3619459174493755)), ((-46.31784587549879 -23.931363938468778, -46.28422687546748 -23.987699938521246, -46.410526875585106 -23.956808938492486, -46.38690887556311 -23.92409993846202, -46.31784587549879 -23.931363938468778))) +CHL Chile MULTIPOLYGON (((-73.04209990038768 -43.73383595691127, -72.31000889970588 -41.43583595477109, -73.87111790115976 -41.47917295481145, -73.67709090097907 -37.34729095096334, -71.65500889909586 -33.66250894753162, -69.49972689708859 -17.505281932484024, -67.00083589476132 -23.00278193760397, -70.53125489804928 -31.181254945220772, -69.81757289738461 -34.23472694806454, -72.13035489953856 -42.285426955562336, -71.10875489858712 -44.53528195765768, -73.58229990089079 -49.54083596231946, -71.91057289933387 -51.99583596460586, -69.99833589755296 -51.99639096460638, -68.43583589609777 -52.328754964915916, -69.26848189687323 -52.20805496480351, -70.81167289831043 -52.73250896529194, -71.284726898751 -53.88639096636658, -72.45250889983859 -53.40430896591761, -71.16653589864093 -52.810690965364756, -72.51709089989873 -53.06236396559915, -72.18951789959365 -53.18270896571122, -72.64778190002045 -53.32597296584465, -72.40028189978995 -53.54028196604424, -73.29889090062684 -53.16076396569078, -72.71028190007866 -53.294035965814906, -72.9158459002701 -52.82471796537782, -71.54389989899238 -52.558890965130246, -72.78979090015271 -52.54285496511531, -72.67834590004891 -52.66215496522642, -73.00584590035392 -52.85417296540525, -72.98041790033024 -53.064726965601345, -73.44934590076697 -53.002044965542964, -72.46889989985385 -51.78917296441339, -74.68875490192126 -50.207090962939965, -73.71250890101206 -49.757226962520996, -74.37389990162802 -49.42750896221392, -74.02111790129946 -48.41360896126965, -74.65688190189157 -48.029726960912136, -73.22659990055952 -48.00302696088727, -75.71056390287289 -46.79360895976091, -73.84654590113689 -46.592090959573234, -72.85945490021759 -45.47041795852859, -73.46180890077858 -45.25285495832597, -73.37528190069798 -44.9679179580606, -73.1424999004812 -44.944454958038754, -72.76610890013065 -44.753335957860756, -72.61389089998889 -44.47278195759947, -73.04209990038768 -43.73383595691127)), ((-68.63583589628404 -54.78833596720658, -69.06695489668554 -54.95083596735792, -69.62778189720785 -54.695699967120305, -70.76279089826491 -54.84111796725574, -72.00930889942583 -54.50736396694491, -68.99487289661842 -54.46764496690791, -70.48083589800233 -53.28055496580235, -69.41722689701176 -52.45944496503763, -68.63583589628404 -54.78833596720658)), ((-73.56973590087908 -42.99417295622241, -74.40583590165777 -43.246044956456984, -74.02869090130652 -41.774308955086326, -73.50334590081725 -41.841535955148935, -73.82097290111307 -42.514308955775505, -73.56973590087908 -42.99417295622241)), ((-74.49889990174444 -49.58472696236034, -74.4655729017134 -49.93222696268398, -74.77487290200146 -50.05375496279716, -75.46584590264497 -49.31618196211024, -74.49889990174444 -49.58472696236034)), ((-68.11195489579613 -55.70139096805693, -68.93918189656655 -55.45972696783186, -68.81237289644845 -55.190072967580726, -70.03125489758362 -55.158681967551495, -68.11195489579613 -55.70139096805693)), ((-73.30862690063591 -53.828890966313026, -73.07511790041843 -53.4026909659161, -72.14229989954968 -53.80451796629033, -72.82389090018447 -54.13639096659941, -73.30862690063591 -53.828890966313026)), ((-68.0665998957539 -54.90722696731731, -67.28139989502262 -54.936108967344204, -67.05361789481047 -55.13639096753073, -68.09529089578061 -55.23694496762438, -68.0665998957539 -54.90722696731731)), ((-72.87040890022779 -44.73805495784653, -73.27695490060641 -44.941108958035635, -73.46299090077967 -44.6461179577609, -72.99806390034668 -44.36722695750117, -72.87040890022779 -44.73805495784653)), ((-73.367781900691 -53.269726965792266, -73.09125490043347 -53.35319096587, -74.32611790158352 -53.0938909656285, -74.74410890197281 -52.75854496531619, -73.367781900691 -53.269726965792266)), ((-71.2813998987479 -54.01361796648507, -71.1199998985976 -54.38597296683185, -71.69861789913647 -54.16389096662502, -71.61153589905537 -53.94709096642311, -71.2813998987479 -54.01361796648507)), ((-70.52444589804294 -54.228617966685306, -70.8980548983909 -53.87971796636037, -70.49153589801229 -53.55749996606028, -70.34764589787828 -54.00749996647937, -70.66792689817656 -53.91569996639387, -70.52444589804294 -54.228617966685306)), ((-75.20099990239832 -48.69979096153618, -75.29500890248588 -48.43667296129113, -75.55709090272995 -48.40611796126267, -75.51029090268636 -48.03402696091614, -75.08361790228899 -48.50833596135787, -75.20099990239832 -48.69979096153618)), ((-71.67110889911085 -53.94389096642013, -71.84237289927036 -54.338890966788, -72.2570998996566 -53.94243596641878, -71.94569989936659 -53.851117966333724, -71.67110889911085 -53.94389096642013)), ((-75.05508190226243 -50.29945496302599, -75.45972690263928 -50.3615359630838, -75.40049090258411 -50.044026962788095, -74.80069990202551 -50.126672962865065, -75.05508190226243 -50.29945496302599)), ((-74.62301790186004 -48.692181961529094, -75.03139990224037 -48.511108961360456, -74.73875490196782 -48.12389096099983, -74.48472690173124 -48.59583596143936, -74.62301790186004 -48.692181961529094)), ((-74.72056390195088 -51.111944963782676, -74.93306390214879 -50.88986396357585, -74.6161179018536 -50.89499996358063, -74.65749990189215 -50.72667296342386, -74.40945490166114 -50.83055496352061, -74.72056390195088 -51.111944963782676)), ((-70.35084589788126 -54.89860896730928, -70.53083589804889 -55.21110896760032, -71.00806389849335 -55.045008967445625, -70.98778189847445 -54.95180896735883, -70.35084589788126 -54.89860896730928)), ((-75.02555490223493 -48.444726961298635, -75.19500890239274 -48.22917296109788, -75.25376390244746 -48.07222696095172, -74.80396390202856 -48.18278196105468, -75.02555490223493 -48.444726961298635)), ((-73.73139990102965 -45.284444958355394, -74.22472690148909 -45.16959095824843, -74.23903590150242 -45.07555495816085, -73.84668190113702 -45.002781958093074, -73.73139990102965 -45.284444958355394)), ((-74.2091639014746 -50.851672963540274, -74.42556390167614 -50.52625496323721, -74.66758190190154 -50.47848196319271, -74.3638909016187 -50.491390963204736, -74.2091639014746 -50.851672963540274)), ((-69.90610889746706 -55.043063967443814, -69.84972689741456 -54.8783359672904, -69.16875489678036 -54.9599359673664, -69.50389089709248 -55.01249996741535, -69.90610889746706 -55.043063967443814)), ((-73.91694590120245 -52.72695496528677, -74.05584590133181 -52.56972696514034, -73.72541790102407 -52.41111796499262, -73.72944590102783 -52.602499965170864, -73.91694590120245 -52.72695496528677)), ((-74.31750890157551 -47.983890960869445, -74.49750890174315 -47.914172960804514, -73.8002819010938 -47.89125496078317, -73.87610890116441 -47.959308960846556, -74.31750890157551 -47.983890960869445)), ((-74.2630639015248 -44.807499957911205, -74.41098190166255 -44.637081957752486, -73.87409990116255 -44.69348195780501, -74.01583590129455 -44.72111795783075, -74.2630639015248 -44.807499957911205)), ((-75.07139990227762 -46.09745495911257, -75.10418190230816 -45.87610895890642, -74.7223089019525 -45.803408958838716, -74.80334590202797 -46.032499959052075, -75.07139990227762 -46.09745495911257)), ((-74.98889090220078 -51.47639096412209, -74.79389990201918 -51.20944496387348, -74.5361179017791 -51.27916396393841, -74.59750890183628 -51.40541796405599, -74.98889090220078 -51.47639096412209)), ((-75.32812690251671 -50.79267296348533, -75.46077290264026 -50.49409996320726, -75.09014590229508 -50.50306396321561, -75.27473590246699 -50.584726963291665, -75.32812690251671 -50.79267296348533)), ((-75.60471790277431 -48.68888196152602, -75.62139990278985 -48.44652696130031, -75.34020890252796 -48.43590896129042, -75.32000890250916 -48.60222696144532, -75.60471790277431 -48.68888196152602)), ((-75.17945490237825 -49.904726962658366, -75.55959090273228 -49.83444496259291, -75.60348190277315 -49.66153596243188, -75.35972690254614 -49.624172962397076, -75.17945490237825 -49.904726962658366)), ((-74.96972690218293 -52.11805496471969, -75.05971790226674 -51.97055496458232, -74.8058359020303 -51.63459096426943, -74.76542690199265 -51.77999996440485, -74.96972690218293 -52.11805496471969)), ((-75.2577819024512 -49.08194496189209, -75.32250890251149 -48.95444496177335, -75.65084590281727 -48.90055496172316, -75.31445490250398 -48.86361796168875, -75.2577819024512 -49.08194496189209)), ((-74.45861790170692 -45.779163958816135, -74.44667290169579 -45.487499958544504, -74.30250890156154 -45.475281958533124, -74.22889990149298 -45.673054958717316, -74.45861790170692 -45.779163958816135)), ((-74.88750890210636 -48.070281960949906, -75.07011790227642 -47.987808960873096, -75.26493590245786 -48.03013596091252, -74.83029090205306 -47.80791796070556, -74.88750890210636 -48.070281960949906)), ((-74.95223590216663 -49.2780179620747, -75.04583590225381 -49.20528196200696, -75.23632690243122 -49.13610896194253, -74.97597290218874 -49.02986396184359, -74.95223590216663 -49.2780179620747)), ((-75.3102909025001 -51.634172964269034, -75.20529090240231 -51.29917296395704, -75.00472690221552 -51.33583596399119, -75.15389090235445 -51.57736396421613, -75.3102909025001 -51.634172964269034)), ((-74.14467290141454 -52.392835964975596, -74.14584590141563 -52.19722696479342, -74.41555490166682 -52.13360896473417, -74.28557290154576 -52.08861796469227, -73.93430890121863 -52.3232639649108, -74.14467290141454 -52.392835964975596)), ((-73.65250890095618 -45.761117958799325, -73.78195490107673 -45.67028195871473, -73.70403590100416 -45.44472695850467, -73.58202690089054 -45.470981958529116, -73.65250890095618 -45.761117958799325)), ((-75.51417290268998 -49.27194496206904, -75.65639990282244 -49.21389096201497, -75.34222690252984 -48.988063961804656, -75.28542690247694 -49.096808961905936, -75.51417290268998 -49.27194496206904)), ((-74.6988999019307 -50.891108963577004, -74.92487290214116 -50.855699963544026, -74.95264590216702 -50.7287549634258, -74.74709090197558 -50.704172963402904, -74.6988999019307 -50.891108963577004)), ((-74.16307290143168 -51.95305496456602, -74.37430890162841 -51.89125496450846, -74.50334590174857 -51.71264496434212, -74.09029090136389 -51.8772269644954, -74.16307290143168 -51.95305496456602)), ((-71.06029089854198 -54.95528196736206, -71.40695489886484 -54.943754967351325, -71.45430889890895 -54.88360896729531, -70.91542689840706 -54.92610896733489, -71.06029089854198 -54.95528196736206)), ((-74.27723590153799 -45.0308359581192, -74.16833590143658 -44.86667295796631, -73.91209090119793 -44.95541795804896, -74.19028190145701 -44.994590958085446, -74.27723590153799 -45.0308359581192)), ((-73.72442690102315 -52.224408964818736, -74.11279090138484 -51.998608964608444, -74.09529090136854 -51.922781964537826, -73.77056390106613 -52.06653596467171, -73.72442690102315 -52.224408964818736)), ((-74.02246390130072 -51.802026964425366, -74.23668190150023 -51.703890964333965, -74.0888999013626 -51.53945496418083, -73.92528190121021 -51.75972696438597, -74.02246390130072 -51.802026964425366)), ((-67.33889989507617 -55.79083596814023, -67.55250889527511 -55.73778196809082, -67.54306389526631 -55.66375496802188, -67.35306389508936 -55.57528196793948, -67.33889989507617 -55.79083596814023)), ((-74.87056390209058 -52.14167296474168, -74.75500890198296 -51.843054964463576, -74.60083590183937 -51.84347296446396, -74.76972690199666 -52.08361796468761, -74.87056390209058 -52.14167296474168)), ((-72.29419089969115 -54.07889996654587, -72.30180889969824 -54.25333596670832, -72.50110889988385 -54.24305496669875, -72.38694589977753 -54.0913909665575, -72.29419089969115 -54.07889996654587)), ((-73.74556390104284 -44.743617957851704, -73.82556390111735 -44.58472695770373, -73.69236390099329 -44.543608957665434, -73.59139990089926 -44.712081957822335, -73.74556390104284 -44.743617957851704)), ((-73.99278190127308 -43.93999995710328, -74.15299090142229 -43.82035495699185, -73.78973590108397 -43.821672956993076, -73.76403590106004 -43.88930895705607, -73.99278190127308 -43.93999995710328)), ((-73.84029090113106 -52.39361796497632, -73.91473590120039 -52.30306396489199, -74.09424590136757 -52.166117964764446, -73.78917290108345 -52.26416396485576, -73.84029090113106 -52.39361796497632)), ((-74.00056390128033 -45.357226958423176, -74.1661179014345 -45.25055495832383, -73.78445490107906 -45.311954958381016, -73.80222690109561 -45.34944495841593, -74.00056390128033 -45.357226958423176)), ((-73.42980890074877 -53.39705496591085, -73.48987290080471 -53.57389096607554, -73.8007089010942 -53.43152696594295, -73.62250890092824 -53.47583596598422, -73.42980890074877 -53.39705496591085)), ((-74.52555490176927 -48.34028196120136, -74.59945490183809 -48.23555496110383, -74.5663909018073 -48.120972960997115, -74.36667290162129 -48.25847296112517, -74.52555490176927 -48.34028196120136)), ((-73.77305490106845 -46.211944959219196, -73.93486390121913 -46.071663959088546, -73.90945490119547 -46.018608959039135, -73.68333590098489 -46.0766639590932, -73.77305490106845 -46.211944959219196)), ((-75.20652690240347 -48.9946639618108, -75.22639090242197 -48.96694496178499, -75.30951790249938 -48.800072961629574, -75.0822269022877 -48.88916396171255, -75.20652690240347 -48.9946639618108)), ((-74.40167290165388 -44.55083595767216, -74.54258190178513 -44.46257295758996, -74.21889090148366 -44.465554957592744, -74.41250890166398 -44.512781957636726, -74.40167290165388 -44.55083595767216)), ((-73.98695490126765 -45.72472695876544, -74.11139990138355 -45.61722695866532, -74.02889990130672 -45.5386089585921, -73.8968089011837 -45.61778195866584, -73.98695490126765 -45.72472695876544)), ((-75.61279090278182 -48.796954961626675, -75.64763590281429 -48.705490961541486, -75.283335902475 -48.69528196153198, -75.31807290250735 -48.73861796157234, -75.61279090278182 -48.796954961626675)), ((-74.13917290140941 -45.579444958630134, -74.06014590133582 -45.422917958484355, -73.8199269011121 -45.460490958519344, -73.86459090115369 -45.567081958618616, -74.04569990132237 -45.51736395857231, -74.13917290140941 -45.579444958630134)), ((-74.42807290167848 -51.20667296387089, -74.57570890181597 -51.15791796382549, -74.60110890183962 -51.07528196374853, -74.46667290171442 -51.028335963704805, -74.42807290167848 -51.20667296387089)), ((-74.17110890143915 -47.17444496011559, -74.185981901453 -47.027226959978485, -73.97667290125807 -47.05361796000306, -74.08056390135484 -47.14917296009205, -74.17110890143915 -47.17444496011559)), ((-74.28190890154235 -51.21821796388165, -74.33778190159438 -51.02889096370532, -74.34098190159736 -50.92459096360819, -74.19236390145895 -51.198608963863386, -74.28190890154235 -51.21821796388165)), ((-70.28139989781658 -54.27555496672902, -70.4679268979903 -54.23486396669112, -70.51112689803054 -54.16083596662217, -70.21722689775682 -54.22902696668568, -70.28139989781658 -54.27555496672902)), ((-73.84443590113491 -44.957435958050844, -73.93000890121462 -44.88305495798157, -73.90028190118693 -44.77360895787964, -73.77028190106586 -44.902226957999424, -73.84443590113491 -44.957435958050844)), ((-74.27305490153411 -48.46778196132011, -74.45819990170654 -48.38652696124443, -74.49152690173757 -48.35416396121429, -74.31000890156852 -48.285554961150396, -74.27305490153411 -48.46778196132011)), ((-74.70135490193299 -45.73212695877233, -74.66917290190301 -45.61778195866584, -74.54126390178389 -45.58278195863324, -74.58055490182049 -45.74055495878018, -74.70135490193299 -45.73212695877233)), ((-73.27250890060228 -54.13556396659864, -73.45750890077457 -54.082226966548966, -73.46819990078453 -54.071808966539265, -73.18333590051922 -54.056399966524914, -73.27250890060228 -54.13556396659864)), ((-66.86966389463916 -55.232344967620094, -66.84284589461419 -55.317781967699666, -67.06167289481797 -55.32471796770613, -67.04348189480103 -55.248890967635504, -66.86966389463916 -55.232344967620094)), ((-73.11359090045427 -52.05165496465785, -73.05695490040152 -51.93333596454765, -72.88833590024448 -51.88556396450316, -72.98987290033905 -52.0433359646501, -73.11359090045427 -52.05165496465785)), ((-73.90861790119469 -45.98917295901172, -73.90250890118901 -45.87360895890409, -73.72667290102524 -45.80125495883671, -73.70000890100042 -45.893754958922855, -73.80319990109652 -45.88541795891509, -73.90861790119469 -45.98917295901172)), ((-75.18300890238156 -47.83784496073343, -75.30098190249143 -47.772090960672195, -75.1219459023247 -47.703890960608675, -75.06584590227244 -47.80479096070265, -75.18300890238156 -47.83784496073343)), ((-74.07808190135252 -51.37763596403012, -74.10792690138031 -51.23694496389909, -73.97126390125304 -51.24104496390291, -73.9550089012379 -51.32944496398524, -74.07808190135252 -51.37763596403012)), ((-75.12918190233144 -48.83444496166159, -75.24757290244169 -48.770072961601635, -75.06834590227477 -48.635972961476746, -75.0566729022639 -48.70250896153871, -75.12918190233144 -48.83444496166159)), ((-74.75778190198554 -50.50028196321302, -74.7559089019838 -50.391808963112, -74.5465359017888 -50.37944496310048, -74.55750890179903 -50.4055549631248, -74.75778190198554 -50.50028196321302)), ((-74.42874590167911 -49.614517962388085, -74.44971790169863 -49.484999962267466, -74.42611790167665 -49.42680896221327, -74.28709090154717 -49.54959096232762, -74.42874590167911 -49.614517962388085)), ((-75.10855490231222 -51.89980896451643, -75.0708459022771 -51.74028196436786, -74.9681909021815 -51.72945496435778, -75.01583590222587 -51.86500896448402, -75.10855490231222 -51.89980896451643)), ((-74.1349639014055 -51.4513819640988, -74.24722690151005 -51.40222696405302, -74.25979990152176 -51.29993596395776, -74.16917290143735 -51.2880639639467, -74.1349639014055 -51.4513819640988)), ((-66.58195489437121 -55.28556396766966, -66.62778189441389 -55.20208196759191, -66.42062689422096 -55.20208196759191, -66.51167289430575 -55.26833596765361, -66.58195489437121 -55.28556396766966)), ((-70.46569989798823 -54.83996396725466, -70.39701789792426 -54.8688909672816, -70.74486389824821 -54.872090967284585, -70.58944589810348 -54.834444967249524, -70.46569989798823 -54.83996396725466)), ((-74.02305490130128 -45.918890958946264, -74.10513590137772 -45.78694495882338, -74.03417290131162 -45.73694495877682, -73.96250890124489 -45.788063958824424, -74.02305490130128 -45.918890958946264)), ((-74.38500890163837 -44.86028195796036, -74.46499990171287 -44.83020895793235, -74.52812690177166 -44.74610895785403, -74.42722690167768 -44.721390957831005, -74.38500890163837 -44.86028195796036)), ((-75.06500890227167 -50.79875496349099, -75.11188190231532 -50.71791796341571, -74.98972690220155 -50.6540269633562, -74.98611790219819 -50.808472963500044, -75.06500890227167 -50.79875496349099)), ((-72.46334589984868 -54.429999966872856, -72.54041789992046 -54.34555496679421, -72.29903589969565 -54.33514496678451, -72.3042358997005 -54.36645496681367, -72.46334589984868 -54.429999966872856)), ((-74.7244549019545 -52.06528196467054, -74.5441729017866 -51.926044964540864, -74.48959090173577 -51.95500896456784, -74.50180890174715 -52.004517964613946, -74.7244549019545 -52.06528196467054)), ((-74.38779090164095 -45.397781958460946, -74.493054901739 -45.35222695841852, -74.52284590176674 -45.299790958369684, -74.37722690163112 -45.29500895836523, -74.38779090164095 -45.397781958460946)), ((-74.04529090132198 -44.5580639576789, -74.12945490140036 -44.53249995765509, -74.12945490140036 -44.4483359575767, -73.95779090124049 -44.48499995761085, -74.04529090132198 -44.5580639576789)), ((-109.42778193427449 -27.20194594151475, -109.39348193424256 -27.067499941389535, -109.2195909340806 -27.09764594141761, -109.23860893409831 -27.132081941449684, -109.42778193427449 -27.20194594151475)), ((-73.1652819005024 -44.02916395718632, -73.28389990061288 -43.98305495714338, -73.25695490058779 -43.908890957074306, -73.14001790047888 -43.89611795706241, -73.1652819005024 -44.02916395718632)), ((-74.78557290201142 -43.64889095683216, -74.8573729020783 -43.55763595674718, -74.63451790187074 -43.60180895678832, -74.73749990196666 -43.62250895680759, -74.78557290201142 -43.64889095683216)), ((-70.3538998978841 -54.15610896661777, -70.45251789797595 -54.11722696658156, -70.4991728980194 -54.07306396654043, -70.31306389784608 -54.039726966509384, -70.3538998978841 -54.15610896661777)), ((-74.00723590128653 -44.332499957468826, -74.12445490139571 -44.19993595734536, -74.06333590133879 -44.15152695730028, -73.95083590123402 -44.2405639573832, -74.00723590128653 -44.332499957468826)), ((-73.84167290113234 -53.591390966091836, -73.85305490114295 -53.45249996596249, -73.68903590099019 -53.51917296602458, -73.69930890099977 -53.541117966045014, -73.84167290113234 -53.591390966091836)), ((-73.6563999009598 -44.13749995728722, -73.75542690105202 -43.996944957156316, -73.72861790102705 -43.93889995710226, -73.63444590093935 -44.009999957168475, -73.6563999009598 -44.13749995728722)), ((-73.43650890075502 -42.554935955813335, -73.62569990093121 -42.44791795571367, -73.65041790095422 -42.379863955650286, -73.53376390084559 -42.38694495565689, -73.43650890075502 -42.554935955813335)), ((-73.41166390073187 -52.95389096549812, -73.53279090084467 -52.884444965433445, -73.75222690104904 -52.89333596544172, -73.42861790074765 -52.87083596542077, -73.41166390073187 -52.95389096549812)), ((-73.79667290109043 -51.81917296444133, -73.85694590114657 -51.80111796442451, -73.93597290122017 -51.66209096429504, -73.79528190108914 -51.72653596435506, -73.79667290109043 -51.81917296444133)), ((-74.43461790168458 -48.52556396137392, -74.4940359017399 -48.39833596125543, -74.3013999015605 -48.478617961330194, -74.33611790159283 -48.50528196135503, -74.43461790168458 -48.52556396137392)), ((-67.61195489533047 -55.90222696824397, -67.65500889537057 -55.84944496819482, -67.85541789555721 -55.84179996818769, -67.49423589522084 -55.83034496817703, -67.61195489533047 -55.90222696824397)), ((-74.3364089015931 -45.29827295836827, -74.4201549016711 -45.24028195831426, -74.39236390164521 -45.15459095823446, -74.27222690153333 -45.21209095828801, -74.3364089015931 -45.29827295836827)), ((-67.01632689477574 -54.99712696740103, -66.85917289462938 -55.02805496742984, -66.80667289458049 -55.11403596750991, -67.0750088948304 -55.01110896741405, -67.01632689477574 -54.99712696740103)), ((-74.748608901977 -52.3177819649057, -74.82055490204401 -52.22944496482343, -74.62250890185956 -52.20597296480157, -74.68903590192151 -52.29986396488901, -74.748608901977 -52.3177819649057)), ((-74.46667290171442 -44.69944495781057, -74.6288909018655 -44.69833595780953, -74.67361790190715 -44.668617957781855, -74.55278190179462 -44.62360895773994, -74.46667290171442 -44.69944495781057)), ((-73.78717290108159 -51.3723549640252, -73.86944590115822 -51.35806396401189, -73.9152909012009 -51.30305496396066, -73.79444590108837 -51.25959096392018, -73.78717290108159 -51.3723549640252)), ((-74.46529090171313 -47.160563960102664, -74.48153590172826 -47.08180896002932, -74.31237290157073 -47.06556396001419, -74.33278190158973 -47.108608960054276, -74.46529090171313 -47.160563960102664)), ((-75.08555490229081 -44.92722695802271, -75.15028190235108 -44.82889095793112, -75.09237290229716 -44.776535957882366, -75.02306390223261 -44.847917957948845, -75.08555490229081 -44.92722695802271)), ((-73.96728190124934 -44.43482695756412, -74.0713999013463 -44.394999957527034, -74.10652690137901 -44.32680895746353, -73.93119090121571 -44.35729995749192, -73.96728190124934 -44.43482695756412)), ((-75.00584590221656 -48.74444496157777, -74.99139090220311 -48.648890961488775, -74.82702690205004 -48.663544961502424, -74.93583590215137 -48.73139096156561, -75.00584590221656 -48.74444496157777)), ((-74.77278190199951 -52.188608964785395, -74.78889090201451 -52.124517964725705, -74.61222690184998 -52.06041796466601, -74.68306390191596 -52.16917296476729, -74.77278190199951 -52.188608964785395)), ((-74.32556390158301 -44.58167295770088, -74.2923729015521 -44.50291795762754, -74.13917290140941 -44.55056395767191, -74.1897269014565 -44.560563957681225, -74.32556390158301 -44.58167295770088)), ((-67.72861789543911 -55.62445496798528, -67.68806389540136 -55.501672967870924, -67.58792689530809 -55.548054967914126, -67.59056389531055 -55.58222696794595, -67.72861789543911 -55.62445496798528)), ((-74.06584590134112 -48.49139096134209, -74.18014590144757 -48.44319996129721, -74.24278190150591 -48.37194496123085, -74.06279090133827 -48.42167296127716, -74.06584590134112 -48.49139096134209)), ((-73.68860890098979 -46.03000895904975, -73.8199359011121 -45.99757295901954, -73.77806390107311 -45.90500895893334, -73.70861790100842 -45.92528195895222, -73.68860890098979 -46.03000895904975)), ((-73.69218190099312 -44.83708195793875, -73.74667290104387 -44.75631795786354, -73.60667290091348 -44.74333595785144, -73.61875490092474 -44.828335957930605, -73.69218190099312 -44.83708195793875)), ((-73.86667290115562 -44.19917295734465, -73.97764590125898 -44.180972957327704, -74.01153590129054 -44.14472695729395, -73.91555490120116 -44.101390957253585, -73.86667290115562 -44.19917295734465)), ((-74.04194590131887 -44.85889095795906, -74.1708359014389 -44.827226957929575, -74.18458190145171 -44.815835957918964, -73.96557290124774 -44.7786179578843, -74.04194590131887 -44.85889095795906)), ((-74.99721790220853 -47.786663960685765, -75.05307290226055 -47.7555639606568, -75.07667290228252 -47.69722696060247, -74.90459090212227 -47.7588909606599, -74.99721790220853 -47.786663960685765)), ((-70.16307289770639 -55.009444967412506, -70.20361789774414 -54.98402696738883, -69.97945489753538 -54.935144967343305, -70.01333589756693 -54.980281967385345, -70.16307289770639 -55.009444967412506)), ((-74.05611790133206 -53.25222696577597, -74.1334729014041 -53.32028196583935, -74.24222690150539 -53.31360896583313, -74.10556390137812 -53.22819996575359, -74.05611790133206 -53.25222696577597)), ((-74.78584590201167 -44.68778195779971, -74.82500890204815 -44.6286179577446, -74.80722690203159 -44.550417957671776, -74.72611790195604 -44.59778195771589, -74.78584590201167 -44.68778195779971)), ((-67.24694589499053 -55.894999968237244, -67.34972689508625 -55.86361796820802, -67.41139089514368 -55.83430896818072, -67.24694589499053 -55.8280549681749, -67.24694589499053 -55.894999968237244)), ((-73.92056390120582 -45.434172958494834, -74.02389990130206 -45.403335958466116, -73.82430890111618 -45.37556395844025, -73.82334590111527 -45.40833595847077, -73.92056390120582 -45.434172958494834)), ((-73.85972690114916 -51.90249996451894, -73.95153590123466 -51.886117964503676, -73.92959990121423 -51.80167296442503, -73.8197269011119 -51.87056396448919, -73.85972690114916 -51.90249996451894)), ((-73.85583590114554 -44.33833595747426, -73.9550089012379 -44.32486395746171, -73.97236390125406 -44.28041795742032, -73.80098190109445 -44.27333595741372, -73.85583590114554 -44.33833595747426))) +ECU Ecuador MULTIPOLYGON (((-79.45167290635706 -4.766390920620012, -79.5152819064163 -4.6204179204840585, -79.51972690642044 -4.58118192044752, -79.53917290643855 -4.52083592039132, -79.62139090651513 -4.447499920323025, -79.64319990653544 -4.435417920311764, -79.6680639065586 -4.434308920310741, -79.70528190659326 -4.4570819203319445, -79.78376390666635 -4.481945920355102, -79.81563590669603 -4.478817920352185, -79.99779090686567 -4.3730549202536935, -80.02514590689115 -4.354999920236878, -80.05876390692247 -4.319581920203888, -80.0779269069403 -4.300135920185781, -80.13459990699309 -4.2844909201712085, -80.17458190703033 -4.298545920184296, -80.18653590704146 -4.3212549202054475, -80.22639090707858 -4.364445920245672, -80.26221790711195 -4.397499920276459, -80.33417290717895 -4.452499920327682, -80.35861790720172 -4.465554920339841, -80.39056390723148 -4.478608920351988, -80.40972690724932 -4.47166392034552, -80.46376390729965 -4.441808920317726, -80.48125490731594 -4.416454920294115, -80.47999990731478 -4.388472920268043, -80.43111790726924 -4.315554920200142, -80.39917290723949 -4.281808920168714, -80.38292690722436 -4.263472920151628, -80.34028190718465 -4.199517920092063, -80.38292690722436 -4.1966639200894065, -80.41056390725011 -4.209863920101711, -80.4455639072827 -4.221181920112244, -80.46458190730041 -4.207499920099508, -80.48076390731548 -4.174163920068452, -80.48360890731813 -4.114445920012841, -80.50121790733454 -4.0553459199578015, -80.50168190733497 -4.050281919953079, -80.4654269073012 -3.985281919892543, -80.42029090725916 -3.978054919885821, -80.38917290723018 -3.9790269198867207, -80.3456999071897 -3.9982639199046304, -80.3189639071648 -4.011663919917112, -80.2922359071399 -3.9961089199026247, -80.17529090703098 -3.903054919815972, -80.15333590701054 -3.8842269197984365, -80.17667290703227 -3.859163919775085, -80.21139990706462 -3.7391639196633264, -80.20778190706125 -3.7172179196428914, -80.20611790705969 -3.636663919567866, -80.2127819070659 -3.595835919529847, -80.2349999070866 -3.4972179194380004, -80.2591729071091 -3.4174269193636917, -80.34042690718478 -3.3805179193293213, -80.32362690716914 -3.3597179193099436, -80.29139990713912 -3.3283359192807183, -80.26993590711913 -3.33860891929028, -80.14279090700072 -3.3347179192866605, -80.0211179068874 -3.26166391921862, -79.95631790682705 -3.20778191916844, -79.94417290681574 -3.1818089191442596, -79.94111790681289 -3.149717919114366, -79.92034590679356 -3.089372919058164, -79.89222690676736 -3.0588909190297784, -79.88417290675986 -3.0386089190108834, -79.87779090675392 -3.018608918992257, -79.8597269067371 -2.9127819188936996, -79.83168190671098 -2.803054918791517, -79.78110890666387 -2.659163918657498, -79.76959090665315 -2.6427819186422425, -79.73626390662211 -2.6145819186159827, -79.72681790661332 -2.596945918599559, -79.7256269066122 -2.5424269185487844, -79.74889990663388 -2.4847179184950363, -79.77000890665354 -2.4894459184994417, -79.79257290667455 -2.4788909184896113, -79.84409990672255 -2.3781909183958305, -79.83472690671381 -2.3080549183305124, -79.84209090672067 -2.2087549182380286, -79.85139090672934 -2.190972918221462, -79.80889990668976 -2.0758359181142367, -79.77278190665612 -2.0361089180772325, -79.76292690664694 -2.014026918056672, -79.82349090670336 -2.0369459180780183, -79.88381790675953 -2.091390918128724, -79.89528190677021 -2.125281918160283, -79.90028190677486 -2.159999918192625, -79.9027909067772 -2.184999918215908, -79.90320890677759 -2.20513591823466, -79.88834590676375 -2.230972918258715, -79.86986390674655 -2.2538909182800637, -79.86389990674098 -2.2748639182996016, -79.86584590674279 -2.3894459184063095, -79.86944590674615 -2.427781918442008, -79.89029090676556 -2.533335918540317, -79.90583590678004 -2.5593089185645113, -79.93139990680385 -2.5816639185853205, -79.97389090684342 -2.600835918603181, -80.00249990687007 -2.6124999186140485, -80.05111790691534 -2.5916639185946337, -80.06472690692802 -2.5733359185775697, -80.02889990689465 -2.426390918440717, -80.00542690687278 -2.3591639183781012, -79.97653590684588 -2.3477819183675024, -79.95583590682661 -2.316108918338003, -80.02549090689148 -2.3421549183622687, -80.0594459069231 -2.412499918427784, -80.07389990693656 -2.453335918465811, -80.10528190696579 -2.512917918521296, -80.17361790702942 -2.5874999185907654, -80.21722690707004 -2.6263909186269814, -80.25222690710264 -2.73319091872645, -80.29055490713834 -2.728054918721668, -80.31139990715775 -2.7211089187151885, -80.45987290729603 -2.630281918630601, -80.56889090739756 -2.5124999185209163, -80.62098190744607 -2.4479179184607602, -80.66222690748448 -2.413054918428301, -80.68250890750338 -2.39708191841342, -80.73307290755046 -2.379999918397516, -80.78459090759844 -2.380972918398413, -80.81639090762806 -2.367217918385606, -80.89001790769663 -2.320554918342154, -80.97500890777579 -2.2169459182456563, -80.97667290777733 -2.184999918215908, -80.92499990772922 -2.206945918236343, -80.85473590766377 -2.1752819182068492, -80.78750890760116 -2.1265269181614457, -80.77153590758628 -2.1081909181443734, -80.75417290757011 -2.076945918115271, -80.73098190754851 -1.9379179179857857, -80.73222690754967 -1.9141639179636627, -80.77389990758849 -1.761663917821636, -80.78584590759961 -1.7330549177950019, -80.82014590763156 -1.6776089177433562, -80.84749990765704 -1.6186089176884053, -80.85479990766383 -1.5946549176661051, -80.84583590765548 -1.5602819176340859, -80.82139990763272 -1.498335917576398, -80.80930890762147 -1.4743089175540263, -80.78785490760148 -1.4641639175445675, -80.75827290757394 -1.3247909174147736, -80.8094459076216 -1.2469459173422734, -80.85084590766014 -1.1930549172920877, -80.89007290769668 -1.1354909172384708, -80.91500890771991 -1.0576359171659675, -80.91279090771783 -1.036526917146304, -80.8359729076463 -0.9288909170460613, -80.75111790756726 -0.9202819170380394, -80.71139990753028 -0.9283359170455441, -80.618763907444 -0.9272179170445014, -80.57604590740422 -0.8977089170170132, -80.53348190736457 -0.8211089169456756, -80.5302909073616 -0.7708359168988608, -80.52360890735538 -0.735135916865616, -80.49945490733289 -0.6793089168136248, -80.43326390727124 -0.5695179167113622, -80.41424590725353 -0.5822909167232666, -80.40438190724434 -0.61749991675606, -80.37653590721841 -0.634581916771964, -80.33889990718336 -0.6363909167736495, -80.26971790711893 -0.625381916763402, -80.31333590715955 -0.6155549167542489, -80.33819990718271 -0.6169459167555402, -80.37430890721635 -0.6113909167503664, -80.40167290724182 -0.5702819167120765, -80.42222690726096 -0.53583591668, -80.49062690732467 -0.4143089165668243, -80.5011819073345 -0.3725729165279432, -80.3722269072144 -0.216390916382494, -80.34029090718465 -0.1869459163550715, -80.28236390713072 -0.1552819163255776, -80.25861790710859 -0.1497179163203981, -80.23930890709062 -0.1356909163073396, -80.13889090699709 -0.0313909162101993, -80.11299990697297 0.0000000838190317, -80.06945490693242 0.0604180838753052, -80.04583590691043 0.1305540839406234, -80.040008906905 0.166945083974511, -80.03973590690474 0.2122180840166834, -80.04306390690785 0.2355540840384123, -80.04583590691043 0.265554084066352, -80.04500890690966 0.2927820840917121, -80.03993590690493 0.3550000841496512, -80.00314590687067 0.3429730841384497, -79.99861790686644 0.3486090841437033, -79.99306390686128 0.372218084165695, -80.01098190687796 0.4002090841917578, -80.03306390689853 0.4300000842195004, -80.04139990690629 0.4494450842376096, -80.04507290690971 0.4960450842810218, -80.02069990688702 0.5312450843137952, -80.01570890688237 0.5556910843365586, -80.02153590688779 0.586245084365018, -80.03611790690137 0.6186090843951604, -80.05013590691443 0.6384730844136612, -80.08250890694458 0.6477820844223316, -80.10778190696811 0.6770820844496228, -80.1058359069663 0.750836084518312, -80.10083590696165 0.7702820845364187, -80.04909990691347 0.831245084593192, -80.01083590687783 0.8238910845863501, -79.9713909068411 0.8272180845894468, -79.85528190673296 0.8736090846326476, -79.81945490669959 0.8986090846559307, -79.80291790668419 0.9126360846689892, -79.77779090666078 0.9386090846931836, -79.7588999066432 0.9536090847071534, -79.73626390662211 0.9679180847204805, -79.6586179065498 0.9972180847477716, -79.61667290651073 0.9908360847418294, -79.57903590647568 0.9870820847383328, -79.54938190644806 0.9920090847429179, -79.48333590638656 1.0397180847873528, -79.45903590636392 1.062918084808956, -79.44084590634698 1.075282084820472, -79.31945490623393 1.082218084826934, -79.28611790620288 1.0816640848264143, -79.25291790617196 1.0789540848238914, -79.20611790612837 1.082782084827457, -79.17015490609488 1.0937450848376642, -79.14889990607509 1.1095820848524198, -79.12306390605103 1.1347180848758285, -79.07972690601066 1.1875000849249773, -78.9994549059359 1.172218084910753, -78.92445490586606 1.231391084965864, -78.8892909058333 1.2383640849723463, -78.87445490581949 1.338336085065464, -78.82918190577733 1.4288910851498002, -78.8097179057592 1.4377820851580765, -78.67750890563607 1.285554085016301, -78.65668190561668 1.2719450850036225, -78.63195490559364 1.262218084994572, -78.59167290555612 1.2430540849767198, -78.5602909055269 1.1986090849353275, -78.54014590550814 1.2094450849454148, -78.46653590543959 1.1926360849297595, -78.45583590542962 1.1747180849130814, -78.4415359054163 1.154445084894192, -78.35376390533456 1.0687450848143811, -78.3322269053145 1.0527820847995173, -78.31015490529394 1.043891084791241, -78.28361790526922 1.0388910847865844, -78.24833590523637 1.0298640847781684, -78.23000890521931 1.0180540847671722, -78.17529090516834 0.9705540847229344, -78.10000890509824 0.9159730846721033, -78.0700089050703 0.9044450846613614, -78.03209090503498 0.9005540846577418, -77.99930890500445 0.9043090846612358, -77.92973590493965 0.8752820846342075, -77.88333590489644 0.8258360845881612, -77.85389990486902 0.8137450845768939, -77.81418190483204 0.808336084571863, -77.78000890480021 0.8279180845900953, -77.6986179047244 0.8452820846062679, -77.67834590470552 0.83721808459876, -77.65633590468502 0.8094000845728431, -77.66166390468999 0.7813910845467689, -77.6593089046878 0.7505540845180434, -77.64695490467629 0.7288910844978744, -77.62472690465559 0.7108360844810591, -77.57999990461394 0.6861090844580247, -77.56529090460023 0.6738910844466517, -77.53584590457281 0.6556910844296908, -77.51348190455198 0.6584730844322877, -77.49333590453323 0.6652820844386298, -77.46376390450568 0.6555540844295678, -77.44348190448679 0.6218090843981372, -77.44625490448938 0.585136084363981, -77.4511179044939 0.5412450843231085, -77.42209090446687 0.4127820842034708, -77.37945490442716 0.3847180841773366, -77.31167290436403 0.3630540841571559, -77.21889990427763 0.3361090841320618, -77.19174590425234 0.3349180841309476, -77.0796089041479 0.3595640841539023, -77.03528190410663 0.3062450841042477, -76.86659990394953 0.2393730840419721, -76.81139990389812 0.2413910840438547, -76.77028190385982 0.2488910840508396, -76.72696390381948 0.2630540840640236, -76.71666390380989 0.2831910840827732, -76.61195490371237 0.2588910840601528, -76.58487290368716 0.2308360840340242, -76.5666729036702 0.2205540840244424, -76.54515490365016 0.2191640840231486, -76.44862690356027 0.2469450840490168, -76.40779090352223 0.271664084072043, -76.40084590351576 0.39231808418441, -76.24305490336882 0.3955540841874239, -76.14528190327775 0.3708360841644094, -76.0401179031798 0.3376360841334787, -76.02487290316562 0.3201270841171748, -75.98028190312408 0.2563910840578245, -75.91278190306122 0.16333608397116, -75.76084590291971 0.0468090838626267, -75.72750890288867 0.0355540838521478, -75.6940359028575 0.0430540838591327, -75.57542690274703 0.0318090838486569, -75.51889090269438 -0.0080549161884704, -75.43444590261574 -0.0594459162363279, -75.39903590258275 -0.072081916248095, -75.34972690253683 -0.0783359162539199, -75.32556390251433 -0.0883359162632331, -75.30000890249053 -0.1022179162761603, -75.28584590247733 -0.1197179162924584, -75.30528190249544 -0.1347179163064283, -75.34972690253683 -0.1512549163218324, -75.42500890260695 -0.1643089163339937, -75.47987290265804 -0.1437549163148475, -75.5190269026945 -0.1168729162898074, -75.61581790278466 -0.1065179162801684, -75.62449990279273 -0.1720269163411814, -75.57119090274308 -0.1801359163487319, -75.4811179026592 -0.2323639163973752, -75.46473590264394 -0.2736089164357764, -75.45916390263875 -0.2949999164557084, -75.44861790262892 -0.3463179165034944, -75.43444590261574 -0.3841639165387392, -75.41334590259608 -0.4195819165717296, -75.38945490257383 -0.4469459165972154, -75.36389090255003 -0.4666639166155733, -75.33979990252759 -0.4646549166137106, -75.26250890245561 -0.5230549166681016, -75.24438190243872 -0.5609729167034061, -75.24902690244305 -0.6295819167673073, -75.26696390245975 -0.6460359167826368, -75.27723590246931 -0.6502819167865823, -75.28342690247509 -0.6562179167921158, -75.2927819024838 -0.730554916861351, -75.26333590245638 -0.8147179169397276, -75.21684590241308 -0.9693639170837542, -75.33042690251885 -0.9797179170933958, -75.35959090254602 -0.9677819170822772, -75.37695490256219 -0.9508359170664988, -75.40223590258573 -0.9227819170403677, -75.4319459026134 -1.0380549171477327, -75.44417290262479 -1.0855549171919705, -75.46167290264108 -1.1536089172553403, -75.48360890266152 -1.2419459173376168, -75.55361790272671 -1.513890917590885, -75.56394590273634 -1.5399549176151623, -75.5881819027589 -1.555708917629829, -75.62728190279533 -1.5963729176677077, -75.71972690288142 -1.7080549177717188, -75.78139990293886 -1.781945917840531, -75.9775089031215 -2.0163909180588746, -76.07417290321152 -2.131108918165708, -76.4038999035186 -2.3802819183977704, -76.6606269037577 -2.57213591857645, -76.90444590398478 -2.6566639186551697, -77.04333590411413 -2.7047179186999273, -77.22416390428253 -2.767217918758135, -77.4397269044833 -2.8413909188272157, -77.79444590481366 -2.9633359189407855, -77.81024590482836 -2.968154918945274, -77.85959090487432 -2.9858359189617403, -77.92538190493559 -3.039963919012152, -78.03445490503718 -3.1561819191203853, -78.0672269050677 -3.2152819191754247, -78.11639090511349 -3.275972919231947, -78.14139990513678 -3.294163919248888, -78.17584590516886 -3.3141639192675143, -78.20042690519175 -3.3343089192862863, -78.21570890520599 -3.3605549193107294, -78.20347290519459 -3.3924269193404086, -78.18119090517384 -3.4131269193596836, -78.17056390516395 -3.4519459193958397, -78.18139990517403 -3.4722179194147174, -78.24694590523508 -3.519863919459098, -78.25584590524336 -3.5169459194563757, -78.25292690524064 -3.4518089193957167, -78.26139990524854 -3.4247179193704795, -78.27944590526535 -3.4099999193567783, -78.30139990528579 -3.4077819193547043, -78.32945490531192 -3.4172179193634946, -78.34611790532743 -3.4349999193800613, -78.35223590533313 -3.4566639194002278, -78.36791790534774 -3.5183359194576695, -78.37069990535034 -3.5397179194775816, -78.36709090534697 -3.5728459195084383, -78.37250890535202 -3.633890919565289, -78.38862690536703 -3.7113909196374664, -78.39945490537711 -3.746108919669794, -78.41417290539081 -3.776526919698128, -78.42099090539718 -3.7858549197068214, -78.46667290543971 -3.832499919750262, -78.53168190550026 -3.912781919825022, -78.54084590550879 -3.9319459198428746, -78.55361790552068 -3.9786089198863266, -78.55542690552237 -4.010135919915697, -78.5555549055225 -4.046945919949977, -78.55806390552483 -4.073054919974297, -78.56360890552999 -4.0955549199952515, -78.64153590560257 -4.278472920165598, -78.65947290561927 -4.300672920186273, -78.67207290563101 -4.307090920192252, -78.67249990563141 -4.340281920223163, -78.67014590562921 -4.365135920246317, -78.6528459056131 -4.417635920295211, -78.65028190561071 -4.473608920347331, -78.66680890562611 -4.554863920423017, -78.68361790564175 -4.574445920441249, -78.70902690566543 -4.584790920450885, -78.72348190567888 -4.588890920454702, -78.76722690571962 -4.603890920468672, -78.79084590574162 -4.614163920478234, -78.82376390577228 -4.635972920498546, -78.85930890580539 -4.661526920522348, -78.87610890582103 -4.677217920536961, -78.90610890584897 -4.716663920573694, -78.91839990586041 -4.741045920596406, -78.91848190586049 -4.782635920635144, -78.92861790586993 -4.868335920714955, -79.01139990594703 -4.972217920811701, -79.03666390597056 -4.995554920833442, -79.06320890599528 -5.000308920837867, -79.1002729060298 -4.975054920814344, -79.18362690610743 -4.963890920803948, -79.20360890612604 -4.962499920802657, -79.2319179061524 -4.963854920803911, -79.2857089062025 -4.964581920804591, -79.36557290627688 -4.886108920731502, -79.44503590635088 -4.7973999206488855, -79.45167290635706 -4.766390920620012)), ((-91.20056391729908 -1.0347179171446186, -91.21779091731511 -1.0244459171350542, -91.29529091738729 -1.015554917126778, -91.32055491741083 -1.0136089171249552, -91.34583591743437 -1.019026917130006, -91.37264591745934 -1.026663917137114, -91.41959091750306 -1.0166639171278007, -91.4405639175226 -0.9963909171089256, -91.49292691757135 -0.9187549170366225, -91.50139991757925 -0.8902819170100997, -91.49403591757239 -0.8547179169769805, -91.47611791755571 -0.8263909169506007, -91.45472691753578 -0.7997179169257578, -91.31348191740423 -0.6866639168204642, -91.2376359173336 -0.6619459167974497, -91.19938191729797 -0.67257291680734, -91.16110891726233 -0.6818359168159702, -91.08368191719022 -0.5897549167302145, -91.12195491722586 -0.5495179166927358, -91.15438191725606 -0.5482639166915675, -91.3597269174473 -0.3044459164645019, -91.40764591749193 -0.2295819163947783, -91.40403591748857 -0.2030549163700783, -91.39389091747913 -0.1727819163418758, -91.40333591748792 -0.1069459162805657, -91.41820891750177 -0.0429179162209294, -91.43604591751838 -0.0179179161976464, -91.47167291755157 -0.0126359161927354, -91.51237291758947 -0.0268089162059368, -91.5413909176165 -0.0504909162279858, -91.5750089176478 -0.0499999162275344, -91.60486391767562 -0.0102819161905359, -91.60361791767446 0.0000000838190317, -91.53861791761392 0.0308360838477597, -91.3918179174772 0.1247180839351927, -91.31528191740591 0.1119450839232883, -91.31306391740385 0.0883360839013108, -91.27584591736918 0.0211090838386951, -91.25944591735391 0.0033360838221483, -91.2553549173501 0.0000000838190317, -91.21737291731473 -0.0127089161927927, -91.20292691730127 -0.0326359162113619, -91.19805491729674 -0.0911089162658101, -91.20125491729972 -0.1226359162951809, -91.20194591730036 -0.1433359163144559, -91.18493591728452 -0.2118729163782831, -91.17029091727088 -0.2405549164050029, -91.10667291721164 -0.30916391646889, -91.0752909171824 -0.3255549164841654, -91.04236391715175 -0.3456909165029174, -91.01972691713065 -0.3661089165219238, -90.99917291711152 -0.3866639165410675, -90.96417291707893 -0.4227819165747064, -90.94834591706417 -0.5256909166705555, -90.96278191707762 -0.5495819166928015, -90.90306391702201 -0.6291639167669132, -90.87918191699977 -0.6530549167891735, -90.85444591697673 -0.6805549168147849, -90.81083591693611 -0.7324999168631621, -90.87445491699536 -0.9155549170336457, -90.92659991704393 -0.9674999170820229, -91.16500891726596 -1.0326359171426844, -91.20056391729908 -1.0347179171446186)), ((-90.33861791649633 -0.7813909169086912, -90.43055491658195 -0.770281916898341, -90.5395909166835 -0.6919459168253894, -90.55070891669385 -0.6329179167704098, -90.5386179166826 -0.5941639167343169, -90.53528191667948 -0.583890916724755, -90.50542691665167 -0.5451359166886647, -90.48806391663551 -0.528335916673015, -90.4544549166042 -0.5138909166595624, -90.33111791648935 -0.5016639166481696, -90.29194591645286 -0.4983359166450754, -90.18709991635521 -0.5462549166897048, -90.17875491634744 -0.5699999167118222, -90.18918191635716 -0.6566639167925246, -90.19972691636697 -0.6870819168208584, -90.25472691641819 -0.748263916877832, -90.33861791649633 -0.7813909169086912)), ((-80.21139990706462 -3.0366639190090723, -80.21694590706979 -3.0363909190088236, -80.26319990711286 -3.0241639189974308, -80.27319090712217 -3.0152089189890887, -80.26583590711532 -2.864717918848939, -80.26501790711455 -2.8508359188360117, -80.2619459071117 -2.8399999188259244, -80.25805490710808 -2.829999918816611, -80.24028190709151 -2.792217918781418, -80.20807290706152 -2.726108918719845, -80.08528190694716 -2.6737549186710936, -80.03834590690344 -2.6636089186616374, -80.0197269068861 -2.662217918660346, -80.00195490686956 -2.66555491866346, -79.9027909067772 -2.7220819187161, -79.9108459067847 -2.7441639187366604, -79.92389990679686 -2.76139091875271, -80.12360890698285 -2.8883359188709363, -80.10062690696145 -2.953954918932041, -80.11222690697225 -2.999999918974936, -80.1233359069826 -3.0148639189887803, -80.1933459070478 -3.0347179190072637, -80.21139990706462 -3.0366639190090723)), ((-91.49889991757692 -0.4961089166429957, -91.50418191758185 -0.4961089166429957, -91.61249991768273 -0.4483359165985092, -91.63917291770757 -0.413335916565913, -91.65223591771972 -0.3852819165397818, -91.66389091773058 -0.3161089164753577, -91.6322359177011 -0.2913909164523432, -91.48279091756191 -0.2502819164140533, -91.4690359175491 -0.2494459164132792, -91.43889991752104 -0.2708359164331995, -91.40229991748696 -0.3076359164674756, -91.39528191748042 -0.3297179164880362, -91.39667291748172 -0.4399999165907502, -91.4051459174896 -0.4588909166083397, -91.42110891750447 -0.4666639166155733, -91.49889991757692 -0.4961089166429957)), ((-90.60583591674519 -0.3755549165307315, -90.67083591680573 -0.3488909165058942, -90.69111791682462 -0.3472179165043343, -90.72639991685747 -0.3558359165123619, -90.74042691687053 -0.3574999165139161, -90.82652691695073 -0.3379179164956696, -90.87445491699536 -0.2699999164324254, -90.83472691695836 -0.1769459163457583, -90.81347291693857 -0.1569459163271318, -90.79333591691982 -0.1494459163201469, -90.74750891687714 -0.1630549163328254, -90.67695491681143 -0.1877819163558456, -90.6622269167977 -0.193335916361022, -90.64361791678039 -0.2008359163680069, -90.62221791676045 -0.2138909163801657, -90.6138909167527 -0.2194459163853395, -90.59889091673872 -0.2316639163967125, -90.55139091669449 -0.2788909164407016, -90.54749991669087 -0.301663916461905, -90.58472691672553 -0.3620819165181786, -90.6011179167408 -0.3749999165302142, -90.60583591674519 -0.3755549165307315)), ((-89.53333591574635 -0.9586089170737324, -89.54556391575774 -0.9572179170724411, -89.62792691583444 -0.9293089170464555, -89.62722691583379 -0.9155549170336457, -89.61750891582474 -0.8979179170172102, -89.59222691580119 -0.8819459170023407, -89.57779091578774 -0.8758359169966496, -89.55667291576809 -0.8627819169844884, -89.54028191575281 -0.851945916974401, -89.47529091569228 -0.8048639169305574, -89.46833591568581 -0.7744459169022235, -89.46334591568116 -0.7655549168939473, -89.44722691566615 -0.7431909168731181, -89.41959091564041 -0.7230549168543661, -89.36195491558674 -0.690835916824355, -89.35028191557586 -0.6888909168225439, -89.32833591555543 -0.686108916819947, -89.31556391554354 -0.6852819168191786, -89.2572359154892 -0.6894459168230611, -89.24626391547899 -0.7059729168384479, -89.2605549154923 -0.7469459168766122, -89.27500891550577 -0.7669459168952386, -89.30584591553448 -0.8019459169278349, -89.41583591563692 -0.919999917037785, -89.44111791566047 -0.9356909170523977, -89.53333591574635 -0.9586089170737324)), ((-90.44056391659127 -1.3561089174439331, -90.44667291659697 -1.3552819174431647, -90.46612691661508 -1.352081917440188, -90.4951459166421 -1.3344459174237642, -90.51668191666217 -1.3144459174051377, -90.5230549166681 -1.3066639173978842, -90.48918191663655 -1.2252819173220928, -90.4790359166271 -1.2184729173157507, -90.43583591658687 -1.2183359173156276, -90.36917291652479 -1.2638179173579829, -90.36556391652142 -1.278335917371507, -90.37139991652685 -1.29305491738522, -90.39666391655038 -1.3258359174157448, -90.41153591656423 -1.3420819174308747, -90.43209091658338 -1.3543089174422676, -90.44056391659127 -1.3561089174439331))) +PRY Paraguay MULTIPOLYGON (((-57.6726728860738 -25.29429993973811, -57.7063908861052 -25.27139093971678, -57.73729088613398 -25.23326393968128, -57.74972688614555 -25.20028193965055, -57.76110888615615 -25.171526939623774, -57.858063886246455 -25.097499939554837, -57.879172886266105 -25.08486393954307, -57.908054886293 -25.078054939536727, -57.93556388631863 -25.07749993953621, -58.05971788643426 -25.03444593949611, -58.129172886498935 -25.008054939471535, -58.181808886547955 -24.975554939441267, -58.28167288664096 -24.97861793944412, -58.352226886706674 -24.967917939434145, -58.449308886797084 -24.859581939333253, -58.532645886874704 -24.833199939308685, -58.57583588691493 -24.826390939302343, -58.604445886941576 -24.828608939304402, -58.66972688700237 -24.82222693929846, -58.80791788713107 -24.78152693926056, -58.8813908871995 -24.729999939212576, -58.92249988723779 -24.697781939182562, -58.938608887252784 -24.685554939171183, -58.98972688730039 -24.654726939142463, -59.05861788736455 -24.618617939108844, -59.101954887404915 -24.608335939099263, -59.28972688757979 -24.515281939012596, -59.33889088762558 -24.48889093898802, -59.3569458876424 -24.471390938971723, -59.38319988766685 -24.43513593893796, -59.470835887748464 -24.354726938863067, -59.533617887806926 -24.315699938826725, -59.67028188793421 -24.233608938750265, -59.98278188822525 -24.042781938572546, -60.03806388827674 -24.00972693854176, -60.06667288830337 -24.01639093854797, -60.087781888323036 -24.024172938555225, -60.11583588834917 -24.03221793856271, -60.13945488837116 -24.03778193856789, -60.162781888392885 -24.041672938571523, -60.2797268885018 -24.038472938568532, -60.456390888666334 -23.98889093852236, -60.57742688877906 -23.946317938482707, -60.59201788879264 -23.91896393845724, -60.61389088881302 -23.8944459384344, -60.73222688892322 -23.872217938413698, -60.76083588894987 -23.872499938413966, -60.87528188905645 -23.84972693839275, -60.986390889159935 -23.821663938366612, -61.010699889182575 -23.810835938356533, -61.024726889195634 -23.7861089383335, -61.03472688920495 -23.754172938303768, -61.111326889276285 -23.608399938168006, -61.18249988934258 -23.55472693811801, -61.29472688944709 -23.489172938056967, -61.364172889511764 -23.456108938026162, -61.45083588959248 -23.418054937990732, -61.59417288972597 -23.297090937878068, -61.6326358897618 -23.283472937865383, -61.671735889798214 -23.286317937868034, -61.74416388986566 -23.234235937819534, -61.746254889867615 -23.188054937776528, -61.757635889878216 -23.17152693776113, -61.85528188996915 -23.089999937685207, -61.88902689000058 -23.074308937670594, -61.91889089002839 -23.068335937665026, -61.990490890095074 -23.005490937606496, -62.00695489011041 -22.97528193757836, -62.00465489010827 -22.95007293755488, -62.02569989012787 -22.899026937507344, -62.042226890143255 -22.876390937486264, -62.10195489019888 -22.816390937430384, -62.15472689024803 -22.756108937374236, -62.237645890325254 -22.5704179372013, -62.24028189032771 -22.542781937175562, -62.25041789033715 -22.525281937159264, -62.28528189036962 -22.495835937131844, -62.31583589039808 -22.480835937117874, -62.34139089042188 -22.47028193710804, -62.36347289044244 -22.468472937106355, -62.39236389046934 -22.456808937095502, -62.521390890589515 -22.37083593701543, -62.61778189067928 -22.275554936926696, -62.64377289070349 -22.23889993689255, -62.63417289069454 -22.221945936876764, -62.60110889066375 -22.12055493678234, -62.52444589059236 -21.883608936561657, -62.486117890556656 -21.764999936451204, -62.47480889054613 -21.728063936416802, -62.47055489054216 -21.71417293640387, -62.377781890455765 -21.426390936135846, -62.25889989034505 -21.056945935791774, -62.26109089034709 -21.000517935739225, -62.26416389034995 -20.810835935562565, -62.26528189035099 -20.742226935498664, -62.26778189035332 -20.62194593538665, -62.26944589035487 -20.562226935331026, -62.198835890289104 -20.471390935246433, -62.10195489019888 -20.33749993512174, -61.913072890022974 -20.08000893488193, -61.84749988996191 -19.910835934724375, -61.77444588989387 -19.724726934551043, -61.74249988986412 -19.6449999344768, -61.66889088979556 -19.633335934465933, -61.3572268895053 -19.58305493441911, -60.796390888982984 -19.4902819343327, -60.6133358888125 -19.459163934303717, -60.51639988872222 -19.434717934280954, -60.42444588863658 -19.410835934258714, -60.05749988829484 -19.3147269341692, -60.018526888258535 -19.302072934157422, -59.981808888224336 -19.296808934152523, -59.57361788784418 -19.32166393417566, -59.42833588770888 -19.329999934183434, -59.156390887455615 -19.34555493419792, -59.09583588739922 -19.348890934201023, -58.79261788711682 -19.501508934343164, -58.52056388686346 -19.638617934470858, -58.26805488662828 -19.76416393458777, -58.232226886594916 -19.782499934604857, -58.15097288651924 -19.831108934650118, -58.131254886500884 -19.986117934794493, -58.13305488650255 -20.08222693488399, -58.13722688650644 -20.116390934915813, -58.15889088652662 -20.168054934963934, -58.155835886523775 -20.22861793502034, -58.13694588650618 -20.278890935067153, -58.09722688646919 -20.34139093512536, -58.05889088643349 -20.40110893518097, -58.008826886386856 -20.51347293528562, -57.99597288637489 -20.61805493538303, -57.967745886348595 -20.710135935468784, -57.935908886318956 -20.67146393543277, -57.90889088629379 -20.676390935437354, -57.85958188624787 -20.73472693549168, -57.85667288624515 -20.838608935588425, -57.81459088620596 -20.978754935718953, -57.852645886241405 -21.341663936056932, -57.879172886266105 -21.3802819360929, -57.91555488629999 -21.429172936138443, -57.93249988631577 -21.46167293616871, -57.95430888633608 -21.513890936217337, -57.93778188632069 -21.63652693633155, -57.926399886310094 -21.6566639363503, -57.93567288631873 -21.77194593645767, -57.963335886344495 -21.97222693664419, -57.984026886363765 -22.02569093669399, -57.98722688636674 -22.06083593672672, -57.98510888636477 -22.09182693675558, -57.928890886312416 -22.11778193677975, -57.892226886278266 -22.129026936790225, -57.824863886215525 -22.144026936804195, -57.791672886184614 -22.12917293679037, -57.76778188616237 -22.113054936775356, -57.640008886043375 -22.121108936782846, -57.60944588601491 -22.174999936833046, -57.37459088579618 -22.217781936872882, -57.33194588575647 -22.218054936873145, -57.23958188567045 -22.21249993686797, -57.197781885631514 -22.20722693686305, -57.153335885590124 -22.20360893685968, -56.98889088543697 -22.232781936886852, -56.87749988533322 -22.27417293692541, -56.80833588526882 -22.264726936916603, -56.769526885232665 -22.24804593690108, -56.75805488522198 -22.241390936894874, -56.698126885166175 -22.216108936871322, -56.677781885147226 -22.23368193688769, -56.63417288510661 -22.251945936904704, -56.573890885050474 -22.189445936846496, -56.55597288503378 -22.166672936825293, -56.54597288502447 -22.144445936804587, -56.526117885005974 -22.115417936777547, -56.49528188497726 -22.0883089367523, -56.45694588494156 -22.07583593674069, -56.39652688488529 -22.068681936734023, -56.370835884861364 -22.126108936787503, -56.36083588485205 -22.157708936816945, -56.32944588482282 -22.18667293684392, -56.30917288480393 -22.203335936859432, -56.20291788470497 -22.274726936925916, -56.168199884672646 -22.283890936934455, -56.085563884595686 -22.292154936942154, -56.046672884559456 -22.27833593692928, -55.98889088450565 -22.273335936924624, -55.84972688437604 -22.28889093693911, -55.74430888427786 -22.397499937040266, -55.74125488427502 -22.42014593706135, -55.74083588427463 -22.45360893709251, -55.739726884273594 -22.477781937115026, -55.73430888426854 -22.526254937160175, -55.72722688426195 -22.5462549371788, -55.7094458842454 -22.57389093720454, -55.68972688422703 -22.591117937220588, -55.664172884203225 -22.60722693723558, -55.62610888416778 -22.62090893724833, -55.609172884152 -22.63847293726468, -55.61007288415284 -22.734099937353747, -55.632854884174066 -22.777426937394097, -55.648399884188535 -22.81492693742902, -55.64500888418539 -22.857917937469054, -55.60639088414942 -23.02028193762027, -55.583890884128465 -23.085281937680804, -55.54917288409612 -23.137499937729444, -55.54965488409658 -23.307017937887323, -55.54360888409094 -23.33305493791157, -55.502426884052596 -23.37971793795502, -55.53520888408312 -23.459172938029027, -55.52083588406974 -23.605281938165092, -55.50528188405525 -23.624172938182696, -55.485008884036375 -23.638054938195623, -55.462990884015866 -23.66139093821735, -55.442154883996466 -23.70270893825584, -55.433063883988 -23.750554938300397, -55.42778188398307 -23.802781938349028, -55.42056388397636 -23.878335938419397, -55.42028188397609 -23.924726938462598, -55.41209088396846 -23.954308938490158, -55.39666388395409 -23.971108938505793, -55.37125488393043 -23.98444593851822, -55.3474998839083 -23.99263593852585, -55.19639088376758 -24.019308938550694, -55.174999883747645 -24.020554938551854, -55.15028188372463 -24.01639093854797, -55.03139088361391 -23.994445938527534, -54.924726883514566 -23.965281938500368, -54.90257288349393 -23.94896393848518, -54.88145488347426 -23.921108938459227, -54.62569988323608 -23.80492693835103, -54.539454883155756 -23.847499938390683, -54.40722688303261 -23.916672938455108, -54.288608882922134 -24.02028193855159, -54.2438998828805 -24.053608938582627, -54.26958188290442 -24.06569093859389, -54.29430888292744 -24.085417938612252, -54.32583588295681 -24.11749993864214, -54.336672882966894 -24.148054938670597, -54.31667288294827 -24.241672938757787, -54.30264588293521 -24.257226938772263, -54.28013588291425 -24.27263593878662, -54.26299088289828 -24.293263938805836, -54.24944588288567 -24.35354593886197, -54.27597288291037 -24.413335938917655, -54.293617882926796 -24.428890938932142, -54.31249988294438 -24.450554938952322, -54.32333588295448 -24.46972693897017, -54.33139088296198 -24.49278193899164, -54.33430888296469 -24.518472939015567, -54.3215358829528 -24.554790939049397, -54.31180888294374 -24.602781939094086, -54.315563882947245 -24.62778193911737, -54.32500888295604 -24.66194593914919, -54.330554882961195 -24.67944593916549, -54.39639088302252 -24.804445939281905, -54.40805488303337 -24.838890939313984, -54.45361788307581 -25.017226939480068, -54.45833588308021 -25.066526939525986, -54.45541788307749 -25.08972693954759, -54.42354588304781 -25.13312693958801, -54.4275088830515 -25.153054939606577, -54.50569988312432 -25.280417939725183, -54.52444588314178 -25.303199939746406, -54.549590883165195 -25.332226939773435, -54.57430888318821 -25.354445939794132, -54.61645488322746 -25.445690939879114, -54.59891788321113 -25.51045493993942, -54.59891788321113 -25.573226939997895, -54.62333588323388 -25.648608940068087, -54.61167288322301 -25.781945940192273, -54.604445883216286 -25.943608940342827, -54.660354883268354 -25.976254940373238, -54.660972883268926 -26.157917940542426, -54.639590883249014 -26.18778194057024, -54.6409728832503 -26.21430894059494, -54.667499883275 -26.23888194061783, -54.658754883266866 -26.285554940661292, -54.693199883298945 -26.428054940794006, -54.84222688343773 -26.657499941007693, -54.87659988346975 -26.655281941005633, -54.907781883498785 -26.667781941017275, -54.92889088351845 -26.688263941036347, -54.94041788352918 -26.740835941085308, -54.949308883537455 -26.76833594111092, -54.96333588355053 -26.783199941124764, -54.9925088835777 -26.79389094113472, -55.034445883616755 -26.79499994113575, -55.05562688363648 -26.80326394114345, -55.129999883705736 -26.872708941208124, -55.25110888381853 -26.93610894126717, -55.271117883837164 -26.937499941268463, -55.37944588393806 -26.966390941295373, -55.40083588395798 -26.974026941302483, -55.417645883973634 -26.986390941314, -55.54749988409456 -27.112226941431196, -55.573335884118634 -27.1666729414819, -55.581117884125874 -27.214999941526905, -55.570281884115786 -27.235417941545926, -55.56848188411411 -27.25583594156494, -55.58459088412911 -27.316808941621723, -55.59999988414346 -27.34208194164526, -55.73167288426609 -27.436672941733356, -55.75778188429041 -27.44194594173827, -55.84472688437138 -27.40625494170503, -55.859026884384704 -27.39152694169131, -55.86757288439266 -27.35840894166047, -55.89250888441589 -27.332635941636468, -55.92319988444447 -27.326526941630775, -55.96527288448365 -27.33195494163583, -56.035699884549246 -27.305135941610857, -56.06444588457602 -27.302781941608664, -56.09861788460783 -27.304726941610475, -56.14402688465013 -27.31146394161675, -56.26812688476571 -27.389381941689315, -56.27139088476875 -27.424999941722483, -56.26889088476642 -27.448608941744475, -56.2749998847721 -27.468335941762845, -56.34555488483781 -27.570281941857793, -56.36562688485651 -27.584726941871246, -56.398054884886704 -27.58444594187098, -56.418617884905856 -27.57471794186192, -56.456390884941044 -27.54722694183632, -56.49389088497597 -27.502363941794535, -56.504172884985536 -27.475281941769317, -56.52028188500054 -27.461945941756895, -56.549999885028214 -27.452499941748094, -56.57819988505449 -27.44861794174448, -56.60694588508126 -27.44833594174422, -56.644445885116184 -27.453890941749393, -56.67305488514282 -27.461390941756378, -56.696672885164816 -27.474163941768275, -56.70627288517376 -27.48343594177691, -56.73139088519716 -27.505281941797257, -56.766535885229885 -27.501945941794148, -56.7926458852542 -27.48972694178277, -56.813335885273474 -27.47028194176466, -56.83583588529443 -27.449445941745253, -56.86249988531925 -27.428199941725467, -56.88069988533621 -27.41958194171744, -56.916181885369255 -27.419308941717183, -56.964726885414464 -27.434172941731028, -56.99860888544602 -27.450835941746547, -57.04423588548852 -27.476808941770734, -57.077781885519755 -27.4922269417851, -57.12167288556063 -27.490281941783287, -57.16445488560048 -27.484172941777594, -57.20722688564031 -27.471945941766208, -57.23736388566837 -27.459581941754692, -57.269172885698 -27.44221794173852, -57.29695488572388 -27.431117941728182, -57.3236178857487 -27.425554941723, -57.34492688576856 -27.426117941723525, -57.41306388583202 -27.417781941715766, -57.6169548860219 -27.371663941672814, -57.64486388604789 -27.360699941662602, -57.68249988608294 -27.334999941638664, -57.703899886102874 -27.31944594162418, -57.7295908861268 -27.307081941612665, -57.79139088618436 -27.292226941598834, -57.935835886318884 -27.2755549415833, -58.01111788638899 -27.270281941578396, -58.15639088652429 -27.268890941577098, -58.28972688664847 -27.273890941581755, -58.47972688682542 -27.286108941593135, -58.50556388684949 -27.288608941595463, -58.52916388687146 -27.293335941599864, -58.56098188690109 -27.301108941607104, -58.60461788694174 -27.316917941621824, -58.598963886936474 -27.249235941558794, -58.61486388695127 -27.227226941538298, -58.653517886987274 -27.193045941506462, -58.652090886985945 -27.158890941474652, -58.628063886963574 -27.13110894144878, -58.60583588694287 -27.124999941443086, -58.57860888691751 -27.122499941440758, -58.47116388681745 -26.987263941314815, -58.394445886746 -26.90805494124104, -58.35276388670718 -26.88539094121994, -58.31667288667356 -26.872781941208196, -58.18167288654783 -26.6561089410064, -58.168608886535665 -26.59999994095414, -58.18291788654899 -26.57110894092724, -58.217226886580946 -26.54139094089956, -58.20993588657416 -26.42034594078683, -58.161945886529466 -26.300554940675262, -58.13139088650101 -26.257226940634915, -58.144726886513425 -26.206945940588085, -58.04833588642366 -26.119163940506333, -58.002917886381354 -26.10417294049237, -57.86007288624832 -25.997917940393407, -57.890908886277046 -25.973890940371035, -57.90077288628622 -25.955072940353503, -57.85389088624257 -25.90444594030636, -57.80555488619754 -25.833054940239876, -57.8109818862026 -25.773135940184062, -57.792917886185776 -25.766672940178054, -57.74889088614478 -25.73513594014868, -57.576663885984374 -25.54944593997574, -57.55389088596317 -25.4683359399002, -57.55632688596543 -25.439999939873815, -57.588199885995124 -25.41541793985091, -57.63208188603599 -25.386390939823883, -57.66861788607001 -25.30611793974913, -57.6726728860738 -25.29429993973811))) +PER Peru POLYGON ((-69.49972689708859 -17.505281932484024, -69.68389989726012 -17.663608932631476, -69.81472689738196 -17.652226932620877, -69.83487289740073 -17.681390932648043, -69.84972689741456 -17.74923593271123, -69.8124998973799 -17.801108932759533, -69.77444589734445 -17.98528193293106, -69.84459089740977 -18.13236393306805, -69.95848189751584 -18.249445933177086, -70.13250889767792 -18.321254933243964, -70.36709089789639 -18.32278193324538, -70.40549089793215 -18.348545933269378, -70.56611789808174 -18.22110893315069, -70.64959089815949 -18.193608933125077, -70.95736389844612 -17.915417932865992, -71.09499989857432 -17.858890932813352, -71.3016818987668 -17.71167293267625, -71.356672898818 -17.62194593259268, -71.39931789885773 -17.39944593238546, -71.4858358989383 -17.330835932321563, -71.49423589894613 -17.302226932294914, -71.66334589910362 -17.225281932223254, -71.83529089926375 -17.185281932186, -71.92598189934822 -17.091117932098314, -72.12639989953487 -16.979172931994057, -72.23279089963395 -16.90194593192213, -72.36472689975683 -16.75833593178838, -72.45819989984389 -16.706390931740003, -72.6148728999898 -16.65805493169499, -72.79278190015549 -16.631390931670154, -72.9054269002604 -16.542499931587372, -73.23499990056735 -16.41166393146551, -73.40695490072748 -16.30028193136178, -73.83619090112724 -16.15757293122887, -73.9994549012793 -16.028054931108258, -74.04639090132301 -15.965835931050307, -74.17180890143982 -15.900135930989123, -74.39445490164717 -15.830281930924059, -74.44222690169165 -15.795690930891851, -74.4824269017291 -15.72319093082433, -75.05139090225899 -15.465972930584769, -75.243617902438 -15.207226930343793, -75.39557290257953 -15.088335930233072, -75.52153590269684 -14.909445930066468, -75.83973590299318 -14.726945929896502, -75.93389090308088 -14.651872929826581, -75.94209090308851 -14.575417929755375, -75.98542690312887 -14.47208192965914, -76.08639990322291 -14.37666392957027, -76.14056390327336 -14.230281929433943, -76.23014590335679 -14.157781929366422, -76.27737290340077 -14.035135929252206, -76.29961790342149 -13.902663929128835, -76.37056390348756 -13.910554929136183, -76.39479990351013 -13.884163929111594, -76.37188190348878 -13.810690929043176, -76.3293729034492 -13.795281929028818, -76.27337290339705 -13.85015492907992, -76.20195490333053 -13.638054928882397, -76.18153590331151 -13.457917928714622, -76.19694590332587 -13.418335928677763, -76.28333590340632 -13.282781928551515, -76.49223590360087 -13.046108928331094, -76.52000890362675 -12.90360892819838, -76.63722690373591 -12.749445928054811, -76.75056390384147 -12.535281927855351, -76.79972690388725 -12.39028192772031, -77.06667290413586 -12.105972927455525, -77.1756999042374 -12.070899927422872, -77.14110890420518 -11.99999992735684, -77.18583590424684 -11.802217927172634, -77.17486390423663 -11.736108927111061, -77.20084590426082 -11.662917927042898, -77.30473590435757 -11.510972926901388, -77.3744549044225 -11.450972926845509, -77.64770890467699 -11.297845926702905, -77.66549990469356 -11.252499926660676, -77.64907290467826 -11.219545926629976, -77.61610890464756 -11.216108926626774, -77.61090890464273 -11.180281926593409, -77.67945490470656 -10.934163926364192, -78.06945490506978 -10.321945925794026, -78.23889090522758 -9.930554925429519, -78.25584590524336 -9.87249992537545, -78.24625490523444 -9.79597292530417, -78.37779090535693 -9.619163925139503, -78.40529090538254 -9.427781924961266, -78.43972690541462 -9.36278192490073, -78.48529090545705 -9.329999924870208, -78.52057290548991 -9.172499924723525, -78.63979090560095 -9.069445924627544, -78.68340890564157 -8.987290924551033, -78.66299090562255 -8.924581924492628, -78.72611790568133 -8.828054924402736, -78.77195490572403 -8.586390924177664, -78.92562690586715 -8.416945924019856, -78.91848190586049 -8.371663923977678, -78.99459090593137 -8.219654923836117, -79.17667290610095 -8.026108923655855, -79.31833590623289 -7.9234729235602686, -79.37250890628334 -7.852781923494433, -79.42834590633534 -7.756390923404666, -79.4561179063612 -7.656945923312051, -79.58736390648345 -7.462499923130963, -79.60500890649988 -7.335554923012737, -79.64889990654075 -7.240835922924518, -79.70886390659659 -7.181526922869281, -79.71500890660232 -7.116663922808868, -79.81778190669803 -6.986108922687279, -79.93237290680476 -6.890554922598298, -79.98000890684912 -6.768608922484717, -80.11639990697614 -6.645417922369987, -80.45251790728918 -6.474717922211013, -80.66972690749147 -6.320554922067444, -81.069735907864 -6.155281921913513, -81.17472690796178 -6.086663921849606, -81.19709090798261 -5.969163921740176, -81.15153590794019 -5.855690921634505, -81.0659819078605 -5.833054921613424, -80.98348190778367 -5.869863921647706, -80.93903590774228 -5.860135921638644, -80.88889990769559 -5.790554921573843, -80.87285490768065 -5.64458192143789, -80.95625490775832 -5.440135921247489, -81.09194590788469 -5.306108921122657, -81.13625490792596 -5.286663921104548, -81.20382690798888 -5.2044459210279825, -81.17869090796547 -5.074235920906716, -81.09541790788792 -5.060135920893586, -81.08500890787823 -5.017781920854134, -81.12139990791212 -4.952217920793075, -81.35514590812981 -4.687499920546543, -81.30307290808132 -4.552217920420546, -81.27639990805648 -4.280835920167803, -81.06052690785543 -4.084754919985187, -80.98848190778833 -3.96028191986926, -80.88264590768976 -3.891317919805033, -80.81722690762884 -3.746808919670457, -80.6022269074286 -3.6201359195524816, -80.53229990736348 -3.5102089194500934, -80.37848190722022 -3.475690919417957, -80.34042690718478 -3.3805179193293213, -80.2591729071091 -3.4174269193636917, -80.20611790705969 -3.636663919567866, -80.21139990706462 -3.7391639196633264, -80.15333590701054 -3.8842269197984365, -80.3189639071648 -4.011663919917112, -80.38917290723018 -3.9790269198867207, -80.4654269073012 -3.985281919892543, -80.50168190733497 -4.050281919953079, -80.46458190730041 -4.207499920099508, -80.4455639072827 -4.221181920112244, -80.34028190718465 -4.199517920092063, -80.47999990731478 -4.388472920268043, -80.46376390729965 -4.441808920317726, -80.39056390723148 -4.478608920351988, -80.35861790720172 -4.465554920339841, -80.26221790711195 -4.397499920276459, -80.17458190703033 -4.298545920184296, -80.13459990699309 -4.2844909201712085, -80.0779269069403 -4.300135920185781, -80.02514590689115 -4.354999920236878, -79.81563590669603 -4.478817920352185, -79.64319990653544 -4.435417920311764, -79.53917290643855 -4.52083592039132, -79.44503590635088 -4.7973999206488855, -79.2857089062025 -4.964581920804591, -79.18362690610743 -4.963890920803948, -79.03666390597056 -4.995554920833442, -78.92861790586993 -4.868335920714955, -78.91839990586041 -4.741045920596406, -78.87610890582103 -4.677217920536961, -78.66680890562611 -4.554863920423017, -78.65028190561071 -4.473608920347331, -78.67207290563101 -4.307090920192252, -78.64153590560257 -4.278472920165598, -78.56360890552999 -4.0955549199952515, -78.53168190550026 -3.912781919825022, -78.39945490537711 -3.746108919669794, -78.36791790534774 -3.5183359194576695, -78.32945490531192 -3.4172179193634946, -78.26139990524854 -3.4247179193704795, -78.25584590524336 -3.5169459194563757, -78.18139990517403 -3.4722179194147174, -78.18119090517384 -3.4131269193596836, -78.21570890520599 -3.3605549193107294, -78.20042690519175 -3.3343089192862863, -78.11639090511349 -3.275972919231947, -78.03445490503718 -3.1561819191203853, -77.85959090487432 -2.9858359189617403, -76.6606269037577 -2.57213591857645, -76.07417290321152 -2.131108918165708, -75.56394590273634 -1.5399549176151623, -75.40223590258573 -0.9227819170403677, -75.33042690251885 -0.9797179170933958, -75.21684590241308 -0.9693639170837542, -75.2927819024838 -0.730554916861351, -75.28342690247509 -0.6562179167921158, -75.24902690244305 -0.6295819167673073, -75.24438190243872 -0.5609729167034061, -75.26250890245561 -0.5230549166681016, -75.41334590259608 -0.4195819165717296, -75.4811179026592 -0.2323639163973752, -75.57119090274308 -0.1801359163487319, -75.62449990279273 -0.1720269163411814, -75.61581790278466 -0.1065179162801684, -75.5190269026945 -0.1168729162898074, -75.42500890260695 -0.1643089163339937, -75.25914590245247 -0.1224819162950297, -75.22590890242152 -0.0959729162703411, -75.20500890240206 -0.0368729162153016, -75.13701790233873 -0.0453459162231979, -74.93806390215344 -0.1988909163661958, -74.860281902081 -0.2324999163975008, -74.81264590203664 -0.2056909163725322, -74.77237290199913 -0.2079179163745977, -74.72111790195139 -0.2897179164507833, -74.70876390193989 -0.3616639165177844, -74.63291790186925 -0.4065269165595708, -74.60750890184559 -0.3836089165382219, -74.37610890163008 -0.5680549167100111, -74.3161179015742 -0.7816639169089399, -74.24779090151057 -0.8536089169759435, -74.28279090154317 -0.9302819170473526, -74.24069990150397 -1.0129179171243123, -74.07779090135224 -1.072781917180066, -73.86805490115692 -1.208608917306563, -73.8409819011317 -1.265135917359217, -73.75223590104905 -1.2897179173821058, -73.6536179009572 -1.284445917377198, -73.55569990086602 -1.3752819174617912, -73.54278190085398 -1.4680549175482014, -73.44715490076493 -1.6103459176807178, -73.48695490080199 -1.6544459177217874, -73.50750890082114 -1.7483359178092286, -73.49057290080536 -1.7669459178265612, -73.29694590062503 -1.8735459179258385, -73.19701790053196 -1.8064549178633484, -73.13278190047214 -1.8491639179031267, -73.09042690043269 -1.9236089179724587, -73.05820890040269 -2.1455549181791724, -73.07779090042092 -2.2002819182301323, -73.13174590047117 -2.246254918272953, -73.11529090045585 -2.3287549183497873, -73.00306390035134 -2.410554918425973, -72.93458190028755 -2.3999999184161425, -72.88195490023854 -2.5063909185152227, -72.59014589996677 -2.407217918422859, -72.22750889962904 -2.4988909185082377, -71.9822268994006 -2.369445918387683, -71.88979989931453 -2.377781918395442, -71.80848189923879 -2.2308359182585917, -71.69319989913143 -2.1479179181813635, -71.67431789911384 -2.224999918253161, -71.52014589897026 -2.23458191826208, -71.41222689886975 -2.2812549183055495, -71.36168189882268 -2.3469459183667283, -71.18806389866099 -2.360554918379407, -70.85896389835449 -2.225345918253481, -70.65764589816699 -2.358190918377204, -70.64972689815961 -2.401254918417308, -70.5644548980802 -2.493335918503064, -70.37774589790631 -2.511672918520148, -70.33564589786711 -2.492399918502187, -70.29539089782962 -2.5012819185104576, -70.2188268977583 -2.5703459185747874, -70.19459089773574 -2.6440179186433994, -70.1206818976669 -2.7016639186970792, -70.09848189764622 -2.698335918693985, -70.06750889761739 -2.755554918747279, -70.72416389822894 -3.779717919701099, -70.52799089804624 -3.859235919775159, -70.36222689789186 -3.787781919708607, -70.32306389785539 -3.7991639197192058, -70.1818818977239 -3.9374269198479794, -70.12307289766913 -4.072363919973654, -69.95668189751417 -4.209445920101317, -69.95029089750821 -4.262499920150731, -69.9795908975355 -4.312499920197297, -70.0169638975703 -4.337945920220989, -70.19782689773875 -4.332654920216058, -70.3013908978352 -4.249999920139089, -70.29972689783365 -4.174163920068452, -70.32014589785267 -4.139717920036375, -70.4293818979544 -4.132017920029199, -70.49999989802018 -4.179717920073628, -70.58416389809855 -4.195554920088384, -70.62569989813724 -4.160554920055787, -70.76243589826458 -4.1477089200438115, -70.83222689832958 -4.187017920080422, -70.87255489836714 -4.280117920167129, -70.9562638984451 -4.382217920262221, -71.16944589864364 -4.357781920239461, -71.28593589875213 -4.381035920261127, -71.38223589884181 -4.430835920307501, -71.65056389909172 -4.508890920380196, -71.7471908991817 -4.4903549203629325, -71.90248189932633 -4.518190920388861, -72.23499989963602 -4.753335920607853, -72.37529089976667 -4.784445920636827, -72.4033358997928 -4.874517920720706, -72.47696389986136 -4.941108920782725, -72.8519639002106 -5.124717920953728, -72.89861790025405 -5.172781920998489, -72.91833590027242 -5.321663921137144, -72.96139990031253 -5.452499921259005, -72.9427909002952 -5.537499921338167, -72.96195490031305 -5.648608921441635, -73.04806390039325 -5.7919459215751345, -73.13028190046981 -5.87639092165378, -73.22973590056243 -6.093608921856074, -73.11861790045894 -6.381526922124223, -73.12389990046387 -6.447217922185402, -73.18611790052181 -6.547363922278677, -73.21667290055026 -6.566663922296641, -73.36119090068486 -6.581990922310922, -73.58750890089564 -6.734999922453426, -73.74417290104154 -6.8769459225856195, -73.79972690109328 -7.080835922775506, -73.79513590108901 -7.122626922814433, -73.71999990101904 -7.223054922907963, -73.70583590100584 -7.309235922988222, -73.73819990103598 -7.333954923011248, -73.93111790121564 -7.359163923034714, -73.9305269012151 -7.442990923112788, -73.96243590124482 -7.527363923191373, -74.00215490128181 -7.530454923194242, -74.00459090128408 -7.554372923216519, -73.8655639011546 -7.675281923329123, -73.84222690113286 -7.717363923368325, -73.7066639010066 -7.776390923423293, -73.69819990099873 -7.846181923488288, -73.72539090102406 -7.879581923519396, -73.77701790107213 -7.872881923513162, -73.77195490106742 -7.948054923583172, -73.65167290095539 -8.016663923647059, -73.59569990090327 -8.121390923744599, -73.53319990084506 -8.352363923959714, -73.40472690072541 -8.450554924051161, -73.34569990067044 -8.602363924192545, -73.27333590060304 -8.674235924259477, -73.1666729005037 -8.714163924296656, -73.05881790040326 -8.902426924471996, -73.00576390035384 -8.930345924497999, -72.96236390031342 -8.988472924552127, -72.94806390030011 -9.066526924624824, -72.96639990031719 -9.143054924696102, -73.2006999005354 -9.4007639249361, -72.73000890009703 -9.41305492494756, -72.40223589979176 -9.483608925013257, -72.30152689969798 -9.533190925059444, -72.25250889965233 -9.656945925174696, -72.26035489965963 -9.759163925269888, -72.18028189958505 -9.803399925311098, -72.15077289955758 -9.88701792538896, -72.18583589959023 -10.002499925496522, -71.29639089876187 -9.995417925489917, -71.18041789865386 -9.932226925431067, -71.13854589861486 -9.863817925367357, -71.01396389849884 -9.82083592532733, -70.8819548983759 -9.669999925186858, -70.5886178981027 -9.440835924973427, -70.51466389803383 -9.427999924961469, -70.54529089806235 -9.500835925029307, -70.60759089812038 -9.575663925098993, -70.59083589810477 -9.631599925151093, -70.59529089810891 -9.781390925290594, -70.62556389813712 -9.82597292533211, -70.62889089814021 -9.89583592539718, -70.63139089814254 -11.009163926434042, -70.52639989804476 -10.935690926365623, -70.43667289796119 -11.026945926450608, -70.32889989786082 -11.06917292648994, -70.15417289769809 -11.029999926453456, -69.92598189748557 -10.914026926345443, -69.78020889734981 -10.924717926355399, -69.73791789731042 -10.961599926389752, -69.56750889715173 -10.950554926379468, -68.9252818965536 -11.998335927355285, -68.67390889631949 -12.501154927823578, -68.74361789638441 -12.5847269279014, -68.81556389645142 -12.73305492803955, -68.87944589651092 -12.757499928062316, -68.97334589659836 -12.865490928162885, -68.9612548965871 -13.506808928760165, -69.06279089668166 -13.707781928947327, -69.01417289663638 -13.79110892902493, -68.97514589660004 -13.966254929188054, -68.89860889652876 -14.03180892924911, -68.85789089649084 -14.200135929405874, -69.0023728966254 -14.248754929451152, -68.98423589660851 -14.378126929571636, -69.23541789684243 -14.588954929767993, -69.248899896855 -14.687499929859769, -69.31056389691243 -14.766945929933755, -69.36479989696294 -14.80062692996512, -69.38139089697839 -14.964790930118014, -69.29500889689794 -15.079445930224793, -69.13709089675086 -15.227635930362808, -69.14313589675649 -15.254445930387774, -69.1959818968057 -15.26166393039449, -69.2683358968731 -15.326945930455295, -69.42098189701525 -15.621526930729644, -69.21381789682232 -16.157217931228544, -69.14000889675359 -16.222226931289086, -68.96819989659357 -16.209099931276867, -68.8242458964595 -16.32631793138603, -68.83334589646797 -16.354026931411838, -68.99084589661466 -16.419726931473022, -69.03418189665503 -16.473054931522697, -69.04139989666174 -16.547645931592157, -69.01239089663473 -16.65698193169399, -69.19195489680196 -16.77805493180675, -69.32069989692187 -16.92625493194477, -69.40639989700168 -17.07222693208071, -69.53153589711822 -17.1298639321344, -69.61889989719958 -17.214726932213424, -69.65619089723431 -17.287245932280968, -69.59083589717345 -17.295281932288447, -69.50110889708988 -17.378890932366318, -69.49972689708859 -17.505281932484024)) +URY Uruguay MULTIPOLYGON (((-58.388890886740825 -33.4224999473081, -58.41590888676599 -33.4083359472949, -58.401390886752466 -33.360072947249954, -58.37999988673255 -33.34541794723631, -58.35819988671224 -33.32368194721606, -58.34694588670176 -33.27139094716736, -58.3575088867116 -33.219999947119504, -58.36528188671883 -33.18139994708355, -58.36708188672051 -33.157363947061164, -58.360554886714425 -33.130981947036595, -58.340417886695676 -33.11709094702366, -58.31360888667071 -33.11389094702068, -58.28972688664847 -33.11500894702172, -58.24125488660333 -33.11944594702585, -58.20319988656789 -33.120835947027146, -58.16153588652908 -33.1097269470168, -58.14194588651084 -33.098899947006714, -58.089099886461625 -33.0552819469661, -58.04556388642108 -32.93471794685381, -58.04757288642294 -32.90131794682271, -58.05903588643362 -32.87139094679483, -58.08930888646181 -32.844654946769936, -58.12083588649118 -32.819308946746325, -58.13347288650294 -32.79333594672214, -58.13861788650773 -32.765281946696014, -58.1384728865076 -32.740145946672605, -58.138063886507226 -32.708335946642976, -58.140554886509534 -32.67222694660935, -58.15208188652028 -32.59833594654053, -58.1932358865586 -32.49209994644159, -58.19764588656271 -32.47833594642877, -58.1992458865642 -32.45030894640267, -58.176945886543436 -32.404026946359565, -58.1502818865186 -32.369726946327624, -58.13528188650463 -32.354172946313135, -58.10159988647327 -32.32562694628655, -58.097554886469496 -32.29459094625765, -58.10158188647324 -32.25464594622044, -58.13999988650903 -32.221672946189734, -58.16278188653024 -32.19667294616645, -58.182290886548415 -32.15684594612936, -58.17833588654473 -32.12625494610087, -58.1612358865288 -32.10106394607741, -58.15111788651937 -32.06639094604512, -58.145972886514585 -31.993054945976816, -58.16042688652804 -31.951108945937754, -58.20014588656504 -31.894790945885305, -58.18459088655055 -31.860281945853167, -58.16222688652972 -31.841117945835315, -58.13902688650812 -31.834308945828973, -58.09791788646983 -31.827081945822243, -58.063608886437876 -31.812499945808668, -58.04020888641608 -31.789172945786937, -57.98153588636144 -31.61944594562887, -57.977781886357945 -31.580899945592968, -57.98986388636919 -31.54833594556264, -58.01291788639067 -31.523608945539614, -58.035690886411885 -31.507263945524393, -58.065281886439436 -31.49416394551219, -58.078890886452115 -31.47589994549518, -58.06805488644201 -31.449717945470795, -58.038754886414736 -31.43347294545567, -58.00444588638278 -31.417708945440985, -57.920835886304914 -31.27097294530433, -57.853617886242304 -31.065554945113014, -57.79694588618953 -30.883472944943442, -57.79778188619031 -30.80569994487101, -57.79932688619175 -30.791763944858033, -57.80291788619509 -30.765417944833494, -57.806399886198335 -30.748217944817476, -57.813890886205314 -30.71375494478538, -57.845835886235065 -30.642645944719156, -57.871535886259 -30.621526944699482, -57.88986388627606 -30.598335944677885, -57.889454886275686 -30.534999944618903, -57.88278188626947 -30.515135944600402, -57.868617886256274 -30.499445944585787, -57.79695488618954 -30.448335944538186, -57.74611788614219 -30.417499944509473, -57.66889088607027 -30.35472694445101, -57.63139088603535 -30.29875494439888, -57.624999886029386 -30.27889094438038, -57.62944588603354 -30.237781944342096, -57.60799988601356 -30.18492694429287, -57.576808885984505 -30.197081944304188, -57.56430888597286 -30.215145944321016, -57.56659988597501 -30.247435944351082, -57.54736388595708 -30.266390944368737, -57.52486388593613 -30.274581944376365, -57.49541788590871 -30.279863944381283, -57.356390885779234 -30.272226944374175, -57.32222688574741 -30.266672944369, -57.303754885730214 -30.275417944377146, -57.285281885713005 -30.29333594439383, -57.23389088566515 -30.29333594439383, -57.21389088564652 -30.292081944392663, -57.19361788562763 -30.28263594438387, -57.14791788558507 -30.238199944342483, -57.147090885584305 -30.208054944314405, -57.14417288558158 -30.18499994429294, -57.103890885544075 -30.13541794424676, -57.07097288551341 -30.108890944222054, -56.93361788538549 -30.09749994421145, -56.86055488531744 -30.096672944210674, -56.81139088527166 -30.105281944218696, -56.790281885252 -30.115554944228258, -56.639172885111265 -30.228472944333426, -56.56778188504478 -30.29916394439926, -56.5480548850264 -30.32306394442152, -56.526945885006754 -30.345835944442726, -56.511117884992004 -30.358890944454885, -56.387508884876894 -30.459999944549054, -56.31528188480962 -30.508335944594066, -56.26694588476461 -30.535835944619677, -56.235835884735636 -30.558335944640632, -56.116390884624394 -30.675835944750062, -56.001672884517546 -30.79583594486182, -55.989726884506425 -30.812781944877607, -55.97680888449439 -30.85104594491324, -55.98500888450204 -30.89069994495017, -56.002226884518066 -30.921872944979206, -56.0066728845222 -30.963608945018073, -56.012217884527374 -31.066390945113795, -56.008917884524294 -31.079790945126277, -55.98667288450358 -31.081672945128027, -55.910563884432705 -31.082226945128546, -55.89055488441406 -31.079999945126474, -55.83791788436504 -31.07278194511975, -55.759445884291964 -31.016945945067746, -55.67195488421048 -30.949445945004882, -55.640417884181105 -30.870699944931545, -55.6290268841705 -30.850417944912657, -55.58417288412872 -30.84625494490878, -55.521117884069994 -30.888890944948486, -55.42167288397738 -30.963054945017554, -55.35069988391129 -31.045699945094526, -55.3302088838922 -31.07839994512498, -55.24736388381504 -31.231254945267338, -55.22875488379772 -31.249726945284543, -55.0895818836681 -31.32569094535529, -55.06312688364346 -31.32528194535491, -54.97695488356321 -31.318890945348954, -54.94250888353113 -31.350835945378705, -54.91360888350421 -31.374445945400694, -54.865835883459724 -31.409726945433555, -54.834035883430104 -31.426672945449333, -54.80709088340501 -31.435690945457736, -54.76305488336399 -31.44110894546278, -54.72833588333167 -31.43860894546045, -54.705008883309944 -31.440135945461876, -54.59409988320665 -31.460908945481222, -54.47222688309314 -31.579790945591938, -54.46339988308492 -31.672608945678384, -54.44167288306468 -31.681663945686815, -54.41499988303984 -31.69360894569794, -54.383199883010235 -31.715699945718512, -54.35110888298034 -31.750145945750596, -54.28583588291956 -31.804445945801163, -54.16445488280651 -31.88721794587825, -54.095835882742605 -31.884163945875407, -54.071326882719774 -31.875699945867524, -53.91854588257749 -31.942154945929417, -53.87541788253732 -31.974445945959488, -53.74305488241404 -32.09667294607332, -53.6647268823411 -32.20694594617602, -53.63722688231549 -32.27139094623604, -53.643617882321436 -32.30562694626792, -53.630763882309466 -32.35799094631669, -53.567508882250564 -32.431117946384795, -53.55333588223736 -32.44610894639876, -53.537226882222356 -32.46083594641247, -53.52111788220735 -32.47444594642515, -53.404172882098436 -32.568054946512326, -53.378199882074256 -32.57430894651815, -53.34972688204773 -32.57917294652268, -53.25999988196416 -32.60083594654286, -53.19167288190053 -32.63402694657377, -53.15917288187026 -32.661117946599, -53.098299881813574 -32.72343594665704, -53.170799881881095 -32.80218194673038, -53.24556388195073 -32.8622269467863, -53.29861788200013 -32.94667294686494, -53.43556388212768 -33.04028194695213, -53.46222688215251 -33.05917294696972, -53.48041788216945 -33.07486394698433, -53.50028188218795 -33.099999947007746, -53.51583588220244 -33.129308947035035, -53.52104588220729 -33.14160894704649, -53.52458188221058 -33.1570819470609, -53.53028188221589 -33.19944594710036, -53.528617882214334 -33.22111794712054, -53.522226882208386 -33.25944594715624, -53.51569988220231 -33.290417947185084, -53.509172882196225 -33.32139094721393, -53.50110888218872 -33.40805494729464, -53.50139988218899 -33.42806394731328, -53.50500888219236 -33.46028194734328, -53.50833588219545 -33.486390947367596, -53.51389088220063 -33.5247269474033, -53.52305488220915 -33.57417294744935, -53.5288908822146 -33.611117947483756, -53.53444588221977 -33.656954947526444, -53.52131788220754 -33.68173594754953, -53.39763588209236 -33.74111794760483, -53.374299882070616 -33.740672947604416, -53.39917288209378 -33.756954947619576, -53.41667288211008 -33.769726947631476, -53.43972688213155 -33.79222694765243, -53.46069988215109 -33.81653594767507, -53.4825088821714 -33.854445947710374, -53.490563882178904 -33.87610894773055, -53.49917288218691 -33.90430894775681, -53.51278188219959 -33.979726947827054, -53.535554882220794 -34.06236394790401, -53.56833588225133 -34.08249994792277, -53.59889088227979 -34.105281947943986, -53.69791788237201 -34.18944594802237, -53.71833588239103 -34.214172948045395, -53.75187288242226 -34.26139094808937, -53.77688188244555 -34.34222694816466, -53.84194588250615 -34.420563948237614, -53.90416388256409 -34.450835948265805, -53.982226882636795 -34.499026948310686, -54.093608882740526 -34.591945948397225, -54.11389088275942 -34.60945494841353, -54.13951788278328 -34.63673594843894, -54.14076388278444 -34.66465494846494, -54.17139088281297 -34.67639094847587, -54.235699882872865 -34.67528194847484, -54.2524998828885 -34.628335948431115, -54.249517882885726 -34.605699948410034, -54.24381788288042 -34.58402694838985, -54.312917882944774 -34.56285494837013, -54.29098188292434 -34.66069994846126, -54.27889088291309 -34.6906999484892, -54.33653588296677 -34.72459094852076, -54.53110888314798 -34.806081948596656, -54.54833588316403 -34.81110894860134, -54.588617883201536 -34.82471794861401, -54.686108883292334 -34.858890948645836, -54.724445883328045 -34.87555494866135, -54.830554883426856 -34.92361794870612, -54.89611788348792 -34.94360894872474, -54.95437288354218 -34.943817948724934, -55.05312688363415 -34.89291794867753, -55.091945883670306 -34.88528194867042, -55.13014588370588 -34.88625494867132, -55.170563883743526 -34.89249994867714, -55.22333588379267 -34.90653594869021, -55.248754883816346 -34.9079179486915, -55.28375488384894 -34.88152694866692, -55.30472688386847 -34.85139094863885, -55.33361788389537 -34.82695494861609, -55.35639088391659 -34.81417294860419, -55.37339988393242 -34.80844594859886, -55.43333588398825 -34.80389094859461, -55.60000888414348 -34.78167294857392, -55.69278188422987 -34.775072948567775, -55.7875088843181 -34.788890948580644, -55.811672884340595 -34.79583594858711, -55.910281884432436 -34.82833594861738, -55.930972884451705 -34.83833594862669, -55.96555488448391 -34.861390948648165, -56.005145884520786 -34.88306394866835, -56.02791788454199 -34.89125494867598, -56.03433588454797 -34.89082694867558, -56.15833588466346 -34.92722694870948, -56.317917884812076 -34.91034594869376, -56.42583588491259 -34.84055494862876, -56.40361788489189 -34.81472694860471, -56.36690888485771 -34.79543594858674, -56.41166388489938 -34.78750894857936, -56.57889988505514 -34.76389094855736, -56.829726885288736 -34.68944594848803, -56.89590888535038 -34.65669994845753, -57.111254885550935 -34.464172948278225, -57.174272885609625 -34.4529729482678, -57.18528188561987 -34.44840894826355, -57.433335885850894 -34.44971794826476, -57.55333588596265 -34.44333594825882, -57.66180888606367 -34.46014594827448, -57.836872886226715 -34.492781948304874, -57.87743588626449 -34.44278194825831, -57.89763588628331 -34.38556394820502, -57.91056388629535 -34.36597294818677, -57.96444588634553 -34.30833594813309, -58.07944588645263 -34.190699948023536, -58.105417886476815 -34.176945948010726, -58.210835886575 -34.123063947960546, -58.221117886584565 -34.10472694794347, -58.2511088866125 -34.06249994790414, -58.30083588665882 -34.00167294784749, -58.315563886672535 -33.98667294783352, -58.335008886690645 -33.9747269478224, -58.361881886715665 -33.96159994781017, -58.40375488675467 -33.92646394777745, -58.41510888676524 -33.87556394773004, -58.42305488677263 -33.85556394771142, -58.429863886778975 -33.83499994769227, -58.4380548867866 -33.70250894756887, -58.43860888678712 -33.55445494743098, -58.43014588677924 -33.52875494740705, -58.41694588676695 -33.507635947387385, -58.38438188673662 -33.46799094735046, -58.38014588673268 -33.4386089473231, -58.388890886740825 -33.4224999473081))) +UMI Baker I. MULTIPOLYGON (((-176.46142699670446 0.2152820840195346, -176.46765499671025 0.2194450840234055, -176.45585499669926 0.2225730840263225, -176.46142699670446 0.2152820840195346))) +CAN Canada MULTIPOLYGON (((-87.03528191341985 65.47915414480124, -94.78971792064173 59.09221813885296, -81.0091729078076 51.03346413134767, -76.5316729036376 56.31874513626997, -77.5083459045472 62.56166314208414, -55.686390884223925 52.10943613234974, -71.0395818985227 48.44388212893591, -64.22860889217948 48.904300129364714, -66.84370889461499 47.996654128519395, -64.80389089271526 47.80818212834387, -64.50418189243614 46.240273126883636, -60.97027288914492 45.26971812597975, -65.48138189334622 43.46443612429846, -82.69665490937919 41.683873122640165, -140.99554496367426 60.30720913998451, -141.0029909636812 69.64236314867856, -129.40747295288202 70.10318214910771, -132.0018179552982 69.52929114857324, -133.49192695668597 68.82415414791652, -133.16418195638073 68.70721814780762, -132.9183359561518 68.69026314779182, -128.0017999515729 70.58957314956069, -107.22861793222637 66.34887314561124, -81.3356999081117 69.18498214825257, -87.03528191341985 65.47915414480124)), ((-70.21749989775708 62.74777314225747, -73.76097290105719 68.6858181477877, -79.01736390595259 70.6799821496449, -87.92186391424555 70.24310014923802, -89.91041791609753 72.42720915127214, -84.9410999114695 70.91804514986663, -75.22348190241925 72.49901815133902, -76.3480549034666 71.89166315077338, -71.53336389898257 70.02713614903689, -68.31972689598963 70.56484514953766, -61.26458188941902 66.62609114586942, -62.8835458909268 66.33373614559716, -63.546954891544644 64.88720914424997, -64.362317892304 66.34321814560599, -68.8438908964778 66.18872714546211, -70.21749989775708 62.74777314225747)), ((-82.95639090962109 80.53637315882438, -91.95304591799987 81.66040015987122, -61.076390889243754 82.32082716048629, -78.37096390535058 76.4602631550282, -89.67263591587609 76.56692715512756, -76.48631790359536 80.86928215913443, -82.95639090962109 80.53637315882438)), ((-116.05555494044708 70.57221814954454, -119.10430894328647 71.87999115076249, -106.86139093188436 73.31080915209506, -100.86999992630444 69.78831814881448, -116.05555494044708 70.57221814954454)), ((-123.44860894733242 71.257763150183, -124.75557294854961 74.34275415305612, -115.31902693976114 73.47706315224988, -120.60167294468098 71.49359115040264, -123.44860894733242 71.257763150183)), ((-88.84778191510787 78.15138215660318, -92.54693591855298 78.31261815675336, -96.8020819225159 80.08887315840761, -84.9055639114364 79.27102715764593, -88.16250891446967 78.99053615738472, -88.84778191510787 78.15138215660318)), ((-80.31054590715695 74.99637315366485, -91.5466639176214 74.64735415333982, -93.07778191904737 76.3556731549308, -95.3815269211929 76.23511815481854, -96.9542269226576 76.72741815527701, -79.44308190634906 75.2801911539292, -80.31054590715695 74.99637315366485)), ((-114.7634269392437 75.00247315367054, -117.6772269419574 75.24630915389764, -108.78110893367223 76.85748215539815, -105.39014593051415 75.64762715427139, -114.7634269392437 75.00247315367054)), ((-56.840835885299086 47.521382128076766, -59.25496388754742 48.47266412896272, -56.737354885202706 51.2993731315953, -55.45860888401178 51.59221813186804, -56.840835885299086 47.521382128076766)), ((-97.15722692284665 73.39553615217397, -98.54804592414195 71.28831815021147, -102.76388192806826 72.78790015160806, -100.10444592559146 73.93637315267765, -97.15722692284665 73.39553615217397)), ((-86.31555491274956 64.70110014407663, -85.50027291199027 65.93330914522423, -81.98937290872048 63.99665414342056, -80.17437290703013 63.771173143210575, -85.49069091198135 63.120054142604175, -86.31555491274956 64.70110014407663)), ((-91.18639091728588 73.3402731521225, -95.16111792098764 71.9647091508414, -95.70029092148977 73.55386315232141, -90.19757291636496 73.8979731526419, -91.18639091728588 73.3402731521225)), ((-120.04915494416642 75.8388821544495, -120.857226944919 76.19663615478268, -123.03778194694979 76.08471815467846, -119.15334594333214 77.32581815583433, -115.389735939827 77.30928215581892, -120.04915494416642 75.8388821544495)), ((-99.60278192512425 74.97110015364132, -98.89812692446799 75.69358215431419, -102.87426392817106 75.61289115423904, -97.68902692334193 76.47970915504632, -99.60278192512425 74.97110015364132)), ((-103.79610892902959 78.73580915714749, -105.62456393073248 79.16707315754911, -98.94582692451242 78.05872715651691, -105.04889093019634 78.49408215692236, -103.79610892902959 78.73580915714749)), ((-127.44695495105616 50.37276413073232, -127.41694595102821 50.57960913092498, -128.41327295195612 50.77089113110313, -125.4563909492023 50.32666413068941, -125.16860894893429 49.91276413030391, -124.89806394868232 49.73165413013524, -124.78943594858114 49.46415412988611, -123.29298194718747 48.412073128906286, -127.44695495105616 50.37276413073232)), ((-77.0847549041527 72.83968215165629, -79.62389090651746 72.76331815158517, -80.8577729076666 73.74192715249657, -76.0608179031991 72.90388215171606, -77.0847549041527 72.83968215165629)), ((-95.82028192160152 68.87025414795946, -95.2097269210329 68.85110014794162, -96.53056392226303 68.44497314756339, -99.59168192511392 69.02193614810074, -95.82028192160152 68.87025414795946)), ((-96.00667292177512 74.87691815355362, -94.9097179207535 75.63735415426183, -93.40639091935341 74.88360915355983, -94.54749992041616 74.6213731533156, -96.00667292177512 74.87691815355362)), ((-96.90777292261433 77.79054515626714, -98.36540892397186 78.76582715717544, -94.83469092068363 78.35744515679511, -95.10652692093679 77.95249115641795, -96.90777292261433 77.79054515626714)), ((-76.66361790376048 67.21998214642252, -76.72610890381868 68.23887314737144, -75.00750890221812 68.13998214727934, -75.16111790236117 67.46388214664967, -76.66361790376048 67.21998214642252)), ((-109.99999993480742 78.10582715656076, -110.87720893562438 77.41137315591399, -113.3186089378981 77.81011815628537, -112.2949999369448 78.01054515647203, -109.99999993480742 78.10582715656076)), ((-105.22582693036112 72.93304515174324, -105.38305493050756 72.86665415168139, -107.03075493204209 73.4855451522578, -104.4882639296742 73.54830915231625, -105.22582693036112 72.93304515174324)), ((-60.51306388871912 45.618882126304925, -61.336945889486415 45.57332712626251, -61.527499889663886 45.98943612665005, -60.59555488879593 47.03013612761927, -60.51306388871912 45.618882126304925)), ((-109.99999993480742 78.32445415676438, -113.14222693773384 78.2683271567121, -113.33332693791182 78.3308181567703, -109.25791793411629 78.48386315691283, -109.99999993480742 78.32445415676438)), ((-63.49222689149367 49.84082713023693, -61.8838908899958 49.348191129778115, -61.664790889791746 49.14422712958816, -64.51250889244389 49.86110913025581, -63.49222689149367 49.84082713023693)), ((-82.18581790890345 62.97999114247372, -82.99375490965589 62.20707314175388, -83.94388191054077 62.424436141956335, -83.37416391001017 62.9069361424057, -82.18581790890345 62.97999114247372)), ((-135.6488999586948 68.99192714807279, -135.95319995897822 69.2338731482981, -135.89500895892402 69.25347314831637, -135.66139095870645 69.14527314821561, -135.49138195854812 69.11872714819089, -134.43832695756737 69.45470914850378, -134.4867819576125 69.71203614874344, -133.74945495692583 69.54484514858771, -135.6488999586948 68.99192714807279)), ((-133.00778195623508 53.67638213380906, -133.0694449562925 54.17138213427006, -131.66374495498334 54.140273134241085, -132.1589089554445 53.16999113333745, -133.00778195623508 53.67638213380906)), ((-93.17470891913764 77.7041631561867, -93.5705549195063 77.43776315593857, -96.3288909220752 77.60498215609431, -95.4652909212709 77.8080271562834, -93.17470891913764 77.7041631561867)), ((-62.279726890364444 46.33804512697472, -62.76111789081277 45.9541641266172, -64.41569089235372 46.689436127301974, -64.02084589198599 47.038609127627154, -62.279726890364444 46.33804512697472)), ((-79.54131790644055 61.799791141374584, -79.83695490671589 61.56832714115902, -80.267635907117 62.10930014166283, -79.44638190635214 62.38138214191622, -79.54131790644055 61.799791141374584)), ((-90.36694591652271 77.19775415571505, -91.14666391724887 77.36220015586821, -91.20695491730503 77.56860015606043, -89.63820891584402 77.33624515584404, -90.36694591652271 77.19775415571505)), ((-117.62304594190692 76.11442715470614, -118.35471794258835 75.55887315418872, -119.40694594356832 75.60318215422998, -118.61916394283463 75.91554515452091, -117.62304594190692 76.11442715470614)), ((-105.64889993075514 77.74860015622806, -105.01416393016399 77.4099821559127, -104.36651792956083 77.2273451557426, -105.24694593038079 77.19386315571143, -106.09194593116776 77.7265091562075, -105.64889993075514 77.74860015622806)), ((-98.82999992440455 79.66442715801233, -100.12110892560698 79.88665415821927, -100.19332692567424 80.03387315835639, -98.86888192444076 80.07777315839729, -98.82999992440455 79.66442715801233)), ((-131.26473595461175 52.119709132359304, -132.11373595540243 52.994918133174394, -132.55791795581612 53.14623613331534, -132.0658269553578 53.1559641333244, -131.7995179551098 53.251382133413244, -131.9805449552784 52.877627133065175, -131.26473595461175 52.119709132359304)), ((-81.08778190788081 53.17943613334626, -80.70944590752846 52.69144513289177, -82.05790890878431 53.01992713319768, -81.8562459085965 53.180136133346906, -81.08778190788081 53.17943613334626)), ((-102.65221792796426 76.28776315486755, -103.34221792860687 76.03665415463368, -104.48055492966704 76.13901815472903, -104.24721792944972 76.21860015480314, -102.65221792796426 76.28776315486755)), ((-104.15178192936084 75.43455415407294, -103.5869459288348 75.16602715382285, -104.84722693000852 75.10914515376987, -104.67790892985083 75.33971815398462, -104.15178192936084 75.43455415407294)), ((-73.65547290095894 68.00770914715616, -73.34861790067315 67.82804514698884, -74.77806390200443 68.00610014715465, -74.34319990159943 68.17679114731362, -73.65547290095894 68.00770914715616)), ((-104.13417292934444 76.66943615522302, -104.03389092925104 76.55970915512083, -103.00446392829231 76.43261815500247, -104.66236392983636 76.54873615511062, -104.13417292934444 76.66943615522302)), ((-114.1930459387125 77.69802715618096, -114.73029093921285 77.81888215629351, -115.11269993956898 77.9574911564226, -113.57610893813792 77.8141451562891, -114.1930459387125 77.69802715618096)), ((-129.11080895260574 52.81750013300916, -129.08291795257978 53.29513613345401, -128.53168195206638 53.021100133198786, -128.60110895213106 52.608464132814504, -129.11080895260574 52.81750013300916)), ((-97.65360892330894 74.09999115283003, -98.39277292399734 73.84526315259279, -99.4369459249698 73.89957315264337, -98.17083592379065 74.09248215282304, -97.65360892330894 74.09999115283003)), ((-79.78195490666467 55.78804513577572, -79.46874590637297 56.54639113648196, -78.9237459058654 56.41735413636181, -78.94666390588674 56.28374513623737, -79.19943590612215 55.89304513587351, -79.78195490666467 55.78804513577572)), ((-78.2128179052033 63.496091142954384, -77.68055490470759 63.43443614289697, -77.4951359045349 63.271445142745165, -78.57250890553829 63.4374911428998, -78.2128179052033 63.496091142954384)), ((-78.4586179054322 69.3899821484435, -78.21200890520254 69.29568214835567, -79.3983359063074 68.86845414795778, -79.22721790614803 69.07638214815142, -78.4586179054322 69.3899821484435)), ((-86.4349999128608 68.1624911473003, -86.57194591298834 67.72886314689646, -86.94582691333655 67.90942714706463, -86.71194591311873 68.29914514742757, -86.4349999128608 68.1624911473003)), ((-101.67194592705131 77.89332715636286, -100.92679992635733 77.73880015621893, -102.52971792785017 77.83415415630773, -102.38779092771799 77.8841541563543, -101.67194592705131 77.89332715636286)), ((-89.9788819161613 76.46970915503701, -90.21444591638068 76.52859115509185, -90.59909091673892 76.7469361552952, -89.67389091587725 76.73442715528356, -89.9788819161613 76.46970915503701)), ((-79.76806390665173 69.75277314878139, -79.33000890624376 69.71026314874177, -80.80943590762158 69.68623614871942, -80.38889990722993 69.79999114882534, -79.76806390665173 69.75277314878139)), ((-83.92139091051982 66.00971814529538, -83.72749091033923 65.7997091450998, -83.21263590985974 65.70818214501455, -83.82972691043445 65.6449911449557, -84.4706999110314 66.13081814540817, -83.92139091051982 66.00971814529538)), ((-114.05471793858366 76.70360015525483, -114.7869459392656 76.75027315529832, -114.87498193934759 76.7670091553139, -113.4515179380219 76.77499115532132, -114.05471793858366 76.70360015525483)), ((-129.56389995302771 53.20750013337238, -130.04028195347138 53.58138213372058, -129.9323909533709 53.63756413377291, -130.2683549536838 53.878464133997284, -129.42470895289807 53.41137313356225, -129.56389995302771 53.20750013337238)), ((-64.65972689258099 61.58804514117739, -64.86999989277683 61.32332714093084, -65.48778189335218 61.599436141187994, -65.03639089293179 61.69360014127568, -64.65972689258099 61.58804514117739)), ((-101.98859992734621 75.93441815453849, -102.61165492792648 75.76720915438275, -103.38179992864373 75.76249115437835, -102.69610892800513 75.94663615454985, -101.98859992734621 75.93441815453849)), ((-77.11361790417958 69.44165414849161, -76.71639990380964 69.42220914847351, -76.64778190374574 69.33443614839177, -77.28582690433997 69.15359114822334, -77.11361790417958 69.44165414849161)), ((-84.91028191144079 66.00000014528632, -84.5866729111394 65.69220014499967, -84.66777291121494 65.56052714487703, -85.1180549116343 65.7647091450672, -84.91028191144079 66.00000014528632)), ((-74.99999990221113 68.67224514777504, -74.81444590203832 68.31957314744659, -75.41639990259893 68.52123614763443, -75.28056390247242 68.70971814780995, -74.99999990221113 68.67224514777504)), ((-76.68160890377725 63.48135414294066, -76.54450890364956 63.4632541429238, -76.98416390405902 63.406382142870825, -77.45555490449804 63.64777314309566, -76.68160890377725 63.48135414294066)), ((-70.58778189810192 62.77416314228205, -70.21180889775177 62.579718142100944, -71.24096389871025 62.87888214237955, -70.78805489828845 62.83610914233972, -70.58778189810192 62.77416314228205)), ((-102.3533359276859 76.07388215466835, -103.33944592860429 75.90803615451392, -103.96818192918985 75.93636315454029, -102.86006392815783 76.06728215466222, -102.3533359276859 76.07388215466835)), ((-96.02543592179259 75.60284515422967, -96.85110892256155 75.35026315399443, -97.05305492274964 75.49470915412897, -96.39639092213807 75.64999115427358, -96.02543592179259 75.60284515422967)), ((-130.39110895379812 53.61693613375371, -129.92056395335987 53.42416413357418, -129.74249095319405 53.17832713334522, -130.5272179539249 53.55221813369343, -130.39110895379812 53.61693613375371)), ((-85.92443591238529 79.05386315744369, -85.32139991182368 79.05386315744369, -85.16833591168113 79.01777315741009, -86.48069091290336 78.89457315729533, -85.92443591238529 79.05386315744369)), ((-71.79472689922598 71.05303614999235, -71.37110889883145 71.01193614995407, -71.34139089880378 70.98817314993192, -71.9916728994094 70.81470014977037, -72.22430889962607 70.92068214986907, -71.79472689922598 71.05303614999235)), ((-67.94848189564388 60.561363140221204, -67.85333589555528 60.37526314004788, -68.38721789605249 60.240827139922686, -68.1294358958124 60.57054514022977, -67.94848189564388 60.561363140221204)), ((-95.48889092129289 69.56553614860701, -95.51583592131799 69.33082714838841, -95.99082692176036 69.35331814840936, -95.9199999216944 69.59526314863467, -95.48889092129289 69.56553614860701)), ((-100.297235925771 76.72192715527191, -101.2738999266806 76.56080915512186, -101.68831792706656 76.58638215514566, -100.74388192618699 76.75332715530115, -100.297235925771 76.72192715527191)), ((-96.77194592248783 73.18165415197475, -96.64000892236496 72.96360015177169, -97.13833592282906 73.0488731518511, -97.04554592274263 73.14749115194294, -96.77194592248783 73.18165415197475)), ((-100.3236269257956 68.99609114807666, -100.17374592565601 68.7970631478913, -100.62554592607677 68.76416314786067, -100.59999092605297 69.00054514808082, -100.3236269257956 68.99609114807666)), ((-78.89306390583683 76.11553615470717, -78.89778190584121 75.83970915445028, -79.75222690663698 75.87858215448648, -79.08667290601713 76.11540015470703, -78.89306390583683 76.11553615470717)), ((-127.59630895119525 52.15179113238918, -127.89319995147176 51.953745132204745, -127.78917295137487 52.22192713245451, -127.23473595085852 52.416936132636124, -127.59630895119525 52.15179113238918)), ((-78.1419549051373 69.74248214877178, -77.94554590495437 69.6365181486731, -78.8783269058231 69.48019114852752, -78.57583590554138 69.63638214867296, -78.1419549051373 69.74248214877178)), ((-94.4819459203551 75.97442715457575, -94.29416392018021 75.7693001543847, -94.90528192074936 75.93387315453796, -94.53832692040761 75.98610015458661, -94.4819459203551 75.97442715457575)), ((-101.69388192707174 68.76805414786429, -101.83112692719956 68.56693614767698, -102.3163909276515 68.67220914777502, -102.02306392737832 68.81944514791215, -101.69388192707174 68.76805414786429)), ((-87.26560891363437 70.11355414911736, -86.63972691305146 70.11665414912025, -86.45944591288357 70.00915414902013, -87.37569091373689 70.09817314910305, -87.26560891363437 70.11355414911736)), ((-64.38276389232306 62.52582714205076, -64.59472689252046 62.366800141902644, -64.96583589286608 62.46582714199488, -64.81555489272613 62.55971814208232, -64.38276389232306 62.52582714205076)), ((-104.68249992985511 68.57388214768343, -104.42610892961632 68.43858214755744, -105.08168193022688 68.54637314765782, -104.93859993009362 68.58332714769224, -104.68249992985511 68.57388214768343)), ((-73.06054590040486 71.29470915021741, -73.27194590060175 71.36275415028078, -73.37859990070108 71.5212361504284, -72.82389090018447 71.45234515036421, -73.06054590040486 71.29470915021741)), ((-96.13639992189593 69.54610014858889, -96.16332692192101 69.34803614840445, -96.73610892245445 69.57930014861981, -96.31639092206356 69.52638214857052, -96.13639992189593 69.54610014858889)), ((-126.7687179504245 49.878618130272116, -126.63528195030023 49.756664130158555, -126.63305495029816 49.596100130009006, -126.96737295060952 49.7290181301328, -126.7687179504245 49.878618130272116)), ((-127.95121795152579 52.04690913229149, -128.008345951579 51.7804091320433, -128.13403595169606 51.74527313201057, -128.2174999517738 51.96277313221313, -127.95121795152579 52.04690913229149)), ((-130.3361179537469 54.067500134173315, -130.22888195364703 53.9647181340776, -130.34151795375192 53.83720913395885, -130.7105359540956 53.85762713397787, -130.3361179537469 54.067500134173315)), ((-100.46111792592365 70.65999114962628, -100.21833592569753 70.56441814953729, -100.22762692570619 70.45415414943457, -100.68138192612878 70.57304514954532, -100.46111792592365 70.65999114962628)), ((-95.06528192089837 80.68054515895867, -94.96999992080964 80.63777315891883, -96.14917292190783 80.6647001589439, -95.49138192129521 80.70000015897676, -95.06528192089837 80.68054515895867)), ((-129.2311089527178 52.816100133007865, -128.9224359524303 52.605482132811716, -128.9463819524526 52.46762713268333, -129.27057295275455 52.719154132917566, -129.2311089527178 52.816100133007865)), ((-61.35528188950349 56.910818136821376, -61.39359088953917 56.61778213654847, -61.641954889770474 56.73559113665817, -61.499372889637684 56.95285413686051, -61.35528188950349 56.910818136821376)), ((-64.54943589247827 63.895273143326165, -64.38806389232799 63.69901814314338, -64.91639989282004 63.806382143243354, -64.71055489262834 63.908882143338815, -64.54943589247827 63.895273143326165)), ((-95.628599921423 74.64082715333373, -95.40360892121346 74.6033181532988, -95.24874592106924 74.51887315322014, -95.86166392164006 74.5759631532733, -95.628599921423 74.64082715333373)), ((-65.0680728929613 61.92388214149014, -64.89014589279559 61.827773141400655, -64.82722689273699 61.75979114133733, -65.25195489313255 61.8697091414397, -65.0680728929613 61.92388214149014)), ((-64.32556389226978 63.63750014308607, -64.26250889221106 63.421109142884546, -64.06583589202789 63.2694361427433, -64.42193589235953 63.47165414293161, -64.32556389226978 63.63750014308607)), ((-78.79527290574575 68.43858214755744, -78.89299090583675 68.65020014775453, -78.46499990543816 68.61914514772559, -78.47833590545058 68.55581814766663, -78.79527290574575 68.43858214755744)), ((-127.9980459515694 51.71166413197929, -127.87360895145352 51.46443613174904, -127.91443595149153 51.4108181316991, -128.1536269517143 51.60374513187878, -127.9980459515694 51.71166413197929)), ((-78.92749090586888 56.113882136079155, -78.83361790578145 56.34819113629737, -78.66222690562184 56.4342271363775, -78.67639090563503 56.18110913614177, -78.92749090586888 56.113882136079155)), ((-91.07223591717955 77.25332715576681, -90.81499991694 77.24026315575463, -90.71598191684777 77.20401815572089, -91.2991639173909 77.21775415573367, -91.07223591717955 77.25332715576681)), ((-65.266399893146 64.6933181440694, -65.46889089333459 64.51914514390717, -65.6899908935405 64.52207314390989, -65.43581789330378 64.69636314407222, -65.266399893146 64.6933181440694)), ((-128.3733179519189 52.79110913298459, -128.27543595182775 52.49304513270701, -128.44168195198256 52.368045132590595, -128.43812695197926 52.75326413294934, -128.3733179519189 52.79110913298459)), ((-67.86971789557053 69.70081814873299, -67.92027289561761 69.52192714856639, -68.24889089592367 69.59664514863596, -67.95972689565436 69.70499114873687, -67.86971789557053 69.70081814873299)), ((-79.09944590602903 68.34860014747363, -78.92999090587121 68.33888214746457, -78.8036089057535 68.2712361474016, -79.08971790601997 68.17025414730753, -79.09944590602903 68.34860014747363)), ((-126.25171794994301 50.81892713114786, -126.26972694995979 50.65373613099402, -126.6162459502825 50.665127131004624, -126.38596395006803 50.80720913113694, -126.25171794994301 50.81892713114786)), ((-80.06054590692412 56.18443613614488, -80.05526390691921 56.30360013625585, -79.54639090644528 56.525127136462174, -79.68249990657205 56.31750013626879, -80.06054590692412 56.18443613614488)), ((-102.8975089281927 78.26914515671285, -102.77889092808223 78.2089451566568, -103.28097292854983 78.16068215661184, -103.06276392834661 78.25804515670254, -102.8975089281927 78.26914515671285)), ((-97.368054923043 74.62275415331689, -97.25945492294186 74.5872091532838, -97.79097292343687 74.48289115318664, -97.53222692319589 74.60637315330163, -97.368054923043 74.62275415331689)), ((-90.19526391636282 69.4169271484686, -90.32945491648779 69.23580914829992, -90.50819991665426 69.33193614838945, -90.30193591646216 69.4344181484849, -90.19526391636282 69.4169271484686)), ((-85.25973591176624 77.58665415607723, -85.01112691153472 77.57388215606534, -84.81389091135102 77.49720915599394, -85.53694591202442 77.5419271560356, -85.25973591176624 77.58665415607723)), ((-64.42767289236488 60.37293614004571, -64.4254458923628 60.282073139961085, -64.86790889277488 60.45318214012045, -64.63999989256263 60.48471814014982, -64.42767289236488 60.37293614004571)), ((-74.48083590172762 62.74027314225049, -74.01250890129145 62.66374514217921, -73.95959090124217 62.614436142133286, -74.6495179018847 62.717073142228855, -74.48083590172762 62.74027314225049)), ((-130.27194595368712 53.79777313392211, -130.11832695354406 53.684300133816436, -130.09470895352206 53.5681911337083, -130.40335495380953 53.68249113381475, -130.27194595368712 53.79777313392211)), ((-128.82360895233828 53.70054513383158, -129.0755639525729 53.514718133658505, -129.15749995264923 53.39277313354492, -129.1501639526424 53.6405451337757, -128.82360895233828 53.70054513383158)), ((-124.12277294796027 49.49360912991355, -124.62720894843007 49.7191541301236, -124.65388194845491 49.79847313019749, -124.35139094817319 49.698045130103964, -124.12277294796027 49.49360912991355)), ((-96.68832692240996 72.88332715169693, -96.74138192245937 72.72553615154999, -97.0102819227098 72.77665415159757, -96.79861792251268 72.8813631516951, -96.68832692240996 72.88332715169693)), ((-88.05278191436747 78.44552715687712, -88.25500891455582 78.24720915669243, -88.40610891469653 78.26221815670641, -88.23527291453743 78.42692715685982, -88.05278191436747 78.44552715687712)), ((-79.29722690621323 52.091936132333444, -79.38124590629148 51.93582713218805, -79.65215490654379 51.98790913223655, -79.34194590625488 52.10943613234974, -79.29722690621323 52.091936132333444)), ((-74.34083590159723 68.4624911475797, -74.269726901531 68.45470914757246, -74.07729090135179 68.33012714745644, -74.22499990148935 68.2490181473809, -74.34083590159723 68.4624911475797)), ((-90.575563916717 69.19859114826525, -90.7772179169048 69.27249114833407, -90.77583591690352 69.32999114838762, -90.46082691661015 69.26749114832941, -90.575563916717 69.19859114826525)), ((-128.53528195206974 52.64721813285058, -128.48374595202176 52.43873613265643, -128.812572952328 52.52138213273338, -128.5781819521097 52.5936451328007, -128.53528195206974 52.64721813285058)), ((-101.05304592647491 69.5044361485501, -101.23029092663998 69.36859114842358, -101.38583592678485 69.53526314857879, -101.26167292666922 69.58166314862203, -101.05304592647491 69.5044361485501)), ((-129.22692695271388 53.32610013348284, -129.16860895265958 53.296109133454905, -129.13640895262958 53.10500013327692, -129.33359995281324 53.14000013330951, -129.22692695271388 53.32610013348284)), ((-125.27306394903157 50.431109130786666, -125.05110894882486 50.22415413059392, -125.13153594889977 50.12442713050106, -125.15610894892265 50.239154130607886, -125.21381794897638 50.315273130678776, -125.39972694914954 50.31596413067945, -125.27306394903157 50.431109130786666)), ((-72.92470890027836 71.64942715054778, -72.70916390007761 71.65525415055319, -72.66138190003312 71.6012361505029, -73.03291790037913 71.57360015047715, -72.92470890027836 71.64942715054778)), ((-100.09555492558319 69.11748214818971, -99.97888192547452 69.01388214809322, -100.00319992549717 68.94150914802583, -100.25778192573426 69.02916314810747, -100.09555492558319 69.11748214818971)), ((-54.08111788272889 49.736382130139646, -54.00444588265749 49.64749113005686, -54.29139088292473 49.57832712999246, -54.28541788291916 49.71401813011883, -54.08111788272889 49.736382130139646)), ((-73.50917290082268 64.55247314393822, -73.55638190086665 64.31372714371588, -73.65292690095656 64.31873614372054, -73.67889090098075 64.52915414391649, -73.50917290082268 64.55247314393822)), ((-120.86776394492881 75.91331815451883, -121.03278194508249 75.73776315435532, -121.28708194531933 75.75582715437216, -120.99777294504989 75.92637315453098, -120.86776394492881 75.91331815451883)), ((-74.33416390159101 78.67526315709108, -74.61416390185178 78.70277315711672, -74.7079179019391 78.7297091571418, -74.16923590143742 78.71470915712783, -74.33416390159101 78.67526315709108)), ((-62.89459989093709 67.0591091462727, -62.63194589069248 67.17692714638244, -62.37659089045465 67.16609114637234, -62.752499890804756 67.01054514622749, -62.89459989093709 67.0591091462727)), ((-57.94083588632354 54.911936134959774, -57.84368188623306 54.81422713486876, -58.22298188658631 54.831654134884985, -58.21354588657752 54.877073134927286, -57.94083588632354 54.911936134959774)), ((-61.55805488969233 56.55193613648714, -61.16806388932913 56.474709136415214, -61.149435889311775 56.44331813638598, -61.63055488975985 56.46527313640641, -61.55805488969233 56.55193613648714)), ((-61.089163889255644 56.169991136131415, -60.94402688912048 56.09263613605938, -60.93673588911369 56.012427135984666, -61.21833588937595 56.04860913601837, -61.089163889255644 56.169991136131415)), ((-53.56416388224744 48.190545128699995, -53.63417288231264 48.07527312859261, -53.93582688259359 48.182491128692476, -53.68610888236101 48.147500128659885, -53.56416388224744 48.190545128699995)), ((-128.98553595248907 53.52304513366627, -128.9202909524283 53.32860913348517, -129.12402695261807 53.3202731334774, -129.04986395254898 53.50777313365202, -128.98553595248907 53.52304513366627)), ((-108.08971793302833 67.46554514665124, -108.1322179330679 67.63943614681318, -107.99957293294437 67.65720014682972, -107.92485493287478 67.53761814671836, -108.08971793302833 67.46554514665124)), ((-100.47971792594096 75.54581815417657, -100.29360892576763 75.58442715421253, -101.0363819264594 75.56512715419456, -100.39444592586155 75.62302715424846, -100.15749992564088 75.58720915421512, -100.47971792594096 75.54581815417657)), ((-62.258608890344775 65.72859114503356, -62.13360889022836 65.65430014496437, -62.48416389055484 65.7240181450293, -62.466454890538344 65.74413614504803, -62.258608890344775 65.72859114503356)), ((-107.64528193261441 73.57026315233668, -107.9305549328801 73.53942715230798, -108.08188193302102 73.58220915234782, -107.58479093255808 73.60158215236586, -107.64528193261441 73.57026315233668)), ((-125.34554594909906 50.26390013063096, -125.16721794893299 50.2136091305841, -125.16853594893422 49.982345130368714, -125.32069994907593 50.13971813051529, -125.34554594909906 50.26390013063096)), ((-61.407772889552376 47.641109128188276, -61.79944588991715 47.23276412780797, -62.011526890114666 47.22360012779944, -61.92513589003421 47.40860012797174, -61.407772889552376 47.641109128188276)), ((-130.16500895358755 55.01416413505498, -130.2702909536856 54.83082713488423, -130.45750895385996 54.81540913486987, -130.21331795363253 55.012500135053415, -130.16500895358755 55.01416413505498)), ((-74.77194590199873 68.6730361477758, -74.6520909018871 68.65359114775768, -74.52029090176435 68.56192714767232, -74.89029090210894 68.62498214773103, -74.77194590199873 68.6730361477758)), ((-104.07139992928597 77.16137315568116, -103.99889092921845 77.12387315564624, -104.43167292962151 77.09887315562295, -104.30082692949965 77.15525415567546, -104.07139992928597 77.16137315568116)), ((-77.62499990465585 63.997773143421625, -77.74860890477096 63.926109143354864, -77.98069090498711 63.97235414339795, -77.54486390458122 64.02026314344255, -77.62499990465585 63.997773143421625)), ((-139.12109096192853 69.52916314857313, -139.33123596212425 69.5688731486101, -139.12027296192778 69.64999114868564, -138.87027296169495 69.58568214862575, -139.12109096192853 69.52916314857313)), ((-131.46887295480187 52.7305451329282, -131.58957295491427 52.58554513279316, -131.70971795502618 52.70527313290464, -131.65945495497937 52.73027313292792, -131.46887295480187 52.7305451329282)), ((-123.57721794745218 48.929164129387885, -123.4338819473187 48.844436129308974, -123.37402694726295 48.7555541292262, -123.52471794740329 48.72249112919539, -123.57721794745218 48.929164129387885)), ((-66.32695489413372 68.14749114728633, -66.60194589438983 68.18248214731892, -66.60722689439474 68.21720914735127, -66.22193589403591 68.24109114737351, -66.32695489413372 68.14749114728633)), ((-63.45610889146003 67.26443614646394, -63.76361789174642 67.27249114647142, -63.829726891807994 67.28414514648227, -63.35778189136846 67.29387314649134, -63.45610889146003 67.26443614646394)), ((-94.5150179203859 78.27804515672116, -94.3447269202273 78.21470915666217, -94.30805492019316 78.18206315663176, -94.69318192055184 78.26165415670587, -94.5150179203859 78.27804515672116)), ((-78.22667290521619 60.808882140451715, -78.39722690537504 60.74388214039118, -78.69805490565521 60.722909140371655, -78.57362690553933 60.78416314042872, -78.22667290521619 60.808882140451715)), ((-89.95639091614035 68.66165414776518, -89.94444591612923 68.84749114793826, -89.78291791597879 68.76373614786027, -89.85749991604825 68.70054514780142, -89.95639091614035 68.66165414776518)), ((-69.18249989679316 59.12860013888684, -69.2272178968348 58.97192713874094, -69.35291789695187 58.9480451387187, -69.35631789695503 59.13540913889318, -69.18249989679316 59.12860013888684)), ((-61.64389088977228 57.52276313739128, -61.651808889779645 57.39249113726996, -61.898263890009176 57.43978213731401, -61.73999988986179 57.5359731374036, -61.64389088977228 57.52276313739128)), ((-91.5352819176108 69.72692714875731, -91.56027291763408 69.7283181487586, -91.73443591779628 69.79054514881656, -91.40916391749334 69.87498214889519, -91.5352819176108 69.72692714875731)), ((-130.7469459541295 54.61527313468346, -130.76666395414787 54.550545134623206, -130.96624595433377 54.45930013453821, -130.92807295429822 54.61707313468514, -130.7469459541295 54.61527313468346)), ((-99.52888192505543 76.72553615527528, -99.4322179249654 76.69706315524874, -100.12651792561202 76.72192715527191, -100.03778192552937 76.75139115529933, -99.52888192505543 76.72553615527528)), ((-82.93554590960167 66.25139114552044, -83.08029090973648 66.19663614546945, -83.29833590993955 66.31387314557864, -83.2522269098966 66.34498214560762, -82.93554590960167 66.25139114552044)), ((-82.79610890947181 69.80525414883024, -82.46028190915905 69.76165414878963, -82.45403590915323 69.7174821487485, -82.87860890954865 69.77679114880374, -82.79610890947181 69.80525414883024)), ((-107.88276393283559 67.46249114664838, -107.91082693286172 67.31052714650684, -108.08444593302342 67.38136314657282, -108.06486393300519 67.43984514662728, -107.88276393283559 67.46249114664838)), ((-63.92639089189802 67.63332714680749, -63.78722689176841 67.5505361467304, -63.759445891742544 67.51790914669999, -64.02959089199413 67.51540014669766, -63.92639089189802 67.63332714680749)), ((-68.418899896082 68.81025414790358, -68.11027289579457 68.78276314787797, -67.6635358953785 68.70144514780225, -68.45701789611749 68.78796314788283, -68.418899896082 68.81025414790358)), ((-54.529726883146694 49.633882130044185, -54.57360888318756 49.56040912997577, -54.87249988346592 49.48985412991007, -54.88860888348093 49.591800130005, -54.529726883146694 49.633882130044185)), ((-77.67609990470343 77.8647001563362, -77.56861790460333 77.84971815632224, -77.95360890496188 77.83166315630544, -77.8802819048936 77.84803615632069, -77.67609990470343 77.8647001563362)), ((-61.926945890035896 57.452491137325836, -61.971945890077805 57.5829091374473, -61.78069088989969 57.546591137413486, -61.781245889900205 57.51097313738032, -61.926945890035896 57.452491137325836)), ((-128.616090952145 52.448600132665604, -128.6188819521476 52.326936132552305, -128.67209095219715 52.2663911324959, -128.75918195227825 52.44943613266639, -128.616090952145 52.448600132665604)), ((-79.92999090680253 59.873600139580674, -79.92513590679802 59.813600139524794, -80.18284590703803 59.74937313946498, -80.10305490696372 59.844991139554025, -79.92999090680253 59.873600139580674)), ((-64.04777289201107 59.84943613955818, -63.997217891963984 59.723600139440975, -64.20445489215699 59.73443613945108, -64.1188818920773 59.851109139559725, -64.04777289201107 59.84943613955818)), ((-127.96193595153576 52.28943613251738, -127.92124595149788 52.17555413241132, -128.16849095172813 52.247218132478054, -128.0438999516121 52.301100132528234, -127.96193595153576 52.28943613251738)), ((-79.05749990598997 54.91777313496519, -79.23499990615528 54.89666413494555, -79.77555490665871 54.775545134832754, -79.46291790636754 54.88916413493857, -79.05749990598997 54.91777313496519)), ((-61.54667288968173 56.390827136337094, -61.414163889558324 56.32443613627527, -61.78805488990653 56.413354136358066, -61.67778188980384 56.40554513635081, -61.54667288968173 56.390827136337094)), ((-70.81443589831301 46.99832712758965, -70.90417289839658 46.91360912751074, -71.1285998986056 46.85804512745901, -70.89666389838959 47.01332712760362, -70.81443589831301 46.99832712758965)), ((-64.4827728924162 47.91777312844593, -64.60777289253261 47.74680012828671, -64.69193589261099 47.755554128294875, -64.66485489258577 47.8688821284004, -64.4827728924162 47.91777312844593)), ((-101.52028192691006 69.19748214826421, -101.55958192694666 69.10261814817588, -101.69561792707336 69.09179114816578, -101.69943592707692 69.20430014827056, -101.52028192691006 69.19748214826421)), ((-61.65416388978184 57.77110013762257, -61.691317889816446 57.71311813756856, -61.89610889000717 57.76971813762128, -61.775972889895286 57.845409137691775, -61.65416388978184 57.77110013762257)), ((-90.00778191618821 73.98498215272292, -90.21777291638378 74.00443615274105, -90.28395491644541 74.0265091527616, -89.90291791609054 74.0345731527691, -90.00778191618821 73.98498215272292)), ((-64.99889089289687 64.35442714375378, -64.8866088927923 64.28373614368795, -64.9891638928878 64.20915414361846, -65.11429989300434 64.32651814372778, -64.99889089289687 64.35442714375378)), ((-83.57667291019877 69.7808181488075, -83.68859991030301 69.71943614875033, -83.91721791051593 69.77859114880542, -83.53124591015647 69.78900914881513, -83.57667291019877 69.7808181488075)), ((-78.93999090588052 72.43580915128015, -78.83389090578171 72.41192715125791, -78.73333590568807 72.3674821512165, -79.07529090600653 72.40638215125273, -78.93999090588052 72.43580915128015)), ((-108.95110893383055 67.97330914712413, -108.88375493376783 67.87317314703085, -109.19888193406132 67.97249114712335, -109.04999093392266 67.95832714711017, -108.95110893383055 67.97330914712413)), ((-112.23720893689098 70.36249114934921, -111.79666393648068 70.31025414930056, -111.67541793636777 70.30872714929916, -112.05304593671947 70.29220914928376, -112.32020893696829 70.3526911493401, -112.23720893689098 70.36249114934921)), ((-67.50778189523345 69.49498214854128, -67.64222689535866 69.50027314854623, -67.74708189545632 69.51846314856314, -67.30999089504924 69.5509541485934, -67.50778189523345 69.49498214854128)), ((-61.884445889996314 57.86693613771183, -61.944163890051925 57.78805413763837, -62.108890890205345 57.82707313767469, -61.990554890095126 57.90971813775167, -61.884445889996314 57.86693613771183)), ((-126.12693594982679 49.3902731298173, -126.07277294977635 49.343045129773344, -126.06791794977184 49.249582129686274, -126.23916394993131 49.28971812972367, -126.12693594982679 49.3902731298173)), ((-124.89861794868284 50.29388213065886, -124.75666394855062 50.17832713055125, -124.80971794860004 50.112636130490074, -124.96305494874285 50.23638213060531, -124.89861794868284 50.29388213065886)), ((-129.46277295293353 53.17999113334676, -129.3527819528311 53.072218133246395, -129.29216395277464 52.971927133153, -129.54417295300934 53.13069113330084, -129.46277295293353 53.17999113334676)), ((-95.37221792118423 77.23803615575258, -95.21069992103381 77.17512715569399, -95.63440892142842 77.23699115575158, -95.43804592124553 77.24442715575853, -95.37221792118423 77.23803615575258)), ((-131.07720895443708 52.15027313238775, -130.9924909543582 52.06081813230446, -131.02028195438407 51.943464132195174, -131.12054595447745 52.05554513229956, -131.07720895443708 52.15027313238775)), ((-110.72833593548573 68.48441814760014, -110.92609993566991 68.46581814758281, -111.09395493582625 68.48011814759613, -110.82167293557266 68.54803614765939, -110.72833593548573 68.48441814760014)), ((-103.3319459285973 75.87191815448028, -103.61665492886246 75.83110015444225, -103.86263592909155 75.87392715448215, -103.42693592868578 75.88554515449297, -103.3319459285973 75.87191815448028)), ((-95.32860892114361 71.84220915072731, -95.31054592112679 71.73720015062952, -95.48687292129101 71.74219115063417, -95.45029092125694 71.81888215070558, -95.32860892114361 71.84220915072731)), ((-54.12499988276976 47.64082712818802, -54.241108882877896 47.40165412796526, -54.36194588299044 47.409500127972564, -54.13208188277636 47.66930012821453, -54.12499988276976 47.64082712818802)), ((-128.14807295170914 52.183327132418555, -128.15111795171197 52.08110913232335, -128.25308195180693 52.01971813226618, -128.29291795184403 52.116245132356084, -128.14807295170914 52.183327132418555)), ((-65.7136178935625 61.82416314139729, -65.71945489356794 61.7541631413321, -65.9459638937789 61.79298214136824, -65.78999089363363 61.86554514143583, -65.7136178935625 61.82416314139729)), ((-66.76472689454143 44.801100125543314, -66.76307289453989 44.67373612542471, -66.90333589467052 44.619091125373814, -66.85860889462886 44.74304512548926, -66.76472689454143 44.801100125543314)), ((-128.1702909517298 52.81777313300941, -128.24847295180263 52.61860013282393, -128.27680895182903 52.59672713280355, -128.32569995187455 52.77373613296842, -128.1702909517298 52.81777313300941)), ((-128.03168195160072 52.16329113239988, -127.89110895146982 52.1716641324077, -127.8801359514596 52.16944513240563, -128.1073639516712 52.102773132343515, -128.03168195160072 52.16329113239988)), ((-79.55249090645096 72.45110015129438, -79.43305490633973 72.41498215126074, -79.44359990634955 72.36776315121676, -79.68331790657281 72.43054515127525, -79.55249090645096 72.45110015129438)), ((-126.79778195045157 50.768882131101236, -126.90361795055014 50.8240181311526, -126.56708195023671 50.800682131130856, -126.73137295038973 50.7719361311041, -126.79778195045157 50.768882131101236)), ((-97.24305492292659 77.03749115556579, -97.0926459227865 77.00790015553824, -97.4730549231408 76.98054515551277, -97.3747089230492 77.02249115555182, -97.24305492292659 77.03749115556579)), ((-97.3377819230148 67.72110014688923, -97.37054592304531 67.65776314683023, -97.55173592321407 67.64408214681751, -97.56054592322226 67.69274514686282, -97.3377819230148 67.72110014688923)), ((-79.70666390659454 57.58082713744537, -79.704999906593 57.5086091373781, -79.80256390668386 57.41770013729345, -79.82694590670657 57.53804513740553, -79.70666390659454 57.58082713744537)), ((-64.95472689285573 63.553882143008195, -64.86749089277448 63.46166314292233, -64.85444589276234 63.385827142851696, -65.0524998929468 63.55027314300486, -64.95472689285573 63.553882143008195)), ((-108.38194593330049 67.46666314665228, -108.45889093337215 67.48803614667219, -108.49138193340241 67.56303614674204, -108.29749993322184 67.5572091467366, -108.38194593330049 67.46666314665228)), ((-94.85444592070202 76.13665415472681, -94.92860892077108 76.05109115464714, -95.14416392097183 76.11393615470567, -95.01306392084975 76.10581815469811, -94.85444592070202 76.13665415472681)), ((-101.68167292706038 78.22748215667406, -101.60249992698664 78.16179115661288, -101.8805549272456 78.16026315661145, -101.75334592712711 78.2272001566738, -101.68167292706038 78.22748215667406)), ((-126.28611794997505 50.59832713094241, -126.2251999499183 50.55880913090559, -126.62389095028962 50.533882130882375, -126.48859995016363 50.55331813090049, -126.28611794997505 50.59832713094241)), ((-79.49638190639871 56.76693613668738, -79.48749990639044 56.65680013658479, -79.56561790646319 56.61741813654811, -79.58000890647659 56.80985413672735, -79.49638190639871 56.76693613668738)), ((-128.12018195168315 70.59721814956782, -128.13275495169486 70.56915414954167, -128.3411089518889 70.54068214951516, -128.2341639517893 70.65610014962266, -128.12018195168315 70.59721814956782)), ((-78.41944590539573 82.89915416102488, -78.36166390534191 82.95860016108026, -78.12041790511724 82.94129116106413, -78.3658269053458 82.88360916101041, -78.41944590539573 82.89915416102488)), ((-93.08667291905566 61.8294361414022, -93.21499991917517 61.877345141446796, -93.22486391918436 61.910691141477855, -92.96499991894234 61.88270014145181, -93.08667291905566 61.8294361414022)), ((-124.98331794876171 50.225545130595236, -124.89778194868205 50.07749113045733, -124.96860894874803 50.03582713041854, -125.0649999488378 50.10540913048334, -124.98331794876171 50.225545130595236)), ((-73.21333590054716 71.69859115059356, -73.35249090067676 71.55748215046214, -73.45014590076771 71.58706315048968, -73.3483459006729 71.65832715055606, -73.21333590054716 71.69859115059356)), ((-122.63332694657312 75.91970915452478, -122.35305494631208 75.91442715451987, -122.32625494628714 75.90277315450902, -122.6940819466297 75.90463615451074, -122.63332694657312 75.91970915452478)), ((-82.0100089087397 68.33276314745888, -82.07250890879791 68.30303614743121, -82.34339990905019 68.3641451474881, -82.23056390894511 68.38554514750805, -82.0100089087397 68.33276314745888)), ((-108.04860893299004 67.9491451471016, -108.09138193302988 67.88081814703798, -108.25270893318013 67.88359114704056, -108.1980359331292 67.95081814710318, -108.04860893299004 67.9491451471016)), ((-55.88305488440707 53.486382133632105, -55.81194588434086 53.48388213362978, -55.72929988426388 53.4527731336008, -55.97769988449522 53.45999113360753, -55.88305488440707 53.486382133632105)), ((-66.82084589459369 66.38804514564774, -66.63972689442501 66.3405451456035, -66.5743178943641 66.3123361455772, -66.95708189472057 66.40845414566672, -66.82084589459369 66.38804514564774)), ((-109.4472179342926 68.09220914723485, -109.31847293417269 68.03790014718427, -109.31791793417217 67.98345414713356, -109.54097293437991 68.04984514719538, -109.4472179342926 68.09220914723485)), ((-96.45583592219343 75.81776315442983, -96.55360892228448 75.7385911543561, -96.71389092243376 75.73664515435428, -96.6638909223872 75.78803615440216, -96.45583592219343 75.81776315442983)), ((-91.76167291782166 81.54803615976658, -91.8636179179166 81.55525415977328, -91.9583359180048 81.59790015981301, -91.58222691765452 81.57804515979453, -91.76167291782166 81.54803615976658)), ((-60.91028188908905 45.546109126237155, -60.99708188916989 45.45680012615398, -61.103890889269366 45.524991126217486, -61.02041788919162 45.5751361262642, -60.91028188908905 45.546109126237155)), ((-86.06722691251828 72.29387315114795, -85.86389091232891 72.29720915115107, -85.83721791230407 72.262773151119, -85.9083359123703 72.21775415107706, -86.06722691251828 72.29387315114795)), ((-107.58168193255518 67.19636314640053, -107.4005549323865 67.11303614632291, -107.40778193239322 67.08305414629501, -107.54972693252542 67.08998214630145, -107.58168193255518 67.19636314640053)), ((-64.88473589279054 62.59415414211438, -64.96903589286906 62.53054514205516, -65.13736389302582 62.544991142068596, -65.00306389290076 62.59887314211878, -64.88473589279054 62.59415414211438)), ((-109.88276393469823 68.11415414725528, -109.93221793474429 68.07916314722272, -110.25750893504724 68.03929114718557, -109.92166393473445 68.1341541472739, -109.88276393469823 68.11415414725528)), ((-117.18331794149739 70.53749114951219, -117.30166394160761 70.56191814953496, -116.88152694121634 70.55012714952397, -116.88944594122371 70.54387314951813, -117.18331794149739 70.53749114951219)), ((-79.78416390666672 56.94082713684932, -79.71791790660502 56.810409136727856, -79.75361790663827 56.782773136702104, -79.82377290670361 56.895009136806635, -79.89583590677073 56.88346313679588, -79.78416390666672 56.94082713684932)), ((-55.46694588401955 50.78416413111549, -55.55444588410104 50.7023541310393, -55.65076388419074 50.72409113105954, -55.61916388416131 50.79138213112219, -55.46694588401955 50.78416413111549)), ((-97.32749992300523 69.93165414894796, -97.22875492291327 69.87081814889132, -97.49276392315915 69.91775414893502, -97.45360892312267 69.96304514897722, -97.32749992300523 69.93165414894796)), ((-135.29751795836756 69.30498214836433, -135.52694495858123 69.37052714842537, -135.5627729586146 69.39360014844686, -135.33777295840505 69.38860014844221, -135.29751795836756 69.30498214836433)), ((-84.09749991068384 76.5066541550714, -83.99249091058603 76.49498215506054, -83.9080549105074 76.46500015503261, -84.10943591069494 76.44442715501347, -84.09749991068384 76.5066541550714)), ((-79.00935490594513 56.063618136032346, -78.93970890588027 56.02527313599663, -79.13499990606215 55.79069113577816, -79.02902690596345 55.97276413594773, -79.00935490594513 56.063618136032346)), ((-124.30749994813232 73.63220015239438, -124.16777294800218 73.60304515236723, -124.11471794795277 73.56734515233396, -124.34360894816595 73.55998215232711, -124.30749994813232 73.63220015239438)), ((-82.63639990932307 69.87109114889157, -82.51722690921208 69.85415414887578, -82.42777290912878 69.78457314881098, -82.68859990937169 69.85081814887269, -82.63639990932307 69.87109114889157)), ((-104.37720892957078 68.19970914733497, -104.4827729296691 68.07970914722321, -104.55576392973707 68.14651814728543, -104.55027292973196 68.16331814730108, -104.37720892957078 68.19970914733497)), ((-123.67470894754298 49.09304512954051, -123.52166394740044 48.960273129416834, -123.31262694720576 48.870409129333154, -123.54055494741803 48.94499112940261, -123.67470894754298 49.09304512954051)), ((-124.72693594852294 50.2991641306638, -124.65749994845828 50.24777313061591, -124.70347294850109 50.15970913053391, -124.79360894858505 50.22707313059664, -124.72693594852294 50.2991641306638)), ((-80.03694590690215 72.51639115135518, -79.91916390679245 72.4606821513033, -80.13166390699035 72.52123615135972, -80.03694590690215 72.51639115135518)), ((-79.95194590682298 53.348327133503545, -79.94276390681443 53.26693613342775, -80.084026906946 53.32277313347973, -80.06139090692491 53.35555413351028, -79.95194590682298 53.348327133503545)), ((-128.49887295203584 52.87082713305884, -128.4508359519911 52.80526413299776, -128.51430895205021 52.64319113284682, -128.54000895207415 52.70332713290284, -128.49887295203584 52.87082713305884)), ((-65.64834589350171 68.16859114730599, -65.51279089337547 68.15277314729127, -65.49819089336188 68.12511814726551, -65.71181789356083 68.1094271472509, -65.64834589350171 68.16859114730599)), ((-79.84389090672235 56.85832713677249, -79.87444590675081 56.75000013667159, -79.94512690681663 56.76950913668978, -79.91708190679051 56.85985413677392, -79.84389090672235 56.85832713677249)), ((-111.52860893623104 68.29054514741958, -111.67166393636427 68.22470014735825, -111.77901793646426 68.24400914737623, -111.70389093639429 68.29942714742785, -111.52860893623104 68.29054514741958)), ((-125.37082694912262 50.455827130809695, -125.38583594913659 50.36970913072949, -125.52708194926814 50.380264130739306, -125.46832694921342 50.42874513078448, -125.37082694912262 50.455827130809695)), ((-83.3477819099856 65.83249114513032, -83.48527291011365 65.80080914510083, -83.58556391020706 65.8517911451483, -83.28812690993004 65.83637314513393, -83.3477819099856 65.83249114513032)), ((-66.64445489442942 81.56219115977976, -66.92721789469276 81.58360015979969, -66.2966638941055 81.58471815980073, -66.43055489423021 81.57221815978909, -66.64445489442942 81.56219115977976)), ((-60.747499888937455 55.93166413590947, -60.68978188888369 55.91901813589769, -60.89847288907805 55.86985413585191, -60.86840888905006 55.949645135926204, -60.747499888937455 55.93166413590947)), ((-64.33409089227771 63.85208214328591, -64.18332689213732 63.866382143299234, -64.18082689213499 63.78527314322372, -64.3982728923375 63.84943614328347, -64.33409089227771 63.85208214328591)), ((-64.1719358921267 63.63360914308245, -64.07778189203901 63.54380914299881, -64.09721789205712 63.48054514293992, -64.20916389216137 63.575000143027864, -64.1719358921267 63.63360914308245)), ((-130.458617953861 54.80027313485576, -130.46331795386536 54.70860013477039, -130.60921795400125 54.75561813481417, -130.48400895388465 54.80819113486314, -130.458617953861 54.80027313485576)), ((-74.31040890156889 64.49883614388827, -74.2286089014927 64.4511001438438, -74.17491790144271 64.43678214383047, -74.43832690168803 64.45180014384445, -74.31040890156889 64.49883614388827)), ((-61.21167288936974 56.581663136514834, -61.16249988932395 56.68638213661234, -61.07986388924698 56.67693613660356, -61.061108889229516 56.62589113655602, -61.21167288936974 56.581663136514834)), ((-72.47139089985617 63.70082714314506, -72.59959089997557 63.642082143090335, -72.7819459001454 63.662209143109095, -72.50667289988903 63.70721814315101, -72.47139089985617 63.70082714314506)), ((-55.927499884448466 47.67665412822137, -55.9288178844497 47.63846412818583, -55.87944588440372 47.609718128159045, -56.112917884621154 47.64721812819397, -55.927499884448466 47.67665412822137)), ((-128.09249995165737 52.4083271326281, -128.05868195162589 52.328327132553596, -128.21028195176706 52.27880913250746, -128.1129179516764 52.419991132638955, -128.09249995165737 52.4083271326281)), ((-108.16944593310258 67.44970914663648, -108.27528193320114 67.48165414666622, -108.22235493315185 67.56831814674695, -108.13053593306634 67.47929114666402, -108.16944593310258 67.44970914663648)), ((-73.73083590102912 64.38638214378352, -73.70082690100118 64.31845414372026, -73.7047269010048 64.26887314367409, -73.83361790112484 64.33166314373258, -73.73083590102912 64.38638214378352)), ((-78.01916390502294 62.59193614211233, -77.86721790488143 62.58915414210972, -77.83930890485544 62.55346314207648, -78.11374590511103 62.566382142088514, -78.01916390502294 62.59193614211233)), ((-96.61054592233751 71.29054515021355, -96.54695492227829 71.28915415021223, -96.47139092220792 71.22914515015634, -96.62859992235433 71.22026315014807, -96.61054592233751 71.29054515021355)), ((-123.33833594722971 49.50610012992519, -123.36028194725014 49.43305412985717, -123.45959094734263 49.46887312989051, -123.43666394732128 49.5222181299402, -123.33833594722971 49.50610012992519)), ((-126.91250895055842 50.61360913095663, -127.02097295065943 50.63916413098045, -127.14299095077307 50.63534513097687, -126.89029095053772 50.667218131006564, -126.83423595048552 50.628464130970485, -126.91250895055842 50.61360913095663)), ((-108.35944593327953 67.89999114705583, -108.41221793332868 67.88581814704264, -108.6649909335641 67.87067314702853, -108.54472693345208 67.92831814708222, -108.35944593327953 67.89999114705583)), ((-109.57694593441342 68.23248214736549, -109.77250893459555 68.13998214727934, -109.85541793467276 68.15081814728944, -109.67693593450655 68.22415414735772, -109.57694593441342 68.23248214736549)), ((-64.89750889280245 64.40860014380422, -64.82000889273027 64.37942714377706, -64.77214589268569 64.3449181437449, -64.87720889278354 64.31330914371549, -64.89750889280245 64.40860014380422)), ((-64.05483589201765 63.73659114317837, -64.02736389199205 63.69589114314047, -64.2120908921641 63.709300143152944, -64.17068189212553 63.746518143187615, -64.05483589201765 63.73659114317837)), ((-90.71999991685152 63.54305414299813, -90.67665491681115 63.511109142968365, -90.96709091708163 63.54804514300278, -90.77111791689913 63.5519361430064, -90.71999991685152 63.54305414299813)), ((-125.86749094958518 49.23332712967115, -125.79915494952152 49.20832712964787, -125.81729094953842 49.126100129571284, -125.9258269496395 49.19082712963157, -125.86749094958518 49.23332712967115)), ((-71.04415489852695 71.1427631500759, -71.11249989859061 71.08942715002624, -71.25291789872138 71.0702731500084, -71.20056389867263 71.12580915006012, -71.04415489852695 71.1427631500759)), ((-89.91500891610181 68.91331814799958, -90.07556391625134 68.94802714803188, -90.07055491624668 68.98193614806348, -89.91389091610077 69.00582714808573, -89.91500891610181 68.91331814799958)), ((-74.70778190193897 72.20721815106725, -74.79666390202175 72.16804515103078, -74.94708190216184 72.17511815103737, -74.67429990190779 72.22463615108347, -74.70778190193897 72.20721815106725)), ((-98.57362692416578 74.33499115304889, -98.51334592410963 74.31623615303144, -98.85979092443229 74.30768215302345, -98.75249992433237 74.3341541530481, -98.57362692416578 74.33499115304889)), ((-128.3080459518581 52.12887313236783, -128.36499095191115 52.16249113239914, -128.35665495190338 52.23582713246745, -128.22935495178484 52.215373132448406, -128.3080459518581 52.12887313236783)), ((-80.17054590702656 59.673882139394664, -80.26083590711066 59.62360013934784, -80.34146390718576 59.61818213934279, -80.23277290708452 59.72526313944252, -80.17054590702656 59.673882139394664)), ((-62.231381890319426 66.26943614553727, -62.19916389028941 66.21693614548838, -62.42833589050285 66.23110014550156, -62.28278189036729 66.27888214554605, -62.231381890319426 66.26943614553727)), ((-113.77860893832651 77.10415415562787, -113.90889093844785 77.11303615563617, -113.92929993846685 77.13248215565426, -113.66263593821851 77.1274821556496, -113.77860893832651 77.10415415562787)), ((-107.79110893275022 66.98830914620677, -107.8269459327836 66.89831814612296, -107.94582693289432 66.8540091460817, -107.8340359327902 67.00623614622347, -107.79110893275022 66.98830914620677)), ((-92.15833591819107 62.390545141924775, -92.30610891832869 62.351663141888565, -92.37221791839026 62.38943614192374, -92.31945491834112 62.415263141947776, -92.15833591819107 62.390545141924775)), ((-95.31470892113067 67.23859114643986, -95.37360892118552 67.19636314640053, -95.55007292134987 67.23179114643352, -95.39110892120182 67.26304514646264, -95.31470892113067 67.23859114643986)), ((-79.8663909067433 53.16944513333695, -79.7958359066776 53.11639113328752, -79.79319990667514 53.09471813326735, -79.92290890679594 53.08346413325688, -79.8663909067433 53.16944513333695)), ((-62.96110889099903 67.0547001462686, -62.915272890956345 67.01221814622903, -63.137017891162856 67.05851814627215, -63.100081891128454 67.07970914629189, -62.96110889099903 67.0547001462686)), ((-110.81696393556827 67.94026314709333, -110.88028193562724 67.8875001470442, -111.08790893582061 67.85435414701334, -110.83917293558896 67.95803614710991, -110.81696393556827 67.94026314709333)), ((-124.02555494786972 49.76777313016888, -124.12637294796363 49.65138213006048, -124.19666394802908 49.6769361300843, -124.14118194797742 49.75027313015258, -124.02555494786972 49.76777313016888)), ((-116.26027294063775 70.54999114952383, -116.12929994051578 70.53414514950907, -116.49541794085675 70.52138214949719, -116.46999994083308 70.53803614951272, -116.26027294063775 70.54999114952383)), ((-61.69332688981832 57.36804513724721, -61.63221788976141 57.33777313721899, -61.59145488972344 57.327773137209675, -61.75333588987421 57.30249113718614, -61.69332688981832 57.36804513724721))) +GTM Guatemala MULTIPOLYGON (((-89.34830891557402 14.431982097259862, -89.4355639156553 14.414864097243921, -89.49500891571066 14.421391097250009, -89.54848191576045 14.420836097249492, -89.5709729157814 14.414718097243792, -89.58334591579292 14.38582709721689, -89.58917291579836 14.321245097156734, -89.5654909157763 14.316454097152274, -89.54333591575566 14.304164097140827, -89.51816391573222 14.233854097075351, -89.5794549157893 14.207500097050797, -89.60514591581322 14.20819109705144, -89.62695491583354 14.209309097052483, -89.65209091585695 14.195554097039675, -89.6863999158889 14.170000097015873, -89.71014591591101 14.14500009699259, -89.72681791592655 14.117918096967372, -89.74667291594504 14.06958209692236, -89.73972691593856 14.041391096896106, -89.81819991601165 14.066454096919443, -89.8544459160454 14.05944509691291, -89.88902691607761 14.044164096898683, -90.02056391620012 13.938609096800377, -90.08653591626155 13.868473096735059, -90.10389991627773 13.82332709669302, -90.10806391628161 13.789027096661073, -90.09639091627074 13.745836096620849, -90.10556391627928 13.747218096622134, -90.15194591632248 13.763336096637147, -90.21750891638354 13.791664096663524, -90.23713591640181 13.80128209667248, -90.34916391650614 13.847773096715784, -90.41111791656385 13.873054096739324, -90.46250891661171 13.891391096756408, -90.49223591663939 13.900273096764678, -90.58944591672993 13.924718096787444, -90.6124999167514 13.929164096791581, -90.6276269167655 13.930554096792875, -90.67333591680806 13.929445096791838, -90.7719549168999 13.926391096789004, -90.88972691700958 13.921664096784596, -90.94389091706003 13.917773096780977, -91.01583591712703 13.913054096776577, -91.08139091718809 13.913054096776577, -91.10612691721113 13.915836096779174, -91.18403591728368 13.926109096788736, -91.29639991738833 13.953891096814615, -91.38473591747059 13.978891096837899, -91.49361791757201 14.029718096885233, -91.52798191760401 14.043491096898052, -91.56360891763718 14.065000096918084, -91.5877819176597 14.078336096930514, -91.62139991769101 14.093336096944483, -91.64001791770835 14.106391096956642, -91.65889091772593 14.12239109697154, -91.68055491774611 14.13889109698691, -91.69723591776163 14.150000096997246, -91.77000891782941 14.19194509703631, -91.81270891786917 14.21166409705468, -91.91361791796317 14.287773097125566, -91.96055491800688 14.32444509715971, -91.99084591803508 14.35000009718351, -92.08111791811916 14.424718097253105, -92.16446391819677 14.483891097308216, -92.21889991824747 14.52166409734339, -92.24214591826913 14.543718097363936, -92.24678191827344 14.55054509737029, -92.23794591826521 14.55199109737164, -92.21667291824541 14.55805409737728, -92.18722691821797 14.588336097405488, -92.15334591818642 14.683054097493695, -92.15264591818577 14.70333609751259, -92.15833591819107 14.729445097536896, -92.16917291820117 14.768609097573375, -92.18291791821396 14.810554097612439, -92.1838269182148 14.845273097644778, -92.14973591818305 14.93471809772808, -92.09392691813109 15.025800097812905, -92.07069091810945 15.077291097860865, -92.21139991824049 15.262218098033088, -92.10793591814414 15.437600098196427, -91.82860891788398 15.908891098635351, -91.79749991785502 15.961109098683977, -91.72917291779139 16.075000098790042, -91.70418191776811 16.075554098790562, -91.54000891761521 16.07583609879083, -90.99154591710442 16.075745098790748, -90.80445491693017 16.07583609879083, -90.62583591676382 16.075554098790562, -90.45377291660357 16.074882098789942, -90.44761791659784 16.078845098793636, -90.44195491659256 16.088336098802472, -90.43209091658338 16.132773098843856, -90.4300729165815 16.17236409888072, -90.45732691660689 16.194436098901278, -90.45807291660758 16.256664098959234, -90.43860891658944 16.307500099006575, -90.40653591655958 16.335000099032186, -90.38444591653901 16.37694509907125, -90.39333591654729 16.40110909909376, -90.40639991655945 16.41638209910799, -90.4861179166337 16.46110909914964, -90.50500891665129 16.468609099156623, -90.5452909166888 16.473327099161025, -90.5907089167311 16.476391099163877, -90.6091729167483 16.489164099175767, -90.64529091678193 16.520691099205123, -90.64348191678025 16.5636090992451, -90.64418191678091 16.595273099274593, -90.65806391679384 16.644164099320122, -90.67889091681323 16.67582709934962, -90.71428191684619 16.726464099396765, -90.74860891687815 16.756945099425153, -90.80473591693043 16.8054180994703, -90.86667291698812 16.817773099481812, -90.91909991703695 16.829854099493062, -90.9488999170647 16.889164099548296, -90.98668191709989 16.896109099554764, -91.06360891717152 16.92444509958115, -91.18444591728407 17.03555409968463, -91.26848191736232 17.134027099776347, -91.33222691742169 17.188054099826658, -91.43399991751647 17.23721809987245, -91.43695491751923 17.25750009989133, -90.98389991709729 17.25610909989004, -90.98360891709702 17.58500010019634, -90.98306391709652 17.817773100413135, -90.98241791709592 17.82065410041581, -90.9791729170929 17.8200001004152, -90.92167291703934 17.8200001004152, -90.77779091690533 17.820273100415463, -90.59083591673122 17.821109100416237, -90.23834591640293 17.821109100416237, -89.99999991618097 17.82097310041611, -89.7422359159409 17.820827100415983, -89.43043591565052 17.819718100414946, -89.14195491538185 17.81888210041417, -89.1422269153821 17.71944510032155, -89.14343591538322 17.341800099969845, -89.1450089153847 17.013882099664457, -89.18417291542117 16.414445099106175, -89.2041819154398 16.104164098817208, -89.21639991545118 15.915273098641293, -89.21617291545097 15.889854098617619, -89.16972691540771 15.910136098636514, -89.04722691529362 15.906391098633023, -88.9808359152318 15.898054098625252, -88.91057291516636 15.893609098621113, -88.87299091513135 15.862982098592596, -88.83472691509571 15.86471809859421, -88.81222691507476 15.865554098594984, -88.78611791505045 15.856664098586705, -88.74792691501487 15.837218098568599, -88.67861791495034 15.778054098513493, -88.63847291491294 15.712500098452438, -88.61806391489394 15.698536098439433, -88.59807291487532 15.706391098446758, -88.60368191488054 15.733036098471572, -88.4958459147801 15.849509098580043, -88.54999991483055 15.897782098625001, -88.57667291485538 15.916391098642336, -88.55139091483184 15.940836098665102, -88.4063999146968 15.837773098569116, -88.25472691455555 15.736809098475078, -88.22862691453125 15.729591098468362, -88.2147359145183 15.724445098463562, -88.24000891454185 15.714164098453992, -88.31546391461211 15.667336098410388, -88.32779091462359 15.635273098380523, -88.48650891477142 15.504618098258845, -88.55250891483288 15.449718098207711, -88.66833591494076 15.350000098114833, -88.75811791502437 15.295518098064093, -88.83723591509805 15.247218098019118, -88.98056391523154 15.135554097915119, -89.14279091538262 15.07694509786053, -89.15037291538968 15.073482097857308, -89.1583359153971 15.056945097841904, -89.17083591540874 15.03000009781681, -89.17743591541489 14.998536097787508, -89.15487291539388 14.980827097771027, -89.17576391541333 14.924100097718195, -89.18599091542286 14.907609097702831, -89.20653591544199 14.89360909768979, -89.22306391545739 14.87194509766961, -89.22173591545615 14.844445097643998, -89.15487291539388 14.733536097540707, -89.13107291537172 14.715073097523515, -89.13779091537796 14.68471809749525, -89.19723591543332 14.585000097402371, -89.23583591546928 14.582427097399986, -89.35049091557606 14.4715270972967, -89.34830891557402 14.431982097259862))) +UMI Howland I. MULTIPOLYGON (((-176.6361729968672 0.7902820845550451, -176.64308199687363 0.7936090845581418, -176.64286399687342 0.808336084571863, -176.632754996864 0.8086090845721117, -176.63109099686247 0.7954180845598273, -176.6361729968672 0.7902820845550451))) +UMI Johnston Atoll MULTIPOLYGON (((-169.5389359902574 16.724164099394628, -169.53890899025734 16.7297090993998, -169.5239269902434 16.73027309940032, -169.5389359902574 16.724164099394628))) +MEX Mexico MULTIPOLYGON (((-111.56000893626029 24.429445106570725, -111.65363593634748 24.549164106682227, -111.79361793647786 24.562500106694642, -111.96931793664149 24.79194510690833, -111.97812693664969 24.75353610687256, -112.08750893675156 24.75610910687496, -112.10722693676992 25.02395410712441, -112.17499993683305 24.895864107005124, -112.12639993678778 25.172918107263143, -112.06737293673281 25.2787451073617, -112.10014593676333 25.728054107780153, -112.20556393686151 25.980827108015575, -112.325290936973 26.080554108108444, -112.37834593702242 26.255000108270906, -112.67319993729703 26.330554108341275, -112.89271793750147 26.52194510851953, -113.21500893780163 26.70333610868846, -113.13098193772338 26.96000010892749, -113.16757293775744 26.97110910893784, -113.2063909377936 26.82638210880306, -113.27525493785774 26.78135410876112, -113.45180893802217 26.843191108818715, -113.59882693815908 26.739582108722217, -113.72430893827595 26.8251361088019, -113.84222693838576 26.978609108944823, -113.99875493853155 26.98166410894767, -114.1651459386865 27.145000109099783, -114.33029093884032 27.16250010911608, -114.47549093897554 27.23805410918645, -114.51590893901319 27.41513610935138, -115.02306393948551 27.76860910968057, -115.02057293948319 27.846664109753263, -114.61361793910419 27.767218109679277, -114.4338999389368 27.805000109714456, -114.17541793869607 27.69500010961201, -113.98500893851875 27.700836109617455, -114.0302729385609 27.768745109680694, -114.15805493867991 27.716109109631674, -114.30763593881922 27.865927109771206, -114.2786179387922 27.951391109850803, -114.15201793867429 28.043782109936842, -114.16158193868318 28.000554109896584, -114.12855493865243 28.0236541099181, -114.14584593866853 28.310554110185294, -114.06131793858981 28.517573110378095, -114.16771793868891 28.6718731105218, -114.31499993882608 28.74916411059378, -114.41229993891669 28.889164110724167, -114.55750893905193 28.975273110804366, -114.94598193941373 29.37389111117561, -115.18987293964086 29.43763611123498, -115.69667294011286 29.77423611154846, -115.82306394023057 30.324718112061134, -115.97971794037646 30.49444511221921, -116.00419994039926 30.38510011211737, -116.0390269404317 30.450554112178324, -116.05549094044703 30.79652711250054, -116.26222694063958 30.960418112653173, -116.33305494070552 31.2070821128829, -116.67562694102457 31.560764113212286, -116.60812694096171 31.844509113476548, -116.84319994118064 31.990827113612823, -116.90625494123937 32.22124511382741, -117.0266729413515 32.300000113900765, -117.1241639414423 32.46430011405377, -117.12237294144064 32.53532711411992, -114.71909093920242 32.71845411429048, -114.79522693927332 32.50050011408749, -111.04583593578143 31.333054113000216, -108.2083459331388 31.333054113000216, -108.20861793313907 31.78333611341958, -106.5228819315691 31.780754113417174, -106.39584593145078 31.747500113386195, -106.20987293127759 31.472218113129827, -105.97278193105677 31.369718113034367, -105.77166393086947 31.178264112856056, -105.6000089307096 31.08152711276597, -105.39306393051687 30.86583611256509, -105.16944593030861 30.77860911248385, -104.93472693009001 30.607636112324627, -104.68223592985485 30.187500111933332, -104.67806392985098 29.94097311170374, -104.54181792972409 29.672918111454095, -104.41917292960987 29.569445111357737, -104.22834592943214 29.494445111287888, -104.04529092926165 29.330827111135505, -103.53139992878306 29.12610911094484, -103.37499992863741 29.023609110849378, -103.1636909284406 28.98402711081252, -102.89584592819115 29.2541641110641, -102.67029092798109 29.742773111519156, -102.49625492781901 29.781664111555372, -102.30180892763792 29.887982111654395, -102.07278192742461 29.798191111570773, -101.40500892680271 29.7727821115471, -101.310835926715 29.615273111400413, -101.04299992646555 29.461500111257195, -100.6658359261143 29.109027110928935, -100.63445492608507 28.958609110788842, -100.3591729258287 28.518327110378806, -100.28146392575633 28.280554110157354, -100.07833592556715 28.155618110041004, -99.88083592538321 27.903891109806565, -99.8329269253386 27.774300109685868, -99.69639992521144 27.656945109576583, -99.50389992503216 27.568054109493787, -99.44334592497576 27.258054109205077, -99.45861792499 27.046945109008476, -99.25334592479881 26.8308271088072, -99.1047359246604 26.435000108438544, -98.43987292404121 26.22332710824142, -98.20000892381782 26.062500108091626, -97.64805492330377 26.02944510806084, -97.41722692308879 25.843327107887518, -97.3647269230399 25.83985410788428, -97.31529092299385 25.920000107958913, -97.1407359228313 25.966427108002165, -97.18860892287587 25.674718107730484, -97.51306392317805 25.044236107143306, -97.65167292330715 24.520273106655324, -97.76306392341088 23.381664105594908, -97.7413909233907 22.905827105151758, -97.88826392352748 22.598818104865828, -97.77687292342374 22.268054104557777, -97.76861792341606 22.11694510441704, -97.6979179233502 21.97471810428459, -97.55611792321815 21.77500010409858, -97.3150089229936 21.55652710389512, -97.4134729230853 21.27173610362989, -97.47021792313815 21.442500103788916, -97.38861792306216 21.470691103815184, -97.37291792304752 21.543536103883014, -97.62229992327978 21.79235410411475, -97.74223592339148 22.01250010431977, -97.67069992332486 21.67395410400448, -97.50110892316691 21.426391103773923, -97.19250892287951 20.794445103185367, -97.17535492286353 20.68395410308247, -96.44445492218283 19.85500010231044, -96.2952909220439 19.341109101831847, -96.13972692189903 19.229445101727848, -96.07918192184265 19.096109101603673, -95.95861792173037 18.988609101503556, -95.91139092168638 18.825273101351442, -95.80111792158368 18.745000101276673, -95.21598192103872 18.71124510124524, -95.02587292086167 18.565100101109138, -94.80806392065882 18.524445101071265, -94.53652692040593 18.16013610073199, -94.41806392029561 18.148891100721514, -93.79299091971346 18.262564100827376, -93.57680891951213 18.35597310091437, -93.57180891950748 18.409164100963906, -93.84583591976268 18.30645410086825, -93.78056391970189 18.348327100907255, -93.5870909195217 18.4213911009753, -93.45000891939404 18.44055410099314, -93.18167291914413 18.438891100991597, -93.12986391909588 18.339582100899108, -93.08778191905668 18.403609100958732, -92.88473591886758 18.461109101012283, -92.74139091873408 18.56000010110438, -92.68000891867692 18.51777310106506, -92.58861791859181 18.623609101163623, -92.0041729180475 18.72624510125921, -91.85861791791194 18.615691101156244, -92.03584591807699 18.592636101134786, -92.04195491808268 18.56000010110438, -91.9935549180376 18.53381810108, -91.96507291801107 18.58680010112934, -91.89764591794828 18.551245101096228, -91.82529091788089 18.492773101041777, -91.85562691790915 18.424436100978127, -91.81312691786957 18.38263610093921, -91.77361791783278 18.445554100997796, -91.47500891755467 18.44826410100032, -91.4886819175674 18.48937310103861, -91.43749991751974 18.54110910108679, -91.18619091728569 18.65007310118827, -91.28959991738199 18.76777310129789, -91.37209091745882 18.771391101301262, -91.38726391747295 18.8235091013498, -91.32999991741963 18.89389110141535, -91.42860891751145 18.851773101376125, -90.75389091688308 19.320273101812447, -90.67667291681117 19.768327102229733, -90.45527291660497 19.97597310242311, -90.49979091664643 20.081045102520974, -90.4847269166324 20.549445102957193, -90.45590891660557 20.732291103127494, -90.38555491654004 20.815209103204708, -90.33889991649659 20.94166410332248, -90.34014591649775 20.967909103346926, -90.43094591658232 20.787673103179074, -90.3512549165081 21.005273103381725, -89.86805491605809 21.255000103614293, -88.84333591510374 21.413609103762013, -88.45139991473872 21.56888210390663, -88.26791791456783 21.553891103892667, -88.09021791440234 21.586600103923132, -88.2414639145432 21.56895410390669, -88.14779091445595 21.608054103943104, -87.71465491405257 21.52760010386818, -87.85132691417985 21.542636103882188, -87.74820891408382 21.504300103846475, -87.24917291361905 21.441391103787893, -87.14604591352301 21.483891103827474, -87.13382691351163 21.557218103895764, -87.41077291376956 21.528609103869115, -87.0786089134602 21.606109103941293, -86.81556391321523 21.408609103757357, -86.81119091321115 21.18020910354464, -86.77528191317771 21.152636103518972, -86.91307291330604 20.801936103192347, -87.06945491345168 20.613054103016438, -87.22639091359784 20.50389110291478, -87.42556391378334 20.222773102652965, -87.47222691382679 20.085973102525557, -87.44480891380125 19.900191102352537, -87.46905491382384 19.849027102304888, -87.44948191380561 19.926445102376988, -87.48180891383572 19.950727102399597, -87.51058191386251 19.827073102284444, -87.58098191392807 19.79958210225884, -87.6605639140022 19.678891102146437, -87.73659991407301 19.677573102145203, -87.73340891407004 19.59986410207283, -87.65771791399955 19.505554101985, -87.52667291387749 19.58471810205873, -87.41222691377091 19.581664102055882, -87.4712639138259 19.442218101926017, -87.62876391397258 19.396873101883784, -87.67694591401745 19.315000101807527, -87.68778191402754 19.25013610174713, -87.63508191397847 19.214791101714212, -87.54737291389678 19.31889110181116, -87.48861791384206 19.291382101785544, -87.5960459139421 19.05034510156105, -87.65431791399638 18.759854101290514, -87.72979991406667 18.66430010120152, -87.76236391409701 18.40860910096339, -87.8474999141763 18.190827100760572, -87.925563914249 18.420273100974256, -88.07333591438662 18.49360910104255, -88.00270891432083 18.67590010121232, -88.03972691435531 18.868191101391403, -88.21779091452115 18.700000101234764, -88.16944591447613 18.677218101213555, -88.28417291458297 18.49221810104126, -88.47379091475958 18.483709101033327, -88.50639091478993 18.447500100999605, -88.60001791487713 18.235836100802487, -88.68111791495267 18.185554100755652, -88.84139991510193 17.90389110049334, -89.02257291527066 18.004509100587043, -89.14300891538282 17.951073100537272, -89.14195491538185 17.81888210041417, -90.98241791709592 17.82065410041581, -90.98389991709729 17.25610909989004, -91.43399991751647 17.23721809987245, -91.33222691742169 17.188054099826658, -91.06360891717152 16.92444509958115, -90.71428191684619 16.726464099396765, -90.6091729167483 16.489164099175767, -90.40639991655945 16.41638209910799, -90.38444591653901 16.37694509907125, -90.45807291660758 16.256664098959234, -90.44195491659256 16.088336098802472, -91.72917291779139 16.075000098790042, -92.21139991824049 15.262218098033088, -92.07069091810945 15.077291097860865, -92.1838269182148 14.845273097644778, -92.15334591818642 14.683054097493695, -92.21667291824541 14.55805409737728, -92.25570891828175 14.554973097374415, -92.75306391874496 15.053336097838553, -92.81013591879811 15.142191097921298, -92.7469909187393 15.092009097874566, -92.77049091876118 15.171600097948698, -92.97973591895605 15.262500098033343, -93.20680891916754 15.491245098246381, -93.78889091970964 15.922782098648284, -93.93860891984907 16.093891098807646, -94.40029092027905 16.295554098995453, -94.43860892031473 16.24055409894423, -94.4161179202938 16.200554098906977, -94.32528192020919 16.15000009885989, -94.2729909201605 16.143300098853658, -94.33264592021605 16.175482098883634, -94.2331549201234 16.159745098868967, -94.07229991997359 16.090691098804655, -94.05264591995528 16.04763609876457, -94.44111792031708 16.181391098889137, -94.69125492055004 16.190691098897787, -94.7237459205803 16.207773098913705, -94.57882692044532 16.315209099013757, -94.66431792052495 16.359645099055143, -94.79153592064343 16.260064098962403, -94.77209092062532 16.32958209902715, -94.85917292070643 16.427082099117953, -95.06267292089595 16.272118098973635, -94.85779092070513 16.21582709892121, -95.21333592103626 16.152773098862482, -95.420290921229 15.978054098699758, -95.74667292153298 15.892500098620076, -96.17778192193447 15.693473098434723, -96.43695492217584 15.685627098427418, -96.47611792221232 15.643609098388282, -96.83930892255057 15.727709098466605, -97.1966729228834 15.913327098639485, -97.79278192343855 15.972082098694202, -98.12556392374849 16.208882098914742, -98.54402692413821 16.310691099009546, -98.78222692436005 16.55305409923527, -99.68598192520173 16.706945099378586, -99.85041792535488 16.79503609946063, -99.87292692537585 16.86791809952851, -101.01112692643588 17.26527309989858, -101.13583592655202 17.379164100004644, -101.57779092696362 17.628327100236703, -101.7920909271632 17.879718100470825, -101.95279092731286 17.978473100562795, -102.03819992739241 17.99041810057392, -102.17029092751542 17.918327100506787, -102.75041792805571 18.067773100645965, -103.45000892870726 18.313609100874913, -103.72500892896338 18.67333610120994, -103.97194592919335 18.87721810139982, -104.31757292951524 19.010900101524314, -104.32779092952475 19.0952731016029, -104.67589992984897 19.17735410167934, -105.02250893017177 19.37194510186056, -105.09917293024317 19.55819110203403, -105.26833593040071 19.677918102145526, -105.45694593057637 19.92221810237305, -105.67833593078255 20.383054102802234, -105.59487293070482 20.47569110288852, -105.33535493046313 20.519164102928997, -105.24472693037872 20.574645102980668, -105.23507293036972 20.630900103033056, -105.32180893045052 20.765482103158405, -105.53619093065016 20.792573103183628, -105.24139093037562 21.064718103437087, -105.18945493032724 21.43750010378426, -105.24584593037976 21.51374510385527, -105.43639093055722 21.609373103944336, -105.5086179306245 21.79194510411436, -105.65027293075642 21.981245104290664, -105.6497269307559 22.342782104627375, -105.82042693091489 22.66402710492656, -106.78499993181322 23.62916410582541, -106.91569993193494 23.865136106045185, -107.7277269326912 24.471127106609558, -107.59640893256889 24.42824510656962, -107.61803593258904 24.517209106652473, -107.68182693264845 24.47974510661757, -107.80832693276626 24.58721810671767, -107.93111793288062 24.63027310675777, -107.81726393277458 24.527500106662046, -107.99549093294057 24.649100106775307, -107.99000893293547 24.95950910706439, -108.04185493298375 24.991954107094614, -108.04749993298901 24.82634510694038, -108.1041729330418 24.82194510693627, -108.22126393315084 25.02944510712952, -108.13014593306598 24.97236410707636, -108.09630893303446 25.012982107114198, -108.00083593294555 25.0080541071096, -108.04250893298436 25.073609107170654, -108.24305493317114 25.159164107250334, -108.39418193331188 25.141109107233518, -108.43695493335171 25.263054107347088, -108.72861793362335 25.396664107471523, -108.7652909336575 25.53930010760436, -108.89608193377931 25.549409107613783, -108.87945493376382 25.501391107569063, -108.9200089338016 25.456109107526885, -109.03132693390526 25.462154107532513, -109.10889993397751 25.526109107592077, -108.97029093384842 25.564445107627776, -108.83492693372236 25.793609107841206, -108.89785493378096 25.699300107753373, -109.14104593400745 25.58305410764511, -109.16917293403365 25.643745107701633, -109.43749993428355 25.820273107866043, -109.42180893426894 26.035273108066278, -109.30555493416067 26.201664108221237, -109.2839999341406 26.162391108184664, -109.23166393409184 26.31944510833094, -109.16479993402957 26.32395410833513, -109.17389993403805 26.26250010827789, -109.09604593396554 26.21479110823347, -109.10389993397285 26.283609108297554, -109.4443089342899 26.715554108699834, -109.51992693436031 26.764300108745232, -109.6772269345068 26.672500108659733, -109.75389093457821 26.696109108681725, -109.86667293468325 26.823327108800214, -109.94904593475997 27.0934731090518, -110.30196393508864 27.162218109115827, -110.52971793530075 27.371109109310368, -110.63459093539842 27.662364109581617, -110.60529093537113 27.757500109670218, -110.51136393528365 27.855000109761022, -110.78946393554266 27.916945109818727, -110.87167293561923 27.84278210974965, -111.05584593579074 27.949164109848724, -111.10333593583498 27.936945109837353, -111.26791793598825 28.089300109979234, -111.46334593617026 28.37500011024531, -111.69694593638782 28.468609110332494, -111.76667293645276 28.592218110447618, -111.93479093660933 28.739027110584345, -111.91771793659343 28.787218110629226, -112.16194593682089 28.971391110800752, -112.21348193686889 29.306109111112477, -112.32945493697689 29.327636111132534, -112.38993593703321 29.421809111220227, -112.3761819370204 29.494927111288334, -112.57674593720719 29.712427111490896, -112.73557293735512 29.971109111731806, -112.76555493738304 30.227500111970585, -113.08139093767718 30.698891112409612, -113.11619093770959 30.814582112517357, -113.03778193763657 31.10500011278782, -113.09167293768677 31.22971811290398, -113.58973593815062 31.331664112998922, -113.64403593820118 31.502218113157767, -113.97469093850914 31.655691113300705, -113.94735493848367 31.566945113218054, -114.02084593855211 31.497636113153504, -114.21750893873528 31.522218113176393, -114.58451793907709 31.760409113398225, -114.8086179392858 31.82221811345579, -115.03114593949303 31.960000113584115, -115.01333593947645 31.910345113537858, -114.92208193939146 31.87173611350191, -114.78666393926534 31.664164113308587, -114.85111793932538 31.52639111318028, -114.88069993935292 31.151664112831284, -114.82479093930085 30.992009112682595, -114.70639093919058 30.92750011262251, -114.69250893917766 30.64569111236007, -114.62541793911517 30.483745112209235, -114.65972693914712 30.198609111943682, -114.54529093904056 30.001109111759746, -114.37576393888267 29.79742711157006, -114.2121549387303 29.761945111537017, -113.66791793822343 29.28416411109204, -113.54514593810909 29.10291811092324, -113.5087549380752 28.89624511073076, -113.45709093802708 28.892709110727466, -113.45166393802202 28.95277311078341, -113.40930893798259 28.964164110794016, -113.29028193787173 28.80971811065018, -113.19492693778292 28.813818110653997, -113.11590893770934 28.486454110349115, -112.86319993747398 28.41850911028584, -112.87402693748406 28.284164110160717, -112.79063593740639 28.17906411006284, -112.77861793739521 28.031318109925238, -112.72328193734367 27.99973610989582, -112.75306393737141 27.837500109744724, -112.5727729372035 27.630554109551994, -112.34667293699293 27.541382109468955, -112.23000893688427 27.232773109181537, -112.01418193668327 27.041382109003294, -112.02916393669722 27.005382108969755, -111.91494593659085 26.84434510881978, -111.91667293659246 26.747845108729905, -111.85860893653837 26.661945108649917, -111.73507293642332 26.552500108547974, -111.68750893637903 26.600591108592766, -111.80382693648735 26.7042361086893, -111.8449909365257 26.902082108873557, -111.56188193626203 26.71965410870365, -111.55278193625355 26.55840010855347, -111.49930893620376 26.529718108526765, -111.39806393610947 26.338609108348777, -111.35000893606471 26.13652710816058, -111.36111793607506 25.95714510799351, -111.29972693601788 25.780282107828796, -111.16709093589435 25.579300107641615, -111.0189549357564 25.521800107588064, -111.01749993575504 25.41416410748782, -110.91111793565597 25.17305410726327, -110.74667293550281 25.019718107120468, -110.68625493544654 24.896391107005613, -110.66778193542933 24.803891106919465, -110.73375493549078 24.634027106761266, -110.69118193545113 24.386873106531084, -110.61458193537979 24.286245106437363, -110.4950819352685 24.217291106373153, -110.30645493509283 24.185482106343528, -110.39551793517577 24.181391106339717, -110.35417293513727 24.115836106278664, -110.27083593505965 24.19061810634831, -110.28958193507711 24.34229110648957, -110.210008935003 24.348191106495065, -109.97416393478335 24.09638210626055, -109.79972693462089 24.01221810618216, -109.8243179346438 23.92236410609847, -109.69763593452582 23.794582105979472, -109.68250893451173 23.65666410585102, -109.47834593432158 23.57555410577548, -109.40749993425561 23.461245105669022, -109.43889993428485 23.22582710544978, -109.51875493435922 23.124582105355486, -109.63639993446878 23.074718105309046, -109.81972693463952 22.913745105159123, -109.92306393473577 22.866664105115277, -109.99819093480573 22.881945105129503, -110.08056393488245 22.986664105227035, -110.17174593496736 23.326873105543882, -110.31119093509723 23.56069110576165, -110.6344549353983 23.73166410592087, -111.01639993575401 24.093891106258226, -111.47243593617873 24.34465410649176, -111.56000893626029 24.429445106570725)), ((-112.2963999369461 28.756382110600512, -112.56361793719498 28.881109110716665, -112.45694593709563 29.186109111000718, -112.29000893694015 29.237500111048575, -112.20029093685659 28.995282110823, -112.25014593690302 28.780000110622495, -112.2963999369461 28.756382110600512)), ((-113.1397179377315 29.017773110843947, -113.35722693793407 29.170827110986494, -113.59221793815293 29.42582711122398, -113.58243593814382 29.58597311137312, -113.40723593798066 29.484309111278435, -113.3660549379423 29.39555411119578, -113.38306393795814 29.32235411112761, -113.2608359378443 29.298054111104975, -113.19584593778377 29.22833611104005, -113.1397179377315 29.017773110843947)), ((-86.9933459133808 20.25555410268349, -87.02056391340615 20.388609102807408, -86.935572913327 20.543054102951245, -86.73861791314357 20.588954102993995, -86.9933459133808 20.25555410268349)), ((-115.17945493963116 28.024718109919093, -115.32431793976608 28.139718110026195, -115.25446393970101 28.218891110099932, -115.27863593972353 28.328327110201855, -115.24083593968832 28.370554110241173, -115.17889093963063 28.30889111018375, -115.14611793960012 28.17889111006268, -115.17945493963116 28.024718109919093)), ((-118.30445494254154 28.917218110750298, -118.4041639426344 29.150554110967605, -118.3061179425431 29.193882111007966, -118.23764594247933 28.95013611078096, -118.26569994250545 28.885273110720547, -118.30222694253948 28.881109110716665, -118.30445494254154 28.917218110750298)), ((-111.70807293639818 24.328327106476564, -111.8350089365164 24.427500106568914, -112.01590893668488 24.528191106662703, -111.83916393652026 24.542500106676016, -111.69473593638577 24.391664106535544, -111.70807293639818 24.328327106476564)), ((-112.13361793679451 25.281109107363903, -112.12666393678802 25.23305410731915, -112.20250893685866 24.84500010695774, -112.04917293671586 24.51860910665377, -112.18014593683783 24.664864106789977, -112.15361793681313 24.705409106827744, -112.18055493683822 24.784164106901088, -112.24889993690186 24.80971810692489, -112.13361793679451 25.281109107363903)), ((-106.62108193166056 21.565309103903303, -106.64584593168361 21.688327104017873, -106.58556393162748 21.715827104043484, -106.50083593154856 21.61944510395371, -106.51500893156177 21.51305410385463, -106.62108193166056 21.565309103903303)), ((-110.6960909354557 25.088836107184832, -110.57889993534656 25.033882107133664, -110.53924593530962 24.882709106992863, -110.64167293540503 24.92971810703665, -110.70791793546671 25.04013610713949, -110.6960909354557 25.088836107184832)), ((-110.97500893571546 18.71610910124977, -111.07291793580664 18.775136101304753, -111.00069993573939 18.866245101389595, -110.93945493568235 18.827500101353507, -110.91028193565518 18.737782101269957, -110.97500893571546 18.71610910124977)), ((-111.20612693593071 25.802773107849745, -111.1923639359179 26.036245108067178, -111.08590893581875 26.07145410809997, -111.09945493583136 26.004445108037558, -111.20612693593071 25.802773107849745)), ((-91.83445491788943 18.638054101177076, -91.64611791771404 18.753609101284695, -91.52500891760124 18.77291810130268, -91.52291791759929 18.750691101281973, -91.83445491788943 18.638054101177076)), ((-106.39917293145389 21.419718103767707, -106.50722693155451 21.437427103784202, -106.47168193152142 21.5105541038523, -106.33951793139832 21.500554103842987, -106.32861793138818 21.468118103812785, -106.39917293145389 21.419718103767707)), ((-109.78835493461031 24.131945106293657, -109.87139993468764 24.187500106345396, -109.91722693473032 24.36666410651226, -109.79860893461985 24.19110910634876, -109.78835493461031 24.131945106293657)), ((-110.33500893511942 24.400554106543822, -110.40389993518357 24.563054106695162, -110.37938193516074 24.58666410671715, -110.29999993508682 24.484445106621948, -110.33500893511942 24.400554106543822))) +UMI Midway Is. MULTIPOLYGON (((-177.39333599757236 28.18415411006758, -177.3958449975747 28.18749111007068, -177.38797299756737 28.214573110095913, -177.37347299755385 28.22151811010238, -177.3605449975418 28.220409110101343, -177.36458199754557 28.204018110086082, -177.38806399756746 28.18638211006966, -177.39333599757236 28.18415411006758))) +BRB Barbados MULTIPOLYGON (((-59.5330548878064 13.050554095973311, -59.54541788781792 13.06902709599052, -59.571108887841845 13.075836095996863, -59.608472887876644 13.083536096004025, -59.627090887893985 13.101527096020789, -59.6427818879086 13.146391096062573, -59.65944588792412 13.287773096194243, -59.65833588792309 13.299164096204848, -59.65195488791714 13.317918096222314, -59.64291788790872 13.329718096233307, -59.631108887897724 13.335000096238218, -59.61611788788376 13.337082096240167, -59.59348188786268 13.33083609623435, -59.571535887842245 13.294718096200711, -59.565699887836814 13.27694509618415, -59.55694588782866 13.255273096163975, -59.54833588782064 13.24333609615286, -59.51709088779154 13.211527096123234, -59.479445887756484 13.185836096099308, -59.466808887744705 13.180691096094506, -59.43986388771961 13.171945096086361, -59.429172887709655 13.165000096079893, -59.427081887707715 13.150418096066318, -59.43028188771069 13.135273096052217, -59.43944588771923 13.116664096034881, -59.444726887724144 13.108054096026862, -59.45347288773229 13.09583609601549, -59.464445887742514 13.085554096005907, -59.49999988777563 13.059445095981587, -59.5102818877852 13.055000095977448, -59.5330548878064 13.050554095973311))) +DMA Dominica MULTIPOLYGON (((-61.36361788951125 15.198054097973326, -61.37409988952102 15.204164097979017, -61.37749988952419 15.236391098009037, -61.37778188952444 15.248054098019892, -61.3743088895212 15.271391098041633, -61.39175488953745 15.297754098066179, -61.393545889539126 15.355827098120272, -61.42278188956635 15.417500098177698, -61.45056388959223 15.455554098213142, -61.46249988960335 15.471109098227629, -61.475563889615515 15.488891098244196, -61.49139088963025 15.540554098292304, -61.48250888962198 15.587773098336285, -61.47472688961473 15.618609098364999, -61.46805488960851 15.628054098373795, -61.452226889593774 15.631945098377415, -61.43041788957346 15.630973098376515, -61.31778188946856 15.581945098330849, -61.304172889455884 15.57360909832309, -61.26722688942148 15.516664098270056, -61.25333588940855 15.461391098218584, -61.25069988940609 15.326109098092587, -61.25590888941095 15.283609098053006, -61.26500888941942 15.258054098029206, -61.270008889424076 15.248336098020161, -61.28028188943364 15.23750009801006, -61.36361788951125 15.198054097973326))) +GRD Grenada MULTIPOLYGON (((-61.60999988974072 12.227773095207041, -61.60556388973659 12.222364095201996, -61.599726889731144 12.186664095168751, -61.59639088972804 12.125554095111838, -61.61111788974175 12.079445095068891, -61.630145889759476 12.046109095037849, -61.64249988977099 12.034164095026725, -61.651390889779265 12.029164095022068, -61.683335889809015 12.01610909500991, -61.71750888984084 12.003891094998536, -61.74972688987084 11.996945094992057, -61.78518188990387 12.003818094998465, -61.72472688984756 12.172218095155301, -61.70750888983153 12.196945095178322, -61.686672889812115 12.218054095197985, -61.67583588980203 12.227773095207041, -61.65444588978211 12.237154095215772, -61.614726889745114 12.231945095210918, -61.60999988974072 12.227773095207041))) +GLP Guadeloupe MULTIPOLYGON (((-61.541872889677265 16.29024509899051, -61.49889088963724 16.348609099044864, -61.522508889659235 16.393054099086257, -61.529445889665695 16.417773099109283, -61.533063889669066 16.43624509912648, -61.53167288966776 16.4519450991411, -61.526117889662586 16.460827099149384, -61.506954889644746 16.485000099171884, -61.463335889604124 16.51291809919789, -61.43610888957876 16.498882099184826, -61.40569988955045 16.47353609916121, -61.39305488953866 16.43278209912326, -61.39139988953713 16.42194509911316, -61.399863889545 16.396245099089228, -61.39680888954216 16.383327099077206, -61.373335889520305 16.35139109904746, -61.36639088951384 16.344164099040725, -61.357781889505816 16.338054099035034, -61.34132688949049 16.33374509903102, -61.29167288944424 16.326664099024427, -61.279163889432596 16.323327099021327, -61.26861788942277 16.318882099017188, -61.25999988941476 16.312773099011494, -61.20555488936404 16.267218098969067, -61.225835889382935 16.25305409895587, -61.4547268895961 16.200554098906977, -61.47055488961084 16.20082709890724, -61.49833588963672 16.208327098914225, -61.509172889646806 16.212773098918362, -61.52111788965793 16.222218098927158, -61.53333588966932 16.23166409893595, -61.54722688968225 16.229536098933977, -61.565935889699674 16.226864098931486, -61.5811088897138 16.20027309890672, -61.57597288970902 16.163473098872444, -61.567508889701145 16.142500098852906, -61.55555488969 16.07610909879108, -61.552781889687424 16.0544450987709, -61.56097288969505 16.031664098749687, -61.57278188970605 16.018327098737274, -61.60694588973787 15.989718098710625, -61.64833588977642 15.96527309868786, -61.68889088981419 15.947773098671561, -61.736945889858944 16.015827098734945, -61.759172889879636 16.052218098768833, -61.79389088991198 16.24194509894552, -61.79610888991404 16.26416409896622, -61.793617889911715 16.306945099006057, -61.7836178899024 16.333054099030377, -61.759726889880156 16.351109099047193, -61.745135889866575 16.360418099055863, -61.72875488985132 16.36124509905663, -61.655835889783404 16.32471809902262, -61.60909988973988 16.280418098981357, -61.58154588971422 16.27510009897641, -61.55792688969221 16.284373098985043, -61.541872889677265 16.29024509899051)), ((-61.25667288941165 15.870000098599121, -61.279445889432864 15.871391098600427, -61.30778188945925 15.88139109860974, -61.31694588946779 15.890000098617747, -61.329581889479556 15.931527098656431, -61.30917288946054 15.972773098694844, -61.27528188942898 16.009164098728732, -61.264163889418626 16.01389109873314, -61.238063889394326 15.99332709871399, -61.199172889358096 15.948609098672335, -61.18708188934684 15.914164098640256, -61.19445488935371 15.902773098629652, -61.22680888938383 15.880000098608434, -61.24556388940131 15.871664098600675, -61.25667288941165 15.870000098599121))) +MTQ Martinique MULTIPOLYGON (((-60.860835889043 14.402773097232668, -60.88694588906732 14.465554097291133, -60.975008889149336 14.471391097296575, -61.011117889182955 14.47000009729527, -61.03389088920417 14.465827097291395, -61.17249988933327 14.693054097503008, -61.23153588938824 14.812500097614247, -61.22667288938371 14.83221809763262, -61.212781889370774 14.84666409764607, -61.19861788935758 14.858891097657462, -61.17472688933533 14.876945097674266, -61.1618088893233 14.880136097677251, -61.14472688930739 14.877773097675046, -61.09736388926328 14.860273097658748, -61.03709088920715 14.830554097631065, -60.94083588911751 14.740836097547515, -60.94250888911907 14.727773097535348, -60.906672889085684 14.652500097465236, -60.84972688903265 14.59471809741143, -60.829726889014026 14.570000097388402, -60.81694588900213 14.473336097298386, -60.82055488900548 14.455827097282082, -60.82806388901248 14.437082097264621, -60.83944588902308 14.41527309724431, -60.85499988903757 14.403054097232925, -60.860835889043 14.402773097232668))) +LCA St. Lucia MULTIPOLYGON (((-60.95472688913044 13.709445096586947, -60.95611788913173 13.71500009659212, -60.96805488914285 13.728054096604282, -60.986390889159935 13.744445096619543, -60.998199889170934 13.75027309662498, -61.01445488918607 13.750000096624717, -61.026117889196925 13.752500096627045, -61.039172889209084 13.761391096635336, -61.0505638892197 13.770554096643863, -61.070145889237935 13.792773096664561, -61.0747268892422 13.80500009667594, -61.079581889246725 13.876664096742687, -61.07500888924247 13.89694509676157, -61.03499988920521 13.969718096829354, -61.01167288918347 14.009718096866607, -60.945835889122165 14.104718096955082, -60.93333588911052 14.10930909695935, -60.91611788909448 14.101873096952431, -60.88806388906836 14.013054096869709, -60.878617889059555 13.975827096835047, -60.87806388905905 13.956664096817192, -60.88569988906616 13.851109096718886, -60.890008889070174 13.823609096693275, -60.900281889079736 13.778327096651111, -60.93833588911518 13.717782096594718, -60.95139088912734 13.710000096587464, -60.95472688913044 13.709445096586947))) +SPM St. Pierre & Miquelon MULTIPOLYGON (((-56.289445884785565 47.07082712765717, -56.25972688475788 47.05249112764008, -56.24757288474656 47.038609127627154, -56.27333588477056 46.991518127583305, -56.28374588478026 46.98277312757514, -56.29514588479087 46.98151812757399, -56.29986388479526 46.99054512758241, -56.34561788483788 46.98909112758105, -56.338081884830856 46.975745127568615, -56.32699088482053 46.97223612756534, -56.307708884802565 46.96435412755801, -56.31413588480855 46.945373127540336, -56.317645884811824 46.930764127526714, -56.30937288480412 46.89888212749702, -56.2891728847853 46.88971812748849, -56.27305488477029 46.88916412748799, -56.2569548847553 46.885554127484625, -56.240135884739644 46.8769361274766, -56.23402688473395 46.86777312746804, -56.23263588473266 46.85305412745436, -56.23889088473848 46.84138212744347, -56.246390884745466 46.83471812743727, -56.33916388483186 46.77985412738619, -56.37139088486188 46.786809127392644, -56.396463884885236 46.829582127432474, -56.389026884878305 46.84512712744697, -56.374172884864464 46.85221812745357, -56.35083588484274 46.857491127458474, -56.342499884834965 46.86305412746367, -56.33049088482379 46.89311812749165, -56.32599988481961 46.92790912752406, -56.32778188482126 46.937773127533234, -56.33083588482411 46.94832712754308, -56.35556388484714 46.98860012758058, -56.366108884856956 47.00193612759301, -56.38556388487508 47.053045127640615, -56.39694588488568 47.0965271276811, -56.397781884886456 47.10665412769052, -56.39028188487947 47.11888212770191, -56.37708188486718 47.129300127711616, -56.361117884852305 47.135827127717704, -56.345972884838204 47.13443612771641, -56.325835884819455 47.088600127673715, -56.289445884785565 47.07082712765717)), ((-56.18747288469059 46.80860912741295, -56.1454998846515 46.80451812740915, -56.146517884652454 46.76050012736815, -56.22432688472492 46.74719112735576, -56.2355908847354 46.768691127375774, -56.18747288469059 46.80860912741295))) +VCT St. Vincent & the Grenadines MULTIPOLYGON (((-61.18444588934439 13.130282096047566, -61.24361788939949 13.156109096071617, -61.26306388941761 13.178336096092323, -61.28014588943351 13.20569109611779, -61.27806388943158 13.250273096159319, -61.26555488941992 13.27305409618053, -61.207090889365475 13.369309096270172, -61.17986388934011 13.383191096283099, -61.14249988930533 13.376245096276634, -61.12291788928708 13.328327096232016, -61.12028188928463 13.307500096212607, -61.123754889287866 13.245836096155188, -61.13000888929369 13.220273096131379, -61.14805488931049 13.167773096082485, -61.16979088933074 13.134445096051437, -61.18444588934439 13.130282096047566))) +ABW Aruba MULTIPOLYGON (((-69.88223589744483 12.411109095377782, -69.9469458975051 12.436664095401582, -70.05903589760949 12.540209095498014, -70.05966389761008 12.62777309557957, -70.03319989758543 12.618327095570777, -69.9322358974914 12.528054095486695, -69.89695489745854 12.480836095442726, -69.89139989745337 12.472218095434698, -69.88556389744794 12.457773095421246, -69.87486389743796 12.415273095381664, -69.88223589744483 12.411109095377782))) +BMU Bermuda MULTIPOLYGON (((-64.82306389273312 32.26055411386402, -64.78237289269522 32.280136113882264, -64.78105489269399 32.290600113892, -64.747790892663 32.31221811391214, -64.71833589263558 32.34027311393827, -64.69445489261334 32.37319111396893, -64.6768088925969 32.379509113974805, -64.69862689261723 32.34360911394137, -64.72139089263842 32.32027311391964, -64.74889989266404 32.29527311389636, -64.76112689267543 32.285000113886795, -64.7700088926837 32.27916411388135, -64.78333589269612 32.27055411387333, -64.80334589271474 32.26250011386584, -64.82306389273312 32.26055411386402))) +DOM Dominican Republic MULTIPOLYGON (((-69.96721789752398 18.42306410097686, -70.00195489755633 18.420691100974636, -70.01068189756445 18.4168911009711, -70.06110889761142 18.336109100895868, -70.07250889762204 18.322218100882935, -70.15417289769809 18.23305410079989, -70.16473589770793 18.230000100797042, -70.17201789771471 18.232373100799265, -70.18417289772603 18.227773100794977, -70.2294458977682 18.223609100791094, -70.31945489785203 18.230554100797562, -70.38375489791191 18.236391100803004, -70.40000889792705 18.2350001008017, -70.4116638979379 18.22582710079317, -70.45972689798266 18.204436100773236, -70.47528189799715 18.199718100768848, -70.48668189800777 18.19721810076652, -70.50750889802717 18.19471810076419, -70.54583589806286 18.206109100774796, -70.5563998980727 18.22582710079317, -70.5469548980639 18.233191100800013, -70.55402689807049 18.252082100817617, -70.58702689810123 18.274627100838615, -70.57264589808783 18.312082100873496, -70.56861789808407 18.36500010092277, -70.59069989810465 18.40610910096106, -70.61111789812365 18.41971810097374, -70.62250889813427 18.42360910097736, -70.65223589816195 18.431945100985118, -70.66446389817334 18.435000100987963, -70.69194589819894 18.43236410098551, -70.7120908982177 18.411245100965843, -70.70778189821368 18.39638210095201, -70.7083458982142 18.386391100942703, -70.71278189821834 18.37639110093339, -70.72278189822765 18.36500010092277, -70.73000889823439 18.358054100916306, -70.7386178982424 18.35250010091113, -70.7504268982534 18.34693610090595, -70.86695489836193 18.312218100873622, -70.93583589842608 18.253891100819303, -70.98834589847498 18.29402710085668, -71.02611789851015 18.305273100867154, -71.03889089852206 18.30778210086949, -71.05334589853551 18.309164100870774, -71.0684818985496 18.307218100868965, -71.08125489856151 18.29916410086146, -71.09972689857871 18.2633361008281, -71.10305489858182 18.245827100811795, -71.09972689857871 18.235836100802487, -71.07889989855931 18.189164100759015, -71.07444589855517 18.17971810075022, -71.06639089854767 18.16721810073858, -71.05562689853764 18.14902710072164, -71.09000889856966 18.07777310065528, -71.18444589865761 17.934718100522048, -71.19361789866615 17.92250010051066, -71.20722689867883 17.907773100496954, -71.22249989869306 17.894445100484532, -71.24889989871764 17.879718100470825, -71.26695489873445 17.846664100440037, -71.39666389885525 17.61832710022739, -71.40833589886613 17.609164100218848, -71.42389089888061 17.60416410021419, -71.62556389906844 17.836391100430475, -71.65889089909948 17.95305410053912, -71.66307289910337 17.96360910054895, -71.67541789911486 17.979027100563314, -71.69084589912923 17.9922181005756, -71.73250889916804 18.022500100603793, -71.75195489918615 18.032500100613106, -71.76786389920096 18.038500100618705, -71.74917289918355 18.092082100668605, -71.75389089918795 18.1455541007184, -71.76583589919908 18.180554100750996, -71.76924589920225 18.200482100769563, -71.72139089915768 18.284445100847748, -71.71551789915222 18.29252710085528, -71.69473589913285 18.322218100882935, -71.71667289915328 18.330273100890437, -71.74305489917786 18.340554100900007, -71.77889989921124 18.35666410091501, -71.81056389924073 18.375827100932867, -71.89917289932325 18.431391100984612, -71.90881789933223 18.44145410099398, -71.9069548993305 18.4559731010075, -71.88653589931148 18.47714510102722, -71.89722689932144 18.492773101041777, -71.94917289936981 18.547218101092483, -71.99694589941431 18.592500101134647, -72.00306389942001 18.600827101142414, -71.97973589939828 18.61944510115974, -71.97056389938975 18.62416410116414, -71.92431789934668 18.62729110116706, -71.91222689933541 18.612918101153667, -71.9016818993256 18.608609101149653, -71.85334589928057 18.616664101157156, -71.8316818992604 18.622500101162586, -71.8236268992529 18.62889110116855, -71.78973589922133 18.674445101210964, -71.77528189920787 18.696109101231144, -71.76610889919932 18.700836101235552, -71.75611789919002 18.704164101238646, -71.73668189917193 18.705273101239683, -71.73222689916777 18.70750010124175, -71.72514589916118 18.718745101252225, -71.71583589915251 18.749718101281076, -71.70916389914629 18.78028210130954, -71.70861789914578 18.790273101318846, -71.71674589915335 18.878264101400788, -71.77750889920995 18.955973101473163, -71.74999989918433 19.019718101532533, -71.65444589909534 19.119445101625402, -71.63987289908177 19.1369451016417, -71.63459089907684 19.161391101664478, -71.62930889907193 19.203745101703916, -71.62918189907181 19.219718101718797, -71.66028189910077 19.22582710172449, -71.67222689911189 19.228882101727336, -71.68779089912638 19.23555410173354, -71.69611789913414 19.241664101739232, -71.71556389915226 19.25777310175424, -71.74473589917942 19.28582710178037, -71.72361789915975 19.360000101849437, -71.69764589913557 19.402909101889406, -71.69168189913002 19.48583610196664, -71.69195489913027 19.498336101978282, -71.70445489914191 19.539445102016558, -71.707781899145 19.54944510202587, -71.71779089915432 19.566664102041912, -71.72222689915846 19.576109102050708, -71.72639089916234 19.585554102059504, -71.73499989917036 19.61027310208253, -71.73779089917295 19.62721810209831, -71.73529089917062 19.654718102123923, -71.73306389916856 19.679154102146683, -71.73653589917178 19.686109102153154, -71.74806389918253 19.699164102165312, -71.75418189918823 19.705827102171526, -71.71965489915607 19.70131810216732, -71.73083589916648 19.734445102198166, -71.74473589917942 19.76027310222223, -71.7622178991957 19.769445102230762, -71.77598189920852 19.7705541022318, -71.7722998992051 19.784164102244475, -71.66583589910594 19.89374510234653, -71.59529089904024 19.906391102358313, -71.58334589902911 19.908054102359856, -71.52944589897892 19.908336102360124, -71.48451789893707 19.90402710235611, -71.44750889890261 19.890554102343557, -71.43111789888734 19.884164102337607, -71.40194589886018 19.869445102323894, -71.36667289882732 19.852500102308113, -71.35583589881723 19.84832710230424, -71.26083589872876 19.823054102280693, -71.24889989871764 19.824718102282247, -71.23203589870194 19.829564102286753, -71.15028189862579 19.849445102305268, -71.09479989857412 19.874091102328222, -71.08583589856578 19.89479110234751, -71.06360889854507 19.913891102365298, -71.04529089852801 19.923336102374094, -71.029172898513 19.92833610237875, -71.01139989849645 19.930827102381073, -70.99445489848067 19.930691102380948, -70.84194589833864 19.903609102355716, -70.83014589832764 19.897082102349643, -70.8011178983006 19.8647181023195, -70.7836178982843 19.846664102302682, -70.70945489821524 19.802218102261293, -70.63250889814358 19.75971810222171, -70.55763589807385 19.7530541022155, -70.51833589803725 19.757082102219258, -70.48889089800983 19.77639110223724, -70.4712548979934 19.782918102243315, -70.45445489797775 19.78250010224292, -70.39944589792653 19.74471810220774, -70.38807289791593 19.73471810219843, -70.35361789788384 19.692218102158847, -70.32084589785332 19.667218102135564, -70.30334589783702 19.655000102124177, -70.29084589782538 19.649164102118746, -70.27528189781088 19.645554102115383, -70.18583589772759 19.62916410210012, -70.14695489769137 19.622773102094172, -70.12499989767093 19.620827102092363, -70.09820889764597 19.624582102095857, -70.08611789763471 19.633891102104528, -70.07291789762242 19.65582710212496, -70.06722689761712 19.662500102131162, -70.05333589760419 19.67569110214346, -70.03237289758466 19.68250010214979, -69.96694589752373 19.678891102146437, -69.94931789750731 19.676800102144483, -69.93639989749528 19.671109102139184, -69.89861789746008 19.637218102107624, -69.88848189745065 19.6262451020974, -69.88223589744483 19.61221810208434, -69.88139089744405 19.600273102073217, -69.89222689745414 19.525273102003368, -69.87709089744004 19.44250010192627, -69.86472689742853 19.417500101902988, -69.83917289740472 19.37444510186289, -69.82444589739102 19.354445101844263, -69.8177818973848 19.34666410183702, -69.75598189732725 19.290836101785032, -69.74139089731366 19.286391101780893, -69.72889989730203 19.28582710178037, -69.71860889729244 19.28889110178322, -69.70251789727746 19.29360910178761, -69.67556389725236 19.30082710179434, -69.53722689712352 19.333327101824608, -69.52251789710982 19.335554101826673, -69.44555489703815 19.333327101824608, -69.31917289692043 19.316391101808833, -69.30723589690932 19.32555410181736, -69.2622178968674 19.35500010184478, -69.2356998968427 19.365273101854356, -69.21973589682783 19.360554101849957, -69.15792689677026 19.2950001017889, -69.1583998967707 19.280418101775325, -69.16555489677738 19.26750010176329, -69.21833589682653 19.186109101687492, -69.2300088968374 19.18027310168206, -69.24305489684956 19.18027310168206, -69.37000889696779 19.196664101697323, -69.58834589717112 19.224164101722934, -69.61577289719668 19.22437310172313, -69.62709089720721 19.212500101712067, -69.63680889721626 19.113191101619577, -69.63167289721147 19.101664101608847, -69.62014589720074 19.088473101596563, -69.60389989718561 19.08805410159617, -69.57806389716156 19.088891101596957, -69.53195489711861 19.094164101601862, -69.51556389710335 19.098054101605484, -69.46889989705988 19.106109101612986, -69.44278189703556 19.10694510161376, -69.4297358970234 19.107218101614023, -69.41528189700995 19.105827101612732, -69.4022358969978 19.10305410161014, -69.39110889698743 19.09916410160652, -69.38305489697994 19.093054101600828, -69.37889089697606 19.08360910159203, -69.37695489697425 19.065973101575608, -69.36639089696442 19.056664101566938, -69.35583589695459 19.0522181015628, -69.25389089685964 19.02082710153357, -69.19222689680221 19.011945101525285, -69.17878189678969 19.012127101525465, -68.98945489661337 19.018891101531764, -68.96389989658957 19.030827101542883, -68.92389989655231 19.029864101541975, -68.90722689653678 19.020554101533307, -68.8936178965241 19.012218101525548, -68.7733458964121 18.968891101485198, -68.73889089638001 18.957773101474842, -68.72709089636902 18.951245101468757, -68.6915358963359 18.923745101443146, -68.65639989630318 18.88305410140525, -68.59056389624187 18.82110910134756, -68.56722689622013 18.8013911013292, -68.53973589619453 18.77860910130798, -68.43552689609749 18.70515410123957, -68.35779089602508 18.6547181011926, -68.3431998960115 18.640691101179527, -68.32556389599507 18.616664101157156, -68.32292689599261 18.599027101140734, -68.33555489600438 18.569164101112918, -68.45139089611226 18.353891100912435, -68.46278189612286 18.348054100906992, -68.47652689613567 18.344582100903764, -68.51889089617512 18.34416410090337, -68.53139989618677 18.346945100905955, -68.55084589620488 18.35721810091553, -68.56945489622221 18.36805410092562, -68.59076389624205 18.377564100934478, -68.60709089625726 18.365273100923034, -68.6313908962799 18.256945100822136, -68.63695489628508 18.216391100784378, -68.64604589629354 18.20562710077435, -68.69806389634199 18.203327100772213, -68.72861789637044 18.207218100775833, -68.75556389639554 18.219718100787475, -68.76167289640122 18.23694510080351, -68.77139089641028 18.260827100825765, -68.78168189641987 18.277773100841543, -68.82055489645607 18.341664100901042, -68.8325088964672 18.357500100915786, -68.83973589647393 18.364436100922248, -68.8472268964809 18.371391100928733, -68.86334589649591 18.384164100940623, -68.87279089650471 18.38916410094528, -68.89528189652566 18.39638210095201, -68.90889089653834 18.39832710095382, -68.91472689654377 18.39750010095304, -68.97307289659811 18.40471810095977, -69.0634728966823 18.390973100946965, -69.08611789670339 18.395273100950973, -69.08788189670503 18.395645100951313, -69.16167289677375 18.409300100964032, -69.19486389680466 18.42750010098098, -69.38444589698123 18.426109100979687, -69.46860889705961 18.416109100970374, -69.51668189710439 18.40277310095796, -69.54722689713283 18.416945100971148, -69.69403589726956 18.456245101007752, -69.74639989731833 18.460282101011515, -69.77603589734593 18.460482101011706, -69.88472689744715 18.469027101019662, -69.90333589746449 18.46389110101488, -69.91250889747303 18.459164101010472, -69.94250889750097 18.44000010099262, -69.95945489751675 18.429164100982533, -69.96721789752398 18.42306410097686)), ((-68.57333589622583 18.101664100677525, -68.59000889624136 18.11360910068865, -68.62056389626981 18.12166410069615, -68.64029089628818 18.125000100699253, -68.6522358962993 18.123609100697962, -68.66222689630861 18.119718100694342, -68.69126389633566 18.11110910068632, -68.70167289634534 18.111945100687095, -68.73194589637355 18.120000100694597, -68.75556389639554 18.12985410070378, -68.78153589641973 18.169854100741034, -68.78499989642296 18.17971810075022, -68.7799998964183 18.19770910076697, -68.60999989625998 18.164718100736252, -68.59778189624859 18.161391100733155, -68.58722689623876 18.15389110072617, -68.57444589622686 18.129445100703393, -68.56855489622137 18.108054100683475, -68.57333589622583 18.101664100677525))) +HTI Haiti MULTIPOLYGON (((-73.11110890045195 19.62694510209805, -73.15028190048844 19.6138911020859, -73.36361790068712 19.62305410209443, -73.37639990069903 19.624164102095463, -73.40764590072813 19.634300102104902, -73.4283459007474 19.647218102116938, -73.447235900765 19.6636091021322, -73.45418190077147 19.671109102139184, -73.46529090078181 19.687773102154708, -73.4619459007787 19.720000102184713, -73.45987290077677 19.73294510219678, -73.41806390073783 19.81971810227759, -73.4051459007258 19.831809102288844, -73.38972690071144 19.833609102290524, -73.35779090068169 19.83471810229156, -73.34499990066979 19.832500102289487, -73.32918190065506 19.837500102294143, -73.28834590061702 19.852500102308113, -73.27389990060357 19.858891102314075, -73.19084590052621 19.902773102354942, -73.15472690049258 19.92221810237305, -73.03361790037978 19.912500102363992, -72.98499990033451 19.914445102365804, -72.89695490025251 19.923882102374606, -72.84472690020387 19.933609102383656, -72.81750890017852 19.94139110239091, -72.79833590016067 19.942773102392195, -72.78445490014774 19.942218102391678, -72.68500890005512 19.92027310237124, -72.6736179000445 19.916664102367875, -72.57944589995681 19.884427102337852, -72.54000889992008 19.845554102301648, -72.49305489987636 19.820554102278365, -72.31750889971286 19.762773102224557, -72.20667289960963 19.774309102235293, -72.20507289960814 19.745000102207996, -72.19056389959464 19.738891102202317, -72.09749989950797 19.72250010218704, -72.05806389947124 19.7208361021855, -71.98083589939931 19.723609102188078, -71.81889089924849 19.711936102177205, -71.75418189918823 19.705827102171526, -71.74806389918253 19.699164102165312, -71.73653589917178 19.686109102153154, -71.73306389916856 19.679154102146683, -71.73529089917062 19.654718102123923, -71.73779089917295 19.62721810209831, -71.73499989917036 19.61027310208253, -71.72639089916234 19.585554102059504, -71.72222689915846 19.576109102050708, -71.71779089915432 19.566664102041912, -71.707781899145 19.54944510202587, -71.70445489914191 19.539445102016558, -71.69195489913027 19.498336101978282, -71.69168189913002 19.48583610196664, -71.69764589913557 19.402909101889406, -71.72361789915975 19.360000101849437, -71.74473589917942 19.28582710178037, -71.71556389915226 19.25777310175424, -71.69611789913414 19.241664101739232, -71.68779089912638 19.23555410173354, -71.67222689911189 19.228882101727336, -71.66028189910077 19.22582710172449, -71.62918189907181 19.219718101718797, -71.62930889907193 19.203745101703916, -71.63459089907684 19.161391101664478, -71.63987289908177 19.1369451016417, -71.65444589909534 19.119445101625402, -71.74999989918433 19.019718101532533, -71.77750889920995 18.955973101473163, -71.71674589915335 18.878264101400788, -71.70861789914578 18.790273101318846, -71.70916389914629 18.78028210130954, -71.71583589915251 18.749718101281076, -71.72514589916118 18.718745101252225, -71.73222689916777 18.70750010124175, -71.73668189917193 18.705273101239683, -71.75611789919002 18.704164101238646, -71.76610889919932 18.700836101235552, -71.77528189920787 18.696109101231144, -71.78973589922133 18.674445101210964, -71.8236268992529 18.62889110116855, -71.8316818992604 18.622500101162586, -71.85334589928057 18.616664101157156, -71.9016818993256 18.608609101149653, -71.91222689933541 18.612918101153667, -71.92431789934668 18.62729110116706, -71.97056389938975 18.62416410116414, -71.97973589939828 18.61944510115974, -72.00306389942001 18.600827101142414, -71.99694589941431 18.592500101134647, -71.94917289936981 18.547218101092483, -71.89722689932144 18.492773101041777, -71.88653589931148 18.47714510102722, -71.9069548993305 18.4559731010075, -71.90881789933223 18.44145410099398, -71.89917289932325 18.431391100984612, -71.81056389924073 18.375827100932867, -71.77889989921124 18.35666410091501, -71.74305489917786 18.340554100900007, -71.71667289915328 18.330273100890437, -71.69473589913285 18.322218100882935, -71.71551789915222 18.29252710085528, -71.72139089915768 18.284445100847748, -71.76924589920225 18.200482100769563, -71.76583589919908 18.180554100750996, -71.75389089918795 18.1455541007184, -71.74917289918355 18.092082100668605, -71.76786389920096 18.038500100618705, -71.79610889922726 18.04777310062734, -71.80528189923581 18.05333610063252, -71.81625489924603 18.06666410064493, -71.82028189924978 18.08555410066252, -71.83528189926375 18.111664100686838, -71.90598189932959 18.17263610074363, -71.92668189934888 18.18471810075488, -72.07236389948454 18.240000100806355, -72.09194589950279 18.236109100802736, -72.138335899546 18.228054100795234, -72.18639989959075 18.22138210078903, -72.22805489962956 18.215827100783855, -72.29278189968983 18.222500100790057, -72.33056389972502 18.227082100794334, -72.3555638997483 18.229445100796525, -72.38223589977314 18.229445100796525, -72.52278189990403 18.2094451007779, -72.5458358999255 18.183054100753324, -72.65945490003132 18.17944510074996, -72.7000089000691 18.181109100751513, -72.71167290007995 18.179164100749702, -72.7388909001053 18.173609100744528, -72.7563909001216 18.167500100738835, -72.77473590013868 18.1563911007285, -72.78750890015058 18.14832710072099, -72.80139090016351 18.14110910071426, -72.81583590017696 18.138473100711806, -72.8893089002454 18.141945100715034, -72.98389090033348 18.16968210074087, -73.00723590035521 18.177500100748148, -73.02667290037331 18.18082710075126, -73.15000890048819 18.198327100767557, -73.26668190059685 18.219445100787212, -73.31160890063869 18.242500100808684, -73.38639990070834 18.261945100826793, -73.45139990076888 18.256945100822136, -73.48529090080044 18.249718100815414, -73.7861179010806 18.171664100742717, -73.79972690109328 18.16444510073599, -73.81917290111139 18.148609100721245, -73.82695490111864 18.142218100715297, -73.83334590112459 18.13444510070805, -73.83834590112924 18.125000100699253, -73.84057290113132 18.11110910068632, -73.83445490112562 18.10000010067597, -73.82279090111476 18.09027310066692, -73.80445490109769 18.066945100645185, -73.79583590108966 18.05458210063368, -73.78993590108416 18.03410010061461, -73.79806390109174 18.02583610060691, -73.80917290110207 18.023054100604313, -73.8816729011696 18.02278210060406, -73.90159990118816 18.037145100617437, -73.90806390119418 18.05750010063639, -73.91166390119753 18.067500100645702, -73.92778190121254 18.092782100669254, -73.95014590123337 18.125691100699896, -73.96055490124307 18.136391100709872, -74.05278190132896 18.21166410077997, -74.09807290137114 18.245000100811012, -74.19111790145779 18.2945821008572, -74.23360890149736 18.306391100868197, -74.26194590152376 18.30778210086949, -74.27764590153838 18.306391100868197, -74.3047359015636 18.286945100850076, -74.32174590157945 18.282291100845754, -74.3619549016169 18.289445100852404, -74.37250890162673 18.293609100856287, -74.44667290169579 18.341936100901293, -74.45112690169995 18.357500100915786, -74.46779090171546 18.45083610100272, -74.42236390167315 18.610136101151085, -74.38459090163798 18.636664101175782, -74.27098190153217 18.66527310120243, -74.23668190150023 18.66721810120424, -74.17486390144265 18.666391101203473, -74.14917290141872 18.65833610119597, -74.12722690139829 18.650836101188986, -74.08555490135949 18.62721810116699, -74.04833590132482 18.606109101147325, -74.0336179013111 18.59889110114061, -74.0222269013005 18.595273101137238, -73.78722690108164 18.532218101078513, -73.7444459010418 18.53889110108473, -73.73180890103004 18.543473101088992, -73.72278190102162 18.555973101100633, -73.71681790101607 18.56416410110826, -73.69611790099678 18.571391101114997, -73.60779090091452 18.58528210112793, -73.591117900899 18.585273101127925, -73.57743590088626 18.577500101120677, -73.60439090091135 18.552554101097456, -73.64805490095203 18.547218101092483, -73.67750890097946 18.55778210110232, -73.69389090099472 18.553336101098182, -73.7075089010074 18.543818101089315, -73.66639990096911 18.503891101052133, -73.65514590095863 18.497218101045917, -73.60444590091141 18.49805410104669, -73.57429090088333 18.507500101055484, -73.5238999008364 18.521945101068937, -73.50695490082062 18.525554101072302, -73.43000890074896 18.516664101064023, -73.40417290072489 18.51333610106093, -73.3644549006879 18.506945101054967, -73.34778190067237 18.501664101050054, -73.21722690055078 18.476945101027027, -73.06945490041316 18.4536091010053, -73.03643590038241 18.456218101007735, -72.99569990034448 18.46540910101629, -72.9730729003234 18.464445101015386, -72.96055490031175 18.46221810101332, -72.92333590027708 18.453891101005567, -72.86389090022172 18.443882100996248, -72.73667290010323 18.42458210097827, -72.6905639000603 18.452773101004524, -72.68278190005304 18.459164101010472, -72.67695490004762 18.46750010101823, -72.66446390003598 18.490554101039706, -72.65918190003107 18.51500010106247, -72.65472690002692 18.525273101072045, -72.63764590001101 18.547218101092483, -72.62472689999898 18.555554101100242, -72.59180889996833 18.56374510110787, -72.5816818999589 18.563609101107744, -72.45834589984402 18.550554101095585, -72.42222689981038 18.546391101091714, -72.39528189978529 18.53889110108473, -72.3687638997606 18.525691101072425, -72.34673589974008 18.535973101082007, -72.32125489971635 18.666382101203467, -72.32972689972424 18.683473101219377, -72.38278189977365 18.70694510124123, -72.39584589978581 18.709164101243303, -72.4166728998052 18.710282101244346, -72.43639989982358 18.71520910124893, -72.54695489992655 18.781664101310824, -72.55917289993792 18.79083610131937, -72.5641818999426 18.79971810132764, -72.56694589994517 18.81332710134032, -72.57306389995087 18.824445101350662, -72.61389089998889 18.875273101398008, -72.64029090001347 18.905554101426205, -72.65250890002486 18.915554101435518, -72.68389990005409 18.935000101453625, -72.72584590009315 18.965273101481827, -72.80029090016248 19.03305410154495, -72.76139990012626 19.161945101664983, -72.80111790016325 19.22110910172009, -72.77473590013868 19.281664101776485, -72.72584590009315 19.37444510186289, -72.72334590009082 19.455000101937912, -73.01445490036194 19.59832710207141, -73.05778190040229 19.61332710208538, -73.10528190044653 19.626391102097543, -73.11110890045195 19.62694510209805)), ((-72.82583590018628 18.695554101230627, -72.85000890020879 18.726945101259858, -72.9319459002851 18.741391101273322, -73.06418190040826 18.778891101308247, -73.21806390055157 18.83416410135972, -73.24694590057847 18.856391101380424, -73.28750890061625 18.90000010142103, -73.2944459006227 18.907500101428013, -73.29861790062658 18.916664101436552, -73.29999990062788 18.927218101446385, -73.28737290061612 18.944582101462558, -73.26250890059296 18.958327101475362, -73.22445490055752 18.96860910148493, -73.20209090053669 18.969445101485704, -73.07278190041626 18.923054101442503, -72.99806390034668 18.89389110141535, -72.85722690021551 18.835000101360492, -72.84889090020775 18.828891101354813, -72.82680890018719 18.80833610133567, -72.81541790017657 18.78889110131756, -72.81110890017256 18.77639110130592, -72.7994549001617 18.734718101267106, -72.81556390017671 18.69889110123374, -72.82583590018628 18.695554101230627)), ((-72.64029090001347 19.985273102431776, -72.6938999000634 19.987773102434105, -72.87610890023309 20.025000102468766, -72.94278190029519 20.041945102484547, -72.95431790030594 20.048473102490632, -72.95459090030619 20.05860910250007, -72.9252909002789 20.074445102514815, -72.91555490026984 20.078327102518443, -72.86249990022043 20.087500102526974, -72.81041790017191 20.091454102530662, -72.79417290015678 20.08721810252672, -72.6825089000528 20.04221810248481, -72.65806390003003 20.030000102473423, -72.62222689999665 20.004164102449366, -72.62577289999996 19.989718102435916, -72.64029090001347 19.985273102431776))) +JAM Jamaica MULTIPOLYGON (((-76.65769990375497 17.929254100516957, -76.69361790378842 17.93750010052463, -76.7247269038174 17.94889110053525, -76.72750890382 17.95305410053912, -76.73583590382775 17.95916410054481, -76.74639990383758 17.963054100548433, -76.80060890388808 17.966691100551827, -76.81139990389812 17.97666410056111, -76.81917290390535 17.983327100567323, -76.83292690391816 17.987082100570817, -76.847781903932 17.982591100566637, -76.89445490397547 17.8886091004791, -76.9144639039941 17.85194510044495, -76.92381790400282 17.841736100435455, -76.95152690402863 17.829300100423865, -77.00528190407869 17.84471810043823, -77.03626390410754 17.888336100478853, -77.05180890412203 17.89458210048467, -77.08029090414854 17.899436100489183, -77.10167290416845 17.89555410048557, -77.11195490417803 17.891936100482198, -77.13195490419666 17.878891100470057, -77.14889990421244 17.862218100454527, -77.19389090425435 17.779718100377693, -77.14382690420771 17.760345100359643, -77.12597290419109 17.728818100330287, -77.13000890419485 17.714164100316637, -77.1383359042026 17.70832710031121, -77.15250890421581 17.70138210030474, -77.16569990422809 17.69721810030086, -77.18250890424375 17.698054100301633, -77.21750890427634 17.71360910031612, -77.22696390428514 17.718891100321045, -77.23861790429599 17.72833610032984, -77.34916390439895 17.821664100416754, -77.39590890444249 17.851882100444897, -77.41222690445768 17.8597181004522, -77.45319990449585 17.855836100448585, -77.48646390452683 17.83847310043241, -77.50723590454616 17.836664100430724, -77.51861790455676 17.840000100433826, -77.56639090460126 17.859473100451964, -77.60972690464162 17.85444510044728, -77.71972690474406 17.847218100440557, -77.73556390475882 17.85000010044314, -77.79244590481179 17.887845100478387, -77.82000890483747 17.937773100524893, -77.83500890485143 17.987782100571465, -77.84083590485686 18.002500100585166, -77.8490359048645 18.011945100593962, -77.87445490488817 18.022636100603933, -77.90417290491584 18.0211091006025, -77.93639990494586 18.026109100607158, -77.95070890495919 18.030136100610918, -77.96131790496906 18.054745100633824, -77.96653590497392 18.065273100643637, -77.98000890498648 18.086391100663306, -78.04333590504545 18.184864100755007, -78.05723590505839 18.19639110076575, -78.07417290507416 18.201382100770402, -78.10196390510005 18.20250010077143, -78.12861790512487 18.20305410077195, -78.19445490518619 18.199718100768848, -78.20639090519731 18.19721810076652, -78.23132690522053 18.189791100759606, -78.25418190524182 18.19444510076393, -78.33889990532072 18.219027100786832, -78.36222690534244 18.234718100801445, -78.36944590534917 18.241945100808167, -78.37389990535331 18.254582100819945, -78.3719549053515 18.264718100829384, -78.36500890534504 18.274718100838697, -78.34250890532408 18.298609100860943, -78.34556390532693 18.3352821008951, -78.33979990532156 18.360691100918757, -78.21098190520158 18.45139110100324, -78.01945490502321 18.451945101003744, -78.00001790500511 18.44138210099392, -77.93610890494558 18.49610910104488, -77.92083590493137 18.50916410105704, -77.88250890489567 18.51971810106687, -77.86445490487885 18.522500101069454, -77.84972690486514 18.52166410106868, -77.73583590475907 18.50501810105318, -77.7000089047257 18.489436101038663, -77.68860890471508 18.48638210103583, -77.64001790466983 18.4791641010291, -77.61376390464538 18.483609101033238, -77.59876390463141 18.48874510103802, -77.56125490459648 18.489300101038538, -77.4813999045221 18.478054101028064, -77.46676390450848 18.469218101019834, -77.46084590450296 18.46610910101694, -77.40779090445355 18.456664101008144, -77.34153590439185 18.4526361010044, -77.32014590437193 18.45847310100983, -77.24722690430401 18.452218101004007, -77.18167290424296 18.43416410098719, -77.16611790422847 18.428054100981498, -77.15779090422072 18.422218100976067, -77.13667290420105 18.407218100962098, -77.06793590413704 18.406927100961823, -77.05611790412603 18.410827100965463, -77.04042690411141 18.41194510096649, -76.9452819040228 18.394445100950193, -76.91121790399109 18.400836100956155, -76.89611790397701 18.37471810093183, -76.85444590393821 18.345000100904144, -76.80555490389268 18.302773100864826, -76.78770890387605 18.273327100837406, -76.72153590381443 18.263609100828347, -76.70339990379753 18.266482100831027, -76.65918190375636 18.235836100802487, -76.64029090373876 18.223054100790577, -76.55139090365597 18.19721810076652, -76.53333590363916 18.19277310076238, -76.45861790356956 18.180554100750996, -76.38334590349946 18.166945100738317, -76.36500890348239 18.159718100731595, -76.34167290346065 18.149718100722282, -76.29250890341487 18.078054100655535, -76.27889990340219 18.050554100629924, -76.27444590339805 18.04138210062139, -76.25809990338281 17.995754100578893, -76.23417290336053 17.941391100528264, -76.22111790334837 17.90416410049359, -76.26529090338951 17.879718100470825, -76.30667290342805 17.86555410045763, -76.35057290346894 17.855554100448316, -76.53418190363995 17.856945100449607, -76.59431790369595 17.861245100453615, -76.61069990371121 17.870000100461766, -76.65769990375497 17.929254100516957))) +ANT Netherlands Antilles MULTIPOLYGON (((-68.74694589638752 12.040273095032418, -68.79889089643589 12.040273095032418, -68.81695489645271 12.043336095035272, -68.82987289646475 12.048336095039929, -68.96569989659125 12.115282095102273, -69.0624998966814 12.188327095170308, -69.1344458967484 12.273336095249476, -69.15833589677065 12.311391095284918, -69.16361789677556 12.366391095336141, -69.14639089675953 12.383891095352439, -69.09778189671425 12.363336095333295, -69.07959089669731 12.350273095321128, -69.0672268966858 12.331664095303793, -69.05833589667752 12.31305409528646, -69.05555489667493 12.288891095263963, -69.04779089666769 12.269718095246105, -69.0402818966607 12.256391095233695, -69.02972689665087 12.242773095221011, -68.9972178966206 12.216109095196174, -68.98083589660534 12.20471809518557, -68.96556389659112 12.198891095180144, -68.91195489654119 12.181664095164095, -68.88250889651377 12.182918095165263, -68.86168189649437 12.178891095161518, -68.85111789648452 12.175282095158153, -68.83667289647107 12.168609095151936, -68.82417289645943 12.160273095144177, -68.75306389639321 12.065000095055439, -68.74694589638752 12.040273095032418)), ((-68.25110889592573 12.020554095014049, -68.2575088959317 12.024445095017668, -68.27528189594824 12.051391095042774, -68.27862689595136 12.061664095052336, -68.28528189595755 12.102218095090109, -68.27917289595186 12.143336095128404, -68.28139989595394 12.157773095141849, -68.28764589595976 12.175418095158278, -68.30167289597281 12.199164095180393, -68.31222689598265 12.209445095189963, -68.3280638959974 12.2152730951954, -68.35473589602223 12.217500095197465, -68.36750889603414 12.216391095196443, -68.39125489605625 12.217782095197734, -68.40056389606492 12.222500095202122, -68.4165358960798 12.253745095231224, -68.40444589606854 12.292773095267577, -68.39722689606181 12.302918095277022, -68.38417289604965 12.307500095281284, -68.36680889603348 12.306109095279993, -68.19736389587567 12.222636095202247, -68.19292689587154 12.207500095188152, -68.20556389588332 12.113054095100196, -68.22889989590504 12.039718095031901, -68.2372268959128 12.023891095017163, -68.25110889592573 12.020554095014049))) +BHS The Bahamas MULTIPOLYGON (((-78.20499990519602 25.20194510729017, -78.19195490518386 25.203609107291726, -78.03917290504157 25.17826410726812, -77.98771790499366 25.15020910724199, -77.94555490495439 24.991664107094337, -77.88195490489515 24.848327106960852, -77.84279090485867 24.794445106910658, -77.82918190484601 24.779445106896688, -77.8106999048288 24.761664106880133, -77.77361790479425 24.73277310685323, -77.74334590476606 24.620000106748194, -77.72168190474589 24.52889110666335, -77.71829990474274 24.497218106633852, -77.74507290476767 24.45416410659375, -77.80473590482323 24.44360910658392, -77.85789090487275 24.420209106562126, -77.86584590488015 24.378818106523582, -78.0196639050234 24.274654106426567, -78.04583590504778 24.279927106431487, -78.06306390506383 24.33332710648122, -78.07181790507198 24.360418106506444, -78.0908459050897 24.382636106527144, -78.21417290520455 24.459164106598408, -78.28083590526664 24.4894361066266, -78.31598190529937 24.506391106642397, -78.3436089053251 24.522218106657135, -78.36029090534063 24.534718106668777, -78.39083590536909 24.562773106694905, -78.44014590541501 24.61666410674509, -78.31753590530082 24.709527106831572, -78.29264590527764 24.681800106805753, -78.28959090527479 24.65040910677652, -78.3047359052889 24.621945106750005, -78.32829990531084 24.593991106723976, -78.24860890523662 24.561945106694125, -78.22736390521685 24.562636106694782, -78.19326390518508 24.605418106734618, -78.26049090524769 24.717909106839386, -78.26445490525138 24.676182106800525, -78.30584590528993 24.721109106842363, -78.29258190527759 24.767427106885506, -78.27528190526147 24.791664106908073, -78.23583590522473 24.834718106948173, -78.20639090519731 24.860273106971974, -78.17722690517014 24.917218107025008, -78.15611790515048 25.029582107129656, -78.16319990515709 25.062636107160444, -78.18806390518024 25.114436107208675, -78.21305490520352 25.179445107269217, -78.21278190520326 25.2001361072885, -78.20499990519602 25.20194510729017)), ((-73.66278190096574 20.915273103297906, -73.66806390097067 20.917773103300235, -73.68402690098553 20.932145103313616, -73.70222690100248 20.99971810337655, -73.65556390095902 21.081945103453123, -73.64056390094505 21.101664103471492, -73.53062690084266 21.185764103549815, -73.4222269007417 21.19416410355764, -73.34972690067418 21.17250010353746, -73.33945490066462 21.164582103530094, -73.30667290063408 21.14916410351573, -73.2584819005892 21.135000103502534, -73.15472690049258 21.175554103540307, -73.13806390047706 21.18750010355143, -73.08500890042765 21.269027103627366, -73.0752909004186 21.292218103648963, -73.06875490041251 21.317918103672895, -73.05334590039816 21.326382103680785, -73.02792690037448 21.33250010368647, -73.01779090036504 21.331391103685448, -73.00750890035548 21.32374510367832, -73.00278190035107 21.308191103663845, -73.02237290036932 21.172218103537205, -73.03584590038186 21.141664103508745, -73.1236089004636 21.008891103385096, -73.14110890047989 20.98332710336129, -73.14972690048792 20.9738911033525, -73.16222690049956 20.968891103347843, -73.31083590063797 20.936109103317307, -73.45279090077017 20.924718103306702, -73.46694590078336 20.925000103306957, -73.52473590083717 20.933891103315247, -73.55667290086691 20.94027310332119, -73.59709090090456 20.946664103327137, -73.61249990091892 20.943054103323774, -73.66278190096574 20.915273103297906)), ((-77.70112690472675 24.284718106435946, -77.69723590472312 24.28805410643905, -77.67792690470513 24.295136106445653, -77.6630729046913 24.287218106438274, -77.63347290466373 24.250136106403744, -77.63834590466827 24.228191106383306, -77.65279090468172 24.224718106380067, -77.66278190469103 24.220273106375927, -77.67083590469854 24.213891106369985, -77.73333590475674 24.160827106320568, -77.75611790477795 24.136527106297933, -77.7416729047645 24.03028210619898, -77.73180890475533 24.028473106197296, -77.71931790474369 24.030136106198853, -77.70778190473294 24.04027310620829, -77.70222690472777 24.049164106216566, -77.66667290469465 24.120554106283052, -77.63889090466878 24.19610910635342, -77.63209090466245 24.211109106367388, -77.61944590465068 24.216391106372313, -77.60930890464124 24.215000106371008, -77.60028190463282 24.205827106362477, -77.58250890461628 24.182218106340486, -77.5769549046111 24.173882106332726, -77.5513909045873 24.12916410629107, -77.54680890458303 24.11666410627943, -77.5168179045551 23.92471810610067, -77.5197269045578 23.861109106041425, -77.52528190456297 23.826945106009603, -77.55430890459002 23.751664105939497, -77.56930890460399 23.737918105926695, -77.58222690461601 23.733054105922164, -77.60903590464098 23.72735410591686, -77.77375490479439 23.74486410593316, -77.7452089047678 23.780136105966022, -77.68181790470877 23.760282105947525, -77.66964590469742 23.766373105953193, -77.66862690469648 23.779445105965365, -77.58889990462222 23.822773106005727, -77.57590890461013 23.843891106025396, -77.59194590462506 23.848609106029784, -77.605835904638 23.8444451060259, -77.64418190467372 23.81777310600107, -77.70014590472583 23.77639110596253, -77.7208359047451 23.781945105967694, -77.7302819047539 23.78694510597235, -77.80833590482659 23.878609106057723, -77.87668190489025 24.073054106238814, -77.85250890486773 24.160273106320048, -77.71639990474097 24.269445106421713, -77.70112690472675 24.284718106435946)), ((-77.95029090495879 26.89778210886955, -77.91694590492774 26.915836108886367, -77.90610890491764 26.919445108889732, -77.84083590485686 26.92833610889801, -77.82695490484393 26.929164108898775, -77.7349999047583 26.914445108885076, -77.69694590472285 26.905827108877048, -77.66195490469026 26.903054108874457, -77.63556390466569 26.905827108877048, -77.60459090463684 26.91250010888325, -77.59418190462715 26.913745108884413, -77.573626904608 26.907500108878594, -77.54667290458289 26.896664108868507, -77.53695490457385 26.8913911088636, -77.50444590454357 26.865873108839835, -77.47278190451408 26.83639110881238, -77.4208359044657 26.78582710876529, -77.30265490435563 26.665554108653268, -77.2750089043299 26.621391108612144, -77.22639090428461 26.607500108599197, -77.15639990421943 26.580000108573586, -77.08973590415734 26.548882108544618, -77.07639990414492 26.540000108536333, -77.04959090411995 26.51902710851681, -77.0422359041131 26.50889110850737, -77.03973590411077 26.497773108497015, -77.02779090409965 26.35971810836844, -77.05333590412344 26.308264108320515, -77.0758359041444 26.307918108320195, -77.10972690417596 26.28639110830015, -77.14333590420726 26.261945108277388, -77.15139990421477 26.25527310827117, -77.16446390422693 26.239436108256413, -77.16833590423055 26.22860910824633, -77.17389090423572 26.197773108217618, -77.18860890424942 26.074718108103013, -77.18972690425046 26.027218108058776, -77.1874999042484 25.95694510799332, -77.18833590424917 25.92944510796771, -77.19376390425423 25.89500010793563, -77.2026459042625 25.88250010792399, -77.21806390427686 25.879164107920886, -77.23417290429185 25.88250010792399, -77.24556390430247 25.889445107930456, -77.26861790432393 25.91666410795581, -77.27917290433376 25.934445107972365, -77.28917290434308 25.958882107995137, -77.29610890434954 25.973054108008327, -77.30472690435757 25.98235410801699, -77.31807290437 25.987782108022046, -77.39805490444449 26.026391108058007, -77.30778190436041 26.076109108104305, -77.22083590427944 26.145273108168723, -77.22611790428435 26.247773108264184, -77.23222690429004 26.410973108416172, -77.2234819042819 26.442918108445923, -77.20807290426755 26.445554108448377, -77.20000890426005 26.452218108454588, -77.15444590421761 26.52027310851797, -77.14819090421179 26.541245108537495, -77.15417290421735 26.554582108549923, -77.18167290424296 26.568336108562733, -77.20251790426238 26.577500108571257, -77.21473590427375 26.58082710857437, -77.2277819042859 26.583327108576697, -77.27305490432808 26.584718108577988, -77.29278190434644 26.58833610858136, -77.32999990438111 26.597500108589884, -77.34305490439327 26.60513610859701, -77.34972690439947 26.640554108629985, -77.4908459045309 26.81721810879452, -77.52779090456531 26.857918108832422, -77.54278190457927 26.865554108839532, -77.55695490459247 26.866527108840444, -77.59583590462869 26.857500108832028, -77.63195490466232 26.85832710883281, -77.65750890468613 26.860554108834876, -77.67249990470009 26.865000108839013, -77.72389090474795 26.882218108855056, -77.78973590480926 26.900836108872397, -77.80195490482065 26.90416410887549, -77.83472690485117 26.910273108881185, -77.89361790490601 26.904445108875763, -77.90668190491819 26.903054108874457, -77.95029090495879 26.89778210886955)), ((-78.70861790566504 26.489718108489512, -78.72653590568173 26.490136108489907, -78.75611790570927 26.49860910849779, -78.77222690572428 26.508609108507102, -78.819172905768 26.54250010853866, -78.8272269057755 26.549164108544872, -78.96860890590717 26.670827108658187, -78.97889990591676 26.69527310868095, -78.87445490581949 26.64139110863077, -78.84000890578741 26.616945108608007, -78.82028190576904 26.600273108592475, -78.79779090574809 26.585827108579025, -78.71889990567462 26.58360910857695, -78.70111790565805 26.58444510857774, -78.68167290563994 26.59055410858342, -78.67222690563115 26.595554108588075, -78.65529090561537 26.611527108602957, -78.60278190556647 26.683891108670352, -78.6000089055639 26.698473108683928, -78.51889090548835 26.734164108717167, -78.37610890535537 26.69305410867888, -78.363890905344 26.689718108675777, -78.34945490533055 26.68860910867474, -78.32722690530984 26.688327108674486, -78.31083590529458 26.69388210867966, -78.24612690523432 26.710554108695177, -78.19862690519008 26.708609108693366, -78.12375490512035 26.70194510868717, -78.10639990510418 26.70221810868742, -77.98360890498982 26.724718108708373, -77.96104590496881 26.732982108716072, -77.95056390495905 26.742500108724926, -77.94445490495336 26.751391108733216, -77.917235904928 26.745282108727523, -77.90861790491998 26.689445108675528, -77.93806390494741 26.642500108631793, -77.94694590495568 26.648327108637233, -77.96056390496837 26.653609108642144, -78.01722690502113 26.658745108646926, -78.24056390522914 26.634718108624554, -78.29889090528346 26.623882108614467, -78.36611790534606 26.610836108602314, -78.54639990551397 26.556664108551857, -78.60278190556647 26.53055410852754, -78.67834590563685 26.49610910849546, -78.68918190564695 26.492500108492095, -78.70861790566504 26.489718108489512)), ((-76.73529090382723 25.559164107622863, -76.6783459037742 25.54444510760915, -76.680281903776 25.48943610755792, -76.53333590363916 25.39832710747308, -76.41028190352455 25.34027310741901, -76.34969990346814 25.343282107421814, -76.32878190344864 25.319573107399734, -76.32319990344345 25.297727107379387, -76.31306390343401 25.287218107369597, -76.1322359032656 25.146109107238175, -76.12028190325447 25.133191107226153, -76.11306390324775 25.116391107210504, -76.11056390324542 25.105000107199885, -76.10917290324412 25.080273107176865, -76.1099999032449 25.066664107164186, -76.13945490327232 24.846109106958778, -76.16833590329922 24.690000106813386, -76.21612690334373 24.715273106836932, -76.32028190344073 24.793609106909884, -76.32751790344747 24.800827106916614, -76.33688190345619 24.817709106932327, -76.21111790333906 24.865836106977156, -76.14444590327697 25.012218107113483, -76.1436179032762 25.064718107162378, -76.1450089032775 25.07721810717402, -76.15194590328396 25.104445107199368, -76.16334590329457 25.127773107221103, -76.17333590330388 25.14263610723495, -76.18749990331708 25.15389110724543, -76.20807290333623 25.16332710725422, -76.24556390337115 25.172218107262495, -76.25445490337943 25.178054107267926, -76.3144549034353 25.253609107338292, -76.32556390344566 25.270554107354073, -76.33307290345265 25.28416410736675, -76.3390359034582 25.297154107378844, -76.35583590347385 25.31833610739858, -76.36639090348368 25.321664107401674, -76.3783459034948 25.325000107404776, -76.39861790351368 25.328054107407624, -76.51000890361743 25.351664107429613, -76.52278190362932 25.357773107435307, -76.53139990363735 25.363609107440737, -76.54126390364654 25.372082107448634, -76.55222690365675 25.386109107461692, -76.55944590366347 25.393327107468423, -76.57556390367849 25.406664107480836, -76.58778190368986 25.416109107489632, -76.59639090369788 25.422218107495326, -76.60694590370771 25.426664107499462, -76.61889990371884 25.430000107502565, -76.63250890373152 25.43221810750464, -76.71583590380912 25.441664107513432, -76.73529090382723 25.559164107622863)), ((-74.27639990153722 22.170554104466973, -74.28139990154187 22.1730541044693, -74.27667290153747 22.216945104510174, -74.1783459014459 22.29527310458313, -74.0397359013168 22.396664104677555, -73.9213999012066 22.465554104741713, -73.91084590119677 22.468891104744827, -73.88694590117451 22.488054104762668, -73.86778190115666 22.512218104785177, -73.86389090115304 22.526245104798235, -73.86973590115848 22.544164104814925, -73.87861790116675 22.56277310483226, -73.88556390117323 22.570273104839245, -73.89249990117969 22.577500104845967, -73.89944590118616 22.584718104852698, -73.92445490120944 22.599027104866025, -73.93833590122237 22.595000104862265, -73.9616729012441 22.59027310485787, -73.97833590125963 22.58944510485709, -73.99361790127385 22.59332710486072, -74.01472690129351 22.602218104868996, -74.03652690131382 22.62027310488581, -73.9838999012648 22.671945104933926, -73.97195490125368 22.681664104942982, -73.95000890123325 22.694718104955143, -73.9247269012097 22.70888210496834, -73.85152690114153 22.728336104986454, -73.83694590112795 22.55166410482191, -73.85889990114839 22.49027310476474, -73.86750890115641 22.469445104745333, -73.9772359012586 22.345554104629954, -73.9947359012749 22.334445104619604, -74.01306390129197 22.32444510461029, -74.10417290137681 22.29527310458313, -74.15334590142261 22.24985410454083, -74.16166390143036 22.23971810453139, -74.18222690144951 22.2218001045147, -74.27639990153722 22.170554104466973)), ((-75.46250890264187 24.12250010628486, -75.50556390268197 24.130973106292757, -75.51501790269077 24.139718106300904, -75.52584590270085 24.15555410631565, -75.51668190269233 24.160554106320305, -75.47278190265143 24.181664106339966, -75.46611790264522 24.29034510644118, -75.50639090268274 24.344164106491306, -75.51806390269361 24.36055410650657, -75.53000890270474 24.38360910652804, -75.58198190275314 24.471773106610158, -75.58622690275709 24.485527106622968, -75.59573590276595 24.507109106643057, -75.63522690280273 24.55444510668714, -75.69333590285684 24.623473106751433, -75.72307290288454 24.64250010676915, -75.7409729029012 24.64486410677135, -75.75827290291733 24.656245106781952, -75.73556390289617 24.696527106819474, -75.7125089028747 24.695273106818306, -75.6841729028483 24.682218106806147, -75.63528190280277 24.653473106779373, -75.62514590279334 24.63930010676617, -75.60100890277086 24.572609106704064, -75.59500890276527 24.548273106681393, -75.52389990269904 24.430000106571242, -75.47472690265325 24.367636106513174, -75.45139990263152 24.350554106497256, -75.44111790262194 24.346109106493117, -75.43167290261314 24.340554106487943, -75.40556390258884 24.322500106471125, -75.39667290258055 24.313473106462723, -75.31945490250864 24.223054106378513, -75.31472690250423 24.213891106369985, -75.2915999024827 24.146873106307567, -75.33361790252182 24.152218106312546, -75.34417290253165 24.15916410631901, -75.4286179026103 24.15083610631126, -75.43833590261936 24.145827106306598, -75.46250890264187 24.12250010628486)), ((-75.30750890249752 23.66777310586137, -75.30389090249415 23.66500010585878, -75.28639090247785 23.646664105841708, -75.27473590246699 23.630000105826184, -75.10945490231306 23.348327105563868, -75.09903590230336 23.32750010554446, -75.08472690229003 23.271109105491945, -75.08236390228782 23.256800105478618, -75.08486390229015 23.232082105455603, -75.08555490229081 23.209718105434774, -75.0788999022846 23.17610910540347, -75.0727819022789 23.155000105383806, -75.067508902274 23.143054105372684, -75.05500890226236 23.130554105361043, -75.03000890223908 23.112500105344225, -75.01889990222872 23.105273105337503, -75.00889990221941 23.10360910533595, -74.96459090217814 23.103745105336074, -74.92529090214154 23.08693610532042, -74.8488909020704 23.0020821052414, -74.84112690206317 22.965000105206855, -74.83222690205487 22.901109105147356, -74.82918190205204 22.86319110511205, -74.83791790206017 22.857500105106737, -74.85042690207182 22.857218105106483, -74.90055490211851 22.948609105191593, -74.90999990212731 22.96721810520893, -74.92584590214206 23.006109105245145, -74.93583590215137 23.02389110526171, -74.96611790217956 23.064164105299213, -74.97444590218733 23.07263610530711, -74.9898729022017 23.07944510531344, -75.03557290224425 23.084445105318096, -75.05056390225822 23.085554105319133, -75.06499990227167 23.085554105319133, -75.0841639022895 23.088891105322247, -75.0966179023011 23.098664105331352, -75.12653590232897 23.115245105346787, -75.16861790236815 23.142827105372476, -75.15961790235978 23.15740910538605, -75.128717902331 23.139936105369785, -75.14369990234495 23.13861810536855, -75.1252819023278 23.122909105353926, -75.08661790229179 23.10550010533771, -75.07069990227697 23.110691105342553, -75.08584590229107 23.13800010536798, -75.10750890231125 23.164718105392865, -75.10806390231177 23.27027310549117, -75.12112690232394 23.331109105547824, -75.12668190232911 23.346109105561794, -75.1313909023335 23.355273105570333, -75.1366729023384 23.36389110557836, -75.17945490237825 23.39805410561017, -75.25723590245069 23.489718105695545, -75.30334590249363 23.630273105826447, -75.30750890249752 23.66777310586137)), ((-74.0888999013626 22.657500104920473, -74.16125490142998 22.67278210493471, -74.20418190146997 22.686382104947384, -74.2725089015336 22.714445104973507, -74.34360890159981 22.803336105056303, -74.34722690160318 22.822918105074535, -74.34389990160008 22.835000105085783, -74.30237290156141 22.842082105092388, -74.21889990148367 22.808327105060954, -74.02236390130062 22.713127104972287, -74.07362690134838 22.663327104925912, -74.0888999013626 22.657500104920473)), ((-72.78750890015058 22.283054104571747, -72.81250890017387 22.31152710459827, -72.86029090021836 22.347773104632026, -72.8747269002318 22.35582710463953, -72.8855639002419 22.360273104643667, -72.8997359002551 22.362500104645733, -72.98889090033813 22.366391104649367, -73.01112690035885 22.360273104643667, -73.02057290036764 22.355554104639268, -73.02862690037514 22.349164104633317, -73.04250890038807 22.34194510462659, -73.05722690040177 22.339164104624004, -73.08168190042456 22.340554104625298, -73.16180890049918 22.36450910464761, -73.16361790050085 22.376945104659185, -73.14001790047888 22.428336104707057, -73.08168190042456 22.443609104721276, -73.06750890041135 22.44194510471972, -73.02305490036996 22.432500104710925, -72.8291819001894 22.382218104664105, -72.76221790012703 22.351664104635645, -72.73959090010595 22.334445104619604, -72.7388909001053 22.32402710460991, -72.75029090011591 22.31000010459684, -72.76833590013273 22.291945104580023, -72.78139990014489 22.28416410457278, -72.78750890015058 22.283054104571747)), ((-77.46583590450761 24.98666410708968, -77.4733459045146 24.986945107089937, -77.54403590458044 24.993473107096023, -77.55959090459493 25.016527107117497, -77.56139990459661 25.027500107127707, -77.55307290458886 25.033336107133152, -77.51833590455651 25.056391107154624, -77.50557290454462 25.062773107160567, -77.4525089044952 25.076245107173108, -77.43583590447967 25.077500107174274, -77.35889990440802 25.079718107176348, -77.32999990438111 25.076945107173756, -77.27000890432524 25.060554107158495, -77.25959090431553 25.051945107150473, -77.26013590431604 25.041664107140903, -77.34112690439147 25.01693610711787, -77.43376390447774 25.009027107110512, -77.46583590450761 24.98666410708968)), ((-74.53029090177367 24.07610910624166, -74.52555490176927 24.10319110626689, -74.50875490175362 24.12235410628473, -74.46098190170912 24.14027310630142, -74.42459090167523 24.07805410624347, -74.43667290168648 24.039582106207646, -74.49278190173874 23.955273106129127, -74.52779090177134 23.956664106130418, -74.54139990178402 23.96916410614206, -74.53722690178013 23.980000106152147, -74.5233359017672 24.035691106204027, -74.52361790176745 24.051664106218894, -74.53029090177367 24.07610910624166)), ((-76.02028190316133 23.675282105868362, -75.99612690313884 23.67416410586732, -75.91862690306667 23.626391105822833, -75.77195490293006 23.499718105704858, -75.8052819029611 23.497500105702784, -75.90972690305837 23.568054105768496, -75.9344459030814 23.58027310577988, -75.94445490309072 23.585000105784275, -75.95583590310132 23.589164105788157, -75.99111790313417 23.599445105797727, -76.03278190317297 23.649445105844293, -76.02862690316911 23.672500105865765, -76.02028190316133 23.675282105868362))) +TCA Turks & Caicos Is. MULTIPOLYGON (((-71.65889089909948 21.73971810406573, -71.67418189911372 21.759718104084357, -71.68084589911992 21.76721810409134, -71.71598189915264 21.788745104111385, -71.75361789918769 21.79250010411488, -71.76945489920244 21.79083610411334, -71.79959089923051 21.78277310410583, -71.8137548992437 21.7755541040991, -71.82529089925444 21.77540910409897, -71.84195489926996 21.800000104121864, -71.85057289927799 21.842782104161714, -71.84778189927539 21.854718104172832, -71.69500889913311 21.838891104158094, -71.68167289912068 21.836391104155766, -71.66778189910775 21.831527104151235, -71.6594548991 21.82527310414541, -71.63779089907982 21.78166410410479, -71.63361789907593 21.772218104095998, -71.64361789908524 21.744164104069867, -71.65362689909458 21.740000104065984, -71.65889089909948 21.73971810406573)), ((-71.88195489930722 21.823609104143856, -71.88917289931393 21.824164104144373, -71.90167289932558 21.82721810414722, -72.02917289944432 21.905000104219653, -72.03146389944646 21.94416410425613, -72.0172268994332 21.953891104265196, -72.00500889942182 21.95777310426881, -71.97307289939208 21.957218104268293, -71.94723589936801 21.95305410426441, -71.91487289933788 21.944582104256526, -71.90764589933114 21.93750010424992, -71.88417289930928 21.847218104165847, -71.88195489930722 21.823609104143856)), ((-71.14604589862185 21.42991810377721, -71.15066389862615 21.470727103815207, -71.13219089860894 21.509218103851055, -71.12757289860464 21.442627103789036, -71.14604589862185 21.42991810377721))) +BLZ Belize MULTIPOLYGON (((-88.29949991459725 18.4829271010326, -88.28969991458813 18.45096410100284, -88.31333591461014 18.424445100978133, -88.31556391461221 18.364164100921997, -88.20861791451262 18.35305410091165, -88.09749991440913 18.37326410093047, -88.08195491439464 18.271382100835595, -88.07779091439076 18.215554100783592, -88.08736391439969 18.1223641006968, -88.12306391443293 18.02944510061026, -88.1508359144588 17.965973100551153, -88.16307291447019 17.95110910053731, -88.18646391449198 17.92402710051209, -88.20242691450684 17.887082100477684, -88.209035914513 17.802500100398902, -88.21195491451572 17.77555410037381, -88.22584591452865 17.715827100318194, -88.23360891453588 17.69610910029982, -88.25181791455284 17.665691100271488, -88.273472914573 17.64485410025209, -88.28249991458142 17.623882100232564, -88.27840891457761 17.580827100192465, -88.1687819144755 17.499109100116357, -88.24889991455012 17.465273100084843, -88.26055491456098 17.422218100044745, -88.28499991458375 17.32332709995265, -88.2947269145928 17.27680009990931, -88.29861791459643 17.238327099873487, -88.2994549145972 17.18555409982433, -88.28913591458759 17.122500099765602, -88.2800089145791 17.097909099742708, -88.26569991456577 17.08040909972641, -88.23487291453706 17.06479109971187, -88.213335914517 16.96208209961621, -88.23430891453654 16.945973099601204, -88.26284591456312 16.925973099582578, -88.27819991457741 16.889445099548553, -88.27972691457883 16.80055409946577, -88.30271791460025 16.643609099319605, -88.3612909146548 16.501764099187497, -88.3472269146417 16.602773099281578, -88.37889091467119 16.561945099243545, -88.39418191468543 16.54166409922466, -88.38528191467714 16.527082099211086, -88.3879269146796 16.490418099176935, -88.53000891481193 16.29805409899778, -88.65084591492446 16.27971809898071, -88.72681791499522 16.23166409893595, -88.74479991501197 16.207636098913582, -88.79194591505588 16.11889109883093, -88.85334591511305 16.05416409877064, -88.92319991517812 15.987082098708171, -88.92680891518148 15.947364098671173, -88.91057291516636 15.893609098621113, -88.9808359152318 15.898054098625252, -89.04722691529362 15.906391098633023, -89.16972691540771 15.910136098636514, -89.21617291545097 15.889854098617619, -89.21639991545118 15.915273098641293, -89.2041819154398 16.104164098817208, -89.18417291542117 16.414445099106175, -89.1450089153847 17.013882099664457, -89.14343591538322 17.341800099969845, -89.1422269153821 17.71944510032155, -89.14195491538185 17.81888210041417, -89.14300891538282 17.951073100537272, -89.1216179153629 17.970936100555775, -89.07205491531674 17.994973100578164, -89.02257291527066 18.004509100587043, -88.99699991524685 17.987400100571108, -88.9834179152342 17.965818100551004, -88.87203591513047 17.907254100496473, -88.84139991510193 17.90389110049334, -88.77408191503923 17.988836100572442, -88.72805491499638 18.054718100633806, -88.70445491497439 18.110000100685284, -88.68111791495267 18.185554100755652, -88.60001791487713 18.235836100802487, -88.58907291486693 18.290736100853607, -88.51695491479977 18.43027310098357, -88.50639091478993 18.447500100999605, -88.47379091475958 18.483709101033327, -88.40544591469592 18.489900101039098, -88.37139991466421 18.48208210103182, -88.3438999146386 18.48139110103118, -88.29949991459725 18.4829271010326)), ((-87.92505491424852 17.999318100582215, -87.90580891423059 18.01961810060112, -87.92029091424408 17.970554100555418, -87.92861791425184 17.95138210053757, -87.93667291425933 17.938609100525667, -87.95291791427447 17.91471810050342, -87.96139991428237 17.90389110049334, -87.97361791429375 17.89832710048816, -87.99111791431005 17.897500100487377, -88.00611791432402 17.901945100491517, -87.90119091422629 18.15082710072332, -87.85639091418457 18.164582100736126, -87.84764591417643 18.15860910073056, -87.84667291417551 18.140973100714135, -87.890145914216 18.04582710062553, -87.92505491424852 17.999318100582215)), ((-87.92418191424771 17.27500009990763, -87.9284819142517 17.27735409990983, -87.93597291425868 17.29291809992432, -87.93471791425752 17.306664099937123, -87.91785491424181 17.418264100041057, -87.82181791415238 17.549027100162846, -87.81000891414138 17.546945100160897, -87.7810549141144 17.518954100134835, -87.77959091411304 17.50221810011925, -87.78584591411887 17.48943610010734, -87.81902691414977 17.429027100051087, -87.83153591416142 17.417082100039963, -87.84098191417021 17.41277310003595, -87.85291791418133 17.417636100040482, -87.86263591419039 17.422500100045, -87.89001791421589 17.40555410002922, -87.90348191422842 17.38610910001111, -87.92500891424848 17.290064099921665, -87.92418191424771 17.27500009990763))) +CYM Cayman Is. MULTIPOLYGON (((-81.39500890816694 19.326109101817877, -81.36959090814327 19.308054101801062, -81.35556390813021 19.30389110179719, -81.34167290811726 19.30416410179744, -81.31403590809153 19.307082101800162, -81.30139090807975 19.312218101804945, -81.27098190805143 19.32750010181917, -81.27528190805543 19.34332710183392, -81.25445490803604 19.35388210184375, -81.15000890793877 19.354164101844006, -81.11167290790306 19.352918101842846, -81.09763590789 19.34541810183586, -81.09306390788574 19.33277310182409, -81.09569990788819 19.31263610180534, -81.10556390789738 19.30277310179615, -81.26361790804457 19.26500010176096, -81.39139990816358 19.267218101763035, -81.40083590817237 19.28527310177985, -81.39986390817147 19.310418101803265, -81.39500890816694 19.326109101817877))) +COL Colombia MULTIPOLYGON (((-74.86080890208149 11.125491094180461, -74.50500890175013 10.993327094057378, -74.29222690155196 10.999027094062683, -74.32722690158455 10.974864094040171, -74.46529090171313 10.971318094036874, -74.5917459018309 10.877636093949619, -74.60750890184559 10.823609093899307, -74.59330890183236 10.783300093861769, -74.51918190176333 10.81277309388922, -74.45778190170614 10.742500093823764, -74.39500890164769 10.742154093823444, -74.35827290161347 10.783400093861857, -74.22987290149389 11.118609094174047, -74.23695490150048 11.23500009428244, -74.15500890142417 11.331391094372222, -74.01279090129171 11.355273094394462, -73.790835901085 11.265691094311023, -73.3843179007064 11.273891094318671, -73.2844549006134 11.29555409433884, -73.14306390048172 11.424445094458875, -72.76876390013312 11.687773094704127, -72.51764589989925 11.787500094796997, -72.41625489980483 11.797782094806578, -72.258617899658 11.889164094891683, -72.13871789954635 12.106391095093997, -72.15791789956423 12.241109095219457, -71.96476389938434 12.251982095229579, -72.01180889942816 12.192636095174308, -71.98604589940416 12.157082095141206, -71.93779089935921 12.162773095146505, -71.86424589929072 12.210764095191195, -71.80971789923994 12.313327095286724, -71.69292689913117 12.366391095336141, -71.63139089907386 12.42160009538756, -71.65500889909586 12.438891095403662, -71.73653589917178 12.414164095380627, -71.7243088991604 12.440973095405596, -71.66153589910193 12.463891095426945, -71.52862689897816 12.446109095410378, -71.2756998987426 12.346109095317246, -71.2208358986915 12.302082095276248, -71.11487289859282 12.098609095086744, -71.13125489860808 12.017364095011075, -71.28249989874894 11.918609094919105, -71.32471789878825 11.853054094858052, -71.40333589886147 11.812773094820542, -71.7697268992027 11.700836094716294, -71.9684818993878 11.666245094684072, -72.20935489961214 11.25000009429641, -72.31764589971299 11.164509094216797, -72.49125489987468 11.12277309417793, -72.90354590025865 10.444445093546179, -73.00472690035288 9.768327092916508, -73.08168190042456 9.609445092768524, -73.24514590057679 9.40847309258136, -73.37806390070058 9.171391092360565, -73.22195490055519 9.171109092360297, -73.0099999003578 9.302009092482209, -72.96250890031357 9.178054092366764, -72.8855639002419 9.11916409231192, -72.77972690014333 9.080273092275704, -72.66446390003598 8.641109091866696, -72.3881998997787 8.369445091613684, -72.32500889971985 8.089027091352534, -72.34583589973924 8.047709091314047, -72.38938189977979 8.047564091313916, -72.45972689984531 7.920554091195626, -72.47244589985715 7.497982090802083, -72.40167289979124 7.407218090717549, -72.26250889966164 7.389445090700988, -72.15472689956125 7.325282090641238, -72.14528189955246 7.198609090523263, -72.06609989947871 7.06241809039642, -71.99236389941004 7.016245090353422, -71.87687289930248 6.986527090325751, -71.6452908990868 7.060554090394689, -71.46389989891787 7.023336090360033, -71.33250889879551 7.022364090359119, -71.18126389865465 6.9634730903042765, -71.02500889850913 6.984445090323803, -70.88653589838016 7.07507309040821, -70.7197268982248 7.098054090429613, -70.55250889806908 7.058336090392629, -70.294726897829 6.9384730902809935, -70.2218178977611 6.9740270903141095, -70.11917289766549 6.975836090315795, -69.42945489702315 6.1186090895174345, -69.31611789691759 6.148609089545374, -69.24174589684833 6.084100089485304, -69.05639989667571 6.2161090896082385, -68.63840889628644 6.135482089533156, -68.45389989611459 6.190554089584438, -68.31945489598938 6.1680540895634834, -68.15515489583636 6.222773089614449, -67.9575088956523 6.217782089609798, -67.83118189553464 6.30757308969342, -67.6352818953522 6.28513608967252, -67.45445489518379 6.1930540895867665, -67.49252689521924 6.121409089520043, -67.4139818951461 5.995536089402819, -67.61999989533797 5.792218089213463, -67.65167289536745 5.683191089111915, -67.61590889533416 5.5481910889861865, -67.64944589536539 5.478336088921139, -67.80389089550923 5.38326408883259, -67.8486358955509 5.306518088761123, -67.80158189550707 4.973236088450719, -67.85875489556032 4.561245088067025, -67.78479989549145 4.334754087856098, -67.80625489551143 4.231809087760212, -67.7085088954204 4.0469540875880625, -67.63514589535207 3.797636087355855, -67.59987289531922 3.740691087302821, -67.49104589521787 3.7243090872875655, -67.43709089516761 3.648336087216819, -67.38111789511548 3.4859730870656023, -67.30659989504609 3.4527820870346915, -67.29285489503329 3.3960450869818573, -67.34639989508315 3.313682086905146, -67.4355638951662 3.253891086849464, -67.8330728955364 2.8766640864981383, -67.82361789552759 2.8270820864519663, -67.60583589532477 2.7933360864205383, -67.53528189525906 2.680000086314976, -67.48556389521276 2.653336086290153, -67.32520889506341 2.474027086123158, -67.19250889493983 2.392500086047221, -67.17418189492277 2.336527085995101, -67.21694589496259 2.275282085938059, -67.21153589495755 2.2436090859085596, -66.99167289475278 1.6958360853984118, -66.87045489463989 1.2209270849561165, -67.07529089483066 1.1725000849110074, -67.0877818948423 1.2863910850170868, -67.05688189481351 1.5201360852347676, -67.07118189482684 1.6204090853281627, -67.11361789486635 1.7350000854348764, -67.26472689500709 1.9469450856322652, -67.33972689507694 2.1130540857869704, -67.42257289515409 2.142845085814713, -67.58598189530628 2.053054085731091, -67.81167289551647 1.7843090854807997, -67.91473589561245 1.7452820854444582, -68.01014589570131 1.7684730854660557, -68.10486389578952 1.9518090856367962, -68.19639989587478 1.977500085660722, -68.25723589593143 1.8527820855445754, -68.23279089590866 1.775554085472649, -68.18264589586197 1.7665270854642472, -68.15306389583442 1.724164085424789, -69.37247289697008 1.7280540854284112, -69.55389989713905 1.7838910854804197, -69.78494589735422 1.7075730854093365, -69.84609989741118 1.7104540854120245, -69.84222689740757 1.0722180848176208, -69.61361789719466 1.0780540848230515, -69.43529089702858 1.0383360847860672, -69.33848189693842 1.0729180848182693, -69.26487289686987 1.0338910847819278, -69.14029089675384 0.8634730846232088, -69.15930889677155 0.7529180845202461, -69.12781789674223 0.6440270844188376, -69.20978189681857 0.6163090843930235, -69.28750889689096 0.6229180843991742, -69.45928189705093 0.7366000845050422, -69.68348189725972 0.6772180844497484, -69.79570889736425 0.6015270843792564, -70.04472689759616 0.5850000843638554, -70.05806389760859 -0.1574999163276516, -69.93348189749256 -0.3043089164643788, -69.73945489731186 -0.4556909166053629, -69.60653589718807 -0.5198639166651304, -69.57354589715735 -0.6349269167722866, -69.61264589719376 -0.7558359168848909, -69.51778189710541 -0.9334729170503238, -69.4342358970276 -1.0011819171133851, -69.37854589697574 -1.3379179174269922, -69.45263589704474 -1.5260359176022007, -69.88195489744457 -3.920281919832007, -69.95692689751439 -4.2368729201268565, -69.9886178975439 -4.175972920070137, -70.12307289766913 -4.072363919973654, -70.1818818977239 -3.9374269198479794, -70.32306389785539 -3.7991639197192058, -70.36222689789186 -3.787781919708607, -70.52799089804624 -3.859235919775159, -70.72416389822894 -3.779717919701099, -70.06750889761739 -2.755554918747279, -70.09848189764622 -2.698335918693985, -70.19459089773574 -2.6440179186433994, -70.2188268977583 -2.5703459185747874, -70.29539089782962 -2.5012819185104576, -70.5644548980802 -2.493335918503064, -70.64972689815961 -2.401254918417308, -70.65764589816699 -2.358190918377204, -70.85896389835449 -2.225345918253481, -71.18806389866099 -2.360554918379407, -71.36168189882268 -2.3469459183667283, -71.41222689886975 -2.2812549183055495, -71.52014589897026 -2.23458191826208, -71.67431789911384 -2.224999918253161, -71.69319989913143 -2.1479179181813635, -71.80848189923879 -2.2308359182585917, -71.88979989931453 -2.377781918395442, -71.9822268994006 -2.369445918387683, -72.22750889962904 -2.4988909185082377, -72.59014589996677 -2.407217918422859, -72.88195490023854 -2.5063909185152227, -72.93458190028755 -2.3999999184161425, -73.00306390035134 -2.410554918425973, -73.11529090045585 -2.3287549183497873, -73.13174590047117 -2.246254918272953, -73.07779090042092 -2.2002819182301323, -73.05820890040269 -2.1455549181791724, -73.09042690043269 -1.9236089179724587, -73.13278190047214 -1.8491639179031267, -73.19701790053196 -1.8064549178633484, -73.29694590062503 -1.8735459179258385, -73.49057290080536 -1.7669459178265612, -73.50750890082114 -1.7483359178092286, -73.48695490080199 -1.6544459177217874, -73.44715490076493 -1.6103459176807178, -73.54278190085398 -1.4680549175482014, -73.55569990086602 -1.3752819174617912, -73.6536179009572 -1.284445917377198, -73.75223590104905 -1.2897179173821058, -73.8409819011317 -1.265135917359217, -73.86805490115692 -1.208608917306563, -74.07779090135224 -1.072781917180066, -74.24069990150397 -1.0129179171243123, -74.28279090154317 -0.9302819170473526, -74.24779090151057 -0.8536089169759435, -74.3161179015742 -0.7816639169089399, -74.37610890163008 -0.5680549167100111, -74.60750890184559 -0.3836089165382219, -74.63291790186925 -0.4065269165595708, -74.70876390193989 -0.3616639165177844, -74.72111790195139 -0.2897179164507833, -74.77237290199913 -0.2079179163745977, -74.860281902081 -0.2324999163975008, -74.93806390215344 -0.1988909163661958, -75.13701790233873 -0.0453459162231979, -75.20500890240206 -0.0368729162153016, -75.22590890242152 -0.0959729162703411, -75.28584590247733 -0.1197179162924584, -75.43444590261574 -0.0594459162363279, -75.57542690274703 0.0318090838486569, -75.76084590291971 0.0468090838626267, -75.91278190306122 0.16333608397116, -76.0401179031798 0.3376360841334787, -76.24305490336882 0.3955540841874239, -76.40084590351576 0.39231808418441, -76.40779090352223 0.271664084072043, -76.54515490365016 0.2191640840231486, -76.71666390380989 0.2831910840827732, -76.77028190385982 0.2488910840508396, -76.86659990394953 0.2393730840419721, -77.03528190410663 0.3062450841042477, -77.0796089041479 0.3595640841539023, -77.21889990427763 0.3361090841320618, -77.37945490442716 0.3847180841773366, -77.42209090446687 0.4127820842034708, -77.46376390450568 0.6555540844295678, -77.53584590457281 0.6556910844296908, -77.64695490467629 0.7288910844978744, -77.67834590470552 0.83721808459876, -77.85389990486902 0.8137450845768939, -77.99930890500445 0.9043090846612358, -78.10000890509824 0.9159730846721033, -78.24833590523637 1.0298640847781684, -78.35376390533456 1.0687450848143811, -78.46653590543959 1.1926360849297595, -78.5602909055269 1.1986090849353275, -78.59167290555612 1.2430540849767198, -78.67750890563607 1.285554085016301, -78.8097179057592 1.4377820851580765, -78.8586819058048 1.547845085260576, -79.03077290596508 1.5988180853080536, -79.05028190598324 1.631809085338773, -78.97209090591042 1.752364085451049, -78.844935905792 1.8365270855294398, -78.58749990555225 1.7671540854648242, -78.54610890551369 1.9170820856044628, -78.5962639055604 2.017918085698369, -78.65417290561433 2.06389108574119, -78.68687290564479 2.193473085861868, -78.56529090553155 2.4291640860813715, -78.55676390552362 2.3906360860454896, -78.52289090549208 2.4341820860860395, -78.46529990543844 2.4431540860943954, -78.45556390542937 2.5041640861512207, -78.42799090540369 2.5083360861551114, -78.34645490532775 2.437845086089453, -78.26501790525191 2.5191640861651905, -78.12250890511919 2.487364086135571, -77.98695490499294 2.522500086168293, -77.95029090495879 2.5577820862011578, -77.93747290494686 2.6509000862878764, -77.89736390490951 2.5779820862199756, -77.86104590487568 2.5600000862032175, -77.78765490480733 2.5694450862120135, -77.74541790476799 2.610418086250178, -77.78110890480123 2.756391086386131, -77.41764590446273 3.260691086855786, -77.40832690445406 3.2881000868813146, -77.46812690450975 3.3300730869204074, -77.36389090441267 3.41250008699717, -77.14110890420518 3.6658360872331173, -77.12569990419084 3.768745087328952, -77.03271790410425 3.918400087468328, -77.18860890424942 3.8436090873986757, -77.26541790432096 3.840136087395436, -77.28695490434102 3.8519450874064347, -77.28594590434008 3.950754087498467, -77.2144549042735 3.9719450875181934, -77.18722690424813 4.060273087600464, -77.26056390431644 4.095554087633317, -77.31264590436494 4.040836087582363, -77.36625490441487 3.925973087475384, -77.43444590447838 4.031391087573567, -77.42556390447011 4.17868208771074, -77.337399904388 4.2171540877465645, -77.27611790433092 4.215000087744556, -77.24229990429943 4.260900087787306, -77.33736390438797 4.269309087795136, -77.38243590442994 4.34215408786298, -77.31306390436534 4.546527088053324, -77.37221790442042 5.082773088552742, -77.34778190439766 5.240554088699682, -77.39680890444333 5.456245088900559, -77.53222690456944 5.51889108895891, -77.50451790454363 5.584164089019694, -77.42056390446545 5.624027089056824, -77.3268819043782 5.6163910890497135, -77.25056390430713 5.709027089135986, -77.24084590429807 5.758191089181764, -77.3388999043894 5.987500089395326, -77.48889090452909 6.1853450895795845, -77.47584590451693 6.2830540896705855, -77.4072999044531 6.239927089630427, -77.38528190443259 6.281664089669292, -77.34042690439081 6.567364089935367, -77.40819990445394 6.6905540900500995, -77.6663999046944 6.876664090223429, -77.65292690468185 6.977218090317081, -77.68083590470785 7.055973090390424, -77.88972690490239 7.228891090551471, -77.80749990482582 7.478682090784105, -77.74861790477097 7.484309090789338, -77.72098190474523 7.536454090837907, -77.7591729047808 7.63333609092814, -77.7440359047667 7.720000091008842, -77.66389090469207 7.679445090971072, -77.57743590461155 7.5261820908283426, -77.33098190438201 7.701809090991901, -77.36999990441836 7.778473091063304, -77.2952089043487 7.904864091181011, -77.21556390427453 7.93721809121115, -77.19833590425849 7.999445091269095, -77.2154269042744 8.087918091351497, -77.27360890432858 8.198609091454585, -77.36249990441138 8.28500009153504, -77.37500890442303 8.39860909164085, -77.4290999044734 8.472500091709662, -77.46858190451017 8.471700091708925, -77.47577290451687 8.521109091754937, -77.36667290441525 8.675000091898255, -77.3469549043969 8.66221809188636, -77.28466390433888 8.516527091750675, -77.24097290429819 8.464718091702423, -77.13451790419904 8.410209091651652, -77.08168190414985 8.32610909157333, -76.96860890404453 8.23833609149159, -76.94862690402593 8.15916409141785, -76.88779090396926 8.121664091382925, -76.83410890391927 8.129100091389859, -76.83668190392167 8.026454091294255, -76.89291790397404 8.046664091313076, -76.91674590399623 8.031527091298983, -76.92389090400289 7.936036091210042, -76.87194590395451 7.909445091185276, -76.75791790384831 7.919164091194332, -76.73194590382413 8.039164091306091, -76.77382690386312 8.411245091652617, -76.82181790390783 8.482218091718721, -76.9281999040069 8.537218091769944, -76.92834590400703 8.568336091798926, -76.88472690396641 8.622218091849106, -76.67389990377006 8.676600091899758, -76.43243590354518 8.876600092086022, -76.42675490353989 8.906391092113765, -76.31750890343815 8.938609092143764, -76.26417290338847 8.995273092196541, -76.17264590330323 9.235836092420584, -76.08973590322601 9.335836092513716, -75.91862690306667 9.422218092594164, -75.81604590297113 9.438609092609425, -75.6879179028518 9.411391092584083, -75.63431790280188 9.448191092618345, -75.58528190275621 9.60639109276569, -75.66084590282658 9.760273092909003, -75.59029090276087 9.979445093113114, -75.57167290274353 10.134445093257469, -75.53403590270848 10.182364093302098, -75.54707290272063 10.417891093521462, -75.48529090266308 10.44666409354825, -75.50403590268054 10.55013609364461, -75.40889090259193 10.658609093745639, -75.28807290247941 10.724445093806949, -75.25184590244568 10.7064540937902, -75.22660890242217 10.729164093811349, -75.23562690243057 10.76200909384194, -75.2681999024609 10.753054093833597, -75.26413590245711 10.798991093876381, -75.03945490224787 10.905836093975893, -75.0230549022326 10.966527094032415, -74.86080890208149 11.125491094180461)), ((-77.39944590444578 4.322218087844419, -77.35620890440552 4.262973087789234, -77.31973590437154 4.251664087778707, -77.54854590458464 4.196182087727038, -77.53861790457539 4.2325000877608545, -77.43320890447723 4.331664087853213, -77.39944590444578 4.322218087844419)), ((-78.12556390512204 2.499445086146821, -78.2148639052052 2.576391086218493, -78.19126390518322 2.639164086276949, -78.13306390512902 2.646109086283417, -78.10556390510341 2.595973086236725, -78.09209090509086 2.53639108618124, -78.12556390512204 2.499445086146821)), ((-81.71305490846315 12.490273095451514, -81.72014590846975 12.545273095502736, -81.69236390844388 12.590273095544646, -81.69098190844258 12.532218095490578, -81.71305490846315 12.490273095451514))) +CRI Costa Rica MULTIPOLYGON (((-85.22679091173556 9.727345092878338, -85.2784819117837 9.785973092932934, -85.34499991184566 9.832773092976524, -85.38500891188292 9.846245092989065, -85.43972691193387 9.858327093000327, -85.5318819120197 9.872291093013331, -85.5519549120384 9.870000093011186, -85.57250891205754 9.87389109301482, -85.61917291210099 9.88889109302879, -85.65668191213594 9.905000093043782, -85.71417291218947 9.994718093127346, -85.75279091222544 10.0488910931778, -85.7648729122367 10.057218093185554, -85.79529091226502 10.10000009322539, -85.83334591230046 10.194718093313611, -85.8515269123174 10.247218093362505, -85.85750891232297 10.36944509347633, -85.8013909122707 10.410827093514882, -85.65472691213411 10.590273093682, -85.63250891211342 10.621664093711232, -85.68000891215766 10.799309093876673, -85.7080729121838 10.808891093885606, -85.73778191221146 10.815554093891805, -85.81750891228572 10.84639109392053, -85.91139091237315 10.891109093962172, -85.8841729123478 10.913891093983395, -85.84889091231494 10.941664094009255, -85.82084591228882 10.943891094011335, -85.72608191220057 10.927600093996162, -85.70499991218094 10.933054094001236, -85.68987291216685 10.963054094029175, -85.66959091214795 11.055000094114803, -85.68806391216516 11.074309094132786, -85.69238191216918 11.076064094134423, -85.61354591209576 11.212845094261809, -85.56418191204979 11.209718094258903, -85.52694591201511 11.166109094218285, -85.42083591191628 11.126391094181301, -85.35959091185924 11.122218094177413, -85.26639991177245 11.084445094142225, -85.2215729117307 11.065254094124356, -85.17375491168617 11.044864094105364, -85.16471791167776 11.042427094103104, -85.16139091167466 11.039445094100316, -85.1336179116488 11.027218094088937, -85.0877819116061 11.010000094072893, -84.90279091143381 10.940836094008489, -84.67445491122116 11.078054094136277, -84.34306391091253 10.953891094020648, -84.2733459108476 10.898609093969156, -84.22504591080262 10.811909093888417, -84.19327291077303 10.783645093862091, -84.15805491074023 10.784109093862526, -84.11598191070104 10.763745093843553, -84.0802909106678 10.76694509384653, -84.0405549106308 10.77805409385688, -83.99736391059058 10.76652709384615, -83.9586179105545 10.734445093816262, -83.9206269105191 10.70969109379321, -83.87000891047197 10.722500093805138, -83.82751791043239 10.74610909382713, -83.77238191038104 10.770254093849616, -83.76084591037029 10.77136409385065, -83.75170891036178 10.770482093849836, -83.68417291029888 10.787082093865294, -83.66014591027651 10.801945093879127, -83.65472691027146 10.824445093900081, -83.66222691027845 10.888609093959843, -83.64579991026315 10.924845093993596, -83.63746391025539 10.920200093989266, -83.62208191024106 10.905836093975893, -83.6009819102214 10.862918093935917, -83.59306391021404 10.83805409391276, -83.57667291019877 10.785554093863865, -83.57000891019257 10.750273093831012, -83.55555491017911 10.692500093777198, -83.5058359101328 10.569309093662469, -83.46167291009166 10.47889109357827, -83.41083591004433 10.396945093501941, -83.3397359099781 10.2997180934114, -83.10486390975937 10.009718093141316, -83.0770909097335 9.990836093123733, -83.02529090968525 10.00279109313486, -83.0108359096718 9.95028209308596, -82.97973590964283 9.908891093047416, -82.92029090958746 9.830000092973933, -82.85305490952486 9.744445092894253, -82.7631269094411 9.652636092808748, -82.70056390938284 9.63194509278948, -82.6597269093448 9.626945092784823, -82.60833590929694 9.602782092762325, -82.56357290925526 9.562873092725155, -82.56139990925323 9.535554092699712, -82.6100089092985 9.490418092657677, -82.63626390932295 9.488054092655474, -82.68249990936602 9.508745092674744, -82.71889990939991 9.54666409271006, -82.74855490942753 9.58298209274389, -82.81418190948865 9.60666409276594, -82.83771790951057 9.609718092768787, -82.86445490953547 9.585554092746278, -82.9347179096009 9.47166409264021, -82.93111790959755 9.199445092386682, -82.93046390959694 9.063127092259734, -82.88223590955202 9.067218092263545, -82.74361790942292 8.981036092183274, -82.71188190939337 8.925073092131157, -82.71986390940081 8.910827092117898, -82.75632690943476 8.88131809209041, -82.81333590948786 8.862500092072878, -82.8584819095299 8.84278209205452, -82.87945490954944 8.825836092038742, -82.91446390958204 8.762782091980014, -82.9156999095832 8.73965409195847, -82.89666390956546 8.710000091930851, -82.87958190954956 8.689445091911708, -82.83674590950966 8.636664091862556, -82.82556390949925 8.570000091800466, -82.82992690950331 8.47465409171167, -82.87646390954666 8.427500091667753, -82.92229090958934 8.416391091657417, -82.95251790961748 8.399445091641624, -83.01779090967827 8.340273091586525, -83.03029090968991 8.310554091558842, -83.00500890966637 8.291109091540733, -82.97209090963571 8.276391091527032, -82.95000890961515 8.270273091521332, -82.93334590959962 8.257500091509428, -82.88598190955551 8.10180909136443, -82.8868089095563 8.075273091339724, -82.89278190956185 8.03597309130312, -82.8988459095675 8.025673091293527, -82.89729990956606 8.09582709135887, -82.9398639096057 8.183327091440361, -82.97098190963467 8.2294450914833, -82.99444590965653 8.250000091502443, -83.04139990970026 8.285827091535822, -83.08445490974036 8.306527091555097, -83.12139990977477 8.333609091580314, -83.1433359097952 8.35805409160308, -83.13758190978984 8.38798209163096, -83.11791790977152 8.404509091646347, -83.09525490975042 8.447536091686416, -83.1802819098296 8.599718091828152, -83.23222690987798 8.624164091850915, -83.32590890996524 8.671109091894635, -83.32549090996484 8.70319109192451, -83.34403590998211 8.72805409194767, -83.37389991000992 8.732218091951552, -83.40472691003863 8.729164091948704, -83.48041791010913 8.70454509192578, -83.42639091005881 8.612782091840316, -83.40000891003424 8.586945091816247, -83.37889091001458 8.577218091807197, -83.35041790998805 8.57041809180086, -83.32472690996413 8.559582091790773, -83.2933359099349 8.530554091763733, -83.2725089099155 8.462773091700612, -83.27222690991523 8.419718091660513, -83.27945490992197 8.377636091621312, -83.29111790993284 8.37028209161447, -83.31015490995055 8.37208209161615, -83.36805491000449 8.397218091639559, -83.39584591003036 8.415136091656237, -83.44862691007953 8.433891091673715, -83.48320891011173 8.442500091681723, -83.51112691013773 8.443054091682242, -83.59556391021637 8.468336091705794, -83.7334729103448 8.587364091816639, -83.735835910347 8.612500091840047, -83.72903591034067 8.635000091861002, -83.70625491031946 8.676736091899883, -83.67418191028959 8.688609091910934, -83.59057291021172 8.84110909205296, -83.58750891020887 8.87500009208452, -83.60250891022284 8.967782092170935, -83.62646391024515 9.03645409223489, -83.70499991031829 9.118327092311148, -83.7258459103377 9.138891092330297, -83.77057291037936 9.181664092370127, -83.95007291054652 9.31180909249133, -84.00889991060131 9.33777309251552, -84.0736269106616 9.359718092535957, -84.12306391070764 9.370282092545793, -84.14778191073066 9.376809092551866, -84.16473591074644 9.401109092574501, -84.22944591080672 9.468609092637365, -84.38139091094823 9.504164092670479, -84.48952691104894 9.524027092688982, -84.53258191108904 9.51979109268504, -84.61861791116917 9.579445092740585, -84.65861791120642 9.633054092790516, -84.67139991121832 9.661945092817419, -84.67348191122025 9.692636092846001, -84.65376391120189 9.72513609287627, -84.63709091118636 9.738336092888574, -84.63090891118061 9.76582709291418, -84.70750891125195 9.918336093056212, -84.74757291128925 9.96715409310167, -84.80555491134326 9.967782093102258, -84.84981791138448 9.967582093102067, -84.88167291141414 10.003336093135374, -84.91750891144753 10.028327093158651, -85.04055491156213 10.130282093253598, -85.07001791158956 10.15533609327693, -85.23625491174438 10.207364093325381, -85.24334591175098 10.180273093300158, -85.23854591174651 10.107291093232192, -85.22299091173203 10.08500009321142, -85.19763591170842 10.078336093205223, -85.1577909116713 10.04527309317443, -85.16728191168015 10.020109093150992, -85.1371639116521 9.994027093126704, -85.0063909115303 9.937218093073795, -84.93223591146123 9.892218093031886, -84.89722691142863 9.807500092952978, -84.95112691147884 9.73055409288132, -85.1422269116568 9.589445092749898, -85.22679091173556 9.727345092878338))) +CUB Cuba MULTIPOLYGON (((-78.64724590560789 21.534454103874566, -78.69945490565651 21.606527103941687, -78.74028190569453 21.63471810396794, -78.75813590571116 21.640273103973115, -78.85125490579789 21.620973103955137, -78.89778190584121 21.592500103928614, -78.96601790590476 21.596373103932223, -79.1730639060976 21.54666410388593, -79.23194590615243 21.541109103880757, -79.46250890636716 21.594445103930425, -79.66833590655885 21.693609104022784, -79.77779090666078 21.705554104033908, -79.89001790676531 21.746945104072452, -79.98779090685636 21.723609104050723, -80.04722690691172 21.788327104111005, -80.10109090696189 21.822682104143, -80.19944590705349 21.84860910416714, -80.2941729071417 21.90639110422096, -80.36695490720949 21.97055410428071, -80.42722690726562 22.039164104344607, -80.43306390727106 22.06194510436582, -80.41084590725036 22.06471810436841, -80.39299090723374 22.073891104376955, -80.39666390723715 22.1044451044054, -80.45403590729059 22.122227104421967, -80.45319990728981 22.163609104460505, -80.4919549073259 22.177218104473184, -80.53271790736387 22.176600104472612, -80.54000890737066 22.160827104457923, -80.55593590738549 22.062827104366647, -80.59112690741827 22.050554104355214, -80.75361790756959 22.060136104364148, -80.8118089076238 22.05763610436182, -80.8397359076498 22.04582710435082, -80.89110890769764 22.039718104345127, -81.00944590780786 22.056391104360657, -81.08876390788173 22.084164104386517, -81.11168190790308 22.100827104402043, -81.13417290792401 22.148054104446018, -81.19639990798197 22.10971810441032, -81.20556390799051 22.09471810439635, -81.34861790812373 22.084854104387162, -81.38736390815983 22.11777310441782, -81.38285490815562 22.148818104446732, -81.39029090816254 22.165554104462316, -81.40639990817755 22.178336104474226, -81.64931790840379 22.208609104502415, -81.66028190841399 22.194718104489482, -81.76181790850856 22.171664104468007, -81.8230639085656 22.18360910447913, -82.00695490873686 22.30333610459064, -82.099454908823 22.343054104627626, -82.1377909088587 22.366945104649872, -82.16265490888186 22.395273104676264, -82.15918190887864 22.40860910468868, -82.14472690886517 22.423054104702132, -82.12139090884344 22.43221810471067, -81.97987290871164 22.426936104705746, -81.79500890853947 22.436382104714554, -81.70097290845189 22.45485410473175, -81.6488999084034 22.491391104765782, -81.64403590839886 22.573327104842093, -81.78722690853222 22.655836104918933, -81.88500890862329 22.68082710494221, -81.96111790869416 22.675827104937554, -82.40055490910343 22.68610910494712, -82.6247269093122 22.682782104944025, -82.71806390939913 22.69874510495889, -82.76056390943872 22.700836104960842, -82.77749990945449 22.69582710495618, -82.7884819094647 22.685273104946347, -82.78779090946406 22.660827104923584, -82.79868190947421 22.619654104885228, -82.85972690953106 22.595554104862785, -83.02667290968654 22.512218104785177, -83.07514590973169 22.478054104753355, -83.1050089097595 22.436800104714933, -83.1083359097626 22.41694510469644, -83.13626390978861 22.36319110464639, -83.168890909819 22.33139110461677, -83.19014590983879 22.327354104613008, -83.25430890989855 22.348054104632283, -83.3680639100045 22.201664104495947, -83.47945491010823 22.174445104470593, -83.58944591021067 22.213054104506554, -83.66723591028311 22.17500010447111, -83.81360891041943 22.168609104465162, -83.90819991050753 22.17069110446711, -83.92903591052693 22.16250010445947, -83.96737291056264 22.12819110442753, -84.00667291059924 22.053954104358382, -83.9941729105876 22.027773104334003, -83.9908459105845 21.94721810425898, -84.02876391061982 21.91402710422807, -84.04126391063146 21.914164104228192, -84.0816819106691 21.935273104247855, -84.10750891069316 21.939718104251995, -84.1252819107097 21.939027104251352, -84.22944591080672 21.909164104223535, -84.30611791087813 21.876664104193267, -84.43237291099571 21.784027104106997, -84.45194591101394 21.775273104098844, -84.50110891105972 21.765554104089787, -84.51583591107344 21.76582710409005, -84.52812691108488 21.775273104098844, -84.49417291105325 21.843327104162228, -84.47528191103567 21.860554104178263, -84.46959091103037 21.892773104208274, -84.47556391103593 21.91471810422871, -84.48639991104602 21.928891104241913, -84.49848191105727 21.934718104247338, -84.56418191111847 21.93389110424657, -84.64889991119736 21.916109104230003, -84.70029091124522 21.89500010421034, -84.73668191127912 21.87360910419042, -84.7650179113055 21.84471810416352, -84.81556391135258 21.815827104136616, -84.92750891145684 21.836109104155497, -84.94528191147339 21.846945104165584, -84.9529269114805 21.86319110418073, -84.93806391146667 21.904582104219273, -84.92438191145392 21.91464510422864, -84.90583591143665 21.890273104205946, -84.89430891142592 21.883891104200003, -84.81807291135492 21.90750010422198, -84.51417291107188 22.0452731043503, -84.37188191093936 22.04145410434674, -84.33805491090787 22.012218104319516, -84.32084591089183 22.07916410438186, -84.41111791097592 22.155282104452752, -84.43999991100281 22.203609104497758, -84.39083591095702 22.351391104635397, -84.29945491087192 22.459164104735763, -84.20056391077982 22.553054104823204, -84.06993591065816 22.661527104924232, -83.84333591044712 22.752218105008694, -83.69250891030666 22.801936105054992, -83.44250891007383 22.90027310514658, -83.22917290987513 22.998882105238422, -83.0538909097119 23.01832710525653, -82.99999990966171 23.015227105253643, -83.00805490966921 22.979854105220696, -82.97263590963622 22.967364105209057, -82.94476390961026 22.978727105219647, -82.92764590959432 23.01708210525537, -82.91750890958488 23.02471810526248, -82.90028190956883 23.029445105266873, -82.72667290940714 23.0286091052661, -82.59000890927987 23.048609105284726, -82.54556390923848 23.06250010529766, -82.40715490910958 23.14270910537236, -82.33111790903875 23.166664105394673, -82.2205639089358 23.187500105414074, -82.17249990889104 23.1819451054089, -82.09585490881966 23.18446410541125, -82.02820890875665 23.19402710542016, -82.00500890873505 23.18819110541473, -81.98333590871486 23.17082710539856, -81.96389990869676 23.16430010539247, -81.84889090858965 23.15332710538226, -81.78361790852885 23.151391105380455, -81.70347290845422 23.159445105387945, -81.67747290843 23.152009105381026, -81.62695490838296 23.15860910538717, -81.58542690834427 23.156382105385106, -81.5533459083144 23.140554105370356, -81.53639090829861 23.123054105354058, -81.52792690829072 23.106245105338402, -81.53139990829396 23.079436105313434, -81.5008359082655 23.055554105291193, -81.38694590815943 23.11221810534397, -81.22696390801043 23.161664105390017, -81.27944590805932 23.131245105361685, -81.28557290806502 23.119718105350955, -81.17389990796102 23.031391105268696, -81.13139990792143 23.02332710526119, -81.1208459079116 23.027218105264808, -81.1033459078953 23.049164105285243, -80.98279090778303 23.076664105310854, -80.7441729075608 23.095000105327927, -80.63305490745732 23.098327105331038, -80.59605490742285 23.06721810530206, -80.58743590741483 23.045827105282143, -80.54195490737247 22.990000105230138, -80.40028190724053 22.938327105182026, -80.27862690712723 22.905282105151244, -80.24945490710006 22.903609105149684, -80.17000890702607 22.93027310517452, -80.0376459069028 22.951245105194047, -80.0083459068755 22.931664105175813, -79.98918190685767 22.882773105130283, -79.98194590685092 22.87582710512382, -79.85444590673218 22.80360910505655, -79.67668190656663 22.75889110501491, -79.60250890649755 22.644718104908577, -79.52444590642484 22.54555410481622, -79.50667290640828 22.530836104802518, -79.49139090639406 22.528609104800438, -79.4211089063286 22.476109104751544, -79.35139090626367 22.415836104695416, -79.25903590617766 22.372636104655186, -79.15959090608504 22.37221810465479, -79.06722690599902 22.38305410466488, -79.00334590593953 22.40277310468325, -78.93249990587356 22.391800104673024, -78.8886269058327 22.40416410468454, -78.79055490574136 22.395000104676, -78.57333590553905 22.321945104607963, -78.40999990538694 22.24360910453501, -78.34222690532381 22.18603610448139, -78.30972690529354 22.165554104462316, -78.11056390510807 22.088609104390656, -78.05555490505684 22.07889110438161, -77.90028190491222 21.888882104204654, -77.8641819048786 21.898891104213973, -77.74694590476942 21.799445104121347, -77.65959090468806 21.779791104103055, -77.45528190449778 21.775827104099363, -77.42945490447373 21.748609104074006, -77.42882690447314 21.736391104062633, -77.44986390449274 21.75034510407562, -77.45722690449959 21.74139110406729, -77.45499990449753 21.710282104038313, -77.43056390447477 21.65610910398786, -77.36029090440931 21.635554103968715, -77.34049090439088 21.63729110397034, -77.3347269043855 21.652773103984757, -77.33958190439003 21.665000103996135, -77.44625490448938 21.80069110412252, -77.51272690455129 21.816891104137596, -77.56807290460283 21.847218104165847, -77.61069090464252 21.88582710420181, -77.59930890463193 21.908609104223018, -77.57236390460683 21.9245821042379, -77.56098190459622 21.926109104239316, -77.54306390457954 21.91860910423233, -77.52139090455935 21.90360910421836, -77.51194590455056 21.87221810418913, -77.4988999045384 21.850273104168693, -77.4652909045071 21.826109104146184, -77.2291729042872 21.686664104016316, -77.17167290423365 21.656391103988128, -77.14001790420417 21.652773103984757, -77.13709990420145 21.607482103942573, -77.14039990420453 21.596273103932134, -77.1579819042209 21.57719110391436, -77.16680890422913 21.58202710391886, -77.18194590424322 21.576945103914127, -77.26445490432006 21.61250010394724, -77.34639090439637 21.621109103955263, -77.36430890441306 21.614100103948743, -77.26583590432135 21.480827103824623, -77.25625490431243 21.472500103816856, -77.20896390426839 21.455409103800946, -77.1534819042167 21.486036103829463, -77.13195490419666 21.520000103861094, -77.12411790418936 21.54474510388414, -77.10195490416872 21.575327103912628, -77.06195490413147 21.58500010392163, -76.98861790406316 21.508891103850758, -76.94607290402355 21.45220910379797, -76.88389990396564 21.419718103767707, -76.88459090396628 21.3548641037073, -76.90223590398271 21.340554103693975, -76.89860890397934 21.309309103664873, -76.87583590395813 21.301945103658014, -76.83567290392072 21.33689110369056, -76.79882690388641 21.383609103734074, -76.66125490375829 21.353891103706403, -76.57458190367757 21.28274510364014, -76.57478190367776 21.264664103623304, -76.58240890368485 21.252827103612276, -76.59344590369514 21.250664103610262, -76.58806390369013 21.229164103590236, -76.6116729037121 21.225273103586616, -76.6030639037041 21.206109103568764, -76.53848190364394 21.182773103547035, -76.4573639035684 21.220000103581697, -76.48695490359596 21.229718103590756, -76.51441790362153 21.251345103610902, -76.50747290361507 21.26889110362724, -76.49057290359933 21.283054103640424, -76.36445490348187 21.274436103632397, -76.2633359033877 21.216245103578203, -76.21529090334295 21.2072181035698, -76.17000890330078 21.186109103550137, -76.13195490326534 21.159164103525043, -76.09167290322782 21.11138210348055, -76.02166390316262 21.084164103455194, -75.8866729030369 21.105000103474595, -75.81403590296925 21.132636103500346, -75.70722690286978 21.121945103490376, -75.61680890278558 21.070409103442387, -75.57972690275103 21.006945103383273, -75.63389990280149 20.84583610323324, -75.76722690292566 20.826382103215124, -75.7801549029377 20.746109103140356, -75.76749990292592 20.71694510311319, -75.73668190289722 20.696945103094563, -75.71750890287936 20.690136103088236, -75.55139090272465 20.683609103082148, -75.44653590262699 20.695064103092818, -75.44569990262622 20.71069110310738, -75.47181790265054 20.716391103112684, -75.47222690265092 20.72708210312264, -75.46376390264304 20.73277310312794, -75.43529090261652 20.73416410312923, -75.23611790243102 20.723054103118884, -74.98499990219716 20.693336103091212, -74.95556390216974 20.685273103083702, -74.74667290197519 20.59305410299781, -74.72018190195053 20.553845102961304, -74.67556390190897 20.536109102944778, -74.60196390184042 20.483609102895883, -74.58250890182231 20.464164102877774, -74.58174590182159 20.449645102864253, -74.56945490181015 20.423609102840004, -74.4987549017443 20.35041810277184, -74.38417290163758 20.29027310271583, -74.30028190155946 20.294445102719706, -74.26722690152867 20.312773102736784, -74.22736390149154 20.314927102738793, -74.14222690141226 20.251527102679745, -74.1319549014027 20.22110910265141, -74.13250890140321 20.1936091026258, -74.14750890141718 20.172500102606136, -74.24111790150435 20.08055410252051, -74.2843179015446 20.056527102498137, -74.29944590155868 20.060482102501823, -74.31917290157705 20.078191102518318, -74.36557290162027 20.078609102518698, -74.6033459018417 20.052500102494378, -74.76221790198967 20.04805410249024, -74.81695490204065 20.034445102477562, -74.96084590217465 19.95639110240488, -74.97278190218577 19.932218102382365, -74.98459090219677 19.920691102371634, -75.01529090222536 19.903891102355985, -75.08528190229055 19.893036102345874, -75.08723590229236 19.965554102413407, -75.13973590234126 19.96287310241091, -75.10139090230555 19.9858361024323, -75.07820890228396 20.013336102457913, -75.09279090229754 20.05639110249801, -75.17417290237333 20.006664102451694, -75.17848190237734 19.996527102442258, -75.15727290235759 19.964164102412113, -75.19320890239106 19.96097310240914, -75.2269639024225 19.924445102375117, -75.22372690241949 19.9015541023538, -75.30528190249544 19.880836102334513, -75.35556390254227 19.875554102329588, -75.52250890269775 19.877082102331016, -75.5927909027632 19.88944510234252, -75.6599999028258 19.91805410236917, -75.72049090288213 19.953882102402545, -75.90833590305708 19.967500102415215, -75.94473590309097 19.958327102406685, -76.13473590326792 19.98471810243126, -76.24889990337425 19.99083610243696, -76.42195490353542 19.96721810241496, -76.496672903605 19.944718102394006, -76.57029090367357 19.938327102388058, -76.6258359037253 19.944718102394006, -76.7966729038844 19.929164102379517, -77.00819990408141 19.876809102330753, -77.0338639041053 19.890773102343758, -77.07500890414363 19.88110910233476, -77.12668190419176 19.886945102340192, -77.19862690425876 19.908336102360124, -77.29333590434696 19.905282102357276, -77.33334590438422 19.888609102341746, -77.3388999043894 19.880273102333987, -77.31347290436571 19.876036102330033, -77.35291790440245 19.85680010231212, -77.6811179047081 19.821945102279656, -77.72583590474976 19.836382102293115, -77.7383459047614 19.85221810230786, -77.74237290476516 19.870973102325323, -77.71000890473502 19.91555410236684, -77.59667290462946 20.046664102488947, -77.37918190442691 20.211391102642366, -77.27889990433351 20.245282102673926, -77.170972904233 20.3005541027254, -77.11459090418049 20.36736410278762, -77.07847290414685 20.467218102880622, -77.1969549042572 20.634027103035976, -77.23639090429393 20.663054103063004, -77.32362690437517 20.713891103110356, -77.37000890441837 20.71694510311319, -77.46139990450348 20.685273103083702, -77.53000890456738 20.682218103080857, -77.77209090479283 20.696945103094563, -77.85792690487277 20.72944510312483, -77.90055490491248 20.727773103123283, -77.91833590492904 20.702218103099483, -77.93167290494145 20.69256410309049, -78.04806390504986 20.698891103096386, -78.07223590507236 20.713891103110356, -78.16361790515747 20.79277310318382, -78.27334590525966 20.90360910328704, -78.33639990531839 20.948891103329217, -78.49514590546623 21.031800103406425, -78.50861790547877 21.167218103532548, -78.56584590553207 21.390273103740284, -78.60305490556674 21.484164103827723, -78.62250890558485 21.513609103855146, -78.64724590560789 21.534454103874566)), ((-82.89722690956599 21.43278210377987, -82.95668190962137 21.448054103794092, -83.07299090972968 21.46270910380774, -83.14950890980094 21.52847310386899, -83.19139990983996 21.623400103957394, -83.11431790976818 21.576527103913747, -83.10959090976377 21.56353610390164, -83.08416390974008 21.548054103887225, -83.06139990971889 21.54138210388102, -83.02139090968163 21.54250010388205, -82.95529090962006 21.56221810390042, -82.93507290960123 21.586600103923132, -82.93918190960507 21.6000001039356, -83.0136269096744 21.677218104007522, -83.08944590974501 21.785554104108414, -83.0875089097432 21.80832710412963, -83.07223590972897 21.841945104160928, -82.97445490963791 21.94277310425484, -82.82376390949757 21.927082104240228, -82.71583590939706 21.890273104205946, -82.69971790938204 21.83360910415317, -82.66639990935101 21.800827104122646, -82.61472690930289 21.76832710409238, -82.59807290928738 21.74888210407427, -82.54306390923615 21.58971810392603, -82.54459090923757 21.573891103911293, -82.59861790928788 21.53805410387791, -82.70029090938257 21.488609103831863, -82.86584590953676 21.437773103784522, -82.89722690956599 21.43278210377987)), ((-77.70556390473088 21.908609104223018, -77.76472690478597 21.956664104267773, -77.80056390481936 21.965827104276315, -77.88583590489877 22.00332710431124, -77.94195490495103 22.054718104359097, -77.94723590495595 22.098327104399715, -77.93722690494663 22.102773104403852, -77.91505490492598 22.094700104396324, -77.87870890489214 22.071791104374995, -77.85834590487316 22.075427104378377, -77.85216390486741 22.08888210439092, -77.79945490481832 22.10160910440277, -77.73256390475602 22.076518104379403, -77.65257290468152 22.06860910437203, -77.63473590466491 22.05221810435677, -77.62126390465237 22.028191104334397, -77.63833590466827 21.95305410426441, -77.67306390470061 21.94639110425821, -77.70556390473088 21.908609104223018)), ((-78.42529090540117 22.4125001046923, -78.39570890537362 22.44402710472167, -78.39743590537523 22.45763610473435, -78.41917290539547 22.46389110474017, -78.4647359054379 22.45832710473499, -78.48917290546066 22.44541810472296, -78.53695490550517 22.448054104725415, -78.69236390564991 22.501809104775475, -78.69639990565366 22.511664104784657, -78.69348190565094 22.533191104804715, -78.675281905634 22.556800104826692, -78.60042690556428 22.544864104815574, -78.58334590554837 22.529718104801475, -78.55139090551862 22.52360910479578, -78.45945490543299 22.5275001047994, -78.42570890540156 22.554864104824887, -78.39083590536909 22.55805410482786, -78.34139990532304 22.533882104805357, -78.27771790526374 22.4427731047205, -78.29597290528073 22.435554104713773, -78.40805490538513 22.42763610470641, -78.42529090540117 22.4125001046923)), ((-77.8647269048791 22.095554104397124, -77.89528190490756 22.097500104398932, -77.96139990496914 22.125827104425326, -77.99860890500379 22.146109104444207, -78.0440269050461 22.188327104483534, -77.99750890500277 22.285273104573818, -77.86126390487588 22.219164104512245, -77.82923590484606 22.151527104449258, -77.84445490486023 22.108054104408765, -77.8647269048791 22.095554104397124)), ((-78.01945490502321 22.261945104552083, -78.05723590505839 22.267218104557003, -78.15959090515372 22.302773104590116, -78.19063590518263 22.321591104607634, -78.17445490516756 22.33750010462245, -78.19195490518386 22.36500010464806, -78.26445490525138 22.408054104688162, -78.29180890527687 22.39750010467833, -78.3088179052927 22.41013610469011, -78.27473590526095 22.424445104703423, -78.20528190519627 22.437082104715202, -78.16250890515644 22.43277310471119, -78.11861790511556 22.413891104693604, -78.09222690509098 22.390000104671344, -78.02250890502606 22.276664104565796, -78.01945490502321 22.261945104552083)), ((-79.3297269062435 22.614164104880118, -79.51779090641864 22.71416410497325, -79.63076390652385 22.782709105037085, -79.63250890652549 22.800000105053186, -79.60223590649728 22.81277310506509, -79.58035490647691 22.811318105063734, -79.54306390644219 22.77860910503327, -79.52166390642225 22.750273105006883, -79.49306390639562 22.7313911049893, -79.37513590628579 22.674718104936517, -79.32417290623832 22.617218104882966, -79.3297269062435 22.614164104880118))) +SLV El Salvador MULTIPOLYGON (((-87.69467291403396 13.819009096688987, -87.72500891406222 13.733327096609202, -87.77694591411058 13.57242709645935, -87.78339091411658 13.524164096414395, -87.75486391409002 13.514636096405525, -87.71531791405319 13.504754096396326, -87.71109091404925 13.481654096374811, -87.71334591405135 13.471109096364984, -87.75029091408575 13.443054096338855, -87.81558191414656 13.405382096303768, -87.83695491416647 13.436318096332585, -87.87014591419738 13.382709096282653, -87.86557291419312 13.36028209626177, -87.84611791417501 13.341109096243912, -87.82389991415431 13.33208209623551, -87.78576391411879 13.294927096200908, -87.79799091413018 13.262082096170317, -87.83139091416129 13.236109096146123, -87.93779091426038 13.156391096071886, -87.98499991430435 13.163327096078348, -88.04139991435687 13.165554096080413, -88.09187291440388 13.166727096081502, -88.10876391441961 13.166800096081573, -88.12610891443576 13.16389109607887, -88.19639991450123 13.15944509607472, -88.21999991452321 13.158054096073428, -88.41109091470118 13.187609096100957, -88.475335914761 13.238527096148374, -88.55042691483094 13.27395409618137, -88.61209091488837 13.284027096190755, -88.70816391497785 13.260936096169246, -88.64188191491611 13.249373096158479, -88.62167291489729 13.259718096168115, -88.5852819148634 13.263336096171486, -88.50587291478945 13.19568209610847, -88.53506391481663 13.19910909611167, -88.61528191489134 13.21110909612284, -88.66555491493817 13.221109096132153, -88.70668191497647 13.228609096139138, -88.7588999150251 13.235554096145606, -88.81379991507623 13.251554096160504, -88.83226391509342 13.258364096166858, -88.86168191512083 13.282500096189324, -88.88167291513943 13.293891096199943, -88.98389991523464 13.34139109624418, -89.11418191535599 13.401109096299791, -89.13721791537743 13.410064096308133, -89.15223591539142 13.418891096316358, -89.1852909154222 13.437773096333942, -89.21999991545454 13.45527309635024, -89.29715491552639 13.482709096375785, -89.38084591560433 13.492500096384902, -89.46667291568427 13.499718096391632, -89.60867291581651 13.515064096405922, -89.65084591585578 13.528054096418018, -89.68430891588696 13.530973096420738, -89.75889991595642 13.530836096420614, -89.81854591601197 13.535800096425234, -89.82889991602161 13.576109096462773, -89.84632691603784 13.605827096490458, -89.87556391606508 13.628191096511273, -89.91667291610337 13.650554096532105, -89.95445491613854 13.663982096544615, -89.99999991618097 13.697982096576283, -90.09639091627074 13.745836096620849, -90.10806391628161 13.789027096661073, -90.10389991627773 13.82332709669302, -90.08653591626155 13.868473096735059, -90.02056391620012 13.938609096800377, -89.88902691607761 14.044164096898683, -89.8544459160454 14.05944509691291, -89.81819991601165 14.066454096919443, -89.73972691593856 14.041391096896106, -89.74667291594504 14.06958209692236, -89.72681791592655 14.117918096967372, -89.71014591591101 14.14500009699259, -89.6863999158889 14.170000097015873, -89.65209091585695 14.195554097039675, -89.62695491583354 14.209309097052483, -89.60514591581322 14.20819109705144, -89.5794549157893 14.207500097050797, -89.51816391573222 14.233854097075351, -89.54333591575566 14.304164097140827, -89.5654909157763 14.316454097152274, -89.58917291579836 14.321245097156734, -89.58334591579292 14.38582709721689, -89.5709729157814 14.414718097243792, -89.54848191576045 14.420836097249492, -89.49500891571066 14.421391097250009, -89.4355639156553 14.414864097243921, -89.34830891557402 14.431982097259862, -89.332163915559 14.41048209723985, -89.31556391554354 14.404091097233888, -89.29779091552697 14.401109097231114, -89.21334591544833 14.375827097207576, -89.17445491541211 14.354718097187913, -89.11972691536114 14.32437309715965, -89.03722691528431 14.334718097169286, -89.02473591527267 14.327636097162696, -88.97778191522895 14.253891097094012, -88.96055491521291 14.22194509706425, -88.95947291521189 14.216982097059628, -88.9560459152087 14.193891097038133, -88.92020891517532 14.20597309704938, -88.89778191515444 14.203609097047178, -88.87514591513336 14.18763609703231, -88.86029091511952 14.17110909701691, -88.83944591510011 14.138473096986516, -88.83111791509236 14.114164096963876, -88.82757291508905 14.10013609695082, -88.80632691506926 14.096182096947132, -88.7724359150377 14.13347309698186, -88.75223591501889 14.134445096982759, -88.73417291500206 14.11555409696517, -88.71930891498823 14.09236409694357, -88.70569991497555 14.044164096898683, -88.66148191493437 14.014082096870666, -88.62998191490503 14.014827096871358, -88.50667291479019 13.982364096841124, -88.49500891477933 13.970273096829871, -88.49945491478347 13.915836096779174, -88.48889091477363 13.865836096732608, -88.4679269147541 13.854718096722252, -88.43167291472034 13.870136096736616, -88.40334591469396 13.884027096749548, -88.37597291466847 13.882500096748117, -88.35223591464636 13.86777309673441, -88.34522691463984 13.874864096741007, -88.3193089146157 13.888745096753937, -88.2596089145601 13.90528209676934, -88.23499991453718 13.940273096801931, -88.19688191450167 13.98761809684602, -88.16166391446887 13.976945096836076, -88.12194591443189 13.990554096848754, -88.06000891437421 13.963891096823929, -88.04043591435598 13.931173096793458, -88.00586391432378 13.875045096741175, -87.95333591427486 13.896109096760796, -87.94056391426297 13.895000096759759, -87.90833591423295 13.895827096760542, -87.89750891422287 13.89909109676357, -87.80084591413284 13.89694509676157, -87.75029091408575 13.864164096731045, -87.72570891406286 13.8345820967035, -87.70764591404604 13.822500096692238, -87.69467291403396 13.819009096688987))) +HND Honduras MULTIPOLYGON (((-86.7642089131674 13.710691096588107, -86.75083591315494 13.56778209645502, -86.72705491313279 13.46547309635973, -86.7108459131177 13.434164096330576, -86.69611791310399 13.353891096255822, -86.69605491310392 13.298818096204528, -86.73577291314092 13.263609096171734, -86.74528191314977 13.260827096169152, -86.7756999131781 13.283745096190486, -86.81750891321704 13.298400096204134, -86.85999991325662 13.283336096190112, -86.90258191329627 13.248609096157764, -86.91806391331069 13.195000096107833, -86.91334591330629 13.163327096078348, -86.92472691331689 13.082773096003322, -86.95569991334574 13.036664095960376, -87.02278191340821 12.988191095915226, -87.0487549134324 12.985173095912415, -87.09306391347367 12.998609095924934, -87.30139091366769 12.986600095913758, -87.31556391368089 13.029445095953648, -87.34139991370495 13.08971809600979, -87.3605639137228 13.109164096027897, -87.44250891379912 13.195000096107833, -87.51180891386366 13.277291096184484, -87.50056391385318 13.298054096203813, -87.4443089138008 13.34992709625213, -87.38000891374091 13.373754096274311, -87.38056391374143 13.390209096289638, -87.39833591375798 13.41236409631027, -87.44930891380545 13.414582096312344, -87.47444591382886 13.387636096287238, -87.47139991382602 13.361109096262538, -87.5313999138819 13.346391096248837, -87.55682691390558 13.364164096265384, -87.60665491395199 13.3794270962796, -87.61402691395885 13.405745096304116, -87.6147269139595 13.440309096336307, -87.63762691398084 13.459082096353782, -87.65121791399349 13.420836096318169, -87.65999991400167 13.385391096285161, -87.68105491402127 13.362582096263907, -87.71055491404876 13.353609096255553, -87.73806391407437 13.355418096257239, -87.76417291409868 13.36916409627004, -87.81558191414656 13.405382096303768, -87.75029091408575 13.443054096338855, -87.71334591405135 13.471109096364984, -87.71109091404925 13.481654096374811, -87.71531791405319 13.504754096396326, -87.75486391409002 13.514636096405525, -87.78339091411658 13.524164096414395, -87.77694591411058 13.57242709645935, -87.72500891406222 13.733327096609202, -87.69467291403396 13.819009096688987, -87.70764591404604 13.822500096692238, -87.72570891406286 13.8345820967035, -87.75029091408575 13.864164096731045, -87.80084591413284 13.89694509676157, -87.89750891422287 13.89909109676357, -87.90833591423295 13.895827096760542, -87.94056391426297 13.895000096759759, -87.95333591427486 13.896109096760796, -88.00586391432378 13.875045096741175, -88.04043591435598 13.931173096793458, -88.06000891437421 13.963891096823929, -88.12194591443189 13.990554096848754, -88.16166391446887 13.976945096836076, -88.19688191450167 13.98761809684602, -88.23499991453718 13.940273096801931, -88.2596089145601 13.90528209676934, -88.3193089146157 13.888745096753937, -88.34522691463984 13.874864096741007, -88.35223591464636 13.86777309673441, -88.37597291466847 13.882500096748117, -88.40334591469396 13.884027096749548, -88.43167291472034 13.870136096736616, -88.4679269147541 13.854718096722252, -88.48889091477363 13.865836096732608, -88.49945491478347 13.915836096779174, -88.49500891477933 13.970273096829871, -88.50667291479019 13.982364096841124, -88.62998191490503 14.014827096871358, -88.66148191493437 14.014082096870666, -88.70569991497555 14.044164096898683, -88.71930891498823 14.09236409694357, -88.73417291500206 14.11555409696517, -88.75223591501889 14.134445096982759, -88.7724359150377 14.13347309698186, -88.80632691506926 14.096182096947132, -88.82757291508905 14.10013609695082, -88.83111791509236 14.114164096963876, -88.83944591510011 14.138473096986516, -88.86029091511952 14.17110909701691, -88.87514591513336 14.18763609703231, -88.89778191515444 14.203609097047178, -88.92020891517532 14.20597309704938, -88.9560459152087 14.193891097038133, -88.95947291521189 14.216982097059628, -88.96055491521291 14.22194509706425, -88.97778191522895 14.253891097094012, -89.02473591527267 14.327636097162696, -89.03722691528431 14.334718097169286, -89.11972691536114 14.32437309715965, -89.17445491541211 14.354718097187913, -89.21334591544833 14.375827097207576, -89.29779091552697 14.401109097231114, -89.31556391554354 14.404091097233888, -89.332163915559 14.41048209723985, -89.34830891557402 14.431982097259862, -89.35049091557606 14.4715270972967, -89.23583591546928 14.582427097399986, -89.19723591543332 14.585000097402371, -89.13779091537796 14.68471809749525, -89.13107291537172 14.715073097523515, -89.15487291539388 14.733536097540707, -89.22173591545615 14.844445097643998, -89.22306391545739 14.87194509766961, -89.20653591544199 14.89360909768979, -89.18599091542286 14.907609097702831, -89.17576391541333 14.924100097718195, -89.15487291539388 14.980827097771027, -89.17743591541489 14.998536097787508, -89.17083591540874 15.03000009781681, -89.1583359153971 15.056945097841904, -89.15037291538968 15.073482097857308, -89.14279091538262 15.07694509786053, -88.98056391523154 15.135554097915119, -88.83723591509805 15.247218098019118, -88.75811791502437 15.295518098064093, -88.66833591494076 15.350000098114833, -88.55250891483288 15.449718098207711, -88.48650891477142 15.504618098258845, -88.32779091462359 15.635273098380523, -88.31546391461211 15.667336098410388, -88.24000891454185 15.714164098453992, -88.2147359145183 15.724445098463562, -88.21143591451523 15.720627098460014, -88.19611791450097 15.705273098445716, -88.16959091447626 15.687773098429417, -88.13695491444587 15.68284509842482, -88.11042691442115 15.695836098436928, -88.03195491434808 15.786391098521264, -87.91639991424046 15.86471809859421, -87.86472691419233 15.887782098615688, -87.80500891413672 15.900073098627132, -87.74779091408342 15.897500098624732, -87.72723591406428 15.918054098643879, -87.70778191404617 15.921282098646884, -87.62861791397245 15.882773098611025, -87.59418191394037 15.862500098592136, -87.52542691387633 15.80291809853665, -87.47444591382886 15.784445098519441, -87.44500891380144 15.786391098521264, -87.38250891374324 15.82139109855386, -87.31333591367881 15.836109098567562, -87.28639091365372 15.827773098559803, -87.16334591353912 15.799445098533411, -86.96473591335415 15.758891098495653, -86.93889991333009 15.756391098493324, -86.89750891329155 15.755554098492539, -86.81848191321794 15.771391098507294, -86.79749991319841 15.784164098519184, -86.72778191313347 15.78832709852307, -86.48834591291048 15.801109098534965, -86.43500891286081 15.780000098515302, -86.41807291284503 15.771464098507352, -86.40347291283143 15.767573098503732, -86.35779091278889 15.769445098505471, -86.27153591270856 15.811245098544404, -86.2492359126878 15.827845098559862, -86.2291729126691 15.856664098586705, -86.18646391262934 15.880627098609025, -86.12459991257171 15.895418098622798, -86.1027819125514 15.896945098624215, -86.04444591249707 15.895000098622404, -86.02028191247456 15.895000098622404, -85.99139091244766 15.89833609862552, -85.95195491241093 15.917082098642979, -85.92430891238519 15.938609098663022, -85.91014591237199 15.955836098679072, -85.90687291236894 15.992082098712828, -85.93792691239786 16.001945098722004, -85.96861791242645 16.000973098721104, -86.01160891246649 16.02162709874034, -85.92389091238479 16.02000009873882, -85.84194591230847 16.010554098730026, -85.76430891223617 15.99666409871709, -85.65819991213735 15.95610909867932, -85.62903591211018 15.935973098660568, -85.59889991208212 15.921945098647498, -85.55819991204422 15.906391098633023, -85.4961179119864 15.88902709861685, -85.39987291189676 15.89069109861839, -85.2458359117533 15.898891098626038, -85.1772269116894 15.908891098635351, -85.10972691162654 15.926182098651452, -85.08805491160636 15.945273098669233, -85.07223591159162 15.96055409868346, -85.05056391157144 15.974445098696393, -85.02694591154945 15.984864098706097, -84.99696391152152 15.991282098712077, -84.92056391145037 15.977500098699238, -84.67764591122413 15.876954098605609, -84.62737291117732 15.829027098560971, -84.62126391117162 15.800554098534448, -84.59917291115104 15.775554098511165, -84.51112691106906 15.78250009851763, -84.44111791100386 15.825827098557994, -84.5255549110825 15.846109098576875, -84.47973591103981 15.850000098580495, -84.2601459108353 15.825973098558123, -84.11528191070039 15.702500098443124, -84.03778191062821 15.63110909837664, -83.85556391045851 15.460000098217279, -83.91057291050974 15.47777309823384, -83.94279091053974 15.510691098264488, -84.01084591060312 15.53569109828777, -84.16195491074386 15.550282098301366, -84.20951791078815 15.54565409829705, -84.2000089107793 15.518609098271867, -84.10083591068694 15.37402709813722, -84.07445491066237 15.34916409811406, -83.91132691051044 15.239509098011936, -83.83007291043477 15.270973098041239, -83.89348191049382 15.31971809808664, -83.95305491054931 15.343191098108491, -83.98312691057731 15.347291098112322, -84.00570891059834 15.364718098128549, -84.02770891061883 15.40090009816224, -83.99861791059175 15.41458209817499, -83.9638999105594 15.407636098168524, -83.92333591052163 15.387918098150152, -83.81930891042475 15.321809098088579, -83.77111791037987 15.280209098049838, -83.75834591036796 15.196664097972032, -83.74473591035529 15.200554097975655, -83.62872691024725 15.267891098038376, -83.57922691020116 15.260891098031848, -83.53139991015661 15.268891098039305, -83.51987291014588 15.247773098019636, -83.5280639101535 15.217218097991179, -83.54688191017102 15.198400097973646, -83.56313591018616 15.22118209799487, -83.58972691021093 15.2327090980056, -83.62347291024236 15.189236097965122, -83.61626391023565 15.170000097947195, -83.57041791019294 15.158127097936145, -83.49694591012452 15.203054097977983, -83.49639991012401 15.232218098005148, -83.5072269101341 15.28055409805016, -83.53275491015788 15.296554098065059, -83.56628191018909 15.308282098075992, -83.61668191023604 15.347245098112268, -83.50559991013259 15.30100009806921, -83.43750891006917 15.275973098045895, -83.39348191002816 15.256391098027663, -83.35653590999375 15.224718097998164, -83.3330639099719 15.173054097950043, -83.32556390996491 15.139164097918481, -83.3075089099481 15.095827097878129, -83.28264590992494 15.06569109785005, -83.2668179099102 15.053473097838676, -83.23201790987778 15.032709097819335, -83.19029090983892 15.015836097803628, -83.13185490978451 14.992982097782345, -83.15889090980968 14.987218097776974, -83.22971790987565 14.981664097771798, -83.32417290996361 15.004718097793273, -83.35889990999596 15.01500009780284, -83.38417291001949 15.02221809780957, -83.48583591011418 15.006109097794564, -83.54639991017058 14.948327097740759, -83.56695491018972 14.91791809771243, -83.84237291044623 14.785554097589156, -83.86445491046679 14.777773097581914, -83.93806391053535 14.753891097559674, -83.97861791057312 14.755282097560965, -84.03528191062588 14.754445097560179, -84.19667291077619 14.716391097524749, -84.26028191083543 14.681945097492658, -84.48049091104052 14.618818097433874, -84.68860891123434 14.678336097489307, -84.7970179113353 14.813891097615553, -84.82639091136267 14.829027097629648, -84.91000891144054 14.806664097608817, -84.98436391150979 14.741309097547955, -84.99528191151995 14.726109097533794, -85.0300089115523 14.670000097481534, -85.01892691154198 14.598236097414699, -85.02745491154992 14.580900097398555, -85.06110891158126 14.553336097372892, -85.08035491159919 14.544509097364667, -85.14639091166069 14.489164097313122, -85.18055491169251 14.426664097254914, -85.17945491169148 14.38527309721637, -85.15966391167305 14.359654097192504, -85.15912691167254 14.33565409717015, -85.18028191169225 14.31471809715066, -85.21722691172666 14.296454097133648, -85.25418191176108 14.298336097135405, -85.27639991178177 14.29582709713307, -85.2983359118022 14.289445097127114, -85.32222691182444 14.276245097114824, -85.37819991187658 14.235554097076928, -85.40945491190568 14.171245097017035, -85.41653591191228 14.145691096993232, -85.4369549119313 14.122500096971635, -85.54396391203096 14.045718096900131, -85.55771791204377 14.043536096898094, -85.72889991220319 13.962573096822695, -85.74827291222124 13.885064096750511, -85.7247269121993 13.864509096731368, -85.72866391220298 13.833091096702105, -85.73639091221017 13.828609096697932, -85.79430891226411 13.83652709670531, -85.82889991229632 13.859445096726645, -85.96833591242618 13.958891096819272, -85.99612691245207 13.980273096839184, -86.02028191247456 14.005345096862527, -86.00860891246369 14.055173096908945, -86.070145912521 14.055973096909682, -86.11966391256712 14.03069109688613, -86.13236391257895 13.995209096853088, -86.32557291275889 13.76347309663727, -86.40111791282925 13.749164096623943, -86.4699999128934 13.764164096637913, -86.56639091298317 13.779164096651883, -86.71077291311764 13.77465409664768, -86.75859991316217 13.754009096628451, -86.7642089131674 13.710691096588107)), ((-86.62668191303932 16.270273098971913, -86.63389991304604 16.27347309897489, -86.63444591304655 16.293054098993125, -86.6219459130349 16.310554099009423, -86.60806391302198 16.328327099025984, -86.5963909130111 16.337773099034777, -86.58667291300205 16.342218099038917, -86.44598191287102 16.406109099098416, -86.40610891283389 16.42277309911394, -86.33722691276974 16.4358270991261, -86.30334591273818 16.431945099122473, -86.26333591270092 16.423336099114465, -86.27944591271593 16.41610909910773, -86.3152909127493 16.413054099104883, -86.37403591280402 16.399864099092596, -86.51612691293636 16.32306409902108, -86.57471791299092 16.310000099008903, -86.59875491301331 16.296945098996744, -86.62668191303932 16.270273098971913))) +NIC Nicaragua MULTIPOLYGON (((-83.13185490978451 14.992982097782345, -83.19667290984486 14.956664097748515, -83.3259819099653 14.91263609770752, -83.34945490998716 14.901109097696775, -83.36889991000527 14.882218097679186, -83.40167291003578 14.841664097641413, -83.41910891005203 14.809445097611402, -83.37389091000992 14.746945097553194, -83.34215490998037 14.730900097538253, -83.3250089099644 14.741809097548412, -83.27806390992068 14.646664097459805, -83.240845909886 14.55221809737185, -83.20736390985483 14.446109097273023, -83.1944549098428 14.387500097218435, -83.18778190983659 14.353191097186482, -83.18695490983582 14.323891097159205, -83.19236390984086 14.299582097136565, -83.21431790986131 14.251664097091933, -83.25778190990178 14.178609097023894, -83.34472690998275 14.053745096907605, -83.37639991001225 14.024445096880314, -83.39833591003269 14.007636096864672, -83.42611791005857 13.96763609682742, -83.44445491007563 13.921664096784596, -83.47278191010201 13.81833609668837, -83.47778191010667 13.796945096668438, -83.49389991012168 13.726664096602988, -83.51333591013979 13.635554096518135, -83.55111791017498 13.45055409634584, -83.55806391018145 13.397782096296694, -83.5630639101861 13.356245096258007, -83.56499991018791 13.276109096183376, -83.56389991018688 13.229309096139787, -83.56029091018351 13.18832709610163, -83.55723591018067 13.167218096081967, -83.5327909101579 13.043609095966843, -83.50195491012919 12.903473095836333, -83.50549991013249 12.858609095794549, -83.51639991014264 12.832218095769974, -83.52111791014704 12.812773095751865, -83.53946391016412 12.65305409560311, -83.53945491016411 12.601809095555382, -83.53291791015802 12.558473095515026, -83.52111791014704 12.526664095485401, -83.50445491013151 12.498054095458755, -83.4828459101114 12.465900095428808, -83.47848191010732 12.423891095389692, -83.49507291012277 12.390936095358995, -83.5711179101936 12.390000095358118, -83.60028191022076 12.411109095377782, -83.63270891025095 12.479582095441557, -83.6350089102531 12.510000095469877, -83.62413591024297 12.556691095513372, -83.57500891019723 12.56548209552156, -83.56180891018494 12.585136095539852, -83.53709091016191 12.770691095712664, -83.54069991016527 12.790973095731559, -83.55889091018221 12.8058270957454, -83.60291791022321 12.818191095756902, -83.64403591026151 12.797009095737181, -83.64570891026307 12.750209095693592, -83.62090891023998 12.739164095683307, -83.59418191021508 12.685418095633253, -83.59139991021249 12.624718095576725, -83.69625491031015 12.552782095509727, -83.735835910347 12.481109095442974, -83.70639091031958 12.328336095300699, -83.66972691028543 12.278327095254127, -83.66806391028389 12.23416409521299, -83.67695491029217 12.050554095041988, -83.72249991033459 12.068054095058287, -83.73918191035013 12.044718095036558, -83.74972691035994 12.01389109500785, -83.7645089103737 11.931873094931461, -83.80041791040715 11.895836094897902, -83.82809091043292 11.87582709487927, -83.80139091040806 11.832773094839169, -83.77583591038426 11.802636094811092, -83.74233591035306 11.807082094815243, -83.7461269103566 11.831945094838389, -83.72805491033976 11.861109094865554, -83.69799091031176 11.8421540948479, -83.67639091029164 11.765554094776562, -83.67083591028647 11.74332709475587, -83.65500891027173 11.662218094680327, -83.65344591027028 11.602809094625002, -83.67930891029437 11.600418094622768, -83.75868191036828 11.554445094579947, -83.84167291044557 11.420827094455518, -83.85779091046058 11.392500094429124, -83.86695491046912 11.363609094402221, -83.8716729104735 11.337218094377647, -83.87139991047326 11.314164094356173, -83.85583591045877 11.216109094264851, -83.84750891045101 11.174582094226182, -83.8119549104179 11.080554094138606, -83.78807291039566 11.03889109409981, -83.76112691037056 10.996391094060229, -83.74250891035322 10.973609094039006, -83.71722691032967 10.943054094010549, -83.65430891027108 10.929773093998179, -83.64579991026315 10.924845093993596, -83.66222691027845 10.888609093959843, -83.65472691027146 10.824445093900081, -83.66014591027651 10.801945093879127, -83.68417291029888 10.787082093865294, -83.75170891036178 10.770482093849836, -83.76084591037029 10.77136409385065, -83.77238191038104 10.770254093849616, -83.82751791043239 10.74610909382713, -83.87000891047197 10.722500093805138, -83.9206269105191 10.70969109379321, -83.9586179105545 10.734445093816262, -83.99736391059058 10.76652709384615, -84.0405549106308 10.77805409385688, -84.0802909106678 10.76694509384653, -84.11598191070104 10.763745093843553, -84.15805491074023 10.784109093862526, -84.19327291077303 10.783645093862091, -84.22504591080262 10.811909093888417, -84.2733459108476 10.898609093969156, -84.34306391091253 10.953891094020648, -84.67445491122116 11.078054094136277, -84.90279091143381 10.940836094008489, -85.0877819116061 11.010000094072893, -85.1336179116488 11.027218094088937, -85.16139091167466 11.039445094100316, -85.16471791167776 11.042427094103104, -85.17375491168617 11.044864094105364, -85.2215729117307 11.065254094124356, -85.26639991177245 11.084445094142225, -85.35959091185924 11.122218094177413, -85.42083591191628 11.126391094181301, -85.52694591201511 11.166109094218285, -85.56418191204979 11.209718094258903, -85.61354591209576 11.212845094261809, -85.69238191216918 11.076064094134423, -85.73465491220855 11.08798209414553, -85.78556391225597 11.113682094169462, -85.8002089122696 11.153536094206572, -85.82250891229037 11.190136094240657, -85.92097291238207 11.299864094342851, -86.04833591250069 11.40194509443792, -86.14110891258709 11.465827094497428, -86.17556391261918 11.518891094546845, -86.26529091270274 11.58082709460453, -86.38264591281204 11.670554094688086, -86.40000891282821 11.686391094702842, -86.49694591291849 11.759445094770868, -86.50463591292565 11.764309094775399, -86.5191819129392 11.800000094808638, -86.55029091296817 11.84527309485081, -86.63785491304972 11.967982094965095, -86.66084591307113 11.990836094986378, -86.67139991308096 12.000000094994903, -86.67639091308561 12.006664095001113, -86.70639091311355 12.053054095044317, -86.7241639131301 12.08666409507562, -86.75110891315519 12.14639109513125, -86.76653591316956 12.183054095165389, -86.77987291318199 12.206182095186932, -86.92110891331352 12.292500095267314, -86.96694591335621 12.319445095292409, -87.0208459134064 12.353054095323714, -87.08278191346409 12.39860909536614, -87.13972691351712 12.443891095408318, -87.1220819135007 12.457373095420877, -87.1419549135192 12.464164095427194, -87.19694591357042 12.500554095461084, -87.3568089137193 12.631527095583067, -87.44139091379807 12.73277309567736, -87.5972269139432 12.840827095777996, -87.64001791398306 12.870282095805422, -87.68982691402945 12.917709095849588, -87.6607729140024 12.984027095911358, -87.5858359139326 13.050554095973311, -87.55749991390621 13.051245095973954, -87.53110891388162 13.037773095961413, -87.51028191386223 13.021527095946283, -87.46770891382258 12.970900095899125, -87.46250891381774 12.9426360958728, -87.41806391377635 12.915836095847851, -87.39209091375216 12.90847309584099, -87.3719459137334 12.906109095838787, -87.29778191366432 12.922118095853705, -87.32694591369149 12.926945095858187, -87.31029091367597 12.976391095904248, -87.30139091366769 12.986600095913758, -87.09306391347367 12.998609095924934, -87.0487549134324 12.985173095912415, -87.02278191340821 12.988191095915226, -86.95569991334574 13.036664095960376, -86.92472691331689 13.082773096003322, -86.91334591330629 13.163327096078348, -86.91806391331069 13.195000096107833, -86.90258191329627 13.248609096157764, -86.85999991325662 13.283336096190112, -86.81750891321704 13.298400096204134, -86.7756999131781 13.283745096190486, -86.74528191314977 13.260827096169152, -86.73577291314092 13.263609096171734, -86.69605491310392 13.298818096204528, -86.69611791310399 13.353891096255822, -86.7108459131177 13.434164096330576, -86.72705491313279 13.46547309635973, -86.75083591315494 13.56778209645502, -86.7642089131674 13.710691096588107, -86.75859991316217 13.754009096628451, -86.71077291311764 13.77465409664768, -86.56639091298317 13.779164096651883, -86.4699999128934 13.764164096637913, -86.40111791282925 13.749164096623943, -86.32557291275889 13.76347309663727, -86.13236391257895 13.995209096853088, -86.11966391256712 14.03069109688613, -86.070145912521 14.055973096909682, -86.00860891246369 14.055173096908945, -86.02028191247456 14.005345096862527, -85.99612691245207 13.980273096839184, -85.96833591242618 13.958891096819272, -85.82889991229632 13.859445096726645, -85.79430891226411 13.83652709670531, -85.73639091221017 13.828609096697932, -85.72866391220298 13.833091096702105, -85.7247269121993 13.864509096731368, -85.74827291222124 13.885064096750511, -85.72889991220319 13.962573096822695, -85.55771791204377 14.043536096898094, -85.54396391203096 14.045718096900131, -85.4369549119313 14.122500096971635, -85.41653591191228 14.145691096993232, -85.40945491190568 14.171245097017035, -85.37819991187658 14.235554097076928, -85.32222691182444 14.276245097114824, -85.2983359118022 14.289445097127114, -85.27639991178177 14.29582709713307, -85.25418191176108 14.298336097135405, -85.21722691172666 14.296454097133648, -85.18028191169225 14.31471809715066, -85.15912691167254 14.33565409717015, -85.15966391167305 14.359654097192504, -85.17945491169148 14.38527309721637, -85.18055491169251 14.426664097254914, -85.14639091166069 14.489164097313122, -85.08035491159919 14.544509097364667, -85.06110891158126 14.553336097372892, -85.02745491154992 14.580900097398555, -85.01892691154198 14.598236097414699, -85.0300089115523 14.670000097481534, -84.99528191151995 14.726109097533794, -84.98436391150979 14.741309097547955, -84.91000891144054 14.806664097608817, -84.82639091136267 14.829027097629648, -84.7970179113353 14.813891097615553, -84.68860891123434 14.678336097489307, -84.48049091104052 14.618818097433874, -84.26028191083543 14.681945097492658, -84.19667291077619 14.716391097524749, -84.03528191062588 14.754445097560179, -83.97861791057312 14.755282097560965, -83.93806391053535 14.753891097559674, -83.86445491046679 14.777773097581914, -83.84237291044623 14.785554097589156, -83.56695491018972 14.91791809771243, -83.54639991017058 14.948327097740759, -83.48583591011418 15.006109097794564, -83.38417291001949 15.02221809780957, -83.35889990999596 15.01500009780284, -83.32417290996361 15.004718097793273, -83.22971790987565 14.981664097771798, -83.15889090980968 14.987218097776974, -83.13185490978451 14.992982097782345))) +PAN Panama MULTIPOLYGON (((-80.0264909068924 8.401536091643578, -80.07055490693345 8.383054091626363, -80.09945490696036 8.367500091611873, -80.13861790699683 8.339445091585745, -80.22570890707794 8.295273091544615, -80.33694590718154 8.287500091537368, -80.38209090722358 8.290800091540447, -80.42431790726292 8.264864091516287, -80.47126390730664 8.215554091470366, -80.47889990731375 8.196945091453031, -80.48209090731672 8.152082091411259, -80.47528190731038 8.090554091353951, -80.48139990731607 8.08319109134709, -80.44236390727973 8.022154091290247, -80.39791790723832 8.003336091272729, -80.38209990722359 7.998973091268667, -80.37806390721984 7.9988910912685895, -80.35173590719532 7.9920820912622474, -80.3258359071712 7.951109091224083, -80.31722690716317 7.915836091191238, -80.15861790701545 7.755554091041958, -80.06029090692388 7.64389109093797, -79.99042690685881 7.518891090821555, -80.00229990686988 7.468400090774523, -80.02473590689077 7.451664090758939, -80.09583590695699 7.430273090739021, -80.16222690701882 7.412218090722206, -80.21500890706798 7.4169450907266, -80.25157290710203 7.428818090737664, -80.28139990712981 7.430273090739021, -80.3083359071549 7.416391090726094, -80.36209090720496 7.3729180906856016, -80.37583590721776 7.309718090626745, -80.4368729072746 7.244582090566084, -80.59389990742085 7.236391090558456, -80.63415490745834 7.234927090557093, -80.64333590746689 7.229309090551851, -80.68333590750414 7.21639109053983, -80.7138999075326 7.209164090533093, -80.798063907611 7.206109090530248, -80.8511179076604 7.210282090534136, -80.88250890768964 7.220273090543444, -80.92903590773297 7.255000090575777, -80.91098190771615 7.3181910906346275, -80.88834590769507 7.33430909064964, -80.91250890771758 7.444164090751954, -80.94862690775122 7.557782090857771, -80.98250890778277 7.612982090909185, -81.01084590780916 7.637500090932008, -81.03722690783373 7.676664090968487, -81.05473590785003 7.747218091034199, -81.05750890785262 7.828891091110265, -81.05806390785314 7.873336091151657, -81.12834590791859 7.839718091120346, -81.15281790794138 7.850573091130457, -81.17738190796426 7.848609091128623, -81.18082690796747 7.820100091102077, -81.17167290795894 7.800836091084136, -81.19222690797808 7.691391090982208, -81.19216390797803 7.638400090932848, -81.21792690800201 7.6082640909047825, -81.27111790805155 7.629718090924769, -81.31222690808984 7.649445090943132, -81.35959090813395 7.665973090958531, -81.43028190819979 7.683054090974437, -81.49694590826188 7.698609090988924, -81.57223590833199 7.757218091043512, -81.58889990834751 7.796245091079854, -81.60000890835786 7.87055409114906, -81.60860890836587 7.940273091213996, -81.61667290837337 7.9727820912442695, -81.62178190837814 7.977527091248689, -81.63195490838761 7.970000091241673, -81.65111790840545 7.980273091251249, -81.68223590843444 8.018609091286947, -81.70668190845721 8.065273091330411, -81.67674590842933 8.06507309133022, -81.70111790845202 8.12055409138189, -81.73861790848694 8.162500091420952, -81.95251790868616 8.188609091445272, -82.09529090881912 8.214718091469592, -82.14222690886284 8.181109091438287, -82.19320890891032 8.19500009145122, -82.21590890893147 8.218745091473338, -82.21806390893347 8.272500091523398, -82.24694590896037 8.292773091542287, -82.28722690899788 8.313327091561433, -82.3449999090517 8.305000091553666, -82.37861790908299 8.290554091540216, -82.40444590910705 8.28500009153504, -82.4694549091676 8.274718091525472, -82.50313590919896 8.271664091522624, -82.5272359092214 8.280836091531171, -82.5561179092483 8.290000091539696, -82.61195490930031 8.306945091555477, -82.66653590935114 8.319164091566861, -82.7216819094025 8.317218091565053, -82.7794459094563 8.3027730915516, -82.80750890948244 8.293054091542544, -82.84284590951535 8.27374509152456, -82.87126390954181 8.224718091478906, -82.87514590954542 8.18582709144269, -82.86236390953353 8.098745091361579, -82.85000890952202 8.061391091326797, -82.86861790953934 8.021182091289347, -82.8988459095675 8.025673091293527, -82.89278190956185 8.03597309130312, -82.8868089095563 8.075273091339724, -82.88598190955551 8.10180909136443, -82.93334590959962 8.257500091509428, -82.95000890961515 8.270273091521332, -82.97209090963571 8.276391091527032, -83.00500890966637 8.291109091540733, -83.03029090968991 8.310554091558842, -83.01779090967827 8.340273091586525, -82.95251790961748 8.399445091641624, -82.92229090958934 8.416391091657417, -82.87646390954666 8.427500091667753, -82.82992690950331 8.47465409171167, -82.82556390949925 8.570000091800466, -82.83674590950966 8.636664091862556, -82.87958190954956 8.689445091911708, -82.89666390956546 8.710000091930851, -82.9156999095832 8.73965409195847, -82.91446390958204 8.762782091980014, -82.87945490954944 8.825836092038742, -82.8584819095299 8.84278209205452, -82.81333590948786 8.862500092072878, -82.75632690943476 8.88131809209041, -82.71986390940081 8.910827092117898, -82.71188190939337 8.925073092131157, -82.74361790942292 8.981036092183274, -82.88223590955202 9.067218092263545, -82.93046390959694 9.063127092259734, -82.93111790959755 9.199445092386682, -82.9347179096009 9.47166409264021, -82.86445490953547 9.585554092746278, -82.83771790951057 9.609718092768787, -82.81418190948865 9.60666409276594, -82.74855490942753 9.58298209274389, -82.71889990939991 9.54666409271006, -82.68249990936602 9.508745092674744, -82.63626390932295 9.488054092655474, -82.6100089092985 9.490418092657677, -82.56139990925323 9.535554092699712, -82.56357290925526 9.562873092725155, -82.55605490924825 9.562282092724601, -82.53418190922788 9.547918092711228, -82.36361790906902 9.407218092580194, -82.37000890907498 9.320836092499746, -82.38167290908584 9.285827092467144, -82.3247179090328 9.18832709237634, -82.27528190898676 9.103336092297184, -82.24278190895649 9.002364092203138, -82.10583590882895 8.941391092146361, -82.06029090878653 8.930827092136525, -81.98333590871486 8.944718092149458, -81.81639090855938 8.945273092149975, -81.78807290853301 9.003336092204052, -81.8599999086 9.062500092259143, -81.91389090865019 9.112500092305709, -81.90861790864527 9.168818092358165, -81.88632690862451 9.173609092362625, -81.86584590860544 9.164164092353829, -81.75139990849885 9.047218092244918, -81.708617908459 9.000554092201455, -81.66889990842202 8.955827092159808, -81.64333590839821 8.919445092125912, -81.61306390837002 8.88041809208957, -81.55931790831997 8.829164092041836, -81.50729090827151 8.793127092008277, -81.27361790805388 8.785273092000963, -81.22059990800452 8.784564092000295, -81.20403590798908 8.781109091997081, -81.15306390794161 8.787500092003029, -81.08973590788263 8.802500092016999, -80.96625490776763 8.835973092048178, -80.94459990774746 8.85389109206487, -80.8790359076864 8.878891092088153, -80.86944590767747 8.876664092086074, -80.86445490767282 8.874718092084265, -80.83709090764734 8.878400092087688, -80.80319990761578 8.905691092113102, -80.77917290759339 8.93694509214221, -80.75195490756805 8.97166409217455, -80.63639990746043 9.041664092239742, -80.60196390742836 9.058609092255523, -80.53584590736678 9.085836092280886, -80.40556390724545 9.133473092325247, -80.31556390716163 9.150273092340896, -80.25389090710419 9.159864092349821, -80.15472690701183 9.192782092380483, -80.11750890697718 9.206945092393667, -80.09265490695402 9.220136092405951, -80.0513909069156 9.258891092442056, -80.00445490687189 9.306664092486542, -79.98806390685662 9.32860909250698, -79.9676459068376 9.353054092529746, -79.94737290681873 9.358473092534794, -79.80611790668716 9.400273092573727, -79.74444590662974 9.435273092606323, -79.68723590657645 9.490418092657677, -79.67121790656154 9.54961809271282, -79.62583590651927 9.594164092754298, -79.5994549064947 9.602500092762057, -79.53445490643416 9.62013609277848, -79.46305490636767 9.56805409272998, -79.24779090616718 9.540000092703849, -79.1622269060875 9.540554092704369, -79.07585490600707 9.542218092705923, -79.04444590597781 9.546391092709811, -78.99500890593177 9.547782092711103, -78.95943590589863 9.543354092706977, -78.96211790590114 9.537600092701624, -78.99806390593461 9.521945092687034, -79.03459090596863 9.519864092685097, -79.0659089059978 9.493327092660394, -79.06722690599902 9.462218092631417, -79.05451790598718 9.429027092600506, -79.00639090594237 9.423336092595207, -78.70360890566037 9.431945092603215, -78.55209090551926 9.428336092599864, -78.49917290546998 9.404164092577346, -78.451954905426 9.381391092556143, -78.412226905389 9.358327092534665, -78.36667290534658 9.335282092513197, -78.23583590522473 9.286664092467916, -78.15223590514687 9.259718092442824, -78.03438190503711 9.228818092414045, -77.94417290495309 9.143054092334168, -77.88296390489609 9.096300092290633, -77.84889090486436 9.083609092278806, -77.80514590482362 9.047636092245298, -77.74722690476968 8.975973092178563, -77.74590890476846 8.941945092146867, -77.70264590472816 8.876664092086074, -77.63392690466416 8.837327092049435, -77.54278190457927 8.763609091980783, -77.53243590456964 8.706600091927697, -77.51083590454952 8.686109091908605, -77.48972690452986 8.674027091897358, -77.43444590447838 8.659027091883388, -77.37355490442167 8.665764091889656, -77.36667290441525 8.675000091898255, -77.37194590442017 8.646109091871352, -77.43860890448225 8.566664091797364, -77.45223590449494 8.556945091788307, -77.47577290451687 8.521109091754937, -77.46858190451017 8.471700091708925, -77.4290999044734 8.472500091709662, -77.40577290445168 8.451318091689942, -77.37500890442303 8.39860909164085, -77.36861790441706 8.364164091608771, -77.36805490441655 8.33721809158368, -77.36249990441138 8.28500009153504, -77.3488909043987 8.267773091519004, -77.29610890434954 8.21582709147063, -77.27360890432858 8.198609091454585, -77.24389990430092 8.145273091404917, -77.2154269042744 8.087918091351497, -77.19833590425849 7.999445091269095, -77.21556390427453 7.93721809121115, -77.2952089043487 7.904864091181011, -77.31139990436378 7.886945091164321, -77.36999990441836 7.778473091063304, -77.33008190438119 7.726173091014601, -77.33098190438201 7.701809090991901, -77.57743590461155 7.5261820908283426, -77.6001459046327 7.539236090840504, -77.61029090464214 7.562500090862159, -77.62417290465507 7.6033360909002, -77.66389090469207 7.679445090971072, -77.7440359047667 7.720000091008842, -77.75889990478055 7.69305409098375, -77.75944590478106 7.667218090959693, -77.7591729047808 7.63333609092814, -77.75459090477653 7.6122180909084705, -77.72938190475305 7.568891090868121, -77.72098190474523 7.536454090837907, -77.7322269047557 7.5059000908094475, -77.74861790477097 7.484309090789338, -77.7756999047962 7.475418090781062, -77.80749990482582 7.478682090784105, -77.88972690490239 7.228891090551471, -77.9081999049196 7.2331270905554135, -78.00861790501311 7.331109090646663, -78.16250890515644 7.508054090811456, -78.16778190516135 7.542218090843278, -78.16598190515967 7.568336090867604, -78.2347269052237 7.64610909094003, -78.28139990526716 7.707218090996946, -78.27465490526089 7.724309091012856, -78.3516729053326 7.873336091151657, -78.3695909053493 7.886391091163816, -78.38778190536624 7.904864091181011, -78.41194590538875 7.964164091236242, -78.43278190540815 8.048891091315156, -78.42590890540176 8.080273091344381, -78.40344590538083 8.098127091361008, -78.40090890537847 8.068473091333388, -78.3743089053537 8.060827091326274, -78.32056390530364 8.058745091324326, -78.29459090527945 8.070282091335073, -78.25723590524466 8.101945091364556, -78.23639090522525 8.148473091407894, -78.24167290523016 8.183745091440741, -78.27869090526464 8.215073091469918, -78.30139090528579 8.249718091502189, -78.2622179052493 8.269445091520552, -78.18291790517544 8.327364091574495, -78.14363590513886 8.401673091643701, -78.13499990513083 8.399273091641476, -78.04500890504701 8.31110909155936, -78.02849090503163 8.261373091513036, -77.99519090500061 8.232454091486105, -77.96430890497186 8.24012709149325, -77.88270890489585 8.228818091482722, -77.84083590485686 8.19555409145174, -77.8069459048253 8.15916409141785, -77.78528190480512 8.130282091390953, -77.77917290479942 8.155000091413967, -77.868899904883 8.235000091488473, -77.88917290490187 8.246109091498823, -77.9121729049233 8.252218091504517, -77.99319990499876 8.267082091518361, -78.01347290501764 8.272918091523792, -78.04529090504727 8.33860909158497, -78.10750890510522 8.455827091694147, -78.12056390511738 8.43916409167862, -78.23430890522332 8.380482091623975, -78.25381790524148 8.396945091639296, -78.35945490533986 8.394445091636968, -78.38479990536347 8.336600091583108, -78.39778190537555 8.345873091591741, -78.41306390538979 8.343609091589627, -78.4926459054639 8.45291809169143, -78.4879179054595 8.49569109173126, -78.50723590547749 8.616945091844187, -78.53834590550646 8.636945091862813, -78.56472690553103 8.652218091877046, -78.60688190557029 8.663327091887396, -78.65749990561744 8.700282091921807, -78.70972690566607 8.746664091965002, -78.74223590569635 8.791664092006911, -78.90729990585008 8.913264092120158, -79.02341790595823 8.963745092167173, -79.05307290598584 8.966664092169893, -79.06855490600026 9.0076820922081, -79.06767290599944 9.052891092250192, -79.0232729059581 9.110209092303577, -78.97909990591695 9.138536092329957, -79.00667290594262 9.135827092327446, -79.03973590597342 9.125827092318133, -79.10889990603783 9.085000092280097, -79.11923590604746 9.051982092249347, -79.11809990604641 9.030773092229595, -79.13351790606076 9.013527092213536, -79.2284819061492 9.005827092206374, -79.25848190617714 9.016109092215942, -79.28139990619849 9.018054092217753, -79.36584590627713 9.016109092215942, -79.3902909062999 9.013609092213613, -79.43389990634051 9.00805409220844, -79.47792690638151 8.997364092198481, -79.52264590642316 8.959718092163428, -79.52659990642685 8.919718092126175, -79.5776549064744 8.880000092089176, -79.63944590653195 8.873891092083497, -79.69778190658627 8.86666409207676, -79.73736390662314 8.833191092045581, -79.75930890664358 8.785973092001612, -79.74889090663387 8.733473091952717, -79.73834590662405 8.711036091931817, -79.78110890666387 8.60583609183385, -79.95279090682376 8.450836091689496, -80.01610890688274 8.407500091649126, -80.0264909068924 8.401536091643578)), ((-81.73890890848722 7.639164090933562, -81.72361790847297 7.616945090912864, -81.71028190846056 7.5555540908556935, -81.70445490845513 7.490282090794906, -81.71055490846082 7.4791640907845505, -81.71556390846548 7.446809090754414, -81.71361790846366 7.436664090744969, -81.67847290843093 7.388609090700214, -81.6494459084039 7.384164090696075, -81.62875490838464 7.3900000907015055, -81.60833590836562 7.377500090689864, -81.59807290835606 7.363609090676931, -81.59014590834867 7.329864090645501, -81.62930890838516 7.318336090634773, -81.65055490840494 7.321945090638124, -81.74778190849548 7.347782090662193, -81.76221790850893 7.358891090672543, -81.84611790858706 7.43319109074173, -81.8533459085938 7.4466640907542825, -81.87417290861319 7.491109090795675, -81.87695490861579 7.5041640908078335, -81.87389990861294 7.515000090817921, -81.75861790850557 7.6341640909289055, -81.73890890848722 7.639164090933562)), ((-78.8716729058169 8.456945091695175, -78.85306390579957 8.43736409167694, -78.83153590577952 8.401109091643178, -78.82972690577783 8.388336091631288, -78.83029090577836 8.336109091582642, -78.83472690578249 8.319718091567381, -78.84812690579497 8.290554091540216, -78.92222690586398 8.27055409152159, -78.96006390589922 8.293954091543384, -78.96279090590176 8.437636091677192, -78.95450890589404 8.450136091688833, -78.88361790582802 8.463891091701655, -78.8716729058169 8.456945091695175)), ((-82.32511790903317 9.407864092580795, -82.28239090899338 9.435318092606366, -82.25674590896949 9.427800092599355, -82.22826390894296 9.369018092544621, -82.23525490894949 9.3325000925106, -82.24975490896298 9.330691092508914, -82.25648190896925 9.352182092528935, -82.32511790903317 9.407864092580795))) +AIA Anguilla MULTIPOLYGON (((-63.16778189119151 18.16444510073599, -63.15694589118142 18.177636100748288, -63.14139989116694 18.194164100763672, -63.05201789108369 18.259582100824602, -63.02250889105622 18.268891100833272, -62.97270889100983 18.272982100837083, -62.986672891022835 18.23555410080222, -62.99305489102878 18.22721810079446, -63.021117891054914 18.214445100782555, -63.03083589106397 18.210282100778684, -63.074172891104325 18.19277310076238, -63.14000889116565 18.168327100739617, -63.15375489117845 18.16527310073677, -63.16778189119151 18.16444510073599))) +ATG Antigua & Barbuda MULTIPOLYGON (((-61.73806388985999 16.989718099641948, -61.82917288994483 16.99694509964867, -61.881526889993594 17.02208209967209, -61.887217889998894 17.033054099682303, -61.89110889000251 17.094164099739217, -61.88569988999748 17.107500099751633, -61.82958188994522 17.165554099805703, -61.794445889912495 17.163327099803638, -61.78417288990292 17.158336099798987, -61.744172889865666 17.137218099779318, -61.6705548897971 17.088473099733918, -61.66694588979375 17.04319109969174, -61.684581889810175 17.02597309967571, -61.73806388985999 16.989718099641948)), ((-61.738890889860755 17.54055410015495, -61.751945889872914 17.549445100163226, -61.815563889932164 17.58388210019531, -61.84110888995595 17.584718100196085, -61.85305488996707 17.58305410019453, -61.85667288997044 17.592500100203324, -61.87459088998713 17.69374510029762, -61.873063889985715 17.703891100307075, -61.84354588995822 17.724300100326076, -61.78541788990408 17.69889110030242, -61.73993588986173 17.64791810025494, -61.731672889854025 17.625000100233592, -61.7291728898517 17.60860910021833, -61.73194588985429 17.544164100158312, -61.738890889860755 17.54055410015495))) +VGB British Virgin Is. MULTIPOLYGON (((-64.66084589258203 18.383891100940374, -64.66723589258798 18.383891100940374, -64.69848189261708 18.39687310095246, -64.66833589258901 18.428336100981767, -64.65250889257428 18.441109100993657, -64.64029089256289 18.445000100997277, -64.61168189253625 18.45250010100426, -64.57139989249873 18.457636101009058, -64.56028189248838 18.4536091010053, -64.55694589248527 18.44374510099611, -64.5651358924929 18.420973100974905, -64.5769548925039 18.413891100968314, -64.66084589258203 18.383891100940374)), ((-64.436399892373 18.431391100984612, -64.43819989237468 18.437773100990555, -64.43833589237481 18.45305410100478, -64.41389089235204 18.504854101053027, -64.3245268922688 18.503682101051936, -64.33056389227444 18.49416410104307, -64.42249989236007 18.43860910099133, -64.436399892373 18.431391100984612))) +MSR Montserrat MULTIPOLYGON (((-62.17139089026355 16.671391099345485, -62.18999989028089 16.672500099346507, -62.21056389030004 16.68527309935841, -62.22972689031788 16.70471809937652, -62.236945890324606 16.714718099385834, -62.23583589032357 16.730554099400578, -62.20459089029447 16.812354099476764, -62.17639089026821 16.808609099473273, -62.14722689024104 16.74916409941791, -62.138890890233284 16.690554099363325, -62.15347289024686 16.67666409935039, -62.16555489025811 16.671664099345733, -62.17139089026355 16.671391099345485))) +PRI Puerto Rico MULTIPOLYGON (((-65.8366728936771 18.055827100634843, -65.84029089368047 18.04444510062423, -65.856945893696 18.018609100600173, -65.88681789372382 17.987909100571585, -65.89805489373428 17.981945100566023, -65.92750889376171 17.97027310055516, -65.93722689377076 17.966664100551796, -66.20445489401963 17.922218100510406, -66.23779089405068 17.928054100515837, -66.29055489409983 17.943336100530075, -66.34778189415312 17.96750010055257, -66.375563894179 17.960827100546368, -66.45418189425222 17.98250010056654, -66.57361789436344 17.964445100549725, -66.58723589437612 17.961109100546622, -66.67110889445424 17.964718100549987, -66.68444589446666 17.966945100552053, -66.71473589449486 17.981391100565517, -66.78917289456419 17.970554100555418, -66.80750889458128 17.960282100545854, -66.82167289459446 17.953609100539637, -66.84194589461335 17.946945100533426, -66.92722689469277 17.928891100516623, -66.9397268947044 17.928054100515837, -66.95333589471709 17.93027310051791, -67.06750889482342 17.95971810054533, -67.09611789485005 17.950000100536272, -67.18472689493258 17.932500100519974, -67.20473589495121 17.953536100539566, -67.19417289494137 18.035000100615434, -67.17529089492379 18.106109100681664, -67.1563998949062 18.188327100758244, -67.15749989490723 18.214718100782818, -67.16905489491799 18.237609100804136, -67.17250889492121 18.24735410081321, -67.19306389494035 18.280064100843674, -67.21486389496064 18.286945100850076, -67.22709089497204 18.29013610085306, -67.24084589498484 18.30166410086379, -67.25029089499364 18.313054100874396, -67.2619458950045 18.341391100900793, -67.26639989500865 18.365418100923165, -67.17042689491926 18.48694510103634, -67.15444589490438 18.503054101051347, -67.14417289489481 18.510273101058075, -67.1399728948909 18.511627101059332, -67.10167289485523 18.518054101065317, -67.08334589483816 18.51944510106661, -67.06360889481978 18.51916410106635, -67.03973589479754 18.515827101063252, -67.02611789478486 18.513609101061178, -66.99667289475744 18.505000101053156, -66.76882689454524 18.487673101037032, -66.69555489447701 18.489436101038663, -66.55056389434198 18.4825001010322, -66.46667289426384 18.474164101024442, -66.3055548941138 18.467218101017977, -66.20834589402325 18.46416410101513, -66.19499989401083 18.46389110101488, -66.13639989395625 18.465554101016423, -66.10278189392494 18.416382100970637, -66.11549089393678 18.472009101022437, -66.03110889385819 18.44527310099754, -66.01417289384241 18.456391101007895, -66.00418189383312 18.460282101011515, -65.99086389382072 18.460091101011344, -65.90417289373997 18.454436101006067, -65.8905638937273 18.452218101004007, -65.80139089364425 18.430554100983827, -65.6430638934968 18.375273100932347, -65.6269548934818 18.36500010092277, -65.63000889348464 18.275273100839215, -65.6322178934867 18.26542710083004, -65.60278189345928 18.23458210080132, -65.61334589346912 18.22138210078903, -65.6927818935431 18.193609100763155, -65.82389989366521 18.06389110064235, -65.8366728936771 18.055827100634843)), ((-65.52500889338685 18.083054100660192, -65.5484818934087 18.085973100662912, -65.56556389342462 18.095000100671314, -65.57333589343186 18.101391100677276, -65.5789638934371 18.115418100690334, -65.50279089336615 18.144164100717106, -65.48695489335141 18.149164100721762, -65.43139989329967 18.164582100736126, -65.39584589326655 18.16444510073599, -65.30111789317833 18.147782100720477, -65.30528189318221 18.13250010070624, -65.33778189321248 18.11694510069175, -65.44139089330898 18.09027310066692, -65.52500889338685 18.083054100660192))) +KNA St. Kitts & Nevis MULTIPOLYGON (((-62.653890890712916 17.208882099846065, -62.662226890720675 17.23916409987426, -62.67416389073179 17.261109099894696, -62.69250889074888 17.27832709991074, -62.710699890765824 17.285973099917854, -62.72500889077915 17.28416409991617, -62.73806389079131 17.284718099916688, -62.75944589081122 17.28750009991927, -62.778335890828814 17.292218099923673, -62.79333589084278 17.300000099930912, -62.837226890883656 17.326109099955232, -62.862781890907456 17.368609099994814, -62.85639089090151 17.385827100010857, -62.84944589089504 17.39305410001758, -62.83861789088495 17.401945100025856, -62.81514589086309 17.410136100033498, -62.73236389078599 17.366664099993002, -62.7016638907574 17.336936099965314, -62.62250889068369 17.241945099876844, -62.62319989068433 17.224373099860486, -62.653890890712916 17.208882099846065))) +VIR Virgin Is. MULTIPOLYGON (((-64.89611789280114 17.676664100281712, -64.89139989279676 17.683954100288503, -64.88195489278796 17.710282100313023, -64.88000889278615 17.7238911003257, -64.88305489278899 17.733891100335015, -64.89125489279662 17.749582100349627, -64.88820889279378 17.760273100359584, -64.88111789278717 17.76736410036618, -64.86479989277198 17.77270910037116, -64.84125489275006 17.760973100360232, -64.82945489273907 17.76152710036075, -64.8142458927249 17.772354100370833, -64.7969548927088 17.788891100386238, -64.78695489269948 17.79250010038959, -64.771399892685 17.788473100385843, -64.76417289267826 17.778609100376656, -64.75598189267063 17.772354100370833, -64.73861789265446 17.773191100371605, -64.72973589264619 17.76444510036346, -64.72195489263895 17.758054100357512, -64.70916389262703 17.755000100354664, -64.69319989261217 17.74513610034549, -64.68556389260506 17.75194510035182, -64.67445489259471 17.758054100357512, -64.66042689258164 17.768473100367217, -64.63806389256082 17.76527310036424, -64.60999989253469 17.762218100361395, -64.59029089251632 17.76194510036113, -64.57348189250067 17.76013610035946, -64.56257289249051 17.751182100351116, -64.57806389250494 17.746391100346656, -64.59688189252246 17.74832710034846, -64.61487289253922 17.733191100334352, -64.62806389255151 17.725827100327507, -64.64418189256652 17.721664100323622, -64.66833589258901 17.710827100313537, -64.69195489261101 17.70832710031121, -64.7141728926317 17.704164100307324, -64.72639089264308 17.70527310030836, -64.7416728926573 17.7073641003103, -64.76041789267477 17.698745100302276, -64.77694589269016 17.699164100302667, -64.78861789270103 17.697773100301376, -64.80445489271578 17.693609100297493, -64.81556389272613 17.691664100295682, -64.82965489273926 17.68368210028825, -64.84306389275174 17.688891100293105, -64.85541789276324 17.68513610028961, -64.86528189277243 17.68944510029361, -64.87486389278135 17.686245100290634, -64.89611789280114 17.676664100281712)), ((-65.02350889291979 18.36637310092405, -64.98243589288154 18.378545100935398, -64.93832689284046 18.3876731009439, -64.8424818927512 18.338991100898554, -64.83487289274412 18.313136100874473, -64.90333589280787 18.319218100880136, -64.95657289285745 18.33290910089289, -65.02350889291979 18.36637310092405))) +FRO Faroe Is. MULTIPOLYGON (((-6.71778183861835 61.93332714149895, -6.725281838625335 61.93443614149999, -6.773054838669822 61.950000141514465, -6.869163838759334 61.9975001415587, -6.96110883884495 62.04666314160451, -7.034581838913397 62.11210914166546, -7.130308839002538 62.12560014167801, -7.234236839099339 62.17707314172594, -7.233199839098376 62.19569114174328, -7.21083683907753 62.284718141826204, -7.1938908390617655 62.30624514184626, -7.131526839003669 62.30305414184329, -7.087499838962685 62.2908361418319, -7.068190838944702 62.283473141825056, -7.059999838937074 62.27582714181793, -7.052217838929806 62.25750014180085, -7.043754838921927 62.24166314178612, -7.036663838915331 62.2336091417786, -6.990836838872639 62.193054141740845, -6.9738908388568746 62.18249114173099, -6.945836838830729 62.16805414171756, -6.9163908388033235 62.153882141704344, -6.841390838733474 62.124445141676944, -6.734999838634394 62.04360914160165, -6.72180883862211 62.03180014159065, -6.696254838598293 61.97735414153996, -6.704717838606172 61.93888214150411, -6.71778183861835 61.93332714149895)), ((-6.657499838562217 62.05582714161304, -6.669717838573575 62.05860914161562, -6.752781838650947 62.092773141647456, -6.921945838808483 62.16721814171677, -6.948054838832803 62.18249114173099, -6.96416383884781 62.193327141741094, -7.011108838891516 62.22639114177187, -7.027217838906523 62.241109141785586, -7.062499838939402 62.295827141836554, -7.060281838937328 62.31360914185311, -6.954163838838497 62.33860914187639, -6.93805483882349 62.33416314187227, -6.807217838701632 62.29027314183139, -6.734999838634394 62.25999114180317, -6.599445838508132 62.19554514174317, -6.588054838497527 62.134163141686, -6.654581838559494 62.09770014165204, -6.657499838562217 62.05582714161304)), ((-6.660281838564799 61.38832714099138, -6.668054838572033 61.38944514099242, -6.719163838619636 61.40749114100922, -6.845836838737597 61.46804514106563, -6.958336838842371 61.59860914118721, -6.961390838845233 61.62096314120802, -6.944726838829695 61.63666314122267, -6.926390838812637 61.64139114122705, -6.912217838799421 61.64360914122912, -6.889445838778215 61.64500014123041, -6.726663838626621 61.574582141164825, -6.709445838610577 61.558327141149704, -6.655281838560143 61.43305414103304, -6.641945838547713 61.39902714100134, -6.655281838560143 61.38944514099242, -6.660281838564799 61.38832714099138)), ((-7.201663839068999 62.01860914157837, -7.19194583905994 62.035409141594016, -7.1959728390637 62.04666314160451, -7.211945839078567 62.05749114161458, -7.231454839096756 62.06242714161917, -7.251108839115062 62.04277314160089, -7.3488908392061205 62.05305414161046, -7.379863839234957 62.066527141623, -7.433472839284889 62.12381814167637, -7.4303458392819834 62.14332714169453, -7.227217839092788 62.15971814170979, -7.163072839033049 62.12881814168102, -7.056108838933426 62.09860914165287, -7.041945838920242 62.08916314164409, -7.052363838929949 62.064018141620664, -7.062781838939657 62.04943614160709, -7.165281839035117 62.02360914158302, -7.185836839054247 62.0197181415794, -7.201663839068999 62.01860914157837)), ((-6.652217838557277 61.74277314132149, -6.704717838606172 61.77750014135381, -6.838608838730863 61.817636141391205, -6.866108838756475 61.837491141409686, -6.906663838794259 61.90534514147288, -6.860136838750918 61.90721814147463, -6.7801368386764125 61.89610914146428, -6.661390838565836 61.85889114142961, -6.652217838557277 61.85388214142495, -6.604163838512534 61.82389114139701, -6.629999838536605 61.76110914133855, -6.6388908385448815 61.75054514132873, -6.652217838557277 61.74277314132149)), ((-6.5180548384323345 62.16888214171831, -6.527217838440862 62.17388214172297, -6.555554838467259 62.19693614174446, -6.572499838483054 62.21166314175818, -6.5819458384918335 62.22500014177058, -6.588054838497527 62.239718141784294, -6.550854838462897 62.25098214179479, -6.54897283846114 62.30090014184128, -6.574399838484823 62.34987314188689, -6.541663838454326 62.35750014189398, -6.53666383844967 62.34250014188001, -6.522217838436205 62.31805414185726, -6.4908368384069774 62.289854141831, -6.429999838350341 62.268882141811446, -6.391872838314811 62.25596314179941, -6.389717838312805 62.24610914179024, -6.411663838333254 62.18735414173554, -6.5180548384323345 62.16888214171831))) +GRL Greenland MULTIPOLYGON (((-50.89805487976443 68.66554514776882, -50.230826879143024 70.03193614904137, -54.62721788323749 70.65304514961983, -51.34597288018159 71.48415415039383, -58.42361788677316 75.71970915433852, -73.0536089003984 78.15720915660862, -12.1576368436846 81.60068215981559, -21.248890852151504 80.57159115885719, -27.72833685818594 73.13179115192833, -21.475826852362843 70.54164514951606, -28.639717859034732 72.12441815099015, -43.12444587252469 60.08250013977522, -50.89805487976443 68.66554514776882)), ((-54.26944588290429 69.3961001484492, -54.794726883393494 70.22053614921703, -51.836526880638445 69.63441814867116, -53.57847288226077 69.22970914829423, -54.26944588290429 69.3961001484492)), ((-25.684445856282423 71.06330915000191, -25.285836855911185 70.66581814963172, -28.131872858561763 70.44976314943051, -27.149590857646956 70.87439114982595, -26.429163856976004 70.91526314986402, -25.684445856282423 71.06330915000191)), ((-22.311390853141035 72.11276315097928, -24.347499855037313 72.58360015141778, -24.47652685515746 72.83360015165061, -21.928190852784155 72.46470915130706, -22.311390853141035 72.11276315097928)), ((-45.039999874308705 82.0535911602374, -46.941381876079504 82.37052716053256, -47.74610887682897 82.62803616077241, -44.423890873734905 82.38499116054604, -45.05028187431827 82.22442716039652, -45.039999874308705 82.0535911602374)), ((-24.39749985508388 73.41470015219181, -25.006672855651203 73.31205415209621, -22.938608853725185 73.13471815193105, -25.71013685630635 73.18331815197632, -25.24305485587135 73.40581815218354, -24.39749985508388 73.41470015219181)), ((-21.915836852772628 72.67580915150367, -23.132217853905473 72.870527151685, -24.588054855261333 72.95429115176302, -22.46832685328718 73.00166315180715, -21.915836852772628 72.67580915150367)), ((-20.95829085188086 74.44283615314933, -20.125072851104875 74.20200015292505, -21.989717852841437 74.22442715294594, -21.59639085247514 74.40554515311462, -20.95829085188086 74.44283615314933)), ((-17.970272849098052 75.40027315404103, -17.320136848492552 75.13400915379304, -18.92389084998618 75.04192715370729, -18.83917284990727 75.32832715397402, -17.970272849098052 75.40027315404103)), ((-51.24136388008418 81.98251816017122, -53.06694588178438 82.09414516027516, -53.35625488205382 82.2215181603938, -52.81833588155284 82.31666316048242, -51.24136388008418 81.98251816017122)), ((-18.64860884972981 76.16360915475192, -18.548890849636933 76.02360915462154, -18.63527284971738 75.88998215449709, -19.069445850121724 76.74136315529, -18.64860884972981 76.16360915475192)), ((-20.230826851203346 75.04165415370701, -20.18360885115939 74.90304515357795, -19.731245850738077 74.85595415353407, -20.685208851626527 74.81032715349158, -20.230826851203346 75.04165415370701)), ((-51.00194587986118 69.9185911489358, -50.65763587954052 69.83346314885651, -51.245281880087816 69.53138214857518, -51.36278188019725 69.85192714887373, -51.00194587986118 69.9185911489358)), ((-20.21444585118809 81.89276316008761, -20.724717851663314 82.05442716023819, -20.781945851716614 82.13388216031217, -19.744581850750507 81.87525416007131, -20.21444585118809 81.89276316008761)), ((-37.74305486751288 65.56860014488456, -37.9541638677095 65.79692714509721, -37.67528186744977 65.90470914519759, -37.26999986707233 65.75819114506112, -37.74305486751288 65.56860014488456)), ((-38.94833586863538 83.11360016122461, -40.0519358696632 83.25610016135732, -40.673335870241914 83.28027316137985, -40.29749986989191 83.34942716144425, -38.643472868351466 83.11817316122887, -38.94833586863538 83.11360016122461)), ((-53.15471788186612 71.34275415026215, -52.41833588118031 71.35276315027147, -52.32833588109649 71.28984515021287, -52.935826881662265 71.14721815008005, -53.15471788186612 71.34275415026215)), ((-43.57277287294224 59.914709139618964, -43.91429987326032 59.996382139695015, -44.13179987346288 60.143463139831994, -43.13374587253335 60.05873613975311, -43.574308872943675 60.07569113976888, -43.57277287294224 59.914709139618964)), ((-72.23554589963652 77.45416315595386, -71.37527289883533 77.39027315589436, -71.34889089881077 77.36276315586872, -72.57361789995137 77.41137315591399, -72.23554589963652 77.45416315595386)), ((-39.61389086925524 82.99442716111363, -40.363335869953204 83.08305416119617, -40.54339987012091 83.14942716125799, -39.28166386894583 83.08373616119681, -39.61389086925524 82.99442716111363)), ((-53.58416388226607 71.3008091502231, -53.45278188214371 71.04942714998899, -53.99069988264469 71.12789115006206, -53.65694588233386 71.3069271502288, -53.58416388226607 71.3008091502231)), ((-39.87527286949867 82.97859116109888, -40.59555487016948 83.0094271611276, -41.48263587099564 83.16220916126989, -40.83694587039429 83.16360916127118, -39.87527286949867 82.97859116109888)), ((-19.08555485013673 80.15081815846531, -19.940836850933266 80.05692715837787, -20.013336851000787 80.09470015841305, -19.724163850731486 80.24470915855275, -19.08555485013673 80.15081815846531)), ((-55.19747288376858 72.84531815166153, -54.964790883551885 72.80810915162687, -55.84847288437487 72.61415415144623, -55.604999884148114 72.75721815157948, -55.19747288376858 72.84531815166153)), ((-40.19110886979283 64.43054514382467, -40.48679987006821 64.48887314387898, -40.86139087041707 64.91095414427207, -40.542781870120336 64.84414514420985, -40.19110886979283 64.43054514382467)), ((-19.75694585076201 77.89249115636207, -19.22916385027048 77.82970915630361, -20.487217851442125 77.95721815642236, -19.96499985095579 77.9702631564345, -19.75694585076201 77.89249115636207)), ((-17.674999848823063 77.8997181563688, -17.732772848876863 77.70860015619081, -18.240072849349332 77.68136315616545, -17.92833684905898 77.88192715635225, -17.674999848823063 77.8997181563688)), ((-41.11500887065327 63.20971814268768, -41.430826870947385 63.23137314270784, -41.87221787135846 63.46430014292477, -41.67361787117352 63.48971814294845, -41.11500887065327 63.20971814268768)), ((-48.30305487734765 82.7861001609196, -48.413054877450094 82.86110016098945, -47.44639087654983 82.80179116093421, -47.65527287674436 82.77804516091211, -48.30305487734765 82.7861001609196)), ((-18.58555484967107 81.6466541598584, -19.17305485021822 81.74941815995413, -19.243745850284057 81.78068215998323, -18.307572849412196 81.66185415987258, -18.58555484967107 81.6466541598584)), ((-17.72138184886626 79.2194361575979, -17.5569458487131 79.15304515753607, -18.1199998492375 78.99775415739143, -18.08528184920516 79.09610015748302, -17.72138184886626 79.2194361575979)), ((-19.4161088504446 78.72442715713689, -19.52972685055039 78.73027315714234, -19.75583685076097 78.79290015720065, -19.188608850232725 78.9498451573468, -19.4161088504446 78.72442715713689)), ((-55.0152818835989 72.37720015122557, -55.344717883905716 72.16692715102974, -55.68874588422612 72.19581815105664, -55.52332688407206 72.27026315112596, -55.0152818835989 72.37720015122557)), ((-71.23859989870805 77.45610015595565, -70.72694589823153 77.46470915596367, -70.05638189760703 77.39915415590261, -71.07556389855621 77.37137315587674, -71.23859989870805 77.45610015595565)), ((-53.2180548819251 71.52638215043316, -53.47173588216137 71.65706315055488, -52.75749988149617 71.65762715055541, -53.1138908818281 71.53859115044455, -53.2180548819251 71.52638215043316)), ((-52.171945880950844 68.69497314779622, -52.327499881095704 68.63275414773827, -53.116945881830944 68.56400914767426, -52.63417288138132 68.71026314781045, -52.171945880950844 68.69497314779622)), ((-48.295281877340415 82.41165416057086, -48.427781877463815 82.46831816062365, -48.86360887786972 82.54123616069157, -48.035972877098914 82.46651816062197, -48.295281877340415 82.41165416057086)), ((-43.90221787324904 59.790273139503086, -44.109863873442436 59.86735413957487, -43.63708187300213 59.8656911395733, -43.64805487301234 59.847491139556354, -43.90221787324904 59.790273139503086)), ((-56.323335884817126 73.78332715253512, -56.32805488482151 73.83388215258219, -56.77555488523828 73.87289115261854, -55.955554884474594 73.83124515257975, -56.323335884817126 73.78332715253512)), ((-50.80749987968011 64.52249114391029, -51.15110888000012 64.25305414365937, -51.33916388017525 64.24110014364823, -51.02499987988267 64.54942714393539, -50.80749987968011 64.52249114391029)), ((-39.58194586922548 83.34693616144193, -39.17361786884521 83.39305416148488, -38.905281868595296 83.29249116139121, -39.62193586926273 83.33692716143261, -39.58194586922548 83.34693616144193)), ((-27.274445857763226 70.87469114982625, -27.57528185804341 70.754163149714, -27.751108858207175 70.74929114970945, -27.736945858193963 70.88220014983324, -27.274445857763226 70.87469114982625)), ((-47.758335876840334 60.80027314044372, -47.89847287697086 60.67708214032896, -48.2388908772879 60.795545140439316, -47.953890877022474 60.83749114047836, -47.758335876840334 60.80027314044372)), ((-52.289445881060274 68.17747314731426, -51.5816728804011 68.25694514738828, -51.45360888028185 68.25304514738465, -52.00778188079795 68.12052714726121, -52.289445881060274 68.17747314731426)), ((-51.97499988076743 70.9738731499186, -51.5863908804055 70.88415414983504, -51.5584728803795 70.87330914982496, -52.16221788094178 70.88665414983737, -51.97499988076743 70.9738731499186)), ((-18.739436849814382 74.60887315330396, -18.85999984992668 74.53720015323722, -19.21889085026092 74.58415415328093, -18.866663849932877 74.67499115336554, -18.739436849814382 74.60887315330396)), ((-57.34639088576992 74.51277315321448, -56.73028188519612 74.55941815325792, -56.46458188494867 74.50249115320489, -57.55486388596407 74.49067315319388, -57.34639088576992 74.51277315321448)), ((-55.3058268838695 72.91831815172952, -55.38778188394582 72.96249115177065, -55.68450888422217 72.99178215179793, -55.07556388365505 72.96554515177351, -55.3058268838695 72.91831815172952)), ((-20.722772851661517 76.51416315507842, -20.745281851682478 76.39499115496741, -21.137781852048022 76.44456315501358, -20.835554851766545 76.52470015508823, -20.722772851661517 76.51416315507842)), ((-46.206663875395236 60.885273140522884, -46.75847287590915 60.749718140396624, -46.844163875988954 60.76304514040905, -46.20694587539549 60.94971814058289, -46.206663875395236 60.885273140522884)), ((-42.404445871854136 62.69470914220804, -42.3261088717812 62.799718142305835, -41.86278187134968 62.73707314224748, -42.06610887153906 62.682773142196936, -42.404445871854136 62.69470914220804)), ((-20.93055485185502 81.60637315982089, -20.903608851829944 81.7302731599363, -20.164717851141774 81.6792911598888, -20.453054851410315 81.62441815983772, -20.93055485185502 81.60637315982089)), ((-44.26472687358668 60.11443613980498, -44.30749987362651 59.97776313967768, -44.49749987380346 60.011109139708736, -44.4299998737406 60.14277313983138, -44.26472687358668 60.11443613980498)), ((-24.77833685543854 72.89526315170804, -24.896663855548752 72.77777315159864, -25.214717855844953 72.82277315164055, -25.1458368557808 72.88165415169536, -24.77833685543854 72.89526315170804)), ((-55.656663884196234 72.76860015159008, -56.03666388455014 72.6502731514799, -56.22540888472592 72.70429115153019, -55.89333588441666 72.76360915158543, -55.656663884196234 72.76860015159008)), ((-45.152217874413196 60.37638214004892, -45.18735487444593 60.26305413994339, -45.40902687465237 60.183254139869064, -45.349863874597276 60.38485414005683, -45.152217874413196 60.37638214004892)), ((-21.174163852081904 76.55554515511696, -21.430281852320434 76.57165415513194, -21.54736385242947 76.61207315516958, -20.96471785188683 76.62622715518279, -21.174163852081904 76.55554515511696)), ((-19.004999850061722 82.00387316019109, -19.012499850068707 82.03831816022318, -19.412772850441485 82.20318216037671, -18.794863849866005 81.98942716017766, -19.004999850061722 82.00387316019109)), ((-51.95055488074465 68.0938731472364, -51.43278188026244 68.1505451472892, -51.2083358800534 68.11886314725967, -52.00576388079607 68.0779731472216, -51.95055488074465 68.0938731472364)), ((-55.94305488446295 73.57026315233668, -55.875826884400354 73.52831815229763, -55.4733268840255 73.428873152205, -56.11583588462388 73.55663615232399, -55.94305488446295 73.57026315233668)), ((-44.14554587347567 59.89951813960482, -44.318754873636976 59.87151813957874, -44.38028187369429 59.90942713961405, -43.99465487333515 60.005618139703614, -44.14554587347567 59.89951813960482)), ((-52.987417881710314 68.49142714760666, -52.85639088158828 68.41499114753546, -53.210554881918114 68.40470914752589, -53.048335881767045 68.48915414760452, -52.987417881710314 68.49142714760666)), ((-41.019717870564506 64.19274514360319, -40.97083587051898 64.28637314369038, -40.6741728702427 64.29136314369504, -40.679445870247605 64.20860014361796, -41.019717870564506 64.19274514360319)), ((-53.188326881897424 65.57388214488947, -53.165835881876475 65.63165414494327, -52.848326881580775 65.64297314495383, -52.99499988171736 65.54887314486618, -53.188326881897424 65.57388214488947)), ((-69.62249989720294 76.60664515516453, -69.4656908970569 76.57596315513595, -70.03583589758789 76.56748215512806, -69.94721789750535 76.58970915514877, -69.62249989720294 76.60664515516453)), ((-52.19193588096945 82.215273160388, -52.293890881064414 82.27748216044591, -51.80187288060617 82.21603616038868, -52.00778188079795 82.20749116038073, -52.19193588096945 82.215273160388)), ((-51.109726879961585 64.54970914393564, -51.278326880118584 64.38401814378133, -51.41694588024768 64.39360014379025, -51.25528188009713 64.54165414392813, -51.109726879961585 64.54970914393564)), ((-55.52083588406974 71.92803615080726, -55.41332688396962 71.88693615076897, -55.80110888433076 71.88602715076811, -55.68777288422521 71.91303615079329, -55.52083588406974 71.92803615080726)), ((-46.79999987594783 82.83998216096978, -47.188326876309475 82.91137316103627, -47.254863876371445 82.92817316105192, -46.41082687558537 82.83581816096591, -46.79999987594783 82.83998216096978)), ((-56.489999884972335 73.68331815244198, -56.342081884834585 73.68234515244106, -56.833326885292095 73.61137315237497, -56.96389088541369 73.65970915241999, -56.489999884972335 73.68331815244198)), ((-36.70055486654198 65.79054514509127, -36.749026866587116 65.90720914519991, -36.50278186635779 65.95102714524072, -36.590417866439424 65.81276314511194, -36.70055486654198 65.79054514509127)), ((-54.97083588355751 70.48081814945942, -54.73721788333994 70.43359114941543, -54.648472883257284 70.37650014936227, -54.934717883523874 70.37553614936138, -54.97083588355751 70.48081814945942)), ((-23.256945854021637 69.72609114875652, -23.302781854064335 69.63943614867583, -23.59347285433506 69.71068214874217, -23.44471785419651 69.73664514876634, -23.256945854021637 69.72609114875652)), ((-51.83749988063937 68.63499114774035, -52.04944588083676 68.57500014768448, -52.42055488118237 68.56930014767917, -52.217217880993005 68.64193614774683, -51.83749988063937 68.63499114774035)), ((-20.182499851158354 76.33831815491465, -20.37610885133867 76.2591541548409, -20.660826851603815 76.33888215491515, -20.45639085141343 76.36720015494154, -20.182499851158354 76.33831815491465)), ((-37.02389086684312 65.58553614490032, -37.105281866918915 65.60693614492027, -37.213199867019426 65.6819181449901, -36.910135866737164 65.6440181449548, -37.02389086684312 65.58553614490032)), ((-19.214445850256766 78.2347091566808, -19.351108850384065 78.28026315672321, -18.886108849951 78.29303615673513, -18.901945849965728 78.28526315672786, -19.214445850256766 78.2347091566808)), ((-18.323336849426852 78.66775415708409, -18.595554849680383 78.57388215699666, -18.735208849810448 78.60685415702739, -18.528890849618307 78.68054515709602, -18.323336849426852 78.66775415708409)), ((-56.4102818848981 73.54192715231031, -56.55694588503469 73.5542821523218, -56.19041788469333 73.62580915238843, -56.327499884820995 73.55636315232374, -56.4102818848981 73.54192715231031)), ((-55.964717884483136 73.40359115218146, -55.83402688436142 73.37129115215137, -56.146808884652714 73.2958181520811, -56.0927728846024 73.37469115215455, -55.964717884483136 73.40359115218146)), ((-52.868235881599304 66.89721814612193, -53.20583588191373 66.82277314605261, -53.46416388215431 66.79887314603033, -53.34583588204411 66.87387314610018, -52.868235881599304 66.89721814612193)), ((-29.72527286004575 68.22276314735643, -29.838054860150777 68.14082714728013, -30.015417860315978 68.18540014732164, -29.930554860236924 68.23637314736911, -29.72527286004575 68.22276314735643)), ((-19.21221785025469 78.4108091568448, -19.08166385013311 78.36150915679889, -19.400136850429703 78.39290915682813, -19.326108850360782 78.42025415685359, -19.21221785025469 78.4108091568448)), ((-38.56999986828305 83.13972716124894, -38.659717868366585 83.16470016127221, -38.009172867760725 83.15248216126082, -38.318608868048926 83.13360916124324, -38.56999986828305 83.13972716124894)), ((-18.29278184939841 78.73942715715086, -18.288054849394 78.86026315726338, -18.075554849196095 78.8177631572238, -18.111945849229983 78.78803615719613, -18.29278184939841 78.73942715715086)), ((-26.146390856712657 70.52836314950369, -26.195826856758686 70.4500001494307, -26.384726856934606 70.48692714946512, -26.244999856804498 70.55692714953031, -26.146390856712657 70.52836314950369)), ((-20.11916385109936 77.6697091561546, -20.01110885099874 77.60644515609567, -20.43721785139556 77.63179115611928, -20.16832685114514 77.6858091561696, -20.11916385109936 77.6697091561546)), ((-21.119445852030935 77.9991451564614, -21.310281852208675 77.88554515635562, -21.42916385231939 77.91137315637965, -21.24694585214968 78.00166315646376, -21.119445852030935 77.9991451564614)), ((-55.0011088835857 72.68580915151298, -54.952499883540426 72.65720915148634, -55.258054883825 72.59650915142981, -55.196663883767826 72.67747315150521, -55.0011088835857 72.68580915151298)), ((-19.58333685060032 78.37886315681504, -19.489999850513414 78.32179115676189, -19.71028185071856 78.29860015674029, -19.681663850691905 78.38442715682024, -19.58333685060032 78.37886315681504)), ((-20.354999851319008 78.20166315665003, -20.551663851502155 78.15942715661069, -20.780836851715577 78.1935911566425, -20.3058368512732 78.21026315665802, -20.354999851319008 78.20166315665003)), ((-39.601945869244105 65.27470014461085, -39.785835869415365 65.31721814465044, -39.80360886943194 65.3352001446672, -39.49625486914567 65.32346314465624, -39.601945869244105 65.27470014461085)), ((-55.844445884371126 73.25027315203869, -55.81999988434835 73.21319115200413, -56.13221788463913 73.0819361518819, -56.01721788453203 73.22859115201848, -55.844445884371126 73.25027315203869)), ((-18.33971784944211 74.69886315338778, -18.473054849566296 74.62360015331768, -18.59110884967626 74.7188731534064, -18.304445849409262 74.70644515339484, -18.33971784944211 74.69886315338778)), ((-66.87887289464773 80.63777315891883, -66.82806389460042 80.68776315896537, -66.53249989432516 80.61859115890095, -66.76666389454323 80.60693615889011, -66.87887289464773 80.63777315891883)), ((-18.86805484993417 78.15942715661069, -19.061390850114236 78.073882156531, -19.18868185023277 78.11941815657343, -18.831254849899892 78.17276315662309, -18.86805484993417 78.15942715661069)), ((-20.959717851882175 76.37109115494516, -20.509163851462574 76.28859115486833, -20.43041785138925 76.25040015483276, -21.054163851970145 76.36387315493843, -20.959717851882175 76.37109115494516)), ((-41.21666387074794 63.11832714260257, -41.40193587092048 63.13249114261575, -41.46444587097869 63.18610014266568, -41.27888187080589 63.19276314267188, -41.21666387074794 63.11832714260257)), ((-53.473054882162586 68.06915414721337, -53.34972688204773 68.11164514725294, -53.226526881933 68.05622714720135, -53.35694588205446 68.00749114715595, -53.473054882162586 68.06915414721337)), ((-36.84249986667419 65.73360014503822, -36.94277286676757 65.81971814511843, -36.77694586661312 65.86387314515954, -36.78750886662297 65.75555414505868, -36.84249986667419 65.73360014503822)), ((-46.277217875460934 60.77221814041758, -46.35041787552913 60.667500140320044, -46.4994458756679 60.69915414034952, -46.42333587559702 60.74860014039558, -46.277217875460934 60.77221814041758)), ((-41.59749987110263 83.21554516131957, -41.42417287094119 83.24220016134439, -41.003063870549 83.21373616131788, -41.15943587069464 83.20664516131126, -41.59749987110263 83.21554516131957)), ((-51.328335880165156 64.31470014371678, -51.56721788038763 64.2561001436622, -51.60139088041947 64.27998214368444, -51.42889088025882 64.36387314376256, -51.328335880165156 64.31470014371678)), ((-55.71777288425315 73.3602631521411, -55.628054884169586 73.29887315208393, -55.869581884394535 73.33012715211305, -55.78528188431602 73.3602631521411, -55.71777288425315 73.3602631521411)), ((-55.03249988361493 72.57804515141262, -55.07972688365892 72.5230361513614, -55.380554883939084 72.54345415138039, -55.184717883756704 72.58332715141754, -55.03249988361493 72.57804515141262)), ((-19.314445850349898 79.231373157609, -19.37499985040631 79.12637315751121, -19.50055485052323 79.18470015756554, -19.406390850435542 79.22748215760538, -19.314445850349898 79.231373157609)), ((-54.946663883534995 72.76304515158492, -54.84666388344186 72.75193615157457, -54.801108883399436 72.71818215154312, -55.05999988364054 72.72165415154635, -54.946663883534995 72.76304515158492)), ((-52.928335881655286 65.42526314475106, -53.0130638817342 65.44941814477357, -53.086663881802735 65.49498214481599, -52.872354881603144 65.51110914483101, -52.928335881655286 65.42526314475106)), ((-51.523890880347295 70.64721814961439, -51.69444588050612 70.67776314964283, -51.86167288066187 70.72221814968424, -51.69249988050433 70.7277631496894, -51.523890880347295 70.64721814961439)), ((-41.569999871077016 62.86943614237077, -41.586663871092526 63.004718142496756, -41.45541787097031 63.01402714250543, -41.49416387100638 62.941936142438294, -41.569999871077016 62.86943614237077)), ((-69.98416389753976 76.45915415502716, -69.89529089745699 76.43581815500545, -70.18707289772874 76.43720015500674, -70.1641728977074 76.44831815501709, -69.98416389753976 76.45915415502716)), ((-43.50194587287626 59.90331813960836, -43.45749987283489 60.035691139731625, -43.34187287272718 60.00881813970662, -43.39583587277744 59.92832713963165, -43.50194587287626 59.90331813960836)), ((-50.75389087963018 63.18220914266206, -50.68347287956459 63.1141631425987, -50.88639087975358 63.11999114260411, -50.792363879666 63.18457314266425, -50.75389087963018 63.18220914266206)), ((-48.52083587755047 61.356382140961614, -48.58332687760867 61.31276314092099, -48.82875487783724 61.33283614093969, -48.71361787773003 61.367491140971964, -48.52083587755047 61.356382140961614)), ((-31.748608861930137 68.21609114735023, -31.692772861878126 68.17227314730943, -31.957772862124926 68.19762714733304, -31.834726862010314 68.22859114736187, -31.748608861930137 68.21609114735023)), ((-20.17722685115342 76.41665415498758, -20.103199851084497 76.3952731549677, -20.586390851534503 76.37858215495214, -20.20249985117698 76.44970915501838, -20.17722685115342 76.41665415498758)), ((-42.18443587164924 62.48249114201039, -42.27902687173733 62.52193614204714, -42.295345871752545 62.57353614209518, -42.1255548715944 62.559991142082566, -42.18443587164924 62.48249114201039)), ((-51.24639088008885 70.4958181494734, -51.380826880214045 70.50471814948168, -51.662563880476455 70.56074514953386, -51.532772880355566 70.57443614954661, -51.24639088008885 70.4958181494734)), ((-50.53999987943098 63.19526314267421, -50.47096387936668 63.15165414263359, -50.67778187955929 63.13304514261628, -50.61221787949822 63.20166314268019, -50.53999987943098 63.19526314267421)), ((-55.54972688409664 73.31499115209894, -55.591526884135575 73.3474821521292, -55.329445883891495 73.39220915217086, -55.39222688394996 73.36164515214239, -55.54972688409664 73.31499115209894)), ((-53.67083588234679 67.67414514684549, -53.75361788242388 67.7366451469037, -53.764590882434106 67.77429114693876, -53.58679988226852 67.73122714689868, -53.67083588234679 67.67414514684549)), ((-36.356108866221206 65.82054514511921, -36.27305486614384 65.91581814520794, -36.18756386606421 65.8771361451719, -36.319726866187324 65.8219271451205, -36.356108866221206 65.82054514511921)), ((-66.26028189407162 77.48692715598438, -66.68028189446278 77.48887315598617, -66.73138189451038 77.50721815600326, -66.19512689401094 77.50540915600158, -66.26028189407162 77.48692715598438)), ((-55.96389088448237 73.47915415225182, -55.811526884340466 73.47137315224458, -55.784172884314984 73.43470915221044, -56.05402688456631 73.45095415222556, -55.96389088448237 73.47915415225182)), ((-55.55916388410543 72.88804515170133, -55.514454884063795 72.88860015170184, -55.35700888391716 72.8499181516658, -55.536663884084476 72.82249115164026, -55.55916388410543 72.88804515170133)), ((-48.20055487725219 61.0916631407151, -48.051181877113066 61.06283614068823, -48.369445877409476 61.08151814070564, -48.265008877312226 61.098600140721544, -48.20055487725219 61.0916631407151)), ((-42.416390871865275 83.25249116135396, -42.3502818718037 83.27499116137491, -41.95999987144023 83.25346316135486, -42.148890871616146 83.2413631613436, -42.416390871865275 83.25249116135396)), ((-25.460554856073912 71.10415415003993, -25.421390856037448 71.07500015001278, -25.307708855931565 71.01963614996123, -25.57916385618438 71.10220015003813, -25.460554856073912 71.10415415003993)), ((-19.84721785084608 77.54414515603764, -19.859999850858003 77.5022091559986, -20.0408368510264 77.56345415605563, -19.977499850967433 77.5830541560739, -19.84721785084608 77.54414515603764)), ((-53.63332688231186 66.04581814532901, -53.67249988234833 66.08984514536999, -53.42722688211991 66.08254514536321, -53.525272882211226 66.04248214532589, -53.63332688231186 66.04581814532901)), ((-42.92639087234025 60.88304514052081, -42.751108872177014 60.90304514053943, -42.6261088720606 60.885273140522884, -42.75028187217623 60.85443614049416, -42.92639087234025 60.88304514052081)), ((-65.03168189292741 76.07804515467225, -64.95626389285717 76.05192715464793, -65.22111789310382 76.04553615464198, -65.07556389296828 76.08388215467767, -65.03168189292741 76.07804515467225)), ((-42.24833587170875 61.76860014134553, -42.165135871631264 61.85401814142509, -42.08444587155611 61.87499114144461, -42.11875487158807 61.77540914135187, -42.24833587170875 61.76860014134553)), ((-19.70027285070924 76.75249115530036, -19.606390850621807 76.71880015526898, -19.855972850854243 76.73484515528392, -19.826390850826698 76.75582715530348, -19.70027285070924 76.75249115530036)), ((-49.41221787838063 61.91582714148265, -49.52305487848386 61.877209141446684, -49.634726878587884 61.92819114149415, -49.419445878387364 61.93054514149637, -49.41221787838063 61.91582714148265)), ((-41.48221787099524 63.05443614254307, -41.42694587094377 63.10943614259429, -41.30513587083033 63.07166314255912, -41.353890870875745 63.04500014253426, -41.48221787099524 63.05443614254307)), ((-41.185272870718705 64.25749114366349, -41.35499987087678 64.26416314366972, -41.37389087089437 64.28234514368663, -41.12555487066308 64.28831814369221, -41.185272870718705 64.25749114366349)), ((-41.25249987078132 83.28526316138448, -41.61472687111868 83.30220016140026, -41.682781871182044 83.31220016140958, -41.456390870971205 83.32720916142355, -41.25249987078132 83.28526316138448)), ((-19.673336850684137 76.84721815538859, -19.589999850606546 76.81164515535545, -19.807781850809363 76.79150915533671, -19.74194585074804 76.84803615538937, -19.673336850684137 76.84721815538859)), ((-44.193326873520164 60.16249113984972, -44.1474998734775 60.08971813978195, -44.014581873353706 60.04319113973861, -44.15610887348552 60.038191139733954, -44.193326873520164 60.16249113984972)), ((-19.968608850959157 75.974700154576, -20.356108851320045 75.93887315454262, -20.36929985133233 75.94658215454982, -20.105836851086934 75.99609115459592, -19.968608850959157 75.974700154576)), ((-56.96055488541057 74.60748215330267, -56.84151788529972 74.58846315328495, -57.095135885535925 74.55859115325714, -57.07055488551302 74.57916315327631, -56.96055488541057 74.60748215330267)), ((-45.78333587500097 60.660818140313836, -45.95471787516058 60.61554514027168, -45.99708187520005 60.62901814028422, -45.966108875171216 60.6829091403344, -45.78333587500097 60.660818140313836)), ((-45.9291728751368 60.70304514035317, -46.09652687529265 60.63527314029005, -46.20069087538968 60.67512714032716, -46.00695487520923 60.706382140356254, -45.9291728751368 60.70304514035317))) +XGK Guernsey MULTIPOLYGON (((-2.5908368347748194 49.422491129847316, -2.597217834780764 49.422491129847316, -2.654445834834064 49.42582712985043, -2.668608834847248 49.43277312985688, -2.6541638348338097 49.45777312988017, -2.5791638347639605 49.49082712991097, -2.536526834724242 49.50819112992713, -2.50097283469114 49.50389112992312, -2.5284728347167515 49.42639112985094, -2.5555548347419688 49.42333612984811, -2.5908368347748194 49.422491129847316))) +ISL Iceland POLYGON ((-22.02472685287404 64.41888214381379, -22.024445852873782 64.44332714383657, -21.97889085283137 64.50082714389012, -21.70569985257694 64.60708214398906, -21.651526852526473 64.60700014398901, -21.64430885251977 64.5875821439709, -21.608536852486452 64.588736143972, -21.583526852463166 64.57100014395547, -21.496863852382432 64.56605414395085, -21.567536852448256 64.57710914396117, -21.57916385245909 64.60677314398879, -21.677708852550865 64.6159091439973, -21.60513685248327 64.64401814402348, -21.559445852440717 64.64054514402025, -21.513054852397516 64.64409114402355, -21.613890852491437 64.65027314402931, -21.70111785257268 64.62777314400836, -21.952499852806795 64.55166314393747, -22.028617852877687 64.521100143909, -22.087499852932524 64.4686001438601, -22.166526853006104 64.45374514384628, -22.204726853041677 64.46998214386139, -22.352436853179256 64.55860014394392, -22.409999853232875 64.65083614402982, -22.313890853143363 64.69360014406965, -22.299726853130153 64.70443614407975, -22.325145853153828 64.75762714412929, -22.407217853230264 64.81248214418036, -22.677499853482004 64.79999114416873, -22.69055485349415 64.8036001441721, -23.047636853826702 64.79485414416396, -23.165554853936527 64.80082714416952, -23.286945854049577 64.8262451441932, -23.392226854147623 64.82304514419022, -23.52722685427335 64.81110014417908, -23.630836854369846 64.77165414414233, -23.632363854371278 64.756236144128, -23.64499985438306 64.74415414411672, -23.663608854400394 64.73778214411081, -23.835972854560907 64.72596314409978, -23.904999854625203 64.74054514411338, -23.944999854662456 64.76470914413588, -24.049163854759456 64.85527314422023, -24.059536854769107 64.8908821442534, -23.943608854661164 64.91665414427737, -23.833890854558973 64.92721814428722, -23.695554854430128 64.89305414425542, -23.64944585438718 64.89220914425462, -23.547499854292255 64.91832714427895, -23.522499854268972 64.9408271442999, -23.503890854251637 64.94692714430559, -23.35833685411606 64.96624514432358, -23.23764585400366 64.99208214434762, -23.204999853973277 65.01250014436664, -23.189999853959307 65.01582714436975, -22.97597285375997 65.0109631443652, -22.95958185374471 65.00401814435875, -22.615136853423905 65.0227631443762, -22.56499985337723 65.04192714439407, -22.525281853340232 65.0511001444026, -22.355281853181907 65.05943614441037, -22.146663852987615 65.02665414437982, -21.835836852698122 65.03027314438322, -21.79999985266477 65.06027314441116, -21.728336852598005 65.15915414450322, -21.736463852605596 65.19720914453868, -21.759163852626727 65.20360014454462, -21.80833685267251 65.20332714454437, -21.826945852689846 65.19707314453854, -21.83680885269905 65.18596314452819, -21.836108852698402 65.17416314451722, -21.9133368527703 65.14220914448745, -21.99416385284559 65.11555414446264, -22.07444585292035 65.10471814445253, -22.54430885335796 65.15777314450196, -22.560136853372683 65.16839114451184, -22.50499985332135 65.22888214456816, -22.353617853180367 65.28915414462429, -22.1602818530003 65.32666314465925, -22.056390852903547 65.3624911446926, -21.982226852834458 65.39443614472236, -21.915836852772628 65.41443614474099, -21.78666385265234 65.42387314474976, -21.698608852570345 65.4491541447733, -21.809863852673942 65.43360914475883, -21.939999852795154 65.46442714478755, -21.99305485284455 65.50110014482169, -22.037781852886212 65.49943614482015, -22.116526852959538 65.48193614480385, -22.195281853032895 65.43192714475728, -22.22972685306496 65.4249911447508, -22.287781853119043 65.44137314476606, -22.334808853162826 65.483173144805, -22.32789085315639 65.4918821448131, -22.313226853142737 65.49696314481784, -22.267554853100194 65.50021814482088, -22.229999853065237 65.51971814483903, -22.159172852999262 65.54165414485945, -22.10986385295334 65.59331814490758, -22.12236385296498 65.5938821449081, -22.163054853002876 65.57651814489193, -22.20305485304013 65.54443614486206, -22.259445853092643 65.52583614484473, -22.47360885329212 65.50471814482506, -22.573890853385507 65.53110014484963, -22.678054853482507 65.52665414484548, -22.722636853524023 65.49999114482065, -22.782781853580047 65.50387314482427, -22.853890853646277 65.55499114487188, -22.912499853700865 65.56470914488094, -23.017226853798377 65.53944514485741, -23.08555485386202 65.54054514485844, -23.15028185392231 65.54777314486518, -23.19999985396862 65.49804514481886, -23.225699853992552 65.48374514480554, -23.294999854057096 65.48331814480514, -23.375245854131833 65.49138214481263, -23.62333685436286 65.46442714478755, -23.65819985439535 65.45360914477746, -23.72278185445549 65.41721814474357, -23.879445854601386 65.40250014472986, -23.97860885469376 65.4145821447411, -23.99749985471135 65.4500001447741, -24.015836854728406 65.46998214479271, -24.183336854884402 65.49638214481729, -24.265554854960982 65.49888214481962, -24.458608855140795 65.48304514480489, -24.508890855187616 65.48943614481084, -24.53839985521509 65.50027314482094, -24.370345855058588 65.56560914488176, -24.37020885505845 65.59005414490454, -24.37610885506396 65.60110914491483, -24.321945855013496 65.63680014494807, -24.14360885484743 65.6047181449182, -24.123336854828523 65.59180014490616, -24.050836854761002 65.56470914488094, -23.892226854613284 65.51805414483749, -23.84583685457008 65.51887314483824, -23.80743685453433 65.5309631448495, -23.912781854632442 65.55305414487009, -24.012781854725574 65.59470914490888, -24.069581854778477 65.63068214494237, -24.082363854790373 65.64527314495598, -24.070281854779125 65.64888214495932, -23.960836854677183 65.64220914495311, -23.910836854630617 65.6269361449389, -23.805899854532896 65.60902714492221, -23.82944585455482 65.62360014493578, -23.91694585463631 65.65581814496579, -24.014445854727114 65.6719361449808, -24.059445854769024 65.69027314499789, -24.12278185482802 65.74665414505037, -24.13249985483708 65.78471814508583, -24.10520885481165 65.80569114510536, -24.02333685473539 65.79610014509643, -23.824172854549914 65.73887314504313, -23.619999854359776 65.70000014500692, -23.569754854312976 65.66859114497768, -23.553754854298063 65.64582714495648, -23.52722685427335 65.62777314493968, -23.34360885410237 65.66610914497537, -23.452781854204034 65.6724821449813, -23.514863854261847 65.6969631450041, -23.5383368542837 65.7177731450235, -23.461336854211993 65.73093614503574, -23.229445853996026 65.7405451450447, -23.192217853961353 65.77583614507756, -23.209999853977934 65.77888214508039, -23.307499854068737 65.75888214506176, -23.531672854277502 65.75082714505427, -23.743617854474905 65.77610914507781, -23.772226854501525 65.78721814508816, -23.83722685456206 65.82693614512516, -23.873336854595692 65.86873614516409, -23.866945854589744 65.89082714518466, -23.845281854569578 65.91026314520275, -23.832781854557936 65.91638214520844, -23.793336854521186 65.91943614521131, -23.254999854019843 65.83721814513473, -23.225417853992298 65.83512714513279, -23.21618185398367 65.84013614513745, -23.585554854327683 65.90527314519812, -23.746390854477482 65.9666631452553, -23.8033368545305 65.997500145284, -23.81833685454447 66.01442714529978, -23.816390854542675 66.03304514531712, -23.80083685452817 66.05665414533908, -23.786254854514596 66.06638214534814, -23.76722685449687 66.07054514535204, -23.530445854276365 66.02966314531395, -23.374445854131068 65.98651814527378, -23.42555485417867 66.03220914531633, -23.510054854257362 66.05715414533955, -23.534808854280413 66.0581541453405, -23.666108854402722 66.11290914539148, -23.57944585432199 66.16137314543661, -23.4687548542189 66.19971814547233, -23.352499854110647 66.1911001454643, -23.273054854036644 66.1749911454493, -23.02861785380901 66.10401814538321, -22.983608853767095 66.08012714536096, -22.9774998537614 66.07026314535176, -22.978890853762692 66.03443614531841, -22.80971785360512 65.99415414528087, -22.7588908535578 66.05512714533768, -22.748608853548234 66.0580451453404, -22.67778185348226 66.04500014532823, -22.616108853424834 66.01193614529745, -22.576663853388084 65.96333614525219, -22.5974998534075 65.91193614520432, -22.62110885342949 65.88888214518283, -22.6562548534622 65.83512714513279, -22.649581853456 65.82651814512477, -22.638054853445254 65.83110014512903, -22.53221785334668 65.95832714524752, -22.499726853316417 65.96610914525476, -22.421808853243874 65.92249114521414, -22.4195908532418 65.91262714520497, -22.432781853254085 65.87388214516886, -22.461254853280593 65.85054514514715, -22.462917853282164 65.83415414513186, -22.44499985326547 65.83360014513136, -22.42472685324657 65.84749114514429, -22.38583685321035 65.90416314519709, -22.397499853221234 65.9558271452452, -22.411108853233912 65.98818214527532, -22.499999853316694 66.07696314535801, -22.608890853418103 66.1111001453898, -22.841663853634884 66.14749114542369, -22.91194585370033 66.173600145448, -22.952499853738118 66.20000014547259, -22.972226853756467 66.22137314549249, -22.965836853750517 66.22942714550001, -22.856390853648605 66.25555414552434, -22.801390853597383 66.26138214552975, -22.738754853539035 66.2601271455286, -22.590281853400768 66.23110914550156, -22.548054853361435 66.23000014550053, -22.458617853278156 66.25582714552459, -22.434172853255376 66.26777314553573, -22.493336853310467 66.26500014553312, -22.5469458533604 66.26860014553648, -22.671108853476056 66.28665414555329, -22.832781853626614 66.32360914558771, -22.941672853728022 66.29846314556428, -23.02722685380769 66.30249114556804, -23.133608853906793 66.32581814558978, -23.17791785394806 66.3420731456049, -23.189308853958664 66.35152714561372, -23.190172853959467 66.3559001456178, -23.13222685390548 66.3586001456203, -23.057499853835907 66.39249114565186, -23.07833685385529 66.43666314569302, -22.941808853728162 66.46569114572003, -22.861117853653013 66.4641541457186, -22.738054853538387 66.4386001456948, -22.611945853420934 66.44221814569818, -22.421672853243734 66.4333181456899, -22.258336853091606 66.34027314560325, -22.202499853039626 66.2719451455396, -22.086390852931487 66.26805414553598, -21.974308852827107 66.27290014554049, -21.766390852633464 66.1858181454594, -21.73028185259983 66.15971814543508, -21.64417285251963 66.06666314534843, -21.637781852513683 66.0497821453327, -21.65139085252636 66.0188731453039, -21.618617852495845 66.06054514534273, -21.510563852395194 66.06138214534349, -21.399445852291706 66.02721814531168, -21.392499852285255 65.98304514527055, -21.517226852401393 65.97082714525916, -21.599236852477787 65.95311814524266, -21.589726852468914 65.94221814523252, -21.468472852356 65.95957314524867, -21.39278185228551 65.96026314524931, -21.29972685219883 65.9326361452236, -21.285136852185246 65.92061814521239, -21.277781852178407 65.8905451451844, -21.27833685217891 65.85610914515232, -21.339726852236083 65.73290014503758, -21.43778185232742 65.68804514499581, -21.591672852470737 65.68930014499696, -21.63972685251548 65.72387314502916, -21.664026852538115 65.74811814505173, -21.66749985254137 65.7590181450619, -21.68166385255455 65.76500014506746, -21.72416385259413 65.77303614507494, -21.774999852641486 65.7647091450672, -21.650554852525573 65.65263614496283, -21.58667285246608 65.63665414494793, -21.493281852379113 65.63977314495085, -21.421390852312157 65.63471814494613, -21.308890852207384 65.59693614491096, -21.296526852195854 65.57367314488928, -21.295554852194954 65.55305414487009, -21.30278185220169 65.53081814484938, -21.280554852180984 65.47819114480035, -21.200626852106552 65.43159114475696, -21.190554852097165 65.39471814472262, -21.187781852094588 65.34027314467193, -21.08444585199834 65.15916314450325, -21.076117851990603 65.16444514450816, -21.067226851982298 65.18623614452846, -21.08610885199991 65.23165414457074, -21.09694585200998 65.44082714476556, -21.09222685200558 65.4537451447776, -21.06416385197946 65.45470914477849, -21.043890851960583 65.44471814476918, -20.977499851898756 65.43082714475625, -20.987917851908463 65.46596314478896, -20.98312685190399 65.51610014483566, -20.941872851865554 65.57818214489347, -20.927226851851913 65.58888214490344, -20.852781851782595 65.6261001449381, -20.728890851667217 65.67416314498288, -20.68222685162374 65.69166314499918, -20.664172851606935 65.6908271449984, -20.623890851569428 65.67102714497994, -20.644726851588814 65.56749114488352, -20.64194585158623 65.54282714486055, -20.497081851451327 65.48804514480955, -20.474445851430232 65.4877821448093, -20.450208851407666 65.4930451448142, -20.32555485129157 65.62860014494044, -20.26944585123931 65.70915414501545, -20.263054851233363 65.72360014502891, -20.263617851233903 65.74055414504471, -20.30986385127696 65.85819114515425, -20.39889085135988 65.95360014524312, -20.414999851374887 66.00942714529512, -20.42263685138198 66.08444514536498, -20.174172851150587 66.12943614540688, -20.092636851074644 66.12318214540105, -19.993054850981906 66.02415414530881, -19.924026850917613 65.93819114522876, -19.847226850846084 65.89888214519215, -19.789172850792028 65.8844271451787, -19.736945850743382 65.88194514517639, -19.69917285070821 65.85985414515582, -19.654445850666548 65.76762714506992, -19.635563850648964 65.74693614505065, -19.456108850481854 65.72569114503085, -19.4247268504526 65.73457314503912, -19.39639085042623 65.78915414508995, -19.39049085042072 65.83352714513128, -19.417781850446147 65.88332714517767, -19.450554850476664 65.92220914521388, -19.484999850508757 65.94055414523098, -19.454445850480283 66.05471814533729, -19.383754850414448 66.08138214536211, -19.260281850299464 66.08971814536989, -19.231108850272307 66.09138214537143, -19.079726850131294 66.0775001453585, -19.090836850141642 66.12498214540273, -19.078890850130534 66.15250014542835, -19.067226850119653 66.1612361454365, -18.968608850027834 66.18832714546173, -18.852636849919804 66.20082714547337, -18.787781849859414 66.19193614546509, -18.683054849761874 66.16471814543974, -18.551945849639765 66.08471814536523, -18.53333684962243 66.06389114534582, -18.519581849609636 66.01999114530494, -18.53221784962139 66.00332714528943, -18.53923684962794 65.97589114526389, -18.529999849619344 65.96777314525633, -18.33555484943824 65.9430541452333, -18.2833368493896 65.9086001452012, -18.20583684931742 65.81651814511545, -18.181526849294784 65.73804514504238, -18.091663849211102 65.65748214496733, -18.0694458491904 65.64332714495416, -18.048399849170806 65.65839114496819, -18.06249984918395 65.82443614512283, -18.101108849219912 65.89332714518699, -18.14860884926415 65.92347314521507, -18.183336849296467 65.91055414520304, -18.22110884933167 65.92915414522034, -18.29152684939723 66.01040914529602, -18.316526849420512 66.05873614534104, -18.3313178494343 66.15241814542827, -18.295145849400598 66.17527314544958, -18.25041784935894 66.17943614545345, -18.218890849329597 66.17193614544647, -17.968336849096232 66.15443614543017, -17.909726849041647 66.14443614542085, -17.752781848895495 66.0802731453611, -17.609172848761744 65.98749114527467, -17.417917848583613 65.98610914527339, -17.364999848534353 66.05499114533754, -17.34166384851261 66.10138214538074, -17.265554848441724 66.1669271454418, -17.21847284839788 66.1952731454682, -17.13110884831653 66.2105361454824, -17.041254848232825 66.20831814548035, -16.968890848165444 66.18554514545914, -16.9099998481106 66.12470914540248, -16.736945847949414 66.11471814539317, -16.594717847816952 66.09110914537118, -16.65819984787609 66.12734514540492, -16.687090847902994 66.16096314543623, -16.508890847737035 66.19831814547103, -16.436390847669514 66.23610014550621, -16.417363847651785 66.2760271455434, -16.57805484780144 66.47693614573052, -16.56528184778955 66.49360914574603, -16.555554847780485 66.50082714575277, -16.527781847754625 66.5080451457595, -16.469445847700285 66.51470914576569, -16.241390847487907 66.51165414576283, -16.175281847426334 66.53471814578432, -16.025417847286747 66.53610014578561, -15.89416384716452 66.48749114574034, -15.854163847127268 66.41692714567463, -15.709726846992737 66.39721814565627, -15.69833684698213 66.38332714564334, -15.682917846967769 66.34569114560827, -15.687226846971782 66.33249114559598, -15.74972684702999 66.29221814555848, -15.69458184697865 66.22748214549819, -15.558890846852279 66.21638214548784, -15.374308846680378 66.14527314542164, -15.358054846665226 66.15581814543145, -15.33958184664803 66.17735414545152, -15.327781846637038 66.2147181454863, -15.212499846529681 66.26416314553236, -15.128336846451276 66.2719451455396, -15.099445846424373 66.27888214554605, -15.009863846340949 66.33777314560092, -15.0008998463326 66.3493451456117, -14.943608846279261 66.37887314563918, -14.888890846228293 66.38916314564878, -14.85583684619749 66.38970914564928, -14.710836846062449 66.36721814562833, -14.710836846062449 66.3477631456102, -14.963608846297888 66.2894451455559, -15.007081846338366 66.27276314554035, -14.948608846283918 66.23331814550363, -14.938890846274859 66.2209631454921, -14.935972846272136 66.20499114547724, -14.943199846278873 66.19221814546535, -14.976945846310286 66.16970914544439, -15.023054846353233 66.1555451454312, -15.070836846397725 66.14360014542007, -15.14555484646732 66.13708214541398, -15.176254846495908 66.1136731453922, -15.14944584647094 66.09637314537608, -15.01139084634238 66.04999114533288, -14.933890846270202 66.04221814532565, -14.82444584616826 66.04693614533005, -14.751663846100485 66.06527314534713, -14.714726846066071 66.06360014534556, -14.663054846017957 66.04360914532694, -14.618890845976836 65.99442714528115, -14.605554845964406 65.95347314524301, -14.623890845981492 65.909436145202, -14.653054846008644 65.88304514517742, -14.726945846077456 65.84915414514583, -14.799026846144585 65.83082714512878, -14.819172846163355 65.81416314511327, -14.86555484620655 65.75582714505893, -14.848336846190506 65.73138214503615, -14.817781846162063 65.72137314502683, -14.637217845993888 65.75721814506022, -14.418054845789783 65.78721814508816, -14.349445845725882 65.79138214509203, -14.338472845715671 65.78457314508569, -14.331945845709583 65.7755451450773, -14.313054845691994 65.66970914497873, -14.530836845894811 65.5408361448587, -14.547499845910352 65.52527314484422, -14.558336845920422 65.49922714481994, -14.526672845890943 65.52583614484473, -14.332781845710372 65.64082714495183, -14.28805484566871 65.65624514496619, -14.19221784557945 65.63055414494227, -13.999999845400453 65.59887314491274, -13.939726845344296 65.61193614492493, -13.867081845276658 65.61179114492478, -13.680554845102932 65.54804514486543, -13.609581845036843 65.50610014482635, -13.609172845036454 65.48707314480862, -13.636945845062314 65.42470914475055, -13.675699845098421 65.37319114470256, -13.735690845154295 65.31735414465058, -13.660554845084306 65.30110014463543, -13.583608845012662 65.27388214461007, -13.570136845000093 65.26130914459836, -13.628336845054292 65.22415414456376, -13.659999845083803 65.21442714455472, -13.75263684517006 65.20499114454591, -13.863054845272899 65.20389114454488, -14.030281845428647 65.19346314453517, -14.013199845412743 65.18595414452818, -13.87166384528092 65.19749114453893, -13.650554845074993 65.1944451445361, -13.618817845045442 65.18888214453091, -13.636945845062314 65.15777314450196, -13.59166384502015 65.12277314446936, -13.51749984495109 65.11220914445951, -13.499445844934257 65.0691541444194, -13.593608845021976 65.00139114435629, -13.63666384506206 64.98749114434335, -13.678608845101138 64.98220914433844, -13.771554845187694 64.99232714434785, -13.853054845263586 65.03443614438709, -13.988054845389314 65.0638911444145, -14.006945845406904 65.01777314437157, -13.870554845279884 64.97332714433017, -13.70610884512675 64.93124514429098, -13.700417845121422 64.92040014428088, -13.709581845129975 64.91499114427583, -13.813890845227121 64.91082714427196, -14.05125484544817 64.93220914429187, -14.041663845439246 64.92110014428152, -14.008472845408335 64.90957314427078, -13.846945845257892 64.89971814426161, -13.769717845185966 64.86630014423048, -13.769445845185714 64.85401814421905, -13.871108845280418 64.79916314416798, -14.011663845411306 64.79610014416511, -14.042636845440143 64.77963614414978, -13.991599845392614 64.73839114411138, -14.018054845417254 64.72360014409759, -14.079726845474681 64.70860014408362, -14.250281845633538 64.68916314406553, -14.326554845704578 64.71477314408938, -14.332390845709995 64.72549114409935, -14.43249984580325 64.78832714415788, -14.47360884584154 64.79804514416693, -14.512226845877478 64.7965181441655, -14.45444584582367 64.77583614414624, -14.387781845761594 64.72249114409655, -14.365945845741265 64.6741001440515, -14.367945845743122 64.65976314403812, -14.427899845798947 64.60811814399003, -14.464808845833318 64.60510914398725, -14.506945845872565 64.59331814397626, -14.574999845935963 64.59166314397473, -14.584717845944994 64.5849911439685, -14.57055484593181 64.5661001439509, -14.525972845890294 64.55013614393604, -14.480108845847582 64.53965414392627, -14.462490845831184 64.5423541439288, -14.472781845840757 64.50582714389478, -14.541254845904518 64.4047091438006, -14.595836845955347 64.39832714379466, -14.709999846061692 64.40777314380347, -14.871663846212243 64.34000014374033, -14.891390846230621 64.30166314370464, -14.880136846220125 64.27957314368405, -14.924999846261926 64.26416314366972, -14.960554846295025 64.25360014365987, -15.097781846422833 64.2958271436992, -15.22028184653692 64.29860014370178, -15.38680884669202 64.3701361437684, -15.366390846673 64.33193614373283, -15.368890846675328 64.30888214371134, -15.386108846691371 64.27638214368108, -15.446945846748008 64.25193614365833, -15.70778184699094 64.2144271436234, -15.804163847080702 64.18249114359364, -16.01555484727757 64.13332714354786, -16.02749984728871 64.12720914354216, -16.041117847301393 64.10110914351785, -16.177781847428662 64.03805414345914, -16.213054847461507 64.02583614344775, -16.260417847505607 64.01762714344011, -16.339172847578965 63.986109143410744, -16.43444584766769 63.918054143347376, -16.488608847718154 63.89582714332667, -16.61417284783508 63.862218143295365, -16.805281848013067 63.82638214326198, -16.88499984808732 63.86500014329795, -16.947499848145526 63.907218143337275, -16.96833684816491 63.91610914334555, -17.009726848203456 63.859991143293286, -17.010563848204242 63.815827143252164, -17.023336848216132 63.79388214323171, -17.118054848304354 63.791109143229136, -17.24379084842147 63.79899114323649, -17.320554848492947 63.780545143219314, -17.7224998488673 63.71333614315671, -17.83667284897362 63.73305414317508, -17.872081849006605 63.73069114317286, -17.97333684910089 63.66860914311505, -17.9652818490934 63.62221814307185, -17.944445849073986 63.608054143058666, -17.86458184899962 63.59937314305057, -17.874172849008545 63.583609143035886, -17.930836849061308 63.52958214298556, -18.148054849263616 63.47305414293294, -18.566108849652977 63.41750014288118, -18.709999849786982 63.39110914285661, -18.774999849847518 63.39139114285686, -19.086108850137265 63.4127731428768, -19.275836850313937 63.43332714289593, -19.59916385061507 63.50443614296216, -19.841663850840916 63.54444514299942, -20.109999851090834 63.53333614298907, -20.170554851147216 63.5363821429919, -20.22139085119457 63.54971814300433, -20.501108851455086 63.66750014311401, -20.541172851492377 63.707109143150916, -20.54083685149206 63.74680014318787, -20.481945851437217 63.76749114320714, -20.41222685137228 63.76221814320223, -20.337226851302432 63.730827143173, -20.316317851282975 63.73000014317222, -20.36194585132546 63.76166314320173, -20.443336851401256 63.7833361432219, -20.512781851465945 63.76721814320689, -20.56152685151133 63.75027314319112, -20.583945851532235 63.738854143180475, -20.58369085153197 63.72140014316423, -20.650836851594505 63.72888214317118, -20.729490851667776 63.76067314320079, -20.65528185159866 63.756100143196534, -20.60464585155151 63.763336143203276, -20.678336851620116 63.84699114328117, -20.753863851690483 63.80585414324287, -20.80310885173634 63.79435414323217, -20.846390851776647 63.79055414322863, -20.90222685182863 63.81194514324855, -20.94778185187107 63.8230541432589, -21.07499985198956 63.84194514327649, -21.180899852088174 63.87971814331166, -21.19375485210014 63.92471814335357, -21.18458185209161 63.92985414335837, -21.150699852060058 63.93443614336263, -21.114999852026813 63.92902714335759, -21.052363851968465 63.93996314336778, -21.16972685207776 63.95416314338101, -21.20333685210906 63.95332714338022, -21.26097285216275 63.942500143370125, -21.30028185219936 63.918054143347376, -21.3194458522172 63.8875001433189, -21.36916385226351 63.86749114330027, -21.43139085232147 63.849445143283475, -21.618890852496094 63.82388214325965, -21.65472685252945 63.82471814326044, -21.70417285257551 63.84444514327882, -21.854163852715203 63.85277314328658, -21.94722685280186 63.83971814327441, -22.14222685298347 63.834718143269754, -22.326117853154756 63.86054514329382, -22.67305485347785 63.804718143241814, -22.68625485349014 63.80457314324167, -22.719172853520803 63.82555414326123, -22.739999853540212 63.982773143407655, -22.72556385352675 64.06389114348318, -22.700417853503353 64.0819361435, -22.688336853492075 64.08415414350205, -22.661108853466743 64.07832714349664, -22.589726853400236 64.04443614346508, -22.565836853377988 64.02583614344775, -22.54528185335886 63.99347314341762, -22.523054853338152 63.978054143403256, -22.399726853223285 63.97471814340014, -22.385281853209847 63.979718143404796, -22.390836853215006 63.9927091434169, -22.370417853196017 64.01110014343402, -22.252499853086192 64.02916314345086, -22.18639085302462 64.01805414344051, -22.045554852893446 64.04666314346716, -21.96944585282256 64.06832714348732, -21.91513685277198 64.10831814352457, -21.974445852827216 64.1458271435595, -21.97333685282618 64.15693614356985, -21.82194585268519 64.15443614356752, -21.750554852618706 64.1633271435758, -21.70208185257357 64.18277314359392, -21.807781852672008 64.23250014364021, -21.875972852735515 64.23290014364059, -21.835836852698122 64.28387314368806, -21.759163852626727 64.3402731437406, -21.582572852462278 64.38089114377843, -21.569172852449782 64.36651814376503, -21.48889085237502 64.36193614376077, -21.434999852324836 64.36832714376672, -21.36278185225757 64.38499114378223, -21.47778185236467 64.39582714379233, -21.677781852550936 64.40110914379724, -21.749999852618203 64.38026314377782, -21.789308852654813 64.35860914375766, -21.793754852658935 64.34777314374759, -21.8097178526738 64.33888214373928, -21.938608852793863 64.30444514370723, -21.981672852833952 64.2962451436996, -22.022499852871988 64.2958181436992, -22.09923685294345 64.31234514371457, -22.02472685287404 64.41888214381379)) +IRL Ireland MULTIPOLYGON (((-9.001472840745208 53.145591133314724, -9.03965484078077 53.16471813333254, -8.979790840725002 53.15853613332678, -8.937917840685998 53.14172713331112, -8.941108840688997 53.26416413342517, -8.960281840706841 53.267218133428, -9.036526840777839 53.271664133432154, -9.050836840791163 53.268745133429434, -9.100554840837475 53.25804513341947, -9.16778184090009 53.24832713341041, -9.20221784093215 53.24638213340859, -9.229717840957761 53.245554133407836, -9.299999841023237 53.24471813340705, -9.44249984115595 53.233473133396586, -9.477499841188546 53.22471813338842, -9.497499841207173 53.22305413338688, -9.608054841310121 53.232218133395406, -9.620972841322157 53.2388821334016, -9.62472684132564 53.249445133411456, -9.6102818413122 53.299164133457765, -9.580417841284373 53.32006413347722, -9.556945841262518 53.337354133493335, -9.559163841264592 53.38124513353421, -9.651526841350602 53.38596413353861, -9.663608841361878 53.3816641335346, -9.701663841397306 53.358464133512996, -9.708754841403902 53.339582133495384, -9.742217841435064 53.31082713346862, -9.783199841473248 53.294445133453365, -9.90389084158565 53.31895413347618, -9.885199841568237 53.352273133507225, -9.843608841529516 53.368609133522426, -9.818890841506487 53.371382133525, -9.80458184149316 53.37708213353031, -9.786599841476402 53.39325413354538, -9.801672841490443 53.415273133565876, -9.813608841501576 53.4172181335677, -9.88167284156495 53.40916413356021, -9.923045841603482 53.38809113354057, -9.962781841640492 53.37193613352554, -10.013054841687307 53.37860913353174, -10.176526841839546 53.409718133560716, -10.200136841861536 53.542354133684256, -10.186108841848494 53.55028213369164, -10.036108841708796 53.600554133738456, -9.997499841672834 53.605973133743504, -9.876108841559784 53.61083613374802, -9.799445841488364 53.59638213373455, -9.784999841474928 53.594164133732505, -9.698954841394794 53.59790913373598, -9.697481841393397 53.60254513374031, -9.763890841455265 53.60194513373975, -9.779163841469483 53.602491133740244, -9.799445841488364 53.604718133742324, -9.819726841507247 53.61083613374802, -9.86278184154736 53.62721813376328, -9.911663841592883 53.64798213378262, -9.92444584160478 53.691382133823026, -9.906390841587978 53.75860913388564, -9.896945841579168 53.76250013388926, -9.849163841534676 53.76985413389613, -9.684163841381007 53.78416413390946, -9.628336841329002 53.780764133906274, -9.609999841311947 53.77888213390452, -9.587781841291246 53.78443613390971, -9.568054841272868 53.79527313391978, -9.56944584127416 53.79943613392368, -9.584999841288663 53.80124513392536, -9.618754841320083 53.81347313393675, -9.612226841313998 53.836527133958214, -9.601663841304173 53.841382133962725, -9.589172841292537 53.843045133964296, -9.578054841282182 53.845836133966884, -9.561390841266672 53.85971813397981, -9.567081841271971 53.89277313401058, -9.697499841393437 53.89666413401423, -9.725554841419552 53.895827134013444, -9.767636841458739 53.894027134011765, -9.77721784146766 53.89082713400879, -9.789026841478659 53.88138213399998, -9.81778184150545 53.871109133990416, -9.841390841527442 53.86694513398655, -9.896663841578913 53.858609133978774, -9.909999841591343 53.85750013397774, -9.940699841619931 53.86790913398744, -9.910554841591846 53.95040913406427, -9.896390841578665 53.95360913406725, -9.862945841547514 53.9515001340653, -9.811736841499823 53.93666413405148, -9.811808841499897 53.92471813404035, -9.799508841488432 53.91096413402755, -9.784863841474788 53.91708213403322, -9.78958184147919 53.94540913405962, -9.828945841515832 53.97977313409163, -9.853281841538518 53.998436134109, -9.935836841615384 54.06082713416711, -9.938608841617992 54.110836134213685, -9.926390841606604 54.12388213422582, -9.949754841628362 54.18088213427893, -10.01339984168763 54.218191134313656, -10.083608841753033 54.14860913424886, -10.071663841741895 54.125545134227394, -10.065690841736341 54.09110913419531, -10.082499841751996 54.086391134190904, -10.105836841773709 54.08888213419323, -10.124026841790652 54.09659113420042, -10.128890841795197 54.111936134214716, -10.112217841779653 54.230000134324655, -10.081663841751208 54.25721813435001, -10.064445841735164 54.2694361343614, -10.001872841676885 54.30096413439077, -9.88499984156806 54.2595821343522, -9.894163841576585 54.24555413433916, -9.90555484158719 54.23360913432802, -9.926945841607107 54.220827134316124, -9.946526841625342 54.21846413431393, -9.960836841638667 54.22360913431871, -9.969163841646434 54.23235413432687, -9.98159984165801 54.23124513432583, -9.976808841653565 54.21582713431147, -9.962499841640238 54.21027313430628, -9.92028184160091 54.20693613430319, -9.892154841574722 54.209018134305126, -9.871108841555127 54.22555413432053, -9.851945841537258 54.2694361343614, -9.847426841533064 54.31735413440603, -9.840972841527048 54.3266641344147, -9.799863841488758 54.334300134421795, -9.753054841445163 54.32832713441624, -9.740554841433521 54.325554134413665, -9.587226841290715 54.31277313440174, -9.497499841207173 54.31304513440202, -9.336390841057124 54.31693613440564, -9.265836840991398 54.29749113438751, -9.210836840940175 54.27319113436488, -9.198054840928279 54.23693613433113, -9.150554840884041 54.17777313427601, -9.131772840866546 54.159682134259185, -9.134999840869568 54.1719451342706, -9.131390840866203 54.2008271342975, -9.058472840798288 54.280827134372004, -9.044445840785215 54.286245134377054, -9.026390840768414 54.286664134377446, -8.933608840682012 54.28319113437419, -8.916108840665714 54.27930013437057, -8.748608840509718 54.263327134355706, -8.619999840389937 54.25721813435001, -8.474863840254756 54.273464134365156, -8.515281840292403 54.32430013441248, -8.529445840305584 54.32916413441703, -8.587781840359924 54.339582134426706, -8.604445840375433 54.338054134425306, -8.626663840396134 54.33305413442065, -8.647217840415266 54.331109134418824, -8.668126840434752 54.343536134430394, -8.66166384042873 54.35527313444132, -8.651108840418914 54.3622181344478, -8.434445840217109 54.44749113452721, -8.395554840180893 54.46193613454068, -8.380981840167323 54.467091134545484, -8.34833684013691 54.46999113454817, -8.284436840077404 54.47332713455128, -8.267081840061252 54.52180013459642, -8.201108839999819 54.57305413464417, -8.169999839970842 54.59138213466122, -8.188336839987898 54.63360913470055, -8.390554840176236 54.624445134692024, -8.559717840333775 54.61332713468167, -8.584445840356807 54.6097181346783, -8.626663840396134 54.61777313468579, -8.679999840445817 54.62805413469539, -8.702781840467026 54.64221813470857, -8.748608840509718 54.64804513471401, -8.789863840548122 54.65860913472383, -8.798336840556004 54.69575413475843, -8.739726840501419 54.72735413478787, -8.66917284043572 54.759718134818, -8.620836840390695 54.77000013482757, -8.529999840306118 54.784582134841145, -8.490836840269623 54.79360913484956, -8.368608840155815 54.83193613488527, -8.3538908401421 54.83943613489225, -8.315554840106387 54.87381813492428, -8.337363840126699 54.902354134950855, -8.349026840137554 54.90513613495344, -8.3719458401589 54.9030541349515, -8.382636840168857 54.89638213494527, -8.383054840169251 54.881454134931374, -8.396945840182184 54.88277313493259, -8.43749984021997 54.89694513494581, -8.457499840238597 54.91750013496494, -8.459717840240643 54.93832713498435, -8.399999840185046 54.933536134979875, -8.385117840171176 54.94198213498774, -8.402890840187723 54.9528731349979, -8.427326840210497 54.9666361350107, -8.457217840238314 54.9968001350388, -8.317499840108212 55.10889113514318, -8.181663839981695 55.14193613517398, -8.02221783983319 55.18166413521098, -7.981454839795248 55.21645413524337, -7.945908839762126 55.196464135224744, -7.899699839719091 55.17780013520738, -7.872599839693862 55.19912713522723, -7.859263839681432 55.22179113524834, -7.793508839620188 55.24311813526819, -7.79617283962267 55.22000913524667, -7.814390839639657 55.20312713523097, -7.810836839636323 55.17647313520612, -7.7708458395991045 55.18358213521276, -7.712199839544468 55.15870013518958, -7.70286383953578 55.145809135177586, -7.696645839529992 55.12892713516186, -7.702108839535072 55.11073613514492, -7.699717839532838 55.09513613513039, -7.667636839502961 55.144164135176055, -7.676663839511377 55.16777313519802, -7.7020818395350545 55.21652713524344, -7.713890839546053 55.220136135246804, -7.720972839552644 55.212354135239565, -7.721108839552784 55.19471813522313, -7.713526839545722 55.17247313520241, -7.737963839568465 55.17913613520861, -7.7535178395829405 55.18980013521855, -7.788172839615214 55.20135413522931, -7.791726839618548 55.21201813523925, -7.765072839593728 55.230682135256615, -7.73663683956724 55.24578213527067, -7.698608839531829 55.26193613528574, -7.669999839505181 55.271945135295056, -7.657499839493539 55.27443613529738, -7.632499839470256 55.26555413528911, -7.526945839371933 55.12430013515754, -7.526108839371176 55.11193613514604, -7.530554839375299 55.09583613513104, -7.5415268393855115 55.085964135121856, -7.5636088394061005 55.08305413511914, -7.574999839416705 55.07555413511216, -7.598336839438417 55.061100135098684, -7.616663839455498 55.05389113509196, -7.636390839473876 55.03832713507748, -7.682290839516611 54.95090013499606, -7.663336839498953 54.95389113499883, -7.644163839481109 54.96110913500556, -7.60833683944773 54.98221813502522, -7.575836839417462 55.00500013504643, -7.5636088394061005 55.01221813505316, -7.519581839365088 55.02916413506895, -7.5066638393530525 55.033054135072575, -7.4777818393261555 55.03944513507852, -7.4713908393202075 55.03971813507877, -7.456254839306098 55.04499113508368, -7.446526839297036 55.05569113509364, -7.454999839304946 55.131664135164414, -7.514717839360543 55.17971813520916, -7.525281839370393 55.186382135215354, -7.549026839392496 55.20200913522993, -7.547499839391094 55.21694513524383, -7.5119458393579635 55.27443613529738, -7.391390839245702 55.290273135312106, -7.35444583921128 55.333609135352475, -7.396390839250358 55.37832713539413, -7.3766638392319805 55.37999113539567, -7.240836839105469 55.35194513536956, -7.186663839055029 55.33166413535068, -7.051945838929555 55.2716641352948, -6.956108838840294 55.2494451352741, -6.9351368388207675 55.23847313526389, -6.935836838821416 55.21971813524641, -6.953608838837965 55.21166413523892, -7.067217838943776 55.174436135204246, -7.144163839015448 55.15083613518226, -7.159163839029418 55.1458271351776, -7.183608839052198 55.13194513516467, -7.197499839065131 55.12138213515482, -7.252508839116359 55.07059113510752, -7.326390839185166 55.04527313508393, -7.406390839259672 54.95332713499832, -7.443890839294596 54.88250013493234, -7.458054839307778 54.85777313490931, -7.482836839330872 54.82993613488341, -7.553336839396508 54.76277313482083, -7.739163839569585 54.71054513477222, -7.82576383965025 54.73416413479421, -7.843054839666337 54.73360913479368, -7.926390839743959 54.700545134762905, -7.913890839732318 54.671109134735474, -7.906390839725333 54.66444513472928, -7.852363839675007 54.6338821347008, -7.777499839605298 54.62693613469435, -7.752226839581738 54.594445134664085, -7.833608839657558 54.5538911346263, -7.950836839766708 54.532218134606126, -8.046945839856221 54.50721813458284, -8.171663839972382 54.46388213454247, -8.158054839959703 54.44027313452048, -8.065554839873556 54.37277313445762, -8.055836839864497 54.366391134451675, -8.045281839854681 54.36138213444701, -8.030281839840711 54.357218134443144, -7.941390839757929 54.29943613438934, -7.900281839719639 54.29416413438443, -7.875763839696816 54.28499113437587, -7.869445839690911 54.253054134346144, -7.868336839689874 54.227636134322466, -7.861945839683926 54.21804513431354, -7.85139083967411 54.2122181343081, -7.818054839643054 54.199164134295955, -7.747781839577613 54.200273134296964, -7.699717839532838 54.202500134299044, -7.624863839463131 54.16367313426289, -7.6218088394603 54.14750013424782, -7.609999839449301 54.14249113424316, -7.559445839402201 54.126936134228686, -7.330281839188785 54.11305413421576, -7.31333683917299 54.112500134215225, -7.2838908391455846 54.12346413422546, -7.145836839016994 54.22527313432025, -7.143472839014805 54.25651813434936, -7.175554839044679 54.289164134379774, -7.160836839030964 54.33666413442401, -7.058336838935503 54.41000013449229, -7.0294458389086 54.417218134499024, -6.974445838857378 54.40166413448455, -6.92694583881314 54.37916413446359, -6.917217838804078 54.3736001344584, -6.873054838762954 54.342082134429035, -6.851108838742505 54.28971813438028, -6.734726838634117 54.183609134281454, -6.655554838560391 54.065273134171235, -6.6287548385354285 54.04221813414978, -6.619999838527292 54.03721813414512, -6.6080548385161535 54.04221813414978, -6.6058368385140795 54.04444513415186, -6.567499838478398 54.0508271341578, -6.447499838366639 54.058327134164784, -6.365208838289988 54.10401813420734, -6.353608838279172 54.11423613421684, -6.338890838265485 54.11555413421809, -6.288608838218636 54.108609134211605, -6.271526838202732 54.10401813420734, -6.266972838198512 54.09982713420342, -6.2702818382015835 54.09569113419957, -6.240836838174147 54.074718134180046, -6.1705548381087 54.03694513414487, -6.158336838097313 54.03054513413892, -6.145281838085168 54.0286091341371, -6.1312548380720955 54.030554134138924, -6.106254838048812 53.99336413410427, -6.120836838062388 53.9827731340944, -6.138054838078432 53.97500013408717, -6.151808838091256 53.972218134084585, -6.162499838101212 53.97277313408509, -6.228054838162251 53.98778213409909, -6.288608838218636 54.0044361341146, -6.311945838240376 54.009436134119255, -6.330281838257463 54.013054134122626, -6.347363838273367 54.01416413412366, -6.357226838282543 54.01082713412055, -6.381390838305066 53.95151813406531, -6.3801368383038835 53.91332713402974, -6.373608838297798 53.899718134017064, -6.362217838287194 53.88805413400621, -6.348336838274264 53.8786091339974, -6.336945838263659 53.8719361339912, -6.325554838253055 53.86916413398862, -6.289717838219673 53.86388213398368, -6.254999838187359 53.83360913395549, -6.239999838173389 53.78277313390814, -6.24694583817984 53.75416413388152, -6.251036838183666 53.723845133853274, -6.241126838174438 53.68120013381355, -6.236390838170024 53.671391133804406, -6.214163838149318 53.63555413377105, -6.146808838086599 53.58930013372796, -6.12389083806525 53.585827133724734, -6.101390838044296 53.58305413372216, -6.081108838025386 53.563609133704034, -6.077217838021767 53.54416413368594, -6.078336838022807 53.52416413366731, -6.149726838089293 53.386109133538724, -6.159163838098095 53.38277313353561, -6.224581838159025 53.35277313350767, -6.22083683815552 53.34221813349785, -6.180281838117764 53.307491133465504, -6.1105548380528205 53.25249113341428, -6.034581837982074 53.110000133281574, -6.013054837962017 52.945000133127905, -6.069445838014531 52.86582713305418, -6.107499838049989 52.84000013303012, -6.118754838060454 52.83055413302134, -6.137499838077929 52.80166413299443, -6.146808838086599 52.78332713297735, -6.150554838090073 52.766109132961304, -6.1477818380874965 52.73832713293544, -6.193890838130443 52.692636132892886, -6.216108838151115 52.66388213286609, -6.2222178381568085 52.64332713284696, -6.222781838157346 52.63000013283454, -6.218472838153332 52.61527313282082, -6.210136838145559 52.604718132811, -6.201108838137145 52.58055413278851, -6.200136838136245 52.55971813276909, -6.203336838139222 52.54777313275795, -6.211108838146458 52.538327132749174, -6.230281838164331 52.51721813272951, -6.244717838177763 52.502773132716044, -6.3619458382869425 52.3927731326136, -6.4631908383812515 52.37694513259888, -6.47499983839225 52.37444513259655, -6.498190838413848 52.35402713257753, -6.409999838331714 52.28500013251323, -6.381945838305569 52.27721813250599, -6.3316638382587485 52.250000132480636, -6.320554838248398 52.23874513247017, -6.32749983825488 52.222500132455025, -6.359445838284614 52.17902713241455, -6.369445838293927 52.17639113241208, -6.386663838309971 52.17693613241261, -6.399308838321758 52.18097313241637, -6.466663838384477 52.19305413242762, -6.622781838529875 52.19221813242683, -6.789445838685083 52.216945132449865, -6.818336838711986 52.187218132422174, -6.830836838723627 52.17082713240691, -6.870554838760626 52.16305413239968, -6.902499838790391 52.16638213240276, -6.914717838801749 52.206109132439764, -6.979445838862034 52.27666413250549, -6.997299838878661 52.27827313250697, -6.995381838876881 52.2698181324991, -6.988890838870844 52.264164132493846, -6.9738908388568746 52.233609132465375, -6.970554838853758 52.221936132454516, -6.974163838857123 52.168054132404336, -7.00180883888288 52.13847313237679, -7.036390838915082 52.132773132371454, -7.105136838979092 52.1319361323707, -7.160281839030461 52.15027313238775, -7.368890839224747 52.134164132372774, -7.43499983928632 52.12610913236526, -7.578890839420325 52.10027313234119, -7.620281839458869 52.06471813230809, -7.6019458394417825 52.06304513230654, -7.56749983940972 52.059164132302925, -7.546317839389985 52.05180013229605, -7.586663839427558 51.99319113224146, -7.712781839545016 51.93889113219089, -7.725281839556658 51.93777313218985, -7.814863839640083 51.942218132194, -7.827636839651973 51.94638213219787, -7.851345839674053 51.9768001322262, -7.85139083967411 51.96110913221159, -7.852781839675401 51.944300132195934, -7.889163839709283 51.89027313214561, -8.018336839829573 51.83471813209388, -8.086672839893225 51.81082713207164, -8.1693088399702 51.79194513205405, -8.233336840029807 51.79582713205767, -8.242163840038046 51.80685413206794, -8.22444584002153 51.83250013209181, -8.206945840005233 51.836664132095706, -8.178336839978584 51.85152713210954, -8.210554840008598 51.884436132140195, -8.286663840079484 51.88944513214486, -8.365836840153207 51.892218132147434, -8.38435484017046 51.89241813214761, -8.421936840205461 51.88154513213749, -8.399445840184512 51.87554513213192, -8.3719458401589 51.87639113213268, -8.35778184014572 51.87554513213192, -8.343608840132532 51.87277313212931, -8.334717840124227 51.8669451321239, -8.304336840095942 51.82038213208054, -8.297081840089191 51.80246413206385, -8.296945840089052 51.76082713202507, -8.310699840101876 51.74180013200734, -8.34430884013318 51.72110913198807, -8.417781840201599 51.70638213197435, -8.524172840300679 51.66527313193606, -8.541390840316723 51.6483271319203, -8.55749984033173 51.633891131906836, -8.696663840461326 51.5730541318502, -8.737217840499085 51.57610913185303, -8.882781840634664 51.567218131844754, -8.983890840728833 51.55971813183777, -9.11221784084833 51.54804513182691, -9.163608840896217 51.51777313179869, -9.230136840958153 51.48235413176573, -9.352781841072385 51.47055413175474, -9.366663841085312 51.46971813175395, -9.378336841096171 51.47083613175499, -9.454726841167314 51.53082713181087, -9.638336841338315 51.50943613179095, -9.70360884139913 51.46860913175291, -9.71222684140713 51.46346413174814, -9.768054841459133 51.4519451317374, -9.80278184149148 51.446718131732524, -9.817499841505196 51.44554513173145, -9.816663841504408 51.47305413175707, -9.800836841489655 51.49027313177308, -9.774726841465338 51.501936131783964, -9.716663841411275 51.52555413180596, -9.702499841398094 51.52944513180958, -9.675136841372591 51.539582131819, -9.65166384135074 51.55000013182871, -9.59389084129694 51.58971813186571, -9.591945841295114 51.609991131884584, -9.681108841378176 51.579991131856644, -9.785281841475182 51.54860913182742, -9.805281841493809 51.542773131821974, -9.83278184151942 51.540273131819646, -9.843817841529699 51.54541813182445, -9.779163841469483 51.583882131860264, -9.74528184143793 51.59944513187477, -9.609999841311947 51.64297313191531, -9.55055484125657 51.658336131929616, -9.525281841233038 51.66082713193194, -9.51499984122347 51.66332713193427, -9.470554841182064 51.67638213194641, -9.46139084117354 51.680827131950565, -9.450836841163692 51.68943613195859, -9.441945841155416 51.7127731319803, -9.451663841164475 51.72471813199144, -9.5355548412426 51.750000132014975, -9.549999841256067 51.718609131985744, -9.628526841329204 51.687409131956684, -9.663945841362164 51.67950013194931, -9.777499841467943 51.657773131929076, -9.806390841494846 51.65388213192546, -9.932154841611975 51.6241641318978, -9.94666384162548 51.613882131888204, -10.025836841699203 51.59527313187087, -10.04028184171267 51.59290913186868, -10.132499841798563 51.593327131869074, -10.129999841796234 51.612218131886664, -10.060281841731296 51.643609131915895, -9.988054841664024 51.6777731319477, -9.980836841657293 51.708327131976176, -9.995626841671083 51.71457313198198, -9.974308841651236 51.7302731319966, -9.90555484158719 51.75777313202221, -9.77667284146716 51.800827132062324, -9.592499841295648 51.86471813212182, -9.580972841284904 51.87235413212895, -9.642226841341937 51.869436132126225, -9.688336841384881 51.86110913211846, -9.709999841405079 51.85638213211405, -9.939163841618495 51.79943613206103, -10.05139084172302 51.77110913203464, -10.101945841770089 51.75221813201705, -10.182781841845383 51.785827132048354, -10.173608841836852 51.8163821320768, -10.177636841840581 51.82555413208536, -10.207363841868272 51.84714513210545, -10.23055484188987 51.845554132103985, -10.24708184190527 51.840000132098794, -10.33859084199048 51.78291813204564, -10.353890842004745 51.84277313210137, -10.371945842021546 51.878882132135004, -10.263608841920671 51.9880541322367, -10.249445841907459 51.99304513224135, -10.12389084179054 52.02555413227162, -10.101663841769835 52.03082713227653, -10.091108841760018 52.03333613227886, -10.05694584172818 52.03860913228377, -9.986663841662732 52.05000013229437, -9.801108841489935 52.12277313236214, -9.76041784145201 52.14958213238711, -9.811390841499502 52.15250013238983, -9.844163841530019 52.151936132389324, -9.872499841556419 52.15138213238879, -9.8866638415696 52.15055413238804, -9.942499841621611 52.14471813238259, -10.024999841698445 52.13610913237457, -10.053890841725348 52.13138213237016, -10.093054841761813 52.123600132362924, -10.184717841847174 52.10721813234767, -10.274999841931276 52.108327132348705, -10.329999841982499 52.11332713235336, -10.365836842015852 52.11166413235182, -10.38167284203061 52.10388213234455, -10.44492684208953 52.093118132334524, -10.46778184211081 52.10471813234534, -10.47360884211625 52.12916413236812, -10.474726842117263 52.14555413238338, -10.463336842106656 52.180209132415655, -10.359726842010161 52.229718132461755, -10.264999841921963 52.26749113249693, -10.250554841908496 52.27138213250055, -10.2041728418653 52.28110913250961, -10.161872841825897 52.285827132514015, -10.157081841821451 52.2720821325012, -9.94889084162756 52.23069113246265, -9.92028184160091 52.23000013246201, -9.883890841567023 52.23000013246201, -9.744863841437535 52.247218132478054, -9.76916384146017 52.264164132493846, -9.784581841474534 52.26485413249449, -9.835836841522251 52.2866641325148, -9.839726841525874 52.379718132601454, -9.762781841454228 52.442773132660164, -9.680281841377393 52.51277313272536, -9.6747178413722 52.546664132756945, -9.653608841352565 52.56082713277013, -9.628890841329536 52.5691641327779, -9.616663841318143 52.57082713277944, -9.364063841082896 52.57731813278548, -9.35759084107687 52.5691641327779, -9.331663841052716 52.571109132779696, -9.222499840951059 52.58500013279263, -8.983890840728833 52.63055413283507, -8.81833684057463 52.66555413286767, -8.848890840603104 52.68999113289041, -8.946945840694411 52.72360913292172, -9.028054840769954 52.730554132928205, -9.033336840774865 52.7191641329176, -9.065554840804879 52.68860913288913, -9.090836840828416 52.66721813286921, -9.129163840864123 52.635273132839444, -9.15125484088469 52.620964132826145, -9.166945840899302 52.61666413282214, -9.1797268409112 52.61582713282135, -9.241663840968897 52.61332713281902, -9.480554841191378 52.616945132822394, -9.554163841259935 52.63805413284206, -9.697917841393803 52.59999113280659, -9.704863841400282 52.58895413279632, -9.705417841400788 52.57721813278539, -9.795281841484496 52.56082713277013, -9.886108841569097 52.550282132760316, -9.900281841582284 52.55000013276003, -9.932363841612158 52.555200132764895, -9.913336841594429 52.57166413278023, -9.848054841533639 52.58888213279624, -9.821663841509064 52.59082713279807, -9.811672841499757 52.593891132800906, -9.731254841424857 52.64110913284489, -9.564999841270037 52.74582713294242, -9.485836841196289 52.8005541329934, -9.405554841121528 52.88638213307331, -9.394726841111435 52.92666413311085, -9.468399841180059 52.92937313311336, -9.47416384118543 52.9387451331221, -9.280836841005367 53.13971813330926, -9.263608840989349 53.14985413331871, -9.253608840980036 53.14971813331857, -9.23167284095959 53.143054133312376, -9.197226840927499 53.127491133297866, -9.17360884090553 53.11388213328519, -9.154163840887406 53.10694513327874, -9.069445840808498 53.117218133288304, -9.001472840745208 53.145591133314724)), ((-10.119517841786461 54.00000013411045, -10.066108841736735 54.02208213413101, -9.970136841647331 54.02082713412986, -9.938336841617712 53.9945821341054, -9.923890841604276 53.9481911340622, -9.92610884160635 53.92388213403956, -9.943890841622903 53.8837451340022, -9.95819984163623 53.87624513399521, -9.978608841655245 53.87943613399818, -10.055554841726888 53.90943613402612, -10.062081841732976 53.92263613403841, -10.152226841816912 53.95971813407294, -10.174163841837355 53.96082713407398, -10.26562684192254 53.97250013408484, -10.193054841854945 54.00860913411847, -10.158890841823137 54.009164134119004, -10.124999841791578 54.00166413411202, -10.119517841786461 54.00000013411045))) +XIM Isle of Man MULTIPOLYGON (((-4.7777818368115845 54.0555451341622, -4.787154836820321 54.0616641341679, -4.7120818367504 54.21582713431147, -4.698890836738116 54.21916413431458, -4.64360883668661 54.23902713433307, -4.62152683666605 54.25152713434471, -4.598890836644983 54.27082713436269, -4.588054836634882 54.283609134374586, -4.578054836625569 54.296945134387016, -4.554026836603185 54.33319113442076, -4.552781836602037 54.34389113443072, -4.541390836591432 54.35610913444211, -4.5274998365784995 54.36721813445246, -4.484999836538918 54.387218134471084, -4.44305483649984 54.39804513448118, -4.364163836426371 54.416382134498235, -4.353472836416415 54.41000013449229, -4.308681836374689 54.296036134386156, -4.32166383638679 54.27666413436813, -4.386108836446795 54.19554513429259, -4.394445836454565 54.18638213428403, -4.4705548365254515 54.13750013423851, -4.4911088365445835 54.126664134228434, -4.550554836599957 54.0977731342015, -4.6238908366682665 54.068600134174346, -4.687499836727511 54.07763613418277, -4.7047178367435265 54.0797181341847, -4.7208368367585365 54.07610913418134, -4.7777818368115845 54.0555451341622))) +SJM Jan Mayen MULTIPOLYGON (((-9.043090840783975 70.80386314976028, -9.058899840798688 70.80386314976028, -9.073908840812663 70.80774514976389, -9.119908840855516 70.86039114981293, -9.109745840846045 70.86954514982145, -8.93444584068277 70.92274514987099, -8.920599840669894 70.9260731498741, -8.887508840639072 70.93192714987956, -8.763672840523725 70.95052714989686, -8.581417840353993 70.99163614993515, -8.510863840288295 71.01331814995535, -8.498899840277147 71.02221814996363, -8.452272840233718 71.05801814999697, -8.442508840224633 71.07249115001045, -8.433654840216377 71.08164515001897, -8.38195484016822 71.12080015005546, -8.355836840143894 71.13302715006682, -8.34448184013334 71.1366541500702, -8.326417840116505 71.14054515007385, -8.128908839932564 71.17080915010203, -8.109190839914191 71.17329115010435, -7.997254839809955 71.18081815011135, -7.983645839797276 71.17886315010952, -7.971126839785626 71.17607315010693, -7.959781839775047 71.17247315010357, -7.949772839765728 71.16773615009916, -7.928508839745916 71.14970015008237, -7.983372839797028 71.04524514998508, -7.990845839803995 71.03831814997864, -8.008363839820305 71.03025414997111, -8.11865483992301 71.00358214994628, -8.290899840083426 70.97415414991886, -8.394472840179901 70.95913614990488, -8.409181840193583 70.96025414990592, -8.419490840203196 70.96498214991033, -8.43194584021478 70.9677451499129, -8.460326840241208 70.97051814991548, -8.494754840273288 70.9691451499142, -8.565617840339286 70.96414514990954, -8.620299840390203 70.95913614990488, -8.631717840400853 70.95553614990155, -8.937499840685632 70.8402731497942, -8.948917840696254 70.83136314978589, -8.954772840701708 70.82163614977682, -8.98889084073349 70.811082149767, -9.005617840749068 70.80801814976414, -9.043090840783975 70.80386314976028))) +XJE Jersey MULTIPOLYGON (((-2.066945834286912 49.16777312961008, -2.0891638343076124 49.18110912962251, -2.103017834320525 49.18136412962275, -2.122781834338923 49.19582712963623, -2.133054834348485 49.19860912963881, -2.149163834363492 49.199027129639205, -2.161108834374602 49.192909129633506, -2.181945834394014 49.18416412962537, -2.205281834415757 49.18082712962226, -2.2263908344354206 49.189718129630535, -2.2473638344549443 49.251245129687845, -2.2336088344421228 49.25901812969508, -2.1541638343681484 49.26110912969702, -2.0384728342604035 49.243327129680466, -2.016808834240237 49.23103612966901, -2.0149998342385516 49.21416412965331, -2.0211088342442167 49.17721812961889, -2.041390834263126 49.172491129614485, -2.066945834286912 49.16777312961008))) +GBR United Kingdom MULTIPOLYGON (((-4.864163836892033 54.6272181346946, -4.950136836972092 54.65499113472046, -4.958472836979865 54.7241641347849, -5.131945837141416 54.84527313489767, -5.178336837184617 54.98888213503142, -5.053608837068452 55.04901813508744, -5.012499837030191 55.1334731351661, -4.865417836893187 55.22340013524985, -4.748472836784288 55.41055413542415, -4.6136088366586705 55.490691135498764, -4.6968088367361815 55.605691135605866, -4.916390836940678 55.70082713569448, -4.878263836905177 55.93652713591399, -4.485417836539284 55.923609135901955, -4.854608836883131 55.98648213596053, -4.828608836858905 56.113164136078495, -4.98666383700612 55.864927135847296, -5.17333683717996 55.92916413590714, -5.224581837227703 55.90175413588162, -5.207499837211799 55.82874513581362, -5.305281837302857 55.85221813583547, -5.3408368373359565 55.926109135904284, -5.309054837306377 56.0057001359784, -5.200690837205457 56.11860913608356, -4.922290836946161 56.27110913622559, -5.032217837048535 56.23250013618963, -5.42916383741823 56.00693613597957, -5.379999837372452 55.750273135740514, -5.486390837471532 55.64305413564068, -5.555199837535611 55.41440013542771, -5.5230548375056685 55.35221813536981, -5.595836837573444 55.30582713532661, -5.781663837746521 55.29901813532027, -5.794308837758308 55.388191135403304, -5.717636837686882 55.44458213545582, -5.701663837672015 55.58860913558996, -5.609863837586516 55.75930013574893, -5.673190837645507 55.80527313579174, -5.677890837649869 55.899436135879455, -5.578054837556891 56.037564136008086, -5.677845837649841 55.99400913596753, -5.515763837498895 56.18527313614564, -5.597781837575269 56.15971813612185, -5.571390837550695 56.32832713627889, -5.424390837413796 56.430909136374424, -5.220836837224198 56.435827136379004, -5.107781837118921 56.50777313644599, -5.070136837083851 56.56069113649528, -5.203054837207645 56.45416313639609, -5.398663837389819 56.4786631364189, -5.250799837252117 56.557527136492354, -5.353808837348055 56.54632713648192, -5.383054837375283 56.583054136516125, -5.1208368371310655 56.81471813673187, -5.6769458376489865 56.493891136433064, -6.0097178379589025 56.63347313656308, -5.552399837532988 56.68885413661465, -6.191390838128115 56.67971813660614, -6.234517838168273 56.7167271366406, -5.96694583791907 56.780273136699776, -5.8495818378097795 56.74444513666643, -5.802081837765542 56.79180013671052, -5.853126837813079 56.82783613674408, -5.662917837635916 56.86923613678263, -5.919581837874972 56.88708213679925, -5.806108837769273 57.01138213691502, -5.646108837620261 56.97221813687855, -5.524026837506568 56.997354136901976, -5.631390837606574 56.98499113689044, -5.787290837751755 57.05409113695481, -5.7247178376934755 57.113054137009726, -5.40305483739391 57.110618137007435, -5.6475088376215865 57.16160913705494, -5.646108837620261 57.234991137123274, -5.405136837395844 57.23097313711955, -5.598845837576249 57.33049113721222, -5.451254837438796 57.418045137293774, -5.75110883771805 57.34332713722418, -5.818054837780409 57.36250013724202, -5.871390837830091 57.479163137350696, -5.839717837800578 57.57277313743785, -5.65305483762674 57.50874513737824, -5.510136837493633 57.53319113740099, -5.669999837642536 57.54666313741356, -5.810836837773678 57.63958213750007, -5.801390837764899 57.85388213769966, -5.716945837686239 57.86943613771416, -5.606736837583611 57.76618213761799, -5.5816638375602565 57.83166313767899, -5.6441268376184155 57.88059113772454, -5.611108837587665 57.9236091377646, -5.4574998374446295 57.85889113770432, -5.338608837333879 57.92082713776202, -5.102781837114264 57.850827137696825, -5.193336837198586 57.95069113778982, -5.452845837440293 58.07416313790483, -5.281454837280677 58.077218137907664, -5.274445837274129 58.14860913797415, -5.389445837381231 58.26027313807816, -5.071663837085282 58.26471813808229, -5.174717837181248 58.350000138161704, -5.109445837120461 58.50832713830917, -5.001526837019952 58.62416313841706, -4.701663836740693 58.55860913835599, -4.67666383671741 58.52443613832418, -4.761454836796389 58.446036138251145, -4.578336836625823 58.57443613837074, -4.277217836345386 58.53360913833271, -3.782636835884773 58.56750013836427, -3.6602818357708315 58.61971813841291, -3.369308835499851 58.59555413839041, -3.353890835485487 58.66055413845095, -3.022636835176968 58.646527138437875, -3.057917835209821 58.45082713825562, -3.2055548353473284 58.30624513812097, -3.3603458354915006 58.275136138091995, -3.51319083563385 58.16374513798826, -3.9969458360843646 57.95055413778971, -4.014999836101197 57.86777313771259, -4.391663836451983 57.9013911377439, -4.297499836364295 57.84638213769267, -4.043217836127468 57.814382137662875, -3.7740268358767537 57.854854137700585, -3.9777818360665265 57.6983271375548, -4.031108836116175 57.73138213758557, -4.296663836363507 57.67443613753255, -4.431526836489098 57.57277313743785, -4.227781836299357 57.66499113752374, -4.046663836130676 57.64277313750304, -4.210836836283562 57.53610913740371, -4.23778183630867 57.496663137366994, -4.196663836270375 57.4858361373569, -4.03986383612434 57.555691137421945, -3.595417835710407 57.63666313749738, -3.488054835610427 57.709445137565154, -3.2862548354224828 57.72499113757962, -3.038472835191726 57.662491137521414, -2.8980548350609467 57.70693613756282, -2.3962548345936057 57.666382137525034, -2.075554834294934 57.699436137555836, -1.918336834148505 57.67055413752894, -1.7733368340134632 57.45805413733103, -1.9748638342011589 57.31708213719972, -2.21971783442919 56.86777313678127, -2.4780548346697913 56.71527313663924, -2.4484818346422514 56.69143613661706, -2.531254834719334 56.57610913650964, -2.7208368348958913 56.4888821364284, -3.0702818352213512 56.451945136394016, -3.2780548354148493 56.357500136306044, -2.8844458350482682 56.45138213639348, -2.804163834973508 56.432782136376176, -2.8023638349718283 56.345691136295045, -2.5834728347679743 56.26853613622319, -2.7880548349585013 56.18749113614771, -2.956945835115789 56.202218136161434, -3.395836835524534 56.01082713598319, -3.5824998356983997 56.05499113602431, -3.737217835842472 56.05554513602485, -3.7237548358299364 56.02735413599859, -3.0530548352053017 55.943600135920576, -2.9083368350705143 55.97901813595357, -2.8202818349885206 56.05693613602614, -2.6311088348123235 56.054718136024064, -2.0797178342988047 55.86721813584944, -1.8176368340547242 55.63305413563137, -1.6359728338855462 55.58193613558376, -1.5149998337728903 55.14971813518122, -1.381390833648453 54.97639113501978, -1.2974998335703276 54.76360913482162, -1.1652818334471817 54.649718134715556, -0.564717832887851 54.480000134557486, -0.3819458327176335 54.25555413434847, -0.0793088324357996 54.11340013421608, -0.173890832523881 54.081664134186525, -0.2122178325595598 54.00832713411822, -0.1274998324806802 53.86388213398368, 0.1263911677557985 53.64527313378008, 0.1420821677704112 53.58055413371983, 0.0441631676792156 53.639164133774415, -0.1058368324604828 53.63166413376743, -0.272499832615722 53.73554513386418, -0.7165268330292349 53.69638213382768, -0.3016638326428733 53.71319113384334, 0.2355541678574582 53.39943613355115, 0.3395821679543474 53.234718133397735, 0.3391631679539557 53.09235413326516, 0.0021091676400431 52.879854133067255, 0.0863911677185456 52.88971813307643, 0.2400731678616523 52.79617313298931, 0.3788911679909575 52.78139113297553, 0.5477821681482453 52.96618213314764, 0.8847181684620296 52.96638213314782, 1.3525001688976772 52.909718133095055, 1.6752821691983115 52.7480541329445, 1.7459001692640754 52.62020913282544, 1.749445169267375 52.45582713267234, 1.5873631691164292 52.083882132325925, 1.3312451688778992 51.92874513218146, 1.1634731687216515 52.0236091322698, 1.2932631688425147 51.87409113213056, 1.2661091688172235 51.839164132098034, 1.088336168651665 51.770554132034135, 0.9827821685533706 51.82527313208507, 0.7011091682910262 51.71847313198563, 0.761400168347194 51.69164513196063, 0.9356911685094929 51.736527132002436, 0.9525001685251482 51.60922713188387, 0.7894451683733053 51.52416413180467, 0.4650001680711284 51.50305413178501, 0.3889361680002992 51.44821813173394, 0.536109168137358 51.48805413177104, 0.6975001682876609 51.47083613175499, 0.7216001683101183 51.44040913172665, 0.5594451681591011 51.40596413169459, 0.9080541684837726 51.340691131633776, 1.3855541689284792 51.38777313167762, 1.4275001689675264 51.331109131624856, 1.398336168940375 51.163891131469114, 1.0455541686118295 51.04943613136254, 0.978891168549751 50.996664131313395, 0.9750001685461029 50.93193613125311, 0.7813911683658148 50.93555413125648, 0.6622181682548103 50.8694361311949, 0.3494451679635233 50.80860913113824, 0.2538911678745421 50.73860913107305, -0.2549998325994238 50.82638213115479, -0.6752818329908337 50.78110913111263, -0.7994458331064607 50.726245131061546, -0.9082638332078261 50.77395413110597, -0.865836833168288 50.79964513112989, -0.9284178332265753 50.83965413116715, -1.0944458333812008 50.845836131172916, -1.1588908334412338 50.840827131168254, -1.1169458334021556 50.8069451311367, -1.144308833427658 50.77790913110965, -1.331390833601887 50.79138213112219, -1.5927818338453221 50.72416413105961, -2.0349268342571065 50.73152713106646, -2.080072834299159 50.69659113103393, -1.954408834182118 50.66535413100482, -1.96437283419138 50.59673613094091, -2.3909728345886947 50.641664130982775, -2.465972834658544 50.59416413093854, -2.4344548346291788 50.54179113088975, -2.661945834841049 50.67333613101226, -2.9274998350883834 50.7312451310662, -3.437217835563075 50.60500013094861, -3.6519458357630583 50.2311091306004, -3.71666383582334 50.20666413057765, -3.8133368359133613 50.21721813058747, -3.943890836034967 50.31346413067712, -4.057081836140384 50.29790913066262, -4.174999836250208 50.37777313073698, -4.3799998364411294 50.36388213072405, -4.76249983679736 50.311382130675156, -4.857499836885836 50.23166413060093, -5.04805483706329 50.17110913054452, -5.0574998370721005 50.04610913042811, -5.193054837198332 49.9552731303435, -5.28971783728835 50.06944513044985, -5.470554837456774 50.12499113050157, -5.534163837516019 50.115691130492905, -5.567217837546792 50.05110913043276, -5.687499837658834 50.04193613042423, -5.691945837662956 50.155136130529655, -5.4958368374803115 50.21694513058722, -5.4319458374208125 50.193264130565154, -5.047290837062576 50.4275001307833, -5.017499837034848 50.54263613089054, -4.771663836805885 50.60194513094578, -4.743608836779742 50.66750013100682, -4.553608836602791 50.7852731311165, -4.5213178365727344 51.01423613132974, -4.3036088363699605 51.00416413132038, -4.210281836283059 51.07235413138389, -4.228054836299606 51.187773131491355, -3.7924998358939774 51.23916413153924, -3.393608835522457 51.18138213148541, -3.028336835182273 51.20610913150844, -2.9599998351186514 51.37499113166572, -2.3799998345784843 51.7617361320259, -2.7147178348901946 51.58082713185743, -3.0211088351755393 51.525273131805676, -3.1187548352664862 51.4875001317705, -3.181108835324551 51.39735413168657, -3.346108835478219 51.378609131669094, -3.5602818356776993 51.4055451316942, -3.8379178359362527 51.6199911318939, -4.2172268362895124 51.53277313181266, -4.277781836345923 51.556664131834935, -4.292081836359245 51.60742713188219, -4.074717836156793 51.6772181319472, -4.574445836622203 51.734164132000245, -4.671526836712616 51.72069113198768, -4.710972836749363 51.64958213192145, -4.941390836963961 51.59416413186986, -5.051390837066407 51.620282131894186, -5.021281837038373 51.66860913193918, -4.861108836889173 51.71333613198084, -4.884445836910913 51.74666413201189, -5.007390837025412 51.703491131971674, -5.246945837248518 51.7302731319966, -5.1025728371140815 51.778954132041946, -5.131663837141161 51.85638213211405, -5.258890837259656 51.87055413212727, -5.2391638372412785 51.91638213216993, -5.076663837089939 51.996109132244186, -4.830281836860479 52.01624513226295, -4.669445836710679 52.130273132369126, -4.497636836550669 52.13708213237547, -4.130836836209056 52.334718132559544, -4.059717836142823 52.485836132700285, -4.125972836204539 52.603745132810104, -4.053336836136879 52.71666413291527, -4.148336836225354 52.80040913299325, -4.133608836211636 52.91444513309946, -4.414163836472937 52.88471813307177, -4.539445836589607 52.79305413298641, -4.758490836793612 52.78726413298102, -4.61889083666361 52.90916413309455, -4.3609728364234 53.028882133206025, -4.330281836394818 53.11221813328365, -4.196390836270126 53.206109133371086, -3.3363908354691887 53.34721813350251, -3.102217835251082 53.24777313340988, -3.1708368353149865 53.400273133551906, -3.0581368352100355 53.410164133561125, -2.8622178350275647 53.282773133442475, -2.7049268348810926 53.35061813350566, -2.857363835023051 53.320827133477934, -2.953890835112958 53.36027313351465, -3.10562683525427 53.5599271337006, -2.8997908350625607 53.72499113385433, -3.052781835205053 53.767354133893804, -3.0526368352049076 53.90763613402444, -2.93249983509304 53.95055413406442, -2.8336088350009163 54.08500013418961, -2.81360883498229 54.22277313431792, -3.152217835297648 54.081936134186776, -3.214717835355856 54.09555413419946, -3.6326368357450747 54.5122181345875, -3.3811088355108154 54.88443613493416, -3.289308835425345 54.93791813498396, -3.0270818351811215 54.97290913501655, -3.5711088356877667 54.99082713503324, -3.615836835729425 54.87527313492561, -3.812217835912321 54.84888213490103, -3.9649998360546306 54.76527313482316, -4.135836836213713 54.77471813483197, -4.398054836457931 54.90639113495459, -4.428545836486336 54.86409113491521, -4.345690836409176 54.70916413477093, -4.387217836447832 54.67555413473963, -4.852217836880897 54.86860913491941, -4.960763836982011 54.7968731348526, -4.864163836892033 54.6272181346946)), ((-6.6058368385140795 54.04444513415186, -6.873054838762954 54.342082134429035, -7.0294458389086 54.417218134499024, -7.160836839030964 54.33666413442401, -7.145836839016994 54.22527313432025, -7.330281839188785 54.11305413421576, -7.559445839402201 54.126936134228686, -7.699717839532838 54.202500134299044, -7.85139083967411 54.2122181343081, -7.875763839696816 54.28499113437587, -8.171663839972382 54.46388213454247, -7.752226839581738 54.594445134664085, -7.926390839743959 54.700545134762905, -7.553336839396508 54.76277313482083, -7.326390839185166 55.04527313508393, -7.06889083894535 55.039164135078266, -6.966945838850393 55.156109135187165, -6.515554838430006 55.23305413525884, -6.101254838044156 55.20944513523685, -6.034445837981934 55.154582135185734, -6.036108837983477 55.05778213509561, -5.690417837661528 54.80916413486406, -5.711108837680797 54.73916413479887, -5.889863837847287 54.6730541347373, -5.902426837858997 54.60229113467139, -5.803054837766439 54.66138213472641, -5.574308837553417 54.67721813474117, -5.431317837420238 54.48596413456306, -5.461108837447966 54.385554134469544, -5.517717837500697 54.36910913445422, -5.560699837540739 54.517354134592296, -5.698126837668724 54.57262713464377, -5.568172837547678 54.36686413445213, -5.559163837539302 54.29083613438132, -5.608336837585085 54.24971813434303, -5.85972683781921 54.22596413432092, -5.89999983785674 54.096800134200606, -6.043890837990745 54.03139113413968, -6.338890838265485 54.11555413421809, -6.6058368385140795 54.04444513415186)), ((-6.473890838391213 57.94832713778763, -6.664308838568559 57.925554137766426, -6.695972838598038 58.022909137857084, -6.594445838503475 58.048536137880944, -6.6868088385895135 58.05624513788814, -6.7613908386589685 57.998327137834195, -6.661390838565836 57.88263613772645, -6.981108838863577 57.72708213758156, -7.124236838996893 57.835618137682644, -6.832217838724915 57.90221813774468, -7.113336838986726 57.985554137822305, -7.05555483893292 58.020273137854645, -7.127426838999867 58.12790913795487, -7.004581838885457 58.23486313805449, -6.907499838795047 58.21034513803164, -6.936108838821667 58.18804513801089, -6.860972838751707 58.105973137934456, -6.873281838763177 58.178591138002076, -6.74472683864343 58.19720013801941, -6.797781838692856 58.30221813811721, -6.550281838462354 58.36332713817413, -6.248754838181526 58.510136138310855, -6.165972838104437 58.42291813822962, -6.327026838254426 58.235400138054985, -6.168190838106511 58.259227138077165, -6.158336838097313 58.218327138039086, -6.619717838527009 58.08013613791039, -6.3933368383161735 58.101663137930444, -6.355281838280746 58.03152713786511, -6.473890838391213 57.94832713778763)), ((-5.847499837807845 57.105273137002456, -6.014308837963199 57.02346313692627, -5.974163837925801 57.13027313702574, -6.030554837978315 57.17750013706973, -6.0774998380220495 57.125482137021294, -6.1766638381143935 57.17055413706328, -6.31639083824453 57.158463137051996, -6.480136838397016 57.30250013718614, -6.421736838342639 57.3338091372153, -6.312081838240516 57.29978213718363, -6.530136838443582 57.40750013728393, -6.568608838479406 57.33624513721759, -6.699999838601798 57.36388213724331, -6.785281838681215 57.44805413732172, -6.63749983854359 57.6055541374684, -6.463336838381366 57.508891137378356, -6.375554838299621 57.524163137392605, -6.420281838341282 57.63721813749788, -6.304163838233137 57.686100137543406, -6.144999838084914 57.5715271374367, -6.127226838068339 57.30610913718951, -5.883336837841199 57.23958213712754, -5.64763683762169 57.25832713714502, -5.664236837637162 57.20575413709605, -5.847499837807845 57.105273137002456)), ((-1.6477818338965449 60.22471813990768, -1.666945833914383 60.29971813997753, -1.3202818335915367 60.35638214003029, -1.445836833708455 60.46054514012732, -1.610345833861686 60.47840014014395, -1.413336833678187 60.60597314026276, -1.296526833569402 60.6334001402883, -1.286663833560226 60.471109140137145, -1.0385458333291524 60.44277314011077, -1.1011088333874 60.27583613995529, -1.1953458334751872 60.26791813994791, -1.12721783341172 60.14694513983525, -1.2122178334908824 60.102773139794124, -1.2686088335433965 59.851109139559725, -1.3779178336451992 59.90430913960927, -1.2620818335373372 60.11138213980212, -1.291390833564634 60.241391139923195, -1.4095088336746358 60.25305413993408, -1.3583368336269643 60.192500139877666, -1.4511088337133629 60.151800139839764, -1.6477818338965449 60.22471813990768)), ((-6.116663838058514 56.650273136578704, -5.972781837924515 56.547636136483135, -5.651108837624918 56.45110913639323, -5.66083683763398 56.399300136344976, -5.843608837804197 56.3084641362604, -5.882499837840442 56.351945136300884, -6.323054838250727 56.265409136220285, -6.350281838276089 56.33693613628691, -6.2319458381658706 56.31832713626957, -6.019372837967893 56.37596413632326, -6.2016638381376765 56.38235413632921, -6.003399837953026 56.49256313643184, -6.129163838070156 56.47458213641508, -6.337781838264448 56.54666313648224, -6.321526838249298 56.60152713653332, -6.116663838058514 56.650273136578704)), ((-4.351390836414481 53.12444513329504, -4.478890836533225 53.17666413334368, -4.567499836615752 53.273327133433696, -4.5599998366087675 53.39666413354857, -4.3138908363795565 53.411945133562796, -4.222217836294163 53.32166413347872, -4.046526836130539 53.301527133459956, -4.351390836414481 53.12444513329504)), ((-6.274445838205452 55.572773135575204, -6.324445838252018 55.58680013558828, -6.262217838194061 55.77721813576562, -6.341663838268062 55.777636135766016, -6.473336838390679 55.67000013566576, -6.495281838411131 55.733609135725004, -6.445690838364953 55.851109135834434, -6.125699838066936 55.93124513590908, -6.026108837974164 55.679300135674424, -6.274445838205452 55.572773135575204)), ((-2.824445834992389 58.87888213865426, -2.9699998351279646 58.939436138710676, -3.1916638353343956 58.91055413868378, -3.3133368354477 58.9500001387205, -3.3680548354986684 59.01208213877831, -3.3508368354826246 59.108191138867824, -3.2188908353597583 59.14860913890547, -3.0749998352257535 59.12041813887922, -2.947217835106727 58.99832713876552, -2.7558368349284876 58.91777313869051, -2.824445834992389 58.87888213865426)), ((-5.171945837178669 55.42944513544174, -5.341254837336351 55.47610913548519, -5.4005548373915815 55.60471813560497, -5.379581837372058 55.6701361356659, -5.265554837265853 55.71721813570974, -5.154726837162627 55.673336135668876, -5.075972837089296 55.45750013546785, -5.171945837178669 55.42944513544174)), ((-5.971945837923727 55.78832713577597, -6.074581838019327 55.81360913579951, -6.078890838023341 55.90554513588515, -5.968054837920107 56.02360913599509, -5.694445837665285 56.14721813611021, -5.971945837923727 55.78832713577597)), ((-1.2824998335563578 50.57889113092429, -1.4963908337555551 50.66791813100721, -1.5695818338237189 50.659027130998936, -1.3088908335809322 50.771109131103316, -1.0597178333488557 50.68749113102544, -1.168336833450013 50.60194513094578, -1.2824998335563578 50.57889113092429)), ((-7.233608839098764 57.503609137373445, -7.322081839181152 57.50624513737591, -7.325281839184129 57.54416313741123, -7.540836839384866 57.59013613745404, -7.472781839321499 57.655000137514435, -7.19291783906084 57.68708213754431, -7.068608838945067 57.636591137497305, -7.150690839021536 57.51221813738147, -7.233608839098764 57.503609137373445)), ((-7.214717839081146 57.11443613701101, -7.384026839238828 57.111663137008435, -7.423608839275715 57.383745137261826, -7.335554839193691 57.39582713727307, -7.223754839089565 57.33957313722067, -7.288054839149453 57.322491137204764, -7.25916383912255 57.152500137046445, -7.214717839081146 57.11443613701101)), ((-1.1047178333907652 60.485545140150606, -1.1702818334518383 60.527218140189404, -1.1783368334593263 60.63458214028938, -1.1099998333957046 60.72582714037438, -0.9938908332875656 60.72235414037115, -1.025417833316908 60.50020014016425, -1.1047178333907652 60.485545140150606)), ((-3.2313908353714 58.77555413855805, -3.2965998354321187 58.776936138559336, -3.432572835558773 58.87596313865154, -3.415136835542512 58.9073541386808, -3.3355548354684004 58.92750013869954, -3.135554835282136 58.80249113858312, -3.2313908353714 58.77555413855805)), ((-0.8349998331395909 60.67333614032549, -0.9620818332579404 60.68527314033662, -0.9388908332363428 60.794445140438285, -0.8806908331821433 60.84332714048381, -0.7576368330675223 60.8158271404582, -0.8349998331395909 60.67333614032549)), ((-5.023054837040007 55.72138213571361, -5.120417837130674 55.77874513576705, -5.20631783721069 55.896664135876875, -5.160554837168064 55.91527313589418, -5.036390837052437 55.837773135822005, -5.023054837040007 55.72138213571361)), ((-6.317499838245567 56.934163136843125, -6.3619458382869425 56.94639113685449, -6.450972838369864 57.00332713690753, -6.384163838307643 57.048045136949185, -6.257917838190053 57.0348541369369, -6.2559728381882564 56.96235413686938, -6.317499838245567 56.934163136843125)), ((-7.283336839145051 57.39750013727462, -7.388054839242585 57.42388213729919, -7.402781839256306 57.46811813734038, -7.203608839070824 57.45916313733207, -7.203336839070545 57.41693613729274, -7.283336839145051 57.39750013727462)), ((-2.685836834863295 59.1841631389386, -2.6844458348620037 59.22083613897274, -2.5927818347766447 59.29055413903768, -2.3972178345944997 59.30332713904957, -2.685836834863295 59.1841631389386)), ((-6.051108837997447 57.32443613720659, -6.073054838017896 57.430545137305415, -6.003054837952703 57.5086091373781, -5.994717837944933 57.34305413722393, -6.051108837997447 57.32443613720659)), ((-6.892781838781332 56.43860913638159, -6.9722178388553 56.449163136391434, -6.989717838871599 56.49624513643528, -6.730072838629809 56.52395413646107, -6.892781838781332 56.43860913638159)), ((-6.6783368385816 56.55554513649051, -6.6974998385994695 56.581663136514834, -6.613890838521598 56.63443613656398, -6.456008838374544 56.68277313660897, -6.6783368385816 56.55554513649051)), ((0.8991631684754964 51.35721813164918, 0.7627821683484797 51.37832713166884, 0.7405541683277761 51.4297181317167, 0.9065271684823415 51.4179091317057, 0.9461821685192717 51.373400131664255, 0.8991631684754964 51.35721813164918)), ((-7.466945839316054 56.94082713684932, -7.56028183940299 56.957909136865226, -7.442636839293414 57.05500013695564, -7.377081839232375 56.98040913688618, -7.466945839316054 56.94082713684932)), ((-2.939445835099491 58.73000013851561, -2.979999835137278 58.75027313853451, -3.032081835185778 58.8212451386006, -2.8863908350500935 58.83193613861056, -2.939445835099491 58.73000013851561))) +CPV Cape Verde MULTIPOLYGON (((-23.525836854272058 14.896109097692118, -23.633336854372175 14.913609097708417, -23.663063854399866 14.925000097719021, -23.681390854416946 14.935554097728854, -23.688608854423677 14.94250009773532, -23.723336854455994 14.977218097767661, -23.766808854496503 15.030973097817721, -23.78951785451764 15.0654180978498, -23.79249985452043 15.084718097867778, -23.766672854496363 15.253054098024549, -23.694999854429625 15.29500009806361, -23.665836854402443 15.243891098016022, -23.603199854344126 15.180691097957151, -23.576663854319406 15.157773097935817, -23.51249985425966 15.11610909789701, -23.45944585421023 15.033054097819658, -23.444726854196517 15.006109097794564, -23.449163854200663 14.980482097770704, -23.525836854272058 14.896109097692118)), ((-25.281390855907063 16.913327099570807, -25.298608855923106 16.914027099571456, -25.31083685593447 16.922918099579732, -25.36055485598078 17.044445099692908, -25.359999855980277 17.056109099703775, -25.350554855971467 17.074582099720985, -25.332363855954526 17.09500009973999, -25.204999855835922 17.159164099799753, -25.13416385576994 17.18694509982562, -25.094581855733082 17.19236409983067, -25.034445855677063 17.175554099815017, -24.973472855620287 17.10868209975274, -24.978608855625083 17.08305409972887, -24.99694585564214 17.056109099703775, -25.05139085569286 17.026109099675836, -25.099163855737345 17.003054099654364, -25.11194585574924 16.994718099646605, -25.15305485578753 16.95860909961297, -25.16306385579685 16.94082709959642, -25.171390855804617 16.928336099584783, -25.186108855818333 16.921664099578564, -25.205417855836316 16.91639109957366, -25.281390855907063 16.913327099570807)), ((-22.800554853596594 15.978054098699758, -22.876108853666977 15.980554098702086, -22.95389085373941 16.022145098740822, -22.962226853747154 16.045000098762102, -22.95708185374238 16.092218098806086, -22.91194585370033 16.160827098869987, -22.871945853663078 16.20610909891215, -22.798617853594806 16.235273098939317, -22.76444585356296 16.22777309893233, -22.723890853525205 16.214164098919653, -22.715417853517323 16.205136098911254, -22.674445853479142 16.13610909884696, -22.6661088534714 16.09500009880867, -22.682081853486267 16.057918098774138, -22.706108853508653 16.036391098754095, -22.800554853596594 15.978054098699758)), ((-24.389999855076894 14.811109097612956, -24.414445855099643 14.814718097616321, -24.426108855110527 14.818054097619424, -24.447090855130057 14.828609097629254, -24.47694585515785 14.851391097650477, -24.499172855178557 14.870836097668587, -24.510554855189156 14.883745097680602, -24.52444585520209 14.918327097712819, -24.52333685520105 14.929582097723298, -24.49847285517791 14.977636097768055, -24.48499985516537 14.991945097781368, -24.44555485512862 15.013609097801549, -24.38257285506998 15.046182097831888, -24.329726855020738 15.03000009781681, -24.313608855005754 15.011391097799489, -24.303199854996052 14.98180909777193, -24.295836854989176 14.92750009772135, -24.29555485498892 14.884445097681251, -24.29555485498892 14.870554097668318, -24.29944585499254 14.860282097658754, -24.319445855011168 14.840000097639859, -24.339445855029794 14.825000097625889, -24.365554855054114 14.812918097614642, -24.389999855076894 14.811109097612956)), ((-24.321390855012993 16.48277309916982, -24.408890855094484 16.598054099277178, -24.429581855113753 16.618054099295804, -24.43076385511486 16.647845099323547, -24.419999855104834 16.661945099336677, -24.354581855043904 16.68402709935725, -24.332499855023343 16.669445099343662, -24.206336854905828 16.64050009931671, -24.116672854822326 16.626391099303575, -24.093890854801117 16.620827099298396, -24.034172854745492 16.594164099273556, -24.024163854736173 16.572291099253192, -24.0327818547442 16.559027099240836, -24.044308854754945 16.555000099237077, -24.09819985480513 16.55444509923656, -24.11972685482516 16.55721809923915, -24.131945854836545 16.559445099241216, -24.142081854845998 16.56680009924807, -24.16166385486423 16.578891099259337, -24.212281854911367 16.59327309927272, -24.235199854932716 16.59352709927296, -24.270972854966033 16.58666409926657, -24.290554854984265 16.558054099239925, -24.30417285499695 16.53694509922026, -24.309445855001854 16.523891099208114, -24.3152818550073 16.508891099194145, -24.31833685501013 16.49777309918379, -24.321390855012993 16.48277309916982)), ((-23.167226853938075 15.11583609789676, -23.185836853955408 15.11610909789701, -23.197781853966546 15.119718097900375, -23.245145854010644 15.150136097928709, -23.253890854018806 15.164164097941764, -23.23249985399889 15.275000098044984, -23.199445853968086 15.326527098092981, -23.1408368539135 15.315000098082237, -23.125281853899025 15.307364098075126, -23.113054853887633 15.234445098007214, -23.107363853882333 15.18486409796104, -23.110281853885056 15.170554097947715, -23.126254853899923 15.148191097926883, -23.167226853938075 15.11583609789676)), ((-24.993336855638773 16.77971809944637, -25.067363855707725 16.810000099474564, -25.092290855730937 16.82958209949281, -25.082499855721835 16.858327099519585, -25.062645855703323 16.880554099540277, -24.976945855623512 16.9180540995752, -24.930281855580063 16.920691099577652, -24.921390855571786 16.915554099572873, -24.87778185553117 16.85805409951932, -24.876254855529737 16.828473099491774, -24.881526855534645 16.81763609948169, -24.894999855547212 16.811382099475864, -24.92610885557619 16.80000009946525, -24.993336855638773 16.77971809944637)), ((-22.92305485371068 16.590273099269936, -22.928054853715338 16.592500099272, -22.932226853719214 16.601945099280798, -22.976945853760867 16.706109099377812, -22.98472685376811 16.731664099401613, -22.994308853777056 16.803191099468222, -22.98833685377147 16.818191099482192, -22.95139085373708 16.840827099503286, -22.921526853709253 16.853191099514788, -22.89694585368636 16.83541809949824, -22.87749985366827 16.67194509934599, -22.892781853682493 16.60221809928106, -22.92305485371068 16.590273099269936))) +CIV Cote d'Ivoire MULTIPOLYGON (((-5.339708837334911 5.197745088659815, -5.31977283731635 5.190554088653116, -5.302990837300712 5.1961090886582895, -5.298136837296198 5.19106408865359, -5.303608837301283 5.1806910886439255, -5.353054837347344 5.148500088613957, -5.394999837386422 5.168609088632678, -5.410972837401289 5.1541640886192255, -5.360490837354263 5.118473088585986, -5.279136837278514 5.125418088592454, -5.240281837242321 5.159445088624139, -5.230390837233102 5.199209088661178, -5.166945837174012 5.195554088657772, -5.133772837143113 5.170427088634369, -5.099745837111442 5.164545088628898, -5.075381837088742 5.185554088648459, -5.05028183706537 5.188473088651179, -5.028890837045452 5.1791640886425085, -5.014199837031754 5.125227088592283, -5.33471783733026 5.100554088569297, -5.380281837372706 5.098336088567237, -5.400281837391333 5.097782088566717, -5.428381837417504 5.098291088567194, -5.483054837468416 5.091391088560769, -5.8211088377832425 5.038891088511875, -5.85949083781901 5.030636088504181, -5.8974998378544115 5.020136088494397, -5.958890837911582 4.997500088473316, -6.057708838003606 4.958891088437369, -6.076808838021407 4.942082088421714, -6.214999838150106 4.87777308836182, -6.249754838182469 4.868354088353044, -6.269717838201046 4.863891088348893, -6.316663838244779 4.850554088336466, -6.406390838328349 4.823609088311372, -6.555554838467259 4.768891088260418, -6.579163838489251 4.758191088250442, -6.599163838507877 4.737218088230918, -6.618890838526255 4.722782088217471, -6.709445838610577 4.69139108818824, -6.746390838644999 4.683745088181112, -6.788608838684297 4.684164088181504, -6.825554838718716 4.679718088177367, -6.871390838761414 4.670000088168308, -6.90819083879569 4.6571540881563465, -6.923399838809843 4.633191088134026, -7.038199838916768 4.5447180880516385, -7.071663838947927 4.530000088037923, -7.1340268390059975 4.517636088026407, -7.194617839062431 4.515018088023979, -7.206663839073656 4.508609088018005, -7.301108839161628 4.4525000879657455, -7.3819458392368915 4.3934730879107775, -7.41819983927067 4.35805408787779, -7.436390839287611 4.349164087869511, -7.469717839318633 4.344718087865374, -7.497781839344782 4.347218087867702, -7.525399839370493 4.352809087872913, -7.556045839399047 4.3780910878964505, -7.559999839402735 4.454445087967557, -7.554445839397545 4.5372180880446535, -7.551108839394459 4.6059730881086836, -7.557781839400661 4.744164088237383, -7.561390839404027 4.781527088272185, -7.587426839428275 4.810818088299456, -7.590836839431432 4.821945088309818, -7.588336839429104 4.905836088387957, -7.560554839403238 5.051391088523516, -7.503681839350264 5.095418088564514, -7.368399839224281 5.325691088778967, -7.384181839238977 5.368382088818734, -7.425972839277904 5.395973088844428, -7.436390839287611 5.433891088879747, -7.416390839268985 5.485836088928124, -7.391390839245702 5.540836088979347, -7.372499839228112 5.569445089005981, -7.399763839253495 5.631427089063706, -7.405554839258883 5.646391089077653, -7.431663839283203 5.71500008914154, -7.436108839287357 5.743609089168189, -7.433054839284495 5.789445089210872, -7.427781839279589 5.811391089231321, -7.4256908392776495 5.845554089263132, -7.447845839298282 5.8600730892766535, -7.498054839345031 5.843336089261072, -7.5636088394061005 5.8830540892980565, -7.654999839491211 5.938054089349279, -7.68757283952155 5.910764089323862, -7.75763683958678 5.946664089357299, -7.783472839610852 5.978054089386532, -7.779717839607343 6.014309089420294, -7.789163839616151 6.0705540894726795, -7.825699839650184 6.206109089598925, -7.875836839696859 6.24528208963541, -7.897781839717311 6.261945089650922, -7.999445839811983 6.300554089686884, -8.067499839875381 6.293609089680416, -8.122217839926321 6.277782089665678, -8.143608839946268 6.275554089663601, -8.169726839970565 6.275000089663081, -8.37444584016123 6.360554089742763, -8.47528184025515 6.435836089812881, -8.544099840319234 6.492154089865323, -8.606381840377253 6.507818089879919, -8.602917840374005 6.522982089894043, -8.578399840351182 6.529309089899925, -8.567017840340583 6.552118089921166, -8.54013684031554 6.561945089930319, -8.528472840304687 6.595864089961921, -8.504345840282213 6.60534508997074, -8.482881840262223 6.620209089984584, -8.457781840238852 6.636454089999717, -8.446808840228641 6.656127090018032, -8.435072840217714 6.652418090014578, -8.418054840201847 6.667218090028371, -8.378608840165128 6.7155540900733826, -8.364163840151662 6.739445090095629, -8.33972684012889 6.784445090137538, -8.327499840117525 6.810554090161858, -8.30889084010019 6.858054090206096, -8.290554840083104 7.022782090359513, -8.286663840079484 7.178473090504511, -8.323336840113626 7.203054090527402, -8.350554840138983 7.229445090551977, -8.391945840177527 7.315273090631919, -8.403054840187878 7.37721809068961, -8.40999984019436 7.420282090729714, -8.409717840194077 7.453536090760679, -8.415836840199773 7.4963910908006, -8.436117840218685 7.531427090833219, -8.469745840249999 7.56132709086107, -8.420281840203927 7.6047180909014855, -8.398199840183366 7.618191090914024, -8.285554840078447 7.582500090880785, -8.218745840016226 7.5450000908458605, -8.186463839986175 7.573054090871992, -8.186808839986497 7.600973090897995, -8.184445839984278 7.621527090917141, -8.094445839900459 7.78250009106705, -8.080426839887423 7.805400091088387, -8.11145483991632 7.841182091121709, -8.11902683992335 7.864791091143701, -8.076663839883906 7.949164091222272, -8.055972839864637 7.9766640912478834, -8.050417839859449 8.018891091287216, -8.053390839862232 8.032818091300186, -8.018890839830107 8.03028209129782, -7.9468368397629945 8.018509091286859, -7.951254839767103 8.036245091303371, -7.999445839811983 8.153891091412945, -8.020554839831647 8.179718091436996, -8.063054839871228 8.163745091422115, -8.109999839914963 8.174445091432077, -8.174717839975216 8.197773091453811, -8.228890840025684 8.240273091493393, -8.231945840028516 8.274445091525209, -8.234726840031101 8.315000091562979, -8.24101784003696 8.446545091685493, -8.188399839987966 8.4991640917345, -7.948890839764914 8.501664091736828, -7.817081839642157 8.48610909172234, -7.7841638396114945 8.454582091692984, -7.760836839589757 8.415691091656754, -7.748926839578672 8.382782091626112, -7.697781839531046 8.37083609161499, -7.653372839489691 8.383836091627089, -7.665554839501027 8.4158360916569, -7.6748638395096975 8.437636091677192, -7.675281839510092 8.547500091779511, -7.673472839508406 8.615273091842639, -7.750836839580444 8.717636091937962, -7.792363839619128 8.75555409197328, -7.883890839704378 8.775418091991781, -7.910554839729201 8.767218091984148, -7.940763839757352 8.78013609199617, -7.956254839771759 8.80444509201881, -7.956808839772293 8.82610909203899, -7.936663839753521 8.93305409213859, -7.928054839745499 8.972082092174944, -7.914163839732566 9.002918092203657, -7.898890839718348 9.018891092218539, -7.810554839636069 9.069164092265353, -7.736490839567097 9.072454092268416, -7.736108839566754 9.091664092286308, -7.797226839623647 9.125827092318133, -7.903190839722356 9.179582092368193, -7.919999839738011 9.204027092390959, -7.9172178397354 9.235000092419796, -7.877226839698153 9.351527092528329, -7.961945839777059 9.389718092563896, -8.0193088398305 9.388054092562342, -8.055836839864497 9.40333609257658, -8.064517839872593 9.41880909259099, -8.109163839914174 9.464164092633226, -8.131945839935383 9.49694509266375, -8.143608839946268 9.53389109269817, -8.145281839947813 9.557218092719893, -8.147499839949887 9.620554092778875, -8.114726839919342 9.80555409295117, -8.111181839916043 9.809000092954378, -8.10423683990959 9.814864092959837, -8.104163839909518 9.864164093005755, -8.129999839933589 9.886109093026192, -8.158199839959849 9.927573093064808, -8.147636839949996 9.983891093117265, -8.101045839906618 10.053609093182189, -8.065554839873556 10.061945093189948, -8.041945839851564 10.073327093200561, -8.019163839830355 10.089164093215302, -8.004999839817174 10.10569109323069, -7.97398183978828 10.165609093286506, -7.963754839778744 10.159864093281143, -7.939445839756104 10.15708209327856, -7.889163839709283 10.173891093294216, -7.826454839650893 10.202364093320725, -7.7877818396148655 10.2452820933607, -7.756599839585817 10.296109093408035, -7.75471783958406 10.330827093440377, -7.731945839562854 10.377218093483577, -7.7031908395360915 10.403327093507897, -7.63799083947535 10.44666409354825, -7.45166383930183 10.397218093502204, -7.359726839216194 10.350827093459003, -7.348199839205478 10.327082093436886, -7.269717839132369 10.254445093369227, -7.183890839052452 10.236664093352672, -7.128054839000441 10.223054093339996, -7.078608838954381 10.203336093321639, -7.061317838938294 10.189864093309083, -7.039581838918053 10.156245093277775, -7.019445838899287 10.14215409326465, -6.988054838870056 10.147500093269628, -6.968608838851935 10.155973093277524, -6.9483368388330575 10.177500093297567, -6.945417838830338 10.20819109332615, -6.955417838839651 10.225827093342588, -6.981045838863537 10.247845093363082, -6.960490838844379 10.333536093442888, -6.940836838826073 10.353745093461711, -6.7197178386201415 10.35055409345874, -6.656408838561191 10.354064093462014, -6.650836838555989 10.360973093468445, -6.6319458385384 10.433609093536091, -6.650281838555486 10.452773093553944, -6.669236838573141 10.460691093561309, -6.684999838587828 10.49166409359016, -6.676663838580055 10.598327093689505, -6.66916383857307 10.628191093717305, -6.645599838551135 10.663991093750653, -6.621599838528766 10.66090009374777, -6.601808838510351 10.637291093725793, -6.5893088384987095 10.610000093700364, -6.533054838446304 10.576109093668805, -6.421908838342802 10.551664093646039, -6.3880548383112625 10.594127093685586, -6.417081838338305 10.623127093712597, -6.413545838335011 10.687982093773002, -6.243399838176543 10.73525409381702, -6.224408838158865 10.722909093805526, -6.189099838125969 10.636527093725078, -6.212499838147778 10.569445093662594, -6.183054838120341 10.463609093564031, -6.18166383811905 10.434718093537128, -6.180281838117764 10.403054093507635, -6.17999983811751 10.364718093471936, -6.197163838133491 10.236364093352393, -6.188336838125252 10.231664093348016, -6.145554838085417 10.211945093329646, -6.111390838053609 10.197773093316457, -6.090281838033945 10.190836093309997, -6.00416383795374 10.191245093310371, -5.9773638379287775 10.216527093333923, -5.96402683791635 10.237636093353572, -5.937499837891664 10.284445093397167, -5.882217837840159 10.369718093476592, -5.797499837761279 10.421245093524576, -5.7823088377471095 10.426427093529398, -5.746390837713676 10.42333609352653, -5.726108837694767 10.42278209352601, -5.701808837672161 10.430000093532726, -5.669236837641819 10.445973093547607, -5.5656908375453895 10.457218093558083, -5.519845837502686 10.436273093538574, -5.5208368375035946 10.42777309353066, -5.470281837456525 10.348054093456412, -5.404099837394881 10.297636093409452, -5.371108837364147 10.289445093401824, -5.338336837333628 10.296945093408809, -5.307499837304931 10.305273093416574, -5.268608837268687 10.319164093429507, -5.2438908372456865 10.319718093430026, -5.128190837137936 10.303054093414502, -4.990281837009491 10.06389109319177, -4.9497178369717005 9.9486090930844, -4.830281836860479 9.8625000930042, -4.786390836819606 9.828054092972124, -4.785417836818681 9.782918092930089, -4.810208836841781 9.77784509292536, -4.775281836809256 9.736664092887011, -4.704445836743275 9.698054092851052, -4.655208836697426 9.702918092855583, -4.604999836650677 9.72069109287213, -4.514717836566575 9.69027309284381, -4.4261088364840475 9.65750009281328, -4.3304908363950005 9.615282092773967, -4.312454836378208 9.599973092759711, -4.309717836375654 9.601109092760765, -4.2830548363508285 9.651664092807849, -4.279445836347463 9.67582709283036, -4.262008836331233 9.742918092892836, -4.124163836202854 9.82930909297329, -4.034163836119035 9.80694509295246, -3.9363908360279822 9.86305409300472, -3.90347283599732 9.882218093022573, -3.8908368359855388 9.894236093033768, -3.8822178359775137 9.897782093037065, -3.753608835857733 9.935000093071721, -3.706390835813778 9.943609093079743, -3.6370818357492283 9.95444509308983, -3.3941638355229884 9.920000093057752, -3.2086088353501623 9.90139109304043, -3.1238908352712826 9.836109092979626, -2.986108835142943 9.724445092875627, -2.9691638351271763 9.699864092852735, -2.9374998350976966 9.627773092785603, -2.9209728350822957 9.57680909273813, -2.8508368350169633 9.481391092649275, -2.801390834970931 9.423891092595724, -2.7797178349507305 9.40360909257683, -2.7570178349295986 9.39569109256945, -2.731663834905987 9.410836092583565, -2.6855638348630464 9.481818092649675, -2.6747178348529417 9.465973092634911, -2.667781834846494 9.382773092557429, -2.687081834864472 9.225273092410745, -2.7137548348893006 9.199718092386945, -2.7608368349331442 9.121664092314248, -2.767499834939372 9.06360909226018, -2.729581834904053 9.032918092231597, -2.6598998348391376 9.01454509221449, -2.616663834798885 8.914445092121255, -2.5981908347816898 8.816664092030194, -2.617799834799939 8.784136091999898, -2.61139083479398 8.78013609199617, -2.5849908347693997 8.781245091997206, -2.5805268347652373 8.768173091985034, -2.570836834756193 8.713336091933968, -2.5594458347455884 8.644718091870061, -2.4955548346860894 8.249445091501926, -2.487781834678856 8.197773091453811, -2.5602818347463767 8.164164091422506, -2.6002818347836296 8.121945091383182, -2.660281834839509 8.023054091291087, -2.7751368349464656 7.942918091216455, -2.78499983495567 7.853609091133279, -2.83971783500661 7.7566640910429925, -2.854990835020857 7.741982091029314, -2.9236088350847353 7.595554090892946, -2.9486088351080184 7.4319450907405695, -2.9733368351310503 7.262218090582508, -3.0238908351781504 7.07305409040633, -3.09635483524562 7.050618090385441, -3.118890835266626 7.001945090340101, -3.224445835364918 6.818618090169366, -3.208890835350445 6.753336090108576, -3.2066638353483654 6.695282090054505, -3.241945835381216 6.642773090005605, -3.248890835387698 6.613745089978565, -3.231945835371903 6.5427730899124725, -3.207217835348871 6.446945089823217, -3.169163835313441 6.292773089679642, -3.167217835311618 6.269582089658044, -3.1680368353123924 6.256309089645683, -3.14708183529288 6.247918089637864, -3.094717835244097 6.145273089542272, -3.0886088352384036 6.111664089510967, -3.0702818352213512 5.991945089399465, -3.0063908351618522 5.857782089274522, -3.0136088351685544 5.707500089134555, -2.9602818351189057 5.627218089059795, -2.930972835091609 5.612009089045628, -2.899999835062772 5.616945089050219, -2.8799998350441456 5.624445089057204, -2.8399998350068927 5.629445089061861, -2.7974998349673115 5.615554089048928, -2.7644458349365095 5.579164089015038, -2.7416638349153004 5.446391088891389, -2.768890834940663 5.350554088802127, -2.78360883495435 5.2802820887366835, -2.762636834934824 5.204164088665792, -2.7441638349176287 5.1730540886368175, -2.7293088349038044 5.141391088607335, -2.73444583490857 5.112782088580687, -2.7536088349264105 5.100836088569565, -2.9281268350889604 5.10021808856898, -2.9322178350927572 5.115136088582872, -2.895836835058873 5.132782088599313, -2.8752818350397433 5.1394450886055125, -2.847954835014292 5.146836088612403, -2.8630548350283505 5.182773088645874, -2.929717835090429 5.168336088632429, -3.0061088351615695 5.128891088595694, -3.1361088352826414 5.142218088608104, -3.1979178353402062 5.207364088668768, -3.1974998353398405 5.235282088694774, -3.1713908353155205 5.276109088732795, -3.1320818352789104 5.315482088769471, -3.125836835273077 5.346945088798762, -3.1402088352864723 5.3643090888149345, -3.2261088353664604 5.357500088808592, -3.2575728353957913 5.3322910887851265, -3.2602818353983025 5.278054088734606, -3.2649998354027048 5.226391088686498, -3.2784728354152435 5.13778208860397, -3.29799083543341 5.119164088586629, -3.350136835481976 5.117364088584949, -3.3988908355273963 5.123609088590769, -3.4263908355530077 5.130554088597236, -3.4543088355790132 5.140136088606155, -3.512499835633207 5.147500088613015, -3.550063835668169 5.151345088616594, -3.6702818357801448 5.175000088638626, -3.756663835860593 5.191109088653633, -3.7968088358979912 5.1916000886540985, -3.9522178360427063 5.230273088690112, -3.9783368360670295 5.238336088697622, -4.003545836090524 5.256664088714686, -3.9377818360292736 5.271664088728656, -3.889163835983993 5.2694450887265845, -3.8452818359431262 5.265000088722445, -3.7811088358833445 5.25805408871598, -3.7347178358401436 5.259164088717014, -3.714717835821517 5.278473088734998, -3.754445835858519 5.353336088804724, -3.771390835874314 5.370554088820754, -3.811736835911887 5.372636088822688, -3.805554835906122 5.351527088803039, -3.775136835877788 5.32680908878001, -3.738754835843906 5.276036088732724, -3.795836835897063 5.27250008872943, -3.8486088359462087 5.296664088751939, -3.911390836004699 5.320000088773668, -4.060281836143361 5.296664088751939, -4.323336836388336 5.303054088757889, -4.468054836523123 5.2955540887509045, -4.4813178365354815 5.2784000887349265, -4.51249983656453 5.257218088715206, -4.605417836651043 5.238891088698139, -4.741663836777946 5.224718088684938, -4.798499836830871 5.212245088673313, -4.800836836833042 5.209718088670968, -4.80749983683927 5.176527088640057, -4.787281836820426 5.168309088632398, -4.73639083677304 5.197500088659581, -4.7144458367525885 5.2027730886645, -4.555972836605008 5.221391088681841, -4.510554836562704 5.223054088683384, -4.470836836525706 5.220273088680798, -4.446390836502957 5.217782088678476, -4.4055548364649155 5.2222180886826095, -4.29166383635885 5.242218088701236, -4.2255548362972775 5.255691088713775, -4.14639083622356 5.277218088733832, -4.126108836204651 5.277218088733832, -4.093190836174017 5.277218088733832, -4.0403458361248 5.274509088731307, -4.005690836092526 5.23097308869076, -4.195690836269478 5.2040270886656685, -4.23778183630867 5.20194508866372, -4.264717836333745 5.201391088663215, -4.349717836412907 5.197500088659581, -4.6302818366742144 5.176945088640437, -4.6625728367043 5.168609088632678, -4.7138908367520855 5.152500088617671, -4.7533368367888045 5.144445088610169, -4.778054836811833 5.141664088607584, -4.787681836820809 5.1420640886079525, -4.791390836824263 5.140836088606818, -4.839717836869255 5.134718088601119, -4.893890836919724 5.128609088595425, -4.945836836968084 5.128609088595425, -4.979163836999135 5.131809088598402, -5.00839983702636 5.1629820886274445, -4.998681837017301 5.207982088669354, -5.0266638370433725 5.214718088675625, -5.069917837083665 5.2019360886637145, -5.109826837120835 5.183873088646891, -5.164017837171286 5.207400088668805, -5.195836837200915 5.216664088677433, -5.228890837231717 5.214718088675625, -5.261017837261619 5.210945088672105, -5.2716638372715465 5.215836088676667, -5.322917837319267 5.22895408868888, -5.3408368373359565 5.201391088663215, -5.339708837334911 5.197745088659815)), ((-3.103045835251862 5.085018088554833, -3.148608835294283 5.0958360885649086, -3.168336835312658 5.117218088584821, -3.102272835251142 5.109545088577676, -3.103045835251862 5.085018088554833))) +GHA Ghana MULTIPOLYGON (((-3.1680368353123924 6.256309089645683, -3.167217835311618 6.269582089658044, -3.169163835313441 6.292773089679642, -3.207217835348871 6.446945089823217, -3.231945835371903 6.5427730899124725, -3.248890835387698 6.613745089978565, -3.241945835381216 6.642773090005605, -3.2066638353483654 6.695282090054505, -3.208890835350445 6.753336090108576, -3.224445835364918 6.818618090169366, -3.118890835266626 7.001945090340101, -3.09635483524562 7.050618090385441, -3.0238908351781504 7.07305409040633, -2.9733368351310503 7.262218090582508, -2.9486088351080184 7.4319450907405695, -2.9236088350847353 7.595554090892946, -2.854990835020857 7.741982091029314, -2.83971783500661 7.7566640910429925, -2.78499983495567 7.853609091133279, -2.7751368349464656 7.942918091216455, -2.660281834839509 8.023054091291087, -2.6002818347836296 8.121945091383182, -2.5602818347463767 8.164164091422506, -2.487781834678856 8.197773091453811, -2.4955548346860894 8.249445091501926, -2.5594458347455884 8.644718091870061, -2.570836834756193 8.713336091933968, -2.5805268347652373 8.768173091985034, -2.5849908347693997 8.781245091997206, -2.61139083479398 8.78013609199617, -2.617799834799939 8.784136091999898, -2.5981908347816898 8.816664092030194, -2.616663834798885 8.914445092121255, -2.6598998348391376 9.01454509221449, -2.729581834904053 9.032918092231597, -2.767499834939372 9.06360909226018, -2.7608368349331442 9.121664092314248, -2.7137548348893006 9.199718092386945, -2.687081834864472 9.225273092410745, -2.667781834846494 9.382773092557429, -2.6747178348529417 9.465973092634911, -2.6855638348630464 9.481818092649675, -2.689163834866406 9.487500092654955, -2.7140368348895834 9.521191092686337, -2.7450728349184885 9.54410009270768, -2.768954834940729 9.569718092731534, -2.769581834941306 9.600836092760517, -2.761390834933678 9.627364092785214, -2.7446638349181 9.653036092809131, -2.7515268349244764 9.656391092812257, -2.7850728349557414 9.688191092841862, -2.794163834964195 9.732364092883003, -2.763190834935358 9.800554092946513, -2.7772178349484022 10.008054093139762, -2.795417834965349 10.05500009318348, -2.794445834964449 10.163054093284117, -2.7713908349429914 10.216945093334303, -2.7905548349608296 10.270827093384497, -2.833890835001199 10.36555409347271, -2.891945835055253 10.519445093616028, -2.916390835078033 10.598054093689242, -2.9161088350777504 10.655282093742542, -2.9275268350884005 10.70814509379177, -2.906945835069223 10.737082093818728, -2.8369458350040304 10.88582709395726, -2.8336088350009163 10.957500094023999, -2.8340458350013478 11.002009094065457, -2.734999834909104 11.001945094065391, -2.2999998345039785 11.001109094064617, -1.9913908342165598 11.000273094063843, -1.7286088339718049 11.000273094063843, -1.5708368338248704 11.000273094063843, -1.5601818338149656 11.023564094085529, -1.4196728336841034 11.026473094088246, -1.3727818336404312 10.999718094063326, -1.0919458333788725 11.005973094069148, -0.9869458332810837 11.014445094077033, -0.9022178332021724 11.00666409406979, -0.7844458330924908 10.998054094061771, -0.679836832995079 10.997800094061532, -0.6786088329939162 10.988609094052975, -0.6661088329822746 10.956809094023356, -0.6184728329379254 10.913891093983395, -0.364163832701081 11.084718094142488, -0.2868728326290864 11.155691094208578, -0.1769458325267124 11.144718094198367, -0.1497638325014066 11.138536094192602, -0.1448638324968385 11.124300094179347, -0.0991638324542805 11.09319109415037, -0.0772178324338313 11.091664094148953, -0.0435088324024378 11.102045094158626, -0.005136832366702 11.09883609415563, 0.0313181676672514 11.077154094135437, 0.0347181676704054 11.021391094083512, 0.0322181676680771 10.990000094054267, -0.0202818323808174 10.858609093931904, -0.059445832417282 10.782218093860763, -0.0820548324383594 10.702600093786614, -0.0836088324397792 10.698609093782892, -0.0787548324352656 10.650836093738405, -0.0637548324212958 10.631245093720153, -0.0022178323639821 10.608327093698819, 0.0378451676733107 10.590418093682132, 0.1206001677503821 10.521673093618105, 0.2288911678512591 10.409445093513582, 0.2851361679036302 10.41437309351818, 0.3033361679205768 10.389445093494956, 0.3665271679794273 10.25416409336897, 0.357782167971294 10.196945093315676, 0.349718167963772 10.115273093239622, 0.3551361679688228 10.093473093219316, 0.3725001679849811 10.082773093209354, 0.3956911680065787 10.067564093195188, 0.4002271680108152 10.030491093160663, 0.3561821679697914 10.030282093160466, 0.3244451679402402 9.762218092910814, 0.2593091678795645 9.664927092820207, 0.2231911678459255 9.550136092713288, 0.2172181678403717 9.460282092629612, 0.2293091678516248 9.431018092602358, 0.2486091678696027 9.422782092594687, 0.2820821679007963 9.42000009259209, 0.3363181679513048 9.444927092615316, 0.3552821679689657 9.485136092652752, 0.4229911680320129 9.496182092663048, 0.4627821680690829 9.488336092655743, 0.5012451681049015 9.472500092640985, 0.5506271681508963 9.408891092581754, 0.5527821681529019 9.36736409254307, 0.5275001681293361 9.206391092393162, 0.5194451681218482 9.188054092376078, 0.5011091681047617 9.157500092347618, 0.455282168062098 9.060273092257077, 0.4486821680559388 9.032218092230949, 0.5134731681162918 8.919864092126303, 0.5205541681228851 8.888745092097324, 0.512782168115649 8.844445092056063, 0.5111731681141407 8.842491092054246, 0.4886821680931916 8.795827092010796, 0.3827361679945227 8.760754091978129, 0.3884731679998765 8.738473091957374, 0.4123631680221251 8.690554091912745, 0.4700731680758565 8.595554091824269, 0.5383361681394376 8.555554091787016, 0.6322181682268706 8.4934730917292, 0.6498631682433142 8.473054091710182, 0.6988911682889807 8.388609091631537, 0.7262451683144491 8.323745091571126, 0.7286091683166376 8.29520909154455, 0.7044451682941428 8.273054091523917, 0.6669451682592182 8.253745091505934, 0.6383361682325699 8.237500091490801, 0.6116631682077411 8.216109091470884, 0.5975001681945287 8.094718091357834, 0.6229271682182116 7.896727091173432, 0.5931911681905149 7.701873090991967, 0.521245168123528 7.585418090883508, 0.5141631681169372 7.557782090857771, 0.512782168115649 7.531109090832928, 0.5105541681135719 7.460554090767218, 0.5365271681377521 7.4159730907257, 0.5682631681673058 7.386664090698403, 0.598336168195317 7.387636090699303, 0.642636168236578 7.397845090708813, 0.6529541682461968 7.369645090682553, 0.652218168245497 7.282773090601651, 0.6400001682341099 7.205554090529731, 0.6087451682050187 7.0172180903543335, 0.5893091681869009 6.993609090332342, 0.5250001681270078 6.947782090289664, 0.5690271681680201 6.814718090165741, 0.6438181682376865 6.733536090090126, 0.6506911682440659 6.708191090066521, 0.6472181682408404 6.676664090037164, 0.6433361682372265 6.646809090009356, 0.659718168252482 6.610418089975468, 0.6908361682814643 6.589164089955673, 0.728363168316406 6.584200089951054, 0.7438911683308902 6.557218089925925, 0.7246731683129894 6.535645089905827, 0.7227821683112268 6.524445089895394, 0.7273631683154917 6.50152708987406, 0.75889116834486 6.447782089824003, 0.7883361683722683 6.415554089793986, 0.904718168480656 6.329445089713786, 1.0015271685708171 6.325282089709916, 1.0622181686273393 6.219445089611341, 1.0999731686625012 6.1603450895563014, 1.115000168676488 6.160836089556767, 1.2011091687566875 6.160000089555979, 1.2027821687582616 6.11777308951666, 1.198891168754642 6.1005450895006135, 1.1722181687297848 6.090136089490912, 1.1369451686969398 6.0694450894716425, 1.0988911686615097 6.040282089444489, 1.0748631686391263 6.020000089425594, 1.0305541685978596 5.961945089371525, 1.0100001685786992 5.913336089326265, 1.0032631685724311 5.885136089299991, 1.0019451685712113 5.852918089269991, 0.9923631685622922 5.82486408924386, 0.9690271685405492 5.797782089218643, 0.9450001685181633 5.7808360892028645, 0.9200001684948802 5.771945089194574, 0.7900001683738083 5.756664089180347, 0.6879911682788133 5.753854089177736, 0.6946541682850125 5.773364089195908, 0.6666631682589639 5.803191089223674, 0.6505181682439058 5.837182089255336, 0.657500168250408 5.850000089267269, 0.6577821682506908 5.880282089295477, 0.6505541682439571 5.910282089323417, 0.6358361682302416 5.944509089355293, 0.5812451681794073 6.00124508940813, 0.5064631681097467 6.058591089461544, 0.4470821680544646 6.080836089482261, 0.4051361680153889 6.081045089482458, 0.3805541679925 6.051318089454767, 0.3113181679280217 6.058573089461518, 0.2788911678978252 6.091391089492092, 0.2609731678811329 6.100973089501011, 0.2376361678593923 6.10486408950463, 0.2172181678403717 6.098191089498414, 0.2082001678319614 6.089700089490506, 0.2211091678439914 6.089718089490532, 0.252218167872968 6.082636089483927, 0.284163167902733 6.059509089462395, 0.3095091679263362 6.038818089443126, 0.322382167938315 6.035836089440352, 0.3537451679675314 6.02333608942871, 0.3785451679906089 6.026245089431413, 0.408473168018503 6.061527089464278, 0.4304181680389263 6.069791089471977, 0.4888911680934029 6.043609089447585, 0.5063911681097011 6.033609089438272, 0.5750001681735739 5.991945089399465, 0.594163168191443 5.973191089381999, 0.6177821682134379 5.9423640893532905, 0.6427091682366495 5.884582089299485, 0.639527168233684 5.845482089263072, 0.6637451682562414 5.7599270891833925, 0.4647181680708741 5.764164089187332, 0.4058361680160374 5.770273089193026, 0.3833361679950826 5.7741640891966455, 0.3626361679758077 5.777918089200142, 0.3097181679265191 5.776391089198725, 0.255836167876339 5.75778208918139, 0.1383361677669086 5.712218089138958, 0.0691631677024986 5.668954089098662, 0.0363911676719795 5.629027089061481, -0.0691638324263408 5.578054089014003, -0.2099998325575143 5.528336088967706, -0.2662548326098886 5.511245088951782, -0.2994458326407994 5.50389108894494, -0.3578548326952102 5.493136088934918, -0.4283368327608343 5.436945088882581, -0.4850728328136995 5.374864088824765, -0.5341638328594058 5.35416408880549, -0.5794458329015697 5.351664088803162, -0.6497178329670135 5.327500088780653, -0.6941638330084174 5.305136088759824, -0.7106908330238184 5.290418088746122, -0.7293088330411592 5.268054088725293, -0.7981268331052433 5.207845088669217, -0.8999998332001269 5.200282088662178, -0.9829178332773267 5.1961090886582895, -1.0444458333346347 5.197918088659975, -1.0668088333554806 5.194445088656735, -1.1291638334135428 5.163054088627504, -1.159717833441988 5.138891088605007, -1.179163833460109 5.124445088591543, -1.2116638334903769 5.109164088577316, -1.260554833535906 5.092082088561412, -1.3008368335734133 5.090000088559464, -1.415554833680261 5.065273088536443, -1.536390833792808 5.035000088508241, -1.5688268338230102 5.019427088493742, -1.595136833847505 5.0241640884981535, -1.619581833870285 5.0168090884913, -1.710326833954781 4.928036088408632, -1.7363908339790726 4.913609088395191, -1.9558368341834296 4.768609088260149, -2.058890834279424 4.730836088224976, -2.0868088343054296 4.727082088221479, -2.1041638343215823 4.747218088240231, -2.2572178344641145 4.87694508836104, -2.280136834485461 4.891809088374885, -2.329999834531918 4.913891088395459, -2.351945834552339 4.919445088400622, -2.381254834579636 4.9245820884054154, -2.4358368346304644 4.931945088412263, -2.5041638346941113 4.946391088425727, -2.5486088347354894 4.956945088435546, -2.5866638347709454 4.966945088444859, -2.729999834904447 5.006391088481607, -2.8427818350094753 5.023054088497119, -2.865836835030933 5.027500088501256, -2.9774998351349495 5.049864088522085, -3.0394458351926232 5.063745088535015, -3.0727818352236795 5.074718088545239, -3.103045835251862 5.085018088554833, -3.102272835251142 5.109545088577676, -3.041663835194697 5.107218088575507, -2.9755548351331242 5.0830540885529985, -2.9281268350889604 5.10021808856898, -2.7536088349264105 5.100836088569565, -2.73444583490857 5.112782088580687, -2.7293088349038044 5.141391088607335, -2.7441638349176287 5.1730540886368175, -2.762636834934824 5.204164088665792, -2.78360883495435 5.2802820887366835, -2.768890834940663 5.350554088802127, -2.7416638349153004 5.446391088891389, -2.7644458349365095 5.579164089015038, -2.7974998349673115 5.615554089048928, -2.8399998350068927 5.629445089061861, -2.8799998350441456 5.624445089057204, -2.899999835062772 5.616945089050219, -2.930972835091609 5.612009089045628, -2.9602818351189057 5.627218089059795, -3.0136088351685544 5.707500089134555, -3.0063908351618522 5.857782089274522, -3.0702818352213512 5.991945089399465, -3.0886088352384036 6.111664089510967, -3.094717835244097 6.145273089542272, -3.14708183529288 6.247918089637864, -3.1680368353123924 6.256309089645683))) +GIB Gibraltar MULTIPOLYGON (((-5.334508837330077 36.16256411749805, -5.337481837332831 36.14894511748537, -5.335826837331297 36.13902711747613, -5.338308837333614 36.11207311745103, -5.345090837339939 36.11273611745165, -5.356172837350243 36.12646411746444, -5.355172837349329 36.145309117481986, -5.344426837339313 36.150273117486606, -5.355799837349906 36.16330911749874, -5.334508837330077 36.16256411749805))) +LBR Liberia MULTIPOLYGON (((-11.492326843065001 6.927091090270395, -11.465836843040307 6.923609090267149, -11.4255548430028 6.939027090281513, -11.379999842960387 7.018891090355893, -11.35139084293374 7.078609090411504, -11.341663842924675 7.116664090446946, -11.338608842921843 7.150836090478776, -11.30639084289183 7.2148640905383985, -11.267499842855614 7.2350000905571505, -11.238890842828965 7.243891090565441, -11.193681842786845 7.256454090577137, -11.14166384273841 7.327500090643298, -11.137781842734796 7.343564090658262, -11.131945842729351 7.351391090665558, -11.1027818427022 7.384445090696332, -10.920099842532068 7.508227090811616, -10.868545842484053 7.527364090829437, -10.85086384246759 7.541882090842961, -10.845554842462633 7.547500090848189, -10.82999984244816 7.5663910908657925, -10.747499842371326 7.6697180909620215, -10.724726842350094 7.701945090992027, -10.705836842332502 7.7241640910127245, -10.686808842314804 7.7430540910303165, -10.652226842282573 7.760554091046615, -10.607781842241195 7.772500091057736, -10.60194584223575 7.858891091138204, -10.602636842236393 8.032918091300274, -10.524163842163318 8.117773091379306, -10.502363842143012 8.133891091394318, -10.474026842116615 8.14416409140388, -10.43826384208333 8.14124509140116, -10.358054842008613 8.145691091405297, -10.333754841985979 8.159582091418244, -10.297572841952302 8.19902709145498, -10.26430884192132 8.45513609169349, -10.266654841923497 8.488373091724455, -10.214790841875185 8.479236091715947, -10.16972684183321 8.512782091747184, -9.965554841643069 8.47500009171199, -9.896172841578448 8.502845091737925, -9.876390841560038 8.499445091734756, -9.845836841531565 8.494718091730363, -9.792845841482233 8.508400091743098, -9.669863841367686 8.490691091726603, -9.639163841339098 8.471109091708371, -9.483654841194266 8.346927091592718, -9.46278184117483 8.1655540914238, -9.407499841123354 8.018818091287145, -9.417363841132527 7.974582091245949, -9.431463841145671 7.9553450912280255, -9.437226841151016 7.901109091177517, -9.410281841125936 7.837782091118541, -9.359999841079116 7.75028209103705, -9.353854841073371 7.742364091029671, -9.358726841077925 7.73732709102498, -9.376254841094237 7.683054090974437, -9.377781841095668 7.641809090936022, -9.366945841085567 7.6111090909074335, -9.38416384110161 7.56000009085983, -9.420899841135821 7.476600090782171, -9.457781841170174 7.441318090749306, -9.48736384119772 7.370000090682879, -9.485163841195686 7.361991090675431, -9.461045841173217 7.3878450906995, -9.422499841137324 7.425000090734102, -9.324445841045986 7.426809090735787, -9.241108840968394 7.382218090694266, -9.2066638409363 7.3491640906634785, -9.09839984083547 7.230900090553334, -9.10997284084624 7.193927090518898, -9.099236840836255 7.203264090527597, -9.03694584077823 7.228609090551203, -8.972499840718228 7.251664090572675, -8.911390840661312 7.253609090574486, -8.84444584059895 7.271736090591375, -8.834445840589638 7.3094450906264825, -8.788754840547085 7.410418090720526, -8.708472840472325 7.515554090818441, -8.712226840475807 7.557636090857628, -8.71909084048221 7.560809090860587, -8.722990840485835 7.565482090864947, -8.7075728404715 7.646600090940495, -8.67499984044116 7.681109090972626, -8.660554840427693 7.695000090985559, -8.573426840346542 7.692491090983225, -8.551690840326302 7.691745090982536, -8.555626840329978 7.650345090943972, -8.550808840325487 7.615773090911773, -8.486945840266003 7.571391090870449, -8.469745840249999 7.56132709086107, -8.436117840218685 7.531427090833219, -8.415836840199773 7.4963910908006, -8.409717840194077 7.453536090760679, -8.40999984019436 7.420282090729714, -8.403054840187878 7.37721809068961, -8.391945840177527 7.315273090631919, -8.350554840138983 7.229445090551977, -8.323336840113626 7.203054090527402, -8.286663840079484 7.178473090504511, -8.290554840083104 7.022782090359513, -8.30889084010019 6.858054090206096, -8.327499840117525 6.810554090161858, -8.33972684012889 6.784445090137538, -8.364163840151662 6.739445090095629, -8.378608840165128 6.7155540900733826, -8.418054840201847 6.667218090028371, -8.435072840217714 6.652418090014578, -8.446808840228641 6.656127090018032, -8.457781840238852 6.636454089999717, -8.482881840262223 6.620209089984584, -8.504345840282213 6.60534508997074, -8.528472840304687 6.595864089961921, -8.54013684031554 6.561945089930319, -8.567017840340583 6.552118089921166, -8.578399840351182 6.529309089899925, -8.602917840374005 6.522982089894043, -8.606381840377253 6.507818089879919, -8.544099840319234 6.492154089865323, -8.47528184025515 6.435836089812881, -8.37444584016123 6.360554089742763, -8.169726839970565 6.275000089663081, -8.143608839946268 6.275554089663601, -8.122217839926321 6.277782089665678, -8.067499839875381 6.293609089680416, -7.999445839811983 6.300554089686884, -7.897781839717311 6.261945089650922, -7.875836839696859 6.24528208963541, -7.825699839650184 6.206109089598925, -7.789163839616151 6.0705540894726795, -7.779717839607343 6.014309089420294, -7.783472839610852 5.978054089386532, -7.75763683958678 5.946664089357299, -7.68757283952155 5.910764089323862, -7.654999839491211 5.938054089349279, -7.5636088394061005 5.8830540892980565, -7.498054839345031 5.843336089261072, -7.447845839298282 5.8600730892766535, -7.4256908392776495 5.845554089263132, -7.427781839279589 5.811391089231321, -7.433054839284495 5.789445089210872, -7.436108839287357 5.743609089168189, -7.431663839283203 5.71500008914154, -7.405554839258883 5.646391089077653, -7.399763839253495 5.631427089063706, -7.372499839228112 5.569445089005981, -7.391390839245702 5.540836088979347, -7.416390839268985 5.485836088928124, -7.436390839287611 5.433891088879747, -7.425972839277904 5.395973088844428, -7.384181839238977 5.368382088818734, -7.368399839224281 5.325691088778967, -7.503681839350264 5.095418088564514, -7.560554839403238 5.051391088523516, -7.588336839429104 4.905836088387957, -7.590836839431432 4.821945088309818, -7.587426839428275 4.810818088299456, -7.561390839404027 4.781527088272185, -7.557781839400661 4.744164088237383, -7.551108839394459 4.6059730881086836, -7.554445839397545 4.5372180880446535, -7.559999839402735 4.454445087967557, -7.556045839399047 4.3780910878964505, -7.525399839370493 4.352809087872913, -7.537663839381935 4.3495450878698705, -7.603890839443608 4.343609087864337, -7.713399839545588 4.357009087876818, -7.77666383960451 4.387782087905478, -7.8166638396417625 4.423891087939111, -7.8452818396684165 4.452773087966008, -7.886945839707209 4.47555408798722, -7.946317839762514 4.500900088010823, -8.085554839892183 4.541109088048273, -8.183754839983635 4.561809088067548, -8.24215484003804 4.570836088075964, -8.337781840127093 4.643336088143485, -8.538054840313606 4.74971808824256, -8.63389084040287 4.796664088286278, -8.674308840440517 4.812364088300896, -8.709445840473222 4.816664088304904, -8.724726840487449 4.831391088318625, -8.852217840606187 4.914445088395965, -8.875281840627679 4.925836088406584, -9.030281840772034 4.9962450884721505, -9.058336840798148 5.004718088480047, -9.142781840876808 5.055554088527387, -9.23889084096632 5.1227730885899945, -9.352781841072385 5.210836088672011, -9.407781841123608 5.256391088714437, -9.420408841135355 5.270909088727947, -9.433608841147674 5.28528208874134, -9.459445841171714 5.314164088768237, -9.48167284119242 5.339864088792169, -9.545554841251914 5.419718088866546, -9.593199841296297 5.478336088921139, -9.733336841426791 5.573891089010132, -9.779445841469737 5.606527089040526, -10.046599841718546 5.860418089276976, -10.095281841763892 5.926945089338929, -10.240972841899577 6.054864089458064, -10.266390841923254 6.070282089472428, -10.314999841968529 6.083054089484321, -10.34263684199425 6.09263608949324, -10.366108842016132 6.1137450895129035, -10.366754842016718 6.152382089548894, -10.371945842021546 6.162218089558053, -10.451317842095477 6.20267308959572, -10.452217842096303 6.17083608956608, -10.600836842234713 6.210000089602545, -10.638008842269358 6.21798208960999, -10.65639084228647 6.222500089614186, -10.691663842319315 6.234445089625311, -10.764163842386836 6.271109089659461, -10.810072842429605 6.3093730896951, -10.79278184241349 6.376391089757519, -10.806072842425863 6.403000089782296, -10.812226842431585 6.416391089794772, -10.828608842446869 6.441391089818055, -10.849163842465998 6.461945089837187, -10.871254842486564 6.480973089854913, -10.896108842509733 6.497218089870046, -10.969999842578545 6.537773089907816, -11.075863842677137 6.587282089953916, -11.351181842933528 6.694509090053785, -11.383126842963293 6.73874509009498, -11.371390842952366 6.769445090123568, -11.364517842945958 6.796182090148477, -11.381254842961539 6.832082090181913, -11.463336843037979 6.908054090252662, -11.492326843065001 6.927091090270395))) +MAR Morocco MULTIPOLYGON (((-4.519008836570578 35.17998211658295, -4.420417836478748 35.15124511655618, -4.35791783642054 35.1461091165514, -4.317499836382922 35.15686411656142, -4.264999836334027 35.18666411658917, -4.215554836287964 35.18971811659202, -4.119308836198343 35.202636116604054, -4.09291783617374 35.214582116615176, -4.0699998361524194 35.230136116629666, -4.020836836106611 35.245282116643764, -3.914926836007993 35.256109116653846, -3.9020818359960288 35.223673116623644, -3.864372835960893 35.202982116604375, -3.8206908359202316 35.19971811660133, -3.8016638359025023 35.20304511660443, -3.755554835859556 35.24166411664039, -3.654717835765638 35.2695821166664, -3.5847908357005167 35.229509116629075, -3.4105548355382496 35.195000116596944, -3.386390835515755 35.19305411659512, -3.336254835469049 35.19138211659357, -3.306390835441249 35.19527311659719, -3.168336835312658 35.2469361166453, -3.070763835221811 35.287709116683274, -3.0236088351778676 35.346109116737665, -2.986108835142943 35.41805411680467, -2.9608368351194088 35.3619361167524, -2.946945835106476 35.329164116721884, -2.966181835124388 35.31662711671021, -2.9650728351233795 35.281318116677326, -2.939236835099308 35.2644361166616, -2.914717835076459 35.273609116670144, -2.9013908350640634 35.25916411665669, -2.9027818350653547 35.22055411662073, -2.9120818350740194 35.19832711660004, -2.9055548350679317 35.16971811657339, -2.8769458350412833 35.14180011654739, -2.8348638350020963 35.12513611653188, -2.78379983495455 35.12238211652931, -2.794163834964195 35.14721811655244, -2.823336834991352 35.16583611656978, -2.857499835023191 35.19943611660106, -2.883681835047554 35.2345821166338, -2.807781834976879 35.184436116587094, -2.776390834947648 35.15833611656279, -2.7488908349220367 35.13974511654547, -2.676390834854516 35.110836116518556, -2.627217834808704 35.09847311650704, -2.5497178347365264 35.093891116502775, -2.5261088347145346 35.0963821165051, -2.481390834672908 35.108191116516096, -2.3430548345440627 35.12360011653044, -2.2580548344649003 35.0969361165056, -2.2169458344266104 35.08582711649527, -2.2094458344196255 35.08582711649527, -2.203263834413889 35.03749111645024, -2.180281834392474 35.01221811642671, -2.074999834294431 34.9436001163628, -1.8563908340908313 34.80138211623036, -1.797845834036309 34.7706181162017, -1.7575998339988246 34.75464511618682, -1.8008368340390746 34.663891116102306, -1.8197178340566609 34.64832711608781, -1.8549638340894887 34.614373116056186, -1.7325728339755244 34.50075411595037, -1.6925818339382772 34.489082115939496, -1.732499833975453 34.440273115894044, -1.7933368340320897 34.378327115836356, -1.750554833992254 34.34944511580946, -1.719163833963023 34.266664115732354, -1.658336833906361 34.100000115577146, -1.6544458339027415 34.08360911556187, -1.6874998339335434 33.9663821154527, -1.7083368339529272 33.890827115382336, -1.7282728339715163 33.704491115208796, -1.6951368339406372 33.67846411518455, -1.65437283390267 33.66277311516994, -1.6055548338572123 33.58985411510203, -1.6006908338526955 33.55971811507396, -1.5998638338519129 33.51624511503347, -1.629163833879204 33.443191114965444, -1.6488908338975818 33.41221811493659, -1.6672908339147057 33.37651811490335, -1.6666638339141286 33.25888211479379, -1.6461088338949708 33.22639111476353, -1.5805548338339293 33.1458271146885, -1.5488908338044496 33.11138211465642, -1.5172178337749358 33.088609114635204, -1.49020883374979 33.07347311462111, -1.47826383373868 33.050754114599954, -1.4774998337379657 33.01957311457092, -1.4861818337460306 32.9818731145358, -1.5424998337985016 32.939436114496274, -1.3827818336497444 32.72444511429606, -1.266945833541854 32.66721811424276, -1.0118088333042579 32.50555411409219, -1.0402818333307664 32.47193611406088, -1.0638908333527581 32.45000011404046, -1.1176368334027984 32.41693611400966, -1.151108833433966 32.410554114003716, -1.1915268334716131 32.4056911139992, -1.2159728334943907 32.3825001139776, -1.2504178335264555 32.32347311392262, -1.2580548335335777 32.240827113845654, -1.257726833533269 32.208018113815086, -1.2918728335650655 32.172291113781824, -1.2758368335501302 32.15624511376687, -1.2416638335183166 32.16777311377761, -1.2066638334857203 32.17277311378227, -1.1759728334571378 32.13874511375057, -1.1805548334614002 32.11221811372587, -1.207781833486763 32.09180911370686, -1.2386088335154568 32.0858271137013, -1.2591638335346147 32.08527311370078, -1.2862548335598376 32.092491113707496, -1.3122178335840147 32.10041811371488, -1.472499833733309 32.1094451137233, -1.4924998337519355 32.107773113721734, -1.659445833907398 32.11110911372484, -1.9016638341329895 32.11999111373311, -1.9311088341603977 32.12110911373415, -1.982781834208538 32.124718113737515, -2.1023638343199025 32.13610911374812, -2.1349998343503103 32.14305411375459, -2.1663908343795413 32.14610911375743, -2.264163834470594 32.154718113765455, -2.302499834506307 32.15721811376778, -2.338190834539546 32.15721811376778, -2.4177818346136632 32.14916411376028, -2.4638908346566097 32.143609113755105, -2.859445835024985 32.08652711370195, -2.8954908350585526 32.068609113685255, -2.9344458350948344 32.03290911365201, -2.9434728351032504 32.01138211363197, -2.948472835107907 31.96305411358695, -2.946390835105973 31.93986411356535, -2.949999835109338 31.89860911352693, -2.9594458351181174 31.86889111349926, -2.9763908351339126 31.847500113479327, -2.9994458351553703 31.83332711346614, -3.0969458352461743 31.796664113431987, -3.159717835304633 31.778327113414917, -3.2347178353744823 31.758054113396028, -3.2874998354236595 31.744718113383612, -3.386108835515472 31.726109113366277, -3.4199998355470598 31.707773113349205, -3.4813908356042305 31.679445113322828, -3.5170818356374696 31.67326411331706, -3.5477818356660578 31.678054113321522, -3.56916383568597 31.68250011332566, -3.6305548357431405 31.696391113338606, -3.6543088357652778 31.708536113349908, -3.6852818357941146 31.71582711335671, -3.717917835824494 31.716109113356964, -3.7913908358929405 31.705554113347134, -3.813472835913501 31.69805411334015, -3.828336835927331 31.682773113325922, -3.8349998359335586 31.650273113295654, -3.842990835940981 31.489791113146197, -3.8265998359257196 31.45291811311185, -3.803890835904582 31.339164113005907, -3.8255548359247484 31.182782112860266, -3.8238908359232084 31.161591112840526, -3.801526835902365 31.14763611282754, -3.781663835883876 31.152636112832198, -3.697781835805756 31.150273112829993, -3.6001368357148067 31.090827112774633, -3.592845835708033 31.028264112716357, -3.6022178357167434 30.991391112682024, -3.62221783573537 30.973609112665457, -3.6466638357581473 30.961109112653816, -3.704717835812204 30.941945112635977, -3.7502818358546506 30.940973112635064, -3.8002818359012167 30.94110911263519, -3.8405548359387183 30.938054112632344, -3.879999835975468 30.93416411262872, -3.925281836017632 30.928609112623548, -3.9874998360755853 30.91832711261398, -4.008054836094715 30.913327112609323, -4.033336836118252 30.90152711259833, -4.1327818362108815 30.80444511250792, -4.149445836226391 30.786945112491622, -4.164999836240895 30.772500112478156, -4.21513683628757 30.742636112450356, -4.261108836330379 30.72777311243651, -4.337363836401408 30.69347311240456, -4.359999836422503 30.679164112391234, -4.3788908364400925 30.660273112373645, -4.399581836459362 30.647218112361486, -4.429999836487696 30.637218112352173, -4.4677818365228745 30.631664112346996, -4.639163836682485 30.600827112318285, -4.915136836939496 30.509854112233555, -4.938190836960985 30.495554112220233, -4.969717836990327 30.46332711219023, -4.994445837013359 30.42360911215323, -5.01083683702862 30.39389111212556, -5.029163837045701 30.35916411209321, -5.04805483706329 30.31666411205363, -5.080972837093952 30.262364112003056, -5.139163837148146 30.192364111937863, -5.152136837160242 30.1804731119268, -5.170836837177632 30.160273111907983, -5.223054837226272 30.107500111858826, -5.2758368372754205 30.055273111810195, -5.313608837310596 30.02583611178278, -5.347499837342184 30.000273111758972, -5.390836837382523 29.97639111173673, -5.530690837512793 29.905973111671145, -5.569481837548921 29.895227111661143, -5.627499837602954 29.894164111660146, -5.694445837665285 29.88916411165549, -5.733336837701501 29.884718111651353, -5.790554837754797 29.8763911116436, -5.898326837855166 29.856673111625227, -5.941254837895144 29.840691111610354, -5.992917837943253 29.830554111600904, -6.039026837986199 29.833054111603232, -6.063890838009371 29.843745111613188, -6.084999838029034 29.847918111617076, -6.111108838053326 29.848891111617988, -6.139308838079614 29.84819111161734, -6.161945838100678 29.841391111611003, -6.195136838131589 29.808264111580144, -6.224445838158886 29.798882111571416, -6.400281838322655 29.804445111576598, -6.481663838398447 29.739582111516185, -6.497363838413065 29.66944511145087, -6.511254838425998 29.633891111417753, -6.527781838441399 29.612918111398216, -6.554163838465968 29.586936111374015, -6.583399838493193 29.568327111356695, -6.635554838541765 29.56610911135462, -6.6969458385989356 29.575136111363037, -6.7322908386318545 29.589236111376167, -6.785281838681215 29.603609111389545, -6.84083683873294 29.612218111397567, -7.1049998389789835 29.640273111423696, -7.126254838998761 29.63582711141956, -7.1949998390628025 29.597773111384114, -7.296108839156972 29.539854111330172, -7.316808839176247 29.51742711130929, -7.336108839194225 29.486382111280378, -7.356390839213105 29.46166411125735, -7.436390839287611 29.396109111196296, -7.461945839311397 29.38860911118931, -7.487781839335469 29.38527311118621, -7.518336839363911 29.38721811118802, -7.539445839383575 29.389718111190348, -7.560554839403238 29.393609111193967, -7.589717839430392 29.39555411119578, -7.612917839451995 29.393327111193713, -7.6423638394794295 29.386109111186983, -7.6629178394985615 29.369582111171596, -7.6902818395240615 29.341109111145073, -7.798054839624427 29.25610911106591, -7.986945839800342 29.122773110941736, -8.144999839947559 29.05652711088004, -8.17236383997303 29.04347311086788, -8.199999839998782 29.026664110852224, -8.359726840147516 28.917636110750692, -8.374999840161763 28.903327110737365, -8.39666384018193 28.872918110709037, -8.410554840194862 28.849445110687185, -8.495554840274025 28.79055411063233, -8.521108840297842 28.779445110621992, -8.555554840329904 28.769718110612928, -8.578472840351253 28.75985411060374, -8.62833684039768 28.73277311057852, -8.667217840433892 28.7094451105568, -8.667217840433892 27.933327109833982, -8.666663840433387 27.666664109585625, -9.299999841023237 27.666109109585108, -9.333608841054541 27.666664109585625, -9.667217841365215 27.666664109585625, -9.833336841519923 27.666664109585625, -9.933608841613335 27.666664109585625, -9.999999841675162 27.66638210958537, -10.022517841696128 27.66500910958409, -10.067236841737781 27.66423610958337, -10.120508841787398 27.664773109583862, -10.299736841954314 27.666573109585542, -12.841099844321121 27.666445109585425, -13.067499844531994 27.666109109585108, -13.166945844624593 27.66638210958537, -13.17496384463206 27.6669541095859, -13.16958184462706 27.682218109600115, -13.15139084461012 27.700691109617324, -13.11583684457699 27.71305410962883, -13.067781844532249 27.73860910965263, -13.039863844506243 27.758191109670875, -13.022363844489945 27.777354109688716, -13.002499844471458 27.81971810972817, -12.985281844455415 27.860836109766467, -12.977217844447893 27.889445109793115, -12.962708844434388 27.920482109822018, -12.902499844378326 27.95416410985338, -12.846390844326066 27.964718109863213, -12.764445844249735 27.97888210987641, -12.704726844194113 27.985554109882614, -12.614726844110294 27.990273109887013, -12.382499843894038 28.03110910992504, -12.063054843596518 28.083891109974203, -11.941945843483722 28.148054110033954, -11.732781843288933 28.226391110106917, -11.641390843203823 28.260000110138208, -11.546663843115596 28.290554110166667, -11.511945843083254 28.30374511017895, -11.451108843026617 28.340409110213102, -11.303336842888967 28.524718110384754, -11.261108842849666 28.556945110414773, -11.162499842757825 28.6427731104947, -11.102154842701623 28.700209110548187, -11.082781842683573 28.73666411058214, -11.054445842657174 28.756391110600518, -10.92528184253689 28.81888211065872, -10.720281842345969 28.917500110750552, -10.639581842270815 28.947500110778492, -10.613608842246634 28.962082110792082, -10.550554842187893 29.00610911083308, -10.521108842160487 29.02832711085378, -10.50097284214172 29.045409110869684, -10.441663842086484 29.097218110917936, -10.430763842076345 29.117709110937014, -10.3944458420425 29.16860911098442, -10.347636841998906 29.229164111040816, -10.30694584196101 29.263336111072647, -10.284581841940195 29.274445111082997, -10.254926841912578 29.29090011109831, -10.228199841887687 29.317918111123475, -10.138054841803722 29.428054111226047, -10.080554841750171 29.51944511131117, -10.074445841744478 29.54305411133315, -10.072781841742938 29.56389111135256, -10.061945841732836 29.586391111373516, -9.877226841560798 29.776945111550987, -9.821945841509319 29.833327111603495, -9.807781841496137 29.848891111617988, -9.792917841482279 29.86763611163545, -9.769726841460681 29.90639111167154, -9.736945841430156 29.962773111724047, -9.663472841361738 30.097918111849907, -9.640972841340783 30.165000111912377, -9.608199841310267 30.37374511210679, -9.608399841310444 30.402500112133566, -9.704999841400422 30.54319111226461, -9.79360884148295 30.612500112329144, -9.831254841517989 30.62756411234318, -9.853890841539084 30.726945112435743, -9.837499841523822 30.755554112462377, -9.823890841511144 30.779445112484638, -9.812990841500977 30.818609112521102, -9.817263841504968 30.882354112580472, -9.826254841513332 30.95194511264529, -9.844445841530273 31.115000112797134, -9.842636841528588 31.13500011281576, -9.827781841514764 31.209164112884835, -9.814581841502473 31.25597311292843, -9.80680884149524 31.281945112952627, -9.80278184149148 31.32618211299382, -9.818754841506347 31.377009113041154, -9.809163841497423 31.446664113106024, -9.775281841465869 31.50305411315854, -9.735281841428616 31.560554113212092, -9.689163841385664 31.626945113273933, -9.684999841381796 31.6708271133148, -9.680690841377782 31.706245113347777, -9.643054841342718 31.75583611339397, -9.625836841326674 31.775836113412595, -9.454445841167058 31.94333611356859, -9.374999841093086 32.01444511363482, -9.356663841076 32.03346411365253, -9.277781841002536 32.18360911379236, -9.26499984099064 32.227491113833224, -9.260554840986487 32.31638211391602, -9.270836840996054 32.51027311409659, -9.279336841003982 32.543954114127956, -9.21444584094354 32.60750011418715, -9.170281840902419 32.63888211421637, -9.135554840870071 32.66471811424043, -9.08569984082365 32.70569111427859, -9.053172840793337 32.7348001143057, -9.02999984077178 32.76478211433361, -8.948890840696237 32.82728211439182, -8.841663840596368 32.91527311447378, -8.751945840512803 32.99194511454519, -8.629581840398856 33.11402711465888, -8.615072840385352 33.14534511468804, -8.567781840341297 33.21971811475731, -8.53833684031386 33.25054511478602, -8.501945840279973 33.254854114790035, -8.47528184025515 33.25332711478862, -8.451390840232904 33.258045114793006, -8.407781840192285 33.27763611481126, -8.355836840143894 33.32027311485096, -8.329726840119577 33.34721811487606, -8.30618184009765 33.372982114900054, -8.248754840044171 33.39513611492069, -8.178890839979118 33.40860911493323, -8.11354583991826 33.423045114946675, -7.950281839766205 33.48721811500644, -7.857917839680169 33.52750011504396, -7.833608839657558 33.53582711505172, -7.707499839540105 33.576109115089224, -7.636599839474059 33.61294511512354, -7.606108839445682 33.60638211511743, -7.496663839343739 33.64832711515649, -7.388608839243119 33.718891115222206, -7.228336839093828 33.796391115294384, -7.1955458390633 33.809891115306954, -7.086663838961897 33.851945115346126, -7.080836838956458 33.853609115347666, -7.039026838917522 33.86874511536176, -6.968890838852218 33.91638211540614, -6.933336838819088 33.941664115429674, -6.843054838735014 34.018609115501334, -6.797499838692602 34.06207311554182, -6.716390838617059 34.196109115666644, -6.654999838559888 34.29555411575926, -6.639717838545636 34.31832711578048, -6.597781838506592 34.37610911583428, -6.582499838492367 34.39110911584825, -6.488336838404649 34.5408361159877, -6.379163838302986 34.72138211615585, -6.358608838283828 34.75555411618767, -6.334163838261077 34.800282116229326, -6.315281838243493 34.83500011626167, -6.279445838210108 34.90694511632867, -6.242499838175718 35.00832711642309, -6.21166383814699 35.09304511650198, -6.171390838109488 35.18388211658659, -6.104717838047378 35.333054116725506, -6.052217837998484 35.45027311683468, -5.996663837946755 35.579436116954966, -5.966108837918284 35.6647181170344, -5.937499837891664 35.759436117122604, -5.918745837874184 35.79064511715167, -5.848336837808603 35.79666411715728, -5.744445837711851 35.80554511716555, -5.595836837573444 35.82193611718081, -5.5437548375249435 35.842491117199955, -5.509026837492598 35.871527117227004, -5.488336837473327 35.89721811725093, -5.455554837442804 35.91443611726696, -5.407781837398318 35.919164117271364, -5.395554837386925 35.91633611726873, -5.392363837383954 35.90055411725403, -5.377217837369841 35.871518117227, -5.354445837348635 35.84721811720436, -5.345836837340613 35.84166411719919, -5.344999837339856 35.829991117188314, -5.338890837334162 35.790554117151586, -5.329717837325603 35.737500117102186, -5.320281837316827 35.70027311706751, -5.248954837250409 35.574373116950255, -5.21069083721477 35.55055411692807, -4.9663908369872445 35.36694511675708, -4.9168088369410725 35.31847311671193, -4.791663836824512 35.250827116648935, -4.729999836767092 35.220827116620995, -4.695836836735253 35.20888211660987, -4.601945836647815 35.19221811659435, -4.519008836570578 35.17998211658295))) +PRT Portugal MULTIPOLYGON (((-8.645545840413718 41.018582122020575, -8.657217840424579 41.04193612204233, -8.729445840491849 41.23666412222369, -8.78971784054798 41.421391122395704, -8.778845840537855 41.46757312243872, -8.781108840539986 41.484445122454446, -8.799717840557292 41.56666412253102, -8.815090840571628 41.617236122578106, -8.8730548406256 41.72430012267782, -8.880836840632838 41.75166412270332, -8.879726840631804 41.841382122786854, -8.862363840615643 41.864027122807954, -8.813608840570254 41.902500122843776, -8.786217840544737 41.91909112285924, -8.75241784051326 41.931736122871, -8.745008840506358 41.95250012289034, -8.741181840502776 41.96783612290463, -8.639999840408564 42.04527312297674, -8.613890840384244 42.05638212298709, -8.51805484029498 42.08304512301194, -8.473608840253604 42.08471812301349, -8.446108840227993 42.08471812301349, -8.31055484010173 42.10360912303108, -8.251945840047142 42.138609123063674, -8.197836839996768 42.15067312307491, -8.083754839890503 42.06048212299092, -8.084654839891357 42.022982122955995, -8.1022268399077 42.010964122944785, -8.134726839937969 41.99888212293354, -8.16528183996644 41.974445122910794, -8.208754840006918 41.928745122868236, -8.218336840015837 41.90749112284843, -8.193681839992877 41.87340012281669, -8.165490839966623 41.8586091228029, -8.161663839963069 41.82750012277393, -8.163808839965071 41.817182122764336, -8.136108839939283 41.80916412275687, -8.087781839894262 41.80943612275712, -8.067499839875381 41.815273122762534, -8.055063839863777 41.81951812276651, -8.035281839845368 41.82721812277367, -7.926663839744208 41.87777312282074, -7.876663839697642 41.85263612279735, -7.858054839680307 41.860000122804195, -7.759445839588466 41.89750012283912, -7.69278183952639 41.90388212284506, -7.598054839438163 41.8652731228091, -7.609163839448513 41.835691122781554, -7.418608839271059 41.82277312276952, -7.331108839189568 41.84499112279022, -7.268336839131081 41.86360912280756, -7.207345839074293 41.88383612282641, -7.200554839067962 41.883609122826186, -7.186945839055284 41.8983271228399, -7.178608839047541 41.931591122870884, -7.184999839053489 41.97735412291351, -7.131181839003347 41.99380912292881, -7.09889083897329 41.98360912291932, -7.075836838951801 41.95916412289657, -7.056108838933426 41.95110912288905, -7.008754838889331 41.954582122892276, -6.982845838865217 41.97386412291024, -6.940417838825681 41.95110912288905, -6.9061088387937275 41.9447181228831, -6.697217838599187 41.93666412287561, -6.602290838510783 41.949164122887254, -6.54860883846078 41.9219451228619, -6.528054838441648 41.83943612278506, -6.547499838459771 41.76500012271572, -6.54562683845802 41.687009122643104, -6.501808838417219 41.65943612261742, -6.460972838379178 41.670691122627886, -6.429445838349807 41.68000012263656, -6.347217838273224 41.67221812262932, -6.303608838232606 41.66332712262104, -6.256108838188368 41.64040912259969, -6.190454838127238 41.57963612254309, -6.212290838147567 41.536527122502946, -6.2958368382253695 41.436100122409414, -6.357781838283074 41.380554122357694, -6.438054838357829 41.31888212230024, -6.510281838425101 41.26500012225006, -6.558336838469842 41.24221812222885, -6.589163838498564 41.241936122228594, -6.618054838525467 41.24638212223272, -6.643890838549538 41.24471812223118, -6.6884728385910535 41.210273122199084, -6.75333683865145 41.136664122130554, -6.754308838652378 41.10749112210337, -6.774445838671113 41.07069112206909, -6.80555483870009 41.0455541220457, -6.841663838733723 41.03013612203134, -6.924408838810791 41.03096412203209, -6.930554838816505 41.01555412201776, -6.89139083878004 40.97471812197972, -6.8629178387535035 40.95263612195916, -6.8017368386965416 40.85700912187011, -6.819445838713023 40.73332712175491, -6.796108838691282 40.52443612156037, -6.815554838709403 40.38777312143307, -6.831108838723878 40.317218121367375, -6.862299838752932 40.27151812132482, -6.878336838767865 40.26180012131576, -6.91028183879763 40.25638212131071, -6.946526838831375 40.258982121313124, -7.008336838888937 40.22680012128316, -7.027217838906523 40.187773121246806, -7.008890838889471 40.132773121195584, -6.982636838865005 40.11916412118293, -6.946945838831766 40.11319112117735, -6.928890838814965 40.101664121166635, -6.882499838771764 40.044164121113084, -6.8706908387607655 40.01597312108683, -6.989717838871599 39.72471812081557, -7.01721783889721 39.675000120769255, -7.052872838930426 39.663754120758796, -7.157708839028061 39.66034512075561, -7.205554839072619 39.667218120762016, -7.263608839126704 39.67208212076653, -7.3072178391672935 39.6566641207522, -7.3328458391911795 39.645273120741564, -7.411108839264074 39.64874512074482, -7.53250883937713 39.66941812076405, -7.524999839370139 39.63666412073357, -7.5027818393494385 39.60277312070198, -7.375690839231083 39.493745120600465, -7.3227818391818005 39.38832712050228, -7.31360883917327 39.344718120461664, -7.242781839107295 39.21305412033905, -7.145836839016994 39.11388212024667, -7.12486383899747 39.10638212023969, -7.1027818389769095 39.10471812023815, -7.053263838930803 39.119918120252294, -7.013190838893479 39.11180012024474, -6.982781838865151 39.09138212022572, -6.96110883884495 39.0566641201934, -6.955872838840094 39.02319112016221, -7.059999838937074 38.860545120010755, -7.084163838959569 38.83554511998747, -7.1641638390340745 38.78194511993755, -7.2073548390742985 38.74926411990711, -7.2571548391206875 38.723400119883024, -7.267217839130041 38.703327119864326, -7.317081839176495 38.444718119623474, -7.2965268391573375 38.431382119611044, -7.2776368391397455 38.41944511959994, -7.192217839060191 38.32027311950756, -7.169717839039237 38.28443611947421, -7.144999839016236 38.2461091194385, -7.1299998390022665 38.22582711941962, -7.102217838976372 38.18916411938548, -7.08778183896294 38.17700911937416, -7.01680883889685 38.19380911938978, -6.993336838874967 38.209445119404364, -6.947572838832372 38.21742711941178, -6.933745838819476 38.209073119404025, -6.941526838826718 38.170409119368, -6.9516638388361685 38.140000119339675, -7.004026838884926 38.031109119238266, -7.12360883899629 38.0099911192186, -7.21083683907753 37.99693611920644, -7.253545839117322 37.983673119194094, -7.25194583911582 37.959445119171534, -7.252781839116608 37.93097311914501, -7.281663839143505 37.86555411908408, -7.319999839179218 37.81527311903726, -7.386945839241548 37.76971811899483, -7.423054839275181 37.74389111897078, -7.4469458392974275 37.69943611892937, -7.524445839369605 37.55250011879254, -7.512536839358518 37.528545118770225, -7.503054839349687 37.5225001187646, -7.484726839332609 37.4988821187426, -7.4713908393202075 37.4813821187263, -7.461390839310894 37.45721811870379, -7.447217839297679 37.41860911866783, -7.434717839286037 37.366945118619725, -7.431854839283375 37.25319111851378, -7.4190268392714245 37.18054511844612, -7.444581839295239 37.17874511844444, -7.4719458393207105 37.17777311844354, -7.559581839402341 37.15319111842065, -7.580417839421727 37.144436118412486, -7.618681839457366 37.11548211838553, -7.758336839587429 37.03500011831058, -7.897781839717311 37.00889111828626, -7.973054839787409 37.008327118285735, -8.012917839824524 37.02208211829854, -8.044581839854033 37.04304511831806, -8.067781839875636 37.054718118328935, -8.11083683991572 37.07430011834717, -8.175281839975753 37.09221811836386, -8.373754840160586 37.10208211837305, -8.407781840192285 37.09069111836244, -8.439581840221905 37.086109118358166, -8.511108840288529 37.10305411837395, -8.658890840426153 37.10889111837939, -8.814726840571268 37.06693611834031, -8.926672840675536 37.016109118292974, -8.98923684073381 37.02630911830248, -8.984163840729082 37.05221811832661, -8.94909984069642 37.10131811837233, -8.924445840673457 37.13013611839918, -8.906526840656767 37.160618118427564, -8.85805484061163 37.272773118532015, -8.828890840584478 37.38055411863239, -8.795863840553722 37.4425091186901, -8.787226840545657 37.52416411876614, -8.787499840545934 37.72221811895059, -8.80583684056299 37.766391118991734, -8.79186384054998 37.819091119040806, -8.79097284054916 37.82916411905019, -8.799308840556932 37.914018119129224, -8.810554840567391 37.9319361191459, -8.839445840594294 38.014718119223005, -8.806808840563917 38.08902711929221, -8.796108840553956 38.1183271193195, -8.789445840547728 38.13944511933917, -8.77916384053816 38.180545119377456, -8.77581784053504 38.211764119406524, -8.777217840536338 38.25638211944806, -8.779726840538672 38.30110911948972, -8.786390840544897 38.32889111951559, -8.792217840550308 38.34916411953449, -8.802499840559904 38.37444511955803, -8.723336840486155 38.41666411959736, -8.673336840439589 38.41389111959475, -8.768890840528599 38.517218119690995, -8.898608840649416 38.5177731196915, -8.918890840668297 38.50999111968426, -8.99278184073711 38.46360911964106, -9.062781840802302 38.43721811961649, -9.08360884082171 38.43305411961262, -9.183890840915097 38.41971811960019, -9.200281840930359 38.45166411962995, -9.183754840914958 38.47805411965453, -9.17889084091044 38.509164119683504, -9.183890840915097 38.53694511970937, -9.205417840935127 38.595409119763815, -9.22013684094884 38.61944511978621, -9.239863840967217 38.64097311980626, -9.274236840999237 38.668745119832124, -9.215281840944328 38.67832711984104, -9.159726840892574 38.67790911984065, -9.074445840813155 38.631100119797054, -9.028054840769954 38.700000119861215, -9.015554840758313 38.729436119888646, -8.948199840695594 38.762845119919746, -8.919745840669094 38.7658911199226, -8.919726840669057 38.77027311992666, -8.929445840678113 38.800409119954736, -8.955845840702722 38.8408541199924, -8.979545840724768 38.85012712000105, -8.989445840733993 38.90069112004812, -8.99430884073854 38.940618120085304, -9.06528184080463 38.85500012000557, -9.07902684081742 38.83055411998282, -9.08916384082687 38.805000119959004, -9.092781840830241 38.77144511992776, -9.09528184083257 38.74735411990534, -9.118472840854167 38.71721811987726, -9.212499840941746 38.690827119852685, -9.322226841043914 38.6766641198395, -9.429726841144031 38.69193611985372, -9.476045841187187 38.70527311986612, -9.490836841200945 38.79388211994865, -9.462499841174576 38.839582119991206, -9.444517841157818 38.86305412001309, -9.42194584113679 38.91805412006431, -9.41263684112812 38.94943612009354, -9.417363841132527 38.99172712013291, -9.426254841140803 39.01152712015136, -9.419172841134213 39.07860912021383, -9.396663841113252 39.11777312025029, -9.364726841083495 39.163054120292486, -9.339717841060207 39.224854120350045, -9.337363841058021 39.26332712038587, -9.338345841058953 39.29297312041348, -9.359581841078722 39.3566641204728, -9.293336841017009 39.39139112050512, -9.227217840955433 39.435273120545986, -9.144163840878093 39.52638212063084, -9.085554840823505 39.615000120713376, -9.079445840817812 39.64027312073691, -9.047499840788078 39.73221812082255, -9.026945840768917 39.77555412086292, -8.984726840729593 39.85055412093277, -8.931945840680442 39.96416412103858, -8.896363840647325 40.04540012111423, -8.890972840642291 40.05500012112316, -8.874726840627147 40.09610912116145, -8.862363840615643 40.13943612120181, -8.881390840633372 40.24277312129803, -8.850554840604644 40.30693612135781, -8.840281840595082 40.33639112138522, -8.799999840557575 40.46832712150811, -8.790281840548516 40.50416412154149, -8.785863840544408 40.52070912155688, -8.782499840541277 40.53777312157277, -8.77749984053662 40.560136121593615, -8.729681840492077 40.63571812166401, -8.69166384045667 40.661109121687645, -8.660136840427299 40.691109121715584, -8.678336840444246 40.7758361217945, -8.703054840467274 40.718609121741196, -8.730990840493291 40.686191121711005, -8.726663840489266 40.72777312174972, -8.717781840480995 40.752773121773004, -8.69659984046126 40.8059001218225, -8.677781840443743 40.869164121881425, -8.668054840434678 40.90388212191374, -8.645554840413723 41.002636122005725, -8.645545840413718 41.018582122020575)), ((-25.45610885606979 37.70555411893507, -25.563608856169907 37.728882118956804, -25.689726856287336 37.737909118965206, -25.71139085630753 37.74471811897155, -25.726945856322004 37.75332711897957, -25.811390856400664 37.803600119026385, -25.85749985644361 37.835827119056404, -25.864308856449952 37.853609119072956, -25.854163856440493 37.883891119101165, -25.84249985642964 37.90221811911823, -25.795281856385657 37.90833611912393, -25.77708185636871 37.90930011912482, -25.74778185634142 37.901109119117194, -25.72889085632383 37.89527311911176, -25.699026856296 37.8741641190921, -25.698199856295247 37.85575411907496, -25.677499856275972 37.840964119061184, -25.599726856203517 37.8277731190489, -25.584999856189825 37.82666411904786, -25.549445856156694 37.82527311904657, -25.43555485605063 37.830554119051484, -25.40139085601882 37.837491119057944, -25.37396385599328 37.84805411906778, -25.327081855949615 37.86360911908227, -25.193608855825318 37.86443611908304, -25.177226855810034 37.863327119082015, -25.165281855798924 37.85889111907788, -25.154999855789356 37.85333611907271, -25.14055485577589 37.840691119060935, -25.133608855769438 37.822491119043974, -25.13097285576697 37.808464119030916, -25.140836855776143 37.76527311899069, -25.146390855781334 37.755554118981635, -25.15528185578961 37.74888211897543, -25.16666385580021 37.74443611897128, -25.213336855843664 37.73763611896496, -25.342781855964233 37.723609118951885, -25.45610885606979 37.70555411893507)), ((-16.943608848141906 32.63750011421509, -16.988336848183536 32.65527311423163, -17.06778184825754 32.6769361142518, -17.10249984828988 32.683327114257764, -17.158054848341607 32.70916411428182, -17.195972848376925 32.72888211430019, -17.206390848386633 32.73750011430822, -17.232781848411207 32.77000011433849, -17.239172848417155 32.77832711434624, -17.254517848431448 32.812845114378376, -17.19069984837202 32.86860911443031, -17.169726848352468 32.87028211443187, -17.158890848342395 32.86527311442721, -17.151945848335913 32.85750011441998, -17.133336848318578 32.83888211440264, -17.12528184831109 32.83193611439616, -17.10249984828988 32.82332711438815, -17.053054848243818 32.8094361143752, -17.02999984822236 32.810554114376245, -17.01319984820671 32.81346411437896, -16.959999848157167 32.830827114395134, -16.913336848113687 32.83916411440289, -16.90222684810334 32.837909114401725, -16.715554847929496 32.75889111432814, -16.720836847934407 32.74528211431546, -16.819581848026388 32.646109114223094, -16.821890848028545 32.64434511422145, -16.839172848044626 32.63860911421611, -16.943608848141906 32.63750011421509)), ((-28.24667285866869 38.3719361195557, -28.268199858688746 38.399582119581424, -28.283336858702825 38.40471811958622, -28.38944585880165 38.41194511959296, -28.427917858837503 38.4131911195941, -28.459717858867094 38.405273119586724, -28.521181858924336 38.44103611962004, -28.540281858942137 38.468891119645974, -28.549172858950413 38.498327119673405, -28.55194585895299 38.51221811968634, -28.549445858950662 38.52721811970031, -28.5397178589416 38.53555411970808, -28.52583685892867 38.54500011971686, -28.497917858902696 38.554027119725276, -28.466390858873325 38.557782119728785, -28.437499858846422 38.558327119729285, -28.42167285883167 38.55721811972825, -28.37971785879259 38.54916411972076, -28.3541638587688 38.54166411971377, -28.33028185874656 38.53277311970547, -28.31917285873621 38.528054119701096, -28.26639085868706 38.49805411967316, -28.189445858615386 38.46013611963784, -28.14110885857039 38.449882119628285, -28.125445858555793 38.44788211962643, -28.101672858533647 38.446109119624765, -28.08583685851889 38.44749111962605, -28.07013685850427 38.44416411962297, -28.048336858483964 38.43027311961001, -28.036872858473288 38.41416411959503, -28.056117858491234 38.3941641195764, -28.097226858529496 38.39262711957497, -28.148690858577453 38.402409119584064, -28.19249985861825 38.405000119586475, -28.203890858628853 38.39999111958181, -28.24667285866869 38.3719361195557)), ((-27.138617857636746 38.629436119795514, -27.181663857676824 38.64277311980791, -27.237499857728835 38.64721811981207, -27.274445857763226 38.6502731198149, -27.29472685778211 38.65388211981826, -27.306945857793494 38.65805411982217, -27.3513908578349 38.68166411984416, -27.36722685784963 38.69332711985501, -27.37999985786155 38.71054511987106, -27.38860885786957 38.73819111989678, -27.384999857866205 38.763327119920206, -27.37430885785625 38.77901811993482, -27.363890857846542 38.787773119942955, -27.330281857815237 38.79666411995126, -27.31333685779944 38.80069111995499, -27.281672857769962 38.80305411995721, -27.245836857736577 38.801664119955916, -27.21499985770788 38.79943611995384, -27.181663857676824 38.79500011994969, -27.142917857640754 38.78860911994374, -27.113336857613177 38.780827119936504, -27.06583685756894 38.76416411992099, -27.04944585755368 38.74944511990728, -27.035763857540957 38.734509119893374, -27.020145857526387 38.69319111985487, -27.054308857558226 38.64332711980845, -27.083336857585238 38.63194511979785, -27.138617857636746 38.629436119795514)), ((-27.810836858262775 38.5399911197122, -27.84860885829798 38.54055411971274, -28.15667285858487 38.634854119800565, -28.194172858619794 38.6502731198149, -28.301390858719657 38.72138211988113, -28.314999858732335 38.73458211989342, -28.31555485873284 38.748600119906484, -28.29778185871629 38.748600119906484, -28.2855548587049 38.74471811990287, -27.996672858435858 38.64139111980663, -27.76944585822423 38.558327119729285, -27.761463858216814 38.54798211971965, -27.780281858234332 38.54193611971402, -27.810836858262775 38.5399911197122)), ((-28.636108859031395 38.51027311968451, -28.726945859115972 38.51388211968788, -28.758890859145737 38.5177731196915, -28.846108859226973 38.58444511975361, -28.845836859226694 38.595136119763566, -28.833890859215586 38.603054119770945, -28.71999985910952 38.64041811980573, -28.631526859027105 38.60832711977585, -28.608336859005504 38.592354119760984, -28.594999858993106 38.5549271197261, -28.636108859031395 38.51027311968451)), ((-31.215554861433674 39.35333612046969, -31.23944586145592 39.35333612046969, -31.258817861473972 39.3556181204718, -31.279999861493707 39.389445120503325, -31.289026861502094 39.41097312052338, -31.283336861496792 39.44610912055609, -31.25847286147365 39.499373120605696, -31.230836861447898 39.52082712062568, -31.213890861432134 39.521945120626725, -31.203608861422566 39.52040912062529, -31.15333686137572 39.49471812060136, -31.146663861369518 39.48583612059309, -31.12604586135032 39.45520012056457, -31.1313908613553 39.414991120527105, -31.14805486137081 39.3741641204891, -31.154163861376503 39.36527312048079, -31.18014586140069 39.35430012047058, -31.215554861433674 39.35333612046969)), ((-25.01889085566259 36.929164118212, -25.046945855688705 36.93471811821718, -25.100563855738642 36.94500011822676, -25.156390855790647 36.94277311822468, -25.167781855801252 36.94319111822507, -25.177781855810565 36.948745118230235, -25.20055485583177 36.98305411826219, -25.19805485582944 36.99430911827267, -25.18152685581404 37.00930011828663, -25.114999855752103 37.020827118297376, -25.094172855732694 37.023045118299436, -25.08264585572195 37.02319111829958, -25.054790855696012 37.01575411829265, -25.033336855676026 36.996936118275116, -25.017645855661414 36.972082118251976, -25.012845855656963 36.939436118221565, -25.01889085566259 36.929164118212))) +ESP Spain MULTIPOLYGON (((-4.514554836566447 43.39634512423504, -4.218336836290547 43.3969451242356, -3.81028183591053 43.49249112432457, -3.7663908358696574 43.46999112430362, -3.585554835701231 43.510273124341126, -3.150590835296157 43.3535641241952, -3.0222178351765763 43.35750012419885, -2.934581835094974 43.43569112427167, -2.735554834909607 43.426382124263, -2.5105548347000592 43.37763612421762, -2.458472834651559 43.33791812418062, -2.295554834499825 43.29610912414168, -2.1219458343381348 43.29666412414221, -1.786045834025316 43.39040912422951, -1.7769458340168285 43.34250012418488, -1.7303728339734619 43.298982124144345, -1.6555548339037784 43.309436124154104, -1.3851368336519272 43.25256412410113, -1.42312683368732 43.123264123980704, -1.4667368337279356 43.092045123951635, -1.4395178337025811 43.04937312391189, -1.348263833617608 43.0361731238996, -1.3002818335729103 43.07166412393266, -0.9402818332376341 42.95416412382323, -0.754099833064231 42.96437312383273, -0.7158368330285896 42.884582123758406, -0.555836832879578 42.78000012366101, -0.3919458327269467 42.79639112367627, -0.3087368326494584 42.84838212372472, 0.0027821676406745 42.68607312357355, 0.1809001678065556 42.734509123618665, 0.4327821680411432 42.686664123574104, 0.6755091682671832 42.688482123575795, 0.6519451682452484 42.78500012366567, 0.667782168260004 42.83916412371613, 0.716109168304996 42.858882123734475, 1.088336168651665 42.78485412366555, 1.173891168731359 42.709718123595565, 1.3591631689039048 42.715273123600724, 1.4458361689846129 42.6019451234952, 1.4213911689618612 42.54582712344293, 1.4515271689899123 42.446245123350195, 1.537500169069972 42.436664123341274, 1.7236091692433035 42.509436123409046, 1.9063911694135527 42.44693612335084, 2.020554169519869 42.35263612326301, 2.093609169587893 42.36416412327375, 2.1445821696353846 42.41930012332509, 2.273182169755131 42.43560912334027, 2.5338911699979576 42.33290912324463, 2.670418170125089 42.34958212326015, 2.6570821701126874 42.3819361232903, 2.678336170132468 42.40166412330868, 2.950000170385465 42.48055412338215, 3.047982170476729 42.465964123368536, 3.106109170530857 42.42916412333429, 3.177654170597492 42.43680912334139, 3.1684731705889533 42.3597181232696, 3.3179911707281917 42.32048212323306, 3.264582170678466 42.24208212316003, 3.213745170631114 42.23374512315229, 3.154718170576132 42.26013612317686, 3.1180541705419955 42.22512712314426, 3.117082170541096 42.14443612306911, 3.211109170628646 42.06651812299654, 3.2016631706198666 41.89277312283471, 2.937427170373752 41.71909112267298, 2.2670821697494716 41.45985412243155, 2.1512451696415837 41.31194512229379, 2.0783361695736744 41.27527312225962, 1.4983361690335073 41.1786001221696, 0.9644451685362867 41.032773122033774, 0.7036091682933545 40.79687312181409, 0.8966001684730998 40.72576412174786, 0.8852821684625667 40.70277312172644, 0.6643091682567501 40.56277312159605, 0.621427168216826 40.58437312161618, 0.7091631682985451 40.59583612162686, 0.7347181683223312 40.64000012166798, 0.5891631681867864 40.61278212164265, 0.3563911679700027 40.300827121352114, 0.0475001676823012 40.033736121103374, -0.0372178323965784 39.8933271209726, -0.1791638325287863 39.73610912082617, -0.3176368326577403 39.51485412062013, -0.3376368326763668 39.4380541205486, -0.2411088325864625 39.14388212027461, -0.1433368324954074 38.978336120120446, 0.0088911676463681 38.862209120012295, 0.1984731678229252 38.80374511995785, 0.2072181678310585 38.73220911989122, -0.1451368324970872 38.53694511970937, -0.3199998326599598 38.47152711964844, -0.5116638328384511 38.32500011951197, -0.7610178330706674 37.84595411906584, -0.858336833161303 37.71554511894438, -0.7869458330948191 37.64777311888126, -0.7024998330161907 37.62444511885954, -0.7234728330357143 37.602218118838834, -0.9183368332171824 37.551800118791874, -1.0483368333382543 37.57916411881736, -1.3274998335982673 37.5580541187977, -1.4483368337107834 37.49096411873522, -1.5094458337676997 37.42194511867095, -1.6436088338926425 37.37277311862515, -1.7945818340332664 37.22749111848984, -1.902217834133495 36.9722181182521, -2.1229178343390345 36.733464118029744, -2.192081834403467 36.720409118017585, -2.291317834495885 36.82561811811557, -2.347081834547822 36.84054511812947, -2.55791783474416 36.813054118103864, -2.644863834825145 36.697773117996505, -2.768890834940663 36.6783271179784, -2.873472835038058 36.70659111800471, -2.923472835084624 36.74735411804268, -3.25916383539726 36.746936118042285, -3.4599998355843127 36.69193611799106, -3.6015268357161005 36.74638211804178, -4.399863836459616 36.721454118018556, -4.490136836543684 36.61527311791967, -4.6397178366829905 36.50832711782007, -4.757781836792958 36.48569111779899, -4.91389083693835 36.49888211781128, -5.172636837179311 36.41187311773024, -5.312499837309588 36.231109117561886, -5.334508837330077 36.16256411749805, -5.425490837414799 36.17374511750846, -5.444581837432594 36.138745117475864, -5.42604583741533 36.075345117416816, -5.448890837436608 36.052218117395284, -5.613608837589993 36.00610011735233, -5.802217837765653 36.07721811741857, -5.91486383787057 36.18013611751442, -6.044163837990993 36.186109117519976, -6.158336838097313 36.30527311763096, -6.262217838194061 36.475827117789805, -6.2176368381525435 36.46889111778334, -6.174717838112571 36.51443611782575, -6.2974998382269405 36.61388211791838, -6.395208838317927 36.62964511793305, -6.443608838362991 36.718891118016174, -6.3555548382809945 36.86083611814837, -6.578890838489002 37.01943611829607, -6.904726838792442 37.165554118432155, -6.95992683884387 37.221836118484575, -6.972226838855306 37.17774511844351, -7.127226838999661 37.22055411848338, -7.391390839245702 37.17527311844121, -7.431854839283375 37.25319111851378, -7.447217839297679 37.41860911866783, -7.524445839369605 37.55250011879254, -7.423054839275181 37.74389111897078, -7.281663839143505 37.86555411908408, -7.253545839117322 37.983673119194094, -7.004026838884926 38.031109119238266, -6.933745838819476 38.209073119404025, -7.08778183896294 38.17700911937416, -7.317081839176495 38.444718119623474, -7.2571548391206875 38.723400119883024, -7.059999838937074 38.860545120010755, -6.955872838840094 39.02319112016221, -6.96110883884495 39.0566641201934, -7.013190838893479 39.11180012024474, -7.145836839016994 39.11388212024667, -7.242781839107295 39.21305412033905, -7.375690839231083 39.493745120600465, -7.5027818393494385 39.60277312070198, -7.53250883937713 39.66941812076405, -7.3328458391911795 39.645273120741564, -7.263608839126704 39.67208212076653, -7.01721783889721 39.675000120769255, -6.8706908387607655 40.01597312108683, -6.928890838814965 40.101664121166635, -7.008890838889471 40.132773121195584, -7.027217838906523 40.187773121246806, -7.008336838888937 40.22680012128316, -6.946526838831375 40.258982121313124, -6.862299838752932 40.27151812132482, -6.831108838723878 40.317218121367375, -6.796108838691282 40.52443612156037, -6.819445838713023 40.73332712175491, -6.8017368386965416 40.85700912187011, -6.924408838810791 41.03096412203209, -6.80555483870009 41.0455541220457, -6.75333683865145 41.136664122130554, -6.643890838549538 41.24471812223118, -6.558336838469842 41.24221812222885, -6.438054838357829 41.31888212230024, -6.2958368382253695 41.436100122409414, -6.190454838127238 41.57963612254309, -6.303608838232606 41.66332712262104, -6.429445838349807 41.68000012263656, -6.501808838417219 41.65943612261742, -6.54562683845802 41.687009122643104, -6.528054838441648 41.83943612278506, -6.54860883846078 41.9219451228619, -6.602290838510783 41.949164122887254, -6.9061088387937275 41.9447181228831, -6.982845838865217 41.97386412291024, -7.056108838933426 41.95110912288905, -7.131181839003347 41.99380912292881, -7.184999839053489 41.97735412291351, -7.200554839067962 41.883609122826186, -7.418608839271059 41.82277312276952, -7.609163839448513 41.835691122781554, -7.598054839438163 41.8652731228091, -7.69278183952639 41.90388212284506, -7.876663839697642 41.85263612279735, -7.926663839744208 41.87777312282074, -8.136108839939283 41.80916412275687, -8.218336840015837 41.90749112284843, -8.084654839891357 42.022982122955995, -8.083754839890503 42.06048212299092, -8.197836839996768 42.15067312307491, -8.31055484010173 42.10360912303108, -8.613890840384244 42.05638212298709, -8.875136840627533 41.879509122822384, -8.89749984064838 42.11055412303756, -8.579863840352544 42.34901812325964, -8.625972840395491 42.345273123256135, -8.683608840449182 42.279718123195096, -8.864863840617971 42.249645123167085, -8.821945840577996 42.32832712324037, -8.65610884042357 42.42777312333297, -8.696108840460823 42.43763612334217, -8.840836840595585 42.39139112329909, -8.906108840656401 42.4751361233771, -8.888754840640217 42.49847312339884, -8.86072684061412 42.48741812338852, -8.868608840621476 42.459791123362805, -8.836108840591208 42.46193612336481, -8.809717840566606 42.51943612341836, -8.831872840587238 42.54916412344605, -8.720499840483512 42.698491123585114, -8.920836840670091 42.626800123518336, -8.995554840739686 42.5324911234305, -9.029372840771174 42.524164123422764, -9.06139084080101 42.57943612347424, -9.022499840764794 42.69958212358611, -8.915836840665435 42.78902712366943, -9.086672840824548 42.74027312362401, -9.123336840858684 42.768882123650656, -9.124445840859721 42.84000012371689, -9.188199840919111 42.95124512382051, -9.263890840989603 42.91374512378559, -9.293336841017009 42.92249112379372, -9.259163840985195 43.047218123909886, -9.169726840901887 43.18582712403898, -8.944026840691691 43.23500012408476, -8.977499840722885 43.27860912412538, -8.876390840628716 43.31971812416367, -8.824445840580324 43.327218124170656, -8.701390840465734 43.2872181241334, -8.329726840119577 43.403882124242045, -8.26555484005982 43.55277312438071, -7.89805483971756 43.764164124577604, -7.858263839680518 43.764300124577716, -7.850554839673322 43.714718124531544, -7.7244458395558695 43.747500124562066, -7.463608839312968 43.7263911245424, -7.363608839219836 43.674164124493785, -7.247363839111557 43.56221812438952, -7.038472838917016 43.55027312437838, -7.044817838922938 43.49040012432263, -6.999445838880661 43.560827124388226, -6.943336838828401 43.57777312440399, -6.10180883804469 43.56180012438912, -5.944726837898372 43.593891124419, -5.854163837814042 43.64804512446946, -5.6774998376495205 43.54485412437336, -5.398054837389253 43.55250012438046, -5.27986383727918 43.529436124358995, -5.202572837207214 43.47840012431146, -4.514554836566447 43.39634512423504)), ((2.389163169863167 39.52499112062955, 2.364163169839884 39.55582712065828, 2.3861091698603047 39.61278212071133, 2.7777821702250947 39.844718120927325, 2.9877821704206724 39.91110912098915, 3.0713911704985435 39.921945120999254, 3.139927170562345 39.786945120873526, 3.1808361706004575 39.75999112084841, 3.267918170681554 39.73569112082578, 3.382782170788545 39.77332712086084, 3.480000170879066 39.71638212080779, 3.447500170848798 39.64027312073691, 3.3055541707166185 39.50221812060835, 3.241945170657374 39.364436120480036, 3.0602821704881933 39.26333612038587, 2.9855541704185953 39.31860012043734, 2.7916631702380243 39.36374512047939, 2.7497911701990176 39.40075412051385, 2.7277821701785285 39.473054120581196, 2.747782170197155 39.499200120605536, 2.6944451701474748 39.55193612065466, 2.5444451700077764 39.52250012062723, 2.389163169863167 39.52499112062955)), ((-16.671390847888375 27.98416410988132, -16.833054848038927 28.19750011008, -16.909372848109996 28.346036110218336, -16.84389084804903 28.3730541102435, -16.563608847788004 28.391664110260834, -16.493199847722423 28.41583611028335, -16.37833684761543 28.53555411039484, -16.273890847518174 28.570000110426918, -16.156945847409247 28.57221811042899, -16.156390847408744 28.50194511036355, -16.349581847588667 28.360418110231734, -16.418054847652428 28.14527311003137, -16.529445847756165 28.02208210991664, -16.671390847888375 27.98416410988132)), ((-14.332781845710372 28.04444510993747, -14.444172845814109 28.069164109960482, -14.211108845597067 28.22610911010665, -14.19333684558049 28.321945110195912, -14.050836845447776 28.564718110422007, -14.005690845405752 28.70971811055705, -13.867781845277307 28.749582110594176, -13.832917845244822 28.706109110553683, -13.820281845233069 28.57721811043365, -13.860836845270825 28.38221811025204, -13.923054845328778 28.24916411012812, -14.20055484558722 28.169164110053615, -14.332781845710372 28.04444510993747)), ((-15.57917284687116 27.731109109645644, -15.670836846956519 27.751454109664593, -15.783199847061184 27.835691109743053, -15.822636847097897 27.91569110981756, -15.81583684709156 28.00194510989789, -15.712226846995065 28.068191109959585, -15.70249984698603 28.156109110041456, -15.409408846713063 28.15590011004126, -15.365281846671962 28.007218109902794, -15.39416384669886 27.84500010975171, -15.443754846745037 27.78902710969959, -15.57917284687116 27.731109109645644)), ((-13.77305484518908 28.83777311067631, -13.81944584523228 28.85610911069338, -13.8522178452628 28.906391110740216, -13.791663845206415 29.05250011087628, -13.590699845019259 29.13860911095648, -13.472781844909434 29.242500111053232, -13.44249984488124 29.231664111043145, -13.426945844866736 29.165273110981317, -13.48347284491939 28.995282110823, -13.60972684503696 28.926391110758843, -13.72236384514187 28.908191110741896, -13.77305484518908 28.83777311067631)), ((4.276391171620787 39.80639112089162, 4.028609171390002 39.92000012099743, 3.826663171201943 39.92249112099975, 3.796945171174258 40.01721812108798, 3.868336171240742 40.05805412112602, 4.174445171525832 40.050282121118784, 4.2733361716179274 39.96139112103597, 4.315554171657254 39.87888212095913, 4.313891171655712 39.83193612091543, 4.276391171620787 39.80639112089162)), ((-17.783336848923938 28.52916411038889, -17.83361784897079 28.453191110318144, -17.854445848990167 28.46971811033353, -17.87639084901062 28.554718110412693, -18.002917849128437 28.7497181105943, -17.972781849100386 28.80916411064966, -17.906808849038953 28.848191110686017, -17.781390848922143 28.838891110677352, -17.71652684886172 28.743327110588353, -17.739172848882816 28.607773110462105, -17.783336848923938 28.52916411038889)), ((1.3719451689158007 38.83082711998307, 1.3495821688949832 38.869718120019286, 1.2505541688027506 38.86082712001101, 1.211945168766789 38.898327120045934, 1.2941631688433688 39.03139112016984, 1.5197181690534194 39.118327120250825, 1.602918169130902 39.093882120228045, 1.6150001691421494 39.028327120167006, 1.3719451689158007 38.83082711998307)), ((-17.230836848409382 28.010000109905377, -17.33055484850226 28.09110910998092, -17.317226848489838 28.170691110055046, -17.254999848431908 28.206109110088022, -17.11360884830023 28.14527311003137, -17.089172848277457 28.111945110000335, -17.1547268483385 28.024718109919093, -17.230836848409382 28.010000109905377)), ((-17.9827818491097 27.63750010955846, -18.15611784927114 27.705273109621587, -18.16749984928174 27.7536091096666, -18.132226849248866 27.772636109684328, -18.039999849162996 27.76221810967462, -18.00104584912671 27.816109109724806, -17.907499849039596 27.848609109755074, -17.88347284901721 27.797218109707217, -17.9827818491097 27.63750010955846)), ((1.3902821689328846 38.64332711980845, 1.3991631689411577 38.73778211989642, 1.4452821689841073 38.7411001198995, 1.5873631691164292 38.66985411983316, 1.5227091690562133 38.65569111981995, 1.4598631689976855 38.68624511984842, 1.3902821689328846 38.64332711980845)), ((-5.345836837340613 35.84166411719919, -5.377217837369841 35.871518117227, -5.395554837386925 35.91633611726873, -5.307645837305046 35.88579111724029, -5.345836837340613 35.84166411719919)), ((-2.914717835076459 35.273609116670144, -2.9650728351233795 35.281318116677326, -2.966181835124388 35.31662711671021, -2.946945835106476 35.329164116721884, -2.914717835076459 35.273609116670144))) +ESH Western Sahara MULTIPOLYGON (((-17.052326848243155 20.76410010315712, -17.05703684824752 20.76739110316018, -17.101526848288955 20.83742710322541, -17.09437284828229 20.943745103324417, -17.063608848253665 21.09750010346761, -17.029445848221826 21.285000103642233, -17.02111784821409 21.365273103717, -17.010563848204242 21.441109103787625, -17.005836848199834 21.463054103808062, -16.98194584817759 21.5536091038924, -16.968890848165444 21.625273103959145, -16.959999848157167 21.707500104035717, -16.96417284816104 21.77500010409858, -16.959445848156633 21.822218104142564, -16.956945848154305 21.833327104152914, -16.91625484811641 21.9454181042573, -16.851945848056516 22.07347310437656, -16.719445847933116 22.260827104551055, -16.66520884788261 22.292982104581, -16.635763847855202 22.276527104565673, -16.5986088478206 22.281391104570204, -16.53472684776108 22.305827104592964, -16.498126847727008 22.32534510461113, -16.46541784769653 22.38402710466579, -16.46055484769201 22.4125001046923, -16.424099847658056 22.52027310479268, -16.38903684762542 22.544218104814973, -16.362708847600885 22.564582104833946, -16.34583684758516 22.634718104899264, -16.339999847579747 22.687500104948413, -16.342499847582076 22.719445104978163, -16.337081847577025 22.756945105013088, -16.323608847564486 22.794445105048013, -16.267290847512015 22.89985410514619, -16.22847284747587 22.91430010515964, -16.20083684745012 22.932218105176332, -16.185554847435895 22.948473105191468, -16.16389084741573 22.98888210522911, -16.152363847404985 23.02471810526248, -16.151390847404087 23.063891105298964, -16.178336847429165 23.085000105318613, -16.10944584736501 23.248054105470473, -16.07249984733062 23.328336105545247, -16.054308847313678 23.345691105561414, -16.03583684729645 23.362782105577324, -16.012636847274848 23.392636105605135, -15.996945847260235 23.415273105626213, -15.980554847244974 23.447636105656358, -15.969999847235158 23.49721810570253, -15.962781847228428 23.517218105721156, -15.921672847190138 23.583473105782858, -15.882781847153922 23.638609105834206, -15.868608847140734 23.652773105847402, -15.829999847104773 23.683818105876313, -15.76472684704396 23.78652710597197, -15.760281847039835 23.85805410603858, -15.779445847057673 23.90943610608643, -15.8747178471464 23.822918106005858, -15.89083684716141 23.803891105988143, -15.9020818471719 23.784027105969642, -15.927081847195183 23.71889110590898, -15.943336847210304 23.682218105874824, -15.993972847257481 23.64850910584343, -15.933054847200737 23.788054105973387, -15.911663847180819 23.821945106004947, -15.86639084713866 23.86860910604841, -15.832226847106824 23.90172710607925, -15.702781846986284 23.984991106156798, -15.582226846873994 24.060554106227173, -15.526108846821757 24.126109106288226, -15.457499846757855 24.201109106358075, -15.36249984666938 24.27721810642896, -15.298336846609601 24.33194510647992, -15.282217846594591 24.355000106501393, -15.256672846570808 24.395000106538646, -15.245554846560452 24.412500106554944, -15.22986384654584 24.4397181065803, -15.173336846493186 24.491945106628933, -15.13833684646059 24.50763610664356, -15.100836846425665 24.51721810665248, -15.062226846389706 24.52597310666063, -15.031390846361006 24.541664106675242, -14.900899846239469 24.68964510681306, -14.834581846177713 24.9186091070263, -14.830554846173953 25.03805410713754, -14.833336846176536 25.0719451071691, -14.845281846187675 25.091945107187726, -14.847363846189609 25.113336107207658, -14.845972846188317 25.213891107301308, -14.828890846172413 25.29000010737218, -14.815554846159984 25.341109107419783, -14.790972846137095 25.431245107503727, -14.75360884610231 25.48055410754965, -14.682781846036335 25.623882107683144, -14.648054846003987 25.732773107784553, -14.62902684598626 25.773745107822705, -14.608054845966734 25.806945107853622, -14.588054845948108 25.830273107875357, -14.56486384592651 25.85430010789773, -14.538472845901936 25.89290910793369, -14.517226845882135 25.934445107972365, -14.497217845863503 25.987500108021777, -14.493054845859632 26.00027310803368, -14.489172845856018 26.01527310804765, -14.483608845850853 26.055827108085424, -14.479308845846845 26.098745108125385, -14.489308845856158 26.126873108151585, -14.483336845850573 26.16332710818554, -14.422499845793936 26.24750010826392, -14.406526845779041 26.26069110827622, -14.374726845749421 26.2691641082841, -14.345281845722013 26.276391108290838, -14.321663845700016 26.283054108297037, -14.296672845676738 26.29735410831036, -14.251945845635078 26.33555410834593, -14.220699845605992 26.36610910837439, -14.197781845584643 26.39750010840362, -14.106108845499278 26.430554108434407, -14.066945845462783 26.435273108438807, -14.032781845430975 26.443536108446494, -13.907917845314671 26.510418108508787, -13.709726845130092 26.625554108616015, -13.624026845050281 26.68236410866892, -13.60110884502896 26.703054108688193, -13.574163845003852 26.73166410871484, -13.548472844979926 26.764164108745106, -13.517781844951344 26.820827108797886, -13.503890844938411 26.850554108825563, -13.481390844917456 26.90082710887239, -13.42749984486727 27.064718109025023, -13.417217844857674 27.098054109056065, -13.416945844857423 27.11805410907469, -13.414717844855346 27.145000109099783, -13.409445844850438 27.169445109122563, -13.397226844839054 27.197218109148423, -13.37173684481533 27.237291109185747, -13.350281844795347 27.25971810920663, -13.333608844779832 27.279718109225257, -13.303336844751612 27.32805410927027, -13.247781844699887 27.44540910937957, -13.22069984467467 27.516527109445803, -13.17496384463206 27.6669541095859, -13.166945844624593 27.66638210958537, -13.067499844531994 27.666109109585108, -12.841099844321121 27.666445109585425, -10.299736841954314 27.666573109585542, -10.120508841787398 27.664773109583862, -10.067236841737781 27.66423610958337, -10.022517841696128 27.66500910958409, -9.999999841675162 27.66638210958537, -9.933608841613335 27.666664109585625, -9.833336841519923 27.666664109585625, -9.667217841365215 27.666664109585625, -9.333608841054541 27.666664109585625, -9.299999841023237 27.666109109585108, -8.666663840433387 27.666664109585625, -8.667217840433892 27.59971810952328, -8.667217840433892 27.4994451094299, -8.666790840433492 27.290454109235256, -8.667217840433892 26.96639110893345, -8.667217840433892 26.833054108809264, -8.667217840433892 26.399718108405693, -8.666663840433387 26.1333271081576, -8.666390840433138 26.06639110809526, -8.666945840433641 26.00027310803368, -9.399999841116369 25.9994451080329, -9.567217841272083 26.00027310803368, -9.633890841334193 26.00027310803368, -9.700554841396269 26.00027310803368, -9.89999984158203 26.00000010803342, -9.966663841644106 25.999718108033164, -10.000308841675434 25.997964108031525, -10.134117841800048 25.998200108031753, -10.500281842141078 25.9994451080329, -10.733336842358113 25.9994451080329, -11.266672842854831 25.9994451080329, -11.700554843258914 26.00000010803342, -12.00055484353831 26.00000010803342, -11.999999843537807 25.73305410778481, -11.999999843537807 25.666109107722463, -12.000836843538565 25.632500107691158, -11.999999843537807 25.29971810738124, -11.999999843537807 25.23277310731889, -12.000836843538565 25.20000010728836, -11.999999843537807 24.866391106977673, -11.999999843537807 24.799718106915577, -12.000836843538565 24.766109106884272, -11.999999843537807 24.399718106543048, -12.000836843538565 24.333054106480958, -12.000281843538062 24.000000106170774, -12.000836843538565 23.799718105984255, -12.000281843538062 23.45443610566268, -12.098890843629903 23.429718105639665, -12.231390843753303 23.380554105593873, -12.365836843878498 23.318609105536183, -12.571390844069953 23.291382105510834, -12.597426844094201 23.276173105496667, -12.636663844130737 23.250827105473064, -12.744999844231643 23.182500105409417, -12.998336844467559 23.02471810526248, -13.049445844515162 22.96277310520479, -13.105281844567173 22.893054105139854, -13.133890844593822 22.809164105061726, -13.150281844609083 22.757500105013605, -13.094163844556817 22.570827104839765, -13.079999844543636 22.52027310479268, -13.077799844541573 22.49680910477082, -13.066390844530957 22.323891104609785, -13.059163844524221 22.204718104498795, -13.051390844516987 22.085827104388073, -13.047781844513622 22.033882104339696, -13.031390844498361 21.7977731041198, -13.004999844473787 21.423336103771078, -12.999726844468853 21.338054103691647, -13.37694584482017 21.340000103693455, -13.908336845315063 21.342500103695784, -14.285281845666134 21.34221810369553, -14.303472845683075 21.34166410369501, -14.467226845835569 21.340554103693975, -14.68722684604046 21.338609103692164, -15.005281846336686 21.336391103690104, -15.225554846541826 21.337500103691127, -15.74199984702281 21.338282103691867, -15.892226847162704 21.338609103692164, -16.01778184727965 21.338891103692433, -16.146117847399182 21.3397181036932, -16.60472684782627 21.3397181036932, -16.953754848151334 21.336664103690353, -16.96055484815767 21.300554103656722, -16.994999848189764 21.12805410349607, -17.038063848229854 21.00416410338069, -17.049163848240198 20.974445103353005, -17.070281848259867 20.920827103303083, -17.075554848264773 20.899027103282776, -17.052326848243155 20.76410010315712))) +BFA Burkina Faso MULTIPOLYGON (((0.9179731684930061 10.996400094060235, 0.81194516839426 10.996945094060735, 0.7244451683127693 10.996945094060735, 0.6661091682584299 10.99610909405996, 0.630836168225585 10.983891094048587, 0.504163168107624 10.936945094004855, 0.5148631681175857 10.975418094040691, 0.5055541681089153 11.004582094067857, 0.4169451680263876 11.024445094086346, 0.2188911678419458 11.064164094123342, 0.1900001678150147 11.070554094129292, 0.0502821676849123 11.09889109415569, -0.0897178324454728 11.12721809418207, -0.1422178324943673 11.137782094191905, -0.1497638325014066 11.138536094192602, -0.1769458325267124 11.144718094198367, -0.2868728326290864 11.155691094208578, -0.364163832701081 11.084718094142488, -0.6184728329379254 10.913891093983395, -0.6661088329822746 10.956809094023356, -0.6786088329939162 10.988609094052975, -0.679836832995079 10.997800094061532, -0.7844458330924908 10.998054094061771, -0.9022178332021724 11.00666409406979, -0.9869458332810837 11.014445094077033, -1.0919458333788725 11.005973094069148, -1.3727818336404312 10.999718094063326, -1.4196728336841034 11.026473094088246, -1.5601818338149656 11.023564094085529, -1.5708368338248704 11.000273094063843, -1.7286088339718049 11.000273094063843, -1.9913908342165598 11.000273094063843, -2.2999998345039785 11.001109094064617, -2.734999834909104 11.001945094065391, -2.8340458350013478 11.002009094065457, -2.8336088350009163 10.957500094023999, -2.8369458350040304 10.88582709395726, -2.906945835069223 10.737082093818728, -2.9275268350884005 10.70814509379177, -2.9161088350777504 10.655282093742542, -2.916390835078033 10.598054093689242, -2.891945835055253 10.519445093616028, -2.833890835001199 10.36555409347271, -2.7905548349608296 10.270827093384497, -2.7713908349429914 10.216945093334303, -2.794445834964449 10.163054093284117, -2.795417834965349 10.05500009318348, -2.7772178349484022 10.008054093139762, -2.763190834935358 9.800554092946513, -2.794163834964195 9.732364092883003, -2.7850728349557414 9.688191092841862, -2.7515268349244764 9.656391092812257, -2.7446638349181 9.653036092809131, -2.761390834933678 9.627364092785214, -2.769581834941306 9.600836092760517, -2.768954834940729 9.569718092731534, -2.7450728349184885 9.54410009270768, -2.7140368348895834 9.521191092686337, -2.689163834866406 9.487500092654955, -2.6855638348630464 9.481818092649675, -2.731663834905987 9.410836092583565, -2.7570178349295986 9.39569109256945, -2.7797178349507305 9.40360909257683, -2.801390834970931 9.423891092595724, -2.8508368350169633 9.481391092649275, -2.9209728350822957 9.57680909273813, -2.9374998350976966 9.627773092785603, -2.9691638351271763 9.699864092852735, -2.986108835142943 9.724445092875627, -3.1238908352712826 9.836109092979626, -3.2086088353501623 9.90139109304043, -3.3941638355229884 9.920000093057752, -3.6370818357492283 9.95444509308983, -3.706390835813778 9.943609093079743, -3.753608835857733 9.935000093071721, -3.8822178359775137 9.897782093037065, -3.8908368359855388 9.894236093033768, -3.90347283599732 9.882218093022573, -3.9363908360279822 9.86305409300472, -4.034163836119035 9.80694509295246, -4.124163836202854 9.82930909297329, -4.262008836331233 9.742918092892836, -4.279445836347463 9.67582709283036, -4.2830548363508285 9.651664092807849, -4.309717836375654 9.601109092760765, -4.312454836378208 9.599973092759711, -4.3304908363950005 9.615282092773967, -4.4261088364840475 9.65750009281328, -4.514717836566575 9.69027309284381, -4.604999836650677 9.72069109287213, -4.655208836697426 9.702918092855583, -4.704445836743275 9.698054092851052, -4.775281836809256 9.736664092887011, -4.810208836841781 9.77784509292536, -4.785417836818681 9.782918092930089, -4.786390836819606 9.828054092972124, -4.830281836860479 9.8625000930042, -4.9497178369717005 9.9486090930844, -4.990281837009491 10.06389109319177, -5.128190837137936 10.303054093414502, -5.2438908372456865 10.319718093430026, -5.268608837268687 10.319164093429507, -5.307499837304931 10.305273093416574, -5.338336837333628 10.296945093408809, -5.371108837364147 10.289445093401824, -5.404099837394881 10.297636093409452, -5.470281837456525 10.348054093456412, -5.5208368375035946 10.42777309353066, -5.519845837502686 10.436273093538574, -5.483608837468921 10.527218093623276, -5.473336837459357 10.632500093721319, -5.464308837450972 10.69930909378354, -5.456208837443427 10.72165409380436, -5.444726837432711 10.76333609384318, -5.411181837401472 10.841664093916123, -5.419163837408917 10.86944509394199, -5.443336837431417 10.897218093967865, -5.47944583746505 11.002218094065654, -5.486526837471644 11.03347309409476, -5.485626837470818 11.077291094135575, -5.463608837450295 11.086945094144554, -5.3941638373856335 11.094445094151538, -5.362636837356263 11.101391094158018, -5.321945837318367 11.120136094175464, -5.299445837297412 11.139445094193448, -5.247845837249372 11.252636094298865, -5.208608837212807 11.461664094493543, -5.201663837206354 11.538191094564809, -5.22389083722706 11.588818094611966, -5.268608837268687 11.686945094703347, -5.287499837286305 11.788054094797516, -5.273054837272838 11.843891094849525, -5.168336837175303 11.935554094934886, -5.147081837155525 11.952773094950928, -5.11749983712798 11.964445094961789, -5.0797178370927725 11.97555409497214, -4.942781836965253 12.008609095002925, -4.698608836737833 12.062773095053373, -4.633426836677131 12.067218095057513, -4.630417836674326 12.093327095081833, -4.624863836669164 12.115409095102393, -4.569445836617547 12.201109095182204, -4.48249983653659 12.274718095250762, -4.417499836476054 12.300827095275082, -4.436108836493361 12.429300095394723, -4.418608836477063 12.472636095435078, -4.397081836457033 12.504864095465095, -4.370626836432393 12.528745095487338, -4.428754836486519 12.629027095580739, -4.453263836509365 12.638127095589212, -4.474926836529534 12.665273095614495, -4.470281836525203 12.713609095659507, -4.4688908365239115 12.723891095669089, -4.288890836356273 12.715000095660798, -4.263199836332348 12.717782095663395, -4.221108836293126 12.735282095679693, -4.206526836279551 12.769164095711247, -4.194445836268301 12.828609095766609, -4.2073638362803365 12.948473095878242, -4.217636836289898 12.969582095897906, -4.255345836325034 12.996454095922928, -4.277217836345386 13.021664095946406, -4.335554836399723 13.119509096037532, -4.313608836379274 13.16430909607925, -4.236945836307882 13.240836096150531, -4.1919458362659725 13.27597309618325, -4.156599836233056 13.27819109618531, -3.9761088360649524 13.47610909636964, -3.964254836053925 13.503827096395455, -3.956254836046469 13.501391096393192, -3.903263835997137 13.448473096343903, -3.785726835887658 13.359064096260639, -3.616945835730462 13.223609096134481, -3.588608835704065 13.20277309611508, -3.538054835656993 13.178336096092323, -3.508336835629308 13.17889109609284, -3.4488458355739056 13.171354096085821, -3.437672835563518 13.166500096081293, -3.427136835553682 13.184173096097751, -3.4244458355511824 13.211391096123108, -3.4323178355585355 13.235382096145443, -3.4426998355681917 13.261027096169329, -3.4260998355527192 13.276109096183376, -3.3941638355229884 13.276664096183893, -3.3738908355041133 13.277218096184413, -3.232217835372154 13.2880540961945, -3.233890835373728 13.322500096226577, -3.2372178353768106 13.359718096261247, -3.2602818353983025 13.496391096388535, -3.273336835410447 13.550282096438721, -3.25749983539572 13.696664096575049, -3.2111088353524906 13.708054096585656, -3.0994458352485026 13.686109096565218, -2.9583178351170716 13.629164096512184, -2.9422178351020705 13.633054096515806, -2.882217835046191 13.664300096544906, -2.9044458350668947 13.721664096598332, -2.903754835066252 13.822364096692112, -2.8399998350068927 14.005554096862724, -2.8155548349841126 14.050282096904382, -2.6466638348268248 14.16194509700837, -2.5997178347830925 14.21166409705468, -2.4651368346577556 14.286109097124012, -2.3841638345823526 14.265554097104868, -2.2894458344941313 14.238336097079525, -2.2449998344527557 14.217782097060379, -2.107499834324699 14.151391096998552, -2.1037178343211735 14.152627096999694, -2.0069458342310327 14.187773097032434, -1.996663834221465 14.30805409714445, -1.9924998342175968 14.342500097176526, -1.9894458342147345 14.376945097208605, -1.9841638342098236 14.410273097239653, -1.9808368342067126 14.474718097299672, -1.9074998341384344 14.488609097312604, -1.7777818340176168 14.48110909730562, -1.6783368339249876 14.500554097323729, -1.361845833630241 14.701354097510745, -1.3188908335902454 14.728609097536122, -1.0938908333806978 14.784164097587862, -1.07416383336232 14.776945097581134, -1.003026833296076 14.840100097639962, -0.7252818330373998 15.082773097865967, -0.723145833035403 15.082364097865579, -0.4436088327750554 15.082773097865967, -0.3866638327220358 15.005282097793796, -0.2463908325914019 15.077500097861048, 0.0000001676380634 14.994373097783637, 0.2350451678569812 14.915064097709774, 0.2323631678544871 14.880209097677309, 0.2119451678354665 14.863891097662119, 0.1963911678209911 14.842082097641807, 0.2413911678629006 14.752218097558114, 0.2252821678478938 14.700836097510262, 0.1666631677933026 14.523054097344684, 0.1894451678145117 14.464718097290358, 0.2330271678550844 14.425418097253754, 0.2963911679141233 14.367218097199554, 0.3211091679371236 14.36278209719542, 0.3847181679963683 14.283609097121683, 0.4087451680187542 14.245136097085862, 0.3923631680034987 14.180691097025829, 0.3548271679685229 14.130973096979531, 0.4650001680711284 13.913609096777094, 0.5155541681182285 13.854164096721732, 0.6075731682039134 13.698818096577057, 0.62500016822014 13.684164096563407, 0.7863911683704714 13.668891096549189, 0.9966631685663003 13.565973096453334, 1.0158361685841442 13.523818096414075, 1.0152821685836386 13.487845096380568, 1.0316631685988966 13.462500096356962, 1.1238911686847928 13.413327096311178, 1.1708361687284992 13.396391096295403, 1.2065271687617383 13.387500096287113, 1.242954168795677 13.389791096289258, 1.2765181688269251 13.34805409625038, 1.179445168736521 13.313473096218175, 1.107782168669786 13.335282096238487, 1.0733361686376952 13.350554096252708, 1.043891168610287 13.363609096264867, 1.0116631685802702 13.372773096273406, 0.9916631685616437 13.371664096272369, 0.9908361685608611 13.336664096239772, 0.9892451685593926 13.090564096010581, 0.9891631685593154 13.047218095970209, 1.011391168580019 13.023891095948485, 1.117218168678562 13.011109095936575, 1.3222911688695547 12.842518095779567, 1.578336169108013 12.630000095581636, 1.8716631693812076 12.608891095561987, 1.9280541694337217 12.700554095647348, 1.9888911694903868 12.731109095675805, 2.106391169599817 12.714718095660544, 2.142291169633239 12.694100095641346, 2.2008361696877614 12.630836095582424, 2.220836169706388 12.593609095547748, 2.256109169739233 12.481109095442974, 2.2355541697201033 12.418473095384641, 2.161663169651291 12.415554095381921, 2.076945169572383 12.383473095352045, 2.058336169555048 12.357218095327596, 2.320873169799569 12.000000094994903, 2.3920911698658927 11.904009094905504, 2.397927169871309 11.896154094898193, 2.3925001698662527 11.887218094889874, 2.3408361698181466 11.768609094779407, 2.30889116978841 11.688327094704647, 2.2622181697449264 11.645973094665194, 2.193891169681308 11.603609094625739, 2.0522181695493487 11.454718094487077, 2.026945169525817 11.431109094465086, 2.0200361695193862 11.426073094460392, 2.009863169509913 11.420554094455255, 1.9893091694907525 11.417082094452027, 1.8971821694049709 11.431500094465449, 1.8746541693839731 11.442773094475953, 1.8038911693180921 11.439445094472845, 1.7369451692557334 11.415836094450867, 1.6123631691397122 11.388473094425379, 1.5863911691155295 11.405627094441357, 1.5700001691002399 11.451109094483712, 1.5431911690752713 11.457773094489923, 1.4825001690187491 11.459718094491734, 1.435282168974794 11.458891094490966, 1.4286001689685577 11.451464094484038, 1.4168091689575704 11.44971809448242, 1.3900001689326018 11.433473094467288, 1.328054168874928 11.342918094382952, 1.3438181688896123 11.315000094356947, 1.2647181688159321 11.246109094292791, 1.1927821687489484 11.265273094310643, 1.1488911687080758 11.22444509427261, 1.083054168646754 11.122500094177667, 0.985282168555699 11.079445094137569, 0.9502821685231027 11.029445094091002, 0.9179731684930061 10.996400094060235))) +GIN Guinea MULTIPOLYGON (((-7.9468368397629945 8.018509091286859, -8.018890839830107 8.03028209129782, -8.053390839862232 8.032818091300186, -8.050417839859449 8.018891091287216, -8.055972839864637 7.9766640912478834, -8.076663839883906 7.949164091222272, -8.11902683992335 7.864791091143701, -8.11145483991632 7.841182091121709, -8.080426839887423 7.805400091088387, -8.094445839900459 7.78250009106705, -8.184445839984278 7.621527090917141, -8.186808839986497 7.600973090897995, -8.186463839986175 7.573054090871992, -8.218745840016226 7.5450000908458605, -8.285554840078447 7.582500090880785, -8.398199840183366 7.618191090914024, -8.420281840203927 7.6047180909014855, -8.469745840249999 7.56132709086107, -8.486945840266003 7.571391090870449, -8.550808840325487 7.615773090911773, -8.555626840329978 7.650345090943972, -8.551690840326302 7.691745090982536, -8.573426840346542 7.692491090983225, -8.660554840427693 7.695000090985559, -8.67499984044116 7.681109090972626, -8.7075728404715 7.646600090940495, -8.722990840485835 7.565482090864947, -8.71909084048221 7.560809090860587, -8.712226840475807 7.557636090857628, -8.708472840472325 7.515554090818441, -8.788754840547085 7.410418090720526, -8.834445840589638 7.3094450906264825, -8.84444584059895 7.271736090591375, -8.911390840661312 7.253609090574486, -8.972499840718228 7.251664090572675, -9.03694584077823 7.228609090551203, -9.099236840836255 7.203264090527597, -9.10997284084624 7.193927090518898, -9.09839984083547 7.230900090553334, -9.2066638409363 7.3491640906634785, -9.241108840968394 7.382218090694266, -9.324445841045986 7.426809090735787, -9.422499841137324 7.425000090734102, -9.461045841173217 7.3878450906995, -9.485163841195686 7.361991090675431, -9.48736384119772 7.370000090682879, -9.457781841170174 7.441318090749306, -9.420899841135821 7.476600090782171, -9.38416384110161 7.56000009085983, -9.366945841085567 7.6111090909074335, -9.377781841095668 7.641809090936022, -9.376254841094237 7.683054090974437, -9.358726841077925 7.73732709102498, -9.353854841073371 7.742364091029671, -9.359999841079116 7.75028209103705, -9.410281841125936 7.837782091118541, -9.437226841151016 7.901109091177517, -9.431463841145671 7.9553450912280255, -9.417363841132527 7.974582091245949, -9.407499841123354 8.018818091287145, -9.46278184117483 8.1655540914238, -9.483654841194266 8.346927091592718, -9.639163841339098 8.471109091708371, -9.669863841367686 8.490691091726603, -9.792845841482233 8.508400091743098, -9.845836841531565 8.494718091730363, -9.876390841560038 8.499445091734756, -9.896172841578448 8.502845091737925, -9.965554841643069 8.47500009171199, -10.16972684183321 8.512782091747184, -10.214790841875185 8.479236091715947, -10.266654841923497 8.488373091724455, -10.323336841976271 8.509164091743813, -10.390417842038744 8.490836091726749, -10.4227818420689 8.435836091675526, -10.435836842081045 8.4040270916459, -10.492636842133948 8.34819109159389, -10.529163842167975 8.321809091569321, -10.554581842191652 8.308745091557157, -10.695836842323189 8.298609091547718, -10.693890842321395 8.3619450916067, -10.619863842252443 8.543745091776017, -10.576390842211964 8.599445091827889, -10.536808842175105 8.619927091846975, -10.508054842148312 8.71791809193823, -10.58305484221816 8.824445092037436, -10.593190842227614 8.866945092077017, -10.601108842234993 8.953609092157734, -10.595836842230057 8.985691092187608, -10.577317842212835 9.041200092239308, -10.571526842207419 9.059536092256394, -10.611108842244306 9.073191092269099, -10.67860884230717 9.077773092273375, -10.721463842347077 9.077564092273178, -10.739654842364018 9.09139109228606, -10.72360884234908 9.15944509234943, -10.689308842317132 9.206109092392893, -10.671181842300228 9.227709092413008, -10.657290842287296 9.302636092482786, -10.699717842326805 9.346109092523278, -10.750136842373763 9.389027092563254, -10.838608842456182 9.479718092647715, -10.909172842521883 9.603054092762576, -10.979999842587858 9.727500092878472, -10.997217842603874 9.751664092900981, -11.023890842628731 9.781945092929178, -11.051672842654597 9.809445092954789, -11.10458184270388 9.853609092995924, -11.17423684276875 9.975627093109566, -11.214445842806185 9.99750009312993, -11.458890843033856 9.99750009312993, -11.481745843055137 9.997473093129912, -11.569445843136805 9.996664093129155, -11.576736843143607 9.997473093129912, -11.894726843439742 9.996109093128638, -11.900554843445178 9.972500093106646, -11.897499843442347 9.935345093072044, -12.105836843636354 9.880554093021019, -12.109136843639448 9.880400093020882, -12.134445843663002 9.875000093015842, -12.159726843686542 9.879718093020244, -12.219863843742559 9.91194509305025, -12.230763843752726 9.935209093071919, -12.456108843962596 9.888336093028272, -12.492945843996893 9.863909093005518, -12.585972844083528 9.648473092804878, -12.584090844081771 9.63187309278942, -12.61666384411211 9.606109092765422, -12.631108844125578 9.57277309273438, -12.664999844157137 9.47610909264435, -12.679581844170713 9.419718092591836, -12.797781844280792 9.298054092478523, -12.818054844299667 9.286664092467916, -12.856045844335057 9.284445092465845, -12.927226844401332 9.289027092470121, -12.948681844421316 9.277291092459194, -12.960836844432635 9.234445092419278, -12.976390844447138 9.169445092358742, -13.004445844473253 9.108191092301695, -13.031390844498361 9.086391092281403, -13.09319084455592 9.047218092244918, -13.113472844574801 9.043891092241822, -13.140836844600273 9.053891092251135, -13.182845844639417 9.086182092281206, -13.263681844714682 9.062636092259268, -13.290836844739971 9.042773092240779, -13.295608844744436 9.032145092230877, -13.310417844758206 9.042773092240779, -13.325699844772458 9.070073092266199, -13.26972684472031 9.139718092331066, -13.27278184472317 9.202218092389273, -13.313608844761205 9.205554092392376, -13.411945844852767 9.282773092464296, -13.52055484495392 9.45721809262676, -13.523336844956503 9.47958209264759, -13.493136844928387 9.560073092722547, -13.510554844944608 9.530554092695056, -13.522781844956 9.511809092677595, -13.543745844975518 9.500900092667436, -13.679508845101964 9.541464092705212, -13.672226845095167 9.563327092725586, -13.602781845030506 9.734436092884934, -13.594717845022984 9.760136092908866, -13.617226845043945 9.801945092947804, -13.655036845079167 9.834618092978246, -13.646736845071445 9.785627092932614, -13.675554845098276 9.744445092894253, -13.696945845118194 9.738191092888428, -13.720554845140185 9.74110909289115, -13.747363845165154 9.76090009290958, -13.754999845172279 9.788891092935657, -13.733963845152687 9.838054092981437, -13.711945845132163 9.857773092999807, -13.688754845110566 9.899445093038608, -13.684726845106809 9.934309093071079, -13.688636845110466 9.952191093087734, -13.702572845123456 9.909309093047796, -13.732990845151761 9.872845093013837, -13.781808845197247 9.84389109298688, -13.822363845235003 9.849445092992042, -13.846390845257389 9.863336093004989, -13.922226845327998 9.929445093066548, -13.94083684534533 9.94471809308078, -14.065554845461492 10.032218093162271, -14.13360884552489 10.048191093177138, -14.22486384560986 10.104582093229666, -14.457499845826533 10.293609093405706, -14.546872845909746 10.415136093518882, -14.54610884590906 10.492918093591328, -14.535826845899464 10.506673093604135, -14.577154845937969 10.477918093577358, -14.617226845975267 10.469445093569462, -14.660699846015774 10.47332709357309, -14.667217846021828 10.525000093621202, -14.621945845979667 10.66791809375431, -14.61119984596968 10.69781809378216, -14.553336845915766 10.779718093858435, -14.516526845881486 10.842782093917165, -14.573472845934532 10.808191093884943, -14.611945845970354 10.740273093821699, -14.636808845993528 10.686664093771768, -14.698608846051087 10.640482093728764, -14.715972846067245 10.69624509378069, -14.707781846059618 10.75666409383696, -14.747217846096333 10.83360909390862, -14.7724998461199 10.83221809390733, -14.808608846153533 10.82083609389673, -14.8188908461631 10.917500093986746, -14.81513684615959 10.937218094005118, -14.779163846126096 10.946664094013911, -14.734863846084835 10.959309094025684, -14.690417846043431 11.028891094090497, -14.749026846098019 10.979027094044056, -14.865836846206804 10.964654094030664, -14.906945846245094 10.927773093996322, -14.920554846257772 10.90027309397071, -14.94819984628353 10.787291093865491, -14.984445846317271 10.769027093848479, -15.005417846336798 10.771945093851187, -15.025417846355424 10.78277309386128, -15.073199846399945 10.839864093914443, -15.080836846407038 10.87124509394367, -15.075072846401696 10.894164093965017, -15.01684584634745 10.95645409402303, -15.0091638463403 10.960282094026596, -14.961945846296317 11.016391094078855, -14.924999846261926 11.075836094134218, -14.868054846208878 11.176664094228116, -14.847781846190003 11.231109094278821, -14.840136846182872 11.260836094306512, -14.82833684617188 11.3029180943457, -14.805699846150816 11.352082094391491, -14.781390846128176 11.389445094426279, -14.70528184605729 11.493054094522776, -14.678126846032 11.512636094541008, -14.637217845993888 11.516391094544517, -14.597917845957284 11.515273094543474, -14.573054845934138 11.50916409453778, -14.535281845898965 11.510000094538555, -14.51055484587593 11.514445094542694, -14.431317845802141 11.559118094584306, -14.401945845774776 11.57500009459909, -14.309163845688374 11.62889109464929, -14.279445845660689 11.675000094692223, -14.142081845532772 11.66110909467929, -14.104026845497316 11.64076409466034, -14.079445845474424 11.640836094660415, -14.074608845469925 11.64294509466238, -14.001663845401993 11.640973094660538, -13.772917845188942 11.686800094703216, -13.708190845128684 11.71763609473193, -13.703890845124675 11.7808360947908, -13.714072845134154 12.016182095009981, -13.74402684516204 12.029300095022194, -13.784717845199935 12.039582095031776, -13.876799845285717 12.117364095104207, -13.926381845331889 12.14860909513331, -13.963981845366902 12.153491095137852, -13.963508845366448 12.199036095180276, -13.859445845269533 12.278609095254382, -13.800136845214297 12.280000095255673, -13.807081845220779 12.25555409523291, -13.731672845150541 12.258054095235238, -13.703608845124421 12.280554095256193, -13.695590845116953 12.292964095267749, -13.669308845092473 12.318609095291635, -13.643890845068796 12.452500095416326, -13.64583684507059 12.476945095439092, -13.655417845079512 12.495554095456427, -13.687226845109137 12.526527095485278, -13.712981845133129 12.565764095521814, -13.72083684514044 12.59832709555215, -13.72083684514044 12.618327095570777, -13.718336845138111 12.64277309559354, -13.713136845133278 12.67721809562562, -13.62778184505379 12.677500095625874, -13.35666384480129 12.665273095614495, -13.310226844758034 12.649727095600014, -13.206390844661342 12.652218095602336, -13.056317844521573 12.634100095585467, -13.04242684450864 12.590000095544383, -13.055554844520856 12.55582709551257, -13.068754844533146 12.532082095490452, -13.063890844528629 12.502918095463286, -13.045699844511688 12.47902709544104, -12.961599844433351 12.473682095436061, -12.946390844419199 12.523191095482161, -12.92701784440115 12.54221809549989, -12.896254844372493 12.545000095502473, -12.845836844325532 12.512218095471951, -12.78694584427069 12.465000095427968, -12.634026844128272 12.436382095401328, -12.587781844085214 12.371945095341303, -12.582781844080557 12.363609095333544, -12.502499844005797 12.3951360953629, -12.47917284398406 12.3951360953629, -12.445836843953003 12.387218095355536, -12.394654843905357 12.367354095337035, -12.373608843885762 12.334164095306122, -12.345399843859468 12.301745095275933, -12.196108843720452 12.345554095316729, -12.170281843696387 12.3538910953245, -12.149581843677112 12.36486409533471, -12.128054843657054 12.382773095351396, -12.033890843569367 12.400554095367951, -11.895281843440273 12.40916409537597, -11.841672843390342 12.386391095354767, -11.757499843311962 12.37971809534855, -11.736390843292298 12.380554095349325, -11.693608843252463 12.390554095358638, -11.67555484323563 12.400554095367951, -11.645554843207691 12.42152709538749, -11.519726843090496 12.43444509539951, -11.476526843050266 12.43582709540081, -11.427226843004348 12.426382095392015, -11.373054842953906 12.40777309537468, -11.383054842963219 12.383327095351916, -11.450699843026229 12.244436095222554, -11.481454843054877 12.227636095206904, -11.494717843067207 12.20610909518686, -11.494163843066701 12.176382095159184, -11.45944584303436 12.136109095121668, -11.449390843025014 12.130236095116203, -11.413336842991413 12.120000095106661, -11.37499984295573 12.104791095092509, -11.340054842923166 12.046800095038492, -11.319581842904114 12.025691095018828, -11.243054842832834 11.995209094990443, -11.177426842771723 12.016945095010684, -11.170472842765236 12.027182095020223, -11.150690842746826 12.044027095035915, -11.101108842700654 12.117500095104333, -11.045690842649037 12.204582095185444, -10.958199842567552 12.226109095205487, -10.928890842540255 12.224445095203933, -10.909726842522389 12.21582709519592, -10.88854584250268 12.197636095178964, -10.814717842433907 12.11277309509994, -10.743336842367427 11.963264094960692, -10.727990842353137 11.919164094919623, -10.684999842313118 11.898054094899962, -10.652745842283082 11.892609094894894, -10.562781842199286 11.994445094989729, -10.452917842096952 12.117082095103953, -10.357226842007833 12.16638209514987, -10.33090884198333 12.195764095177225, -10.327090841979782 12.223536095203087, -10.098754841767118 12.179027095161644, -9.911945841593138 12.093327095081833, -9.865217841549622 12.054809095045954, -9.757917841449682 12.027773095020777, -9.70194584139756 12.029164095022068, -9.667217841365215 12.081800095071088, -9.67028184136808 12.111109095098385, -9.664026841362244 12.131664095117529, -9.644581841344149 12.153745095138092, -9.628336841329002 12.16555409514909, -9.580281841284261 12.188054095170045, -9.398054841114543 12.254445095231873, -9.370554841088932 12.250273095227996, -9.345836841065903 12.252773095230324, -9.318472841040432 12.268054095244551, -9.301990841025088 12.31280909528624, -9.29499984101858 12.362218095332253, -9.345836841065903 12.406382095373388, -9.400281841116623 12.452145095416, -9.359863841078976 12.488473095449834, -9.311672841034095 12.50470009546494, -9.253054840979502 12.49971809546031, -9.15305484088637 12.48513609544672, -9.084726840822725 12.437500095402356, -9.056181840796143 12.435000095400028, -8.979999840725213 12.39277309536071, -8.948336840695703 12.354718095325268, -8.943608840691326 12.334718095306641, -8.955836840702688 12.315554095288789, -8.977499840722885 12.278473095254256, -8.980445840725622 12.229618095208764, -8.962081840708521 12.195691095177153, -8.93680884068499 12.191245095173016, -8.796899840554687 12.006345095000825, -8.779726840538672 11.925836094925842, -8.792781840550845 11.856664094861415, -8.831663840587055 11.661664094679807, -8.773890840533255 11.639864094659501, -8.737017840498908 11.638609094658335, -8.705972840469997 11.655973094674508, -8.69472684045951 11.632218094652387, -8.689417840454581 11.602473094624685, -8.672499840438832 11.556664094582018, -8.656663840424073 11.520418094548262, -8.638054840406738 11.497218094526659, -8.604717840375685 11.475136094506084, -8.57778184035061 11.470000094501302, -8.54778184032267 11.480000094510615, -8.533881840309732 11.493909094523573, -8.516526840293551 11.434718094468451, -8.495972840274419 11.420554094455255, -8.460626840241503 11.419791094454553, -8.390554840176236 11.392773094429387, -8.362845840150442 11.37511809441294, -8.356108840144174 11.314164094356173, -8.368963840156141 11.287427094331278, -8.393890840179353 11.279718094324096, -8.431390840214277 11.280973094325262, -8.451663840233152 11.291945094335475, -8.477426840257152 11.288400094332175, -8.609999840380624 11.12721809418207, -8.679790840445605 11.002500094065908, -8.671526840437906 10.958918094025321, -8.58360884035605 10.972773094038232, -8.511108840288529 11.005554094068756, -8.4580548402391 11.050836094110934, -8.34607284013481 11.053264094113189, -8.289717840082318 11.007773094070828, -8.287499840080272 10.849445093923364, -8.321390840111832 10.760827093840845, -8.281945840075082 10.549445093643968, -8.269999840063974 10.502500093600247, -8.218054840015583 10.425691093528712, -8.186526839986215 10.416527093520187, -8.14110883994394 10.423891093527047, -7.976454839790591 10.3288180934385, -7.942017839758506 10.242982093358563, -7.97398183978828 10.165609093286506, -8.004999839817174 10.10569109323069, -8.019163839830355 10.089164093215302, -8.041945839851564 10.073327093200561, -8.065554839873556 10.061945093189948, -8.101045839906618 10.053609093182189, -8.147636839949996 9.983891093117265, -8.158199839959849 9.927573093064808, -8.129999839933589 9.886109093026192, -8.104163839909518 9.864164093005755, -8.10423683990959 9.814864092959837, -8.111181839916043 9.809000092954378, -8.114726839919342 9.80555409295117, -8.147499839949887 9.620554092778875, -8.145281839947813 9.557218092719893, -8.143608839946268 9.53389109269817, -8.131945839935383 9.49694509266375, -8.109163839914174 9.464164092633226, -8.064517839872593 9.41880909259099, -8.055836839864497 9.40333609257658, -8.0193088398305 9.388054092562342, -7.961945839777059 9.389718092563896, -7.877226839698153 9.351527092528329, -7.9172178397354 9.235000092419796, -7.919999839738011 9.204027092390959, -7.903190839722356 9.179582092368193, -7.797226839623647 9.125827092318133, -7.736108839566754 9.091664092286308, -7.736490839567097 9.072454092268416, -7.810554839636069 9.069164092265353, -7.898890839718348 9.018891092218539, -7.914163839732566 9.002918092203657, -7.928054839745499 8.972082092174944, -7.936663839753521 8.93305409213859, -7.956808839772293 8.82610909203899, -7.956254839771759 8.80444509201881, -7.940763839757352 8.78013609199617, -7.910554839729201 8.767218091984148, -7.883890839704378 8.775418091991781, -7.792363839619128 8.75555409197328, -7.750836839580444 8.717636091937962, -7.673472839508406 8.615273091842639, -7.675281839510092 8.547500091779511, -7.6748638395096975 8.437636091677192, -7.665554839501027 8.4158360916569, -7.653372839489691 8.383836091627089, -7.697781839531046 8.37083609161499, -7.748926839578672 8.382782091626112, -7.760836839589757 8.415691091656754, -7.7841638396114945 8.454582091692984, -7.817081839642157 8.48610909172234, -7.948890839764914 8.501664091736828, -8.188399839987966 8.4991640917345, -8.24101784003696 8.446545091685493, -8.234726840031101 8.315000091562979, -8.231945840028516 8.274445091525209, -8.228890840025684 8.240273091493393, -8.174717839975216 8.197773091453811, -8.109999839914963 8.174445091432077, -8.063054839871228 8.163745091422115, -8.020554839831647 8.179718091436996, -7.999445839811983 8.153891091412945, -7.951254839767103 8.036245091303371, -7.9468368397629945 8.018509091286859))) +GNB Guinea-Bissau MULTIPOLYGON (((-15.68167284696662 11.797864094806656, -15.742499847023282 11.78916409479855, -15.851945847125194 11.767773094778633, -15.959445847225311 11.735273094748365, -15.965281847230756 11.773609094784064, -15.9293728471973 11.87527309487875, -15.862917847135407 11.967082094964255, -15.841526847115489 11.984164094980159, -15.7911818470686 12.001182094996011, -15.769517847048434 11.983264094979319, -15.723890847005947 11.967500094964635, -15.705190846988529 12.002218094996977, -15.7058088469891 12.009909095004133, -15.73069984701229 11.993054094988437, -15.763654847042972 11.995136094990372, -15.777017847055419 12.012982095007004, -15.852781847125982 12.016664095010427, -15.89805484716814 12.000000094994903, -15.923890847192212 11.984582094980553, -15.940836847207976 11.951527094949768, -15.959445847225311 11.927918094927776, -15.977499847242143 11.914445094915223, -16.120072847374928 11.882082094885092, -16.202781847451945 11.905554094906947, -16.249172847495146 11.928191094928025, -16.28759984753094 11.983973094979987, -16.334472847574602 11.999091094994057, -16.343608847583113 12.031391095024148, -16.349726847588784 12.10583609509348, -16.33263684757287 12.153054095137449, -16.25999984750524 12.222218095201868, -16.221945847469783 12.248054095225925, -16.19778184744729 12.25944509523653, -16.13930884739284 12.28562709526092, -16.115281847370454 12.33332709530535, -16.223472847471214 12.285136095260455, -16.28139084752516 12.241109095219457, -16.350554847589564 12.193891095175488, -16.455281847687104 12.171809095154913, -16.495281847724357 12.184582095166817, -16.50708184773535 12.21402709519424, -16.54958184777493 12.26236409523925, -16.568054847792126 12.275000095251016, -16.68458184790066 12.335691095307538, -16.71777284793157 12.322427095295197, -16.71028184792459 12.33666409530845, -16.692781847908293 12.355827095326305, -16.663336847880856 12.360836095330967, -16.548608847774034 12.357218095327596, -16.518608847746094 12.347636095318663, -16.381672847618546 12.374718095343894, -16.209163847457887 12.4608360954241, -16.102217847358276 12.47139109543393, -16.07236384733048 12.472218095434698, -16.03999984730035 12.467218095430042, -16.01917284728094 12.46055409542383, -16.0005548472636 12.451664095415552, -15.962226847227896 12.436109095401065, -15.888472847159221 12.44810909541225, -15.809445847085613 12.440554095405204, -15.685281846969986 12.430000095395371, -15.614726846904261 12.462773095425902, -15.41939984672237 12.551409095508447, -15.361390846668343 12.598054095551888, -15.334445846643234 12.615836095568454, -15.21805484653484 12.684718095632604, -14.923336846260355 12.682782095630799, -14.874445846214826 12.681945095630013, -14.64930884600517 12.680973095629113, -14.516945845881878 12.679718095627948, -14.3930548457665 12.67889109562718, -14.341754845718725 12.67889109562718, -14.136945845527976 12.677364095625748, -13.998608845399161 12.676109095624582, -13.85749984526774 12.676391095624851, -13.713136845133278 12.67721809562562, -13.718336845138111 12.64277309559354, -13.72083684514044 12.618327095570777, -13.72083684514044 12.59832709555215, -13.712981845133129 12.565764095521814, -13.687226845109137 12.526527095485278, -13.655417845079512 12.495554095456427, -13.64583684507059 12.476945095439092, -13.643890845068796 12.452500095416326, -13.669308845092473 12.318609095291635, -13.695590845116953 12.292964095267749, -13.703608845124421 12.280554095256193, -13.731672845150541 12.258054095235238, -13.807081845220779 12.25555409523291, -13.800136845214297 12.280000095255673, -13.859445845269533 12.278609095254382, -13.963508845366448 12.199036095180276, -13.963981845366902 12.153491095137852, -13.926381845331889 12.14860909513331, -13.876799845285717 12.117364095104207, -13.784717845199935 12.039582095031776, -13.74402684516204 12.029300095022194, -13.714072845134154 12.016182095009981, -13.703890845124675 11.7808360947908, -13.708190845128684 11.71763609473193, -13.772917845188942 11.686800094703216, -14.001663845401993 11.640973094660538, -14.074608845469925 11.64294509466238, -14.079445845474424 11.640836094660415, -14.104026845497316 11.64076409466034, -14.142081845532772 11.66110909467929, -14.279445845660689 11.675000094692223, -14.309163845688374 11.62889109464929, -14.401945845774776 11.57500009459909, -14.431317845802141 11.559118094584306, -14.51055484587593 11.514445094542694, -14.535281845898965 11.510000094538555, -14.573054845934138 11.50916409453778, -14.597917845957284 11.515273094543474, -14.637217845993888 11.516391094544517, -14.678126846032 11.512636094541008, -14.70528184605729 11.493054094522776, -14.781390846128176 11.389445094426279, -14.805699846150816 11.352082094391491, -14.82833684617188 11.3029180943457, -14.840136846182872 11.260836094306512, -14.847781846190003 11.231109094278821, -14.868054846208878 11.176664094228116, -14.924999846261926 11.075836094134218, -14.961945846296317 11.016391094078855, -15.0091638463403 10.960282094026596, -15.01684584634745 10.95645409402303, -15.049717846378059 10.935836094003832, -15.086390846412229 10.925100093993834, -15.115699846439526 10.97763609404275, -15.099445846424373 11.065554094124636, -15.074999846401624 11.102773094159303, -15.035345846364692 11.140064094194031, -15.022781846352984 11.19527309424545, -15.097781846422833 11.132218094186726, -15.152226846473525 11.08610909414378, -15.169490846489623 11.064682094123825, -15.18097284650031 11.041445094102187, -15.204445846522162 11.005282094068505, -15.232917846548673 10.995900094059763, -15.273126846586138 11.028191094089834, -15.234017846549705 11.065954094125004, -15.215308846532281 11.086654094144293, -15.202226846520091 11.129164094183878, -15.208817846526244 11.229754094277567, -15.236663846552176 11.213891094262792, -15.232781846548562 11.187773094238466, -15.22028184653692 11.154791094207752, -15.232426846548236 11.12666409418155, -15.279445846592012 11.125554094180515, -15.307217846617874 11.130554094185172, -15.353472846660964 11.14180909419565, -15.407781846711543 11.189864094240406, -15.426663846729127 11.287427094331278, -15.415281846718528 11.324718094366006, -15.386599846691809 11.371809094409855, -15.360281846667306 11.36430909440287, -15.333054846641943 11.363473094402096, -15.312226846622536 11.377773094415417, -15.28916384660107 11.39750009443378, -15.27236384658542 11.415273094450342, -15.26528184657883 11.425909094460238, -15.33530884664404 11.378773094416346, -15.361208846668177 11.389736094426553, -15.380763846686392 11.405327094441077, -15.421563846724382 11.383218094420485, -15.442254846743651 11.345536094385395, -15.501145846798494 11.332809094373545, -15.475281846774408 11.457773094489923, -15.325836846635212 11.585282094608672, -15.28208184659448 11.619309094640357, -15.187781846506653 11.640836094660415, -15.111736846435832 11.615554094636863, -15.094445846419717 11.581109094604784, -15.037226846366423 11.576391094600396, -15.02722684635711 11.594164094616943, -15.087226846412989 11.628336094648773, -15.172781846492683 11.656391094674902, -15.287226846599253 11.649164094668166, -15.324445846633921 11.636809094656655, -15.33903684664753 11.681464094698242, -15.343890846652045 11.680836094697668, -15.384163846689546 11.625000094645657, -15.371945846678159 11.597291094619862, -15.391108846696028 11.578609094602456, -15.444336846745585 11.553127094578727, -15.467363846767029 11.598745094621208, -15.455490846755964 11.617918094639066, -15.429308846731601 11.654582094673216, -15.42389084672655 11.67610909469326, -15.423526846726219 11.683664094700305, -15.451390846752162 11.672500094689894, -15.531108846826413 11.674718094691968, -15.54930884684336 11.690136094706318, -15.556108846849696 11.725418094739183, -15.529999846825376 11.777500094787683, -15.458608846758892 11.865273094869437, -15.438054846739732 11.880000094883144, -15.381945846687472 11.8850000948878, -15.355281846662649 11.878191094881458, -15.32708184663639 11.86860909487254, -15.249999846564606 11.865554094869694, -15.215554846532513 11.865000094869174, -15.19444584651285 11.867918094871897, -15.130836846453604 11.893327094895568, -15.088199846413914 11.851527094856635, -15.066526846393714 11.802636094811092, -14.975554846308995 11.751245094763235, -14.955972846290763 11.746945094759226, -14.930554846267086 11.754791094766546, -14.924117846261083 11.763218094774388, -14.929445846266049 11.760554094771905, -14.951526846286612 11.757364094768931, -15.053754846381821 11.820554094827784, -15.065626846392888 11.847082094852496, -15.022226846352453 11.9502730949486, -14.990890846323282 11.956791094954667, -14.991108846323499 11.958054094955841, -15.008263846339474 11.976300094972842, -15.074999846401624 11.984445094980416, -15.1442368464661 11.953054094951185, -15.165281846485698 11.926945094926864, -15.19444584651285 11.906800094908107, -15.216808846533695 11.903891094905404, -15.316317846626362 11.92923609492901, -15.350554846658241 11.959445094957132, -15.370136846676473 11.96374509496114, -15.406390846710252 11.963336094960766, -15.430836846733001 11.958891094956627, -15.495490846793217 11.936454094935726, -15.539045846833801 11.89688209489887, -15.593199846884232 11.84402709484965, -15.65194584693893 11.805973094814206, -15.68167284696662 11.797864094806656)), ((-16.154726847407176 11.024718094086609, -16.160554847412612 11.025836094087651, -16.188472847438618 11.037500094098505, -16.21569984746398 11.055273094115066, -16.234445847481425 11.074718094133175, -16.24167284748816 11.085136094142868, -16.243199847489592 11.10305409415956, -16.23639084748325 11.113336094169142, -16.163608847415475 11.16694509421906, -16.110554847366046 11.204445094253984, -16.080281847337858 11.205691094255144, -16.054026847313395 11.187918094238597, -16.067826847326245 11.166982094219094, -16.066390847324925 11.142445094196248, -16.053772847313155 11.128391094183158, -16.051390847310955 11.116709094172279, -16.05424584731361 11.099800094156535, -16.048754847308487 11.074027094132532, -16.059999847318977 11.039718094100579, -16.08499984734226 11.025973094087774, -16.154726847407176 11.024718094086609)), ((-16.034726847295417 11.417218094452153, -16.064999847323634 11.44971809448242, -16.01472684727679 11.546945094572962, -15.981390847245763 11.576664094600645, -15.958336847224274 11.594164094616943, -15.917781847186518 11.585836094609192, -15.905554847175125 11.577500094601419, -15.903054847172797 11.542218094568568, -15.909726847179002 11.470273094501565, -15.914999847183935 11.448609094481384, -15.948199847214852 11.424027094458495, -16.034726847295417 11.417218094452153)), ((-16.085281847342515 11.753609094765437, -16.093054847349748 11.75597309476764, -16.157854847410107 11.809027094817054, -16.16555484741727 11.840827094846674, -16.15715484740946 11.871109094874868, -15.981108847245508 11.90569109490707, -15.98416384724834 11.876527094879918, -15.991945847255579 11.852773094857795, -16.029372847290432 11.758536094770022, -16.085281847342515 11.753609094765437)), ((-15.763054847042412 11.163891094216225, -15.770281847049148 11.16694509421906, -15.778608847056915 11.197500094247516, -15.776390847054842 11.22582709427391, -15.753054847033098 11.269718094314783, -15.717636847000108 11.295973094339232, -15.689308846973745 11.305418094348028, -15.662426846948705 11.301454094344336, -15.655417846942157 11.237918094285163, -15.661108846947485 11.225073094273199, -15.739999847020954 11.16694509421906, -15.763054847042412 11.163891094216225)), ((-16.31222684755386 11.477218094508032, -16.324581847565383 11.48944509451941, -16.335836847575848 11.499027094528344, -16.3686178476064 11.507773094536489, -16.385972847622554 11.499300094528593, -16.394026847630045 11.486800094516951, -16.41493684764953 11.48229109451276, -16.420136847654362 11.533118094560095, -16.39097284762721 11.546664094572705, -16.27194584751635 11.576945094600902, -16.243199847489592 11.57555409459961, -16.238890847485578 11.564718094589523, -16.244999847491272 11.550000094575807, -16.25055484749643 11.536664094563392, -16.268336847512984 11.500000094529241, -16.27916384752308 11.488336094518388, -16.31222684755386 11.477218094508032)), ((-15.466817846766531 11.565309094590077, -15.522063846817986 11.562500094587449, -15.54359984683802 11.526918094554318, -15.574036846866392 11.506782094535566, -15.6339638469222 11.535809094562595, -15.557181846850682 11.593400094616229, -15.487890846786144 11.624300094645008, -15.466817846766531 11.565309094590077))) +MLI Mali MULTIPOLYGON (((-9.865217841549622 12.054809095045954, -9.911945841593138 12.093327095081833, -10.098754841767118 12.179027095161644, -10.327090841979782 12.223536095203087, -10.33090884198333 12.195764095177225, -10.357226842007833 12.16638209514987, -10.452917842096952 12.117082095103953, -10.562781842199286 11.994445094989729, -10.652745842283082 11.892609094894894, -10.684999842313118 11.898054094899962, -10.727990842353137 11.919164094919623, -10.743336842367427 11.963264094960692, -10.814717842433907 12.11277309509994, -10.88854584250268 12.197636095178964, -10.909726842522389 12.21582709519592, -10.928890842540255 12.224445095203933, -10.958199842567552 12.226109095205487, -11.045690842649037 12.204582095185444, -11.101108842700654 12.117500095104333, -11.150690842746826 12.044027095035915, -11.170472842765236 12.027182095020223, -11.177426842771723 12.016945095010684, -11.243054842832834 11.995209094990443, -11.319581842904114 12.025691095018828, -11.340054842923166 12.046800095038492, -11.37499984295573 12.104791095092509, -11.413336842991413 12.120000095106661, -11.449390843025014 12.130236095116203, -11.45944584303436 12.136109095121668, -11.494163843066701 12.176382095159184, -11.494717843067207 12.20610909518686, -11.481454843054877 12.227636095206904, -11.450699843026229 12.244436095222554, -11.383054842963219 12.383327095351916, -11.373054842953906 12.40777309537468, -11.37360884295444 12.447773095411932, -11.40889084298729 12.53500009549316, -11.416945842994778 12.56944509552524, -11.424163843001509 12.656109095605956, -11.394999842974357 12.831945095769711, -11.369926842951003 12.932218095863107, -11.376108842956768 12.982918095910321, -11.463336843037979 13.085836096006176, -11.515136843086225 13.112082096030619, -11.528890843099049 13.140136096056736, -11.556181843124449 13.212427096124074, -11.539372843108794 13.254718096163458, -11.552226843120764 13.282773096189587, -11.608054843172766 13.358327096259956, -11.63458184319748 13.391527096290872, -11.716254843273532 13.412500096310396, -11.74097284329656 13.40902709630717, -11.758608843312999 13.364718096265904, -11.809517843360396 13.30927309621427, -11.887290843432822 13.38160009628163, -11.878199843424369 13.420418096317775, -11.965490843505648 13.528127096418089, -11.990836843529252 13.556391096444415, -12.03444584356987 13.61083609649512, -12.057217843591076 13.6647180965453, -12.06444584359781 13.695554096574014, -12.041390843576352 13.7286090966048, -12.00999984354712 13.746664096621615, -11.98944584352796 13.761245096635193, -11.967781843507794 13.781664096654211, -11.955699843496546 13.800973096672195, -11.947781843489167 13.830273096699486, -11.942499843484256 13.85889109672614, -11.941663843483468 13.883609096749154, -11.943336843485014 13.906809096770758, -11.958754843499378 13.922773096785633, -11.986663843525378 13.94374509680516, -12.007917843545158 13.966245096826114, -12.014026843550852 14.018473096874757, -12.00444584354193 14.061809096915113, -11.979999843519181 14.151391096998552, -11.982226843521232 14.17278209701847, -12.030345843566067 14.27750009711599, -12.150836843678263 14.37416409720602, -12.206399843730026 14.395291097225694, -12.225699843748004 14.505282097328134, -12.216945843739836 14.539718097360208, -12.178608843704154 14.607500097423326, -12.244163843765193 14.75055409755656, -12.244836843765825 14.764382097569438, -12.174999843700789 14.76832709757312, -12.09430884362564 14.739582097546347, -12.059963843593636 14.725636097533354, -11.974308843513882 14.771527097576097, -11.866945843413873 14.840827097640641, -11.841390843390087 14.863054097661333, -11.815281843365767 14.925000097719021, -11.796317843348106 15.014791097802657, -11.812217843362902 15.05034509783576, -11.84088184338961 15.046900097832562, -11.846672843394998 15.09721809787942, -11.832226843381534 15.195273097970741, -11.79528184334714 15.32110909808793, -11.754999843309633 15.438609098197361, -11.74062684329624 15.47742709823352, -11.71618184327346 15.498682098253312, -11.710836843268481 15.525836098278603, -11.71167284326927 15.545000098296441, -11.639863843202392 15.525282098278083, -11.599717843164996 15.54555409829696, -11.537781843107325 15.596391098344313, -11.498608843070855 15.641800098386597, -11.455281843030491 15.643327098388028, -11.418126842995889 15.633473098378843, -11.365136842946526 15.575691098325024, -11.33722684292053 15.524445098277297, -11.302226842887933 15.475000098231249, -11.286663842873452 15.455554098213142, -11.253890842842935 15.431391098190645, -11.23694584282714 15.420000098180026, -11.19999984279275 15.394164098155969, -11.172499842767138 15.374718098137862, -10.993054842600003 15.242773098014979, -10.984999842592515 15.22305409799661, -10.973890842582165 15.198891097974112, -10.914445842526789 15.124718097905031, -10.896563842510147 15.110364097891662, -10.848054842464961 15.206109097980828, -10.764308842386981 15.311391098078886, -10.73458184235929 15.341391098106826, -10.71944584234518 15.374445098137599, -10.71639084234235 15.438900098197635, -10.675063842303842 15.43212709819133, -10.649999842280522 15.430273098189602, -10.604999842238612 15.42805409818753, -10.567426842203616 15.432291098191484, -10.469999842112884 15.43721809819607, -10.31069984196452 15.441245098199815, -10.289726841944969 15.437918098196718, -10.212781841873323 15.408054098168904, -10.118054841785096 15.37277309813605, -10.086945841756119 15.368609098132168, -10.060554841731545 15.366945098130614, -10.032781841705685 15.366945098130614, -9.811390841499502 15.374718098137862, -9.778263841468657 15.386245098148592, -9.746254841438827 15.405554098166576, -9.696663841392649 15.430000098189339, -9.66083684135927 15.431109098190376, -9.409726841125405 15.444309098202666, -9.415281841130593 15.478891098234882, -9.44249984115595 15.596945098344818, -9.338054841058664 15.704718098445198, -9.311808841034235 15.677500098419841, -9.332499841053504 15.563609098313776, -9.333608841054541 15.499718098254277, -9.226390840954679 15.49860909825324, -9.184672840915823 15.498218098252877, -9.090554840828162 15.498891098253509, -9.03694584077823 15.498336098252992, -8.996390840740474 15.498336098252992, -8.585281840357595 15.501109098255569, -8.513890840291111 15.501391098255837, -8.505090840282918 15.500827098255314, -8.05110883986012 15.501391098255837, -8.001390839813808 15.500827098255314, -7.662217839497913 15.503336098257648, -7.501108839347893 15.505000098259188, -7.3583368392149 15.505836098259977, -7.018890838898784 15.507218098261262, -6.658608838563225 15.505836098259977, -6.426390838346975 15.504445098258671, -6.319163838247107 15.503609098257897, -6.307981838236685 15.502782098257128, -5.958890837911582 15.504445098258671, -5.583608837562053 15.499445098254014, -5.495054837479586 15.498373098253026, -5.493608837478234 15.515554098269021, -5.483890837469204 15.567218098317142, -5.420281837409959 15.894445098621887, -5.386108837378117 16.066391098782034, -5.372499837365467 16.135273098846184, -5.3349998373305425 16.32805409902572, -5.601390837578634 16.507773099193102, -5.628054837603457 16.748609099417394, -5.694445837665285 17.35027309997774, -5.747781837714967 17.83110910042555, -5.782781837747564 18.152500100724865, -5.803336837766693 18.341391100900793, -5.8377818377987865 18.650000101188198, -5.853890837813793 18.787218101316, -5.884445837842236 19.061664101571594, -5.901108837857748 19.215827101715178, -5.918336837873795 19.37000010185875, -5.9566638379095025 19.712500102177728, -5.974163837925801 19.86639110232106, -6.006663837956069 20.149164102584407, -6.055281838001349 20.559445102966507, -6.0774998380220495 20.747218103141392, -6.107217838049706 20.99944510337629, -6.132226838072995 21.221109103582734, -6.153054838092402 21.40888210375762, -6.1744458381123195 21.596382103932243, -6.208336838143879 21.88582710420181, -6.226108838160428 22.039164104344607, -6.298890838228232 22.668609104930823, -6.319726838247618 22.85555410510493, -6.325836838253309 22.90639110515228, -6.335954838262751 22.990264105230395, -6.366945838291599 23.254718105476684, -6.441799838361334 23.878764106057872, -6.475281838392505 24.16139110632109, -6.511108838425855 24.458054106597373, -6.523890838437779 24.562773106694905, -6.533336838446559 24.632500106759835, -6.577217838487428 24.999164107101322, -6.500281838415788 25.000000107102096, -6.366945838291599 25.000000107102096, -6.299717838228986 24.99944510710158, -6.133890838074564 24.99944510710158, -5.767217837733057 25.000000107102096, -4.966663836987493 24.99944510710158, -4.866663836894361 24.99944510710158, -4.80610883683795 25.00027310710236, -4.525281836576426 24.825000106939115, -4.123054836201817 24.571109106702664, -3.7922178358936947 24.360273106506313, -3.4627818355868953 24.14889110630945, -3.2337728353735997 24.000536106171282, -2.824981834992883 23.73471810592372, -2.448336834642106 23.487218105693216, -2.0899998343084008 23.25000010547228, -1.750554833992254 23.02332710526119, -1.412217833677147 22.79555410504905, -1.142781833426227 22.612782104878832, -0.7738908330826746 22.36110910464444, -0.4233368327561777 22.119718104419633, -0.1074998324620538 21.900554104215516, -0.0080548323694245 21.830554104150323, 0.0155541676525672 21.815273104136097, 0.1497181677775075 21.73305410405952, 0.2672181678869379 21.66082710399226, 0.4011091680116294 21.578327103915427, 0.7683361683536418 21.351664103704323, 1.1708001687284764 21.100854103470738, 1.1855541687422146 21.057782103430625, 1.194863168750885 21.022773103398023, 1.1971451687529964 21.002482103379123, 1.1925001687486656 20.937500103318598, 1.1863911687430004 20.900554103284193, 1.1813911687383438 20.87750010326272, 1.1707631687284277 20.840554103228314, 1.1602821687186804 20.80013610319068, 1.16340016872158 20.754854103148503, 1.1763911687336872 20.73374510312884, 1.3513911688966687 20.681945103080594, 1.4783361690148809 20.641391103042835, 1.5188911690526652 20.626664103029114, 1.577918169107619 20.59986410300415, 1.627500169153791 20.571109102977374, 1.6616631691856298 20.538191102946726, 1.6719451691951974 20.464718102878294, 1.668400169191898 20.415618102832568, 1.7150001692352816 20.370000102790073, 1.7897181693048765 20.31290910273691, 1.81028216932404 20.301109102725917, 1.900282169407859 20.259718102687373, 2.090836169585316 20.21874510264921, 2.129163169621023 20.236382102665644, 2.1738911696626815 20.276527102703028, 2.2036091696903384 20.2830541027091, 2.2275001697125845 20.274164102700823, 2.275763169757539 20.242009102670877, 2.320000169798732 20.203054102634596, 2.3441631698212575 20.177773102611056, 2.355282169831611 20.161109102595532, 2.3766631698515255 20.12694510256371, 2.3863911698605875 20.108891102546906, 2.4059001698787483 20.06555410250654, 2.421663169893435 20.053054102494897, 2.514863169980231 20.022218102466184, 2.5877821700481434 20.001664102447037, 2.7026361701551025 20.00250010244781, 2.902218170340973 19.966945102414698, 3.0061091704377247 19.927773102378225, 3.0286091704586795 19.917773102368912, 3.2330541706490976 19.81714510227519, 3.2308361706470237 19.73750010220101, 3.2230541706397844 19.623336102094697, 3.212500170629937 19.58416410205821, 3.21152717062904 19.5566641020326, 3.2484001706633876 19.44597310192951, 3.2704181706838824 19.425691101910616, 3.278054170691007 19.40582710189213, 3.272573170685888 19.376736101865035, 3.1911091706100194 19.256109101752685, 3.1463911705683927 19.201945101702236, 3.125836170549235 19.1800001016818, 3.1170091705410243 19.145554101649722, 3.137363170559979 19.11708210162321, 3.1838911706033173 19.078609101587375, 3.331945170741193 18.976391101492183, 3.7333361711150133 19.05166410156228, 3.909100171278709 19.08480910159315, 3.9527821713193987 19.093054101600828, 4.080836171438648 19.116664101622817, 4.2452821715918105 19.146664101650757, 4.2452821715918105 19.07250010158168, 4.245836171592316 18.866391101389738, 4.245554171592062 18.66055410119803, 4.245000171591528 18.645273101183804, 4.246663171593099 17.99805410058103, 4.248609171594893 17.648054100255067, 4.24971817159593 17.47610910009493, 4.251109171597221 17.292009099923476, 4.251391171597504 16.99402709964596, 4.221109171569282 16.915000099572353, 4.19889117154861 16.82082709948466, 4.1995821715492525 16.746664099415582, 4.200836171550407 16.393891099087043, 4.179582171530626 16.384236099078052, 4.145282171498678 16.369718099064528, 4.1141631714696985 16.348054099044347, 4.096391171453149 16.330691099028172, 4.072082171430509 16.2986090989983, 3.9808361713455156 16.07027309878565, 3.9502821713170704 15.941945098666125, 3.9022181712722954 15.748609098486071, 3.895000171265565 15.727500098466408, 3.8850001712562516 15.709164098449335, 3.8819451712534203 15.706664098447007, 3.8463911712203185 15.674164098416739, 3.8180541711939213 15.664027098407303, 3.77930917115782 15.661245098404706, 3.7332631711149418 15.654864098398761, 3.5672181709603024 15.512218098265919, 3.5355541709308227 15.429164098188565, 3.5308361709264204 15.39833609815986, 3.5181001709145505 15.359909098124064, 3.307054170718004 15.392382098154314, 3.032500170462299 15.433054098192187, 3.0227821704532687 15.414027098174472, 3.01180917044303 15.341809098107206, 2.860000170301646 15.344718098109922, 2.6280541700856475 15.350554098115353, 2.510554169976217 15.345000098110177, 1.9741631694766681 15.31889109808587, 1.8847181693933521 15.3152730980825, 1.3125001688604243 15.286664098055851, 1.0855541686490824 15.079445097862859, 0.9944451685642264 14.995282097784482, 0.9747181685458486 14.978609097768953, 0.9388911685124981 14.977500097767916, 0.778336168362955 14.96860909775964, 0.7311091683189659 14.960836097752406, 0.6950001682853326 14.942218097735065, 0.6538911682470712 14.95555409774748, 0.6186091682141921 14.967500097758602, 0.5122181681151119 15.000827097789653, 0.4505541680576926 14.978609097768953, 0.3966631680075068 14.960554097752137, 0.3341631679492991 14.975554097766107, 0.2808361678996221 14.988609097778266, 0.2377731678595296 15.00000909778889, 0.2322181678543416 14.950282097742573, 0.2350451678569812 14.915064097709774, 0.0000001676380634 14.994373097783637, -0.2463908325914019 15.077500097861048, -0.3866638327220358 15.005282097793796, -0.4436088327750554 15.082773097865967, -0.723145833035403 15.082364097865579, -0.7252818330373998 15.082773097865967, -1.003026833296076 14.840100097639962, -1.07416383336232 14.776945097581134, -1.0938908333806978 14.784164097587862, -1.3188908335902454 14.728609097536122, -1.361845833630241 14.701354097510745, -1.6783368339249876 14.500554097323729, -1.7777818340176168 14.48110909730562, -1.9074998341384344 14.488609097312604, -1.9808368342067126 14.474718097299672, -1.9841638342098236 14.410273097239653, -1.9894458342147345 14.376945097208605, -1.9924998342175968 14.342500097176526, -1.996663834221465 14.30805409714445, -2.0069458342310327 14.187773097032434, -2.1037178343211735 14.152627096999694, -2.107499834324699 14.151391096998552, -2.2449998344527557 14.217782097060379, -2.2894458344941313 14.238336097079525, -2.3841638345823526 14.265554097104868, -2.4651368346577556 14.286109097124012, -2.5997178347830925 14.21166409705468, -2.6466638348268248 14.16194509700837, -2.8155548349841126 14.050282096904382, -2.8399998350068927 14.005554096862724, -2.903754835066252 13.822364096692112, -2.9044458350668947 13.721664096598332, -2.882217835046191 13.664300096544906, -2.9422178351020705 13.633054096515806, -2.9583178351170716 13.629164096512184, -3.0994458352485026 13.686109096565218, -3.2111088353524906 13.708054096585656, -3.25749983539572 13.696664096575049, -3.273336835410447 13.550282096438721, -3.2602818353983025 13.496391096388535, -3.2372178353768106 13.359718096261247, -3.233890835373728 13.322500096226577, -3.232217835372154 13.2880540961945, -3.3738908355041133 13.277218096184413, -3.3941638355229884 13.276664096183893, -3.4260998355527192 13.276109096183376, -3.4426998355681917 13.261027096169329, -3.4323178355585355 13.235382096145443, -3.4244458355511824 13.211391096123108, -3.427136835553682 13.184173096097751, -3.437672835563518 13.166500096081293, -3.4488458355739056 13.171354096085821, -3.508336835629308 13.17889109609284, -3.538054835656993 13.178336096092323, -3.588608835704065 13.20277309611508, -3.616945835730462 13.223609096134481, -3.785726835887658 13.359064096260639, -3.903263835997137 13.448473096343903, -3.956254836046469 13.501391096393192, -3.964254836053925 13.503827096395455, -3.9761088360649524 13.47610909636964, -4.156599836233056 13.27819109618531, -4.1919458362659725 13.27597309618325, -4.236945836307882 13.240836096150531, -4.313608836379274 13.16430909607925, -4.335554836399723 13.119509096037532, -4.277217836345386 13.021664095946406, -4.255345836325034 12.996454095922928, -4.217636836289898 12.969582095897906, -4.2073638362803365 12.948473095878242, -4.194445836268301 12.828609095766609, -4.206526836279551 12.769164095711247, -4.221108836293126 12.735282095679693, -4.263199836332348 12.717782095663395, -4.288890836356273 12.715000095660798, -4.4688908365239115 12.723891095669089, -4.470281836525203 12.713609095659507, -4.474926836529534 12.665273095614495, -4.453263836509365 12.638127095589212, -4.428754836486519 12.629027095580739, -4.370626836432393 12.528745095487338, -4.397081836457033 12.504864095465095, -4.418608836477063 12.472636095435078, -4.436108836493361 12.429300095394723, -4.417499836476054 12.300827095275082, -4.48249983653659 12.274718095250762, -4.569445836617547 12.201109095182204, -4.624863836669164 12.115409095102393, -4.630417836674326 12.093327095081833, -4.633426836677131 12.067218095057513, -4.698608836737833 12.062773095053373, -4.942781836965253 12.008609095002925, -5.0797178370927725 11.97555409497214, -5.11749983712798 11.964445094961789, -5.147081837155525 11.952773094950928, -5.168336837175303 11.935554094934886, -5.273054837272838 11.843891094849525, -5.287499837286305 11.788054094797516, -5.268608837268687 11.686945094703347, -5.22389083722706 11.588818094611966, -5.201663837206354 11.538191094564809, -5.208608837212807 11.461664094493543, -5.247845837249372 11.252636094298865, -5.299445837297412 11.139445094193448, -5.321945837318367 11.120136094175464, -5.362636837356263 11.101391094158018, -5.3941638373856335 11.094445094151538, -5.463608837450295 11.086945094144554, -5.485626837470818 11.077291094135575, -5.486526837471644 11.03347309409476, -5.47944583746505 11.002218094065654, -5.443336837431417 10.897218093967865, -5.419163837408917 10.86944509394199, -5.411181837401472 10.841664093916123, -5.444726837432711 10.76333609384318, -5.456208837443427 10.72165409380436, -5.464308837450972 10.69930909378354, -5.473336837459357 10.632500093721319, -5.483608837468921 10.527218093623276, -5.519845837502686 10.436273093538574, -5.5656908375453895 10.457218093558083, -5.669236837641819 10.445973093547607, -5.701808837672161 10.430000093532726, -5.726108837694767 10.42278209352601, -5.746390837713676 10.42333609352653, -5.7823088377471095 10.426427093529398, -5.797499837761279 10.421245093524576, -5.882217837840159 10.369718093476592, -5.937499837891664 10.284445093397167, -5.96402683791635 10.237636093353572, -5.9773638379287775 10.216527093333923, -6.00416383795374 10.191245093310371, -6.090281838033945 10.190836093309997, -6.111390838053609 10.197773093316457, -6.145554838085417 10.211945093329646, -6.188336838125252 10.231664093348016, -6.197163838133491 10.236364093352393, -6.17999983811751 10.364718093471936, -6.180281838117764 10.403054093507635, -6.18166383811905 10.434718093537128, -6.183054838120341 10.463609093564031, -6.212499838147778 10.569445093662594, -6.189099838125969 10.636527093725078, -6.224408838158865 10.722909093805526, -6.243399838176543 10.73525409381702, -6.413545838335011 10.687982093773002, -6.417081838338305 10.623127093712597, -6.3880548383112625 10.594127093685586, -6.421908838342802 10.551664093646039, -6.533054838446304 10.576109093668805, -6.5893088384987095 10.610000093700364, -6.601808838510351 10.637291093725793, -6.621599838528766 10.66090009374777, -6.645599838551135 10.663991093750653, -6.66916383857307 10.628191093717305, -6.676663838580055 10.598327093689505, -6.684999838587828 10.49166409359016, -6.669236838573141 10.460691093561309, -6.650281838555486 10.452773093553944, -6.6319458385384 10.433609093536091, -6.650836838555989 10.360973093468445, -6.656408838561191 10.354064093462014, -6.7197178386201415 10.35055409345874, -6.940836838826073 10.353745093461711, -6.960490838844379 10.333536093442888, -6.981045838863537 10.247845093363082, -6.955417838839651 10.225827093342588, -6.945417838830338 10.20819109332615, -6.9483368388330575 10.177500093297567, -6.968608838851935 10.155973093277524, -6.988054838870056 10.147500093269628, -7.019445838899287 10.14215409326465, -7.039581838918053 10.156245093277775, -7.061317838938294 10.189864093309083, -7.078608838954381 10.203336093321639, -7.128054839000441 10.223054093339996, -7.183890839052452 10.236664093352672, -7.269717839132369 10.254445093369227, -7.348199839205478 10.327082093436886, -7.359726839216194 10.350827093459003, -7.45166383930183 10.397218093502204, -7.63799083947535 10.44666409354825, -7.7031908395360915 10.403327093507897, -7.731945839562854 10.377218093483577, -7.75471783958406 10.330827093440377, -7.756599839585817 10.296109093408035, -7.7877818396148655 10.2452820933607, -7.826454839650893 10.202364093320725, -7.889163839709283 10.173891093294216, -7.939445839756104 10.15708209327856, -7.963754839778744 10.159864093281143, -7.97398183978828 10.165609093286506, -7.942017839758506 10.242982093358563, -7.976454839790591 10.3288180934385, -8.14110883994394 10.423891093527047, -8.186526839986215 10.416527093520187, -8.218054840015583 10.425691093528712, -8.269999840063974 10.502500093600247, -8.281945840075082 10.549445093643968, -8.321390840111832 10.760827093840845, -8.287499840080272 10.849445093923364, -8.289717840082318 11.007773094070828, -8.34607284013481 11.053264094113189, -8.4580548402391 11.050836094110934, -8.511108840288529 11.005554094068756, -8.58360884035605 10.972773094038232, -8.671526840437906 10.958918094025321, -8.679790840445605 11.002500094065908, -8.609999840380624 11.12721809418207, -8.477426840257152 11.288400094332175, -8.451663840233152 11.291945094335475, -8.431390840214277 11.280973094325262, -8.393890840179353 11.279718094324096, -8.368963840156141 11.287427094331278, -8.356108840144174 11.314164094356173, -8.362845840150442 11.37511809441294, -8.390554840176236 11.392773094429387, -8.460626840241503 11.419791094454553, -8.495972840274419 11.420554094455255, -8.516526840293551 11.434718094468451, -8.533881840309732 11.493909094523573, -8.54778184032267 11.480000094510615, -8.57778184035061 11.470000094501302, -8.604717840375685 11.475136094506084, -8.638054840406738 11.497218094526659, -8.656663840424073 11.520418094548262, -8.672499840438832 11.556664094582018, -8.689417840454581 11.602473094624685, -8.69472684045951 11.632218094652387, -8.705972840469997 11.655973094674508, -8.737017840498908 11.638609094658335, -8.773890840533255 11.639864094659501, -8.831663840587055 11.661664094679807, -8.792781840550845 11.856664094861415, -8.779726840538672 11.925836094925842, -8.796899840554687 12.006345095000825, -8.93680884068499 12.191245095173016, -8.962081840708521 12.195691095177153, -8.980445840725622 12.229618095208764, -8.977499840722885 12.278473095254256, -8.955836840702688 12.315554095288789, -8.943608840691326 12.334718095306641, -8.948336840695703 12.354718095325268, -8.979999840725213 12.39277309536071, -9.056181840796143 12.435000095400028, -9.084726840822725 12.437500095402356, -9.15305484088637 12.48513609544672, -9.253054840979502 12.49971809546031, -9.311672841034095 12.50470009546494, -9.359863841078976 12.488473095449834, -9.400281841116623 12.452145095416, -9.345836841065903 12.406382095373388, -9.29499984101858 12.362218095332253, -9.301990841025088 12.31280909528624, -9.318472841040432 12.268054095244551, -9.345836841065903 12.252773095230324, -9.370554841088932 12.250273095227996, -9.398054841114543 12.254445095231873, -9.580281841284261 12.188054095170045, -9.628336841329002 12.16555409514909, -9.644581841344149 12.153745095138092, -9.664026841362244 12.131664095117529, -9.67028184136808 12.111109095098385, -9.667217841365215 12.081800095071088, -9.70194584139756 12.029164095022068, -9.757917841449682 12.027773095020777, -9.865217841549622 12.054809095045954))) +MRT Mauritania MULTIPOLYGON (((-10.71639084234235 15.438900098197635, -10.71944584234518 15.374445098137599, -10.73458184235929 15.341391098106826, -10.764308842386981 15.311391098078886, -10.848054842464961 15.206109097980828, -10.896563842510147 15.110364097891662, -10.914445842526789 15.124718097905031, -10.973890842582165 15.198891097974112, -10.984999842592515 15.22305409799661, -10.993054842600003 15.242773098014979, -11.172499842767138 15.374718098137862, -11.19999984279275 15.394164098155969, -11.23694584282714 15.420000098180026, -11.253890842842935 15.431391098190645, -11.286663842873452 15.455554098213142, -11.302226842887933 15.475000098231249, -11.33722684292053 15.524445098277297, -11.365136842946526 15.575691098325024, -11.418126842995889 15.633473098378843, -11.455281843030491 15.643327098388028, -11.498608843070855 15.641800098386597, -11.537781843107325 15.596391098344313, -11.599717843164996 15.54555409829696, -11.639863843202392 15.525282098278083, -11.71167284326927 15.545000098296441, -11.710836843268481 15.525836098278603, -11.71618184327346 15.498682098253312, -11.74062684329624 15.47742709823352, -11.754999843309633 15.438609098197361, -11.79528184334714 15.32110909808793, -11.832226843381534 15.195273097970741, -11.846672843394998 15.09721809787942, -11.84088184338961 15.046900097832562, -11.812217843362902 15.05034509783576, -11.796317843348106 15.014791097802657, -11.815281843365767 14.925000097719021, -11.841390843390087 14.863054097661333, -11.866945843413873 14.840827097640641, -11.974308843513882 14.771527097576097, -12.059963843593636 14.725636097533354, -12.09430884362564 14.739582097546347, -12.174999843700789 14.76832709757312, -12.244836843765825 14.764382097569438, -12.283608843801943 14.785827097589419, -12.395836843906437 14.85305409765202, -12.448054843955077 14.905627097700986, -12.451872843958625 14.9411820977341, -12.478754843983666 15.007427097795798, -12.629308844123898 15.099864097881877, -12.662781844155063 15.104718097886405, -12.685981844176666 15.08790909787075, -12.708054844197221 15.097773097879937, -12.783445844267447 15.149654097928249, -12.849726844329155 15.20805409798264, -12.885763844362742 15.261700098032605, -12.850072844329503 15.26583609803646, -12.84173684432173 15.29645409806497, -12.860836844339502 15.324445098091033, -12.879445844356837 15.337218098102937, -12.9072178443827 15.351664098116387, -12.929926844403866 15.365482098129263, -12.94013684441336 15.392636098154554, -12.963608844435242 15.500382098254889, -13.056599844521827 15.479927098235848, -13.091663844554489 15.49666409825143, -13.102690844564762 15.521391098274464, -13.184717844641142 15.629445098375086, -13.245836844698061 15.68055409842269, -13.324717844771527 15.929445098654483, -13.395417844837368 16.05541809877181, -13.52055484495392 16.13221809884334, -13.579863845009157 16.13555409884644, -13.639717845064894 16.115836098828083, -13.66819084509143 16.098954098812357, -13.71034584513069 16.136245098847084, -13.698890845120019 16.166945098875672, -13.703508845124304 16.178745098886665, -13.816108845229195 16.135273098846184, -13.96971784537223 16.23389109893803, -13.984236845385766 16.299864098999464, -14.029726845428115 16.357773099053404, -14.219163845604555 16.543191099226078, -14.343608845720468 16.63610909931262, -14.416108845787988 16.650273099325815, -14.453608845822913 16.635136099311723, -14.50499984587077 16.626391099303575, -14.639508845996033 16.635345099311905, -14.756390846104892 16.64444509932038, -14.85471784619645 16.637218099313657, -14.906945846245094 16.635273099311846, -14.951663846286749 16.648400099324064, -14.958090846292748 16.67255409934657, -14.961526846295925 16.684718099357895, -14.984517846317345 16.69061809936339, -15.00395484633546 16.670064099344245, -15.021663846351942 16.638745099315074, -15.088336846414023 16.60805409928649, -15.235972846551533 16.559300099241085, -15.354999846662395 16.561664099243288, -15.441390846742848 16.579436099259837, -15.50999984680675 16.55666409923863, -15.576390846868577 16.513336099198284, -15.670281846956016 16.481109099168265, -15.696317846980264 16.480136099167368, -15.748336847028696 16.488891099175518, -15.823054847098291 16.50166409918741, -15.888336847159081 16.51236409919737, -15.915699847184584 16.509718099194913, -15.985554847249631 16.49000009917654, -16.056599847315795 16.48374509917072, -16.099236847355513 16.52666409921069, -16.115417847370566 16.549373099231843, -16.145836847398897 16.551936099234226, -16.28528184752878 16.517082099201772, -16.302363847544683 16.499027099184957, -16.321808847562806 16.456245099145107, -16.34514584758452 16.381109099075132, -16.357499847596046 16.322773099020807, -16.36749984760536 16.27374509897514, -16.390036847626334 16.22061809892567, -16.50694584773521 16.094164098807894, -16.527681847754536 16.060245098776306, -16.52916384775591 16.095836098809457, -16.537226847763407 16.301664099001144, -16.526672847753588 16.328609099026238, -16.50694584773521 16.37388209906841, -16.495554847724605 16.403327099095833, -16.474863847705336 16.474164099161797, -16.468890847699782 16.505273099190774, -16.467226847698214 16.530000099213794, -16.468890847699782 16.55000009923242, -16.467645847698606 16.611391099289605, -16.444445847677002 16.679718099353238, -16.411108847645977 16.763336099431115, -16.403336847638712 16.782773099449216, -16.340281847580002 16.937218099593053, -16.30110884754353 17.00166409965307, -16.279026847522942 17.03180909968114, -16.261526847506644 17.059309099706752, -16.20083684745012 17.19805409983597, -16.18471784743511 17.23666409987193, -16.134999847388826 17.357082099984083, -16.09583684735233 17.487500100105535, -16.08972684734664 17.508327100124944, -16.069445847327756 17.58971810020074, -16.064163847322845 17.611382100220922, -16.039445847299817 17.734582100335658, -16.037226847297745 17.926109100514026, -16.028617847289752 18.080554100657864, -16.03528184729595 18.161391100733155, -16.042217847302396 18.190064100759855, -16.051390847310955 18.23555410080222, -16.062990847321743 18.369509100926976, -16.057781847316903 18.404445100959506, -16.056672847315866 18.428609100982015, -16.064799847323428 18.463754101014743, -16.071945847330085 18.491945101040997, -16.08347284734083 18.526664101073337, -16.105836847361644 18.578891101121982, -16.144445847397606 18.69000010122545, -16.1505548474033 18.755554101286506, -16.171390847422714 18.87082710139387, -16.179172847429953 18.91305410143319, -16.188054847438224 18.939445101457764, -16.219245847467278 19.00271810151669, -16.232226847479353 19.043327101554524, -16.257781847503168 19.09444510160212, -16.26944584751402 19.111109101617643, -16.28139084752516 19.127773101633167, -16.349308847588418 19.204027101704185, -16.368336847606116 19.2163911017157, -16.463063847694343 19.25540010175203, -16.499172847727976 19.33639110182746, -16.511672847739618 19.352218101842197, -16.456254847688 19.370064101858816, -16.38069984761765 19.393745101880867, -16.349445847588527 19.422500101907644, -16.335554847575594 19.437500101921614, -16.309445847551274 19.467500101949554, -16.286181847529605 19.53832710201553, -16.356926847595503 19.529718102007507, -16.42625484766006 19.47791810195926, -16.429936847663498 19.445345101928922, -16.440554847673383 19.408882101894974, -16.461736847693118 19.41006410189607, -16.468890847699782 19.448609101931964, -16.42722684766096 19.536391102013724, -16.405390847640632 19.5596641020354, -16.38313684761991 19.575918102050537, -16.334445847574557 19.633745102104385, -16.233054847480133 19.79389110225354, -16.2433368474897 19.887218102340455, -16.216663847464872 20.000827102446266, -16.19680884744639 20.226109102656068, -16.236808847483644 20.288536102714204, -16.314163847555676 20.377500102797057, -16.337226847577142 20.43278210284855, -16.377781847614926 20.526109102935465, -16.415836847650354 20.603054103007125, -16.452226847684244 20.669445103068952, -16.49569984772475 20.725973103121603, -16.527917847754736 20.733609103128714, -16.53444584776082 20.70471810310181, -16.53278184775928 20.627500103029888, -16.540072847766083 20.566036102972646, -16.577499847800937 20.590000102994964, -16.599726847821614 20.61083610301438, -16.648336847866887 20.66139110306146, -16.889163848091187 21.113609103482617, -16.903199848104265 21.14250010350952, -16.923681848123323 21.1584731035244, -16.987781848183033 21.06555410343786, -16.998408848192923 21.015854103391575, -16.995554848190267 20.97471810335327, -17.025281848217958 20.844718103232196, -17.044726848236053 20.783054103174763, -17.052326848243155 20.76410010315712, -17.075554848264773 20.899027103282776, -17.070281848259867 20.920827103303083, -17.049163848240198 20.974445103353005, -17.038063848229854 21.00416410338069, -16.994999848189764 21.12805410349607, -16.96055484815767 21.300554103656722, -16.953754848151334 21.336664103690353, -16.60472684782627 21.3397181036932, -16.146117847399182 21.3397181036932, -16.01778184727965 21.338891103692433, -15.892226847162704 21.338609103692164, -15.74199984702281 21.338282103691867, -15.225554846541826 21.337500103691127, -15.005281846336686 21.336391103690104, -14.68722684604046 21.338609103692164, -14.467226845835569 21.340554103693975, -14.303472845683075 21.34166410369501, -14.285281845666134 21.34221810369553, -13.908336845315063 21.342500103695784, -13.37694584482017 21.340000103693455, -12.999726844468853 21.338054103691647, -13.004999844473787 21.423336103771078, -13.031390844498361 21.7977731041198, -13.047781844513622 22.033882104339696, -13.051390844516987 22.085827104388073, -13.059163844524221 22.204718104498795, -13.066390844530957 22.323891104609785, -13.077799844541573 22.49680910477082, -13.079999844543636 22.52027310479268, -13.094163844556817 22.570827104839765, -13.150281844609083 22.757500105013605, -13.133890844593822 22.809164105061726, -13.105281844567173 22.893054105139854, -13.049445844515162 22.96277310520479, -12.998336844467559 23.02471810526248, -12.744999844231643 23.182500105409417, -12.636663844130737 23.250827105473064, -12.597426844094201 23.276173105496667, -12.571390844069953 23.291382105510834, -12.365836843878498 23.318609105536183, -12.231390843753303 23.380554105593873, -12.098890843629903 23.429718105639665, -12.000281843538062 23.45443610566268, -12.000836843538565 23.799718105984255, -12.000281843538062 24.000000106170774, -12.000836843538565 24.333054106480958, -11.999999843537807 24.399718106543048, -12.000836843538565 24.766109106884272, -11.999999843537807 24.799718106915577, -11.999999843537807 24.866391106977673, -12.000836843538565 25.20000010728836, -11.999999843537807 25.23277310731889, -11.999999843537807 25.29971810738124, -12.000836843538565 25.632500107691158, -11.999999843537807 25.666109107722463, -11.999999843537807 25.73305410778481, -12.00055484353831 26.00000010803342, -11.700554843258914 26.00000010803342, -11.266672842854831 25.9994451080329, -10.733336842358113 25.9994451080329, -10.500281842141078 25.9994451080329, -10.134117841800048 25.998200108031753, -10.000308841675434 25.997964108031525, -9.966663841644106 25.999718108033164, -9.89999984158203 26.00000010803342, -9.700554841396269 26.00027310803368, -9.633890841334193 26.00027310803368, -9.567217841272083 26.00027310803368, -9.399999841116369 25.9994451080329, -8.666945840433641 26.00027310803368, -8.666390840433138 26.06639110809526, -8.666663840433387 26.1333271081576, -8.667217840433892 26.399718108405693, -8.667217840433892 26.833054108809264, -8.667217840433892 26.96639110893345, -8.666790840433492 27.290454109235256, -8.644163840412432 27.27889110922449, -8.204445840002904 27.027500108990353, -8.131108839934626 26.98638210895207, -7.711945839544228 26.74389110872623, -7.6936088395271724 26.734164108717167, -7.2583368391217675 26.4797181084802, -7.203890839071079 26.448609108451222, -6.986945838869019 26.320827108332224, -6.771108838667999 26.1925001082127, -6.662781838567128 26.129164108153716, -6.304163838233137 25.91444510795374, -6.2861088382163075 25.904445107944426, -5.857781837817413 25.64555410770332, -5.821945837784028 25.62471810768392, -5.641663837616136 25.514791107581544, -5.289445837288099 25.300000107381493, -4.918890836943007 25.07082710716807, -4.883608836910128 25.049718107148408, -4.8130548368444295 25.00583610710754, -4.80610883683795 25.00027310710236, -4.866663836894361 24.99944510710158, -4.966663836987493 24.99944510710158, -5.767217837733057 25.000000107102096, -6.133890838074564 24.99944510710158, -6.299717838228986 24.99944510710158, -6.366945838291599 25.000000107102096, -6.500281838415788 25.000000107102096, -6.577217838487428 24.999164107101322, -6.533336838446559 24.632500106759835, -6.523890838437779 24.562773106694905, -6.511108838425855 24.458054106597373, -6.475281838392505 24.16139110632109, -6.441799838361334 23.878764106057872, -6.366945838291599 23.254718105476684, -6.335954838262751 22.990264105230395, -6.325836838253309 22.90639110515228, -6.319726838247618 22.85555410510493, -6.298890838228232 22.668609104930823, -6.226108838160428 22.039164104344607, -6.208336838143879 21.88582710420181, -6.1744458381123195 21.596382103932243, -6.153054838092402 21.40888210375762, -6.132226838072995 21.221109103582734, -6.107217838049706 20.99944510337629, -6.0774998380220495 20.747218103141392, -6.055281838001349 20.559445102966507, -6.006663837956069 20.149164102584407, -5.974163837925801 19.86639110232106, -5.9566638379095025 19.712500102177728, -5.918336837873795 19.37000010185875, -5.901108837857748 19.215827101715178, -5.884445837842236 19.061664101571594, -5.853890837813793 18.787218101316, -5.8377818377987865 18.650000101188198, -5.803336837766693 18.341391100900793, -5.782781837747564 18.152500100724865, -5.747781837714967 17.83110910042555, -5.694445837665285 17.35027309997774, -5.628054837603457 16.748609099417394, -5.601390837578634 16.507773099193102, -5.3349998373305425 16.32805409902572, -5.372499837365467 16.135273098846184, -5.386108837378117 16.066391098782034, -5.420281837409959 15.894445098621887, -5.483890837469204 15.567218098317142, -5.493608837478234 15.515554098269021, -5.495054837479586 15.498373098253026, -5.583608837562053 15.499445098254014, -5.958890837911582 15.504445098258671, -6.307981838236685 15.502782098257128, -6.319163838247107 15.503609098257897, -6.426390838346975 15.504445098258671, -6.658608838563225 15.505836098259977, -7.018890838898784 15.507218098261262, -7.3583368392149 15.505836098259977, -7.501108839347893 15.505000098259188, -7.662217839497913 15.503336098257648, -8.001390839813808 15.500827098255314, -8.05110883986012 15.501391098255837, -8.505090840282918 15.500827098255314, -8.513890840291111 15.501391098255837, -8.585281840357595 15.501109098255569, -8.996390840740474 15.498336098252992, -9.03694584077823 15.498336098252992, -9.090554840828162 15.498891098253509, -9.184672840915823 15.498218098252877, -9.226390840954679 15.49860909825324, -9.333608841054541 15.499718098254277, -9.332499841053504 15.563609098313776, -9.311808841034235 15.677500098419841, -9.338054841058664 15.704718098445198, -9.44249984115595 15.596945098344818, -9.415281841130593 15.478891098234882, -9.409726841125405 15.444309098202666, -9.66083684135927 15.431109098190376, -9.696663841392649 15.430000098189339, -9.746254841438827 15.405554098166576, -9.778263841468657 15.386245098148592, -9.811390841499502 15.374718098137862, -10.032781841705685 15.366945098130614, -10.060554841731545 15.366945098130614, -10.086945841756119 15.368609098132168, -10.118054841785096 15.37277309813605, -10.212781841873323 15.408054098168904, -10.289726841944969 15.437918098196718, -10.31069984196452 15.441245098199815, -10.469999842112884 15.43721809819607, -10.567426842203616 15.432291098191484, -10.604999842238612 15.42805409818753, -10.649999842280522 15.430273098189602, -10.675063842303842 15.43212709819133, -10.71639084234235 15.438900098197635)), ((-16.432499847665895 19.60139110207426, -16.436945847670017 19.603882102076582, -16.45263684768463 19.62000010209158, -16.46055484769201 19.69694510216324, -16.416526847651 19.80639110226518, -16.353054847591892 19.864027102318857, -16.342090847581687 19.865136102319894, -16.336108847576128 19.856945102312253, -16.34471784758412 19.801391102260524, -16.347226847586455 19.79027310225017, -16.361254847599525 19.733327102197137, -16.380281847617255 19.681109102148497, -16.392781847628896 19.65250010212185, -16.399445847635093 19.638336102108667, -16.40749984764261 19.62582710209702, -16.41389084764856 19.618054102089772, -16.427499847661238 19.60360910207632, -16.432499847665895 19.60139110207426))) +SEN Senegal MULTIPOLYGON (((-11.373054842953906 12.40777309537468, -11.427226843004348 12.426382095392015, -11.476526843050266 12.43582709540081, -11.519726843090496 12.43444509539951, -11.645554843207691 12.42152709538749, -11.67555484323563 12.400554095367951, -11.693608843252463 12.390554095358638, -11.736390843292298 12.380554095349325, -11.757499843311962 12.37971809534855, -11.841672843390342 12.386391095354767, -11.895281843440273 12.40916409537597, -12.033890843569367 12.400554095367951, -12.128054843657054 12.382773095351396, -12.149581843677112 12.36486409533471, -12.170281843696387 12.3538910953245, -12.196108843720452 12.345554095316729, -12.345399843859468 12.301745095275933, -12.373608843885762 12.334164095306122, -12.394654843905357 12.367354095337035, -12.445836843953003 12.387218095355536, -12.47917284398406 12.3951360953629, -12.502499844005797 12.3951360953629, -12.582781844080557 12.363609095333544, -12.587781844085214 12.371945095341303, -12.634026844128272 12.436382095401328, -12.78694584427069 12.465000095427968, -12.845836844325532 12.512218095471951, -12.896254844372493 12.545000095502473, -12.92701784440115 12.54221809549989, -12.946390844419199 12.523191095482161, -12.961599844433351 12.473682095436061, -13.045699844511688 12.47902709544104, -13.063890844528629 12.502918095463286, -13.068754844533146 12.532082095490452, -13.055554844520856 12.55582709551257, -13.04242684450864 12.590000095544383, -13.056317844521573 12.634100095585467, -13.206390844661342 12.652218095602336, -13.310226844758034 12.649727095600014, -13.35666384480129 12.665273095614495, -13.62778184505379 12.677500095625874, -13.713136845133278 12.67721809562562, -13.85749984526774 12.676391095624851, -13.998608845399161 12.676109095624582, -14.136945845527976 12.677364095625748, -14.341754845718725 12.67889109562718, -14.3930548457665 12.67889109562718, -14.516945845881878 12.679718095627948, -14.64930884600517 12.680973095629113, -14.874445846214826 12.681945095630013, -14.923336846260355 12.682782095630799, -15.21805484653484 12.684718095632604, -15.334445846643234 12.615836095568454, -15.361390846668343 12.598054095551888, -15.41939984672237 12.551409095508447, -15.614726846904261 12.462773095425902, -15.685281846969986 12.430000095395371, -15.809445847085613 12.440554095405204, -15.888472847159221 12.44810909541225, -15.962226847227896 12.436109095401065, -16.0005548472636 12.451664095415552, -16.01917284728094 12.46055409542383, -16.03999984730035 12.467218095430042, -16.07236384733048 12.472218095434698, -16.102217847358276 12.47139109543393, -16.209163847457887 12.4608360954241, -16.381672847618546 12.374718095343894, -16.518608847746094 12.347636095318663, -16.548608847774034 12.357218095327596, -16.663336847880856 12.360836095330967, -16.692781847908293 12.355827095326305, -16.71028184792459 12.33666409530845, -16.71777284793157 12.322427095295197, -16.73083684794372 12.334445095306378, -16.79319984800182 12.42291809538878, -16.80180884800984 12.446109095410378, -16.800136848008265 12.4863910954479, -16.786663847995726 12.511109095470914, -16.76236384797309 12.535691095493803, -16.583754847806745 12.63263609558409, -16.5016638477303 12.596109095550077, -16.4216728476558 12.55889109551542, -16.37437284761174 12.545418095502868, -16.343472847582973 12.560136095516569, -16.292226847535233 12.58889109554336, -16.233608847480667 12.590827095545166, -16.196390847445997 12.580273095535333, -16.115836847370957 12.605836095559141, -16.028263847289423 12.630482095582096, -15.997781847261024 12.624164095576205, -15.964708847230213 12.596145095550114, -15.936390847203853 12.577773095533004, -15.82472684709984 12.550827095507913, -15.803890847080453 12.562500095518772, -15.774308847052907 12.587427095541997, -15.729717847011358 12.58666409554128, -15.691045846975356 12.573054095528605, -15.677017846962286 12.542982095500605, -15.634445846922631 12.531036095489469, -15.57528184686754 12.560973095517355, -15.509308846806107 12.63708209558824, -15.52889084682434 12.697218095644246, -15.542081846836624 12.71582709566158, -15.529863846825236 12.782082095723283, -15.43110884673328 12.804164095743843, -15.399372846703699 12.797154095737312, -15.391808846696676 12.832918095770623, -15.445836846746971 12.831945095769711, -15.526872846822442 12.805764095745332, -15.553890846847622 12.773891095715655, -15.564581846857578 12.734445095678907, -15.55486384684852 12.71652709566223, -15.539790846834478 12.654445095604402, -15.55110884684504 12.633191095584607, -15.618608846907904 12.571391095527062, -15.645626846933055 12.557082095513735, -15.666599846952579 12.57353609552905, -15.667081846953039 12.60221809555577, -15.69833684698213 12.614309095567023, -15.767636847046674 12.61930909557168, -15.8458368471195 12.6080540955612, -15.905899847175448 12.59395409554807, -15.94541784721224 12.616391095568972, -15.982426847246728 12.653427095603462, -16.015281847277322 12.701391095648134, -16.02138184728301 12.72493609567006, -16.046108847306044 12.657918095607641, -16.071526847329693 12.634582095585912, -16.158263847410495 12.607845095561004, -16.205554847454522 12.612218095565083, -16.294172847537055 12.601391095555002, -16.349726847588784 12.582218095537144, -16.36743684760529 12.564164095520326, -16.421663847655793 12.576809095532099, -16.452226847684244 12.594164095548265, -16.57110884779499 12.671391095620194, -16.597226847819286 12.735418095679819, -16.59396384781627 12.78333609572445, -16.649026847867532 12.721245095666617, -16.64972684786818 12.685836095633647, -16.646945847865595 12.66131809561081, -16.64666384786534 12.632364095583839, -16.718054847931825 12.581109095536107, -16.752917847964284 12.564718095520846, -16.774999847984873 12.579027095534173, -16.793608848002208 12.712218095658216, -16.80014584800827 12.80736409574682, -16.796808848005185 12.827500095765572, -16.77763684798731 12.858191095794155, -16.757499847968575 12.898054095831284, -16.749172847960807 13.000554095926745, -16.74833684796002 13.026109095950545, -16.749172847960807 13.046664095969689, -16.7508728479624 13.059973095982087, -16.700345847915344 13.157218096072654, -16.618336847838947 13.165000096079893, -15.99889084726206 13.163054096078085, -15.895563847165818 13.160554096075757, -15.862499847135041 13.159718096074982, -15.809717847085864 13.159718096074982, -15.809445847085613 13.245282096154668, -15.806526847082893 13.339445096242358, -15.418054846721105 13.375273096275734, -15.360281846667306 13.366391096267463, -15.33416384664298 13.365836096266946, -15.290417846602224 13.372773096273406, -15.264445846578042 13.383054096282976, -15.247217846561995 13.393891096293075, -15.22430884654068 13.413191096311039, -15.21083684652811 13.434164096330576, -15.20472684652242 13.461945096356445, -15.204172846521914 13.487773096380508, -15.201526846519442 13.525136096415295, -15.175054846494788 13.55280009644106, -15.147917846469511 13.586245096472211, -15.11166384643576 13.59583609648115, -15.082081846408215 13.561391096449071, -15.045281846373939 13.528054096418018, -14.989726846322185 13.493054096385421, -14.972499846306164 13.482500096375588, -14.954726846289589 13.471945096365758, -14.92528184626218 13.460554096355153, -14.833336846176536 13.435273096331613, -14.770417846117937 13.42444509632152, -14.755281846103856 13.404445096302894, -14.73541784608534 13.375554096275991, -14.714726846066071 13.360554096262021, -14.686808846040094 13.350482096252648, -14.647781846003738 13.343891096246509, -14.547781845910606 13.335936096239095, -14.521108845885777 13.313891096218569, -14.388754845762492 13.24874509615789, -14.351108845727452 13.237782096147683, -14.21472684560041 13.23055409614095, -14.188336845575833 13.233054096143277, -14.151672845541697 13.246391096155705, -14.129999845521525 13.260554096168889, -14.095554845489431 13.285000096191652, -14.048890845445982 13.294445096200448, -13.992781845393722 13.30250009620795, -13.873054845282212 13.320836096225037, -13.858336845268497 13.327773096231496, -13.849999845260754 13.33305409623641, -13.824026845236546 13.356109096257882, -13.803472845217414 13.384445096284267, -13.798608845212897 13.413054096310915, -13.803754845217668 13.443191096338978, -13.8274998452398 13.48055409637378, -13.8455548452566 13.497082096389178, -13.868499845277967 13.50803609639938, -13.887017845295219 13.544373096433219, -13.919163845325158 13.568191096455394, -13.980417845382192 13.582773096468983, -14.082363845477147 13.560554096448286, -14.176108845564471 13.526109096416207, -14.198336845585146 13.516245096407019, -14.222917845608038 13.49847309639047, -14.237081845621248 13.481527096374691, -14.334863845712306 13.45402709634908, -14.369863845744902 13.466809096360976, -14.39833684577141 13.483327096376371, -14.429581845800527 13.504718096396289, -14.446390845816182 13.526391096416475, -14.472781845840757 13.534445096423966, -14.477781845845413 13.570836096457867, -14.483336845850573 13.593745096479196, -14.504581845870376 13.62805409651115, -14.535699845899359 13.650691096532228, -14.562363845924182 13.662082096542846, -14.59889084595821 13.670273096550474, -14.625699845983178 13.667918096548277, -14.646108846002193 13.663054096543746, -14.668336846022868 13.653327096534696, -14.697081846049656 13.632364096515161, -14.716526846067751 13.613336096497449, -14.791945846137992 13.653327096534696, -14.793608846139563 13.678609096558233, -14.802081846147445 13.709309096586821, -14.816108846160517 13.74110909661644, -14.828890846172413 13.756664096630928, -14.856336846197962 13.778609096651365, -14.860281846201644 13.780836096653445, -14.883054846222848 13.793054096664818, -14.911663846249496 13.802364096673486, -15.070281846397222 13.826391096695872, -15.16444584648491 13.795000096666627, -15.21666384653355 13.763891096637664, -15.251390846565897 13.744718096619806, -15.271526846584635 13.770554096643863, -15.30049084661161 13.790418096662364, -15.336672846645314 13.792918096664692, -15.364445846671174 13.781391096653962, -15.420281846723185 13.743327096618515, -15.435554846737404 13.730273096606354, -15.45555484675603 13.708327096585919, -15.47430884677351 13.669027096549314, -15.484081846782601 13.640791096523017, -15.488199846786443 13.590836096476494, -15.574717846867003 13.590554096476225, -15.645836846933236 13.591109096476742, -15.929726847197628 13.592782096478302, -16.08859984734559 13.59221809647778, -16.17083684742218 13.592500096478034, -16.565672847789926 13.590000096475706, -16.619999847840518 13.658336096539358, -16.64215484786115 13.696873096575246, -16.63861784785786 13.752773096627308, -16.62528184784543 13.777082096649949, -16.59986384782175 13.807364096678143, -16.57306384779679 13.833054096702071, -16.54083684776677 13.842782096711133, -16.521117847748428 13.831945096701034, -16.497217847726148 13.867500096734148, -16.490836847720203 13.958054096818486, -16.560281847784893 13.862500096729491, -16.69843684791357 13.770445096643769, -16.735554847948123 13.816391096686559, -16.739445847951743 13.841109096709573, -16.745345847957253 13.953473096814221, -16.718890847932613 13.982773096841512, -16.687363847903242 13.992918096850957, -16.657499847875442 13.978054096837113, -16.638890847858107 13.961664096821849, -16.578336847801694 14.001664096859102, -16.57236384779614 14.022082096878123, -16.559445847784104 14.05360909690748, -16.505836847734173 14.105000096955337, -16.411945847646734 14.145827096993372, -16.365199847603208 14.162291097008705, -16.367426847605287 14.166391097012522, -16.38470884762137 14.16247309700887, -16.453054847685024 14.174445097020012, -16.513336847741158 14.143327096991044, -16.544172847769886 14.091391096942672, -16.56139084778593 14.067218096920158, -16.63639084785578 14.003473096860787, -16.66069984787842 14.000000096857548, -16.77583684798563 14.01250009686919, -16.79805484800633 14.09027309694163, -16.813336848020555 14.122773096971898, -16.85778184806196 14.156945097003714, -16.876663848079545 14.178400097023697, -16.90055484810179 14.263336097102808, -16.94778184814578 14.375554097207313, -16.972081848168415 14.405136097234873, -17.000626848194997 14.428209097256357, -17.036390848228308 14.441664097268884, -17.062499848252628 14.454027097280402, -17.089445848277705 14.486664097310793, -17.121672848307725 14.546664097366673, -17.148308848332533 14.613918097429305, -17.163336848346518 14.638336097452054, -17.175554848357905 14.654445097467047, -17.19472684837575 14.670000097481534, -17.225836848404725 14.688609097498869, -17.337781848508996 14.733327097540524, -17.390872848558445 14.73997309754671, -17.420917848586413 14.731136097538482, -17.431463848596252 14.708918097517781, -17.427781848592815 14.674718097485936, -17.44625484861001 14.656736097469192, -17.532781848690604 14.75013609755618, -17.48360884864482 14.769445097574149, -17.461108848623866 14.772364097576869, -17.423617848588947 14.783000097586779, -17.38333684855141 14.796664097599503, -17.23360884841199 14.869445097667281, -17.180836848362816 14.895554097691601, -17.166945848349883 14.903054097698586, -17.146117848330505 14.918054097712556, -17.12917284831471 14.931109097724715, -16.973336848169566 15.110282097891584, -16.879372848082056 15.224309097997775, -16.82972684803582 15.312218098079654, -16.792781848001425 15.38500009814743, -16.776945847986667 15.410554098171232, -16.742226847954328 15.459718098217024, -16.73064584794355 15.474309098230606, -16.72305484793648 15.482500098238233, -16.707781847922263 15.501945098256343, -16.67028184788734 15.555273098306017, -16.54639084777196 15.756664098493573, -16.5366728477629 15.786182098521067, -16.5396728477657 15.805554098539105, -16.547290847772786 15.816454098549258, -16.532499847759027 16.013882098733134, -16.527681847754536 16.060245098776306, -16.50694584773521 16.094164098807894, -16.390036847626334 16.22061809892567, -16.36749984760536 16.27374509897514, -16.357499847596046 16.322773099020807, -16.34514584758452 16.381109099075132, -16.321808847562806 16.456245099145107, -16.302363847544683 16.499027099184957, -16.28528184752878 16.517082099201772, -16.145836847398897 16.551936099234226, -16.115417847370566 16.549373099231843, -16.099236847355513 16.52666409921069, -16.056599847315795 16.48374509917072, -15.985554847249631 16.49000009917654, -15.915699847184584 16.509718099194913, -15.888336847159081 16.51236409919737, -15.823054847098291 16.50166409918741, -15.748336847028696 16.488891099175518, -15.696317846980264 16.480136099167368, -15.670281846956016 16.481109099168265, -15.576390846868577 16.513336099198284, -15.50999984680675 16.55666409923863, -15.441390846742848 16.579436099259837, -15.354999846662395 16.561664099243288, -15.235972846551533 16.559300099241085, -15.088336846414023 16.60805409928649, -15.021663846351942 16.638745099315074, -15.00395484633546 16.670064099344245, -14.984517846317345 16.69061809936339, -14.961526846295925 16.684718099357895, -14.958090846292748 16.67255409934657, -14.951663846286749 16.648400099324064, -14.906945846245094 16.635273099311846, -14.85471784619645 16.637218099313657, -14.756390846104892 16.64444509932038, -14.639508845996033 16.635345099311905, -14.50499984587077 16.626391099303575, -14.453608845822913 16.635136099311723, -14.416108845787988 16.650273099325815, -14.343608845720468 16.63610909931262, -14.219163845604555 16.543191099226078, -14.029726845428115 16.357773099053404, -13.984236845385766 16.299864098999464, -13.96971784537223 16.23389109893803, -13.816108845229195 16.135273098846184, -13.703508845124304 16.178745098886665, -13.698890845120019 16.166945098875672, -13.71034584513069 16.136245098847084, -13.66819084509143 16.098954098812357, -13.639717845064894 16.115836098828083, -13.579863845009157 16.13555409884644, -13.52055484495392 16.13221809884334, -13.395417844837368 16.05541809877181, -13.324717844771527 15.929445098654483, -13.245836844698061 15.68055409842269, -13.184717844641142 15.629445098375086, -13.102690844564762 15.521391098274464, -13.091663844554489 15.49666409825143, -13.056599844521827 15.479927098235848, -12.963608844435242 15.500382098254889, -12.94013684441336 15.392636098154554, -12.929926844403866 15.365482098129263, -12.9072178443827 15.351664098116387, -12.879445844356837 15.337218098102937, -12.860836844339502 15.324445098091033, -12.84173684432173 15.29645409806497, -12.850072844329503 15.26583609803646, -12.885763844362742 15.261700098032605, -12.849726844329155 15.20805409798264, -12.783445844267447 15.149654097928249, -12.708054844197221 15.097773097879937, -12.685981844176666 15.08790909787075, -12.662781844155063 15.104718097886405, -12.629308844123898 15.099864097881877, -12.478754843983666 15.007427097795798, -12.451872843958625 14.9411820977341, -12.448054843955077 14.905627097700986, -12.395836843906437 14.85305409765202, -12.283608843801943 14.785827097589419, -12.244836843765825 14.764382097569438, -12.244163843765193 14.75055409755656, -12.178608843704154 14.607500097423326, -12.216945843739836 14.539718097360208, -12.225699843748004 14.505282097328134, -12.206399843730026 14.395291097225694, -12.150836843678263 14.37416409720602, -12.030345843566067 14.27750009711599, -11.982226843521232 14.17278209701847, -11.979999843519181 14.151391096998552, -12.00444584354193 14.061809096915113, -12.014026843550852 14.018473096874757, -12.007917843545158 13.966245096826114, -11.986663843525378 13.94374509680516, -11.958754843499378 13.922773096785633, -11.943336843485014 13.906809096770758, -11.941663843483468 13.883609096749154, -11.942499843484256 13.85889109672614, -11.947781843489167 13.830273096699486, -11.955699843496546 13.800973096672195, -11.967781843507794 13.781664096654211, -11.98944584352796 13.761245096635193, -12.00999984354712 13.746664096621615, -12.041390843576352 13.7286090966048, -12.06444584359781 13.695554096574014, -12.057217843591076 13.6647180965453, -12.03444584356987 13.61083609649512, -11.990836843529252 13.556391096444415, -11.965490843505648 13.528127096418089, -11.878199843424369 13.420418096317775, -11.887290843432822 13.38160009628163, -11.809517843360396 13.30927309621427, -11.758608843312999 13.364718096265904, -11.74097284329656 13.40902709630717, -11.716254843273532 13.412500096310396, -11.63458184319748 13.391527096290872, -11.608054843172766 13.358327096259956, -11.552226843120764 13.282773096189587, -11.539372843108794 13.254718096163458, -11.556181843124449 13.212427096124074, -11.528890843099049 13.140136096056736, -11.515136843086225 13.112082096030619, -11.463336843037979 13.085836096006176, -11.376108842956768 12.982918095910321, -11.369926842951003 12.932218095863107, -11.394999842974357 12.831945095769711, -11.424163843001509 12.656109095605956, -11.416945842994778 12.56944509552524, -11.40889084298729 12.53500009549316, -11.37360884295444 12.447773095411932, -11.373054842953906 12.40777309537468))) +SLE Sierra Leone MULTIPOLYGON (((-11.492326843065001 6.927091090270395, -11.532499843102414 6.941109090283447, -11.573545843140636 6.961318090302271, -11.64249984320486 7.020000090356916, -11.666390843227106 7.037500090373214, -11.735836843291764 7.084164090416678, -11.81999984337017 7.1366640904655725, -11.841663843390336 7.147782090475928, -11.890554843435865 7.166945090493769, -12.320836843836588 7.325282090641238, -12.380836843892467 7.34666409066115, -12.44166384394913 7.367500090680551, -12.466390843972164 7.373336090685996, -12.504163844007337 7.388609090700214, -12.494999843998812 7.449864090757259, -12.469717843975246 7.489445090794121, -12.435345843943253 7.525418090827628, -12.398336843908766 7.531945090833702, -12.359726843872807 7.531664090833445, -12.311045843827486 7.527364090829437, -12.230281843752266 7.551391090851823, -12.194581843719021 7.570836090869932, -12.18430884370946 7.5910360908887355, -12.250972843771535 7.608609090905105, -12.26625484378576 7.584445090882596, -12.293054843810722 7.5727820908717405, -12.392081843902957 7.544164090845086, -12.432781843940859 7.550000090850517, -12.460554843966719 7.555418090855568, -12.536390844037356 7.637500090932008, -12.594308844091302 7.681245090972752, -12.692217844182466 7.701391090991521, -12.766108844251306 7.740000091027468, -12.870281844348312 7.8177820910999145, -12.958963844430912 7.903264091179523, -12.889999844366685 7.935136091209202, -12.886108844363065 7.964164091236242, -12.908054844383486 8.100000091362745, -12.948126844420813 8.159927091418567, -12.97652684444725 8.17965409143693, -12.986945844456955 8.212773091467781, -12.980836844451261 8.233609091487182, -12.974336844445219 8.247773091500378, -13.006672844475332 8.233327091486927, -13.132781844592785 8.19500009145122, -13.154999844613485 8.214164091469073, -13.215554844669867 8.340554091586782, -13.278054844728075 8.423609091664133, -13.284999844734557 8.497573091733017, -13.19778184465332 8.493609091729326, -13.175554844632615 8.474445091711473, -13.149445844608294 8.439827091679234, -13.055899844521178 8.369582091613822, -13.039154844505589 8.37365409161761, -13.035972844502624 8.377636091621312, -13.065554844530169 8.405836091647586, -13.095699844558254 8.421664091662322, -13.122536844583237 8.447464091686356, -13.095554844558109 8.485282091721572, -13.014445844482566 8.556391091787802, -12.989445844459283 8.560000091791153, -12.929999844403937 8.551245091783002, -12.89749984437367 8.567782091798406, -12.937917844411288 8.589164091818319, -13.034999844501726 8.58666409181599, -13.103890844565882 8.574864091804997, -13.149026844607903 8.515554091749763, -13.17916384463598 8.53944509177201, -13.189445844645547 8.556945091788307, -13.24055484469315 8.66528209188921, -13.242499844694976 8.783891091999678, -13.237290844690108 8.81937309203272, -13.205281844660306 8.856036092066859, -13.132226844592253 8.86194509207236, -13.176390844633403 8.912500092119444, -13.229163844682546 8.94805409215256, -13.265554844716434 8.953609092157734, -13.286390844735848 8.995554092196798, -13.295608844744436 9.032145092230877, -13.290836844739971 9.042773092240779, -13.263681844714682 9.062636092259268, -13.182845844639417 9.086182092281206, -13.140836844600273 9.053891092251135, -13.113472844574801 9.043891092241822, -13.09319084455592 9.047218092244918, -13.031390844498361 9.086391092281403, -13.004445844473253 9.108191092301695, -12.976390844447138 9.169445092358742, -12.960836844432635 9.234445092419278, -12.948681844421316 9.277291092459194, -12.927226844401332 9.289027092470121, -12.856045844335057 9.284445092465845, -12.818054844299667 9.286664092467916, -12.797781844280792 9.298054092478523, -12.679581844170713 9.419718092591836, -12.664999844157137 9.47610909264435, -12.631108844125578 9.57277309273438, -12.61666384411211 9.606109092765422, -12.584090844081771 9.63187309278942, -12.585972844083528 9.648473092804878, -12.492945843996893 9.863909093005518, -12.456108843962596 9.888336093028272, -12.230763843752726 9.935209093071919, -12.219863843742559 9.91194509305025, -12.159726843686542 9.879718093020244, -12.134445843663002 9.875000093015842, -12.109136843639448 9.880400093020882, -12.105836843636354 9.880554093021019, -11.897499843442347 9.935345093072044, -11.900554843445178 9.972500093106646, -11.894726843439742 9.996109093128638, -11.576736843143607 9.997473093129912, -11.569445843136805 9.996664093129155, -11.481745843055137 9.997473093129912, -11.458890843033856 9.99750009312993, -11.214445842806185 9.99750009312993, -11.17423684276875 9.975627093109566, -11.10458184270388 9.853609092995924, -11.051672842654597 9.809445092954789, -11.023890842628731 9.781945092929178, -10.997217842603874 9.751664092900981, -10.979999842587858 9.727500092878472, -10.909172842521883 9.603054092762576, -10.838608842456182 9.479718092647715, -10.750136842373763 9.389027092563254, -10.699717842326805 9.346109092523278, -10.657290842287296 9.302636092482786, -10.671181842300228 9.227709092413008, -10.689308842317132 9.206109092392893, -10.72360884234908 9.15944509234943, -10.739654842364018 9.09139109228606, -10.721463842347077 9.077564092273178, -10.67860884230717 9.077773092273375, -10.611108842244306 9.073191092269099, -10.571526842207419 9.059536092256394, -10.577317842212835 9.041200092239308, -10.595836842230057 8.985691092187608, -10.601108842234993 8.953609092157734, -10.593190842227614 8.866945092077017, -10.58305484221816 8.824445092037436, -10.508054842148312 8.71791809193823, -10.536808842175105 8.619927091846975, -10.576390842211964 8.599445091827889, -10.619863842252443 8.543745091776017, -10.693890842321395 8.3619450916067, -10.695836842323189 8.298609091547718, -10.554581842191652 8.308745091557157, -10.529163842167975 8.321809091569321, -10.492636842133948 8.34819109159389, -10.435836842081045 8.4040270916459, -10.4227818420689 8.435836091675526, -10.390417842038744 8.490836091726749, -10.323336841976271 8.509164091743813, -10.266654841923497 8.488373091724455, -10.26430884192132 8.45513609169349, -10.297572841952302 8.19902709145498, -10.333754841985979 8.159582091418244, -10.358054842008613 8.145691091405297, -10.43826384208333 8.14124509140116, -10.474026842116615 8.14416409140388, -10.502363842143012 8.133891091394318, -10.524163842163318 8.117773091379306, -10.602636842236393 8.032918091300274, -10.60194584223575 7.858891091138204, -10.607781842241195 7.772500091057736, -10.652226842282573 7.760554091046615, -10.686808842314804 7.7430540910303165, -10.705836842332502 7.7241640910127245, -10.724726842350094 7.701945090992027, -10.747499842371326 7.6697180909620215, -10.82999984244816 7.5663910908657925, -10.845554842462633 7.547500090848189, -10.85086384246759 7.541882090842961, -10.868545842484053 7.527364090829437, -10.920099842532068 7.508227090811616, -11.1027818427022 7.384445090696332, -11.131945842729351 7.351391090665558, -11.137781842734796 7.343564090658262, -11.14166384273841 7.327500090643298, -11.193681842786845 7.256454090577137, -11.238890842828965 7.243891090565441, -11.267499842855614 7.2350000905571505, -11.30639084289183 7.2148640905383985, -11.338608842921843 7.150836090478776, -11.341663842924675 7.116664090446946, -11.35139084293374 7.078609090411504, -11.379999842960387 7.018891090355893, -11.4255548430028 6.939027090281513, -11.465836843040307 6.923609090267149, -11.492326843065001 6.927091090270395)), ((-12.884999844362028 7.614164090910279, -12.688054844178595 7.635554090930199, -12.674717844166167 7.636664090931234, -12.643054844136685 7.638891090933313, -12.630554844125044 7.638054090932528, -12.591108844088325 7.634445090929162, -12.522499844024424 7.596391090893732, -12.496254843999964 7.570836090869932, -12.496254843999964 7.500836090804739, -12.525281844027006 7.431391090740064, -12.559445844058814 7.4208360907302335, -12.576108844074355 7.449027090756488, -12.588336844085717 7.461109090767735, -12.596945844093739 7.46639109077266, -12.619445844114694 7.478054090783516, -12.639717844133571 7.484718090789727, -12.68055484417161 7.4980540908021425, -12.691108844181457 7.501109090804988, -12.717781844206286 7.508609090811973, -12.744999844231643 7.515273090818184, -12.803336844285951 7.529164090831117, -12.951663844424104 7.566664090866041, -12.896663844372881 7.607782090904337, -12.884999844362028 7.614164090910279))) +GMB The Gambia MULTIPOLYGON (((-16.60973684783096 13.472000096365818, -16.590145847812693 13.461245096355796, -16.5843458478073 13.454618096349634, -16.587154847809927 13.436182096332459, -16.611390847832496 13.440836096336795, -16.621045847841486 13.431454096328054, -16.610554847831708 13.426945096323848, -16.606672847828094 13.402218096300828, -16.599726847821614 13.380554096280648, -16.57666384780015 13.324445096228388, -16.554726847779705 13.295073096201037, -16.4216728476558 13.256945096165524, -16.379445847616466 13.275554096182859, -16.249581847495534 13.318536096222886, -16.22375484747147 13.29763609620342, -16.22437284747204 13.257573096166112, -16.19472684744443 13.25263609616151, -16.171390847422714 13.261664096169923, -16.154863847407313 13.279309096186353, -16.156599847408927 13.281736096188624, -16.19392684744369 13.263682096171806, -16.224172847471863 13.326109096229942, -16.223608847471354 13.34805409625038, -16.20958184745828 13.377918096278194, -16.15589984740828 13.424864096321912, -16.123754847378336 13.415827096313507, -16.086526847343663 13.408609096306776, -16.048754847308487 13.405418096303805, -15.77333684705198 13.433054096329542, -15.636663846924705 13.452773096347912, -15.548608846842711 13.506036096397509, -15.489999846788123 13.485000096377917, -15.40180884670599 13.447364096342866, -15.358890846666014 13.438745096334841, -15.32833684663754 13.438609096334716, -15.305763846616543 13.451527096346751, -15.294581846606121 13.485973096378828, -15.297172846608532 13.491054096383564, -15.303199846614149 13.474445096368086, -15.328754846637935 13.454164096349203, -15.359026846666126 13.450273096345583, -15.397499846701976 13.463609096357999, -15.484381846782895 13.501391096393192, -15.547226846841397 13.528682096418606, -15.658336846944877 13.504164096395769, -15.72278184700491 13.47610909636964, -15.81194584708794 13.456391096351282, -16.097226847353625 13.43180909632838, -16.11569984737085 13.441109096337044, -16.14049084739392 13.453536096348614, -16.192499847442377 13.431391096328, -16.23104584747827 13.3997180962985, -16.268608847513264 13.360418096261895, -16.33194584757223 13.338336096241335, -16.403545847638924 13.33208209623551, -16.4794458477096 13.355836096257633, -16.513336847741158 13.368609096269523, -16.50458184773302 13.387082096286733, -16.500972847729656 13.409582096307687, -16.553890847778945 13.56583609645321, -16.565672847789926 13.590000096475706, -16.17083684742218 13.592500096478034, -16.08859984734559 13.59221809647778, -15.929726847197628 13.592782096478302, -15.645836846933236 13.591109096476742, -15.574717846867003 13.590554096476225, -15.488199846786443 13.590836096476494, -15.484081846782601 13.640791096523017, -15.47430884677351 13.669027096549314, -15.45555484675603 13.708327096585919, -15.435554846737404 13.730273096606354, -15.420281846723185 13.743327096618515, -15.364445846671174 13.781391096653962, -15.336672846645314 13.792918096664692, -15.30049084661161 13.790418096662364, -15.271526846584635 13.770554096643863, -15.251390846565897 13.744718096619806, -15.21666384653355 13.763891096637664, -15.16444584648491 13.795000096666627, -15.070281846397222 13.826391096695872, -14.911663846249496 13.802364096673486, -14.883054846222848 13.793054096664818, -14.860281846201644 13.780836096653445, -14.856336846197962 13.778609096651365, -14.828890846172413 13.756664096630928, -14.816108846160517 13.74110909661644, -14.802081846147445 13.709309096586821, -14.793608846139563 13.678609096558233, -14.791945846137992 13.653327096534696, -14.716526846067751 13.613336096497449, -14.697081846049656 13.632364096515161, -14.668336846022868 13.653327096534696, -14.646108846002193 13.663054096543746, -14.625699845983178 13.667918096548277, -14.59889084595821 13.670273096550474, -14.562363845924182 13.662082096542846, -14.535699845899359 13.650691096532228, -14.504581845870376 13.62805409651115, -14.483336845850573 13.593745096479196, -14.477781845845413 13.570836096457867, -14.472781845840757 13.534445096423966, -14.446390845816182 13.526391096416475, -14.429581845800527 13.504718096396289, -14.39833684577141 13.483327096376371, -14.369863845744902 13.466809096360976, -14.334863845712306 13.45402709634908, -14.237081845621248 13.481527096374691, -14.222917845608038 13.49847309639047, -14.198336845585146 13.516245096407019, -14.176108845564471 13.526109096416207, -14.082363845477147 13.560554096448286, -13.980417845382192 13.582773096468983, -13.919163845325158 13.568191096455394, -13.887017845295219 13.544373096433219, -13.868499845277967 13.50803609639938, -13.8455548452566 13.497082096389178, -13.8274998452398 13.48055409637378, -13.803754845217668 13.443191096338978, -13.798608845212897 13.413054096310915, -13.803472845217414 13.384445096284267, -13.824026845236546 13.356109096257882, -13.849999845260754 13.33305409623641, -13.858336845268497 13.327773096231496, -13.873054845282212 13.320836096225037, -13.992781845393722 13.30250009620795, -14.048890845445982 13.294445096200448, -14.095554845489431 13.285000096191652, -14.129999845521525 13.260554096168889, -14.151672845541697 13.246391096155705, -14.188336845575833 13.233054096143277, -14.21472684560041 13.23055409614095, -14.351108845727452 13.237782096147683, -14.388754845762492 13.24874509615789, -14.521108845885777 13.313891096218569, -14.547781845910606 13.335936096239095, -14.647781846003738 13.343891096246509, -14.686808846040094 13.350482096252648, -14.714726846066071 13.360554096262021, -14.73541784608534 13.375554096275991, -14.755281846103856 13.404445096302894, -14.770417846117937 13.42444509632152, -14.833336846176536 13.435273096331613, -14.92528184626218 13.460554096355153, -14.954726846289589 13.471945096365758, -14.972499846306164 13.482500096375588, -14.989726846322185 13.493054096385421, -15.045281846373939 13.528054096418018, -15.082081846408215 13.561391096449071, -15.11166384643576 13.59583609648115, -15.147917846469511 13.586245096472211, -15.175054846494788 13.55280009644106, -15.201526846519442 13.525136096415295, -15.204172846521914 13.487773096380508, -15.20472684652242 13.461945096356445, -15.21083684652811 13.434164096330576, -15.22430884654068 13.413191096311039, -15.247217846561995 13.393891096293075, -15.264445846578042 13.383054096282976, -15.290417846602224 13.372773096273406, -15.33416384664298 13.365836096266946, -15.360281846667306 13.366391096267463, -15.418054846721105 13.375273096275734, -15.806526847082893 13.339445096242358, -15.809445847085613 13.245282096154668, -15.809717847085864 13.159718096074982, -15.862499847135041 13.159718096074982, -15.895563847165818 13.160554096075757, -15.99889084726206 13.163054096078085, -16.618336847838947 13.165000096079893, -16.700345847915344 13.157218096072654, -16.7508728479624 13.059973095982087, -16.784445847993652 13.140836096057399, -16.819999848026782 13.278336096185456, -16.821663848028322 13.32332709622736, -16.817117848024083 13.370645096271417, -16.786108847995223 13.387573096287184, -16.744726847956656 13.418473096315964, -16.73167284794451 13.449718096345066, -16.70993684792427 13.471736096365575, -16.68430884790041 13.489445096382056, -16.620836847841275 13.475554096369123, -16.60973684783096 13.472000096365818))) +DJI Djibouti MULTIPOLYGON (((43.32750020798994 12.47672709543889, 43.329582207991905 12.433891095399005, 43.37416320803342 12.284718095260075, 43.388054208046356 12.264027095240806, 43.410136208066916 12.234654095213443, 43.42040920807648 12.138745095124122, 43.414863208071324 12.06305409505363, 43.40444520806162 12.038891095031133, 43.37090020803038 11.993264094988632, 43.292636207957486 11.965554094962826, 43.251663207919336 11.958609094956358, 43.218745207888674 11.957773094955584, 43.19444520786604 11.948054094946528, 43.14249120781764 11.896664094898668, 43.10471820778247 11.85333609485832, 43.04763620772931 11.800136094808764, 43.01847320770216 11.793473094802565, 42.98277320766891 11.794754094803764, 42.88360920757654 11.774164094784581, 42.8227732075199 11.753336094765189, 42.77256320747313 11.731182094744554, 42.71638220742082 11.652218094671014, 42.6963912074022 11.614445094635826, 42.68582720739235 11.58027309460401, 42.67485420738214 11.562364094587323, 42.62721820733776 11.544445094570634, 42.557636207272964 11.568745094593268, 42.53006320724728 11.580064094603813, 42.508609207227295 11.567218094591851, 42.53265420724969 11.54727309457327, 42.531527207248644 11.511945094540366, 42.59513620730789 11.46860909450001, 42.62389120733468 11.4666640944982, 42.68305420738977 11.490418094520322, 42.66597320737387 11.518336094546328, 42.69069120739687 11.54013609456662, 42.72805420743168 11.551109094576844, 42.828327207525064 11.577218094601164, 42.86680920756089 11.585427094608804, 42.87791820757124 11.581664094605301, 42.903882207595444 11.581664094605301, 42.947491207636034 11.585282094608672, 43.023963207707254 11.58124509460491, 43.0319452077147 11.58027309460401, 43.119436207796184 11.57110909459547, 43.15721820783136 11.570836094595222, 43.23499120790379 11.488891094518905, 43.24921820791704 11.469536094500882, 43.22500020789448 11.430827094464831, 43.20547320787631 11.397827094434092, 43.18639120785855 11.370282094408438, 43.10620020778384 11.25000009429641, 43.06416320774471 11.186945094237686, 42.975554207662185 11.053609094113511, 42.95360920764173 11.02027309408247, 42.94409120763288 11.002436094065857, 42.890973207583414 10.982082094046902, 42.81097320750891 10.988336094052727, 42.79221820749143 10.997773094061515, 42.76930020747008 11.023191094085178, 42.75978220746123 11.059100094118634, 42.74819120745042 11.077918094136152, 42.64040920735005 11.097082094154004, 42.60823620732009 11.09157309414887, 42.50110920722031 11.063609094122825, 42.35889120708788 11.019164094081432, 42.30055420703354 11.011391094074199, 42.17166320691351 11.000282094063849, 42.125545206870555 10.999445094063063, 42.08034520682844 10.977427094042568, 42.019718206771984 10.944718094012103, 41.991945206746124 10.942218094009775, 41.940282206698015 10.950000094017014, 41.91805420667731 10.95360909402038, 41.88194520664368 10.960836094027115, 41.83721820660202 10.973054094038488, 41.808327206575115 10.985282094049879, 41.78971820655778 11.008054094071085, 41.80055420656788 11.031109094092557, 41.802909206570064 11.098973094155767, 41.806663206573575 11.168336094220365, 41.81193620657848 11.25791809430379, 41.79374520656154 11.380973094418394, 41.75985420652998 11.50791809453662, 41.79804520656555 11.638336094658086, 41.829018206594384 11.74097309475367, 41.891391206652486 11.773609094784064, 41.948609206705754 11.816664094824162, 42.02508220677697 11.926364094926328, 42.0586092068082 11.975827094972402, 42.1272182068721 12.090273095078985, 42.16888220691092 12.137218095122705, 42.25555420699163 12.263336095240163, 42.29221820702577 12.29389109526862, 42.308327207040776 12.308336095282073, 42.325554207056825 12.359164095329405, 42.33943620706975 12.396945095364586, 42.366100207094576 12.430273095395634, 42.399718207125886 12.46971809543237, 42.4561092071784 12.52916409548773, 42.48480920720513 12.521845095480913, 42.50139120722059 12.516664095476088, 42.53582720725265 12.504164095464446, 42.588327207301546 12.467773095430559, 42.620282207331314 12.430827095396154, 42.649163207358214 12.39860909536614, 42.698609207404246 12.363891095333813, 42.74985420745199 12.387636095355916, 42.819400207516736 12.445591095409895, 42.80840020750651 12.487918095449317, 42.81055420750852 12.52492709548379, 42.92971820761949 12.623891095575956, 43.12138220779801 12.708327095654596, 43.150691207825275 12.658473095608159, 43.17971820785232 12.618327095570777, 43.207500207878184 12.584445095539209, 43.28777320795297 12.493609095454616, 43.31693620798012 12.481109095442974, 43.32750020798994 12.47672709543889))) +ERI Eritrea MULTIPOLYGON (((39.19028220413688 16.385554099079272, 39.20221820414798 16.343327099039954, 39.20416320414981 16.288609098988985, 39.21139120415654 16.22888209893337, 39.214718204159624 16.205554098911634, 39.22943620417334 16.127500098838937, 39.27013620421124 15.986245098707386, 39.3091632042476 15.89833609862552, 39.36555420430011 15.84971809858024, 39.423609204354165 15.769718098505734, 39.449718204378485 15.650273098394493, 39.441663204371 15.6036820983511, 39.46020020438826 15.521736098274786, 39.482773204409284 15.512082098265793, 39.5118002044363 15.518336098271618, 39.53846320446115 15.53736409828933, 39.563327204484295 15.53527309828739, 39.58290920450253 15.52639109827912, 39.61332720453086 15.48763609824303, 39.69055420460279 15.315554098082757, 39.713191204623854 15.257082098028306, 39.701945204613395 15.19250009796815, 39.69860920461028 15.181673097958068, 39.694163204606156 15.129445097909425, 39.7180542046284 15.08805409787088, 39.76778220467472 15.06277309784734, 39.77416320468066 15.063054097847598, 39.80853620471265 15.07555409785924, 39.8546452047556 15.175273097952115, 39.84304520474481 15.2258270979992, 39.81593620471955 15.277364098047187, 39.790027204695434 15.261800098032694, 39.7711092046778 15.39221809815416, 39.79881820470362 15.445345098203632, 39.84763620474908 15.474582098230869, 39.88138220478052 15.489445098244701, 39.9897182048814 15.389445098151569, 40.049027204936635 15.286945098056108, 40.02582720491503 15.239864098012262, 40.04166320492979 15.201109097976172, 40.074227204960096 15.167982097945327, 40.156736205036964 15.017982097805628, 40.15750020503765 14.984718097774646, 40.175409205054336 14.971109097761968, 40.29784520516836 14.913536097708345, 40.338609205206325 14.943891097736625, 40.36193620522806 14.965000097756274, 40.422218205284196 14.99610909778525, 40.454854205314604 15.007773097796118, 40.593891205444095 14.946391097738953, 40.673882205518595 14.90416409769962, 40.730691205571475 14.830836097631334, 40.730554205571366 14.794445097597432, 40.807218205642755 14.70555409751465, 40.84944520568209 14.716664097524998, 40.882773205713136 14.71610909752448, 41.17221820598269 14.630691097444924, 41.310273206111276 14.476945097301737, 41.3786092061749 14.373336097205254, 41.44916320624063 14.271664097110559, 41.51193620629908 14.20250009704614, 41.611936206392215 14.06778209692068, 41.65305420643051 13.999791096857365, 41.663882206440604 13.967364096827154, 41.677218206453006 13.936391096798317, 41.72027320649312 13.915554096778905, 41.85263620661638 13.871391096737781, 41.90208220666244 13.872636096738944, 41.95652720671313 13.85721809672458, 41.98471820673939 13.826391096695872, 42.0586092068082 13.729164096605317, 42.06777320681675 13.697773096576086, 42.09027320683771 13.678336096557985, 42.18652720692734 13.575136096461861, 42.22548220696362 13.551245096439615, 42.21725420695597 13.636400096518926, 42.191545206932005 13.653764096535099, 42.168818206910856 13.660209096541095, 42.17827320691964 13.669000096549283, 42.22250020696083 13.63666409651917, 42.28458220701867 13.573473096460319, 42.29500020702835 13.5530540964413, 42.33971820707001 13.427500096324366, 42.344445207074415 13.40528209630368, 42.34888220707856 13.350273096252451, 42.37380920710177 13.217918096129182, 42.44492720716801 13.1903450961035, 42.49027320721024 13.192082096105125, 42.5752732072894 13.161945096077048, 42.721663207425735 13.042218095965552, 42.73374520743698 13.023473095948091, 42.758609207460125 12.942500095872674, 42.771945207472555 12.894445095827919, 42.80471820750307 12.84500009578187, 42.88055420757371 12.808891095748251, 42.936245207625575 12.800973095740872, 42.97500020766165 12.812773095751865, 42.98624520767214 12.830064095767966, 43.00221820768701 12.88586409581994, 43.07798220775757 12.828954095766932, 43.0938912077724 12.795554095735824, 43.11804520779489 12.729164095673994, 43.12138220779801 12.708327095654596, 42.92971820761949 12.623891095575956, 42.81055420750852 12.52492709548379, 42.80840020750651 12.487918095449317, 42.819400207516736 12.445591095409895, 42.74985420745199 12.387636095355916, 42.698609207404246 12.363891095333813, 42.649163207358214 12.39860909536614, 42.620282207331314 12.430827095396154, 42.588327207301546 12.467773095430559, 42.53582720725265 12.504164095464446, 42.50139120722059 12.516664095476088, 42.48480920720513 12.521845095480913, 42.4561092071784 12.52916409548773, 42.399718207125886 12.46971809543237, 42.35805420708709 12.511664095471431, 42.34471820707466 12.526664095485401, 42.32610920705733 12.549445095506613, 42.30651820703909 12.574718095530159, 42.29221820702577 12.59819109555201, 42.26277320699836 12.650554095600782, 42.21444520695334 12.725827095670894, 42.19430020693457 12.746109095689775, 42.15305420689617 12.778473095719917, 42.11902720686447 12.801245095741123, 42.09777320684469 12.811945095751085, 42.076945206825286 12.819718095758333, 42.04819120679849 12.830273095768163, 42.017218206769655 12.840554095777733, 41.99305420674716 12.850136095786652, 41.97430020672968 12.863336095798957, 41.954163206710945 12.885273095819386, 41.92680020668544 12.92666409585793, 41.914718206674195 12.948745095878493, 41.843863206608205 13.098536096017995, 41.84305420660746 13.105827096024797, 41.81652720658275 13.157773096073171, 41.798609206566056 13.187773096101111, 41.78139120655004 13.211945096123614, 41.75694520652726 13.236391096146392, 41.615554206395586 13.353609096255553, 41.599163206380325 13.36527309626642, 41.566936206350306 13.386664096286339, 41.54971820633426 13.397782096296694, 41.52804520631409 13.41124509630923, 41.42805420622096 13.47221809636602, 41.23652720604258 13.595418096480756, 41.21860920602589 13.612364096496535, 41.17832720598838 13.681664096561079, 41.13250020594569 13.766109096639724, 41.115554205929925 13.796945096668438, 41.10040920591581 13.822918096692632, 41.0729092058902 13.86652709673325, 41.04721820586627 13.900000096764416, 41.0080452058298 13.94471809680607, 40.92916320575634 14.032218096887561, 40.90943620573796 14.052218096906188, 40.80270020563856 14.153054097000094, 40.77693620561456 14.164718097010962, 40.74889120558845 14.17278209701847, 40.69360020553694 14.182500097027514, 40.64693620549349 14.189027097033602, 40.61416320546297 14.195836097039944, 40.592500205442775 14.20305409704666, 40.5527732054058 14.220273097062702, 40.46889120532768 14.261391097100997, 40.4336092052948 14.282636097120786, 40.38555420525006 14.32527309716049, 40.349718205216675 14.35916409719205, 40.322773205191595 14.387782097218704, 40.30138220517168 14.405836097235522, 40.27110920514346 14.424718097253105, 40.228054205103376 14.443509097270606, 40.17942720505809 14.457954097284059, 40.15666320503689 14.464718097290358, 40.11686320499982 14.47013609729541, 40.01888220490858 14.458891097284933, 39.9457912048405 14.43177309725968, 39.90374520480134 14.432500097260345, 39.886800204785544 14.44374509727082, 39.85166320475284 14.4797910973044, 39.77992720468603 14.513609097335888, 39.74638220465479 14.5027730973258, 39.725963204635775 14.495691097319195, 39.69513620460705 14.493609097317261, 39.61388220453139 14.510327097332834, 39.531391204454565 14.565554097384265, 39.48262720440914 14.511318097333756, 39.375973204309815 14.483891097308216, 39.26305420420465 14.473609097298635, 39.20971820415497 14.485554097309759, 39.18958220413623 14.54430009736447, 39.17860920412599 14.564309097383102, 39.152218204101416 14.600000097416341, 39.13527320408565 14.617773097432902, 39.11874520407025 14.629391097443715, 39.09402720404722 14.64360909745696, 39.024018203982024 14.655164097467718, 39.01242720397124 14.58895409740606, 38.96555420392758 14.546109097366156, 38.89305420386006 14.500827097323992, 38.79555420376926 14.469718097295015, 38.56139120355118 14.426527097254791, 38.44895420344645 14.418745097247538, 38.33346320333891 14.521600097343338, 38.306936203314194 14.59416409741091, 38.26333620327358 14.677636097488659, 38.24485420325638 14.687364097497706, 38.18891820320428 14.692118097502146, 38.14374520316221 14.683327097493958, 38.04055420306611 14.721945097529911, 38.0183272030454 14.73500009754207, 37.98034520301002 14.775973097580234, 37.97832720300815 14.801109097603643, 37.955827202987194 14.837773097637793, 37.9265182029599 14.87097309766871, 37.91138220294579 14.883609097680477, 37.83833620287777 14.715273097523706, 37.684436202734446 14.360000097192824, 37.57220920262992 14.102254096952791, 37.53075420259131 14.114309096964007, 37.43305420250033 14.268054097107196, 37.39124520246139 14.356391097189473, 37.33693620241081 14.426664097254914, 37.28784520236508 14.451873097278394, 37.1995822022829 14.452500097278971, 37.12471820221316 14.425627097253951, 37.10139120219145 14.393054097223612, 37.09166320218239 14.3712450972033, 37.0908272021816 14.346664097180408, 37.090545202181346 14.31236409714846, 37.075273202167125 14.287500097125303, 36.999791202096816 14.261527097101123, 36.94989120205034 14.294373097131711, 36.886109201990934 14.320273097155834, 36.82500020193402 14.328054097163076, 36.736382201851484 14.327218097162302, 36.6412452017629 14.316664097152469, 36.55846320168581 14.28860909712634, 36.542818201671224 14.262054097101611, 36.54166320167016 14.27805409711651, 36.515545201645836 14.450282097276911, 36.452218201586845 15.068609097852772, 36.44328220157854 15.149954097928529, 36.47971820161246 15.180273097956771, 36.542773201671196 15.234718098007477, 36.56555420169241 15.302773098070858, 36.61054520173431 15.43721809819607, 36.62610920174879 15.489445098244701, 36.67166320179123 15.65916409840277, 36.69624520181412 15.748609098486071, 36.76360920187685 15.808054098541433, 36.826109201935054 15.977500098699238, 36.88944520199405 16.14666409885679, 36.924718202026895 16.22708209893169, 36.966873202066154 16.25992709896228, 36.97388220207267 16.28555409898614, 36.95283620205308 16.433609099124027, 36.92805420203001 16.459445099148084, 36.90277320200647 16.493609099179906, 36.89666320200078 16.51471809919957, 36.89832720200232 16.53694509922026, 36.91402720201694 16.64444509932038, 36.93930020204047 16.677636099351304, 36.97263620207153 16.70000009937212, 36.98888220208664 16.72555409939592, 37.00895420210534 16.786318099452515, 37.013054202109174 17.022427099672413, 36.993809202091256 17.064891099711957, 37.02610920212132 17.07721809972344, 37.1083272021979 17.047918099696147, 37.147773202234646 17.017009099667362, 37.2573542023367 17.02694509967661, 37.38138220245219 17.043054099691616, 37.42329120249124 17.03420909968338, 37.48610920254973 17.11055409975448, 37.52057320258183 17.195800099833875, 37.53069120259124 17.249427099883818, 37.52027320258156 17.27777309991022, 37.51207320257393 17.321182099950647, 37.58874520264533 17.350136099977618, 37.62305420267728 17.357500099984463, 37.74471820279058 17.38194510000723, 37.895554202931066 17.441391100062603, 37.93388220296674 17.458609100078633, 37.966527202997156 17.499718100116922, 38.03471820306066 17.541664100155984, 38.05874520308305 17.55250010016607, 38.092254203114265 17.543227100157438, 38.135554203154584 17.49888210011615, 38.25750020326814 17.532773100147708, 38.36916320337215 17.664445100270328, 38.44916320344666 17.851109100444177, 38.45860920345544 17.871109100462803, 38.50582720349942 17.91332710050213, 38.60069120358776 17.99488210057808, 38.61193620359825 17.96139110054689, 38.67221820365438 17.847218100440557, 38.710554203690094 17.77735410037549, 38.74971820372656 17.7272181003288, 38.79777320377133 17.653327100259986, 38.895000203861855 17.45694510007708, 38.9452732039087 17.34805409997567, 39.00193620396146 17.188609099827175, 39.03916320399614 17.05250009970041, 39.09832720405123 16.862782099523727, 39.11555420406728 16.826945099490345, 39.13693620408719 16.77527309944223, 39.16027320410893 16.679164099352718, 39.161663204110226 16.63750009931391, 39.16082720410944 16.573054099253895, 39.164163204112555 16.544445099227246, 39.17401820412172 16.47798209916536, 39.18749120413426 16.450554099139808, 39.1927732041392 16.396945099089876, 39.19028220413688 16.385554099079272)), ((40.000000204890966 15.88578209861383, 40.015482204905396 15.884927098613034, 40.0872182049722 15.851664098582049, 40.14103620502232 15.801600098535431, 40.13582720501748 15.75250009848969, 40.12860920501075 15.73166409847029, 40.128882205011024 15.718609098458131, 40.13221820501411 15.701945098442607, 40.142491205023674 15.671391098414162, 40.14902720502977 15.657500098401215, 40.167845205047286 15.639654098384597, 40.237982205112615 15.629300098374955, 40.25193620512562 15.655554098399406, 40.23389120510882 15.665836098408988, 40.219927205095814 15.675627098418104, 40.22569120510116 15.690136098431623, 40.23805420511269 15.698609098439505, 40.25208220512576 15.701945098442607, 40.26250020513544 15.701945098442607, 40.28388220515538 15.701109098441833, 40.296391205167026 15.699164098440022, 40.31332720518279 15.694445098435622, 40.4027732052661 15.638336098383377, 40.409718205272554 15.618054098364482, 40.41707320527942 15.574864098324255, 40.39582720525962 15.572773098322315, 40.32694520519547 15.574718098324126, 40.25278220512641 15.589718098338096, 40.11950920500229 15.604164098351546, 40.107845204991406 15.588191098336665, 40.088609204973494 15.585836098334482, 40.049436204937024 15.588054098336542, 39.98082720487312 15.602918098350386, 39.95860920485242 15.624309098370304, 39.9577182048516 15.677273098419633, 39.9830542048752 15.6650000984082, 40.024718204913995 15.643054098387765, 40.03735420492578 15.639164098384143, 40.05916320494609 15.648609098392939, 40.07909120496464 15.66368209840698, 40.06082720494763 15.689445098430966, 40.019163204908835 15.73166409847029, 40.00916320489952 15.73610909847443, 39.97229120486517 15.742291098480194, 39.948791204843275 15.73820909847639, 39.93341820482897 15.744336098482094, 39.92152720481789 15.756664098493573, 39.92805420482398 15.786245098521121, 39.98250020487467 15.814345098547292, 40.02916320491815 15.822082098554503, 40.03846320492681 15.826664098558766, 40.04040920492861 15.837500098568853, 40.000000204890966 15.88578209861383))) +ETH Ethiopia MULTIPOLYGON (((45.489400210003396 5.4897640889317785, 45.374463209896334 5.363918088814572, 45.09610920963709 5.060273088531787, 45.00783620955488 4.9625730884407915, 45.00000020954758 4.954309088433092, 44.950827209501796 4.902500088384841, 44.51277320909384 4.930273088410715, 44.46690020905112 4.93352708841374, 44.29027320888662 4.944164088423648, 44.22166320882272 4.9483360884275385, 44.05902720867124 4.9586090884371, 43.981945208599456 4.96305408844124, 43.95985420857889 4.951391088430384, 43.922218208543825 4.934445088414591, 43.88721820851123 4.922782088403736, 43.855827208482 4.913891088395459, 43.833054208460794 4.910282088392094, 43.7980542084282 4.905691088387812, 43.76749120839972 4.903336088385629, 43.73735420837167 4.900554088383032, 43.68639120832421 4.89194508837501, 43.58721820823183 4.860000088345259, 43.56777320821374 4.8525000883382745, 43.490554208141816 4.8222180883100805, 43.3588912080192 4.765273088257047, 43.32166320798453 4.748609088241523, 43.193600207865245 4.687782088184875, 43.15819120783226 4.666391088164957, 43.08082720776022 4.604164088106998, 42.98569120767161 4.5254180880336605, 42.96888220765598 4.504309088013997, 42.9572182076451 4.481109087992394, 42.94651820763514 4.4461090879597975, 42.93360920762311 4.388745087906372, 42.91999120761042 4.364027087883358, 42.87666320757009 4.318336087840805, 42.855691207550535 4.304718087828121, 42.83166320752818 4.295282087819331, 42.76860920746944 4.278336087803552, 42.74082720744357 4.272782087798376, 42.72652720743025 4.271191087796893, 42.656109207364665 4.264718087790868, 42.62229120733318 4.26041808778686, 42.48583620720609 4.228891087757503, 42.401382207127455 4.2075000877375714, 42.37027320709848 4.202082087732535, 42.269854207004954 4.203745087734077, 42.23610920697351 4.207773087737834, 42.195827206936 4.208891087738877, 42.15166320689488 4.203336087733703, 42.11777320686332 4.193891087724907, 42.0983272068452 4.186664087718171, 42.07388220682245 4.1761450877083774, 42.04083620679165 4.142782087677304, 41.95943620671585 4.088473087626724, 41.93784520669573 4.0527090875934135, 41.93874520669658 4.022364087565151, 41.90516320666529 3.980318087526001, 41.89194520665299 3.9698640875162567, 41.84013620660474 3.948473087496339, 41.80082720656813 3.960554087507589, 41.78110920654976 3.9819450875275066, 41.72582720649828 4.000136087544448, 41.61138220639171 3.9891640875342347, 41.53485420632043 3.976109087522076, 41.48763620627645 3.961109087508106, 41.46902720625911 3.949309087497113, 41.273891206077394 3.9411090874894796, 41.18097320599085 3.941527087489874, 41.160554205971835 3.9458360874938876, 41.13513620594816 3.958473087505652, 41.11471820592914 3.9759730875219503, 41.09360920590947 3.996391087540971, 41.063609205881534 4.031245087573424, 41.04819120586717 4.0604180876005955, 41.00943620583109 4.108609087645476, 40.87693620570769 4.216664087746111, 40.853609205685956 4.2347180877629285, 40.783763205620915 4.287973087812517, 40.67221820551703 4.228609087757235, 40.39889120526249 4.123054087658929, 40.38860920525289 4.0988910876364315, 40.18250020506093 4.022500087565277, 40.000000204890966 3.928582087477821, 39.86666320476681 3.869445087422733, 39.78277320468868 3.678336087244759, 39.594991204513775 3.500836087079449, 39.56027320448146 3.4066640869917393, 39.519027204443034 3.409309086994199, 39.50208220442727 3.422636087006609, 39.49958220442494 3.45013608703222, 39.45082720437952 3.462500087043736, 39.42249120435312 3.460000087041408, 39.331382204268294 3.469164087049947, 39.32864520426574 3.4996540870783406, 39.29613620423547 3.4765000870567775, 39.295000204234384 3.4752820870556462, 39.248891204191466 3.4713910870520266, 39.19693620414307 3.478609087058743, 39.130000204080716 3.5108360870887623, 39.08471820403855 3.53444508711074, 39.046100204002585 3.5288910871055776, 38.95638220391905 3.518609087095996, 38.913600203879184 3.513891087091608, 38.81000020378269 3.5433360871190303, 38.72943620370768 3.5672180871412706, 38.62193620360756 3.601664087173347, 38.51693620350977 3.626945087196887, 38.44805420344562 3.5994450871712758, 38.32388220332996 3.6088910871800834, 38.12110920314112 3.6116640871826604, 38.05610920308058 3.65194508722017, 38.033609203059626 3.6980540872631167, 37.99805420302653 3.7286090872915736, 37.2805452023583 4.194445087725413, 37.13027320221835 4.2863910878110545, 37.099163202189374 4.331664087853213, 37.039718202134 4.375554087894088, 36.8877732019925 4.434718087949193, 36.71215420182892 4.4338360879483645, 36.66638220178629 4.433609087948156, 36.64750020176871 4.446664087960315, 36.43360920156951 4.441664087955658, 36.271663201418704 4.43916408795333, 36.21116320136235 4.44800008796156, 36.04530020120788 4.447082087960709, 35.95110920112015 4.521109088029647, 35.94055420111033 4.62250008812407, 35.92471820109557 4.640273088140631, 35.77443620095562 4.798609088288089, 35.77999120096078 5.082636088552604, 35.80277320098202 5.105273088573696, 35.8236092010014 5.136664088602927, 35.830691201007994 5.168400088632481, 35.80513620098421 5.206809088668251, 35.79624520097593 5.235136088694631, 35.79874520097826 5.265554088722965, 35.82166320099961 5.32860908878169, 35.79694520097658 5.331109088784018, 35.77499120095612 5.337218088789712, 35.75374520093635 5.346945088798762, 35.72624520091074 5.36444508881506, 35.52791820072602 5.426809088873142, 35.50471820070442 5.431391088877419, 35.44370920064759 5.425518088871939, 35.41909120062468 5.398400088846685, 35.35284520056297 5.35069108880225, 35.32624520053821 5.3570820888082125, 35.30305420051661 5.377364088827093, 35.270418200486205 5.4383360888838865, 35.27708220049243 5.458054088902244, 35.29270020050697 5.48763608892979, 35.28999120050443 5.507782088948559, 35.1038822003311 5.632500089064706, 35.10540920033253 5.688336089116717, 35.02832720026075 5.814164089233898, 34.98638220022167 5.8780540892934, 34.97582720021185 5.9647180893741165, 34.98782720022302 6.013945089419963, 34.98138220021701 6.0611090894638835, 34.96971820020616 6.086527089487561, 34.95221820018986 6.103473089503339, 34.92242720016213 6.1322910895301845, 34.870554200113816 6.237500089628156, 34.85930020010332 6.267218089655842, 34.8563822001006 6.291109089678088, 34.850000200094655 6.366664089748454, 34.75699120000806 6.613782089978599, 34.70471819995936 6.677782090038207, 34.67916319993557 6.700000090058893, 34.65471819991279 6.716664090074417, 34.63208219989173 6.7290270900859355, 34.60277319986443 6.734718090091235, 34.553609199818624 6.735691090092132, 34.52881819979555 6.747218090102876, 34.48697319975656 6.877491090224197, 34.47180019974243 6.9143090902584845, 34.43095419970439 6.935409090278142, 34.36096319963923 6.95902709030014, 34.328745199609216 6.958745090299871, 34.299573199582056 6.964327090305076, 34.280554199564335 6.975836090315795, 34.235691199522535 7.019718090356662, 34.22360919951129 7.042500090377871, 34.193882199483596 7.090000090422109, 34.16332719945515 7.171664090498169, 34.099163199395406 7.1997180905243, 34.02708219932828 7.248127090569383, 34.02974519933073 7.280036090599097, 34.032773199333576 7.304445090621826, 34.027709199328854 7.378673090690967, 33.88555419919646 7.525418090827628, 33.71249119903527 7.658473090951546, 33.647218198974485 7.685000090976246, 33.46444519880427 7.744027091031228, 33.43916319878073 7.744445091031608, 33.257500198611524 7.76360909104946, 33.096663198461755 7.781109091065758, 33.05221819842035 7.790691091074677, 33.01497319838566 7.846064091126252, 32.99682719836878 7.887218091164584, 32.991800198364075 7.9260450912007485, 33.03194519840147 7.99739109126719, 33.12138219848475 8.100973091363656, 33.162773198523325 8.115000091376714, 33.18591819854487 8.140291091400272, 33.17805419853755 8.222500091476832, 33.165836198526165 8.278327091528837, 33.1608271985215 8.356527091601663, 33.17124519853121 8.399791091641958, 33.263536198617146 8.461527091699452, 33.32673619867603 8.453682091692144, 33.380827198726394 8.43791809167746, 33.50860919884539 8.466200091703797, 33.63437319896252 8.467154091704685, 33.66999119899569 8.437082091676686, 33.69048219901478 8.395482091637945, 33.71527319903788 8.375064091618924, 33.77132719909008 8.367745091612107, 33.7897181991072 8.384445091627654, 33.81874519913424 8.411527091652886, 33.852491199165655 8.425836091666213, 33.8815271991927 8.43083609167087, 33.915273199224146 8.4305540916706, 33.9707541992758 8.437564091677132, 34.002218199305105 8.46028209169829, 34.070827199369006 8.523336091757017, 34.10554519940135 8.557782091789093, 34.12166319941636 8.5795820918094, 34.12280019941741 8.58464509181411, 34.12360019941815 8.634164091860228, 34.1300001994241 8.80582709202011, 34.134991199428754 8.955273092159288, 34.1005541993967 9.385273092559757, 34.09777319939411 9.419718092591836, 34.0949911993915 9.453891092623664, 34.09416319939075 9.454718092624432, 34.085827199382976 9.55305409271601, 34.140000199433416 9.758054092906931, 34.207218199496026 9.905000093043782, 34.21971819950767 9.973609093107683, 34.23055419951777 10.027636093157994, 34.32305419960392 10.117218093241434, 34.34832719962745 10.238473093354358, 34.341945199621506 10.280836093393816, 34.32804519960857 10.35000009345822, 34.286109199569495 10.554164093648367, 34.31471819959614 10.586391093678387, 34.3527731996316 10.631664093720545, 34.43971819971256 10.784445093862828, 34.594445199856665 10.887782093959075, 34.67388219993063 10.834718093909657, 34.71082719996505 10.80221809387939, 34.76986320002004 10.749445093830232, 34.80055420004862 10.72332709380592, 34.86061820010457 10.732009093814, 34.97527320021135 10.864445093937334, 34.978609200214436 10.91527309398468, 34.93332720017227 10.956664094023225, 34.98360020021909 11.110282094166294, 35.005554200239544 11.174445094226044, 35.00750020024134 11.198327094248299, 34.978882200214684 11.223891094272105, 34.97110920020745 11.231109094278821, 34.964163200201 11.250418094296805, 34.96708220020372 11.274864094319568, 34.98638220022167 11.318336094360063, 35.0044362002385 11.34889109438852, 35.01332720024678 11.367773094406104, 35.08749120031584 11.53582709456262, 35.095200200323035 11.57645409460045, 35.09166320031974 11.59889109462135, 35.078191200307174 11.62347309464424, 35.06680020029657 11.646527094665714, 35.05832720028869 11.730273094743708, 35.063191200293204 11.759582094771005, 35.083609200312225 11.805554094813814, 35.1023542003297 11.834445094840717, 35.11624520034263 11.850836094855993, 35.13443620035957 11.863891094868151, 35.16832720039113 11.878336094881604, 35.20166320042219 11.886391094889106, 35.23138220044984 11.898191094900085, 35.25360920047055 11.917500094918068, 35.26543620048156 11.933609094933075, 35.28388220049874 11.983327094979387, 35.38360920059162 12.16555409514909, 35.64735420083727 12.591527095545814, 35.686245200873486 12.60221809555577, 35.70013620088642 12.62500009557698, 35.7010822008873 12.666118095615275, 35.964718201132825 12.715554095661318, 36.01263620117746 12.720554095665975, 36.037218201200346 12.715000095660798, 36.072291201233014 12.724100095669286, 36.09340020125268 12.70639109565279, 36.11193620126994 12.694027095641275, 36.14254520129845 12.71485409566067, 36.15916320131393 12.881391095815772, 36.13534520129173 12.92541809585677, 36.142082201298024 12.95277309588225, 36.15110920130641 12.97166409589984, 36.16888220132296 12.990000095916912, 36.157354201312245 13.033054095957013, 36.24860020139721 13.368054096269006, 36.348882201490596 13.502773096394478, 36.362218201503026 13.519445096409996, 36.39750020153588 13.56778209645502, 36.40874520154637 13.595136096480502, 36.411382201548804 13.615554096499508, 36.407354201545076 13.635273096517878, 36.40902720154662 13.65750009653857, 36.4210362015578 13.686873096565932, 36.471109201604435 13.804164096675166, 36.48693620161919 13.839445096708019, 36.446391201581434 13.95694509681745, 36.53944520166809 14.246109097086759, 36.542818201671224 14.262054097101611, 36.55846320168581 14.28860909712634, 36.6412452017629 14.316664097152469, 36.736382201851484 14.327218097162302, 36.82500020193402 14.328054097163076, 36.886109201990934 14.320273097155834, 36.94989120205034 14.294373097131711, 36.999791202096816 14.261527097101123, 37.075273202167125 14.287500097125303, 37.090545202181346 14.31236409714846, 37.0908272021816 14.346664097180408, 37.09166320218239 14.3712450972033, 37.10139120219145 14.393054097223612, 37.12471820221316 14.425627097253951, 37.1995822022829 14.452500097278971, 37.28784520236508 14.451873097278394, 37.33693620241081 14.426664097254914, 37.39124520246139 14.356391097189473, 37.43305420250033 14.268054097107196, 37.53075420259131 14.114309096964007, 37.57220920262992 14.102254096952791, 37.684436202734446 14.360000097192824, 37.83833620287777 14.715273097523706, 37.91138220294579 14.883609097680477, 37.9265182029599 14.87097309766871, 37.955827202987194 14.837773097637793, 37.97832720300815 14.801109097603643, 37.98034520301002 14.775973097580234, 38.0183272030454 14.73500009754207, 38.04055420306611 14.721945097529911, 38.14374520316221 14.683327097493958, 38.18891820320428 14.692118097502146, 38.24485420325638 14.687364097497706, 38.26333620327358 14.677636097488659, 38.306936203314194 14.59416409741091, 38.33346320333891 14.521600097343338, 38.44895420344645 14.418745097247538, 38.56139120355118 14.426527097254791, 38.79555420376926 14.469718097295015, 38.89305420386006 14.500827097323992, 38.96555420392758 14.546109097366156, 39.01242720397124 14.58895409740606, 39.024018203982024 14.655164097467718, 39.09402720404722 14.64360909745696, 39.11874520407025 14.629391097443715, 39.13527320408565 14.617773097432902, 39.152218204101416 14.600000097416341, 39.17860920412599 14.564309097383102, 39.18958220413623 14.54430009736447, 39.20971820415497 14.485554097309759, 39.26305420420465 14.473609097298635, 39.375973204309815 14.483891097308216, 39.48262720440914 14.511318097333756, 39.531391204454565 14.565554097384265, 39.61388220453139 14.510327097332834, 39.69513620460705 14.493609097317261, 39.725963204635775 14.495691097319195, 39.74638220465479 14.5027730973258, 39.77992720468603 14.513609097335888, 39.85166320475284 14.4797910973044, 39.886800204785544 14.44374509727082, 39.90374520480134 14.432500097260345, 39.9457912048405 14.43177309725968, 40.01888220490858 14.458891097284933, 40.11686320499982 14.47013609729541, 40.15666320503689 14.464718097290358, 40.17942720505809 14.457954097284059, 40.228054205103376 14.443509097270606, 40.27110920514346 14.424718097253105, 40.30138220517168 14.405836097235522, 40.322773205191595 14.387782097218704, 40.349718205216675 14.35916409719205, 40.38555420525006 14.32527309716049, 40.4336092052948 14.282636097120786, 40.46889120532768 14.261391097100997, 40.5527732054058 14.220273097062702, 40.592500205442775 14.20305409704666, 40.61416320546297 14.195836097039944, 40.64693620549349 14.189027097033602, 40.69360020553694 14.182500097027514, 40.74889120558845 14.17278209701847, 40.77693620561456 14.164718097010962, 40.80270020563856 14.153054097000094, 40.90943620573796 14.052218096906188, 40.92916320575634 14.032218096887561, 41.0080452058298 13.94471809680607, 41.04721820586627 13.900000096764416, 41.0729092058902 13.86652709673325, 41.10040920591581 13.822918096692632, 41.115554205929925 13.796945096668438, 41.13250020594569 13.766109096639724, 41.17832720598838 13.681664096561079, 41.21860920602589 13.612364096496535, 41.23652720604258 13.595418096480756, 41.42805420622096 13.47221809636602, 41.52804520631409 13.41124509630923, 41.54971820633426 13.397782096296694, 41.566936206350306 13.386664096286339, 41.599163206380325 13.36527309626642, 41.615554206395586 13.353609096255553, 41.75694520652726 13.236391096146392, 41.78139120655004 13.211945096123614, 41.798609206566056 13.187773096101111, 41.81652720658275 13.157773096073171, 41.84305420660746 13.105827096024797, 41.843863206608205 13.098536096017995, 41.914718206674195 12.948745095878493, 41.92680020668544 12.92666409585793, 41.954163206710945 12.885273095819386, 41.97430020672968 12.863336095798957, 41.99305420674716 12.850136095786652, 42.017218206769655 12.840554095777733, 42.04819120679849 12.830273095768163, 42.076945206825286 12.819718095758333, 42.09777320684469 12.811945095751085, 42.11902720686447 12.801245095741123, 42.15305420689617 12.778473095719917, 42.19430020693457 12.746109095689775, 42.21444520695334 12.725827095670894, 42.26277320699836 12.650554095600782, 42.29221820702577 12.59819109555201, 42.30651820703909 12.574718095530159, 42.32610920705733 12.549445095506613, 42.34471820707466 12.526664095485401, 42.35805420708709 12.511664095471431, 42.399718207125886 12.46971809543237, 42.366100207094576 12.430273095395634, 42.33943620706975 12.396945095364586, 42.325554207056825 12.359164095329405, 42.308327207040776 12.308336095282073, 42.29221820702577 12.29389109526862, 42.25555420699163 12.263336095240163, 42.16888220691092 12.137218095122705, 42.1272182068721 12.090273095078985, 42.0586092068082 11.975827094972402, 42.02508220677697 11.926364094926328, 41.948609206705754 11.816664094824162, 41.891391206652486 11.773609094784064, 41.829018206594384 11.74097309475367, 41.79804520656555 11.638336094658086, 41.75985420652998 11.50791809453662, 41.79374520656154 11.380973094418394, 41.81193620657848 11.25791809430379, 41.806663206573575 11.168336094220365, 41.802909206570064 11.098973094155767, 41.80055420656788 11.031109094092557, 41.78971820655778 11.008054094071085, 41.808327206575115 10.985282094049879, 41.83721820660202 10.973054094038488, 41.88194520664368 10.960836094027115, 41.91805420667731 10.95360909402038, 41.940282206698015 10.950000094017014, 41.991945206746124 10.942218094009775, 42.019718206771984 10.944718094012103, 42.08034520682844 10.977427094042568, 42.125545206870555 10.999445094063063, 42.17166320691351 11.000282094063849, 42.30055420703354 11.011391094074199, 42.35889120708788 11.019164094081432, 42.50110920722031 11.063609094122825, 42.60823620732009 11.09157309414887, 42.64040920735005 11.097082094154004, 42.74819120745042 11.077918094136152, 42.75978220746123 11.059100094118634, 42.76930020747008 11.023191094085178, 42.79221820749143 10.997773094061515, 42.81097320750891 10.988336094052727, 42.890973207583414 10.982082094046902, 42.94409120763288 11.002436094065857, 42.9175002076081 10.955273094021933, 42.85500020754989 10.892218093963209, 42.83860920753463 10.873891093946142, 42.764163207465316 10.780418093859083, 42.66479120737276 10.632918093721713, 42.68110920738795 10.582773093675016, 42.70944520741435 10.536109093631552, 42.72221820742624 10.517918093614611, 42.74666320744902 10.495691093593905, 42.78610920748574 10.455554093556529, 42.797082207495976 10.42278209352601, 42.80332720750178 10.38055409348668, 42.80610920750436 10.35000009345822, 42.81693620751446 10.313891093424601, 42.85069120754588 10.219445093336631, 42.86416320755845 10.200554093319042, 42.890973207583414 10.17208209329253, 42.922773207613034 10.147782093269896, 42.95325420764141 10.132500093255658, 42.98055420766684 10.117636093241813, 43.01305420769711 10.0811090932078, 43.034718207717276 10.02500009315554, 43.04277320772479 9.993054093125792, 43.05166320773307 9.968191093102632, 43.06304520774367 9.948745093084526, 43.08430020776345 9.924864093062283, 43.11027320778766 9.908891093047416, 43.14784520782263 9.902773093041716, 43.18040920785296 9.902773093041716, 43.204091207875024 9.892291093031957, 43.22485420789437 9.863191093004843, 43.2377732079064 9.79930909294535, 43.24638220791442 9.75082709290021, 43.26055420792761 9.684718092838636, 43.26721820793381 9.664445092819747, 43.275273207941325 9.645554092802158, 43.28333620794882 9.63471809279207, 43.305273207969265 9.628336092786128, 43.32847320799087 9.619582092777975, 43.386663208045064 9.55694509271963, 43.42777320808335 9.48527309265289, 43.425136208080886 9.460836092630132, 43.42582720808153 9.43458209260568, 43.44166320809629 9.417636092589888, 43.555273208202095 9.34847309252548, 43.58305420822796 9.336109092513965, 43.627218208269085 9.354445092531037, 43.72777320836275 9.262782092445676, 44.010554208626104 9.007218092207665, 44.65047320922207 8.795173092010174, 45.00221820954965 8.67860909190162, 45.189991209724525 8.616109091843413, 45.41166320993099 8.541945091774338, 45.616100210121374 8.473327091710445, 46.059163210534024 8.323609091571, 46.33166321078781 8.23221809148589, 46.552773210993735 8.157218091416041, 46.790836211215435 8.076391091340767, 46.99471821140531 8.006109091275306, 47.01193621142136 8.00110909127065, 47.08693621149121 8.001945091271423, 47.607500211976 8.003336091272729, 47.746382212105374 8.003609091272978, 47.85055421220238 8.00305409127246, 47.90250021225074 8.00305409127246, 47.98824521233061 8.004109091273449, 47.98721821232965 8.00110909127065, 47.904045212252186 7.920454091195538, 47.76183621211976 7.786591091070861, 47.6580542120231 7.6888910909798796, 47.55554521192764 7.592218090889844, 46.99139121140223 7.056945090391324, 46.56139121100176 6.61944508998387, 46.11398221058508 6.162027089557867, 45.990273210469866 6.035554089440083, 45.955827210437775 5.999164089406193, 45.716663210215046 5.738609089163532, 45.489400210003396 5.4897640889317785))) +MNG Mongolia POLYGON ((116.67180027629718 46.327236126964635, 116.58553627621683 46.29582712693539, 116.56999127620236 46.252564126895095, 116.35914527600596 46.08374512673788, 116.2360912758914 45.90096412656766, 116.28006327593232 45.808945126481944, 116.18956327584806 45.708745126388635, 116.11220027577599 45.681109126362884, 116.03137227570073 45.68554512636703, 115.80080927548596 45.54554512623665, 115.70192727539387 45.45860012615566, 115.47470027518227 45.414154126114255, 114.93802727468244 45.38276412608502, 114.74304527450084 45.44054512613886, 114.54525427431668 45.389436126091255, 114.5410912743128 45.32277312602915, 114.45400927423168 45.206109125920506, 114.24304527403518 45.07082712579452, 114.07554527387919 44.93915412567188, 113.91692727373146 44.92276412565661, 113.63804527347173 44.74527312549131, 113.55193627339156 44.75249112549804, 113.51110927335355 44.777218125521074, 113.14304527301073 44.79512712553776, 112.85304527274064 44.846100125585224, 112.60748227251196 44.926382125659984, 112.55650027246446 44.99374512572274, 112.42720027234407 45.08055412580359, 112.36470027228586 45.06777312579166, 112.09720927203676 45.075273125798645, 112.05109127199381 45.10054512582221, 111.98081827192834 45.091664125813935, 111.78499127174598 45.000545125729076, 111.5679002715438 44.6770821254278, 111.56860027154443 44.59693612535318, 111.4388632714236 44.439154125206215, 111.42137227140734 44.37527312514672, 111.42941827141482 44.33283612510721, 111.52499127150384 44.24332712502385, 111.55692727153354 44.174709124959946, 111.67664527164504 44.05013612484393, 111.8080272717674 43.996382124793854, 111.87943627183392 43.9388821247403, 111.95971827190868 43.8352641246438, 111.97679127192458 43.76957312458262, 111.95832727190742 43.69221812451059, 111.89721827185048 43.674164124493785, 111.7838632717449 43.67249112449221, 111.63860027160962 43.54332712437193, 111.0769272710865 43.35916412420042, 110.98970027100529 43.31693612416109, 110.68997227072617 43.05360012391583, 110.67360027071089 43.00332712386901, 110.62302727066378 42.93999112381002, 110.47191827052308 42.84610012372258, 110.44053627049385 42.77777312365893, 110.13339127020777 42.67380912356211, 110.10637227018265 42.645764123536, 109.93497227002302 42.64110912353166, 109.74387226984504 42.57582712347087, 109.51400926963095 42.45651812335976, 109.32082726945106 42.447773123351595, 109.31067226944157 42.42999112333504, 109.00000026915222 42.45832712336144, 108.8470722690098 42.3999911233071, 108.52777226871245 42.442218123346436, 108.30664526850649 42.437073123341634, 108.24944526845326 42.46234512336517, 107.907763268135 42.408327123314876, 107.56304526781395 42.41569112332172, 107.47581826773273 42.46624512336882, 107.27720926754779 42.41054512331695, 107.26250026753405 42.35999112326985, 106.98610026727664 42.31081812322407, 106.78193626708651 42.29554512320985, 105.85526326622346 41.98750012292294, 105.22249126563418 41.74680012269877, 105.00650926543301 41.58665412254962, 104.93054526536224 41.65192712261043, 104.68441826513305 41.64582712260474, 104.52373626498337 41.67068212262788, 104.52665426498612 41.87720912282023, 104.06942726456026 41.80429112275232, 103.84942726435537 41.80249112275064, 103.41638226395207 41.88721812282955, 102.71249126329656 42.16137312308487, 102.55026326314544 42.16666412308982, 102.44246326304506 42.15110012307531, 102.07720926270491 42.233327123151895, 101.8147002624604 42.5097181234093, 101.59554526225628 42.53054512342871, 100.84248226155495 42.67707312356515, 100.3127632610616 42.68957312357679, 100.25499126100783 42.64110912353166, 99.98637226075766 42.6536001235433, 99.5101272603141 42.57194512346726, 98.22137225911388 42.645827123536066, 97.16540025813043 42.795827123675764, 96.99860025797506 42.76138212364367, 96.38206325740089 42.734991123619096, 96.35693625737747 42.906936123779246, 95.91720925696796 43.23401812408386, 95.87900925693236 43.28388212413029, 95.86540025691971 43.41082712424853, 95.74637225680885 43.58499112441072, 95.66526325673328 43.738600124553784, 95.62706325669774 43.85902712466594, 95.53339125661046 43.99311812479081, 95.34109125643141 44.01936412481527, 95.35026325643992 44.17777312496278, 95.41998225650485 44.27575412505405, 95.41060925649612 44.294164125071205, 95.02873625614046 44.257082125036646, 94.71734525585049 44.35499112512784, 94.60318225574417 44.451800125218, 94.34304525550186 44.55720912531618, 94.31346325547435 44.590409125347094, 94.11080925528557 44.70999112545846, 93.75555425495475 44.86250012560049, 93.67499125487973 44.91582712565017, 93.55470025476768 44.95721812568871, 93.37025425459592 44.99082712572002, 93.29207225452308 44.98360012571328, 93.17942725441816 45.01639112574381, 92.990263254242 45.009718125737606, 92.8827542541419 45.04582712577124, 92.78810925405372 45.047636125772925, 92.49276325377866 45.00332712573166, 92.31025425360872 45.026382125753116, 92.06749125338263 45.083054125805916, 91.5608822529108 45.07728212580054, 91.47116325282724 45.1524271258705, 91.37915425274156 45.1190181258394, 91.28595425265473 45.13401812585337, 91.19066325256603 45.170964125887764, 91.13790925251686 45.213464125927345, 90.89694525229248 45.25305412596424, 90.77720925218097 45.43638212613496, 90.68387225209403 45.492073126186824, 90.68192725209218 45.57971812626846, 90.71943625212714 45.7355451264136, 90.8741452522712 45.903045126569594, 91.02650925241312 46.017354126676054, 91.02665425241327 46.108045126760516, 90.97526325236538 46.173327126821306, 90.92150925231533 46.29693612693643, 91.06109125244535 46.54277312716536, 91.07026325245386 46.577354127197594, 91.02024525240728 46.600109127218786, 91.04330925242874 46.72484512733493, 90.91360025230796 46.9522181275467, 90.85720925225547 46.98860012758058, 90.76901825217334 46.99749112758886, 90.71138225211962 47.041936127630265, 90.54414525196387 47.24443612781886, 90.49330925191651 47.31707312788649, 90.46581825189094 47.5002731280571, 90.26832725170703 47.69707312824039, 90.14310925159037 47.73220912827313, 90.10026325155047 47.768600128307014, 90.08110025153263 47.83082712836497, 90.09040025154133 47.86298212839492, 90.07096325152321 47.88790912841813, 89.99180025144949 47.89368212842351, 89.96880025142804 47.877936128408834, 89.9626272514223 47.84820912838114, 89.93123625139305 47.83528212836913, 89.78553625125738 47.82926412836352, 89.67026325115 47.91142712844004, 89.60137225108588 47.98257312850629, 89.59276325107783 48.02728212854794, 89.54872725103684 48.0420821285617, 89.38991825088891 48.04673612856604, 89.2248452507352 47.980818128504666, 89.0851362506051 47.9937361285167, 88.93733625046741 48.11416412862886, 88.8613722503967 48.1163821286309, 88.65985425020898 48.17999112869015, 88.5984542501518 48.23026412873696, 88.58304525013745 48.287218128790016, 88.59109125014498 48.34832712884693, 88.51679125007576 48.40581812890048, 88.24178224981966 48.50555412899337, 88.19122724977257 48.50069112898882, 87.99193624958696 48.5654091290491, 87.96748224956417 48.587773129069916, 87.97436324957062 48.610764129091336, 88.08648224967499 48.69655412917123, 88.05941824964981 48.73499112920703, 87.9915822495866 48.76575412923569, 87.9338722495329 48.761800129232, 87.84248224944776 48.7946541292626, 87.76110024937196 48.881036129343045, 87.77484524938478 48.91957312937893, 87.87303624947623 48.95491812941185, 87.89290924949472 48.98304512943807, 87.89888224950028 49.00555412945903, 87.84070024944612 49.17295412961491, 87.88804524949018 49.16249112960517, 87.99228224958728 49.17985412962136, 88.15664524974034 49.26888212970425, 88.17338224975595 49.28721812972134, 88.13352724971884 49.369364129797844, 88.17942724976155 49.43415412985817, 88.22082724980015 49.461664129883815, 88.40776324997421 49.48388212990449, 88.85165425038764 49.44165412986516, 88.90282725043528 49.44999112987293, 88.8774722504117 49.478254129899256, 88.88644525042002 49.5397181299565, 88.92456325045555 49.546591129962906, 88.98740925051408 49.46888212989052, 89.0081912505334 49.46305412988511, 89.18859125070145 49.50958212992842, 89.23644525074599 49.54596412996233, 89.20102725071303 49.60138213001392, 89.22331825073377 49.63693613004705, 89.28553625079172 49.632491130042894, 89.37310925087326 49.58207312999593, 89.40304525090113 49.591654130004855, 89.45693625095134 49.64846413005779, 89.62692725110963 49.684300130091145, 89.72200025119821 49.72241813012664, 89.73546325121072 49.745754130148384, 89.65900925113954 49.78818213018789, 89.63721825111924 49.85832713025323, 89.64270025112432 49.904827130296525, 89.67303625115261 49.92470913031505, 89.76277225123619 49.946654130335475, 89.90027225136424 49.948045130336794, 89.98137225143978 49.97110013035825, 90.02110025147675 49.99638213038179, 90.02262725147818 50.04610913042811, 90.04860025150236 50.080964130460586, 90.24442725168473 50.12027313049717, 90.37858225180969 50.18581813055823, 90.50971825193182 50.2244361305942, 90.69859125210775 50.21943613058954, 91.00249125239077 50.42249113077864, 91.1597092525372 50.43387313078924, 91.45803625281502 50.507773130858055, 91.6155362529617 50.57777313092325, 91.66887225301139 50.64415413098507, 91.7798542531147 50.69234513102995, 91.90554525323176 50.7147181310508, 92.11192725342397 50.6905451310283, 92.22137225352594 50.70555413104228, 92.29539125359486 50.7549911310883, 92.32277225362037 50.81499113114418, 92.44775425373678 50.81081813114031, 92.66998225394372 50.681382131019745, 92.7624912540299 50.71430013105041, 92.78936325405493 50.78061813111216, 92.81262725407657 50.79458213112517, 92.96776325422104 50.79305413112377, 92.99859125424979 50.74860913108236, 92.97078225422388 50.67088213100999, 93.0265182542758 50.61082713095405, 93.11276325435608 50.59610013094033, 93.4508092546709 50.62207313096451, 93.5780452547894 50.59027313093489, 93.73595425493647 50.57930013092468, 93.98304525516659 50.58526413093023, 94.28373625544663 50.56485413091124, 94.35220025551041 50.414991130771654, 94.35734525551521 50.311382130675156, 94.38693625554276 50.21957313058965, 94.43095425558374 50.18665413055899, 94.50484525565258 50.16700913054072, 94.62900925576821 50.02721813041052, 94.81984525594595 50.059991130441034, 94.98026325609533 50.052073130433655, 95.06449125617377 49.96436413035198, 95.41401825649933 49.95693613034507, 95.52415425660189 49.89533613028769, 95.74755425680996 49.960545130348436, 95.82596325688297 50.023464130407035, 95.91151825696267 50.00999113039447, 95.95651825700457 49.94499113033393, 96.06810925710846 50.00576413039053, 96.10664525714435 50.00193613038698, 96.27470025730088 49.95360913034196, 96.38346325740218 49.893191130285686, 96.48748225749904 49.92624513031649, 96.54372725755144 49.92665413031685, 96.59026325759476 49.86680013026111, 96.61400925761689 49.86360913025814, 96.71790025771367 49.92054513031118, 97.00748225798333 49.889227130281995, 97.14860025811475 49.79693613019606, 97.16902725813378 49.761991130163494, 97.27748225823478 49.73360913013707, 97.34845425830088 49.736518130139785, 97.56540925850294 49.830273130227084, 97.60650925854122 49.87651813027017, 97.71914525864611 49.95166413034016, 97.78984525871198 49.96831813035567, 97.89082725880604 49.955554130343785, 98.10179125900248 50.04569113042771, 98.29324525918082 50.3028361306672, 98.32835425921348 50.471173130823985, 98.31831825920415 50.52707313087603, 98.25110025914154 50.56499113091135, 98.16602725906233 50.56971813091576, 98.06553625896873 50.6286001309706, 97.96707225887701 50.773045131105135, 97.96811825887801 50.79943613112971, 98.00943625891648 50.853291131179844, 97.94830925885952 50.905682131228644, 97.86880025878548 50.93776413125852, 97.83055425874988 50.999300131315835, 97.90887225882284 51.11943613142773, 97.95651825886722 51.21831813151982, 97.99775425890562 51.37360013166443, 98.0580822589618 51.462745131747454, 98.11035425901048 51.479518131763086, 98.2356092591271 51.46550013175002, 98.2598452591497 51.52832713180854, 98.24720025913791 51.57847313185525, 98.3124822591987 51.6994361319679, 98.33831825922277 51.719573131986635, 98.63123625949555 51.78249113204524, 98.70803625956711 51.82804513208768, 98.76527225962042 51.884436132140195, 98.87109125971898 52.04401813228881, 98.87970025972697 52.11166413235182, 98.92595425977004 52.14277313238077, 99.02019125985782 52.06527313230859, 99.3449822601603 51.942218132194, 99.57082726037066 51.9005451321552, 99.72859126051759 51.89054513214589, 99.94692726072088 51.751391132016266, 100.25278226100573 51.731654131997885, 100.55748226128952 51.734991132001, 101.03803626173709 51.576100131853025, 101.24470926192959 51.529164131809324, 101.38553626206073 51.4519361317374, 101.53386326219885 51.48610913176921, 101.60109126226149 51.484164131767415, 101.8672002625093 51.419445131707135, 102.0820722627094 51.388882131678656, 102.22359126284124 51.32659113162066, 102.22499126284254 51.30638213160182, 102.15762726277978 51.24770013154719, 102.16825426278967 51.12042713142864, 102.25485426287031 50.98700013130437, 102.26208226287707 50.88860013121274, 102.23220026284923 50.851100131177816, 102.23553626285235 50.82054513114937, 102.33970926294938 50.750691131084295, 102.35519126296379 50.72027313105596, 102.29484526290759 50.64540913098625, 102.31219126292376 50.593609130938006, 102.35359126296231 50.552773130899965, 102.54095426313677 50.50902713085924, 102.62679126321672 50.40915413076621, 102.77970926335917 50.387218130745794, 102.91859126348851 50.315273130678776, 103.00278226356687 50.302773130667134, 103.22360026377254 50.30860013067257, 103.25422726380106 50.2930451306581, 103.28019126382526 50.22200013059191, 103.31665426385922 50.199436130570916, 103.706218264222 50.13752713051326, 103.77151826428286 50.18485413055734, 103.8256822643333 50.2012451305726, 104.03053626452407 50.14924513052415, 104.11775426460531 50.15350013052813, 104.25462726473279 50.188718130560915, 104.29338226476887 50.23820913060703, 104.41817226488507 50.309173130673116, 104.6208002650738 50.317982130681315, 104.70942726515631 50.35911813071962, 104.96666326539588 50.40483613076219, 105.13220026555007 50.398327130756144, 105.28304526569053 50.47304513082574, 105.33553626573945 50.48360913083556, 105.98915426634818 50.41054513076753, 106.0694272664229 50.37526413073465, 106.07429126642745 50.345818130707244, 106.24499126658645 50.30000013066456, 106.54694526686768 50.3461001307075, 106.66303626697578 50.33860013070051, 106.78818226709234 50.3105451306744, 107.00748226729655 50.19915413057063, 107.0808272673649 50.08319113046264, 107.17609126745361 50.02693613041026, 107.25485426752692 50.00319113038813, 107.4627722677206 49.982345130368714, 107.75359126799145 49.97954513036612, 107.81650926805003 49.94888213033755, 107.98442726820639 49.92893613031899, 107.97580926819836 49.788891130188546, 107.94858226817303 49.682209130089205, 108.07192726828788 49.58999113000331, 108.298600268499 49.4933271299133, 108.36372726855967 49.4418001298653, 108.56346326874569 49.334854129765716, 108.95930026911435 49.35651812978588, 109.07500026922207 49.33443612976532, 109.1976272693363 49.359854129789, 109.34484526947341 49.339154129769696, 109.55345426966767 49.23151812966947, 109.8019362698991 49.21915412965794, 110.20803627027732 49.16915412961137, 110.26833627033346 49.17500012961682, 110.35220027041157 49.21360912965278, 110.4819362705324 49.2000001296401, 110.66249127070057 49.14582712958966, 110.78859127081802 49.14943612959303, 110.9555542709735 49.19110012963182, 111.1284542711345 49.28750012972159, 111.32692727131933 49.34249112977281, 111.5063722714865 49.350127129779935, 111.6915092716589 49.40693612983284, 111.96388227191255 49.40693612983284, 112.13137227206857 49.43693612986078, 112.49170027240416 49.54138212995804, 112.71053627260795 49.49888212991846, 112.83138227272048 49.51832712993658, 113.09616327296709 49.60367313001606, 113.09810927296888 49.67020013007803, 113.18677227305147 49.79430013019359, 113.55692727339618 50.00193613038698, 113.7850542736087 50.086800130466, 113.87206327368972 50.08707313046625, 114.01193627381997 50.17416413054738, 114.17637227397313 50.248327130616445, 114.32248227410918 50.28430013064994, 114.44386327422222 50.24527313061358, 114.66595427442905 50.26443613063145, 114.85415427460435 50.22832713059782, 115.03414527477196 50.14513613052034, 115.21330927493881 49.99332713037896, 115.41470027512639 49.89832713029048, 115.57943627527982 49.90720913029875, 115.72998227542001 49.88081813027418, 116.06971827573642 50.00277313038774, 116.21666327587326 50.028327130411554, 116.61685427624599 49.929018130319065, 116.711382276334 49.830464130227284, 116.05900927572645 48.868045129330966, 116.08415427574988 48.815827129282326, 115.81110027549556 48.52054512900733, 115.83581827551859 48.25249112875767, 115.54907227525155 48.14352712865619, 115.59440927529374 47.917491128445675, 115.9231182755999 47.69186412823555, 115.9660822756399 47.69012712823394, 116.1155362757791 47.8219361283567, 116.26236327591585 47.878182128409065, 116.50776327614437 47.84527312837841, 116.87469127648615 47.88804512841827, 117.11343627670846 47.8065821283424, 117.32775427690808 47.66915412821439, 117.38267227695923 47.65741812820346, 117.80455427735211 48.011245128533005, 118.23027227774861 48.02999112855045, 118.53933627803644 47.99475412851763, 118.76729127824876 47.77277312831089, 119.12497227858188 47.66498212821051, 119.1494272786046 47.53388212808841, 119.34081827878288 47.46220912802167, 119.33831827878055 47.419718127982094, 119.72748227914298 47.166518127746286, 119.78904527920031 47.083045127668555, 119.79873627920932 46.9980541275894, 119.87137227927701 46.92180012751837, 119.92249127932462 46.902218127500134, 119.931509279333 46.7151271273259, 119.89803627930183 46.67694512729034, 119.7067912791237 46.59894512721769, 119.65262727907327 46.62304512724015, 119.46277227889647 46.63916412725516, 119.39554527883382 46.61777312723521, 119.30053627874537 46.62096412723821, 119.07060027853123 46.67266412728634, 118.97191827843932 46.74221812735112, 118.86650027834116 46.77200912737888, 118.78755427826763 46.716727127327374, 118.77463627825557 46.68665412729936, 118.45623627795902 46.694291127306485, 118.40957227791557 46.71957312733002, 118.31470927782726 46.73638212734568, 117.93359127747232 46.61943612723678, 117.87608227741873 46.581664127201606, 117.84554527739027 46.53645412715949, 117.71666327727024 46.51388212713846, 117.63275427719213 46.55110012717313, 117.60192727716338 46.6058271272241, 117.4249822769986 46.57069112719137, 117.44386327701619 46.52777312715139, 117.3927632769686 46.45750012708595, 117.37081827694817 46.364436126999294, 117.07860027667601 46.361936126996966, 116.84166327645534 46.39360912702645, 116.75860927637802 46.331109126968244, 116.67180027629718 46.327236126964635)) +SDN Sudan POLYGON ((26.406282192230833 6.635245089998591, 26.11916319196345 6.826109090176345, 26.047773191896965 6.963891090304671, 25.984445191837978 7.018336090355376, 25.85027319171303 7.109445090440218, 25.36986319126561 7.343891090658573, 25.33500019123312 7.420554090729965, 25.20027319110767 7.516391090819226, 25.182636191091234 7.577918090876523, 25.293745191194716 7.645418090939387, 25.28721819118863 7.778891091063699, 25.255827191159398 7.8456910911259, 25.18610919109446 7.901945091178291, 25.084718191000036 7.894864091171698, 24.970273190893465 8.003336091272729, 24.938609190863957 8.08860909135214, 24.870136190800196 8.160973091419535, 24.804445190739017 8.19278209144916, 24.253054190225498 8.278327091528837, 24.184854190161985 8.309864091558197, 24.140273190120467 8.375827091619641, 24.163609190142182 8.473054091710182, 24.268327190239717 8.587500091816764, 24.201109190177107 8.68694509190938, 23.823891189825815 8.727782091947418, 23.739163189746904 8.705273091926458, 23.529654189551763 8.708336091929311, 23.497636189521955 8.77180009198841, 23.582636189601118 8.91221809211919, 23.58166318960022 8.993745092195113, 23.50986318953335 8.958327092162136, 23.448327189476032 9.019582092219181, 23.499645189523818 9.17721809236599, 23.564445189584177 9.187218092375304, 23.649300189663194 9.27597309245796, 23.664718189677558 9.434718092605806, 23.64200918965642 9.443127092613636, 23.626036189641525 9.5428450927065, 23.693891189704743 9.668054092823112, 23.66916318968171 9.86694509300834, 23.30944518934669 10.451664093552907, 23.009445189067293 10.698609093782892, 22.866500188934168 10.922445093991357, 22.974091189034368 11.209791094258975, 22.971391189031863 11.280273094324613, 22.93319118899626 11.408745094444257, 22.790273188863182 11.429445094463532, 22.648327188730974 11.51180909454024, 22.559027188647804 11.629027094649416, 22.611382188696552 11.99277309498818, 22.503327188595932 12.16583609514936, 22.439027188536045 12.347218095318283, 22.407636188506814 12.48513609544672, 22.464300188559577 12.61486409556754, 22.223327188335162 12.747218095690812, 22.14527318826248 12.657364095607122, 21.9527731880832 12.643891095594583, 21.90694518804051 12.669445095618372, 21.82910018796801 12.797200095737352, 21.942082188073243 13.051245095973954, 22.025000188150443 13.140273096056873, 22.15305418826972 13.186527096099951, 22.285000188392587 13.340554096243395, 22.29465418840158 13.37270909627334, 22.08444518820582 13.779164096651883, 22.234300188345372 13.965554096825471, 22.556182188645153 14.129791096978437, 22.553745188642893 14.229027097070855, 22.511663188603706 14.240273097081328, 22.449445188545752 14.330000097164884, 22.446109188542636 14.47374509729876, 22.384718188485465 14.525100097346595, 22.38652718848715 14.562636097381557, 22.47000018856488 14.629445097443764, 22.699927188779043 14.704100097513304, 22.66916318875039 14.853745097652663, 22.84569118891477 15.074864097858594, 22.929373188992713 15.114027097895075, 22.978745189038705 15.207918097982514, 22.9972181890559 15.335836098101652, 22.982709189042396 15.414236098174669, 22.92305418898684 15.487218098242636, 22.93721818900002 15.561945098312222, 23.118154189168536 15.710291098450384, 23.356945189390927 15.681664098423724, 23.663327189676266 15.757500098494347, 23.997563189987545 15.702845098443447, 24.005827189995244 19.99881810244439, 25.00082719092191 19.99911810244467, 25.001418190922465 21.999691104307843, 31.27430019676453 21.998745104306963, 31.39541819687733 22.211382104505006, 31.448327196926613 22.232218104524406, 31.513818196987614 22.15985410445701, 31.46027319693775 21.998191104306457, 36.88846320199315 22.000109104308237, 36.8541632019612 21.971664104281743, 36.911382202014465 21.60860910394362, 37.069163202161434 21.330827103684925, 37.30659120238255 21.063264103435728, 37.305691202381695 21.01729110339292, 37.2475002023275 21.00166410337836, 37.199373202282686 21.094164103464507, 37.26420920234307 21.053009103426177, 37.23027320231148 21.129164103497104, 37.1031912021931 21.20791810357045, 37.17139120225664 20.69958210309703, 37.22819120230952 20.556391102963673, 37.226936202308366 20.466391102879854, 37.200827202284046 20.458054102872083, 37.18471820226904 20.401945102819823, 37.177354202262194 20.220554102650894, 37.185827202270076 20.013473102458036, 37.265273202344076 19.762773102224557, 37.24159120232201 19.564582102039978, 37.29027320236736 19.47500010195654, 37.33639120241031 19.15194510165567, 37.43569120250277 18.853891101378096, 37.51639120257795 18.72444510125753, 37.76805420281232 18.69527310123037, 37.76193620280662 18.664718101201913, 37.82889120286899 18.600827101142414, 38.00471820303272 18.489164101038412, 38.118327203138534 18.282218100845682, 38.54624520353707 18.1072181006827, 38.6075002035941 18.010827100592934, 38.45860920345544 17.871109100462803, 38.36916320337215 17.664445100270328, 38.25750020326814 17.532773100147708, 38.135554203154584 17.49888210011615, 38.05874520308305 17.55250010016607, 37.895554202931066 17.441391100062603, 37.51207320257393 17.321182099950647, 37.52057320258183 17.195800099833875, 37.42329120249124 17.03420909968338, 37.147773202234646 17.017009099667362, 37.02610920212132 17.07721809972344, 36.993809202091256 17.064891099711957, 37.013054202109174 17.022427099672413, 37.00895420210534 16.786318099452515, 36.97263620207153 16.70000009937212, 36.91402720201694 16.64444509932038, 36.89666320200078 16.51471809919957, 36.95283620205308 16.433609099124027, 36.966873202066154 16.25992709896228, 36.924718202026895 16.22708209893169, 36.76360920187685 15.808054098541433, 36.69624520181412 15.748609098486071, 36.542773201671196 15.234718098007477, 36.44328220157854 15.149954097928529, 36.542818201671224 14.262054097101611, 36.446391201581434 13.95694509681745, 36.48693620161919 13.839445096708019, 36.40902720154662 13.65750009653857, 36.39750020153588 13.56778209645502, 36.24860020139721 13.368054096269006, 36.157354201312245 13.033054095957013, 36.16888220132296 12.990000095916912, 36.13534520129173 12.92541809585677, 36.15916320131393 12.881391095815772, 36.14254520129845 12.71485409566067, 36.11193620126994 12.694027095641275, 36.072291201233014 12.724100095669286, 35.964718201132825 12.715554095661318, 35.7010822008873 12.666118095615275, 35.70013620088642 12.62500009557698, 35.64735420083727 12.591527095545814, 35.26543620048156 11.933609094933075, 35.13443620035957 11.863891094868151, 35.083609200312225 11.805554094813814, 35.05832720028869 11.730273094743708, 35.08749120031584 11.53582709456262, 34.964163200201 11.250418094296805, 35.00750020024134 11.198327094248299, 34.93332720017227 10.956664094023225, 34.978609200214436 10.91527309398468, 34.97527320021135 10.864445093937334, 34.86061820010457 10.732009093814, 34.80055420004862 10.72332709380592, 34.594445199856665 10.887782093959075, 34.43971819971256 10.784445093862828, 34.286109199569495 10.554164093648367, 34.34832719962745 10.238473093354358, 34.32305419960392 10.117218093241434, 34.23055419951777 10.027636093157994, 34.085827199382976 9.55305409271601, 34.134991199428754 8.955273092159288, 34.12166319941636 8.5795820918094, 33.9707541992758 8.437564091677132, 33.852491199165655 8.425836091666213, 33.77132719909008 8.367745091612107, 33.71527319903788 8.375064091618924, 33.63437319896252 8.467154091704685, 33.380827198726394 8.43791809167746, 33.263536198617146 8.461527091699452, 33.17124519853121 8.399791091641958, 33.18591819854487 8.140291091400272, 33.12138219848475 8.100973091363656, 32.991800198364075 7.9260450912007485, 33.05221819842035 7.790691091074677, 33.46444519880427 7.744027091031228, 33.71249119903527 7.658473090951546, 34.027709199328854 7.378673090690967, 34.02708219932828 7.248127090569383, 34.16332719945515 7.171664090498169, 34.235691199522535 7.019718090356662, 34.299573199582056 6.964327090305076, 34.47180019974243 6.9143090902584845, 34.52881819979555 6.747218090102876, 34.63208219989173 6.7290270900859355, 34.70471819995936 6.677782090038207, 34.75699120000806 6.613782089978599, 34.850000200094655 6.366664089748454, 34.870554200113816 6.237500089628156, 34.98138220021701 6.0611090894638835, 34.98638220022167 5.8780540892934, 35.10540920033253 5.688336089116717, 35.1038822003311 5.632500089064706, 35.28999120050443 5.507782088948559, 35.270418200486205 5.4383360888838865, 35.30305420051661 5.377364088827093, 35.35284520056297 5.35069108880225, 35.44370920064759 5.425518088871939, 35.50471820070442 5.431391088877419, 35.82166320099961 5.32860908878169, 35.79624520097593 5.235136088694631, 35.830691201007994 5.168400088632481, 35.77999120096078 5.082636088552604, 35.77443620095562 4.798609088288089, 35.94055420111033 4.62250008812407, 34.38819119966456 4.609682088112137, 33.511236198847854 3.752700087314011, 33.18388219854296 3.766109087326498, 33.01666319838725 3.888609087440585, 32.898045198276776 3.811945087369182, 32.719445198110435 3.7558360873169363, 32.40444519781707 3.7436090873055434, 32.199773197626456 3.6097270871808576, 32.19452719762157 3.512754087090542, 32.09040919752459 3.536109087112294, 32.06849119750419 3.5822180871552405, 31.951109197394857 3.5938910871661136, 31.932082197377156 3.689164087254838, 31.82166319727432 3.806945087364525, 31.789445197244305 3.808745087366205, 31.70402719716475 3.714445087278378, 31.540836197012766 3.6536090872217244, 31.28666319677606 3.795000087353401, 31.176663196673616 3.7952820873536695, 30.97916319648968 3.6944450872597514, 30.858818196377598 3.49339108707251, 30.78639119631015 3.6600000872276723, 30.562009196101172 3.613264087184149, 30.58166319611948 3.700136087265051, 30.551036196090934 3.863818087417499, 30.207773195771267 3.9616640875086233, 30.148054195715645 4.099582087637074, 30.0618001956353 4.1313910876666995, 29.959445195539985 4.291391087815711, 29.79916319539072 4.375345087893891, 29.813536195404083 4.5590270880649655, 29.614718195218927 4.656109088155375, 29.494236195106737 4.683536088180915, 29.46777319508209 4.663891088162629, 29.432782195049498 4.525554088033786, 29.325000194949098 4.390000087907538, 29.2436091948733 4.346109087866665, 29.210273194842273 4.34208208786292, 29.01145419465709 4.496982088007172, 28.827427194485722 4.482709087993882, 28.782500194443855 4.557364088063409, 28.712500194378663 4.537500088044908, 28.652500194322783 4.425418087940528, 28.363054194053234 4.290000087814406, 28.201109193902397 4.347845087868279, 28.02805419374124 4.502218088012057, 27.789445193519015 4.600136088103241, 27.768891193499883 4.787773088278001, 27.660209193398657 4.896182088378964, 27.52443619327221 4.9436090884231305, 27.455273193207802 5.01639108849092, 27.459718193211927 5.07160008854234, 27.400827193157085 5.150345088615666, 27.297782193061124 5.23097308869076, 27.236318193003882 5.426454088872816, 27.278891193043535 5.5838910890194455, 27.201945192971863 5.708609089135592, 27.142773192916763 5.771945089194574, 26.981663192766717 5.859445089276065, 26.852982192646863 5.891391089305827, 26.81290919260954 5.977636089386138, 26.442291192264378 6.077427089479087, 26.463536192284153 6.1309730895289505, 26.518745192335587 6.169445089564775, 26.52541819234179 6.216245089608364, 26.454854192276088 6.297782089684304, 26.304373192135927 6.390000089770183, 26.298054192130053 6.465554089840552, 26.406282192230833 6.635245089998591)) +UGA Uganda MULTIPOLYGON (((32.89035419826959 -0.9997089171120166, 32.742418198131816 -0.9997179171120223, 32.684163198077584 -0.9999999171122909, 32.61555419801368 -1.0002819171125452, 32.485273197892354 -1.0002819171125452, 31.67721819713978 -0.9997179171120223, 31.54694519701846 -0.9994459171117711, 31.29305419678201 -0.9988909171112539, 31.27250019676285 -0.9983359171107367, 31.060000196564943 -0.9974999171099626, 30.888609196405326 -0.997217917109694, 30.756382196282175 -0.9977549171101998, 30.696945196226835 -1.0145819171258665, 30.593327196130332 -1.065554917173344, 30.48221819602685 -1.0633359171712726, 30.476754196021773 -1.0593269171675388, 30.45194519599866 -1.0544459171629939, 30.3608271959138 -1.0609729171690674, 30.315354195871436 -1.1437639172461758, 30.297773195855086 -1.184717917284317, 30.283473195841765 -1.209654917307546, 30.229163195791187 -1.2666639173606313, 30.171663195737636 -1.3149999174056575, 30.10916319567943 -1.367499917454552, 29.97971819555886 -1.462217917542759, 29.936663195518776 -1.4758359175554432, 29.929718195512294 -1.4761089175556918, 29.91000019549392 -1.4650729175454131, 29.89055419547583 -1.4327819175153422, 29.8845091954702 -1.4018089174865054, 29.88416319546988 -1.3704179174572602, 29.855273195442976 -1.3269459174167793, 29.835282195424355 -1.3197179174100455, 29.717218195314388 -1.3474999174359255, 29.697773195296293 -1.367499917454552, 29.67750019527739 -1.3816639174677334, 29.640827195243247 -1.38666391747239, 29.6173631952214 -1.3870819174727842, 29.59694519520238 -1.3858359174716242, 29.606109195210905 -1.320690917410957, 29.599027195204314 -1.214372917311934, 29.57430019518128 -1.1874999172869138, 29.57513619518207 -0.9163909170344198, 29.58444519519074 -0.8956909170151448, 29.61889119522283 -0.8915999170113338, 29.633054195236014 -0.7877819169146392, 29.61930019522319 -0.7434729168733725, 29.634718195237554 -0.6413909167783061, 29.66666319526732 -0.5805549167216526, 29.652773195254383 -0.4766639166248865, 29.648609195250486 -0.4397179165904816, 29.670827195271187 -0.3047179164647531, 29.687763195286948 -0.2027819163698155, 29.709000195306743 -0.0744459162502977, 29.733327195329394 -0.0031639161839081, 29.718191195315285 0.0428450838589356, 29.71860919531568 0.0770820838908293, 29.73194519532811 0.1047180839165662, 29.78048219537331 0.1734730839805962, 29.806945195397958 0.1627820839706402, 29.839445195428226 0.2775000840774737, 29.85832719544581 0.3666640841605187, 29.91244519549622 0.4290450842186146, 29.95986319554038 0.4837450842695574, 29.955827195536614 0.5516640843328133, 29.93874519552071 0.6245820844007284, 29.947500195528846 0.7877820845527168, 29.95750019553816 0.8183360845811762, 29.967109195547124 0.8359090845975317, 29.98672719556538 0.8467090846075962, 29.990836195569216 0.8505540846111757, 30.015827195592493 0.8666640846261799, 30.036109195611374 0.8747180846336846, 30.086391195658223 0.8933360846510254, 30.13118219569992 0.8952090846527625, 30.15555419572263 0.9091000846656954, 30.217363195780194 0.9944450847451805, 30.21930919578199 1.0436090847909725, 30.213745195776823 1.0650000848108903, 30.234373195796024 1.1308360848722145, 30.27458219583349 1.1670820849059709, 30.370827195923113 1.1983360849350788, 30.437636195985334 1.202154084938627, 30.45610919600253 1.212782084948529, 30.483891196028424 1.2412450849750343, 30.548882196088925 1.3216640850499317, 30.671391196203047 1.4733360851911925, 30.69548219622547 1.5000000852160156, 30.84832719636782 1.6188910853267515, 31.03666319654323 1.7655540854633358, 31.209718196704387 1.9875000856700353, 31.302773196791065 2.121391085794741, 31.299200196787723 2.162854085833345, 31.202500196697656 2.229164085895107, 31.0691631965735 2.3252820859846253, 31.003054196511926 2.3969450860513604, 30.984863196494985 2.4093090860628763, 30.96402719647557 2.41194508606533, 30.93971819645293 2.4002820860544745, 30.926936196441034 2.3608360860177413, 30.914718196429646 2.342500086000655, 30.886245196403138 2.3368090859953554, 30.729718196257352 2.4480540860989635, 30.73097319625853 2.473336086122515, 30.755973196281815 2.6011090862415074, 30.786945196310654 2.6747180863100652, 30.817218196338843 2.7391640863700815, 30.851663196370936 2.785482086413225, 30.87652719639408 2.840000086463988, 30.8794451963968 2.8859000865067372, 30.85235419637158 2.9628450865783975, 30.806245196328632 3.013609086625678, 30.77236319629708 3.0287450866397734, 30.7634731962888 3.051736086661194, 30.782218196306246 3.1300000867340714, 30.828054196348944 3.2402820868367854, 30.859718196378424 3.2902820868833516, 30.88277319639991 3.324718086915425, 30.934445196448024 3.4138910869984755, 30.92479119643903 3.5107640870886883, 30.905973196421513 3.5247180871016894, 30.858818196377598 3.49339108707251, 30.86853619638663 3.522573087099687, 30.891391196407938 3.5655540871397164, 30.9547181964669 3.6711090872380225, 30.97916319648968 3.6944450872597514, 31.176663196673616 3.7952820873536695, 31.203891196698976 3.795836087354189, 31.28666319677606 3.795000087353401, 31.377218196860383 3.7455540873073545, 31.459718196937217 3.6988910872639025, 31.540836197012766 3.6536090872217244, 31.70402719716475 3.714445087278378, 31.748609197206264 3.76139108732211, 31.789445197244305 3.808745087366205, 31.82166319727432 3.806945087364525, 31.85347319730394 3.7847180873438333, 31.932082197377156 3.689164087254838, 31.946391197390483 3.6216640871919736, 31.951109197394857 3.5938910871661136, 32.02583619746446 3.5913910871637853, 32.06849119750419 3.5822180871552405, 32.0770821975122 3.559027087133643, 32.09040919752459 3.536109087112294, 32.11124519754401 3.526664087103498, 32.1358271975669 3.521109087098324, 32.19452719762157 3.512754087090542, 32.20082719762743 3.575036087148547, 32.199773197626456 3.6097270871808576, 32.40444519781707 3.7436090873055434, 32.47916319788666 3.745836087307623, 32.63527319803205 3.7519450873133025, 32.669163198063615 3.753336087314608, 32.719445198110435 3.7558360873169363, 32.80028219818573 3.780554087339951, 32.87471819825504 3.8038910873616913, 32.898045198276776 3.811945087369182, 32.93832719831428 3.8372180873927277, 32.97860919835179 3.8633360874170535, 33.01666319838725 3.888609087440585, 33.1272181984902 3.8083360873658307, 33.18388219854296 3.766109087326498, 33.24500019859988 3.764164087324687, 33.38777319873287 3.758054087318996, 33.511236198847854 3.752700087314011, 33.52360919885936 3.7584730873193877, 33.996663199299945 4.22278208775181, 34.02624519932749 4.208054087738091, 34.049445199349094 4.190554087721793, 34.06304519936177 4.173609087706012, 34.088054199385056 4.097218087634872, 34.12832719942256 3.9518090874994414, 34.18471819947507 3.8400000873953104, 34.222218199509996 3.779164087338657, 34.361109199639344 3.7380540873003696, 34.381663199658504 3.731664087294419, 34.463609199734805 3.664654087232009, 34.465000199736096 3.6144450871852456, 34.45347319972538 3.521109087098324, 34.435482199708616 3.500073087078732, 34.40340019967874 3.484164087063917, 34.403745199679065 3.385282086971827, 34.453891199725774 3.245554086841693, 34.508745199776854 3.14528208674831, 34.5450001998106 3.127500086731743, 34.56166319982614 3.106809086712474, 34.5723541998361 3.0829180866902277, 34.582500199845526 3.00721808661973, 34.593400199855694 2.9367360865540917, 34.66548219992282 2.8609730864835257, 34.68561819994159 2.863891086486248, 34.712218199966344 2.878054086499432, 34.75555420000671 2.8499270864732438, 34.78166320003103 2.7895820864170418, 34.78930020003813 2.7006910863342455, 34.792500200041104 2.6804180863153704, 34.84346320008859 2.5977820862384107, 34.909436200150026 2.5211090861670016, 34.8802002001228 2.403400086057374, 34.881100200123626 2.3783360860340395, 34.88777320012986 2.3572180860143703, 34.91916320015909 2.2777820859403874, 34.941936200180294 2.2238910858902017, 34.99443620022919 2.0850000857608393, 35.00971820024341 1.8952820855841566, 34.9997182002341 1.670282085374609, 34.95916320019634 1.587218085297252, 34.943463200181725 1.5688910852801854, 34.91819120015816 1.5629180852746174, 34.90040920014161 1.5530540852654298, 34.88527320012753 1.5308360852447436, 34.87430020011729 1.5061090852217092, 34.86388220010758 1.4594450851782454, 34.853191200097626 1.4280540851490144, 34.79568220004407 1.398554085121546, 34.79221820004085 1.3936090851169354, 34.803745200051594 1.3350000850623474, 34.82208220006868 1.3156910850443637, 34.828882200074986 1.2950000850250944, 34.829718200075774 1.2691640850010373, 34.82034520006704 1.2359730849701265, 34.80166320004966 1.2219450849570563, 34.76471820001524 1.2169450849523997, 34.739718199991955 1.2141640849498145, 34.691663199947214 1.208127084944195, 34.59714519985917 1.1504820848905126, 34.57554519983907 1.0926820848366816, 34.52000019978732 1.1058360848489315, 34.5043001997727 1.0808360848256484, 34.48777319975733 1.0431910847905783, 34.483118199752994 1.0116640847612217, 34.485554199755256 0.9840270847354873, 34.480136199750206 0.9591640847123273, 34.44221819971489 0.8719450846310934, 34.410827199685656 0.8219450845845273, 34.26916319955373 0.6484730844229745, 34.248600199534565 0.6394450844145609, 34.21346319950186 0.6329180844084874, 34.1636001994554 0.6084730843857216, 34.106382199402105 0.3877820841801878, 34.05360019935296 0.3016640840999827, 33.98180919928609 0.2050730840100243, 33.90721819921663 0.103054083915012, 33.91250019922154 0.0825000838958658, 33.92304519923138 0.0486090838643065, 33.936836199244226 0.0000000838190317, 33.950482199256925 -0.0481359162257888, 33.96638219927172 -0.1008359162748746, 33.97610019928078 -0.1341639163059085, 33.951663199258036 -0.2718089164341109, 33.918609199227234 -0.4527819166026461, 33.92333619923164 -0.9530549170685703, 33.921100199229556 -1.0019459171140994, 33.9202731992288 -1.0011089171133136, 33.4608271988009 -1.0002819171125452, 33.43887319878044 -1.0007179171129508, 33.40582719874968 -1.0002819171125452, 33.29610019864748 -0.9999999171122909, 33.18639119854532 -0.9997179171120223, 33.11083619847494 -1.0002819171125452, 33.001109198372745 -0.9999999171122909, 32.89035419826959 -0.9997089171120166))) +ISR Gaza Strip MULTIPOLYGON (((34.49054519975991 31.5961001132452, 34.55889119982356 31.540000113192946, 34.53999119980594 31.51471811316941, 34.513327199781116 31.4986091131544, 34.478609199748774 31.47110911312879, 34.388882199665204 31.39471811305765, 34.3645821996426 31.354300113020003, 34.3712451996488 31.30000011296943, 34.33416319961427 31.25971811293192, 34.26758219955224 31.21654511289171, 34.23916319952579 31.294718112964517, 34.216663199504836 31.323327112991166, 34.24805419953407 31.34971811301574, 34.27610919956018 31.37388211303825, 34.4011091996766 31.489164113145605, 34.455827199727565 31.549718113202005, 34.482636199752534 31.583054113233047, 34.49054519975991 31.5961001132452))) +IRQ Iraq MULTIPOLYGON (((39.1967452041429 32.15494511376566, 39.30110920424008 32.236382113841515, 39.26000020420179 32.35554511395249, 39.04365420400032 32.30405411390453, 38.98601820394663 32.477664114066215, 39.086009204039755 32.50150911408842, 38.79470020376846 33.37759111490435, 38.81027320378297 33.38221811490865, 38.96139120392371 33.45555411497695, 39.38610920431924 33.65888211516632, 39.57913620449901 33.75000011525118, 39.7980452047029 33.85333611534742, 40.000000204890966 33.947654115435256, 40.16554520504516 34.02443611550676, 40.19943620507672 34.040827115522035, 40.663600205509 34.260273115726406, 41.0038732058259 34.41943611587463, 41.03053620585075 34.473609115925086, 41.09943620591491 34.60860011605081, 41.224845206031716 34.78290911621315, 41.22305420603004 34.916936116337965, 41.21471820602227 35.06915411647974, 41.21249120602019 35.112782116520364, 41.21124520601904 35.188600116590976, 41.21240920602011 35.20061811660217, 41.2152732060228 35.22470911662461, 41.2224912060295 35.25360911665152, 41.24096320604673 35.3065181167008, 41.25443620605927 35.34331811673506, 41.26221820606651 35.367773116757846, 41.26916320607299 35.398745116786685, 41.27081820607452 35.443327116828215, 41.27249120607607 35.46831811685148, 41.27777320608101 35.49554511687684, 41.322491206122635 35.550564116928086, 41.384018206179945 35.63096411700296, 41.378327206174646 35.83693611719478, 41.35693620615473 35.87638211723153, 41.27110020607478 36.02777311737252, 41.25499120605977 36.05499111739786, 41.29027320609265 36.355554117677784, 41.36720920616429 36.47277311778696, 41.403045206197675 36.52555411783611, 41.83527320660022 36.59888211790441, 42.36729120709569 37.055891118330024, 42.37410020710203 37.0631641183368, 42.37832720710597 37.07206411834508, 42.355609207084825 37.106927118377556, 42.37693620710468 37.11749111838739, 42.53166320724878 37.14749111841533, 42.57950920729334 37.153673118421096, 42.58804520730129 37.175682118441586, 42.72470920742856 37.351945118605755, 42.76572720746677 37.3712181186237, 42.78680020748638 37.3836731186353, 42.82283620751994 37.36718211861994, 42.89443620758664 37.33553611859047, 42.92416320761433 37.32776411858323, 42.96061820764828 37.32352711857928, 43.00276320768751 37.33915411859384, 43.15693620783111 37.373882118626184, 43.48999120814128 37.25124511851196, 43.62304520826521 37.230000118492185, 43.81637320844524 37.22192711848466, 43.912982208535226 37.226591118489, 43.93693620855754 37.2519361185126, 43.955818208575124 37.279636118538406, 44.00901820862467 37.31776411857392, 44.04804520866102 37.322218118578064, 44.07294520868422 37.31637311857261, 44.096100208705764 37.31721811857341, 44.118882208727 37.31568211857197, 44.230554208830995 37.27624511853524, 44.2621452088604 37.23651811849825, 44.26832720886617 37.19500011845959, 44.262600208860846 37.16346411843021, 44.230263208830706 37.15401811842142, 44.19596320879879 37.09638211836774, 44.2570732088557 36.985691118264654, 44.31916320891352 36.971236118251184, 44.34110020893394 37.006654118284175, 44.34970920894196 37.038318118313654, 44.436382209022696 37.06304511833669, 44.470273209054255 37.080827118353255, 44.49055420907314 37.09165411836334, 44.55054520912901 37.13263611840151, 44.567627209144916 37.149709118417405, 44.582763209159 37.163182118429944, 44.64221820921438 37.188464118453496, 44.745827209310875 37.17442711844042, 44.7740912093372 37.16596411843254, 44.78733620934955 37.149709118417405, 44.76617320932982 37.11228211838255, 44.78499120934734 37.084718118356875, 44.81749120937761 37.05581811832995, 44.85651820941396 37.05262711832698, 44.903118209457375 37.03047311830636, 44.909427209463246 36.92053611820397, 44.905536209459626 36.89255411817791, 44.88249120943814 36.87068211815753, 44.84450020940278 36.82192711811213, 44.85304520941074 36.794582118086666, 44.87053620942703 36.78457311807735, 44.897763209452364 36.78234511807527, 44.93922720949098 36.78207311807502, 45.025554209571396 36.736382118032466, 45.065409209608504 36.683045117982786, 45.06276320960603 36.63963611794236, 45.03881820958375 36.6142271179187, 45.01582720956233 36.55777311786612, 45.013091209559775 36.54285411785223, 45.05526320959905 36.506109117818, 45.083927209625756 36.45764511777287, 45.08650920962816 36.43520011775196, 45.10694520964719 36.41818211773611, 45.13916320967721 36.40887311772744, 45.165545209701776 36.41137311772977, 45.19388220972817 36.41943611773728, 45.216100209748845 36.428882117746085, 45.243736209774596 36.42831811774555, 45.27916320980759 36.38110011770158, 45.31970920984534 36.238318117568596, 45.34360020986759 36.133882117471344, 45.35443620987769 36.06443611740666, 45.413882209933064 35.99541811734238, 45.47248220998762 36.016800117362294, 45.51054521002308 36.017773117363205, 45.52007321003194 36.01117311735706, 45.624518210129224 35.966282117315245, 45.66331821016536 35.94054511729128, 45.68250021018321 35.921936117273944, 45.71888221021712 35.8795731172345, 45.73290921023016 35.85346411721018, 45.73999121023675 35.83221811719039, 45.75712721025272 35.817345117176544, 45.86790921035589 35.81777311717694, 45.88817321037476 35.83198211719018, 46.08936321056214 35.865482117221376, 46.13554521060516 35.84735411720449, 46.1477362106165 35.82403611718277, 46.17290921063994 35.807354117167236, 46.20069121066581 35.80277311716297, 46.25889121072004 35.813045117172535, 46.29096321074991 35.831518117189745, 46.32360921078029 35.83263611719079, 46.345200210800414 35.81419111717361, 46.33416321079014 35.77749111713942, 46.26860021072906 35.72804511709337, 46.22942721069259 35.71220911707863, 46.15124521061978 35.69484511706246, 46.11069121058199 35.69262711706038, 46.0727732105467 35.69665411706414, 46.03416321051074 35.68901811705703, 45.97999121046027 35.58471811695989, 45.99096321047051 35.485200116867205, 46.0511002105265 35.39916411678708, 46.06499121053943 35.383327116772335, 46.1480452106168 35.29746411669237, 46.13304521060283 35.2724911166691, 46.16020021062812 35.234154116633405, 46.1866002106527 35.221718116621815, 46.16600921063352 35.10851811651639, 46.03575421051221 35.059227116470495, 45.992063210471514 35.0752361164854, 45.94981821043217 35.0932731165022, 45.87777321036509 35.032491116445584, 45.88054521036767 34.99888211641429, 45.89235421037867 34.973045116390225, 45.86776321035575 34.90360011632555, 45.84874521033805 34.89693611631934, 45.79773621029054 34.91403611633527, 45.765054210260104 34.84627311627216, 45.73832721023521 34.83097311625791, 45.71262721021128 34.82958211625662, 45.69110021019122 34.81651811624445, 45.651654210154504 34.73520011616871, 45.659645210161926 34.71533611615021, 45.68401821018463 34.69930011613528, 45.70832721020727 34.659154116097895, 45.72957321022707 34.58561811602941, 45.71467321021319 34.55760911600332, 45.64846321015153 34.57347311601809, 45.56292721007185 34.58610911602986, 45.438636209956115 34.457836115910396, 45.460545209976516 34.37846411583648, 45.49235421000614 34.33512711579611, 45.51985421003175 34.347354115807505, 45.5494362100593 34.34554511580582, 45.573327210081544 34.32402711578578, 45.584163210091646 34.30127311576459, 45.5665182100752 34.151309115624926, 45.547254210057275 34.134191115608985, 45.46720920998271 34.0770821155558, 45.403609209923474 33.97520011546091, 45.423736209942234 33.951100115438464, 45.4468002099637 33.94249111543044, 45.472600209987746 33.94053611542863, 45.50013621001338 33.94589111543361, 45.550273210060084 33.88860011538026, 45.64105421014463 33.76739111526737, 45.64738221015051 33.735064115237265, 45.69672721019646 33.66943611517614, 45.75232721024824 33.63728211514619, 45.75169121024766 33.595027115106845, 45.78609121027969 33.600491115111936, 45.815063210306676 33.62241811513236, 45.898882210384755 33.63304511514225, 45.94478221042749 33.55436411506898, 45.89067321037709 33.52161811503848, 45.87422721036177 33.499791115018155, 45.93054521041424 33.4827641150023, 45.951936210434155 33.47970911499945, 46.006473210484955 33.48578211500511, 46.029163210506084 33.4605451149816, 46.04422721052009 33.43735411496, 46.048882210524454 33.40637311493114, 46.04916321052471 33.38360011490994, 46.12693621059714 33.30360011483543, 46.177145210643886 33.264782114799274, 46.19901821066426 33.19346411473286, 46.1883182106543 33.17540911471605, 46.14513621061408 33.13582711467919, 46.11305421058421 33.08305411463003, 46.097018210569274 33.00297311455546, 46.10641821057803 32.97106411452573, 46.151654210620165 32.95263611450858, 46.178327210644994 32.95332711450922, 46.20388221066881 32.95916411451465, 46.245000210707076 32.96527311452034, 46.275409210735404 32.96680011452176, 46.304709210762695 32.96360911451879, 46.373318210826596 32.95138211450741, 46.414991210865395 32.940409114497186, 46.45082721089878 32.92527311448309, 46.49360021093861 32.90249111446187, 46.55752721099816 32.857873114420315, 46.653882211087904 32.798882114365384, 46.695827211126954 32.77888211434676, 46.71776321114737 32.76943611433795, 46.74749121117506 32.753054114322694, 46.84027321126149 32.680273114254916, 46.85721821127726 32.66693611424249, 46.88207321130042 32.643191114220386, 46.9033182113202 32.62304511420162, 46.93360021134839 32.60054511418066, 46.956100211369346 32.58471811416592, 47.05443621146094 32.51582711410177, 47.07193621147724 32.50443611409115, 47.1327732115339 32.4658271140552, 47.15138221155124 32.45846411404834, 47.19887321159544 32.46220911405183, 47.248863211642 32.47350011406235, 47.270963211662604 32.488600114076405, 47.36123621174667 32.47380911406263, 47.43790021181806 32.38555411398043, 47.41608221179774 32.34945411394682, 47.52943621190332 32.19693611380477, 47.60268221197154 32.10059111371504, 47.63319121199993 32.053182113670886, 47.737500212097075 31.936664113562372, 47.78694521214314 31.889164113518135, 47.84916321220109 31.81971811345346, 47.86443621221531 31.7986091134338, 47.83332721218633 31.72777311336783, 47.801100212156314 31.653045113298234, 47.74860021210742 31.5302821131839, 47.71666321207769 31.455554113114303, 47.69720921205956 31.40777311306981, 47.69638221205881 31.304445112973582, 47.69638221205881 31.235427112909292, 47.695827212058276 31.221664112896477, 47.69554521205802 31.194164112870865, 47.694709212057234 31.111382112793777, 47.69388221205648 31.00110911269107, 47.84331821219564 30.999718112689777, 47.923882212270684 30.99943611268951, 48.036663212375714 30.996109112686412, 48.036663212375714 30.94638211264011, 48.034436212373635 30.65693611237053, 48.03305421237235 30.58805411230638, 48.03249121237181 30.491382112216357, 48.06751821240445 30.46379111219065, 48.10754521244172 30.454318112181838, 48.141382212473246 30.439991112168485, 48.16042721249096 30.42708211215647, 48.28943621261112 30.32971811206579, 48.411945212725215 30.199673111944676, 48.41012721272352 30.169991111917028, 48.41110021272442 30.103609111855206, 48.450127212760776 30.005409111763754, 48.47338221278244 29.982900111742794, 48.54555421284965 29.963027111724287, 48.56069121286373 29.939164111702055, 48.5340182128389 29.92458211168848, 48.443045212754186 29.927500111691188, 48.38388221269909 29.939718111702575, 48.34388221266184 29.954164111716025, 48.30639121262692 29.97055411173129, 48.27860021260102 29.98804511174758, 48.25360921257774 30.001391111760014, 48.23332721255886 30.011664111769576, 48.18970921251824 30.029445111786146, 48.15852721248919 30.03783611179395, 48.09388221242901 30.045554111801138, 48.07166321240831 30.044991111800613, 47.959436212303785 30.033054111789497, 47.94347321228892 30.01755411177507, 47.934991212281005 30.01777311177527, 47.72346321208403 30.084164111837097, 47.43666321181692 30.083054111836063, 47.39666321177967 30.082773111835806, 47.35110021173722 30.08166411183477, 47.2043002116005 30.03332711178976, 47.169991211568544 30.01527311177294, 47.14776321154784 29.996527111755483, 47.12887321153025 29.97471811173517, 47.11360021151603 29.946382111708786, 47.09443621149819 29.90708211167218, 47.04776321145471 29.794164111567014, 46.98137321139288 29.646109111429126, 46.94429121135835 29.578473111366137, 46.92401821133947 29.554718111344016, 46.85889121127883 29.475827111270547, 46.82776321124982 29.43360911123122, 46.77555421120121 29.356382111159306, 46.714909211144715 29.26631811107542, 46.690382211121886 29.230345111041913, 46.65383621108785 29.188482111002926, 46.63527321107057 29.178609110993733, 46.59888221103668 29.15610911097278, 46.581654211020634 29.143327110960882, 46.55818221099875 29.121454110940505, 46.547354210988686 29.105200110925367, 46.5469452109883 29.104200110924438, 46.42667321087629 29.06166411088482, 46.12215421059267 29.08607311090755, 44.72166320928838 29.198327111012105, 43.81038220843968 29.86850011163625, 43.06500020774547 30.416664112146762, 42.92470020761482 30.51615411223942, 42.085000206832774 31.11166411279403, 41.44000020623207 31.373327113037732, 40.41332720527592 31.948327113573242, 40.07460920496047 32.00586411362683, 39.48758220441374 32.10555411371966, 39.1967452041429 32.15494511376566))) +ISR Israel MULTIPOLYGON (((35.368136200577226 30.928664112623608, 35.35790920056769 30.921109112616563, 35.33777320054895 30.886945112584755, 35.30000020051375 30.79110911249549, 35.292500200506765 30.75916411246574, 35.255554200472375 30.681945112393834, 35.21971820043899 30.621945112337954, 35.20610920042631 30.59471811231259, 35.158609200382074 30.444164112172373, 35.156091200379734 30.415282112145476, 35.16138220038465 30.31944511205623, 35.16693620038984 30.15166411189996, 35.160209200383576 30.116045111866796, 35.14388220036835 30.09416411184641, 35.11874520034496 30.0700001118239, 35.10367320033092 30.048891111804252, 35.07305420030241 29.953609111715508, 35.07221820030162 29.920827111684986, 35.07277320030215 29.891664111657818, 35.07583620030499 29.86777311163557, 35.007218200241084 29.640827111424215, 34.97462720021073 29.57701811136478, 34.97749120021339 29.57000011135824, 34.979982200215716 29.54575411133567, 34.96582720020254 29.54916411133884, 34.9625632001995 29.55146411134099, 34.938045200176674 29.523327111314785, 34.90380020014479 29.486709111280675, 34.87778220012055 29.532500111323316, 34.866391200109945 29.60666411139239, 34.87389120011693 29.630836111414908, 34.87277320011589 29.65082711143353, 34.847773200092604 29.740836111517353, 34.75360920000489 29.991109111750433, 34.723345199976706 30.089345111841922, 34.614436199875286 30.36500011209864, 34.54527319981088 30.40694511213772, 34.543327199809056 30.43471811216358, 34.55888219982353 30.486109112211437, 34.48943619975887 30.69110911240236, 34.401382199676846 30.859445112559143, 34.287500199570786 31.162773112841634, 34.26758219955224 31.21654511289171, 34.33416319961427 31.25971811293192, 34.3712451996488 31.30000011296943, 34.3645821996426 31.354300113020003, 34.388882199665204 31.39471811305765, 34.478609199748774 31.47110911312879, 34.513327199781116 31.4986091131544, 34.53999119980594 31.51471811316941, 34.55889119982356 31.540000113192946, 34.49054519975991 31.5961001132452, 34.49528219976432 31.60333611325194, 34.51110919977904 31.626391113273414, 34.553891199818906 31.683891113326965, 34.58610919984889 31.726945113367066, 34.67000019992702 31.87500011350494, 34.708327199962724 31.9476361135726, 34.73082719998368 32.00360911362472, 34.7327731999855 32.01444511363482, 34.77888220002842 32.12554511373828, 34.79777320004604 32.178054113787184, 34.80280020005071 32.19236411380051, 34.83416320007993 32.290836113892226, 34.868327200111736 32.40749111400086, 34.87250020011561 32.419718114012255, 34.8955542001371 32.51027311409659, 34.93916320017772 32.71333611428571, 34.94554520018366 32.767082114335764, 34.95319120019076 32.82340011438821, 34.98901820022414 32.834791114398826, 35.01500020024832 32.815418114380776, 35.03416320026619 32.823191114388024, 35.061663200291804 32.849164114412204, 35.07319120030252 32.872773114434196, 35.07767320030669 32.89258211445264, 35.07208220030151 32.954436114510244, 35.07889120030785 32.98693611454051, 35.08805420031638 33.018054114569495, 35.10242720032977 33.075900114623366, 35.10082720032827 33.09360911463986, 35.109445200336296 33.09555411464167, 35.265000200481154 33.09860911464452, 35.321936200534196 33.08805411463469, 35.351936200562136 33.0625001146109, 35.37778220058621 33.062082114610504, 35.4255542006307 33.068327114616324, 35.50527320070495 33.098054114644, 35.505827200705454 33.11499111465977, 35.52569120072394 33.126727114670715, 35.54277320073987 33.196527114735716, 35.585545200779706 33.2702731148044, 35.623636200815184 33.24572711478153, 35.63249120082341 33.24637311478213, 35.659573200848655 33.25416411478939, 35.669618200858 33.25171811478711, 35.68110920086869 33.2445091147804, 35.66901820085744 33.212173114750286, 35.6669362008555 33.20527311474386, 35.65250020084204 33.124991114669086, 35.65002720083976 33.091209114637635, 35.64249120083272 33.05055411459976, 35.63499120082574 33.00000011455269, 35.63374520082459 32.9356911144928, 35.624582200816064 32.905827114464984, 35.614463200806625 32.894909114454805, 35.61860920081048 32.89139111445154, 35.6415912008319 32.856873114419386, 35.63920920082967 32.81531811438069, 35.66284520085168 32.79721811436383, 35.66548220085414 32.761991114331025, 35.65193620084153 32.727491114298886, 35.64666320083663 32.70277311427587, 35.648891200838705 32.68527311425957, 35.631936200822906 32.687218114261384, 35.61578220080787 32.67965411425433, 35.57193620076703 32.64582711422284, 35.54694520074375 32.405000113998554, 35.55256320074898 32.39420011398849, 35.481109200682425 32.41277311400579, 35.42388220062912 32.4856911140737, 35.40819120061451 32.5041641140909, 35.35055420056085 32.523464114108876, 35.31736320052994 32.51693611410279, 35.28902720050354 32.51624511410215, 35.26346320047975 32.521664114107196, 35.20805420042814 32.54639111413023, 35.17944520040149 32.52750011411264, 35.08180020031054 32.471454114060435, 35.066382200296175 32.44721811403787, 35.05666320028715 32.425282114017435, 35.04721820027834 32.394436113988704, 35.045827200277046 32.38332711397837, 35.04777320027887 32.36750011396363, 35.02555420025817 32.23930011384422, 34.97916320021497 32.1530541137639, 34.98583620022117 32.13250011374477, 35.00610020024004 32.0541641136718, 35.00750020024134 32.028054113647485, 35.00086320023516 31.98531811360769, 34.98750020022271 31.96889111359239, 34.966109200202794 31.86138211349227, 34.96555420020229 31.83055411346355, 34.97513620021121 31.823327113456827, 35.014163200247566 31.82027311345398, 35.03582720026773 31.82221811345579, 35.108282200335225 31.8330731134659, 35.153054200376914 31.81305411344725, 35.22761820044636 31.77510011341191, 35.20971820042968 31.750000113388523, 35.16290920038608 31.74486411338374, 35.09750020032516 31.708327113349725, 35.001663200235924 31.64694511329256, 34.98554520022091 31.633327113279876, 34.96136320019838 31.603354113251953, 34.950273200188064 31.586800113236535, 34.94582720018391 31.559164113210798, 34.946382200184416 31.50200911315757, 34.93721820017589 31.48166411313862, 34.91055420015107 31.44388211310344, 34.88819120013022 31.412500113074202, 34.88985420013179 31.380554113044454, 34.90819120014885 31.360554113025827, 34.937563200176214 31.35069111301665, 35.13860920036345 31.361945113027133, 35.22040920043963 31.376800113040957, 35.240554200458405 31.384164113047817, 35.25916320047574 31.403609113065926, 35.378609200586965 31.48416411314095, 35.400673200607514 31.4935541131497, 35.451109200654486 31.49944511315519, 35.47820020067974 31.4973181131532, 35.4786092006801 31.449164113108353, 35.473118200675 31.410345113072196, 35.47100020067302 31.400418113062955, 35.45250020065578 31.3513911130173, 35.41138220061748 31.225273112899842, 35.43278220063743 31.20027311287656, 35.459509200662325 31.156945112836212, 35.462218200664836 31.121109112802827, 35.4549912006581 31.09971811278291, 35.395136200602366 30.946764112640466, 35.368136200577226 30.928664112623608)), ((35.256382200473126 31.808054113442594, 35.26360920047986 31.803609113438455, 35.262500200478826 31.789718113425522, 35.25971820047624 31.787218113423194, 35.25443620047133 31.786391113422425, 35.251663200468755 31.788054113423968, 35.243609200461236 31.803891113438723, 35.24638220046381 31.808054113442594, 35.248891200466176 31.80889111344338, 35.256382200473126 31.808054113442594))) +JOR Jordan MULTIPOLYGON (((35.47820020067974 31.4973181131532, 35.47916320068063 31.52944511318313, 35.482773200683994 31.562218113213646, 35.48971820069045 31.603882113252453, 35.49805420069822 31.641664113287632, 35.526109200724335 31.711664113352825, 35.53867320073604 31.734936113374502, 35.55540020075162 31.763909113401482, 35.54888220074554 31.828327113461484, 35.53554520073314 31.929718113555907, 35.523745200722146 31.998054113619546, 35.516391200715304 32.041109113659644, 35.5586092007546 32.20304511381046, 35.57060920076577 32.21763611382406, 35.56035420075622 32.37782711397324, 35.55256320074898 32.39420011398849, 35.54694520074375 32.405000113998554, 35.57193620076703 32.64582711422284, 35.61578220080787 32.67965411425433, 35.631936200822906 32.687218114261384, 35.648891200838705 32.68527311425957, 35.68999120087696 32.7119361142844, 35.763318200945264 32.74888211431882, 35.793609200973464 32.744164114314415, 35.93124520110166 32.72027311429217, 36.00332720116879 32.66332711423914, 36.02583620118975 32.613609114192826, 36.079991201240176 32.54332711412738, 36.125827201282874 32.52777311411289, 36.165600201319904 32.51822711410399, 36.19749120134961 32.53333611411807, 36.314436201458534 32.45971811404951, 36.34666320148855 32.43305411402467, 36.40027320153848 32.38194511397708, 36.48860920162073 32.375545113971114, 36.516109201646344 32.36305411395948, 36.643054201764585 32.34916411394654, 36.72416320184013 32.3366641139349, 36.837773201945936 32.31360911391343, 36.86639120197259 32.34166411393956, 37.153273202239745 32.50029111408729, 37.493891202556995 32.687218114261384, 37.49566320255863 32.68888211426294, 37.49860020256136 32.68971811426371, 37.62499120267907 32.758327114327614, 37.958882202990026 32.93749111449446, 38.31892720332536 33.12873611467258, 38.53356320352526 33.241100114777225, 38.69749120367791 33.3275001148577, 38.79470020376846 33.37759111490435, 39.086009204039755 32.50150911408842, 38.98601820394663 32.477664114066215, 39.04365420400032 32.30405411390453, 39.26000020420179 32.35554511395249, 39.30110920424008 32.236382113841515, 39.1967452041429 32.15494511376566, 39.07221820402691 32.057782113675174, 39.0050002039643 32.00555411362653, 38.488327203483124 31.87916411350882, 37.98666320301592 31.7540541133923, 37.96388220299468 31.748336113386983, 37.709500202757795 31.684664113327685, 37.47193620253654 31.625000113272108, 37.202200202285326 31.556164113208013, 37.00527320210193 31.50555411316087, 37.29499120237173 31.217227112892346, 37.49000020255335 31.023054112711506, 37.561091202619565 30.95109111264449, 38.00139120302964 30.504164112228253, 37.66750020271866 30.336391112072008, 37.50278220256527 30.002218111760783, 37.41010020247896 29.985582111745288, 37.034436202129086 29.918054111682395, 36.74360920185822 29.864718111632726, 36.500545201631866 29.50277311129564, 36.272727201419684 29.33652711114081, 36.07000020123087 29.188891111003315, 35.541109200738305 29.272500111081172, 35.18721820040872 29.32694511113189, 34.96139120019842 29.36083611116345, 34.960418200197495 29.377427111178903, 34.96694520020358 29.44889111124546, 34.978473200214324 29.477500111272093, 35.00368220023779 29.528191111319316, 34.979982200215716 29.54575411133567, 34.97749120021339 29.57000011135824, 34.97462720021073 29.57701811136478, 35.007218200241084 29.640827111424215, 35.07583620030499 29.86777311163557, 35.07277320030215 29.891664111657818, 35.07221820030162 29.920827111684986, 35.07305420030241 29.953609111715508, 35.10367320033092 30.048891111804252, 35.11874520034496 30.0700001118239, 35.14388220036835 30.09416411184641, 35.160209200383576 30.116045111866796, 35.16693620038984 30.15166411189996, 35.16138220038465 30.31944511205623, 35.156091200379734 30.415282112145476, 35.158609200382074 30.444164112172373, 35.20610920042631 30.59471811231259, 35.21971820043899 30.621945112337954, 35.255554200472375 30.681945112393834, 35.292500200506765 30.75916411246574, 35.30000020051375 30.79110911249549, 35.33777320054895 30.886945112584755, 35.35790920056769 30.921109112616563, 35.368136200577226 30.928664112623608, 35.395136200602366 30.946764112640466, 35.4549912006581 31.09971811278291, 35.462218200664836 31.121109112802827, 35.459509200662325 31.156945112836212, 35.43278220063743 31.20027311287656, 35.41138220061748 31.225273112899842, 35.45250020065578 31.3513911130173, 35.47100020067302 31.400418113062955, 35.473118200675 31.410345113072196, 35.4786092006801 31.449164113108353, 35.47820020067974 31.4973181131532))) +KAZ Kazakhstan POLYGON ((75.79060023822356 42.93569112380601, 75.74915423818499 42.8528731237289, 75.67135423811251 42.80721812368637, 75.24331823771388 42.85523612373109, 74.89332723738792 42.97912712384647, 74.74547223725023 42.99670012386284, 74.5754822370919 43.126418123983655, 74.39166323692072 43.19550912404799, 74.29359123682937 43.216900124067905, 74.0594182366113 43.188009124041, 73.58638223617075 43.04024512390339, 73.5242912361129 42.797045123676895, 73.43414523602897 42.62745412351896, 73.52054523610943 42.40925412331575, 73.34650923594734 42.42932712333442, 73.33568223593724 42.5030451234031, 73.15262723576677 42.56036412345648, 72.8838822355165 42.554127123450655, 72.74874523539063 42.6580091235474, 72.29693623496985 42.77357312365504, 71.89803623459835 42.82747312370523, 71.71651823442929 42.81844512369682, 71.60346323432401 42.76539112364742, 71.42470023415751 42.80413612368349, 71.27527223401836 42.75913612364158, 71.1697722339201 42.68864512357595, 71.16900923391938 42.63150012352273, 71.03553623379509 42.5774731234724, 70.96130023372595 42.39899112330619, 70.87317223364386 42.30913612322249, 70.9708092337348 42.254673123171784, 70.8841452336541 42.20510012312559, 70.75068223352977 42.19884512311978, 70.62820923341573 42.02426412295719, 70.538318233332 42.04059112297239, 70.48483623328221 42.100518123028195, 70.38790023319191 42.06940912299922, 70.13999123296102 41.828318122774704, 69.92838223276397 41.711900122666265, 69.63720923249278 41.67012712262738, 69.3538722322289 41.48443612245444, 69.05962723195486 41.37679112235418, 69.06456323195945 41.22221812221022, 68.78581823169986 41.08568212208306, 68.72171823164015 40.97783612198262, 68.59360023152084 40.919991121928746, 68.56805423149706 40.86138212187416, 68.58915423151672 40.73888212176007, 68.65192723157517 40.67166412169749, 68.64074523156475 40.61422712164398, 68.455263231392 40.59777312162865, 68.04803623101276 40.810273121826555, 68.1541632311116 41.03610912203689, 67.93552723090798 41.183327122174006, 67.0719452301037 41.143300122136736, 66.7199822297759 41.17500012216624, 66.56248222962921 41.71693612267097, 66.52638222959561 42.00305412293744, 66.02916322913254 42.00305412293744, 66.03665422913951 42.423327123328846, 66.0707822291713 42.42386412332934, 66.12387222922072 42.996936123863065, 65.82192722893953 42.877209123751555, 65.51901822865742 43.32110912416496, 65.26832722842394 43.432491124268694, 64.93136322811011 43.737773124553, 64.45803622766931 43.54804512437633, 63.21138222650828 43.63638212445858, 62.02510922540347 43.48479112431741, 61.14916322458768 44.211100124993834, 58.57082722218641 45.570591126259956, 55.99875421979098 45.00205412573047, 56.00096321979305 41.328454122309154, 55.89443621969383 41.33151812231202, 55.65249121946849 41.267209122252126, 55.45478221928437 41.288673122272115, 55.39249121922634 41.38888212236543, 55.28916321913013 41.43970912241278, 54.98069121884285 41.79250012274133, 54.96273621882611 41.90061812284202, 54.761109218638325 42.05888212298942, 54.22581821813981 42.322491123234926, 54.02332721795122 42.35040912326093, 53.446591217414095 42.2679091231841, 53.00624521700399 42.13569112306095, 52.44007321647669 41.74093612269331, 52.17234521622737 41.59915412256126, 51.25018221536854 41.23120912221859, 50.82110021496891 41.617836122578666, 50.71710021487206 41.799827122748155, 50.58727321475115 41.93740912287629, 50.12543621432101 42.31880912323149, 49.76062721398128 42.71075412359653, 49.48280021372253 43.1425911239987, 49.3221542135729 43.30023612414553, 49.03861821330884 43.815418124625324, 49.04745421331708 43.9895541247875, 48.96473621324003 44.28753612506503, 48.75661821304621 44.5876091253445, 48.6861542129806 44.75434512549978, 48.866345213148406 44.988273125717626, 49.44831821369041 45.53038212622252, 50.03850021424006 45.85848212652809, 49.46200021370316 46.109209126761584, 49.325145213575695 46.08694512674086, 49.222527213480134 46.34630912698239, 48.914754213193504 46.487800127114184, 48.840509213124335 46.48211812710889, 48.74290021303344 46.55666412717832, 48.57617321287816 46.56102712718237, 48.49442721280204 46.66720912728127, 48.544573212848746 46.75415412736223, 48.66582721296166 46.77275412737956, 48.757209213046764 46.70332712731491, 48.94137321321827 46.70416412731569, 49.02720921329822 46.77609112738267, 48.72110021301313 47.09832712768278, 48.57249121287472 47.365545127931654, 48.45755421276769 47.43186412799341, 48.14303621247478 47.74971812828943, 48.03734521237635 47.78262712832009, 47.663318212028 47.7694361283078, 47.44484521182454 47.84220912837557, 47.41080921179284 47.813191128348535, 47.39620021177922 47.69686412824021, 47.255827211648494 47.75082712829047, 47.14464521154494 47.81214512834757, 47.121236211523154 48.2720731287759, 46.499163210943806 48.41750012891134, 46.77888221120432 48.93665412939484, 46.96180021137465 49.01874512947131, 47.05957321146573 49.13360012957827, 47.03999121144747 49.224709129663125, 46.804018211227714 49.33846412976908, 46.802218211226034 49.36500012979377, 46.931382211346346 49.865827130260215, 47.194163211591075 49.947209130336006, 47.34527321173181 50.07582713045579, 47.341100211727905 50.12888213050519, 47.282009211672886 50.181245130553975, 47.31964521170792 50.29610913066094, 47.410545211792595 50.328609130691206, 47.520827211895295 50.43638213079157, 47.627354211994515 50.457354130811126, 48.012218212352934 50.19137313056339, 48.11054521244452 50.098600130476996, 48.16554521249574 49.966100130353595, 48.248745212573226 49.871382130265374, 48.44666321275756 49.81735413021508, 48.790554213077826 49.93943613032877, 48.91471821319345 50.03277313041568, 48.748882213039025 50.26777313063454, 48.69749121299114 50.59193613093646, 48.85832721314094 50.60527313094886, 49.02777321329876 50.68651813102454, 49.143191213406226 50.78500013111625, 49.425827213669464 50.851391131178076, 49.440127213682786 50.903882131226965, 49.36527321361308 50.97081813128932, 49.47470921371499 51.124018131431995, 49.80284521402058 51.111382131420214, 49.96804521417445 51.22610013152706, 50.264163214450235 51.277773131575174, 50.368600214547484 51.327418131621414, 50.384373214562174 51.423600131711, 50.5502732147167 51.47165413175574, 50.557500214723404 51.5802731318569, 50.600409214763374 51.63777313191045, 50.713536214868725 51.620445131894314, 50.6833182148406 51.57554513185252, 50.81235421496078 51.59430013186997, 50.81652721496465 51.64040913191292, 50.759018214911094 51.72144513198839, 50.773300214924404 51.76918213203285, 50.86332721500824 51.751391132016266, 50.94430021508364 51.68819113195741, 51.275273215391906 51.68387313195339, 51.384709215493814 51.64054513191306, 51.38922721549801 51.57075413184805, 51.2575632153754 51.54096413182032, 51.2994362154144 51.48123613176469, 51.52499121562445 51.4927641317754, 51.71193621579857 51.46193613174671, 51.80197321588241 51.50308213178502, 51.78693621586842 51.60374513187878, 51.87138221594708 51.67180013194215, 52.109436216168774 51.66512713193595, 52.16526321622075 51.718318131985484, 52.34180021638517 51.780754132043626, 52.50735421653937 51.50388213178576, 52.60762721663275 51.45638213174152, 52.76825421678234 51.50326413178519, 52.88499121689105 51.46500013174955, 53.147491217135524 51.50110913178318, 53.42374521739282 51.4926361317753, 53.63811821759248 51.3830181316732, 53.611936217568086 51.30124513159706, 53.67554521762733 51.22929113153003, 53.95026321788316 51.19610013149912, 54.135127218055345 51.10401813141337, 54.204436218119895 50.966936131285706, 54.309436218217684 50.904991131228, 54.501663218396715 50.85922713118538, 54.39840021830054 50.625891130968085, 54.45110021834961 50.55763613090451, 54.52393621841745 50.52883613087769, 54.606663218494504 50.54277313089065, 54.70180021858309 50.60964513095294, 54.65832721854261 50.727909131063086, 54.672427218555754 50.87120913119654, 54.54860921844042 50.92221813124405, 54.55422721844565 51.00985413132568, 54.64721821853226 51.036945131350905, 54.98777321884944 50.89860913122206, 55.298736219139045 50.687073131025045, 55.376382219211365 50.6523451309927, 55.49027321931743 50.66388213100345, 55.69249121950574 50.532491130881084, 56.11888221990287 50.743391131077516, 56.176036219956075 50.91388213123628, 56.35610022012378 50.90165413122489, 56.451309220212465 50.97693613129502, 56.44123622020308 51.033818131348, 56.50186322025954 51.08082713139177, 56.622982220372336 50.98922713130645, 56.72831822047044 50.98419113130177, 56.706036220449676 51.0632541313754, 56.780273220518836 51.09180013140198, 56.863600220596425 51.05915413137157, 57.12735422084208 51.084709131395385, 57.20804522091723 51.06554513137755, 57.355973221054995 50.903745131226856, 57.46353622115515 50.865273131191, 57.56166322124656 50.92388213124559, 57.736100221409 50.91040913123305, 57.7550002214266 51.08249113139331, 57.79268222146172 51.11631813142483, 58.151382221795785 51.05388213136666, 58.22054522186019 51.11762713142605, 58.33777322196937 51.15610013146187, 58.601391222214886 51.04666413135996, 58.62582722223763 51.002845131319134, 58.570236222185855 50.921764131243634, 58.66554522227463 50.80499113113487, 58.92388222251523 50.68665413102465, 59.48874522304129 50.63040913097228, 59.58409122313009 50.58644513093134, 59.46756322302156 50.533536130882055, 59.54250022309134 50.47832713083065, 59.659018223199865 50.535545130883946, 59.81440022334459 50.54627313089392, 59.93970922346128 50.71193613104822, 59.987909223506165 50.84304513117033, 60.0529092235667 50.864164131189995, 60.17040922367613 50.83554513116334, 60.17666322368197 50.769018131101376, 60.31811822381371 50.69096413102869, 60.698045224167544 50.6616641310014, 61.40360022482463 50.7899911311209, 61.46166322487872 50.87304513119827, 61.55097322496189 51.217909131519434, 61.68581822508747 51.265827131564066, 61.575554224984785 51.309436131604684, 61.49082722490587 51.425000131712295, 60.975545224425986 51.50027313178239, 60.93776322439078 51.552700131831244, 60.94230022439501 51.616664131890815, 60.53610922401671 51.62749113190088, 60.37707322386862 51.6904361319595, 60.45930022394518 51.73582713200179, 60.48582722396989 51.80915413207006, 60.22416322372621 51.87193613212855, 60.0874912235989 51.8669361321239, 60.00319122352042 51.95555413220643, 60.025554223541235 52.00082713224859, 60.223045223725165 51.999164132247046, 60.4906822239744 52.15554513239269, 60.721654224189535 52.15999113239681, 60.7777732242418 52.21623613244921, 61.060127224504754 52.34082713256524, 60.97860022442882 52.413045132632504, 60.97082722442158 52.494991132708805, 60.83513622429521 52.53693613274788, 60.82512722428589 52.63638213284048, 60.73971822420634 52.63638213284048, 60.697073224166644 52.707636132906856, 61.08055422452378 52.92971813311368, 61.099163224541115 52.98165413316204, 61.203327224638116 53.021936133199574, 61.35500022477936 52.991936133171635, 61.472354224888676 53.02832713320552, 61.864918225254286 52.98499113316515, 61.954782225337965 52.93957313312285, 62.11401822548626 52.99596413317539, 62.1440182255142 53.07610013325001, 62.10818222548082 53.12193613329271, 61.606382225013505 53.228600133392035, 61.50971822492346 53.21970913338376, 61.18471822462078 53.30665413346472, 61.15332722459155 53.36832713352217, 61.24596322467784 53.50791813365217, 61.404709224825666 53.44470913359331, 61.574582224983885 53.520273133663665, 61.538891224950646 53.593318133731714, 61.38749122480962 53.59054513372914, 61.32443622475091 53.555827133696795, 61.18250022461871 53.56944513370948, 61.073327224517044 53.618882133755505, 60.90589122436111 53.62207313375848, 60.911382224366236 53.659991133793795, 61.050409224495695 53.64221813377725, 61.22304522465649 53.80707313393077, 61.122073224562456 53.88180013400037, 60.999991224448735 53.89262713401047, 61.009163224457296 53.94345413405779, 61.32610022475245 54.06916413417488, 61.42027322484017 54.066664134172555, 61.486654224902 54.01554513412495, 61.78971822518423 54.00416413411435, 61.85172722524197 53.960682134073835, 62.02582722540413 53.93970913405431, 62.024709225403086 54.02499113413373, 62.35804522571354 54.02276413413165, 62.425482225776335 53.936582134051406, 62.53304522587652 53.88165413400023, 62.57194522591274 53.89360913401137, 62.57735422591779 54.04374513415121, 62.64110922597715 54.07513613418044, 63.109991226413825 54.095545134199455, 63.1637452264639 54.18471813428249, 63.37610022666166 54.169154134267984, 63.71777322697989 54.2580541343508, 63.893363227143396 54.20129113429792, 64.0183452272598 54.24409113433779, 63.97804522722228 54.292636134383, 63.99548222723851 54.31117313440026, 64.53888222774461 54.36388213444934, 64.73179122792425 54.341382134428386, 64.91581822809565 54.40804513449049, 64.99400922816847 54.39790913448104, 65.11998222828578 54.31277313440174, 65.22498222838357 54.32422713441241, 65.2208182283797 54.53013613460419, 65.50193622864151 54.640545134707025, 65.75262722887499 54.600964134670164, 65.84720922896307 54.68485413474829, 65.97130922907866 54.708809134770576, 65.98567222909202 54.627773134695104, 66.09166322919074 54.63916413470574, 66.4952542295666 54.72304513478386, 66.72276322977848 54.72693613478748, 66.81817222986734 54.76777313482549, 67.2490092302686 54.80804513486302, 67.32762723034182 54.86790913491876, 67.58137223057813 54.85443613490622, 67.75847223074308 54.88985413493921, 67.83485423081422 54.96352713500781, 67.89803623087306 54.9783271350216, 68.02630923099252 54.95138213499649, 68.20595423115984 54.96770013501171, 68.32818223127364 55.06672713510392, 68.24762723119863 55.10305413513777, 68.199709231154 55.178327135207866, 68.30442723125154 55.20527313523294, 68.62192723154723 55.20096413522896, 68.72330923164165 55.36832713538482, 68.88650923179364 55.33929113535777, 68.93963623184311 55.28569113530784, 69.00346323190257 55.29097313531278, 68.99734523189687 55.351936135369556, 68.9426182318459 55.368600135385066, 68.94761823185056 55.44262713545402, 69.16998223205763 55.39346413540824, 69.18552723207213 55.34388213536204, 69.2327542321161 55.33250013535144, 69.3513822322266 55.39443613540914, 69.67276323252588 55.354436135371884, 69.84610023268732 55.29500013531651, 69.94914523278331 55.204164135231935, 70.04832723287566 55.206936135234514, 70.23887223305312 55.138882135171116, 70.46998223326835 55.29666413531808, 70.58734523337768 55.27749113530021, 70.67470923345903 55.31304513533334, 70.84012723361309 55.303745135324675, 70.80817223358332 55.24680013527163, 71.001100233763 55.07943613511577, 70.9692182337333 54.89200913494122, 71.01304523377414 54.797491134853175, 71.10525423386 54.73610913479601, 71.22748223397383 54.73388213479393, 71.27887223402169 54.69027313475331, 71.28942723403154 54.63582713470262, 71.16574523391634 54.599573134668844, 71.22164523396842 54.41027313449254, 71.21360923396091 54.32582713441391, 70.99650923375873 54.33221813441986, 70.99734523375952 54.28054513437175, 71.07500023383184 54.27082713436269, 71.06693623382432 54.19360013429076, 71.18552723393478 54.103327134206694, 71.25776323400203 54.1261001342279, 71.33638223407527 54.215000134310685, 71.48442723421314 54.18638213428403, 71.50110023422866 54.11332713421601, 71.65359123437068 54.10999113421289, 71.74914523445969 54.1544361342543, 71.73568223444713 54.21943613431483, 71.767763234477 54.25527313434819, 71.95832723465449 54.2477731343412, 72.12220923480712 54.13304513423438, 72.19387223487385 54.13825413423922, 72.20366323488298 54.19617313429316, 72.09540923478215 54.250591134343836, 72.04921823473913 54.38006413446442, 72.19692723487671 54.373882134458654, 72.36026323502881 54.24415413433783, 72.32165423499288 54.18610013428378, 72.50888223516725 54.14277313424341, 72.3942912350605 53.92943613404475, 72.44859123511108 53.9127641340292, 72.55053623520604 53.96027313407345, 72.72769123537103 53.96450913407742, 72.66463623531229 54.06290913416905, 72.5324722351892 54.05941813416581, 72.60789123525944 54.143464134244084, 72.97526323560157 54.12832713422998, 73.0694452356893 53.988882134100095, 73.29081823589547 53.9538821340675, 73.54581823613296 53.95943613407269, 73.54165423612909 54.01527313412467, 73.61164523619428 54.07749113418262, 73.76388223633606 54.065545134171515, 73.71165423628742 53.87499113399403, 73.44303623603724 53.87582713399482, 73.35637223595651 53.78971813391462, 73.3288722359309 53.694154133825606, 73.26027223586703 53.68332713381554, 73.23859123584683 53.64443613377932, 73.25387223586105 53.57999113371929, 73.41012723600659 53.52124513366459, 73.37025423596944 53.46693613361401, 73.4371912360318 53.436100133585285, 73.58166323616635 53.51971813366316, 73.67692723625507 53.61943613375604, 73.91748223647909 53.654164133788385, 74.24664523678567 53.602218133739996, 74.28387223682032 53.527491133670395, 74.37637223690646 53.47165413361839, 74.42915423695564 53.478600133624866, 74.48360023700633 53.58443613372344, 74.43887223696467 53.60999113374723, 74.46638223699031 53.693318133824846, 74.64694523715846 53.688327133820195, 74.67414523718381 53.75985413388682, 74.78942723729116 53.83638213395807, 74.9472092374381 53.83860013396014, 75.0338722375188 53.80665413393038, 75.45721823791308 53.994154134105, 75.38415423784505 54.06721813417306, 75.50110023795395 54.1152731342178, 75.69136323813115 54.110273134213145, 76.20721823861157 54.259164134351835, 76.18552723859136 54.29554513438572, 76.23887223864108 54.35889113444469, 76.48776323887284 54.325554134413665, 76.65942723903271 54.370127134455174, 76.69970023907024 54.444291134524235, 76.81164523917448 54.447773134527466, 76.85908223921865 54.301182134390956, 76.72415423909302 54.15526413425505, 76.4022092387932 54.156554134256254, 76.52241823890512 53.99554513410632, 77.5238822398378 53.50638213365073, 77.9147002402018 53.26500013342593, 78.92303624114089 52.17638213241207, 79.54150924171688 51.44166413172783, 79.98859124213328 50.819573131148445, 80.0590542421989 50.76836413110075, 80.1030092422398 50.764473131097134, 80.06712724220642 50.79947313112973, 80.09185424222943 50.8494821311763, 80.46478224257675 50.96657313128537, 80.48734524259777 51.05100013136399, 80.4363722425503 51.111382131420214, 80.44392724255732 51.19914513150195, 80.63821824273828 51.22114513152246, 80.68505424278192 51.31263613160766, 81.04083624311323 51.18143613148547, 81.17942724324229 51.193118131496334, 81.0748542431449 50.951418131271254, 81.42011824346645 50.966664131285455, 81.46388224350721 50.74319113107731, 81.67859124370722 50.74110013107537, 81.91554524392785 50.786945131118074, 82.15915424415476 50.709991131046394, 82.35637224433844 50.75971813109271, 82.49887224447116 50.721100131056744, 82.70277224466105 50.80027313113047, 82.72532724468203 50.89012713121417, 82.76110924471539 50.91081813123344, 83.01485424495166 50.8914541312154, 83.09324524502472 50.9317271312529, 83.13830924506664 50.999509131316046, 83.46831824537401 50.98930013130652, 83.83957224571975 50.87915413120393, 83.97782724584852 50.79506413112563, 83.97457224584548 50.711518131047825, 84.16900924602658 50.598045130942154, 84.22415424607794 50.5069361308573, 84.19852724605408 50.44950913080382, 84.26540924611635 50.272773130639195, 84.37720024622047 50.21270013058327, 84.52105424635442 50.21678213058706, 85.01151824681125 50.07763613045748, 85.05581824685248 50.01270013039701, 84.97915424678109 49.99777313038308, 84.97429124677654 49.92777313031789, 85.08069124687563 49.88332713027651, 85.2592272470419 49.592909130006035, 85.42019124719184 49.620818130032035, 85.50416324727001 49.59027313000357, 85.65776324741307 49.6083271300204, 86.18407224790326 49.47665412989775, 86.24999124796466 49.50777312992673, 86.28749124799958 49.58581812999944, 86.44525424814651 49.64582713005532, 86.62345424831244 49.79901813019799, 86.78193624846006 49.784091130184095, 86.79457224847181 49.69818213010407, 86.69470024837881 49.67290913008054, 86.62081824831 49.58304512999686, 86.84991824852335 49.513264129931855, 86.83900924851321 49.454718129877335, 87.04026324870063 49.271936129707115, 87.30532724894749 49.20166412964167, 87.34820924898742 49.092618129540114, 87.17540024882652 49.132218129576984, 86.87601824854767 49.11020012955649, 86.77082724844973 49.02360912947583, 86.73102724841266 48.972000129427755, 86.80775424848412 48.823882129289814, 86.7788822484572 48.7211001291941, 86.59790924828866 48.54277312902801, 86.4680452481677 48.49443612898301, 86.34414524805231 48.49527312898377, 86.23490924795061 48.426591128919824, 86.03053624776027 48.43707312892957, 85.76596324751387 48.39332712888884, 85.61818224737624 48.16512712867632, 85.53707224730067 47.93721812846405, 85.62220924738 47.621100128169644, 85.60914524736779 47.499436128056345, 85.70290024745515 47.37596412794136, 85.7013822474537 47.26221812783541, 85.52256324728717 47.05910912764625, 85.21898224700442 47.03900012762753, 84.9628362467659 46.86450912746503, 84.80317224661718 46.827700127430745, 84.74441824656247 46.83315412743582, 84.77429124659028 46.935682127531294, 84.67803624650065 46.993609127585245, 84.29470924614367 47.00750012759818, 83.93026324580421 46.97331812756636, 83.55872724545821 47.06332712765018, 83.15512724508233 47.22470912780048, 83.03442724496989 47.20061812777803, 83.0112362449483 46.95318212754759, 82.8738722448204 46.763600127371035, 82.70888224466671 46.3541541269897, 82.57138224453865 46.16776412681611, 82.51081824448227 45.90192712656855, 82.32179124430621 45.5831001262716, 82.35359124433586 45.49941812619369, 82.64623624460836 45.435809126134444, 82.64249124460491 45.266091125976374, 82.56637224453402 45.133027125852436, 82.48165424445511 45.127473125847274, 82.29693624428307 45.23775412594998, 81.94802724395811 45.15748212587522, 81.82415424384277 45.19622712591129, 81.78318224380462 45.32137312602785, 81.67928224370786 45.349700126054245, 80.91692724299782 45.150254125868486, 80.52499124263284 45.10859112582969, 80.40069124251704 45.0504001257755, 80.11317224224928 45.03733612576332, 79.87105424202377 44.90281812563805, 79.87407224202661 44.86823612560585, 79.99874524214272 44.799009125541374, 80.26220924238811 44.82442712556505, 80.51589124262432 44.73408212548091, 80.38499124250245 44.63580012538938, 80.34943624246932 44.44719112521372, 80.39999124251642 44.2612181250405, 80.36887224248744 44.113782124903196, 80.73970024283278 43.46580012429973, 80.81526324290314 43.168300124022664, 80.77456324286527 43.10927312396768, 80.65484524275377 43.1420451239982, 80.38404524250154 43.02905412389296, 80.38804524250526 42.994827123861086, 80.55075424265681 42.930027123800755, 80.57225424267682 42.88545412375922, 80.28179124240631 42.82981812370741, 80.2424822423697 42.789127123669516, 80.15803624229108 42.632454123523615, 80.28512724240943 42.21606412313582, 80.19220024232288 42.20911812312934, 79.95651824210341 42.4327271233376, 79.71304524187661 42.4744001233764, 79.44386324162593 42.47217312337435, 79.36046324154825 42.60294512349611, 79.21527224141306 42.679118123567065, 79.20581824140424 42.783709123664465, 79.1753912413759 42.7976001236774, 79.03138224124177 42.75996412364236, 78.51637224076217 42.88468212375852, 78.09776324037227 42.85731812373302, 77.72220924002255 42.914954123786714, 77.2081912395438 42.91815412378969, 77.13860023947899 42.96759112383572, 76.98095423933216 42.99579112386198, 76.61692723899313 42.90022712377299, 75.79060023822356 42.93569112380601)) +NOR Norway MULTIPOLYGON (((10.495291177412582 64.42380914381837, 10.84944517774241 64.3705541437688, 10.66263617756843 64.44311814383636, 10.965691177850658 64.60096314398336, 11.221663178089074 64.31610014371807, 11.728054178560683 64.57970914396358, 11.438327178290848 64.71110914408595, 12.217082179016131 64.94068214429976, 11.24152717810756 64.7336001441069, 11.695973178530807 64.89888214426082, 11.301809178163694 64.88512714424803, 12.624718179395757 65.13360914447944, 12.939236179688663 65.32088214465386, 12.249027179045868 65.23180014457088, 12.634509179404887 65.41602714474246, 12.35492717914451 65.64075414495176, 12.783818179543943 65.63470914494613, 12.553400179329344 65.74790914505155, 12.670836179438709 65.91915414521102, 13.169445179903079 65.84984514514647, 12.957363179705567 66.03916314532282, 12.673745179441426 66.06443614534635, 14.138263180805353 66.32023614558457, 13.028400179771722 66.1889451454623, 13.527427180236486 66.30512714557051, 13.020836179764672 66.32443614558849, 12.975691179722617 66.51728214576809, 13.21097317994176 66.50943614576079, 13.713609180409861 66.60152714584655, 13.229027179958564 66.71027314594784, 13.990836180668055 66.78527314601769, 13.551391180258804 66.92846314615102, 14.594445181230213 67.0329091462483, 14.350554181003076 67.15110914635838, 14.742636181368226 67.11783614632739, 14.580836181217535 67.19527314639953, 15.735554182292958 67.17575414638134, 14.328900180982913 67.23920914644043, 15.035827181641281 67.57054514674903, 15.644445182208102 67.2680541464673, 15.531391182102823 67.46500014665071, 15.88746318243443 67.55644514673588, 15.278891181867664 67.51832714670039, 15.306873181893707 67.71672714688515, 15.826873182377994 67.67659114684778, 14.756800181381408 67.80262714696516, 15.87110918241919 67.92332714707757, 15.961109182503009 68.01304514716114, 15.28832718187644 68.03054514717743, 16.013745182552043 68.2434631473757, 16.212009182736693 67.90069114705648, 16.495827183001012 67.79415414695725, 16.207500182732474 67.99999114714896, 16.715273183205397 68.06666314721107, 16.13763618266742 68.30610014743405, 16.80006318328435 68.13033614727036, 16.22277318274672 68.3474911474726, 17.132636183594087 68.36749114749122, 17.35805418380403 68.17637314731323, 17.20250018365914 68.36957314749316, 17.571527184002832 68.35991814748417, 17.37374518381864 68.4090091475299, 17.54819118398109 68.52569114763855, 16.46700918297418 68.51172714762555, 17.66906318409366 68.65756314776138, 17.23910018369324 68.75346314785068, 17.79250018420862 68.75694514785394, 17.431873183872767 68.89839114798568, 18.147918184539634 69.15012714822012, 17.996391184398533 69.28027314834134, 18.131945184524767 69.33915414839615, 18.256945184641182 69.48637314853326, 18.53944518490428 69.29916314835893, 19.006945185339674 69.28708214834765, 18.457291184827767 69.44957314849898, 18.850209185193705 69.55033614859283, 19.010618185343105 69.39617314844926, 19.376109185683475 69.31798214837644, 19.173745185495022 69.25911814832162, 19.44055418574351 69.22582714829062, 19.41750018572202 69.3488731484052, 18.998054185331398 69.4591541485079, 19.22666318554431 69.56443614860598, 18.94500018528197 69.57930014861981, 19.246663185562937 69.77194514879923, 19.77270918605285 69.80484514882986, 19.533536185830087 69.3966541484497, 20.387218186625148 69.91221814892987, 19.946945186215117 69.25610014831881, 20.4663911866989 69.57319114861411, 20.849027187055242 69.49229114853878, 20.565827186791495 69.76138214878938, 21.31332718748766 70.02096314903113, 22.099582188219927 69.74374514877297, 21.808400187948735 70.04026314904911, 22.09332718821409 70.10825414911244, 21.300000187475234 70.2469361492416, 22.9575001890189 70.20416314920178, 22.29666318840347 70.04123614905004, 23.317636189354317 69.94235414895795, 23.534718189556486 70.01929114902958, 23.17874518922497 70.09110014909646, 23.58555418960384 70.38360914936888, 24.735063190674396 70.63213614960034, 24.256382190228578 70.77090014972958, 24.62624519057306 70.77610914973442, 24.588473190537883 70.96096314990658, 25.90332719176243 70.88873614983933, 25.089854191004832 70.50655414948338, 25.267636191170396 70.39595414938037, 24.94305419086811 70.09180014909711, 25.234718191139734 70.08971814909518, 26.57027319238358 70.93889114988602, 26.68777319249301 70.73277314969408, 26.353191192181384 70.63963614960733, 26.650627192458415 70.6365821496045, 26.507636192325236 70.36346314935011, 27.02944519281121 70.4741541494532, 27.26603619303154 70.58179114955345, 27.13950919291372 70.74061814970136, 27.565554193310504 70.80471814976107, 27.13610919291054 70.95832714990414, 27.651663193390704 71.11305415004824, 28.54437319422209 70.97395414991868, 27.657154193395797 70.60638214957635, 28.287918193983245 70.71346314967607, 27.854300193579405 70.48193614946047, 28.33027319402271 70.50214514947928, 28.169163193872663 70.38720914937224, 28.03889119375134 70.06193614906931, 28.853882194510334 70.88055414983171, 31.07353619657755 70.28554514927757, 30.094445195665713 70.06860014907551, 28.740136194404414 70.17708214917653, 28.599091194273058 70.16075414916133, 29.666245195266924 69.96416314897826, 29.37160019499251 69.85714514887857, 29.73486319533083 69.90749114892546, 29.49194519510459 69.66020014869517, 30.184027195749138 69.69074514872361, 30.301391195858457 69.8797181488996, 30.350691195904346 69.66749114870194, 30.9433361964563 69.69055414872344, 30.796945196319967 69.53027314857417, 30.10958219567982 69.66384514869856, 29.056527194699072 69.02873614810707, 28.78291819444425 69.15513614822478, 29.298473194924412 69.4853361485323, 29.10278219474216 69.7059731487378, 27.599445193342063 70.07249114907913, 25.983327191836935 69.70430014873622, 25.76110919162997 68.98916314807022, 24.934918190860515 68.5808091476899, 23.976391189967842 68.83249114792429, 22.398327188498143 68.71110914781124, 21.320827187494643 69.326109148384, 21.06347318725497 69.03680014811457, 20.096945186354816 69.04221814811962, 20.350273186590755 68.78665414788159, 19.95236318622017 68.34276314746819, 18.099536184494582 68.50892714762296, 18.155282184546508 68.16610914730367, 17.88416318429401 67.94554514709827, 17.27360918372537 68.09054514723331, 16.72694518321626 67.89915414705504, 16.08805418262125 67.40540014659521, 16.3538821828688 67.01777314623422, 15.36278218194579 66.48000014573336, 15.46805418204383 66.2838731455507, 14.50708218114886 66.12360014540144, 14.49305418113579 65.31360014464707, 13.668263180367632 64.58020014396405, 14.116391180785001 64.47055414386193, 13.98500018066261 64.01554514343817, 12.681945179449059 63.967218143393154, 11.936391178754718 63.272218142745885, 12.293745179087523 62.267082141809766, 12.124445178929847 61.72860914130828, 12.856109179611252 61.36250014096731, 12.216218179015328 60.99874514062856, 12.600136179372868 60.43388214010247, 12.469445179251153 60.07000013976358, 11.815963178642534 59.84610013955506, 11.624027178463791 58.90693613868041, 10.764718177663497 59.22027313897223, 10.68860917759261 59.90304513960811, 10.473263177392056 59.8440911395532, 10.513054177429126 59.524991139256, 10.377636177303003 59.70082713941977, 10.230900177166347 59.7290911394461, 10.515691177431563 59.306245139052294, 10.23110917716653 59.038609138803025, 9.551600176533697 59.11401813887326, 9.693054176665441 58.9830541387513, 8.213573175287564 58.12034513794782, 7.0079181741647005 57.987918137824494, 5.623336172875213 58.55763613835509, 5.558609172814926 59.03027313879528, 6.168609173383032 58.83221813861081, 6.617082173800725 59.05346313881685, 5.869863173104818 59.06555413882813, 6.459791173654224 59.32048213906555, 5.996527173222773 59.33290913907712, 6.468891173662712 59.555273139284225, 5.516527172775739 59.27555413902371, 5.178891172461306 59.50680013923906, 5.48118217274282 59.72790913944499, 5.459736172722842 59.519218139250626, 6.303645173508812 59.84447313955354, 5.698336172945062 59.83277313954267, 6.204718173416666 60.29555413997366, 6.634927173817346 60.40610914007661, 6.531663173721171 60.25889113993949, 6.505973173697242 60.10763613979864, 6.521945173712112 60.083463139776114, 6.7416631739167485 60.43694514010534, 7.102009174252345 60.49610914016043, 6.221318173432138 60.407354140077786, 5.747218172990586 59.98666313968599, 5.641809172892408 60.14582713983421, 5.548745172805752 60.14909113983725, 5.728091172972768 60.383745140055794, 5.4111091726775555 60.129718139819204, 5.144927172429675 60.36103614003463, 5.63721817288814 60.41694514008671, 5.706454172952618 60.45950914012636, 5.720000172965229 60.67443614032652, 5.627782172879364 60.71305414036249, 5.360282172630235 60.56499114022458, 5.1986091724796495 60.577500140236225, 4.931109172230521 60.80054514044397, 5.428054172693351 60.62721814028254, 5.237500172515865 60.770618140416076, 5.53208217279024 60.871109140509674, 5.070136172360009 60.82971814047113, 5.012291172306135 61.04027314066724, 6.372218173572662 61.06194514068741, 6.818191173987998 61.141663140761665, 7.113891174263415 60.8602731404996, 6.998054174155527 61.08783614071152, 7.428609174556499 61.18139114079864, 7.56246317468117 61.47033614106775, 6.961245174121245 61.10985414073204, 6.579027173765269 61.21166314082686, 6.712636173889706 61.3947911409974, 6.428473173625065 61.113191140735125, 5.115836172402567 61.141663140761665, 4.9525001722504385 61.25610914086823, 5.6270821728787155 61.3613091409662, 4.949445172247607 61.41040914101194, 5.7962451730362545 61.447982141046936, 4.982918172278772 61.73999114131888, 5.417218172683249 61.91124514147839, 5.744718172988257 61.842218141414094, 6.469163173662963 61.80082714137555, 6.763609173937169 61.86804514143816, 5.43360917269851 61.935000141500495, 5.154582172438666 61.892500141460914, 5.39910017266638 62.01881814157858, 5.080136172369322 62.176663141725584, 6.360418173561669 62.060900141617765, 5.920136173151633 62.20672714175356, 6.320418173524416 62.36763614190343, 6.533263173722645 62.110409141663865, 6.395136173594011 62.37721814191235, 6.703336173881041 62.444854141975355, 6.877982174043694 62.41256314194527, 6.944654174105779 62.10895414166251, 7.003054174160184 62.08554514164072, 7.0687451742213625 62.09124514164603, 7.027782174183216 62.26652714180926, 7.41513617454396 62.22971814177498, 6.786527173958518 62.47721814200548, 6.255691173464129 62.45610914198582, 6.646836173828433 62.49575414202275, 6.252982173461618 62.57777314209915, 8.13798217521716 62.69364514220706, 6.954582174115046 62.72402714223534, 7.265136174404262 63.01138214250295, 7.467363174592606 62.91124514240971, 8.010973175098883 62.96694514246158, 8.179863175256173 62.80069114230673, 8.548336175599331 62.653882142170005, 8.153609175231708 62.9440911424403, 7.880900174977739 63.00256314249475, 8.098054175179982 63.10374514258899, 8.357773175421869 62.88055414238113, 8.531773175583908 62.84721814235007, 8.656836175700391 62.971691142466, 8.160973175238581 63.11804514260231, 8.940136175964227 63.20790914268599, 8.479718175535425 63.29180014276412, 8.758536175795086 63.342918142811726, 8.672218175714704 63.413891142877816, 9.000973176020892 63.46464514292509, 9.23139117623549 63.35388214282193, 9.418054176409328 63.374718142841346, 9.152809176162293 63.48576314294476, 9.71750017668819 63.630273143079364, 9.976109176929043 63.35610914282401, 10.263191177196404 63.26481814273899, 10.064445177011322 63.419718142883255, 10.889163177779409 63.447218142908866, 10.666245177571795 63.54540914300031, 11.459927178310977 63.7982631432358, 11.104509177979963 63.84930014328333, 11.487918178337026 64.00554514342886, 11.313054178174184 64.11624514353196, 10.39277317731711 63.568882143022165, 9.546663176529108 63.66235414310924, 10.192782177130852 63.9329091433612, 9.982218176934737 63.9905541434149, 10.652082177558611 64.35554514375482, 10.495291177412582 64.42380914381837)), ((16.501145183005974 68.5524631476635, 16.22194518274594 68.5472091476586, 15.911109182456443 68.36416314748814, 15.331391181916558 68.32819114745462, 15.589163182156625 68.47833614759446, 15.541454182112176 68.50360014761799, 14.986663181595503 68.24750014737947, 15.4490271820261 68.7270731478261, 15.713609182272506 68.6986091477996, 15.453191182029968 68.75957314785637, 15.658609182221284 68.95220914803579, 15.98777318252786 68.75471814785186, 15.764300182319715 68.6181911477247, 15.742500182299409 68.52916314764181, 16.20416318272939 68.85527314794552, 16.544445183046292 68.76416314786067, 16.501145183005974 68.5524631476635)), ((16.875827183354914 69.22137314828646, 17.490827183927678 69.42430014847545, 17.261109183713728 69.44444514849422, 17.196663183653726 69.50000014854595, 17.590000184020028 69.45527314850432, 17.46916318390751 69.597763148637, 18.09992718449496 69.35950914841513, 17.092782183556977 69.00360014808365, 16.767500183254015 69.09027314816439, 17.16944518362837 69.19652714826333, 16.875827183354914 69.22137314828646)), ((14.501109181143278 68.60194514770959, 14.529445181169677 68.80499114789868, 15.15180018174928 68.81470914790773, 15.044718181649557 68.99638214807692, 15.379027181960907 68.84735414793815, 15.070273181673372 68.57527314768475, 14.804027181425397 68.61526314772198, 15.1500001817476 68.7491631478467, 14.501109181143278 68.60194514770959)), ((22.16389118827982 70.46360914944339, 22.263400188372486 70.59317314956405, 21.95680018808693 70.65500014962163, 23.45166318947915 70.7836001497414, 22.16389118827982 70.46360914944339)), ((18.314500184694793 69.70338214873539, 18.755836185105807 69.68485414871813, 18.693054185047345 69.884427148904, 19.064718185393474 69.76887314879636, 18.794163185141514 69.6719361487061, 18.738327185089503 69.55777314859978, 17.999791184401687 69.59040914863016, 18.314500184694793 69.70338214873539)), ((19.13500018545892 69.78944514881553, 18.723054185075284 69.94117314895684, 19.690836185976593 69.99721814900903, 19.395000185701065 69.82777314885124, 19.13500018545892 69.78944514881553)), ((23.156391189204157 70.27442714926721, 22.85110918891982 70.40581814938957, 23.653054189666705 70.50139114947856, 23.539718189561142 70.38943614937432, 23.156391189204157 70.27442714926721)), ((14.205827180868283 68.14915414728787, 14.542218181181568 68.40083614752228, 15.168891181765218 68.45054514756859, 14.813054181433813 68.26916314739967, 14.205827180868283 68.14915414728787)), ((15.46805418204383 68.87416314796312, 15.564445182133596 69.09679114817044, 16.14805418267713 69.286373148347, 16.085136182618527 69.15527314822492, 15.46805418204383 68.87416314796312)), ((8.455273175512673 63.42638214288945, 8.280000175349414 63.464718142925165, 9.17486317618284 63.561663143015465, 8.931109175955811 63.49110014294973, 8.455273175512673 63.42638214288945)), ((25.585282191466234 70.9222091498705, 25.294445191195365 71.04221814998226, 26.217082192054647 71.03713614997753, 26.071663191919214 70.97166314991657, 25.585282191466234 70.9222091498705)), ((13.521109180230582 68.03944514718572, 13.568191180274425 68.26262714739357, 14.135418180802702 68.236245147369, 13.835554180523445 68.1047181472465, 13.521109180230582 68.03944514718572)), ((23.840000189840794 70.51138214948787, 23.63347318964847 70.69346314965745, 24.123891190105212 70.61762714958684, 23.952773189945844 70.52249114949822, 23.840000189840794 70.51138214948787)), ((12.063054178872676 65.20999114455057, 12.258054179054284 65.57610914489155, 12.502782179282207 65.39193614472003, 12.188054178989091 65.2455451445837, 12.063054178872676 65.20999114455057)), ((20.60944518683212 70.04221814905094, 20.406945186643526 70.15860014915933, 20.832218187039587 70.19665414919476, 20.794718187004662 70.05970914906723, 20.60944518683212 70.04221814905094)), ((22.976109189036237 70.24581814924056, 22.573327188661125 70.26916314926231, 22.370554188472283 70.33207314932088, 22.684445188764613 70.38873614937367, 22.976109189036237 70.24581814924056)), ((5.527500172785949 60.4291631400981, 5.360000172629952 60.523891140186294, 5.679163172927218 60.68124514033286, 5.679445172927473 60.470409140136496, 5.527500172785949 60.4291631400981)), ((12.79721817955641 67.80692714696917, 13.054718179796225 68.10194514724392, 13.151663179886526 68.0824911472258, 13.135827179871768 67.95582714710784, 12.79721817955641 67.80692714696917)), ((19.932218186201396 70.0524911490605, 19.77000018605031 70.06527314907242, 19.535973185832376 70.24554514924031, 20.11971818637602 70.11804514912157, 19.932218186201396 70.0524911490605)), ((7.985282175074957 63.30888214278002, 7.982782175072629 63.34750014281599, 7.77944517488325 63.40819114287251, 8.183609175259647 63.38610914285195, 7.985282175074957 63.30888214278002)), ((5.400554172667739 59.75139113946685, 5.308400172581912 59.78950913950237, 5.287773172562709 59.97152713967188, 5.48416317274561 59.86054513956853, 5.400554172667739 59.75139113946685)), ((16.12110918265202 68.3763911474995, 16.235000182758085 68.5230361476361, 16.464582182971924 68.46540914758242, 16.405554182916944 68.41110014753184, 16.12110918265202 68.3763911474995)), ((7.510282174632579 62.93860914243518, 7.399163174529093 63.0574911425459, 7.7101361748187 63.00040914249274, 7.548336174668009 62.94832714244424, 7.510282174632579 62.93860914243518)), ((5.148891172433366 59.58110913930827, 5.07020917236008 59.781454139494855, 5.1188911724054265 59.87250013957964, 5.260691172537463 59.800691139512764, 5.343054172614188 59.70180013942067, 5.148891172433366 59.58110913930827)), ((12.300282179093614 66.01027314529591, 12.563327179338586 66.21777314548916, 12.655836179424739 66.10139114538075, 12.53194517930936 66.05471814533729, 12.300282179093614 66.01027314529591)), ((5.512782172772262 59.8930541395988, 5.360209172630164 59.98832713968753, 5.658054172907555 60.07527313976851, 5.661245172910526 59.9966631396953, 5.512782172772262 59.8930541395988)), ((8.319445175386164 63.660273143107304, 8.797782175831657 63.81277314324933, 8.827636175859453 63.7255541431681, 8.75221817578921 63.68943614313446, 8.319445175386164 63.660273143107304)), ((11.418054178271973 64.47193614386322, 11.175554178046127 64.50694514389582, 11.04097317792079 64.63151814401184, 11.452500178304035 64.51846314390653, 11.418054178271973 64.47193614386322)), ((12.129718178934752 65.05028214440185, 11.984445178799461 65.07485414442473, 12.313682179106081 65.10297314445091, 12.218891179017817 65.06499114441553, 12.129718178934752 65.05028214440185)), ((5.160554172444222 59.142773138900054, 5.1319451724175735 59.22083613897274, 5.194445172475781 59.41305413915177, 5.2933361725678765 59.240691138991224, 5.160554172444222 59.142773138900054)), ((19.473891185774562 69.83971814886235, 19.798054186076456 70.00054514901214, 19.895482186167186 69.9654091489794, 19.77250018605264 69.86471814888563, 19.473891185774562 69.83971814886235)), ((17.241663183695636 68.78860914788342, 17.087218183551784 68.91276314799904, 17.43610918387671 68.86262714795237, 17.30832718375771 68.80499114789868, 17.241663183695636 68.78860914788342)), ((12.438609179222425 65.86416314515984, 12.534163179311435 65.99970914528606, 12.898682179650905 66.01110914529667, 12.674718179442323 65.95470914524415, 12.438609179222425 65.86416314515984)), ((4.922500172222499 61.773045141349684, 4.807500172115397 61.84187314141377, 5.221109172500604 61.83916314141126, 5.175000172457658 61.82221814139547, 4.922500172222499 61.773045141349684)), ((24.04610919003275 70.90832714985757, 23.880136189878186 70.9908271499344, 24.24389119021697 70.95193614989819, 24.16777319014608 70.92582714987387, 24.04610919003275 70.90832714985757)), ((29.793327195385274 69.75443614878293, 29.841945195430554 69.91026314892804, 30.048054195622512 69.82750014885096, 30.042500195617322 69.80831814883311, 29.793327195385274 69.75443614878293)), ((5.103609172391174 60.183327139869135, 4.948891172247102 60.24666313992813, 4.942500172241125 60.42750014009653, 5.087500172376167 60.32847314000432, 5.103609172391174 60.183327139869135)), ((13.239163179968017 67.98527314713527, 13.295418180020391 68.14749114728633, 13.437363180152602 68.11569114725671, 13.382500180101488 68.02860914717562, 13.239163179968017 67.98527314713527)), ((8.391109175452897 63.15916314264061, 8.269163175339344 63.26332714273761, 8.575418175624549 63.18596314266554, 8.523609175576297 63.163891142644985, 8.391109175452897 63.15916314264061)), ((5.609163172862026 62.1852731417336, 5.54569117280289 62.279991141821796, 5.808609173047756 62.27069114181313, 5.773336173014911 62.2027731417499, 5.609163172862026 62.1852731417336)), ((5.827218173065091 62.239718141784294, 5.8459731730825695 62.40749114194054, 6.026663173250853 62.3527731418896, 6.023891173248273 62.327218141865785, 5.827218173065091 62.239718141784294)), ((18.708609185061817 69.99026314900254, 18.71236318506533 70.128191149131, 19.000418185333587 70.0865181490922, 18.970554185305787 70.05721814906491, 18.708609185061817 69.99026314900254)), ((16.521382183024798 68.87943614796802, 16.376109182889508 68.90666314799338, 16.26305418278423 68.96999114805234, 16.598054183096224 68.94762714803153, 16.521382183024798 68.87943614796802)), ((11.128891178002675 64.82943614419617, 10.951391177837365 64.86971814423367, 10.824863177719521 64.84749114421297, 11.110973177985983 64.94999114430843, 11.263400178127938 64.8877731442505, 11.128891178002675 64.82943614419617)), ((16.825273183307843 68.71970914781926, 16.98778218345919 68.85276314794316, 17.14465418360527 68.76846314786465, 17.0952731835593 68.74638214784409, 16.825273183307843 68.71970914781926)), ((19.141391185464897 70.11942714912286, 19.038609185369154 70.1629731491634, 19.24805418556423 70.24610914924082, 19.235282185552336 70.13651814913877, 19.141391185464897 70.11942714912286)), ((20.87221818707684 69.9355451489516, 20.759582186971954 69.99888214901057, 21.100273187289247 70.0070731490182, 20.952773187151877 69.94554514896092, 20.87221818707684 69.9355451489516)), ((11.900554178721336 65.58305414489803, 11.761182178591525 65.61319114492608, 11.997218178811352 65.69666314500384, 11.974163178789894 65.6269361449389, 11.900554178721336 65.58305414489803)), ((14.164445180829745 66.9977731462156, 14.12597318079392 67.0494271462637, 13.994163180671165 67.08110014629318, 14.257773180916672 67.13304514634157, 14.164445180829745 66.9977731462156)), ((4.804718172112814 61.044445140671115, 4.789582172098733 61.14916314076865, 4.960973172258349 61.1736091407914, 4.98000017227605 61.09360914071689, 4.804718172112814 61.044445140671115)), ((8.005282175093583 63.14082714262352, 8.073609175157202 63.23527314271149, 8.185973175261864 63.1554181426371, 8.13610917521541 63.14666314262897, 8.005282175093583 63.14082714262352)), ((20.604445186827462 69.79610014882172, 20.590000186813995 69.89082714890995, 20.737845186951688 69.90353614892177, 20.732218186946454 69.82027314884425, 20.604445186827462 69.79610014882172)), ((5.1591631724429305 60.57694514023572, 4.994163172289262 60.62693614028228, 4.857363172161854 60.7344361403824, 4.983473172279304 60.71291814036235, 5.1591631724429305 60.57694514023572)), ((10.739718177640214 64.8494451442148, 10.77777317767567 64.91888214427945, 11.113336177988174 64.96846314432563, 10.815554177710851 64.86360014422797, 10.739718177640214 64.8494451442148)), ((6.677782173857253 62.653609142169756, 6.689582173868246 62.730273142241174, 6.919863174082707 62.70596314221851, 6.892782174057487 62.68916314220289, 6.677782173857253 62.653609142169756)), ((15.143609181741652 67.89832714705429, 14.960836181571437 67.9077731470631, 14.934863181547257 67.92547314707957, 15.301109181888336 67.91901814707356, 15.143609181741652 67.89832714705429)), ((15.613891182179657 67.97555414712622, 15.502636182076031 67.98950914713922, 15.921800182466399 67.98901814713875, 15.862218182410913 67.97582714712647, 15.613891182179657 67.97555414712622)), ((5.13860917242377 60.396109140067296, 5.020836172314091 60.49221814015681, 5.000836172295465 60.531109140193024, 5.190000172471628 60.47444514014026, 5.13860917242377 60.396109140067296)), ((21.750273187894607 70.26027314925403, 21.691109187839487 70.29832714928946, 21.702082187849726 70.38430014936952, 21.841391187979468 70.35026314933782, 21.750273187894607 70.26027314925403)), ((19.58166318587493 70.09805414910295, 19.50194518580068 70.10221814910682, 19.352082185661118 70.12901814913178, 19.43139118573498 70.17776314917717, 19.58166318587493 70.09805414910295)), ((7.778336174882213 63.017491142508646, 7.679445174790118 63.056109142544614, 7.914718175009227 63.07638214256349, 7.888609174984907 63.04888214253788, 7.778336174882213 63.017491142508646)), ((24.768891190705915 71.02221814996363, 24.66777319061174 71.0438821499838, 24.64000019058585 71.05832714999727, 24.851109190782466 71.09164515002828, 24.768891190705915 71.02221814996363)), ((8.56277317561279 63.31916314278962, 8.470836175527154 63.32139114279167, 8.435345175494092 63.33381814280327, 8.67270917571517 63.350273142818594, 8.56277317561279 63.31916314278962)), ((6.228336173438663 62.390273141924524, 6.096391173315794 62.39388214192786, 6.025136173249422 62.43305414196436, 6.330345173533658 62.41055414194341, 6.228336173438663 62.390273141924524)), ((5.1725001724553294 60.50582714016949, 4.98721817228278 60.56110014022096, 4.927500172227155 60.6029091402599, 5.121663172408006 60.57804514023675, 5.1725001724553294 60.50582714016949)), ((17.372773183817742 68.98470914806606, 17.41458218385668 69.07360014814884, 17.562636183994556 69.09235414816632, 17.52639118396081 69.04999114812685, 17.372773183817742 68.98470914806606)), ((14.188327180851985 68.23860014737119, 14.052363180725365 68.2893001474184, 14.049027180722248 68.30027314742864, 14.229163180890026 68.2930451474219, 14.188327180851985 68.23860014737119)), ((18.920809185259458 69.62387314866132, 18.93375418527151 69.68598214871918, 19.025882185357318 69.70720914873894, 18.95600918529223 69.63991814867626, 18.920809185259458 69.62387314866132))) +RUS Russia MULTIPOLYGON (((137.26720929547815 53.60971813374698, 47.76081821211881 41.196582122186356, 27.348436193108284 57.58898213745297, 180.00000033527613 68.98010014806175, 137.26720929547815 53.60971813374698)), ((-173.191408993659 64.25442714366065, -180 65.0689091444192, -180 68.98010014806175, -169.70717299041405 66.12664514540427, -172.80264499329695 65.67470014498338, -173.191408993659 64.25442714366065)), ((60.94443622439701 76.062763154658, 67.57026323056778 77.01304515554304, 68.9313632318354 76.78276315532855, 56.749582220490254 73.245263152034, 53.63270021758743 73.75894515251241, 60.94443622439701 76.062763154658)), ((143.43136330121894 46.01943612667799, 141.8194272997177 46.485827127112344, 142.71342730055034 54.42457313450586, 144.74069130243834 48.64530012912351, 143.43136330121894 46.01943612667799)), ((53.51500021747779 71.27470015019878, 55.76305421957147 73.32360915210697, 57.63311822131311 70.72810914968971, 55.14214521899319 70.55568214952913, 53.51500021747779 71.27470015019878)), ((142.4874543003399 74.8116451534928, 139.050536297139 74.64803615334046, 136.8606542950995 75.35206315399611, 138.83218229693563 76.22026315480468, 145.38210930303575 75.51547315414831, 142.4874543003399 74.8116451534928)), ((93.22442725446007 79.43776315780121, 94.97053625608629 80.101091158419, 100.06803626083371 79.77269115811316, 98.5599822594292 78.776091157185, 93.22442725446007 79.43776315780121)), ((96.77470025776654 80.22249115853205, 94.8474912559717 80.140827158456, 93.67831825488281 79.99413615831938, 91.42490925278418 80.31011815861368, 96.77470025776654 80.22249115853205)), ((105.25278226566235 78.47998215690922, 102.71804526330169 78.1599911566112, 99.34137226015696 78.01999115648081, 102.30554526291752 79.42553615778985, 105.25278226566235 78.47998215690922)), ((123.55498228270761 73.20832715199961, 124.35860028345604 73.80359115255399, 126.71089128564677 73.08102715188105, 126.29387228525843 72.8997181517122, 126.16581828513915 72.30192715115547, 124.71831828379106 72.67637315150418, 122.43235428166207 72.97718215178435, 123.55498228270761 73.20832715199961)), ((146.5072633040836 75.5871911542151, 146.9722003045166 75.33831815398332, 150.95303630822406 75.1394361537981, 148.25610030571232 74.78915415347186, 146.0741453036802 75.22372715387661, 146.5072633040836 75.5871911542151)), ((20.942836187142603 55.28720013530926, 22.60290918868867 55.04485413508357, 22.78588218885909 54.363836134449315, 19.797009186075485 54.43754513451796, 20.942836187142603 55.28720013530926)), ((126.77192728570361 73.07638215187671, 127.04165428595485 73.53776315230641, 129.11856328788912 73.09776315189663, 126.33096328529297 72.47790915131935, 126.77192728570361 73.07638215187671)), ((141.16080029910432 73.87733615262266, 142.51302730036366 73.83888215258685, 143.50582730128832 73.23027315202006, 139.65359129770064 73.40220915218018, 141.16080029910432 73.87733615262266)), ((46.69887321112978 80.26610015857267, 49.192218213451895 80.52138215881041, 49.814154214031134 80.89110015915475, 51.74624521583053 80.71512715899087, 46.69887321112978 80.26610015857267)), ((-180 70.99720914994035, -179.6285999996541 71.5771911504805, -177.44154499761726 71.22934515015655, -179.2744449993243 70.90776314985703, -180 70.99720914994035)), ((48.232100212557725 69.08409114815862, 49.00901821328128 69.509709148555, 50.32943621451102 69.12449114819623, 48.785409213073024 68.72303614782237, 48.232100212557725 69.08409114815862)), ((59.31334522287793 80.5414271588291, 59.724709223261044 80.83388215910145, 62.28401822564459 80.77082715904274, 61.06610022451031 80.40359115870072, 59.31334522287793 80.5414271588291)), ((62.557463225899255 80.84411815911099, 64.55026322775518 81.19581815943855, 65.4673452286093 80.92512715918645, 63.212491226509286 80.68165415895967, 62.557463225899255 80.84411815911099)), ((59.91193622343542 69.6663821487009, 59.01777322260267 69.85386314887552, 58.40915422203585 70.25360914924781, 60.54693622402681 69.80248214882766, 59.91193622343542 69.6663821487009)), ((126.67566328561401 72.42893615127375, 127.80053628666161 72.64137315147158, 129.55872728829905 72.22207315108108, 128.76360928755855 72.07415415094331, 126.67566328561401 72.42893615127375)), ((91.08665425246915 80.0486001583701, 90.86442725226215 80.05720915837813, 92.90776325416516 80.02192715834528, 93.80872725500427 79.89179115822407, 91.08665425246915 80.0486001583701)), ((180.00000033527613 71.53585415044199, 180.00000033527613 70.99720914994035, 178.61940033399037 71.0315091499723, 178.87219133422582 71.21748215014549, 180.00000033527613 71.53585415044199)), ((46.08416321055731 80.43691815873177, 44.860000209417194 80.61345415889616, 47.501936211877705 80.85554515912165, 48.764854213053894 80.64942715892968, 46.08416321055731 80.43691815873177)), ((112.78777227267989 74.09193615282254, 112.15941827209468 74.13471815286238, 111.45596327143954 74.32159115303642, 113.41998227326866 74.42499115313271, 112.78777227267989 74.09193615282254)), ((69.87350923271285 73.05055415185268, 70.48553623328286 73.49304515226478, 71.24748223399246 73.45416315222857, 70.9991452337612 73.28888215207462, 71.67776323439318 73.21081815200193, 69.87350923271285 73.05055415185268)), ((169.412718325416 69.76378214879162, 168.86828132490893 69.56776314860906, 167.75191832386923 69.82748214885095, 168.27026332435196 70.02053614903076, 169.412718325416 69.76378214879162)), ((57.635009221314874 80.11051815842777, 56.94638222067354 80.4744271587667, 59.27512722284234 80.33123615863335, 58.37165422200093 80.31387315861716, 57.635009221314874 80.11051815842777)), ((54.429454218329454 81.02415415927865, 56.08970921987569 81.03831815929186, 57.71880922139292 80.79081815906136, 57.017773220740025 80.69442715897159, 56.63166322038043 80.80748215907687, 54.429454218329454 81.02415415927865)), ((146.88302730443354 44.39694512516692, 147.90414530538453 45.40416412610497, 148.85191830626724 45.4777641261735, 147.61245430511292 44.96082712569208, 146.88302730443354 44.39694512516692)), ((55.802845219608514 80.12713615844325, 56.00721821979886 80.33581815863761, 57.130127220844656 80.31248215861586, 57.024436220746225 80.07110915839107, 55.802845219608514 80.12713615844325)), ((76.86827223922722 72.3438451511945, 77.62025423992759 72.63053615146151, 78.39138224064573 72.48595415132684, 77.78248224007865 72.29664515115053, 76.86827223922722 72.3438451511945)), ((163.3855273198027 58.55940013835672, 163.69940032009504 59.01444513878053, 164.70412732103074 59.02470913879009, 164.6513633209816 58.88276313865788, 163.3855273198027 58.55940013835672)), ((140.44860929844106 73.90160915264528, 140.09661829811324 74.18858215291255, 141.11705429906357 74.16498215289056, 141.0205362989737 73.99275415273016, 140.44860929844106 73.90160915264528)), ((155.2261633122037 50.05260013043414, 155.2477453122238 50.30138213066584, 156.11440931303093 50.751100131084684, 155.8927633128245 50.26360913063067, 155.2261633122037 50.05260013043414)), ((137.2213092954354 54.77371813483103, 137.56692729575724 55.18888213521768, 138.2053822963519 55.04069113507967, 137.7071822958879 54.618327134686325, 137.2213092954354 54.77371813483103)), ((55.55633621937895 81.2191631594603, 56.36582722013284 81.38499115961471, 57.902773221564246 81.29026315952649, 56.48304522024202 81.16276315940775, 55.55633621937895 81.2191631594603)), ((78.67571824091056 72.90167315171402, 79.21609124141384 73.09248215189172, 79.58110024175375 72.74733615157027, 78.60470924084444 72.80303615162217, 78.67571824091056 72.90167315171402)), ((52.31891821636387 80.21850915852835, 52.93166321693454 80.40887315870563, 53.86991821780836 80.26110015856801, 53.43193621740045 80.16775415848107, 52.31891821636387 80.21850915852835)), ((91.02970925241613 81.05554515930791, 90.00110025145813 81.09832715934775, 89.89360025135801 81.16859115941318, 91.57720925292602 81.14305415938941, 91.02970925241613 81.05554515930791)), ((60.101091223611576 81.00747315926313, 60.75638222422188 81.10081815935007, 61.65610022505979 81.09387315934359, 61.05249122449763 80.91943615918115, 60.101091223611576 81.00747315926313)), ((56.10450921988948 81.10307315935216, 57.48665422117671 81.04637315929935, 58.278600221914246 80.9197091591814, 57.610273221291834 80.85664515912265, 56.10450921988948 81.10307315935216)), ((135.4475092937834 75.3743731540169, 135.708009294026 75.84999115445984, 136.17845429446413 75.61609115424201, 135.930263294233 75.39610015403713, 135.4475092937834 75.3743731540169)), ((58.08055422172981 81.36638215959738, 57.44137322113451 81.43165415965817, 56.74138222048262 81.44859115967395, 58.57138222218694 81.4090091596371, 58.08055422172981 81.36638215959738)), ((146.16076330376092 44.50661812526906, 146.56802730414017 44.43832712520546, 145.4374723030873 43.71693612453362, 145.40858230306037 43.832354124641114, 146.16076330376092 44.50661812526906)), ((79.21777224141539 80.95468215921397, 79.70860024187249 80.97942715923702, 80.43595424254988 80.93040015919135, 78.97498224118925 80.8336001591012, 79.21777224141539 80.95468215921397)), ((54.00470021793387 80.82664515909471, 55.130818218982654 80.89360015915707, 55.979991219773495 80.7986001590686, 54.841100218712825 80.71970915899513, 54.00470021793387 80.82664515909471)), ((53.00102721699912 70.9771731499217, 52.64500021666754 71.21914515014703, 52.21110921626345 71.31944515024045, 53.20374521718793 71.25387315017937, 53.00102721699912 70.9771731499217)), ((149.47354530684618 45.603318126290446, 149.92913630727048 46.007500126666855, 150.4985633078008 46.192491126839144, 150.15887230748444 45.89999112656673, 149.47354530684618 45.603318126290446)), ((58.061382221711966 81.68776315989669, 57.88985422155221 81.70985415991728, 59.43554522299175 81.8193001600192, 59.15970922273485 81.72886315993497, 58.061382221711966 81.68776315989669)), ((166.24624532246696 55.32962713534877, 166.24858132246914 55.14707313517874, 166.66400032285605 54.677491134741416, 165.83190932208106 55.303318135324275, 166.24624532246696 55.32962713534877)), ((55.50028221932675 80.72330915899849, 56.514163220271 80.77831815904972, 56.94860022067559 80.69274515897001, 55.904991219703646 80.63165415891311, 55.50028221932675 80.72330915899849)), ((62.16192722553089 81.68719115989617, 63.29610922658716 81.7199821599267, 63.80277322705905 81.65331815986463, 63.47082722674989 81.58249115979865, 62.16192722553089 81.68719115989617)), ((127.31817228621236 72.6507091514803, 128.27914528710733 72.78720015160741, 129.34350928809863 72.70400915152993, 129.18691828795278 72.65359115148297, 128.6344272874382 72.70054515152671, 127.31817228621236 72.6507091514803)), ((58.799682222399554 80.00670015833109, 59.45082722300597 80.11499115843193, 59.86054522338756 79.98776315831344, 59.364718222925774 79.91442715824516, 58.799682222399554 80.00670015833109)), ((96.35053625737152 76.09749115469035, 96.1769272572098 76.15220915474131, 95.26360925635925 76.21304515479798, 95.34582725643583 76.2855361548655, 96.33942725736114 76.30386315488255, 96.6451362576459 76.26096315484259, 96.35053625737152 76.09749115469035)), ((69.82313623266595 66.4885271457413, 69.41943623228997 66.76971814600319, 69.12691823201754 66.79192714602388, 69.45776323232565 66.79860014603008, 69.53360023239628 66.71998214595686, 69.64499123250002 66.68719114592633, 70.08526323291005 66.68886314592788, 69.82313623266595 66.4885271457413)), ((96.52085425753012 77.20158215571863, 96.16609125719975 76.98915415552077, 95.23123625632905 76.99665415552775, 95.59304525666602 77.07804515560358, 96.52085425753012 77.20158215571863)), ((57.94438222160298 80.82999115909783, 58.71915422232456 80.89638215915966, 59.025273222609655 80.82249115909084, 57.81874522148598 80.80303615907275, 57.94438222160298 80.82999115909783)), ((50.06637321426601 79.97920015830547, 51.00804521514303 80.09887315841692, 51.501936215602996 79.93165415826118, 50.50971821467891 79.9402631582692, 50.06637321426601 79.97920015830547)), ((161.4227273179747 68.88678214797486, 161.13442731770624 69.08970914816385, 161.09634531767074 69.47053614851853, 161.37524531793048 69.53581814857932, 161.32066331787968 69.23775414830172, 161.5199913180653 68.96693614804951, 161.4227273179747 68.88678214797486)), ((74.09582723664519 73.02692715183068, 74.42720023695381 73.13192715192847, 74.88499123738015 73.08665415188628, 74.96249123745233 73.053036151855, 74.09582723664519 73.02692715183068)), ((76.617845238994 79.54356315789977, 76.17053623857743 79.56441815791919, 76.04400923845958 79.63790915798762, 77.61734523992487 79.50888215786745, 76.617845238994 79.54356315789977)), ((137.96460029612763 71.50796315041603, 137.67690929585967 71.41165415032631, 136.99287229522264 71.51860015042593, 137.75027229592803 71.59443615049656, 137.96460029612763 71.50796315041603)), ((135.41760029375553 74.24774515296764, 136.03414529432973 74.08831815281917, 136.2709632945503 73.93275415267428, 136.0708002943639 73.89694515264094, 135.41760029375553 74.24774515296764)), ((82.15046324414664 75.49759115413164, 82.01193624401765 75.17220915382862, 81.49553624353672 75.35457315399844, 81.7174822437434 75.45193615408914, 82.15046324414664 75.49759115413164)), ((107.43887226769834 78.04942715650824, 106.49304526681743 78.12164515657548, 106.49498226681925 78.15887315661016, 107.69914526794071 78.1352731565882, 107.43887226769834 78.04942715650824)), ((57.8479732215132 81.03920015929268, 58.05110022170237 81.10693615935577, 58.69651822230347 81.0240821592786, 58.399991222027296 80.94609115920596, 57.8479732215132 81.03920015929268)), ((49.8743632140872 80.06366315838414, 49.53220921376854 80.1522091584666, 50.3316632145131 80.1744271584873, 50.06610021426576 80.05914515837992, 49.8743632140872 80.06366315838414)), ((83.06760924500082 70.4162631493993, 83.21415424513731 70.8072091497634, 83.45721824536366 70.74498214970544, 83.3016542452188 70.45637314943664, 83.06760924500082 70.4162631493993)), ((53.83140921777249 80.49997315879048, 54.00750021793647 80.6074821588906, 54.46193621835971 80.47123615876373, 54.22942721814317 80.4191451587152, 53.83140921777249 80.49997315879048)), ((129.14080928790986 72.78166315160226, 128.3269092871518 72.80887315162758, 128.2919912871193 72.86970015168424, 129.29803628805627 72.80026315161956, 129.14080928790986 72.78166315160226)), ((112.5750002724817 76.44192715501114, 112.42470027234174 76.45526315502354, 111.95664527190581 76.59860015515704, 112.50721827241858 76.62747315518394, 112.5750002724817 76.44192715501114)), ((58.461936222085 81.33859115957151, 58.95499122254418 81.40470915963309, 59.380273222940275 81.32124515955536, 58.977763222565386 81.28471815952133, 58.461936222085 81.33859115957151)), ((128.10052728694097 72.63195415146282, 128.68829128748837 72.67220915150031, 128.9722002877528 72.59081815142451, 128.65331828745582 72.52360915136191, 128.10052728694097 72.63195415146282)), ((87.01482724867697 74.9881451536572, 86.8352632485097 74.82638215350653, 86.21110924792845 74.8986091535738, 86.49567224819344 74.97650915364636, 87.01482724867697 74.9881451536572)), ((57.083291220801044 81.18140015942512, 57.8741632215376 81.23720015947708, 58.08055422172981 81.20971815945148, 56.99470922071853 81.16554515941036, 57.083291220801044 81.18140015942512)), ((148.40111830584738 76.6342001551902, 148.74660930616915 76.74581815529416, 149.31441830669797 76.7536001553014, 149.16885430656242 76.65054515520544, 148.40111830584738 76.6342001551902)), ((120.00000027939677 73.03819115184115, 119.8088722792188 73.03414515183738, 119.63261827905461 73.11803615191553, 120.27527227965317 73.09540915189444, 120.00000027939677 73.03819115184115)), ((122.31714528155482 72.94492715175429, 123.18747228236538 72.86804515168271, 123.60179128275121 72.77499115159603, 122.75277228196052 72.82110915163898, 122.31714528155482 72.94492715175429)), ((57.28270922098676 80.61472715889735, 57.41610022111098 80.6419361589227, 58.03500022168737 80.61913615890145, 57.52804522121525 80.54748215883473, 57.28270922098676 80.61472715889735)), ((154.59390031161485 49.29102712972488, 154.7462003117567 49.589018130002415, 154.90441831190407 49.62082713003204, 154.80720931181355 49.300000129733235, 154.59390031161485 49.29102712972488)), ((136.6672632949194 54.90506413495336, 136.80831829505075 55.018054135058605, 137.18788229540428 55.10540913513995, 137.04608229527219 54.91750013496494, 136.6672632949194 54.90506413495336)), ((89.16782725068208 77.16442715568402, 89.14360025065952 77.23803615575258, 89.26304525077074 77.29637315580689, 89.68457225116333 77.28110015579267, 89.16782725068208 77.16442715568402)), ((75.30631823777256 73.4183361521952, 75.6210912380657 73.5499911523178, 76.07485423848829 73.56095415232801, 75.8802632383071 73.45749115223165, 75.30631823777256 73.4183361521952)), ((50.415245214590925 81.03946315929292, 50.51639121468514 81.16192715940699, 50.9823542151191 81.10345415935251, 50.37596321455436 81.02207315927672, 50.415245214590925 81.03946315929292)), ((35.81219120099078 65.18055414452317, 35.74916320093209 64.9650001443224, 35.52137320071992 65.14582714449082, 35.56581820076133 65.17859114452133, 35.81219120099078 65.18055414452317)), ((156.40084531329774 50.62563613096785, 156.18914531310054 50.674436131013294, 156.1752633130876 50.75360913108702, 156.4684453133607 50.86749113119308, 156.40084531329774 50.62563613096785)), ((106.19080926653595 78.18997315663913, 105.99275426635154 78.21415415666164, 106.75985426706592 78.30678215674791, 106.71500026702415 78.2569451567015, 106.19080926653595 78.18997315663913)), ((-172.67599099317897 64.73124514410472, -172.43975499295897 64.8613731442259, -172.1672639927052 64.7724731441431, -172.59057299309944 64.7033091440787, -172.67599099317897 64.73124514410472)), ((85.64029124739682 74.541245153241, 85.38527224715932 74.45110015315703, 85.14512724693566 74.52749115322817, 85.31080924708994 74.58137315327835, 85.64029124739682 74.541245153241)), ((82.82941824477899 74.08363615281479, 83.20277224512671 74.14971815287635, 83.61845424551382 74.08165415281294, 83.4497092453567 74.03776315277207, 82.82941824477899 74.08363615281479)), ((54.89410021876219 80.26275415856955, 55.32860921916685 80.34443615864564, 55.54388221936736 80.29387315859853, 55.12054521897309 80.21831815852818, 54.89410021876219 80.26275415856955)), ((161.3724633179279 69.40585414845827, 161.42843631798002 69.4595731485083, 161.39580931794967 69.58749114862744, 161.6221913181605 69.58859114862847, 161.3724633179279 69.40585414845827)), ((152.20660030939155 47.12501812770762, 152.0156723092137 46.89180012749043, 151.7121913089311 46.80110012740596, 152.22121830940512 47.17319112775249, 152.20660030939155 47.12501812770762)), ((82.89220924483749 75.90942715451521, 82.77249124472598 75.94442715454781, 82.25819124424697 75.96234515456447, 83.29956324521686 75.93803615454186, 82.89220924483749 75.90942715451521)), ((167.43298132357222 54.86307313491426, 167.73358132385215 54.756945134815425, 168.11259132420514 54.50930013458478, 167.5463543236778 54.759164134817496, 167.43298132357222 54.86307313491426)), ((53.21444521719789 80.51574515880517, 53.14138221712986 80.64888215892915, 53.54395421750476 80.52665415881532, 53.428882217397614 80.48165415877341, 53.21444521719789 80.51574515880517)), ((107.35442726761966 77.22886315574402, 107.20310926747874 77.23442715574922, 107.68970026793193 77.26416315577691, 107.56191826781293 77.25499115576835, 107.35442726761966 77.22886315574402)), ((85.85637224759807 74.43970015314642, 85.66095424741604 74.47359115317798, 85.82360924756756 74.570263153268, 86.21262724792984 74.52262715322365, 85.85637224759807 74.43970015314642)), ((40.3485452052156 64.75831814412993, 40.47137320532997 64.5660821439509, 39.976236204868854 64.67941814405646, 40.274991205147074 64.64193614402154, 40.3485452052156 64.75831814412993)), ((91.61886325296479 79.64942715799836, 91.23304525260545 79.69442715804027, 91.12441825250431 79.72249115806639, 91.85845425318792 79.66830915801594, 91.61886325296479 79.64942715799836)), ((67.03288223006732 69.49736314854351, 67.30165423031764 69.59526314863467, 67.36638223037792 69.53970014858294, 67.25249123027183 69.44470014849446, 67.03288223006732 69.49736314854351)), ((96.46408225747723 76.70600915525708, 96.24220025727061 76.6097091551674, 95.89054525694308 76.61790015517502, 95.97330925702016 76.6722091552256, 96.46408225747723 76.70600915525708)), ((96.7588822577518 76.17360015476123, 96.83442725782214 76.34693615492267, 97.07304525804437 76.3030361548818, 96.85831825784442 76.27221815485308, 96.7588822577518 76.17360015476123)), ((59.86172722338864 81.3002631595358, 60.42610022391426 81.29914515953476, 60.63617322410991 81.27069115950826, 59.722209223258716 81.28332715952004, 59.86172722338864 81.3002631595358)), ((54.665591218549366 80.51939115880856, 54.99721821885822 80.56191815884819, 55.16318221901278 80.49776315878842, 54.947491218811905 80.46666315875947, 54.665591218549366 80.51939115880856)), ((76.1843722385903 73.17106315196492, 76.12359123853372 73.20415415199571, 76.73610023910413 73.1505451519458, 76.46887223885528 73.12915415192586, 76.1843722385903 73.17106315196492)), ((79.16440024136568 74.60523615330058, 79.27943624147281 74.65664515334845, 79.61220024178272 74.59498215329103, 79.49860024167691 74.5180541532194, 79.16440024136568 74.60523615330058)), ((97.33728225829049 76.10208215469464, 97.02609125800069 76.00000015459955, 96.6951182576924 76.00749115460653, 96.76693625775931 76.02804515462569, 97.33728225829049 76.10208215469464)), ((82.56470024453245 74.15931815288528, 82.73387224469002 74.09540915282577, 82.31984524430442 74.09360015282408, 82.35165424433404 74.13804515286549, 82.56470024453245 74.15931815288528)), ((82.78259124473539 70.19781814919585, 82.95555424489646 70.24609114924081, 83.11290024504302 70.14026314914224, 82.97249124491225 70.13109114913371, 82.78259124473539 70.19781814919585)), ((146.874936304426 43.86079112466757, 146.78027230433787 43.751936124566214, 146.59731830416746 43.734436124549916, 146.60759130417705 43.80526412461586, 146.874936304426 43.86079112466757)), ((84.69220024651383 74.50274515320513, 84.94220024674667 74.47430015317863, 84.37441824621789 74.45248215315831, 84.43248224627195 74.46693615317179, 84.69220024651383 74.50274515320513)), ((54.45166321835015 80.41543615871174, 54.673045218556325 80.49053615878171, 54.86305421873328 80.45027315874421, 54.37332721827718 80.40304515870022, 54.45166321835015 80.41543615871174)), ((83.97750924584824 74.02604515276116, 84.3966542462386 74.04304515277701, 84.41665424625722 73.9650001527043, 83.8822092457595 74.01012715274635, 83.97750924584824 74.02604515276116)), ((54.17701821809436 80.21856315852841, 54.221100218135405 80.32720915862959, 54.445827218344704 80.28081815858638, 54.421109218321675 80.22499115853438, 54.17701821809436 80.21856315852841)), ((152.5596913097204 76.11975415471107, 152.457318309625 76.15985415474844, 152.803036309947 76.15832715474701, 152.76886330991516 76.11164515470352, 152.5596913097204 76.11975415471107)), ((59.01550922260054 81.21210015945371, 59.68443622322354 81.21026315945198, 59.84277322337101 81.18275415942637, 59.49693622304892 81.17330915941758, 59.01550922260054 81.21210015945371)), ((85.47091824723907 74.81223615349336, 85.70193624745423 74.72553615341263, 85.09707224689089 74.75165415343693, 85.33471824711222 74.77026315345427, 85.47091824723907 74.81223615349336)), ((50.836727214983455 68.4090091475299, 51.16388221528817 68.49525414761021, 51.45665421556083 68.47692714759316, 50.79680021494627 68.3754001474986, 50.836727214983455 68.4090091475299)), ((160.71979131732007 70.81850914977392, 160.4699723170874 70.82388214977891, 160.40720031702892 70.91595414986466, 160.64471831725012 70.89638214984643, 160.71979131732007 70.81850914977392)), ((86.89627224856656 73.69307315245106, 86.73664524841786 73.59526315235996, 86.3949912480997 73.58831815235351, 86.53526324823031 73.64526315240653, 86.89627224856656 73.69307315245106)), ((59.932727223454776 76.13471815472502, 60.04110922355571 76.15693615474572, 60.49471822397817 76.18331815477029, 59.86721822339376 76.10734515469952, 59.932727223454776 76.13471815472502)), ((58.36246322199236 79.93808215826718, 58.664300222273454 79.97581815830233, 58.98610022257316 79.89846315823027, 58.28013622191568 79.92970015825938, 58.36246322199236 79.93808215826718)), ((94.75100925588185 76.25416315483628, 94.99748225611137 76.26914515485021, 94.84027225596498 76.17942715476667, 94.4112272555654 76.20776315479304, 94.75100925588185 76.25416315483628)), ((106.52370926684603 77.38691815589124, 106.73193626703994 77.46638215596522, 106.90416326720032 77.44497315594529, 106.64665426696052 77.37608215588114, 106.52370926684603 77.38691815589124)), ((124.50945428359654 73.83770915258577, 124.37052728346714 73.84498215259254, 124.2894272833916 73.88762715263226, 124.66040028373715 73.894854152639, 124.50945428359654 73.83770915258577)), ((155.44769131241003 50.88000913120473, 155.58026331253348 50.934154131255156, 155.66970931261682 50.85665413118298, 155.55691831251175 50.804164131134115, 155.44769131241003 50.88000913120473)), ((97.51999125846066 76.5808271551405, 97.31749125827207 76.6031821551613, 97.44053625838666 76.71500015526544, 97.51999125846066 76.5808271551405)), ((83.6065092455027 70.45436314943478, 83.5336002454348 70.37720014936292, 83.37970024529147 70.36499114935154, 83.55831824545783 70.52276314949847, 83.6065092455027 70.45436314943478)), ((150.45456330775983 59.017800138783656, 150.65860030794983 59.153882138910376, 150.7474633080326 59.101936138862015, 150.53442730783422 59.001391138768355, 150.45456330775983 59.017800138783656)), ((153.9808093110439 48.734691129206766, 154.1160723111699 48.897773129358626, 154.2298273112758 48.8990181293598, 154.06329131112068 48.742764129214265, 153.9808093110439 48.734691129206766)), ((88.9344002504647 77.1410091556622, 88.78305425032374 77.00499115553552, 88.62720025017859 77.07610015560175, 88.71053625025621 77.1391631556605, 88.9344002504647 77.1410091556622)), ((91.83093625316229 79.41150015777677, 92.28442725358462 79.44941815781209, 92.46748225375512 79.42998215779397, 92.24359125354664 79.3799731577474, 91.83093625316229 79.41150015777677)), ((61.776682225172095 81.60831815982272, 62.12054522549235 81.58442715980047, 62.20138222556764 81.56206315977963, 61.65443622505825 81.60304515981781, 61.776682225172095 81.60831815982272)), ((71.14364523389577 73.33856315212091, 71.24720923399221 73.41110015218845, 71.35914523409647 73.3933271521719, 71.22082723396764 73.28193615206817, 71.14364523389577 73.33856315212091)), ((86.87858224855006 73.62302715238582, 87.17859124882949 73.81441815256409, 87.2544362489001 73.76582715251882, 87.0894272487464 73.6630361524231, 86.87858224855006 73.62302715238582)), ((55.802745219608425 80.41714515871334, 55.87304521967391 80.4352541587302, 56.32513622009495 80.39137315868933, 56.223318220000124 80.3713731586707, 55.802745219608425 80.41714515871334)), ((57.05693622077649 70.50045414947772, 56.91582722064507 70.53776314951244, 56.843182220577404 70.59595414956664, 57.224573220932626 70.52360014949926, 57.05693622077649 70.50045414947772)), ((42.54064520725714 66.79039114602244, 42.661663207369855 66.76914514600264, 42.715545207420035 66.6927451459315, 42.433745207157585 66.7626361459966, 42.54064520725714 66.79039114602244)), ((34.213373199501774 69.40272714845537, 34.40491819968014 69.34380014840048, 33.975818199280525 69.36290014841828, 34.043327199343395 69.39526314844841, 34.213373199501774 69.40272714845537)), ((58.2996912219339 81.59092715980651, 58.37720922200609 81.61192715982608, 58.71728222232281 81.59817315981326, 58.229154221868214 81.57873615979517, 58.2996912219339 81.59092715980651)), ((99.942745260717 79.57887315793263, 99.9422002607165 79.68441815803095, 100.30511826105447 79.66720915801491, 100.02692726079539 79.62803615797844, 99.942745260717 79.57887315793263)), ((57.28720022099094 68.75480914785194, 57.89082722155311 68.81164514790487, 57.92082722158105 68.80331814789713, 57.200000220909715 68.72095414782041, 57.28720022099094 68.75480914785194)), ((95.12408225622926 76.712354155263, 95.32443625641588 76.65707315521149, 94.81470925594118 76.64554515520078, 95.07165425618047 76.67942715523233, 95.12408225622926 76.712354155263)), ((59.24895422281796 69.13730014820817, 59.04527322262828 69.24775414831103, 58.76332722236569 69.33665414839382, 59.19665422276927 69.23095414829538, 59.24895422281796 69.13730014820817)), ((49.35556321360403 80.04783615836939, 49.460545213701806 80.09275415841122, 49.681245213907346 80.03318215835574, 49.43166321367491 80.01527315833908, 49.35556321360403 80.04783615836939)), ((58.793545222393846 75.92140015452637, 59.19777322277031 75.98248215458324, 59.263609222831604 75.96596315456785, 58.69470922230178 75.8994271545059, 58.793545222393846 75.92140015452637)), ((127.40010028628865 73.51777315228782, 127.66220028653277 73.53803615230669, 128.05900928690232 73.48442715225676, 127.6755362865452 73.49775415226915, 127.40010028628865 73.51777315228782)), ((82.16769124416271 77.51580915601127, 82.4438632444199 77.51027315600612, 82.57762724454449 77.47027315596887, 82.12302724412109 77.502627155999, 82.16769124416271 77.51580915601127)), ((55.10307321895681 80.42330915871909, 55.286382219127546 80.45138215874522, 55.364018219199835 80.43163615872683, 54.98054521884271 80.41415415871055, 55.10307321895681 80.42330915871909)), ((126.67330928561182 72.18748215104887, 126.52748228547597 72.29498215114899, 126.53888228548658 72.35220015120228, 126.66360028560274 72.34790015119827, 126.67330928561182 72.18748215104887)), ((76.08143623849446 73.52750915229686, 76.2102632386144 73.55386315232141, 76.65748223903091 73.4794271522521, 76.76421823913034 73.43234515220823, 76.08143623849446 73.52750915229686)), ((92.59763625387637 79.40205415776796, 92.77192725403864 79.43941815780278, 92.98581825423787 79.41360015777872, 92.70664525397785 79.37776315774533, 92.59763625387637 79.40205415776796)), ((115.9172362755944 74.29588215301249, 115.993045275665 74.37469115308588, 116.12720027578996 74.31080915302638, 116.04802727571621 74.28499115300232, 115.9172362755944 74.29588215301249)), ((67.00062723003728 69.39343614844671, 66.93984522998068 69.44692714849654, 67.21748223023923 69.40720914845954, 67.13109123015877 69.36137314841685, 67.00062723003728 69.39343614844671)), ((80.33638224245715 73.50000015227124, 80.13527224226988 73.52499115229452, 80.05663624219665 73.55581815232324, 80.40359124251978 73.54610015231418, 80.33638224245715 73.50000015227124)), ((95.64845425671763 76.67341815522673, 95.83138225688799 76.68178215523452, 95.49720925657681 76.64721815520232, 95.41276325649812 76.69970915525121, 95.64845425671763 76.67341815522673)), ((82.35480924433699 70.9025541498522, 82.34860024433118 70.98830914993206, 82.50305424447504 70.95888214990464, 82.41470024439275 70.87858214982987, 82.35480924433699 70.9025541498522)), ((96.34324525736474 76.91654515545315, 96.2219272572517 76.88581815542454, 95.94274525699171 76.90637315544367, 96.18719125721935 76.93830915547343, 96.34324525736474 76.91654515545315)), ((161.73050031826136 69.55660914859868, 161.65428131819039 69.62914514866623, 161.84720031837003 69.64694514868282, 161.85453631837686 69.58373614862396, 161.73050031826136 69.55660914859868)), ((81.63636324366786 75.92791815453242, 82.25193624424116 75.87691815448494, 82.25401824424313 75.86595415447471, 81.55080924358816 75.9236001545284, 81.63636324366786 75.92791815453242)), ((65.95410022906262 69.09596314816966, 66.23387222932317 69.07443614814963, 66.53762722960607 68.94679114803074, 66.15664522925127 69.07110914814652, 65.95410022906262 69.09596314816966)), ((128.95636328773804 72.90664515171864, 128.7820542875757 72.91248215172408, 129.19537228796065 72.92428215173507, 129.1630272879305 72.91415415172563, 128.95636328773804 72.90664515171864)), ((93.98825425517146 80.00978215833396, 94.27110025543487 80.03610015835847, 94.32332725548355 80.02526315834837, 93.92747225511488 79.96831815829535, 93.98825425517146 80.00978215833396)), ((127.00450028592024 72.00000015087426, 127.1566272860619 71.95582715083313, 127.17406328607814 71.93956315081797, 126.9027722858255 72.02331815089599, 127.00450028592024 72.00000015087426)), ((58.54860922216571 80.61804515890046, 58.80582722240527 80.64694515892737, 58.85527322245133 80.64027315892116, 58.8063822224058 80.58276315886758, 58.54860922216571 80.61804515890046)), ((83.40360924531376 70.51127314948778, 83.36831824528088 70.56776314954038, 83.57290924547141 70.57249114954479, 83.48387224538851 70.48942714946745, 83.40360924531376 70.51127314948778)), ((131.92279129050075 42.99505412386131, 131.82412729040885 42.95332712382245, 131.75332729034295 42.98721812385401, 131.83649129042038 43.06276412392435, 131.92279129050075 42.99505412386131)), ((97.43970025838587 76.73360015528277, 97.35941825831111 76.74941815529752, 97.10512725807428 76.76416315531125, 97.6158182585499 76.77638215532261, 97.43970025838587 76.73360015528277)), ((137.718018295898 54.380882134465196, 137.84023629601182 54.49888213457507, 137.91388229608037 54.507773134583346, 137.83190929600403 54.39249113447599, 137.718018295898 54.380882134465196)), ((58.21588222185585 81.13635415938316, 58.406654222033524 81.15277315939846, 58.64860922225884 81.13499115938188, 58.14943622179396 81.12886315937618, 58.21588222185585 81.13635415938316)), ((86.4676182481673 74.81875415349944, 86.74887224842928 74.79720915347937, 86.78332724846138 74.78081815346411, 86.59999124829062 74.75110015343643, 86.4676182481673 74.81875415349944)), ((83.16314524508977 70.89182714984219, 83.07193624500485 70.93637314988368, 83.05247224498675 70.97692714992147, 83.25708224517729 70.90359114985316, 83.16314524508977 70.89182714984219)), ((91.93165425325611 77.59971815608941, 91.77998225311484 77.62414515611215, 91.73998225307759 77.64360015613028, 92.03770025335484 77.62622715611411, 91.93165425325611 77.59971815608941)), ((113.11876327298813 76.36999115494413, 113.25888227311862 76.43637315500595, 113.44220027328936 76.36387315493843, 113.30692727316335 76.35914515493403, 113.11876327298813 76.36999115494413)), ((85.20121824698788 74.42139115312935, 85.50638224727209 74.43470915314177, 85.58581824734608 74.41776315312597, 85.40470924717744 74.38888215309908, 85.20121824698788 74.42139115312935)), ((140.89553629885728 76.05949115465495, 140.93664529889554 76.13581815472605, 141.07704529902634 76.11248215470431, 141.07885429902802 76.08581815467949, 140.89553629885728 76.05949115465495)), ((138.46884529659724 71.6533181505514, 138.3735632965085 71.68303615057908, 138.72107229683218 71.68637315058217, 138.66330029677835 71.67330915057002, 138.46884529659724 71.6533181505514)), ((-172.75036399324824 64.67144514404902, -172.53225499304511 64.66137314403963, -172.49082699300655 64.63122714401158, -172.62859999313486 64.6172001439985, -172.75036399324824 64.67144514404902)), ((161.69168131822522 70.74540914970584, 161.64859131818508 70.74831814970855, 161.46329131801247 70.80359114976002, 161.65774531819358 70.80859114976468, 161.69168131822522 70.74540914970584)), ((122.01603628127435 72.93196315174222, 122.1774632814247 72.95360015176237, 122.37400928160775 72.89430015170714, 122.32860028156546 72.89193615170495, 122.01603628127435 72.93196315174222)), ((125.79213628479113 73.50661815227741, 125.7083272847131 73.59081815235584, 125.80386328480205 73.63888215240058, 125.8372002848331 73.5252731522948, 125.79213628479113 73.50661815227741)), ((54.25976321817143 81.29170015952784, 54.11596321803751 81.34970915958186, 54.42193621832246 81.27318215951058, 54.31721821822492 81.26860015950632, 54.25976321817143 81.29170015952784)), ((93.9518092551375 76.60981815516749, 94.29414525545633 76.5855361551449, 94.3572092555151 76.57443615513455, 93.87220025506338 76.58915415514824, 93.9518092551375 76.60981815516749)), ((137.64279129582792 54.38745413447131, 137.5496822957412 54.50985413458531, 137.61411829580123 54.56457313463625, 137.64553629583048 54.5075001345831, 137.64279129582792 54.38745413447131)), ((93.73997225494026 78.15138215660318, 93.57221825478399 78.1666541566174, 93.52442725473946 78.20332715665157, 93.64027225484739 78.22276315666966, 93.73997225494026 78.15138215660318)), ((59.90914522343283 80.181627158494, 60.0988732236095 80.20387315851471, 60.28762722378531 80.16984515848304, 60.2302732237319 80.16165415847539, 59.90914522343283 80.181627158494)), ((140.74594529871797 75.65185415427533, 140.5966182985789 75.65220915427565, 140.519436298507 75.70290915432287, 140.76999129874036 75.67720015429893, 140.74594529871797 75.65185415427533)), ((97.85165425876954 76.76610015531304, 97.73997225866555 76.81276315535649, 97.72942725865568 76.81832715536169, 97.91943625883266 76.8383181553803, 97.85165425876954 76.76610015531304)), ((156.49685431338713 77.14706315566784, 156.67746331355534 77.14054515566178, 156.73176331360594 77.1227541556452, 156.4363543133308 77.13206315565387, 156.49685431338713 77.14706315566784)), ((154.46471831149455 49.16791812961023, 154.58303631160476 49.14582712958966, 154.59592731161678 49.10901812955538, 154.4873363115156 49.080827129529126, 154.46471831149455 49.16791812961023)), ((126.49224528544318 73.39206315217072, 126.4680452854206 73.44386315221897, 126.65833628559784 73.45860015223269, 126.61302728555563 73.3994361521776, 126.49224528544318 73.39206315217072)), ((19.65110918593959 54.455827134534985, 19.627254185917366 54.46327313454191, 19.836382186112132 54.600000134669244, 19.830273186106467 54.57277313464388, 19.65110918593959 54.455827134534985))) +SWE Sweden MULTIPOLYGON (((17.2869451837378 59.25904513900832, 17.392009183835654 59.2521451390019, 17.352909183799227 59.32145413906645, 17.84721818425959 59.26444513901336, 17.983473184386497 59.33242713907666, 18.133609184526307 59.31805413906329, 18.278536184661277 59.36610913910803, 18.397918184772465 59.367636139109464, 18.454718184825367 59.33110913907544, 18.474445184843745 59.33770013908159, 18.4686091848383 59.36555413910753, 18.4304821848028 59.427982139165664, 18.477218184846322 59.435273139172466, 18.61028218497026 59.36999113911165, 18.643154185000867 59.32187313906684, 18.52221818488823 59.295827139042586, 18.346527184724607 59.30728213905326, 18.330500184709678 59.32288213906779, 18.277218184660057 59.310827139056556, 18.269445184652824 59.26860913901723, 18.31000018469058 59.2197181389717, 18.3113911846919 59.132500138890464, 18.021382184421782 59.041936138806136, 17.893954184303112 58.904791138678405, 17.894718184303827 58.85889113863564, 17.78944518420579 58.94305413871405, 17.756663184175267 59.018327138784144, 17.764718184182755 59.12076313887954, 17.666245184091053 59.167354138922946, 17.624163184051866 59.074436138836404, 17.61360918404202 58.974718138743526, 17.57832718400917 58.950509138720975, 17.629100184056455 58.91020013868345, 17.58110918401175 58.84750013862504, 17.35000018379651 58.75221813853631, 17.223609183678803 58.73055413851614, 17.156663183616473 58.73277313851821, 17.088473183552964 58.76305413854641, 17.031945183500312 58.74770013853211, 17.14027318360121 58.69672713848462, 17.03444518350264 58.637218138429205, 16.907291183384217 58.616663138410075, 16.29833618281708 58.663054138453276, 16.237918182760808 58.663891138454034, 16.19360918271954 58.62749113842014, 16.370554182884348 58.60527313839947, 16.434582182943984 58.63958213843139, 16.649436183144076 58.620554138413695, 16.777500183263328 58.581382138377194, 16.93360918340872 58.48832713829054, 16.746109183234097 58.42902713823531, 16.42284518293303 58.477773138280725, 16.692773183184443 58.40874513821643, 16.770000183256343 58.36721813817775, 16.825836183308354 58.17666313800029, 16.74280918323103 58.08612713791595, 16.746945183234885 58.01096313784595, 16.620209183116856 57.98700913782366, 16.735618183224346 57.96506313780321, 16.776182183262108 57.92027313776151, 16.763609183250395 57.88123613772515, 16.61791818311471 57.89124513773447, 16.603473183101272 57.9277731377685, 16.506209183010668 57.99197313782827, 16.52232718302568 57.877827137721965, 16.695173183186654 57.74170013759519, 16.419236182929694 57.889091137732464, 16.711391183201783 57.70263613755881, 16.625554183121835 57.619718137481584, 16.632500183128286 57.55221813741872, 16.691245183183014 57.4787451373503, 16.665827183159337 57.4085361372849, 16.63694518313244 57.40305413727981, 16.629927183125915 57.378673137257096, 16.552354183053666 57.38138213725961, 16.465973182973215 57.27055413715641, 16.460900182968487 57.170691137063386, 16.563327183063876 57.09389113699186, 16.584445183083545 57.0466631369479, 16.497218183002303 57.03790913693973, 16.37500018288847 56.72083613664444, 16.379827182892967 56.66332713659088, 16.281527182801426 56.657918136585835, 16.216109182740496 56.60721813653862, 16.00347318254248 56.213054136171536, 15.86555418241403 56.09221813605899, 15.788609182342356 56.11193613607736, 15.775836182330465 56.147773136110715, 15.598054182164901 56.19471813615445, 15.375273181957425 56.13805413610169, 15.088891181690713 56.16000013612211, 14.69263618132166 56.15819113612042, 14.682463181312187 56.123191136087826, 14.767218181391115 56.03332713600415, 14.738336181364218 56.01082713598319, 14.635273181268246 56.00750013598008, 14.603609181238738 56.05193613602148, 14.555136181193603 56.056245136025495, 14.330273180984193 55.936945135914385, 14.217218180878888 55.83027313581502, 14.192563180855927 55.72867313572041, 14.36593618101739 55.54284513554734, 14.19354518085683 55.38614513540142, 14.037500180711504 55.389445135404486, 13.911945180594586 55.433882135445856, 13.730554180425656 55.42555413543812, 13.344718180066309 55.33916413535766, 12.982218179728704 55.400554135414836, 12.916736179667708 55.5459001355502, 12.92118217967186 55.572427135574884, 13.038745179781358 55.626945135625675, 13.061109179802173 55.68076413567579, 12.581109179355138 56.14166413610505, 12.460073179242414 56.296664136249404, 12.718682179483267 56.2227821361806, 12.799236179558278 56.2259001361835, 12.830373179587298 56.25336413620906, 12.73402717949756 56.356727136305324, 12.632573179403067 56.39193613633813, 12.624300179395362 56.418327136362706, 12.676245179443754 56.46500013640616, 12.883609179636863 56.446391136388826, 12.930273179680341 56.501109136439794, 12.917218179668168 56.57860913651197, 12.88020917963371 56.64298213657193, 12.81750017957529 56.65750013658544, 12.721945179486312 56.64151813657057, 12.613609179385406 56.74693613666875, 12.576663179351016 56.83208213674803, 12.476527179257744 56.88471813679706, 12.348891179138889 56.91680913682694, 12.350000179139897 56.96999113687647, 12.245691179042751 57.0538821369546, 12.11000017891638 57.25000013713725, 12.145836178949764 57.30916313719237, 12.09500017890241 57.42693613730205, 12.047636178858312 57.457291137330316, 12.009582178822882 57.42551813730071, 11.98603617880093 57.34499113722572, 11.917773178737377 57.40221813727902, 11.902773178723407 57.42430913729959, 11.922218178741502 57.56389113742958, 11.907773178728064 57.617391137479416, 11.862500178685877 57.607773137470446, 11.83000017865561 57.66138213752038, 11.887782178709443 57.693882137550645, 11.701873178536289 57.69992713755627, 11.723054178556026 57.80721813765621, 11.668054178504804 57.845836137692174, 11.69902717853364 57.88582713772942, 11.749300178580455 57.8947181377377, 11.795554178623547 58.00610013784143, 11.79868217862645 58.03909113787216, 11.776663178605958 58.05943613789111, 11.880482178702636 58.20208213802394, 11.798054178625875 58.31832713813222, 11.72916317856172 58.328609138141786, 11.528609178374921 58.230754138050656, 11.405554178260331 58.26110913807892, 11.384163178240414 58.311945138126276, 11.23833617810459 58.34693613815887, 11.201391178070196 58.39943613820776, 11.266391178130732 58.5794361383754, 11.260273178125033 58.634991138427125, 11.179445178049747 58.711518138498406, 11.179300178049601 58.73930013852427, 11.229300178096167 58.79422713857542, 11.23221817809889 58.839163138617295, 11.194163178063462 58.91750013869023, 11.119445177993867 58.94124513871236, 11.113336177988174 59.00360913877043, 11.169445178040434 59.066518138829025, 11.320000178180635 59.10027313886047, 11.429191178282338 58.98763613875556, 11.431245178284257 58.891036138665584, 11.624027178463791 58.90693613868041, 11.751800178582783 59.09513613885568, 11.752636178583572 59.18124513893588, 11.797918178625736 59.266527139015295, 11.667009178503832 59.593573139319886, 11.899100178719976 59.699718139418735, 11.896391178717465 59.7847181394979, 11.815963178642534 59.84610013955506, 11.965482178781798 59.89694513960242, 12.163054178965808 59.89694513960242, 12.469445179251153 60.07000013976358, 12.502782179282207 60.144718139833174, 12.53277317931014 60.33902714001414, 12.58971817936316 60.39916314007016, 12.607218179379458 60.468400140134634, 12.59097317936434 60.521800140184354, 12.382500179170165 60.75555414040207, 12.271945179067217 60.94610914057952, 12.216218179015328 60.99874514062856, 12.407773179193725 61.053891140679895, 12.637827179407964 61.05753614068331, 12.772218179533127 61.200827140816756, 12.856109179611252 61.36250014096731, 12.52652717930431 61.56666314115748, 12.399718179186209 61.57693614116704, 12.124445178929847 61.72860914130828, 12.293745179087523 62.267082141809766, 12.047500178858172 62.59000014211051, 12.046663178857415 62.66527314218064, 12.08944517889725 62.74944514225902, 12.028891178840865 62.89249114239223, 12.168609178970968 63.015827142507106, 11.936391178754718 63.272218142745885, 12.195000178995542 63.48527314294432, 12.146663178950547 63.589573143041434, 12.633891179404316 63.9427731433704, 12.938054179687583 64.05332714347335, 13.230000179959461 64.09304514351035, 13.98500018066261 64.01554514343817, 14.15069118081692 64.17984514359117, 14.150554180816812 64.33929114373967, 14.116391180785001 64.47055414386193, 13.900836180584236 64.50749114389632, 13.668263180367632 64.58020014396405, 13.702218180399257 64.63457314401467, 14.296436180952668 65.10212714445012, 14.36889118102016 65.24665414458471, 14.49305418113579 65.31360014464707, 14.500554181142775 65.5858271449006, 14.534718181174583 65.70096314500782, 14.633191181266284 65.82180014512036, 14.537636181177305 66.01638214530158, 14.50708218114886 66.12360014540144, 15.025273181631462 66.14999114542601, 15.46805418204383 66.2838731455507, 15.36278218194579 66.48000014573336, 15.625827182190761 66.60581814585055, 16.010000182548538 66.89082714611598, 16.3538821828688 67.01777314623422, 16.402500182914082 67.1705451463765, 16.361382182875786 67.23778214643912, 16.08805418262125 67.40540014659521, 16.19916318272473 67.50082714668409, 16.382500182895456 67.5155451466978, 16.508327183012653 67.609163146785, 16.573609183073444 67.66123614683349, 16.72694518321626 67.89915414705504, 17.188327183645953 68.03027314717718, 17.27360918372537 68.09054514723331, 17.592500184022356 68.02970914717665, 17.88416318429401 67.94554514709827, 18.155282184546508 68.16610914730367, 18.04958218444807 68.40027314752177, 18.099536184494582 68.50892714762296, 18.35805418473535 68.53915414765109, 18.611945184971802 68.47526314759159, 18.9522181852887 68.48778214760327, 19.930827186200105 68.33707314746289, 20.20423618645475 68.47089114758754, 19.956391186223925 68.5438821476555, 20.202500186453108 68.66221814776571, 20.350273186590755 68.78665414788159, 20.314718186557627 68.92832714801355, 20.096945186354816 69.04221814811962, 20.580927186805553 69.06030014813646, 20.875554187079956 69.00124514808147, 20.930691187131288 68.97069114805299, 20.93097318713157 68.949227148033, 20.88590018708959 68.9181911480041, 20.900827187103488 68.89207314797977, 21.081391187271663 68.8666541479561, 21.420554187587527 68.72415414782338, 21.494163187656085 68.66985414777284, 21.62305418777612 68.64942714775381, 21.765418187908693 68.57568214768511, 21.889300188024066 68.571245147681, 22.048609188172435 68.48151814759743, 22.371945188473575 68.46360914758074, 22.826663188897072 68.38596314750842, 22.905000188970007 68.3299911474563, 23.0554181891101 68.29110014742008, 23.394445189425852 68.04250014718855, 23.659791189672973 67.94589114709859, 23.65569118966914 67.92117314707556, 23.60208218961924 67.89638214705246, 23.48881818951375 67.87096314702879, 23.470554189496738 67.81985414698121, 23.507773189531406 67.6655451468375, 23.430827189459734 67.47978214666449, 23.493745189518336 67.43721814662484, 23.581945189600475 67.45000014663674, 23.765136189771084 67.4168731466059, 23.780345189785237 67.32630914652154, 23.743191189750632 67.28631814648432, 23.61000018962659 67.26137314646107, 23.573327189592447 67.15700914636389, 23.731109189739385 67.00832714622541, 23.94069118993457 66.87977314610569, 24.000763189990522 66.80228214603352, 23.942500189936254 66.78790914602013, 23.892082189889322 66.74478214597997, 23.90277318989928 66.68026314591987, 23.874163189872633 66.55534514580353, 23.656036189669464 66.45720914571214, 23.639718189654275 66.4333181456899, 23.662500189675484 66.3122091455771, 23.72610918973473 66.19825414547097, 23.935554189929803 66.12846314540596, 24.167009190145365 65.81402714511313, 24.04624519003289 65.8073451451069, 23.93131818992586 65.76047314506326, 23.65389118966749 65.806382145106, 23.518327189541225 65.80082714510084, 23.434718189463354 65.76054514506333, 23.24971818929106 65.80082714510084, 23.23444518927684 65.76360914506617, 23.077354189130546 65.70082714500771, 22.675827188756585 65.90221814519526, 22.642563188725603 65.89874514519204, 22.67618218875691 65.87547314517036, 22.704718188783488 65.80749114510704, 22.67930018875981 65.76047314506326, 22.479163188573438 65.85110914514766, 22.368191188470064 65.85915414515514, 22.32916318843374 65.82970914512774, 22.257773188367253 65.69110014499864, 22.24905418835911 65.63249114494405, 22.315273188420804 65.62953614494131, 22.290963188398166 65.66478214497414, 22.385554188486253 65.62887314494068, 22.4224271885206 65.54680014486425, 22.40000018849969 65.53680014485494, 22.07971818820141 65.60720914492052, 21.765827187909082 65.71214514501824, 21.848191187985776 65.65610914496605, 22.120973188239844 65.58138214489645, 22.19437318830819 65.54228214486005, 21.993891188121495 65.51444514483413, 21.857218187994192 65.53006314484867, 21.920000188052654 65.48707314480862, 21.939718188071026 65.48527314480697, 21.92680018805899 65.50819114482829, 22.030973188156025 65.45971814478315, 22.014027188140233 65.42623614475198, 21.929445188061464 65.3980361447257, 21.654863187805745 65.39193614472003, 21.602845187757282 65.41408214474066, 21.471245187634736 65.3837451447124, 21.538691187697538 65.32701814465958, 21.617082187770563 65.32471814465742, 21.699200187847026 65.28370914461922, 21.659300187809862 65.24582714458396, 21.558054187715584 65.23421814457313, 21.46655418763035 65.31204514464562, 21.328682187501954 65.37027314469987, 21.26486318744253 65.33825414467003, 21.41721818758441 65.30610914464009, 21.61937318777268 65.15137314449598, 21.577709187733888 65.0599181444108, 21.486036187648494 65.05977314441068, 21.466663187630473 65.00721814436173, 21.249445187428165 64.94860014430714, 21.183054187366338 64.82999114419667, 21.127218187314327 64.81846314418593, 21.07555418726622 64.85339114421848, 21.042218187235164 64.8448451442105, 21.039373187232513 64.82381814419094, 21.094236187283627 64.78304514415296, 21.303400187478417 64.76165414413302, 21.29735418747279 64.66290914404107, 21.152827187338175 64.72360014409759, 21.104718187293372 64.71984514409408, 21.11916318730684 64.68436314406105, 21.27138218744858 64.61526314399669, 21.46527318762918 64.57554514395972, 21.554163187711964 64.5324821439196, 21.58500018774066 64.4397091438332, 21.45805418762245 64.36110014375998, 21.31777318749181 64.30846314371095, 21.247773187426617 64.3072091437098, 20.96374518716209 64.1427001435566, 20.895554187098583 64.002491143426, 20.774027186985393 63.86708214329988, 20.63833618685902 63.813327143249836, 20.535000186762773 63.799163143236655, 20.502500186732505 63.82061814325661, 20.415691186651657 63.69444514313912, 20.29860918654262 63.64638214309434, 20.263882186510273 63.66583614311247, 20.100000186357647 63.65582714310315, 19.896245186167903 63.60777314305841, 19.775273186055244 63.53333614298907, 19.753300186034778 63.50571814296336, 19.77590018605582 63.4600181429208, 19.705000185989775 63.43193614289464, 19.638473185927836 63.4445821429064, 19.616391185907275 63.494718142953104, 19.501663185800425 63.54943614300407, 19.425827185729787 63.54631814300117, 19.47360918577428 63.453045142914306, 19.358745185667317 63.43513614289762, 19.28902718560238 63.45735414291832, 19.23055418554793 63.32750014279736, 19.149300185472242 63.31277314278367, 19.047218185377176 63.241173142716974, 19.05471818538416 63.2173541426948, 19.109445185435135 63.210963142688826, 19.0625001853914 63.176936142657155, 18.896663185236974 63.27319114274678, 18.80657318515307 63.247463142722836, 18.88389118522508 63.22710914270388, 18.911663185250944 63.20847314268653, 18.897500185237732 63.191663142670876, 18.780282185128584 63.16235414264358, 18.75623618510619 63.18652714266608, 18.785163185133115 63.19833614267708, 18.729554185081327 63.20614514268436, 18.73736318508861 63.17012714265081, 18.382218184757846 63.05166314254049, 18.289163184671196 62.99721814248977, 18.532354184897684 62.985136142478524, 18.575200184937586 62.96180014245678, 18.470418184839986 62.86040914236236, 18.204027184591894 62.77735414228502, 18.126109184519322 62.765827142274276, 18.08277318447898 62.7811091422885, 18.13538218452797 62.809127142314594, 18.073327184470173 62.83666314234026, 17.98076318438396 62.81847314232331, 17.92750018433435 62.84250014234567, 17.82430018423824 62.9945821424873, 17.700554184123007 62.99270914248558, 17.834718184247947 62.93332714243027, 17.99471818439696 62.73055414224143, 17.993891184396205 62.65485414217093, 17.879236184289425 62.66242714217796, 18.040136184439262 62.62500014214311, 18.0463911844451 62.595273142115445, 17.839445184252355 62.48555414201326, 17.78180018419866 62.501173142027795, 17.689445184112657 62.4919361420192, 17.65826318408361 62.467982141996885, 17.67389118409818 62.44430014197482, 17.612500184040982 62.43458214196576, 17.533609183967513 62.454436141984274, 17.430000183871016 62.533609142058, 17.330827183778666 62.48777314201533, 17.373891183818785 62.32680014186539, 17.46527318390389 62.26554514180836, 17.648882184074864 62.231727141776844, 17.546463183979483 62.20239114174953, 17.56243618399438 62.230718141775924, 17.51470918394992 62.22985414177512, 17.46360918390232 62.006382141566974, 17.4050631838478 61.989718141551464, 17.350827183797293 61.943473141508406, 17.33639118378386 61.8180541413916, 17.385663183829735 61.75650014133427, 17.440282183880612 61.72694514130674, 17.49736318393377 61.72596314130581, 17.5236091839582 61.69888214128059, 17.495173183931712 61.634582141220704, 17.445273183885263 61.6288821412154, 17.38805418383197 61.68958214127193, 17.333191183780855 61.71346314129417, 17.148782183609114 61.717282141297744, 17.264545183716933 61.68537314126803, 17.185554183643376 61.634718141220844, 17.13708218359824 61.63735414122331, 17.098609183562388 61.60277314119111, 17.219654183675118 61.434654141034514, 17.105273183568613 61.399927141002166, 17.209163183665368 61.32708214093432, 17.152500183612574 60.942773140576435, 17.242918183696787 60.893463140530486, 17.276109183727698 60.843045140483554, 17.275273183726938 60.676109140328066, 17.377100183821767 60.618991140274886, 17.52055418395537 60.643054140297295, 17.609163184037897 60.63221814028719, 17.650627184076512 60.600963140258074, 17.60590018403485 60.58096314023945, 17.608745184037502 60.553463140213836, 17.632082184059243 60.52040914018306, 17.687918184111226 60.497354140161605, 17.73350918415369 60.4983271401625, 17.72840018414894 60.53672714019825, 17.773054184190528 60.57110914023028, 17.88582718429555 60.59735414025474, 17.960973184365542 60.5920821402498, 18.214163184601347 60.34304514001789, 18.23958218462502 60.32901814000482, 18.313891184694228 60.35388214002796, 18.437845184809646 60.340000140015036, 18.465827184835717 60.299436139977274, 18.59961818496032 60.23561813991782, 18.47083618484038 60.23499113991724, 18.3170821846972 60.30819113998541, 18.421663184794596 60.187218139872755, 18.507427184874473 60.152654139840564, 18.63277318499121 60.14500013983343, 18.816391185162217 60.09638213978815, 18.907363185246936 59.93790913964057, 19.07055418539892 59.889718139595686, 19.065445185394168 59.83250013954239, 18.936109185273693 59.86999113957731, 18.86471818520721 59.79804513951032, 19.079654185407378 59.76742713948178, 19.072636185400853 59.73819113945456, 19.032218185363206 59.71999113943761, 18.74555418509624 59.68916313940892, 18.699791185053613 59.644091139366935, 18.736873185088143 59.642082139365044, 18.666382185022485 59.59138213931783, 18.37332718474957 59.466945139201954, 18.275136184658123 59.475827139210224, 18.25944518464351 59.44638213918279, 18.328263184707595 59.397945139137676, 18.165618184556138 59.41082713914969, 18.195082184583555 59.45011813918629, 18.12000018451363 59.45388213918977, 18.057218184455166 59.39139113913157, 18.08889118448468 59.36721813910907, 18.09139118448701 59.334445139078554, 17.93214518433868 59.33651813908048, 17.782773184199584 59.38916313912952, 17.759654184178032 59.414863139153454, 17.784654184201315 59.493400139226594, 17.843473184256112 59.53069113926131, 17.817709184232115 59.58645413931325, 17.756509184175115 59.618273139342875, 17.721109184142136 59.6960361394153, 17.70680018412881 59.67735413939792, 17.718263184139488 59.622845139347135, 17.603963184033034 59.65062713937303, 17.645345184071573 59.66603613938736, 17.654163184079806 59.718045139435816, 17.629673184056998 59.786482139499554, 17.591036184020993 59.803054139514984, 17.53847318397206 59.74819113946387, 17.448054183887848 59.735545139452114, 17.44471818388473 59.67610913939674, 17.543154183976412 59.57300913930072, 17.51013618394566 59.69672713941594, 17.537500183971133 59.732218139449, 17.61256318404105 59.732427139449186, 17.616109184044348 59.69554513941486, 17.56117318399319 59.668445139389604, 17.589709184019767 59.639427139362596, 17.7422181841618 59.59055413931708, 17.785827184202418 59.53263613926313, 17.731391184151732 59.44485413918139, 17.54791818398084 59.49013613922355, 17.52266318395732 59.507491139239704, 17.546082183979138 59.53699113926717, 17.442773183882935 59.55874513928745, 17.372982183817925 59.61187313933692, 17.3828451838271 59.65235413937464, 17.34874518379536 59.61443613933932, 17.405482183848193 59.549645139278965, 17.418954183860734 59.48847313922201, 17.40444518384723 59.46916313920403, 17.18527318364312 59.53860913926869, 16.94471818341907 59.54485413927452, 16.8649631833448 59.58472713931164, 16.659854183153783 59.55027313927957, 16.558609183059474 59.609854139335056, 16.499091183004055 59.59290913931926, 16.54301818304495 59.55436313928337, 16.480836182987048 59.49975413923249, 16.33000018284656 59.467773139202734, 16.173336182700666 59.46513613920027, 16.032463182569472 59.49016313922357, 16.071591182605914 59.45534513919114, 16.17528218270249 59.43971813917659, 16.6647181831583 59.47360913920815, 16.81194518329542 59.38811813912852, 16.877773183356737 59.381936139122786, 16.89124518336928 59.398118139137836, 16.695418183186888 59.470482139205245, 16.83673618331852 59.489645139223086, 17.111663183574564 59.37444513911581, 17.308573183757943 59.34680013909005, 17.2529181837061 59.26430913901322, 17.2869451837378 59.25904513900832)), ((19.00389118533684 57.89889113774157, 19.03333618536425 57.826945137674585, 18.929445185267497 57.73971813759334, 18.809163185155484 57.70360913755971, 18.75971818510942 57.50804513737759, 18.78832718513607 57.44832713732197, 18.71319118506608 57.244300137131944, 18.39312718476802 57.13082713702627, 18.342918184721242 57.07548213697473, 18.340345184718842 57.013463136916954, 18.298745184680115 56.936100136844914, 18.144582184536546 56.91479113682507, 18.256663184640928 57.03221813693443, 18.254445184638854 57.07916313697817, 18.17333618456331 57.14193613703662, 18.11527318450925 57.52527313739361, 18.18530018457446 57.592236137455984, 18.33889118471751 57.68166313753929, 18.466527184836366 57.81027313765904, 18.68597318504075 57.914854137756464, 18.88194518522326 57.91971813776098, 19.00389118533684 57.89889113774157)), ((16.42971818293944 56.20888213616763, 16.403327182914865 56.27416413622845, 16.39166318290401 56.46500013640616, 16.420273182930657 56.58639113651921, 16.61430018311134 56.87096313678424, 16.749445183237214 56.939718136848285, 16.848054183329054 57.0641631369642, 16.96124518343447 57.2265271371154, 16.97332718344572 57.30527313718872, 17.035554183503677 57.35194513723221, 17.102082183565642 57.34944513722988, 17.124163183586205 57.320827137203224, 17.050554183517647 57.186663137078284, 16.92666318340227 57.03805413693988, 16.838891183320527 56.8295821367457, 16.77027318325662 56.79582713671428, 16.576663183076306 56.40694513635211, 16.57166318307165 56.355000136303715, 16.496109183001266 56.240827136197396, 16.42971818293944 56.20888213616763)), ((11.465000178315677 58.066109137897314, 11.401945178256966 58.13360913796018, 11.410554178264988 58.14750013797311, 11.673191178509569 58.285545138101696, 11.736663178568705 58.28166313809808, 11.812427178639268 58.217709138038515, 11.803336178630786 58.11874513794635, 11.676391178512574 58.09888213792783, 11.553336178397956 58.11527313794312, 11.466527178317108 58.09860913792758, 11.465000178315677 58.066109137897314)), ((11.518127178365177 57.98069113781776, 11.500000178348273 58.03402713786744, 11.525273178371833 58.048473137880904, 11.735882178567977 58.0417181378746, 11.741663178573361 58.02777313786163, 11.725973178558746 57.99208213782836, 11.594445178436246 57.93249113777287, 11.525282178371839 57.950000137789175, 11.518127178365177 57.98069113781776)), ((19.126109185450645 57.839718137686475, 19.035973185366714 57.89874513774146, 19.09236318541923 57.97194513780963, 19.296391185609252 57.97666313781403, 19.3342361856445 57.95936313779791, 19.16666318548843 57.92819113776886, 19.140836185464366 57.90471813774701, 19.126109185450645 57.839718137686475)), ((18.56166318492498 60.30527313998272, 18.401109184775436 60.365273140038596, 18.37291818474918 60.49693614016121, 18.422500184795354 60.48666314015165, 18.50721818487426 60.348054140022555, 18.5372181849022 60.342500140017364, 18.56166318492498 60.30527313998272)), ((17.25638218370932 59.373327139114764, 17.151391183611565 59.38513613912576, 17.07013618353588 59.456663139192386, 17.266945183719173 59.444163139180745, 17.317082183765876 59.40555413914478, 17.25638218370932 59.373327139114764)), ((17.777773184194928 59.30860913905448, 17.67194518409636 59.3347181390788, 17.60805418403686 59.41916313915746, 17.65055418407644 59.42416313916212, 17.775554184192856 59.37040913911204, 17.777773184194928 59.30860913905448)), ((17.484718183921984 62.36305414189917, 17.416109183858083 62.377982141913066, 17.370763183815853 62.47180014200043, 17.46763618390608 62.46000014198944, 17.54250018397579 62.366100141901995, 17.484718183921984 62.36305414189917))) +ISR West Bank MULTIPOLYGON (((35.5586092007546 32.20304511381046, 35.516391200715304 32.041109113659644, 35.523745200722146 31.998054113619546, 35.53554520073314 31.929718113555907, 35.54888220074554 31.828327113461484, 35.55540020075162 31.763909113401482, 35.53867320073604 31.734936113374502, 35.526109200724335 31.711664113352825, 35.49805420069822 31.641664113287632, 35.48971820069045 31.603882113252453, 35.482773200683994 31.562218113213646, 35.47916320068063 31.52944511318313, 35.47820020067974 31.4973181131532, 35.451109200654486 31.49944511315519, 35.400673200607514 31.4935541131497, 35.378609200586965 31.48416411314095, 35.25916320047574 31.403609113065926, 35.240554200458405 31.384164113047817, 35.22040920043963 31.376800113040957, 35.13860920036345 31.361945113027133, 34.937563200176214 31.35069111301665, 34.90819120014885 31.360554113025827, 34.88985420013179 31.380554113044454, 34.88819120013022 31.412500113074202, 34.91055420015107 31.44388211310344, 34.93721820017589 31.48166411313862, 34.946382200184416 31.50200911315757, 34.94582720018391 31.559164113210798, 34.950273200188064 31.586800113236535, 34.96136320019838 31.603354113251953, 34.98554520022091 31.633327113279876, 35.001663200235924 31.64694511329256, 35.09750020032516 31.708327113349725, 35.16290920038608 31.74486411338374, 35.20971820042968 31.750000113388523, 35.22761820044636 31.77510011341191, 35.153054200376914 31.81305411344725, 35.108282200335225 31.8330731134659, 35.03582720026773 31.82221811345579, 35.014163200247566 31.82027311345398, 34.97513620021121 31.823327113456827, 34.96555420020229 31.83055411346355, 34.966109200202794 31.86138211349227, 34.98750020022271 31.96889111359239, 35.00086320023516 31.98531811360769, 35.00750020024134 32.028054113647485, 35.00610020024004 32.0541641136718, 34.98583620022117 32.13250011374477, 34.97916320021497 32.1530541137639, 35.02555420025817 32.23930011384422, 35.04777320027887 32.36750011396363, 35.045827200277046 32.38332711397837, 35.04721820027834 32.394436113988704, 35.05666320028715 32.425282114017435, 35.066382200296175 32.44721811403787, 35.08180020031054 32.471454114060435, 35.17944520040149 32.52750011411264, 35.20805420042814 32.54639111413023, 35.26346320047975 32.521664114107196, 35.28902720050354 32.51624511410215, 35.31736320052994 32.51693611410279, 35.35055420056085 32.523464114108876, 35.40819120061451 32.5041641140909, 35.42388220062912 32.4856911140737, 35.481109200682425 32.41277311400579, 35.55256320074898 32.39420011398849, 35.56035420075622 32.37782711397324, 35.57060920076577 32.21763611382406, 35.5586092007546 32.20304511381046), (35.256382200473126 31.808054113442594, 35.248891200466176 31.80889111344338, 35.24638220046381 31.808054113442594, 35.243609200461236 31.803891113438723, 35.251663200468755 31.788054113423968, 35.25443620047133 31.786391113422425, 35.25971820047624 31.787218113423194, 35.262500200478826 31.789718113425522, 35.26360920047986 31.803609113438455, 35.256382200473126 31.808054113442594))) +DZA Algeria POLYGON ((4.603354171925275 36.88790911817358, 4.788745172097947 36.893891118179155, 5.1004821723882685 36.77130911806499, 5.091318172379744 36.71061811800847, 5.161945172445513 36.67235411797283, 5.328054172600218 36.640273117942954, 5.531391172789597 36.69416411799314, 5.588336172842617 36.76575411805982, 5.704582172950893 36.821945118112154, 6.000000173225999 36.83777311812689, 6.23333617344332 36.91360911819751, 6.27055417347799 37.020273118296856, 6.398336173596988 37.086391118358435, 6.503891173695308 37.07832711835093, 6.582154173768174 36.9838181182629, 6.92041817408321 36.884300118170216, 7.17055417431618 36.920000118203475, 7.250418174390546 36.984436118263474, 7.2488911743891435 37.02750011830359, 7.189654174333953 37.07881811835138, 7.229718174371271 37.086391118358435, 7.463609174589095 37.04250011831756, 7.6147181747298305 36.97569111825534, 7.761391174866446 36.96597311824628, 7.773054174877302 36.879718118165954, 7.8766631749738 36.847500118135954, 8.05139117513653 36.8747181181613, 8.225627175298797 36.95277311823399, 8.390273175452137 36.91888211820243, 8.622027175667967 36.94136411822336, 8.638054175682896 36.83110911812068, 8.476391175532342 36.74360911803919, 8.45000017550774 36.6608271179621, 8.207636175282033 36.556109117864565, 8.181663175257853 36.505273117817225, 8.37027317543351 36.452564117768134, 8.37639117543921 36.42013611773794, 8.260554175331322 35.8563821172129, 8.279163175348657 35.74652711711059, 8.344863175409841 35.64416411701525, 8.308336175375814 35.3391641167312, 8.40110917546221 35.19221811659435, 8.329509175395543 35.10867311651654, 8.286109175355108 34.965554116383245, 8.285482175354531 34.75069111618315, 8.227082175300154 34.69367311613004, 8.252709175324014 34.65520911609421, 8.120836175201191 34.537909115984974, 7.8688911749665635 34.436100115890156, 7.783745174887258 34.250618115717415, 7.649163174761924 34.20874511567841, 7.528891174649914 34.104309115581145, 7.492500174615998 33.88750011537924, 7.557363174676425 33.67624511518248, 7.725027174832576 33.419400114943286, 7.743054174849362 33.22916411476611, 8.078400175161676 33.110827114655905, 8.157773175235604 33.02805411457881, 8.306109175373734 32.834164114398234, 8.348609175413316 32.53333611411807, 9.057218176073263 32.09555411371035, 9.537109176520204 30.234391111977004, 9.311391176309996 30.1272181118772, 9.661109176635676 29.649164111431972, 9.757218176725189 29.454164111250364, 9.839718176802023 29.160000110976398, 9.871663176831788 28.806109110646815, 9.790282176755994 28.27055411014804, 9.955836176910168 27.84624510975287, 9.734445176703986 27.316036109259073, 9.848327176810045 26.90860910887963, 9.93055417688663 26.8597181088341, 9.895836176854289 26.695554108681208, 9.916945176873952 26.67333610866052, 9.871663176831788 26.514164108512276, 9.499445176485125 26.357500108366366, 9.39819117639081 26.199864108219558, 9.398336176390956 26.153327108176228, 10.032082176981191 25.329445107408915, 10.054445177002009 24.838054106951276, 10.21833617715464 24.751109106870302, 10.252218177186194 24.605827106735006, 10.414582177337422 24.48332710662092, 10.480000177398324 24.478054106616, 10.715273177617462 24.567218106699045, 11.558891178403144 24.3025001064525, 11.986473178801361 23.522309105725896, 9.742863176711836 22.22639110451898, 7.4637731745892495 20.856673103243324, 5.812500173051376 19.446109101929636, 3.331945170741193 18.976391101492183, 3.1170091705410243 19.145554101649722, 3.278054170691007 19.40582710189213, 3.21152717062904 19.5566641020326, 3.2330541706490976 19.81714510227519, 2.902218170340973 19.966945102414698, 2.5877821700481434 20.001664102447037, 2.421663169893435 20.053054102494897, 2.3441631698212575 20.177773102611056, 2.2036091696903384 20.2830541027091, 2.090836169585316 20.21874510264921, 1.7897181693048765 20.31290910273691, 1.668400169191898 20.415618102832568, 1.6616631691856298 20.538191102946726, 1.627500169153791 20.571109102977374, 1.1763911687336872 20.73374510312884, 1.1602821687186804 20.80013610319068, 1.1971451687529964 21.002482103379123, 1.1708001687284764 21.100854103470738, -0.0080548323694245 21.830554104150323, -2.0899998343084008 23.25000010547228, -4.525281836576426 24.825000106939115, -6.662781838567128 26.129164108153716, -8.666790840433492 27.290454109235256, -8.667217840433892 28.7094451105568, -8.495554840274025 28.79055411063233, -8.17236383997303 29.04347311086788, -7.986945839800342 29.122773110941736, -7.6423638394794295 29.386109111186983, -7.436390839287611 29.396109111196296, -7.296108839156972 29.539854111330172, -7.126254838998761 29.63582711141956, -6.583399838493193 29.568327111356695, -6.511254838425998 29.633891111417753, -6.481663838398447 29.739582111516185, -6.400281838322655 29.804445111576598, -6.224445838158886 29.798882111571416, -6.139308838079614 29.84819111161734, -5.992917837943253 29.830554111600904, -5.530690837512793 29.905973111671145, -5.2758368372754205 30.055273111810195, -5.080972837093952 30.262364112003056, -4.969717836990327 30.46332711219023, -4.915136836939496 30.509854112233555, -4.399581836459362 30.647218112361486, -4.164999836240895 30.772500112478156, -4.008054836094715 30.913327112609323, -3.704717835812204 30.941945112635977, -3.62221783573537 30.973609112665457, -3.592845835708033 31.028264112716357, -3.6001368357148067 31.090827112774633, -3.697781835805756 31.150273112829993, -3.8238908359232084 31.161591112840526, -3.803890835904582 31.339164113005907, -3.842990835940981 31.489791113146197, -3.813472835913501 31.69805411334015, -3.6852818357941146 31.71582711335671, -3.5170818356374696 31.67326411331706, -2.9994458351553703 31.83332711346614, -2.9594458351181174 31.86889111349926, -2.9344458350948344 32.03290911365201, -2.859445835024985 32.08652711370195, -2.338190834539546 32.15721811376778, -1.2591638335346147 32.08527311370078, -1.1805548334614002 32.11221811372587, -1.2066638334857203 32.17277311378227, -1.2918728335650655 32.172291113781824, -1.257726833533269 32.208018113815086, -1.2504178335264555 32.32347311392262, -1.1915268334716131 32.4056911139992, -1.1176368334027984 32.41693611400966, -1.0118088333042579 32.50555411409219, -1.3827818336497444 32.72444511429606, -1.5424998337985016 32.939436114496274, -1.4861818337460306 32.9818731145358, -1.49020883374979 33.07347311462111, -1.6666638339141286 33.25888211479379, -1.6672908339147057 33.37651811490335, -1.6006908338526955 33.55971811507396, -1.65437283390267 33.66277311516994, -1.7282728339715163 33.704491115208796, -1.6544458339027415 34.08360911556187, -1.750554833992254 34.34944511580946, -1.7933368340320897 34.378327115836356, -1.6925818339382772 34.489082115939496, -1.8549638340894887 34.614373116056186, -1.7575998339988246 34.75464511618682, -2.180281834392474 35.01221811642671, -2.2094458344196255 35.08582711649527, -1.9797178342056725 35.073327116483625, -1.7805548340201938 35.1172181165245, -1.471390833732272 35.306527116700806, -1.3693088336372057 35.312918116706754, -1.2745818335489787 35.381800116770904, -1.168890833450547 35.577500116953175, -1.0358268333266096 35.67693611704577, -0.7916638330992214 35.7650001171278, -0.6972178330112513 35.71971811708562, -0.6180548329375313 35.71832711708433, -0.5298638328553977 35.769718117132186, -0.4778458328069632 35.85374511721044, -0.3731268327094313 35.9027731172561, -0.2444458325895766 35.810827117170476, -0.1208368324744526 35.78360911714512, -0.0522178324105482 35.80610911716607, 0.0416631676768873 35.87069111722623, 0.1271541677564869 36.0449271173885, 0.2041631678282272 36.10333611744289, 0.6158361682116151 36.30582711763148, 0.8669451684454828 36.376664117697445, 0.9475001685204916 36.44888211776471, 1.025000168592669 36.473882117787994, 1.1825001687393524 36.51221811782369, 2.0443091695419753 36.566664117874396, 2.339163169816601 36.6352731179383, 2.434445169905331 36.59027311789639, 2.5725001700338908 36.58916411789535, 2.779445170226637 36.67721811797736, 2.90020917033911 36.79478211808686, 3.030482170460431 36.80576411809707, 3.130691170553746 36.738882118034795, 3.228054170644441 36.778609118071785, 3.4791631708783086 36.768054118061954, 3.6250001710141078 36.810554118101535, 3.747918171128589 36.88916411817475, 3.9016631712717924 36.91471811819855, 3.9588911713250923 36.88860911817423, 4.603354171925275 36.88790911817358)) +AND Andorra MULTIPOLYGON (((1.4458361689846129 42.6019451234952, 1.4865271690225086 42.650418123540334, 1.5597181690906723 42.65596412354549, 1.6983361692197718 42.62610912351769, 1.7386091692572734 42.616391123508635, 1.7817181692974202 42.56996412346541, 1.7713911692878241 42.57110912346647, 1.741873169260316 42.560627123456726, 1.7241001692437692 42.52138212342015, 1.7236091692433035 42.509436123409046, 1.7188911692389297 42.5030541234031, 1.6577821691820134 42.46958212337191, 1.537500169069972 42.436664123341274, 1.5122181690464345 42.43638212334099, 1.4515271689899123 42.446245123350195, 1.4241631689644407 42.49332712339404, 1.4213911689618612 42.54582712344293, 1.4344451689740083 42.576382123471376, 1.4458361689846129 42.6019451234952))) +CMR Cameroon MULTIPOLYGON (((10.181073177119941 2.167864085838019, 10.07389117702013 2.167782085837942, 10.020973176970841 2.168191085838316, 9.98263617693513 2.1733360858431183, 9.93527317689103 2.1913910858599337, 9.896663176855071 2.2097180858770002, 9.833127176795898 2.2590270859229236, 9.825836176789096 2.278609085941156, 9.811763176775997 2.3437000860017747, 9.816663176780565 2.3497180860073854, 9.82139117678497 2.4263910860787945, 9.816663176780565 2.460554086110605, 9.814445176778491 2.481664086130266, 9.820000176783651 2.542218086186665, 9.823327176786762 2.5666640862094283, 9.87444517683437 2.8469450864704555, 9.896245176854677 2.9556910865717327, 9.909863176867361 2.9840270865981324, 9.935209176890964 3.0060450866186414, 9.952500176907051 3.033054086643787, 9.96221817691611 3.058891086667856, 9.965136176918833 3.085209086692359, 9.953891176908371 3.1161090867211385, 9.935554176891287 3.1661090867677046, 9.928609176884805 3.1858360867860824, 9.913327176870581 3.247082086843122, 9.927936176884174 3.268327086862911, 9.87833617683799 3.3025000868947245, 9.851945176813416 3.34194508693146, 9.811945176776163 3.396664086982426, 9.721945176692344 3.489718087069093, 9.697773176669841 3.5066640870848715, 9.66166317663621 3.531245087107763, 9.735882176705331 3.5879180871605456, 9.745773176714522 3.6175820871881683, 9.708545176679849 3.5995540871713843, 9.665500176639767 3.593736087165965, 9.627118176604029 3.597227087169216, 9.636663176612927 3.6466640872152567, 9.554027176535953 3.7895820873483643, 9.543054176525743 3.811527087368802, 9.640554176616547 3.857218087411354, 9.72166317669209 3.8425000873976387, 9.722500176692847 3.865282087418862, 9.677773176651215 3.9011090874522267, 9.613054176590936 3.9494450874972387, 9.528327176512022 4.030000087572262, 9.498682176484408 4.069445087608997, 9.50067317648626 4.101618087638968, 9.488363176474792 4.11291808764949, 9.44860917643777 4.0775000876164995, 9.449582176438696 4.072664087611997, 9.455827176444501 4.064445087604341, 9.507500176492613 4.018436087561497, 9.528400176512093 3.9823640875278983, 9.468336176456148 3.9080540874586944, 9.435000176425092 3.8994450874506725, 9.39778217639045 3.9000000874511898, 9.372773176367161 3.902500087453518, 9.34492717634123 3.9125000874628313, 9.331563176328757 3.9220910874717703, 9.310000176308677 3.9422180874905166, 9.215000176220201 3.998336087542782, 9.102500176115427 4.031664087573816, 9.039445176056716 4.061109087601238, 8.974100175995858 4.099791087637271, 8.976663175998254 4.148609087682729, 8.983327176004451 4.16944508770213, 8.988191176008968 4.206391087736549, 8.960691175983357 4.242918087770562, 8.941109175965124 4.259445087785949, 8.924445175949614 4.2970820878210105, 8.905554175932025 4.372218087890985, 8.897500175924506 4.45069108796406, 8.908054175934353 4.493891088004304, 8.923609175948826 4.5158360880247415, 8.931800175956454 4.538473088045819, 8.898609175925543 4.588336088092262, 8.841282175872152 4.637845088138363, 8.841391175872275 4.612082088114377, 8.864718175893984 4.591109088094839, 8.873645175902311 4.548436088055098, 8.784863175819623 4.5408360880480245, 8.72610917576489 4.576182088080941, 8.666391175709293 4.681391088178927, 8.668054175710836 4.643891088144002, 8.675000175717287 4.584718088088891, 8.686663175728171 4.553473088059789, 8.711663175751454 4.543745088050727, 8.724163175763096 4.522082088030558, 8.714163175753782 4.502636088012437, 8.537363175589121 4.50368208801342, 8.508400175562144 4.5235360880319035, 8.502363175556525 4.554445088060689, 8.510554175564153 4.628609088129764, 8.525554175578122 4.668609088167017, 8.583609175632176 4.805136088294162, 8.591736175639738 4.81093608829957, 8.602845175650089 4.8104180882990875, 8.6329181756781 4.825000088312663, 8.635063175680102 4.846109088332327, 8.620554175666598 4.872082088356521, 8.620836175666852 4.892364088375402, 8.681663175723514 4.972218088449779, 8.716945175756365 5.01860908849298, 8.81277317584562 5.155691088620642, 8.82471817585673 5.1886090886513045, 8.840900175871809 5.302573088757441, 8.832082175863604 5.34013608879242, 8.837218175868372 5.379718088829293, 8.862291175891727 5.503818088944868, 8.884163175912107 5.538745088977393, 8.907082175933454 5.5608360889979735, 8.92000017594546 5.603745089037929, 8.904863175931382 5.633191089065349, 8.88028217590849 5.657218089087735, 8.85082717588105 5.722500089148525, 8.864445175893735 5.837573089255699, 8.934509175958993 5.902918089316557, 8.960000175982714 5.907364089320694, 9.07166317608673 6.013609089419646, 9.223327176227968 6.150554089547185, 9.333054176330165 6.279718089667483, 9.36958217636419 6.326527089711078, 9.409582176401443 6.326664089711201, 9.432082176422398 6.327218089711721, 9.455554176444252 6.369164089750782, 9.46852717645632 6.404300089783504, 9.525273176509188 6.4297180898071815, 9.5944451765736 6.497773089870563, 9.637782176613968 6.5233360898943715, 9.655554176630517 6.5258360898967, 9.708845176680143 6.521254089892423, 9.744163176713045 6.639445090002496, 9.786391176752375 6.777782090131339, 9.795554176760902 6.801664090153579, 9.879863176839422 6.7805540901339185, 10.095000177039765 6.962782090303634, 10.166109177105994 7.020136090357042, 10.178191177117242 7.002782090340887, 10.18777317712619 6.978336090318123, 10.188891177127232 6.942364090284613, 10.193054177131103 6.922636090266238, 10.210136177147007 6.895418090240895, 10.230691177166136 6.881245090227694, 10.269445177202243 6.87471809022162, 10.51333617742938 6.8780540902247225, 10.56000017747283 7.02166409035847, 10.620345177529032 7.057082090391461, 10.734445177635308 7.001391090339595, 10.821391177716293 6.970273090310613, 10.84236317773582 6.959654090300717, 10.863745177755732 6.925836090269229, 10.880418177771247 6.8723640902194205, 10.881945177772678 6.83360909018333, 10.903054177792342 6.806945090158493, 10.940973177827658 6.779027090132502, 10.962918177848081 6.777218090130816, 11.014727177896333 6.777854090131399, 11.04360917792323 6.753336090108576, 11.076873177954212 6.709027090067309, 11.082500177959446 6.677782090038207, 11.07583617795325 6.650000090012327, 11.073327177950915 6.596245089962267, 11.08833617796489 6.5250000898959115, 11.093745177969936 6.503336089875745, 11.112363177987277 6.453336089829179, 11.127845178001678 6.437918089814815, 11.188191178057878 6.43389108981107, 11.20221817807095 6.436945089813904, 11.270000178134069 6.433191089810407, 11.340273178199539 6.440836089817537, 11.380763178237231 6.454654089830399, 11.409654178264134 6.484309089858016, 11.414582178268745 6.512918089884664, 11.4380541782906 6.5900000899564475, 11.46402717831478 6.601664089967315, 11.512154178359594 6.603400089968929, 11.557773178402101 6.6583360900201, 11.580973178423704 6.720073090077591, 11.5886091784308 6.759445090114255, 11.586873178429187 6.786182090139164, 11.559236178403438 6.819582090170272, 11.583609178426144 6.885836090231976, 11.641945178480483 6.946527090288498, 11.701391178535857 6.976109090316044, 11.76069117859106 7.002082090340238, 11.864163178687448 7.084718090417198, 11.882500178704504 7.132218090461436, 11.788327178616811 7.252845090573771, 11.75496317858574 7.26830009058817, 11.799436178627161 7.296664090614584, 11.846391178670899 7.381391090693498, 11.864300178687557 7.405000090715475, 11.892218178713563 7.42528209073437, 11.91374517873362 7.445282090752997, 12.042291178853333 7.577364090876003, 12.03513617884667 7.636527090931111, 12.026245178838394 7.655000090948306, 12.025973178838143 7.676809090968618, 12.031527178843305 7.709582090999149, 12.043609178854553 7.739718091027214, 12.053609178863866 7.757218091043512, 12.063891178873462 7.77471809105981, 12.076663178885354 7.796391091079997, 12.096109178903447 7.826109091107668, 12.112918178919102 7.84402709112436, 12.141109178945356 7.877773091155788, 12.16889117897125 7.926664091201317, 12.209445179009009 8.003336091272729, 12.20166317900177 8.042500091309194, 12.199582178999833 8.083954091347806, 12.204027179003958 8.117364091378917, 12.21263617901198 8.136809091397026, 12.229163179027381 8.158327091417078, 12.245527179042597 8.177173091434625, 12.255554179051956 8.197773091453811, 12.256663179052993 8.217782091472444, 12.25374517905027 8.24194509149494, 12.240973179038377 8.276527091527157, 12.237082179034758 8.31986409156751, 12.242773179040057 8.377500091621187, 12.250554179047299 8.400973091643053, 12.269300179064743 8.423891091664402, 12.290836179084806 8.433191091673052, 12.314163179106544 8.427918091668147, 12.339027179129687 8.422082091662716, 12.37097317915945 8.446945091685862, 12.420418179205484 8.504164091739156, 12.41610917920147 8.546945091778994, 12.402845179189114 8.563127091794072, 12.404300179190471 8.600273091828669, 12.476663179257883 8.627918091854411, 12.498054179277801 8.627364091853892, 12.546391179322825 8.613054091840567, 12.613609179385406 8.6316640918579, 12.68110917944827 8.656800091881308, 12.79721817955641 8.771391091988036, 12.815000179572962 8.814718092028386, 12.82541817958267 8.853336092064353, 12.851245179606735 9.017918092217627, 12.848054179603764 9.038327092236642, 12.838054179594451 9.068609092264836, 12.89778217965008 9.34805409252509, 12.973745179720822 9.456527092626118, 13.023891179767531 9.496109092662977, 13.060973179802062 9.510273092676172, 13.096391179835052 9.51194509267772, 13.150282179885238 9.515209092680763, 13.191245179923385 9.528891092693513, 13.218054179948354 9.5511090927142, 13.24180917997046 9.585000092745759, 13.259718179987146 9.751664092900981, 13.23389117996311 9.864654093006209, 13.228191179957776 9.906245093044944, 13.243891179972422 10.031664093161751, 13.25305417998095 10.071809093199136, 13.27076317999743 10.086873093213171, 13.326391180049256 10.101664093226944, 13.395691180113772 10.110191093234889, 13.404163180121685 10.115418093239754, 13.45430018016836 10.158745093280103, 13.465554180178856 10.179027093298998, 13.468682180181759 10.207082093325127, 13.459027180172768 10.238609093354484, 13.519445180229042 10.502218093599993, 13.545273180253105 10.595836093687183, 13.558191180265112 10.63582709372443, 13.57139118027743 10.668054093754435, 13.58333618028854 10.691109093775907, 13.598891180303042 10.710836093794285, 13.617773180320626 10.733609093815488, 13.64916318034986 10.771945093851187, 13.676945180375725 10.8075000938843, 13.706391180403159 10.84666409392078, 13.715418180411547 10.869027093941611, 13.71833618041427 10.881545093953264, 13.77090018046323 10.939309094007058, 13.774718180466778 10.97582709404108, 13.807218180497046 11.055827094115585, 13.886663180571048 11.170554094222425, 13.984718180662355 11.267500094312709, 14.013745180689398 11.282009094326227, 14.087918180758464 11.25791809430379, 14.114718180783427 11.247500094294082, 14.154373180820357 11.234864094282315, 14.18860918085224 11.24416409429098, 14.224582180885761 11.267218094312454, 14.329718180983662 11.338891094379207, 14.373891181024817 11.378054094415674, 14.405691181054408 11.400136094436235, 14.436527181083136 11.405282094441034, 14.46208218110695 11.414164094449305, 14.614718181249089 11.503609094532607, 14.644509181276845 11.572354094596633, 14.638054181270832 11.650836094669728, 14.593745181229565 11.690273094706455, 14.588609181224768 11.755000094766729, 14.61221818124676 11.82528209483219, 14.630836181264101 11.891391094893763, 14.637218181270043 11.979927094976219, 14.61965418125368 12.028609095021551, 14.649654181281619 12.121036095107627, 14.645282181277565 12.188327095170308, 14.55208218119077 12.24889109522671, 14.519718181160613 12.315554095288789, 14.490836181133716 12.335836095307684, 14.469191181113558 12.340900095312392, 14.43063618107766 12.348164095319163, 14.392500181042124 12.352773095323457, 14.322082180976565 12.355973095326434, 14.2390271808992 12.354164095324748, 14.174445180839058 12.39666409536433, 14.184163180848117 12.415000095381401, 14.197363180860407 12.47500009543728, 14.199163180862087 12.50139109546187, 14.173054180837767 12.623609095575688, 14.100827180770494 12.95721809588639, 14.076945180748254 13.068336095989878, 14.074718180746174 13.081664096002285, 14.159718180825337 13.083054096003579, 14.43597318108263 13.085000096005388, 14.457082181102294 13.065973095987673, 14.472773181116906 13.040273095963741, 14.486945181130096 13.019718095944597, 14.500873181143078 13.00131809592746, 14.525554181166058 12.975000095902942, 14.53971818117924 12.853054095789375, 14.546245181185327 12.771664095713575, 14.581527181218178 12.738054095682273, 14.624200181257919 12.734600095679056, 14.708745181336667 12.714718095660544, 14.82242718144255 12.633773095585155, 14.902345181516978 12.37597309534506, 14.908336181522543 12.320554095293446, 14.902218181516844 12.228336095207567, 14.898891181513761 12.200282095181436, 14.894336181509516 12.155809095140015, 14.951527181562767 12.097636095085832, 14.973400181583145 12.091391095080027, 15.0426001816476 12.078891095068386, 15.081945181684233 11.754718094766474, 15.06250018166611 11.690000094706193, 15.090763181692438 11.588191094611375, 15.109300181709699 11.496527094526016, 15.067636181670906 11.43666409447026, 15.050973181655394 11.394864094431327, 15.018263181624917 11.202154094251853, 15.019163181625771 11.13694509419112, 15.026063181632196 11.079409094137546, 15.075973181678677 10.903609093973813, 15.077218181679825 10.880136093951947, 15.066391181669758 10.845000093919225, 15.058054181661987 10.825282093900867, 15.058191181662096 10.801945093879127, 15.092218181693795 10.731664093813677, 15.115136181715144 10.704027093787943, 15.136663181735202 10.66055409374745, 15.1500001817476 10.61555409370554, 15.190282181785136 10.50277309360051, 15.276945181865841 10.390554093495993, 15.373054181955354 10.248609093363797, 15.499027182072666 10.101391093226695, 15.541945182112642 10.072500093199778, 15.589163182156625 10.049445093178306, 15.630282182194918 10.027218093157614, 15.653473182216516 10.011809093143256, 15.675300182236839 9.988018093121099, 15.591663182158953 9.967218093101735, 15.53500018210616 9.953609093089057, 15.422218182001131 9.92694509306422, 15.284163181872572 9.973609093107683, 15.24000018183142 9.987500093120616, 15.15944518175641 9.98916409312217, 15.123609181723026 9.984164093117514, 15.101245181702211 9.975827093109757, 15.083473181685662 9.955418093090742, 15.05305418165733 9.948336093084151, 15.0175001816242 9.949718093085437, 14.926663181539624 9.970064093104384, 14.783473181406265 9.923191093060723, 14.652773181284545 9.95916409309423, 14.486109181129308 9.993891093126578, 14.450554181096209 9.998054093130449, 14.194773180857993 9.98175409311527, 14.180554180844751 9.935827093072504, 14.14097318080789 9.860000093001872, 14.123336180791455 9.831664092975487, 14.108609180777734 9.811391092956612, 14.077500180748757 9.783609092930732, 14.059445180731956 9.774164092921936, 14.034163180708418 9.758191092907055, 14.010000180685893 9.7300000928808, 13.957636180637138 9.646454092802998, 13.969445180648137 9.629718092787414, 14.007845180683887 9.617500092776027, 14.328609180982625 9.258336092441539, 14.35250018100487 9.230000092415139, 14.348054181000748 9.196945092384354, 14.559445181197617 9.00750009220792, 14.621109181255036 8.960554092164202, 14.832773181452183 8.813609092027349, 14.855836181473649 8.817218092030714, 14.876109181492524 8.80930909202334, 14.922782181536007 8.77527309199165, 15.074163181676994 8.643609091869024, 15.207218181800897 8.477364091714193, 15.225200181817655 8.436200091675857, 15.264718181854448 8.339164091585488, 15.343609181927917 8.171945091429748, 15.361945181945003 8.142500091402326, 15.37652718195858 8.112082091374006, 15.380273181962082 8.077773091342053, 15.38916318197036 8.039582091306485, 15.433336182011487 7.9116640911873475, 15.444718182022086 7.8822180911599276, 15.477918182053003 7.810273091092924, 15.502291182075709 7.7749270910600075, 15.52402718209595 7.773891091059042, 15.579982182148058 7.760409091046483, 15.581945182149894 7.736109091023849, 15.584300182152077 7.690136090981028, 15.572773182141361 7.630000090925023, 15.547009182117364 7.582009090880334, 15.501945182075389 7.5294450908313735, 15.499009182072655 7.526609090828742, 15.445554182022875 7.394718090705908, 15.374718181956894 7.347500090661924, 15.299163181886541 7.297500090615358, 15.261109181851083 7.2686090905884555, 15.256736181847003 7.260091090580531, 15.231391181823426 7.2361090905581875, 15.21000018180348 7.191109090516278, 15.14208218174025 7.016527090353691, 15.13639118173495 6.9852820903245885, 15.12971818172872 6.951109090292761, 15.05291818165719 6.77131809012532, 14.996109181604282 6.740836090096934, 14.961945181572474 6.735973090092401, 14.938027181550183 6.686491090046317, 14.826663181446492 6.433609089810801, 14.796945181418806 6.390000089770183, 14.805000181426294 6.346664089729828, 14.742363181367978 6.264718089653513, 14.580273181217024 6.188891089582896, 14.449163181094917 6.09610908949648, 14.429791181076865 6.079682089481182, 14.418891181066726 6.0409730894451314, 14.424163181071634 6.006945089413435, 14.492845181135579 5.915973089328716, 14.55636318119474 5.906636089320017, 14.580273181217024 5.927218089339192, 14.604718181239775 5.922218089334535, 14.617218181251417 5.9012450893149975, 14.623054181256862 5.833891089252276, 14.626800181260336 5.724718089150599, 14.622363181256219 5.520691088960575, 14.617218181251417 5.495836088937438, 14.59139118122738 5.404718088852576, 14.565973181203702 5.358891088809898, 14.551391181190127 5.342500088794623, 14.532636181172649 5.291245088746891, 14.553609181192172 5.267782088725042, 14.585418181221797 5.2452730887040815, 14.60513618124017 5.237918088697228, 14.624718181258402 5.233609088693214, 14.651454181283299 5.219509088680084, 14.672500181302894 5.180000088643283, 14.687791181317152 5.119073088586546, 14.686036181315501 5.037500088510569, 14.67583618130601 5.015554088490134, 14.67295418130334 5.012054088486877, 14.691109181320229 4.981391088458324, 14.710836181338607 4.878054088362077, 14.720418181347526 4.805282088294305, 14.720273181347409 4.723336088217991, 14.723473181350386 4.643745088143859, 14.737363181363321 4.615345088117408, 14.804300181425646 4.538127088045499, 14.89221818150753 4.476664087988254, 14.930554181543243 4.46055408797325, 15.013682181620652 4.4147180879305665, 15.08694518168889 4.294718087818808, 15.093609181695086 4.266809087792808, 15.093609181695086 4.235000087763183, 15.103473181704288 4.140418087675101, 15.145000181742944 4.0718090876112, 15.043891181648803 4.029164087571488, 15.06389118166743 3.9613910875083747, 15.076945181679577 3.920554087470336, 15.122218181721735 3.858891087412914, 15.137500181735959 3.8383360873937704, 15.224163181816692 3.7219450872853628, 15.260273181850323 3.6738910872406194, 15.267173181856748 3.6668180872340344, 15.29527318188292 3.6397180872087915, 15.59027318215766 3.3447180869340514, 15.76777318232297 3.1475000867503695, 15.817563182369327 3.100418086706526, 15.865273182413773 3.108336086713905, 15.906945182452574 3.1125000867177732, 15.940000182483345 3.1005540867066514, 16.073609182607782 2.9433360865602367, 16.10305418263522 2.898336086518327, 16.111945182643495 2.858609086481323, 16.112354182643884 2.8256270864506092, 16.086663182619958 2.803745086430226, 16.07055418260495 2.79083608641821, 16.090554182623578 2.5380540861827825, 16.094718182627446 2.4977820861452784, 16.10610918263805 2.432500086084474, 16.111382182642956 2.410554086064039, 16.13347318266355 2.354864086012171, 16.17971818270661 2.2600000859238207, 16.192500182718504 2.237500085902866, 16.20700018273203 2.2212640858877535, 16.203536182728783 2.2135450858805683, 16.158127182686513 2.186391085855277, 16.112118182643655 2.2002090858681385, 16.083473182616984 2.1525000858237036, 16.083882182617344 2.044718085723332, 16.095273182627977 1.9501360856352363, 16.12916318265954 1.8450000855373219, 16.142773182672215 1.7991640854946382, 16.1610361826892 1.7247180854253088, 16.07221818260649 1.6541640853595965, 16.045136182581274 1.6743090853783542, 16.030000182567164 1.7100000854115933, 16.026109182563545 1.7305540854307395, 15.978336182519058 1.7711090854685096, 15.880554182428 1.8202820855143074, 15.757427182313336 1.9086090855965665, 15.687500182248186 1.933545085619798, 15.646109182209642 1.9313910856177898, 15.519163182091432 1.961109085645461, 15.491527182065681 1.9747180856581394, 15.448327182025452 1.9688910856527144, 15.294718181882388 1.976664085659948, 15.239163181830662 2.029718085709362, 15.211109181804517 2.03610908571531, 15.148891181746592 2.038745085717764, 15.123054181722523 2.012218085693064, 15.093263181694766 1.9804820856635104, 15.029163181635084 1.986945085669518, 14.887218181502874 2.016664085697201, 14.856663181474431 2.0827820857587795, 14.759163181383627 2.0725000857491978, 14.714163181341718 2.124164085797318, 14.562636181200588 2.168473085838585, 14.46305418110785 2.14305408581491, 14.298336180954436 2.152218085823449, 14.118609180787047 2.15805408582888, 13.750554180444283 2.1605540858312082, 13.661818180361621 2.160518085831171, 13.306073180030324 2.164100085834505, 13.293891180018989 2.1636090858340538, 13.296109180021034 2.1711090858410387, 13.294445180019494 2.225973085892136, 13.254582179982378 2.2661090859295143, 13.171391179904901 2.2829180859451697, 13.121663179858587 2.2752090859379877, 13.000000179745257 2.256109085920201, 12.864163179618771 2.240282085905463, 12.751945179514252 2.233054085898729, 12.631109179401705 2.251391085915813, 12.59583617936886 2.258891085922798, 12.523609179301587 2.283336085945564, 12.501800179281275 2.2926360859542143, 12.481800179262649 2.3001360859611992, 12.33565417912655 2.3179000859777545, 12.28889117908301 2.301664085962628, 12.229163179027381 2.283682085945884, 11.75639117858708 2.28236408594465, 11.700000178534538 2.3078450859683812, 11.579718178422524 2.315282085975312, 11.367345178224753 2.2988730859600253, 11.350554178209109 2.236391085901843, 11.339763178199064 2.1686090858387104, 11.225827178092942 2.1683360858384617, 11.082500177959446 2.168054085838193, 10.65332717755976 2.1675000858376734, 10.564718177477232 2.1675000858376734, 10.53721817745162 2.1675000858376734, 10.448609177369093 2.1675000858376734, 10.421391177343764 2.1675000858376734, 10.408663177331903 2.167845085837996, 10.332782177261237 2.1675000858376734, 10.305554177235877 2.1675000858376734, 10.181073177119941 2.167864085838019))) +CAF Central African Republic MULTIPOLYGON (((20.453300186686704 4.523791088032141, 20.457982186691055 4.619309088121099, 20.339300186580516 4.767500088259112, 20.178336186430613 4.872218088356647, 20.002082186266477 4.9772180884544355, 19.978054186244094 4.983745088460509, 19.95166318621952 4.9844450884611575, 19.92721818619674 4.987218088463749, 19.901391186172702 4.995136088471114, 19.88041818615315 5.011664088486512, 19.858109186132367 5.061854088533252, 19.841391186116823 5.084509088554356, 19.81263618609003 5.099864088568651, 19.760000186040998 5.118336088585863, 19.700482185985578 5.136664088602927, 19.649300185937904 5.142782088608627, 19.55721818585215 5.150554088615863, 19.415900185720545 5.131036088597682, 19.227918185545462 4.999864088475519, 19.20777318552672 4.969164088446931, 19.185409185505875 4.944236088423722, 19.1063911854323 4.93250008841278, 19.08541818541275 4.914718088396228, 19.06416318539297 4.889654088372879, 19.02860918535984 4.81500008830335, 18.987918185321945 4.7405540882340205, 18.955554185291817 4.712218088207635, 18.839445185183678 4.577782088082429, 18.822500185167883 4.543745088050727, 18.803609185150293 4.484718087995759, 18.793891185141263 4.460282087972999, 18.771245185120165 4.4152820879310894, 18.751663185101933 4.390554087908058, 18.733054185084598 4.378891087897202, 18.70750018506078 4.367218087886329, 18.62874518498745 4.354236087874241, 18.591036184952316 4.370073087888983, 18.56721818493014 4.361809087881284, 18.544445184908938 4.340000087860972, 18.535763184900844 4.311664087834586, 18.54374518490829 4.288336087812866, 18.567363184930286 4.260973087787377, 18.59250018495368 4.2287450877573605, 18.63027318498888 4.134718087669796, 18.643891185001564 4.053891087594522, 18.647082185004535 4.027500087569933, 18.648191185005544 3.993054087537857, 18.643327185001027 3.9672180875137997, 18.61055418497051 3.8669450874204045, 18.595000184956007 3.7691640873293437, 18.590691184951993 3.7258360872889966, 18.59250018495368 3.7008360872657136, 18.598327184959118 3.666109087233366, 18.618609184978 3.5494450871247096, 18.62495418498392 3.479445087059517, 18.60076318496138 3.4815270870614654, 18.581391184943357 3.5011090870796977, 18.568336184931184 3.538891087114891, 18.530691184896114 3.6011820871729014, 18.47971818484865 3.640836087209834, 18.45194518482279 3.6162450871869254, 18.26225418464611 3.564336087138585, 18.250554184635234 3.526527087103375, 18.23513618462087 3.5012450870798233, 18.21471818460185 3.4879180870674134, 18.193609184582186 3.4825000870623626, 18.169373184559618 3.490073087069419, 18.1623631845531 3.5252820871022124, 18.147563184539308 3.5477090871230956, 18.11097318450524 3.562218087136614, 18.06582718446319 3.5669450871410078, 18.043327184442234 3.565836087139985, 17.909445184317548 3.5527820871278237, 17.85805418426969 3.536664087112811, 17.840000184252858 3.58610908715886, 17.829373184242968 3.616045087186748, 17.76333618418147 3.62721808719715, 17.681109184104884 3.6300000871997327, 17.642218184068668 3.6294450871992154, 17.615273184043588 3.6297180871994783, 17.563891183995736 3.6533360872214757, 17.52194518395666 3.6861090872519924, 17.491109183927932 3.71007308727431, 17.46360918390232 3.7111090872752754, 17.41596318385797 3.6805730872468416, 17.3488911837955 3.6131640871840602, 17.10971818357274 3.567500087141525, 16.957427183430923 3.554864087129758, 16.876663183355703 3.565836087139985, 16.699163183190393 3.545282087120839, 16.66444518315805 3.535418087111651, 16.643054183138133 3.522782087099884, 16.586245183085225 3.4779180870581, 16.573682183073515 3.4496540870317745, 16.568473183068676 3.4102820869951103, 16.558745183059614 3.3309730869212473, 16.527773183030774 3.234164086831086, 16.505000183009543 3.2025000868015923, 16.4925001829979 3.1811090867816745, 16.4827091829888 3.1550000867573544, 16.466109182973327 2.949718086566179, 16.46950918297651 2.910973086530092, 16.495554183000763 2.8843090865052545, 16.501663183006457 2.849445086472784, 16.480273182986537 2.802218086428809, 16.441318182950255 2.720009086352249, 16.404163182915653 2.639718086277469, 16.30582718282406 2.4300000860821456, 16.27083618279147 2.355554086012816, 16.20700018273203 2.2212640858877535, 16.192500182718504 2.237500085902866, 16.17971818270661 2.2600000859238207, 16.13347318266355 2.354864086012171, 16.111382182642956 2.410554086064039, 16.10610918263805 2.432500086084474, 16.094718182627446 2.4977820861452784, 16.090554182623578 2.5380540861827825, 16.07055418260495 2.79083608641821, 16.086663182619958 2.803745086430226, 16.112354182643884 2.8256270864506092, 16.111945182643495 2.858609086481323, 16.10305418263522 2.898336086518327, 16.073609182607782 2.9433360865602367, 15.940000182483345 3.1005540867066514, 15.906945182452574 3.1125000867177732, 15.865273182413773 3.108336086713905, 15.817563182369327 3.100418086706526, 15.76777318232297 3.1475000867503695, 15.59027318215766 3.3447180869340514, 15.29527318188292 3.6397180872087915, 15.267173181856748 3.6668180872340344, 15.260273181850323 3.6738910872406194, 15.224163181816692 3.7219450872853628, 15.137500181735959 3.8383360873937704, 15.122218181721735 3.858891087412914, 15.076945181679577 3.920554087470336, 15.06389118166743 3.9613910875083747, 15.043891181648803 4.029164087571488, 15.145000181742944 4.0718090876112, 15.103473181704288 4.140418087675101, 15.093609181695086 4.235000087763183, 15.093609181695086 4.266809087792808, 15.08694518168889 4.294718087818808, 15.013682181620652 4.4147180879305665, 14.930554181543243 4.46055408797325, 14.89221818150753 4.476664087988254, 14.804300181425646 4.538127088045499, 14.737363181363321 4.615345088117408, 14.723473181350386 4.643745088143859, 14.720273181347409 4.723336088217991, 14.720418181347526 4.805282088294305, 14.710836181338607 4.878054088362077, 14.691109181320229 4.981391088458324, 14.67295418130334 5.012054088486877, 14.67583618130601 5.015554088490134, 14.686036181315501 5.037500088510569, 14.687791181317152 5.119073088586546, 14.672500181302894 5.180000088643283, 14.651454181283299 5.219509088680084, 14.624718181258402 5.233609088693214, 14.60513618124017 5.237918088697228, 14.585418181221797 5.2452730887040815, 14.553609181192172 5.267782088725042, 14.532636181172649 5.291245088746891, 14.551391181190127 5.342500088794623, 14.565973181203702 5.358891088809898, 14.59139118122738 5.404718088852576, 14.617218181251417 5.495836088937438, 14.622363181256219 5.520691088960575, 14.626800181260336 5.724718089150599, 14.623054181256862 5.833891089252276, 14.617218181251417 5.9012450893149975, 14.604718181239775 5.922218089334535, 14.580273181217024 5.927218089339192, 14.55636318119474 5.906636089320017, 14.492845181135579 5.915973089328716, 14.424163181071634 6.006945089413435, 14.418891181066726 6.0409730894451314, 14.429791181076865 6.079682089481182, 14.449163181094917 6.09610908949648, 14.580273181217024 6.188891089582896, 14.742363181367978 6.264718089653513, 14.805000181426294 6.346664089729828, 14.796945181418806 6.390000089770183, 14.826663181446492 6.433609089810801, 14.938027181550183 6.686491090046317, 14.961945181572474 6.735973090092401, 14.996109181604282 6.740836090096934, 15.05291818165719 6.77131809012532, 15.12971818172872 6.951109090292761, 15.13639118173495 6.9852820903245885, 15.14208218174025 7.016527090353691, 15.21000018180348 7.191109090516278, 15.231391181823426 7.2361090905581875, 15.256736181847003 7.260091090580531, 15.261109181851083 7.2686090905884555, 15.299163181886541 7.297500090615358, 15.374718181956894 7.347500090661924, 15.445554182022875 7.394718090705908, 15.499009182072655 7.526609090828742, 15.518609182090898 7.5183360908210375, 15.542500182113145 7.513891090816898, 15.565691182134742 7.512636090815718, 15.61694518218249 7.518609090821286, 15.642636182206417 7.5230540908254255, 15.690136182250654 7.5229180908253, 15.713609182272506 7.506809090810293, 15.727918182285833 7.476945090782479, 15.782709182336873 7.458536090765335, 15.913891182459054 7.4827820907879214, 15.974863182515833 7.501318090805185, 16.0187451825567 7.540073090841275, 16.034445182571318 7.571391090870449, 16.079445182613227 7.5944450908919094, 16.113054182644532 7.596109090893464, 16.14860918267763 7.600836090897872, 16.217636182741927 7.614373090910476, 16.40750018291874 7.691109090981939, 16.404163182915653 7.714718091003931, 16.410000182921067 7.7672180910528255, 16.430827182940476 7.798054091081539, 16.503054183007748 7.850554091130434, 16.53360918303619 7.867773091146475, 16.56770918306796 7.864945091143838, 16.563682183064202 7.8302090911114846, 16.568054183068284 7.7831910910676925, 16.781663183267227 7.565836090865275, 16.817454183300555 7.546300090847083, 16.831527183313653 7.549309090849874, 16.860000183340162 7.5691640908683695, 16.866182183345927 7.594236090891727, 16.869791183349292 7.621245090916872, 16.91332718338984 7.6425000909366645, 16.984445183456074 7.654445090947789, 17.058891183525418 7.662773090955554, 17.138336183599392 7.700554090990735, 17.218609183674147 7.758609091044804, 17.237218183691482 7.803054091086196, 17.255000183708034 7.812500091094989, 17.369445183814634 7.867218091145958, 17.450691183890285 7.901600091177983, 17.510827183946304 7.912218091187867, 17.587218184017445 7.933745091207911, 17.627636184055092 7.967154091239024, 17.6488911840749 7.988473091258882, 17.718327184139554 7.983609091254351, 17.883609184293476 7.958336091230819, 18.032773184432415 8.013473091282165, 18.240836184626176 8.025554091293415, 18.408054184781918 8.0330540913004, 18.561109184924447 8.03971809130661, 18.58889118495034 8.040282091307134, 18.618327184977744 8.060273091325755, 18.635554184993794 8.087218091350849, 18.634718184993005 8.135273091395604, 18.64527318500285 8.165282091423549, 18.665554185021733 8.193891091450197, 18.686663185041397 8.214164091469073, 18.704718185058198 8.223609091477869, 18.759163185108918 8.24347309149637, 18.802154185148936 8.256109091508137, 18.840273185184458 8.29221809154177, 18.90416318524396 8.367218091611619, 18.922500185261015 8.3924270916351, 18.93180018526968 8.423891091664402, 18.98750018532155 8.493609091729326, 19.058791185387946 8.57838209180828, 19.08860918541572 8.641109091866696, 19.12582718545039 8.672782091896195, 19.115000185440294 8.69139109191353, 19.030691185361775 8.754864091972635, 18.987218185321296 8.765273091982337, 18.925554185263877 8.79416409200924, 18.876373185218057 8.841427092053252, 18.869718185211866 8.861245092071712, 18.892500185233075 8.891391092099795, 18.929445185267497 8.920554092126949, 18.98889118532287 8.964164092167564, 19.023473185355073 8.984445092186448, 19.086936185414174 9.00944509220973, 19.109445185435135 9.013609092213613, 19.19331818551325 9.020991092220484, 19.411391185716354 9.016109092215942, 19.610836185902087 9.026664092225772, 19.830554186106724 9.053054092250349, 19.905554186176573 9.05916409225604, 19.933754186202833 9.057518092254512, 19.96333618623038 9.08000009227544, 20.064718186324797 9.134864092326538, 20.186945186438635 9.125827092318133, 20.27027318651625 9.118327092311148, 20.32541818656759 9.10471809229847, 20.371663186610675 9.108327092301835, 20.422218186657744 9.139718092331066, 20.459163186692166 9.175554092364436, 20.487782186718817 9.209718092396258, 20.49985418673006 9.241664092426007, 20.498473186728773 9.275854092457848, 20.800827187010356 9.42055409259261, 20.81684518702528 9.41566409258806, 20.82721818703493 9.451391092621336, 20.837773187044775 9.476391092644619, 20.875691187080065 9.511245092677072, 20.89402718709715 9.520136092685348, 20.97444518717205 9.603336092762845, 21.04805418724061 9.766391092914702, 21.225000187405385 9.942500093078706, 21.265627187443243 9.978054093111822, 21.292773187468526 9.972082093106266, 21.33916318751173 9.958473093093588, 21.36333618753423 9.96902709310342, 21.40833618757614 10.006945093138725, 21.43527318760124 10.041809093171196, 21.454163187618832 10.092773093218668, 21.454445187619086 10.113745093238194, 21.473609187636924 10.147782093269896, 21.5000001876615 10.17777309329783, 21.520273187680402 10.199445093318005, 21.53721818769617 10.21166409332939, 21.568891187725683 10.212918093330558, 21.608745187762793 10.212364093330038, 21.63888218779084 10.223054093339996, 21.666945187816992 10.235836093351907, 21.718400187864916 10.2966000934085, 21.747218187891747 10.409445093513582, 21.737773187882965 10.44853609354999, 21.719445187865887 10.468336093568439, 21.704854187852305 10.49805409359611, 21.7011091878488 10.520691093617188, 21.70250018785009 10.563336093656915, 21.719027187865493 10.638127093726567, 21.78582718792771 10.668336093754704, 21.819718187959268 10.678191093763871, 21.89583618803016 10.70500009378884, 21.957218188087325 10.732218093814197, 22.006109188132854 10.768891093848353, 22.24471818835508 10.910827093980544, 22.327918188432562 10.94347309401094, 22.364109188466273 10.955045094021713, 22.41381818851258 10.96416409403021, 22.43278218853024 10.986945094051421, 22.46332718855868 11.000836094064368, 22.676391188757123 10.969445094035123, 22.8250001888955 10.931109093999424, 22.866500188934168 10.922445093991357, 22.880000188946724 10.899718093970193, 22.90139118896667 10.865554093938371, 22.944163189006503 10.798054093875507, 23.009445189067293 10.698609093782892, 23.06027318911464 10.66444509375107, 23.30944518934669 10.451664093552907, 23.323891189360154 10.430000093532726, 23.53666318955831 10.083609093210129, 23.66916318968171 9.86694509300834, 23.693891189704743 9.668054092823112, 23.660273189673433 9.597773092757663, 23.649436189663334 9.579164092740328, 23.626036189641525 9.5428450927065, 23.64200918965642 9.443127092613636, 23.664718189677558 9.434718092605806, 23.649300189663194 9.27597309245796, 23.564445189584177 9.187218092375304, 23.5390271895605 9.179445092368056, 23.499645189523818 9.17721809236599, 23.478609189504226 9.14527309233624, 23.473054189499067 9.129718092321752, 23.448327189476032 9.019582092219181, 23.457918189484957 8.99083609219241, 23.489300189514182 8.966245092169501, 23.50986318953335 8.958327092162136, 23.532218189554158 8.961109092164719, 23.56118218958113 9.000554092201455, 23.58166318960022 8.993745092195113, 23.582636189601118 8.91221809211919, 23.56277318958263 8.868609092078572, 23.53652718955817 8.831600092044113, 23.508054189531663 8.808054092022175, 23.497636189521955 8.77180009198841, 23.529654189551763 8.708336091929311, 23.557500189577695 8.704445091925678, 23.739163189746904 8.705273091926458, 23.763745189769793 8.714582091935128, 23.78194518978674 8.723336091943281, 23.823891189825815 8.727782091947418, 23.92582718992074 8.718054091938356, 24.01555419000431 8.703891091925172, 24.051873190038123 8.693745091915716, 24.086936190070787 8.68832709191068, 24.1411821901213 8.686736091909196, 24.174463190152295 8.695891091917716, 24.201109190177107 8.68694509190938, 24.268327190239717 8.587500091816764, 24.241391190214642 8.562218091793227, 24.201945190177895 8.526109091759594, 24.163609190142182 8.473054091710182, 24.140273190120467 8.375827091619641, 24.153327190132615 8.349164091594801, 24.162773190141422 8.330554091577469, 24.184854190161985 8.309864091558197, 24.210000190185383 8.293054091542544, 24.230554190204543 8.284445091534522, 24.253054190225498 8.278327091528837, 24.336936190303618 8.262782091514353, 24.479718190436586 8.238054091491321, 24.62763619057435 8.220273091474766, 24.660000190604478 8.218609091473212, 24.72166319066193 8.209718091464936, 24.804445190739017 8.19278209144916, 24.843891190775764 8.175554091433114, 24.870136190800196 8.160973091419535, 24.938609190863957 8.08860909135214, 24.947500190872233 8.067082091332097, 24.943882190868862 8.04139109130817, 24.970273190893465 8.003336091272729, 25.017773190937703 7.955282091227971, 25.053891190971342 7.9211090911961435, 25.084718191000036 7.894864091171698, 25.111736191025216 7.891245091168329, 25.13944519105101 7.89778209117442, 25.18610919109446 7.901945091178291, 25.22555419113121 7.8727730911511316, 25.255827191159398 7.8456910911259, 25.28721819118863 7.778891091063699, 25.299300191199876 7.6829180909743116, 25.293745191194716 7.645418090939387, 25.267709191170468 7.626736090921995, 25.243891191148293 7.623336090918826, 25.19471819110248 7.595973090893338, 25.182636191091234 7.577918090876523, 25.20027319110767 7.516391090819226, 25.22145419112738 7.494309090798652, 25.267773191170534 7.4752820907809365, 25.33500019123312 7.420554090729965, 25.346800191244114 7.401391090712124, 25.352082191249053 7.372009090684756, 25.36986319126561 7.343891090658573, 25.45500019134488 7.297782090615627, 25.623891191502196 7.2111090905349045, 25.72971819160074 7.168054090494806, 25.85027319171303 7.109445090440218, 25.984445191837978 7.018336090355376, 26.047773191896965 6.963891090304671, 26.05221819190109 6.932782090275694, 26.06416319191223 6.9030540902480055, 26.097636191943394 6.8456910901945776, 26.11916319196345 6.826109090176345, 26.2704181921043 6.705973090064461, 26.31590019214667 6.700136090059019, 26.360836192188515 6.683336090043383, 26.40402719222874 6.644027090006773, 26.406282192230833 6.635245089998591, 26.36610919219342 6.583336089950251, 26.313609192144526 6.496391089869277, 26.298054192130053 6.465554089840552, 26.304373192135927 6.390000089770183, 26.372500192199368 6.346391089729579, 26.454854192276088 6.297782089684304, 26.52541819234179 6.216245089608364, 26.52847319234465 6.192364089586121, 26.518745192335587 6.169445089564775, 26.50000019231811 6.156527089552753, 26.463536192284153 6.1309730895289505, 26.442773192264838 6.102218089502173, 26.442291192264378 6.077427089479087, 26.56528219237893 6.028336089433367, 26.61221819242263 6.01444508942042, 26.668891192475428 6.007218089413698, 26.697500192502048 6.017500089423265, 26.735554192537506 6.009164089415506, 26.81290919260954 5.977636089386138, 26.824027192619894 5.960418089370108, 26.828327192623902 5.9144450893272875, 26.852982192646863 5.891391089305827, 26.92388219271288 5.865554089281758, 26.981663192766717 5.859445089276065, 27.110273192886496 5.791109089212426, 27.142773192916763 5.771945089194574, 27.201945192971863 5.708609089135592, 27.24083619300808 5.6477820890789445, 27.278891193043535 5.5838910890194455, 27.279863193044434 5.544582088982835, 27.257427193023545 5.509509088950168, 27.236318193003882 5.426454088872816, 27.254718193021006 5.331391088784287, 27.275000193039887 5.282500088738743, 27.297782193061124 5.23097308869076, 27.320273193082073 5.208336088669682, 27.3654181931241 5.170554088634489, 27.400827193157085 5.150345088615666, 27.459718193211927 5.07160008854234, 27.458563193210864 5.02582708849971, 27.455273193207802 5.01639108849092, 27.42458219317922 5.069718088540583, 27.402354193158516 5.084582088554427, 27.313327193075594 5.123609088590769, 27.14208219291612 5.1950000886572525, 27.09027319286787 5.203473088665149, 27.06666319284588 5.201109088662946, 27.027500192809384 5.185836088648728, 27.008609192791795 5.177782088641223, 26.941527192729325 5.143609088609395, 26.908336192698414 5.103054088571625, 26.884718192676416 5.0661090885372175, 26.869445192662198 5.030973088504496, 26.793054192591057 5.058054088529715, 26.75840019255878 5.087636088557261, 26.71555419251888 5.092500088561792, 26.680273192486027 5.088054088557655, 26.620827192430653 5.068609088539546, 26.520836192337526 5.041945088514709, 26.4947181923132 5.045554088518074, 26.4627091922834 5.05916408853075, 26.446109192267926 5.088191088557778, 26.393891192219314 5.132782088599313, 26.197500192036387 5.232782088692446, 26.127500191971194 5.249164088707701, 26.108609191953605 5.234164088693731, 26.089582191935904 5.20666408866812, 26.06555419191352 5.197500088659581, 26.028054191878596 5.190691088653239, 25.91139119176995 5.178609088641991, 25.891663191751576 5.192500088654924, 25.81555419168069 5.236391088695811, 25.715554191587557 5.283054088739263, 25.63555419151305 5.305273088759961, 25.584582191465586 5.364864088815452, 25.540136191424182 5.38069108883019, 25.36194519125823 5.314718088768757, 25.33916319123702 5.263336088720905, 25.31221819121191 5.1961090886582895, 25.310418191210232 5.175282088638895, 25.328609191227173 5.153191088618314, 25.34868219124587 5.142845088608681, 25.343609191241143 5.111664088579644, 25.316182191215603 5.041454088514257, 25.29000019119121 5.025000088498928, 25.22777319113328 5.006945088482112, 25.18194519109059 4.995836088471776, 25.089718191004692 4.97360908845107, 24.995691190917114 4.982636088459472, 24.974163190897087 4.987500088464003, 24.950827190875344 4.985836088462463, 24.81833619075195 4.9388910884187425, 24.777773190714186 4.915282088396751, 24.734445190673824 4.910836088392614, 24.642773190588457 4.973054088450553, 24.605000190553255 5.022009088496148, 24.525554190479284 5.077218088547568, 24.476218190433343 5.09842708856732, 24.45944519041771 5.105418088573828, 24.38729119035051 5.112154088580098, 24.35735419032264 5.057009088528744, 24.3979181903604 5.0352820885085094, 24.367500190332066 5.008891088483935, 24.23971819021307 4.958891088437369, 24.191663190168327 4.941945088421576, 24.063054190048547 4.9016640883840665, 23.88860918988607 4.82389108831164, 23.826663189828395 4.8193730883074295, 23.579718189598395 4.73236408822639, 23.43971818946801 4.650482088150142, 23.429582189458586 4.631809088132741, 23.424509189453858 4.593745088097293, 23.382500189414714 4.588054088091994, 23.325900189362017 4.600073088103187, 23.21193618925588 4.6819450881794324, 23.098818189150535 4.707500088203233, 23.016800189074132 4.749582088242434, 22.997500189056154 4.792773088282658, 22.970691189031186 4.831182088318428, 22.893327188959148 4.820136088308132, 22.847573188916527 4.723127088217794, 22.780282188853874 4.712427088207832, 22.754445188829806 4.6538910881533155, 22.725973188803295 4.572782088077773, 22.683682188763896 4.479864087991231, 22.66110918874287 4.482782087993954, 22.62874518871274 4.487218087998087, 22.599300188685305 4.474309087986057, 22.588054188674846 4.453336087966534, 22.587218188674058 4.4116640879277185, 22.57027318865829 4.3319450878534695, 22.538263188628463 4.219236087748513, 22.49721818859024 4.178891087710937, 22.453600188549615 4.144582087678984, 22.421527188519747 4.134445087669533, 22.38645418848708 4.12826408766378, 22.346663188450037 4.127500087663066, 22.28555418839312 4.129445087664877, 22.251945188361816 4.136527087671482, 22.21319118832571 4.148609087682729, 22.193054188306974 4.155554087689197, 22.150973188267784 4.1763180877085375, 22.119445188238416 4.204027087734346, 22.097500188217964 4.215836087745345, 22.03735418816197 4.2252730877541325, 21.986945188115016 4.246391087773802, 21.830827187969618 4.265273087791385, 21.73666318788193 4.295691087819705, 21.655136187805994 4.299164087822945, 21.630691187783214 4.292500087816734, 21.597082187751937 4.27194508779759, 21.576391187732668 4.255282087782078, 21.548263187706453 4.246245087773659, 21.513882187674426 4.24721808777457, 21.208609187390124 4.288891087813383, 21.163745187348354 4.305554087828895, 21.103263187292015 4.3502820878705535, 21.07791818726841 4.389236087906838, 21.03444518722793 4.4088910879251415, 20.96986318716779 4.432500087947119, 20.873891187078414 4.445282087959029, 20.835554187042703 4.448891087962394, 20.715273186930688 4.426664087941688, 20.599791186823126 4.407982087924296, 20.571945186797194 4.417500087933149, 20.476663186708464 4.4988910880089605, 20.45278218668622 4.522382088030838, 20.453300186686704 4.523791088032141))) +LBY Libya MULTIPOLYGON (((13.929982180611375 32.766027114334776, 13.952218180632087 32.754300114323854, 13.993327180670377 32.73666411430743, 14.018054180693412 32.7294361143007, 14.038891180712824 32.725827114297346, 14.079445180750582 32.723882114295535, 14.150000180816278 32.71777311428984, 14.170836180835693 32.714164114286476, 14.200282180863127 32.703891114276914, 14.31721818097202 32.63250011421043, 14.41486318106297 32.55693611414004, 14.438591181085059 32.5330541141178, 14.448609181094383 32.525618114110884, 14.486663181129842 32.51055411409685, 14.545554181184684 32.50305411408986, 14.62458218125829 32.49110011407873, 14.654163181285838 32.481109114069426, 14.72503618135184 32.4493001140398, 14.790554181412858 32.44610911403683, 14.935000181547366 32.43721811402855, 15.128609181727683 32.40971811400294, 15.165836181762359 32.39860911399259, 15.189300181784205 32.38721811398199, 15.274654181863696 32.31902711391848, 15.369373181951914 32.15450911376526, 15.360000181943178 32.0380541136568, 15.35494518193849 32.0218361136417, 15.354718181938267 32.02110911364102, 15.35194518193569 31.99582711361748, 15.360000181943178 31.960273113584364, 15.378336181960265 31.90290911353094, 15.39860918197914 31.856945113488138, 15.488054182062456 31.659854113304576, 15.620000182185322 31.49013611314652, 15.688745182249363 31.43055411309102, 15.754300182310402 31.389718113052993, 15.863891182412488 31.33889111300566, 15.896391182442756 31.324718112992457, 15.976800182517621 31.291245112961278, 16.080827182614513 31.261945112934, 16.115782182647052 31.2558271129283, 16.182782182709474 31.241391112914854, 16.224718182748518 31.23389111290787, 16.254863182776603 31.230691112904893, 16.500273183005163 31.21860911289363, 16.523609183026878 31.217782112892863, 16.564718183065168 31.221382112896222, 16.598054183096224 31.2255541129001, 16.656109183150278 31.227218112901653, 16.70582718319659 31.228054112902427, 16.732218183221164 31.224445112899076, 16.759718183246775 31.21916411289415, 16.92958218340499 31.18347311286091, 16.992500183463562 31.165836112844488, 17.022218183491248 31.155554112834906, 17.058891183525418 31.141109112821454, 17.113327183576104 31.126664112808, 17.13305418359448 31.121945112803616, 17.270000183722004 31.094718112778253, 17.367218183812554 31.08221811276661, 17.402636183845544 31.06666411275212, 17.424718183866105 31.05097311273751, 17.443473183883583 31.03597311272354, 17.469854183908154 31.02332711271177, 17.50000018393621 31.016664112705556, 17.571109184002438 31.005000112694688, 17.60416318403324 30.9969451126872, 17.808327184223373 30.923054112618374, 17.894163184303324 30.86708211256625, 17.923191184330335 30.851527112551764, 18.057218184455166 30.814718112517482, 18.17916318456875 30.781945112486966, 18.22061818460736 30.75889111246549, 18.247354184632258 30.728609112437283, 18.298882184680224 30.674164112386578, 18.358891184736137 30.627500112343114, 18.385554184760963 30.608891112325793, 18.597500184958335 30.46389111219075, 18.71305418506597 30.396945112128407, 18.788891185136606 30.366664112100196, 18.80152718514836 30.353609112088037, 18.905282185245 30.298882112037077, 18.926391185264663 30.28889111202777, 18.95750018529361 30.276391112016128, 19.001391185334512 30.266936112007315, 19.025273185356752 30.26500011200551, 19.163054185485066 30.26388211200448, 19.218327185536538 30.266936112007315, 19.316109185627596 30.28639111202544, 19.3450001856545 30.294164112032675, 19.61777318590856 30.41721811214728, 19.746109186028065 30.503882112228, 19.765000186045654 30.51888211224197, 19.871391186144763 30.631664112346996, 20.02735418629001 30.809718112512826, 20.057636186318206 30.850827112551116, 20.108891186365952 30.94333611263727, 20.122500186378602 30.97110911266313, 20.135000186390243 31.00777311269728, 20.148891186403205 31.055000112741254, 20.153473186407467 31.076809112761566, 20.155554186409404 31.15000011282973, 20.14830018640265 31.186873112864077, 20.14332718639801 31.210282112885878, 20.105554186362838 31.2975001129671, 20.092218186350408 31.31944511298755, 20.071245186330884 31.34263611300915, 20.049027186310184 31.353954113019682, 20.03055418629299 31.37777311304187, 20.019718186282887 31.401391113063866, 19.982773186248494 31.48249111313939, 19.965554186232453 31.52360011317768, 19.95305418622081 31.56804511321907, 19.924445186194163 31.70499111334661, 19.92082718619079 31.727218113367314, 19.919582186189643 31.748191113386852, 19.92416318619391 31.823327113456827, 19.94194518621046 31.957773113582036, 19.94902718621705 31.97708211360002, 20.00916318627307 32.079164113695086, 20.059373186319817 32.15527311376597, 20.084445186343174 32.184718113793394, 20.337218186578582 32.40916411400242, 20.55333618677986 32.55332711413669, 20.567627186793175 32.560909114143755, 20.70416318692034 32.61138211419076, 20.871109187075803 32.684718114259056, 20.889163187092635 32.697491114270946, 20.908609187110727 32.708054114280785, 20.941391187141278 32.72458211429618, 20.969445187167395 32.73750011430822, 21.07000018726103 32.77450911434268, 21.12360918731096 32.77750011434547, 21.179445187362973 32.772773114341064, 21.233054187412904 32.77110911433951, 21.28527318746154 32.770273114338735, 21.32666318750009 32.77332711434158, 21.372500187542755 32.77832711434624, 21.389163187558296 32.7833361143509, 21.427773187594255 32.79666411436331, 21.47166318763513 32.816245114381545, 21.497218187658916 32.83193611439616, 21.513745187674317 32.84930011441233, 21.53471818769384 32.8699911144316, 21.62777318778052 32.934718114491886, 21.713891187860725 32.94444511450095, 21.739654187884696 32.93106411448848, 21.78332718792538 32.91666411447507, 21.854718187991864 32.90250011446189, 21.8841631880193 32.90221811446162, 21.947500188078266 32.905000114464215, 21.980827188109316 32.908609114467566, 22.00398218813089 32.91427311447285, 22.06805418819056 32.91082711446964, 22.196945188310593 32.88443611444505, 22.317773188423132 32.88110011444195, 22.348327188451577 32.87805411443911, 22.375136188476546 32.86804511442979, 22.424163188522215 32.83582711439979, 22.51333618860525 32.78555411435296, 22.536109188626455 32.78256411435018, 22.572500188660342 32.783882114351414, 22.805000188876875 32.72555411429708, 22.837354188907028 32.70943611428207, 22.868891188936402 32.69332711426708, 22.904445188969504 32.67999111425465, 22.933882188996904 32.67180011424702, 22.961109189022267 32.669164114244566, 22.995136189053966 32.673536114248634, 23.119163189169484 32.61975411419856, 23.10333618915473 32.584018114165275, 23.085100189137762 32.332109113930656, 23.130836189180343 32.31027311391033, 23.168745189215656 32.30124511390191, 23.212563189256457 32.270345113873134, 23.24720018928872 32.21622711382274, 23.280000189319253 32.20721811381435, 23.450273189477855 32.1866641137952, 23.490554189515365 32.182218113791066, 23.564445189584177 32.181664113790546, 23.638473189653126 32.1833271137921, 23.720063189729103 32.175136113784475, 23.80000018980354 32.15527311376597, 23.9520821899452 32.11263611372627, 23.989718189980238 32.09221811370725, 23.96971818996161 32.0693001136859, 23.990418189980886 32.04860911366663, 24.063891190049333 32.01166411363222, 24.087636190071436 32.00263611362382, 24.117500190099236 32.00000011362137, 24.54305419049558 31.985273113607647, 24.568054190518865 31.989164113611267, 24.61236319056013 31.9997181136211, 24.653400190598347 32.02381811364354, 24.73458219067396 32.025409113645026, 24.782500190718565 32.00458211362563, 24.84221819077419 31.992500113614383, 24.913609190840674 31.980000113602742, 24.98263619090497 31.96652711359019, 25.00860919092915 31.949164113574014, 25.032982190951856 31.92694511355333, 25.02916319094831 31.895273113523828, 25.02333619094287 31.855136113486452, 25.068882190985278 31.790554113426296, 25.089445191004444 31.766664113404047, 25.12041819103328 31.728891113368874, 25.15069119106147 31.669654113313698, 25.151663191062397 31.64694511329256, 25.148054191059032 31.64610911329177, 25.129718191041945 31.63444511328092, 25.100273191014537 31.611391113259444, 25.07319119098929 31.585691113235512, 25.06082719097779 31.567500113218557, 25.047636190965505 31.522636113176787, 25.009163190929684 31.481109113138103, 24.96277319088648 31.445273113104733, 24.893609190822048 31.40277311306515, 24.868118190798327 31.370827113035403, 24.8691631907993 31.15916411283827, 24.90444519083215 31.034445112722125, 24.91166319083888 31.015000112704, 24.977009190899736 30.872154112570968, 24.995554190917005 30.838891112539997, 25.017500190937426 30.789236112493754, 24.97694519089967 30.634718112349844, 24.926182190852387 30.507500112231355, 24.876391190806032 30.42750011215685, 24.854445190785583 30.399445112130735, 24.8186091907522 30.36389111209762, 24.77194519070875 30.30389111204174, 24.72319119066333 30.225973111969168, 24.710000190651044 30.188891111934637, 24.706800190648067 30.159164111906946, 24.711527190652475 30.138054111887286, 24.72610919066605 30.119718111870213, 24.769163190706166 30.03416411179053, 24.810273190744454 29.94582711170827, 24.821109190754527 29.916382111680846, 24.833054190765665 29.881664111648504, 24.835827190768242 29.858745111627158, 24.831800190764483 29.83708211160699, 24.825000190758146 29.81694511158824, 24.88471819081377 29.585827111372993, 24.878400190807895 29.508473111300944, 24.897218190825413 29.46221811125787, 24.91166319083888 29.432782111230452, 24.997773190919077 29.24888211105919, 24.999445190920625 28.956945110787302, 25.001945190922953 28.27777311015477, 25.002500190923456 28.12500011001248, 25.001945190922953 28.00019110989625, 25.0022181909232 27.89889110980191, 25.001945190922953 27.76027310967281, 25.001227190922293 27.66632710958531, 25.0016631909227 27.607773109530783, 25.00082719092191 27.42750010936288, 25.000000190921128 27.080554109039767, 25.00015419092128 26.999445108964238, 25.00055419092166 26.941664108910416, 25.000273190921405 26.719718108703717, 25.000000190921128 26.56721810856169, 24.99916319092037 26.483891108484087, 24.998336190919588 25.970836108006267, 24.9975001909188 25.44277310751447, 24.996945190918296 24.994718107097185, 24.997218190918545 24.786664106903416, 24.998054190919333 24.34305410649027, 24.999445190920625 24.023891106193034, 25.000273190921405 23.58027310577988, 25.00140919092246 22.28666410457511, 25.001945190922953 22.046664104351592, 25.001418190922465 21.999691104307843, 25.001127190922176 21.0103001033864, 25.00082719092191 19.99911810244467, 25.00020919092134 19.999109102444663, 24.98250019090483 19.999445102444966, 24.763609190700976 20.000273102445746, 24.634445190580692 20.000000102445483, 24.57721819052739 19.99916410244471, 24.45582719041434 19.996945102442638, 24.154445190133657 20.000554102446003, 24.04332719003017 20.002218102447557, 24.005827189995244 19.99881810244439, 24.000273189990082 19.906391102358313, 24.00097318999073 19.514164101993018, 24.002745189992368 19.49906410197896, 23.456663189483805 19.78944510224939, 23.020554189077643 20.017773102462044, 22.321391188426503 20.380000102799386, 21.78166318792384 20.656109103056536, 21.381945187551565 20.858745103245255, 20.95944518715808 21.072500103444327, 20.408336186644817 21.34750010370044, 19.87389118614709 21.611664103946467, 19.298054185610795 21.893891104209317, 18.999718185332938 22.038282104343793, 18.768327185117442 22.15027310444809, 18.36360918474051 22.344445104628917, 18.03663618443599 22.50000010477379, 17.687182184110554 22.666254104928626, 17.656327184081817 22.680918104942293, 16.980273183452198 22.99833610523791, 16.346109182861568 23.29221810551161, 16.000827182540007 23.450554105659066, 15.335282181920178 23.15332710538226, 15.13277318173158 23.062218105297404, 14.99789118160595 23.000591105240005, 14.95750018156832 22.980554105221344, 14.865000181482174 22.934445105178398, 14.818336181438724 22.91110910515667, 14.495000181137584 22.747218105004038, 14.41805418106594 22.70805410496756, 14.35666318100877 22.675827104937554, 14.23500018089544 22.614164104880118, 13.909163180592003 22.883327105130803, 13.612782180315975 23.127500105358195, 13.595554180299928 23.13944510536932, 13.563891180270446 23.158882105387434, 13.54389118025182 23.168609105396484, 13.46763618018079 23.197500105423387, 13.414300180131107 23.21541810544008, 13.39027318010875 23.219718105444088, 13.345836180067352 23.22916410545288, 13.1094451798472 23.28110910550126, 12.887782179640766 23.330000105546787, 12.591391179364734 23.3938911056063, 12.473054179254518 23.419164105629832, 12.398891179185455 23.434164105643802, 12.339445179130081 23.446664105655444, 12.280282179074987 23.459164105667085, 12.013336178826364 23.515827105719865, 11.986473178801361 23.522309105725896, 11.91889117873842 23.647500105842482, 11.757218178587834 23.94166410611645, 11.726018178558775 24.000000106170774, 11.558891178403144 24.3025001064525, 11.469554178319925 24.327518106475807, 11.43944517829189 24.336936106484572, 11.350000178208575 24.362500106508378, 11.275273178139003 24.383054106527524, 11.110836177985846 24.429718106570988, 11.01289117789463 24.457827106597165, 10.9696911778544 24.472364106610698, 10.832500177726615 24.520273106655324, 10.756945177656263 24.55055410668352, 10.715273177617462 24.567218106699045, 10.668054177573481 24.55028210668327, 10.57666317748837 24.515554106650924, 10.480000177398324 24.478054106616, 10.414582177337422 24.48332710662092, 10.303336177233803 24.566664106698525, 10.252218177186194 24.605827106735006, 10.240000177174807 24.660000106785446, 10.229163177164736 24.70916410683124, 10.21833617715464 24.751109106870302, 10.174163177113513 24.77500010689255, 10.134773177076823 24.795636106911772, 10.054445177002009 24.838054106951276, 10.050836176998644 24.86777310697896, 10.049718176997601 24.93638210704286, 10.04778217699581 25.005273107107016, 10.045273176993476 25.087500107183587, 10.039163176987785 25.27944510736235, 10.032082176981191 25.329445107408915, 10.00555417695648 25.36555410744255, 9.856109176817284 25.560836107624425, 9.791663176757282 25.644718107702545, 9.479445176466498 26.048882108078956, 9.435273176425369 26.104718108130953, 9.398336176390956 26.153327108176228, 9.393473176386436 26.176664108197954, 9.39819117639081 26.199864108219558, 9.442218176431822 26.27027310828514, 9.499445176485125 26.357500108366366, 9.668891176642944 26.429718108433633, 9.762782176730383 26.46860910846985, 9.871663176831788 26.514164108512276, 9.8991631768574 26.610000108601525, 9.916945176873952 26.67333610866052, 9.895836176854289 26.695554108681208, 9.912773176870076 26.777500108757522, 9.919718176876529 26.80471810878288, 9.93055417688663 26.8597181088341, 9.908327176865924 26.87471810884807, 9.848327176810045 26.90860910887963, 9.829163176792207 27.00527310896966, 9.818054176781857 27.05639110901727, 9.80277317676763 27.097773109055808, 9.74360917671251 27.254864109202103, 9.734445176703986 27.316036109259073, 9.776391176743061 27.43916410937375, 9.819163176782894 27.53777310946559, 9.873536176833511 27.608682109531628, 9.89027317684912 27.64860910956881, 9.948327176903177 27.82444510973258, 9.955836176910168 27.84624510975287, 9.954163176908622 27.8686091097737, 9.901391176859477 27.99332710988986, 9.842500176804606 28.13194511001896, 9.830554176793498 28.15971811004482, 9.792218176757785 28.249582110128515, 9.790282176755994 28.27055411014804, 9.798336176763485 28.325554110199263, 9.812218176776412 28.40777311027584, 9.838054176800483 28.571945110428743, 9.846836176808665 28.630436110483217, 9.859445176820401 28.708882110556274, 9.867500176827889 28.768054110611374, 9.871663176831788 28.806109110646815, 9.873191176833188 28.849582110687308, 9.869445176829714 28.95000011078082, 9.865273176825838 28.99305411082092, 9.856109176817284 29.06610911088896, 9.852218176813665 29.08971811091095, 9.847218176809008 29.118609110937854, 9.839718176802023 29.160000110976398, 9.82971817679271 29.198327111012105, 9.765554176732962 29.430554111228375, 9.757218176725189 29.454164111250364, 9.725000176695175 29.521382111312974, 9.680827176654049 29.611664111397047, 9.661109176635676 29.649164111431972, 9.638054176614219 29.691109111471036, 9.578891176559125 29.789164111562357, 9.566663176547735 29.806945111578926, 9.551391176533514 29.82777311159832, 9.449163176438304 29.965827111726895, 9.413609176405174 30.003891111762343, 9.40221817639457 30.02166411177889, 9.385827176379308 30.04250011179829, 9.362500176357571 30.0633271118177, 9.345554176341807 30.076664111830112, 9.318891176316981 30.100973111852753, 9.311391176309996 30.1272181118772, 9.382773176376475 30.16250011191005, 9.51139117649626 30.22277311196619, 9.537109176520204 30.234391111977004, 9.637500176613685 30.27805411201767, 9.735136176704628 30.315954112052978, 9.84069117680292 30.34027311207562, 9.864027176824663 30.339445112074856, 9.89229117685099 30.356318112090563, 9.982218176934737 30.461391112188423, 10.08360917702916 30.58805411230638, 10.211945177148692 30.728473112437158, 10.223054177159042 30.75055411245772, 10.277500177209731 30.869718112568705, 10.290691177222016 30.910418112606607, 10.264582177197724 31.076809112761566, 10.220554177156714 31.197909112874356, 10.169845177109494 31.315318112983704, 10.123336177066165 31.422500113083515, 10.136454177078377 31.502364113157896, 10.28721817721879 31.694164113336527, 10.314927177244613 31.719300113359935, 10.349445177276749 31.73027311337016, 10.387636177312316 31.729718113369643, 10.41652717733922 31.725691113365897, 10.44416317736497 31.720554113361104, 10.469445177388508 31.721245113361746, 10.498473177415548 31.737082113376502, 10.530836177445678 31.761391113399142, 10.61610917752509 31.86124511349213, 10.71034517761285 31.964445113588255, 10.81402717770942 32.02500011364465, 10.83055417772482 32.04138211365991, 10.859718177751972 32.092500113707516, 10.87853617776949 32.13228211374455, 11.029163177909794 32.199718113807364, 11.144163178016896 32.24638211385083, 11.181927178052064 32.26166411386505, 11.32583617818608 32.319445113918874, 11.414718178268856 32.353054113950165, 11.483327178332758 32.390000113984584, 11.515882178363086 32.40940011400265, 11.550973178395765 32.42832711402028, 11.567500178411137 32.44221811403321, 11.58166317842435 32.47082711405986, 11.580000178422779 32.50305411408986, 11.558327178402607 32.545900114129765, 11.536945178382695 32.567500114149894, 11.516945178364068 32.581245114162684, 11.494445178343113 32.59888211417912, 11.472773178322939 32.62250011420112, 11.466663178317248 32.650973114227625, 11.477218178327064 32.86388211442592, 11.483700178333095 32.942909114499514, 11.49402717834272 33.04347311459317, 11.504745178352692 33.074809114622354, 11.516954178364074 33.10247311464812, 11.522173178368945 33.12591811466996, 11.525000178371556 33.14666411468927, 11.526082178372576 33.17113611471207, 11.606945178447887 33.11708211466173, 11.638054178476864 33.10166411464736, 11.740836178572579 33.08554511463235, 11.792500178620685 33.083118114630096, 11.877636178699987 33.06499111461321, 11.908054178728321 33.05028211459951, 11.992218178806695 33.003882114556305, 12.025554178837751 32.983609114537416, 12.077773178886389 32.951664114507665, 12.173891178975907 32.900554114460064, 12.276109179071085 32.84805411441117, 12.301245179094508 32.8377731144016, 12.343945179134266 32.82840011439286, 12.366109179154904 32.825554114390215, 12.51721817929564 32.80721811437314, 12.559445179334972 32.800827114367195, 12.74110917950415 32.7947181143615, 12.771873179532804 32.796627114363275, 12.813891179571954 32.79943611436589, 12.853891179609207 32.80554511437158, 12.90902717966054 32.81569111438104, 13.00082717974604 32.842773114406256, 13.015427179759627 32.84845411441155, 13.091945179830901 32.87193611443341, 13.122363179859235 32.88360911444428, 13.140691179876285 32.89874511445838, 13.160136179894408 32.90958211446848, 13.206109179937215 32.91721811447559, 13.251109179979125 32.91889111447715, 13.33500018005725 32.9044451144637, 13.362500180082861 32.89624511445605, 13.46750018018065 32.84832711441143, 13.51971818022929 32.82221811438711, 13.54389118025182 32.80805411437392, 13.579027180284527 32.795554114362275, 13.612773180315969 32.78874511435593, 13.642773180343909 32.78805411435529, 13.722773180418415 32.7913821143584, 13.748336180442209 32.79652711436319, 13.77583618046782 32.79971811436616, 13.89277318057674 32.77832711434624, 13.912773180595366 32.77332711434158, 13.929982180611375 32.766027114334776))) +MCO Monaco MULTIPOLYGON (((7.439291174566449 43.75751812457139, 7.42028217454876 43.73708212455236, 7.391609174522046 43.7275451245435, 7.390900174521391 43.74937312456382, 7.42899117455687 43.76830012458146, 7.439291174566449 43.75751812457139))) +TUN Tunisia MULTIPOLYGON (((10.332673177261114 36.889327118174904, 10.344236177271881 36.877145118163554, 10.286182177217825 36.815273118105935, 10.275591177207957 36.83850011812757, 10.202773177140159 36.83096411812055, 10.192773177130846 36.8108271181018, 10.196736177134511 36.79013611808253, 10.243891177178455 36.785827118078515, 10.25615417718987 36.78679111807941, 10.319027177248415 36.7445821180401, 10.336945177265108 36.735136118031306, 10.374863177300426 36.72458211802147, 10.407218177330549 36.72277311801979, 10.415318177338094 36.72403611802096, 10.436109177357451 36.729718118026256, 10.458609177378406 36.73860911803453, 10.484163177402223 36.75221811804721, 10.52444517743973 36.775618118069005, 10.547218177460934 36.81777311810826, 10.566391177478806 36.857354118145125, 10.599163177509325 36.87832711816466, 10.622773177531315 36.87639111816286, 10.655000177561305 36.87693611816336, 10.67750017758226 36.87888211816518, 10.7131911776155 36.886800118172545, 10.819163177714216 36.95082711823218, 10.868327177759994 36.99638211827461, 10.893891177783814 37.03937311831464, 11.039373177919288 37.085964118358035, 11.067782177945759 37.05138211832583, 11.102218177977818 36.90444511818899, 11.03569117791585 36.811382118102316, 10.980836177864774 36.76027311805471, 10.967500177852344 36.74360911803919, 10.897218177786897 36.64804511795019, 10.864718177756629 36.59194511789795, 10.836800177730623 36.54263611785203, 10.821945177716799 36.503054117815154, 10.812773177708266 36.48277311779627, 10.79639117769301 36.46534511778003, 10.740836177641256 36.45332711776885, 10.67360917757864 36.434164117750996, 10.572218177484217 36.39777311771711, 10.547500177461188 36.38416411770443, 10.530282177445173 36.370827117692016, 10.522445177437874 36.36285411768459, 10.512782177428875 36.351109117673644, 10.4977731774149 36.32819111765231, 10.480273177398601 36.287500117614414, 10.469027177388114 36.25513611758427, 10.455973177375967 36.17916411751351, 10.45618217737615 36.117354117455946, 10.471663177390582 36.05666411739942, 10.520000177435577 35.97221811732078, 10.60486317751463 35.86235411721846, 10.625000177533366 35.840827117198415, 10.685836177590033 35.788609117149775, 10.688773177592765 35.78703611714832, 10.739718177640214 35.771664117133994, 10.814863177710208 35.72444511709003, 10.827082177721593 35.705900117072744, 10.87139117776286 35.68208211705057, 10.90721817779621 35.673336117042425, 10.929718177817165 35.67082711704009, 10.973054177857534 35.66416411703388, 11.001391177883932 35.656391117026644, 11.027082177907857 35.63735411700891, 11.013709177895379 35.56271811693941, 11.030000177910551 35.521664116901164, 11.054491177933357 35.50173611688261, 11.019582177900872 35.38910011677771, 11.02597317790682 35.33860911673068, 11.050836177929966 35.305136116699515, 11.08471817796152 35.27499111667143, 11.100827177976527 35.263054116660314, 11.126663178000598 35.241945116640665, 11.072500177950133 35.17062711657424, 11.048818177928098 35.158054116562525, 11.019509177900801 35.12402711653084, 11.014291177895927 35.09267311650164, 11.014863177896473 35.062145116473204, 10.90944517779829 34.888609116311585, 10.823054177717836 34.79360911622311, 10.731391177632474 34.67027311610825, 10.708745177611377 34.65138211609066, 10.680273177584866 34.64471811608445, 10.658891177564954 34.64249111608237, 10.632773177540628 34.63180011607241, 10.5753091774871 34.54580011599232, 10.496527177413725 34.522636115970755, 10.43034517735208 34.49624511594617, 10.395282177319444 34.46027311591267, 10.375000177300535 34.43582711588991, 10.33610917726432 34.40749111586351, 10.152218177093062 34.324782115786476, 10.116036177059357 34.31422711577666, 10.03694517698571 34.218045115687076, 10.021391176971235 34.19110911566199, 10.012473176962914 34.17113611564339, 10.007082176957908 34.16860911564103, 10.014163176964502 34.10971811558619, 10.019163176969158 34.08027311555877, 10.030836176980017 34.036382115517895, 10.039300176987894 34.00958211549293, 10.068891177015473 33.953045115440275, 10.07971817702554 33.935273115423726, 10.096391177041085 33.914445115404334, 10.166109177105994 33.8291641153249, 10.26639117719941 33.74860011524987, 10.314445177244153 33.71277311521651, 10.331945177260451 33.700273115204865, 10.356109177282946 33.686100115191664, 10.390273177314782 33.673045115179505, 10.457200177377104 33.65074511515874, 10.478327177396778 33.6386731151475, 10.530282177445173 33.64943611515751, 10.605554177515273 33.67139111517797, 10.631391177539342 33.683882115189604, 10.659100177565136 33.70166411520616, 10.694718177598304 33.71249111521624, 10.71597317761811 33.704164115208485, 10.724718177626244 33.679582115185596, 10.717218177619259 33.60555411511665, 10.705900177608726 33.57860911509155, 10.672782177577886 33.54832711506336, 10.691527177595333 33.491800115010705, 10.751663177651352 33.47374511499389, 10.90979117779861 33.5362451150521, 10.93000017781742 33.56708211508082, 10.920763177808823 33.59346411510539, 10.901945177791305 33.613673115124215, 10.933609177820784 33.630000115139424, 10.979654177863665 33.63672711514569, 11.025836177906683 33.62554511513527, 11.055836177934623 33.61263611512325, 11.078891177956109 33.59416411510604, 11.091663177968002 33.577082115090136, 11.10736317798262 33.54971811506465, 11.11444517798921 33.52221811503904, 11.113745177988562 33.49250011501137, 11.103654177979166 33.46044511498151, 11.101109177976781 33.42971811495289, 11.121109177995407 33.285827114818886, 11.174300178044945 33.21006411474832, 11.342782178201873 33.18278211472291, 11.365000178222544 33.18166411472187, 11.431600178284583 33.189164114728854, 11.481945178331472 33.18777311472756, 11.526082178372576 33.17113611471207, 11.525000178371556 33.14666411468927, 11.522173178368945 33.12591811466996, 11.516954178364074 33.10247311464812, 11.504745178352692 33.074809114622354, 11.49402717834272 33.04347311459317, 11.483700178333095 32.942909114499514, 11.477218178327064 32.86388211442592, 11.466663178317248 32.650973114227625, 11.472773178322939 32.62250011420112, 11.494445178343113 32.59888211417912, 11.516945178364068 32.581245114162684, 11.536945178382695 32.567500114149894, 11.558327178402607 32.545900114129765, 11.580000178422779 32.50305411408986, 11.58166317842435 32.47082711405986, 11.567500178411137 32.44221811403321, 11.550973178395765 32.42832711402028, 11.515882178363086 32.40940011400265, 11.483327178332758 32.390000113984584, 11.414718178268856 32.353054113950165, 11.32583617818608 32.319445113918874, 11.181927178052064 32.26166411386505, 11.144163178016896 32.24638211385083, 11.029163177909794 32.199718113807364, 10.87853617776949 32.13228211374455, 10.859718177751972 32.092500113707516, 10.83055417772482 32.04138211365991, 10.81402717770942 32.02500011364465, 10.71034517761285 31.964445113588255, 10.61610917752509 31.86124511349213, 10.530836177445678 31.761391113399142, 10.498473177415548 31.737082113376502, 10.469445177388508 31.721245113361746, 10.44416317736497 31.720554113361104, 10.41652717733922 31.725691113365897, 10.387636177312316 31.729718113369643, 10.349445177276749 31.73027311337016, 10.314927177244613 31.719300113359935, 10.28721817721879 31.694164113336527, 10.136454177078377 31.502364113157896, 10.123336177066165 31.422500113083515, 10.169845177109494 31.315318112983704, 10.220554177156714 31.197909112874356, 10.264582177197724 31.076809112761566, 10.290691177222016 30.910418112606607, 10.277500177209731 30.869718112568705, 10.223054177159042 30.75055411245772, 10.211945177148692 30.728473112437158, 10.08360917702916 30.58805411230638, 9.982218176934737 30.461391112188423, 9.89229117685099 30.356318112090563, 9.864027176824663 30.339445112074856, 9.84069117680292 30.34027311207562, 9.735136176704628 30.315954112052978, 9.637500176613685 30.27805411201767, 9.537109176520204 30.234391111977004, 9.534163176517467 30.24833611199, 9.520554176504788 30.303336112041222, 9.468054176455894 30.510000112233683, 9.436391176426412 30.633891112349076, 9.383609176377234 30.840273112541283, 9.334163176331202 31.032773112720562, 9.298609176298072 31.170554112848876, 9.213336176218661 31.500554113156213, 9.181391176188924 31.624164113271334, 9.105836176118544 31.912773113540126, 9.082563176096869 32.00008211362143, 9.057218176073263 32.09555411371035, 9.00833617602774 32.1294361137419, 8.864445175893735 32.21804511382443, 8.688327175729711 32.32610911392507, 8.560000175610185 32.404164113997766, 8.415282175475426 32.491664114079256, 8.350982175415538 32.5312181141161, 8.348609175413316 32.53333611411807, 8.342782175407905 32.57360911415557, 8.323327175389778 32.710273114282856, 8.319445175386164 32.73832711430899, 8.312218175379428 32.79305411435995, 8.306109175373734 32.834164114398234, 8.274163175344 32.876664114437816, 8.157773175235604 33.02805411457881, 8.078400175161676 33.110827114655905, 8.045418175130948 33.107636114652934, 8.019445175106767 33.113891114658756, 7.762573174867526 33.21166411474981, 7.743054174849362 33.22916411476611, 7.731945174839012 33.24832711478396, 7.72639117483385 33.28666411481966, 7.724163174831773 33.3186001148494, 7.724445174832027 33.373054114900114, 7.724718174832276 33.39916411492443, 7.725027174832576 33.419400114943286, 7.675554174786498 33.507773115025586, 7.557363174676425 33.67624511518248, 7.515000174636953 33.81055411530757, 7.492500174615998 33.88750011537924, 7.4922181746157435 33.919854115409365, 7.5002821746232655 33.9474911154351, 7.508609174631005 33.967773115453994, 7.518191174639924 34.00430011548801, 7.515263174637198 34.071918115550986, 7.518054174639815 34.08305411556135, 7.528891174649914 34.104309115581145, 7.625973174740324 34.19457311566522, 7.649163174761924 34.20874511567841, 7.681663174792192 34.219991115688885, 7.701663174810818 34.22388211569252, 7.731109174838224 34.22639111569485, 7.759309174864484 34.23346411570144, 7.783745174887258 34.250618115717415, 7.821945174922831 34.33860011579935, 7.824236174924948 34.380827115838684, 7.845136174944429 34.41791811587322, 7.8688911749665635 34.436100115890156, 8.036109175122277 34.5091641159582, 8.070273175154114 34.52194511597011, 8.106554175187881 34.532718115980146, 8.120836175201191 34.537909115984974, 8.252709175324014 34.65520911609421, 8.238336175310621 34.67096411610889, 8.227082175300154 34.69367311613004, 8.243609175315527 34.71860911615326, 8.265273175335722 34.73805411617137, 8.270154175340252 34.74010911617329, 8.285482175354531 34.75069111618315, 8.27528217534504 34.84305411626916, 8.286109175355108 34.965554116383245, 8.329509175395543 35.10867311651654, 8.40110917546221 35.19221811659435, 8.340554175405828 35.29027311668567, 8.319300175386019 35.31277311670662, 8.308336175375814 35.3391641167312, 8.302082175370003 35.37388211676354, 8.302773175370646 35.39889111678683, 8.312082175379317 35.435691116821104, 8.322218175388741 35.457773116841665, 8.348891175413598 35.58444511695964, 8.345273175410227 35.6236001169961, 8.344863175409841 35.64416411701525, 8.33791817540336 35.68242711705089, 8.323891175390315 35.70471811707165, 8.29860917536675 35.725273117090794, 8.279163175348657 35.74652711711059, 8.271109175341138 35.76721811712986, 8.262500175333116 35.81680011717603, 8.260554175331322 35.8563821172129, 8.266663175337015 35.92180011727382, 8.280282175349697 35.9619361173112, 8.282973175352197 35.96530911731435, 8.290836175359516 36.00000011734666, 8.305273175372974 36.09750011743746, 8.319300175386019 36.20499111753756, 8.333891175399629 36.29138211761803, 8.371663175434804 36.357500117679606, 8.374445175437387 36.374991117695885, 8.37639117543921 36.42013611773794, 8.37027317543351 36.452564117768134, 8.29069117535937 36.4817271177953, 8.245836175317606 36.48152711779511, 8.215273175289155 36.48389111779731, 8.187291175263084 36.49554511780816, 8.181663175257853 36.505273117817225, 8.186245175262115 36.527291117837734, 8.207636175282033 36.556109117864565, 8.241109175313198 36.569436117876975, 8.349718175414353 36.60401811790919, 8.45000017550774 36.6608271179621, 8.475691175531665 36.72027311801746, 8.476391175532342 36.74360911803919, 8.638054175682896 36.83110911812068, 8.632218175677451 36.881945118168034, 8.622027175667967 36.94136411822336, 8.667218175710047 36.953891118235035, 8.766182175802214 36.962427118242985, 8.82694517585881 36.97958211825896, 8.858054175887787 36.99528211827358, 8.877782175906162 37.00694511828445, 8.89629117592338 37.01862711829533, 8.915554175941338 37.03082711830669, 8.940554175964621 37.05166411832609, 8.95944517598221 37.07027311834342, 8.973327175995138 37.086391118358435, 8.98555417600653 37.11054511838093, 9.043336176060336 37.15221811841974, 9.06610917608154 37.16082711842776, 9.080927176095344 37.16231811842914, 9.158336176167438 37.18777311845285, 9.327773176325252 37.22805411849036, 9.560273176541784 37.301382118558664, 9.659236176633925 37.33520911859016, 9.738745176707994 37.340409118595005, 9.858682176819684 37.32833611858376, 9.869582176829852 37.28139111854004, 9.849927176811548 37.25457311851507, 9.808463176772904 37.235536118497336, 9.777427176744027 37.22366411848628, 9.784436176750546 37.17885411844455, 9.80830917677278 37.1507731184184, 9.838445176800832 37.14074511840906, 9.860391176821281 37.14031811840866, 9.880945176840413 37.147409118415254, 9.902054176860076 37.16090011842782, 9.926000176882383 37.20600911846984, 9.858600176819607 37.22886411849112, 9.92693617688326 37.24804511850898, 10.048336176996315 37.26152711852154, 10.194300177132249 37.211527118474976, 10.254863177188668 37.179582118445225, 10.21208217714883 37.163364118430124, 10.14639117708765 37.16790911843435, 10.132009177074252 37.14551811841349, 10.19139117712956 37.127491118396705, 10.211763177148526 37.12807311839725, 10.169445177109111 37.0640181183376, 10.172363177111833 37.03958211831484, 10.20062717713816 36.98687311826575, 10.332673177261114 36.889327118174904)), ((10.865000177756883 33.63860911514743, 10.861391177753546 33.68416411518986, 10.85639117774889 33.6966641152015, 10.85027317774319 33.70499111520925, 10.839163177732843 33.71638211521987, 10.822500177717302 33.72971811523229, 10.80694517770283 33.734164115236425, 10.795554177692225 33.733891115236176, 10.778054177675926 33.728054115230734, 10.766600177665254 33.71569111521923, 10.760000177659094 33.706109115210296, 10.740418177640862 33.70652711521069, 10.730282177631437 33.71124511521508, 10.719163177621084 33.730827115233325, 10.714163177616427 33.74360911524522, 10.714445177616682 33.760273115260745, 10.727363177628717 33.883191115375226, 10.735136177635951 33.89041811538195, 10.765273177664028 33.89555411538673, 10.79639117769301 33.89610911538725, 10.912218177800867 33.87805411537043, 10.968336177853132 33.8575001153513, 11.043054177922727 33.81666411531326, 11.052636177931646 33.80763611530486, 11.055000177933834 33.79360911529179, 11.04916317792842 33.78527311528403, 11.00778217788988 33.75500011525584, 10.993609177876664 33.75000011525118, 10.937773177824681 33.72332711522634, 10.882773177773458 33.673045115179505, 10.872218177763614 33.65416411516192, 10.865000177756883 33.63860911514743)), ((11.128891178002675 34.668609116106694, 11.117218177991788 34.674573116112256, 11.122218177996444 34.70040911613631, 11.130554178004218 34.71082711614602, 11.23798217810426 34.822845116250335, 11.269718178133814 34.818054116245875, 11.287773178150644 34.811945116240196, 11.302218178164082 34.80332711623217, 11.282363178145602 34.74277311617577, 11.257218178122173 34.73194511616569, 11.221945178089328 34.72055411615507, 11.192500178061891 34.711109116146275, 11.177218178047667 34.70360911613929, 11.139445178012494 34.67693611611445, 11.128891178002675 34.668609116106694))) +BEN Benin MULTIPOLYGON (((2.7329541701833477 7.658209090951303, 2.732218170182648 7.6519450909454605, 2.7366631701868016 7.596391090893732, 2.770000170217827 7.25444509057526, 2.778609170225849 7.134445090463501, 2.749718170198946 7.094164090425991, 2.72791817017864 6.947009090288944, 2.751873170200952 6.9212450902649465, 2.762782170211125 6.765000090119429, 2.7616631702100847 6.671391090032259, 2.7554181702042513 6.56513608993329, 2.7272181701779914 6.474718089849091, 2.719609170170912 6.452236089828148, 2.719609170170912 6.365509089747377, 2.6430541700996173 6.356109089738624, 2.5400001700036228 6.3450000897282735, 2.48441816995188 6.340482089724077, 2.4800001699477434 6.3386090897223255, 2.4550001699244604 6.333054089717152, 2.40471816987764 6.330000089714304, 2.362782169838596 6.330418089714698, 2.331109169809082 6.328609089713012, 2.2758361697576106 6.323336089708107, 2.0561091695529683 6.294164089680933, 1.9873541694889525 6.282109089669703, 1.9269451694326847 6.275282089663349, 1.8033361693175607 6.257500089646783, 1.6975001692189835 6.238054089628676, 1.6400001691654325 6.221109089612895, 1.6354001691611586 6.218718089610675, 1.629773169155925 6.235136089625954, 1.652500169177074 6.250282089640066, 1.6830631692055533 6.259591089648737, 1.742500169260893 6.26971808965817, 1.79780016931241 6.280254089667977, 1.7952821693100702 6.308336089694137, 1.7715271692879355 6.41486408979334, 1.7491631692671206 6.456664089832273, 1.6930541692148608 6.5491640899184205, 1.6640271691878183 6.5770090899443545, 1.6554181691797965 6.5706730899384524, 1.6475001691724174 6.573054089940669, 1.6168091691438349 6.596245089962267, 1.5752821691051793 6.679718090040012, 1.5901361691190061 6.715691090073506, 1.6075001691351645 6.796664090148923, 1.6041631691320788 6.894309090239858, 1.577027169106799 6.909273090253805, 1.562363169093146 6.948191090290038, 1.5538821690852274 6.996564090335099, 1.6425001691677608 6.995554090334153, 1.645554169170623 7.33389109064926, 1.6437451691689375 7.409673090719835, 1.644445169169586 7.44305409075092, 1.6501361691748855 7.513891090816898, 1.6554181691797965 7.529773090831682, 1.6506911691753885 7.547782090848457, 1.6419451691672577 7.6281910909233375, 1.6393091691647896 7.759864091045969, 1.638054169163638 7.998609091268321, 1.6309731691570448 8.360282091605157, 1.617054169144069 8.36710909161151, 1.6241631691507052 8.425282091665693, 1.6254001691518454 8.587282091816562, 1.6261091691524996 8.726664091946375, 1.6266631691530336 8.846945092058391, 1.6197181691465516 9.034236092232831, 1.6059731691337618 9.099164092293293, 1.5686091690989485 9.167918092357326, 1.5400001690723002 9.189654092377566, 1.5105541690448945 9.210836092397301, 1.4936091690290993 9.228336092413599, 1.4524541689907835 9.2804180924621, 1.4316271689713744 9.301245092481494, 1.4180541689587471 9.319027092498061, 1.406945168948397 9.344718092521987, 1.399445168941412 9.387918092562217, 1.398545168940558 9.429900092601315, 1.3899271689325303 9.486245092653789, 1.3642541689086443 9.481345092649235, 1.361109168905699 9.485554092653146, 1.3375001688837074 9.542500092706177, 1.3683361689124354 9.596664092756626, 1.3700001689139754 9.63639109279363, 1.3588911689036536 9.91471809305284, 1.3550001689000055 9.99528209312787, 1.3077821688560505 10.025273093155803, 1.1872181687437546 10.10000009322539, 1.1724001687299506 10.108600093233406, 1.0669451686317473 10.174445093294722, 0.999373168568809 10.22007309333722, 0.7766631683614094 10.376664093483058, 0.78750016837148 10.529309093625216, 0.7980541683813271 10.546664093641382, 0.8059731683887037 10.573609093666477, 0.8075001683901064 10.607218093697782, 0.8040271683868809 10.64110909372934, 0.8002821683834043 10.681109093766594, 0.8005541683836555 10.701664093785737, 0.8021911683851783 10.712445093795779, 0.8070821683897407 10.72332709380592, 0.8794451684571243 10.799718093877061, 0.8936091684703058 10.866945093939663, 0.8905541684674745 10.911109093980798, 0.9179731684930061 10.996400094060235, 0.9502821685231027 11.029445094091002, 0.985282168555699 11.079445094137569, 1.083054168646754 11.122500094177667, 1.1488911687080758 11.22444509427261, 1.1927821687489484 11.265273094310643, 1.2647181688159321 11.246109094292791, 1.3438181688896123 11.315000094356947, 1.328054168874928 11.342918094382952, 1.3900001689326018 11.433473094467288, 1.4168091689575704 11.44971809448242, 1.4286001689685577 11.451464094484038, 1.435282168974794 11.458891094490966, 1.4825001690187491 11.459718094491734, 1.5431911690752713 11.457773094489923, 1.5700001691002399 11.451109094483712, 1.5863911691155295 11.405627094441357, 1.6123631691397122 11.388473094425379, 1.7369451692557334 11.415836094450867, 1.8038911693180921 11.439445094472845, 1.8746541693839731 11.442773094475953, 1.8971821694049709 11.431500094465449, 1.9893091694907525 11.417082094452027, 2.009863169509913 11.420554094455255, 2.0200361695193862 11.426073094460392, 2.026945169525817 11.431109094465086, 2.0522181695493487 11.454718094487077, 2.193891169681308 11.603609094625739, 2.2622181697449264 11.645973094665194, 2.30889116978841 11.688327094704647, 2.3408361698181466 11.768609094779407, 2.3925001698662527 11.887218094889874, 2.397927169871309 11.896154094898193, 2.4016631698748085 11.957218094955067, 2.403609169876603 12.084445095073548, 2.388745169862773 12.12971809511572, 2.3763911698512743 12.206664095187378, 2.3883631698624015 12.24731809522524, 2.5358361699997545 12.28110909525671, 2.6116731700703895 12.292500095267314, 2.665009170120044 12.30277309527689, 2.7190361701703694 12.352491095323188, 2.780282170227423 12.38193609535061, 2.838618170281734 12.396654095364326, 2.8645911703059426 12.381800095350485, 3.0100361704413956 12.268582095245051, 3.1622821705831825 12.113291095100422, 3.255454170669964 12.011354095005487, 3.261663170675746 11.97777309497421, 3.2700001706834882 11.951945094950148, 3.2980541707096336 11.910273094911346, 3.3209001707309085 11.886182094888909, 3.356527170764082 11.885691094888443, 3.375136170781417 11.89471809489686, 3.4712451708709295 11.854718094859606, 3.5079181709050715 11.824164094831147, 3.546109170940639 11.774445094784838, 3.557845170951566 11.736600094749605, 3.604454170994984 11.693273094709241, 3.571245170964062 11.650973094669851, 3.5252821709212583 11.563609094588486, 3.4750001708744094 11.429718094463794, 3.6088631709990864 11.25000009429641, 3.694718171079046 11.134718094189054, 3.7141631710971694 11.12721809418207, 3.7357731711172733 11.120636094175936, 3.728745171110745 11.077500094135758, 3.7305541711124306 11.040554094101353, 3.7376361711190214 11.02027309408247, 3.775282171154089 10.898609093969156, 3.7594451711393333 10.847500093921553, 3.7491001711296974 10.829445093904738, 3.7512451711317 10.79874509387615, 3.7855541711636533 10.756945093837217, 3.830836171205817 10.711945093795308, 3.847500171221327 10.696527093780958, 3.855000171228312 10.585000093677081, 3.8127821711890135 10.449445093550835, 3.791527171169207 10.404164093508669, 3.7638911711434844 10.412773093516691, 3.7344451711160502 10.429582093532346, 3.69937317108338 10.448300093549776, 3.6386091710267863 10.413609093517465, 3.5819451709740235 10.275273093388634, 3.644163171031977 10.199445093318005, 3.67034517105634 10.186454093305912, 3.6841631710692297 10.160836093282057, 3.6779181710633964 10.111809093236388, 3.612009171002029 9.954100093089522, 3.5588911709525632 9.880282093020767, 3.5209731709172445 9.845554092988422, 3.4835451708823655 9.855691092997859, 3.3495821707576283 9.811454092956666, 3.334027170743127 9.783327092930477, 3.330973170740293 9.762364092910943, 3.337218170746098 9.735000092885457, 3.352782170760605 9.703054092855709, 3.363327170770418 9.68193609283604, 3.3172181707274717 9.636109092793362, 3.1713911705916757 9.496391092663245, 3.141809170564102 9.435136092606186, 3.148609170570438 9.412218092584851, 3.163191170584014 9.377364092552384, 3.166391170587019 9.302773092482923, 3.131391170554423 9.194445092382026, 3.095000170520507 9.090554092285274, 2.9962451704285513 9.063191092259785, 2.967500170401763 9.081664092276995, 2.9052821703438383 9.078891092274418, 2.813609170258445 9.065273092261734, 2.792082170238416 9.050418092247895, 2.7830541702300025 9.016664092216459, 2.7452821701948267 8.795273092010277, 2.742954170192661 8.770764091987445, 2.746945170196369 8.719445091939647, 2.756391170205177 8.58194509181159, 2.756391170205177 8.55527309178676, 2.75296317020198 8.535573091768413, 2.757427170206114 8.530136091763339, 2.7583361702069737 8.491109091726997, 2.7500001701992005 8.457500091695692, 2.7254181701763116 8.432009091671958, 2.709927170161876 8.342291091588407, 2.736045170186202 8.2457640914985, 2.7517361702008145 8.20965409146487, 2.741391170191207 8.156109091415004, 2.7275001701782458 8.108327091370512, 2.708891170160939 8.008054091277117, 2.6925001701456495 7.906391091182442, 2.6952821701482605 7.8822180911599276, 2.7029271701553625 7.865036091143921, 2.7393731701893103 7.8144450910968, 2.7429181701926098 7.789582091073655, 2.738609170188596 7.716391091005491, 2.7329541701833477 7.658209090951303))) +TCD Chad MULTIPOLYGON (((14.194773180857993 9.98175409311527, 14.450554181096209 9.998054093130449, 14.486109181129308 9.993891093126578, 14.652773181284545 9.95916409309423, 14.783473181406265 9.923191093060723, 14.926663181539624 9.970064093104384, 15.0175001816242 9.949718093085437, 15.05305418165733 9.948336093084151, 15.083473181685662 9.955418093090742, 15.101245181702211 9.975827093109757, 15.123609181723026 9.984164093117514, 15.15944518175641 9.98916409312217, 15.24000018183142 9.987500093120616, 15.284163181872572 9.973609093107683, 15.422218182001131 9.92694509306422, 15.53500018210616 9.953609093089057, 15.591663182158953 9.967218093101735, 15.675300182236839 9.988018093121099, 15.653473182216516 10.011809093143256, 15.630282182194918 10.027218093157614, 15.589163182156625 10.049445093178306, 15.541945182112642 10.072500093199778, 15.499027182072666 10.101391093226695, 15.373054181955354 10.248609093363797, 15.276945181865841 10.390554093495993, 15.190282181785136 10.50277309360051, 15.1500001817476 10.61555409370554, 15.136663181735202 10.66055409374745, 15.115136181715144 10.704027093787943, 15.092218181693795 10.731664093813677, 15.058191181662096 10.801945093879127, 15.058054181661987 10.825282093900867, 15.066391181669758 10.845000093919225, 15.077218181679825 10.880136093951947, 15.075973181678677 10.903609093973813, 15.026063181632196 11.079409094137546, 15.019163181625771 11.13694509419112, 15.018263181624917 11.202154094251853, 15.050973181655394 11.394864094431327, 15.067636181670906 11.43666409447026, 15.109300181709699 11.496527094526016, 15.090763181692438 11.588191094611375, 15.06250018166611 11.690000094706193, 15.081945181684233 11.754718094766474, 15.0426001816476 12.078891095068386, 14.973400181583145 12.091391095080027, 14.951527181562767 12.097636095085832, 14.894336181509516 12.155809095140015, 14.898891181513761 12.200282095181436, 14.902218181516844 12.228336095207567, 14.908336181522543 12.320554095293446, 14.902345181516978 12.37597309534506, 14.82242718144255 12.633773095585155, 14.708745181336667 12.714718095660544, 14.624200181257919 12.734600095679056, 14.581527181218178 12.738054095682273, 14.546245181185327 12.771664095713575, 14.53971818117924 12.853054095789375, 14.525554181166058 12.975000095902942, 14.500873181143078 13.00131809592746, 14.486945181130096 13.019718095944597, 14.472773181116906 13.040273095963741, 14.457082181102294 13.065973095987673, 14.43597318108263 13.085000096005388, 14.159718180825337 13.083054096003579, 14.074718180746174 13.081664096002285, 13.901082180584467 13.328218096231907, 13.760018180453102 13.527800096417778, 13.634718180336392 13.703891096581785, 13.625118180327462 13.718336096595237, 13.600554180304584 13.828609096697932, 13.562227180268877 13.993264096851277, 13.46194518017549 14.430554097258536, 13.465000180178322 14.450836097277431, 13.475827180188418 14.46805409729346, 13.494718180206007 14.484445097308722, 13.517218180226962 14.496945097320364, 13.547500180255156 14.511809097334208, 13.615182180318214 14.516264097338365, 13.629718180331736 14.52166409734339, 13.647782180348571 14.531664097352703, 13.674373180373323 14.55229109737192, 13.68444518038271 14.579445097397198, 13.682918180381279 14.608473097424238, 13.759163180452305 14.70555409751465, 13.794163180484901 14.732773097540004, 13.778609180470397 14.80221809760468, 13.767218180459793 14.848054097647363, 13.786391180477665 14.888891097685402, 13.859163180545437 15.037773097824058, 13.997218180673997 15.205827097980574, 14.072218180743846 15.313891098081214, 14.195554180858721 15.489164098244444, 14.271663180929608 15.596945098344818, 14.36889118102016 15.73389109847237, 14.572218181209507 15.947773098671561, 14.904445181518923 16.29471809899468, 15.122218181721735 16.52138209920578, 15.238609181830128 16.641391099317545, 15.354163181937764 16.761109099429035, 15.45694518203348 16.867773099528378, 15.482500182057265 16.89444509955321, 15.485136182059733 16.89809109955661, 15.489718182063996 16.92097309957792, 15.523609182095555 17.36000009998679, 15.558982182128517 17.99945410058234, 15.573054182141618 18.24888210081464, 15.57444518214291 18.289718100852667, 15.602500182169024 18.782218101311344, 15.610836182176797 18.841664101366703, 15.634163182198535 19.018891101531764, 15.713054182272003 19.618891102090558, 15.730273182288045 19.755273102217572, 15.753891182310042 19.93250010238262, 15.80416318235686 20.02000010246411, 15.87333618242127 20.139718102575614, 15.981945182522423 20.326382102749463, 15.996663182536139 20.353054102774294, 15.668336182230348 20.700691103098066, 15.633054182197498 20.716664103112933, 15.612363182178228 20.73180010312703, 15.57750018214574 20.765973103158856, 15.55721818212686 20.815827103205294, 15.554163182124029 20.852500103239436, 15.556663182126357 20.875273103260653, 15.566109182135136 20.90555410328885, 15.584445182152223 20.930000103311613, 15.615691182181308 20.951182103331348, 15.583054182150931 21.01860910339414, 15.53333618210462 21.08971810346037, 15.284445181872826 21.445273103791507, 15.209582181803114 21.49180910383484, 15.201391181795486 21.517773103859028, 15.200000181794167 21.614164103948795, 15.199445181793664 21.65528210398709, 15.197500181791838 21.82000010414049, 15.194718181789256 21.9988821043071, 15.154463181751765 22.202773104496984, 15.047782181652423 22.751664105008174, 15.006945181614384 22.95944510520168, 14.99789118160595 23.000591105240005, 15.13277318173158 23.062218105297404, 15.335282181920178 23.15332710538226, 16.000827182540007 23.450554105659066, 16.346109182861568 23.29221810551161, 16.980273183452198 22.99833610523791, 17.656327184081817 22.680918104942293, 17.687182184110554 22.666254104928626, 18.03663618443599 22.50000010477379, 18.36360918474051 22.344445104628917, 18.768327185117442 22.15027310444809, 18.999718185332938 22.038282104343793, 19.298054185610795 21.893891104209317, 19.87389118614709 21.611664103946467, 20.408336186644817 21.34750010370044, 20.95944518715808 21.072500103444327, 21.381945187551565 20.858745103245255, 21.78166318792384 20.656109103056536, 22.321391188426503 20.380000102799386, 23.020554189077643 20.017773102462044, 23.456663189483805 19.78944510224939, 24.002745189992368 19.49906410197896, 23.99971818998955 19.46582710194801, 23.999445189989302 19.432782101917226, 23.999163189989048 18.832773101358427, 23.999809189989634 18.754300101285338, 23.999163189989048 18.532500101078767, 23.999163189989048 18.299445100861718, 23.999163189989048 16.26610909896803, 24.000000189989805 16.132773098843856, 24.000000189989805 15.83277309856446, 23.997563189987545 15.702845098443447, 23.973191189964837 15.697918098438862, 23.951109189944276 15.705554098445972, 23.865000189864077 15.730554098469256, 23.800418189803935 15.747918098485428, 23.663327189676266 15.757500098494347, 23.60305418962014 15.757500098494347, 23.564163189583923 15.749718098487108, 23.531663189553655 15.741664098479603, 23.47916318950476 15.725827098464862, 23.46013618948703 15.716809098456451, 23.4338911894626 15.700836098441584, 23.409027189439428 15.690836098432271, 23.38138218941367 15.685000098426826, 23.356945189390927 15.681664098423724, 23.329718189365565 15.683609098425535, 23.30555418934307 15.686945098428637, 23.244445189286154 15.701109098441833, 23.170273189217085 15.71055409845063, 23.143609189192233 15.711109098451146, 23.118154189168536 15.710291098450384, 23.108609189159637 15.706391098446758, 22.93721818900002 15.561945098312222, 22.923336188987093 15.540136098291924, 22.91958218898361 15.515691098269144, 22.92305418898684 15.487218098242636, 22.93541818899834 15.464718098221681, 22.982709189042396 15.414236098174669, 22.997154189055834 15.371318098134694, 22.9972181890559 15.335836098101652, 22.99139118905049 15.283336098052757, 22.98471818904426 15.231109098004112, 22.978745189038705 15.207918097982514, 22.929373188992713 15.114027097895075, 22.892773188958643 15.104718097886405, 22.872773188940016 15.096945097879157, 22.84569118891477 15.074864097858594, 22.786109188859285 15.01500009780284, 22.753327188828763 14.976945097767398, 22.66916318875039 14.853745097652663, 22.66958218875078 14.814027097615678, 22.67986318876035 14.758054097563544, 22.699927188779043 14.704100097513304, 22.50000018859282 14.637436097451214, 22.47000018856488 14.629445097443764, 22.416109188514696 14.600273097416604, 22.398609188498398 14.586245097403534, 22.38652718848715 14.562636097381557, 22.384718188485465 14.525100097346595, 22.438191188535257 14.492773097316487, 22.446109188542636 14.47374509729876, 22.449163188545498 14.379164097210676, 22.449445188545752 14.330000097164884, 22.511663188603706 14.240273097081328, 22.553745188642893 14.229027097070855, 22.566800188655037 14.16721809701329, 22.556182188645153 14.129791096978437, 22.434445188531782 14.051664096905668, 22.370827188472532 14.028891096884465, 22.31708218842249 14.010691096867504, 22.234300188345372 13.965554096825471, 22.19832718831188 13.92250009678537, 22.08444518820582 13.779164096651883, 22.136109188253926 13.665000096545555, 22.227500188339036 13.49555409638775, 22.29465418840158 13.37270909627334, 22.285000188392587 13.340554096243395, 22.269445188378114 13.320836096225037, 22.15305418826972 13.186527096099951, 22.067500188190024 13.148609096064632, 22.025000188150443 13.140273096056873, 21.942082188073243 13.051245095973954, 21.89194518802654 12.954445095883798, 21.82910018796801 12.797200095737352, 21.888473188023312 12.693054095640363, 21.90694518804051 12.669445095618372, 21.925554188057845 12.656109095605956, 21.9527731880832 12.643891095594583, 21.97721818810595 12.638609095589658, 22.004718188131562 12.636391095587598, 22.050000188173726 12.63750009558862, 22.074445188196506 12.640000095590949, 22.119854188238804 12.648609095598971, 22.14527318826248 12.657364095607122, 22.161945188277997 12.668745095617723, 22.19971818831317 12.715554095661318, 22.223327188335162 12.747218095690812, 22.331663188436067 12.673336095622005, 22.464300188559577 12.61486409556754, 22.407636188506814 12.48513609544672, 22.439027188536045 12.347218095318283, 22.503327188595932 12.16583609514936, 22.563609188652066 12.074718095064497, 22.611382188696552 11.99277309498818, 22.597773188683902 11.926664094926608, 22.57277318866062 11.799164094807864, 22.55319118864236 11.665973094683821, 22.559027188647804 11.629027094649416, 22.575273188662948 11.601945094624185, 22.613327188698378 11.550554094576327, 22.62555418870977 11.53444509456132, 22.648327188730974 11.51180909454024, 22.790273188863182 11.429445094463532, 22.93319118899626 11.408745094444257, 22.971391189031863 11.280273094324613, 22.974091189034368 11.209791094258975, 22.893609188959402 10.976945094042108, 22.866500188934168 10.922445093991357, 22.8250001888955 10.931109093999424, 22.676391188757123 10.969445094035123, 22.46332718855868 11.000836094064368, 22.43278218853024 10.986945094051421, 22.41381818851258 10.96416409403021, 22.364109188466273 10.955045094021713, 22.327918188432562 10.94347309401094, 22.24471818835508 10.910827093980544, 22.006109188132854 10.768891093848353, 21.957218188087325 10.732218093814197, 21.89583618803016 10.70500009378884, 21.819718187959268 10.678191093763871, 21.78582718792771 10.668336093754704, 21.719027187865493 10.638127093726567, 21.70250018785009 10.563336093656915, 21.7011091878488 10.520691093617188, 21.704854187852305 10.49805409359611, 21.719445187865887 10.468336093568439, 21.737773187882965 10.44853609354999, 21.747218187891747 10.409445093513582, 21.718400187864916 10.2966000934085, 21.666945187816992 10.235836093351907, 21.63888218779084 10.223054093339996, 21.608745187762793 10.212364093330038, 21.568891187725683 10.212918093330558, 21.53721818769617 10.21166409332939, 21.520273187680402 10.199445093318005, 21.5000001876615 10.17777309329783, 21.473609187636924 10.147782093269896, 21.454445187619086 10.113745093238194, 21.454163187618832 10.092773093218668, 21.43527318760124 10.041809093171196, 21.40833618757614 10.006945093138725, 21.36333618753423 9.96902709310342, 21.33916318751173 9.958473093093588, 21.292773187468526 9.972082093106266, 21.265627187443243 9.978054093111822, 21.225000187405385 9.942500093078706, 21.04805418724061 9.766391092914702, 20.97444518717205 9.603336092762845, 20.89402718709715 9.520136092685348, 20.875691187080065 9.511245092677072, 20.837773187044775 9.476391092644619, 20.82721818703493 9.451391092621336, 20.81684518702528 9.41566409258806, 20.800827187010356 9.42055409259261, 20.498473186728773 9.275854092457848, 20.49985418673006 9.241664092426007, 20.487782186718817 9.209718092396258, 20.459163186692166 9.175554092364436, 20.422218186657744 9.139718092331066, 20.371663186610675 9.108327092301835, 20.32541818656759 9.10471809229847, 20.27027318651625 9.118327092311148, 20.186945186438635 9.125827092318133, 20.064718186324797 9.134864092326538, 19.96333618623038 9.08000009227544, 19.933754186202833 9.057518092254512, 19.905554186176573 9.05916409225604, 19.830554186106724 9.053054092250349, 19.610836185902087 9.026664092225772, 19.411391185716354 9.016109092215942, 19.19331818551325 9.020991092220484, 19.109445185435135 9.013609092213613, 19.086936185414174 9.00944509220973, 19.023473185355073 8.984445092186448, 18.98889118532287 8.964164092167564, 18.929445185267497 8.920554092126949, 18.892500185233075 8.891391092099795, 18.869718185211866 8.861245092071712, 18.876373185218057 8.841427092053252, 18.925554185263877 8.79416409200924, 18.987218185321296 8.765273091982337, 19.030691185361775 8.754864091972635, 19.115000185440294 8.69139109191353, 19.12582718545039 8.672782091896195, 19.08860918541572 8.641109091866696, 19.058791185387946 8.57838209180828, 18.98750018532155 8.493609091729326, 18.93180018526968 8.423891091664402, 18.922500185261015 8.3924270916351, 18.90416318524396 8.367218091611619, 18.840273185184458 8.29221809154177, 18.802154185148936 8.256109091508137, 18.759163185108918 8.24347309149637, 18.704718185058198 8.223609091477869, 18.686663185041397 8.214164091469073, 18.665554185021733 8.193891091450197, 18.64527318500285 8.165282091423549, 18.634718184993005 8.135273091395604, 18.635554184993794 8.087218091350849, 18.618327184977744 8.060273091325755, 18.58889118495034 8.040282091307134, 18.561109184924447 8.03971809130661, 18.408054184781918 8.0330540913004, 18.240836184626176 8.025554091293415, 18.032773184432415 8.013473091282165, 17.883609184293476 7.958336091230819, 17.718327184139554 7.983609091254351, 17.6488911840749 7.988473091258882, 17.627636184055092 7.967154091239024, 17.587218184017445 7.933745091207911, 17.510827183946304 7.912218091187867, 17.450691183890285 7.901600091177983, 17.369445183814634 7.867218091145958, 17.255000183708034 7.812500091094989, 17.237218183691482 7.803054091086196, 17.218609183674147 7.758609091044804, 17.138336183599392 7.700554090990735, 17.058891183525418 7.662773090955554, 16.984445183456074 7.654445090947789, 16.91332718338984 7.6425000909366645, 16.869791183349292 7.621245090916872, 16.866182183345927 7.594236090891727, 16.860000183340162 7.5691640908683695, 16.831527183313653 7.549309090849874, 16.817454183300555 7.546300090847083, 16.781663183267227 7.565836090865275, 16.568054183068284 7.7831910910676925, 16.563682183064202 7.8302090911114846, 16.56770918306796 7.864945091143838, 16.53360918303619 7.867773091146475, 16.503054183007748 7.850554091130434, 16.430827182940476 7.798054091081539, 16.410000182921067 7.7672180910528255, 16.404163182915653 7.714718091003931, 16.40750018291874 7.691109090981939, 16.217636182741927 7.614373090910476, 16.14860918267763 7.600836090897872, 16.113054182644532 7.596109090893464, 16.079445182613227 7.5944450908919094, 16.034445182571318 7.571391090870449, 16.0187451825567 7.540073090841275, 15.974863182515833 7.501318090805185, 15.913891182459054 7.4827820907879214, 15.782709182336873 7.458536090765335, 15.727918182285833 7.476945090782479, 15.713609182272506 7.506809090810293, 15.690136182250654 7.5229180908253, 15.642636182206417 7.5230540908254255, 15.61694518218249 7.518609090821286, 15.565691182134742 7.512636090815718, 15.542500182113145 7.513891090816898, 15.518609182090898 7.5183360908210375, 15.499009182072655 7.526609090828742, 15.501945182075389 7.5294450908313735, 15.547009182117364 7.582009090880334, 15.572773182141361 7.630000090925023, 15.584300182152077 7.690136090981028, 15.581945182149894 7.736109091023849, 15.579982182148058 7.760409091046483, 15.52402718209595 7.773891091059042, 15.502291182075709 7.7749270910600075, 15.477918182053003 7.810273091092924, 15.444718182022086 7.8822180911599276, 15.433336182011487 7.9116640911873475, 15.38916318197036 8.039582091306485, 15.380273181962082 8.077773091342053, 15.37652718195858 8.112082091374006, 15.361945181945003 8.142500091402326, 15.343609181927917 8.171945091429748, 15.264718181854448 8.339164091585488, 15.225200181817655 8.436200091675857, 15.207218181800897 8.477364091714193, 15.074163181676994 8.643609091869024, 14.922782181536007 8.77527309199165, 14.876109181492524 8.80930909202334, 14.855836181473649 8.817218092030714, 14.832773181452183 8.813609092027349, 14.621109181255036 8.960554092164202, 14.559445181197617 9.00750009220792, 14.348054181000748 9.196945092384354, 14.35250018100487 9.230000092415139, 14.328609180982625 9.258336092441539, 14.007845180683887 9.617500092776027, 13.969445180648137 9.629718092787414, 13.957636180637138 9.646454092802998, 14.010000180685893 9.7300000928808, 14.034163180708418 9.758191092907055, 14.059445180731956 9.774164092921936, 14.077500180748757 9.783609092930732, 14.108609180777734 9.811391092956612, 14.123336180791455 9.831664092975487, 14.14097318080789 9.860000093001872, 14.180554180844751 9.935827093072504, 14.194773180857993 9.98175409311527))) +GNQ Equatorial Guinea MULTIPOLYGON (((10.415045177337845 1.0025000847526826, 10.308609177238708 1.0025000847526826, 10.28139117721338 1.0025000847526826, 10.253891177187768 1.0025000847526826, 10.226663177162408 1.0025000847526826, 10.028609176977938 1.0025000847526826, 10.001109176952326 1.0022180847524282, 9.992209176944044 1.0018820847521113, 9.975454176928451 0.9459450847000141, 9.951509176906143 0.9301540846853129, 9.892100176850818 0.9518540847055164, 9.871463176831583 0.9761640847281541, 9.832463176795272 1.0020540847522739, 9.80397317676875 1.002609084752791, 9.801663176766596 1.0277820847762342, 9.845900176807788 1.0747180848199491, 9.7847181767508 1.0944450848383127, 9.747363176716021 1.1006910848441294, 9.702218176673966 1.0972180848409039, 9.675554176649143 1.0888910848331506, 9.571245176551997 1.0744450848196863, 9.547009176529428 1.121318084863347, 9.517500176501926 1.1330540848742743, 9.48389117647065 1.1332640848744688, 9.407773176399758 1.1063180848493772, 9.364718176359645 1.1494450848895355, 9.36027317635552 1.1747180849130814, 9.425836176416567 1.291945085022249, 9.457982176446507 1.3897910851133872, 9.490000176476315 1.4268090851478519, 9.560554176542041 1.4925000852090307, 9.636391176612676 1.5877820852977749, 9.610973176588999 1.6334730853403272, 9.611945176589899 1.6602820853652958, 9.64027317661629 1.7005540854027998, 9.681391176654586 1.74110908544057, 9.710482176681666 1.7604180854585536, 9.795000176760368 1.8888910855782086, 9.81340017677752 1.9297910856163014, 9.799163176764267 1.9966640856785745, 9.778054176744604 2.117782085791376, 9.772636176739553 2.319373085979123, 9.811763176775997 2.3437000860017747, 9.825836176789096 2.278609085941156, 9.833127176795898 2.2590270859229236, 9.896663176855071 2.2097180858770002, 9.93527317689103 2.1913910858599337, 9.98263617693513 2.1733360858431183, 10.020973176970841 2.168191085838316, 10.07389117702013 2.167782085837942, 10.181073177119941 2.167864085838019, 10.305554177235877 2.1675000858376734, 10.332782177261237 2.1675000858376734, 10.408663177331903 2.167845085837996, 10.421391177343764 2.1675000858376734, 10.448609177369093 2.1675000858376734, 10.53721817745162 2.1675000858376734, 10.564718177477232 2.1675000858376734, 10.65332717755976 2.1675000858376734, 11.082500177959446 2.168054085838193, 11.225827178092942 2.1683360858384617, 11.339763178199064 2.1686090858387104, 11.343609178202627 2.164445085834828, 11.345000178203918 2.0077820856889304, 11.344445178203415 1.987218085669781, 11.345000178203918 1.919164085606397, 11.345836178204706 1.8305540855238718, 11.346691178205504 1.7407000854401957, 11.347773178206523 1.6941640853968494, 11.348609178207283 1.6055540853143242, 11.350000178208575 1.4486090851681581, 11.353891178212223 1.0019450847521654, 11.244445178110283 1.0022180847524282, 10.969845177854552 1.0035910847537082, 10.909718177798538 1.0027820847529512, 10.77305417767127 1.0025000847526826, 10.52028217743586 1.0022180847524282, 10.4930541774105 1.0022180847524282, 10.415045177337845 1.0025000847526826)), ((8.866109175895275 3.5172180870947045, 8.856663175886496 3.4994450870781435, 8.80250017583603 3.396109086981909, 8.780000175815076 3.332500086922664, 8.777773175813024 3.320836086911811, 8.771663175807333 3.306527086898484, 8.69527317573619 3.1994450867987467, 8.681945175723769 3.1970820867965557, 8.497500175551977 3.243609086839882, 8.481945175537504 3.24833608684429, 8.45847317551565 3.2593090868545005, 8.44610917550412 3.274445086868596, 8.429163175488355 3.31889108691, 8.42458217548409 3.3369450869268036, 8.424163175483699 3.346945086936117, 8.428336175487573 3.374445086961728, 8.43110917549015 3.385282086971827, 8.434445175493266 3.3955540869813916, 8.449718175507485 3.4352820870183933, 8.457782175515007 3.4475000870297663, 8.469163175525608 3.4601360870415334, 8.522218175575006 3.462500087043736, 8.533891175585893 3.4605540870419276, 8.543609175594923 3.4563910870380568, 8.554445175605025 3.45360908703546, 8.56916317561874 3.456109087037788, 8.581945175630636 3.4672180870481384, 8.586663175635039 3.4761090870564146, 8.619373175665487 3.5527090871277522, 8.624445175670218 3.595282087167405, 8.625827175671503 3.643054087211894, 8.625045175670778 3.650000087218359, 8.645000175689347 3.6827820872488957, 8.686109175727637 3.7416640873037323, 8.73944517577732 3.763336087323921, 8.911391175937467 3.751245087312654, 8.923054175948323 3.7450000873068348, 8.935554175959965 3.7366640872990757, 8.960136175982854 3.7018090872666107, 8.962218175984788 3.674445087241125, 8.960836175983502 3.6552820872232843, 8.954718175977803 3.634164087203615, 8.950554175973934 3.6247180871948217, 8.943336175967204 3.6147180871855085, 8.920273175945738 3.593054087165328, 8.874445175903048 3.529445087106083, 8.866109175895275 3.5172180870947045))) +KIR Kiribati MULTIPOLYGON (((-157.23501797879845 1.7050000854069367, -157.3280639788851 1.7541640854527287, -157.436399978986 1.7897180854858448, -157.56764497910825 1.8558360855474234, -157.57792697911782 1.869582085560225, -157.58169997912134 1.8830540855727662, -157.58096397912064 1.898054085586736, -157.54809997909004 1.9233360856102877, -157.52891797907216 1.9351360856212665, -157.5186269790626 1.9344450856206237, -157.5171179790612 1.9208360856079594, -157.53196397907502 1.9065270855946324, -157.54196397908433 1.8994450855880274, -157.54823597909018 1.8884730855778145, -157.54320897908548 1.8722910855627504, -157.48306397902945 1.8452820855375904, -157.47280897901993 1.8419450855344763, -157.42944497897952 1.8316640855249062, -157.3700269789242 1.9050000855932012, -157.35473597890996 1.9241640856110536, -157.35000897890555 1.9356910856217837, -157.35610897891124 1.9459730856313655, -157.43920897898863 1.985000085667707, -157.48681797903296 1.9983360856801369, -157.49959097904485 1.9977730856796114, -157.50931797905392 2.0140270856947495, -157.50558197905045 2.028745085708451, -157.48916397903514 2.0330540857124646, -157.4410999789904 2.0255540857054797, -157.4316729789816 2.021391085701609, -157.3508269789063 1.9719450856555483, -157.33807297889444 1.9300000856164843, -157.3445909789005 1.9158360856033028, -157.34805497890375 1.8883360855776914, -157.34945497890504 1.8691640855598308, -157.34859997890425 1.8563910855479406, -157.3444639789004 1.8431910855356364, -157.33500897889158 1.8356910855286515, -157.31308197887117 1.8233360855171554, -157.25946397882123 1.801391085496718, -157.19514497876133 1.76721808546489, -157.18088197874803 1.7541640854527287, -157.17584497874336 1.7452820854444582, -157.17254497874026 1.731527085431651, -157.1766819787441 1.7186090854196152, -157.1850269787519 1.7130540854144414, -157.23501797879845 1.7050000854069367)), ((172.91427232867704 1.3465820850731376, 172.92299132868516 1.3517730850779799, 172.947509328708 1.342427085069275, 172.93981832870082 1.3359910850632701, 172.9190543286815 1.3386910850657898, 172.91427232867704 1.3465820850731376))) +NER Niger MULTIPOLYGON (((7.0280631741834725 12.995764095922283, 6.942218174103516 12.996800095923248, 6.806391173977033 13.108054096026862, 6.779163173951673 13.158054096073428, 6.677918173857364 13.345273096247794, 6.575282173761792 13.450836096346109, 6.423054173620017 13.605273096489938, 6.388609173587923 13.625554096508822, 6.285000173491426 13.683891096563158, 6.282773173489375 13.683891096563158, 6.238054173447722 13.683336096562641, 6.133336173350187 13.66082709654168, 5.997500173223671 13.701391096579457, 5.961945173190571 13.715273096592384, 5.874718173109329 13.7494450966242, 5.700282172946885 13.81778209668785, 5.6572181729067665 13.836664096705434, 5.548363172805381 13.891500096756502, 5.52639117278494 13.886945096752257, 5.364163172633852 13.846527096714624, 5.341945172613151 13.794718096666372, 5.2891631725640025 13.752773096627308, 5.215000172494911 13.746664096621615, 5.000000172294676 13.733673096609522, 4.923609172223536 13.736391096612053, 4.885554172188108 13.781391096653962, 4.625982171946362 13.721964096598612, 4.47889117180938 13.688609096567546, 4.247773171594133 13.481391096374566, 4.14278217149635 13.473473096367186, 4.142500171496067 13.401109096299791, 4.140918171494604 13.273591096181036, 4.1397181714934845 13.17721809609128, 4.105000171461143 12.996391095922874, 4.077218171435277 12.951109095880696, 3.9527821713193987 12.748891095692372, 3.9122181712816086 12.717782095663395, 3.6577821710446585 12.52889109548748, 3.661109171047741 12.445273095409604, 3.6661181710524033 12.24943609522721, 3.656391171043367 12.2152730951954, 3.6369451710252463 12.107773095095283, 3.6710731710570315 12.00500009499956, 3.671663171057588 11.97555409497214, 3.61694517100662 11.919718094920142, 3.6316631710203353 11.82528209483219, 3.6705541710565512 11.807218094815369, 3.6883361710731037 11.749718094761818, 3.604454170994984 11.693273094709241, 3.557845170951566 11.736600094749605, 3.546109170940639 11.774445094784838, 3.5079181709050715 11.824164094831147, 3.4712451708709295 11.854718094859606, 3.375136170781417 11.89471809489686, 3.356527170764082 11.885691094888443, 3.3209001707309085 11.886182094888909, 3.2980541707096336 11.910273094911346, 3.2700001706834882 11.951945094950148, 3.261663170675746 11.97777309497421, 3.255454170669964 12.011354095005487, 3.1622821705831825 12.113291095100422, 3.0100361704413956 12.268582095245051, 2.8645911703059426 12.381800095350485, 2.838618170281734 12.396654095364326, 2.780282170227423 12.38193609535061, 2.7190361701703694 12.352491095323188, 2.665009170120044 12.30277309527689, 2.6116731700703895 12.292500095267314, 2.5358361699997545 12.28110909525671, 2.3883631698624015 12.24731809522524, 2.3763911698512743 12.206664095187378, 2.388745169862773 12.12971809511572, 2.403609169876603 12.084445095073548, 2.4016631698748085 11.957218094955067, 2.397927169871309 11.896154094898193, 2.3920911698658927 11.904009094905504, 2.320873169799569 12.000000094994903, 2.058336169555048 12.357218095327596, 2.076945169572383 12.383473095352045, 2.161663169651291 12.415554095381921, 2.2355541697201033 12.418473095384641, 2.256109169739233 12.481109095442974, 2.220836169706388 12.593609095547748, 2.2008361696877614 12.630836095582424, 2.142291169633239 12.694100095641346, 2.106391169599817 12.714718095660544, 1.9888911694903868 12.731109095675805, 1.9280541694337217 12.700554095647348, 1.8716631693812076 12.608891095561987, 1.578336169108013 12.630000095581636, 1.3222911688695547 12.842518095779567, 1.117218168678562 13.011109095936575, 1.011391168580019 13.023891095948485, 0.9891631685593154 13.047218095970209, 0.9892451685593926 13.090564096010581, 0.9908361685608611 13.336664096239772, 0.9916631685616437 13.371664096272369, 1.0116631685802702 13.372773096273406, 1.043891168610287 13.363609096264867, 1.0733361686376952 13.350554096252708, 1.107782168669786 13.335282096238487, 1.179445168736521 13.313473096218175, 1.2765181688269251 13.34805409625038, 1.242954168795677 13.389791096289258, 1.2065271687617383 13.387500096287113, 1.1708361687284992 13.396391096295403, 1.1238911686847928 13.413327096311178, 1.0316631685988966 13.462500096356962, 1.0152821685836386 13.487845096380568, 1.0158361685841442 13.523818096414075, 0.9966631685663003 13.565973096453334, 0.7863911683704714 13.668891096549189, 0.62500016822014 13.684164096563407, 0.6075731682039134 13.698818096577057, 0.5155541681182285 13.854164096721732, 0.4650001680711284 13.913609096777094, 0.3548271679685229 14.130973096979531, 0.3923631680034987 14.180691097025829, 0.4087451680187542 14.245136097085862, 0.3847181679963683 14.283609097121683, 0.3211091679371236 14.36278209719542, 0.2963911679141233 14.367218097199554, 0.2330271678550844 14.425418097253754, 0.1894451678145117 14.464718097290358, 0.1666631677933026 14.523054097344684, 0.2252821678478938 14.700836097510262, 0.2413911678629006 14.752218097558114, 0.1963911678209911 14.842082097641807, 0.2119451678354665 14.863891097662119, 0.2323631678544871 14.880209097677309, 0.2350451678569812 14.915064097709774, 0.2322181678543416 14.950282097742573, 0.2377731678595296 15.00000909778889, 0.2808361678996221 14.988609097778266, 0.3341631679492991 14.975554097766107, 0.3966631680075068 14.960554097752137, 0.4505541680576926 14.978609097768953, 0.5122181681151119 15.000827097789653, 0.6186091682141921 14.967500097758602, 0.6538911682470712 14.95555409774748, 0.6950001682853326 14.942218097735065, 0.7311091683189659 14.960836097752406, 0.778336168362955 14.96860909775964, 0.9388911685124981 14.977500097767916, 0.9747181685458486 14.978609097768953, 0.9944451685642264 14.995282097784482, 1.0855541686490824 15.079445097862859, 1.3125001688604243 15.286664098055851, 1.8847181693933521 15.3152730980825, 1.9741631694766681 15.31889109808587, 2.510554169976217 15.345000098110177, 2.6280541700856475 15.350554098115353, 2.860000170301646 15.344718098109922, 3.01180917044303 15.341809098107206, 3.0227821704532687 15.414027098174472, 3.032500170462299 15.433054098192187, 3.307054170718004 15.392382098154314, 3.5181001709145505 15.359909098124064, 3.5308361709264204 15.39833609815986, 3.5355541709308227 15.429164098188565, 3.5672181709603024 15.512218098265919, 3.7332631711149418 15.654864098398761, 3.77930917115782 15.661245098404706, 3.8180541711939213 15.664027098407303, 3.8463911712203185 15.674164098416739, 3.8819451712534203 15.706664098447007, 3.8850001712562516 15.709164098449335, 3.895000171265565 15.727500098466408, 3.9022181712722954 15.748609098486071, 3.9502821713170704 15.941945098666125, 3.9808361713455156 16.07027309878565, 4.072082171430509 16.2986090989983, 4.096391171453149 16.330691099028172, 4.1141631714696985 16.348054099044347, 4.145282171498678 16.369718099064528, 4.179582171530626 16.384236099078052, 4.200836171550407 16.393891099087043, 4.1995821715492525 16.746664099415582, 4.19889117154861 16.82082709948466, 4.221109171569282 16.915000099572353, 4.251391171597504 16.99402709964596, 4.251109171597221 17.292009099923476, 4.24971817159593 17.47610910009493, 4.248609171594893 17.648054100255067, 4.246663171593099 17.99805410058103, 4.245000171591528 18.645273101183804, 4.245554171592062 18.66055410119803, 4.245836171592316 18.866391101389738, 4.2452821715918105 19.07250010158168, 4.2452821715918105 19.146664101650757, 4.355836171694762 19.167218101669903, 4.502218171831089 19.19555410169629, 4.8869451721893995 19.269718101765363, 5.308609172582095 19.350827101840906, 5.546945172804072 19.39610910188307, 5.656945172906518 19.416109101901696, 5.785282173026047 19.440273101924205, 5.812500173051376 19.446109101929636, 5.963609173192111 19.576945102051482, 5.981663173208943 19.593327102066752, 6.303336173508512 19.87110910232545, 6.4738911736673685 20.017773102462044, 6.644718173826448 20.164445102598634, 6.930273174092406 20.408336102825785, 7.4637731745892495 20.856673103243324, 7.644027174757127 20.965691103344867, 7.72500017483253 21.015554103391295, 7.9166631750110525 21.132500103500206, 8.049445175134707 21.2133361035755, 8.58250017563114 21.535554103875583, 8.716109175755577 21.615836103950357, 8.998609176018675 21.785000104107894, 9.469873176457583 22.065182104368844, 9.742863176711836 22.22639110451898, 10.12028217706333 22.447773104725158, 10.340245177268173 22.57647310484502, 10.616945177525878 22.737782104995247, 10.752782177652392 22.816391105068462, 10.828336177722747 22.860000105109066, 11.100554177976278 23.016936105255226, 11.707500178541522 23.36416410557861, 11.768327178598184 23.39805410561017, 11.986473178801361 23.522309105725896, 12.013336178826364 23.515827105719865, 12.280282179074987 23.459164105667085, 12.339445179130081 23.446664105655444, 12.398891179185455 23.434164105643802, 12.473054179254518 23.419164105629832, 12.591391179364734 23.3938911056063, 12.887782179640766 23.330000105546787, 13.1094451798472 23.28110910550126, 13.345836180067352 23.22916410545288, 13.39027318010875 23.219718105444088, 13.414300180131107 23.21541810544008, 13.46763618018079 23.197500105423387, 13.54389118025182 23.168609105396484, 13.563891180270446 23.158882105387434, 13.595554180299928 23.13944510536932, 13.612782180315975 23.127500105358195, 13.909163180592003 22.883327105130803, 14.23500018089544 22.614164104880118, 14.35666318100877 22.675827104937554, 14.41805418106594 22.70805410496756, 14.495000181137584 22.747218105004038, 14.818336181438724 22.91110910515667, 14.865000181482174 22.934445105178398, 14.95750018156832 22.980554105221344, 14.99789118160595 23.000591105240005, 15.006945181614384 22.95944510520168, 15.047782181652423 22.751664105008174, 15.154463181751765 22.202773104496984, 15.194718181789256 21.9988821043071, 15.197500181791838 21.82000010414049, 15.199445181793664 21.65528210398709, 15.200000181794167 21.614164103948795, 15.201391181795486 21.517773103859028, 15.209582181803114 21.49180910383484, 15.284445181872826 21.445273103791507, 15.53333618210462 21.08971810346037, 15.583054182150931 21.01860910339414, 15.615691182181308 20.951182103331348, 15.584445182152223 20.930000103311613, 15.566109182135136 20.90555410328885, 15.556663182126357 20.875273103260653, 15.554163182124029 20.852500103239436, 15.55721818212686 20.815827103205294, 15.57750018214574 20.765973103158856, 15.612363182178228 20.73180010312703, 15.633054182197498 20.716664103112933, 15.668336182230348 20.700691103098066, 15.996663182536139 20.353054102774294, 15.981945182522423 20.326382102749463, 15.87333618242127 20.139718102575614, 15.80416318235686 20.02000010246411, 15.753891182310042 19.93250010238262, 15.730273182288045 19.755273102217572, 15.713054182272003 19.618891102090558, 15.634163182198535 19.018891101531764, 15.610836182176797 18.841664101366703, 15.602500182169024 18.782218101311344, 15.57444518214291 18.289718100852667, 15.573054182141618 18.24888210081464, 15.558982182128517 17.99945410058234, 15.523609182095555 17.36000009998679, 15.489718182063996 16.92097309957792, 15.485136182059733 16.89809109955661, 15.482500182057265 16.89444509955321, 15.45694518203348 16.867773099528378, 15.354163181937764 16.761109099429035, 15.238609181830128 16.641391099317545, 15.122218181721735 16.52138209920578, 14.904445181518923 16.29471809899468, 14.572218181209507 15.947773098671561, 14.36889118102016 15.73389109847237, 14.271663180929608 15.596945098344818, 14.195554180858721 15.489164098244444, 14.072218180743846 15.313891098081214, 13.997218180673997 15.205827097980574, 13.859163180545437 15.037773097824058, 13.786391180477665 14.888891097685402, 13.767218180459793 14.848054097647363, 13.778609180470397 14.80221809760468, 13.794163180484901 14.732773097540004, 13.759163180452305 14.70555409751465, 13.682918180381279 14.608473097424238, 13.68444518038271 14.579445097397198, 13.674373180373323 14.55229109737192, 13.647782180348571 14.531664097352703, 13.629718180331736 14.52166409734339, 13.615182180318214 14.516264097338365, 13.547500180255156 14.511809097334208, 13.517218180226962 14.496945097320364, 13.494718180206007 14.484445097308722, 13.475827180188418 14.46805409729346, 13.465000180178322 14.450836097277431, 13.46194518017549 14.430554097258536, 13.562227180268877 13.993264096851277, 13.600554180304584 13.828609096697932, 13.625118180327462 13.718336096595237, 13.347773180069169 13.720000096596777, 13.255273179983021 13.608054096492523, 13.202218179933595 13.527364096417372, 13.125827179862455 13.51889109640949, 13.093891179832724 13.523054096413361, 13.0754181798155 13.538473096427722, 13.016109179760264 13.533609096423191, 12.89971817965187 13.4844450963774, 12.876109179629879 13.473327096367058, 12.770418179531447 13.3775000962778, 12.749718179512172 13.349027096251291, 12.646663179416208 13.286945096193463, 12.608054179380247 13.27278209618028, 12.589163179362657 13.263609096171734, 12.57305417934765 13.244718096154145, 12.541627179318368 13.189164096102402, 12.544027179320608 13.152636096068377, 12.491945179272108 13.097773096017292, 12.459163179241585 13.066109095987798, 12.429573179214003 13.073027095994249, 12.368609179157232 13.075282095996343, 12.175282178977199 13.122218096040058, 12.007773178821196 13.171391096085856, 11.890554178712023 13.237500096147414, 11.824582178650587 13.270827096178465, 11.53110917837725 13.355273096257108, 11.49166317834053 13.365836096266946, 11.463336178314137 13.373336096273931, 11.426663178279995 13.378891096279105, 11.392500178248156 13.381109096281165, 11.33860917819797 13.37944509627961, 11.268473178132666 13.376809096277157, 11.238609178104838 13.375273096275734, 11.203745178072381 13.371945096272626, 11.171109178041974 13.366391096267463, 11.126945178000852 13.361664096263056, 11.100827177976527 13.36028209626177, 11.066663177944719 13.359718096261247, 11.038327177918319 13.36028209626177, 11.011391177893245 13.361945096263312, 10.977500177861657 13.364164096265384, 10.95750017784303 13.365836096266946, 10.906663177795707 13.372500096273143, 10.880973177771779 13.37944509627961, 10.841109177734637 13.386109096285821, 10.79500017769169 13.389164096288667, 10.749718177649527 13.38860909628815, 10.714582177616819 13.385418096285179, 10.644663177551678 13.374609096275108, 10.592218177502843 13.357500096259173, 10.535273177449824 13.340000096242875, 10.463891177383346 13.318609096222957, 10.4425001773634 13.314718096219337, 10.411945177334957 13.30971809621468, 10.361663177288136 13.304445096209761, 10.33750017726561 13.30083609620641, 10.225000177160837 13.280554096187515, 10.178745177117776 13.270973096178594, 10.141527177083105 13.25610909616475, 9.988054176940182 13.172782096087147, 9.958609176912745 13.153327096069034, 9.933891176889745 13.135973096052865, 9.87305417683308 13.075282095996343, 9.694163176666478 12.87110909580619, 9.634927176611313 12.802436095742237, 9.621945176599212 12.8044450957441, 9.42389117641477 12.816945095755742, 9.236663176240398 12.829718095767646, 9.113054176125274 12.841664095778768, 9.064854176080388 12.84465409578155, 9.032500176050235 12.846664095783424, 9.010982176030211 12.846909095783658, 8.991800176012333 12.846245095783033, 8.818609175851037 12.89666409582999, 8.661809175705002 12.94583609587579, 8.648336175692464 12.971109095899322, 8.632500175677706 13.000554095926745, 8.611109175657788 13.025000095949508, 8.558745175609033 13.063745095985595, 8.539445175591055 13.075973095996986, 8.506945175560787 13.084718096005133, 8.471109175527403 13.083891096004365, 8.45166317550931 13.079027095999834, 8.408609175469195 13.088336096008504, 8.348327175413061 13.14055409605713, 8.287218175356145 13.198327096110944, 8.251509175322894 13.21760009612889, 8.230973175303774 13.221391096132422, 8.141391175220349 13.280554096187515, 8.12548217520552 13.2988910962046, 8.043609175129262 13.320836096225037, 7.815000174916349 13.35277309625478, 7.37971817451097 13.099718096019103, 7.341945174475796 13.106664096025568, 7.218891174361204 13.12555409604316, 7.1475001742946915 13.04277309596607, 7.0905541742416744 12.995282095921837, 7.0280631741834725 12.995764095922283))) +NGA Nigeria MULTIPOLYGON (((11.799436178627161 7.296664090614584, 11.75496317858574 7.26830009058817, 11.788327178616811 7.252845090573771, 11.882500178704504 7.132218090461436, 11.864163178687448 7.084718090417198, 11.76069117859106 7.002082090340238, 11.701391178535857 6.976109090316044, 11.641945178480483 6.946527090288498, 11.583609178426144 6.885836090231976, 11.559236178403438 6.819582090170272, 11.586873178429187 6.786182090139164, 11.5886091784308 6.759445090114255, 11.580973178423704 6.720073090077591, 11.557773178402101 6.6583360900201, 11.512154178359594 6.603400089968929, 11.46402717831478 6.601664089967315, 11.4380541782906 6.5900000899564475, 11.414582178268745 6.512918089884664, 11.409654178264134 6.484309089858016, 11.380763178237231 6.454654089830399, 11.340273178199539 6.440836089817537, 11.270000178134069 6.433191089810407, 11.20221817807095 6.436945089813904, 11.188191178057878 6.43389108981107, 11.127845178001678 6.437918089814815, 11.112363177987277 6.453336089829179, 11.093745177969936 6.503336089875745, 11.08833617796489 6.5250000898959115, 11.073327177950915 6.596245089962267, 11.07583617795325 6.650000090012327, 11.082500177959446 6.677782090038207, 11.076873177954212 6.709027090067309, 11.04360917792323 6.753336090108576, 11.014727177896333 6.777854090131399, 10.962918177848081 6.777218090130816, 10.940973177827658 6.779027090132502, 10.903054177792342 6.806945090158493, 10.881945177772678 6.83360909018333, 10.880418177771247 6.8723640902194205, 10.863745177755732 6.925836090269229, 10.84236317773582 6.959654090300717, 10.821391177716293 6.970273090310613, 10.734445177635308 7.001391090339595, 10.620345177529032 7.057082090391461, 10.56000017747283 7.02166409035847, 10.51333617742938 6.8780540902247225, 10.269445177202243 6.87471809022162, 10.230691177166136 6.881245090227694, 10.210136177147007 6.895418090240895, 10.193054177131103 6.922636090266238, 10.188891177127232 6.942364090284613, 10.18777317712619 6.978336090318123, 10.178191177117242 7.002782090340887, 10.166109177105994 7.020136090357042, 10.095000177039765 6.962782090303634, 9.879863176839422 6.7805540901339185, 9.795554176760902 6.801664090153579, 9.786391176752375 6.777782090131339, 9.744163176713045 6.639445090002496, 9.708845176680143 6.521254089892423, 9.655554176630517 6.5258360898967, 9.637782176613968 6.5233360898943715, 9.5944451765736 6.497773089870563, 9.525273176509188 6.4297180898071815, 9.46852717645632 6.404300089783504, 9.455554176444252 6.369164089750782, 9.432082176422398 6.327218089711721, 9.409582176401443 6.326664089711201, 9.36958217636419 6.326527089711078, 9.333054176330165 6.279718089667483, 9.223327176227968 6.150554089547185, 9.07166317608673 6.013609089419646, 8.960000175982714 5.907364089320694, 8.934509175958993 5.902918089316557, 8.864445175893735 5.837573089255699, 8.85082717588105 5.722500089148525, 8.88028217590849 5.657218089087735, 8.904863175931382 5.633191089065349, 8.92000017594546 5.603745089037929, 8.907082175933454 5.5608360889979735, 8.884163175912107 5.538745088977393, 8.862291175891727 5.503818088944868, 8.837218175868372 5.379718088829293, 8.832082175863604 5.34013608879242, 8.840900175871809 5.302573088757441, 8.82471817585673 5.1886090886513045, 8.81277317584562 5.155691088620642, 8.716945175756365 5.01860908849298, 8.681663175723514 4.972218088449779, 8.620836175666852 4.892364088375402, 8.620554175666598 4.872082088356521, 8.635063175680102 4.846109088332327, 8.6329181756781 4.825000088312663, 8.602845175650089 4.8104180882990875, 8.591736175639738 4.81093608829957, 8.585209175633679 4.820409088308395, 8.553191175603843 4.806527088295468, 8.534300175586253 4.767773088259375, 8.536800175588581 4.743609088236866, 8.540973175592484 4.71971808821462, 8.52819117558056 4.701664088197802, 8.506945175560787 4.699864088196122, 8.478609175534388 4.703891088199882, 8.401663175462744 4.7502820882430825, 8.342782175407905 4.806109088295074, 8.274718175344503 4.856664088342157, 8.271691175341687 4.842718088329164, 8.259445175330285 4.8259730883135745, 8.270554175340635 4.807918088296759, 8.297636175365852 4.780282088271022, 8.314027175381113 4.75902708825123, 8.359373175423343 4.632009088132932, 8.293682175362164 4.547500088054221, 8.269863175339992 4.542364088049439, 8.118327175198857 4.550554088057069, 8.022500175109599 4.551391088057855, 7.7686091748731485 4.518609088027318, 7.723609174831239 4.502218088012057, 7.695282174804873 4.497500088007655, 7.673891174784956 4.496945088007138, 7.561391174680182 4.525554088033786, 7.537218174657653 4.540000088047236, 7.530554174651456 4.626664088127953, 7.533336174654039 4.6727090881708335, 7.550400174669932 4.706554088202353, 7.546109174665929 4.705554088201424, 7.523745174645114 4.690691088187577, 7.516454174638312 4.621873088123493, 7.528745174649771 4.6041000881069465, 7.506109174628676 4.569791088074993, 7.447218174573834 4.550282088056818, 7.272500174411107 4.557782088063803, 7.2386091743795475 4.563609088069228, 7.179718174324705 4.627218088128473, 7.074309174226528 4.753054088245662, 7.059500174212758 4.719109088214054, 7.090691174241783 4.669791088168125, 7.11833617426754 4.65250008815201, 7.1479821742951515 4.635418088136106, 7.169718174315392 4.604445088107255, 7.17610917432134 4.5844450880886285, 7.1794451743244565 4.506945088016451, 7.165209174311201 4.473954087985732, 7.073054174225376 4.434718087949193, 7.042782174197185 4.438054087952295, 7.0197181741756935 4.497773088007918, 7.003336174160438 4.575282088080101, 7.027500174182933 4.62305408812459, 7.0393091741939315 4.644309088144382, 7.009263174165966 4.700791088196993, 6.963891174123717 4.724864088219405, 6.899718174063935 4.676945088174776, 6.906391174070166 4.6538910881533155, 6.9788911741376864 4.478336087989817, 6.98750017414568 4.459445087972213, 6.99860917415603 4.437218087951521, 7.01180917416832 4.413336087929281, 7.0238181741795245 4.3868730879046325, 7.008682174165415 4.371318087890145, 6.961391174121388 4.372218087890985, 6.8716631740378205 4.392636087909992, 6.821663173991254 4.524164088032492, 6.762845173936455 4.763473088255367, 6.806391173977033 4.492218088002744, 6.816663173986598 4.462218087974804, 6.835000174003653 4.415000087930821, 6.850836174018411 4.377500087895896, 6.848609174016332 4.348336087868745, 6.794163173965643 4.336664087857869, 6.738336173913638 4.336664087857869, 6.720482173897011 4.348191087868599, 6.7091631738864805 4.457218087970148, 6.712363173889457 4.496664088006881, 6.720000173896551 4.524164088032492, 6.7343001739098725 4.551391088057855, 6.7422181739172515 4.575554088080352, 6.73242717390815 4.603536088106409, 6.6569451738378405 4.507500088016968, 6.664927173845285 4.427845087942785, 6.687636173866423 4.393191087910509, 6.692363173870831 4.331809087853344, 6.630554173813266 4.325554087847522, 6.574445173761006 4.326664087848556, 6.493609173685712 4.322218087844419, 6.4050001736031845 4.312218087835106, 6.30055417350593 4.294582087818682, 6.251182173459938 4.301564087825184, 6.253336173461946 4.336945087858126, 6.282291173488915 4.376527087894999, 6.322709173526562 4.424445087939617, 6.252782173461441 4.450000087963417, 6.233054173443065 4.386109087903918, 6.215000173426233 4.305836087829164, 6.172218173386398 4.2827730878076835, 6.111736173330058 4.27284508779843, 6.057782173279833 4.288054087812597, 5.935836173166251 4.338336087859432, 5.868609173103636 4.38139108789953, 5.736945172981024 4.489445088000153, 5.669445172918159 4.558336088064323, 5.599309172852827 4.635418088136106, 5.582363172837063 4.655836088155127, 5.5661091728219105 4.680000088177621, 5.523609172782329 4.757500088249799, 5.497500172758009 4.805836088294825, 5.4852821727466505 4.835554088322496, 5.451945172715597 4.923054088403987, 5.384236172652521 5.116527088584178, 5.399718172666951 5.135345088601696, 5.435418172700196 5.133336088599833, 5.4538911727174195 5.117636088585201, 5.470554172732932 5.091109088560501, 5.493400172754207 5.144927088610629, 5.455691172719071 5.187364088650142, 5.446318172710363 5.165691088629956, 5.414718172680921 5.156391088621305, 5.368336172637726 5.160554088625176, 5.34527317261626 5.330000088782981, 5.4525001727161 5.363054088813769, 5.539718172797336 5.414718088861889, 5.62055417287263 5.509445088950102, 5.636045172887037 5.53673608897553, 5.543609172800956 5.508609088949328, 5.506663172766565 5.476809088919708, 5.503536172763631 5.436664088882324, 5.487218172748442 5.408054088855678, 5.427500172692817 5.393609088842226, 5.375973172644848 5.390136088838986, 5.2619451725386455 5.433191088879084, 5.193191172474599 5.504718088945708, 5.188400172470153 5.540900088979399, 5.214791172494728 5.577636089013609, 5.277782172553401 5.581391089017117, 5.2977821725720275 5.580000089015812, 5.380000172648579 5.565000089001842, 5.502536172762717 5.580209089016009, 5.502500172762666 5.616945089050219, 5.4459731727100404 5.653054089083852, 5.4134731726797725 5.642082089073639, 5.182082172464277 5.5748640890110295, 5.142218172427135 5.604164089038321, 5.08666317237541 5.697636089125368, 5.083609172372547 5.734309089159524, 5.000000172294676 5.857500089274254, 4.948609172246819 5.924445089336601, 4.872500172175933 6.014164089420163, 4.746391172058509 6.135973089533607, 4.705973172020862 6.170973089566203, 4.53374517186046 6.29916408968559, 4.50194517183084 6.316109089701371, 4.466636171797944 6.3296540897139835, 4.454718171786851 6.338336089722077, 4.437218171770553 6.348609089731639, 4.410209171745407 6.359927089742186, 4.3729181717106655 6.368609089750265, 4.322500171663705 6.372154089753565, 4.3000001716427505 6.377773089758804, 4.0858361714433045 6.409718089788555, 3.9911091713550775 6.421391089799428, 3.956663171323015 6.4227820898007195, 3.8452821712192815 6.426109089803816, 3.747500171128195 6.4266640898043335, 3.694163171078543 6.419718089797868, 3.5666631709597993 6.413891089792443, 3.5350001709302887 6.412500089791138, 3.4447181708462153 6.409445089788292, 3.4130541708167357 6.409718089788555, 3.3913181707964952 6.445136089821531, 3.4344451708366535 6.453473089829302, 3.50666317090392 6.449718089825808, 3.538054170933151 6.449582089825682, 3.7305541711124306 6.532773089903159, 3.852400171225895 6.601527089967192, 3.8072181711838198 6.612782089977671, 3.767218171146567 6.613054089977922, 3.713418171096464 6.60377308996928, 3.650554171037925 6.564445089932647, 3.5263911709222953 6.5213910898925604, 3.478363170877543 6.541391089911187, 3.479027170878169 6.590209089956645, 3.4430541708446754 6.578336089945594, 3.4026361708070283 6.548336089917655, 3.370836170777409 6.447500089823734, 3.385691170791233 6.414718089793212, 3.319163170729297 6.385554089766046, 3.1073631705320395 6.3770820897581615, 3.0669451704943924 6.377500089758541, 3.040282170469567 6.379164089760096, 3.0200001704506576 6.383473089764109, 2.9738911704077395 6.390000089770183, 2.934445170370992 6.389445089769666, 2.881391170321592 6.385000089765526, 2.8572181702990633 6.382218089762944, 2.719609170170912 6.365509089747377, 2.719609170170912 6.452236089828148, 2.7272181701779914 6.474718089849091, 2.7554181702042513 6.56513608993329, 2.7616631702100847 6.671391090032259, 2.762782170211125 6.765000090119429, 2.751873170200952 6.9212450902649465, 2.72791817017864 6.947009090288944, 2.749718170198946 7.094164090425991, 2.778609170225849 7.134445090463501, 2.770000170217827 7.25444509057526, 2.7366631701868016 7.596391090893732, 2.732218170182648 7.6519450909454605, 2.7329541701833477 7.658209090951303, 2.738609170188596 7.716391091005491, 2.7429181701926098 7.789582091073655, 2.7393731701893103 7.8144450910968, 2.7029271701553625 7.865036091143921, 2.6952821701482605 7.8822180911599276, 2.6925001701456495 7.906391091182442, 2.708891170160939 8.008054091277117, 2.7275001701782458 8.108327091370512, 2.741391170191207 8.156109091415004, 2.7517361702008145 8.20965409146487, 2.736045170186202 8.2457640914985, 2.709927170161876 8.342291091588407, 2.7254181701763116 8.432009091671958, 2.7500001701992005 8.457500091695692, 2.7583361702069737 8.491109091726997, 2.757427170206114 8.530136091763339, 2.75296317020198 8.535573091768413, 2.756391170205177 8.55527309178676, 2.756391170205177 8.58194509181159, 2.746945170196369 8.719445091939647, 2.742954170192661 8.770764091987445, 2.7452821701948267 8.795273092010277, 2.7830541702300025 9.016664092216459, 2.792082170238416 9.050418092247895, 2.813609170258445 9.065273092261734, 2.9052821703438383 9.078891092274418, 2.967500170401763 9.081664092276995, 2.9962451704285513 9.063191092259785, 3.095000170520507 9.090554092285274, 3.131391170554423 9.194445092382026, 3.166391170587019 9.302773092482923, 3.163191170584014 9.377364092552384, 3.148609170570438 9.412218092584851, 3.141809170564102 9.435136092606186, 3.1713911705916757 9.496391092663245, 3.3172181707274717 9.636109092793362, 3.363327170770418 9.68193609283604, 3.352782170760605 9.703054092855709, 3.337218170746098 9.735000092885457, 3.330973170740293 9.762364092910943, 3.334027170743127 9.783327092930477, 3.3495821707576283 9.811454092956666, 3.4835451708823655 9.855691092997859, 3.5209731709172445 9.845554092988422, 3.5588911709525632 9.880282093020767, 3.612009171002029 9.954100093089522, 3.6779181710633964 10.111809093236388, 3.6841631710692297 10.160836093282057, 3.67034517105634 10.186454093305912, 3.644163171031977 10.199445093318005, 3.5819451709740235 10.275273093388634, 3.6386091710267863 10.413609093517465, 3.69937317108338 10.448300093549776, 3.7344451711160502 10.429582093532346, 3.7638911711434844 10.412773093516691, 3.791527171169207 10.404164093508669, 3.8127821711890135 10.449445093550835, 3.855000171228312 10.585000093677081, 3.847500171221327 10.696527093780958, 3.830836171205817 10.711945093795308, 3.7855541711636533 10.756945093837217, 3.7512451711317 10.79874509387615, 3.7491001711296974 10.829445093904738, 3.7594451711393333 10.847500093921553, 3.775282171154089 10.898609093969156, 3.7376361711190214 11.02027309408247, 3.7305541711124306 11.040554094101353, 3.728745171110745 11.077500094135758, 3.7357731711172733 11.120636094175936, 3.7141631710971694 11.12721809418207, 3.694718171079046 11.134718094189054, 3.6088631709990864 11.25000009429641, 3.4750001708744094 11.429718094463794, 3.5252821709212583 11.563609094588486, 3.571245170964062 11.650973094669851, 3.604454170994984 11.693273094709241, 3.6883361710731037 11.749718094761818, 3.6705541710565512 11.807218094815369, 3.6316631710203353 11.82528209483219, 3.61694517100662 11.919718094920142, 3.671663171057588 11.97555409497214, 3.6710731710570315 12.00500009499956, 3.6369451710252463 12.107773095095283, 3.656391171043367 12.2152730951954, 3.6661181710524033 12.24943609522721, 3.661109171047741 12.445273095409604, 3.6577821710446585 12.52889109548748, 3.9122181712816086 12.717782095663395, 3.9527821713193987 12.748891095692372, 4.077218171435277 12.951109095880696, 4.105000171461143 12.996391095922874, 4.1397181714934845 13.17721809609128, 4.140918171494604 13.273591096181036, 4.142500171496067 13.401109096299791, 4.14278217149635 13.473473096367186, 4.247773171594133 13.481391096374566, 4.47889117180938 13.688609096567546, 4.625982171946362 13.721964096598612, 4.885554172188108 13.781391096653962, 4.923609172223536 13.736391096612053, 5.000000172294676 13.733673096609522, 5.215000172494911 13.746664096621615, 5.2891631725640025 13.752773096627308, 5.341945172613151 13.794718096666372, 5.364163172633852 13.846527096714624, 5.52639117278494 13.886945096752257, 5.548363172805381 13.891500096756502, 5.6572181729067665 13.836664096705434, 5.700282172946885 13.81778209668785, 5.874718173109329 13.7494450966242, 5.961945173190571 13.715273096592384, 5.997500173223671 13.701391096579457, 6.133336173350187 13.66082709654168, 6.238054173447722 13.683336096562641, 6.282773173489375 13.683891096563158, 6.285000173491426 13.683891096563158, 6.388609173587923 13.625554096508822, 6.423054173620017 13.605273096489938, 6.575282173761792 13.450836096346109, 6.677918173857364 13.345273096247794, 6.779163173951673 13.158054096073428, 6.806391173977033 13.108054096026862, 6.942218174103516 12.996800095923248, 7.0280631741834725 12.995764095922283, 7.0905541742416744 12.995282095921837, 7.1475001742946915 13.04277309596607, 7.218891174361204 13.12555409604316, 7.341945174475796 13.106664096025568, 7.37971817451097 13.099718096019103, 7.815000174916349 13.35277309625478, 8.043609175129262 13.320836096225037, 8.12548217520552 13.2988910962046, 8.141391175220349 13.280554096187515, 8.230973175303774 13.221391096132422, 8.251509175322894 13.21760009612889, 8.287218175356145 13.198327096110944, 8.348327175413061 13.14055409605713, 8.408609175469195 13.088336096008504, 8.45166317550931 13.079027095999834, 8.471109175527403 13.083891096004365, 8.506945175560787 13.084718096005133, 8.539445175591055 13.075973095996986, 8.558745175609033 13.063745095985595, 8.611109175657788 13.025000095949508, 8.632500175677706 13.000554095926745, 8.648336175692464 12.971109095899322, 8.661809175705002 12.94583609587579, 8.818609175851037 12.89666409582999, 8.991800176012333 12.846245095783033, 9.010982176030211 12.846909095783658, 9.032500176050235 12.846664095783424, 9.064854176080388 12.84465409578155, 9.113054176125274 12.841664095778768, 9.236663176240398 12.829718095767646, 9.42389117641477 12.816945095755742, 9.621945176599212 12.8044450957441, 9.634927176611313 12.802436095742237, 9.694163176666478 12.87110909580619, 9.87305417683308 13.075282095996343, 9.933891176889745 13.135973096052865, 9.958609176912745 13.153327096069034, 9.988054176940182 13.172782096087147, 10.141527177083105 13.25610909616475, 10.178745177117776 13.270973096178594, 10.225000177160837 13.280554096187515, 10.33750017726561 13.30083609620641, 10.361663177288136 13.304445096209761, 10.411945177334957 13.30971809621468, 10.4425001773634 13.314718096219337, 10.463891177383346 13.318609096222957, 10.535273177449824 13.340000096242875, 10.592218177502843 13.357500096259173, 10.644663177551678 13.374609096275108, 10.714582177616819 13.385418096285179, 10.749718177649527 13.38860909628815, 10.79500017769169 13.389164096288667, 10.841109177734637 13.386109096285821, 10.880973177771779 13.37944509627961, 10.906663177795707 13.372500096273143, 10.95750017784303 13.365836096266946, 10.977500177861657 13.364164096265384, 11.011391177893245 13.361945096263312, 11.038327177918319 13.36028209626177, 11.066663177944719 13.359718096261247, 11.100827177976527 13.36028209626177, 11.126945178000852 13.361664096263056, 11.171109178041974 13.366391096267463, 11.203745178072381 13.371945096272626, 11.238609178104838 13.375273096275734, 11.268473178132666 13.376809096277157, 11.33860917819797 13.37944509627961, 11.392500178248156 13.381109096281165, 11.426663178279995 13.378891096279105, 11.463336178314137 13.373336096273931, 11.49166317834053 13.365836096266946, 11.53110917837725 13.355273096257108, 11.824582178650587 13.270827096178465, 11.890554178712023 13.237500096147414, 12.007773178821196 13.171391096085856, 12.175282178977199 13.122218096040058, 12.368609179157232 13.075282095996343, 12.429573179214003 13.073027095994249, 12.459163179241585 13.066109095987798, 12.491945179272108 13.097773096017292, 12.544027179320608 13.152636096068377, 12.541627179318368 13.189164096102402, 12.57305417934765 13.244718096154145, 12.589163179362657 13.263609096171734, 12.608054179380247 13.27278209618028, 12.646663179416208 13.286945096193463, 12.749718179512172 13.349027096251291, 12.770418179531447 13.3775000962778, 12.876109179629879 13.473327096367058, 12.89971817965187 13.4844450963774, 13.016109179760264 13.533609096423191, 13.0754181798155 13.538473096427722, 13.093891179832724 13.523054096413361, 13.125827179862455 13.51889109640949, 13.202218179933595 13.527364096417372, 13.255273179983021 13.608054096492523, 13.347773180069169 13.720000096596777, 13.625118180327462 13.718336096595237, 13.634718180336392 13.703891096581785, 13.760018180453102 13.527800096417778, 13.901082180584467 13.328218096231907, 14.074718180746174 13.081664096002285, 14.076945180748254 13.068336095989878, 14.100827180770494 12.95721809588639, 14.173054180837767 12.623609095575688, 14.199163180862087 12.50139109546187, 14.197363180860407 12.47500009543728, 14.184163180848117 12.415000095381401, 14.174445180839058 12.39666409536433, 14.2390271808992 12.354164095324748, 14.322082180976565 12.355973095326434, 14.392500181042124 12.352773095323457, 14.43063618107766 12.348164095319163, 14.469191181113558 12.340900095312392, 14.490836181133716 12.335836095307684, 14.519718181160613 12.315554095288789, 14.55208218119077 12.24889109522671, 14.645282181277565 12.188327095170308, 14.649654181281619 12.121036095107627, 14.61965418125368 12.028609095021551, 14.637218181270043 11.979927094976219, 14.630836181264101 11.891391094893763, 14.61221818124676 11.82528209483219, 14.588609181224768 11.755000094766729, 14.593745181229565 11.690273094706455, 14.638054181270832 11.650836094669728, 14.644509181276845 11.572354094596633, 14.614718181249089 11.503609094532607, 14.46208218110695 11.414164094449305, 14.436527181083136 11.405282094441034, 14.405691181054408 11.400136094436235, 14.373891181024817 11.378054094415674, 14.329718180983662 11.338891094379207, 14.224582180885761 11.267218094312454, 14.18860918085224 11.24416409429098, 14.154373180820357 11.234864094282315, 14.114718180783427 11.247500094294082, 14.087918180758464 11.25791809430379, 14.013745180689398 11.282009094326227, 13.984718180662355 11.267500094312709, 13.886663180571048 11.170554094222425, 13.807218180497046 11.055827094115585, 13.774718180466778 10.97582709404108, 13.77090018046323 10.939309094007058, 13.71833618041427 10.881545093953264, 13.715418180411547 10.869027093941611, 13.706391180403159 10.84666409392078, 13.676945180375725 10.8075000938843, 13.64916318034986 10.771945093851187, 13.617773180320626 10.733609093815488, 13.598891180303042 10.710836093794285, 13.58333618028854 10.691109093775907, 13.57139118027743 10.668054093754435, 13.558191180265112 10.63582709372443, 13.545273180253105 10.595836093687183, 13.519445180229042 10.502218093599993, 13.459027180172768 10.238609093354484, 13.468682180181759 10.207082093325127, 13.465554180178856 10.179027093298998, 13.45430018016836 10.158745093280103, 13.404163180121685 10.115418093239754, 13.395691180113772 10.110191093234889, 13.326391180049256 10.101664093226944, 13.27076317999743 10.086873093213171, 13.25305417998095 10.071809093199136, 13.243891179972422 10.031664093161751, 13.228191179957776 9.906245093044944, 13.23389117996311 9.864654093006209, 13.259718179987146 9.751664092900981, 13.24180917997046 9.585000092745759, 13.218054179948354 9.5511090927142, 13.191245179923385 9.528891092693513, 13.150282179885238 9.515209092680763, 13.096391179835052 9.51194509267772, 13.060973179802062 9.510273092676172, 13.023891179767531 9.496109092662977, 12.973745179720822 9.456527092626118, 12.89778217965008 9.34805409252509, 12.838054179594451 9.068609092264836, 12.848054179603764 9.038327092236642, 12.851245179606735 9.017918092217627, 12.82541817958267 8.853336092064353, 12.815000179572962 8.814718092028386, 12.79721817955641 8.771391091988036, 12.68110917944827 8.656800091881308, 12.613609179385406 8.6316640918579, 12.546391179322825 8.613054091840567, 12.498054179277801 8.627364091853892, 12.476663179257883 8.627918091854411, 12.404300179190471 8.600273091828669, 12.402845179189114 8.563127091794072, 12.41610917920147 8.546945091778994, 12.420418179205484 8.504164091739156, 12.37097317915945 8.446945091685862, 12.339027179129687 8.422082091662716, 12.314163179106544 8.427918091668147, 12.290836179084806 8.433191091673052, 12.269300179064743 8.423891091664402, 12.250554179047299 8.400973091643053, 12.242773179040057 8.377500091621187, 12.237082179034758 8.31986409156751, 12.240973179038377 8.276527091527157, 12.25374517905027 8.24194509149494, 12.256663179052993 8.217782091472444, 12.255554179051956 8.197773091453811, 12.245527179042597 8.177173091434625, 12.229163179027381 8.158327091417078, 12.21263617901198 8.136809091397026, 12.204027179003958 8.117364091378917, 12.199582178999833 8.083954091347806, 12.20166317900177 8.042500091309194, 12.209445179009009 8.003336091272729, 12.16889117897125 7.926664091201317, 12.141109178945356 7.877773091155788, 12.112918178919102 7.84402709112436, 12.096109178903447 7.826109091107668, 12.076663178885354 7.796391091079997, 12.063891178873462 7.77471809105981, 12.053609178863866 7.757218091043512, 12.043609178854553 7.739718091027214, 12.031527178843305 7.709582090999149, 12.025973178838143 7.676809090968618, 12.026245178838394 7.655000090948306, 12.03513617884667 7.636527090931111, 12.042291178853333 7.577364090876003, 11.91374517873362 7.445282090752997, 11.892218178713563 7.42528209073437, 11.864300178687557 7.405000090715475, 11.846391178670899 7.381391090693498, 11.799436178627161 7.296664090614584)), ((7.180273174325237 4.377773087896159, 7.166663174312561 4.378336087896685, 7.145554174292897 4.3822180879002985, 7.135763174283767 4.391945087909349, 7.226109174367906 4.52000008802861, 7.248336174388612 4.511391088020602, 7.29360917443077 4.487218087998087, 7.316663174452259 4.472500087984372, 7.309863174445923 4.410554087926684, 7.29889117443571 4.40444508792099, 7.214445174357053 4.3827820879008215, 7.203609174346951 4.380554087898744, 7.180273174325237 4.377773087896159))) +STP Sao Tome & Principe MULTIPOLYGON (((6.523891173713935 0.0183360838361182, 6.516527173707061 0.0197180838374038, 6.507500173698645 0.0416640838578388, 6.465136173659204 0.1958360840014279, 6.467218173661138 0.2597180840609212, 6.491809173684032 0.3069450841048962, 6.533609173722965 0.3438910841393152, 6.617773173801368 0.403609084194926, 6.662500173843 0.4087450841997082, 6.687782173866566 0.4022180841936347, 6.7166631738934655 0.377500084170606, 6.751391173925811 0.3302820841266367, 6.766245173939637 0.287500084086787, 6.755554173929681 0.2397180840422948, 6.751527173925922 0.2268090840302648, 6.738609173913886 0.2088910840135867, 6.659445173840169 0.1023640839143667, 6.5616631737491105 0.0272180838443887, 6.523891173713935 0.0183360838361182)), ((7.399163174529093 1.530554085244475, 7.347782174481239 1.5650000852765515, 7.338054174472177 1.5772180852879387, 7.327918174462724 1.610000085318461, 7.373054174504773 1.6875000853906386, 7.404582174534141 1.7012450854034427, 7.451109174577454 1.693054085395815, 7.463473174588984 1.6761820853801055, 7.462782174588341 1.6347180853414898, 7.423054174551339 1.5561090852682753, 7.399163174529093 1.530554085244475))) +TGO Togo MULTIPOLYGON (((1.6554181691797965 7.529773090831682, 1.6501361691748855 7.513891090816898, 1.644445169169586 7.44305409075092, 1.6437451691689375 7.409673090719835, 1.645554169170623 7.33389109064926, 1.6425001691677608 6.995554090334153, 1.5538821690852274 6.996564090335099, 1.562363169093146 6.948191090290038, 1.577027169106799 6.909273090253805, 1.6041631691320788 6.894309090239858, 1.6075001691351645 6.796664090148923, 1.5901361691190061 6.715691090073506, 1.5752821691051793 6.679718090040012, 1.6168091691438349 6.596245089962267, 1.6475001691724174 6.573054089940669, 1.6554181691797965 6.5706730899384524, 1.6640271691878183 6.5770090899443545, 1.6930541692148608 6.5491640899184205, 1.7491631692671206 6.456664089832273, 1.7715271692879355 6.41486408979334, 1.7952821693100702 6.308336089694137, 1.79780016931241 6.280254089667977, 1.742500169260893 6.26971808965817, 1.6830631692055533 6.259591089648737, 1.652500169177074 6.250282089640066, 1.629773169155925 6.235136089625954, 1.6354001691611586 6.218718089610675, 1.5605541690914606 6.206109089598925, 1.468891169006099 6.186391089580567, 1.4088911689502197 6.167773089563227, 1.4035541689452486 6.165345089560958, 1.2939541688431575 6.1385360895359895, 1.198891168754642 6.1005450895006135, 1.2027821687582616 6.11777308951666, 1.2011091687566875 6.160000089555979, 1.115000168676488 6.160836089556767, 1.0999731686625012 6.1603450895563014, 1.0622181686273393 6.219445089611341, 1.0015271685708171 6.325282089709916, 0.904718168480656 6.329445089713786, 0.7883361683722683 6.415554089793986, 0.75889116834486 6.447782089824003, 0.7273631683154917 6.50152708987406, 0.7227821683112268 6.524445089895394, 0.7246731683129894 6.535645089905827, 0.7438911683308902 6.557218089925925, 0.728363168316406 6.584200089951054, 0.6908361682814643 6.589164089955673, 0.659718168252482 6.610418089975468, 0.6433361682372265 6.646809090009356, 0.6472181682408404 6.676664090037164, 0.6506911682440659 6.708191090066521, 0.6438181682376865 6.733536090090126, 0.5690271681680201 6.814718090165741, 0.5250001681270078 6.947782090289664, 0.5893091681869009 6.993609090332342, 0.6087451682050187 7.0172180903543335, 0.6400001682341099 7.205554090529731, 0.652218168245497 7.282773090601651, 0.6529541682461968 7.369645090682553, 0.642636168236578 7.397845090708813, 0.598336168195317 7.387636090699303, 0.5682631681673058 7.386664090698403, 0.5365271681377521 7.4159730907257, 0.5105541681135719 7.460554090767218, 0.512782168115649 7.531109090832928, 0.5141631681169372 7.557782090857771, 0.521245168123528 7.585418090883508, 0.5931911681905149 7.701873090991967, 0.6229271682182116 7.896727091173432, 0.5975001681945287 8.094718091357834, 0.6116631682077411 8.216109091470884, 0.6383361682325699 8.237500091490801, 0.6669451682592182 8.253745091505934, 0.7044451682941428 8.273054091523917, 0.7286091683166376 8.29520909154455, 0.7262451683144491 8.323745091571126, 0.6988911682889807 8.388609091631537, 0.6498631682433142 8.473054091710182, 0.6322181682268706 8.4934730917292, 0.5383361681394376 8.555554091787016, 0.4700731680758565 8.595554091824269, 0.4123631680221251 8.690554091912745, 0.3884731679998765 8.738473091957374, 0.3827361679945227 8.760754091978129, 0.4886821680931916 8.795827092010796, 0.5111731681141407 8.842491092054246, 0.512782168115649 8.844445092056063, 0.5205541681228851 8.888745092097324, 0.5134731681162918 8.919864092126303, 0.4486821680559388 9.032218092230949, 0.455282168062098 9.060273092257077, 0.5011091681047617 9.157500092347618, 0.5194451681218482 9.188054092376078, 0.5275001681293361 9.206391092393162, 0.5527821681529019 9.36736409254307, 0.5506271681508963 9.408891092581754, 0.5012451681049015 9.472500092640985, 0.4627821680690829 9.488336092655743, 0.4229911680320129 9.496182092663048, 0.3552821679689657 9.485136092652752, 0.3363181679513048 9.444927092615316, 0.2820821679007963 9.42000009259209, 0.2486091678696027 9.422782092594687, 0.2293091678516248 9.431018092602358, 0.2172181678403717 9.460282092629612, 0.2231911678459255 9.550136092713288, 0.2593091678795645 9.664927092820207, 0.3244451679402402 9.762218092910814, 0.3561821679697914 10.030282093160466, 0.4002271680108152 10.030491093160663, 0.3956911680065787 10.067564093195188, 0.3725001679849811 10.082773093209354, 0.3551361679688228 10.093473093219316, 0.349718167963772 10.115273093239622, 0.357782167971294 10.196945093315676, 0.3665271679794273 10.25416409336897, 0.3033361679205768 10.389445093494956, 0.2851361679036302 10.41437309351818, 0.2288911678512591 10.409445093513582, 0.1206001677503821 10.521673093618105, 0.0378451676733107 10.590418093682132, -0.0022178323639821 10.608327093698819, -0.0637548324212958 10.631245093720153, -0.0787548324352656 10.650836093738405, -0.0836088324397792 10.698609093782892, -0.0820548324383594 10.702600093786614, -0.059445832417282 10.782218093860763, -0.0202818323808174 10.858609093931904, 0.0322181676680771 10.990000094054267, 0.0347181676704054 11.021391094083512, 0.0313181676672514 11.077154094135437, -0.005136832366702 11.09883609415563, -0.0435088324024378 11.102045094158626, -0.0772178324338313 11.091664094148953, -0.0991638324542805 11.09319109415037, -0.1448638324968385 11.124300094179347, -0.1497638325014066 11.138536094192602, -0.1422178324943673 11.137782094191905, -0.0897178324454728 11.12721809418207, 0.0502821676849123 11.09889109415569, 0.1900001678150147 11.070554094129292, 0.2188911678419458 11.064164094123342, 0.4169451680263876 11.024445094086346, 0.5055541681089153 11.004582094067857, 0.5148631681175857 10.975418094040691, 0.504163168107624 10.936945094004855, 0.630836168225585 10.983891094048587, 0.6661091682584299 10.99610909405996, 0.7244451683127693 10.996945094060735, 0.81194516839426 10.996945094060735, 0.9179731684930061 10.996400094060235, 0.8905541684674745 10.911109093980798, 0.8936091684703058 10.866945093939663, 0.8794451684571243 10.799718093877061, 0.8070821683897407 10.72332709380592, 0.8021911683851783 10.712445093795779, 0.8005541683836555 10.701664093785737, 0.8002821683834043 10.681109093766594, 0.8040271683868809 10.64110909372934, 0.8075001683901064 10.607218093697782, 0.8059731683887037 10.573609093666477, 0.7980541683813271 10.546664093641382, 0.78750016837148 10.529309093625216, 0.7766631683614094 10.376664093483058, 0.999373168568809 10.22007309333722, 1.0669451686317473 10.174445093294722, 1.1724001687299506 10.108600093233406, 1.1872181687437546 10.10000009322539, 1.3077821688560505 10.025273093155803, 1.3550001689000055 9.99528209312787, 1.3588911689036536 9.91471809305284, 1.3700001689139754 9.63639109279363, 1.3683361689124354 9.596664092756626, 1.3375001688837074 9.542500092706177, 1.361109168905699 9.485554092653146, 1.3642541689086443 9.481345092649235, 1.3899271689325303 9.486245092653789, 1.398545168940558 9.429900092601315, 1.399445168941412 9.387918092562217, 1.406945168948397 9.344718092521987, 1.4180541689587471 9.319027092498061, 1.4316271689713744 9.301245092481494, 1.4524541689907835 9.2804180924621, 1.4936091690290993 9.228336092413599, 1.5105541690448945 9.210836092397301, 1.5400001690723002 9.189654092377566, 1.5686091690989485 9.167918092357326, 1.6059731691337618 9.099164092293293, 1.6197181691465516 9.034236092232831, 1.6266631691530336 8.846945092058391, 1.6261091691524996 8.726664091946375, 1.6254001691518454 8.587282091816562, 1.6241631691507052 8.425282091665693, 1.617054169144069 8.36710909161151, 1.6309731691570448 8.360282091605157, 1.638054169163638 7.998609091268321, 1.6393091691647896 7.759864091045969, 1.6419451691672577 7.6281910909233375, 1.6506911691753885 7.547782090848457, 1.6554181691797965 7.529773090831682))) +ALB Albania MULTIPOLYGON (((19.57082718586483 41.68527312264146, 19.581945185875185 41.69569112265117, 19.59916318589123 41.779718122729435, 19.59770918588987 41.80610912275401, 19.524754185821905 41.835245122781146, 19.479445185779724 41.852218122796955, 19.44041818574337 41.86097312280512, 19.416245185720868 41.86124512280537, 19.36777318567573 41.84900012279397, 19.343327185652953 41.91250012285309, 19.346945185656324 41.955554122893204, 19.376391185683758 42.0728091230024, 19.399100185704896 42.10409112303154, 19.37819118568541 42.12346412304956, 19.332218185642603 42.15250012307661, 19.288536185601913 42.182909123104935, 19.519718185817226 42.448609123352384, 19.608536185899936 42.542845123440145, 19.611182185902408 42.5710361234664, 19.633327185923036 42.60333612349649, 19.651527185939983 42.62319112351497, 19.71784518600174 42.660345123549575, 19.754582186035975 42.64097312353155, 19.76479118604547 42.5878731234821, 19.746809186028713 42.54500012344215, 19.769445186049808 42.50096412340113, 19.793954186072625 42.48409112338544, 19.822500186099205 42.47193612337412, 19.92735418619688 42.515554123414745, 20.056109186316775 42.56290912345884, 20.071418186331044 42.56090912345698, 20.10208218635961 42.533473123431435, 20.161663186415097 42.5113181234108, 20.222500186471734 42.4283271233335, 20.239582186487667 42.36055412327039, 20.24950918649691 42.32707312323919, 20.355673186595766 42.31184512322503, 20.3869451866249 42.30416412321787, 20.457536186690646 42.273909123189696, 20.50889118673848 42.23027312314903, 20.5251361867536 42.21305412313302, 20.59527318681893 42.0436091229752, 20.621736186843577 41.9565271228941, 20.60332718682642 41.93471812287379, 20.583400186807864 41.918818122858994, 20.58964518681367 41.88219112282488, 20.5689541867944 41.87454512281775, 20.53360918676148 41.77693612272685, 20.51777318674675 41.744027122696195, 20.53388218676173 41.63471812259439, 20.466109186698617 41.55554512252067, 20.458818186691843 41.52082712248833, 20.47069118670288 41.49930012246827, 20.508609186738198 41.45971812243141, 20.561873186787807 41.408673122383874, 20.550000186776742 41.37305412235071, 20.524163186752702 41.35027312232947, 20.49885418672912 41.34180012232159, 20.502500186732505 41.30444512228681, 20.519163186748045 41.24638212223272, 20.578327186803136 41.162773122154846, 20.600609186823874 41.09318212209004, 20.662500186881516 41.089164122086316, 20.740809186954465 40.90953612191902, 20.807218187016304 40.90055412191066, 20.821109187029236 40.908882121918396, 20.837427187044455 40.927427121935665, 20.944163187143857 40.91916412192799, 20.963054187161447 40.911382121920724, 20.980536187177734 40.89720912190754, 20.983491187180476 40.855891121869064, 20.98389118718086 40.79305412181054, 21.02678218722079 40.70942712173266, 21.051454187243763 40.674445121700074, 21.053327187245515 40.62069112165, 21.042082187235053 40.564027121597235, 20.949582187148906 40.46964512150933, 20.92013618712147 40.4636001215037, 20.83333618704063 40.46221812150242, 20.791927187002074 40.431545121473846, 20.787218186997677 40.39471812143955, 20.75860918697103 40.31194512136247, 20.736800186950717 40.30721812135806, 20.714300186929762 40.27010012132348, 20.721245186936244 40.22513612128162, 20.667082186885807 40.09624512116159, 20.621391186843255 40.085273121151346, 20.60471818682771 40.07527312114203, 20.5833361868078 40.070545121137656, 20.55582718678218 40.066382121133756, 20.479582186711184 40.065554121133005, 20.46157318669441 40.074164121141024, 20.45000018668361 40.07249112113945, 20.43027318666526 40.063054121130676, 20.315418186558276 39.9918001210643, 20.337218186578582 39.9231911210004, 20.36971818660885 39.89139112097078, 20.411318186647605 39.844645120927254, 20.413327186649468 39.820136120904436, 20.404582186641335 39.80180012088735, 20.378609186617126 39.78805412087456, 20.306127186549617 39.81211812089697, 20.294445186538752 39.80749112089265, 20.298054186542117 39.771945120859556, 20.318091186560764 39.7340911208243, 20.220000186469406 39.64735412074353, 20.1962451864473 39.645000120741315, 20.166663186419754 39.65027312074622, 20.14139118639622 39.656109120751665, 20.09700918635488 39.67597312077018, 20.024582186287432 39.69666412078945, 20.010027186273874 39.691200120784345, 19.98541818625094 39.69475412078765, 19.983609186249254 39.76527312085332, 19.987782186253156 39.86721812094828, 19.937500186206307 39.93749112101372, 19.85729118613162 40.04347312111244, 19.84110918611654 40.05138212111979, 19.825554186102067 40.0547181211229, 19.75500018603634 40.08298212114923, 19.730554186013592 40.10305412116793, 19.616663185907527 40.14916412121087, 19.503054185801716 40.197491121255865, 19.451391185753607 40.22672712128309, 19.40110918570676 40.280000121332705, 19.289791185603093 40.42145412146445, 19.318882185630173 40.43889112148068, 19.341800185651522 40.43138212147369, 19.39166318569798 40.38790912143321, 19.402918185708444 40.36999112141652, 19.406800185712058 40.35013612139804, 19.432873185736355 40.32719112137667, 19.463973185765326 40.337309121386085, 19.479445185779724 40.35485412140244, 19.487636185787352 40.438745121480565, 19.453609185755653 40.56388212159709, 19.41763618572216 40.57721812160952, 19.39332718569952 40.58096412161299, 19.33777318564779 40.61860912164806, 19.307209185619314 40.64530912167294, 19.35610918566485 40.69617312172031, 19.405000185710378 40.819718121835365, 19.413327185718146 40.86639112187882, 19.45241818575454 40.88384512189509, 19.470618185771514 40.88319112189447, 19.52166318581905 40.909854121919324, 19.523263185820525 40.93659112194422, 19.508609185806876 40.972773121977895, 19.461109185762638 41.00694512200974, 19.436218185739477 41.02106412202289, 19.45055418575282 41.06000012205914, 19.513745185811672 41.25401812223984, 19.510136185808307 41.2761001222604, 19.498609185797562 41.293882122276955, 19.47513618577571 41.30902712229107, 19.45221818575436 41.30971812229171, 19.442500185745303 41.40694512238227, 19.52000018581748 41.57000012253411, 19.56666318586096 41.58500012254808, 19.58471818587776 41.60582712256749, 19.586936185879836 41.63860912259801, 19.57082718586483 41.68527312264146))) +BIH Bosnia & Herzegovina MULTIPOLYGON (((17.649845184075787 42.889073123762614, 17.578527184009346 42.943827123813605, 17.675300184099484 42.967518123835646, 17.667636184092345 43.022909123887246, 17.65444518408006 43.047218123909886, 17.636663184063508 43.07041812393149, 17.589445184019525 43.10221812396111, 17.565282183997027 43.115000123973005, 17.434718183875418 43.17944512403304, 17.30374518375345 43.27569112412266, 17.287636183738442 43.30208212414723, 17.278191183729632 43.329018124172336, 17.257845183710685 43.420064124257124, 17.270691183722647 43.445345124280664, 17.25471818370778 43.46402712429807, 17.22332718367855 43.47805412431114, 17.160273183619836 43.497773124329484, 17.106663183569907 43.510273124341126, 17.07139118353706 43.52638212435613, 17.053054183519976 43.53624512436534, 16.976391183448584 43.58610912441176, 16.95582718342942 43.60333612442781, 16.93750018341234 43.62166412444489, 16.829718183311968 43.725554124541645, 16.709582183200098 43.833745124642405, 16.699027183190253 43.85333612466064, 16.646391183141247 43.91221812471548, 16.53347318303608 44.01569112481184, 16.510418183014593 44.02250012481818, 16.463609182971 44.02666412482208, 16.430000182939693 44.03603612483079, 16.34680018286221 44.087500124878716, 16.32305418284011 44.12006412490905, 16.30582718282406 44.15290912493964, 16.27263618279315 44.183191124967834, 16.243673182766173 44.19752712498121, 16.206800182731826 44.19638212498012, 16.16610918269393 44.1924911249765, 16.145482182674726 44.198673124982264, 16.191945182718 44.313891125089555, 16.198054182723695 44.35360912512655, 16.129863182660188 44.49235412525579, 16.115409182646715 44.50916412527144, 16.074163182608316 44.530545125291354, 16.03333618257028 44.574164125331976, 16.010554182549072 44.616945125371814, 15.961663182503543 44.69388212544345, 15.94221818248542 44.70784512545646, 15.86319118241181 44.71214512546047, 15.763745182319212 44.77999112552365, 15.740591182297635 44.81224512555369, 15.769163182324263 44.92277312565662, 15.765000182320364 45.05639112578106, 15.765136182320504 45.07791812580112, 15.785763182339707 45.168954125885904, 15.806800182359297 45.19180012590718, 15.828745182379748 45.208609125922834, 15.882500182429794 45.22250012593577, 15.930827182474815 45.228327125941206, 16.022427182560136 45.214373125928205, 16.112773182644275 45.12624512584614, 16.197218182722906 45.044445125769954, 16.21500018273946 45.03138212575777, 16.255973182777637 45.01166412573943, 16.291763182810968 44.99911812572773, 16.352663182867673 45.00738212573543, 16.366400182880483 45.0420181257677, 16.417800182928346 45.12426412584429, 16.476391182982923 45.185827125901625, 16.50540918300993 45.212091125926094, 16.53109118303385 45.225527125938584, 16.595918183094227 45.23019112594295, 16.629663183125643 45.22080912593421, 16.662773183156503 45.210273125924374, 16.682782183175135 45.20499112591946, 16.818473183301506 45.187491125903165, 16.844427183325678 45.196336125911415, 16.9139271833904 45.26594512597623, 17.0425731835102 45.211800125925805, 17.071109183536777 45.18832712590395, 17.18277318364079 45.1483271258667, 17.23708218369137 45.148745125867094, 17.282500183733646 45.176382125892815, 17.485900183923093 45.117564125838044, 17.519554183954426 45.109509125830556, 17.59638218402597 45.108891125829956, 17.69000018411316 45.12277312584288, 17.758054184176558 45.08666412580928, 17.83277318424615 45.0555451257803, 17.860345184271807 45.04937312577454, 17.91250018432038 45.068054125791946, 17.93305418433954 45.0802731258033, 18.07027318446734 45.10443612582583, 18.11798218451176 45.0844361258072, 18.173054184563057 45.07819112580137, 18.201527184589565 45.083327125806164, 18.21527318460238 45.09853612582032, 18.217845184604755 45.12590012584582, 18.260827184644796 45.13777312585685, 18.419163184792268 45.108891125829956, 18.634163184992502 45.083327125806164, 18.79500018514227 44.9936091257226, 18.797354185144485 44.945136125677465, 18.769791185118805 44.94214512567467, 18.768054185117194 44.91583612565017, 18.79110918513865 44.89735412563297, 18.84673618519048 44.86277312560074, 18.962773185298545 44.85332712559196, 19.029718185360878 44.86027312559841, 19.03971818537019 44.86138212559945, 19.121109185445988 44.9013821256367, 19.175345185496496 44.9224271256563, 19.304863185617137 44.90943612564422, 19.3713911856791 44.88916412562534, 19.382200185689157 44.86481812560265, 19.345218185654716 44.76773612551224, 19.336109185646222 44.747218125493134, 19.313609185625268 44.70471812545355, 19.193982185513875 44.56015412531892, 19.130827185455047 44.521427125282855, 19.105554185431515 44.37666412514804, 19.104445185430478 44.35582712512863, 19.128991185453344 44.315227125090814, 19.160909185483064 44.28678212506432, 19.237436185554344 44.26518212504419, 19.357954185666586 44.20940912499225, 19.485836185785672 44.12028212490927, 19.596945185889155 44.06027312485335, 19.618563185909295 44.05261812484625, 19.619782185910424 44.01975412481562, 19.525791185822897 43.96044512476038, 19.48527318578516 43.95888212475893, 19.428527185732293 43.960654124760595, 19.366127185674173 43.970873124770094, 19.308927185620917 43.997736124795125, 19.239454185556212 44.010609124807104, 19.251218185567183 43.9623821247622, 19.36694518567495 43.85944512466634, 19.437500185740646 43.80028212461124, 19.475273185775848 43.7727731245856, 19.49013618578968 43.758473124572305, 19.499582185798488 43.73708212455236, 19.50763618580598 43.70958212452675, 19.5105541858087 43.68582712450464, 19.49389118579319 43.58805412441359, 19.48055418578076 43.57139112439805, 19.408609185713743 43.58444512441022, 19.287500185600948 43.54416412437271, 19.22880918554631 43.513218124343894, 19.217782185536038 43.51902712434929, 19.009163185341748 43.55597312438371, 18.94985418528651 43.506036124337186, 18.957145185293285 43.45590012429051, 18.98277318531717 43.452773124287575, 19.00500018533785 43.447354124282555, 19.025273185356752 43.432354124268585, 19.092918185419734 43.305273124150204, 19.075554185403576 43.25527312410364, 19.059573185388672 43.235945124085646, 19.016663185348733 43.23943612408891, 18.955054185291345 43.293891124139606, 18.958127185294217 43.320909124164785, 18.915573185254573 43.3577731241991, 18.880827185222216 43.355536124197016, 18.839336185183583 43.34801812419002, 18.7027731850564 43.25714512410539, 18.64583618500336 43.14721812400302, 18.648263185005618 43.127073123984246, 18.658118185014814 43.08388212394402, 18.647045185004487 43.04340012390634, 18.579718184941783 43.02916412389308, 18.55221818491617 43.022773123887106, 18.53000018489547 43.01471812387962, 18.503054184870393 42.995409123861634, 18.481736184850547 42.96617312383441, 18.45540918482601 42.828609123706286, 18.490836184859006 42.76639112364833, 18.523818184889734 42.72756412361218, 18.557845184921405 42.71395412359951, 18.576382184938666 42.663054123552115, 18.572082184934686 42.64117312353173, 18.543327184907895 42.61513612350748, 18.463891184833926 42.56944512346493, 18.455554184826156 42.56582712346156, 18.4047181847788 42.610409123503075, 18.362500184739474 42.626664123518225, 18.340973184719445 42.629027123520416, 18.307082184687886 42.618191123510314, 18.274654184657663 42.617145123509346, 18.226945184613243 42.64555412353582, 18.160554184551415 42.69500012358185, 17.99055418439309 42.76471812364679, 17.960000184364617 42.77916412366025, 17.879718184289857 42.82138212369955, 17.845345184257837 42.860836123736306, 17.797500184213277 42.903882123776384, 17.74444518416388 42.920273123791645, 17.70652718412856 42.92708212379799, 17.68610918410954 42.920273123791645, 17.649845184075787 42.889073123762614))) +HRV Croatia MULTIPOLYGON (((17.578527184009346 42.943827123813605, 17.518891183953826 42.95277312382191, 17.480691183918225 42.98124512384845, 17.47166318390984 42.99055412385712, 17.470554183908803 43.01777312388245, 17.4550001838943 43.03333612389696, 17.326527183774658 43.116391123974296, 17.25166318370495 43.1541641240095, 17.222500183677766 43.1613821240162, 17.17784518363618 43.17388212402784, 17.131382183592905 43.198882124051124, 17.068191183534054 43.240973124090345, 17.045000183512457 43.27250012411969, 16.940000183414668 43.36471812420558, 16.88166318336036 43.4036091242418, 16.86083618334095 43.40527312424334, 16.83805418331974 43.40527312424334, 16.81360918329696 43.40694512424491, 16.76416318325093 43.41138212424903, 16.736382183225032 43.41610912425344, 16.637782183133226 43.44110912427672, 16.618891183115636 43.448882124283955, 16.49916318300413 43.503054124334426, 16.46923618297626 43.5335361243628, 16.430554182940227 43.545691124374116, 16.354027182868947 43.55082712437891, 16.31027318282821 43.54305412437168, 16.19055418271671 43.511664124342445, 16.170273182697827 43.49193612432407, 16.102709182634896 43.47582712430906, 16.036945182573646 43.48180012431462, 15.988336182528371 43.50443612433571, 15.918818182463639 43.56693612439392, 15.925827182470158 43.627736124450536, 15.965900182507482 43.631800124454315, 15.940836182484134 43.68360912450257, 15.782154182336342 43.75624512457023, 15.688891182249506 43.77888212459129, 15.599445182166193 43.84527312465312, 15.533891182105151 43.88194512468729, 15.526036182097812 43.89503612469949, 15.490973182065176 43.91305412471627, 15.457500182033982 43.92263612472519, 15.405554181985622 43.96527312476488, 15.281663181870243 44.07305412486528, 15.23221818182418 44.119164124908224, 15.151663181749171 44.196391124980124, 15.117982181717792 44.270764125049396, 15.145136181743084 44.28006412505806, 15.203891181797815 44.25500012503471, 15.291318181879234 44.25340012503324, 15.280000181868672 44.30582712508206, 15.321391181907245 44.30050012507709, 15.341891181926314 44.287491125064975, 15.385054181966524 44.27016412504884, 15.414445181993898 44.25999112503936, 15.522291182094335 44.26325412504241, 15.50333618207668 44.276109125054376, 15.478609182053646 44.27555412505387, 15.448609182025706 44.283191125060966, 15.270554181859893 44.369164125141054, 15.181663181777111 44.438609125205716, 15.140836181739076 44.47305412523781, 15.095836181697166 44.51805412527972, 15.01374518162072 44.56548212532388, 14.990554181599123 44.57943612533688, 14.971109181581 44.60166412535759, 14.926391181539373 44.65500012540724, 14.894718181509859 44.69527312544474, 14.887782181503411 44.7162451254643, 14.878609181494852 44.81138212555288, 14.88027318149642 44.85208212559078, 14.894027181509216 44.8894451256256, 14.909582181523717 44.911518125646154, 14.919300181532748 44.96597312569688, 14.831527181451008 45.115418125836044, 14.80028218142192 45.12305412584317, 14.752782181377682 45.13569112585492, 14.72486318135168 45.148609125866955, 14.67444518130472 45.18221812589826, 14.585000181221403 45.25221812596345, 14.48277318112622 45.31110012601829, 14.448609181094383 45.32124512602775, 14.323054180977465 45.3509641260554, 14.286600180943509 45.31499112602191, 14.253891180913058 45.23194512594458, 14.248191180907725 45.197154125912164, 14.239718180899843 45.164164125881456, 14.230836180891572 45.14416412586283, 14.216663180878385 45.12332712584342, 14.160136180825731 45.07687312580015, 14.155836180821723 45.0394451257653, 14.167445180832544 44.989054125718354, 14.144300180810973 44.9621541256933, 14.08750018075807 44.961391125692586, 13.994863180671814 44.890554125626636, 13.975827180654079 44.84693612558601, 13.975827180654079 44.82402712556467, 13.994163180671165 44.818054125559115, 13.996182180673031 44.81069112555224, 13.9044451805876 44.77256412551674, 13.81694518050611 44.8601361255983, 13.83916318052681 44.87638212561342, 13.75694518045023 44.98138212571121, 13.681109180379593 45.0513821257764, 13.603054180306913 45.15777312587548, 13.595000180299394 45.25069112596202, 13.575836180281556 45.30028212600823, 13.533609180242223 45.401664126102645, 13.504791180215392 45.5020091261961, 13.555000180262141 45.49443612618904, 13.591736180296351 45.481700126177174, 13.60139118030537 45.47319112616924, 13.640482180341763 45.45374512615115, 13.673473180372497 45.44569112614363, 13.703609180400548 45.444164126142226, 13.90694518058993 45.453327126150754, 13.952500180632342 45.45666412615387, 13.988263180665655 45.46340012616014, 14.137218180804382 45.475273126171174, 14.392500181042124 45.486109126181276, 14.413473181061676 45.491664126186464, 14.496109181138621 45.5436821262349, 14.535000181174837 45.61221812629873, 14.570345181207756 45.66638212634916, 14.609791181244503 45.66843612635108, 14.60958218124432 45.63304512631814, 14.620836181254788 45.61208212629859, 14.723609181350497 45.53139112622344, 14.826091181445946 45.465445126162024, 14.863718181481005 45.468654126165035, 14.912836181526728 45.482491126177905, 14.979063181588401 45.50047312619466, 15.092027181693624 45.471518126167695, 15.156673181753831 45.42929112612836, 15.174454181770386 45.42581812612514, 15.27721818186609 45.46277312615953, 15.303973181891024 45.53862712623018, 15.294000181881728 45.594536126282264, 15.307091181893924 45.62986412631517, 15.352591181936276 45.65175412633556, 15.356627181940041 45.71200912639168, 15.288645181876745 45.700545126381, 15.294027181881745 45.73430012641242, 15.315836181902057 45.756664126433265, 15.333891181918887 45.7663911264423, 15.49944518207306 45.835827126506985, 15.611800182177689 45.84673612651713, 15.629718182194381 45.833191126504516, 15.65263618221573 45.82339112649541, 15.696109182256208 45.84305412651372, 15.724445182282608 45.9386091266027, 15.71149118227055 46.05319112670941, 15.66360918222594 46.067982126723194, 15.632918182197358 46.08458212673864, 15.606391182172672 46.115827126767755, 15.60041818216709 46.14430012679426, 15.611945182177834 46.16693612681536, 15.659163182221818 46.220900126865615, 15.685973182246784 46.22596412687034, 15.797782182350915 46.233327126877185, 16.01721818255527 46.29804512693747, 16.08040918261412 46.33603612697283, 16.075836182609862 46.35819112699346, 16.07531818260938 46.37841812701231, 16.137918182667676 46.405964127037976, 16.266109182787062 46.41944512705052, 16.2524091827743 46.49556412712141, 16.267500182788353 46.514445127139, 16.292509182811642 46.53081812715425, 16.33555418285175 46.533882127157085, 16.384163182897026 46.53582712715891, 16.46389118297128 46.52096412714508, 16.49548218300069 46.50569112713083, 16.517791183021473 46.49164512711775, 16.564454183064925 46.47709112710422, 16.591991183090585 46.47400912710134, 16.60787318310537 46.47623612710342, 16.628609183124667 46.47500012710225, 16.661109183154934 46.46555412709347, 16.801391183285602 46.39139112702438, 16.84055418332207 46.369991127004454, 16.874300183353483 46.34533612698149, 16.87902718335789 46.308573126947266, 16.880582183359337 46.304509126943486, 16.89139118336942 46.283745126924146, 16.919718183395787 46.25999112690201, 16.937773183412617 46.2494541268922, 16.97305418344547 46.23360912687744, 17.040273183508077 46.214164126859345, 17.152709183612785 46.18027312682776, 17.18277318364079 46.15458212680383, 17.234718183689154 46.09041812674408, 17.25471818370778 46.05332712670955, 17.25742718371032 46.02096412667942, 17.311391183760577 45.975273126636836, 17.354854183801052 45.95166412661487, 17.38944518383326 45.93804512660219, 17.42757318386876 45.94029112660428, 17.458609183897664 45.95443612661745, 17.58256318401311 45.93756412660173, 17.62610918405366 45.90582712657218, 17.644854184071136 45.88527312655302, 17.652691184078435 45.85313612652311, 17.660973184086146 45.83874512650971, 17.8808361842909 45.78388212645859, 18.006382184407812 45.78694512646146, 18.15332718454468 45.78721812646171, 18.19555418458401 45.78388212645859, 18.2258271846122 45.779718126454725, 18.248054184632906 45.767291126443155, 18.332636184711674 45.75443612643119, 18.407500184781384 45.748327126425494, 18.433745184805844 45.750973126427965, 18.555554184919288 45.800000126473606, 18.59847318495926 45.82791812649961, 18.618473184977887 45.85139112652146, 18.71944518507192 45.91151812657748, 18.7800001851283 45.89471812656183, 18.807500185153913 45.902773126569315, 18.817018185162794 45.91296412657883, 18.83235418517708 45.87550912654393, 18.889854185230632 45.8257641264976, 18.9166631852556 45.81569112648822, 18.956663185292854 45.78250012645731, 18.96689118530236 45.664073126347034, 18.936391185273976 45.62805412631349, 18.910418185249767 45.62017312630613, 18.902236185242145 45.57313612626234, 18.92918218526725 45.54484512623597, 18.948727185285463 45.53793612622954, 18.96966318530494 45.539991126231456, 19.007091185339817 45.56113612625114, 19.097927185424396 45.51886412621178, 19.096018185422622 45.49800912619236, 19.05640018538574 45.487018126182136, 19.02557318535702 45.49707312619148, 19.001082185334212 45.489691126184624, 18.981263185315754 45.382218126084524, 19.112500185437966 45.298045126006144, 19.138609185462286 45.2875001259963, 19.19020018551035 45.27033612598032, 19.26051818557582 45.24742712595898, 19.28500018559862 45.24340912595525, 19.320336185631533 45.23836412595054, 19.350563185659695 45.234582125947014, 19.388963185695445 45.235745125948114, 19.409209185714303 45.23527312594766, 19.425000185729004 45.217918125931504, 19.418536185722985 45.17999112589618, 19.352500185661484 45.17333612588999, 19.248682185564803 45.18666412590241, 19.21282718553141 45.210000125924125, 19.187500185507815 45.21694512593061, 19.167354185489074 45.21430012592813, 19.104163185430224 45.09666412581859, 19.11555418544083 45.03194512575831, 19.040763185371162 44.93076412566407, 19.00981818534234 44.90548212564053, 19.02860918535984 44.88027312561704, 19.03971818537019 44.86138212559945, 19.029718185360878 44.86027312559841, 18.962773185298545 44.85332712559196, 18.84673618519048 44.86277312560074, 18.79110918513865 44.89735412563297, 18.768054185117194 44.91583612565017, 18.769791185118805 44.94214512567467, 18.797354185144485 44.945136125677465, 18.79500018514227 44.9936091257226, 18.634163184992502 45.083327125806164, 18.419163184792268 45.108891125829956, 18.260827184644796 45.13777312585685, 18.217845184604755 45.12590012584582, 18.21527318460238 45.09853612582032, 18.201527184589565 45.083327125806164, 18.173054184563057 45.07819112580137, 18.11798218451176 45.0844361258072, 18.07027318446734 45.10443612582583, 17.93305418433954 45.0802731258033, 17.91250018432038 45.068054125791946, 17.860345184271807 45.04937312577454, 17.83277318424615 45.0555451257803, 17.758054184176558 45.08666412580928, 17.69000018411316 45.12277312584288, 17.59638218402597 45.108891125829956, 17.519554183954426 45.109509125830556, 17.485900183923093 45.117564125838044, 17.282500183733646 45.176382125892815, 17.23708218369137 45.148745125867094, 17.18277318364079 45.1483271258667, 17.071109183536777 45.18832712590395, 17.0425731835102 45.211800125925805, 16.9139271833904 45.26594512597623, 16.844427183325678 45.196336125911415, 16.818473183301506 45.187491125903165, 16.682782183175135 45.20499112591946, 16.662773183156503 45.210273125924374, 16.629663183125643 45.22080912593421, 16.595918183094227 45.23019112594295, 16.53109118303385 45.225527125938584, 16.50540918300993 45.212091125926094, 16.476391182982923 45.185827125901625, 16.417800182928346 45.12426412584429, 16.366400182880483 45.0420181257677, 16.352663182867673 45.00738212573543, 16.291763182810968 44.99911812572773, 16.255973182777637 45.01166412573943, 16.21500018273946 45.03138212575777, 16.197218182722906 45.044445125769954, 16.112773182644275 45.12624512584614, 16.022427182560136 45.214373125928205, 15.930827182474815 45.228327125941206, 15.882500182429794 45.22250012593577, 15.828745182379748 45.208609125922834, 15.806800182359297 45.19180012590718, 15.785763182339707 45.168954125885904, 15.765136182320504 45.07791812580112, 15.765000182320364 45.05639112578106, 15.769163182324263 44.92277312565662, 15.740591182297635 44.81224512555369, 15.763745182319212 44.77999112552365, 15.86319118241181 44.71214512546047, 15.94221818248542 44.70784512545646, 15.961663182503543 44.69388212544345, 16.010554182549072 44.616945125371814, 16.03333618257028 44.574164125331976, 16.074163182608316 44.530545125291354, 16.115409182646715 44.50916412527144, 16.129863182660188 44.49235412525579, 16.198054182723695 44.35360912512655, 16.191945182718 44.313891125089555, 16.145482182674726 44.198673124982264, 16.16610918269393 44.1924911249765, 16.206800182731826 44.19638212498012, 16.243673182766173 44.19752712498121, 16.27263618279315 44.183191124967834, 16.30582718282406 44.15290912493964, 16.32305418284011 44.12006412490905, 16.34680018286221 44.087500124878716, 16.430000182939693 44.03603612483079, 16.463609182971 44.02666412482208, 16.510418183014593 44.02250012481818, 16.53347318303608 44.01569112481184, 16.646391183141247 43.91221812471548, 16.699027183190253 43.85333612466064, 16.709582183200098 43.833745124642405, 16.829718183311968 43.725554124541645, 16.93750018341234 43.62166412444489, 16.95582718342942 43.60333612442781, 16.976391183448584 43.58610912441176, 17.053054183519976 43.53624512436534, 17.07139118353706 43.52638212435613, 17.106663183569907 43.510273124341126, 17.160273183619836 43.497773124329484, 17.22332718367855 43.47805412431114, 17.25471818370778 43.46402712429807, 17.270691183722647 43.445345124280664, 17.257845183710685 43.420064124257124, 17.278191183729632 43.329018124172336, 17.287636183738442 43.30208212414723, 17.30374518375345 43.27569112412266, 17.434718183875418 43.17944512403304, 17.565282183997027 43.115000123973005, 17.589445184019525 43.10221812396111, 17.636663184063508 43.07041812393149, 17.65444518408006 43.047218123909886, 17.667636184092345 43.022909123887246, 17.675300184099484 42.967518123835646, 17.578527184009346 42.943827123813605)), ((17.649845184075787 42.889073123762614, 17.68610918410954 42.920273123791645, 17.70652718412856 42.92708212379799, 17.74444518416388 42.920273123791645, 17.797500184213277 42.903882123776384, 17.845345184257837 42.860836123736306, 17.879718184289857 42.82138212369955, 17.960000184364617 42.77916412366025, 17.99055418439309 42.76471812364679, 18.160554184551415 42.69500012358185, 18.226945184613243 42.64555412353582, 18.274654184657663 42.617145123509346, 18.307082184687886 42.618191123510314, 18.340973184719445 42.629027123520416, 18.362500184739474 42.626664123518225, 18.4047181847788 42.610409123503075, 18.455554184826156 42.56582712346156, 18.453327184824076 42.51680012341589, 18.457782184828233 42.49360912339429, 18.472918184842314 42.47152712337373, 18.498054184865737 42.45110912335471, 18.503200184870536 42.449436123353166, 18.522773184888763 42.43013612333519, 18.516945184883326 42.3999911233071, 18.357063184734415 42.496564123397036, 18.21471818460185 42.57943612347424, 18.057782184455704 42.66360912355262, 17.87721818428753 42.76777312364962, 17.742636184162194 42.797082123676915, 17.552500183985103 42.84082712371767, 17.43916318387957 42.873882123748444, 17.36500018381048 42.91527312378699, 17.203745183660317 42.9819451238491, 17.180482183638645 42.97548212384308, 17.145273183605866 42.97666412384419, 17.07166318353731 42.98638212385322, 17.01236318348208 43.006245123871736, 17.01061818348046 43.04804512391067, 17.268891183720996 43.011936123877035, 17.2988821837489 43.006945123872384, 17.43895418387936 42.953954123823024, 17.522782183957446 42.920273123791645, 17.657354184082777 42.880827123754926, 17.649845184075787 42.889073123762614)), ((14.73360918135981 44.93999112567266, 14.721391181348451 44.94027312567292, 14.69832718132696 44.9477731256799, 14.640836181273414 44.96777312569853, 14.483336181126731 45.03541812576154, 14.463609181108353 45.048045125773314, 14.436391181083025 45.07000012579374, 14.428818181075968 45.08624512580889, 14.539163181178736 45.239436125951556, 14.55430918119282 45.24763612595919, 14.589582181225694 45.23832712595052, 14.657773181289201 45.12277312584288, 14.704163181332405 45.068327125792194, 14.792500181414653 45.0091641257371, 14.806663181427865 44.99638212572518, 14.814445181435104 44.98040912571031, 14.805000181426294 44.969445125700105, 14.7581911813827 44.94193612567449, 14.73360918135981 44.93999112567266)), ((16.687218183179255 43.261664124109615, 16.62889118312495 43.261936124109866, 16.577500183077063 43.26860912411607, 16.519718183023258 43.2763821241233, 16.487782182993527 43.28527312413158, 16.41471818292547 43.314718124159015, 16.405554182916944 43.32603612416955, 16.432145182941696 43.39048212422958, 16.601109183099055 43.379164124219045, 16.700273183191428 43.3686091242092, 16.75305418324058 43.36278212420379, 16.776109183262037 43.359445124200676, 16.80736318329116 43.35139112419316, 16.88471818336319 43.31721812416134, 16.88721818336552 43.29777312414322, 16.847354183328406 43.267918124115425, 16.826109183308603 43.267491124115026, 16.79332718327808 43.26860912411607, 16.71639118320644 43.26610912411374, 16.706109183196844 43.26527312411295, 16.687218183179255 43.261664124109615)), ((14.488054181131133 44.60582712536146, 14.483891181127262 44.60777312536325, 14.451109181096712 44.62639112538059, 14.389445181039292 44.695000125444494, 14.331391180985236 44.849718125588595, 14.341391180994549 44.91610912565042, 14.362082181013818 44.90736412564229, 14.397182181046503 44.911591125646225, 14.392500181042124 44.956109125687675, 14.353609181005908 45.0451361257706, 14.341109180994266 45.05666412578134, 14.317500180972274 45.06597312579001, 14.308054180963495 45.0730541257966, 14.27527318093297 45.1033361258248, 14.27479118093251 45.12187312584206, 14.308745180964138 45.17013612588701, 14.317636180972414 45.17540912589192, 14.353054181005405 45.166800125883896, 14.36360918101522 45.16055412587809, 14.366391181017832 45.146591125865086, 14.358054181010061 45.13610912585531, 14.35389118100619 45.119164125839546, 14.358891181010847 45.10110912582272, 14.37694518102765 45.05250012577744, 14.410000181058422 45.00471812573295, 14.418891181066726 44.99304512572209, 14.426391181073711 44.98471812571432, 14.459445181104485 44.827500125567894, 14.470554181114835 44.74055412548694, 14.506391181148217 44.670827125421994, 14.53013618117032 44.633682125387395, 14.51680018115789 44.61402712536909, 14.493327181136038 44.60638212536196, 14.488054181131133 44.60582712536146)), ((14.745282181370698 44.69444512544399, 14.873891181490478 44.60805412536354, 14.909163181523326 44.60777312536325, 14.928609181541418 44.59832712535447, 14.960282181570932 44.57916412533663, 15.042636181647623 44.522845125284164, 15.073336181676211 44.48000012524426, 15.058473181662379 44.48166412524583, 15.010827181617998 44.514164125276096, 14.97627318158581 44.51916412528075, 15.007945181615327 44.48999112525357, 15.042445181647452 44.46449112522981, 15.036945181642324 44.482082125246194, 15.05007318165454 44.47610912524064, 15.085282181687347 44.45860912522434, 15.11694518171683 44.4394361252065, 15.240554181831953 44.35027312512344, 15.250073181840804 44.33548212510968, 15.219163181812036 44.30582712508206, 15.171527181767658 44.29582712507275, 15.140273181738564 44.30389112508024, 15.128891181727965 44.309864125085824, 15.109718181710093 44.32360912509861, 15.100136181701174 44.334718125108964, 15.023663181629956 44.422391125190615, 15.0126631816197 44.441882125208764, 14.917836181531385 44.50489112526745, 14.74471818137016 44.6755541254264, 14.736663181362673 44.68777312543776, 14.735209181361313 44.69777312544707, 14.745282181370698 44.69444512544399)), ((17.05778218352438 43.112500123970676, 16.879718183358534 43.120554123978195, 16.66610918315959 43.1191641239769, 16.654163183148484 43.11971812397741, 16.53388218303644 43.14360912399965, 16.464718182972035 43.16027312401516, 16.430554182940227 43.169445124023724, 16.377773182891076 43.19534512404783, 16.45721818296505 43.21027312406173, 16.475827182982385 43.2119361240633, 16.565282183065705 43.21804512406899, 16.613327183110442 43.213882124065094, 16.66221818315597 43.200273124052416, 16.811109183294633 43.1613821240162, 16.961391183434614 43.14916412400484, 17.11639118357897 43.13610912399267, 17.110000183572993 43.116391123974296, 17.05778218352438 43.112500123970676)), ((16.866109183345856 42.89777312377069, 16.831663183313793 42.903882123776384, 16.723609183213142 42.919445123790894, 16.672218183165285 42.92610912379709, 16.633891183129606 42.98235412384949, 16.643327183138382 42.9866641238535, 16.686109183178218 42.99082712385737, 16.721109183210814 42.98499112385193, 16.733609183222455 42.980000123847276, 16.7569451832442 42.97277312384054, 16.772218183258417 42.9691641238372, 16.820554183303443 42.96000012382865, 16.863327183343273 42.95610912382503, 16.87360918335284 42.95693612382581, 16.896382183374044 42.96193612383047, 16.911391183388048 42.968891123836926, 16.940554183415202 42.973327123841074, 16.965554183438485 42.97639112384391, 17.01971818348892 42.97666412384419, 17.044718183512202 42.97527312384287, 17.13582718359706 42.96193612383047, 17.18360918364155 42.918609123790105, 17.134445183595773 42.91166412378365, 17.123891183585954 42.91138212378337, 16.941109183415705 42.91138212378337, 16.866109183345856 42.89777312377069)), ((17.740000184159726 42.69166412357876, 17.727500184148084 42.69832712358496, 17.69971818412222 42.705554123591696, 17.689445184112657 42.70777312359374, 17.634718184061683 42.718327123603586, 17.61138218403994 42.720554123605666, 17.548609183981483 42.728336123612905, 17.372500183817465 42.7572181236398, 17.358609183804532 42.76166412364395, 17.331663183779455 42.77486412365624, 17.323473183771824 42.78902712366943, 17.363054183808686 42.80221812368171, 17.378054183822655 42.80193612368146, 17.399436183842568 42.79777312367756, 17.664863184089768 42.73597312362003, 17.730554184150947 42.71000012359582, 17.740273184160003 42.70304512358936, 17.745554184164916 42.693054123580055, 17.740000184159726 42.69166412357876)), ((15.194163181788753 43.87110912467719, 15.184300181779548 43.87360912467952, 15.14833618174606 43.89000012469478, 15.137500181735959 43.89638212470072, 15.108054181708553 43.92000012472272, 15.09971818170078 43.927500124729704, 15.071663181674666 43.957500124757644, 15.057218181661199 43.9738821247729, 15.047218181651886 43.98888212478687, 15.036109181641535 44.00360912480059, 15.028891181634833 44.01193612480836, 14.989445181598086 44.055545124848976, 14.974582181584253 44.06763612486023, 14.916945181530565 44.10916412489891, 14.881945181497969 44.130273124918546, 14.87139118148815 44.14277312493019, 14.860000181477517 44.156945124943405, 14.854236181472146 44.172564124957944, 14.992500181600917 44.083609124875096, 15.03666318164207 44.02693612482233, 15.050282181654751 44.01388212481015, 15.084027181686167 43.9856911247839, 15.14305418174115 43.95166412475223, 15.219582181812427 43.90971812471315, 15.22513618181759 43.8995821247037, 15.21721818181021 43.89082712469556, 15.194163181788753 43.87110912467719)), ((16.093327182626155 43.00999112387521, 16.064445182599258 43.01055412387575, 16.050554182586325 43.06304512392464, 16.066109182600798 43.070273123931344, 16.085000182618387 43.07750012393808, 16.103609182635722 43.081109123941445, 16.113891182645318 43.08221812394248, 16.139718182669355 43.08250012394274, 16.18500018271152 43.08166412394198, 16.230554182753963 43.07832712393886, 16.25211818277404 43.06460912392609, 16.209863182734694 43.02346412388775, 16.093327182626155 43.00999112387521)), ((14.516663181157782 44.47332712523806, 14.511109181152591 44.47416412523884, 14.36750018101884 44.590273125346954, 14.347773181000491 44.65527312540749, 14.338054180991435 44.70673612545542, 14.382773181033087 44.69694512544632, 14.39194518104162 44.68985412543972, 14.395418181044846 44.67721812542794, 14.393891181043443 44.65943612541139, 14.395418181044846 44.62652712538073, 14.407218181055839 44.60388212535963, 14.416109181064115 44.59221812534878, 14.426391181073711 44.58166412533896, 14.476663181120529 44.535827125296265, 14.489718181132673 44.52666412528774, 14.50416318114614 44.52250012528384, 14.515836181156999 44.51250012527453, 14.533473181173434 44.491100125254604, 14.52597318116645 44.475691125240246, 14.516663181157782 44.47332712523806))) +ITA Italy MULTIPOLYGON (((12.753573179515769 43.97100012477023, 12.818609179576328 43.96319112476294, 12.903054179654987 43.92471812472712, 13.29528218002028 43.67541812449494, 13.480418180192686 43.6109641244349, 13.5064001802169 43.63066412445326, 13.599445180303547 43.570000124396756, 13.848054180535087 43.07832712393886, 13.873609180558873 42.9644361238328, 13.939718180620446 42.803600123683, 14.01666318069212 42.670000123558566, 14.200000180862844 42.48250012338394, 14.50416318114614 42.26138212317801, 14.565836181203565 42.218891123138434, 14.716245181343652 42.16805412309111, 14.721663181348703 42.10402712303147, 14.736527181362533 42.08790912301646, 14.894027181509216 42.020545122953735, 14.996391181604565 42.00443612293873, 15.062773181666387 41.95277312289059, 15.162363181759133 41.92444512286423, 15.404718181984833 41.90388212284506, 15.600000182166696 41.92360912286344, 15.765273182320641 41.91694512285724, 16.022918182560574 41.946664122884926, 16.1455541826748 41.911173122851864, 16.193682182719613 41.829436122775746, 16.19277318271878 41.789991122738996, 16.138882182668567 41.74055412269297, 15.897636182443904 41.613327122574475, 15.898327182444547 41.53027312249711, 15.926245182470552 41.48582712245573, 15.985000182525255 41.439718122412785, 16.657773183151846 41.191382122181494, 17.04971818351686 41.08193612207958, 17.18374518364169 41.0295821220308, 17.473609183911634 40.82888212184389, 18.01263618441365 40.64305412167084, 18.039163184438365 40.55527312158907, 18.27471818465773 40.41082712145456, 18.424863184797573 40.28846412134058, 18.512500184879173 40.13471812119741, 18.514445184880998 40.102909121167784, 18.472427184841877 40.03922712110847, 18.418745184791874 39.994018121066375, 18.391109184766123 39.81624512090082, 18.34944518472733 39.79193612087818, 18.305000184685923 39.8200001209043, 18.19944518458763 39.83749112092059, 18.04076318443984 39.93770912101394, 17.996600184398716 39.99880912107082, 18.01940918441997 40.01117312108235, 18.012218184413257 40.101318121166315, 17.906391184314714 40.25500012130942, 17.857218184268902 40.28443612133685, 17.673473184097787 40.30402712135509, 17.506800183942545 40.297500121349, 17.20381818366039 40.4124911214561, 17.26805418372021 40.47332712151277, 17.317009183765805 40.488291121526686, 17.0766001835419 40.52048212155668, 16.942218183416742 40.46778212150761, 16.7915271832764 40.31138212136193, 16.688054183180043 40.14708212120891, 16.60860918310604 40.0861731211522, 16.609718183107077 39.996245121068455, 16.563327183063876 39.898045120977, 16.49916318300413 39.82235412090651, 16.486663182992487 39.773745120861236, 16.530000183032826 39.66291812075801, 16.55569118305675 39.64458212074092, 16.62639118312262 39.62277312072061, 16.741391183229723 39.61721812071545, 17.145554183606123 39.39638212050977, 17.108891183571984 39.26305412038562, 17.11666318357922 39.09874512023259, 17.158191183617873 39.03902712017697, 17.169163183628115 38.963336120106476, 17.097845183561674 38.90784512005479, 16.975827183448047 38.93901812008383, 16.83488218331678 38.917082120063384, 16.615000183111988 38.817636119970786, 16.573609183073444 38.77971811993547, 16.534509183037045 38.70943611987002, 16.575000183074735 38.520273119693826, 16.56916318306932 38.42833611960822, 16.47055418297748 38.34638211953188, 16.33040918284695 38.29790911948675, 16.160000182688236 38.128254119328744, 16.135554182665487 38.0208271192287, 16.087773182620992 37.946109119159104, 16.057291182592593 37.92423611913874, 15.996109182535605 37.918882119133755, 15.775836182330465 37.91693611913193, 15.720273182278731 37.931109119145134, 15.667845182229883 37.95784511917003, 15.635136182199432 38.00458211921355, 15.645282182208888 38.063045119268025, 15.62958218219427 38.229300119422845, 15.79471818234805 38.281518119471485, 15.906109182451786 38.47277311964959, 15.922636182467187 38.54596411971775, 15.829027182380003 38.627982119794154, 15.849791182399343 38.65729111982145, 15.984445182524752 38.72166411988141, 16.12916318265954 38.71555411987572, 16.178191182705177 38.745209119903336, 16.218745182742964 38.83638211998823, 16.219791182743933 38.92138212006739, 16.157082182685542 38.94819112009236, 16.099718182632103 39.022773120161816, 16.064163182599003 39.129164120260924, 16.03381818257074 39.344364120461336, 15.980900182521452 39.44964512055938, 15.90389118244974 39.53388212063783, 15.80791818236034 39.67930012077326, 15.781873182336085 39.8628451209442, 15.66374518222608 40.03305412110274, 15.61874518218417 40.06458212113208, 15.560691182130086 40.07610912114282, 15.509791182082694 40.07006412113719, 15.41639118199572 39.99145412106398, 15.354863181938413 40.00090012107279, 15.13736318173585 40.16069112122159, 15.012500181619544 40.19554512125407, 14.941945181553848 40.234164121290036, 14.927218181540127 40.27110912132443, 14.990627181599194 40.3639541214109, 14.99166318160016 40.39569112144045, 14.898327181513224 40.558745121592324, 14.830763181450294 40.63151812166009, 14.753473181378325 40.6759731217015, 14.401945181050934 40.60000012163073, 14.362982181014644 40.627354121656225, 14.474545181118543 40.71020012173338, 14.45277318109828 40.74791812176849, 14.268891180927028 40.84020012185445, 14.166945180832073 40.80693612182347, 14.07389118074542 40.82193612183744, 13.900000180583447 41.07804512207596, 13.79805418048852 41.19332712218332, 13.71221818040857 41.251109122237125, 13.644163180345203 41.25971812224515, 13.566800180273134 41.23805412222498, 13.276109180002408 41.29513612227814, 13.116809179854044 41.243327122229886, 13.02958217977283 41.26013612224554, 12.98000017972663 41.32638212230722, 12.892218179644885 41.395554122371664, 12.656109179424988 41.457836122429654, 12.576109179350482 41.50721812247565, 12.447082179230335 41.6276361225878, 12.215836179014957 41.78805412273721, 12.177782178979527 41.868054122811714, 12.12333617892881 41.923054122862936, 11.912500178732444 42.0359731229681, 11.830763178656326 42.03027312296277, 11.739354178571205 42.149545123073864, 11.703891178538186 42.224445123143624, 11.627709178467228 42.29826412321236, 11.372773178229806 42.40464512331144, 11.231663178098387 42.41750012332341, 11.205973178074458 42.4118001233181, 11.179718178049995 42.36512712327465, 11.097427177973373 42.39651812330388, 11.084582177961408 42.4302731233353, 11.16465417803596 42.44561812334959, 11.187154178056915 42.51250012341188, 11.080273177957395 42.63221812352339, 10.965691177850658 42.724445123609286, 10.862500177754555 42.76693612364886, 10.768954177667439 42.83916412371613, 10.775136177673204 42.89902712377187, 10.680691177585231 42.946518123816105, 10.588891177499761 42.95750012382632, 10.533327177448001 43.052773123915046, 10.542636177456671 43.15013612400574, 10.518336177434037 43.25750012410572, 10.422782177345056 43.39804512423663, 10.324509177253532 43.475127124308415, 10.29513617722617 43.54256412437121, 10.267500177200418 43.79610912460734, 10.236245177171327 43.87902712468457, 10.09082717703589 44.01860912481456, 9.715000176685862 44.11471812490407, 9.33652717633339 44.30971812508568, 9.231109176235208 44.34693612512035, 8.747218175784553 44.4280541251959, 8.495273175549926 44.32262712509771, 8.443918175502091 44.26790912504674, 8.399236175460459 44.17979112496468, 8.27402717534386 44.14082712492839, 8.156318175234247 43.982773124781176, 8.164654175241992 43.95874512475882, 8.067782175151791 43.89305412469764, 7.948891175041069 43.846382124654156, 7.665482174777111 43.779573124591934, 7.531936174652742 43.78204512459425, 7.496218174619457 43.87450912468037, 7.658609174770703 44.00680012480356, 7.706245174815081 44.07582712486786, 7.709045174817675 44.09130912488226, 7.661663174773565 44.133954124921985, 7.662218174774068 44.17082712495633, 7.6147181747298305 44.18027312496511, 7.4209731745494025 44.12610912491468, 7.350836174484073 44.13151812491972, 7.031391174186581 44.24693612502722, 6.976391174135358 44.28416412506189, 6.877918174043629 44.37513612514661, 6.852782174020234 44.54083612530093, 7.028336174183721 44.744718125490806, 7.031663174186832 44.83138212557151, 6.9423631741036615 44.87069112560812, 6.84930917401698 44.870409125607864, 6.749027173923594 44.918327125652496, 6.6239631738071125 45.11571812583634, 6.76639117393978 45.16819112588519, 6.821663173991254 45.15305412587111, 6.939445174100939 45.17944512589568, 7.127782174276348 45.25930012597004, 7.158609174305042 45.377491126080116, 7.1469451742941885 45.430545126129545, 6.995418174153059 45.52527312621774, 6.969445174128879 45.596936126284504, 6.809863173980261 45.72964512640809, 6.799345173970465 45.78866412646306, 6.813336173983487 45.83423612650549, 6.984509174142914 45.87590012654431, 7.03805417419278 45.9319361265965, 7.103263174253499 45.883536126551405, 7.1913911743355925 45.880691126548754, 7.296809174433747 45.923191126588335, 7.386109174516918 45.915409126581096, 7.53666317465715 45.98166412664281, 7.650282174762964 45.98055412664178, 7.743336174849617 45.93221812659675, 7.855745174954308 45.919054126584484, 7.879300174976237 45.97513612663673, 8.00902717509706 46.009300126668535, 8.149582175227977 46.151245126800745, 8.158745175236504 46.183818126831085, 8.141945175220854 46.22290912686748, 8.303745175371546 46.42290912705374, 8.365273175428854 46.45360912708233, 8.441454175499786 46.46208212709021, 8.46083617551784 46.44832712707742, 8.465973175522635 46.37263612700693, 8.434582175493404 46.293191126932925, 8.445000175503083 46.24721812689012, 8.615836175662196 46.121245126772806, 8.696527175737344 46.10110912675404, 8.747218175784553 46.121109126772666, 8.822218175854402 46.09860912675171, 8.851454175881628 46.05673612671271, 8.820282175852611 46.033882126691424, 8.81986317585222 45.986382126647186, 8.897782175924789 45.95277312661588, 8.951109175974437 45.845273126515764, 8.998336176018427 45.82943612650104, 9.036663176054134 45.83777312650878, 9.084100176098303 45.90229112656888, 9.022982176041381 45.93895412660302, 8.99736317601753 45.97513612663673, 9.035827176053346 46.05721812671317, 9.083336176097589 46.121109126772666, 9.241009176244432 46.23362712687745, 9.292636176292518 46.324854126962435, 9.273127176274357 46.4257641270564, 9.250627176253403 46.44242712707191, 9.293782176293576 46.500827127126314, 9.36680017636158 46.50805412713305, 9.455000176443718 46.47250012709992, 9.457636176446186 46.386245127019606, 9.544863176527429 46.3062451269451, 9.624718176601789 46.29193612693177, 9.708818176680126 46.300273126939516, 9.8130541767772 46.3583271269936, 9.946945176901892 46.37958212701338, 9.99041817694237 46.355200126990695, 9.995000176946633 46.29166412693152, 10.071773177018144 46.22180012686644, 10.136391177078337 46.23069112687472, 10.173954177113302 46.263118126904914, 10.153891177094636 46.390273127023335, 10.049682176997578 46.44559112707486, 10.051391176999175 46.54151812716421, 10.11916317706229 46.61138212722926, 10.241800177176486 46.63444512725076, 10.246318177180711 46.59040912720974, 10.303609177234051 46.55486412717664, 10.457527177377415 46.54250012716511, 10.485691177403623 46.59263612721182, 10.447500177368056 46.76305412737054, 10.471236177390182 46.87135412747139, 10.563609177476195 46.84888212745045, 10.680136177584728 46.8738181274737, 10.834163177728186 46.786945127392784, 10.88778217777812 46.771109127378026, 11.016800177898261 46.7733271273801, 11.071391177949124 46.8234641274268, 11.100554177976278 46.91540912751242, 11.177154178047601 46.96735412756081, 11.483891178333295 47.0141641276044, 11.621945178461857 47.01277312760308, 11.761245178591594 46.97819112757088, 12.186109178987266 47.094582127679274, 12.230836179028927 47.07221812765846, 12.194582178995176 47.03298212762192, 12.133018178937817 47.0125641276029, 12.1361091789407 46.96694512756042, 12.160273178963223 46.928054127524206, 12.301663179094902 46.84110912744322, 12.383745179171342 46.72110912733146, 12.44055417922425 46.690827127303265, 12.554445179330315 46.66166412727611, 12.778336179538826 46.647918127263296, 13.257500179985072 46.561945127183236, 13.555000180262141 46.55624512717793, 13.718654180414575 46.52660912715032, 13.69200918038976 46.451664127080534, 13.511391180221551 46.384718127018175, 13.383473180102413 46.29513612693475, 13.418891180135404 46.21305412685831, 13.488473180200202 46.2319451268759, 13.666036180365552 46.17530912682315, 13.648191180348931 46.14554512679544, 13.538891180247163 46.07943612673387, 13.479718180192037 46.01221812667126, 13.540282180248454 45.968327126630385, 13.593336180297854 45.99304512665341, 13.635100180336764 45.982009126643135, 13.634718180336392 45.947909126611364, 13.578327180283878 45.85027312652042, 13.603745180307556 45.808882126481876, 13.791527180482433 45.75277312642962, 13.918336180600534 45.63639112632123, 13.857218180543612 45.587218126275445, 13.716945180412978 45.59610912628372, 13.79805418048852 45.60749112629432, 13.735691180430422 45.69430012637517, 13.63000018033199 45.770000126445666, 13.579473180284936 45.78196412645681, 13.54263618025064 45.78332712645809, 13.499445180210415 45.709445126389284, 13.428891180144717 45.677218126359264, 13.387427180106101 45.67829112636025, 13.42215418013842 45.69561812637639, 13.415063180131824 45.720554126399634, 13.367945180087958 45.737445126415366, 13.216945179947317 45.77693612645214, 13.12090017985787 45.76784512644366, 13.071245179811626 45.70964512638946, 13.09610917983477 45.651664126335476, 13.08778217982703 45.63652712632137, 12.92250017967308 45.61832712630442, 12.587500179361086 45.4838911261792, 12.418263179203478 45.44117312613943, 12.448473179231627 45.48325412617862, 12.503991179283332 45.49126412618608, 12.580691179354744 45.54381812623504, 12.489654179269962 45.56749112625707, 12.287082179081324 45.47332712616938, 12.15422717895757 45.30196412600978, 12.161109178963983 45.263882125974305, 12.361945179151036 45.05610912578081, 12.520136179298362 44.98263612571239, 12.538054179315054 44.960618125691866, 12.448782179231898 44.817745125558815, 12.422636179207558 44.90012712563555, 12.389863179177041 44.868400125606, 12.396945179183632 44.791382125534255, 12.290136179084158 44.83826412557792, 12.26152717905751 44.77624512552018, 12.245418179042503 44.69388212544345, 12.280000179074705 44.47610912524064, 12.353473179143151 44.27832712505645, 12.42236317920731 44.18930912497353, 12.545827179322288 44.08860912487975, 12.689718179456293 43.98750012478558, 12.753573179515769 43.97100012477023), (12.415800179201199 43.95795412475806, 12.410082179195854 43.91278212471602, 12.471527179253087 43.89868212470287, 12.511109179289946 43.94124512474252, 12.504654179283932 43.986873124785006, 12.459654179242023 43.98326412478164, 12.415800179201199 43.95795412475806), (12.448745179231878 41.90636412284738, 12.444473179227884 41.90271812284399, 12.456691179239272 41.90139112284274, 12.451891179234792 41.90839112284928, 12.448745179231878 41.90636412284738)), ((15.081391181683728 36.64916411795123, 15.023609181629894 36.69860911799728, 14.863191181480488 36.7280541180247, 14.779163181402254 36.704436118002704, 14.553609181192172 36.78027311807334, 14.45916318110423 36.834164118123525, 14.373609181024534 36.96638211824667, 14.245836180905542 37.06221811833592, 14.101800180771392 37.10986411838029, 13.887636180571945 37.099436118370576, 13.738336180432896 37.15777311842491, 13.566800180273134 37.27582711853486, 13.330000180052593 37.36110911861428, 13.155973179890537 37.49124511873548, 13.085836179825208 37.49304511873716, 12.922918179673474 37.57305411881167, 12.79278217955229 37.57901811881723, 12.656109179424988 37.55978211879932, 12.468336179250116 37.69916411892912, 12.430800179215169 37.803254119026064, 12.45847317924094 37.81798211903978, 12.477845179258964 37.87277311909081, 12.466391179248319 37.916109119131164, 12.510136179289049 38.0151361192234, 12.55819117933379 38.0605541192657, 12.733609179497165 38.13971811933942, 12.892845179645462 38.02527311923282, 12.955554179703881 38.032773119239806, 13.069482179809967 38.09016411929326, 13.056109179797517 38.13378211933389, 13.100345179838712 38.18450911938115, 13.318609180041989 38.21749111941185, 13.357918180078599 38.18694511938341, 13.367154180087198 38.12075411932176, 13.382500180101488 38.10750011930941, 13.711391180407816 37.97666411918756, 13.791109180482039 37.972218119183424, 13.944300180624708 38.029582119236835, 14.01389118068954 38.03582711924267, 14.311945180967115 38.01221811922068, 14.64347318127588 38.07728211928128, 14.784718181407413 38.15444511935314, 14.874445181490984 38.17055411936815, 15.08874518169057 38.12250011932338, 15.515418182087927 38.29290911948209, 15.647936182211339 38.26457311945569, 15.57624518214459 38.236736119429764, 15.503609182076929 38.078609119282504, 15.219718181812539 37.764445118989926, 15.217773181810742 37.70916411893843, 15.168054181764433 37.56193611880131, 15.09250018169405 37.49027311873458, 15.09270918169426 37.348327118602384, 15.230691181822749 37.12485411839425, 15.299927181887256 37.10311811837401, 15.31666318190284 37.00889111828626, 15.150691181748243 36.91332711819726, 15.095763181697095 36.78569111807839, 15.133954181732662 36.67409111797444, 15.081391181683728 36.64916411795123)), ((8.366109175429614 39.2261091203512, 8.432363175491332 39.29061812041127, 8.418609175478508 39.33943612045675, 8.371527175434665 39.37290912048792, 8.448191175506054 39.632709120729885, 8.452045175509653 39.7589911208475, 8.497218175551723 39.72374512081467, 8.541945175593384 39.77944512086654, 8.557218175607602 39.844991120927574, 8.520418175573326 39.90229112098095, 8.395973175457442 39.90130912098002, 8.408891175469478 40.00680012107827, 8.464445175521206 40.14332712120543, 8.45721817551447 40.32139112137125, 8.36721817543065 40.49277312153086, 8.30180017536972 40.58749112161908, 8.195973175271178 40.615973121645624, 8.164009175241404 40.587409121619004, 8.148191175226657 40.62082712165014, 8.178336175254742 40.63638212166461, 8.148891175227334 40.74416412176501, 8.192500175267924 40.9136091219228, 8.228054175301054 40.938400121945904, 8.232218175304922 40.909718121919184, 8.284445175353568 40.86000012187287, 8.356391175420583 40.836109121850626, 8.480000175535679 40.82027312183587, 8.579718175628557 40.840000121854246, 8.63868217568347 40.89048212190127, 8.810273175843292 40.93443612194221, 9.012636176031748 41.121936122116836, 9.16082717616976 41.19166412218178, 9.164509176173198 41.239227122226055, 9.233054176237033 41.25471812224049, 9.562500176543836 41.117773122112936, 9.633891176610348 40.989164121993184, 9.510454176495386 40.92037312192912, 9.612782176590684 40.92110912192979, 9.750273176718736 40.66624512169244, 9.750273176718736 40.5975001216284, 9.82416317678755 40.52721812156295, 9.800282176765307 40.442500121484045, 9.76131817672902 40.385618121431065, 9.657218176632057 40.3083271213591, 9.623336176600503 40.25187312130652, 9.626663176603614 40.19319112125186, 9.698336176670352 40.10221812116714, 9.713609176684571 40.04055412110972, 9.642218176618087 39.48638212059359, 9.567636176548632 39.228473120353414, 9.565073176546235 39.145618120276225, 9.521663176505825 39.118327120250825, 9.442636176432217 39.12441812025648, 9.295273176294984 39.213882120339804, 9.154336176163724 39.18468212031263, 9.013536176032574 39.26319112038573, 9.016109176034973 39.10166412023531, 9.043336176060336 39.04500012018252, 9.006945176026449 38.988054120129505, 8.851182175881377 38.877909120026914, 8.711663175751454 38.921800120067786, 8.646391175690667 38.890273120038415, 8.615836175662196 38.918609120064815, 8.551391175602191 39.05000012018718, 8.505382175559333 39.06102712019745, 8.47448217553054 39.03654512017465, 8.4365271754952 38.96471812010776, 8.40832717546894 38.958536120101996, 8.345827175410733 39.07374512020931, 8.356800175420943 39.10575412023911, 8.425836175485244 39.107082120240335, 8.453827175511321 39.08970912022417, 8.459163175516295 39.11750012025004, 8.366109175429614 39.2261091203512)), ((10.418609177341153 42.70860912359453, 10.340836177268727 42.76527312364729, 10.139163177080917 42.731664123616014, 10.100973177045347 42.78485412366555, 10.145000177086331 42.810827123689734, 10.208609177145576 42.80916412368819, 10.233473177168747 42.7927731236729, 10.355691177282552 42.80527312368454, 10.413054177335994 42.870064123744896, 10.439163177360314 42.851873123727955, 10.418609177341153 42.70860912359453)), ((12.314327179106698 45.34132712604645, 12.369163179157766 45.42581812612514, 12.426900179211515 45.41495412611502, 12.379227179167117 45.4199911261197, 12.314327179106698 45.34132712604645))) +MKD Macedonia MULTIPOLYGON (((20.5689541867944 41.87454512281775, 20.58964518681367 41.88219112282488, 20.618954186840966 41.86151812280562, 20.70778218692371 41.85639112280083, 20.736945186950862 41.86811812281175, 20.777563186988687 41.93739112287628, 20.759854186972206 41.98561812292118, 20.77083618698242 42.04680012297817, 20.795409187005305 42.083118123011985, 20.915000187116675 42.11999112304633, 21.11083618729907 42.20069112312149, 21.136454187322926 42.200000123120844, 21.218191187399043 42.14763612307209, 21.305554187480425 42.149582123073884, 21.34624518751832 42.19430012311554, 21.472636187636027 42.265973123182306, 21.619718187773003 42.25416412317131, 21.681391187830457 42.23971812315784, 21.707773187855025 42.23249112315111, 21.72985418787559 42.23513612315358, 21.788954187930614 42.26826412318442, 21.803191187943867 42.298745123212825, 21.850691187988105 42.33034512324224, 22.023609188149152 42.316936123229766, 22.07520918819722 42.3009731232149, 22.196182188309876 42.31639112322924, 22.216873188329146 42.33613612324763, 22.325345188430163 42.35895412326889, 22.36527318846737 42.32388212323622, 22.40777318850695 42.27944512319485, 22.519445188610945 42.149718123074024, 22.609445188694764 42.10333612303083, 22.685836188765904 42.065273122995364, 22.823054188893707 42.02735412296008, 22.876945188943893 41.938191122877015, 22.897636188963162 41.882218122824895, 22.94250018900493 41.80778212275558, 22.96590018902674 41.775691122725675, 23.00923618906711 41.76630912271693, 23.030973189087348 41.72506412267853, 23.015000189072452 41.695409122650915, 22.986945189046338 41.665836122623375, 22.954236189015887 41.63596412259554, 22.951663189013487 41.59860912256076, 22.959163189020472 41.47639112244693, 22.966663189027457 41.37416412235174, 22.955900189017427 41.35561812233445, 22.935600188998507 41.3421271223219, 22.926391188989953 41.34304512232276, 22.80847318888013 41.34777312232714, 22.776800188850615 41.3280541223088, 22.762036188836873 41.306636122288836, 22.761545188836408 41.2517361222377, 22.75805418883317 41.22777312221538, 22.737745188814245 41.15610912214865, 22.586736188673626 41.1198541221149, 22.484718188578597 41.1213821221163, 22.44250018853927 41.1213821221163, 22.34332718844692 41.13443612212848, 22.30471818841096 41.15332712214607, 22.259582188368938 41.17097312216251, 22.205554188318615 41.1677731221595, 21.97708218810584 41.13180012212601, 21.916109188049035 41.09527312209198, 21.910827188044124 41.06558212206434, 21.786245187928102 40.93082712193885, 21.60000018775463 40.87277312188476, 21.575763187732065 40.873118121885085, 21.548336187706525 40.89110912190185, 21.528400187687964 40.90783612191743, 21.41013618757782 40.91388212192305, 21.374582187544718 40.88319112189447, 21.34986318752169 40.87319112188516, 21.31471818748895 40.868609121880894, 21.150836187336324 40.857500121870544, 21.121554187309044 40.85721812187029, 20.983491187180476 40.855891121869064, 20.980536187177734 40.89720912190754, 20.963054187161447 40.911382121920724, 20.944163187143857 40.91916412192799, 20.837427187044455 40.927427121935665, 20.821109187029236 40.908882121918396, 20.807218187016304 40.90055412191066, 20.740809186954465 40.90953612191902, 20.662500186881516 41.089164122086316, 20.600609186823874 41.09318212209004, 20.578327186803136 41.162773122154846, 20.519163186748045 41.24638212223272, 20.502500186732505 41.30444512228681, 20.49885418672912 41.34180012232159, 20.524163186752702 41.35027312232947, 20.550000186776742 41.37305412235071, 20.561873186787807 41.408673122383874, 20.508609186738198 41.45971812243141, 20.47069118670288 41.49930012246827, 20.458818186691843 41.52082712248833, 20.466109186698617 41.55554512252067, 20.53388218676173 41.63471812259439, 20.51777318674675 41.744027122696195, 20.53360918676148 41.77693612272685, 20.5689541867944 41.87454512281775))) +MLT Malta MULTIPOLYGON (((14.519718181160613 35.800000117160394, 14.423891181071383 35.81860011717771, 14.377363181028045 35.8459731172032, 14.366945181018338 35.85471811721135, 14.34721818099996 35.872500117227915, 14.337918180991295 35.881800117236565, 14.333054180986778 35.89500011724887, 14.32910018098309 35.978464117326595, 14.365000181016512 35.99193611733914, 14.375000181025825 35.990827117338114, 14.443336181089478 35.960273117309654, 14.510273181151831 35.925282117277064, 14.548336181187267 35.89221811724627, 14.563891181201768 35.87777311723282, 14.570000181207433 35.86943611722505, 14.564582181202411 35.8235361171823, 14.519718181160613 35.800000117160394))) +SMR San Marino MULTIPOLYGON (((12.415800179201199 43.95795412475806, 12.459654179242023 43.98326412478164, 12.504654179283932 43.986873124785006, 12.511109179289946 43.94124512474252, 12.496391179276259 43.923336124725836, 12.495000179274939 43.91471812471781, 12.471527179253087 43.89868212470287, 12.410082179195854 43.91278212471602, 12.406945179192945 43.95166412475223, 12.415800179201199 43.95795412475806))) +SMN Serbia & Montenegro MULTIPOLYGON (((18.455554184826156 42.56582712346156, 18.463891184833926 42.56944512346493, 18.543327184907895 42.61513612350748, 18.572082184934686 42.64117312353173, 18.576382184938666 42.663054123552115, 18.557845184921405 42.71395412359951, 18.523818184889734 42.72756412361218, 18.490836184859006 42.76639112364833, 18.45540918482601 42.828609123706286, 18.481736184850547 42.96617312383441, 18.503054184870393 42.995409123861634, 18.53000018489547 43.01471812387962, 18.55221818491617 43.022773123887106, 18.579718184941783 43.02916412389308, 18.647045185004487 43.04340012390634, 18.658118185014814 43.08388212394402, 18.648263185005618 43.127073123984246, 18.64583618500336 43.14721812400302, 18.7027731850564 43.25714512410539, 18.839336185183583 43.34801812419002, 18.880827185222216 43.355536124197016, 18.915573185254573 43.3577731241991, 18.958127185294217 43.320909124164785, 18.955054185291345 43.293891124139606, 19.016663185348733 43.23943612408891, 19.059573185388672 43.235945124085646, 19.075554185403576 43.25527312410364, 19.092918185419734 43.305273124150204, 19.025273185356752 43.432354124268585, 19.00500018533785 43.447354124282555, 18.98277318531717 43.452773124287575, 18.957145185293285 43.45590012429051, 18.94985418528651 43.506036124337186, 19.009163185341748 43.55597312438371, 19.217782185536038 43.51902712434929, 19.22880918554631 43.513218124343894, 19.287500185600948 43.54416412437271, 19.408609185713743 43.58444512441022, 19.48055418578076 43.57139112439805, 19.49389118579319 43.58805412441359, 19.5105541858087 43.68582712450464, 19.50763618580598 43.70958212452675, 19.499582185798488 43.73708212455236, 19.49013618578968 43.758473124572305, 19.475273185775848 43.7727731245856, 19.437500185740646 43.80028212461124, 19.36694518567495 43.85944512466634, 19.251218185567183 43.9623821247622, 19.239454185556212 44.010609124807104, 19.308927185620917 43.997736124795125, 19.366127185674173 43.970873124770094, 19.428527185732293 43.960654124760595, 19.48527318578516 43.95888212475893, 19.525791185822897 43.96044512476038, 19.619782185910424 44.01975412481562, 19.618563185909295 44.05261812484625, 19.596945185889155 44.06027312485335, 19.485836185785672 44.12028212490927, 19.357954185666586 44.20940912499225, 19.237436185554344 44.26518212504419, 19.160909185483064 44.28678212506432, 19.128991185453344 44.315227125090814, 19.104445185430478 44.35582712512863, 19.105554185431515 44.37666412514804, 19.130827185455047 44.521427125282855, 19.193982185513875 44.56015412531892, 19.313609185625268 44.70471812545355, 19.336109185646222 44.747218125493134, 19.345218185654716 44.76773612551224, 19.382200185689157 44.86481812560265, 19.3713911856791 44.88916412562534, 19.304863185617137 44.90943612564422, 19.175345185496496 44.9224271256563, 19.121109185445988 44.9013821256367, 19.03971818537019 44.86138212559945, 19.02860918535984 44.88027312561704, 19.00981818534234 44.90548212564053, 19.040763185371162 44.93076412566407, 19.11555418544083 45.03194512575831, 19.104163185430224 45.09666412581859, 19.167354185489074 45.21430012592813, 19.187500185507815 45.21694512593061, 19.21282718553141 45.210000125924125, 19.248682185564803 45.18666412590241, 19.352500185661484 45.17333612588999, 19.418536185722985 45.17999112589618, 19.425000185729004 45.217918125931504, 19.409209185714303 45.23527312594766, 19.388963185695445 45.235745125948114, 19.350563185659695 45.234582125947014, 19.320336185631533 45.23836412595054, 19.28500018559862 45.24340912595525, 19.26051818557582 45.24742712595898, 19.19020018551035 45.27033612598032, 19.138609185462286 45.2875001259963, 19.112500185437966 45.298045126006144, 18.981263185315754 45.382218126084524, 19.001082185334212 45.489691126184624, 19.02557318535702 45.49707312619148, 19.05640018538574 45.487018126182136, 19.096018185422622 45.49800912619236, 19.097927185424396 45.51886412621178, 19.007091185339817 45.56113612625114, 18.96966318530494 45.539991126231456, 18.948727185285463 45.53793612622954, 18.92918218526725 45.54484512623597, 18.902236185242145 45.57313612626234, 18.910418185249767 45.62017312630613, 18.936391185273976 45.62805412631349, 18.96689118530236 45.664073126347034, 18.956663185292854 45.78250012645731, 18.9166631852556 45.81569112648822, 18.889854185230632 45.8257641264976, 18.83235418517708 45.87550912654393, 18.817018185162794 45.91296412657883, 18.835827185180307 45.91110912657709, 18.8588911852018 45.91110912657709, 19.00263618533566 45.959445126622114, 19.093054185419874 46.02221812668057, 19.127500185451936 46.02090012667935, 19.154091185476716 45.988609126649266, 19.284027185597722 45.988882126649514, 19.46389118576525 46.076382126731005, 19.51631818581407 46.11811812676987, 19.50631818580476 46.139227126789535, 19.565273185859667 46.17277312682077, 19.666527185953953 46.181109126828545, 19.703718185988606 46.17639112682414, 19.744718186026773 46.162218126810956, 19.84958218612445 46.15214512680157, 19.9611091862283 46.17082712681898, 20.115273186371894 46.16721812681561, 20.202773186453385 46.1505541268001, 20.257773186504608 46.11804512676983, 20.26102718650762 46.11485412676686, 20.314027186556984 46.06985412672495, 20.354027186594237 46.017391126676074, 20.373191186612075 45.98151812664267, 20.513745186742995 45.91423612657999, 20.553745186780247 45.91124512657723, 20.585273186809616 45.898745126565586, 20.655973186875457 45.827909126499605, 20.662363186881407 45.798745126472454, 20.71763618693288 45.74374512642123, 20.752773186965612 45.7469361264242, 20.773018186984444 45.76815412644396, 20.801600187011076 45.75867312643513, 20.797500187007245 45.653045126336764, 20.77652718698772 45.63332712631839, 20.767563186979373 45.61353612629995, 20.79416318700416 45.50777312620144, 20.80832718701734 45.47888212617454, 20.98666318718344 45.34583612605064, 21.04888218724136 45.3163821260232, 21.27194518744912 45.23124512594393, 21.35139118752312 45.21777312593136, 21.410827187578462 45.215418125929176, 21.473373187636724 45.18744512590314, 21.482773187645478 45.18360912589955, 21.514100187674643 45.14277312586151, 21.44305418760848 45.05360012577847, 21.373436187543632 45.013609125741226, 21.407218187575097 44.97221812570268, 21.429718187596052 44.96166412569286, 21.450136187615072 44.96235412569351, 21.47319118763653 44.96235412569351, 21.535827187694878 44.940200125672874, 21.5568001877144 44.91395412564842, 21.553954187711753 44.89242712562836, 21.502218187663573 44.879718125616535, 21.47888218764183 44.87527312561238, 21.453609187618298 44.875418125612526, 21.40777318757563 44.87624512561331, 21.36958218754006 44.86652712560425, 21.362573187533513 44.828100125568454, 21.398663187567138 44.783100125526545, 21.453609187618298 44.77666412552057, 21.47471818763796 44.77777312552158, 21.533745187692944 44.777354125521214, 21.56555418772257 44.77166412551591, 21.5969451877518 44.755827125501156, 21.61560018776916 44.710791125459195, 21.61770918777114 44.682845125433175, 21.644236187795855 44.66013612541204, 21.734163187879602 44.655827125408024, 21.783609187925634 44.66194512541372, 21.909163188042584 44.649436125402076, 21.997009188124395 44.633045125386815, 22.029163188154342 44.593891125350325, 22.031263188156288 44.58942712534619, 22.03541818816015 44.55950912531833, 22.09166318821255 44.49867312526166, 22.137500188255217 44.48027312524451, 22.1754821882906 44.4832641252473, 22.258609188368013 44.5852731253423, 22.273327188381728 44.604164125359915, 22.297773188404506 44.6358271253894, 22.311591188417367 44.659027125411, 22.42881818852655 44.7120821254604, 22.466109188561262 44.71374512546197, 22.493473188586762 44.69916412544839, 22.513891188605783 44.67971812543027, 22.543054188632937 44.65860912541061, 22.574445188662168 44.63860912539198, 22.607291188692756 44.6224271253769, 22.64444518872736 44.618609125373354, 22.665836188747278 44.61944512537414, 22.712773188791004 44.605136125360815, 22.762509188837328 44.55260012531187, 22.73889118881533 44.53305412529369, 22.701182188780194 44.52356412528485, 22.672500188753475 44.52888212528978, 22.63902718872231 44.54582712530558, 22.615418188700318 44.55166412531102, 22.58624518867316 44.547636125307264, 22.461527188557 44.48332712524737, 22.459927188555525 44.46106412522664, 22.53000018862076 44.34527312511878, 22.543327188633185 44.32971812510431, 22.57561818866327 44.30554512508181, 22.616673188701498 44.29803612507479, 22.641109188724243 44.294164125071205, 22.665273188746767 44.28846412506587, 22.68777318876772 44.274018125052436, 22.681436188761808 44.22470012500651, 22.676391188757123 44.22471812500652, 22.6518001887342 44.213191124995774, 22.619163188703823 44.17000012495555, 22.61485418869981 44.11958212490859, 22.544854188634616 44.06083612485389, 22.418609188517024 44.00819112480485, 22.367218188469167 43.82694512463607, 22.410418188509396 43.717500124534126, 22.541663188631645 43.47561812430885, 22.6280541887121 43.430827124267154, 22.66916318875039 43.41583612425319, 22.721382188798998 43.400691124239074, 22.76430918883898 43.38666412422603, 22.82950918889972 43.33187312417499, 22.846945188915953 43.28672712413294, 22.905973188970933 43.22971812407985, 22.940554189003137 43.21054512406201, 23.00500018906314 43.19277312404543, 22.992082189051132 43.137354123993845, 22.966391189027206 43.1016641239606, 22.741591188817836 42.89214512376546, 22.65860918874054 42.88290912375686, 22.615000188699923 42.89471812376786, 22.594854188681182 42.89444512376761, 22.521245188612625 42.87687312375124, 22.44290918853966 42.82040912369865, 22.447218188543673 42.59944512349287, 22.468191188563196 42.5669361234626, 22.522500188613776 42.53110912342922, 22.546945188636556 42.51290912341227, 22.558473188647298 42.483327123384726, 22.53721818862749 42.425418123330786, 22.520836188612236 42.40069112330775, 22.459445188555065 42.36305412327272, 22.410827188509785 42.33527312324682, 22.36527318846737 42.32388212323622, 22.325345188430163 42.35895412326889, 22.216873188329146 42.33613612324763, 22.196182188309876 42.31639112322924, 22.07520918819722 42.3009731232149, 22.023609188149152 42.316936123229766, 21.850691187988105 42.33034512324224, 21.803191187943867 42.298745123212825, 21.788954187930614 42.26826412318442, 21.72985418787559 42.23513612315358, 21.707773187855025 42.23249112315111, 21.681391187830457 42.23971812315784, 21.619718187773003 42.25416412317131, 21.472636187636027 42.265973123182306, 21.34624518751832 42.19430012311554, 21.305554187480425 42.149582123073884, 21.218191187399043 42.14763612307209, 21.136454187322926 42.200000123120844, 21.11083618729907 42.20069112312149, 20.915000187116675 42.11999112304633, 20.795409187005305 42.083118123011985, 20.77083618698242 42.04680012297817, 20.759854186972206 41.98561812292118, 20.777563186988687 41.93739112287628, 20.736945186950862 41.86811812281175, 20.70778218692371 41.85639112280083, 20.618954186840966 41.86151812280562, 20.58964518681367 41.88219112282488, 20.583400186807864 41.918818122858994, 20.60332718682642 41.93471812287379, 20.621736186843577 41.9565271228941, 20.59527318681893 42.0436091229752, 20.5251361867536 42.21305412313302, 20.50889118673848 42.23027312314903, 20.457536186690646 42.273909123189696, 20.3869451866249 42.30416412321787, 20.355673186595766 42.31184512322503, 20.24950918649691 42.32707312323919, 20.239582186487667 42.36055412327039, 20.222500186471734 42.4283271233335, 20.161663186415097 42.5113181234108, 20.10208218635961 42.533473123431435, 20.071418186331044 42.56090912345698, 20.056109186316775 42.56290912345884, 19.92735418619688 42.515554123414745, 19.822500186099205 42.47193612337412, 19.793954186072625 42.48409112338544, 19.769445186049808 42.50096412340113, 19.746809186028713 42.54500012344215, 19.76479118604547 42.5878731234821, 19.754582186035975 42.64097312353155, 19.71784518600174 42.660345123549575, 19.651527185939983 42.62319112351497, 19.633327185923036 42.60333612349649, 19.611182185902408 42.5710361234664, 19.608536185899936 42.542845123440145, 19.519718185817226 42.448609123352384, 19.288536185601913 42.182909123104935, 19.332218185642603 42.15250012307661, 19.37819118568541 42.12346412304956, 19.399100185704896 42.10409112303154, 19.376391185683758 42.0728091230024, 19.346945185656324 41.955554122893204, 19.343327185652953 41.91250012285309, 19.36777318567573 41.84900012279397, 19.299445185612086 41.89471812283654, 19.278891185592954 41.90332712284456, 19.23235418554961 41.91172712285237, 19.17610918549721 41.93151812287081, 19.152773185475496 41.94889112288698, 19.13798218546171 41.98277312291853, 19.14597318546916 42.01958212295281, 19.138609185462286 42.043327122974944, 19.078609185406407 42.111664123038594, 19.050063185379827 42.1370091230622, 19.00500018533785 42.15749112308126, 18.964445185300093 42.189991123111525, 18.879373185220857 42.27943612319484, 18.84735418519105 42.286936123201826, 18.81083618515703 42.28471812319975, 18.647082185004535 42.37430012328318, 18.620063184979358 42.36506412327458, 18.577218184939454 42.38721812329521, 18.55353618491739 42.427218123332466, 18.585827184947476 42.429718123334794, 18.625618184984546 42.41895412332477, 18.70347318505705 42.399018123306206, 18.70763618506092 42.41985412332562, 18.678609185033878 42.46055412336352, 18.50805418487505 42.45388212335729, 18.503200184870536 42.449436123353166, 18.498054184865737 42.45110912335471, 18.472918184842314 42.47152712337373, 18.457782184828233 42.49360912339429, 18.453327184824076 42.51680012341589, 18.455554184826156 42.56582712346156))) +VTC Vatican City MULTIPOLYGON (((12.448745179231878 41.90636412284738, 12.451891179234792 41.90839112284928, 12.457718179240231 41.90400012284519, 12.456691179239272 41.90139112284274, 12.45013617923317 41.900891122842296, 12.444473179227884 41.90271812284399, 12.444863179228264 41.9044451228456, 12.448745179231878 41.90636412284738))) +BGR Bulgaria MULTIPOLYGON (((22.935600188998507 41.3421271223219, 22.955900189017427 41.35561812233445, 22.966663189027457 41.37416412235174, 22.959163189020472 41.47639112244693, 22.951663189013487 41.59860912256076, 22.954236189015887 41.63596412259554, 22.986945189046338 41.665836122623375, 23.015000189072452 41.695409122650915, 23.030973189087348 41.72506412267853, 23.00923618906711 41.76630912271693, 22.96590018902674 41.775691122725675, 22.94250018900493 41.80778212275558, 22.897636188963162 41.882218122824895, 22.876945188943893 41.938191122877015, 22.823054188893707 42.02735412296008, 22.685836188765904 42.065273122995364, 22.609445188694764 42.10333612303083, 22.519445188610945 42.149718123074024, 22.40777318850695 42.27944512319485, 22.36527318846737 42.32388212323622, 22.410827188509785 42.33527312324682, 22.459445188555065 42.36305412327272, 22.520836188612236 42.40069112330775, 22.53721818862749 42.425418123330786, 22.558473188647298 42.483327123384726, 22.546945188636556 42.51290912341227, 22.522500188613776 42.53110912342922, 22.468191188563196 42.5669361234626, 22.447218188543673 42.59944512349287, 22.44290918853966 42.82040912369865, 22.521245188612625 42.87687312375124, 22.594854188681182 42.89444512376761, 22.615000188699923 42.89471812376786, 22.65860918874054 42.88290912375686, 22.741591188817836 42.89214512376546, 22.966391189027206 43.1016641239606, 22.992082189051132 43.137354123993845, 23.00500018906314 43.19277312404543, 22.940554189003137 43.21054512406201, 22.905973188970933 43.22971812407985, 22.846945188915953 43.28672712413294, 22.82950918889972 43.33187312417499, 22.76430918883898 43.38666412422603, 22.721382188798998 43.400691124239074, 22.66916318875039 43.41583612425319, 22.6280541887121 43.430827124267154, 22.541663188631645 43.47561812430885, 22.410418188509396 43.717500124534126, 22.367218188469167 43.82694512463607, 22.418609188517024 44.00819112480485, 22.544854188634616 44.06083612485389, 22.61485418869981 44.11958212490859, 22.619163188703823 44.17000012495555, 22.6518001887342 44.213191124995774, 22.676391188757123 44.22471812500652, 22.681436188761808 44.22470012500651, 22.691663188771344 44.21555412499799, 22.914582188978954 44.11110912490071, 22.94832718901037 44.10401812489411, 22.997445189056123 44.10062712489096, 23.0127731890704 44.09610912488674, 23.042982189098524 44.07256412486481, 23.037636189093547 44.050691124844434, 22.992236189051255 44.01375412481005, 22.959427189020715 44.01227312480867, 22.913400188977846 44.00086412479803, 22.882218188948798 43.984864124783144, 22.841963188911308 43.89667312470101, 22.85254518892117 43.86073612466754, 22.869300188936762 43.845418124653264, 22.89444518896019 43.836109124644594, 22.96694518902771 43.81693612462675, 23.067527189121392 43.80218212461301, 23.14319118919184 43.80971812462002, 23.162109189209474 43.81822712462795, 23.198609189243456 43.831382124640186, 23.224500189267587 43.83866412464698, 23.262073189302555 43.84778212465548, 23.28360918932262 43.85082712465831, 23.42268218945216 43.85570012466283, 23.446663189474492 43.851109124658564, 23.511518189534883 43.836554124645005, 23.533700189555532 43.822427124631844, 23.570273189589614 43.80693612461744, 23.607082189623895 43.79735412460852, 23.62971818964496 43.795000124606304, 23.7741631897795 43.7883271246001, 23.987500189978164 43.74416412455898, 24.06798219005313 43.72062712453706, 24.116082190097927 43.699909124517745, 24.15561819013476 43.68990912450843, 24.18923619016607 43.68492712450379, 24.224163190198595 43.689436124508006, 24.257218190229366 43.69444512451267, 24.286391190256552 43.697491124515494, 24.30778219027647 43.697491124515494, 24.31970919028757 43.6966361245147, 24.355273190320702 43.69687312451492, 24.405282190367274 43.7197181245362, 24.438609190398296 43.73638212455171, 24.457773190416162 43.74471812455948, 24.501800190457146 43.761245124574884, 24.528609190482115 43.761109124574745, 24.562500190513674 43.75916412457295, 24.605827190554038 43.75151812456582, 24.686927190629575 43.71838212453497, 24.714163190654943 43.714718124531544, 24.793609190728915 43.71277312452972, 24.881382190810655 43.712218124529215, 25.022754190942322 43.71019112452731, 25.22471819113042 43.687482124506175, 25.268609191171294 43.675273124494794, 25.31444519121399 43.652218124473336, 25.344163191241677 43.633464124455855, 25.378791191273905 43.62330912444642, 25.432063191323522 43.62792712445071, 25.463854191353136 43.63920912446122, 25.53193619141655 43.64360012446531, 25.609163191488477 43.662209124482644, 25.681336191555687 43.690427124508915, 25.73530919160595 43.69460012451282, 25.76652719163502 43.70332712452094, 25.78694519165404 43.713054124530004, 25.884563191744945 43.79301812460446, 25.942773191799176 43.848473124656124, 26.085282191931896 43.949718124750405, 26.111663191956467 43.968318124767734, 26.136382191979465 43.982773124781176, 26.301936192133667 44.03081812482594, 26.38666319221258 44.043873124838086, 26.413036192237143 44.04312712483741, 26.43841819226077 44.04130912483569, 26.478609192298194 44.04942712484328, 26.671100192477468 44.07193612486424, 26.794718192592597 44.09527312488595, 26.840827192635544 44.11555412490486, 26.89020919268154 44.13199112492015, 26.913400192703136 44.136127124924, 27.036427192817712 44.14733612493444, 27.111109192887255 44.14082712492839, 27.16583619293823 44.12999112491829, 27.193600192964084 44.12331812491209, 27.230273192998254 44.120827124909766, 27.250545193017132 44.12498212491363, 27.27270919303777 44.1321451249203, 27.279300193043895 44.10388212489397, 27.29527319305879 44.08430012487574, 27.407500193163287 44.02180012481753, 27.475827193226934 44.01943612481534, 27.624791193365667 44.02818212482347, 27.652427193391418 44.041664124836046, 27.67874519341592 44.02971812482491, 27.69835419343417 43.99360912479128, 27.71680019345135 43.969227124768565, 27.74180019347463 43.95943612475946, 27.813191193541115 43.96500012476463, 27.83332719355988 43.969164124768525, 27.8604091935851 43.980818124779375, 27.922218193642664 44.00388212480084, 27.952218193670603 43.97443612477343, 27.96027319367812 43.944991124746, 27.9980541937133 43.8595091246664, 28.038463193750943 43.835409124643945, 28.13305419383903 43.8016541246125, 28.18194519388456 43.78527312459724, 28.23555419393449 43.77000012458302, 28.257773193955188 43.764436124577855, 28.403891194091273 43.75027312456464, 28.485000194166787 43.74416412455898, 28.583245194258296 43.74776412456231, 28.57638219425189 43.733045124548624, 28.57000019424595 43.689709124508255, 28.577563194253003 43.59165412441692, 28.600409194274278 43.56186412438919, 28.605136194278685 43.53395412436319, 28.5924911942669 43.50331812433467, 28.557636194234448 43.4533181242881, 28.54166319421958 43.437773124273605, 28.525554194204574 43.42581812426249, 28.479445194161627 43.39332712423223, 28.4533271941373 43.38527312422471, 28.431391194116884 43.38943612422861, 28.408463194095532 43.398464124236995, 28.382500194071326 43.412764124250316, 28.33596319402801 43.421654124258595, 28.299718193994238 43.421654124258595, 28.150409193855182 43.404445124242585, 28.127218193833585 43.39498212423376, 28.084854193794143 43.35707312419845, 28.07166319378186 43.3227731241665, 28.053327193764773 43.28081812412745, 28.015827193729848 43.22581812407623, 27.945000193663873 43.167218124021645, 27.887354193610207 43.03693612390032, 27.886391193609313 43.01415412387908, 27.896382193618592 42.92499112379605, 27.903882193625577 42.891109123764494, 27.901663193623534 42.855554123731395, 27.87916319360258 42.84110012371792, 27.898118193620235 42.784018123664765, 27.894091193616475 42.70305412358937, 27.805545193534016 42.708054123594025, 27.77193619350271 42.713609123599184, 27.732909193466355 42.711109123596856, 27.632500193372834 42.63165412352285, 27.51069119325939 42.55221812344888, 27.49582719324556 42.53582712343362, 27.449582193202502 42.47298212337509, 27.464991193216832 42.449436123353166, 27.51520019326361 42.435136123339845, 27.553882193299614 42.44887312335263, 27.616663193358107 42.44721812335109, 27.679163193416315 42.418318123324184, 27.70034519343602 42.3952731233027, 27.703891193439347 42.36889112327813, 27.75540919348731 42.25430012317142, 27.78055419351074 42.2272181231462, 27.857218193582128 42.16416412308749, 27.899163193621206 42.13360912305902, 27.938891193658208 42.10304512303057, 27.968609193685865 42.072491123002095, 28.00055419371563 42.037073122969105, 28.0218001937354 41.99416412292916, 28.01305419372727 41.98221812291803, 27.971100193688187 41.98415412291982, 27.90360919362533 41.99470912292966, 27.86708219359133 42.005545122939765, 27.8325001935591 42.00166412293615, 27.705827193441138 41.977482122913614, 27.633327193373617 41.95582712289345, 27.595554193338444 41.93555412287458, 27.56958219331426 41.90926412285009, 27.441109193194592 41.97694512291312, 27.411527193167046 41.99471812292967, 27.39346319315024 42.00929112294324, 27.373054193131225 42.03998212297182, 27.363263193122094 42.06284512299311, 27.309163193071726 42.091382123019685, 27.286245193050377 42.100964123028604, 27.23305419300084 42.10999112303702, 27.070273192849243 42.08999112301839, 27.037218192818443 42.08360912301245, 26.962218192748594 42.003318122937685, 26.933054192721443 42.00694512294106, 26.621382192431156 41.9730541229095, 26.56695419238048 41.93475412287381, 26.57529119238825 41.89864512284021, 26.56582719237943 41.87138212281479, 26.558327192372445 41.85166412279645, 26.535727192351402 41.828045122774455, 26.472773192292777 41.82415412277081, 26.44666319226846 41.8250001227716, 26.3813181922076 41.8220001227688, 26.343954192172788 41.78234512273187, 26.332636192162255 41.74540912269748, 26.351173192179516 41.71908212267297, 26.361100192188758 41.71105412266547, 26.301936192133667 41.70790912266256, 26.271109192104944 41.71290912266721, 26.232863192069345 41.739518122692004, 26.172500192013104 41.74777312269967, 26.138609191981544 41.739154122691644, 26.077636191924768 41.714300122668504, 26.06596319191391 41.69165412264741, 26.068600191916346 41.66027312261818, 26.101100191946614 41.62804512258819, 26.129782191973334 41.63061812259056, 26.182773192022694 41.540127122506306, 26.19805419203692 41.43943612241253, 26.140000191982836 41.35471812233362, 25.983473191837078 41.32027312230153, 25.90555419176451 41.311100122293, 25.883882191744306 41.30943612229146, 25.8141631916794 41.33610012231628, 25.653045191529344 41.3177731222992, 25.561245191443845 41.3193731223007, 25.503609191390154 41.28944512227284, 25.340409191238166 41.24985412223597, 25.282354191184112 41.24304512222963, 25.241663191146216 41.25360012223945, 25.19082719109886 41.301454122284014, 25.18583619109421 41.30527312228756, 25.163054191073 41.31749112229895, 25.06119119097812 41.36257312234093, 25.036509190955144 41.37043612234825, 24.901391190829315 41.411945122386925, 24.818473190752087 41.40374512237929, 24.812500190746505 41.378327122355614, 24.809445190743673 41.352218122331294, 24.767773190704872 41.37055412234838, 24.609300190557263 41.43256412240612, 24.565973190516928 41.49638212246555, 24.466109190423907 41.551936122517304, 24.306245190275035 41.547500122513156, 24.258191190230264 41.56958212253372, 24.215273190190317 41.554991122520136, 24.199991190176064 41.5437821225097, 24.157218190136234 41.54110912250721, 24.093191190076595 41.54826412251387, 24.064027190049444 41.52172712248915, 24.06639119005166 41.4852731224552, 23.976663189968093 41.44082712241382, 23.886391189884023 41.45194512242418, 23.796391189800204 41.43666412240995, 23.738327189746116 41.40860912238381, 23.63347318964847 41.37777312235508, 23.598054189615482 41.38082712235794, 23.545000189566053 41.39443612237062, 23.4405541894688 41.40943612238459, 23.287145189325912 41.40416412237968, 23.229863189272578 41.37624512235368, 23.22832718927114 41.354091122333045, 23.207918189252126 41.33304512231345, 23.185136189230917 41.323745122304786, 23.12000018917024 41.32082712230206, 23.094445189146455 41.32054512230181, 22.975554189035734 41.33554512231578, 22.935600188998507 41.3421271223219))) +CYP Cyprus MULTIPOLYGON (((33.27229119862531 34.709545116144824, 33.21721819857402 34.6994361161354, 33.15305419851427 34.70250011613827, 33.133609198496146 34.70166411613748, 33.116945198480636 34.698609116134634, 33.1050001984695 34.69527311613153, 33.06319119843056 34.680691116117956, 33.03000019839965 34.65777311609661, 32.85944519824082 34.666109116104366, 32.83110919821442 34.66750011610567, 32.76513619815299 34.6558271160948, 32.75166319814045 34.648891116088336, 32.74221819813164 34.64540911608509, 32.71388219810524 34.64027311608031, 32.698327198090766 34.64221811608212, 32.65471819805015 34.653609116092724, 32.641663198038 34.65721811609609, 32.49194519789856 34.702218116138, 32.471109197879144 34.713054116148086, 32.405827197818354 34.74985411618236, 32.34138219775832 34.86332711628805, 32.32332719774152 34.90943611633098, 32.27527319769678 35.04040911645296, 32.27027319769212 35.062491116473524, 32.269863197691734 35.0788821164888, 32.278609197699865 35.095409116504186, 32.295136197715266 35.09458211650342, 32.304718197724185 35.08416411649371, 32.31249119773142 35.076945116486996, 32.32666319774464 35.06555411647638, 32.34138219775832 35.05444511646604, 32.35416319777025 35.04639111645854, 32.37263619778744 35.038954116451606, 32.397773197810864 35.03944511645207, 32.4240271978353 35.04416411645646, 32.438609197848876 35.05028211646216, 32.46027319786907 35.064436116475335, 32.49388219790035 35.0969361165056, 32.50193619790787 35.10916411651699, 32.5158271979208 35.13582711654183, 32.52221819792675 35.14443611654984, 32.5513821979539 35.173473116576886, 32.56555419796712 35.16888211657262, 32.62221819801988 35.18416411658684, 32.655963198051325 35.18971811659202, 32.72193619811276 35.18082711658374, 32.76971819815725 35.16389111656797, 32.808609198193466 35.148327116553475, 32.8205451982046 35.143882116549335, 32.83513619821818 35.142909116548424, 32.85832719823978 35.15055411655554, 32.882773198262555 35.16221811656641, 32.8958271982747 35.16971811657339, 32.90444519828273 35.17680011657998, 32.912773198290495 35.18860911659098, 32.916936198294366 35.2000001166016, 32.93210019830849 35.26362711666086, 32.93916319831507 35.327500116720344, 33.00278219837432 35.365554116755774, 33.27194519862499 35.33971811673172, 33.35443619870182 35.33027311672292, 33.36943619871579 35.32860911672137, 33.385273198730545 35.32832711672111, 33.42750019876985 35.328045116720844, 33.4726361988119 35.32860911672137, 33.63166319896001 35.35027311674155, 33.652618198979525 35.354100116745116, 33.71305419903581 35.38194511677105, 33.75305419907306 35.39846411678643, 33.77499119909348 35.402218116789925, 33.8072181991235 35.400273116788114, 33.8536091991667 35.4030541167907, 33.871109199182996 35.40639111679381, 33.96971819927484 35.43610011682148, 34.29221819957519 35.56666411694307, 34.31416319959564 35.57555411695135, 34.336663199616595 35.58943611696428, 34.34250019962201 35.59916411697334, 34.350000199628994 35.6069451169806, 34.360273199638584 35.611936116985234, 34.389445199665744 35.62388211699637, 34.55319119981823 35.68208211705057, 34.58603619984882 35.68860911705664, 34.56971819983363 35.643609117014734, 34.38666319966316 35.53527311691384, 34.280827199564584 35.476945116859525, 34.259436199544666 35.46750011685073, 34.225273199512856 35.45555411683959, 34.12000019941479 35.40083611678864, 33.958054199263984 35.31277311670662, 33.94832719925492 35.30721811670145, 33.940554199247686 35.299436116694196, 33.921391199229845 35.27277311666937, 33.910554199219746 35.253054116651, 33.90582719921534 35.24221811664091, 33.90193619921172 35.21582711661634, 33.900273199210176 35.19805411659978, 33.90208219921186 35.16305411656718, 33.973882199278705 35.08805411649733, 34.03305419933383 35.0438821164562, 34.05444519935375 35.02055411643447, 34.06721819936564 35.00388211641895, 34.07819119937585 34.98847311640459, 34.08527319938247 34.96166411637962, 34.06499119936356 34.960964116378975, 34.03471819933537 34.97193611638919, 34.02388219932527 34.97930011639605, 33.97694519928157 34.981382116397995, 33.955827199261904 34.97805411639489, 33.929445199237335 34.97360911639075, 33.91332719922232 34.96944511638688, 33.90305419921276 34.96416411638195, 33.89916319920914 34.959718116377815, 33.89638219920653 34.95555411637393, 33.88374519919478 34.94513611636424, 33.86479119917712 34.93721811635686, 33.84832719916179 34.942500116361785, 33.832500199147034 34.95680011637509, 33.81443619913023 34.96582711638351, 33.79027319910773 34.970273116387645, 33.763054199082376 34.97277311638997, 33.70763619903076 34.97388211639101, 33.68138219900629 34.966800116384405, 33.66471819899078 34.95790911637613, 33.647918198975134 34.938882116358414, 33.63958219896739 34.91680011633784, 33.636109198964135 34.899991116322184, 33.63277319896105 34.87388211629788, 33.63742719896538 34.86214511628694, 33.60333619893362 34.81847311624627, 33.51639119885266 34.783609116213796, 33.369018198715395 34.72652711616064, 33.32180019867141 34.71541811615029, 33.27229119862531 34.709545116144824))) +EGY Egypt MULTIPOLYGON (((32.14155419757222 31.087318112771356, 32.13750019756844 31.09332711277696, 32.19200919761923 31.124854112806318, 32.23004519765465 31.103264112786206, 32.25300919767602 31.107482112790137, 32.27979119770097 31.1243001128058, 32.28810919770871 31.16897311284741, 32.291109197711506 31.169445112847853, 32.29860919771849 31.209164112884835, 32.27437319769592 31.26673611293846, 32.256427197679216 31.269718112941234, 32.24750019767089 31.271109112942526, 32.21475419764042 31.282427112953073, 32.25628219767907 31.281718112952404, 32.27610919769754 31.27860911294951, 32.32958219774736 31.26930011294084, 32.40221819781499 31.21471811289001, 32.46249119787112 31.160554112839563, 32.48110919788846 31.142500112822745, 32.499791197905864 31.115973112798045, 32.55221819795469 31.071454112756584, 32.59934519799859 31.060145112746056, 32.66971819806412 31.051664112738152, 32.711800198103305 31.033536112721265, 32.781109198167854 31.046109112732978, 33.02860919839836 31.153891112833364, 33.11561819847941 31.19250011286931, 33.14971819851115 31.101664112784718, 33.14360919850546 31.058327112744365, 33.20610919856367 31.068054112753416, 33.25139119860586 31.089445112773348, 33.31036319866078 31.114373112796557, 33.41250019875588 31.15486411283426, 33.45437319879488 31.141736112822045, 33.4844451988229 31.127500112808775, 33.529582198864944 31.117500112799462, 33.584163198915775 31.11443611279661, 33.6041631989344 31.113609112795842, 33.63666319896467 31.115554112797653, 33.67304519899855 31.12000011280179, 33.743891199064535 31.133327112814214, 33.806663199122994 31.148891112828707, 33.871382199183245 31.165273112843963, 33.93193619923966 31.182218112859744, 33.98527319928934 31.201382112877596, 34.04693619934676 31.225691112900236, 34.10805419940368 31.252773112925453, 34.209718199498354 31.31652711298483, 34.216663199504836 31.323327112991166, 34.23916319952579 31.294718112964517, 34.26758219955224 31.21654511289171, 34.287500199570786 31.162773112841634, 34.401382199676846 30.859445112559143, 34.48943619975887 30.69110911240236, 34.55888219982353 30.486109112211437, 34.543327199809056 30.43471811216358, 34.54527319981088 30.40694511213772, 34.614436199875286 30.36500011209864, 34.723345199976706 30.089345111841922, 34.75360920000489 29.991109111750433, 34.847773200092604 29.740836111517353, 34.87277320011589 29.65082711143353, 34.87389120011693 29.630836111414908, 34.866391200109945 29.60666411139239, 34.87778220012055 29.532500111323316, 34.90380020014479 29.486709111280675, 34.88290920012531 29.484509111278626, 34.85874520010282 29.472218111267182, 34.76138220001212 29.334718111139125, 34.74416319999611 29.29138211109877, 34.68999119994564 29.135554110953635, 34.665554199922894 29.039164110863865, 34.622491199882774 28.839300110677726, 34.62250019988278 28.759445110603366, 34.62742719988739 28.73541811058098, 34.60527319986676 28.69166411054023, 34.58554519984838 28.66221811051281, 34.54860919981397 28.605000110459514, 34.52471819979172 28.56194511041943, 34.456663199728354 28.435273110301452, 34.409163199684116 28.31874511019292, 34.41416319968877 28.230418110110662, 34.43010019970362 28.200900110083168, 34.4516631997237 28.17416411005827, 34.44610919971851 28.021109109915727, 34.44193619971463 27.996945109893232, 34.43110919970454 27.974445109872278, 34.327218199607785 27.86889110977397, 34.294163199577014 27.85444510976052, 34.27221819955656 27.818054109726617, 34.258891199544166 27.79027310970075, 34.2558271995413 27.76471810967695, 34.25443619954001 27.728609109643315, 34.21638219950455 27.765273109677466, 34.18793619947806 27.787145109697832, 34.134163199428 27.795827109705925, 33.973054199277954 27.887773109791553, 33.82555419914058 27.97500010987278, 33.80554519912195 27.988891109885728, 33.763327199082624 28.021945109916516, 33.71249119903527 28.081664109972124, 33.626936198955605 28.19333611007613, 33.599163198929745 28.23943611011906, 33.56340019889643 28.29471811017055, 33.520482198856456 28.313264110187816, 33.43388219877579 28.36083611023213, 33.411382198754836 28.380000110249966, 33.3061091986568 28.485000110347755, 33.28694519863896 28.50500011036638, 33.24277319859783 28.554445110412445, 33.221109198577636 28.608054110462362, 33.19958219855761 28.662291110512882, 33.16777319852798 28.861109110698038, 33.165836198526165 28.95332711078393, 33.16721819852745 28.97430911080346, 33.17256319853243 28.995064110822796, 32.94874519832399 29.206809111019993, 32.92889119830551 29.209854111022835, 32.890827198270046 29.233191111044576, 32.741391198130884 29.454718111250884, 32.72221819811301 29.510827111303144, 32.689718198082744 29.616391111401455, 32.68311819807661 29.669300111450724, 32.694363198087075 29.72347311150118, 32.674718198068774 29.758327111533646, 32.64902719804485 29.788354111561603, 32.60790919800655 29.823609111594436, 32.57666319797747 29.920000111684203, 32.5777731979785 29.951382111713443, 32.575618197976496 30.002709111761234, 32.563254197964966 29.956836111718516, 32.47763619788523 29.936800111699853, 32.4590271978679 29.89750011166325, 32.481945197889246 29.86930011163699, 32.446936197856644 29.79527311156805, 32.40916319782147 29.755554111531055, 32.36083619777645 29.683054111463534, 32.34082719775782 29.594864111381398, 32.36825419778336 29.544509111334506, 32.40110919781395 29.511945111304186, 32.437818197848145 29.49216411128576, 32.56721819796866 29.382500111183617, 32.59638219799581 29.340554111144556, 32.6308271980279 29.23652711104768, 32.646945198042914 29.173609110989076, 32.65759119805284 29.11946411093865, 32.66221819805713 29.113891110933466, 32.66263619805753 29.093682110914642, 32.634227198031056 29.06124511088443, 32.618745198016654 28.98402711081252, 32.68860919808171 28.86777311070425, 32.73693619812673 28.81610911065613, 32.7575181981459 28.80130911064235, 32.78860919817484 28.79180011063349, 32.80416319818934 28.776945110619664, 32.82000019820407 28.748054110592747, 32.829436198212875 28.72444511057077, 32.837218198220114 28.701664110549544, 32.86083619824211 28.626391110479446, 32.93527319831145 28.545136110403774, 32.99916319837095 28.484445110347252, 33.01582719838646 28.459718110324218, 33.07666319844313 28.367773110238588, 33.12610919848916 28.2836091101602, 33.17916319853859 28.22888211010924, 33.225000198581256 28.182218110065776, 33.3344451986832 28.075000109965913, 33.41082719875433 28.02916410992323, 33.432500198774505 28.0186091099134, 33.46944519880893 27.996391109892713, 33.48513619882354 27.98389110988107, 33.51666319885291 27.944445109844338, 33.558882198892206 27.883054109787153, 33.5711091989036 27.854718109760768, 33.581663198913446 27.816391109725075, 33.57971819891162 27.790554109701006, 33.55082719888472 27.812218109721186, 33.51527319885162 27.83097310973865, 33.49471819883246 27.837354109744595, 33.47471819881383 27.82750010973541, 33.49471819883246 27.64389110956442, 33.56110019889428 27.568336109494055, 33.6330451989613 27.49000010942109, 33.6680541989939 27.424236109359853, 33.68416319900891 27.37257310931173, 33.68888219901328 27.34055410928191, 33.70416319902753 27.320000109262764, 33.719991199042255 27.30610910924983, 33.73805419905909 27.29389110923846, 33.77082719908961 27.28250010922784, 33.828745199143555 27.255409109202617, 33.83735419915158 27.236664109185156, 33.838327199152474 27.199445109150503, 33.8299911991447 27.16110910911479, 33.835691199150006 27.11763610907431, 33.943473199250406 26.935691108904862, 33.947773199254414 26.818882108796075, 33.93235419924005 26.6841641086706, 33.938327199245606 26.655273108643698, 33.95374519925997 26.641109108630502, 33.99055419929425 26.630973108621063, 34.00999119931234 26.61389110860516, 34.07443619937237 26.511664108509947, 34.14305419943628 26.372218108380082, 34.18193619947249 26.29971810831256, 34.20110919949033 26.25055410826677, 34.21416319950251 26.221664108239864, 34.22277319951053 26.202773108222274, 34.32416319960495 26.02610910805774, 34.43804519971101 25.845273107889327, 34.49040919975977 25.777773107826462, 34.50916319977725 25.76055410781042, 34.53124519979781 25.745418107796326, 34.55048219981572 25.72471810777705, 34.625273199885385 25.5811091076433, 34.63443619989391 25.562773107626228, 34.66916319992626 25.48721810755586, 34.77082720002093 25.284445107367006, 34.81944520006621 25.194445107283187, 34.84944520009415 25.140827107233264, 34.88027320012287 25.09610910719161, 34.914163200154434 25.045554107144525, 34.93639120017514 25.011109107112446, 34.98638220022167 24.92388210703122, 35.08832720031663 24.718191106839654, 35.14193620036656 24.541382106674988, 35.13860920036345 24.517500106652733, 35.22138220044053 24.422218106564003, 35.23499120045321 24.407218106550033, 35.29000020050444 24.36680910651239, 35.336936200548166 24.33250010648044, 35.38304520059111 24.290554106441377, 35.419445200625006 24.242773106396882, 35.4302732006351 24.225273106380584, 35.448054200651654 24.181945106340223, 35.48360020068475 24.150000106310472, 35.59916320079239 24.076664106242177, 35.70305420088914 24.015000106184743, 35.72681820091128 24.00458210617505, 35.75902720094126 23.982500106154475, 35.78305420096365 23.956945106130675, 35.81117320098983 23.907009106084175, 35.61250020080479 23.933191106108566, 35.55284520074923 23.96208210613547, 35.543045200740124 23.98430910615616, 35.52110920071968 23.98027310615241, 35.50443620070416 23.968054106141025, 35.48583620068683 23.942918106117617, 35.475827200677514 23.811945105995633, 35.500000200700015 23.74402710593239, 35.5142362007133 23.72006410591007, 35.5122182007114 23.671945105865248, 35.50388220070363 23.59305410579178, 35.49187320069245 23.494582105700076, 35.49916320069926 23.471382105678472, 35.54013620073741 23.410627105621884, 35.552491200748904 23.37000010558404, 35.552218200748655 23.33833610555456, 35.55499120075123 23.309445105527644, 35.56930020076456 23.238745105461803, 35.57889120077351 23.215827105440468, 35.60139120079447 23.179164105406315, 35.630718200821775 23.133073105363394, 35.64069120083104 23.115000105346553, 35.662500200851355 23.04110910527774, 35.66277320085163 23.012218105250838, 35.66889120085733 22.97069110521217, 35.742218200925606 22.872500105120707, 35.84485420102121 22.763745105019424, 35.86860920104331 22.749718105006366, 35.93889120110879 22.719718104978426, 36.01666320118122 22.690273104951004, 36.05750020121923 22.685836104946873, 36.15305420130824 22.665136104927598, 36.22901820137898 22.635418104899912, 36.27527320142207 22.589164104856835, 36.37221820151234 22.455273104732143, 36.398045201536405 22.405554104685834, 36.43943620157495 22.34889110463307, 36.465554201599275 22.31833610460461, 36.491527201623455 22.306527104593613, 36.54569120167389 22.299309104586882, 36.750273201864445 22.161664104458694, 36.80055420191127 22.123882104423515, 36.862782201969225 22.075836104378766, 36.88624520199107 22.05319110435768, 36.89569120199985 22.03416410433995, 36.89582720199999 22.007354104314985, 36.88846320199315 22.000109104308237, 36.88250020198757 22.001109104309165, 36.82193620193118 22.001109104309165, 36.72805420184375 21.99944510430761, 36.68832720180674 21.99833610430659, 36.54582720167403 21.998609104306837, 36.40860920154623 21.9988821043071, 36.29777320144302 21.999164104307354, 36.25638220140445 21.999718104307874, 36.02499120118895 21.9988821043071, 35.90943620108135 21.99833610430659, 35.78110920096182 21.996945104305283, 35.44500020064879 21.997773104306063, 35.354436200564464 21.999164104307354, 35.15360920037742 22.000554104308648, 34.98860920022375 22.001109104309165, 34.967636200204225 22.001109104309165, 34.94028220017876 22.001109104309165, 34.89249120013423 22.000554104308648, 34.704163199958856 21.997218104305546, 34.66389119992135 21.99610910430451, 34.346245199625514 21.99555410430399, 34.116663199411704 21.99610910430451, 34.0992821993955 21.996445104304826, 34.07443619937237 21.996945104305283, 33.954991199261116 21.9988821043071, 33.8650001991773 21.99944510430761, 33.78139119909946 21.999718104307874, 33.76027319907979 21.999718104307874, 33.73971819906063 21.999718104307874, 33.4618001988018 22.00027310430839, 33.35805419870519 22.00027310430839, 33.179591198538986 21.9994271043076, 33.166936198527196 21.9988821043071, 32.648045198043945 22.00194510430994, 32.521663197926244 22.00277310431072, 32.49389119790038 22.003054104310976, 32.47305419788097 22.003609104311494, 32.44444519785432 22.00416410431201, 32.38805419780181 22.00416410431201, 32.33971819775678 22.00416410431201, 31.9966631974373 22.00277310431072, 31.579163197048473 21.99944510430761, 31.495300196970362 21.99833610430659, 31.46027319693775 21.998191104306457, 31.466109196943165 22.03082710433685, 31.513818196987614 22.15985410445701, 31.508191196982352 22.189718104484825, 31.4790271969552 22.221391104514325, 31.448327196926613 22.232218104524406, 31.42166319690179 22.22721810451975, 31.39541819687733 22.211382104505006, 31.335000196821056 22.106109104406954, 31.320000196807086 22.080000104382634, 31.27430019676453 21.998745104306963, 31.207500196702313 21.99833610430659, 31.16527319666301 21.99833610430659, 30.748336196274693 21.999164104307354, 30.69110919622139 21.99944510430761, 30.598891196135526 22.00027310430839, 30.499163196042645 22.00082710430891, 30.46305419600901 22.00082710430891, 30.377500195929315 22.00082710430891, 30.27166319583077 22.00082710430891, 30.10110919567191 22.000554104308648, 29.61194519521635 21.99805410430632, 29.527218195137436 21.9975001043058, 29.25000019487925 21.99555410430399, 29.178054194812262 21.99555410430399, 29.156391194792093 21.99555410430399, 29.135273194772424 21.99555410430399, 29.11360919475223 21.99555410430399, 29.092782194732848 21.99555410430399, 29.070827194712393 21.99555410430399, 29.013336194658848 21.995827104304254, 28.596663194270803 21.99944510430761, 28.31916319401236 22.00277310431072, 28.261109193958276 22.003609104311494, 28.222773193922592 22.00332710431124, 27.724163193458224 21.99944510430761, 27.41221819316769 21.994445104302955, 27.386663193143903 21.994164104302698, 27.327218193088527 21.99610910430451, 27.26777319303318 21.99805410430632, 27.138054192912364 22.000554104308648, 27.093054192870454 22.00027310430839, 26.971663192757404 21.998609104306837, 26.914445192704108 21.996664104305026, 26.838054192632967 21.99528210430374, 26.67471819248084 21.99610910430451, 26.64860919245652 21.996391104304777, 26.339718192168846 21.999718104307874, 25.778609191646268 22.002500104310457, 25.407218191300387 21.999718104307874, 25.216391191122682 22.001109104309165, 25.099163191013503 22.00082710430891, 25.001418190922465 21.999691104307843, 25.001945190922953 22.046664104351592, 25.00140919092246 22.28666410457511, 25.000273190921405 23.58027310577988, 24.999445190920625 24.023891106193034, 24.998054190919333 24.34305410649027, 24.997218190918545 24.786664106903416, 24.996945190918296 24.994718107097185, 24.9975001909188 25.44277310751447, 24.998336190919588 25.970836108006267, 24.99916319092037 26.483891108484087, 25.000000190921128 26.56721810856169, 25.000273190921405 26.719718108703717, 25.00055419092166 26.941664108910416, 25.00015419092128 26.999445108964238, 25.000000190921128 27.080554109039767, 25.00082719092191 27.42750010936288, 25.0016631909227 27.607773109530783, 25.001227190922293 27.66632710958531, 25.001945190922953 27.76027310967281, 25.0022181909232 27.89889110980191, 25.001945190922953 28.00019110989625, 25.002500190923456 28.12500011001248, 25.001945190922953 28.27777311015477, 24.999445190920625 28.956945110787302, 24.997773190919077 29.24888211105919, 24.91166319083888 29.432782111230452, 24.897218190825413 29.46221811125787, 24.878400190807895 29.508473111300944, 24.88471819081377 29.585827111372993, 24.825000190758146 29.81694511158824, 24.831800190764483 29.83708211160699, 24.835827190768242 29.858745111627158, 24.833054190765665 29.881664111648504, 24.821109190754527 29.916382111680846, 24.810273190744454 29.94582711170827, 24.769163190706166 30.03416411179053, 24.72610919066605 30.119718111870213, 24.711527190652475 30.138054111887286, 24.706800190648067 30.159164111906946, 24.710000190651044 30.188891111934637, 24.72319119066333 30.225973111969168, 24.77194519070875 30.30389111204174, 24.8186091907522 30.36389111209762, 24.854445190785583 30.399445112130735, 24.876391190806032 30.42750011215685, 24.926182190852387 30.507500112231355, 24.97694519089967 30.634718112349844, 25.017500190937426 30.789236112493754, 24.995554190917005 30.838891112539997, 24.977009190899736 30.872154112570968, 24.91166319083888 31.015000112704, 24.90444519083215 31.034445112722125, 24.8691631907993 31.15916411283827, 24.868118190798327 31.370827113035403, 24.893609190822048 31.40277311306515, 24.96277319088648 31.445273113104733, 25.009163190929684 31.481109113138103, 25.047636190965505 31.522636113176787, 25.06082719097779 31.567500113218557, 25.07319119098929 31.585691113235512, 25.100273191014537 31.611391113259444, 25.129718191041945 31.63444511328092, 25.148054191059032 31.64610911329177, 25.151663191062397 31.64694511329256, 25.1522181910629 31.63513611328156, 25.1738911910831 31.54076411319366, 25.31444519121399 31.501454113157052, 25.400273191293934 31.501664113157247, 25.4811091913692 31.518609113173028, 25.5672181914494 31.541382113194246, 25.68444519155858 31.57750011322787, 25.811109191676536 31.610836113258927, 25.848054191710958 31.61721811326487, 25.88110919174173 31.62000011326745, 25.9472181918033 31.617773113265386, 25.985554191839014 31.61416411326202, 26.008609191860472 31.610554113258658, 26.09305419193913 31.591391113240817, 26.173336192013892 31.56305411321442, 26.309163192140403 31.527500113181304, 26.35110919217945 31.517773113172254, 26.373054192199902 31.51360911316837, 26.504445192322265 31.4986091131544, 26.6447181924529 31.48416411314095, 26.774436192573717 31.46055411311896, 26.89305419268419 31.433891113094134, 27.062773192842258 31.399164113061786, 27.16513619293758 31.379300113043286, 27.248336193015064 31.37527311303954, 27.279863193044434 31.377918113042, 27.323191193084767 31.376109113040314, 27.345418193105473 31.368891113033598, 27.35916319311829 31.328891112996345, 27.368191193126677 31.29569111296543, 27.377500193135347 31.27152711294292, 27.395273193151922 31.249718112922608, 27.41221819316769 31.23610911290993, 27.438891193192546 31.222773112897514, 27.45888219321114 31.21721811289234, 27.571109193315664 31.18860911286569, 27.655063193393858 31.17291811285108, 27.800763193529548 31.213191112888595, 27.844163193569983 31.24374511291704, 27.864582193589 31.230000112904236, 27.883609193606702 31.181391112858975, 27.89332719361576 31.139718112820162, 27.90263619362443 31.109718112792223, 27.92139119364191 31.098054112781355, 28.187773193889996 31.072773112757815, 28.273054193969415 31.068882112754196, 28.356663194047286 31.07360911275859, 28.40347319409088 31.08389111276817, 28.42971819411531 31.078891112763515, 28.560000194236636 31.032218112720045, 28.718327194384102 30.98805411267891, 28.75527319441852 30.97500011266675, 28.81506319447419 30.947709112641334, 28.8270821944854 30.92082711261631, 28.895345194548952 30.873536112572253, 28.98139119462911 30.839164112540246, 29.035000194679014 30.824164112526276, 29.069445194711108 30.821664112523948, 29.121391194759497 30.8213911125237, 29.14778219478407 30.823891112526027, 29.180000194814056 30.83027311253197, 29.225000194855966 30.842218112543094, 29.252500194881577 30.850273112550596, 29.337218194960485 30.87694511257544, 29.483327195096564 30.937773112632087, 29.525000195135362 30.961391112654084, 29.575273195182206 30.993609112684084, 29.598054195203417 31.008609112698053, 29.600554195205746 31.01110911270038, 29.634718195237554 31.034445112722125, 29.688327195287485 31.068054112753416, 29.745282195340536 31.10360911278653, 29.803891195395124 31.13555411281628, 29.999445195577238 31.273609112944854, 30.045827195620433 31.30721811297616, 30.064445195637774 31.320273112988318, 30.096009195667165 31.278382112949302, 30.143191195711097 31.221945112896748, 30.21305419577618 31.21291811288833, 30.28971819584757 31.237354112911092, 30.30028219585742 31.268891112940466, 30.301936195858957 31.335282113002293, 30.354445195907857 31.44832711310758, 30.389436195940448 31.441891113101576, 30.375409195927375 31.455554113114303, 30.3554451959088 31.502845113158344, 30.39194519594278 31.493609113149745, 30.411663195961154 31.47500011313241, 30.445273195992456 31.461109113119477, 30.479300196024127 31.4522181131112, 30.500000196043402 31.452354113111326, 30.574445196112748 31.466945113124922, 30.59721819613395 31.472218113129827, 30.691391196221673 31.49916411315492, 30.725554196253483 31.509582113164626, 30.770554196295393 31.525000113178976, 30.80704519632937 31.53855411319161, 30.845836196365497 31.54888211320123, 30.95610919646819 31.5756911132262, 30.70360919623303 31.46582711312388, 30.567773196106543 31.423573113084515, 30.544163196084554 31.393191113056233, 30.593882196130835 31.380273113044197, 30.743609196270285 31.408609113070582, 30.90250019641826 31.42027311308145, 30.96416319647571 31.44777311310706, 31.007218196515794 31.48027311313733, 31.100000196602196 31.490273113146642, 31.126454196626838 31.49666411315259, 31.107218196608926 31.545136113197742, 31.065554196570133 31.56527311321649, 31.033882196540617 31.570827113221668, 30.97784519648843 31.583536113233492, 31.01221819652045 31.597009113246045, 31.09832719660065 31.60166411325038, 31.133327196633246 31.59777311324676, 31.18832719668447 31.585000113234855, 31.225827196719393 31.57444511322504, 31.267918196758586 31.560827113212355, 31.33860919682442 31.534164113187515, 31.349636196834695 31.529564113183227, 31.433609196912897 31.48471811314147, 31.520973196994277 31.448609113107835, 31.556945197027773 31.442218113101887, 31.57110019704095 31.44194511310164, 31.598473197066454 31.443327113102924, 31.666945197130218 31.455827113114566, 31.755554197212746 31.479164113136292, 31.809163197262677 31.503609113159058, 31.84027319729165 31.52055411317484, 31.871700197320905 31.534918113188226, 31.893518197341223 31.539109113192126, 31.921482197367283 31.529882113183533, 31.950545197394348 31.505164113160504, 31.963191197406104 31.475691113133067, 31.985000197426416 31.445827113105253, 32.00916319744894 31.41638211307783, 32.041382197478924 31.382218113046008, 32.061800197497945 31.370273113034884, 32.08662719752107 31.36075411302602, 32.10346319753677 31.354027113019754, 32.20249119762897 31.290936112960992, 32.16721819759613 31.300554112969948, 32.1126361975453 31.32750011299504, 32.090000197524205 31.343609113010046, 32.07804519751309 31.356391113021957, 32.0642271975002 31.356318113021885, 32.01721819745643 31.380554113044454, 31.992363197433292 31.40263611306503, 31.977918197419825 31.433191113093486, 31.93333619737831 31.513473113168246, 31.909654197356247 31.52756411318137, 31.860554197310535 31.51450911316921, 31.777463197233146 31.27739111294838, 31.798227197252487 31.284691112955173, 31.836936197288537 31.246109112919243, 31.927291197372682 31.182009112859546, 31.955209197398688 31.201800112877976, 32.006100197446074 31.217500112892594, 32.02791819746639 31.215691112890923, 32.0430541974805 31.193609112870348, 32.03568219747362 31.174864112852887, 32.036082197474 31.143200112823408, 32.05193619748877 31.128882112810075, 32.07804519751309 31.082500112766866, 32.14306319757364 31.074164112759107, 32.146245197576604 31.078609112763246, 32.14155419757222 31.087318112771356))) +GEO Georgia MULTIPOLYGON (((42.59093620730397 41.57875412254228, 42.55790920727321 41.5018001224706, 42.48332720720376 41.43832712241149, 42.4722092071934 41.43332712240684, 42.45527320717764 41.43470912240812, 42.366936207095364 41.460273122431914, 42.31193620704414 41.476664122447204, 42.28013620701452 41.489573122459205, 42.17470920691633 41.5075001224759, 42.09777320684469 41.5075001224759, 41.979436206734476 41.518045122485745, 41.95846320671495 41.51680012248457, 41.91012720666993 41.48825412245799, 41.88304520664471 41.458318122430114, 41.83012720659542 41.43012712240386, 41.75971820652984 41.46860012243968, 41.72470920649724 41.49249112246193, 41.56915420635238 41.518045122485745, 41.53155420631734 41.52387312249115, 41.616100206396084 41.63443612259414, 41.646382206424306 41.64422712260324, 41.6838732064592 41.67165412262878, 41.728736206501 41.72332712267692, 41.773873206543016 41.81554512276281, 41.77609120654509 41.84192712278738, 41.774727206543815 41.88562712282808, 41.76081820653087 41.96137312289861, 41.659145206436165 42.12581812305177, 41.65290020643036 42.147627123072084, 41.65609120643333 42.175827123098344, 41.64666320642456 42.220264123139714, 41.632763206411596 42.27193612318786, 41.59290020637448 42.354427123264685, 41.54761820633232 42.405773123312485, 41.53638220632186 42.452764123356246, 41.52887320631484 42.4866451233878, 41.52554520631176 42.5211001234199, 41.525054206311296 42.55020012344701, 41.50054520628848 42.624982123516645, 41.48443620627347 42.66873612355741, 41.46998220626 42.69415412358106, 41.45610020624707 42.71429112359982, 41.44081820623285 42.72985412361433, 41.41956320621304 42.741654123625295, 41.37137320616816 42.7577641236403, 41.21560920602312 42.79957312367924, 41.19075420599995 42.796173123676084, 41.15908220597046 42.789782123670136, 41.09818220591373 42.84679112372322, 41.08498220590144 42.890545123763985, 41.07540920589253 42.92318212379436, 41.0261002058466 42.978182123845585, 41.00262720582475 42.98770012385447, 40.9616542057866 42.974991123842614, 40.93644520576311 42.97359112384132, 40.90887320573742 43.00193612386772, 40.87693620570769 43.04471812390756, 40.8599912056919 43.05915412392099, 40.83707320567058 43.06985412393098, 40.80207320563798 43.07860012393911, 40.72665420556774 43.08929112394907, 40.66137320550692 43.091927123951535, 40.36054520522677 43.16331812401802, 40.27192720514424 43.246800124095756, 40.254436205127945 43.27443612412151, 40.218436205094406 43.3164091241606, 40.10915420499265 43.35388212419548, 40.05138220493885 43.37027312421074, 40.002963204893746 43.379264124219134, 40.00916320489952 43.411936124249564, 40.021100204910624 43.44415412427955, 40.08123620496664 43.550973124379055, 40.09846320498269 43.56235412438966, 40.12665420500895 43.57221812439883, 40.169991205049286 43.581245124407246, 40.211373205087824 43.58471812441047, 40.253391205126974 43.58251812440841, 40.29471820516545 43.576100124402444, 40.32443620519314 43.569709124396496, 40.35270020521946 43.559436124386934, 40.4888822053463 43.51777312434811, 40.51859120537395 43.511654124342414, 40.54305420539674 43.508609124339586, 40.577209205428545 43.51229112434302, 40.60818220545738 43.528600124358206, 40.643109205489935 43.54388212437243, 40.68040020552465 43.54624512437465, 40.69597320553916 43.54301812437163, 40.718882205560504 43.51957312434979, 40.743736205583645 43.50693612433804, 40.810818205646115 43.48692712431941, 40.83416320566786 43.48332712431605, 40.863882205695546 43.47720912431035, 40.89026320572009 43.46540012429935, 40.96110020578607 43.42360912426042, 41.014018205835356 43.390682124229755, 41.040963205860464 43.37610012421618, 41.06888220588647 43.37290912421321, 41.126800205940384 43.38415412422367, 41.16805420597882 43.387218124226536, 41.1930452060021 43.38471812422421, 41.21360920602123 43.37887312421876, 41.43554520622794 43.296100124141674, 41.56499120634848 43.23220012408217, 41.59748220637874 43.22150912407221, 42.03110020678258 43.187482124040514, 42.11117320685716 43.19728212404965, 42.16915420691117 43.230954124080995, 42.18901820692966 43.23638212408605, 42.270818207005846 43.23804512408762, 42.36388220709253 43.237491124087086, 42.379845207107394 43.23901812408852, 42.42415420714866 43.23846412408798, 42.460263207182265 43.229982124080095, 42.48388220720429 43.21942712407028, 42.532973207249995 43.181927124035354, 42.61943620733052 43.14540912400133, 42.64581820735509 43.14471812400069, 42.66999120737759 43.15929112401426, 42.694991207400875 43.18026412403378, 42.76943620747022 43.185818124038974, 42.8552002075501 43.177764124031455, 42.94886320763732 43.1216541239792, 43.0104732076947 43.06366412392521, 43.139291207814665 42.96679112383498, 43.18387320785618 42.944427123814165, 43.20721820787793 42.934018123804464, 43.377763208036754 42.900536123773264, 43.392891208050855 42.900127123772904, 43.447200208101435 42.889154123762665, 43.53249120818086 42.86831812374328, 43.560545208207 42.8608271237363, 43.597763208241645 42.84651812372297, 43.62151820826378 42.83318212371054, 43.64117320828208 42.809991123688945, 43.6708272083097 42.791100123671356, 43.70471820834126 42.78081812366179, 43.7563822083894 42.77582712365714, 43.82915420845717 42.74936412363249, 43.833945208461614 42.729227123613725, 43.80610020843568 42.702209123588574, 43.762773208395345 42.67304512356142, 43.7396632083738 42.64957312353954, 43.77728220840885 42.60401812349713, 43.91193620853426 42.58331812347785, 44.19520020879807 42.627054123518576, 44.22318220882411 42.63846412352919, 44.241100208840805 42.655954123545484, 44.36942720896033 42.70804512359402, 44.499718209081664 42.750827123633854, 44.52720920910727 42.756654123639265, 44.558045209136 42.75971812364213, 44.59388220916938 42.75832712364084, 44.62943620920248 42.752218123635146, 44.63826320921069 42.74880912363196, 44.6488822092206 42.748600123631775, 44.678182209247865 42.74179112362543, 44.705273209273116 42.72720912361186, 44.75096320931567 42.69290912357991, 44.76554520932925 42.67053612355906, 44.80832720936908 42.66526412355415, 44.85957320941682 42.74679112363009, 44.89374520944864 42.76166412364395, 44.93110020948342 42.76110912364342, 44.954991209505664 42.75040912363346, 44.97429120952364 42.73693612362092, 45.00999120955689 42.71456412360007, 45.04582720959027 42.696091123582875, 45.066163209609215 42.69352712358048, 45.091473209632795 42.6974181235841, 45.120273209659615 42.70693612359298, 45.14304520968082 42.70860012359452, 45.165118209701376 42.70332712358962, 45.212209209745225 42.676100123564254, 45.241936209772916 42.65082712354072, 45.31942720984509 42.57804512347295, 45.33360920985828 42.55873612345496, 45.3422092098663 42.54068212343813, 45.36763620988998 42.52720912342559, 45.432209209950116 42.53749112343516, 45.488182210002236 42.54763612344462, 45.52692721003834 42.550818123447584, 45.55277321006241 42.55026412344705, 45.57610021008412 42.54610012344318, 45.70053621020003 42.51610912341525, 45.72762721022525 42.50485412340478, 45.750827210246854 42.48775412338884, 45.76027321025566 42.477909123379675, 45.75762721025319 42.46526412336789, 45.70750021020649 42.35610012326623, 45.68970921018993 42.31915412323181, 45.650682210153576 42.25193612316923, 45.63797321014175 42.22019112313964, 45.65512721015773 42.19999112312084, 45.986927210466746 42.02860012296122, 46.05415421052936 42.02499112295786, 46.2392272107017 42.00096412293547, 46.40011821085156 41.9380451228769, 46.4258272108755 41.92262712286254, 46.446382210894654 41.90442712284559, 46.45175421089965 41.89705412283871, 46.43582721088481 41.861800122805874, 46.41470921086514 41.831800122777935, 46.35054521080539 41.77331812272348, 46.32478221078139 41.756454122707765, 46.29081821074976 41.75777312270898, 46.2563822107177 41.76457312271532, 46.23046321069356 41.762473122713374, 46.20970921067422 41.74665412269863, 46.198045210663366 41.72499112267846, 46.194427210659995 41.69804512265338, 46.196091210661535 41.67749112263422, 46.21610021068017 41.62498212258532, 46.23332721069622 41.59859112256075, 46.33193621078806 41.48346412245351, 46.50263621094703 41.3962361223723, 46.55303621099398 41.386936122363636, 46.59331821103149 41.37943612235665, 46.62109121105735 41.36500012234319, 46.68963621112118 41.3173451222988, 46.71081821114092 41.258327122243855, 46.697200211128234 41.21165412220037, 46.6666542110998 41.150545122143484, 46.622491211058644 41.10054512209692, 46.51470921095827 41.04804512204802, 46.492763210937824 41.0518001220515, 46.37831821083125 41.104154122100255, 46.35970921081392 41.11693612211218, 46.340827210796334 41.12999112212432, 46.29415421075288 41.16276412215484, 46.27400921073411 41.178318122169344, 46.239991210702414 41.20470912219392, 46.135609210605224 41.20255412219191, 46.091518210564146 41.17887312216985, 46.062200210536844 41.171927122163396, 46.03957321051578 41.17027312216183, 45.996936210476065 41.17360912216495, 45.96610021044734 41.179154122170104, 45.92249121040672 41.18915412217942, 45.89554521038164 41.19749112218719, 45.86970921035757 41.206091122195204, 45.85081821033998 41.21277312220141, 45.80457321029692 41.230400122217844, 45.74804521024427 41.26027312224565, 45.71117321020992 41.28721812227076, 45.7129732102116 41.31179112229364, 45.71692721021529 41.34859112232792, 45.61110921011672 41.381927122358974, 45.341591209865726 41.46096412243256, 45.3066542098332 41.4611001224327, 45.28540020981339 41.45720912242908, 45.260963209790646 41.4492911224217, 45.186100209720905 41.40498212238043, 45.141373209679244 41.37665412235404, 45.05138220959546 41.316373122297904, 45.022945209568974 41.29705412227992, 44.978600209527656 41.27026412225496, 44.86970920942625 41.21664512220502, 44.84887320940683 41.2130541222017, 44.82471820938434 41.21249112220116, 44.728600209294825 41.2122091222009, 44.566236209143625 41.185264122175795, 44.484154209067185 41.18776412217812, 44.42999120901672 41.19221812218228, 44.340545208933435 41.21249112220116, 44.24887320884804 41.2235911222115, 44.172700208777115 41.19686412218661, 44.14470920875104 41.184991122175546, 44.12276320873059 41.18192712217271, 43.99276320860952 41.16414512215613, 43.892491208516134 41.165409122157314, 43.85651820848264 41.1601271221524, 43.8336092084613 41.14554512213883, 43.79137320842196 41.118664122113785, 43.75624520838926 41.112627122108165, 43.73442720836894 41.11360012210906, 43.63750020827865 41.12304512211787, 43.59970920824347 41.129718122124075, 43.57013620821593 41.135545122129514, 43.546391208193825 41.13499112212898, 43.46077320811406 41.11296412210848, 43.47436320812673 41.137982122131774, 43.455482208109146 41.16804512215978, 43.4299912080854 41.183464122174115, 43.37846320803743 41.20166412219109, 43.34970920801064 41.20193612219134, 43.2336002079025 41.19027312218046, 43.12638220780266 41.32000012230128, 43.03971820772193 41.37416412235174, 43.01610920769994 41.393327122369584, 42.892773207585094 41.5069451224754, 42.83101820752756 41.582418122545675, 42.68139120738823 41.59471812255714, 42.65166320736054 41.59276412255531, 42.604163207316304 41.58471812254783, 42.59093620730397 41.57875412254228))) +GRC Greece MULTIPOLYGON (((21.0830451872732 39.0566641201934, 21.045273187238024 39.013327120153036, 20.820827187028982 39.11360912024642, 20.774718186986036 39.08527312022002, 20.75750018696999 39.02055412015977, 20.827636187035324 38.9648541201079, 20.73332718694749 38.95340012009723, 20.705063186921166 38.991382120132585, 20.699300186915792 39.05402712019094, 20.53444518676227 39.18582712031369, 20.473609186705602 39.27471812039647, 20.345973186586747 39.2880541204089, 20.295827186540038 39.321800120440315, 20.214718186464495 39.43888212054935, 20.24528218649297 39.44138212055168, 20.173818186426416 39.628745120726194, 20.010027186273874 39.691200120784345, 20.220000186469406 39.64735412074353, 20.318091186560764 39.7340911208243, 20.294445186538752 39.80749112089265, 20.378609186617126 39.78805412087456, 20.413327186649468 39.820136120904436, 20.337218186578582 39.9231911210004, 20.315418186558276 39.9918001210643, 20.45000018668361 40.07249112113945, 20.55582718678218 40.066382121133756, 20.667082186885807 40.09624512116159, 20.721245186936244 40.22513612128162, 20.714300186929762 40.27010012132348, 20.75860918697103 40.31194512136247, 20.791927187002074 40.431545121473846, 20.83333618704063 40.46221812150242, 20.949582187148906 40.46964512150933, 21.042082187235053 40.564027121597235, 21.051454187243763 40.674445121700074, 20.98389118718086 40.79305412181054, 20.983491187180476 40.855891121869064, 21.34986318752169 40.87319112188516, 21.41013618757782 40.91388212192305, 21.528400187687964 40.90783612191743, 21.60000018775463 40.87277312188476, 21.786245187928102 40.93082712193885, 21.910827188044124 41.06558212206434, 21.916109188049035 41.09527312209198, 21.97708218810584 41.13180012212601, 22.259582188368938 41.17097312216251, 22.34332718844692 41.13443612212848, 22.586736188673626 41.1198541221149, 22.737745188814245 41.15610912214865, 22.762036188836873 41.306636122288836, 22.80847318888013 41.34777312232714, 23.185136189230917 41.323745122304786, 23.287145189325912 41.40416412237968, 23.4405541894688 41.40943612238459, 23.63347318964847 41.37777312235508, 23.796391189800204 41.43666412240995, 23.976663189968093 41.44082712241382, 24.06639119005166 41.4852731224552, 24.064027190049444 41.52172712248915, 24.093191190076595 41.54826412251387, 24.199991190176064 41.5437821225097, 24.258191190230264 41.56958212253372, 24.306245190275035 41.547500122513156, 24.466109190423907 41.551936122517304, 24.565973190516928 41.49638212246555, 24.609300190557263 41.43256412240612, 24.809445190743673 41.352218122331294, 24.818473190752087 41.40374512237929, 24.901391190829315 41.411945122386925, 25.06119119097812 41.36257312234093, 25.282354191184112 41.24304512222963, 25.561245191443845 41.3193731223007, 25.8141631916794 41.33610012231628, 25.883882191744306 41.30943612229146, 26.140000191982836 41.35471812233362, 26.19805419203692 41.43943612241253, 26.182773192022694 41.540127122506306, 26.129782191973334 41.63061812259056, 26.101100191946614 41.62804512258819, 26.068600191916346 41.66027312261818, 26.06596319191391 41.69165412264741, 26.077636191924768 41.714300122668504, 26.172500192013104 41.74777312269967, 26.271109192104944 41.71290912266721, 26.361100192188758 41.71105412266547, 26.57027319238358 41.61138212257265, 26.604445192415398 41.54610012251186, 26.636382192445126 41.41346412238832, 26.624718192434273 41.34388212232352, 26.32500019215513 41.23470912222186, 26.32389119215412 41.0930361220899, 26.372982192199828 41.027354122028754, 26.360409192188115 40.953882121960305, 26.213609192051393 40.87720912188891, 26.120200191964415 40.747700121768304, 26.090545191936798 40.736109121757494, 26.044718191894106 40.73582712175724, 26.022782191873688 40.82971812184468, 25.719991191591674 40.84583612185969, 25.419436191311775 40.905264121915025, 25.351945191248916 40.93887312194633, 25.17639119108543 40.9419361219492, 25.133954191045888 40.96821812197368, 25.163609191073505 40.99165412199548, 25.141800191053193 41.01033612201289, 25.037700190956258 41.004554122007505, 24.80134519073613 40.85196412186539, 24.62645419057324 40.861173121873975, 24.564582190515637 40.95061812195726, 24.39430019035703 40.935554121943255, 24.317354190285386 40.87652712188827, 24.31360919028188 40.838609121852954, 24.09041819007402 40.7176361217403, 23.991800189982172 40.7290271217509, 23.841391189842113 40.7868001218047, 23.722009189730926 40.744645121765444, 23.689373189700518 40.679436121704725, 23.795000189798884 40.583054121614964, 23.827009189828715 40.46131812150159, 23.882982189880835 40.40027312144471, 24.17555419015332 40.34985412139778, 24.38152719034514 40.18208212124151, 24.394091190356846 40.14801812120979, 24.30971819027826 40.119373121183116, 24.162500190141145 40.27853612133134, 24.04944519003587 40.29291812134474, 23.930554189925147 40.36124512140839, 23.841391189842113 40.3722181214186, 23.729718189738094 40.351245121399074, 23.691109189702132 40.29777312134925, 23.724718189733437 40.240827121296235, 23.787427189791856 40.19221812125096, 23.908054189904192 40.1634731212242, 23.990973189981418 40.11250012117671, 24.014373190003198 40.013954121084936, 23.98853618997913 39.95263612102784, 23.932218189926687 39.94305412101892, 23.82694518982865 40.02555412109575, 23.671109189683506 40.21832712127528, 23.401036189431977 40.27985412133259, 23.332154189367827 40.20996412126749, 23.368054189401278 40.143882121205934, 23.504854189528686 40.02888212109883, 23.67555418968766 39.97138212104528, 23.74666318975389 39.925273121002334, 23.604027189621036 39.92069112099807, 23.379445189411882 39.9927731210652, 23.294582189332857 40.235836121291584, 22.89943618896484 40.396664121441376, 22.843609188912836 40.47500012151431, 22.977045189037113 40.5491641215834, 22.944927189007217 40.62651812165544, 22.90145418896671 40.64443612167213, 22.815136188886328 40.56874512160164, 22.585209188672195 40.465000121505, 22.630000188713893 40.383045121428694, 22.548191188637702 40.149373121211056, 22.595000188681297 40.01221812108332, 22.702845188781737 39.95790912103274, 22.856873188925192 39.781391120868335, 22.92694518899046 39.589027120689195, 23.263191189303598 39.32638212044458, 23.34368218937857 39.18180012030993, 23.32055418935704 39.15124512028149, 23.20610918925044 39.10527312023865, 23.054863189109597 39.097909120231805, 23.07715418913034 39.14249112027332, 23.11410018916476 39.14221812027307, 23.104100189155446 39.10710912024038, 23.212082189256023 39.152218120282384, 23.221527189264805 39.182291120310396, 23.121245189171418 39.305273120424914, 22.940827189003386 39.359364120475306, 22.823891188894493 39.26610912038845, 22.82360918889421 39.212218120338264, 22.8554821889239 39.1570821202869, 22.876391188943387 39.17513612030373, 22.969582189030177 39.11305412024592, 22.995000189053826 39.04277312018044, 23.07277318912628 39.036945120175034, 22.937773189000552 38.92860012007412, 22.83305418890302 38.891109120039204, 22.750209188825863 38.87069112002018, 22.61444518869942 38.909027120055896, 22.523854188615047 38.8660731200159, 22.581945188669152 38.82540911997802, 22.713336188791516 38.823054119975836, 22.764300188838973 38.783745119939226, 22.953609189015282 38.75166411990935, 23.066245189120195 38.68790911984996, 23.111382189162214 38.629027119795126, 23.18847318923403 38.65561811981988, 23.317500189354178 38.644027119809095, 23.336736189372118 38.60840011977592, 23.30555418934307 38.567500119737815, 23.3369451893723 38.53708211970948, 23.399436189430503 38.507773119682184, 23.534718189556486 38.49944511967445, 23.67555418968766 38.34860911953396, 23.926663189921527 38.29500011948403, 24.074027190058757 38.1950001193909, 24.005554189994996 38.0677731192724, 24.03055419001828 37.87250011909056, 24.090000190073624 37.776664119001296, 24.06583619005113 37.68319111891425, 24.033954190021433 37.65284511888598, 23.94763618994105 37.67193611890376, 23.88750018988503 37.78277311900699, 23.77443618977975 37.83444511905512, 23.562845189582674 37.98051811919116, 23.594791189612437 38.02847311923583, 23.511663189535028 38.039300119245894, 23.415554189445515 37.98597311919623, 23.236800189279023 37.975409119186395, 23.10916318916017 37.91527311913039, 23.0188911890761 37.91971811913453, 22.99180018905085 37.88235411909973, 23.010254189068036 37.8467821190666, 23.10360918915498 37.84166411906183, 23.14860918919689 37.75804511898396, 23.165900189213005 37.614991118850725, 23.331182189366928 37.53283611877421, 23.362563189396155 37.551527118791626, 23.32790918936388 37.60555411884194, 23.40582718943645 37.58833611882591, 23.421800189451318 37.52722711876899, 23.52139118954409 37.46000011870639, 23.517082189540076 37.43270911868096, 23.270554189310474 37.400836118651284, 23.23069118927333 37.37889111863085, 23.179718189225866 37.29040911854844, 23.06832718912213 37.35582711860937, 23.071800189125355 37.394718118645585, 23.096382189148244 37.391245118642345, 23.136527189185642 37.42763611867625, 23.128891189178546 37.448054118695254, 22.77735418885115 37.59013611882759, 22.725554188802903 37.563400118802676, 22.758609188833674 37.408054118658, 22.90440918896948 37.17804511844379, 22.907427188972292 37.11360911838378, 22.957218189018647 37.1161001183861, 23.006382189064425 37.024718118300996, 23.014582189072087 36.93610911821847, 23.113818189164505 36.77054511806428, 23.028954189085454 36.72367311802063, 23.03513618909122 36.62999111793337, 23.201454189246107 36.44020011775662, 23.0900001891423 36.43999111775642, 22.969373189029966 36.52180011783261, 22.782082188855554 36.799300118091054, 22.63250018871622 36.80360911809507, 22.57277318866062 36.7738911180674, 22.48097318857512 36.599445117904935, 22.507773188600083 36.45388211776937, 22.4888911885825 36.38610911770624, 22.39750018849736 36.473882117787994, 22.356109188458817 36.69943611799805, 22.296945188403726 36.81499111810567, 22.243609188354043 36.873327118160006, 22.18555418829999 36.89277311817811, 22.146382188263487 36.95082711823218, 22.152463188269166 37.01853611829523, 22.1208271882397 37.026664118302804, 22.029163188154342 37.024718118300996, 21.929718188061713 36.97401811825378, 21.924236188056625 36.85666411814448, 21.961663188091478 36.79804511808989, 21.875136188010885 36.72353611802049, 21.82402718796328 36.797082118088994, 21.764163187907542 36.79055411808291, 21.70360918785113 36.81666411810723, 21.68729118783594 36.88381811816977, 21.710273187857354 36.94464511822642, 21.58110918773704 37.063882118337474, 21.565345187722357 37.15506411842239, 21.583054187738867 37.20270911846676, 21.672363187822043 37.27096411853033, 21.69582718784389 37.31666411857289, 21.649718187800943 37.441936118689554, 21.576391187732668 37.53444511877572, 21.401109187569404 37.65166411888488, 21.28527318746154 37.78388211900803, 21.110763187299 37.84409111906409, 21.11097318729921 37.885691119102844, 21.131036187317875 37.9370821191507, 21.184163187367375 37.9290271191432, 21.315827187489987 38.02888211923619, 21.367218187537844 38.11416411931563, 21.384445187553894 38.21139111940616, 21.53471818769384 38.16054511935883, 21.641663187793455 38.15888211935726, 21.719027187865493 38.22166411941575, 21.776800187919292 38.30597311949427, 21.853609187990827 38.339582119525545, 21.958609188088616 38.32943611951612, 22.22000018833205 38.18360911938029, 22.652218188734594 38.076109119280176, 22.862773188930703 37.93958211915303, 22.95562718901718 37.94901811916182, 22.976382189036485 37.979927119190606, 22.86003618892815 38.033082119240106, 22.88138218894801 38.050000119255856, 22.955482189017033 38.080482119284255, 23.05236318910727 38.05790911926323, 23.1688911892158 38.07443611927863, 23.215763189259434 38.100345119302744, 23.224645189267704 38.15340011935217, 23.118327189168696 38.210409119405256, 22.96694518902771 38.21360911940823, 22.943054189005466 38.20805411940307, 22.944445189006757 38.18694511938341, 22.773473188847532 38.238882119431764, 22.68971818876952 38.32360911951068, 22.533882188624375 38.34499111953059, 22.462354188557782 38.42597311960603, 22.40860918850771 38.446036119624694, 22.374300188475758 38.33457311952088, 22.193882188307725 38.33721811952336, 22.04277318816702 38.39804511958002, 21.947773188078543 38.40943611959062, 21.71305418785994 38.353054119538115, 21.6366631877888 38.35416411953915, 21.54000018769875 38.31596411950355, 21.35805418752932 38.43291811961248, 21.266945187444463 38.33916411952518, 21.16416318734875 38.30006411948875, 21.10874518729713 38.35555411954044, 21.13853618732486 38.39340011957569, 21.102773187291575 38.429445119609255, 21.08639118727632 38.50305411967781, 20.987909187184584 38.67110911983431, 20.901109187103742 38.73194511989098, 20.768818186980553 38.75992711991702, 20.732773186946986 38.804436119958496, 20.749718186962752 38.90971812005654, 20.781109186991984 38.93166412007699, 20.970273187168175 38.94193612008655, 21.031109187224814 38.921318120067355, 21.026154187220214 38.89957312004708, 21.08513618727514 38.864027120013986, 21.16450918734907 38.98208212012392, 21.0830451872732 39.0566641201934)), ((23.681945189693607 35.224445116624366, 23.594236189611934 35.2322181166316, 23.520554189543304 35.295000116690076, 23.59389118961161 35.592218116966876, 23.608536189625227 35.60874511698226, 23.615409189631634 35.52305411690246, 23.65548218966896 35.497982116879115, 23.718954189728066 35.50888211688927, 23.731945189740173 35.54610911692393, 23.71076318972044 35.652500117023024, 23.741873189749413 35.68631811705451, 23.771773189777264 35.661209117031134, 23.791036189795193 35.546591116924375, 23.848536189848744 35.5229821169024, 23.995554189985683 35.51554511689547, 24.124373190105644 35.600482116974575, 24.176391190154106 35.58889111696378, 24.204927190180683 35.53985411691811, 24.185554190162634 35.50916411688952, 24.10706319008952 35.492218116873744, 24.272291190243408 35.363882116754226, 24.327082190294448 35.351382116742585, 24.78889119072454 35.408882116796136, 24.96333619088699 35.404445116792004, 25.04569119096368 35.37922711676852, 25.054373190971774 35.35027311674155, 25.379509191274593 35.333882116726286, 25.45430019134423 35.292082116687354, 25.660418191536195 35.342500116734314, 25.765727191634284 35.329964116722635, 25.734300191605 35.29992711669466, 25.728645191599753 35.261627116658985, 25.750300191619914 35.270218116666996, 25.7105541915829 35.17277311657624, 25.78402719165132 35.1138911165214, 26.030973191881316 35.22492711662481, 26.11194519195672 35.205273116606506, 26.301109192132884 35.28305411667894, 26.275000192108564 35.08749111649681, 26.239718192075713 35.03666411644947, 26.13582719197896 34.99729111641281, 25.98750019184081 35.03305411644611, 25.591391191471928 35.00777311642257, 25.508891191395094 34.98166411639825, 25.335282191233404 34.984991116401346, 25.016945190936923 34.93082711635091, 24.754300190692305 34.94624511636526, 24.757636190695422 35.039854116452446, 24.72305419066322 35.09055411649966, 24.563191190514317 35.10069111650911, 24.531109190484443 35.13916411654493, 24.39250019035535 35.188882116591245, 24.035691190023044 35.19283611659492, 23.821800189823847 35.24652711664493, 23.681945189693607 35.224445116624366)), ((24.05000019003637 38.365827119550005, 24.05534519004135 38.38155411956464, 23.997363189987368 38.4018001195835, 23.80582718980898 38.389164119571745, 23.642218189656603 38.4188821195994, 23.620691189636545 38.46840011964554, 23.635827189650655 38.50964511968394, 23.597082189614582 38.57124511974132, 23.198054189242953 38.83180011998397, 23.15006318919825 38.84937312000034, 22.83284518890281 38.82912711998148, 22.846945188915953 38.86208212001216, 23.1297181891793 39.00332712014372, 23.304445189342033 39.03728212017535, 23.373500189406343 38.9991271201398, 23.46666318949312 38.84791811999898, 23.59194518960979 38.7647181199215, 23.84666318984702 38.68221811984466, 24.15389119013315 38.64666411981156, 24.187218190164174 38.39249111957483, 24.258263190230338 38.217282119411664, 24.336800190303478 38.15943611935779, 24.561245190512523 38.14430011934368, 24.59069119053993 38.06221811926724, 24.564163190515245 37.987218119197394, 24.512918190467502 37.95492711916732, 24.38721819035044 37.99360911920334, 24.148609190128212 38.21527311940977, 24.05000019003637 38.365827119550005)), ((26.4199911922436 39.325827120444075, 26.379582192205987 39.26860012039077, 26.474718192294574 39.219436120344994, 26.60666319241747 39.05331812019028, 26.615691192425857 39.01388212015354, 26.521800192338418 38.97331812011578, 26.32389119215412 38.977773120119906, 26.187491192027068 39.017218120156656, 26.088473191934867 39.074373120209884, 26.276936192110384 39.15638212028625, 26.291309192123776 39.18263612031072, 26.2570821920919 39.203464120330096, 26.172500192013104 39.19470912032196, 26.11097319195582 39.11096412024395, 26.065409191913375 39.084573120219375, 25.890000191750005 39.141109120272034, 25.834854191698668 39.180064120308316, 25.856936191719228 39.25277312037602, 25.90777319176658 39.286945120407864, 25.981527191835255 39.27180012039375, 26.17353619201407 39.32720912044536, 26.178327192018543 39.37498212048985, 26.32389119215412 39.37443612048935, 26.4199911922436 39.325827120444075)), ((28.20721819390809 36.44249111775875, 28.238045193936813 36.43110911774815, 28.206945193907842 36.343600117666654, 28.1413911938468 36.21053611754273, 28.06360919377434 36.11192711745089, 27.956663193674757 36.04499111738855, 27.84110919356712 35.912627117265274, 27.784027193513964 35.89040911724459, 27.731245193464815 35.91305411726567, 27.740827193473734 36.10443611744391, 27.71971819345407 36.166100117501344, 27.804445193532985 36.26943611759758, 27.90916319363052 36.33971811766304, 28.20721819390809 36.44249111775875)), ((20.571109186796406 38.46804511964521, 20.68055418689835 38.27750011946773, 20.812636187021354 38.11492711931632, 20.793473187003514 38.06325411926821, 20.55778218678401 38.09055411929364, 20.34256318658356 38.17790911937499, 20.398609186635753 38.3255541195125, 20.480763186712267 38.30881811949692, 20.536391186764092 38.34471811953034, 20.54187318676918 38.470554119647545, 20.571109186796406 38.46804511964521)), ((26.014718191866166 38.14943611934848, 25.863327191725176 38.23984511943266, 25.871518191732804 38.26665411945763, 25.991663191844708 38.34388211952955, 25.94263619179904 38.457354119635255, 25.885900191746202 38.475273119651916, 25.82569119169011 38.54069111971285, 25.865827191727504 38.58500011975411, 26.00139119185377 38.60138211976937, 26.138609191981544 38.56499111973548, 26.159582192001096 38.54207311971413, 26.133473191976776 38.412918119593854, 26.160691192002105 38.3033271194918, 26.03555419188558 38.19193611938806, 26.014718191866166 38.14943611934848)), ((19.855000186129473 39.81832712090275, 19.948745186216797 39.77901812086614, 19.92777318619727 39.72985412082036, 19.84250018611783 39.701109120793575, 19.839445186115 39.67638212077054, 19.84666318612173 39.64916412074521, 19.92495418619464 39.62244512072033, 19.929863186199213 39.47444512058249, 20.03027318629273 39.432082120543015, 20.07214518633171 39.452500120562036, 20.11166318636853 39.36305412047875, 19.878745186151605 39.448536120558344, 19.82082718609766 39.57874512067963, 19.67458218596147 39.67597312077018, 19.64000018592924 39.75666412084533, 19.67305418596004 39.79305412087922, 19.794163186072836 39.790409120876745, 19.855000186129473 39.81832712090275)), ((25.44166319133248 40.00471812107634, 25.337218191235195 39.878045120958376, 25.37305419126858 39.812627120897446, 25.35582719125253 39.786382120872986, 25.294718191195614 39.805545120890855, 25.263054191166134 39.912345120990295, 25.233054191138194 39.91130912098933, 25.179445191088263 39.846864120929325, 25.22471819113042 39.80416412088957, 25.165409191075184 39.80027312088592, 25.054436190971842 39.86054512094208, 25.047636190965505 39.9866541210595, 25.136382191048142 40.00596412107748, 25.271936191174404 39.98831812106107, 25.45159119134172 40.032554121102265, 25.44166319133248 40.00471812107634)), ((26.81805419261434 37.63665411887091, 26.708473192512287 37.70831811893764, 26.595409192406976 37.675964118907515, 26.572218192385378 37.73235411896003, 26.667636192474248 37.79123611901487, 26.74597319254721 37.8112451190335, 27.02860919281042 37.77166411899664, 27.06693619284613 37.72721811895525, 27.063673192843083 37.70735411893675, 26.81805419261434 37.63665411887091)), ((20.836109187043206 37.64638211887997, 20.71360918692912 37.72277311895111, 20.628609186849957 37.813191119035324, 20.62194518684376 37.86083611907969, 20.643327186863672 37.89832711911461, 20.701245186917618 37.92916411914332, 20.79416318700416 37.84888211906856, 20.886391187090055 37.81443611903647, 20.998609187194546 37.713882118942834, 20.994445187190678 37.6986091189286, 20.919718187121077 37.73013611895797, 20.870618187075365 37.72569111895383, 20.836109187043206 37.64638211887997)), ((25.45277319134283 36.918318118201896, 25.341936191239597 37.07346411834639, 25.541873191425793 37.19762711846202, 25.600554191480455 37.11708211838702, 25.580273191461572 37.01554511829245, 25.553254191436395 36.95457311823567, 25.45277319134283 36.918318118201896)), ((24.960282190884158 37.68555411891644, 24.76708219070423 37.87235411909042, 24.71513619065584 37.873054119091066, 24.69458219063671 37.962636119174505, 24.79166319072712 37.998327119207744, 24.96277319088648 37.87250011909056, 24.99798219091926 37.76290911898849, 24.960282190884158 37.68555411891644)), ((24.643609190589217 40.57082712160357, 24.591109190540323 40.61666412164627, 24.531663190484977 40.62110912165039, 24.509445190464277 40.65805412168481, 24.565554190516536 40.750545121770955, 24.643191190588823 40.79721812181441, 24.76139119069893 40.74916412176967, 24.773327190710035 40.631664121660236, 24.766391190703587 40.61138212164133, 24.643609190589217 40.57082712160357)), ((20.701382186917726 38.83471811998669, 20.729718186944126 38.80569111995965, 20.72208218693703 38.62714511979337, 20.643609186863927 38.581109119750494, 20.5431911867704 38.566109119736524, 20.558473186784653 38.68596411984814, 20.60166318682488 38.77888211993468, 20.655554186875065 38.83554511998747, 20.701382186917726 38.83471811998669)), ((27.142218192916232 35.3997181167876, 27.066945192846134 35.606664116980326, 27.161736192934427 35.72534511709085, 27.160000192932785 35.795827117156506, 27.229718192997723 35.82540911718405, 27.177500192949083 35.60110911697515, 27.20221819297211 35.47805411686055, 27.15985419293267 35.448473116833, 27.142218192916232 35.3997181167876)), ((25.984163191837723 37.50694511875011, 25.98304519183668 37.54555411878606, 26.066245191914163 37.630964118865606, 26.3586731921865 37.68394511891495, 26.305418192136898 37.616664118852285, 26.21499119205268 37.55888211879848, 25.984163191837723 37.50694511875011)), ((22.9569451890184 36.37749111769821, 22.98889118904816 36.32360911764803, 23.108327189159382 36.23693611756731, 23.04409118909956 36.136245117473536, 22.988054189047375 36.14610911748272, 22.911663188976235 36.201109117533946, 22.895554188961228 36.322082117646616, 22.92777318899124 36.378464117699124, 22.9569451890184 36.37749111769821)), ((26.97138219275712 36.6722091179727, 26.920273192709544 36.71180011800956, 26.919854192709153 36.75819111805278, 27.06250019284198 36.83804511812714, 27.172773192944703 36.88804511817371, 27.284445193048697 36.900554118185354, 27.354718193114138 36.86380911815114, 26.992218192776534 36.75139111804644, 26.97430019275984 36.741591118037306, 26.97138219275712 36.6722091179727)), ((24.568882190519616 38.76082711991788, 24.450273190409177 38.89694512004465, 24.45152719041033 38.951318120095294, 24.48319119043981 38.97735412011954, 24.577500190527644 38.9261091200718, 24.681663190624676 38.80208211995628, 24.65916319060372 38.767491119924074, 24.597082190545905 38.78874511994388, 24.568882190519616 38.76082711991788)), ((25.053882190971308 37.67581811890737, 25.078745190994482 37.65081811888409, 25.238891191143637 37.62193611885719, 25.255273191158892 37.58680011882447, 25.230000191135332 37.53540911877661, 25.11389119102722 37.551100118791226, 24.976391190899164 37.67402711890571, 25.053882190971308 37.67581811890737)), ((25.191382191099365 36.973882118253655, 25.105273191019194 37.01165411828883, 25.110000191023573 37.05720911833126, 25.16332719107325 37.12166411839128, 25.268600191171288 37.13860911840706, 25.28444519118605 37.12831811839747, 25.250273191154236 37.008327118285735, 25.191382191099365 36.973882118253655)), ((24.330827190297924 36.649991117952, 24.350973190316694 36.746936118042285, 24.54874519050088 36.75790911805251, 24.539445190492216 36.67756411797768, 24.330827190297924 36.649991117952)), ((25.657218191533218 40.49304512153114, 25.6940271915675 40.46561812150557, 25.693745191567245 40.42450912146731, 25.603882191483535 40.39831812144291, 25.561945191444494 40.399573121444064, 25.443882191334524 40.47581812151509, 25.555827191438794 40.511654121548446, 25.657218191533218 40.49304512153114)), ((26.466663192287086 36.576382117883455, 26.40582719223042 36.565273117873105, 26.35540919218346 36.51179111782329, 26.315273192146094 36.50485411781683, 26.287773192120483 36.51957311783055, 26.263327192097705 36.58957311789574, 26.38290919220907 36.64040911794308, 26.45943619228035 36.599436117904915, 26.466663192287086 36.576382117883455)), ((26.975554192761024 36.92442711820759, 26.91916319270851 36.9466641182283, 26.887563192679067 37.073736118346645, 26.985827192770586 37.0441641183191, 27.04916319282958 36.9920821182706, 27.047773192828288 36.94589111822758, 26.975554192761024 36.92442711820759)), ((24.28527319025551 37.52471811876666, 24.26944519024076 37.59096411882835, 24.299582190268836 37.65639111888929, 24.330827190297924 37.67930011891062, 24.39416319035692 37.67333611890507, 24.411391190372967 37.65319111888631, 24.381382190344993 37.59693611883391, 24.28527319025551 37.52471811876666)), ((20.719718186934813 38.30527311949359, 20.670827186889284 38.353054119538115, 20.61430018683663 38.46971811964676, 20.65277318687248 38.500691119675594, 20.70721818692317 38.44332711962218, 20.760691186972963 38.32346411951053, 20.719718186934813 38.30527311949359)), ((25.357773191254353 36.64500011794736, 25.25860919116198 36.72888211802548, 25.277491191179564 36.782354118075276, 25.305554191205715 36.78874511808122, 25.40777319130092 36.716518118013965, 25.388191191282658 36.65430011795601, 25.357773191254353 36.64500011794736)), ((23.50110918952518 37.999164119208515, 23.539718189561142 37.98430011919467, 23.538745189560245 37.919300119134135, 23.4621541894889 37.879091119096685, 23.407354189437882 37.89430011911085, 23.437500189465936 37.98583611919611, 23.50110918952518 37.999164119208515)), ((24.44082719040037 37.47083611871648, 24.4319451903921 37.440964118688655, 24.48250019043917 37.395964118646745, 24.377009190340942 37.30638211856332, 24.370000190334395 37.429509118677984, 24.44082719040037 37.47083611871648)), ((23.72444518973319 39.071391120207096, 23.660273189673433 39.08943612022392, 23.594854189612505 39.20492712033146, 23.78736318979179 39.11826412025076, 23.72444518973319 39.071391120207096))) +LBN Lebanon MULTIPOLYGON (((35.97277320114034 34.647500116087045, 36.0308272011944 34.632500116073075, 36.08749120124716 34.633891116074366, 36.112973201270904 34.6387641160789, 36.11446320127229 34.64001811608007, 36.121936201279254 34.64416411608393, 36.29859120144377 34.64193611608185, 36.37639120151624 34.63944511607954, 36.459300201593436 34.63040911607112, 36.45277320158738 34.59471811603788, 36.39750020153588 34.55444511600038, 36.36416320150485 34.538054115985105, 36.351227201492804 34.500745115950366, 36.42999120156614 34.501936115951466, 36.45443620158892 34.49139111594165, 36.52583620165541 34.43193611588627, 36.54666320167482 34.34416411580453, 36.59360920171852 34.22819111569653, 36.6237452017466 34.204991115674915, 36.51693620164713 34.10721811558386, 36.39750020153588 34.03388211551557, 36.350273201491916 33.99721811548142, 36.32791820147108 33.97499111546071, 36.2834632014297 33.91090011540102, 36.32944520147251 33.878327115370695, 36.3577732014989 33.87992711537218, 36.38874520152774 33.85422711534825, 36.37395420151395 33.83110911532671, 36.353336201494756 33.82694511532284, 36.240827201389976 33.85638211535026, 36.071036201231834 33.82752711532338, 36.01721820118172 33.76971811526954, 35.97110920113877 33.71819111522156, 35.94020020111 33.644164115152606, 35.967218201135154 33.64069111514938, 36.02555420118949 33.61916411512932, 36.058745201220404 33.585618115098086, 36.034436201197764 33.553327115068015, 35.93416320110438 33.466664114987296, 35.88332720105703 33.42957311495276, 35.85200020102786 33.41729111494132, 35.82638220100398 33.40326411492825, 35.81471820099313 33.3711091148983, 35.794163200974 33.35055411487916, 35.78666320096701 33.34721811487606, 35.76943620095096 33.34110911487036, 35.76171820094376 33.33760911486711, 35.626663200818 33.276318114810024, 35.623636200815184 33.24572711478153, 35.585545200779706 33.2702731148044, 35.54277320073987 33.196527114735716, 35.52569120072394 33.126727114670715, 35.505827200705454 33.11499111465977, 35.50527320070495 33.098054114644, 35.4255542006307 33.068327114616324, 35.37778220058621 33.062082114610504, 35.351936200562136 33.0625001146109, 35.321936200534196 33.08805411463469, 35.265000200481154 33.09860911464452, 35.109445200336296 33.09555411464167, 35.10082720032827 33.09360911463986, 35.14166320036631 33.13082711467453, 35.18832720040976 33.18278211472291, 35.20458220042491 33.21708211475486, 35.20944520042943 33.249445114785004, 35.22027320043952 33.30527311483699, 35.26305420047936 33.42555411494901, 35.27332720048892 33.454164114975654, 35.30040920051414 33.472009114992275, 35.329718200541436 33.495827115014464, 35.35624520056615 33.5268001150433, 35.38233620059043 33.58782711510014, 35.395000200602226 33.634436115143544, 35.41693620062267 33.688327115193744, 35.441663200645706 33.74166411524341, 35.46708220066938 33.77874511527794, 35.47874520068024 33.800973115298646, 35.48347320068464 33.82624511532218, 35.483609200684754 33.85819111535194, 35.48250020068372 33.865291115358545, 35.47530920067703 33.90180011539255, 35.52360920072201 33.9072181153976, 35.54809120074481 33.90166411539242, 35.574300200769216 33.91208211540213, 35.634436200825235 34.012773115495904, 35.64708220083702 34.105691115582445, 35.634127200824935 34.14149111561578, 35.629927200821044 34.20221811567234, 35.64627320083625 34.21718211568627, 35.64888220083867 34.28110911574581, 35.66944520085784 34.31249111577503, 35.81916320099728 34.43139111588577, 35.90055420107308 34.471936115923526, 35.983609201150415 34.527500115975286, 35.99159120115786 34.55700911600276, 35.98721820115378 34.611800116053786, 35.97277320114034 34.647500116087045))) +SYR Syria MULTIPOLYGON (((35.66901820085744 33.212173114750286, 35.68110920086869 33.2445091147804, 35.669618200858 33.25171811478711, 35.659573200848655 33.25416411478939, 35.63249120082341 33.24637311478213, 35.623636200815184 33.24572711478153, 35.626663200818 33.276318114810024, 35.76171820094376 33.33760911486711, 35.76943620095096 33.34110911487036, 35.78666320096701 33.34721811487606, 35.794163200974 33.35055411487916, 35.81471820099313 33.3711091148983, 35.82638220100398 33.40326411492825, 35.85200020102786 33.41729111494132, 35.88332720105703 33.42957311495276, 35.93416320110438 33.466664114987296, 36.034436201197764 33.553327115068015, 36.058745201220404 33.585618115098086, 36.02555420118949 33.61916411512932, 35.967218201135154 33.64069111514938, 35.94020020111 33.644164115152606, 35.97110920113877 33.71819111522156, 36.01721820118172 33.76971811526954, 36.071036201231834 33.82752711532338, 36.240827201389976 33.85638211535026, 36.353336201494756 33.82694511532284, 36.37395420151395 33.83110911532671, 36.38874520152774 33.85422711534825, 36.3577732014989 33.87992711537218, 36.32944520147251 33.878327115370695, 36.2834632014297 33.91090011540102, 36.32791820147108 33.97499111546071, 36.350273201491916 33.99721811548142, 36.39750020153588 34.03388211551557, 36.51693620164713 34.10721811558386, 36.6237452017466 34.204991115674915, 36.59360920171852 34.22819111569653, 36.54666320167482 34.34416411580453, 36.52583620165541 34.43193611588627, 36.45443620158892 34.49139111594165, 36.42999120156614 34.501936115951466, 36.351227201492804 34.500745115950366, 36.36416320150485 34.538054115985105, 36.39750020153588 34.55444511600038, 36.45277320158738 34.59471811603788, 36.459300201593436 34.63040911607112, 36.37639120151624 34.63944511607954, 36.29859120144377 34.64193611608185, 36.121936201279254 34.64416411608393, 36.11446320127229 34.64001811608007, 36.112973201270904 34.6387641160789, 36.08749120124716 34.633891116074366, 36.0308272011944 34.632500116073075, 35.97277320114034 34.647500116087045, 35.949718201118856 34.694445116130765, 35.9313912011018 34.73860911617189, 35.88332720105703 34.8744451162984, 35.874991201049255 34.91208211633345, 35.87778220105187 34.98638211640265, 35.88277320105652 35.06499111647585, 35.88610920105961 35.103473116511694, 35.923882201094784 35.153609116558385, 35.95729120112591 35.19610911659797, 35.95082720111989 35.22582711662565, 35.94166320111137 35.24471811664324, 35.929145201099686 35.26206411665939, 35.91902720109027 35.422636116808945, 35.8570822010326 35.47805411686055, 35.770709200952155 35.499554116880574, 35.73389120091787 35.58166411695704, 35.78249120096311 35.63805411700956, 35.82694520100452 35.70860911707527, 35.84374520102017 35.738327117102955, 35.87916320105316 35.86388211721989, 35.92243620109346 35.92699111727866, 36.01582720118043 35.89971811725326, 36.109991201268116 35.86138211721756, 36.128054201284954 35.85221811720902, 36.14416320129996 35.833609117191685, 36.15587320131087 35.81844511717756, 36.1684732013226 35.81971811717875, 36.18250020133564 35.85500011721162, 36.18250020133564 35.87971811723463, 36.18680020133965 35.91027311726309, 36.22360920137393 35.962218117311465, 36.30000020144507 35.96971811731845, 36.374973201514905 35.997909117344705, 36.383609201522944 36.03053611737509, 36.381382201520864 36.09707311743706, 36.37492720151488 36.17659111751111, 36.392218201530966 36.21332711754533, 36.50665420163756 36.23332711756396, 36.53555420166447 36.23554511756602, 36.57555420170172 36.22777311755878, 36.6164542017398 36.219509117551084, 36.6831182018019 36.232736117563405, 36.69013620180843 36.286245117613234, 36.66113620178143 36.31098211763627, 36.58276320170842 36.39749111771684, 36.56763620169434 36.420964117738706, 36.54957320167753 36.48777311780093, 36.58639120171182 36.619709117923804, 36.662563201782746 36.81513611810581, 36.65994520178032 36.83370911812311, 36.6667092017866 36.83428211812364, 36.702763201820176 36.82942711811911, 36.933600202035166 36.77804511807126, 36.988318202086134 36.75741811805206, 37.038191202132566 36.71964511801687, 37.12749120221574 36.65915411796054, 37.24888220232879 36.66471811796572, 37.26943620234795 36.66444511796547, 37.37380920244516 36.65533611795698, 37.533336202593716 36.67777311797788, 37.5683182026263 36.69693611799572, 37.66971820272073 36.73721811803324, 37.710273202758515 36.74832711804359, 37.73610920278256 36.747764118043065, 37.77693620282059 36.74798211804327, 37.891391202927196 36.78110011807411, 37.917773202951764 36.79110011808342, 37.95610020298744 36.81290911810373, 37.99332720302212 36.82471811811473, 38.02337320305011 36.83036411811999, 38.05554520308007 36.85054511813878, 38.09729120311894 36.873745118160386, 38.181109203196996 36.905818118190254, 38.24340020325502 36.913882118197776, 38.38637320338816 36.89832711818329, 38.432773203431395 36.88554511817138, 38.51360920350666 36.85804511814577, 38.54110020353227 36.84430011813296, 38.6283182036135 36.76804511806195, 38.68416320366552 36.72554511802237, 38.725263203703776 36.703609118001935, 38.774709203749836 36.698045117996756, 38.917627203882944 36.69513611799405, 38.96610020392808 36.69693611799572, 39.003673203963075 36.70561811800381, 39.04346320400015 36.70819111800621, 39.07471820402924 36.702764118001156, 39.0963732040494 36.69554511799443, 39.130545204081244 36.6836001179833, 39.171654204119534 36.66970911797037, 39.221527204165966 36.66533611796629, 39.257763204199705 36.66805411796882, 39.30860020424706 36.67831811797838, 39.43930020436878 36.69751811799627, 39.58805420450733 36.71888211801617, 39.818054204721534 36.7536091180485, 39.92332720481957 36.78638211807903, 39.94277320483769 36.792764118084975, 40.0077632048982 36.81470911810541, 40.214427205090686 36.89581811818094, 40.26388220513675 36.919491118203, 40.27970920515148 36.92860011821148, 40.41526320527771 37.00138211827927, 40.44777320530801 37.0152731182922, 40.482491205340324 37.020818118297356, 40.5130452053688 37.02318211829956, 40.63499120548235 37.06888211834213, 40.67027320551523 37.08512711835725, 40.68846320553217 37.09554511836696, 40.77081820560886 37.11804511838791, 40.806654205642246 37.12249111839205, 40.901109205730194 37.12860911839775, 40.92999120575709 37.129718118398785, 41.1183272059325 37.097491118368765, 41.21638220602384 37.07249111834548, 41.36249120615989 37.07500011834783, 41.45416320624528 37.07889111835145, 41.48304520627218 37.080273118352736, 41.54819120633283 37.08527311835739, 41.84027320660488 37.12999111839903, 41.99527320674923 37.17276411843888, 42.05692720680665 37.19277311845751, 42.08331820683122 37.20831811847198, 42.14874520689216 37.25930011851946, 42.18082720692203 37.290545118548565, 42.21582720695463 37.28944511854755, 42.29443620702784 37.26971811852917, 42.351518207081 37.231173118493274, 42.35707320708619 37.12970911839878, 42.355609207084825 37.106927118377556, 42.37832720710597 37.07206411834508, 42.37410020710203 37.0631641183368, 42.36729120709569 37.055891118330024, 41.83527320660022 36.59888211790441, 41.403045206197675 36.52555411783611, 41.36720920616429 36.47277311778696, 41.29027320609265 36.355554117677784, 41.25499120605977 36.05499111739786, 41.27110020607478 36.02777311737252, 41.35693620615473 35.87638211723153, 41.378327206174646 35.83693611719478, 41.384018206179945 35.63096411700296, 41.322491206122635 35.550564116928086, 41.27777320608101 35.49554511687684, 41.27249120607607 35.46831811685148, 41.27081820607452 35.443327116828215, 41.26916320607299 35.398745116786685, 41.26221820606651 35.367773116757846, 41.25443620605927 35.34331811673506, 41.24096320604673 35.3065181167008, 41.2224912060295 35.25360911665152, 41.2152732060228 35.22470911662461, 41.21240920602011 35.20061811660217, 41.21124520601904 35.188600116590976, 41.21249120602019 35.112782116520364, 41.21471820602227 35.06915411647974, 41.22305420603004 34.916936116337965, 41.224845206031716 34.78290911621315, 41.09943620591491 34.60860011605081, 41.03053620585075 34.473609115925086, 41.0038732058259 34.41943611587463, 40.663600205509 34.260273115726406, 40.19943620507672 34.040827115522035, 40.16554520504516 34.02443611550676, 40.000000204890966 33.947654115435256, 39.7980452047029 33.85333611534742, 39.57913620449901 33.75000011525118, 39.38610920431924 33.65888211516632, 38.96139120392371 33.45555411497695, 38.81027320378297 33.38221811490865, 38.79470020376846 33.37759111490435, 38.69749120367791 33.3275001148577, 38.53356320352526 33.241100114777225, 38.31892720332536 33.12873611467258, 37.958882202990026 32.93749111449446, 37.62499120267907 32.758327114327614, 37.49860020256136 32.68971811426371, 37.49566320255863 32.68888211426294, 37.493891202556995 32.687218114261384, 37.153273202239745 32.50029111408729, 36.86639120197259 32.34166411393956, 36.837773201945936 32.31360911391343, 36.72416320184013 32.3366641139349, 36.643054201764585 32.34916411394654, 36.516109201646344 32.36305411395948, 36.48860920162073 32.375545113971114, 36.40027320153848 32.38194511397708, 36.34666320148855 32.43305411402467, 36.314436201458534 32.45971811404951, 36.19749120134961 32.53333611411807, 36.165600201319904 32.51822711410399, 36.125827201282874 32.52777311411289, 36.079991201240176 32.54332711412738, 36.02583620118975 32.613609114192826, 36.00332720116879 32.66332711423914, 35.93124520110166 32.72027311429217, 35.793609200973464 32.744164114314415, 35.763318200945264 32.74888211431882, 35.68999120087696 32.7119361142844, 35.648891200838705 32.68527311425957, 35.64666320083663 32.70277311427587, 35.65193620084153 32.727491114298886, 35.66548220085414 32.761991114331025, 35.66284520085168 32.79721811436383, 35.63920920082967 32.81531811438069, 35.6415912008319 32.856873114419386, 35.61860920081048 32.89139111445154, 35.614463200806625 32.894909114454805, 35.624582200816064 32.905827114464984, 35.63374520082459 32.9356911144928, 35.63499120082574 33.00000011455269, 35.64249120083272 33.05055411459976, 35.65002720083976 33.091209114637635, 35.65250020084204 33.124991114669086, 35.6669362008555 33.20527311474386, 35.66901820085744 33.212173114750286))) +TUR Turkey MULTIPOLYGON (((26.669718192476182 39.55499112065749, 26.130973191974448 39.453045120562564, 26.07054519191817 39.48266412059013, 26.10443619194973 39.58638212068672, 26.15485419199669 39.63263612072981, 26.16027319200174 39.65610012075166, 26.150200191992354 39.90867312098689, 26.174718192015177 39.9794361210528, 26.197354192036272 40.00283612107458, 26.24888219208424 39.99110012106365, 26.33305419216265 40.02464512109489, 26.438327192260687 40.1923541212511, 26.514027192331184 40.216245121273346, 26.684018192489503 40.34776412139581, 26.704300192508384 40.378882121424795, 26.81000019260682 40.395818121440584, 26.96250019274885 40.382909121428554, 27.026663192808627 40.39110912143619, 27.086800192864615 40.447627121488836, 27.264163193029816 40.45860912149905, 27.306391193069146 40.38499112143049, 27.429163193183484 40.32415412137382, 27.51166319326032 40.30555412135652, 27.780136193510344 40.31513612136544, 27.87784519360133 40.37585412142198, 27.831527193558202 40.39721812144188, 27.794609193523826 40.39210912143713, 27.68708219342369 40.49270012153082, 27.723327193457436 40.52207312155815, 27.754854193486807 40.52971812156528, 27.856936193581873 40.522491121558545, 28.02013619373386 40.487709121526166, 28.027636193740847 40.463054121503205, 28.001109193716132 40.44221812148379, 27.92777319364785 40.4119361214556, 27.90076319362268 40.388673121433925, 27.923745193644095 40.36470912141161, 27.9531911936715 40.356936121404374, 28.109582193817175 40.389582121434756, 28.24666319394484 40.40346412144768, 28.509163194189313 40.39526412144005, 28.67443619434323 40.36360012141057, 28.791382194452126 40.394864121439696, 28.883954194538347 40.37942712142532, 28.937218194587956 40.35944512140671, 29.055763194698358 40.36680012141355, 29.14169119477839 40.43790912147978, 29.080000194720924 40.477627121516775, 29.026527194671132 40.480064121519035, 28.975345194623458 40.462973121503126, 28.91485419456714 40.468882121508614, 28.77672719443848 40.52707312156281, 28.805827194465593 40.55811812159172, 28.909836194562445 40.593118121624315, 28.98040919462818 40.63957312166758, 29.25166319488082 40.66249112168893, 29.39229119501178 40.70220912172593, 29.424000195041316 40.685800121710656, 29.510691195122035 40.731518121753226, 29.554027195162405 40.68617312171099, 29.933954195516236 40.722209121744555, 29.937500195519533 40.7522181217725, 29.916945195500404 40.76165412178128, 29.59166319519747 40.775554121794244, 29.412491195030583 40.7697181217888, 29.336663194959982 40.80707312182358, 29.2549911948839 40.86832712188064, 29.12943619476698 40.91444512192359, 29.043327194686782 40.97305412197818, 29.025554194670235 41.03442712203534, 29.088218194728597 41.11861812211373, 29.088218194728597 41.13957312213324, 29.0745821947159 41.159427122151754, 29.133473194770744 41.212764122201406, 29.16000019479543 41.224573122212405, 29.219791194851126 41.23687312222387, 29.57960019518623 41.17300012216438, 29.984436195563262 41.13957312213324, 30.15860919572546 41.140691122134285, 30.19500019575935 41.151373122144236, 30.284718195842913 41.20805412219704, 30.3268001958821 41.20304512219238, 30.376945195928812 41.17499112216623, 30.49346319603734 41.14721812214037, 30.606109196142228 41.13388212212794, 30.757218196282963 41.08645412208378, 30.95473619646691 41.07457312207271, 31.23347319672652 41.08930012208643, 31.33721819682313 41.13721812213106, 31.410000196890905 41.2100641221989, 31.42152719690165 41.279018122263125, 31.552491197023613 41.362764122341105, 31.747773197205504 41.43304512240658, 32.16069119759004 41.60888212257032, 32.27750019769883 41.7194361226733, 32.60270019800171 41.831800122777935, 32.68443619807783 41.833754122779766, 32.72137319811222 41.84915412279409, 32.82804519821158 41.8591541228034, 32.950827198325925 41.88499112282747, 33.068327198435355 41.9380451228769, 33.219718198576345 41.97638212291258, 33.33860019868706 42.01985412295309, 33.73804519905909 41.9797181229157, 34.10194519939799 41.976109122912334, 34.315273199596675 41.94081812287948, 34.715545199969455 41.94249112288102, 34.83250020007836 41.96831812290509, 34.91720920015726 42.03665412296871, 34.94898220018686 42.08592712301461, 35.006382200240296 42.08610012301477, 35.15736320038093 42.02531812295817, 35.11499120034145 42.00096412293547, 35.09930020032684 41.96720912290405, 35.096382200324115 41.91867312285885, 35.212491200432254 41.77055412272091, 35.286654200501346 41.71305412266736, 35.50638220070596 41.63805412259751, 35.57665420077143 41.6272091225874, 35.7767912009578 41.67151812262867, 35.95304520112197 41.73457312268738, 36.05610020121793 41.68874512264472, 36.11360020127148 41.63207312259192, 36.131109201287785 41.59512712255753, 36.13319120128972 41.54430012251018, 36.11714520127478 41.50930012247758, 36.12378220128096 41.475736122446335, 36.24027320138947 41.356109122334914, 36.34499120148698 41.283336122267144, 36.43151820156757 41.2420731222287, 36.49249120162435 41.24790912223415, 36.53513620166407 41.2698541222546, 36.57110020169756 41.29569112227864, 36.612491201736105 41.347491122326886, 36.71165420182848 41.36500012234319, 36.81000020192005 41.35555412233441, 36.86401820197037 41.3451271223247, 37.00430020210101 41.279018122263125, 37.02880920212385 41.25749112224307, 37.03221820212701 41.19360012218357, 37.05234520214577 41.17040912216197, 37.12930020221742 41.14680012213998, 37.296654202373304 41.136936122130805, 37.53964520259959 41.028882122030154, 37.610409202665494 41.05054512205035, 37.65624520270819 41.11749112211268, 37.68276320273287 41.13520012212919, 37.753609202798856 41.119164122114256, 37.785409202828475 41.09873612209523, 37.782836202826076 41.06560912206436, 37.79360920283611 41.045545122045695, 37.89512720293067 40.982354121986845, 37.98819120301732 40.987636121991756, 38.35582720335972 40.91027312191969, 38.38964520339121 40.92000912192876, 38.420545203420005 40.91220912192151, 38.51860020351131 40.920273121929, 38.709991203689555 40.95000012195669, 38.816109203788386 41.009991122012565, 38.929027203893554 41.0409641220414, 39.00575420396501 41.0337451220347, 39.05470920401061 41.04110012204154, 39.14791820409741 41.06555412206433, 39.165827204114095 41.08250012208009, 39.210827204156004 41.074154122072315, 39.23305420417671 41.056382122055766, 39.284718204224816 41.05151812205125, 39.41422720434542 41.106727122102654, 39.48735420441355 41.09756412209413, 39.55110920447291 41.0522181220519, 39.69055420460279 41.00305412200612, 39.72141820463153 41.010027122012616, 39.91249120480947 40.956654121962885, 40.128591205010736 40.91638212192538, 40.34527320521255 40.983591121987985, 40.39332720525729 41.018645122020644, 40.46165420532094 41.04319112204348, 40.58054520543166 41.054700122054214, 40.63777320548496 41.07860912207647, 40.77275420561065 41.16638212215821, 40.84897320568166 41.19557312218541, 40.92124520574896 41.186718122177155, 41.1716912059822 41.28530012226898, 41.33790020613699 41.370682122348484, 41.38495420618082 41.3737091223513, 41.53155420631734 41.52387312249115, 41.72470920649724 41.49249112246193, 41.83012720659542 41.43012712240386, 41.95846320671495 41.51680012248457, 41.979436206734476 41.518045122485745, 42.17470920691633 41.5075001224759, 42.28013620701452 41.489573122459205, 42.4722092071934 41.43332712240684, 42.55790920727321 41.5018001224706, 42.59093620730397 41.57875412254228, 42.604163207316304 41.58471812254783, 42.68139120738823 41.59471812255714, 42.83101820752756 41.582418122545675, 42.892773207585094 41.5069451224754, 43.01610920769994 41.393327122369584, 43.12638220780266 41.32000012230128, 43.2336002079025 41.19027312218046, 43.37846320803743 41.20166412219109, 43.4299912080854 41.183464122174115, 43.455482208109146 41.16804512215978, 43.47436320812673 41.137982122131774, 43.45416320810793 41.09492712209166, 43.48387320813558 41.02277312202446, 43.59520020823928 40.993327121997055, 43.67249120831124 40.92651812193483, 43.750409208383815 40.74500012176577, 43.74138220837543 40.6666541216928, 43.65304520829315 40.53138212156682, 43.59276320823699 40.50110012153863, 43.58305420822796 40.45110912149207, 43.606936208250204 40.36889112141549, 43.715373208351195 40.15718212121834, 43.66852720830755 40.14617312120808, 43.648818208289214 40.124854121188235, 43.668400208307446 40.10318212116803, 43.93388220855471 40.01360912108461, 44.04429120865751 40.01034512108157, 44.282636208879495 40.046100121114875, 44.35166320894379 40.022218121092635, 44.48778220907056 39.96277312103726, 44.551800209130164 39.89874512097765, 44.59249120916806 39.83180012091529, 44.79937320936074 39.68644512077992, 44.816373209376565 39.64581812074209, 44.813045209373485 39.63080912072812, 44.73671820930238 39.70180012079422, 44.60846320918296 39.77915412086625, 44.471082209055 39.698864120791484, 44.47789120906134 39.64065412073728, 44.42582720901285 39.43644512054709, 44.40110020898982 39.416518120528536, 44.304527208899884 39.38729112050132, 44.20095420880341 39.41693612052893, 44.076863208687854 39.41165412052399, 44.03495420864883 39.377445120492155, 44.07471820868585 39.33610012045364, 44.216445208817845 39.136518120267766, 44.198036208800715 39.05667312019341, 44.16241820876752 39.005200120145474, 44.20942720881132 38.893464120041386, 44.250545208849616 38.86554512001541, 44.283663208880455 38.86249112001255, 44.3002632088959 38.84262711999406, 44.303191208898625 38.80998211996365, 44.26180020886008 38.724291119883844, 44.3172182089117 38.61304511978025, 44.32152720891571 38.50937311968369, 44.30416320889955 38.449436119627876, 44.305263208900556 38.40053611958231, 44.31814520891257 38.38205411956511, 44.43672720902299 38.39480911957699, 44.48251820906566 38.34130011952715, 44.23888220883876 37.9602731191723, 44.22397320882487 37.89915411911538, 44.57679120915344 37.76680011899211, 44.617763209191594 37.717973118946645, 44.598873209174 37.69081811892134, 44.58443620916057 37.6138821188497, 44.58885420916468 37.44309111869063, 44.64860020922032 37.42777311867637, 44.80165420936288 37.321664118577544, 44.81818220937825 37.29741811855497, 44.82054520938047 37.26874511852826, 44.78733620934955 37.149709118417405, 44.7740912093372 37.16596411843254, 44.745827209310875 37.17442711844042, 44.64221820921438 37.188464118453496, 44.582763209159 37.163182118429944, 44.55054520912901 37.13263611840151, 44.436382209022696 37.06304511833669, 44.34970920894196 37.038318118313654, 44.31916320891352 36.971236118251184, 44.2570732088557 36.985691118264654, 44.19596320879879 37.09638211836774, 44.230263208830706 37.15401811842142, 44.262600208860846 37.16346411843021, 44.2621452088604 37.23651811849825, 44.230554208830995 37.27624511853524, 44.118882208727 37.31568211857197, 44.00901820862467 37.31776411857392, 43.955818208575124 37.279636118538406, 43.912982208535226 37.226591118489, 43.62304520826521 37.230000118492185, 43.48999120814128 37.25124511851196, 43.15693620783111 37.373882118626184, 42.96061820764828 37.32352711857928, 42.89443620758664 37.33553611859047, 42.78680020748638 37.3836731186353, 42.72470920742856 37.351945118605755, 42.57950920729334 37.153673118421096, 42.355609207084825 37.106927118377556, 42.351518207081 37.231173118493274, 42.29443620702784 37.26971811852917, 42.18082720692203 37.290545118548565, 42.08331820683122 37.20831811847198, 41.99527320674923 37.17276411843888, 41.84027320660488 37.12999111839903, 41.54819120633283 37.08527311835739, 41.21638220602384 37.07249111834548, 40.92999120575709 37.129718118398785, 40.77081820560886 37.11804511838791, 40.68846320553217 37.09554511836696, 40.5130452053688 37.02318211829956, 40.44777320530801 37.0152731182922, 40.214427205090686 36.89581811818094, 40.0077632048982 36.81470911810541, 39.818054204721534 36.7536091180485, 39.221527204165966 36.66533611796629, 39.171654204119534 36.66970911797037, 39.04346320400015 36.70819111800621, 38.917627203882944 36.69513611799405, 38.725263203703776 36.703609118001935, 38.68416320366552 36.72554511802237, 38.51360920350666 36.85804511814577, 38.38637320338816 36.89832711818329, 38.24340020325502 36.913882118197776, 38.181109203196996 36.905818118190254, 38.09729120311894 36.873745118160386, 38.02337320305011 36.83036411811999, 37.95610020298744 36.81290911810373, 37.891391202927196 36.78110011807411, 37.77693620282059 36.74798211804327, 37.710273202758515 36.74832711804359, 37.66971820272073 36.73721811803324, 37.533336202593716 36.67777311797788, 37.37380920244516 36.65533611795698, 37.26943620234795 36.66444511796547, 37.12749120221574 36.65915411796054, 36.988318202086134 36.75741811805206, 36.933600202035166 36.77804511807126, 36.65994520178032 36.83370911812311, 36.662563201782746 36.81513611810581, 36.58639120171182 36.619709117923804, 36.54957320167753 36.48777311780093, 36.58276320170842 36.39749111771684, 36.69013620180843 36.286245117613234, 36.6831182018019 36.232736117563405, 36.6164542017398 36.219509117551084, 36.53555420166447 36.23554511756602, 36.392218201530966 36.21332711754533, 36.37492720151488 36.17659111751111, 36.383609201522944 36.03053611737509, 36.374973201514905 35.997909117344705, 36.30000020144507 35.96971811731845, 36.22360920137393 35.962218117311465, 36.18680020133965 35.91027311726309, 36.18250020133564 35.85500011721162, 36.1684732013226 35.81971811717875, 36.15587320131087 35.81844511717756, 36.109991201268116 35.86138211721756, 35.92243620109346 35.92699111727866, 35.9784362011456 36.00260911734908, 35.95499120112376 36.06637311740846, 35.85026320102622 36.21888211755051, 35.78680020096712 36.29027311761699, 35.78554520096597 36.31484511763988, 35.818882200996995 36.35500011767728, 35.92470920109557 36.45082711776652, 36.041382201204215 36.53249111784257, 36.190063201342696 36.59729111790293, 36.21728220136805 36.65478211795647, 36.206245201357774 36.7673451180613, 36.16638220132063 36.82860911811835, 36.06943620123036 36.90888211819312, 36.01120020117611 36.92319111820645, 35.95749120112609 36.89485411818005, 35.82388220100165 36.77750011807076, 35.7937452009736 36.76610011806014, 35.64485420083494 36.75290911804785, 35.60944520080196 36.733891118030144, 35.5755542007704 36.692754117991825, 35.636100200826775 36.68220911798201, 35.633736200824586 36.61193611791656, 35.61110020080349 36.59430011790013, 35.55853620075453 36.57979111788663, 35.4982542006984 36.60991811791469, 35.41249120061852 36.580273117887074, 35.34707320055762 36.54499111785421, 34.98090020021658 36.71970911801694, 34.937209200175886 36.72484511802172, 34.90423620014519 36.71706411801446, 34.87721820012001 36.76304511805729, 34.83582720008147 36.79040911808278, 34.73512719998769 36.81290911810373, 34.65942719991719 36.80527311809662, 34.633773199893284 36.78409111807689, 34.56569119982987 36.77193611806557, 34.47666319974698 36.70554511800374, 34.28971819957286 36.59166411789768, 34.220900199508776 36.51665411782783, 34.076654199374445 36.39964511771885, 34.07409119937205 36.36769111768909, 34.03166319933254 36.30305411762889, 33.98860019929242 36.27777311760535, 33.86683619917903 36.309709117635094, 33.70527319902857 36.17943611751376, 33.649718198976814 36.1886001175223, 33.608318198938264 36.18166411751584, 33.54083619887541 36.13970911747677, 33.362782198709596 36.137773117474964, 33.045273198413895 36.091100117431495, 32.93950919831539 36.096791117436794, 32.86443619824547 36.06832711741029, 32.81569119820006 36.03151811737601, 32.771663198159075 36.028882117373556, 32.66971819806412 36.03916411738312, 32.5666271979681 36.09270911743299, 32.50110019790708 36.099436117439254, 32.368045197783175 36.175136117509766, 32.202354197628864 36.346518117669376, 32.14915419757932 36.42943611774659, 32.06470919750066 36.51639111782758, 32.00284519744304 36.545127117854335, 31.82305419727561 36.58971811789587, 31.74027319719852 36.63554511793855, 31.351382196836312 36.80165411809325, 30.993045196502607 36.85415411814215, 30.763327196288657 36.84416411813284, 30.694373196224433 36.88159111816769, 30.6506181961837 36.87006411815696, 30.616527196151935 36.84360911813232, 30.57381819611217 36.787491118080055, 30.553609196093333 36.61581811792017, 30.528327196069796 36.49442711780712, 30.48138219602606 36.42693611774426, 30.474445196019616 36.389164117709086, 30.50443619604755 36.34319111766628, 30.503882196047016 36.32054511764518, 30.40485419595481 36.2049181175375, 30.365827195918456 36.26137311759007, 30.281109195839548 36.29846411762462, 30.208609195772027 36.30387311762965, 30.144645195712457 36.285545117612585, 30.14090019570898 36.256664117585686, 30.092218195663634 36.23526411756576, 29.97582719555524 36.21165411754377, 29.7730541953664 36.15221811748842, 29.725000195321627 36.160900117496496, 29.687491195286697 36.13805411747522, 29.677218195277135 36.11832711745686, 29.62860919523186 36.17054511750548, 29.57027319517755 36.199436117532386, 29.349718194972127 36.231109117561886, 29.315273194940062 36.24720911757689, 29.258873194887514 36.29582711762217, 29.148054194784322 36.34832711767106, 29.117218194755594 36.38332711770366, 29.0977731947375 36.474300117788374, 29.12471819476258 36.53783611784755, 29.106936194746027 36.55360011786223, 29.078327194719378 36.55874511786702, 29.018427194663587 36.5421911178516, 29.034300194678366 36.6126271179172, 29.087218194727654 36.62665411793027, 29.052500194695313 36.68110911798098, 28.931527194582657 36.744164118039706, 28.865691194521332 36.68763611798707, 28.851109194507757 36.65748211795898, 28.65693619432693 36.710273118008146, 28.608600194281905 36.80331811809479, 28.456391194140167 36.88082711816699, 28.39430019408232 36.86276411815017, 28.38572719407435 36.83974511812873, 28.42013619410639 36.82395411811402, 28.38735419407587 36.782809118075704, 28.284300193979874 36.84596411813452, 28.26193619395906 36.84512711813373, 28.235482193934416 36.80283611809435, 28.247500193945598 36.76610911806014, 28.27263619396902 36.73693611803297, 28.230827193930082 36.69860011799727, 28.066382193776917 36.58971811789587, 27.983891193700117 36.55277311786146, 27.959645193677517 36.59741811790305, 28.050827193762444 36.59777311790337, 28.085618193794858 36.63929111794204, 28.061109193772012 36.673609117973996, 28.03353619374633 36.67974511797972, 28.013609193727774 36.66805411796882, 27.969927193687113 36.68474511798438, 28.038609193751057 36.7072181180053, 28.08784519379691 36.703736118002055, 28.12290919382957 36.7209641180181, 28.120136193826994 36.797082118088994, 28.09235419380113 36.80068211809234, 27.98416319370037 36.752209118047205, 27.915591193636487 36.74513611804062, 27.732354193465852 36.756654118051344, 27.708400193443538 36.74387311803943, 27.676109193413453 36.69166411799081, 27.50374519325294 36.67012711797075, 27.47527319322643 36.649991117952, 27.374718193132765 36.6840271179837, 27.35895419311808 36.70430011800258, 27.472636193223963 36.74971811804488, 27.918882193639547 36.79416411808627, 28.02582719373916 36.82277311811292, 28.066382193776917 36.935000118217445, 28.20000019390136 36.97581811825545, 28.324791194017592 37.03818211831353, 28.27304519396941 37.043609118318585, 27.515000193263404 36.992773118271245, 27.423891193178576 37.027764118303836, 27.336109193096803 37.004300118281975, 27.29624519305969 36.963745118244205, 27.272218193037304 36.95582711823684, 27.25500019302126 36.965000118245385, 27.227082192995283 37.043609118318585, 27.232909193000694 37.07027311834342, 27.324300193085804 37.15304511842051, 27.368327193126817 37.150554118418185, 27.4397181931933 37.104709118375496, 27.550000193296 37.13165411840059, 27.595273193338187 37.232491118494494, 27.56389119330896 37.273600118532784, 27.521382193269346 37.26165411852166, 27.485827193236247 37.26749111852709, 27.408745193164464 37.305545118562534, 27.387291193144478 37.33610011859099, 27.42108219317595 37.40790911865787, 27.373745193131867 37.40069111865115, 27.358745193117898 37.37318211862552, 27.31360919307585 37.342209118596685, 27.241382193008576 37.33638211859126, 27.194927192965338 37.352345118606124, 27.21832719298712 37.41138211866111, 27.224163192992563 37.4733271187188, 27.211518192980776 37.587218118824865, 27.193882192964338 37.604436118840894, 27.26305419302878 37.80319111902601, 27.261663193027488 37.884436119101665, 27.27402719303899 37.92560911914002, 27.268327193033684 37.95360011916608, 27.243745193010795 37.9775641191884, 26.979300192764498 38.066373119271105, 26.92305419271213 38.06221811926724, 26.7632631925633 38.212982119407656, 26.681109192486787 38.20165411939709, 26.62582719243531 38.148882119347945, 26.608745192419406 38.10263611930489, 26.588473192400528 38.10193611930424, 26.545554192360555 38.11638211931768, 26.429582192252553 38.214709119409264, 26.33527319216472 38.22485411941872, 26.275827192109347 38.26443611945558, 26.28901819212163 38.367491119551545, 26.316245192146994 38.37388211955749, 26.322082192152436 38.341164119527036, 26.374718192201442 38.30554511949387, 26.470000192290172 38.361800119546245, 26.50985419232731 38.42548211960556, 26.47846319229808 38.44902711962749, 26.42069119224425 38.46506411964242, 26.388118192213938 38.44700911962562, 26.347909192176473 38.62388211979032, 26.357982192185858 38.65479111981912, 26.398327192223434 38.66693611983044, 26.481245192300662 38.66735411983083, 26.563327192377102 38.59831811976653, 26.61221819242263 38.52970911970263, 26.629436192438675 38.458054119635904, 26.59555419240712 38.45304511963124, 26.64790919245587 38.33332711951974, 26.691800192496743 38.3108541194988, 26.835000192630105 38.365554119549756, 27.09500019287225 38.39999111958181, 27.119300192894883 38.41054511959166, 27.156454192929488 38.45280911963101, 27.043191192823997 38.46110011963873, 26.947218192734624 38.44166411962064, 26.73374519253582 38.641936119807156, 26.727773192530265 38.72450011988403, 26.825418192621186 38.75430011991179, 26.90040919269103 38.81526411996856, 27.06298219284244 38.873182120022506, 27.052773192832944 38.9266541200723, 26.956527192743295 38.937209120082144, 26.861245192654565 38.910054120056856, 26.80166319259908 38.955827120099485, 26.79763619259532 39.02388212016285, 26.88103619267298 39.068454120204365, 26.869718192662447 39.097909120231805, 26.813054192609684 39.156654120286504, 26.759327192559653 39.17326412030198, 26.728882192531273 39.22137312034678, 26.6447181924529 39.26305412038562, 26.664991192471774 39.30110012042104, 26.811382192608107 39.398891120512104, 26.895000192685984 39.4741541205822, 26.93714519272524 39.48331812059075, 26.951800192738887 39.55082712065362, 26.935136192723377 39.57554512067665, 26.881936192673834 39.57644512067748, 26.8174911926138 39.56166412066372, 26.669718192476182 39.55499112065749)), ((26.361100192188758 41.71105412266547, 26.332636192162255 41.74540912269748, 26.343954192172788 41.78234512273187, 26.3813181922076 41.8220001227688, 26.535727192351402 41.828045122774455, 26.558327192372445 41.85166412279645, 26.57529119238825 41.89864512284021, 26.56695419238048 41.93475412287381, 26.621382192431156 41.9730541229095, 26.962218192748594 42.003318122937685, 27.037218192818443 42.08360912301245, 27.070273192849243 42.08999112301839, 27.23305419300084 42.10999112303702, 27.286245193050377 42.100964123028604, 27.363263193122094 42.06284512299311, 27.39346319315024 42.00929112294324, 27.411527193167046 41.99471812292967, 27.56958219331426 41.90926412285009, 27.633327193373617 41.95582712289345, 27.8325001935591 42.00166412293615, 27.86708219359133 42.005545122939765, 28.01305419372727 41.98221812291803, 28.032491193745358 41.90915412284997, 27.987736193703682 41.89050912283261, 27.96548219368296 41.86360912280756, 27.967636193684967 41.82847312277485, 28.076663193786516 41.64777312260654, 28.216945193917155 41.523600122490905, 28.45805419414171 41.419436122393904, 28.83500019449275 41.2822181222661, 29.028882194673315 41.24388212223039, 29.04846319469158 41.25555412224128, 29.088882194729194 41.24624512223261, 29.10739119474644 41.2215541222096, 29.07100919471256 41.174364122165656, 29.039218194682945 41.15453612214719, 29.06839119471013 41.12310912211791, 29.03624519468019 41.05457312205408, 28.90249119455561 40.97777312198255, 28.827182194485488 40.95597312196227, 28.627773194299778 40.9605361219665, 28.59916319427313 40.97826412198302, 28.598327194272343 41.00694512200974, 28.56221819423871 41.07172712207006, 28.527082194206002 41.07971812207751, 28.553254194230362 41.05887312205809, 28.567773194243898 41.021236122023055, 28.541882194219767 40.99089112199479, 28.519300194198735 40.99026412199419, 28.423473194109505 41.043609122043875, 28.213054193913536 41.08027312207801, 28.076527193786376 41.05970912205888, 27.996945193712264 41.02777312202912, 27.94208219366118 40.968745121974166, 27.888054193610856 40.96803612197348, 27.77652719350698 41.009991122012565, 27.731945193465464 41.01249112201489, 27.505345193254414 40.981309121985845, 27.485136193235604 40.9641641219699, 27.46054519321271 40.9136091219228, 27.445554193198745 40.85235412186577, 27.291527193055288 40.7002641217241, 27.176663192948325 40.631654121660205, 27.020282192802682 40.59221812162349, 26.970554192756367 40.55470912158856, 26.87832719267047 40.53277312156811, 26.725409192528048 40.478054121517175, 26.679927192485707 40.44825412148941, 26.684927192490363 40.42727312146988, 26.615000192425214 40.35610912140359, 26.44027319226251 40.23749112129312, 26.321936192152293 40.10860012117308, 26.2179091920554 40.05290912112122, 26.164409192005593 40.05197312112034, 26.26763619210172 40.21846412127539, 26.267009192101142 40.259018121313176, 26.211591192049525 40.32214512137196, 26.604718192415646 40.50763612154472, 26.682918192488472 40.509854121546795, 26.7772181925763 40.5558271215896, 26.825827192621574 40.59159112162291, 26.792909192590912 40.65069112167794, 26.773745192573074 40.6599911216866, 26.69194519249689 40.63916412166722, 26.35277319218102 40.60750012163771, 26.28888219212149 40.59220912162348, 26.118609191962918 40.595127121626206, 26.076109191923337 40.61367312164347, 26.057354191905887 40.653600121680654, 26.044718191894106 40.73582712175724, 26.090545191936798 40.736109121757494, 26.120200191964415 40.747700121768304, 26.213609192051393 40.87720912188891, 26.2874911921202 40.90192712191194, 26.360409192188115 40.953882121960305, 26.372982192199828 41.027354122028754, 26.32389119215412 41.0930361220899, 26.32500019215513 41.23470912222186, 26.60750019241823 41.330964122311485, 26.635763192444557 41.364718122342936, 26.636382192445126 41.41346412238832, 26.604445192415398 41.54610012251186, 26.57027319238358 41.61138212257265, 26.361100192188758 41.71105412266547)), ((25.731663191602564 40.093036121158576, 25.66582719154124 40.12325412118673, 25.672218191547188 40.152491121213956, 25.776663191644474 40.21220912126958, 25.9405451917971 40.239991121295446, 26.01242719186405 40.15401812121539, 25.990000191843137 40.12887312119196, 25.958054191813403 40.121100121184725, 25.731663191602564 40.093036121158576)), ((27.601663193344137 40.57193612160461, 27.529236193276688 40.60180012163241, 27.532636193279842 40.649436121676786, 27.65110919339017 40.657218121684025, 27.70694519344218 40.64999112167729, 27.733536193466932 40.63540912166371, 27.7330541934665 40.62220912165142, 27.71985419345421 40.614018121643795, 27.601663193344137 40.57193612160461))) +AUT Austria MULTIPOLYGON (((10.471236177390182 46.87135412747139, 10.488209177405992 46.935991127531594, 10.430000177351758 46.98416412757646, 10.390763177315222 47.00256412759359, 10.350627177277858 46.991245127583056, 10.323327177252423 46.95555412754982, 10.31332717724311 46.933609127529365, 10.227500177163165 46.8769361274766, 10.160836177101089 46.85500012745615, 10.14180917708336 46.85134512745276, 10.131527177073792 46.85040912745188, 10.109445177053232 46.85027312745174, 10.05889117700616 46.866391127466756, 9.935000176890753 46.91277312750995, 9.877782176837485 46.9404091275357, 9.875836176835662 46.96818212756156, 9.891600176850346 47.00033612759151, 9.87291817683294 47.023045127612676, 9.719445176690016 47.05028212763804, 9.632500176609028 47.056664127643984, 9.598636176577514 47.06383612765066, 9.606945176585242 47.06805412765459, 9.633609176610065 47.09714512768167, 9.633891176610348 47.1305541277128, 9.622773176599992 47.150554127731425, 9.566391176547484 47.24389112781833, 9.53357317651691 47.27454512784689, 9.54000017652288 47.28416412785586, 9.610963176588967 47.36222712792855, 9.637363176613576 47.36958212793539, 9.670345176644275 47.39069112795505, 9.649654176625006 47.45860912801831, 9.596600176575606 47.469436128028406, 9.55980017654133 47.50209112805882, 9.566727176547772 47.540454128094524, 9.5779181765582 47.5374181280917, 9.608773176586936 47.52951812808436, 9.651509176626746 47.52951812808436, 9.692527176664953 47.52951812808436, 9.732791176702449 47.54111812809515, 9.746245176714979 47.56582712811817, 9.775418176742136 47.59124512814185, 9.810973176775263 47.59416412814457, 9.95500017690938 47.53971812809385, 10.043054176991404 47.49528212805248, 10.231736177167107 47.37374512793929, 10.211663177148438 47.32249112789154, 10.17333617711273 47.27471812784705, 10.228891177164485 47.27603612784827, 10.2744451772069 47.28889112786024, 10.336663177264853 47.31270012788244, 10.429718177351504 47.3961091279601, 10.473745177392516 47.437636127998786, 10.466182177385463 47.482909128040944, 10.436391177357734 47.529164128084034, 10.433682177355195 47.58048212813182, 10.481800177400004 47.58651812813744, 10.56944517748164 47.540273128094356, 10.69083617759469 47.55389112810704, 10.90944517779829 47.518054128073686, 10.9766631778609 47.40027312796397, 11.008336177890385 47.39582712795985, 11.02860917790926 47.395273127959314, 11.104027177979503 47.396527127960496, 11.296391178158672 47.428891127990624, 11.457500178308692 47.51221812806824, 11.505282178353212 47.50916412806541, 11.554445178398993 47.51554512807135, 11.57986317842267 47.524091128079306, 11.683054178518773 47.58471812813576, 11.920000178739429 47.614164128163196, 12.00639117881991 47.624445128172766, 12.060000178869814 47.62055412816915, 12.111109178917417 47.6147181281637, 12.14139117894564 47.61110912816034, 12.201554179001647 47.61299112816209, 12.207318179007018 47.63337312818106, 12.201109179001236 47.65749112820353, 12.455000179237686 47.6677731282131, 12.514445179293062 47.633254128180965, 12.566663179341703 47.64193612818906, 12.576391179350765 47.644164128191136, 12.60340017937591 47.672291128217324, 12.665836179434052 47.68500012822915, 12.736945179500282 47.68270912822703, 12.827845179584926 47.62124512816979, 12.805973179564575 47.61485412816384, 12.788191179547994 47.583536128134654, 12.80666317956522 47.55471812810782, 12.957873179706041 47.47701812803547, 13.012500179756898 47.46979112802873, 13.05333617979494 47.49756412805459, 13.100136179838529 47.64291812818996, 13.077500179817434 47.68735412823136, 13.058336179799596 47.70610912824881, 13.023054179766746 47.72416412826564, 12.993745179739449 47.71416412825633, 12.913954179665126 47.7250001282664, 12.944163179693277 47.788745128325786, 12.970554179717851 47.8105541283461, 13.008891179753562 47.854164128386714, 12.966663179714232 47.906945128435865, 12.918891179669743 47.95777312848318, 12.865345179619851 47.994600128517504, 12.857045179612129 48.01193612853365, 12.837500179593917 48.030000128550455, 12.799163179558235 48.054582128573344, 12.766245179527573 48.082218128599095, 12.759718179521485 48.12172712863588, 12.871245179625362 48.2029091287115, 13.017773179761832 48.25943612876415, 13.154445179889109 48.29221812879467, 13.258054179985606 48.29888212880087, 13.285273180010961 48.30527312880682, 13.31305418003683 48.315827128816665, 13.33500018005725 48.32860912882856, 13.39500018011313 48.36610012886348, 13.421873180138164 48.3910361288867, 13.437918180153105 48.429436128922475, 13.457500180171337 48.51555412900268, 13.443227180158061 48.560236129044284, 13.518609180228253 48.584582129066945, 13.602773180306656 48.568054129051575, 13.654718180355019 48.55166412903631, 13.676945180375725 48.53229112901826, 13.726000180421408 48.5155911290027, 13.80374518049382 48.58263612906515, 13.825418180513992 48.631109129110285, 13.81471818050403 48.7380541292099, 13.83360918052162 48.773609129243, 13.8580541805444 48.77055412924017, 13.883609180568186 48.763609129233686, 13.998609180675288 48.714027129187514, 14.051391180724465 48.66979112914632, 14.184163180848117 48.59610912907769, 14.278327180935804 48.58250012906501, 14.390273181040072 48.592500129074324, 14.446391181092338 48.6188911290989, 14.505554181147431 48.6283271291077, 14.611945181246512 48.62846412910784, 14.654445181286093 48.60847312908922, 14.700282181328788 48.58138212906397, 14.705418181333556 48.58513612906748, 14.719445181346629 48.60401812908506, 14.716663181344046 48.65430012913188, 14.727218181353862 48.693464129168376, 14.823745181443769 48.78506412925367, 14.8494451814677 48.78638212925489, 14.885554181501334 48.782773129251524, 14.95889118156964 48.79471812926266, 14.985000181593932 48.9391641293972, 14.97958218158891 48.97992712943514, 15.004163181611801 49.01139112946444, 15.02860918163455 49.01874512947131, 15.065554181668972 49.01471812946755, 15.156663181753828 48.99971812945358, 15.301391181888619 48.98778212944248, 15.359027181942281 48.984718129439614, 15.392500181973446 48.97360912942926, 15.451663182028568 48.95110912940831, 15.51444518208703 48.919991129379326, 15.546663182117044 48.91221812937209, 15.56443618213359 48.90916412936926, 15.585000182152726 48.899164129359946, 15.685973182246784 48.86401812932721, 15.746391182303057 48.85860912932216, 15.849427182399012 48.85970012932319, 15.964163182505871 48.804718129271976, 16.021663182559422 48.777218129246364, 16.060554182595638 48.76027312923057, 16.081109182614767 48.75471812922541, 16.103336182635474 48.75000012922101, 16.333054182849423 48.73305412920524, 16.382154182895135 48.736036129208, 16.412982182923855 48.75187312922276, 16.430827182940476 48.78221812925102, 16.45826318296602 48.81124512927806, 16.540554183042673 48.8123541292791, 16.658818183152817 48.78527312925385, 16.711663183202035 48.746382129217636, 16.785554183270847 48.71985412919295, 16.832918183314945 48.71624512918959, 16.871936183351295 48.725482129198184, 16.89250018337043 48.72582712919851, 16.917918183394107 48.70319112917741, 16.946182183420433 48.61906412909906, 16.943336183417784 48.57332712905648, 16.933327183408466 48.53277312901869, 16.9075001833844 48.50694512899466, 16.86569118334546 48.468745128959085, 16.855827183336288 48.4494361289411, 16.844718183325938 48.36197312885963, 16.92389118339969 48.28208212878522, 16.949718183423727 48.278045128781486, 16.9523631834262 48.250273128755595, 16.97527318344754 48.18832712869792, 16.9980181834687 48.169700128680574, 17.033545183501786 48.1452641286578, 17.069145183534943 48.13526412864849, 17.08110918354609 48.088336128604794, 17.11666318357922 48.03860912855848, 17.1663821836255 48.01250012853416, 17.146945183607414 48.000000128522515, 17.1080541835712 47.97138212849586, 17.06055418352696 47.87693612840792, 17.054445183521267 47.847218128380234, 17.05680018352345 47.7945821283312, 17.06860918353445 47.768327128306765, 17.07166318353731 47.72860912826977, 17.05389118352076 47.70944512825193, 16.955273183428915 47.69471812823821, 16.91082718338751 47.69082712823459, 16.824445183307063 47.683882128228106, 16.76416318325093 47.68540912822954, 16.735836183224535 47.70208212824505, 16.72347318321303 47.72645412826776, 16.63555418313115 47.76027312829925, 16.612218183109405 47.75916412829824, 16.558609183059474 47.75638212829563, 16.450554182958854 47.698054128241324, 16.43263618294216 47.66638212821181, 16.493054182998435 47.646664128193464, 16.596663183094932 47.62889112817689, 16.632573183128358 47.634436128182074, 16.666391183159874 47.61443612816345, 16.71389118320411 47.54388212809772, 16.705273183196084 47.52110912807652, 16.655200183149447 47.458154128017895, 16.592500183091033 47.42528212798729, 16.473891182980594 47.4187451279812, 16.45200918296021 47.412845127975686, 16.456391182964296 47.368891127934745, 16.491391182996892 47.28193612785378, 16.474300182980954 47.25999112783333, 16.44471818295341 47.24443612781886, 16.420900182931234 47.21040912778716, 16.459300182966984 47.14729112772838, 16.505554183010076 47.115000127698295, 16.504863183009434 47.006764127597506, 16.445000182953663 47.004718127595595, 16.412500182923395 47.007773127598426, 16.346945182862356 47.0099911276005, 16.302773182821227 47.01138212760179, 16.27666318279691 46.988054127580085, 16.25360918277542 46.958327127552394, 16.137918182667676 46.8788911274784, 16.11180018264335 46.869718127469866, 16.009309182547895 46.83549112743799, 15.988327182528366 46.831591127434365, 15.987918182527977 46.75513612736316, 15.859027182407942 46.72319112733339, 15.83278218238351 46.722218127332496, 15.806663182359188 46.71860912732913, 15.602500182169024 46.686664127299395, 15.406109181986125 46.65250012726756, 15.139445181737784 46.65721812727196, 15.102918181703757 46.656664127271455, 15.074409181677225 46.648573127263916, 15.055136181659265 46.652082127267164, 14.867500181484502 46.61332712723109, 14.833745181453082 46.57069112719137, 14.82500018144492 46.54138212716407, 14.813191181433922 46.51138212713613, 14.54500018118415 46.40749112703938, 14.47805418112182 46.41944512705052, 14.153682180819715 46.44263612707212, 14.128891180796643 46.46305412709114, 14.11583618078447 46.47888212710586, 14.08221818075316 46.48916412711546, 13.936945180617869 46.515827127140284, 13.845554180532758 46.52000012714416, 13.776109180468069 46.51832712714261, 13.718654180414575 46.52660912715032, 13.6111091803144 46.5480451271703, 13.555000180262141 46.55624512717793, 13.428891180144717 46.56304512718427, 13.257500179985072 46.561945127183236, 12.82555417958281 46.63124512724778, 12.778336179538826 46.647918127263296, 12.757773179519688 46.649718127264975, 12.747927179510498 46.644491127260096, 12.735627179499062 46.641318127257165, 12.692500179458875 46.65971812727429, 12.590273179363692 46.6588821272735, 12.554445179330315 46.66166412727611, 12.486173179266729 46.682364127295386, 12.44055417922425 46.690827127303265, 12.404300179190471 46.70555412731699, 12.383745179171342 46.72110912733146, 12.301663179094902 46.84110912744322, 12.232218179030212 46.888882127487705, 12.185554178986763 46.90791812750544, 12.160273178963223 46.928054127524206, 12.1361091789407 46.96694512756042, 12.133018178937817 47.0125641276029, 12.194582178995176 47.03298212762192, 12.223891179022473 47.06304512764993, 12.230836179028927 47.07221812765846, 12.22750017902581 47.084164127669595, 12.186109178987266 47.094582127679274, 12.140127178944454 47.084809127670184, 12.075282178884066 47.05943612764656, 11.761245178591594 46.97819112757088, 11.731109178563514 46.978882127571524, 11.71013617854399 46.99638212758782, 11.621945178461857 47.01277312760308, 11.483891178333295 47.0141641276044, 11.177154178047601 46.96735412756081, 11.118054177992576 46.929991127525994, 11.100554177976278 46.91540912751242, 11.09708217797305 46.891591127490244, 11.071391177949124 46.8234641274268, 11.016800177898261 46.7733271273801, 10.88778217777812 46.771109127378026, 10.834163177728186 46.786945127392784, 10.791663177688605 46.801382127406214, 10.76326317766214 46.8305541274334, 10.680136177584728 46.8738181274737, 10.646945177553818 46.870418127470515, 10.599718177509828 46.85777312745873, 10.563609177476195 46.84888212745045, 10.4977731774149 46.8552731274564, 10.476109177394704 46.86569112746611, 10.471236177390182 46.87135412747139))) +CZE Czech Republic MULTIPOLYGON (((18.145282184537194 49.14500012958888, 18.149445184541065 49.12139112956689, 18.121945184515454 49.08277312953092, 18.075282184472 49.041945129492916, 17.911109184319088 48.98499112943986, 17.841945184254683 48.9283271293871, 17.76027318417863 48.878191129340394, 17.71221818413386 48.85610912931983, 17.67750018410152 48.851945129315965, 17.650273184076184 48.851945129315965, 17.50278218393882 48.838882129303784, 17.411245183853566 48.8247181292906, 17.382218183826524 48.825273129291105, 17.330827183778666 48.85027312931439, 17.23832718369252 48.87242712933502, 17.18790918364556 48.86944512933226, 17.112218183575067 48.83180012929719, 17.04152718350923 48.76832712923809, 17.022500183491502 48.74360912921506, 16.98832718345969 48.68166412915738, 16.946182183420433 48.61906412909906, 16.917918183394107 48.70319112917741, 16.89250018337043 48.72582712919851, 16.871936183351295 48.725482129198184, 16.832918183314945 48.71624512918959, 16.785554183270847 48.71985412919295, 16.711663183202035 48.746382129217636, 16.658818183152817 48.78527312925385, 16.540554183042673 48.8123541292791, 16.45826318296602 48.81124512927806, 16.430827182940476 48.78221812925102, 16.412982182923855 48.75187312922276, 16.382154182895135 48.736036129208, 16.333054182849423 48.73305412920524, 16.103336182635474 48.75000012922101, 16.081109182614767 48.75471812922541, 16.060554182595638 48.76027312923057, 16.021663182559422 48.777218129246364, 15.964163182505871 48.804718129271976, 15.849427182399012 48.85970012932319, 15.746391182303057 48.85860912932216, 15.685973182246784 48.86401812932721, 15.585000182152726 48.899164129359946, 15.56443618213359 48.90916412936926, 15.546663182117044 48.91221812937209, 15.51444518208703 48.919991129379326, 15.451663182028568 48.95110912940831, 15.392500181973446 48.97360912942926, 15.359027181942281 48.984718129439614, 15.301391181888619 48.98778212944248, 15.156663181753828 48.99971812945358, 15.065554181668972 49.01471812946755, 15.02860918163455 49.01874512947131, 15.004163181611801 49.01139112946444, 14.97958218158891 48.97992712943514, 14.985000181593932 48.9391641293972, 14.95889118156964 48.79471812926266, 14.885554181501334 48.782773129251524, 14.8494451814677 48.78638212925489, 14.823745181443769 48.78506412925367, 14.727218181353862 48.693464129168376, 14.716663181344046 48.65430012913188, 14.719445181346629 48.60401812908506, 14.705418181333556 48.58513612906748, 14.700282181328788 48.58138212906397, 14.654445181286093 48.60847312908922, 14.611945181246512 48.62846412910784, 14.505554181147431 48.6283271291077, 14.446391181092338 48.6188911290989, 14.390273181040072 48.592500129074324, 14.278327180935804 48.58250012906501, 14.184163180848117 48.59610912907769, 14.051391180724465 48.66979112914632, 13.998609180675288 48.714027129187514, 13.883609180568186 48.763609129233686, 13.8580541805444 48.77055412924017, 13.83360918052162 48.773609129243, 13.81826318050733 48.77985412924883, 13.81200918050152 48.800209129267785, 13.780136180471828 48.83401812929927, 13.761663180454633 48.8459641293104, 13.745627180439698 48.87075412933348, 13.7281271804234 48.88131812934333, 13.69944518039668 48.87930012934143, 13.672218180371317 48.88944512935089, 13.651945180352442 48.90443612936485, 13.62610918032837 48.94763612940508, 13.595345180299717 48.957427129414185, 13.564827180271294 48.973664129429324, 13.509718180219977 48.97250012942823, 13.402545180120171 49.00619112945961, 13.396109180114166 49.049164129499644, 13.318473180041877 49.10082712954775, 13.173054179906444 49.16721812960958, 13.031109179774234 49.28777312972184, 12.959027179707107 49.33492712976576, 12.887200179640217 49.34038212977086, 12.79721817955641 49.33985412977037, 12.674445179442074 49.42500012984965, 12.597773179370677 49.52750012994511, 12.57860917935281 49.56055412997591, 12.554718179330564 49.61666413002817, 12.515482179294025 49.677218130084555, 12.47610917925735 49.69082713009723, 12.45555417923822 49.695545130101635, 12.468473179250253 49.78347313018352, 12.54597317932243 49.90958213030095, 12.491391179271602 49.97582713036266, 12.471109179252693 49.98583613037198, 12.4294451792139 49.99389113037947, 12.307500179100316 50.04749113042939, 12.265554179061269 50.06610913044673, 12.206145179005944 50.106209130484075, 12.193818178994462 50.13631813051214, 12.209163179008755 50.16360913053754, 12.122082178927656 50.30846413067246, 12.093700178901202 50.32253613068556, 12.18263617898404 50.31458213067813, 12.281109179075742 50.21846413058864, 12.32305417911482 50.20666413057765, 12.325554179117148 50.23610913060506, 12.398609179185172 50.30916413067311, 12.486109179266663 50.37305413073261, 12.51541817929396 50.3924911307507, 12.62097317939228 50.41194513076883, 12.67139117943924 50.41194513076883, 12.740418179503507 50.431518130787055, 12.772218179533127 50.4450001307996, 12.825136179582415 50.45304513080711, 12.855836179611003 50.442218130797016, 12.898336179650585 50.42527313078122, 12.917218179668168 50.414718130771405, 12.94471817969378 50.410000130767, 12.985554179731821 50.41832713077477, 12.991945179737769 50.42110913077735, 13.015273179759504 50.439300130794294, 13.07944517981926 50.49805413084903, 13.187218179919626 50.5027731308534, 13.206109179937215 50.52040913086984, 13.22322717995317 50.551418130898725, 13.249582179977722 50.58916413093388, 13.37833618009762 50.629436130971385, 13.414863180131647 50.61138213095455, 13.436663180151953 50.60527313094886, 13.463400180176848 50.60166413094552, 13.518473180228142 50.64187313098296, 13.510827180221014 50.650554130991054, 13.541109180249208 50.68971813102752, 13.582218180287498 50.7094451310459, 13.634718180336392 50.72221813105779, 13.66944518036874 50.72582713106115, 13.734163180429022 50.73082713106581, 13.891109180575171 50.768882131101236, 13.903609180586812 50.78819113111922, 13.990691180667909 50.814445131143685, 14.155554180821468 50.84304513117033, 14.31139118096661 50.8822181312068, 14.368327181019623 50.93500013125595, 14.32124518097578 50.9461091312663, 14.258054180916929 50.995136131311966, 14.28555418094254 51.03750013135141, 14.30624518096181 51.05249113136537, 14.491663181134498 51.03666413135065, 14.569163181206676 51.005554131321674, 14.59721818123279 50.982500131300185, 14.628336181261773 50.92360913124534, 14.631391181264632 50.881100131205756, 14.619236181253285 50.85825413118448, 14.65166318128351 50.8472181311742, 14.717782181345086 50.8291641311574, 14.739718181365504 50.82388213115246, 14.771527181395129 50.8183271311473, 14.80291818142436 50.81971813114859, 14.82500018144492 50.85638213118273, 14.828336181448037 50.86582713119154, 14.966663181576877 50.85916413118534, 15.00389118161155 50.86750013119308, 15.019163181625771 50.95055413127045, 15.016391181623192 50.97409113129237, 15.176945181772709 51.0147181313302, 15.239445181830916 50.991945131308995, 15.275273181864293 50.9750001312932, 15.29041818187838 50.94895413126895, 15.272500181861687 50.9245091312462, 15.282773181871278 50.89208213121597, 15.311663181898183 50.86034513118642, 15.36284518194583 50.84061813116804, 15.37971818196155 50.77944513111109, 15.48833618206271 50.78666413111782, 15.606663182172923 50.772773131104856, 15.787500182341319 50.744164131078236, 15.946945182489827 50.689436131027264, 16.024436182562 50.630000130971894, 16.071391182605737 50.635554130977084, 16.11805418264919 50.6578001309978, 16.13750018266728 50.656109130996214, 16.237500182760414 50.67055413100968, 16.332009182848452 50.66402713100359, 16.370000182883814 50.644164130985104, 16.43027318293997 50.601527130945385, 16.447363182955883 50.57881813092425, 16.40666318291798 50.523045130872305, 16.35891818287351 50.49790913084888, 16.31500018283259 50.504718130855224, 16.207736182732702 50.43901813079404, 16.21902718274322 50.41027313076725, 16.266109182787062 50.38971813074812, 16.303054182821484 50.37805413073727, 16.37194518288564 50.36110913072147, 16.441391182950326 50.316664130680095, 16.45860918296634 50.30360013066792, 16.548054183049658 50.22708213059664, 16.56221818306284 50.20819113057905, 16.565973183066347 50.17034513054381, 16.587773183086654 50.140000130515546, 16.61443618311148 50.119718130496665, 16.64000018313527 50.10889113048657, 16.715345183205443 50.09832713047675, 16.786663183271884 50.140545130516074, 16.802936183287017 50.169654130543165, 16.811245183294773 50.17943613055229, 16.846945183328017 50.201800130573105, 16.911391183388048 50.222354130592265, 16.968609183441316 50.22277313059263, 17.00221818347262 50.21694513058722, 16.972773183445213 50.31000013067387, 16.93750018341234 50.340554130702344, 16.868745183348324 50.41118213076811, 16.890973183369027 50.43867313079372, 16.91082718338751 50.44012713079508, 16.941391183415988 50.435000130790286, 17.05778218352438 50.41055413076754, 17.11805418358051 50.3966641307546, 17.205273183661745 50.36097313072136, 17.22694518368192 50.345273130706715, 17.283609183734683 50.32027313068343, 17.378327183822904 50.27944513064543, 17.433054183873878 50.270273130636866, 17.626800184054304 50.26554513063249, 17.661109184086257 50.27235413063883, 17.693473184116414 50.30000013066456, 17.697009184119707 50.32027313068343, 17.724445184145253 50.31901813068228, 17.7530541841719 50.29777313066248, 17.762918184181075 50.233327130602476, 17.76368218418179 50.20937313058016, 17.695273184118093 50.1790271305519, 17.6427731840692 50.17194513054531, 17.606318184035246 50.162700130536706, 17.65777318408317 50.10805413048581, 17.840136184252998 49.98958213037545, 17.87624518428663 49.978954130365565, 17.920691184328007 49.977364130364094, 18.00944518441068 50.01110913039551, 18.053163184451392 50.055927130437254, 18.094163184489588 50.03805413042062, 18.270273184653604 49.95777313034583, 18.35027318472811 49.938891130328244, 18.552709184916637 49.92242713031291, 18.578745184940885 49.912218130303415, 18.579345184941445 49.81499113021286, 18.634163184992502 49.73778213014097, 18.786945185134783 49.68193613008896, 18.810827185157024 49.673327130080935, 18.839445185183678 49.59499113000797, 18.847773185191443 49.55416412996996, 18.852218185195568 49.52777312994536, 18.85124518519467 49.51735412993568, 18.79277318514022 49.513882129932426, 18.65555418501242 49.504164129923396, 18.56590018492892 49.49367312991362, 18.544373184908864 49.461800129883926, 18.383191184758743 49.33305412976404, 18.312500184692908 49.305691129738534, 18.275691184658626 49.30097312973416, 18.211318184598696 49.28638212972055, 18.176245184566028 49.24430012968136, 18.174163184564094 49.210273129649664, 18.158118184549153 49.16471812960725, 18.145282184537194 49.14500012958888))) +DNK Denmark MULTIPOLYGON (((9.61027317658835 55.39443613540914, 9.597573176576503 55.37151813538779, 9.671454176645312 55.27958213530215, 9.706182176677657 55.263464135287165, 9.710763176681922 55.24110013526632, 9.677154176650618 55.19117313521983, 9.636245176612533 55.18124513521059, 9.613473176591327 55.19250013522105, 9.574582176555111 55.18950913521829, 9.489445176475812 55.15193613518329, 9.461527176449806 55.122145135155534, 9.507500176492613 55.05028213508862, 9.548609176530903 55.032491135072036, 9.636391176612676 55.016391135057034, 9.725627176695781 54.98992713503239, 9.766109176733465 54.89638213494527, 9.735518176704971 54.830800134884214, 9.624163176601286 54.85360913490544, 9.614163176591973 54.890545134939856, 9.642845176618664 54.906109134954335, 9.631873176608451 54.92353613497056, 9.597500176576432 54.9277731349745, 9.502782176488239 54.868327134919156, 9.445354176434734 54.825400134879175, 9.414718176406211 54.83332713488656, 9.377218176371287 54.82763613488126, 9.350836176346718 54.810554134865356, 9.248336176251257 54.81263613486729, 9.230836176234959 54.8293001348828, 9.228891176233162 54.84958213490168, 9.168891176177283 54.865000134916045, 8.941109175965124 54.905545134953826, 8.835091175866381 54.913791134961485, 8.719445175758693 54.891109134940365, 8.692773175733862 54.89582713494477, 8.664545175707559 54.91309113496084, 8.654718175698406 54.98194513502497, 8.676109175718324 55.114164135148116, 8.560136175610324 55.0917271351272, 8.492082175546955 55.06270013510019, 8.469718175526111 55.07930013511563, 8.457636175514864 55.12721813516026, 8.475136175531162 55.17958213520902, 8.497363175551868 55.19624513522456, 8.563054175613047 55.19374513522223, 8.590073175638196 55.18259113521182, 8.559300175609536 55.15937313519021, 8.576963175625991 55.14232713517433, 8.63802717568285 55.131745135164465, 8.68902717573036 55.140064135172224, 8.689445175730754 55.160273135191034, 8.661391175704637 55.20332713523115, 8.658054175701523 55.258609135282626, 8.661800175704997 55.317082135337074, 8.638054175682896 55.40277313541688, 8.618191175664379 55.43110913544328, 8.594582175642415 55.44208213545349, 8.536109175587939 55.44916413546011, 8.444863175502974 55.4520821354628, 8.307500175375026 55.55332713555711, 8.256945175327957 55.49110013549915, 8.092918175175186 55.55620913555978, 8.139445175218526 55.624718135623596, 8.180418175256676 55.71680013570935, 8.185554175261473 55.74304513573381, 8.166391175243632 55.84832713583185, 8.127709175207599 55.983818135958046, 8.14847317522694 55.97347313594841, 8.160136175237795 55.948191135924844, 8.191391175266915 55.81069113579679, 8.276663175346329 55.83500013581943, 8.39569117545716 55.89471813587505, 8.38527317544748 55.92333613590171, 8.316945175383836 56.01401813598616, 8.311391175378674 56.05118213602077, 8.26291817533351 56.07888213604656, 8.223891175297183 56.09277313605949, 8.141454175220389 56.109027136074644, 8.146109175224723 56.0717271360399, 8.126391175206379 55.997464135970745, 8.108327175189544 56.01777313598964, 8.101391175183096 56.061800136030655, 8.122773175203008 56.3491641362983, 8.121182175201511 56.54826313648371, 8.160691175238298 56.64554513657433, 8.194718175269998 56.691382136616994, 8.220727175294229 56.707427136631935, 8.237782175310116 56.68777313661363, 8.205482175280025 56.6388821365681, 8.24971817532122 56.605000136536546, 8.327218175393398 56.57999113651326, 8.396109175457553 56.581663136514834, 8.470836175527154 56.56110013649567, 8.519163175572174 56.54305413647887, 8.643536175687984 56.474300136414826, 8.740209175778034 56.49012713642958, 8.762573175798849 56.560582136495185, 8.713891175753531 56.58478213651773, 8.680827175722726 56.61784513654851, 8.84194517587278 56.722636136646116, 8.86791817589696 56.756663136677815, 8.960000175982714 56.80527313672306, 9.07278217608777 56.80761813672527, 9.1108361761232 56.79228213671098, 9.141736176151966 56.697845136623016, 9.054309176070547 56.62930013655918, 9.044718176061622 56.595618136527804, 9.062918176078568 56.565754136500004, 9.091873176105537 56.57180013650563, 9.102154176115107 56.60315413653484, 9.177773176185553 56.62666313655674, 9.218336176223318 56.633745136563334, 9.248891176251789 56.63332713656294, 9.27830917627918 56.613127136544136, 9.251245176253974 56.58180013651494, 9.272918176274146 56.553054136488186, 9.318263176316378 56.52540913646243, 9.373573176367898 56.557082136491914, 9.352918176348652 56.568463136502515, 9.32000017631799 56.68139113660769, 9.297500176297035 56.70319113662799, 9.171836176180022 56.67464513660141, 9.165000176173635 56.892491136804296, 9.178200176185953 56.916027136826216, 9.302573176301763 56.999854136904304, 9.365554176360433 57.012218136915806, 9.417636176408934 57.01916313692229, 9.472500176460017 57.01916313692229, 9.519445176503751 57.01582713691917, 9.55513617653699 57.00596313690997, 9.68610917665896 57.03860913694038, 9.769445176736582 57.05374513695449, 9.853609176814956 57.04555413694686, 9.950791176905483 57.05850913695892, 9.97427317692734 57.07172713697122, 10.179445177118424 56.994163136899004, 10.237082177172113 56.982218136887866, 10.311891177241762 56.981309136887006, 10.285136177216856 56.95763613686498, 10.269509177202309 56.91298213682339, 10.286527177218147 56.8002731367184, 10.30527317723562 56.74805413666979, 10.24055417717534 56.71777313664157, 10.15694517709747 56.7202731366439, 9.86639117682688 56.650273136578704, 9.886391176845507 56.64193613657096, 9.933054176888959 56.64166313657071, 10.003609176954654 56.65916313658701, 10.077218177023212 56.68610013661208, 10.177218177116345 56.696391136621656, 10.343054177270801 56.69263613661818, 10.356945177283734 56.67652713660317, 10.36194517728839 56.6450001365738, 10.328745177257474 56.61626313654705, 10.279300177211411 56.59680013652891, 10.21471817715127 56.54430013648002, 10.18777317712619 56.468609136409526, 10.22847317716409 56.48110913642117, 10.22416317716008 56.50694513644524, 10.231873177167245 56.54874513648417, 10.30866317723877 56.57816313651156, 10.364027177290325 56.55714513649198, 10.420273177342722 56.52610913646308, 10.530282177445173 56.508327136446525, 10.786945177684203 56.534163136470596, 10.847636177740725 56.5223541364596, 10.961945177847184 56.44221813638495, 10.921391177809426 56.34360913629311, 10.745000177645124 56.16389113612573, 10.683891177588237 56.19437313615413, 10.683891177588237 56.21943613617748, 10.641945177549161 56.22943613618679, 10.616391177525372 56.2254821361831, 10.589718177500515 56.20721813616609, 10.552427177465802 56.15724513611954, 10.574236177486085 56.120964136085774, 10.548818177462437 56.10040913606662, 10.519718177435323 56.099718136065974, 10.390000177314505 56.16194513612393, 10.355691177282552 56.197491136157026, 10.437363177358634 56.219927136177915, 10.479445177397821 56.22055413617852, 10.504927177421564 56.27103613622552, 10.448609177369093 56.291936136245, 10.400554177324352 56.29083613624397, 10.239363177174226 56.17260913613387, 10.217773177154129 56.14180013610516, 10.258745177192282 56.087636136054726, 10.279718177211805 56.01888213599068, 10.250836177184908 55.91735413589615, 10.184582177123218 55.828191135813086, 10.143054177084537 55.84117313582519, 10.128400177070887 55.86590013584822, 10.099718177044167 55.8779181358594, 9.982500176934991 55.87166413585359, 9.869582176829852 55.84374513582759, 9.887218176846261 55.83430013581878, 10.044445176992696 55.815691135801444, 10.045827176993981 55.750273135740514, 9.992773176944581 55.70499113569835, 9.806945176771507 55.669854135665645, 9.730127176699966 55.68706413568165, 9.679863176653157 55.70624513569953, 9.644300176620021 55.711391135704304, 9.554582176536485 55.70298213569649, 9.577773176558082 55.69360913568775, 9.616663176594301 55.69500013568904, 9.646109176621707 55.68971813568413, 9.819163176782894 55.60471813560497, 9.704163176675792 55.53110913553641, 9.589718176569193 55.41819113543124, 9.600836176579548 55.39958213541391, 9.61027317658835 55.39443613540914)), ((12.339454179130087 55.590209135591465, 12.253336179049882 55.55250013555633, 12.192363178993105 55.482427135491065, 12.191663178992457 55.46166413547175, 12.206663179006426 55.43832713545001, 12.227918179026204 55.42610913543862, 12.297782179091286 55.403054135417165, 12.376663179164751 55.395273135409894, 12.43333617921752 55.359582135376655, 12.452773179235635 55.333473135352364, 12.462218179244417 55.28958213531146, 12.44624517922955 55.27443613529738, 12.412500179198105 55.25582713528004, 12.329582179120905 55.234164135259874, 12.2438911790411 55.236936135262454, 12.203336179003315 55.22805413525418, 12.025554178837751 55.169445135199595, 12.015073178827976 55.153227135184494, 12.061800178871493 55.131800135164525, 12.091527178899184 55.129164135162085, 12.13055417893554 55.13360913516621, 12.17874517898042 55.11847313515213, 12.171245178973436 55.000209135041985, 12.158609178961655 54.99277313503504, 12.071945178880952 54.96860913501254, 12.041109178852224 54.96638213501046, 11.995000178809278 54.97138213501512, 11.95166317876894 54.99958213504138, 11.912082178732078 55.00401813504553, 11.896036178717111 54.987845135030454, 11.900909178721662 54.97882713502207, 11.859718178683295 55.0138821350547, 11.8402731786652 55.02332713506351, 11.730554178563011 55.06055413509819, 11.797782178625624 55.15582713518691, 11.730836178563266 55.2036091352314, 11.694509178529444 55.20760013523511, 11.658336178495745 55.18721813521614, 11.553054178397701 55.19082713521951, 11.42777317828103 55.21582713524279, 11.306109178167702 55.18889113521769, 11.257773178122704 55.195418135223775, 11.24541817811118 55.202073135229966, 11.187773178057512 55.33888213535738, 11.217636178085314 55.39638213541093, 11.203609178072242 55.448882135459826, 11.14444517801715 55.57750013557961, 11.086391177963094 55.66638213566239, 10.994163177877198 55.692500135686714, 10.879718177770599 55.73430013572565, 10.897218177786897 55.73916413573019, 10.94083617782752 55.73888213572991, 11.12944517800318 55.721664135713894, 11.138609178011706 55.71360913570638, 11.168609178039645 55.702773135696276, 11.211109178079226 55.69888213569266, 11.343336178202378 55.74750013573794, 11.486945178336128 55.84166413582565, 11.50639117835425 55.86721813584944, 11.51610917836328 55.89513613587545, 11.509027178356689 55.91651813589536, 11.49166317834053 55.93027313590815, 11.44916317830095 55.942500135919545, 11.359718178217634 55.94916413592577, 11.27742717814101 55.9763821359511, 11.273336178137185 55.99166413596535, 11.409163178263697 55.961391135937134, 11.606391178447382 55.936382135913846, 11.664445178501438 55.941664135918785, 11.752782178583715 55.96443613593999, 11.76833617859819 55.9634731359391, 11.779300178608395 55.95242713592879, 11.739718178571536 55.92139113589988, 11.670273178506875 55.89054513587118, 11.670554178507132 55.81416413580004, 11.717500178550836 55.79332713578063, 11.733263178565522 55.793818135781095, 11.74528217857673 55.7841641357721, 11.765554178595607 55.75860913574829, 11.799863178627561 55.68555413568026, 11.794436178622504 55.661664135658015, 11.823327178649407 55.67909113567424, 11.843609178668288 55.76444513575373, 11.904027178724562 55.92680013590493, 11.914163178734015 55.92971813590765, 11.959445178776178 55.91721813589601, 11.989863178804512 55.90290913588268, 12.000136178814074 55.89180013587233, 12.056245178866334 55.74680013573729, 12.055418178865551 55.7330541357245, 12.048191178858815 55.722500135714654, 12.028609178840583 55.71500013570767, 11.970554178786529 55.71750013571, 11.93666317875497 55.676936135672236, 11.935836178754187 55.653327135650244, 12.059582178869448 55.65569113565243, 12.092218178899827 55.69832713569215, 12.093891178901401 55.71110913570405, 12.087773178895702 55.73888213572991, 12.0722181788812 55.764536135753815, 12.040973178852113 55.92166413590016, 12.011109178824285 55.95777313593376, 11.93389117875239 55.95000013592653, 11.87124517869404 55.93666413591413, 11.851109178675273 55.945827135922656, 11.847082178671542 55.95555413593172, 11.862636178686017 55.96819113594347, 11.919163178738671 55.99443613596793, 12.174163178976158 56.10360913606959, 12.275000179070048 56.127218136091585, 12.301663179094902 56.12860913609288, 12.514163179292808 56.087773136054835, 12.617291179388843 56.04013613601049, 12.593891179367063 56.0047181359775, 12.570273179345065 55.994018135967536, 12.527773179305484 55.945827135922656, 12.516245179294742 55.92250013590092, 12.519163179297465 55.91138213589056, 12.575136179349585 55.84680013583042, 12.5975001793704 55.79610913578321, 12.600273179373005 55.75443613574441, 12.584163179358 55.735273135726544, 12.59798217937086 55.70256413569609, 12.550000179326162 55.657218135653864, 12.524163179302121 55.63944513563732, 12.502782179282207 55.63138213562979, 12.492845179272933 55.60360913560393, 12.442573179226116 55.60763613560769, 12.432500179216731 55.61555413561507, 12.403891179190111 55.616664135616105, 12.339454179130087 55.590209135591465)), ((8.415800175475908 56.67812713660467, 8.5169451755701 56.6681911365954, 8.579063175627937 56.68767313661354, 8.607218175654168 56.63055413656036, 8.598191175645752 56.60721813653862, 8.545900175597069 56.58517313651808, 8.454118175511582 56.646827136575496, 8.39828217545957 56.672045136598996, 8.24416317531606 56.70430013662903, 8.235273175307782 56.74624513666811, 8.236109175308542 56.77221813669229, 8.245836175317606 56.80666313672438, 8.290554175359262 56.86027313677428, 8.378891175441538 56.945545136853724, 8.450554175508273 57.005000136909075, 8.618473175664661 57.12152713701761, 8.646945175691172 57.12319113701915, 8.713891175753531 57.106109137003244, 8.766109175802143 57.10110913699859, 8.846663175877183 57.10832713700532, 9.01721817603601 57.15360913704748, 9.196109176202611 57.136109137031184, 9.39131817638443 57.15214513704612, 9.49583617648176 57.19027313708162, 9.580554176560668 57.24110013712897, 9.649445176624823 57.303327137186926, 9.70778217667916 57.36500013724435, 9.7681911767354 57.44013613731434, 9.95770917691192 57.58624513745042, 10.161109177101338 57.59221813745597, 10.21833617715464 57.602218137465286, 10.295273177226306 57.62319113748481, 10.540836177454992 57.738882137592554, 10.569163177481386 57.74597313759918, 10.64595417755288 57.73626313759013, 10.569163177481386 57.70666313756257, 10.526391177441553 57.68360913754108, 10.458191177378012 57.62540913748688, 10.44263617736354 57.60916313747177, 10.431800177353438 57.585691137449885, 10.435836177357203 57.55138213741793, 10.446109177366765 57.53214513740002, 10.528054177443096 57.41389113728988, 10.530273177445167 57.222563137111706, 10.44805417736859 57.1806911370727, 10.419027177341547 57.150273137044366, 10.336618177264796 56.991663136896676, 10.223336177159297 56.991936136896925, 10.026391176975892 57.084991136983575, 10.004718176955691 57.089618136987895, 9.500000176485628 57.04639113694762, 9.249582176252432 56.995827136900544, 9.227636176231982 56.99930013690377, 9.115545176127597 57.05277313695356, 9.115554176127603 57.038673136940446, 9.030327176048218 57.01565413691901, 8.885827175913647 56.99750013690209, 8.767773175803711 56.95103613685882, 8.73000017576851 56.95708213686444, 8.67660017571879 56.948118136856095, 8.618191175664379 56.87943613679215, 8.613473175660005 56.85319113676769, 8.567218175616915 56.81618213673323, 8.507782175561573 56.79888213671711, 8.486318175541584 56.785754136704895, 8.463054175519915 56.69777313662294, 8.415800175475908 56.67812713660467)), ((10.000300176951583 55.54126413554587, 10.148609177089696 55.574164135576524, 10.212500177149195 55.598882135599524, 10.29430017722538 55.61582713561532, 10.31847317724791 55.61443613561403, 10.402363177326038 55.58721813558867, 10.484718177402726 55.5324911355377, 10.448745177369233 55.48013613548895, 10.423473177345699 55.46332713547329, 10.425209177347313 55.441527135452986, 10.473745177392516 55.43763613544937, 10.60389117751373 55.486100135494496, 10.614163177523295 55.51943613552555, 10.616036177525018 55.61051813561036, 10.66027317756624 55.587636135589065, 10.745345177645447 55.49166413549969, 10.790554177687568 55.36278213537966, 10.831454177725647 55.29937313532059, 10.813745177709166 55.195827135224164, 10.783327177680832 55.12409113515736, 10.734863177635702 55.06527313510256, 10.621809177530395 55.060691135098295, 10.5915271775022 55.055409135093385, 10.519445177435074 55.02860913506842, 10.152773177093593 55.08444513512043, 10.135273177077295 55.11721813515095, 10.151945177092813 55.12979113516266, 10.1110361770547 55.183054135212274, 10.005836176956734 55.193327135221836, 9.89680017685518 55.28277313530512, 9.887773176846792 55.339436135357914, 9.810836176775126 55.43666413544847, 9.76805417673529 55.466945135476664, 9.728891176698824 55.47416413548339, 9.679718176653012 55.49708213550471, 9.748609176717167 55.540273135544936, 9.826109176789345 55.54485413554923, 9.843127176805211 55.520345135526384, 9.874027176833977 55.50790913551481, 9.900136176858297 55.505691135512734, 9.928745176884945 55.512364135518965, 10.000300176951583 55.54126413554587)), ((10.989891177873204 54.79084513484699, 11.025273177906172 54.81443613486897, 11.014027177895684 54.89305413494219, 11.057782177936446 54.93500013498124, 11.13639117800966 54.95389113499883, 11.239718178105875 54.95721813500194, 11.28832717815115 54.943054134988756, 11.336800178196285 54.9144361349621, 11.361109178218925 54.883891134933634, 11.393327178248938 54.8680451349189, 11.513891178361234 54.829718134883194, 11.564445178408306 54.821936134875955, 11.642500178480987 54.877773134927935, 11.644027178482418 54.90437313495272, 11.656945178494453 54.903882134952255, 11.70860917854256 54.87527313492561, 11.847218178671653 54.767918134825635, 11.861945178685374 54.74458213480389, 11.857218178680967 54.68638213474969, 11.833891178659258 54.66110913472616, 11.780282178609326 54.64041813470689, 11.640554178479192 54.66250013472745, 11.583609178426144 54.66346413472837, 11.46944517831983 54.621382134689156, 11.45492717830632 54.619854134687756, 11.377218178233932 54.64666413471272, 11.315282178176261 54.67555413473963, 11.26221817812683 54.70721813476911, 11.14444517801715 54.73693613479679, 11.028891177909543 54.75735413481581, 10.989891177873204 54.79084513484699)), ((15.042500181647483 54.99471813503686, 14.942500181554351 55.0133271350542, 14.74694518137224 55.06527313510256, 14.678745181308727 55.10082713513569, 14.698891181327497 55.21500013524201, 14.745273181370692 55.294027135315616, 14.765973181389967 55.305273135326075, 14.838609181457599 55.25054513527513, 14.997500181605574 55.18721813521614, 15.137636181736099 55.14139113517345, 15.148609181746309 55.129164135162085, 15.149163181746843 55.08582713512172, 15.105282181705974 55.02319113506337, 15.076663181679322 55.00110913504281, 15.042500181647483 54.99471813503686)), ((11.85059117867479 54.954782134999675, 12.02000017883256 54.89638213494527, 12.060836178870602 54.891109134940365, 12.08236317889066 54.89360913494269, 12.110554178916914 54.887500134937, 12.168191178970574 54.83770013489064, 12.119718178925439 54.80639113486146, 12.055273178865434 54.77471813483197, 11.96971817878574 54.69943613476187, 11.95860917877539 54.663327134728235, 11.97902717879441 54.57020013464151, 11.966800178783018 54.56193613463381, 11.926245178745262 54.57444513464546, 11.871945178694688 54.651382134717096, 11.8711091786939 54.667218134731854, 11.87778217870013 54.687773134750984, 11.891945178713314 54.70110913476341, 11.899163178720045 54.71860913477971, 11.801945178629495 54.839164134892, 11.753745178584609 54.85694513490856, 11.710973178544776 54.939164134985134, 11.746527178577878 54.96000013500452, 11.85059117867479 54.954782134999675)), ((8.655282175698943 56.67416313660098, 8.63694517568186 56.69721813662244, 8.6030541756503 56.72582713664909, 8.559309175609542 56.73805413666048, 8.517363175570495 56.73200913665485, 8.509445175563116 56.73860913666098, 8.546109175597252 56.79332713671195, 8.617009175663298 56.83084513674689, 8.653400175697186 56.88985413680186, 8.736109175774203 56.89444513680613, 8.815418175848066 56.905827136816725, 8.858536175888219 56.95409113686168, 8.89971817592658 56.95527313686276, 8.91082717593693 56.94832713685631, 8.924718175949863 56.92055413683045, 8.8788911759072 56.79860913671686, 8.831391175862962 56.743327136665386, 8.76847317580436 56.692909136618425, 8.655282175698943 56.67416313660098)), ((10.00000017695129 54.983718135026606, 10.043054176991404 54.939027134985, 10.069163177015724 54.89526413494423, 10.07250017701881 54.88540913493506, 10.069300177015833 54.873882134924315, 9.978609176931371 54.8586091349101, 9.931663176887668 54.861382134912674, 9.78291817674912 54.90950913495752, 9.758336176726232 54.96139113500581, 9.760763176728489 54.97985413502303, 9.829163176792207 54.941936134987714, 9.841736176803892 54.941800134987574, 9.83750017679995 54.97347313501709, 9.796245176761545 55.01305413505395, 9.69874517667074 55.010136135051226, 9.677918176651332 55.01680013505742, 9.63145417660806 55.04901813508744, 9.63944517661551 55.05860913509636, 9.712363176683425 55.08166413511785, 9.754163176722358 55.08444513512043, 9.79250017675804 55.07500013511162, 9.969027176922452 55.01069113505173, 10.00000017695129 54.983718135026606)), ((10.71471817761693 54.72500013478566, 10.70041817760361 54.72736413478788, 10.675000177579932 54.75388213481256, 10.65555417756184 54.80250013485784, 10.651945177558474 54.83721813489018, 10.681945177586414 54.90860913495666, 10.736663177637382 54.959718135004266, 10.797500177694019 54.98825413503084, 10.850554177743447 55.04500013508368, 10.90944517779829 55.141109135173195, 10.929027177816522 55.15708213518806, 10.952082177838008 55.159300135190136, 10.959091177844527 55.14790913517953, 10.896800177786503 54.999436135041265, 10.857773177750175 54.967773135011754, 10.838891177732592 54.943327134989005, 10.756945177656263 54.7772181348343, 10.71471817761693 54.72500013478566)), ((12.183609178984938 54.88027313493026, 12.150836178954421 54.88610913493571, 12.115836178921825 54.90416413495254, 12.134027178938766 54.95402713499897, 12.177773178979521 54.982500135025475, 12.31194517910447 55.03527313507462, 12.452218179235103 55.026936135066876, 12.506663179285823 55.015827135056526, 12.533327179310646 55.005200135046636, 12.556454179332178 54.963745135008025, 12.546391179322825 54.94819113499352, 12.520554179298756 54.94416413498979, 12.468336179250116 54.95666413500143, 12.404163179190363 54.96305413500738, 12.33805417912879 54.95888213500348, 12.310418179103038 54.94971813499495, 12.264163179059977 54.91916413496651, 12.183609178984938 54.88027313493026)), ((10.666891177572381 55.892582135873056, 10.666245177571795 55.87208213585396, 10.610973177520322 55.76152713575101, 10.589163177500012 55.75750013574725, 10.544718177458606 55.761109135750615, 10.527773177442839 55.76749113575656, 10.511663177427835 55.80500013579149, 10.51639117743224 55.970836135945945, 10.523609177438942 55.981382135955755, 10.544163177458103 55.99430013596779, 10.558891177471821 55.99708213597037, 10.556663177469744 55.9697181359449, 10.560554177473364 55.95277313592911, 10.621945177530534 55.87097313585295, 10.635273177542956 55.86458213584697, 10.654863177561197 55.86471813584711, 10.664582177570253 55.87333613585514, 10.666891177572381 55.892582135873056)), ((10.98221817786606 57.22166313711088, 10.950000177836046 57.245827137133375, 10.922500177810434 57.25082713713803, 10.89610917778586 57.24471813713234, 10.879863177770744 57.24666313713416, 10.865000177756883 57.25221813713932, 10.857636177750038 57.264582137150825, 10.919718177807852 57.301936137185635, 11.025836177906683 57.32027313720269, 11.147363178019873 57.331527137213186, 11.18979117805938 57.32540913720749, 11.19639117806554 57.31250013719546, 11.058336177936951 57.24082713712872, 10.98221817786606 57.22166313711088)), ((10.407218177330549 54.82139113487543, 10.245691177180106 54.90596413495422, 10.190836177129029 54.958054135002726, 10.186736177125198 54.97443613501798, 10.306663177236913 54.926936134973744, 10.44083617736186 54.863882134915, 10.432782177354369 54.84166413489433, 10.407218177330549 54.82139113487543)), ((10.56528217747777 54.94610913499159, 10.552500177465845 54.9484641349938, 10.51500017743092 54.981109135024184, 10.50180017741863 55.00672713504804, 10.62721817753544 55.04360913508239, 10.67583617758072 54.99193613503428, 10.669791177575092 54.97714513502049, 10.615000177524053 54.950273134995456, 10.56528217747777 54.94610913499159))) +HUN Hungary MULTIPOLYGON (((21.48940918765166 46.684536127297406, 21.453536187618226 46.6846451272975, 21.327563187500914 46.62061812723786, 21.308054187482753 46.589854127209236, 21.293609187469286 46.532491127155794, 21.288891187464912 46.46054512708881, 21.21916318739997 46.40833612704017, 21.202773187384707 46.39680912702943, 21.188327187371243 46.37193612700628, 21.178609187362184 46.326945126964375, 21.17736318736104 46.29736412693683, 21.080827187271126 46.246936126889864, 21.049373187241827 46.24082712688417, 20.98971818718627 46.2547181268971, 20.868609187073474 46.27610912691702, 20.846382187052768 46.27916412691988, 20.825000187032856 46.27597312691691, 20.79590018700577 46.265727126907365, 20.78305418699381 46.259436126901505, 20.757354186969877 46.242909126886104, 20.720273186935344 46.18958212683643, 20.726954186941555 46.17556412682339, 20.719654186934747 46.16610012681457, 20.687663186904956 46.146309126796126, 20.622082186843897 46.130827126781725, 20.582773186807287 46.155000126804225, 20.563327186789166 46.16499112681353, 20.53527318676305 46.17304512682105, 20.48694518671803 46.181109126828545, 20.34027318658144 46.15943612680837, 20.27430018651998 46.140409126790644, 20.26102718650762 46.11485412676686, 20.257773186504608 46.11804512676983, 20.202773186453385 46.1505541268001, 20.115273186371894 46.16721812681561, 19.9611091862283 46.17082712681898, 19.84958218612445 46.15214512680157, 19.744718186026773 46.162218126810956, 19.703718185988606 46.17639112682414, 19.666527185953953 46.181109126828545, 19.565273185859667 46.17277312682077, 19.50631818580476 46.139227126789535, 19.51631818581407 46.11811812676987, 19.46389118576525 46.076382126731005, 19.284027185597722 45.988882126649514, 19.154091185476716 45.988609126649266, 19.127500185451936 46.02090012667935, 19.093054185419874 46.02221812668057, 19.00263618533566 45.959445126622114, 18.8588911852018 45.91110912657709, 18.835827185180307 45.91110912657709, 18.817018185162794 45.91296412657883, 18.807500185153913 45.902773126569315, 18.7800001851283 45.89471812656183, 18.71944518507192 45.91151812657748, 18.618473184977887 45.85139112652146, 18.59847318495926 45.82791812649961, 18.555554184919288 45.800000126473606, 18.433745184805844 45.750973126427965, 18.407500184781384 45.748327126425494, 18.332636184711674 45.75443612643119, 18.248054184632906 45.767291126443155, 18.2258271846122 45.779718126454725, 18.19555418458401 45.78388212645859, 18.15332718454468 45.78721812646171, 18.006382184407812 45.78694512646146, 17.8808361842909 45.78388212645859, 17.660973184086146 45.83874512650971, 17.652691184078435 45.85313612652311, 17.644854184071136 45.88527312655302, 17.62610918405366 45.90582712657218, 17.58256318401311 45.93756412660173, 17.458609183897664 45.95443612661745, 17.42757318386876 45.94029112660428, 17.38944518383326 45.93804512660219, 17.354854183801052 45.95166412661487, 17.311391183760577 45.975273126636836, 17.25742718371032 46.02096412667942, 17.25471818370778 46.05332712670955, 17.234718183689154 46.09041812674408, 17.18277318364079 46.15458212680383, 17.152709183612785 46.18027312682776, 17.040273183508077 46.214164126859345, 16.97305418344547 46.23360912687744, 16.937773183412617 46.2494541268922, 16.919718183395787 46.25999112690201, 16.89139118336942 46.283745126924146, 16.880582183359337 46.304509126943486, 16.87902718335789 46.308573126947266, 16.874300183353483 46.34533612698149, 16.84055418332207 46.369991127004454, 16.801391183285602 46.39139112702438, 16.661109183154934 46.46555412709347, 16.628609183124667 46.47500012710225, 16.60787318310537 46.47623612710342, 16.53097318303375 46.50902712713395, 16.408609182919776 46.6588821272735, 16.385554182898318 46.701664127313364, 16.375327182888782 46.722773127333, 16.359300182873852 46.72020012733063, 16.32527318284218 46.7558271273638, 16.31548218283305 46.79430012739962, 16.33721818285329 46.80916412741348, 16.34902718286429 46.842354127444395, 16.298191182816936 46.86930012746947, 16.269718182790427 46.874445127474274, 16.229445182752926 46.876245127475954, 16.181036182707828 46.86458212746507, 16.139791182669427 46.85916412746005, 16.11180018264335 46.869718127469866, 16.137918182667676 46.8788911274784, 16.25360918277542 46.958327127552394, 16.27666318279691 46.988054127580085, 16.302773182821227 47.01138212760179, 16.346945182862356 47.0099911276005, 16.412500182923395 47.007773127598426, 16.445000182953663 47.004718127595595, 16.504863183009434 47.006764127597506, 16.505554183010076 47.115000127698295, 16.459300182966984 47.14729112772838, 16.420900182931234 47.21040912778716, 16.44471818295341 47.24443612781886, 16.474300182980954 47.25999112783333, 16.491391182996892 47.28193612785378, 16.456391182964296 47.368891127934745, 16.45200918296021 47.412845127975686, 16.473891182980594 47.4187451279812, 16.592500183091033 47.42528212798729, 16.655200183149447 47.458154128017895, 16.705273183196084 47.52110912807652, 16.71389118320411 47.54388212809772, 16.666391183159874 47.61443612816345, 16.632573183128358 47.634436128182074, 16.596663183094932 47.62889112817689, 16.493054182998435 47.646664128193464, 16.43263618294216 47.66638212821181, 16.450554182958854 47.698054128241324, 16.558609183059474 47.75638212829563, 16.612218183109405 47.75916412829824, 16.63555418313115 47.76027312829925, 16.72347318321303 47.72645412826776, 16.735836183224535 47.70208212824505, 16.76416318325093 47.68540912822954, 16.824445183307063 47.683882128228106, 16.91082718338751 47.69082712823459, 16.955273183428915 47.69471812823821, 17.05389118352076 47.70944512825193, 17.07166318353731 47.72860912826977, 17.06860918353445 47.768327128306765, 17.05680018352345 47.7945821283312, 17.054445183521267 47.847218128380234, 17.06055418352696 47.87693612840792, 17.1080541835712 47.97138212849586, 17.146945183607414 48.000000128522515, 17.1663821836255 48.01250012853416, 17.181109183639222 48.020764128541856, 17.239191183693322 48.02569112854644, 17.251654183704943 48.02499112854579, 17.263191183715662 48.0075001285295, 17.311945183761082 47.99805412852072, 17.341945183789022 47.99575412851857, 17.411882183854146 47.944745128471055, 17.445209183885197 47.91305412844156, 17.462082183900918 47.892082128422004, 17.485863183923044 47.87796412840888, 17.71221818413386 47.770554128308845, 17.787282184203775 47.74642712828637, 17.896945184305906 47.74755412828742, 17.908882184317008 47.75069112829033, 17.976109184379624 47.76360912830236, 18.08610918448207 47.75943612829849, 18.125409184518674 47.75610912829538, 18.19582718458426 47.747773128287605, 18.30471818468567 47.73750012827804, 18.33750018471619 47.740827128281154, 18.37860918475448 47.7472181282871, 18.413327184786823 47.7538821282933, 18.449300184820316 47.76735412830587, 18.540836184905572 47.76749112830598, 18.59721818495808 47.76305412830186, 18.636945184995085 47.75916412829824, 18.663054185019405 47.75971812829874, 18.68291818503789 47.76638212830494, 18.729654185081415 47.795482128332054, 18.75778218510763 47.814354128349635, 18.78805418513582 47.817218128352295, 18.84971818519324 47.8177731283528, 18.854718185197896 47.83166412836576, 18.820000185165554 47.85555412838801, 18.783500185131572 47.87208212840338, 18.759654185109355 47.9147181284431, 18.77166318512056 47.96555412849045, 18.82736318517243 48.03612712855616, 18.845336185189154 48.04912712856827, 18.907282185246856 48.05797312857652, 18.965673185301227 48.05980012857822, 18.989800185323702 48.067100128585025, 19.001273185334384 48.06895412858674, 19.041709185372042 48.07063612858832, 19.13945418546308 48.06167312857997, 19.20833618552723 48.05944512857789, 19.4724271857732 48.089436128605826, 19.497291185796342 48.1359001286491, 19.508609185806876 48.1730451286837, 19.53021818582701 48.20892712871711, 19.63055418592046 48.23389112874034, 19.653327185941663 48.23291812873944, 19.75500018603634 48.20944512871759, 19.78683618606601 48.1969091287059, 19.9106271861813 48.13048212864405, 19.939863186208527 48.13624512864942, 19.969027186235678 48.15347312866547, 20.010136186273968 48.173882128684454, 20.05932718631979 48.17630912868671, 20.093327186351445 48.198327128707234, 20.140554186395434 48.2261091287331, 20.23555418648391 48.27499112877862, 20.283018186528096 48.25571812876069, 20.317218186559955 48.26971812877372, 20.340827186581947 48.28610912878898, 20.363054186602653 48.304582128806175, 20.402500186639372 48.36124512885897, 20.414163186650256 48.39971812889479, 20.43583618667043 48.43360912892635, 20.451109186684647 48.44874512894046, 20.499445186729673 48.48305412897241, 20.50082718673096 48.504436128992324, 20.539718186767175 48.5369451290226, 20.652918186872597 48.561664129045624, 20.71333618692887 48.56916412905261, 20.818054187026405 48.57617312905913, 20.84347318705008 48.56763612905118, 20.870000187074766 48.550827129035525, 20.946391187145935 48.524718129011205, 21.084445187274497 48.513609129000855, 21.153327187338647 48.51110912899853, 21.253891187432316 48.52221812900888, 21.308709187483345 48.54804512903294, 21.438191187603934 48.57534512905835, 21.50721818766823 48.5488821290337, 21.617291187770746 48.49250012898119, 21.625409187778303 48.45888212894988, 21.722354187868604 48.35533612885345, 21.780973187923195 48.34069112883981, 21.828127187967112 48.34346412884241, 21.85250018798979 48.362145128859794, 21.935836188067412 48.37916412887566, 21.965000188094564 48.38194512887824, 22.029445188154597 48.3875001288834, 22.064863188187587 48.385136128881214, 22.098609188219 48.37798212887455, 22.150554188267392 48.408609128903066, 22.151445188268212 48.411918128906166, 22.171718188287088 48.40905412890348, 22.214300188326746 48.41777312891159, 22.27020918837883 48.40221812889712, 22.270273188378894 48.359991128857786, 22.34777318845107 48.27499112877862, 22.38097318848199 48.244854128750575, 22.454718188550657 48.2436091287494, 22.494609188587816 48.24970012875508, 22.574718188662416 48.18720912869688, 22.597773188683902 48.14582712865834, 22.60523618869084 48.11648212863099, 22.625718188709925 48.10034512861597, 22.64703618872977 48.094318128610354, 22.679791188760277 48.094991128610985, 22.737773188814288 48.11443612862911, 22.790273188863182 48.116654128631154, 22.84654518891557 48.083164128599975, 22.883227188949746 48.04048212856023, 22.85916318892734 47.99389112851682, 22.894800188960517 47.954536128480186, 22.78000018885359 47.84298212837629, 22.653609188735885 47.77638212831425, 22.634163188717793 47.77166412830988, 22.60360918868932 47.76777312830623, 22.55221818864146 47.76708212830559, 22.5018001885945 47.79028212832722, 22.481109188575232 47.79555412833213, 22.44985418854614 47.79485412833148, 22.32097318842611 47.7466641282866, 22.273745188382122 47.72624512826758, 22.225273188336985 47.679300128223844, 22.19139118830543 47.628745128176774, 22.189836188303957 47.603954128153674, 22.186391188300775 47.598609128148695, 22.167909188283545 47.58832712813913, 22.118009188237068 47.5781091281296, 22.03777318816236 47.53360912808816, 22.013882188140087 47.51061812806674, 22.008327188134928 47.478609128036936, 22.020273188146064 47.45082712801107, 22.02055418814632 47.42528212798729, 22.013473188139727 47.39013612795455, 21.998536188125797 47.37360912793915, 21.962500188092235 47.36804512793398, 21.929445188061464 47.3589541279255, 21.87166318800766 47.296527127867364, 21.842291187980294 47.22923612780468, 21.84721818798488 47.1981181277757, 21.783473187925523 47.11492712769822, 21.743191187887987 47.09819112768264, 21.710000187857077 47.079718127665444, 21.652500187803525 47.02756412761687, 21.655500187806325 47.02086412761062, 21.692218187840524 47.006282127597046, 21.670827187820606 46.96139112755523, 21.613327187767055 46.88416412748333, 21.53020918768965 46.8270091274301, 21.493400187655368 46.75475412736279, 21.525727187685476 46.72618212733619, 21.493891187655834 46.68694512729965, 21.48940918765166 46.684536127297406))) +POL Poland MULTIPOLYGON (((22.686063188766127 49.57709112999132, 22.678463188759054 49.56943612998418, 22.656873188738928 49.529854129947324, 22.69443618877392 49.450827129873716, 22.732791188809642 49.39720912982378, 22.758818188833885 49.28590012972012, 22.72666318880394 49.21776412965664, 22.703809188782657 49.16989112961207, 22.778054188851797 49.150545129594065, 22.85277318892139 49.10582712955241, 22.876518188943493 49.08741812953525, 22.86350018893137 49.049827129500244, 22.886073188952395 49.00291812945656, 22.86305418893096 49.003045129456694, 22.737773188814288 49.04721812949782, 22.5941451886805 49.091536129539094, 22.56847318865661 49.08790912953572, 22.558054188646906 49.079436129527835, 22.537773188628023 49.08791812953572, 22.348891188452114 49.13847312958282, 22.32389118842883 49.13860912958293, 22.225000188336708 49.15471812959794, 22.029891188155005 49.22023612965896, 22.02527318815072 49.247218129684086, 22.020136188145926 49.27388212970891, 21.958609188088616 49.340273129770736, 21.838054187976354 49.38443612981189, 21.612636187766412 49.436527129860394, 21.533609187692804 49.42971812985405, 21.50082718766228 49.42221812984707, 21.459300187623597 49.411945129837505, 21.436391187602283 49.4138911298393, 21.40084518756916 49.42905412985343, 21.281945187458433 49.45639112987888, 21.07152718726246 49.42208212984693, 21.050554187242938 49.41054512983621, 21.035554187228968 49.35971812978886, 20.982354187179425 49.30943612974204, 20.95582718715471 49.3016641297348, 20.913609187115384 49.296109129729615, 20.812500187021215 49.33082712976196, 20.740836186954482 49.38888212981601, 20.602773186825914 49.395554129822244, 20.360554186600325 49.393054129819916, 20.3277731865698 49.38332712981085, 20.206663186457007 49.340273129770736, 20.143609186398265 49.3149911297472, 20.103336186360764 49.24860012968537, 20.092636186350802 49.204854129644644, 20.07336318633284 49.17787312961951, 20.03916318630101 49.18889112962975, 20.020554186283675 49.199436129639594, 19.998900186263512 49.217627129656535, 19.979582186245523 49.22639112966468, 19.9363911862053 49.23110912966908, 19.911245186181873 49.22617312966449, 19.867909186141503 49.19712712963744, 19.842918186118226 49.19180012963247, 19.783473186062878 49.20020012964031, 19.76597318604658 49.21443612965356, 19.773609186053676 49.233054129670904, 19.798054186076456 49.252773129689245, 19.825654186102156 49.277564129712346, 19.805000186082907 49.364718129793516, 19.77801818605778 49.407491129833346, 19.710554185994965 49.39750012982404, 19.658609185946574 49.40666412983259, 19.577082185870665 49.45901812988134, 19.535273185831727 49.53555412995263, 19.52098218581841 49.57416412998859, 19.475554185776105 49.60000013001263, 19.447773185750236 49.600827130013414, 19.269027185583752 49.52666412994435, 19.24236318555893 49.506800129925836, 19.19930018551881 49.43777312986154, 19.191663185511715 49.41402712983944, 19.159582185481838 49.400273129826616, 19.031663185362703 49.39193612981887, 18.974927185309866 49.40193612982819, 18.968327185303707 49.456382129878875, 18.96860918530396 49.48166412990244, 18.85124518519467 49.51735412993568, 18.852218185195568 49.52777312994536, 18.847773185191443 49.55416412996996, 18.839445185183678 49.59499113000797, 18.810827185157024 49.673327130080935, 18.786945185134783 49.68193613008896, 18.634163184992502 49.73778213014097, 18.579345184941445 49.81499113021286, 18.578745184940885 49.912218130303415, 18.552709184916637 49.92242713031291, 18.35027318472811 49.938891130328244, 18.270273184653604 49.95777313034583, 18.094163184489588 50.03805413042062, 18.053163184451392 50.055927130437254, 18.00944518441068 50.01110913039551, 17.920691184328007 49.977364130364094, 17.87624518428663 49.978954130365565, 17.840136184252998 49.98958213037545, 17.65777318408317 50.10805413048581, 17.606318184035246 50.162700130536706, 17.6427731840692 50.17194513054531, 17.695273184118093 50.1790271305519, 17.76368218418179 50.20937313058016, 17.762918184181075 50.233327130602476, 17.7530541841719 50.29777313066248, 17.724445184145253 50.31901813068228, 17.697009184119707 50.32027313068343, 17.693473184116414 50.30000013066456, 17.661109184086257 50.27235413063883, 17.626800184054304 50.26554513063249, 17.433054183873878 50.270273130636866, 17.378327183822904 50.27944513064543, 17.283609183734683 50.32027313068343, 17.22694518368192 50.345273130706715, 17.205273183661745 50.36097313072136, 17.11805418358051 50.3966641307546, 17.05778218352438 50.41055413076754, 16.941391183415988 50.435000130790286, 16.91082718338751 50.44012713079508, 16.890973183369027 50.43867313079372, 16.868745183348324 50.41118213076811, 16.93750018341234 50.340554130702344, 16.972773183445213 50.31000013067387, 17.00221818347262 50.21694513058722, 16.968609183441316 50.22277313059263, 16.911391183388048 50.222354130592265, 16.846945183328017 50.201800130573105, 16.811245183294773 50.17943613055229, 16.802936183287017 50.169654130543165, 16.786663183271884 50.140545130516074, 16.715345183205443 50.09832713047675, 16.64000018313527 50.10889113048657, 16.61443618311148 50.119718130496665, 16.587773183086654 50.140000130515546, 16.565973183066347 50.17034513054381, 16.56221818306284 50.20819113057905, 16.548054183049658 50.22708213059664, 16.45860918296634 50.30360013066792, 16.441391182950326 50.316664130680095, 16.37194518288564 50.36110913072147, 16.303054182821484 50.37805413073727, 16.266109182787062 50.38971813074812, 16.21902718274322 50.41027313076725, 16.207736182732702 50.43901813079404, 16.31500018283259 50.504718130855224, 16.35891818287351 50.49790913084888, 16.40666318291798 50.523045130872305, 16.447363182955883 50.57881813092425, 16.43027318293997 50.601527130945385, 16.370000182883814 50.644164130985104, 16.332009182848452 50.66402713100359, 16.237500182760414 50.67055413100968, 16.13750018266728 50.656109130996214, 16.11805418264919 50.6578001309978, 16.071391182605737 50.635554130977084, 16.024436182562 50.630000130971894, 15.946945182489827 50.689436131027264, 15.787500182341319 50.744164131078236, 15.606663182172923 50.772773131104856, 15.48833618206271 50.78666413111782, 15.37971818196155 50.77944513111109, 15.36284518194583 50.84061813116804, 15.311663181898183 50.86034513118642, 15.282773181871278 50.89208213121597, 15.272500181861687 50.9245091312462, 15.29041818187838 50.94895413126895, 15.275273181864293 50.9750001312932, 15.239445181830916 50.991945131308995, 15.176945181772709 51.0147181313302, 15.016391181623192 50.97409113129237, 15.019163181625771 50.95055413127045, 15.00389118161155 50.86750013119308, 14.966663181576877 50.85916413118534, 14.828336181448037 50.86582713119154, 14.826182181446029 50.88305413120759, 14.896945181511938 50.95944513127873, 14.931109181543746 51.002491131318806, 14.96555418157584 51.05221813136512, 14.978891181588267 51.07832713138944, 14.994445181602742 51.11860913142695, 15.032218181637916 51.23916413153924, 15.033818181639418 51.28666413158348, 15.00263618161037 51.31680013161153, 14.983336181592392 51.333609131627185, 14.971663181581533 51.35721813164918, 14.981836181591007 51.36804513165927, 14.975554181585153 51.44082713172705, 14.953054181564198 51.4699911317542, 14.921109181534433 51.48194513176534, 14.837500181456562 51.49860013178085, 14.739445181365255 51.52652713180686, 14.715000181342475 51.55471813183311, 14.75923618138367 51.607491131882256, 14.756109181380765 51.66673613193743, 14.722082181349094 51.690964131960015, 14.698054181326711 51.70221813197048, 14.667982181298697 51.72388213199065, 14.600973181236299 51.82006413208023, 14.610136181244826 51.84819113210642, 14.645418181277677 51.865273132122326, 14.689863181319083 51.89694513215184, 14.717554181344866 51.94310913219482, 14.760763181385101 52.06986413231289, 14.707918181335884 52.24561813247655, 14.69250018132152 52.254436132484784, 14.655836181287384 52.2602731324902, 14.598891181234364 52.27277313250184, 14.579863181216638 52.28832713251634, 14.534445181174334 52.396245132616855, 14.543954181183182 52.42187313264071, 14.563191181201091 52.433191132651245, 14.585136181221543 52.43985413265747, 14.633536181266606 52.49055413270469, 14.63958218127226 52.57298213278145, 14.595782181231442 52.60682713281295, 14.554582181193098 52.627218132831956, 14.514445181155708 52.63916413284309, 14.478745181122463 52.652500132855494, 14.448327181094129 52.67528213287673, 14.383336181033599 52.730827132928454, 14.355000181007199 52.74832713294475, 14.205418180867895 52.8186091330102, 14.14916318081552 52.862782133051354, 14.14763618081409 52.95923613314116, 14.168891180833896 52.9733271331543, 14.200282180863127 52.984718133164904, 14.225418180886521 52.98888213316877, 14.293736180950162 53.01877313319662, 14.347363181000105 53.04888213322465, 14.38027318103076 53.11013613328171, 14.39169118104138 53.14416413331341, 14.412773181061027 53.30444513346268, 14.413263181061467 53.33895413349481, 14.309718180965035 53.55554513369654, 14.275627180933299 53.69906413383018, 14.36610918101755 53.699436133830545, 14.410691181059065 53.680545133812956, 14.525000181165524 53.660554133794335, 14.55471818119321 53.67860013381113, 14.620282181254282 53.76791813389431, 14.614163181248585 53.81638213393944, 14.580836181217535 53.847500133968424, 14.55347318119206 53.857773133977986, 14.476663181120529 53.86458213398433, 14.412573181060822 53.859927133979994, 14.339445180992726 53.80485413392873, 14.290000180946663 53.82277313394539, 14.266109180924417 53.83666413395835, 14.218891180880462 53.869018133988476, 14.215827180877596 53.89999113401731, 14.225554180886661 53.92860013404396, 14.249863180909301 53.92235413403816, 14.327773180981865 53.91250013402896, 14.35027318100282 53.910554134027166, 14.376391181027145 53.912218134028706, 14.425418181072786 53.92250013403827, 14.483327181126725 53.9472181340613, 14.504300181146249 53.95916413407244, 14.559445181197617 53.976664134088736, 14.745282181370698 54.0286091341371, 14.814445181435104 54.039164134146944, 14.979718181589021 54.071391134176935, 15.228054181820312 54.129436134231014, 15.30278218188991 54.14777313424807, 15.353891181937513 54.1563911342561, 15.395854181976574 54.16062713426007, 15.429445182007868 54.162218134261536, 15.493473182067504 54.166518134265544, 15.654163182217161 54.193882134291016, 15.752363182308613 54.214164134309925, 15.794163182347546 54.226109134321035, 15.839300182389564 54.24139113433526, 15.876391182424129 54.24638213433991, 16.04777318258374 54.26166413435416, 16.08139118261505 54.25430013434729, 16.14402718267337 54.252918134346004, 16.17471818270195 54.259164134351835, 16.21778218274207 54.27360913436527, 16.329445182846058 54.35680013444275, 16.304927182823235 54.372291134457186, 16.318336182835708 54.3911091344747, 16.408218182919427 54.46152713454029, 16.460554182968167 54.49971813457586, 16.489527182995147 54.51867313459351, 16.51555418301939 54.53416413460795, 16.543609183045504 54.54471813461777, 16.57166318307165 54.551109134623715, 16.63860918313398 54.56360913463536, 16.66527318315883 54.56693613463847, 16.701945183192976 54.56874513464015, 16.79332718327808 54.575827134646744, 16.884163183362688 54.58971813465968, 16.915273183391662 54.597773134667165, 16.939445183414165 54.60540913467429, 17.019163183488416 54.64750013471348, 17.036527183504575 54.66055413472566, 17.06583618353187 54.67347313473769, 17.251109183704415 54.730273134790565, 17.362218183807897 54.74777313480686, 17.434163183874915 54.75277313481152, 17.530554183964682 54.76221813482033, 17.59291818402275 54.77000013482757, 17.68660918411001 54.789091134845364, 17.774436184191813 54.80639113486146, 17.896945184305906 54.82388213487775, 17.918891184326355 54.82666413488036, 18.043327184442234 54.83402713488721, 18.3361091847149 54.83603613488907, 18.372773184749065 54.816109134870516, 18.449336184820368 54.78827313484459, 18.526836184892545 54.760773134818976, 18.578163184940337 54.744109134803466, 18.60583618496611 54.73560913479554, 18.703891185057444 54.700273134762625, 18.74000018509105 54.685273134748655, 18.77471818512339 54.666382134731066, 18.832673185177356 54.621036134688836, 18.82097318516648 54.593745134663436, 18.786109185133995 54.61860913468658, 18.77208218512095 54.63360913470055, 18.755554185105552 54.656109134721504, 18.730827185082518 54.678327134742204, 18.70624518505963 54.69360913475643, 18.57194518493455 54.72966413479, 18.503945184871213 54.753500134812214, 18.483400184852087 54.75911813481744, 18.46694518483676 54.73682713479667, 18.406109184780092 54.738191134797944, 18.468327184838046 54.66583613473057, 18.511391184878164 54.631100134698215, 18.547773184912046 54.58770013465781, 18.566663184929638 54.55069113462332, 18.56979118493254 54.4766641345544, 18.57430018493673 54.44652713452632, 18.595209184956218 54.42777313450884, 18.70833618506157 54.38277313446693, 18.757773185107624 54.37082713445582, 18.843745185187686 54.35180013443809, 18.893191185233718 54.34555413443229, 18.927354185265557 54.34638213443304, 18.953891185290274 54.35166413443798, 18.970554185305787 54.3451361344319, 19.02278218535443 54.342218134429174, 19.04639118537642 54.342218134429174, 19.138882185462535 54.346664134433325, 19.2125001855311 54.35388213444003, 19.374445185681935 54.3736001344584, 19.41750018572202 54.38055413446489, 19.43971818574272 54.38582713446979, 19.516800185814503 54.40708213448957, 19.56277318585734 54.42889113450988, 19.61332718590441 54.45471813453395, 19.627254185917366 54.46327313454191, 19.65110918593959 54.455827134534985, 19.63034518592025 54.443073134523104, 19.524436185821628 54.39666413447989, 19.42833618573212 54.36527313445063, 19.40805418571324 54.35889113444469, 19.376109185683475 54.35250013443874, 19.277636185591774 54.346109134432794, 19.230763185548113 54.33367313442122, 19.253327185569134 54.278191134369536, 19.37110918567882 54.26860013436061, 19.478745185779076 54.31416413440306, 19.57103618586501 54.34693613443358, 19.628745185918774 54.35054513443694, 19.713609185997797 54.383327134467464, 19.797009186075485 54.43754513451796, 19.857700186132007 54.42990913451084, 20.004163186268414 54.419154134500815, 20.090554186348868 54.41860013450031, 20.158609186412235 54.41193613449411, 20.30139118654523 54.3977731344809, 20.329082186571014 54.393836134477255, 20.33118218657296 54.393527134476955, 20.371663186610675 54.38777313447159, 20.43277318666759 54.38166413446592, 20.73888218695265 54.35804513444393, 20.89805418710091 54.3561001344421, 21.12638218731354 54.34166413442867, 21.181936187365295 54.33638213442373, 21.23193618741186 54.332773134420364, 21.283609187459973 54.32999113441778, 21.367218187537844 54.327218134415205, 21.411945187579505 54.32582713441391, 21.442491187607942 54.325554134413665, 21.524163187684024 54.326945134414956, 21.570436187727097 54.32820913441614, 21.577518187733716 54.32840013441631, 21.625554187778448 54.32971813441753, 21.73138218787699 54.330836134418576, 21.855554187992652 54.331664134419356, 21.981936188110353 54.332773134420364, 22.16500018828083 54.33499113442244, 22.265554188374495 54.3380451344253, 22.296154188402994 54.33990913442702, 22.42972718852738 54.345545134432285, 22.455554188551446 54.345545134432285, 22.630000188713893 54.348873134435365, 22.664163188745732 54.35110913443745, 22.766663188841193 54.35971813444547, 22.78588218885909 54.363836134449315, 22.812218188883605 54.39596413447924, 22.835136188904954 54.40512713448777, 22.86319118893107 54.40831813449074, 22.995063189053894 54.38575413446972, 23.115827189166367 54.304436134393995, 23.2044451892489 54.28721813437795, 23.33305418936868 54.2472181343407, 23.35610918939014 54.2354091343297, 23.45777318948484 54.17416413427267, 23.484436189509665 54.13832713423929, 23.49416318951873 54.11720913421962, 23.517500189540442 54.03874513414655, 23.508054189531663 53.960545134073726, 23.50403618952791 53.94704513406114, 23.502782189526755 53.942491134056894, 23.503891189527792 53.92138213403723, 23.51000918953349 53.89931813401668, 23.539718189561142 53.84082713396222, 23.580554189599184 53.731100133860025, 23.590445189608403 53.69442713382588, 23.59277318961057 53.68527313381733, 23.608609189625298 53.637500133772846, 23.61721818963332 53.61401813375099, 23.640273189654806 53.55915413369988, 23.673536189685763 53.49374513363898, 23.700554189710942 53.45304513360108, 23.785918189790436 53.3143361334719, 23.85860918985813 53.19582713336152, 23.933191189927584 53.012082133190376, 23.92749118992228 52.94837313313104, 23.9313821899259 52.85860913304745, 23.938663189932697 52.77470913296932, 23.93971818993367 52.77027313296517, 23.941100189934957 52.74971813294604, 23.935273189929546 52.717491132916024, 23.911800189907666 52.693182132893384, 23.88388218988166 52.678045132879305, 23.746800189753998 52.61464513282024, 23.71582718972516 52.61595413282146, 23.68832718969955 52.61720913282264, 23.655273189668776 52.61027313281616, 23.63360918964858 52.60555413281179, 23.597218189614694 52.59638213280323, 23.523054189545633 52.573609132782025, 23.50360918952751 52.56750013277633, 23.417218189447055 52.525273132737, 23.39721818942843 52.514445132726934, 23.37749118941005 52.49832713271192, 23.248382189289828 52.37448213259657, 23.165400189212534 52.28227313251071, 23.19277318923804 52.23319113246498, 23.214718189258463 52.223464132455945, 23.297773189335828 52.21166413244495, 23.3483271893829 52.2067911324404, 23.59500018961262 52.11193613235207, 23.638609189653238 52.0794361323218, 23.660827189673938 52.00610013225349, 23.62680018964224 51.95207313220317, 23.612482189628906 51.91595413216953, 23.55805418957823 51.7524911320173, 23.54777318956866 51.686382131955725, 23.555482189575827 51.66520013193602, 23.534991189556735 51.6535911319252, 23.53916318956064 51.592764131868535, 23.567173189586725 51.53960013181904, 23.6046361896216 51.527691131807956, 23.614091189630415 51.498627131780864, 23.64363618965794 51.48500913176818, 23.6927731897037 51.402354131691226, 23.68124518969296 51.369300131660424, 23.683882189695396 51.288609131585275, 23.731936189740168 51.21471813151646, 23.756663189763202 51.19943613150224, 23.81110918981389 51.168882131473765, 23.90500018990133 51.06805413137988, 23.931663189926184 50.994073131310984, 23.96513618995735 50.950409131270305, 23.988327189978946 50.93110913125233, 24.034300190021753 50.898254131221734, 24.0615001900471 50.887527131211755, 24.0902731900739 50.881936131206544, 24.143473190123444 50.859582131185704, 24.131036190111843 50.83818213116578, 24.07694519006148 50.82943613115765, 24.0525001900387 50.831382131159444, 24.021891190010194 50.83175413115981, 23.9809631899721 50.829582131157764, 23.958400189951078 50.815200131144394, 23.954382189947324 50.7917001311225, 24.01471819000352 50.73999113107433, 24.07221819005707 50.69582713103321, 24.107218190089668 50.63360913097526, 24.108409190090782 50.62590013096809, 24.111382190093536 50.56693613091318, 24.00221818999188 50.41443613077115, 23.98319118997415 50.405964130763266, 23.929436189924104 50.40360013076105, 23.88150018987946 50.405409130762735, 23.846945189847276 50.40665413076388, 23.814445189817008 50.40581813076312, 23.791945189796053 50.40249113076001, 23.75583618976242 50.394436130752524, 23.71759118972679 50.38383613074265, 23.69710918970773 50.37011813072988, 23.684173189695684 50.333700130695945, 23.591109189609 50.269154130635826, 23.568882189588294 50.25582713062343, 23.540273189561674 50.24278213061129, 23.496109189520524 50.220827130590834, 23.37832718941084 50.149718130524604, 23.342827189377772 50.1274911305039, 23.324436189360654 50.11527313049251, 23.303609189341245 50.100827130479075, 23.228191189271 50.04666413042864, 23.14610918919456 49.98304513036939, 23.11082718916171 49.954991130343245, 22.78000018885359 49.67500013008248, 22.71721818879513 49.60443613001678, 22.686063188766127 49.57709112999132))) +SVK Slovakia MULTIPOLYGON (((19.001273185334384 48.06895412858674, 18.989800185323702 48.067100128585025, 18.965673185301227 48.05980012857822, 18.907282185246856 48.05797312857652, 18.845336185189154 48.04912712856827, 18.82736318517243 48.03612712855616, 18.77166318512056 47.96555412849045, 18.759654185109355 47.9147181284431, 18.783500185131572 47.87208212840338, 18.820000185165554 47.85555412838801, 18.854718185197896 47.83166412836576, 18.84971818519324 47.8177731283528, 18.78805418513582 47.817218128352295, 18.75778218510763 47.814354128349635, 18.729654185081415 47.795482128332054, 18.68291818503789 47.76638212830494, 18.663054185019405 47.75971812829874, 18.636945184995085 47.75916412829824, 18.59721818495808 47.76305412830186, 18.540836184905572 47.76749112830598, 18.449300184820316 47.76735412830587, 18.413327184786823 47.7538821282933, 18.37860918475448 47.7472181282871, 18.33750018471619 47.740827128281154, 18.30471818468567 47.73750012827804, 18.19582718458426 47.747773128287605, 18.125409184518674 47.75610912829538, 18.08610918448207 47.75943612829849, 17.976109184379624 47.76360912830236, 17.908882184317008 47.75069112829033, 17.896945184305906 47.74755412828742, 17.787282184203775 47.74642712828637, 17.71221818413386 47.770554128308845, 17.485863183923044 47.87796412840888, 17.462082183900918 47.892082128422004, 17.445209183885197 47.91305412844156, 17.411882183854146 47.944745128471055, 17.341945183789022 47.99575412851857, 17.311945183761082 47.99805412852072, 17.263191183715662 48.0075001285295, 17.251654183704943 48.02499112854579, 17.239191183693322 48.02569112854644, 17.181109183639222 48.020764128541856, 17.1663821836255 48.01250012853416, 17.11666318357922 48.03860912855848, 17.08110918354609 48.088336128604794, 17.069145183534943 48.13526412864849, 17.033545183501786 48.1452641286578, 16.9980181834687 48.169700128680574, 16.97527318344754 48.18832712869792, 16.9523631834262 48.250273128755595, 16.949718183423727 48.278045128781486, 16.92389118339969 48.28208212878522, 16.844718183325938 48.36197312885963, 16.855827183336288 48.4494361289411, 16.86569118334546 48.468745128959085, 16.9075001833844 48.50694512899466, 16.933327183408466 48.53277312901869, 16.943336183417784 48.57332712905648, 16.946182183420433 48.61906412909906, 16.98832718345969 48.68166412915738, 17.022500183491502 48.74360912921506, 17.04152718350923 48.76832712923809, 17.112218183575067 48.83180012929719, 17.18790918364556 48.86944512933226, 17.23832718369252 48.87242712933502, 17.330827183778666 48.85027312931439, 17.382218183826524 48.825273129291105, 17.411245183853566 48.8247181292906, 17.50278218393882 48.838882129303784, 17.650273184076184 48.851945129315965, 17.67750018410152 48.851945129315965, 17.71221818413386 48.85610912931983, 17.76027318417863 48.878191129340394, 17.841945184254683 48.9283271293871, 17.911109184319088 48.98499112943986, 18.075282184472 49.041945129492916, 18.121945184515454 49.08277312953092, 18.149445184541065 49.12139112956689, 18.145282184537194 49.14500012958888, 18.158118184549153 49.16471812960725, 18.174163184564094 49.210273129649664, 18.176245184566028 49.24430012968136, 18.211318184598696 49.28638212972055, 18.275691184658626 49.30097312973416, 18.312500184692908 49.305691129738534, 18.383191184758743 49.33305412976404, 18.544373184908864 49.461800129883926, 18.56590018492892 49.49367312991362, 18.65555418501242 49.504164129923396, 18.79277318514022 49.513882129932426, 18.85124518519467 49.51735412993568, 18.96860918530396 49.48166412990244, 18.968327185303707 49.456382129878875, 18.974927185309866 49.40193612982819, 19.031663185362703 49.39193612981887, 19.159582185481838 49.400273129826616, 19.191663185511715 49.41402712983944, 19.19930018551881 49.43777312986154, 19.24236318555893 49.506800129925836, 19.269027185583752 49.52666412994435, 19.447773185750236 49.600827130013414, 19.475554185776105 49.60000013001263, 19.52098218581841 49.57416412998859, 19.535273185831727 49.53555412995263, 19.577082185870665 49.45901812988134, 19.658609185946574 49.40666412983259, 19.710554185994965 49.39750012982404, 19.77801818605778 49.407491129833346, 19.805000186082907 49.364718129793516, 19.825654186102156 49.277564129712346, 19.798054186076456 49.252773129689245, 19.773609186053676 49.233054129670904, 19.76597318604658 49.21443612965356, 19.783473186062878 49.20020012964031, 19.842918186118226 49.19180012963247, 19.867909186141503 49.19712712963744, 19.911245186181873 49.22617312966449, 19.9363911862053 49.23110912966908, 19.979582186245523 49.22639112966468, 19.998900186263512 49.217627129656535, 20.020554186283675 49.199436129639594, 20.03916318630101 49.18889112962975, 20.07336318633284 49.17787312961951, 20.092636186350802 49.204854129644644, 20.103336186360764 49.24860012968537, 20.143609186398265 49.3149911297472, 20.206663186457007 49.340273129770736, 20.3277731865698 49.38332712981085, 20.360554186600325 49.393054129819916, 20.602773186825914 49.395554129822244, 20.740836186954482 49.38888212981601, 20.812500187021215 49.33082712976196, 20.913609187115384 49.296109129729615, 20.95582718715471 49.3016641297348, 20.982354187179425 49.30943612974204, 21.035554187228968 49.35971812978886, 21.050554187242938 49.41054512983621, 21.07152718726246 49.42208212984693, 21.281945187458433 49.45639112987888, 21.40084518756916 49.42905412985343, 21.436391187602283 49.4138911298393, 21.459300187623597 49.411945129837505, 21.50082718766228 49.42221812984707, 21.533609187692804 49.42971812985405, 21.612636187766412 49.436527129860394, 21.838054187976354 49.38443612981189, 21.958609188088616 49.340273129770736, 22.020136188145926 49.27388212970891, 22.02527318815072 49.247218129684086, 22.029891188155005 49.22023612965896, 22.225000188336708 49.15471812959794, 22.32389118842883 49.13860912958293, 22.348891188452114 49.13847312958282, 22.537773188628023 49.08791812953572, 22.558054188646906 49.079436129527835, 22.55166318864096 49.03943612949058, 22.534854188625303 48.99485412944907, 22.461382188556854 48.94943612940676, 22.425000188522972 48.889436129350884, 22.388745188489224 48.80020012926778, 22.32867318843327 48.68700012916233, 22.235273188346298 48.62470912910433, 22.17360918828885 48.59276412907457, 22.15979118827599 48.578254129061065, 22.151445188268212 48.411918128906166, 22.150554188267392 48.408609128903066, 22.098609188219 48.37798212887455, 22.064863188187587 48.385136128881214, 22.029445188154597 48.3875001288834, 21.965000188094564 48.38194512887824, 21.935836188067412 48.37916412887566, 21.85250018798979 48.362145128859794, 21.828127187967112 48.34346412884241, 21.780973187923195 48.34069112883981, 21.722354187868604 48.35533612885345, 21.625409187778303 48.45888212894988, 21.617291187770746 48.49250012898119, 21.50721818766823 48.5488821290337, 21.438191187603934 48.57534512905835, 21.308709187483345 48.54804512903294, 21.253891187432316 48.52221812900888, 21.153327187338647 48.51110912899853, 21.084445187274497 48.513609129000855, 20.946391187145935 48.524718129011205, 20.870000187074766 48.550827129035525, 20.84347318705008 48.56763612905118, 20.818054187026405 48.57617312905913, 20.71333618692887 48.56916412905261, 20.652918186872597 48.561664129045624, 20.539718186767175 48.5369451290226, 20.50082718673096 48.504436128992324, 20.499445186729673 48.48305412897241, 20.451109186684647 48.44874512894046, 20.43583618667043 48.43360912892635, 20.414163186650256 48.39971812889479, 20.402500186639372 48.36124512885897, 20.363054186602653 48.304582128806175, 20.340827186581947 48.28610912878898, 20.317218186559955 48.26971812877372, 20.283018186528096 48.25571812876069, 20.23555418648391 48.27499112877862, 20.140554186395434 48.2261091287331, 20.093327186351445 48.198327128707234, 20.05932718631979 48.17630912868671, 20.010136186273968 48.173882128684454, 19.969027186235678 48.15347312866547, 19.939863186208527 48.13624512864942, 19.9106271861813 48.13048212864405, 19.78683618606601 48.1969091287059, 19.75500018603634 48.20944512871759, 19.653327185941663 48.23291812873944, 19.63055418592046 48.23389112874034, 19.53021818582701 48.20892712871711, 19.508609185806876 48.1730451286837, 19.497291185796342 48.1359001286491, 19.4724271857732 48.089436128605826, 19.20833618552723 48.05944512857789, 19.13945418546308 48.06167312857997, 19.041709185372042 48.07063612858832, 19.001273185334384 48.06895412858674))) +SVN Slovenia MULTIPOLYGON (((15.307091181893924 45.62986412631517, 15.294000181881728 45.594536126282264, 15.303973181891024 45.53862712623018, 15.27721818186609 45.46277312615953, 15.174454181770386 45.42581812612514, 15.156673181753831 45.42929112612836, 15.092027181693624 45.471518126167695, 14.979063181588401 45.50047312619466, 14.912836181526728 45.482491126177905, 14.863718181481005 45.468654126165035, 14.826091181445946 45.465445126162024, 14.723609181350497 45.53139112622344, 14.620836181254788 45.61208212629859, 14.60958218124432 45.63304512631814, 14.609791181244503 45.66843612635108, 14.570345181207756 45.66638212634916, 14.535000181174837 45.61221812629873, 14.496109181138621 45.5436821262349, 14.413473181061676 45.491664126186464, 14.392500181042124 45.486109126181276, 14.137218180804382 45.475273126171174, 13.988263180665655 45.46340012616014, 13.952500180632342 45.45666412615387, 13.90694518058993 45.453327126150754, 13.703609180400548 45.444164126142226, 13.673473180372497 45.44569112614363, 13.640482180341763 45.45374512615115, 13.60139118030537 45.47319112616924, 13.591736180296351 45.481700126177174, 13.589445180294234 45.51693612621, 13.665836180365375 45.543054126234324, 13.749927180443706 45.54901812623987, 13.716945180412978 45.59610912628372, 13.802218180492389 45.58639112627466, 13.827773180516203 45.58444512627287, 13.857218180543612 45.587218126275445, 13.918336180600534 45.63639112632123, 13.835282180523194 45.71777312639702, 13.791527180482433 45.75277312642962, 13.697500180394854 45.784164126458876, 13.603745180307556 45.808882126481876, 13.578327180283878 45.85027312652042, 13.59069118029538 45.88811812655567, 13.614100180317195 45.905136126571534, 13.634718180336392 45.947909126611364, 13.635100180336764 45.982009126643135, 13.593336180297854 45.99304512665341, 13.568954180275142 45.97937312664067, 13.540282180248454 45.968327126630385, 13.509863180220123 45.98624512664708, 13.479718180192037 46.01221812667126, 13.52194518023137 46.06332712671886, 13.538891180247163 46.07943612673387, 13.55736318026436 46.08728212674117, 13.593609180298103 46.10527312675791, 13.648191180348931 46.14554512679544, 13.666036180365552 46.17530912682315, 13.550554180258018 46.21804512686296, 13.488473180200202 46.2319451268759, 13.458954180172697 46.22319112686773, 13.418891180135404 46.21305412685831, 13.383473180102413 46.29513612693475, 13.440836180155827 46.34638212698246, 13.511391180221551 46.384718127018175, 13.657773180357879 46.44971812707871, 13.69200918038976 46.451664127080534, 13.711109180407533 46.492773127118795, 13.719163180415052 46.51846412714275, 13.718654180414575 46.52660912715032, 13.776109180468069 46.51832712714261, 13.845554180532758 46.52000012714416, 13.936945180617869 46.515827127140284, 14.08221818075316 46.48916412711546, 14.11583618078447 46.47888212710586, 14.128891180796643 46.46305412709114, 14.153682180819715 46.44263612707212, 14.47805418112182 46.41944512705052, 14.54500018118415 46.40749112703938, 14.813191181433922 46.51138212713613, 14.82500018144492 46.54138212716407, 14.833745181453082 46.57069112719137, 14.867500181484502 46.61332712723109, 15.055136181659265 46.652082127267164, 15.074409181677225 46.648573127263916, 15.102918181703757 46.656664127271455, 15.139445181737784 46.65721812727196, 15.406109181986125 46.65250012726756, 15.602500182169024 46.686664127299395, 15.806663182359188 46.71860912732913, 15.83278218238351 46.722218127332496, 15.859027182407942 46.72319112733339, 15.987918182527977 46.75513612736316, 15.988327182528366 46.831591127434365, 16.009309182547895 46.83549112743799, 16.11180018264335 46.869718127469866, 16.139791182669427 46.85916412746005, 16.181036182707828 46.86458212746507, 16.229445182752926 46.876245127475954, 16.269718182790427 46.874445127474274, 16.298191182816936 46.86930012746947, 16.34902718286429 46.842354127444395, 16.33721818285329 46.80916412741348, 16.31548218283305 46.79430012739962, 16.32527318284218 46.7558271273638, 16.359300182873852 46.72020012733063, 16.375327182888782 46.722773127333, 16.385554182898318 46.701664127313364, 16.408609182919776 46.6588821272735, 16.53097318303375 46.50902712713395, 16.60787318310537 46.47623612710342, 16.591991183090585 46.47400912710134, 16.564454183064925 46.47709112710422, 16.517791183021473 46.49164512711775, 16.49548218300069 46.50569112713083, 16.46389118297128 46.52096412714508, 16.384163182897026 46.53582712715891, 16.33555418285175 46.533882127157085, 16.292509182811642 46.53081812715425, 16.267500182788353 46.514445127139, 16.2524091827743 46.49556412712141, 16.266109182787062 46.41944512705052, 16.137918182667676 46.405964127037976, 16.07531818260938 46.37841812701231, 16.075836182609862 46.35819112699346, 16.08040918261412 46.33603612697283, 16.01721818255527 46.29804512693747, 15.797782182350915 46.233327126877185, 15.685973182246784 46.22596412687034, 15.659163182221818 46.220900126865615, 15.611945182177834 46.16693612681536, 15.60041818216709 46.14430012679426, 15.606391182172672 46.115827126767755, 15.632918182197358 46.08458212673864, 15.66360918222594 46.067982126723194, 15.71149118227055 46.05319112670941, 15.724445182282608 45.9386091266027, 15.696109182256208 45.84305412651372, 15.65263618221573 45.82339112649541, 15.629718182194381 45.833191126504516, 15.611800182177689 45.84673612651713, 15.49944518207306 45.835827126506985, 15.333891181918887 45.7663911264423, 15.315836181902057 45.756664126433265, 15.294027181881745 45.73430012641242, 15.288645181876745 45.700545126381, 15.356627181940041 45.71200912639168, 15.352591181936276 45.65175412633556, 15.307091181893924 45.62986412631517))) +SJM Svalbard MULTIPOLYGON (((14.495000181137584 77.17081815568997, 14.381109181031519 77.19025415570806, 14.140691180807607 77.29900915580936, 14.116109180784719 77.35609115586252, 13.98110918065899 77.40220915590547, 13.91416318059666 77.52499115601981, 14.354718181006945 77.58388215607465, 14.540827181180276 77.56817315606003, 14.586318181222651 77.52446315601932, 14.528327181168635 77.49873615599537, 14.548609181187516 77.4894271559867, 14.722918181349854 77.48970015598695, 14.940000181552023 77.55303615604595, 15.740554182297615 77.53387315602808, 16.223045182746972 77.43498215593598, 16.30006318281869 77.47186315597034, 15.918327182463173 77.56261815605487, 14.883891181499791 77.61553615610416, 14.74562718137102 77.65929115614489, 15.451391182028317 77.73193615621256, 16.800554183284817 77.8069271562824, 17.00610918347624 77.93136315639828, 16.732909183221807 77.8997091563688, 16.6647181831583 77.85720915632922, 15.869718182417898 77.82777315630182, 15.618327182183776 77.87330915634422, 15.395282181976057 77.86638215633775, 15.094445181695875 77.79220915626868, 14.453327181098786 77.75054515622989, 14.14916318081552 77.77554515625317, 13.951663180631584 77.71804515619962, 13.756245180449582 77.72984515621059, 13.728891180424114 77.76089115623952, 13.814163180503527 77.79227315626875, 13.804927180494929 77.81442715628938, 13.67666318037547 77.86415415633567, 13.592218180296811 78.05220015651082, 13.966945180645808 78.09081815654679, 14.239718180899843 78.00651815646827, 14.283336180940466 77.96442715642908, 14.355827181007982 77.96277315642755, 14.33756318099097 78.022345156483, 14.221945180883296 78.07894515653572, 14.989163181597831 78.1027631565579, 15.056663181660696 78.1486091566006, 15.29444518188214 78.21693615666425, 15.492218182066324 78.2380361566839, 15.694718182254917 78.21693615666425, 15.729718182287513 78.2260271566727, 15.597291182164184 78.28741815672987, 15.765836182321152 78.33526315677443, 16.102500182634685 78.35637315679409, 16.770554183256877 78.3302731567698, 17.295200183745493 78.42179115685502, 17.19249118364982 78.43470915686706, 16.85139118333217 78.38442715682024, 16.330273182846838 78.45095415688218, 16.542218183044213 78.56608215698941, 16.83395418331591 78.6616541570784, 16.66527318315883 78.6658181570823, 16.550554183051986 78.71638215712937, 16.484300182990268 78.70179115711579, 16.317082182834554 78.56679115699006, 16.023327182560962 78.48109115691025, 15.427454182006016 78.4581731568889, 15.298054181885504 78.50054515692838, 15.198891181793158 78.5905451570122, 15.448891182025989 78.63304515705178, 15.500973182074489 78.71373615712693, 15.483327182058048 78.808309157215, 15.370827181953274 78.84303615724735, 15.219718181812539 78.77192715718112, 15.197773181792115 78.73164515714359, 15.220000181812793 78.67526315709108, 15.027918181633908 78.59901815702008, 14.805273181426571 78.64513615706304, 14.844854181463432 78.67359115708953, 14.816391181436927 78.72942715714154, 14.531663181171751 78.68275415709806, 14.540836181180282 78.57832715700081, 14.388891181038787 78.49150915691996, 14.668054181298771 78.44095415687286, 14.72819118135476 78.38623615682192, 14.365000181016512 78.38638215682204, 14.298891180954968 78.33581815677496, 14.325273180979536 78.30609115674727, 14.111391180780345 78.25555415670021, 14.071109180742809 78.2863731567289, 13.753054180446611 78.25666315670125, 13.855554180542072 78.21400915666152, 13.822218180511015 78.20277315665106, 13.149445179884452 78.21943615666657, 13.006663179751484 78.19748215664612, 12.915345179666417 78.24220015668777, 12.953118179701619 78.26179115670601, 12.946391179695354 78.2910911567333, 12.874718179628587 78.35165415678969, 12.612218179384115 78.38554515682128, 12.37159117916002 78.48089115691008, 12.929445179679561 78.49941815692733, 13.187363179919771 78.54157315696659, 12.841109179597282 78.5224911569488, 12.378882179166794 78.54693615697158, 11.918191178737743 78.62928215704827, 11.644791178483132 78.7359541571476, 11.733609178565843 78.80706315721383, 11.924300178743437 78.8259181572314, 11.57610917841916 78.88220015728382, 11.337009178196496 78.96053615735678, 11.602500178443734 78.97638215737152, 12.251109179047802 78.89305415729393, 12.500691179280238 78.91199115731155, 12.43666317922063 78.99414515738806, 12.063891178873462 78.96748215736324, 11.755282178586043 79.07581815746414, 11.950554178767902 79.19663615757665, 12.05139117886182 79.20555415758497, 12.115273178921314 79.2933181576667, 11.985273178800242 79.28610015765997, 11.835000178660266 79.2247001576028, 11.686109178521605 79.32165415769308, 11.638609178477367 79.31944515769104, 11.555273178399773 79.27831815765273, 11.716945178550333 79.19261815757292, 11.71000017854385 79.16373615754603, 11.236382178102758 79.09304515748019, 11.188891178058554 79.12330915750837, 11.144027178016756 79.23470915761212, 10.85110917774395 79.35887315772774, 10.858745177751075 79.4097091577751, 10.917363177805669 79.43998215780329, 10.903609177792845 79.4617911578236, 10.705973177608797 79.51221815787056, 10.682354177586802 79.54609115790211, 11.180273178050527 79.55941815791454, 10.85937317775165 79.5974181579499, 10.986109177869679 79.64332715799267, 11.366109178223581 79.6349911579849, 11.380827178237297 79.65220915800094, 11.202636178071344 79.71262715805722, 11.195691178064862 79.77499115811528, 11.506945178354755 79.76582715810676, 11.569718178413211 79.81219115814994, 11.6963911785312 79.83499115817116, 11.844445178669076 79.83401815817027, 12.048473178859098 79.68817315803443, 12.311391179103964 79.66192715801, 12.341663179132155 79.6633181580113, 12.345273179135518 79.71331815805786, 12.204718179004601 79.75054515809254, 12.16221817896502 79.80609115814426, 12.224718179023228 79.8361091581722, 12.38471817917224 79.83221815816859, 12.596945179369897 79.75638215809795, 13.014718179758972 79.82221815815927, 13.824718180513344 79.87526315820867, 13.957500180636998 79.82832715816497, 13.967354180646197 79.76999115811063, 13.884718180569223 79.72638215807001, 13.628327180330444 79.69663615804231, 13.015836179760015 79.68858215803482, 12.69208217945851 79.59595415794854, 12.449300179232381 79.56888215792333, 12.605554179377918 79.54720915790315, 13.028891179772188 79.5880451579412, 13.47485418018752 79.582491157936, 13.489027180200708 79.56554515792024, 13.424718180140815 79.52957315788672, 13.265273179992334 79.51443615787264, 13.264718179991803 79.47095415783213, 13.429718180145471 79.43776315780121, 13.478954180191323 79.4507091578133, 13.446245180160872 79.47818215783886, 13.59444518029889 79.48414515784441, 13.873609180558873 79.39193615775855, 13.914718180597163 79.35485415772402, 13.894927180578748 79.2917181576652, 14.05889118073145 79.26027315763594, 14.153891180819926 79.33526315770575, 13.885000180569477 79.53831815789488, 14.136945180804133 79.60998215796161, 14.522773181163473 79.80179115814025, 14.585000181221403 79.80415415814244, 14.852773181470809 79.7659731581069, 15.291245181879162 79.59707315794958, 15.299582181886933 79.52610015788349, 15.486391182060913 79.3363821577068, 15.772636182327489 79.23776315761495, 15.714445182273295 79.11080915749673, 15.813327182365384 79.16165415754406, 15.889445182436276 79.15776315754044, 16.092491182625366 79.07415415746257, 16.14805418267713 78.98664515738108, 16.327636182844373 78.91596315731525, 16.45000018295832 78.90387315730399, 16.494509182999792 78.9272731573258, 16.374163182887713 78.98414515737875, 16.28610918280569 79.09095415747822, 16.19527318272111 79.13665415752078, 16.130409182660685 79.24442715762117, 15.973882182514899 79.32470915769593, 15.874163182422052 79.56414515791892, 15.691800182252194 79.69234515803831, 15.647500182210933 79.76500015810598, 15.64694518221043 79.83978215817564, 15.707218182266558 79.87081815820454, 16.110827182642453 79.8602631581947, 16.131527182661728 79.87170915820536, 15.951391182493978 79.93442715826379, 16.022773182560456 80.00888215833311, 16.307773182825883 80.06276315838329, 16.531109183033863 80.0423451583643, 16.725827183215216 79.90331815823481, 16.81916318330215 79.87220915820583, 16.90235418337963 79.88324515821611, 16.867636183347287 79.92720915825706, 16.977218183449338 79.96026315828783, 17.28055418373185 79.93610015826533, 17.557773183990037 79.89179115822407, 18.087009184482923 79.72817315807168, 18.070554184467596 79.69289115803883, 17.79389118420994 79.6127631579642, 17.734582184154704 79.55220915790781, 17.765554184183543 79.54359115789978, 17.772363184189885 79.41804515778287, 17.63770018406447 79.37609115774379, 17.93221818433875 79.41998215778466, 18.014445184415337 79.46526315782683, 18.08930018448504 79.57818215793199, 18.193609184582186 79.62081815797171, 18.356945184734315 79.62830915797869, 18.74249118509337 79.53414515789098, 18.859718185202553 79.45054515781314, 18.873745185215625 79.31109115768325, 18.851391185194814 79.2483181576248, 18.93721818527473 79.16026315754277, 19.186663185507058 79.1452631575288, 19.34805418565736 79.18470915756555, 19.72360918600711 79.15109115753424, 19.799445186077747 79.12456315750953, 19.90666318617761 79.01388215740644, 21.540418187699146 78.84053615724503, 21.540554187699286 78.75991815716992, 21.376663187546654 78.68748215710247, 21.39027318755933 78.65796315707499, 21.20250018738443 78.66831815708463, 21.081391187271663 78.63720915705565, 20.743882186957308 78.68997315710479, 20.558609186784764 78.62441815704375, 20.22916318647796 78.64332715706135, 19.710827185995214 78.61499115703495, 19.579927185873316 78.56782715699103, 19.668400185955704 78.51027315693744, 18.96992718530521 78.45200015688317, 19.063745185392577 78.36790015680484, 18.999436185332684 78.25999115670433, 19.085345185412677 78.09345415654923, 18.838327185182635 78.02916315648937, 18.552500184916425 78.05525415651366, 18.410827184784495 78.02165415648236, 18.33388218471282 77.89832715636751, 18.447773184818914 77.84512715631797, 18.451663184822536 77.76957315624759, 18.29652718467804 77.51290915600856, 18.21388218460106 77.48887315598617, 17.778882184195936 77.49053615598774, 17.56082718399287 77.34637315585346, 17.32582718377401 77.04387315557173, 17.101182183564788 77.04733615557495, 17.315554183764448 76.96880015550181, 16.938609183413377 76.81290015535663, 16.920900183396895 76.79019115533549, 16.94166318341624 76.77804515532418, 17.10319118356665 76.75513615530284, 17.200963183657734 76.69942715525096, 16.997218183467965 76.59526315515393, 16.571945183071904 76.57500015513506, 16.33666318285279 76.65304515520776, 16.294163182813207 76.7015091552529, 15.971391182512605 76.75193615529986, 15.502154182075571 76.88137315542039, 16.01166318255011 76.97192715550474, 16.52450918302773 76.99157315552304, 16.49860018300359 77.00082715553165, 16.092363182625263 77.02012715554963, 16.015827182553977 77.08055415560591, 15.859373182408262 77.06110015558778, 15.873745182421658 77.03206315556073, 15.827773182378849 77.01027315554046, 15.350273181934142 77.00360015553423, 15.131663181730545 77.0569271555839, 15.035827181641281 77.12526315564753, 14.718327181345586 77.1785911556972, 14.495000181137584 77.17081815568997)), ((27.145000192918815 80.00443615832899, 27.101109192877942 79.96748215829456, 27.235545193003162 79.91390015824467, 27.142218192916232 79.8535911581885, 26.86860919266141 79.82916315816576, 26.477909192297545 79.71568215806005, 25.811109191676536 79.61387315796523, 25.975273191829444 79.5077631578664, 25.722773191594285 79.40790915777342, 25.14916319106007 79.32638215769748, 24.798609190733572 79.37137315773938, 24.281663190252146 79.30498215767756, 24.232491190206332 79.22499115760306, 24.116936190098727 79.19692715757694, 23.75916318976553 79.1741451575557, 22.973882189034157 79.21360915759246, 22.65416318873642 79.29692715767007, 22.65582718873796 79.35998215772878, 22.837500188907143 79.40748215777302, 22.146382188263487 79.40581815777148, 21.72805418787391 79.36303615773164, 21.375000187545083 79.39499115776138, 20.93610918713634 79.36609115773447, 20.793054187003122 79.37678215774443, 20.745827186959133 79.45720915781934, 20.223327186472517 79.46026315782217, 19.679718185966237 79.55081815790652, 19.63763618592705 79.60233615795448, 20.188882186440424 79.64220915799163, 20.425000186660327 79.58942715794248, 21.12305418731046 79.55941815791454, 21.147563187333276 79.57033615792469, 20.675273186893435 79.61665415796782, 20.48061818671215 79.67872715802565, 21.09249118728198 79.71360915805812, 21.83916318797739 79.70277315804805, 21.872500188008416 79.74206315808462, 22.342773188446415 79.78581815812538, 22.320691188425826 79.79499115813391, 21.795554187936773 79.76388215810493, 21.735827187881142 79.78053615812047, 21.87555418801128 79.81442715815203, 21.66416318781441 79.83415415817038, 20.335554186577042 79.79109115813029, 19.54221818583818 79.710263158055, 19.402218185707795 79.7372001580801, 18.771382185120274 79.71748215806173, 18.5830541849449 79.78942715812875, 18.471663184841162 79.78276315812252, 18.154163184545467 79.90999115824101, 18.805827185152367 79.96998215829689, 18.809436185155732 79.99470915831992, 18.73610918508743 80.02388215834708, 18.239718184625133 80.04220915836416, 18.154163184545467 80.07554515839522, 18.357700184735023 80.07638215839597, 18.062773184460355 80.12608215844227, 17.790827184207075 80.12706315844318, 18.038327184437577 80.18525415849737, 18.59416318495525 80.18470915849687, 18.674436185030004 80.15803615847204, 18.90416318524396 80.18761815849959, 19.234163185551296 80.08957315840826, 19.340554185650376 80.08638215840529, 19.579854185873245 80.14929115846388, 19.21458218553306 80.19691815850825, 18.980000185314566 80.33665415863837, 19.261663185576907 80.33471815863658, 19.623745185914117 80.21860015852843, 19.840827186116286 80.22096315853062, 19.80721818608498 80.23109115854007, 19.81277318609017 80.27581815858173, 19.9137451861842 80.37664515867561, 19.51221818581024 80.38720915868547, 19.45874518576045 80.42068215871663, 19.481936185782047 80.46234515875545, 19.668882185956136 80.50166315879207, 20.03513618629725 80.4636001587566, 20.10055418635818 80.4058181587028, 20.415827186651796 80.4138821587103, 20.572500186797697 80.3022001586063, 20.83513618704231 80.30601815860985, 20.745691186958993 80.26777315857424, 20.85332718705925 80.21110915852145, 21.838327187976603 80.27110015857733, 21.898327188032482 80.21775415852764, 21.88430018801941 80.20276315851368, 21.607982187762076 80.1213001584378, 21.82971818796858 80.14610015846091, 22.054163188177625 80.10860015842599, 22.128054188246438 80.07554515839522, 22.198882188312382 79.9847001583106, 22.257500188366976 79.97831815830466, 22.36388218846605 80.00139115832613, 22.328473188433094 80.03373615835628, 22.361663188464007 80.03749115835976, 22.45235418854847 80.2615181585684, 22.56853618865665 80.29637315860086, 22.38666318848729 80.32887315863113, 22.33576318843987 80.35873615865896, 22.361109188463473 80.41026315870693, 22.678400188758985 80.41207315870861, 22.619236188703894 80.3485911586495, 22.749163188824895 80.32415415862673, 22.8869361889532 80.49026315878143, 23.355827189389885 80.42651815872208, 23.12708218917686 80.38276315868131, 23.339718189374878 80.34241815864374, 23.30180018933956 80.28068215858625, 23.04750018910272 80.244982158553, 23.004163189062382 80.15679115847087, 23.101391189152935 80.12081815843737, 23.220482189263834 80.11748215843426, 23.09027318914258 80.1645631584781, 23.429436189458443 80.20776315851833, 23.49207318951676 80.19094515850267, 23.46735418949376 80.17234515848537, 23.489163189514073 80.15470915846893, 23.59666318961419 80.13581815845134, 23.751391189758294 80.20721815851783, 23.71805418972724 80.25665415856386, 23.738054189745867 80.29776315860215, 23.993882189984106 80.26971815857604, 24.02256319001083 80.27151815857772, 23.9066631899029 80.30470015860863, 24.33805419030466 80.28387315858922, 24.397909190360394 80.31720915862027, 24.149163190128746 80.35276315865337, 24.347773190313717 80.36775415866734, 24.6000001905486 80.31290015861626, 24.476663190433754 80.29610015860061, 24.467218190424944 80.26401815857074, 24.500554190456 80.25471815856207, 24.732082190671633 80.29164515859645, 24.836382190768745 80.35081815865158, 24.888327190817137 80.32097315862379, 24.779718190715982 80.24664515855454, 25.289436191190703 80.27499115858095, 25.345000191242434 80.2702001585765, 25.22860919113404 80.2505451585582, 25.262082191165234 80.22568215853502, 25.69888219157201 80.21581815852585, 25.725454191596782 80.17622715848898, 26.80000019259751 80.17220915848523, 27.22930019299733 80.09651815841474, 27.145000192918815 80.00443615832899)), ((22.641109188724243 77.25305415576656, 22.42360918852168 77.25721815577043, 22.386727188487328 77.29859115580896, 22.497845188590816 77.32985415583809, 22.49166318858508 77.36790015587351, 22.41561818851426 77.41165415591425, 22.692491188772095 77.49304515599007, 22.77319118884725 77.54615415603953, 22.436109188533322 77.57054515606225, 22.133609188251597 77.49581815599265, 21.595827187750757 77.4852631559828, 21.12055418730813 77.43498215593598, 20.867218187072183 77.45457315595422, 20.843891187050474 77.5419271560356, 20.878745187082927 77.56456315605666, 21.22471818740513 77.61360015610234, 21.252636187431136 77.72359115620478, 21.64500018779654 77.9124911563807, 20.868745187073614 78.09012715654615, 20.934163187134544 78.12248215657627, 21.468609187632268 78.18776315663706, 21.86527318800171 78.20971815665752, 22.39916318849893 78.19247315664146, 22.499373188592244 78.22209115666905, 22.98277318904246 78.24693615669219, 23.25500018929597 78.21554515666296, 23.459718189486637 78.15581815660732, 23.367636189400883 78.10499115655998, 23.094854189146844 78.08332715653981, 23.053891189108697 78.04886315650771, 23.05847318911296 78.01887315647977, 23.112773189163534 77.98859115645158, 23.421936189451458 77.9394181564058, 23.657500189670827 77.86249115633413, 23.890273189887637 77.84749115632016, 24.07638219006094 77.88471815635484, 24.3350001903018 77.8841541563543, 24.90221819083007 77.74706315622663, 24.20777319018333 77.67553615616004, 24.002782189992416 77.60304515609252, 23.902354189898887 77.50463615600086, 23.74193618974948 77.451100155951, 23.381245189413562 77.37220915587753, 23.091945189144127 77.38165415588631, 22.920273188984254 77.33831815584597, 22.869445188936908 77.2830541557945, 22.641109188724243 77.25305415576656)), ((20.142663186397385 78.46960915689957, 21.055827187247843 78.5494271569739, 21.18277318736608 78.61970915703935, 21.443609187608985 78.60581815702642, 21.50166318766307 78.56553615698891, 21.689718187838196 78.59664515701786, 22.028882188154057 78.58082715700314, 22.241382188351963 78.48054515690976, 22.225273188336985 78.3341541567734, 22.23554518834655 78.2749911567183, 22.268054188376823 78.26540915670938, 21.090273187279934 78.19941815664794, 20.843891187050474 78.22415415667095, 20.671109186889538 78.1874821566368, 20.630554186851782 78.19636315664508, 20.780000186990947 78.2844271567271, 20.47055418670277 78.31637315675684, 20.68221818689989 78.34664515678503, 20.6638821868828 78.38720915682282, 20.509445186738986 78.43081815686344, 20.142663186397385 78.46960915689957)), ((12.120554178926227 78.19581815664458, 11.875273178697796 78.2347091566808, 11.818609178645005 78.26873615671249, 11.852773178676841 78.29401815673603, 11.835273178660543 78.30720915674831, 11.343609178202627 78.44470015687637, 11.164718178036026 78.43275415686523, 11.073327177950915 78.45582715688673, 10.896391177786143 78.6190091570387, 10.536663177451118 78.77388215718292, 10.487918177405703 78.89332715729418, 10.825827177720413 78.87747315727941, 11.006109177888305 78.82916315723443, 11.183609178053615 78.72692715713922, 11.118327177992825 78.70721815712085, 11.154445178026464 78.66080915707764, 11.269445178133566 78.60998215703029, 11.267218178131486 78.5380361569633, 11.438327178290848 78.54525415697, 11.62805417846755 78.46360915689397, 11.821109178647333 78.441082156873, 12.09916317890631 78.2877631567302, 12.163745178966451 78.20429115665246, 12.120554178926227 78.19581815664458)), ((31.58250019705156 80.06944515838953, 31.44943619692765 80.08581815840478, 31.493609196968777 80.11080915842805, 33.286663198638706 80.24248215855067, 33.63750019896543 80.21331815852352, 32.31527319773403 80.08942715840814, 31.58250019705156 80.06944515838953)), ((28.095554193804105 78.8116451572181, 28.019718193733468 78.8674821572701, 28.145273193850414 78.91165415731123, 28.380554194069532 78.92025415731925, 28.42888219411452 78.95193615734877, 28.865554194521224 78.95277315734955, 29.103054194742413 78.89610015729676, 29.708045195305857 78.89638215729701, 29.286663194913416 78.84498215724915, 28.82166319448035 78.90610015730607, 28.423882194109865 78.88275415728432, 28.095554193804105 78.8116451572181)), ((20.342491186583487 78.99081815738498, 20.047636186308893 79.0401181574309, 20.097218186355065 79.11775415750319, 20.199718186450525 79.12469115750966, 20.49693618672734 79.11387315749957, 20.83110918703855 79.05692715744655, 20.70721818692317 79.01416315740673, 20.342491186583487 78.99081815738498)), ((19.069163185397628 74.34304515305641, 18.854163185197393 74.43331815314048, 18.79110918513865 74.47887315318289, 19.12749118545193 74.52360915322456, 19.29986318561248 74.4717911531763, 19.191100185511175 74.36442715307632, 19.069163185397628 74.34304515305641)), ((26.735827192537755 78.62387315704322, 26.68166319248732 78.66192715707868, 26.466245192286692 78.70165415711566, 26.398054192223185 78.77401815718306, 26.464163192284758 78.80941815721604, 26.600000192411244 78.80802715721472, 26.78416319258278 78.72164515713428, 27.015136192797883 78.6956821571101, 26.939436192727385 78.64665415706443, 26.735827192537755 78.62387315704322)), ((18.456663184827192 80.23803615854655, 18.37082718474724 80.2638821585706, 18.119445184513125 80.28471815859001, 18.32027318470017 80.36249115866244, 18.758609185108384 80.30192715860605, 18.456663184827192 80.23803615854655)), ((20.142773186397505 79.33193615770267, 19.676663185963406 79.33804515770836, 19.62832718591838 79.38831815775518, 19.806945186084732 79.40054515776657, 20.17805418643036 79.3432541577132, 20.142773186397505 79.33193615770267)), ((24.991100190912846 76.43525415500491, 24.938882190864206 76.44636315501526, 25.06527319098194 76.53054515509368, 25.30750019120751 76.61220015516972, 25.460273191349813 76.70332715525458, 25.58221819146337 76.70664515525766, 25.03332719095218 76.4819271550484, 24.991100190912846 76.43525415500491)), ((10.781663177679292 79.65027315799915, 10.712218177614602 79.71360915805812, 10.945273177831666 79.71914515806327, 11.076109177953498 79.66276315801076, 10.781663177679292 79.65027315799915)), ((27.878182193601646 80.16606315847952, 28.07069119378093 80.14151815845665, 27.676800193414095 80.12011815843672, 27.719163193453568 80.15803615847204, 27.878182193601646 80.16606315847952)), ((20.833609187040878 80.67414515895268, 20.806382187015515 80.70166315897833, 20.6633271868823 80.7105361589866, 20.519163186748045 80.76124515903382, 21.00444518719999 80.70416315898066, 20.833609187040878 80.67414515895268)), ((21.113054187301145 80.64942715892968, 21.027563187221517 80.68324515896117, 21.288891187464912 80.70749115898374, 21.36290918753383 80.6817821589598, 21.113054187301145 80.64942715892968)), ((10.973054177857534 79.72915415807259, 10.75528217765472 79.73664515807957, 10.642082177549298 79.74693615808917, 10.756109177655475 79.78332715812306, 11.01360917789529 79.73553615807856, 10.973054177857534 79.72915415807259)), ((24.308891190277507 80.3822001586808, 24.161945190140642 80.38499115868339, 24.13152719011231 80.39478215869252, 24.19694519017324 80.45416315874783, 24.38221819034578 80.39249115869038, 24.308891190277507 80.3822001586808)), ((19.966382186233204 80.47692715876903, 19.848054186123022 80.50499115879515, 19.986663186252116 80.53720015882516, 20.1281911863839 80.50930015879916, 19.966382186233204 80.47692715876903))) +BEL Belgium MULTIPOLYGON (((4.149236171502338 49.978373130365014, 4.1472181715004695 50.00999113039447, 4.171391171522998 50.13721813051296, 4.194445171544459 50.23750013060635, 4.165000171517022 50.28305413064879, 4.035754171396661 50.35599113071672, 3.9838911713483753 50.345273130706715, 3.889718171260654 50.34000013070181, 3.774718171153552 50.35388213071474, 3.676945171062499 50.39527313075328, 3.6711091710570543 50.437073130792214, 3.660400171047087 50.45527313080916, 3.6139631710038316 50.49293613084424, 3.5180541709145245 50.518882130868406, 3.454582170855417 50.51040913086052, 3.3700001707766205 50.495273130846414, 3.297082170708734 50.524300130873456, 3.2793091706921587 50.540000130888075, 3.2426361706580167 50.66416413100373, 3.19778217061625 50.72721813106244, 3.1872181706064 50.746664131080564, 3.182873170602363 50.75704513109022, 3.1585731705797286 50.784364131115666, 3.116391170540453 50.791664131122474, 3.0462451704751174 50.77874513111044, 3.0269911704571655 50.76984513110213, 3.014309170445358 50.76986413110217, 2.960554170395312 50.75750013109064, 2.943054170379014 50.74139113107563, 2.8980541703371046 50.70304513103994, 2.867500170308631 50.71338213104957, 2.7819451702289655 50.75555413108884, 2.650554170106602 50.816109131145225, 2.5977821700574566 50.925827131247416, 2.597500170057174 50.99582713131261, 2.5416631700051937 51.09110913140134, 2.5555541700181266 51.09402713140406, 2.8630541703045083 51.21333613151518, 2.9552821703904044 51.24971813154906, 3.0200001704506576 51.27638213157388, 3.104027170528923 51.314854131609735, 3.131663170554674 51.3241641316184, 3.179718170599415 51.33610913162951, 3.370863170777426 51.37385413166467, 3.373609170779986 51.31000013160519, 3.3801361707860735 51.275273131572845, 3.3883271707937013 51.268673131566715, 3.4398631708417042 51.24478213154447, 3.474718170874155 51.24263613154247, 3.522982170919107 51.25895413155766, 3.521736170917933 51.283264131580296, 3.6000001709908247 51.30416413159978, 3.66916317105526 51.29277313158914, 3.7887451711666245 51.26284513156128, 3.7938181711713526 51.230273131530936, 3.895418171265959 51.20569113150805, 3.952500171319116 51.21443613151621, 4.062218171421307 51.25221813155139, 4.12778217148238 51.27888213157621, 4.167218171519096 51.29736413159344, 4.221663171569816 51.33541813162887, 4.238900171585868 51.350427131642846, 4.255836171601629 51.33623613162965, 4.263563171608837 51.31704513161176, 4.280645171624741 51.30112713159693, 4.312009171653955 51.286382131583196, 4.300082171642828 51.26765413156576, 4.302373171644973 51.26318213156159, 4.309682171651787 51.26202713156053, 4.3277001716685675 51.290118131586695, 4.28676317163044 51.31244513160749, 4.280182171624318 51.34420013163705, 4.260982171606429 51.35543613164751, 4.252363171598404 51.375145131665874, 4.279673171623841 51.376591131667226, 4.352918171692039 51.361245131652936, 4.388054171724775 51.35750013164943, 4.4129181717479184 51.35846413165035, 4.433473171767076 51.37013613166121, 4.417782171752464 51.398327131687466, 4.399027171734986 51.41388213170194, 4.395691171731869 51.451518131737004, 4.484300171814397 51.48013613176366, 4.544336171870327 51.483045131766374, 4.540418171866662 51.4545091317398, 4.540345171866591 51.431173131718054, 4.647636171966525 51.42319113171061, 4.671145171988428 51.43255413171934, 4.702082172017242 51.46694513175137, 4.766182172076924 51.49992713178207, 4.797636172106223 51.50124513178332, 4.825836172132483 51.492218131774905, 4.845482172150781 51.47527313175911, 4.8327821721389626 51.429991131716946, 4.85305417215784 51.41444513170248, 4.940482172239257 51.402354131691226, 4.997082172291982 51.43631813172286, 5.017154172310654 51.470618131754776, 5.0384731723305265 51.48694513177, 5.076809172366211 51.469300131753556, 5.101245172388985 51.434718131721354, 5.081073172370196 51.40124513169019, 5.141945172426887 51.31971813161425, 5.161527172445119 51.315127131609984, 5.1934731724748815 51.31950913161407, 5.233336172511997 51.309373131604616, 5.238973172517234 51.26228213156077, 5.329718172601758 51.2622181315607, 5.404373172671285 51.26603613156425, 5.47423617273634 51.28687313158366, 5.508336172768111 51.2942271315905, 5.552918172809626 51.269645131567614, 5.56833617282399 51.22070913152206, 5.644718172895125 51.20360913150611, 5.7541631729970675 51.18999113149343, 5.847136173083641 51.15319113145915, 5.8180541730565665 51.115000131423585, 5.776945173018277 51.025836131340554, 5.764163173006381 50.99000013130717, 5.758054173000687 50.96000013127923, 5.651391172901356 50.87513613120021, 5.638818172889643 50.84888213117574, 5.653609172903401 50.82360913115221, 5.683609172931341 50.81138213114082, 5.693936172940965 50.80881813113845, 5.701945172948427 50.80582713113566, 5.704236172950544 50.78200913111348, 5.691909172939091 50.7605541310935, 5.698609172945311 50.757773131090886, 5.739863172983746 50.75985413109285, 5.797500173037406 50.76943613110177, 5.870554173105461 50.76082713109375, 5.898918173131875 50.753882131087266, 5.926391173157469 50.75610013108934, 6.011800173236992 50.75727313109044, 6.054718173276967 50.72360913105908, 6.167218173381741 50.65639113099647, 6.27041817347785 50.619854130962466, 6.247773173456778 50.58916413093388, 6.264718173472545 50.49777313084874, 6.313473173517963 50.49721813084824, 6.339163173541891 50.48693613083867, 6.373400173573771 50.44319113079791, 6.3982001735968765 50.32317313068614, 6.349718173551707 50.31277313067645, 6.2808361734875575 50.283609130649296, 6.166663173381238 50.224718130594454, 6.13971817335613 50.15444513052901, 6.134409173351202 50.12784513050423, 6.120000173337758 50.13194513050806, 6.0305541732544725 50.163054130537034, 6.026254173250464 50.18125413055398, 6.017918173242691 50.181809130554484, 5.9730541732009215 50.170000130543485, 5.887709173121436 50.09742713047589, 5.883054173117102 50.077218130457084, 5.834445173071828 49.98693613037301, 5.778609173019817 49.95700913034514, 5.747773172991117 49.90749113029901, 5.734445172978695 49.83500013023149, 5.752636172995636 49.79228213019172, 5.790282173030704 49.78082713018105, 5.869445173104424 49.719718130124136, 5.8761541731106774 49.70988213011498, 5.899163173132109 49.66277313007109, 5.900282173133149 49.64054513005041, 5.863054173098476 49.57166412998626, 5.835973173073256 49.54971812996581, 5.807882173047091 49.545045129961466, 5.792218173032495 49.54582712996219, 5.702218172948676 49.543054129959614, 5.631945172883235 49.53582712995288, 5.593336172847273 49.52638212994407, 5.522500172781292 49.51000012992881, 5.472782172735009 49.50888212992777, 5.4749271727370115 49.53590012995295, 5.432500172697473 49.603473130015885, 5.406809172673547 49.617354130028815, 5.392309172660049 49.62255413003365, 5.33110917260305 49.65666413006542, 4.990554172285897 49.80360913020226, 4.959163172256666 49.80221813020097, 4.937291172236286 49.791873130191334, 4.909718172210603 49.789300130188934, 4.868473172172202 49.80221813020097, 4.820836172127827 49.992773130378424, 4.838891172144656 50.06916413044959, 4.8533361721580945 50.09555413047417, 4.885900172188428 50.13416413051013, 4.824727172131446 50.16757313054123, 4.763054172074021 50.13555413051142, 4.693745172009471 50.08401813046342, 4.693400172009149 50.05666413043795, 4.676663171993567 49.9991641303844, 4.510554171838862 49.94749113033626, 4.458127171790039 49.93922713032856, 4.430009171763828 49.94500913033394, 4.413336171748313 49.949164130337834, 4.317218171658794 49.969718130356966, 4.239582171586505 49.963464130351156, 4.215263171563834 49.95960013034755, 4.178618171529706 49.97813613036482, 4.149236171502338 49.978373130365014))) +FRA France MULTIPOLYGON (((1.7817181692974202 42.56996412346541, 1.7386091692572734 42.616391123508635, 1.5597181690906723 42.65596412354549, 1.4865271690225086 42.650418123540334, 1.4458361689846129 42.6019451234952, 1.3591631689039048 42.715273123600724, 1.173891168731359 42.709718123595565, 1.1266631686873723 42.76471812364679, 1.088336168651665 42.78485412366555, 0.716109168304996 42.858882123734475, 0.667782168260004 42.83916412371613, 0.6519451682452484 42.78500012366567, 0.6826361682738309 42.72124512360631, 0.6755091682671832 42.688482123575795, 0.4327821680411432 42.686664123574104, 0.2691631678887632 42.707564123593556, 0.1809001678065556 42.734509123618665, 0.0027821676406745 42.68607312357355, -0.0579178324158534 42.69979112358632, -0.1519458325034293 42.77665412365789, -0.3087368326494584 42.84838212372472, -0.3919458327269467 42.79639112367627, -0.555836832879578 42.78000012366101, -0.7158368330285896 42.884582123758406, -0.7306268330423791 42.901036123773736, -0.7234728330357143 42.929854123800595, -0.754099833064231 42.96437312383273, -0.8186088331243013 42.94610912381572, -0.9402818332376341 42.95416412382323, -1.3002818335729103 43.07166412393266, -1.348263833617608 43.0361731238996, -1.4395178337025811 43.04937312391189, -1.4667368337279356 43.092045123951635, -1.42312683368732 43.123264123980704, -1.3838908336507814 43.209718124061226, -1.3851368336519272 43.25256412410113, -1.4088908336740644 43.273045124120216, -1.6555548339037784 43.309436124154104, -1.7303728339734619 43.298982124144345, -1.7808728340204993 43.35992712420111, -1.666945833914383 43.38527312422471, -1.5901368338428483 43.437636124273496, -1.4438908337066607 43.64054512446248, -1.4247178336887885 43.784718124596736, -1.3289548335996244 44.09103612488201, -1.24969083352579 44.51027312527245, -1.2086088334875171 44.625827125380084, -1.1513908334342489 44.657082125409175, -1.0899998333770782 44.65374512540609, -1.040626833331089 44.674927125425796, -1.0598638333489987 44.71082712545925, -1.1701368334516928 44.77388212551796, -1.2458368335221905 44.67534512542619, -1.2474998335237615 44.75777312550295, -1.168336833450013 45.208609125922834, -1.1399998334236443 45.49388212618851, -1.0894458333765442 45.5586091262488, -1.064099833352941 45.56916412625864, -1.0563178333457017 45.5226361262153, -0.9954178332889683 45.477218126173, -0.9188908332177164 45.45013612614778, -0.8013178331082145 45.36090012606468, -0.7591638330689534 45.3044451260121, -0.7029178330165564 45.105000125826336, -0.5399268328647793 44.89561812563133, -0.5541638328780323 45.023327125750285, -0.6516638329688362 45.0920821258143, -0.7177818330304149 45.35721812606124, -0.7815268330897709 45.46651812616304, -1.0002818332935135 45.6144361263008, -1.2388548335156884 45.70621812638626, -1.2290268335065377 45.78791812646236, -1.1459368334291753 45.802945126476345, -1.1480548334311322 45.86777312653672, -1.070972833359349 45.90394512657042, -1.052426833342082 46.03860912669583, -1.1486088334316378 46.15332712680268, -1.1058368333918054 46.25860912690072, -1.1146368333999987 46.31658212695473, -1.1689548334506128 46.326382126963836, -1.2177818334960762 46.29763612693708, -1.265836833540817 46.30499112694392, -1.469717833730698 46.39277312702566, -1.7863908340256387 46.48832712711467, -1.8605548340946996 46.63777312725384, -2.007217834231284 46.761664127369244, -2.1254178343413628 46.83097312743379, -2.128190834343968 46.89950912749762, -1.9858728342114205 47.0369271276256, -2.0638908342840807 47.10208212768626, -2.170836834383664 47.12666412770918, -2.1592908343729107 47.237145127812056, -2.134163834349522 47.27805412785017, -2.0436088342651715 47.287218127858694, -1.9383368341671314 47.27416412784655, -1.8024998340406455 47.21193612778859, -1.7349998339777812 47.208673127785545, -1.890417834122502 47.288745127860125, -2.0127818342364776 47.3198541278891, -2.1294458343451197 47.30971812787965, -2.2812548344865036 47.24027312781496, -2.4336088346283873 47.262500127835665, -2.5396548347271732 47.298054127868795, -2.5274998347158544 47.38610912795079, -2.4731908346652745 47.41527312797794, -2.408472834604993 47.41527312797794, -2.4595998346526073 47.45299112801308, -2.482672834674105 47.4504451280107, -2.483472834674842 47.49756412805459, -2.3670818345664486 47.501527128058285, -2.580836834765506 47.53777312809203, -2.793054834963158 47.4888821280465, -2.8318728349993023 47.49728212805434, -2.861754835027142 47.546464128100126, -2.739372834913155 47.54471812809851, -2.6861088348635462 47.59569112814597, -2.6808368348586384 47.615136128164096, -2.700281834876762 47.63708212818452, -2.9253368350863695 47.58105412813234, -3.125072835272391 47.59540912814572, -3.1277818352749023 47.525409128080526, -3.0987548352478598 47.475764128034285, -3.1326368352794134 47.47666412803514, -3.1440268352900205 47.53131812808604, -3.134517835281173 47.58082712813214, -3.1537548352990825 47.61180012816098, -3.216945835357933 47.650554128197086, -3.508890835629842 47.75860912829771, -3.8409728359391124 47.80319112833922, -3.982217836070646 47.889718128419815, -4.1013908361816505 47.874991128406094, -4.182781836257448 47.80416412834015, -4.26944583633815 47.795000128331594, -4.367363836429348 47.80874512834441, -4.34430883640789 47.845764128378875, -4.34999983641319 47.87193612840326, -4.392217836452488 47.93443612846147, -4.443472836500234 47.9766641285008, -4.534508836585019 48.019509128540705, -4.722236836759862 48.039173128559014, -4.705899836744635 48.06805412858591, -4.353890836416809 48.11290912862768, -4.298126836364872 48.09922712861493, -4.282917836350691 48.11652712863105, -4.276254836344492 48.14840012866074, -4.3132638363789795 48.20277312871136, -4.4413908364983 48.23832712874449, -4.492781836546158 48.2299641287367, -4.546599836596272 48.17443612868499, -4.621736836666258 48.279654128782965, -4.566526836614827 48.33207312883178, -4.537363836587673 48.34054512883969, -4.547363836596986 48.30645412880793, -4.532917836583522 48.29069112879324, -4.263336836332456 48.28471812878769, -4.192154836266184 48.299373128801335, -4.402217836461801 48.328327128828306, -4.440463836497429 48.34620012884494, -4.760626836795609 48.33500012883451, -4.782154836815664 48.36451812886202, -4.790281836823226 48.423745128917176, -4.776663836810542 48.51110912899853, -4.750972836786616 48.53943612902492, -4.69971783673887 48.57082712905415, -4.628754836672783 48.57985412906257, -4.589717836636424 48.560000129044056, -4.56458183661303 48.62235412910215, -4.539308836589498 48.63582712911469, -3.9936088360812505 48.722773129195645, -3.97152683606069 48.711936129185574, -3.949445836040127 48.65610912913357, -3.8574998359545134 48.63610912911494, -3.8606908359574845 48.68208212915775, -3.8105548359107786 48.72610912919876, -3.582426835698328 48.677773129153735, -3.5319458356512996 48.739164129210934, -3.5787548356948946 48.78597312925453, -3.536663835655702 48.82582712929164, -3.4747178355979997 48.84082712930561, -3.3731908355034648 48.82430012929021, -3.2261088353664604 48.86958212933237, -3.1244458352717857 48.86500012932811, -3.060836835212541 48.82638212929214, -2.685281834862792 48.501664128989745, -2.4183368346141663 48.65360912913124, -2.3072178345106806 48.676109129152195, -2.1283368343440827 48.63860912911727, -2.0394458342613007 48.59821812907967, -1.9761088342023072 48.513045129000346, -1.9453638341736905 48.52871812901492, -1.9602818341875832 48.58409112906651, -1.991108834216277 48.597082129078586, -2.0141908342377803 48.643109129121456, -1.9880548342134432 48.6869451291623, -1.847499834082555 48.709164129182994, -1.840690834076213 48.6839541291595, -1.8670818341007873 48.657636129135, -1.850417834085249 48.62471812910434, -1.812217834049676 48.61054512909115, -1.6411088338903141 48.61652712909671, -1.5886268338414595 48.639682129118285, -1.3688908336368115 48.64360912912193, -1.494308833753621 48.6875001291628, -1.5625728338171996 48.74895412922004, -1.5786088338321065 48.83777312930275, -1.5563908338114345 49.01582712946859, -1.5829908338361918 49.0097181294629, -1.5974998338497244 49.04027312949134, -1.6097178338610831 49.21500012965407, -1.7454178339874602 49.35555412978499, -1.8090998340467763 49.37631812980433, -1.8455548340807297 49.499718129919245, -1.8419458340773645 49.61360913002531, -1.8565268340909427 49.648609130057906, -1.9448638341732192 49.6769361300843, -1.9420818341706365 49.72159113012589, -1.844717834079944 49.71388213011869, -1.6205548338711822 49.6552731300641, -1.5280178337850145 49.65750913006619, -1.4108368336758588 49.704991130110415, -1.2641638335392713 49.684164130091034, -1.2289548335064922 49.618809130030144, -1.2985458335712963 49.577427129991605, -1.2911818335644227 49.527354129944996, -1.1095818333953105 49.36943612979792, -1.0792368333670481 49.389782129816865, -0.9245818332230158 49.39430012982106, -0.8272178331323232 49.36166412979068, -0.4174998327507637 49.34138212977177, -0.2283368325745698 49.28360912971797, -0.0394458323986555 49.31471812974695, 0.0706911677038988 49.35541812978485, 0.1694451677958852 49.41416412983958, 0.4247181680336212 49.4516641298745, 0.488191168092726 49.486245129906706, 0.3798631679918572 49.45666412987916, 0.2561091678765877 49.457218129879664, 0.1608361677878634 49.46889112989052, 0.0758361677087009 49.52256412994052, 0.1697181677961339 49.68889113009541, 0.2111091678346782 49.71888213012335, 0.6402821682343927 49.86610013026046, 1.0711091686356156 49.92666413031688, 1.2325001687859185 49.9816641303681, 1.4611091689988314 50.124164130500816, 1.5055541690402379 50.20194513057325, 1.554373169085693 50.3600641307205, 1.603854169131779 50.368791130728624, 1.5597911690907438 50.40187313075944, 1.5772181691069704 50.52805413087697, 1.5644451690950802 50.705827131042525, 1.6250001691514626 50.877773131202645, 1.792782169307742 50.96277313128181, 2.4151361698873473 51.05651813136913, 2.5416631700051937 51.09110913140134, 2.597500170057174 50.99582713131261, 2.5977821700574566 50.925827131247416, 2.650554170106602 50.816109131145225, 2.8980541703371046 50.70304513103994, 2.960554170395312 50.75750013109064, 3.116391170540453 50.791664131122474, 3.1585731705797286 50.784364131115666, 3.2426361706580167 50.66416413100373, 3.2793091706921587 50.540000130888075, 3.297082170708734 50.524300130873456, 3.3700001707766205 50.495273130846414, 3.5180541709145245 50.518882130868406, 3.6139631710038316 50.49293613084424, 3.660400171047087 50.45527313080916, 3.676945171062499 50.39527313075328, 3.774718171153552 50.35388213071474, 3.889718171260654 50.34000013070181, 4.035754171396661 50.35599113071672, 4.165000171517022 50.28305413064879, 4.194445171544459 50.23750013060635, 4.149236171502338 49.978373130365014, 4.215263171563834 49.95960013034755, 4.317218171658794 49.969718130356966, 4.458127171790039 49.93922713032856, 4.510554171838862 49.94749113033626, 4.676663171993567 49.9991641303844, 4.693745172009471 50.08401813046342, 4.824727172131446 50.16757313054123, 4.885900172188428 50.13416413051013, 4.838891172144656 50.06916413044959, 4.820836172127827 49.992773130378424, 4.868473172172202 49.80221813020097, 4.909718172210603 49.789300130188934, 4.990554172285897 49.80360913020226, 5.33110917260305 49.65666413006542, 5.432500172697473 49.603473130015885, 5.4749271727370115 49.53590012995295, 5.472782172735009 49.50888212992777, 5.792218173032495 49.54582712996219, 5.85528217309124 49.501109129920536, 5.979582173207007 49.448464129871525, 6.092500173312146 49.4536091298763, 6.160691173375653 49.50430012992351, 6.247318173456335 49.50597312992508, 6.3621731735633205 49.45939112988168, 6.413745173611346 49.47569112989686, 6.54124517373009 49.42388212984861, 6.68694517386578 49.244991129682006, 6.72923617390515 49.167636129609974, 6.8341001740028275 49.15506412959826, 6.856354174023551 49.18176412962313, 6.846073174013981 49.21204512965133, 6.92986317409202 49.220200129658934, 7.019445174175445 49.187491129628455, 7.0905541742416744 49.127491129572576, 7.289718174427151 49.11166412955785, 7.364027174496357 49.151936129595356, 7.369018174501008 49.16878212961103, 7.4255541745536675 49.17645412961818, 7.486945174610838 49.164164129606746, 7.652091174764649 49.04493612949571, 7.935973175029034 49.04888212949936, 8.226082175299211 48.96441812942072, 8.198327175273363 48.95541812941232, 8.1375001752167 48.89319112935436, 8.092218175174537 48.80360012927093, 7.880000174976885 48.664164129141085, 7.8022181749044535 48.57582712905881, 7.7366631748434145 48.39402712888949, 7.748709174854611 48.33579112883524, 7.578382174696003 48.11720012863168, 7.570491174688641 48.044109128563605, 7.619773174734547 47.99652712851929, 7.623191174737713 47.97305412849744, 7.526663174647837 47.78805412832514, 7.5120821746342585 47.6951361282386, 7.527636174648734 47.66242712820812, 7.564163174682761 47.63916412818648, 7.5882731747051935 47.584482128135534, 7.5025731746253825 47.54992712810335, 7.496945174620151 47.49499112805219, 7.385418174516275 47.43332712799477, 7.3083361744444915 47.44027312800122, 7.247709174388035 47.42166412798392, 7.182918174327682 47.44401812800473, 7.1464181742937 47.499054128055974, 7.0250001741806045 47.50804512806437, 6.990554174148542 47.49721812805427, 6.881663174047134 47.3636731279299, 7.00083617415811 47.365000127931125, 6.971663174130953 47.291936127863096, 6.838954174007341 47.17151812775094, 6.849718174017369 47.164991127744855, 6.699445173877422 47.06389112765069, 6.63250017381506 47.00000012759119, 6.52833617371806 46.97166412756482, 6.46028217365469 46.89582712749419, 6.446945173642263 46.83943612744167, 6.456873173651502 46.78145412738766, 6.435000173631124 46.758045127365875, 6.269163173476699 46.68278212729578, 6.128682173345851 46.588054127207556, 6.13528217335201 46.53971812716253, 6.071109173292228 46.42638212705697, 6.153545173368997 46.3792641270131, 6.106109173324825 46.29749112693693, 6.115554173333635 46.261527126903445, 6.009163173234555 46.233891126877694, 5.967009173195294 46.20729112685294, 5.996391173222662 46.14694512679674, 6.133263173350116 46.14978212679938, 6.187500173400622 46.17208212682013, 6.245554173454707 46.218327126863215, 6.271945173479281 46.261936126903834, 6.230000173440203 46.33020012696741, 6.244863173454064 46.356382126991775, 6.319718173523768 46.404164127036296, 6.491945173684172 46.45304512708182, 6.633609173816097 46.464164127092175, 6.798336173969517 46.42860912705905, 6.80701817397761 46.404227127036336, 6.783473173955684 46.15471812680397, 7.007218174164052 45.998054126658076, 7.03805417419278 45.9319361265965, 6.984509174142914 45.87590012654431, 6.813336173983487 45.83423612650549, 6.799345173970465 45.78866412646306, 6.809863173980261 45.72964512640809, 6.969445174128879 45.596936126284504, 6.995418174153059 45.52527312621774, 7.1469451742941885 45.430545126129545, 7.158609174305042 45.377491126080116, 7.127782174276348 45.25930012597004, 7.064718174217603 45.2230541259363, 6.821663173991254 45.15305412587111, 6.76639117393978 45.16819112588519, 6.6239631738071125 45.11571812583634, 6.749027173923594 44.918327125652496, 6.84930917401698 44.870409125607864, 6.90166317406576 44.86040912559855, 6.9423631741036615 44.87069112560812, 7.031663174186832 44.83138212557151, 7.028336174183721 44.744718125490806, 6.852782174020234 44.54083612530093, 6.877918174043629 44.37513612514661, 6.976391174135358 44.28416412506189, 7.031391174186581 44.24693612502722, 7.350836174484073 44.13151812491972, 7.4209731745494025 44.12610912491468, 7.6147181747298305 44.18027312496511, 7.662218174774068 44.17082712495633, 7.661663174773565 44.133954124921985, 7.709045174817675 44.09130912488226, 7.706245174815081 44.07582712486786, 7.658609174770703 44.00680012480356, 7.496218174619457 43.87450912468037, 7.531936174652742 43.78204512459425, 7.4841631746082555 43.78277312459491, 7.439291174566449 43.75751812457139, 7.42899117455687 43.76830012458146, 7.390900174521391 43.74937312456382, 7.391609174522046 43.7275451245435, 7.246809174387181 43.7016641245194, 7.155691174302319 43.66055412448111, 7.074718174226916 43.57221812439883, 6.8881911740531905 43.434582124270634, 6.794163173965643 43.422773124259635, 6.6363911738187085 43.311100124155644, 6.637500173819717 43.287773124133906, 6.695763173873985 43.27607312412303, 6.641663173823616 43.1850001240382, 6.5275001737172715 43.189164124042094, 6.169754173384092 43.11534512397333, 6.16528217337995 43.050554123913, 6.062218173283952 43.101391123960326, 5.955554173184623 43.118327123976115, 5.933336173163923 43.08631812394631, 5.866809173101956 43.05860912392049, 5.833891173071322 43.06152712392321, 5.782573173023508 43.09870912395783, 5.816527173055135 43.11763612397547, 5.678473172926573 43.190482124043314, 5.362918172632675 43.224645124075124, 5.37347317264252 43.27173612411897, 5.3627821726325635 43.33180012417492, 5.312782172585997 43.36631812420708, 5.218054172497773 43.339027124181655, 5.0395821723315635 43.347909124189925, 5.048073172339457 43.39132712423037, 5.146800172431398 43.41666412425397, 5.231527172510312 43.46582712429975, 5.229027172507983 43.49319112432522, 5.024163172317202 43.5526361243806, 5.010282172304272 43.514436124345025, 5.0281911723209305 43.48409112431676, 5.055000172345899 43.47416412430752, 5.039118172331115 43.443118124278584, 5.01739117231088 43.42827312426476, 4.924718172224573 43.434791124270845, 4.815054172122444 43.399218124237706, 4.742918172055255 43.441454124277044, 4.746600172058692 43.52187312435194, 4.7075001720222645 43.57208212439869, 4.736718172049478 43.39810912423667, 4.758963172070196 43.37414512421435, 4.6527821719713245 43.359718124200924, 4.592636171915302 43.366527124207266, 4.573682171897644 43.387491124226784, 4.596109171918528 43.428154124264665, 4.57471817189861 43.44666412428191, 4.506109171834709 43.46277312429689, 4.4219451717563345 43.45389112428862, 4.318891171660368 43.46600012429991, 4.316873171658472 43.50207312433349, 4.286109171629818 43.505554124336754, 4.241436171588219 43.48595412431848, 4.289863171633328 43.45804512429251, 4.197782171547573 43.46110912429535, 4.162218171514439 43.47110912430466, 4.132327171486594 43.50850012433949, 4.13041817148482 43.5398541243687, 4.056245171415753 43.56277312439002, 3.913191171282506 43.52124512435137, 3.546663170941173 43.31971812416367, 3.335000170744024 43.26527312411295, 3.2580541706723807 43.22749112407777, 3.1411091705634533 43.138882123995245, 3.0813911705078567 43.06944512393059, 3.0452821704742234 42.95416412382323, 3.0036091704353964 42.881100123755175, 2.9613181703960265 42.842218123718965, 2.9791631704126473 42.80666412368586, 3.0122181704434183 42.79804512367784, 3.0380541704674897 42.728336123612905, 3.0581271704861877 42.54416412344139, 3.141391170563736 42.51777312341679, 3.177654170597492 42.43680912334139, 3.106109170530857 42.42916412333429, 3.047982170476729 42.465964123368536, 2.950000170385465 42.48055412338215, 2.678336170132468 42.40166412330868, 2.6570821701126874 42.3819361232903, 2.670418170125089 42.34958212326015, 2.5338911699979576 42.33290912324463, 2.273182169755131 42.43560912334027, 2.1445821696353846 42.41930012332509, 2.093609169587893 42.36416412327375, 2.020554169519869 42.35263612326301, 1.97278216947538 42.379436123287974, 1.9591631694626983 42.410827123317205, 1.9063911694135527 42.44693612335084, 1.7236091692433035 42.509436123409046, 1.741873169260316 42.560627123456726, 1.7817181692974202 42.56996412346541)), ((8.659445175702814 42.00832712294235, 8.743191175780794 42.04937312298057, 8.68110917572298 42.106382123033654, 8.608327175655205 42.13277312305823, 8.570554175620032 42.22166412314104, 8.618327175664518 42.25305412317027, 8.684545175726186 42.26881812318496, 8.631663175676948 42.33693612324839, 8.589445175637621 42.350691123261186, 8.575836175624943 42.38360912329185, 8.665282175708256 42.51110912341059, 8.71819117575751 42.57055412346597, 9.057427176073475 42.68402712357164, 9.117636176129537 42.72943612361394, 9.253191176255768 42.71986412360502, 9.288891176289042 42.67500012356322, 9.342009176338507 42.73819112362207, 9.336318176333208 42.797700123677515, 9.312563176311073 42.82930012370693, 9.346800176342953 43.00040912386629, 9.421245176412299 43.01041812387561, 9.45958217644801 42.98804512385479, 9.48840017647484 42.807009123686186, 9.455000176443718 42.71860912360384, 9.450136176439202 42.63985412353051, 9.47597317646327 42.57916412347399, 9.508327176493395 42.570445123465845, 9.461527176449806 42.637082123527904, 9.532773176516173 42.545554123442685, 9.562218176543581 42.272773123188614, 9.552573176534594 42.11832712304479, 9.408327176400263 41.94458212288296, 9.398891176391487 41.69888212265414, 9.377918176371935 41.652073122610545, 9.320554176318524 41.60249112256437, 9.271663176272995 41.52055412248808, 9.24194517624531 41.45194512242418, 9.251109176253834 41.42120912239554, 9.219654176224537 41.367291122345335, 9.182563176190001 41.36492712234312, 9.132218176143112 41.39416412237037, 9.115836176127857 41.431936122405546, 8.790418175824783 41.55784512252279, 8.785554175820266 41.613327122574475, 8.806982175840204 41.633882122593604, 8.875136175903691 41.64805412260682, 8.91711817594279 41.685691122641856, 8.725827175764636 41.729436122682614, 8.705000175745226 41.759436122710554, 8.78889117582338 41.853336122798, 8.802363175835922 41.90041812284184, 8.780627175815681 41.926382122866016, 8.741873175779574 41.92943612286888, 8.712218175751957 41.91166412285233, 8.627218175672795 41.90666412284767, 8.59097317563905 41.96353612290062, 8.666391175709293 41.984645122920284, 8.659445175702814 42.00832712294235)), ((-1.2119458334906312 45.80693612648008, -1.2840268335577605 45.90666412657296, -1.3748638336423653 45.961664126624186, -1.3992368336650713 46.04985412670632, -1.273336833547802 45.995827126655996, -1.1712458334527298 45.89131812655867, -1.1911818334712905 45.82617312649799, -1.2119458334906312 45.80693612648008)), ((-1.2841638335578978 46.15554512680475, -1.5069458337653714 46.20416412685003, -1.551390833806778 46.24603612688901, -1.4773638337378259 46.256245126898534, -1.2916638335648827 46.19805412684434, -1.257990833533512 46.159682126808605, -1.2841638335578978 46.15554512680475)), ((-3.085836835235824 47.2877731278592, -3.2194458353602613 47.30458212787485, -3.2383368353778508 47.31693612788638, -3.259581835397654 47.37172712793739, -3.2469458353858727 47.39166412795598, -3.0636088352151205 47.31443612788405, -3.085836835235824 47.2877731278592)), ((-3.5766638356929548 48.80389112927119, -3.575554835691918 48.81249112927921, -3.5633368356805306 48.808609129275595, -3.56610883568311 48.80582712927301, -3.5766638356929548 48.80389112927119))) +DEU Germany MULTIPOLYGON (((7.697218174806665 47.54332712809722, 7.621109174735778 47.561100128113765, 7.6688181747802275 47.57603612812767, 7.675691174786607 47.60500012815464, 7.5882731747051935 47.584482128135534, 7.564163174682761 47.63916412818648, 7.527636174648734 47.66242712820812, 7.5120821746342585 47.6951361282386, 7.526663174647837 47.78805412832514, 7.623191174737713 47.97305412849744, 7.619773174734547 47.99652712851929, 7.570491174688641 48.044109128563605, 7.578382174696003 48.11720012863168, 7.748709174854611 48.33579112883524, 7.7366631748434145 48.39402712888949, 7.8022181749044535 48.57582712905881, 7.880000174976885 48.664164129141085, 8.092218175174537 48.80360012927093, 8.1375001752167 48.89319112935436, 8.198327175273363 48.95541812941232, 8.226082175299211 48.96441812942072, 8.045827175131336 49.008191129461466, 7.935973175029034 49.04888212949936, 7.652091174764649 49.04493612949571, 7.486945174610838 49.164164129606746, 7.4255541745536675 49.17645412961818, 7.369018174501008 49.16878212961103, 7.364027174496357 49.151936129595356, 7.289718174427151 49.11166412955785, 7.0905541742416744 49.127491129572576, 7.019445174175445 49.187491129628455, 6.92986317409202 49.220200129658934, 6.846073174013981 49.21204512965133, 6.856354174023551 49.18176412962313, 6.8341001740028275 49.15506412959826, 6.72923617390515 49.167636129609974, 6.68694517386578 49.244991129682006, 6.54124517373009 49.42388212984861, 6.413745173611346 49.47569112989686, 6.3621731735633205 49.45939112988168, 6.356491173558027 49.525864129943585, 6.420836173617943 49.665836130073956, 6.505836173697105 49.70662713011194, 6.524027173714046 49.807700130206086, 6.395554173594405 49.81777313021544, 6.252782173461441 49.882354130275615, 6.174163173388223 49.95110913033963, 6.140554173356918 49.99389113037947, 6.113054173331307 50.0573541304386, 6.166663173381238 50.224718130594454, 6.2808361734875575 50.283609130649296, 6.3982001735968765 50.32317313068614, 6.373400173573771 50.44319113079791, 6.339163173541891 50.48693613083867, 6.264718173472545 50.49777313084874, 6.247773173456778 50.58916413093388, 6.27041817347785 50.619854130962466, 6.167218173381741 50.65639113099647, 6.011800173236992 50.75727313109044, 6.01666317324154 50.84166413116904, 6.058163173280178 50.850482131177245, 6.084445173304658 50.872082131197345, 6.080836173301293 50.914718131237066, 6.024927173249239 50.97798213129599, 5.943745173173625 50.984300131301865, 5.902009173134758 50.97311813129144, 5.869445173104424 51.01888213133407, 5.86500017310027 51.045345131358715, 6.003054173228861 51.084164131394886, 6.097500173316803 51.131100131438586, 6.071663173292762 51.214091131515886, 6.077636173298316 51.241382131541286, 6.222500173433218 51.36319113165473, 6.222082173432852 51.46735413175176, 6.204863173416811 51.513464131794706, 6.093609173313183 51.605827131880716, 6.02889117325293 51.706664131974634, 5.952054173181352 51.74752713201269, 5.982745173209935 51.76721813203102, 5.963609173192111 51.806664132067766, 6.123609173341123 51.888054132143566, 6.182218173395711 51.895273132150265, 6.351109173552999 51.84805413210631, 6.462782173657018 51.85360913211147, 6.684654173863635 51.911664132165555, 6.722500173898879 51.89790913215273, 6.746391173921154 51.90610913216037, 6.783054173955293 51.9247181321777, 6.828954173998028 51.975754132225234, 6.797500173968729 52.00874513225597, 6.728609173904573 52.03527313228065, 6.75942717393329 52.1145641323545, 6.856036174023245 52.120482132360024, 6.902636174066657 52.172218132408204, 6.964718174124471 52.190273132425006, 7.05309117420677 52.23776413246924, 7.0291001741844354 52.27826413250696, 7.070418174222908 52.35582713257921, 7.062982174215989 52.39096413261194, 6.984027174142454 52.45735413267377, 6.954236174114698 52.437218132655005, 6.7588911739327955 52.460964132677134, 6.704027173881684 52.48819113270247, 6.689582173868246 52.55055413276057, 6.758127173932081 52.56464513277368, 6.71891817389556 52.62678213283155, 6.7657631739391775 52.65117313285427, 7.033745174188766 52.63319113283751, 7.0534731742071415 52.64958213285277, 7.073336174225631 52.819718133011236, 7.179718174324705 52.93416413311783, 7.210973174353825 53.0088821331874, 7.208363174351376 53.242809133405274, 7.255836174395597 53.31603613347346, 7.3509001744841385 53.30725413346528, 7.337082174471277 53.323054133480014, 7.226945174368694 53.33639113349241, 7.0499271742038445 53.341109133496815, 7.018954174174979 53.3753451335287, 7.015000174171291 53.409854133560856, 7.032363174187481 53.48235413362838, 7.093536174244434 53.58819113372692, 7.232082174373488 53.66721813380053, 7.29583617443285 53.68527313381733, 7.4687451745938915 53.685964133818004, 7.51347317463555 53.67208213380505, 7.843336174942749 53.714164133844264, 7.9816631750715885 53.71527313384527, 8.014309175101971 53.70832713383882, 8.052082175137173 53.63138213376715, 8.161245175238832 53.55868213369945, 8.166600175243815 53.52888213367169, 8.129445175209213 53.50971813365385, 8.062427175146809 53.500900133645644, 8.072982175156625 53.468191133615164, 8.097773175179725 53.444445133593064, 8.210273175284499 53.403045133554514, 8.246245175317995 53.40180013355334, 8.286036175355036 53.42089113357113, 8.311873175379105 53.45631813360413, 8.319927175386624 53.50555413364998, 8.305000175372697 53.52485413366796, 8.233682175306285 53.523118133666316, 8.243054175315024 53.58610913372499, 8.269582175339735 53.6074911337449, 8.332218175398054 53.61527313375214, 8.494445175549146 53.55499113369601, 8.513336175566735 53.50958213365371, 8.484027175539438 53.46208213360947, 8.484718175540081 53.412218133563044, 8.489718175544738 53.37735413353059, 8.503891175557953 53.36235413351662, 8.504373175558385 53.483191133629134, 8.56086317561099 53.515436133659165, 8.565518175615324 53.52905413367185, 8.490827175545775 53.648882133783445, 8.48410017553951 53.68631813381833, 8.548054175599077 53.81832713394127, 8.577363175626374 53.85500013397541, 8.604582175651728 53.87901813399779, 8.682218175724017 53.893891134011625, 8.756391175793112 53.846664133967664, 8.85305417588313 53.82971813395187, 8.90750017593382 53.828045133950326, 9.12889117614003 53.86610013398575, 9.28340017628392 53.85554513397594, 9.32236317632021 53.82819113395044, 9.412363176404028 53.727500133856665, 9.5779181765582 53.58860913372732, 9.695836176668024 53.55028213369164, 9.80937317677376 53.533745133676234, 9.82906317679209 53.541700133683634, 9.779027176745501 53.5620821337026, 9.672782176646564 53.57527313371489, 9.57528217655576 53.6136091337506, 9.434163176424335 53.74401813387206, 9.393745176386687 53.82263613394528, 9.332773176329908 53.85500013397541, 9.213054176218407 53.88971813400775, 8.98416317600524 53.89187313400976, 8.90680017593317 53.93471813404966, 8.850000175880268 54.00889113411873, 8.844273175874946 54.034754134142815, 8.885691175913507 54.044718134152106, 8.975000175996684 54.01819113412739, 9.001800176021646 54.02708213413567, 9.01721817603601 54.08500013418961, 8.971109175993064 54.13166413423309, 8.852363175882488 54.127982134229654, 8.827363175859205 54.15166413425172, 8.81277317584562 54.17500013427343, 8.81986317585222 54.198609134295424, 8.845627175876217 54.25416413434718, 8.883609175911573 54.29416413438443, 8.662500175705645 54.26819113436022, 8.637636175682502 54.276100134367596, 8.600482175647898 54.326382134414416, 8.62194517566789 54.37860913446306, 8.642427175686976 54.39708213448026, 8.88694517591469 54.41416413449619, 8.994718176015056 54.45194513453137, 9.013954176032968 54.47499113455282, 9.011245176030457 54.50346413457936, 8.964027175986473 54.54235413461558, 8.918891175944452 54.56110913463303, 8.85082717588105 54.62082713468865, 8.80958217584265 54.67693613474091, 8.696945175737739 54.746936134806106, 8.64139117568601 54.83221813488552, 8.54560917559678 54.87060913492127, 8.300900175368895 54.85645413490809, 8.290836175359516 54.74280913480226, 8.280554175349948 54.77499113483222, 8.293336175361844 54.900554134949175, 8.388191175450174 55.04916413508758, 8.454236175511681 55.050973135089265, 8.43832717549688 55.0241641350643, 8.371945175435059 54.99416413503636, 8.353191175417578 54.966109135010214, 8.461218175518184 54.899973134948624, 8.664545175707559 54.91309113496084, 8.719445175758693 54.891109134940365, 8.835091175866381 54.913791134961485, 8.92000017594546 54.90805413495616, 9.228891176233162 54.84958213490168, 9.248336176251257 54.81263613486729, 9.350836176346718 54.810554134865356, 9.414718176406211 54.83332713488656, 9.445354176434734 54.825400134879175, 9.439445176429246 54.807982134862954, 9.578336176558594 54.825554134879326, 9.785554176751589 54.786109134842576, 9.902154176860165 54.79110913484723, 9.935836176891542 54.78194513483871, 9.97200917692524 54.76075413481897, 10.037363176986105 54.66823613473281, 10.032500176981557 54.55527313462758, 9.970554176923883 54.5075001345831, 9.845554176807468 54.47672713455444, 9.866036176826526 54.45729113453635, 10.12694517706953 54.489718134566544, 10.368327177294333 54.43555413451611, 10.609718177519142 54.360545134446255, 10.690554177594436 54.30930013439851, 10.79500017769169 54.312354134401374, 10.946454177832749 54.38450913446857, 11.016945177898407 54.369991134455034, 11.073891177951452 54.37639113446099, 11.093954177970119 54.20548213430183, 11.060000177938491 54.177218134275506, 10.880554177771387 54.090764134194984, 10.801391177697667 54.08943613419376, 10.762218177661168 54.0565181341631, 10.757363177656657 54.03582713414383, 10.795554177692225 53.99555413410633, 10.87979117777067 53.985900134097335, 10.890136177780306 53.95430013406789, 10.863609177755592 53.91693613403311, 10.81853617771361 53.89005413400807, 10.898891177788471 53.931109134046295, 10.904436177793627 53.95734513407072, 11.094718177970833 54.01360913412313, 11.183536178053544 54.011936134121584, 11.251627178116962 53.93878213405344, 11.41277317826706 53.91971813403569, 11.480836178330435 53.96027313407345, 11.522082178368862 54.03326413414143, 11.576809178419808 54.0343001341424, 11.62635417846596 54.08239113418719, 11.626109178465725 54.111173134214, 11.687500178522896 54.15325413425319, 12.129718178934752 54.19110913428844, 12.32694517911844 54.286664134377446, 12.480554179261503 54.44416413452413, 12.526945179304704 54.47416413455207, 12.540554179317382 54.45888213453782, 12.900691179652767 54.442354134522446, 12.921527179672182 54.42746413450857, 12.880554179634032 54.41194513449412, 12.7583361795202 54.41304513449515, 12.703800179469397 54.42967313451064, 12.670691179438563 54.41461813449661, 12.46389117924599 54.39513613447846, 12.425836179210535 54.37250013445737, 12.36569117915451 54.30520013439471, 12.374373179162603 54.26242713435485, 12.408191179194091 54.24874513434213, 12.451600179234532 54.24971813434303, 12.423954179208778 54.258954134351626, 12.419163179204332 54.28145413437258, 12.480136179261109 54.33193613441961, 12.581945179355927 54.368327134453494, 12.764718179526142 54.37250013445737, 13.023891179767531 54.399718134482725, 13.118609179855724 54.276454134367924, 13.285136180010824 54.2348641343292, 13.379163180098402 54.17443613427292, 13.454582180168643 54.09708213420086, 13.499718180210664 54.08610913419065, 13.484027180196051 54.119445134221706, 13.710827180407279 54.17082713426956, 13.788891180479993 54.10971813421264, 13.799027180489418 54.08416413418885, 13.786109180477382 54.05000013415702, 13.829718180518 53.98638213409777, 13.865273180551128 53.904164134021215, 13.821109180509978 53.87639113399533, 13.808536180498265 53.85478213397522, 13.95916318063857 53.7749911339009, 14.223891180885119 53.70082713383184, 14.275627180933299 53.69906413383018, 14.309718180965035 53.55554513369654, 14.413263181061467 53.33895413349481, 14.39169118104138 53.14416413331341, 14.347363181000105 53.04888213322465, 14.14763618081409 52.95923613314116, 14.14916318081552 52.862782133051354, 14.205418180867895 52.8186091330102, 14.383336181033599 52.730827132928454, 14.478745181122463 52.652500132855494, 14.554582181193098 52.627218132831956, 14.63958218127226 52.57298213278145, 14.633536181266606 52.49055413270469, 14.585136181221543 52.43985413265747, 14.543954181183182 52.42187313264071, 14.534445181174334 52.396245132616855, 14.579863181216638 52.28832713251634, 14.598891181234364 52.27277313250184, 14.707918181335884 52.24561813247655, 14.760763181385101 52.06986413231289, 14.717554181344866 51.94310913219482, 14.689863181319083 51.89694513215184, 14.610136181244826 51.84819113210642, 14.600973181236299 51.82006413208023, 14.667982181298697 51.72388213199065, 14.756109181380765 51.66673613193743, 14.75923618138367 51.607491131882256, 14.715000181342475 51.55471813183311, 14.739445181365255 51.52652713180686, 14.921109181534433 51.48194513176534, 14.953054181564198 51.4699911317542, 14.975554181585153 51.44082713172705, 14.981836181591007 51.36804513165927, 14.971663181581533 51.35721813164918, 15.033818181639418 51.28666413158348, 15.032218181637916 51.23916413153924, 14.96555418157584 51.05221813136512, 14.826182181446029 50.88305413120759, 14.82500018144492 50.85638213118273, 14.80291818142436 50.81971813114859, 14.739718181365504 50.82388213115246, 14.619236181253285 50.85825413118448, 14.631391181264632 50.881100131205756, 14.628336181261773 50.92360913124534, 14.59721818123279 50.982500131300185, 14.569163181206676 51.005554131321674, 14.491663181134498 51.03666413135065, 14.30624518096181 51.05249113136537, 14.258054180916929 50.995136131311966, 14.32124518097578 50.9461091312663, 14.368327181019623 50.93500013125595, 14.31139118096661 50.8822181312068, 13.990691180667909 50.814445131143685, 13.903609180586812 50.78819113111922, 13.891109180575171 50.768882131101236, 13.734163180429022 50.73082713106581, 13.582218180287498 50.7094451310459, 13.541109180249208 50.68971813102752, 13.510827180221014 50.650554130991054, 13.518473180228142 50.64187313098296, 13.463400180176848 50.60166413094552, 13.37833618009762 50.629436130971385, 13.249582179977722 50.58916413093388, 13.187218179919626 50.5027731308534, 13.07944517981926 50.49805413084903, 12.985554179731821 50.41832713077477, 12.917218179668168 50.414718130771405, 12.825136179582415 50.45304513080711, 12.67139117943924 50.41194513076883, 12.51541817929396 50.3924911307507, 12.398609179185172 50.30916413067311, 12.325554179117148 50.23610913060506, 12.32305417911482 50.20666413057765, 12.281109179075742 50.21846413058864, 12.18263617898404 50.31458213067813, 12.093700178901202 50.32253613068556, 12.122082178927656 50.30846413067246, 12.209163179008755 50.16360913053754, 12.193818178994462 50.13631813051214, 12.206145179005944 50.106209130484075, 12.265554179061269 50.06610913044673, 12.491391179271602 49.97582713036266, 12.54597317932243 49.90958213030095, 12.468473179250253 49.78347313018352, 12.45555417923822 49.695545130101635, 12.515482179294025 49.677218130084555, 12.597773179370677 49.52750012994511, 12.674445179442074 49.42500012984965, 12.79721817955641 49.33985412977037, 12.959027179707107 49.33492712976576, 13.173054179906444 49.16721812960958, 13.318473180041877 49.10082712954775, 13.396109180114166 49.049164129499644, 13.402545180120171 49.00619112945961, 13.509718180219977 48.97250012942823, 13.564827180271294 48.973664129429324, 13.62610918032837 48.94763612940508, 13.672218180371317 48.88944512935089, 13.745627180439698 48.87075412933348, 13.83360918052162 48.773609129243, 13.81471818050403 48.7380541292099, 13.825418180513992 48.631109129110285, 13.80374518049382 48.58263612906515, 13.726000180421408 48.5155911290027, 13.654718180355019 48.55166412903631, 13.518609180228253 48.584582129066945, 13.443227180158061 48.560236129044284, 13.457500180171337 48.51555412900268, 13.437918180153105 48.429436128922475, 13.421873180138164 48.3910361288867, 13.39500018011313 48.36610012886348, 13.285273180010961 48.30527312880682, 13.154445179889109 48.29221812879467, 13.017773179761832 48.25943612876415, 12.871245179625362 48.2029091287115, 12.759718179521485 48.12172712863588, 12.766245179527573 48.082218128599095, 12.918891179669743 47.95777312848318, 13.008891179753562 47.854164128386714, 12.944163179693277 47.788745128325786, 12.913954179665126 47.7250001282664, 12.993745179739449 47.71416412825633, 13.023054179766746 47.72416412826564, 13.077500179817434 47.68735412823136, 13.100136179838529 47.64291812818996, 13.05333617979494 47.49756412805459, 13.012500179756898 47.46979112802873, 12.957873179706041 47.47701812803547, 12.80666317956522 47.55471812810782, 12.788191179547994 47.583536128134654, 12.805973179564575 47.61485412816384, 12.827845179584926 47.62124512816979, 12.736945179500282 47.68270912822703, 12.665836179434052 47.68500012822915, 12.60340017937591 47.672291128217324, 12.576391179350765 47.644164128191136, 12.514445179293062 47.633254128180965, 12.455000179237686 47.6677731282131, 12.201109179001236 47.65749112820353, 12.201554179001647 47.61299112816209, 12.00639117881991 47.624445128172766, 11.683054178518773 47.58471812813576, 11.57986317842267 47.524091128079306, 11.457500178308692 47.51221812806824, 11.296391178158672 47.428891127990624, 11.104027177979503 47.396527127960496, 10.9766631778609 47.40027312796397, 10.90944517779829 47.518054128073686, 10.69083617759469 47.55389112810704, 10.56944517748164 47.540273128094356, 10.481800177400004 47.58651812813744, 10.433682177355195 47.58048212813182, 10.436391177357734 47.529164128084034, 10.466182177385463 47.482909128040944, 10.473745177392516 47.437636127998786, 10.336663177264853 47.31270012788244, 10.228891177164485 47.27603612784827, 10.17333617711273 47.27471812784705, 10.211663177148438 47.32249112789154, 10.231736177167107 47.37374512793929, 10.043054176991404 47.49528212805248, 9.810973176775263 47.59416412814457, 9.775418176742136 47.59124512814185, 9.732791176702449 47.54111812809515, 9.692527176664953 47.52951812808436, 9.608773176586936 47.52951812808436, 9.261100176263142 47.66284512820852, 9.033336176051023 47.68832712823226, 8.898891175925826 47.650827128197335, 8.883300175911302 47.65414512820041, 8.855836175885713 47.698882128242076, 8.805482175838819 47.73603612827668, 8.774373175809842 47.715973128258014, 8.800136175833842 47.6817271282261, 8.720218175759413 47.69662712823998, 8.732254175770606 47.708291128250835, 8.736454175774526 47.75707312829627, 8.661391175704637 47.79804512833445, 8.562918175612907 47.806664128342476, 8.477082175532985 47.77061812830888, 8.406945175467655 47.7018001282448, 8.419027175478902 47.67388212821879, 8.48541817554073 47.64708212819383, 8.540554175592092 47.664300128209874, 8.61025417565699 47.66773612821308, 8.6249631756707 47.656209128202335, 8.593054175640987 47.60055412815052, 8.576418175625491 47.59137312814195, 8.562918175612907 47.61840012816714, 8.523473175576186 47.63270012818046, 8.471245175527542 47.60735412815686, 8.435836175494558 47.57360912812541, 8.195763175270969 47.620345128168935, 8.101836175183507 47.57107312812306, 8.0333361751197 47.556109128109114, 7.697218174806665 47.54332712809722)), ((13.26805417999492 54.25500013434794, 13.156109179890649 54.30554513439503, 13.118818179855936 54.33672713442405, 13.133954179870017 54.371382134456326, 13.263891179991049 54.38000013446435, 13.238982179967849 54.41147313449366, 13.164636179898594 54.434345134514984, 13.22860917995817 54.465000134543516, 13.23222717996154 54.48581813456292, 13.16723617990101 54.51337313458856, 13.146963179882135 54.54560913461859, 13.303973180028379 54.55028213462296, 13.36740018008743 54.58043613465102, 13.447463180162003 54.48893613456582, 13.483854180195891 54.483736134560985, 13.516609180226396 54.51337313458856, 13.502573180213318 54.54976413462248, 13.459418180173145 54.550800134623444, 13.383518180102442 54.57835413464909, 13.37467318009422 54.61007313467863, 13.3105541800345 54.573327134644416, 13.248745179976936 54.557782134629946, 13.226527179956236 54.641182134707606, 13.244718179973177 54.656664134722035, 13.292218180017414 54.67333613473755, 13.427082180143032 54.68250013474608, 13.441600180156541 54.674782134738905, 13.384300180103168 54.64193613470832, 13.407427180124728 54.588754134658785, 13.456300180170217 54.573154134644255, 13.6384731803399 54.5849271346552, 13.674509180373462 54.566591134638145, 13.67652718037533 54.52943613460354, 13.5873631802923 54.48319113456046, 13.577282180282907 54.45693613453602, 13.61902718032178 54.40332713448609, 13.671391180370563 54.40152713448441, 13.710691180407139 54.38097313446528, 13.743891180438084 54.331109134418824, 13.729163180424365 54.275136134366704, 13.695345180392849 54.28200913437311, 13.710836180407284 54.296945134387016, 13.712500180408824 54.32263613441094, 13.686945180385038 54.34874513443526, 13.506391180216895 54.342218134429174, 13.357636180078345 54.27319113436488, 13.357500180078205 54.25971813435234, 13.420973180137338 54.26027313435284, 13.426945180142894 54.235827134330094, 13.395418180113523 54.22166413431691, 13.26805417999492 54.25500013434794)), ((14.215827180877596 53.89999113401731, 14.218891180880462 53.869018133988476, 14.039373180713255 53.86978213398919, 14.000273180676857 53.85180013397243, 13.885273180569754 53.84013613396158, 13.829191180517512 53.85950913397963, 13.92916318061063 53.89750013401499, 13.982063180659878 53.96255413407559, 14.039600180713478 53.942645134057045, 14.056000180728745 53.98486413409637, 14.047691180721017 54.00542713411551, 14.014000180689635 54.014173134123666, 13.979882180657853 54.05660913416318, 13.954073180633827 54.06054513416686, 13.924100180605905 54.05901813416543, 13.919145180601276 54.031573134139876, 13.900418180583841 54.011936134121584, 13.859027180545297 53.99943613410994, 13.822773180511547 54.036664134144615, 13.808682180498408 54.07161813417716, 13.8108091805004 54.10447313420775, 13.758054180451268 54.147354134247706, 13.768473180460973 54.1658271342649, 13.812773180502234 54.16673613426573, 13.892382180576362 54.090300134194564, 14.001318180677828 54.06536413417135, 14.225554180886661 53.92860013404396, 14.215827180877596 53.89999113401731)), ((11.243745178109634 54.49444513457095, 11.31250017817365 54.40833613449075, 11.123891177998019 54.40694513448946, 11.02104517790221 54.43875413451909, 11.006109177888305 54.45763613453667, 11.0287451779094 54.504582134580374, 11.066800177944828 54.534582134608314, 11.184163178054149 54.52000013459474, 11.243745178109634 54.49444513457095)), ((8.56360917561355 54.68416413474765, 8.478336175534139 54.68694513475023, 8.398336175459633 54.710200134771895, 8.409863175470377 54.732636134792784, 8.444718175502828 54.7483271348074, 8.551109175601908 54.75388213481256, 8.585136175633608 54.74450913480385, 8.594863175642672 54.71985413478089, 8.56360917561355 54.68416413474765)), ((8.67859117572064 47.69334512823693, 8.673954175716318 47.702854128245775, 8.705482175745686 47.7110361282534, 8.710254175750123 47.69680912824015, 8.67859117572064 47.69334512823693)), ((10.979445177863482 54.38055413446489, 10.995000177877955 54.38194513446618, 11.016454177897941 54.37916413446359, 10.99458217787759 54.37749113446202, 10.979445177863482 54.38055413446489))) +LIE Liechtenstein MULTIPOLYGON (((9.474636176462013 47.05745412764472, 9.511736176496555 47.10597312768991, 9.50208217648759 47.14680912772792, 9.48708217647362 47.172636127751986, 9.485000176471658 47.19624512777398, 9.496809176482657 47.223327127799195, 9.53357317651691 47.27454512784689, 9.566391176547484 47.24389112781833, 9.622773176599992 47.150554127731425, 9.633891176610348 47.1305541277128, 9.633609176610065 47.09714512768167, 9.606945176585242 47.06805412765459, 9.598636176577514 47.06383612765066, 9.5413911765242 47.070000127656385, 9.506391176491604 47.064718127651474, 9.48528217647194 47.0611001276481, 9.474636176462013 47.05745412764472))) +LUX Luxembourg MULTIPOLYGON (((6.356491173558027 49.525864129943585, 6.362782173563886 49.489164129909426, 6.3621731735633205 49.45939112988168, 6.328336173531795 49.4691641298908, 6.302782173508007 49.476664129897785, 6.247318173456335 49.50597312992508, 6.234718173444605 49.50805412992702, 6.160691173375653 49.50430012992351, 6.120245173337992 49.47600012989716, 6.092500173312146 49.4536091298763, 5.979582173207007 49.448464129871525, 5.85528217309124 49.501109129920536, 5.838609173075696 49.51416412993271, 5.810836173049836 49.537636129954564, 5.807882173047091 49.545045129961466, 5.835973173073256 49.54971812996581, 5.863054173098476 49.57166412998626, 5.900282173133149 49.64054513005041, 5.899163173132109 49.66277313007109, 5.8761541731106774 49.70988213011498, 5.869445173104424 49.719718130124136, 5.790282173030704 49.78082713018105, 5.752636172995636 49.79228213019172, 5.734445172978695 49.83500013023149, 5.747773172991117 49.90749113029901, 5.778609173019817 49.95700913034514, 5.834445173071828 49.98693613037301, 5.883054173117102 50.077218130457084, 5.887709173121436 50.09742713047589, 5.9730541732009215 50.170000130543485, 6.017918173242691 50.181809130554484, 6.026254173250464 50.18125413055398, 6.0305541732544725 50.163054130537034, 6.120000173337758 50.13194513050806, 6.134409173351202 50.12784513050423, 6.129163173346313 50.11916413049616, 6.118336173336218 50.09082713046976, 6.113054173331307 50.0573541304386, 6.130554173347605 50.01388213039809, 6.140554173356918 49.99389113037947, 6.174163173388223 49.95110913033963, 6.234163173444102 49.8975001302897, 6.252782173461441 49.882354130275615, 6.315936173520242 49.855318130250424, 6.321109173525059 49.848327130243916, 6.395554173594405 49.81777313021544, 6.429718173626213 49.80888213020717, 6.481945173674859 49.81110013020924, 6.524027173714046 49.807700130206086, 6.505836173697105 49.70662713011194, 6.472500173666049 49.69298213009924, 6.420836173617943 49.665836130073956, 6.356491173558027 49.525864129943585))) +NLD Netherlands MULTIPOLYGON (((5.330445172602424 52.2758271325047, 5.3377821726092805 52.27555413250445, 5.37173617264088 52.26910013249844, 5.40750017267419 52.251936132482456, 5.42250017268816 52.24901813247973, 5.528745172787126 52.26569113249525, 5.548609172805612 52.278745132507424, 5.56624517282205 52.30527313253211, 5.581391172836163 52.325273132550734, 5.6270821728787155 52.355273132578674, 5.670554172919196 52.37138213259368, 5.69512717294208 52.38011813260184, 5.731909172976344 52.39063613261163, 5.770418173012189 52.40359113262369, 5.813736173052547 52.428464132646866, 5.851245173087477 52.463054132679076, 5.878054173112446 52.50943613272227, 5.872418173107178 52.52341813273529, 5.848054173084506 52.57777313278589, 5.855000173090957 52.60690913281303, 5.758891173001473 52.606664132812824, 5.671800172920342 52.60777313281383, 5.600554172854004 52.65819113286079, 5.596736172850427 52.74826413294468, 5.619163172871339 52.779445132973734, 5.665973172914931 52.82340013301467, 5.7183541729637 52.83801813302827, 5.714445172960069 52.840273133030365, 5.648609172898745 52.855409133044475, 5.584509172839063 52.83981813302995, 5.411945172678344 52.853745133042935, 5.370800172640031 52.880200133067575, 5.4059731726727875 52.91131813309656, 5.419582172685466 52.95693613313904, 5.409582172676153 53.03193613320889, 5.369863172639157 53.07040913324471, 5.339163172610569 53.0655541332402, 5.296245172570593 53.050000133225694, 5.263054172539682 53.03527313321197, 5.198309172479384 52.99531813317478, 5.100273172388086 52.94805413313077, 5.091663172380066 52.88582713307281, 5.126109172412129 52.82249113301381, 5.196391172477604 52.7556911329516, 5.223473172502821 52.756800132952634, 5.284754172559872 52.74489113294155, 5.303191172577044 52.70485413290427, 5.255300172532458 52.691591132891915, 5.235973172514463 52.657082132859756, 5.196663172477855 52.63777313284177, 5.167782172450956 52.628882132833496, 5.139300172424413 52.62388213282884, 5.103891172391457 52.64319113284682, 5.050627172341848 52.64152713284528, 5.029718172322362 52.62409113282905, 5.045136172336726 52.56901813277776, 5.067782172357823 52.541382132752005, 5.0897911723783125 52.51082713272356, 5.090282172378778 52.433327132651385, 5.078054172367388 52.41610913263534, 5.046373172337866 52.4026271326228, 5.023891172316951 52.375691132597694, 4.914863172215405 52.38721813260844, 4.875527172178749 52.415600132634864, 4.825791172132455 52.425700132644266, 4.713154172027544 52.44101813265854, 4.6684631719859055 52.46588213268171, 4.582009171905412 52.47708213269212, 4.598336171920607 52.513882132726394, 4.622218171942848 52.59666413280351, 4.634027171953846 52.64319113284682, 4.635836171955532 52.68054513288163, 4.654163171972613 52.751664132947866, 4.738818172051452 52.95666413313879, 4.783473172093039 52.96500013314653, 4.805763172113785 52.94992713313249, 4.808682172116505 52.926245133110456, 4.831245172137528 52.91013613309545, 4.867500172171276 52.898609133084705, 4.896109172197924 52.89708213308327, 4.937782172236751 52.9037451330895, 5.094445172382649 52.959164133141115, 5.1802731724625914 53.00305413318199, 5.18420917246624 53.00552713318427, 5.224445172503721 53.03249113320939, 5.25069117252815 53.049164133224934, 5.301663172575644 53.0727731332469, 5.32721817259943 53.079436133253125, 5.369718172639011 53.08805413326115, 5.387363172655455 53.098327133270715, 5.402500172669534 53.12138213329217, 5.4111091726775555 53.14027313330976, 5.415627172681781 53.170345133337776, 5.4425001727067865 53.211936133376526, 5.462363172725304 53.228464133391924, 5.579718172834589 53.2913821334505, 5.5991631728527125 53.30028213345881, 5.890836173124342 53.382218133535105, 5.981663173208943 53.39889113355062, 6.092500173312146 53.41082713356175, 6.177918173391703 53.413745133564476, 6.187291173400439 53.41242713356323, 6.194718173407352 53.41000013356097, 6.296945173502564 53.40193613355348, 6.452500173647422 53.42528213357522, 6.697500173875596 53.461936133609356, 6.721109173897588 53.46471813361194, 6.741945173917003 53.465827133612976, 6.777500173950102 53.45916413360678, 6.867918174034315 53.427391133577174, 6.90166317406576 53.35027313350534, 6.94250017410377 53.323054133480014, 7.092291174243286 53.256454133417975, 7.200482174344046 53.240409133403034, 7.208363174351376 53.242809133405274, 7.2072181743503165 53.17610913334315, 7.210973174353825 53.0088821331874, 7.196182174340038 52.962500133144204, 7.179718174324705 52.93416413311783, 7.133054174281256 52.88888213307564, 7.0910631742421515 52.836909133027234, 7.073336174225631 52.819718133011236, 7.066245174219034 52.79250013298588, 7.065000174217857 52.760418132956005, 7.063609174216566 52.72138213291964, 7.0534731742071415 52.64958213285277, 7.033745174188766 52.63319113283751, 6.906218174069977 52.64811813285141, 6.7657631739391775 52.65117313285427, 6.7208361738973394 52.62943613283403, 6.71891817389556 52.62678213283155, 6.727773173903813 52.618609132823934, 6.758127173932081 52.56464513277368, 6.722500173898879 52.55943613276884, 6.689582173868246 52.55055413276057, 6.704027173881684 52.48819113270247, 6.7588911739327955 52.460964132677134, 6.954236174114698 52.437218132655005, 6.984027174142454 52.45735413267377, 7.062982174215989 52.39096413261194, 7.070418174222908 52.35582713257921, 7.058118174211472 52.33763613256227, 7.0351361741900575 52.30582713253264, 7.0291001741844354 52.27826413250696, 7.05309117420677 52.23776413246924, 7.042218174196648 52.23166413246358, 6.964718174124471 52.190273132425006, 6.902636174066657 52.172218132408204, 6.875073174040978 52.142354132380405, 6.856036174023245 52.120482132360024, 6.75942717393329 52.1145641323545, 6.736391173911841 52.07666413231922, 6.728609173904573 52.03527313228065, 6.797500173968729 52.00874513225597, 6.828954173998028 51.975754132225234, 6.783054173955293 51.9247181321777, 6.746391173921154 51.90610913216037, 6.722500173898879 51.89790913215273, 6.684654173863635 51.911664132165555, 6.5947181737798815 51.896109132151054, 6.5275001737172715 51.87444513213089, 6.462782173657018 51.85360913211147, 6.351109173552999 51.84805413210631, 6.182218173395711 51.895273132150265, 6.123609173341123 51.888054132143566, 6.003054173228861 51.829991132089475, 5.963609173192111 51.806664132067766, 5.982745173209935 51.76721813203102, 5.952054173181352 51.74752713201269, 6.02889117325293 51.706664131974634, 6.093609173313183 51.605827131880716, 6.13402717335083 51.57082713184812, 6.158609173373719 51.55832713183648, 6.204863173416811 51.513464131794706, 6.222082173432852 51.46735413175176, 6.222500173433218 51.36319113165473, 6.143054173359246 51.29527313159147, 6.077636173298316 51.241382131541286, 6.071663173292762 51.214091131515886, 6.084445173304658 51.17426413147879, 6.097500173316803 51.131100131438586, 6.003054173228861 51.084164131394886, 5.905554173138057 51.06311813137526, 5.86500017310027 51.045345131358715, 5.869445173104424 51.01888213133407, 5.902009173134758 50.97311813129144, 5.943745173173625 50.984300131301865, 6.024927173249239 50.97798213129599, 6.080836173301293 50.914718131237066, 6.084445173304658 50.872082131197345, 6.058163173280178 50.850482131177245, 6.01666317324154 50.84166413116904, 6.008054173233518 50.80221813113229, 6.011800173236992 50.75727313109044, 5.926391173157469 50.75610013108934, 5.898918173131875 50.753882131087266, 5.870554173105461 50.76082713109375, 5.797500173037406 50.76943613110177, 5.739863172983746 50.75985413109285, 5.698609172945311 50.757773131090886, 5.691909172939091 50.7605541310935, 5.704236172950544 50.78200913111348, 5.701945172948427 50.80582713113566, 5.693936172940965 50.80881813113845, 5.683609172931341 50.81138213114082, 5.653609172903401 50.82360913115221, 5.638818172889643 50.84888213117574, 5.651391172901356 50.87513613120021, 5.758054173000687 50.96000013127923, 5.764163173006381 50.99000013130717, 5.776945173018277 51.025836131340554, 5.8180541730565665 51.115000131423585, 5.847136173083641 51.15319113145915, 5.7541631729970675 51.18999113149343, 5.644718172895125 51.20360913150611, 5.56833617282399 51.22070913152206, 5.552918172809626 51.269645131567614, 5.508336172768111 51.2942271315905, 5.47423617273634 51.28687313158366, 5.404373172671285 51.26603613156425, 5.329718172601758 51.2622181315607, 5.238973172517234 51.26228213156077, 5.233336172511997 51.309373131604616, 5.1934731724748815 51.31950913161407, 5.161527172445119 51.315127131609984, 5.141945172426887 51.31971813161425, 5.081073172370196 51.40124513169019, 5.101245172388985 51.434718131721354, 5.076809172366211 51.469300131753556, 5.0384731723305265 51.48694513177, 5.017154172310654 51.470618131754776, 4.997082172291982 51.43631813172286, 4.940482172239257 51.402354131691226, 4.85305417215784 51.41444513170248, 4.8327821721389626 51.429991131716946, 4.845482172150781 51.47527313175911, 4.825836172132483 51.492218131774905, 4.797636172106223 51.50124513178332, 4.766182172076924 51.49992713178207, 4.702082172017242 51.46694513175137, 4.671145171988428 51.43255413171934, 4.647636171966525 51.42319113171061, 4.540345171866591 51.431173131718054, 4.540418171866662 51.4545091317398, 4.544336171870327 51.483045131766374, 4.484300171814397 51.48013613176366, 4.395691171731869 51.451518131737004, 4.399027171734986 51.41388213170194, 4.417782171752464 51.398327131687466, 4.433473171767076 51.37013613166121, 4.4129181717479184 51.35846413165035, 4.388054171724775 51.35750013164943, 4.352918171692039 51.361245131652936, 4.279673171623841 51.376591131667226, 4.252363171598404 51.375145131665874, 4.2025001715519466 51.40500013169367, 4.0561091714156134 51.42582713171308, 3.92694517129533 51.42985413171684, 3.9031911712731926 51.397500131686684, 3.826391171201692 51.389854131679584, 3.5730541709657473 51.44444513173042, 3.5384731709335426 51.45624513174141, 3.4442361708457554 51.52937313180951, 3.4574271708580397 51.54888213182767, 3.4855541708842566 51.563327131841135, 3.5173631709138817 51.57721813185407, 3.5711821709639935 51.59666413187219, 3.691900171076412 51.600309131875576, 3.8350001712096855 51.6066641318815, 3.87083617124307 51.600273131875525, 3.8993091712695787 51.568536131845974, 3.865282171237908 51.54666413182562, 3.843536171217636 51.55402713183247, 3.8205541711962496 51.54916413182795, 3.865854171238425 51.538664131818166, 3.8863361712575113 51.543045131822254, 3.929718171297907 51.547845131826705, 4.006663171369581 51.525273131805676, 4.0480541714081255 51.5091641317907, 4.068336171427006 51.49332713177594, 4.081945171439685 51.469164131753445, 4.10347317145974 51.447491131733244, 4.125554171480303 51.43832713172472, 4.149027171502155 51.43569113172225, 4.246736171593142 51.43687313172336, 4.264282171609494 51.44397313172996, 4.283609171627489 51.448054131733784, 4.292009171635328 51.46958213175381, 4.284718171628526 51.488327131771285, 4.264863171610045 51.509445131790955, 4.229636171577226 51.518618131799485, 4.209582171558566 51.51569113179676, 4.082782171440471 51.53082713181087, 3.997845171361348 51.5901361318661, 4.041945171402432 51.60527313188018, 4.070691171429189 51.611382131885875, 4.169718171521424 51.60555413188047, 4.193054171543167 51.59999113187527, 4.207509171556609 51.58948213186548, 4.2013181715508665 51.60523613188016, 4.186163171536748 51.61704513189116, 4.1598631715122565 51.61485413188913, 4.137218171491156 51.61555413188978, 4.1119451714676245 51.63360913190658, 4.115173171470616 51.64799113191998, 4.140100171493856 51.651891131923605, 4.174382171525764 51.65228213192398, 4.205536171554797 51.65228213192398, 4.209436171558423 51.674091131944294, 4.1693181715210414 51.68577313195516, 4.127218171481843 51.706664131974634, 4.058191171417548 51.75471813201938, 4.020900171382834 51.792073132054156, 3.9868091713510694 51.802082132063475, 3.9558361713222325 51.80166413206311, 3.8741911712461956 51.78637313204885, 3.8679821712404134 51.81214513207286, 3.992082171356003 51.84680013210513, 4.021527171383411 51.839436132098285, 4.06110917142027 51.86027313211767, 4.018054171380186 51.9790541322283, 4.051809171411605 51.985409132234224, 4.089718171446918 51.98402713223294, 4.1183361714735724 51.987636132236304, 4.143745171497244 51.999164132247046, 4.365418171703681 52.17443613241028, 4.404445171740036 52.21027313244363, 4.4247181717589115 52.231382132463295, 4.441663171774707 52.25249113248296, 4.494491171823881 52.32721813255256, 4.517782171845596 52.36083613258387, 4.540836171867056 52.395973132616604, 4.551109171876618 52.41971813263871, 4.574373171898287 52.45447313267107, 4.657954171976144 52.453127132669835, 4.706845172021673 52.4272271326457, 4.845254172150561 52.41020013262985, 4.8859821721885055 52.39037313261139, 4.906882172207958 52.37415413259626, 4.95240017225035 52.37312713259533, 4.991945172287188 52.36110913258412, 5.126945172412917 52.33027313255539, 5.244300172522202 52.31187313253827, 5.2950001725694165 52.29923613252649, 5.330445172602424 52.2758271325047)), ((5.611945172864608 52.36971813259214, 5.5702091728257415 52.36617313258884, 5.545554172802781 52.34680013257079, 5.559445172815714 52.32402713254959, 5.529927172788234 52.28326413251162, 5.422218172687906 52.264164132493846, 5.400973172668131 52.269436132498754, 5.3637451726334575 52.29083613251868, 5.330554172602547 52.309164132535756, 5.305554172579264 52.31777313254375, 5.278609172554155 52.32582713255127, 5.248609172526216 52.33250013255747, 5.20236317248316 52.3397181325642, 5.172845172455652 52.33596413256072, 5.148954172433406 52.34305413256732, 5.136663172421976 52.381518132603134, 5.174654172457338 52.39967313262005, 5.203054172483803 52.41471813263405, 5.296391172570736 52.45166413266847, 5.381945172650404 52.484445132698994, 5.413100172679407 52.49331813270726, 5.451345172715037 52.50947313272229, 5.4549001727183395 52.5225821327345, 5.478054172739917 52.54888213275899, 5.573336172828647 52.588336132795746, 5.643609172894088 52.601109132807636, 5.834373173071754 52.56527313277425, 5.860700173096291 52.530909132742266, 5.851527173087732 52.487500132701825, 5.831109173068711 52.46333613267933, 5.791736173032035 52.426318132644866, 5.759027173001584 52.41389113263327, 5.720836172966017 52.41305413263251, 5.693891172940937 52.40805413262785, 5.6316631728829805 52.384164132605605, 5.611945172864608 52.36971813259214)), ((3.370863170777426 51.37385413166467, 3.4066631708107877 51.385554131675576, 3.5288911709246236 51.411664131699894, 3.5502821709445413 51.40971813169807, 3.6397181710278232 51.381664131671954, 3.734373171115976 51.35076413164316, 3.7641631711437356 51.34527313163804, 3.8645821712372594 51.33958213163274, 3.9613911713274206 51.36971813166082, 4.212400171561171 51.370554131661606, 4.238900171585868 51.350427131642846, 4.221663171569816 51.33541813162887, 4.167218171519096 51.29736413159344, 4.12778217148238 51.27888213157621, 4.062218171421307 51.25221813155139, 3.952500171319116 51.21443613151621, 3.895418171265959 51.20569113150805, 3.7938181711713526 51.230273131530936, 3.7887451711666245 51.26284513156128, 3.66916317105526 51.29277313158914, 3.6000001709908247 51.30416413159978, 3.521736170917933 51.283264131580296, 3.522982170919107 51.25895413155766, 3.474718170874155 51.24263613154247, 3.4398631708417042 51.24478213154447, 3.3883271707937013 51.268673131566715, 3.3801361707860735 51.275273131572845, 3.373609170779986 51.31000013160519, 3.370863170777426 51.37385413166467)), ((5.107436172394756 52.48853613270279, 5.102354172390022 52.5014091327148, 5.071627172361389 52.54704513275729, 5.046945172338411 52.569391132778094, 5.033791172326147 52.61595413282146, 5.049036172340351 52.63679113284087, 5.107009172394356 52.63504513283925, 5.131345172417014 52.61944513282472, 5.1550631724391 52.61854513282387, 5.201073172481955 52.63319113283751, 5.232736172511437 52.64691813285032, 5.257418172534415 52.67457313287605, 5.299300172573425 52.6908271328912, 5.330000172602013 52.682782132883716, 5.380282172648862 52.66721813286921, 5.423336172688948 52.63638213284048, 5.452918172716494 52.6113821328172, 5.483545172745011 52.572773132781236, 5.464545172727327 52.56020913276956, 5.447745172711677 52.5382541327491, 5.4434361727076634 52.51071813272347, 5.418063172684043 52.49838213271198, 5.377763172646496 52.48851813270278, 5.304445172578227 52.45764513267403, 5.178273172460706 52.40656413262644, 5.157763172441605 52.392918132613744, 5.134018172419502 52.38313613260465, 5.054936172345862 52.39439113261511, 5.083127172372116 52.41524513263454, 5.093336172381612 52.43610013265396, 5.097991172385946 52.43500913265294, 5.137363172422624 52.461391132677505, 5.107436172394756 52.48853613270279)), ((3.8248631712002634 51.74229113200781, 3.8819451712534203 51.74389113200928, 3.9640271713298603 51.73353613199964, 4.004445171367507 51.71000013197772, 4.066945171425715 51.67944513194928, 4.104163171460385 51.66194513193298, 4.106145171462231 51.650982131922774, 4.090973171448098 51.64034513191285, 4.0663911714252094 51.62971813190296, 4.014309171376681 51.61874513189275, 3.973745171338919 51.61458213188885, 3.9015271712716526 51.63444513190737, 3.7619451711416616 51.675000131945126, 3.7126541710957497 51.67467313194484, 3.6936821710780805 51.68513613195458, 3.688954171073675 51.71013613197786, 3.7161821710990353 51.73395413200004, 3.780836171159251 51.74639113201161, 3.8125001711887307 51.744718132010064, 3.8248631712002634 51.74229113200781)), ((4.753609172065211 52.988609133168524, 4.738609172051241 52.98971813316956, 4.724163172037805 52.99540913317486, 4.715836172030038 53.00388213318274, 4.708336172023053 53.02055413319829, 4.707363172022156 53.04013613321652, 4.713891172028241 53.05610913323139, 4.721663172035477 53.0661091332407, 4.743336172055649 53.08610913325933, 4.856527172161066 53.18360913335013, 4.868891172172596 53.188327133354534, 4.883545172186217 53.183464133350014, 4.912218172212931 53.14193613331133, 4.910554172211391 53.09458213326721, 4.903336172204661 53.08416413325753, 4.876663172179832 53.05693613323217, 4.858609172163 53.03916413321562, 4.804718172112814 53.00694513318561, 4.78750017209677 52.998882133178085, 4.764718172075561 52.990273133170064, 4.753609172065211 52.988609133168524)), ((5.200554172481475 53.34944513350459, 5.186663172468542 53.34971813350484, 5.169373172452424 53.35909113351357, 5.170000172453001 53.37569113352902, 5.180000172462314 53.38110013353406, 5.218054172497773 53.39388213354596, 5.228054172507086 53.39666413354857, 5.539718172797336 53.449436133597715, 5.556663172813131 53.45194513360005, 5.579027172833946 53.448464133596815, 5.573191172828501 53.435618133584825, 5.561109172817254 53.430273133579846, 5.353336172623756 53.38110013353406, 5.311391172584706 53.371664133525286, 5.213054172493116 53.35000013350509, 5.200554172481475 53.34944513350459))) +CHE Switzerland MULTIPOLYGON (((6.446945173642263 46.83943612744167, 6.46028217365469 46.89582712749419, 6.52833617371806 46.97166412756482, 6.566391173753516 46.980000127572566, 6.63250017381506 47.00000012759119, 6.678336173857758 47.03416412762303, 6.699445173877422 47.06389112765069, 6.79333617396486 47.13082712771305, 6.849718174017369 47.164991127744855, 6.838954174007341 47.17151812775094, 6.971663174130953 47.291936127863096, 7.00083617415811 47.365000127931125, 6.980836174139483 47.36166412792804, 6.931391174093449 47.35889112792543, 6.881663174047134 47.3636731279299, 6.990554174148542 47.49721812805427, 7.0250001741806045 47.50804512806437, 7.1464181742937 47.499054128055974, 7.182918174327682 47.44401812800473, 7.247709174388035 47.42166412798392, 7.275554174413969 47.432491127993984, 7.3083361744444915 47.44027312800122, 7.340282174474254 47.43901812800007, 7.355900174488795 47.434018127995415, 7.358054174490803 47.43360912799503, 7.385418174516275 47.43332712799477, 7.415554174544354 47.44527312800588, 7.433054174560652 47.46054512802013, 7.452773174579022 47.46999112802891, 7.496945174620151 47.49499112805219, 7.502218174625057 47.50054512805738, 7.5025731746253825 47.54992712810335, 7.52166317464318 47.55971812811248, 7.546663174666463 47.565554128117924, 7.554027174673308 47.57888212813032, 7.5770821746947945 47.584309128135374, 7.5882731747051935 47.584482128135534, 7.640554174753902 47.6038821281536, 7.675691174786607 47.60500012815464, 7.6688181747802275 47.57603612812767, 7.621109174735778 47.561100128113765, 7.656109174768375 47.550554128103954, 7.697218174806665 47.54332712809722, 7.7697181748741855 47.55332712810653, 7.917709175012021 47.55422712810736, 8.0333361751197 47.556109128109114, 8.101836175183507 47.57107312812306, 8.195763175270969 47.620345128168935, 8.24083617531295 47.619436128168104, 8.289100175357902 47.60909112815847, 8.390836175452648 47.579991128131354, 8.435836175494558 47.57360912812541, 8.471245175527542 47.60735412815686, 8.523473175576186 47.63270012818046, 8.562918175612907 47.61840012816714, 8.569427175618983 47.59853612814862, 8.576418175625491 47.59137312814195, 8.593054175640987 47.60055412815052, 8.6249631756707 47.656209128202335, 8.61025417565699 47.66773612821308, 8.580554175629345 47.66860912821389, 8.540554175592092 47.664300128209874, 8.522082175574894 47.65166412819812, 8.48541817554073 47.64708212819383, 8.419027175478902 47.67388212821879, 8.406945175467655 47.7018001282448, 8.477082175532985 47.77061812830888, 8.562918175612907 47.806664128342476, 8.611663175658322 47.803882128339865, 8.661391175704637 47.79804512833445, 8.685554175727134 47.78666412832385, 8.736454175774526 47.75707312829627, 8.732254175770606 47.708291128250835, 8.720218175759413 47.69662712823998, 8.753336175790253 47.69360912823717, 8.800136175833842 47.6817271282261, 8.774373175809842 47.715973128258014, 8.805482175838819 47.73603612827668, 8.835282175866581 47.718045128259945, 8.855836175885713 47.698882128242076, 8.883300175911302 47.65414512820041, 8.898891175925826 47.650827128197335, 8.925973175951043 47.65180012819823, 8.94777317597135 47.65749112820353, 8.979445176000837 47.67013612821532, 9.000836176020755 47.680827128225275, 9.033336176051023 47.68832712823226, 9.08263617609694 47.68541812822954, 9.261100176263142 47.66284512820852, 9.47831817646545 47.5758541281275, 9.566727176547772 47.540454128094524, 9.55980017654133 47.50209112805882, 9.596600176575606 47.469436128028406, 9.649654176625006 47.45860912801831, 9.670345176644275 47.39069112795505, 9.637363176613576 47.36958212793539, 9.610963176588967 47.36222712792855, 9.54000017652288 47.28416412785586, 9.53357317651691 47.27454512784689, 9.496809176482657 47.223327127799195, 9.485000176471658 47.19624512777398, 9.48708217647362 47.172636127751986, 9.50208217648759 47.14680912772792, 9.511736176496555 47.10597312768991, 9.474636176462013 47.05745412764472, 9.48528217647194 47.0611001276481, 9.506391176491604 47.064718127651474, 9.5413911765242 47.070000127656385, 9.598636176577514 47.06383612765066, 9.632500176609028 47.056664127643984, 9.719445176690016 47.05028212763804, 9.87291817683294 47.023045127612676, 9.891600176850346 47.00033612759151, 9.875836176835662 46.96818212756156, 9.877782176837485 46.9404091275357, 9.935000176890753 46.91277312750995, 10.05889117700616 46.866391127466756, 10.109445177053232 46.85027312745174, 10.131527177073792 46.85040912745188, 10.14180917708336 46.85134512745276, 10.160836177101089 46.85500012745615, 10.227500177163165 46.8769361274766, 10.31332717724311 46.933609127529365, 10.323327177252423 46.95555412754982, 10.350627177277858 46.991245127583056, 10.390763177315222 47.00256412759359, 10.430000177351758 46.98416412757646, 10.488209177405992 46.935991127531594, 10.471236177390182 46.87135412747139, 10.447500177368056 46.76305412737054, 10.470836177389799 46.63582712725204, 10.486527177404412 46.61735412723485, 10.485691177403623 46.59263612721182, 10.471873177390762 46.55576412717747, 10.457527177377415 46.54250012716511, 10.44971817737013 46.539164127162024, 10.337218177265356 46.54943612717159, 10.303609177234051 46.55486412717664, 10.246318177180711 46.59040912720974, 10.253609177187485 46.61596412723355, 10.241800177176486 46.63444512725076, 10.181109177119964 46.63221812724868, 10.11916317706229 46.61138212722926, 10.051391176999175 46.54151812716421, 10.044445176992696 46.502636127128, 10.049682176997578 46.44559112707486, 10.090691177035751 46.42374512705453, 10.153891177094636 46.390273127023335, 10.173954177113302 46.263118126904914, 10.136391177078337 46.23069112687472, 10.071773177018144 46.22180012686644, 9.995000176946633 46.29166412693152, 9.982218176934737 46.33304512697006, 9.99041817694237 46.355200126990695, 9.946945176901892 46.37958212701338, 9.908054176865676 46.383191127016744, 9.852782176814202 46.369718127004205, 9.8130541767772 46.3583271269936, 9.770554176737619 46.34220912697859, 9.708818176680126 46.300273126939516, 9.624718176601789 46.29193612693177, 9.581945176561959 46.296945126936436, 9.544863176527429 46.3062451269451, 9.521391176505574 46.31971812695764, 9.457636176446186 46.386245127019606, 9.450282176439345 46.42666412705725, 9.455000176443718 46.47250012709992, 9.36680017636158 46.50805412713305, 9.293782176293576 46.500827127126314, 9.250627176253403 46.44242712707191, 9.273127176274357 46.4257641270564, 9.29721817629678 46.35096412698675, 9.292636176292518 46.324854126962435, 9.276663176277651 46.29250012693228, 9.241009176244432 46.23362712687745, 9.176454176184308 46.17860012682621, 9.1444361761545 46.168045126816395, 9.132218176143112 46.16027312680913, 9.083336176097589 46.121109126772666, 9.035827176053346 46.05721812671317, 9.016663176035507 46.022500126680825, 8.99736317601753 45.97513612663673, 9.022982176041381 45.93895412660302, 9.073054176088021 45.920000126585364, 9.084100176098303 45.90229112656888, 9.036663176054134 45.83777312650878, 8.998336176018427 45.82943612650104, 8.951109175974437 45.845273126515764, 8.936318175960679 45.87187312654055, 8.926663175951688 45.900836126567526, 8.897782175924789 45.95277312661588, 8.81986317585222 45.986382126647186, 8.820282175852611 46.033882126691424, 8.851454175881628 46.05673612671271, 8.844163175874854 46.08075412673509, 8.822218175854402 46.09860912675171, 8.747218175784553 46.121109126772666, 8.728854175767452 46.10859112676101, 8.719300175758548 46.104018126756756, 8.696527175737344 46.10110912675404, 8.615836175662196 46.121245126772806, 8.460554175517586 46.233327126877185, 8.445000175503083 46.24721812689012, 8.434582175493404 46.293191126932925, 8.448127175506016 46.32298212696068, 8.465973175522635 46.37263612700693, 8.46083617551784 46.44832712707742, 8.441454175499786 46.46208212709021, 8.365273175428854 46.45360912708233, 8.357218175421337 46.450000127078965, 8.303745175371546 46.42290912705374, 8.141945175220854 46.22290912686748, 8.158745175236504 46.183818126831085, 8.149582175227977 46.151245126800745, 8.00902717509706 46.009300126668535, 7.973054175063567 45.99693612665703, 7.950000175042078 45.994164126654454, 7.906809175001854 45.992636126653025, 7.879300174976237 45.97513612663673, 7.866391174964235 45.94832712661176, 7.855745174954308 45.919054126584484, 7.783891174887401 45.92360912658873, 7.743336174849617 45.93221812659675, 7.709163174817803 45.9433271266071, 7.650282174762964 45.98055412664178, 7.53666317465715 45.98166412664281, 7.4580541745839355 45.94110912660503, 7.429718174557536 45.929445126594175, 7.386109174516918 45.915409126581096, 7.338891174472963 45.9205541265859, 7.296809174433747 45.923191126588335, 7.230282174371808 45.89804512656494, 7.1913911743355925 45.880691126548754, 7.103263174253499 45.883536126551405, 7.070282174222797 45.9030541265696, 7.03805417419278 45.9319361265965, 7.030554174185795 45.96193612662444, 7.007218174164052 45.998054126658076, 6.933054174094991 46.05527312671134, 6.873891174039898 46.088054126741895, 6.783473173955684 46.15471812680397, 6.800000173971057 46.37832712701223, 6.80701817397761 46.404227127036336, 6.798336173969517 46.42860912705905, 6.737782173913132 46.44749112707663, 6.70277317388053 46.45471812708337, 6.633609173816097 46.464164127092175, 6.51513617370577 46.45846412708687, 6.491945173684172 46.45304512708182, 6.319718173523768 46.404164127036296, 6.295554173501273 46.39416412702698, 6.244863173454064 46.356382126991775, 6.230000173440203 46.33020012696741, 6.243745173453021 46.315509126953714, 6.271945173479281 46.261936126903834, 6.245554173454707 46.218327126863215, 6.187500173400622 46.17208212682013, 6.133263173350116 46.14978212679938, 5.996391173222662 46.14694512679674, 5.967009173195294 46.20729112685294, 5.981391173208692 46.22193612686658, 6.009163173234555 46.233891126877694, 6.0300001732539386 46.24139112688468, 6.074582173295482 46.24840012689123, 6.115554173333635 46.261527126903445, 6.106109173324825 46.29749112693693, 6.117636173335569 46.30874512694743, 6.153545173368997 46.3792641270131, 6.111109173329481 46.40971812704146, 6.071109173292228 46.42638212705697, 6.086945173306987 46.44943612707846, 6.13528217335201 46.53971812716253, 6.128682173345851 46.588054127207556, 6.269163173476699 46.68278212729578, 6.3587451735601235 46.716727127327374, 6.435000173631124 46.758045127365875, 6.456873173651502 46.78145412738766, 6.446945173642263 46.83943612744167), (8.710254175750123 47.69680912824015, 8.705482175745686 47.7110361282534, 8.673954175716318 47.702854128245775, 8.67859117572064 47.69334512823693, 8.710254175750123 47.69680912824015))) +USA United States MULTIPOLYGON (((-76.39500890351033 39.22999112035481, -97.41722692308879 25.843327107887518, -124.71430894851119 48.397073128892316, -122.87859994680156 47.06415412765094, -94.93196392077421 49.35853612978775, -82.46278190916138 41.67610012263293, -67.79499989550095 47.06999112765638, -76.39500890351033 39.22999112035481)), ((-148.6730639708245 60.446936140114644, -151.58361797353518 60.976936140608245, -154.2356729760051 58.130691137957456, -158.50528197998148 55.98888213596274, -163.3529089844962 54.80971813486457, -157.39791797895018 57.49277313736334, -156.78181797837638 59.15124513890794, -168.13195498894703 65.66295414497245, -141.0029909636812 69.64236314867856, -129.99365495342795 55.28103613530351, -135.34783595841444 59.46415413919934, -136.65890895963545 58.2165181380374, -139.49999996228144 60.03305413972919, -147.7156819699329 61.27540914088621, -148.6730639708245 60.446936140114644)), ((-153.597781975411 57.598873137462164, -153.6787549754864 57.67012713752854, -153.89500897568783 57.70394513756003, -153.92931797571978 57.808327137657244, -153.50619097532572 57.62846313748972, -153.05118197490197 57.830273137677665, -153.25861797509515 58.002354137837955, -152.15229997406482 57.60819113747084, -153.597781975411 57.598873137462164)), ((-132.15918195544475 55.4444361354557, -132.00723595530326 54.68999113475306, -132.65072695590254 55.24380913526883, -133.21284495642607 55.27783613530053, -132.9211449561544 55.624645135623524, -133.36596395656866 55.61561813561511, -133.14386395636183 55.87978213586115, -133.2650729564747 56.1548451361173, -133.61053595679644 56.34832713629751, -133.18020895639566 56.327282136277915, -132.15918195544475 55.4444361354557)), ((-155.82333597748374 20.27250010269927, -154.79781797652865 19.538082102015295, -155.66314497733453 18.92548210144477, -156.04898197769387 19.73506410219875, -155.82333597748374 20.27250010269927)), ((-168.87331798963746 63.15277314263466, -169.67042699037984 62.944145142440334, -171.8508269924105 63.50860914296604, -170.30001799096618 63.69415414313883, -168.87331798963746 63.15277314263466)), ((-136.20193595920986 57.74721813760033, -135.77930895881627 58.27512713809199, -134.85449095795497 57.45873613733167, -135.83541795886853 57.38708213726491, -136.20193595920986 57.74721813760033)), ((-166.10916398706314 60.410273140080506, -165.55543598654745 59.928736139632036, -167.41806398828217 60.18941813987482, -166.83307298773735 60.206727139890916, -166.10916398706314 60.410273140080506)), ((-133.87414495704195 57.489154137359975, -134.59387295771225 57.03721813693909, -134.95013595804403 58.40547313821338, -134.6683359577816 58.15985413798464, -134.1731269573204 58.159782137984564, -133.87414495704195 57.489154137359975)), ((-134.60998195772726 56.57555413650914, -134.6545909577688 56.166100136127795, -134.8467999579478 56.68360913660976, -135.66752695871216 57.345791137226456, -134.60998195772726 56.57555413650914)), ((-164.17611798526286 54.60416413467314, -164.95234498598577 54.58020013465082, -163.77750898489163 55.055409135093385, -163.53639098466707 55.04729113508583, -163.37498198451675 54.791800134847875, -163.05488198421864 54.66811813473268, -164.17611798526286 54.60416413467314)), ((-131.3889179547274 55.25500013527926, -131.8191639551281 55.45363613546425, -131.25959995460695 55.96027313593609, -130.96806395433543 55.388191135403304, -131.3889179547274 55.25500013527926)), ((-133.05166395627595 56.97748213688345, -133.57556395676386 56.433600136376924, -133.74131795691824 56.894991136806624, -134.01806395717597 57.014718136918134, -133.05166395627595 56.97748213688345)), ((-167.04641798793602 53.59388213373222, -167.02042698791183 53.95665413407008, -166.21514498716186 53.920964134036865, -166.75656398766608 53.44526413359381, -167.8425639886775 53.30637313346446, -167.04641798793602 53.59388213373222)), ((-72.86776390022533 40.756100121776115, -73.6180549009241 40.59443612162556, -74.03249990131008 40.625827121654794, -71.8667998992931 41.07478212207292, -72.86776390022533 40.756100121776115)), ((-133.86220895703082 56.27749113623153, -134.2208269573648 56.0666641360352, -134.4047269575361 56.84777313676264, -133.71929995689774 56.76901813668931, -133.86220895703082 56.27749113623153)), ((-152.695826974571 58.05331813788541, -153.23040897506888 58.16610013799044, -151.965681973891 58.323327138136875, -152.08029097399773 58.15638213798138, -152.695826974571 58.05331813788541)), ((-167.7953179886335 53.49553613364063, -168.46751798925953 53.04888213322465, -169.0866999898362 52.828045133019, -168.35404498915386 53.47332713361996, -167.7953179886335 53.49553613364063)), ((-156.37417297799672 20.580827102986433, -156.6886269782896 20.88610910327074, -156.59709097820433 21.05138210342467, -155.99334497764207 20.782491103174237, -156.37417297799672 20.580827102986433)), ((-174.97919099532402 52.05470013229876, -174.18003599457973 52.41762713263677, -173.99075499440346 52.322136132547826, -174.4441549948257 52.04193613228688, -175.33402699565448 52.0165181322632, -174.97919099532402 52.05470013229876)), ((-132.3188819555935 55.912209135891345, -132.6350089558879 56.0491641360189, -132.69639995594508 56.21930013617734, -132.0937449553838 56.101036136067194, -132.3188819555935 55.912209135891345)), ((-146.9377729692084 60.2863821399651, -147.531126969761 59.85193613956051, -147.9102819701141 59.792563139505205, -147.19359996944667 60.35332714002746, -146.9377729692084 60.2863821399651)), ((-157.81308197933683 21.25888210361792, -158.10057297960458 21.29444510365103, -158.27349997976563 21.577773103914907, -157.94390897945866 21.68443610401424, -157.81308197933683 21.25888210361792)), ((-159.45141798086263 21.86999110418705, -159.75419998114464 21.979164104288728, -159.71461798110778 22.15416410445171, -159.32748198074722 22.201654104495944, -159.45141798086263 21.86999110418705)), ((172.9285913286904 52.7438821329406, 172.47871832827138 52.922218133106696, 173.4369183291638 52.85193613304125, 173.01080032876695 52.79749113299053, 172.9285913286904 52.7438821329406)), ((-133.10219995632303 55.245545135270476, -132.72305495596993 54.784718134841285, -132.6799909559298 54.66610013473081, -133.12249995634193 54.93942713498538, -133.10219995632303 55.245545135270476)), ((-176.93862699714887 51.5844361318608, -176.758363996981 51.95082713220202, -176.42362699666924 51.8277731320874, -176.42751799667286 51.73234513199853, -176.93862699714887 51.5844361318608)), ((-132.80193595604337 56.78638213670547, -132.53625495579593 56.601245136533066, -132.5293269557895 56.5811091365143, -132.93041795616304 56.504436136442905, -132.80193595604337 56.78638213670547)), ((-132.05611795534878 56.11138213607683, -132.34623595561897 56.27096413622547, -132.37179995564279 56.487209136426856, -131.99499095529185 56.32832713627889, -132.05611795534878 56.11138213607683)), ((-135.70029095874267 57.316936137199605, -135.5462449585992 57.132218137027564, -135.82693595886062 56.98582713689123, -135.84583595887824 57.31930013720179, -135.70029095874267 57.316936137199605)), ((-132.83416395607338 56.23081813618808, -133.0554819562795 56.34909113629823, -132.63847295589113 56.435963136379115, -132.64029095589282 56.28319113623684, -132.83416395607338 56.23081813618808)), ((-160.69555498202135 55.3999911354143, -160.54388198188008 55.38555413540087, -160.57376398190792 55.23069113525662, -160.46429098180596 55.18679113521574, -160.81389998213155 55.11790913515159, -160.69555498202135 55.3999911354143)), ((-146.09695496842534 60.39277314006421, -146.59735496889135 60.23888213992086, -146.72282696900822 60.3762361400488, -146.580835968876 60.482491140147744, -146.09695496842534 60.39277314006421)), ((-122.58833594653122 48.392218128887805, -122.66389094660158 48.24470912875043, -122.36999994632788 47.921382128449295, -122.75680894668812 48.23110012873775, -122.58833594653122 48.392218128887805)), ((-133.2855549564938 56.12887313609312, -133.36303595656594 56.01027313598266, -133.79306395696642 55.93138213590919, -133.57138195675998 56.12720913609158, -133.2855549564938 56.12887313609312)), ((-177.9078089980515 51.59192713186778, -177.96278199810268 51.77054513203413, -178.21655499833903 51.874291132130736, -177.82531799797468 51.83110013209051, -177.9078089980515 51.59192713186778)), ((-173.49502699394176 52.01499113226177, -173.92309999434045 52.05165413229591, -174.05682699446498 52.12304513236242, -172.9590449934426 52.083882132325925, -173.49502699394176 52.01499113226177)), ((-147.63363596985647 60.422491140091864, -147.75750896997184 60.16790913985477, -147.9097269701136 60.23471813991699, -147.77986396999268 60.478736140144264, -147.63363596985647 60.422491140091864)), ((-156.86749097845617 21.045827103419498, -157.06780897864274 21.10889110347823, -157.30404497886275 21.097773103467873, -156.705154978305 21.155545103521675, -156.86749097845617 21.045827103419498)), ((-152.89474497475626 57.13582713703093, -153.31110897514404 56.98888213689406, -153.40668197523303 57.06971813696936, -153.23416397507236 57.20582713709612, -152.89474497475626 57.13582713703093)), ((-131.46722695480034 55.23582713526142, -131.3549819546958 55.035554135074904, -131.5938909549183 54.993882135036074, -131.5816639549069 55.254718135279006, -131.46722695480034 55.23582713526142)), ((-165.89751798686603 54.02887313413734, -166.12169098707483 54.114436134217044, -165.65898198664388 54.12234513422439, -165.69696398667926 54.08471813418936, -165.89751798686603 54.02887313413734)), ((-172.2800269928102 60.30277313998039, -172.59915499310742 60.325000140001066, -173.05100899352826 60.49581814016017, -172.91489099340149 60.601518140258605, -172.2800269928102 60.30277313998039)), ((-161.1130999824102 58.655273138446034, -161.0422359823442 58.709991138496974, -160.68979098201595 58.814718138594515, -160.92556398223553 58.56304513836014, -161.1130999824102 58.655273138446034)), ((-177.64224499780417 51.649436131921334, -177.70279099786055 51.698464131967, -177.21304499740444 51.80888213206981, -177.178235997372 51.93387313218622, -177.04779099725053 51.90318213215764, -177.15389999734936 51.699427131967894, -177.64224499780417 51.649436131921334)), ((-159.871644981254 55.278045135300744, -159.84081798122529 55.13596413516842, -160.22555498158363 54.8752641349256, -160.19340898155366 55.11325413514726, -159.871644981254 55.278045135300744)), ((177.3185723327789 51.821109132081205, 177.24801833271317 51.90221813215675, 177.67747233311314 52.10582713234638, 177.60808133304852 51.92346413217655, 177.3185723327789 51.821109132081205)), ((-131.81945495512838 55.41276413542619, -131.6219179549444 55.292773135314434, -131.72222695503783 55.13666413516907, -131.82278195513146 55.21166413523892, -131.81945495512838 55.41276413542619)), ((179.2522003345797 51.34749113164011, 178.95996333430753 51.53971813181914, 178.63831833400798 51.63540913190826, 178.90054533425223 51.613609131887955, 179.4680183347807 51.367636131658884, 179.2522003345797 51.34749113164011)), ((173.66024532937178 52.34887313257272, 173.62884532934254 52.39166413261259, 173.37510932910624 52.401936132622154, 173.78540032948837 52.50332713271658, 173.66024532937178 52.34887313257272)), ((-68.24138189591667 44.438882125205964, -68.18249989586184 44.33277312510714, -68.40625489607022 44.27138212504997, -68.36527289603205 44.4286001251964, -68.24138189591667 44.438882125205964)), ((-145.7805819681307 60.573882140232854, -146.12942696845556 60.470273140136385, -146.32806396864055 60.46360914013016, -145.94195496828098 60.588882140246824, -145.7805819681307 60.573882140232854)), ((-133.30334495651036 55.796945135784, -133.523072956715 55.69082713568517, -133.67778195685906 55.775682135764185, -133.6169269568024 55.82763613581258, -133.30334495651036 55.796945135784)), ((-136.45443595944502 58.08860013791826, -136.33042695932954 58.007500137842726, -136.37597295937195 57.98405413782089, -136.44193595943338 57.84582713769217, -136.45443595944502 58.08860013791826)), ((-156.9072549784932 20.737773103132596, -156.96612697854803 20.743464103137896, -157.0464179786228 20.919018103301397, -156.81225497840472 20.84360910323116, -156.9072549784932 20.737773103132596)), ((179.6497183349499 51.867209132124145, 179.53110033483944 51.89193613214718, 179.48690933479827 51.974300132223874, 179.76900033506104 51.96610013221624, 179.6497183349499 51.867209132124145)), ((-134.51583595763958 58.33804513815059, -134.45443595758238 58.31332713812756, -134.2613999574026 58.19867313802078, -134.68264495779493 58.29957313811474, -134.51583595763958 58.33804513815059)), ((-91.72416391778671 29.558609111347636, -91.84209091789654 29.482491111276744, -92.0368089180779 29.58139111136886, -91.91055491796031 29.645273111428352, -91.72416391778671 29.558609111347636)), ((-153.2580549750946 58.136382137962755, -153.0558449749063 58.03555413786887, -152.89152697475328 57.990618137827, -153.41569997524144 58.06069113789226, -153.2580549750946 58.136382137962755)), ((-119.86805494399775 34.08416411556239, -119.6983359438397 34.04527311552617, -119.51556394366948 34.04458211552553, -119.78832694392351 33.96720911545347, -119.86805494399775 34.08416411556239)), ((-162.3494269835616 63.58860014304054, -162.37747298358775 63.54444514299942, -162.7036179838915 63.57166314302478, -162.56195498375956 63.63527314308402, -162.3494269835616 63.58860014304054)), ((-70.55694589807321 41.46527312243657, -70.50917289802871 41.355409122334265, -70.83499989833217 41.361173122339636, -70.61721789812934 41.47387312244459, -70.55694589807321 41.46527312243657)), ((-152.3422269742417 58.59331813838833, -152.49386397438292 58.47221813827554, -152.65806397453582 58.5454091383437, -152.38192697427866 58.635554138427665, -152.3422269742417 58.59331813838833)), ((-165.56915498656022 54.10889113421186, -165.68086398666426 54.23554513432984, -165.48659998648333 54.2865181343773, -165.48583598648264 54.17332713427189, -165.56915498656022 54.10889113421186)), ((-172.521390993035 52.24304513247418, -172.62805499313433 52.258327132488404, -172.30379099283235 52.34568213256975, -172.31389999284175 52.31192713253833, -172.521390993035 52.24304513247418)), ((-154.42139097617806 56.5877731365205, -154.41653597617355 56.53735413647357, -154.787472976519 56.41496413635957, -154.7149999764515 56.517791136455344, -154.42139097617806 56.5877731365205)), ((-169.99999999068677 52.83867313302889, -169.76083599046405 52.884164133071266, -169.67504499038412 52.81777313300941, -169.96043599064993 52.78569113297954, -169.99999999068677 52.83867313302889)), ((-132.8138999560545 55.185818135214845, -132.73220895597842 55.14027313517241, -132.6719359559223 55.0370731350763, -132.86679095610378 55.03208213507165, -132.8138999560545 55.185818135214845)), ((-170.7950179914272 52.53249113274373, -170.745408991381 52.67415413287566, -170.56459099121258 52.6697731328716, -170.6034819912488 52.59304513280014, -170.7950179914272 52.53249113274373)), ((-131.23830895458713 54.98638213502909, -131.23389095458302 54.877209134927426, -131.48346395481545 54.92235413496948, -131.45138195478557 54.953045134998064, -131.23830895458713 54.98638213502909)), ((-133.29666395650412 55.330554135349644, -133.24138195645264 55.215409135242396, -133.43639995663426 55.21193613523917, -133.4374999566353 55.30485413532571, -133.29666395650412 55.330554135349644)), ((-148.02972697022537 60.927773140562465, -147.91237297011605 60.817282140459554, -148.13361797032212 60.80277314044605, -148.10442697029492 60.91471814055029, -148.02972697022537 60.927773140562465)), ((-122.89555494681733 48.71110912918479, -122.75110894668282 48.64901812912697, -123.01249994692625 48.60582712908675, -123.0202819469335 48.63555412911444, -122.89555494681733 48.71110912918479)), ((-153.45721797528012 57.96915413780701, -153.2725179751081 57.90110013774364, -153.21055497505037 57.809991137658784, -153.53508197535263 57.9308911377714, -153.45721797528012 57.96915413780701)), ((-118.51666394273917 33.47776411499764, -118.34972694258371 33.39832711492366, -118.30374594254089 33.30985411484126, -118.44964594267677 33.32860911485872, -118.51666394273917 33.47776411499764)), ((-133.44778195664486 55.3999911354143, -133.5951359567821 55.23554513526116, -133.68430895686515 55.30832713532894, -133.5866729567742 55.417218135430346, -133.44778195664486 55.3999911354143)), ((-154.0833089758632 56.6038821365355, -154.20707297597846 56.4997181364385, -154.3524819761139 56.54166313647758, -154.27224497603916 56.59943613653138, -154.0833089758632 56.6038821365355)), ((-162.75362698393806 54.48471813456189, -162.59555498379086 54.453464134532794, -162.54291798374183 54.38401813446811, -162.83610898401488 54.45415413453341, -162.75362698393806 54.48471813456189)), ((-132.61639095587057 54.89082713494011, -132.6330549558861 54.7488821348079, -132.78987295603213 54.90499113495329, -132.70889095595672 54.94054513498642, -132.61639095587057 54.89082713494011)), ((-80.66055490748293 28.31888211019306, -80.74028190755718 28.478327110341553, -80.64305490746663 28.59763611045267, -80.61054590743635 28.54833611040675, -80.66055490748293 28.31888211019306)), ((-119.99999994412065 33.98962711547435, -120.10749994422076 33.90554511539604, -120.22609994433122 34.00610011548969, -120.051935944169 34.03610911551763, -119.99999994412065 33.98962711547435)), ((-97.35824592303386 26.706964108691835, -97.40055492307327 27.02082710898415, -97.3831909230571 27.202527109153365, -97.1765999228647 26.087773108115172, -97.35824592303386 26.706964108691835)), ((-162.23275498345296 54.965273135009426, -162.29306398350911 54.834164134887345, -162.4198639836272 54.88596413493559, -162.3199909835342 54.980409135023535, -162.23275498345296 54.965273135009426)), ((-123.0997269470075 48.60388212908492, -122.99499994690996 48.52971812901586, -122.96263594687981 48.45263612894408, -123.14861794705303 48.501664128989745, -123.0997269470075 48.60388212908492)), ((-176.0547449963257 51.96165413221209, -176.16752699643072 51.99457313224275, -176.15221799641648 52.10332713234405, -176.04171799631357 52.098036132339104, -176.0547449963257 51.96165413221209)), ((-96.77664592249221 28.192054110074935, -96.71097292243104 28.204436110086462, -96.40992692215067 28.395209110264133, -96.81360892252663 28.092491109982205, -96.77664592249221 28.192054110074935)), ((-97.24638192292969 27.54444510947181, -97.38798192306156 27.222427109171903, -97.31722692299566 27.49582710942653, -97.04319092274045 27.839854109746923, -97.24638192292969 27.54444510947181)), ((-159.5161179809229 55.23804513526349, -159.51947298092603 55.06415413510152, -159.64875498104644 55.040000135079026, -159.65306398105042 55.12554513515872, -159.5161179809229 55.23804513526349)), ((-148.0369549702321 60.18415413986989, -148.1548729703419 60.040273139735916, -148.30708197048367 60.02763613972414, -148.22442697040668 60.108327139799286, -148.0369549702321 60.18415413986989)), ((-155.55667297723537 55.91137313589056, -155.57680897725413 55.77596413576447, -155.71597297738373 55.78443613577235, -155.7399909774061 55.82860913581348, -155.55667297723537 55.91137313589056)), ((-160.19976398155958 21.783600104106597, -160.22719998158516 21.891382104206983, -160.06139998143072 22.01388210432107, -160.0711359814398 21.909164104223535, -160.19976398155958 21.783600104106597)), ((-161.7322089829868 55.14860913518018, -161.64292698290365 55.10527313513981, -161.9033549831462 55.13249113516517, -161.8277909830758 55.17082713520088, -161.7322089829868 55.14860913518018)), ((-166.21945498716588 53.70470913383545, -166.29180898723325 53.79430013391888, -166.09002698704532 53.839427133960925, -166.1174909870709 53.77498213390089, -166.21945498716588 53.70470913383545)), ((-170.2806089909481 57.10500013700221, -170.41141799106992 57.183736137075556, -170.13977299081694 57.21692713710647, -170.16293599083852 57.1669271370599, -170.2806089909481 57.10500013700221)), ((-176.33642699658805 51.72165413198857, -176.39254499664028 51.738600132004365, -176.41615499666227 51.85249113211043, -176.2780909965337 51.85915413211663, -176.33642699658805 51.72165413198857)), ((-160.32833598167934 55.350273135367985, -160.33555498168607 55.24610013527098, -160.52536398186282 55.316382135336426, -160.49847298183778 55.34943613536723, -160.32833598167934 55.350273135367985)), ((-70.01945489757263 41.383882122360774, -69.97944589753537 41.25527312224099, -70.23222689777079 41.281664122265596, -70.10959089765657 41.296245122279174, -70.01945489757263 41.383882122360774)), ((-147.8766449700828 60.10388213979513, -148.12027297030968 59.99540913969412, -148.13876397032692 59.9981911396967, -147.9637449701639 60.153327139841196, -147.8766449700828 60.10388213979513)), ((-118.53029094275186 32.993327114546474, -118.3691639426018 32.854709114417375, -118.36945494260208 32.83277311439694, -118.5938909428111 33.044582114594206, -118.53029094275186 32.993327114546474)), ((-74.06277290133826 40.63943612166747, -74.10860890138095 40.55971812159322, -74.23520890149885 40.51471812155131, -74.17389090144175 40.642354121670195, -74.06277290133826 40.63943612166747)), ((-134.114717957266 55.89971813587971, -134.25249995739432 55.817354135803015, -134.3408359574766 55.91374513589278, -134.11639095726755 55.92166413590016, -134.114717957266 55.89971813587971)), ((-71.22055489869125 41.6333271225931, -71.23277289870262 41.494709122464, -71.35561789881703 41.45762712242947, -71.26319089873095 41.63048212259045, -71.22055489869125 41.6333271225931)), ((-169.58001799029563 56.535827136472136, -169.64474499035592 56.5470821364826, -169.78286399048454 56.61430013654521, -169.47276399019574 56.59470913652697, -169.58001799029563 56.535827136472136)), ((-133.64557295682908 55.44110013545259, -133.7466449569232 55.46527313547509, -133.71887295689734 55.5480451355522, -133.58359995677137 55.537082135541965, -133.64557295682908 55.44110013545259)), ((-96.83917292255045 28.106382109995153, -96.88779092259571 28.030554109924523, -97.03582692273359 27.87527310977991, -96.92193592262751 28.08971810997963, -96.83917292255045 28.106382109995153)), ((-80.43221790727027 27.843327109750163, -80.29249990714015 27.468882109401434, -80.16514590702154 27.1862451091382, -80.28889090713679 27.413327109349694, -80.43221790727027 27.843327109750163)), ((-75.52721790270213 35.2355451166347, -75.65360890281984 35.22554511662538, -75.51479990269057 35.775964117138, -75.44749090262788 35.58250011695783, -75.52721790270213 35.2355451166347)), ((-159.3821999807982 55.05610013509403, -159.33859098075757 54.97192713501565, -159.4583449808691 54.94610013499158, -159.47915498088847 55.01416413505498, -159.3821999807982 55.05610013509403)), ((-157.24026397880334 56.581663136514834, -157.07278197864736 56.580827136514046, -156.97568197855693 56.53721813647343, -157.32720897888433 56.52221813645946, -157.24026397880334 56.581663136514834)), ((-164.97640898600818 54.12644513422822, -164.9618179859946 54.076382134181586, -165.22164498623658 54.093045134197126, -165.13320898615422 54.12749113422919, -164.97640898600818 54.12644513422822)), ((-153.39306397522034 59.402491139141915, -153.34583597517639 59.36193613910416, -153.55208197536845 59.33804513908191, -153.5187549753374 59.38513613912576, -153.39306397522034 59.402491139141915)), ((-158.80889998026424 55.892218135872724, -158.71055498017267 55.83470913581917, -158.90605498035472 55.81485413580069, -158.8947269803442 55.86999113585202, -158.80889998026424 55.892218135872724)), ((-94.84194592069038 29.26944511107834, -94.87916392072503 29.240273111051167, -95.11231792094217 29.101564110921984, -94.7815089206341 29.3183641111239, -94.84194592069038 29.26944511107834)), ((-134.8188819579218 57.401654137278484, -134.809444957913 57.29666313718073, -134.97310895806544 57.40901813728536, -134.88806395798622 57.42832713730334, -134.8188819579218 57.401654137278484)), ((-80.38755490722868 25.18179110727141, -80.26098190711079 25.34805410742625, -80.60086390742734 24.950809107056287, -80.45556390729202 25.091382107187215, -80.38755490722868 25.18179110727141)), ((-133.26974495647906 55.52721813553279, -133.34887295655275 55.44734513545839, -133.4340999566321 55.52408213552988, -133.37747295657937 55.55638213555994, -133.26974495647906 55.52721813553279)), ((-147.82388197003365 60.049163139744195, -147.89389097009885 59.98832713968753, -148.04223597023702 59.94734513964934, -147.883326970089 60.067218139760996, -147.82388197003365 60.049163139744195)), ((-122.86805494679172 48.552491129037065, -122.80888194673662 48.45443612894576, -122.81443594674178 48.41790912891173, -122.93486394685394 48.455273128946516, -122.86805494679172 48.552491129037065)), ((-148.13833597032652 60.756100140402566, -148.09457297028575 60.67749114032935, -148.14500897033273 60.64097314029536, -148.23209097041382 60.7236001403723, -148.13833597032652 60.756100140402566)), ((-164.77001798581597 66.5308181457807, -164.87691798591553 66.50277314575459, -165.46846398646645 66.41290014567087, -165.1174909861396 66.48610014573904, -164.77001798581597 66.5308181457807)), ((-145.0880449674857 60.39943614007041, -145.12652696752156 60.30569113998308, -145.28083596766527 60.332354140007936, -145.09832696749527 60.41554514008541, -145.0880449674857 60.39943614007041)), ((-122.38109994633822 47.39471812795881, -122.51854594646622 47.37151812793721, -122.44943594640185 47.51631812807207, -122.42194594637625 47.43220912799373, -122.38109994633822 47.39471812795881)), ((-133.47833595667333 55.515000135521404, -133.42889095662727 55.43942713545104, -133.5990179567857 55.44867313545964, -133.51250895670515 55.51943613552555, -133.47833595667333 55.515000135521404)), ((-147.97860897017776 60.371936140044795, -148.0204269702167 60.28916313996771, -148.14044497032847 60.304991139982434, -148.0716549702644 60.368045140041176, -147.97860897017776 60.371936140044795)), ((-176.13919099640435 51.77443613203775, -176.216126996476 51.81776413207808, -176.20767299646812 51.876791132133064, -176.01391799628766 51.83304513209234, -176.13919099640435 51.77443613203775)), ((-144.23803596669407 59.98777313968702, -144.41113596685528 59.91638213962051, -144.60138196703247 59.81081813952221, -144.4425089668845 59.925273139628814, -144.23803596669407 59.98777313968702)), ((178.5280453339053 51.89332713214847, 178.45317233383554 51.941800132193606, 178.4764093338572 51.98624513223501, 178.60662733397845 51.946100132197614, 178.5280453339053 51.89332713214847)), ((-166.21053598715756 66.20888214548086, -166.58777298750888 66.11638214539471, -166.66322698757915 66.1052911453844, -166.17153598712125 66.21901814549031, -166.21053598715756 66.20888214548086)), ((-68.63276389628118 44.276654125054876, -68.61513589626476 44.18819112497249, -68.71056389635363 44.17777312496278, -68.72097289636332 44.231654125012966, -68.63276389628118 44.276654125054876)), ((-86.55888191297618 30.396664112128136, -87.25110891362085 30.317427112054347, -87.2903459136574 30.334582112070322, -86.76306391316633 30.40499111213589, -86.52764591294708 30.397045112128495, -86.55888191297618 30.396664112128136)), ((-160.1549999815179 55.43749113544922, -160.17889098154015 55.39610013541068, -160.34089998169102 55.412345135425795, -160.26444498161982 55.46319113547315, -160.1549999815179 55.43749113544922)), ((-153.87609997567023 56.551100136486355, -153.95889097574732 56.502773136441334, -154.12977297590646 56.50847313644667, -154.03917297582208 56.547500136482995, -153.87609997567023 56.551100136486355)), ((-150.60970897262814 59.38081813912174, -150.6883359727014 59.30846313905434, -150.775981972783 59.325827139070526, -150.69098197270384 59.40416313914349, -150.60970897262814 59.38081813912174)), ((-133.21554495642857 55.86193613584453, -133.2454089564564 55.77512713576368, -133.3315269565366 55.87360013585538, -133.26819995647762 55.899436135879455, -133.21554495642857 55.86193613584453)), ((-75.08528190229055 19.893036102345874, -75.15972690235988 19.890482102343498, -75.13973590234126 19.96287310241091, -75.08723590229236 19.965554102413407, -75.08528190229055 19.893036102345874)), ((-75.22372690241949 19.9015541023538, -75.19320890239106 19.96097310240914, -75.15918190235938 19.96305410241108, -75.17029090236971 19.931391102381596, -75.22372690241949 19.9015541023538)), ((-123.09374594700192 48.99943612945333, -123.03431794694657 48.99943612945333, -123.08653594699521 48.97207312942783, -123.09374594700192 48.99943612945333))) +BLR Belarus MULTIPOLYGON (((25.546673191430273 51.9221361321753, 25.439991191330904 51.922218132175374, 25.352082191249053 51.92860913218132, 25.31221819121191 51.939709132191666, 25.26958219117222 51.953609132204605, 25.240963191145568 51.95985413221044, 25.173054191082315 51.959300132209904, 25.093609191008312 51.942218132194, 25.051936190969514 51.93220913218468, 24.991936190913634 51.911936132165806, 24.897500190825667 51.900691132155316, 24.740554190679518 51.889718132145106, 24.700273190642008 51.893882132148974, 24.394227190356958 51.88471813214045, 24.314582190282806 51.82402713208393, 24.306109190274896 51.8030451320644, 24.29735419026676 51.764573132028545, 24.283400190253758 51.741173132006764, 24.07055419005553 51.624991131898554, 24.04305419002992 51.61027313188484, 23.99819118998812 51.59290913186868, 23.963463189955803 51.585545131861835, 23.93840018993245 51.59610013187165, 23.922909189918016 51.61985413189379, 23.90159118989817 51.63415413190708, 23.751318189758223 51.65179113192352, 23.650000189663842 51.636173131908976, 23.613291189629678 51.60672713188154, 23.627773189643165 51.579718131856396, 23.641073189655543 51.52350013180404, 23.6046361896216 51.527691131807956, 23.567173189586725 51.53960013181904, 23.53916318956064 51.592764131868535, 23.534991189556735 51.6535911319252, 23.555482189575827 51.66520013193602, 23.54777318956866 51.686382131955725, 23.55805418957823 51.7524911320173, 23.612482189628906 51.91595413216953, 23.62680018964224 51.95207313220317, 23.660827189673938 52.00610013225349, 23.638609189653238 52.0794361323218, 23.59500018961262 52.11193613235207, 23.3483271893829 52.2067911324404, 23.297773189335828 52.21166413244495, 23.214718189258463 52.223464132455945, 23.19277318923804 52.23319113246498, 23.165400189212534 52.28227313251071, 23.248382189289828 52.37448213259657, 23.37749118941005 52.49832713271192, 23.39721818942843 52.514445132726934, 23.417218189447055 52.525273132737, 23.50360918952751 52.56750013277633, 23.523054189545633 52.573609132782025, 23.597218189614694 52.59638213280323, 23.63360918964858 52.60555413281179, 23.655273189668776 52.61027313281616, 23.68832718969955 52.61720913282264, 23.71582718972516 52.61595413282146, 23.746800189753998 52.61464513282024, 23.88388218988166 52.678045132879305, 23.911800189907666 52.693182132893384, 23.935273189929546 52.717491132916024, 23.941100189934957 52.74971813294604, 23.93971818993367 52.77027313296517, 23.938663189932697 52.77470913296932, 23.9313821899259 52.85860913304745, 23.92749118992228 52.94837313313104, 23.933191189927584 53.012082133190376, 23.85860918985813 53.19582713336152, 23.785918189790436 53.3143361334719, 23.700554189710942 53.45304513360108, 23.673536189685763 53.49374513363898, 23.640273189654806 53.55915413369988, 23.61721818963332 53.61401813375099, 23.608609189625298 53.637500133772846, 23.59277318961057 53.68527313381733, 23.590445189608403 53.69442713382588, 23.580554189599184 53.731100133860025, 23.539718189561142 53.84082713396222, 23.51000918953349 53.89931813401668, 23.503891189527792 53.92138213403723, 23.502782189526755 53.942491134056894, 23.50403618952791 53.94704513406114, 23.516663189539685 53.946654134060765, 23.543609189564762 53.94331813405768, 23.568609189588045 53.93915413405378, 23.59430018961197 53.93082713404604, 23.709436189719213 53.92388213403956, 23.783882189788528 53.93554513405044, 23.89888218989563 53.9405451340551, 23.986109189976872 53.93888213405353, 24.016109190004812 53.93720913405198, 24.084927190068925 53.937554134052306, 24.122636190104032 53.951454134065244, 24.149582190129138 53.9652731340781, 24.17555419015332 53.96749113408018, 24.206873190182478 53.962982134075986, 24.241800190215002 53.94569113405987, 24.25624519022847 53.92943613404475, 24.26735419023882 53.90720913402404, 24.391663190354592 53.89033613400832, 24.467491190425193 53.92262713403841, 24.514445190468933 53.95040913406427, 24.612218190559986 53.99221813410321, 24.695618190637674 53.99651813410722, 24.72401819066411 53.97020013408272, 24.82673619075979 53.9843641340959, 24.840409190772505 54.0111091341208, 24.839445190771613 54.03819113414602, 24.822500190755818 54.0647821341708, 24.79840019073339 54.10159113420508, 24.847773190779378 54.14340013424402, 24.971518190894614 54.157282134256945, 25.004027190924887 54.14235413424305, 25.027082190946373 54.13193613423334, 25.07721819099305 54.136109134237216, 25.10139119101558 54.144436134244984, 25.161945191071965 54.1724911342711, 25.178882191087723 54.18610013428378, 25.204445191111546 54.215964134311605, 25.345827191243217 54.25277313434586, 25.372500191268045 54.25416413434718, 25.398745191292505 54.25847313435119, 25.420691191312926 54.27096413436283, 25.438327191329364 54.2888911343795, 25.466936191356012 54.30436413439392, 25.501109191387826 54.303045134392704, 25.573054191454844 54.243045134336825, 25.544582191428333 54.20054513429724, 25.505409191391834 54.18512713428288, 25.539927191424 54.14548213424595, 25.66867319154389 54.13652713423761, 25.766109191634627 54.15388213425376, 25.785000191652216 54.16450913426368, 25.807218191672916 54.24665413434016, 25.7127001915849 54.33151813441921, 25.691518191565166 54.327354134415344, 25.650273191526765 54.3158271344046, 25.61110919149027 54.311382134400446, 25.575409191457027 54.31263613440163, 25.551663191434926 54.326909134414905, 25.55513619143815 54.362636134448195, 25.655754191531855 54.52311813459764, 25.724718191596082 54.54846413462127, 25.748882191618577 54.56443613463614, 25.7626361916314 54.58249113465294, 25.75770019162681 54.61499113468321, 25.732082191602956 54.654154134719676, 25.7270821915983 54.67485413473898, 25.73693619160747 54.78811813484444, 25.792082191658835 54.87304513492356, 25.875136191736175 54.941100134986925, 25.911945191770457 54.95360913499857, 25.936663191793485 54.95554513500039, 26.076382191923585 54.96193613500634, 26.160827192002245 54.97720913502056, 26.21471819205243 55.02568213506569, 26.249445192084778 55.078673135115054, 26.253054192088143 55.118736135152375, 26.28013619211336 55.14569113517746, 26.481663192301056 55.15499113518612, 26.512082192329387 55.15027313518172, 26.641663192450068 55.19082713521951, 26.783745192582387 55.254854135279146, 26.806800192603845 55.269718135292976, 26.813054192609684 55.290273135312106, 26.775409192574614 55.31124513533166, 26.645827192453936 55.33027313534936, 26.625273192434804 55.33027313534936, 26.560827192374774 55.3138821353341, 26.52888219234501 55.31777313533772, 26.505836192323557 55.32388213534341, 26.4648541922854 55.33874513535727, 26.526663192342966 55.44693613545803, 26.627909192437244 55.59840013559909, 26.62263619243234 55.65235413564935, 26.613209192423568 55.67483613567026, 26.624854192434412 55.687909135682446, 26.64221819245057 55.69874513569255, 26.665273192472057 55.70582713569914, 26.692054192496983 55.70173613569531, 26.738473192540226 55.6877641356823, 26.765827192565695 55.68749113568205, 26.856663192650302 55.713882135706626, 26.88326319267506 55.74048213573141, 26.90499119269529 55.77554513576408, 26.985827192770586 55.832354135816985, 27.152773192926077 55.846518135830166, 27.21166319298092 55.8258271358109, 27.310827193073266 55.80749113579381, 27.53110919327841 55.78889113577648, 27.55971819330506 55.78916413577676, 27.6002451933428 55.79251813577986, 27.620000193361193 55.81832713580391, 27.63204519337242 55.846000135829684, 27.64638219338576 55.91957313589819, 27.712491193447335 55.95610013593222, 27.79610919352521 56.00110913597413, 27.897773193619912 56.07027313603854, 27.922491193642912 56.10512713607102, 28.121663193828425 56.16749113612909, 28.149645193854468 56.16096413612303, 28.16800919387157 56.150154136112945, 28.16860919387213 56.1486091361115, 28.187082193889353 56.13401813609792, 28.309900194003717 56.051364136020936, 28.348036194039253 56.05552713602481, 28.37895419406803 56.0904091360573, 28.52819119420701 56.105136136071025, 28.620963194293438 56.09930013606558, 28.650000194320455 56.09124513605809, 28.700554194367555 56.033600136004395, 28.70700919437357 56.00380913597664, 28.72549119439077 55.968564135943836, 28.746109194409968 55.95610913593222, 28.843809194500977 55.95116413592763, 28.86513619452083 55.97831813595292, 29.00610919465211 56.023882135995336, 29.02763619467217 56.02943613600053, 29.05943619470179 56.03277313600361, 29.139163194776046 56.02193613599354, 29.172218194806817 56.015545135987594, 29.41006319502833 55.9579091359339, 29.455654195070792 55.91940013589803, 29.410273195028537 55.89749113587763, 29.35979119498151 55.796800135783855, 29.382291195002466 55.75999113574957, 29.484991195098104 55.692209135686454, 29.524436195134854 55.69297313568717, 29.65638219525772 55.765273135754484, 29.906936195491085 55.84610013582977, 29.93735419551942 55.85305413583626, 29.97251819555217 55.856373135839334, 30.245827195806697 55.854436135837545, 30.466663196012377 55.805545135792016, 30.491518196035514 55.79901813578593, 30.61096319614677 55.71776413571024, 30.655273196188034 55.660545135656974, 30.757500196283218 55.59700013559777, 30.788745196312334 55.59470913559565, 30.84569119636535 55.61478213561435, 30.88500019640196 55.618464135617785, 30.914582196429535 55.61069113561052, 30.92624519644039 55.60257313560297, 30.930273196444148 55.57777313557986, 30.939991196453178 55.49582713550356, 30.936245196449704 55.39936413541372, 30.913463196428495 55.37860013539438, 30.88930019640597 55.37569113539166, 30.857773196376627 55.3536091353711, 30.831391196352058 55.329991135349104, 30.815973196337694 55.30172713532278, 30.917909196432618 55.20096413522896, 30.944027196456943 55.19165413522026, 30.978054196488642 55.152218135183546, 31.027536196534726 55.048500135086954, 30.940409196453572 54.963882135008134, 30.90819119642356 54.95401813499896, 30.86471819638308 54.94720913499262, 30.838891196359043 54.92249113496959, 30.794718196317888 54.84360913489613, 30.782709196306712 54.79909113485468, 30.838054196358257 54.78124513483806, 30.876382196393934 54.76915413482678, 30.919445196434054 54.751391134810234, 31.008745196517225 54.70916413477093, 31.103054196605058 54.64554513471168, 31.138191196637763 54.57638213464725, 31.111382196612794 54.5477731346206, 31.08729119659037 54.516173134591185, 31.092700196595416 54.49262713456926, 31.13055419663067 54.47860013455619, 31.19860019669403 54.460936134539736, 31.225963196719533 54.45930013453821, 31.312009196799664 54.341309134428315, 31.31040919679816 54.300409134390236, 31.32860919681511 54.24325413433701, 31.52416319699725 54.15082713425093, 31.544163197015877 54.14332713424395, 31.67555419713824 54.106654134209776, 31.72624519718545 54.106382134209525, 31.755836197213 54.104854134208125, 31.845554197296565 54.06096413416725, 31.865273197314934 54.00610013411614, 31.857218197307418 53.96970913408225, 31.82888219728102 53.886382134004634, 31.805200197258984 53.856518133976834, 31.779163197234737 53.837354133958996, 31.764227197220805 53.80434513392825, 31.890200197338146 53.7781181339038, 31.935554197380384 53.78916413391411, 31.97138219741373 53.798336133922646, 31.99304519743393 53.80249113392651, 32.119709197551884 53.81999113394281, 32.329436197747214 53.76221813388901, 32.45666319786571 53.72457313385394, 32.48430019789143 53.71221813384244, 32.505482197911164 53.682773133815004, 32.42054519783207 53.647564133782225, 32.42443619783569 53.6012451337391, 32.443527197853456 53.57284513371263, 32.47373619788161 53.55277313369393, 32.62027319801808 53.499854133644675, 32.64124519803761 53.50166413364636, 32.66512719805985 53.49846413364338, 32.74005419812963 53.45880913360642, 32.73654519812635 53.438364133587385, 32.724436198115086 53.36027313351465, 32.61193619801031 53.313045133470695, 32.446100197855856 53.21499113337936, 32.42193619783336 53.19610013336177, 32.29888219771874 53.13193613330202, 32.22331819764838 53.10555413327745, 32.14207319757273 53.08957313326255, 32.11207319754479 53.08720913326036, 31.958045197401333 53.094436133267095, 31.918327197364334 53.098327133270715, 31.7996541972538 53.1321451333022, 31.789445197244305 53.1702731333377, 31.776454197232198 53.19270013335861, 31.623191197089454 53.217764133381934, 31.425754196905586 53.20880913337359, 31.400000196881592 53.18860013335478, 31.383191196865937 53.153464133322075, 31.37482719685815 53.12193613329271, 31.386836196869353 53.104018133276014, 31.314718196802175 53.05138213322698, 31.266663196757435 53.02331813320086, 31.39082719687306 52.91027313309556, 31.41527319689584 52.893054133079545, 31.438882196917803 52.87943613306686, 31.48485419696064 52.86124513304992, 31.50889119698303 52.857500133046415, 31.538473197010575 52.85471813304383, 31.579718197048976 52.80457313299712, 31.587500197056215 52.78221813297631, 31.59374519706205 52.73714513293433, 31.555136197026087 52.70145413290109, 31.50513619697952 52.68783613288841, 31.58708219705585 52.592209132799354, 31.60889119707616 52.49138213270544, 31.628745197094645 52.36721813258981, 31.60597319707344 52.33180013255682, 31.59381819706212 52.313118132539415, 31.701382197162275 52.22110013245373, 31.76541819722192 52.17638213241207, 31.786036197241117 52.15755413239455, 31.78610919724119 52.12416413236346, 31.78388219723911 52.10804513234845, 31.73471819719333 52.106100132346626, 31.622218197088557 52.108891132349214, 31.523609196996716 52.1163911323562, 31.502782196977336 52.11749113235723, 31.422500196902547 52.11999113235956, 31.370827196854435 52.11735413235712, 31.345973196831295 52.113745132353756, 31.323891196810735 52.105000132345594, 31.29624519678498 52.08693613232879, 31.13221819663221 52.086382132328254, 31.106382196608138 52.086382132328254, 30.959663196471496 52.07934513232172, 30.935000196448527 52.061800132305365, 30.93061819644447 52.03221813227782, 30.958882196470768 52.00082713224859, 30.8969451964131 51.977764132227094, 30.825000196346082 51.947491132198905, 30.746936196273396 51.895273132150265, 30.662082196194376 51.821654132081704, 30.66693619619889 51.80110913206258, 30.625973196160743 51.70790913197578, 30.565000196103938 51.64332713191564, 30.553891196093616 51.54193613182122, 30.58638219612385 51.48915413177204, 30.643745196177292 51.36888213166003, 30.642600196176232 51.33120013162494, 30.615827196151287 51.32388213161812, 30.567773196106543 51.2977731315938, 30.551418196091305 51.25184513155105, 30.46471819601055 51.29500013159122, 30.35027319590398 51.35832713165021, 30.347636195901515 51.40006413168908, 30.207218195770736 51.48373613176702, 30.179991195745373 51.49151813177426, 30.152218195719513 51.49332713177594, 30.043054195617856 51.49027313177308, 30.012218195589128 51.48915413177204, 29.983327195562225 51.48638213176946, 29.911663195495493 51.472764131756776, 29.881663195467553 51.45971813174464, 29.83444519542357 51.441936131728085, 29.76277319535683 51.44081813172704, 29.738218195333957 51.45714513174224, 29.718954195316 51.49102713177379, 29.675827195275843 51.499300131781496, 29.624027195227598 51.49068213177347, 29.409718195028006 51.40277313169159, 29.35383619497597 51.375318131666035, 29.34221819496514 51.37318213166404, 29.31200919493702 51.387627131677505, 29.249582194878883 51.502282131784284, 29.24151819487136 51.54096413182032, 29.181382194815342 51.6180451318921, 29.1631911947984 51.62777313190114, 29.118054194756382 51.63693613190969, 29.083954194724612 51.63798213191066, 29.052500194695313 51.63110013190425, 28.836945194494575 51.55027313182896, 28.81055419447 51.53443613181423, 28.793054194453703 51.51610913179715, 28.766036194428523 51.4813821317648, 28.76944519443171 51.44804513173378, 28.757154194420252 51.4156451317036, 28.666527194335856 51.44665413173246, 28.652918194323178 51.464718131749294, 28.63721819430856 51.51000013179146, 28.632773194304434 51.54360013182276, 28.628263194300217 51.564854131842566, 28.490554194171978 51.58110913185769, 28.46819119415113 51.57790913185471, 28.433327194118675 51.56610013184371, 28.319445194012616 51.58915413186517, 28.256736193954225 51.6592911319305, 28.215691193915973 51.655682131927136, 28.182009193884625 51.63777313191045, 28.15750019386178 51.609991131884584, 28.138191193843795 51.58304513185951, 28.109163193816784 51.569445131846834, 28.079027193788704 51.56443613184217, 28.00610919372079 51.56220913184009, 27.983745193699974 51.56582713184346, 27.955273193673463 51.57500013185199, 27.925618193645846 51.59166413186753, 27.89582719361809 51.61305413188745, 27.865973193590293 51.62180013189558, 27.832082193558733 51.60916413188383, 27.813891193541792 51.59220913186803, 27.81422719354208 51.56832713184579, 27.81680019354448 51.53325413181312, 27.747909193480325 51.46651813175097, 27.681663193418643 51.4931911317758, 27.70975419344481 51.55050913182919, 27.724473193458493 51.58165413185819, 27.687218193423803 51.60139113187657, 27.597218193339984 51.61582713189003, 27.511973193260587 51.62886413190216, 27.45319119320584 51.60277313187785, 27.416663193171843 51.59749113187294, 27.28256319304694 51.59819113187359, 27.19937319296946 51.675136131945266, 27.20458219297433 51.7174911319847, 27.202563192972434 51.75130913201619, 27.170000192942098 51.764164132028185, 27.08082719285906 51.77110013203463, 27.01930019280175 51.768118132031844, 26.97110919275687 51.75221813201705, 26.948054192735412 51.74888213201393, 26.926527192715355 51.75040913201536, 26.895000192685984 51.755554132020166, 26.820827192616918 51.772491132035924, 26.772500192571897 51.785827132048354, 26.72250019252533 51.802491132063864, 26.672500192478765 51.814991132075505, 26.64235419245071 51.82069113208081, 26.608054192418763 51.821109132081205, 26.57110919238434 51.81832713207862, 26.530827192346834 51.813327132073965, 26.498600192316815 51.811936132072674, 26.457218192278276 51.812764132073426, 26.439991192262227 51.82305413208303, 26.435545192258104 51.85617313211387, 26.364163192191626 51.85889113211638, 26.33860919216781 51.85750013211509, 26.29666319212876 51.85360013211147, 26.207773192045977 51.858327132115875, 26.17540919201582 51.86290913212014, 26.144436191986983 51.87846413213464, 26.02694519187756 51.910273132164235, 25.818327191683267 51.93581813218805, 25.77041819163864 51.938182132190235, 25.733600191604353 51.92735413218017, 25.685963191560006 51.92235413217551, 25.598327191478376 51.91888213217226, 25.562773191445274 51.919991132173294, 25.546673191430273 51.9221361321753))) +EST Estonia MULTIPOLYGON (((28.015827193729848 59.4786001392128, 28.0263911937397 59.474991139209436, 28.07610919378598 59.45332713918927, 28.109436193817032 59.43610013917322, 28.17555419387861 59.393609139133645, 28.194091193895872 59.36797313910978, 28.179318193882096 59.32823613907277, 28.164300193868115 59.30371813904992, 28.144000193849223 59.29080013903791, 28.095491193804037 59.283945139031516, 28.055418193766712 59.2792001390271, 28.02061819373432 59.278409139026365, 27.995836193711227 59.284473139032, 27.961309193679085 59.28631813903374, 27.91649119363734 59.27366313902195, 27.879845193603217 59.22805413897947, 27.8372181935635 59.150827138907545, 27.806945193535313 59.0938821388545, 27.790136193519658 59.06096313882384, 27.70499119344035 58.985827138753876, 27.689436193425877 58.97942713874792, 27.596945193339735 58.93138213870316, 27.541945193288512 58.90499113867858, 27.493609193243486 58.881936138657125, 27.4572181932096 58.85249113862969, 27.439436193193046 58.83416313861264, 27.428327193182696 58.81589113859562, 27.4216631931765 58.784854138566715, 27.451109193203905 58.68693613847552, 27.489300193239472 58.57360913836996, 27.49832719324789 58.554436138352116, 27.519445193267558 58.50402713830516, 27.535273193282308 58.45082713825562, 27.542500193289015 58.4138821382212, 27.543609193290052 58.39388213820257, 27.539854193286573 58.364782138175485, 27.520418193268455 58.344018138156144, 27.491245193241298 58.324854138138306, 27.465900193217692 58.2969361381123, 27.475754193226862 58.21311813803422, 27.55152719329743 58.134854137961355, 27.57291819331735 58.12220913794957, 27.609718193351625 58.107218137935604, 27.64555419338501 58.09512713792435, 27.673609193411124 58.07569113790623, 27.6866631934233 57.96527313780342, 27.779027193509307 57.90054513774314, 27.81326319354119 57.886245137729816, 27.820200193547663 57.86742713771227, 27.78527319351514 57.8483271376945, 27.744018193476705 57.83735413768429, 27.702218193437773 57.83166313767899, 27.673609193411124 57.830273137677665, 27.630000193370506 57.828609137676125, 27.577218193321357 57.82277313767068, 27.54860919329471 57.81860913766681, 27.403327193159413 57.68151813753914, 27.348436193108284 57.58898213745297, 27.362500193121377 57.54582713741277, 27.372054193130282 57.53563613740329, 27.31027319307276 57.531382137399305, 27.077082192855585 57.56520013743082, 27.045554192826216 57.59401813745765, 27.025273192807333 57.608045137470725, 26.996109192780153 57.61832713748029, 26.969991192755828 57.623318137484944, 26.902218192692715 57.633463137494374, 26.87846319267061 57.63207313749308, 26.697773192502325 57.57555413744046, 26.62416319243377 57.546245137413166, 26.60680019241758 57.527009137395254, 26.531245192347228 57.522636137391174, 26.511391192328745 57.526100137394394, 26.30624519213768 57.60819113747084, 26.28083619211401 57.62430013748585, 26.20444519204287 57.69499113755168, 26.035000191885047 57.823327137671214, 25.946945191803053 57.85388213769966, 25.883054191743554 57.85582713770148, 25.836382191700068 57.860545137705884, 25.801391191667506 57.865827137710795, 25.620409191498936 57.91735413775879, 25.452218191342297 58.00512713784053, 25.429854191321482 58.03186313786543, 25.29784519119852 58.083254137913286, 25.267500191170257 58.07228213790307, 25.29520919119608 58.038391137871514, 25.29520919119608 58.01090013784591, 25.23985419114453 57.99262713782889, 25.21943619112551 58.00151813783717, 25.209018191115803 58.020273137854645, 25.201800191109072 58.044582137877256, 25.18610919109446 58.06485413789616, 25.16651819107622 58.07513613790573, 25.13180019104388 58.076382137906876, 25.091663191006518 58.071663137902505, 25.065409190982052 58.06319113789459, 25.038327190956835 58.050273137882584, 25.01582719093588 58.039436137872485, 24.72388219066397 57.965000137803145, 24.54992719050199 57.95340013779236, 24.443954190403275 57.902836137745254, 24.430827190391057 57.882627137726445, 24.411382190372933 57.87249113771699, 24.373054190337257 57.868882137713626, 24.324436190291976 57.87027313771492, 24.31498219028316 57.871827137716366, 24.341936190308274 57.931654137772085, 24.35847319032368 57.96180013780017, 24.39000019035302 58.002773137838346, 24.406382190368276 58.02277313785697, 24.42999119039027 58.04347313787625, 24.456663190415128 58.07610013790662, 24.47082719042831 58.127345137954336, 24.470000190427527 58.15235413797765, 24.45250019041123 58.182773138005984, 24.469436190427018 58.23915413805847, 24.484227190440777 58.255200138073434, 24.534582190487697 58.27930013809586, 24.557636190509157 58.300409138115526, 24.554509190506252 58.32471813813817, 24.51777319047204 58.353054138164566, 24.45888219041717 58.3783271381881, 24.419718190380706 58.38665413819584, 24.390554190353555 58.39082713819974, 24.355409190320813 58.39138213820024, 24.330827190297924 58.38666313819587, 24.297500190266874 58.352282138163844, 24.288327190258343 58.31603613813007, 24.24207319021525 58.27401813809095, 24.103609190086303 58.23554513805513, 24.053609190039737 58.27069113808784, 24.0108271899999 58.29860913811385, 23.99304518998335 58.3077731381224, 23.973327189964976 58.31582713812989, 23.94374518993743 58.32416313813766, 23.82638218982811 58.354718138166106, 23.776245189781434 58.34860913816041, 23.728609189737057 58.37082713818111, 23.679163189691025 58.42555413823209, 23.623882189639517 58.52485413832457, 23.524718189547173 58.558327138355736, 23.50110918952518 58.57694513837308, 23.495545189520016 58.69415413848222, 23.535273189557017 58.7418001385266, 23.569445189588834 58.73554513852079, 23.592082189609926 58.73277313851821, 23.725554189734225 58.744709138529316, 23.86423618986339 58.773045138555716, 23.827218189828898 58.79110913857252, 23.798327189801995 58.799718138580545, 23.591663189609534 58.788045138569686, 23.48305418950838 58.80999113859011, 23.418054189447844 58.90929113868259, 23.43832718946672 58.93999113871118, 23.477218189502935 58.93749113870885, 23.50750018953113 58.937209138708596, 23.582636189601118 58.948882138719455, 23.636663189651443 58.974291138743126, 23.62430018963991 59.00950913877594, 23.590554189608497 59.03527313879994, 23.56700918958657 59.041936138806136, 23.607082189623895 59.01374513877988, 23.556382189576652 58.9877731387557, 23.514163189537356 58.98110013874947, 23.466382189492833 58.984163138752336, 23.444300189472273 58.99180013875943, 23.410409189440713 59.01568213878167, 23.43263618946142 59.056863138820034, 23.48249118950784 59.08942713885037, 23.46582718949233 59.20228213895547, 23.505273189529078 59.22680013897829, 23.613609189629955 59.23971813899033, 23.719300189728386 59.230409138981656, 23.74180018974934 59.23596313898682, 23.742491189749984 59.24638213899652, 23.73638218974429 59.25221813900197, 23.729645189738022 59.272836139021166, 23.830827189832263 59.28971813903689, 23.85694518985659 59.28416313903173, 23.898191189894987 59.27207313902045, 23.936109189930306 59.272218139020595, 24.027218190015162 59.287773139035096, 24.023500190011703 59.36533613910731, 24.043745190030563 59.391654139131816, 24.07305419005786 59.39305413913314, 24.10527319008787 59.38555413912616, 24.12360919010493 59.376654139117846, 24.14805419012771 59.36166313910391, 24.181663190159014 59.34623613908954, 24.20569119018137 59.34388213908733, 24.32208219028979 59.42888213916649, 24.329300190296493 59.46159113919697, 24.357082190322387 59.47249113920711, 24.40277319036494 59.47415413920865, 24.536663190489634 59.45721813919289, 24.722773190662963 59.452773139188764, 24.785000190720893 59.51708213924863, 24.774163190710823 59.5609631392895, 24.795973190731132 59.564991139293255, 24.864582190795034 59.543045139272834, 24.8872181908161 59.52304513925421, 24.918463190845216 59.50680013923906, 25.050554190968228 59.51193613924386, 25.107563191021313 59.529436139260156, 25.15444519106498 59.531663139262236, 25.258327191161726 59.51416313924594, 25.282773191184504 59.50916313924128, 25.31888219121811 59.49888213923168, 25.358891191255395 59.49054513922394, 25.399209191292925 59.48822713922178, 25.488882191376433 59.564854139293146, 25.47742719136579 59.65804513937994, 25.598118191478193 59.59790913932392, 25.63735419151473 59.567082139295195, 25.664718191540203 59.56276313929118, 25.7054091915781 59.570545139298446, 25.712909191585084 59.59193613931836, 25.690554191564274 59.61735413934204, 25.680482191554887 59.66165413938327, 25.714573191586624 59.66471813938614, 25.772500191640574 59.63651813935988, 25.87305419173424 59.59887313932481, 25.980000191833824 59.63276313935637, 26.03721819188712 59.62137313934576, 26.078054191925162 59.600545139326385, 26.263054192097457 59.585818139312664, 26.389718192215412 59.561663139290175, 26.458327192279313 59.541109139271015, 26.488054192307004 59.533327139263776, 26.531663192347622 59.53777313926793, 26.575273192388238 59.55228213928143, 26.62166319243144 59.557209139286016, 26.650554192458344 59.553318139282396, 26.675827192481876 59.54749113927696, 26.736936192538792 59.522491139253674, 26.772773192572174 59.50388213923634, 26.817218192613552 59.480818139214875, 26.85500019264873 59.4676361392026, 26.88360919267538 59.459163139194715, 26.921382192710553 59.45082713918694, 26.97277319275844 59.44443613918099, 27.03333619281483 59.44249113917917, 27.087500192865264 59.44221813917892, 27.185273192956345 59.44693613918332, 27.391109193148026 59.44860013918486, 27.42721819318166 59.44832713918461, 27.45082719320365 59.44623613918267, 27.48305419323367 59.43942713917633, 27.510000193258747 59.43443613917168, 27.553054193298863 59.428600139166235, 27.848054193573603 59.406654139145786, 27.88790919361071 59.40860013914761, 27.933327193653014 59.417218139155636, 27.953882193672143 59.42527313916315, 27.978054193694675 59.440545139177374, 27.99596319371136 59.45458213919042, 28.015827193729848 59.4786001392128)), ((22.03777318816236 57.908327137750376, 22.016245188142307 57.91138213775321, 21.997354188124717 57.91985413776112, 21.983191188111505 57.96720913780521, 22.085963188207245 58.0793001379096, 22.10652718822638 58.084573137914504, 22.151109188267895 58.08638213791619, 22.194091188307937 58.14523613797101, 22.138473188256143 58.15970913798449, 22.073609188195718 58.17277313799667, 21.877082188012707 58.25735413807544, 21.844509187982368 58.28916313810507, 21.883327188018512 58.341518138153816, 21.955554188085785 58.34304513815525, 22.006945188133642 58.3566541381679, 21.99638218812379 58.38138213819093, 21.911382188044627 58.461518138265575, 21.878054188013607 58.47416313827736, 21.85958218799641 58.48304513828563, 21.837354187975706 58.50666313830763, 21.92500018805731 58.51720913831744, 21.992636188120315 58.515691138316015, 22.112500188231934 58.49221813829416, 22.193745188307616 58.547218138345386, 22.327218188431914 58.577491138373574, 22.501663188594392 58.60221813839661, 22.62416318870848 58.59331813838833, 22.772045188846192 58.60321813839755, 22.81569118888683 58.616663138410075, 22.87166318893898 58.61776313841108, 22.91124518897584 58.616800138410184, 22.9848541890444 58.599436138394026, 23.090827189143084 58.56443613836143, 23.26305418930349 58.49610013829778, 23.28110918932029 58.48707313828936, 23.328191189364134 58.446936138252, 23.258745189299475 58.429854138236095, 23.22610018926906 58.4366541382424, 23.20208218924671 58.44735413825239, 23.14249118919119 58.44360013824888, 23.076945189130157 58.4138821382212, 23.06416318911826 58.38582713819508, 23.02860918908513 58.357773138168966, 22.756945188832134 58.240273138059536, 22.648882188731477 58.23027313805022, 22.581936188669147 58.24110013806029, 22.52055418861198 58.24221813806133, 22.48124518857537 58.24207313806119, 22.372909188474466 58.22138213804192, 22.276663188384845 58.18047313800383, 22.271318188379865 58.15311813797834, 22.26333618837242 58.09804513792707, 22.202500188315753 57.98610913782281, 22.099163188219535 57.93054513777108, 22.073327188195464 57.91666313775815, 22.051663188175297 57.90971813775167, 22.03777318816236 57.908327137750376)), ((22.565273188653634 58.686654138475234, 22.54750018863706 58.687209138475765, 22.531663188622332 58.68860013847706, 22.517773188609397 58.691100138479385, 22.480000188574195 58.69971813848741, 22.468463188563476 58.71124513849816, 22.4719361885667 58.76360913854691, 22.447773188544204 58.834709138613135, 22.42610918852401 58.8552731386323, 22.40499118850434 58.87165413864753, 22.386109188486756 58.88457313865956, 22.369718188471495 58.890273138664895, 22.33610918844019 58.89221813866669, 22.2769451883851 58.88943613866411, 22.245545188355862 58.87860013865401, 22.229436188340856 58.878045138653505, 22.177218188292215 58.888882138663575, 22.16500018828083 58.89193613866644, 22.063609188186405 58.92360913869592, 22.04916318817297 58.93013613870201, 22.04430018816842 58.94262713871365, 22.0522181881758 58.94971813872024, 22.065000188187696 58.95221813872257, 22.191100188305143 58.94749113871816, 22.37555418847694 58.95166313872207, 22.434436188531777 58.96638213873575, 22.468054188563087 58.97804513874664, 22.487773188581457 58.992218138759824, 22.523609188614813 59.02249113878801, 22.575827188663453 59.06860013883096, 22.69693618877625 59.04777313881158, 22.70082718877987 59.01680013878271, 22.719718188797458 59.00360913877043, 22.73388218881064 59.001391138768355, 22.749718188825398 59.000000138767064, 22.801109188873255 58.99721813876448, 22.843054188912333 59.00221813876914, 22.86082718892888 59.001663138768635, 22.929718188993036 58.98249113875076, 22.952500189014245 58.96693613873629, 23.045827189101175 58.847773138625314, 23.04527318910067 58.83638213861468, 23.02166318907868 58.820545138599954, 23.005273189063416 58.83055413860927, 22.960827189022012 58.8449911386227, 22.94832718901037 58.8444361386222, 22.884445188950878 58.8330541386116, 22.866936188934574 58.821663138601, 22.88540918895177 58.81374513859362, 22.885827188952163 58.78374513856568, 22.84805418891699 58.773609138556225, 22.81582718888697 58.77276313855543, 22.798336188870678 58.773609138556225, 22.78124518885477 58.77874513856102, 22.780282188853874 58.79304513857434, 22.79277318886551 58.800273138581076, 22.803891188875866 58.80360013858416, 22.826245188896678 58.81971813859917, 22.81250018888386 58.82638213860537, 22.798054188870424 58.82500013860408, 22.775827188849718 58.81860013859813, 22.74332718881945 58.802909138583516, 22.72110918879875 58.781663138563744, 22.70138218878037 58.75388213853785, 22.691100188770804 58.73526313852051, 22.677773188758408 58.71360013850034, 22.66693618874831 58.7052731384926, 22.64638218872915 58.697773138485616, 22.62416318870848 58.691100138479385, 22.59555418868183 58.68832713847681, 22.565273188653634 58.686654138475234)), ((23.247463189288965 58.671054138460704, 23.271382189311225 58.66443613845456, 23.317218189353923 58.65082713844188, 23.343191189378103 58.64096313843268, 23.397082189428318 58.562218138359356, 23.39638218942764 58.55082713834875, 23.376109189408766 58.533054138332204, 23.365000189398415 58.529991138329336, 23.227218189270104 58.52971813832909, 23.215273189258994 58.533054138332204, 23.09110918914334 58.580273138376185, 23.06791818912174 58.59123613838639, 23.059027189113465 58.6045821383988, 23.064718189118764 58.61901813841226, 23.140273189189145 58.66582713845585, 23.149718189197927 58.670273138460004, 23.173609189220173 58.675827138465166, 23.186382189232063 58.67804513846724, 23.20082718924553 58.67916313846828, 23.216382189260003 58.67777313846699, 23.247463189288965 58.671054138460704)), ((23.192163189237448 59.04198213880616, 23.325827189361945 59.03750013880199, 23.339718189374878 59.03527313879994, 23.351936189386265 59.03193613879682, 23.366109189399452 59.025409138790735, 23.38943618942119 59.00138213876835, 23.389854189421584 58.986236138754265, 23.381109189413422 58.976382138745066, 23.370000189403072 58.97304513874198, 23.29194518933039 58.964154138733676, 23.27721818931667 58.96305413873267, 23.18054518922665 58.96110913873085, 23.164718189211897 58.962773138732416, 23.148463189196775 58.96832713873758, 23.138054189187073 58.97665413874532, 23.11208218916289 59.020963138786584, 23.11721818916766 59.03081813879578, 23.12666318917647 59.03500013879966, 23.137773189186817 59.03832713880277, 23.150827189198964 59.04055413880485, 23.181382189227406 59.04221813880639, 23.192163189237448 59.04198213880616))) +FIN Finland MULTIPOLYGON (((23.017291189074598 60.10121813979265, 23.04277318909834 60.11874513980899, 23.025136189081906 60.12860913981817, 22.967500189028215 60.11193613980265, 22.906109188971044 60.12639113981609, 22.874445188941564 60.14555413983396, 22.869718188937156 60.17916313986527, 23.084654189137325 60.3452001400199, 23.06139118911568 60.35319114002732, 22.7605541888355 60.2441631399258, 22.56547318865381 60.21193613989578, 22.449300188545607 60.24235413992412, 22.484163188578094 60.28319113996213, 22.626591188710734 60.3804451400527, 22.2769451883851 60.38582714005773, 22.175827188290924 60.431391140100146, 22.014445188140627 60.46527314013173, 21.94582718807672 60.51652714017945, 21.842709187980688 60.51867314018145, 21.863054187999637 60.47193614013793, 21.803054187943758 60.48250014014775, 21.801800187942575 60.56513614022472, 21.82971818796858 60.58846314024643, 21.824445187963676 60.61916314027505, 21.588054187743523 60.50944514017286, 21.576945187733173 60.56249114022225, 21.510482187671272 60.57443614023339, 21.452773187617538 60.56249114022225, 21.358609187529822 60.65360914030711, 21.357009187528348 60.67930014033104, 21.386109187555434 60.68638214033763, 21.39250018756138 60.75555414040207, 21.32832718750163 60.86527314050426, 21.387773187557002 60.94082714057461, 21.444445187609773 61.16721814078545, 21.544445187702905 61.27638214088711, 21.55444518771222 61.30943614091791, 21.511800187672492 61.51270014110722, 21.46889118763255 61.55651814114802, 21.498327187659953 61.573463141163785, 21.66389118781416 61.5402731411329, 21.535273187694372 61.65332714123818, 21.472427187635844 61.76103614133848, 21.488745187651034 61.80041814137516, 21.410554187578214 61.890545141459114, 21.363327187534225 61.929445141495336, 21.2845821874609 61.946382141511094, 21.25332718743178 62.00555414156622, 21.333882187506788 62.153882141704344, 21.380273187550017 62.18235414173088, 21.38930918755841 62.20624514175313, 21.332218187505248 62.35055414188753, 21.155554187340726 62.41277314194548, 21.111663187299854 62.4516631419817, 21.12527318731253 62.547491142070925, 21.0659731872573 62.59798214211796, 21.105627187294232 62.76735414227571, 21.29805418747344 62.86083614236276, 21.373263187543472 62.86214514236397, 21.44582718761106 62.967500142462086, 21.450554187615467 63.006382142498296, 21.435554187601497 63.034718142524696, 21.50082718766228 63.066518142554315, 21.620000187773257 63.01860914250969, 21.676600187825983 63.02013614251112, 21.677773187827086 63.03388214252391, 21.569509187726254 63.07860914256557, 21.518609187678834 63.125273142609046, 21.496873187658593 63.20353614268191, 21.53847318769735 63.230273142706835, 21.640418187792278 63.19250014267163, 21.87777318801335 63.255963142730735, 21.89277318802732 63.20610914268431, 21.966663188096135 63.183054142662854, 22.34000018844381 63.2765271427499, 22.369582188471384 63.313191142784035, 22.355554188458314 63.33971814280875, 22.32374518842869 63.36804514283514, 22.20055418831396 63.41930014288286, 22.187845188302106 63.44513614290693, 22.288191188395558 63.52569114298194, 22.333336188437613 63.519991142976636, 22.396382188496318 63.472500142932404, 22.589163188675883 63.69554514314015, 22.665836188747278 63.69874514314313, 22.701245188780263 63.683463143128876, 22.74013618881648 63.61985414306966, 22.780554188854126 63.62582714307521, 22.90000018896535 63.69860914314299, 22.92631818898988 63.762773143202764, 22.923336188987093 63.80110914323845, 23.147918189196247 63.87805414331012, 23.318882189355463 63.89666314332746, 23.370418189403466 63.941245143368974, 23.38513618941718 64.0457541434663, 23.511391189534777 64.03637314345755, 23.60221818961935 64.0644361434837, 23.608327189625044 64.09832714351526, 23.652218189665916 64.14082714355484, 23.926663189921527 64.26916314367438, 23.926936189921776 64.29096314369465, 23.995836189985937 64.3834631437808, 24.339300190305806 64.52166314390954, 24.37409119033822 64.5859631439694, 24.371182190335503 64.61929114400044, 24.425000190385617 64.6752821440526, 24.53540919048845 64.74680014411919, 24.539582190492354 64.79915414416794, 24.731109190670708 64.85442714421944, 25.084445190999787 64.91166314427275, 25.116245191029407 64.90749114426885, 25.23040919113572 64.81930014418671, 25.36194519125823 64.82943614419617, 25.365073191261132 64.89804514426007, 25.230136191135472 64.92970914428955, 25.18930019109743 64.9640181443215, 25.213327191119816 64.988191144344, 25.321591191220648 64.98061814433694, 25.41416319130687 64.94443614430327, 25.44423619133488 64.95339114431161, 25.413054191305832 65.03416314438684, 25.35389119125074 65.09235414444103, 25.29139119119253 65.10943614445694, 25.267500191170257 65.17000014451332, 25.30110919120156 65.29360914462845, 25.355273191252024 65.41082714473762, 25.351245191248267 65.47874514480088, 25.215136191121502 65.55430014487123, 25.132082191044162 65.55430014487123, 25.10180019101594 65.5693001448852, 25.08076319099635 65.6058911449193, 24.89124519081986 65.64839114495888, 24.669163190613034 65.65470914496476, 24.559445190510843 65.72672714503182, 24.553536190505326 65.76200014506469, 24.55916319051059 65.79012714509088, 24.68916319063166 65.89610014518956, 24.626527190573313 65.88763614518169, 24.538609190491428 65.79527314509568, 24.44895419040793 65.79427314509473, 24.41471819037605 65.76735414506967, 24.220273190194973 65.77346314507534, 24.175000190152787 65.79151814509217, 24.164091190142642 65.83263614513046, 24.031391190019065 66.0202631453052, 23.96778218995982 66.07249114535384, 23.919027189914402 66.1441631454206, 23.72610918973473 66.19825414547097, 23.662500189675484 66.3122091455771, 23.639718189654275 66.4333181456899, 23.72527318973397 66.50082714575277, 23.874163189872633 66.55534514580353, 23.889718189887105 66.57582714582261, 23.90277318989928 66.68026314591987, 23.892082189889322 66.74478214597997, 23.942500189936254 66.78790914602013, 24.000763189990522 66.80228214603352, 23.94069118993457 66.87977314610569, 23.731109189739385 67.00832714622541, 23.573327189592447 67.15700914636389, 23.590554189608497 67.2406821464418, 23.61000018962659 67.26137314646107, 23.743191189750632 67.28631814648432, 23.780345189785237 67.32630914652154, 23.765136189771084 67.4168731466059, 23.581945189600475 67.45000014663674, 23.493745189518336 67.43721814662484, 23.448327189476032 67.45250014663907, 23.430827189459734 67.47978214666449, 23.507773189531406 67.6655451468375, 23.470554189496738 67.81985414698121, 23.48881818951375 67.87096314702879, 23.60208218961924 67.89638214705246, 23.65569118966914 67.92117314707556, 23.659791189672973 67.94589114709859, 23.394445189425852 68.04250014718855, 23.0554181891101 68.29110014742008, 22.905000188970007 68.3299911474563, 22.826663188897072 68.38596314750842, 22.371945188473575 68.46360914758074, 22.159163188275414 68.46499114758203, 22.048609188172435 68.48151814759743, 22.000827188127943 68.52151814763468, 21.889300188024066 68.571245147681, 21.765418187908693 68.57568214768511, 21.62305418777612 68.64942714775381, 21.494163187656085 68.66985414777284, 21.45389118761858 68.68672714778853, 21.420554187587527 68.72415414782338, 21.081391187271663 68.8666541479561, 20.900827187103488 68.89207314797977, 20.88590018708959 68.9181911480041, 20.93097318713157 68.949227148033, 20.930691187131288 68.97069114805299, 20.875554187079956 69.00124514808147, 20.580927186805553 69.06030014813646, 20.731109186945417 69.0961001481698, 21.06347318725497 69.03680014811457, 21.109163187297526 69.09741814817102, 21.05360918724577 69.1405451482112, 21.030273187224054 69.2105451482764, 21.320827187494643 69.326109148384, 21.681945187830962 69.28471814834546, 22.347636188450934 68.84360914793464, 22.398327188498143 68.71110914781124, 22.550000188639387 68.7377821478361, 22.802773188874824 68.69137314779286, 23.06819118912199 68.69360014779494, 23.19639118924141 68.62985414773559, 23.46721818949362 68.69166314779315, 23.705063189715133 68.71686314781661, 23.824509189826387 68.82630914791855, 23.976391189967842 68.83249114792429, 24.060827190046467 68.8187361479115, 24.206109190181763 68.74902714784656, 24.3541001903196 68.71020014781041, 24.62889119057553 68.68720914778899, 24.75444519069245 68.66026314776389, 24.854473190785598 68.59318214770141, 24.934918190860515 68.5808091476899, 25.105073191018988 68.63790914774307, 25.105000191018917 68.66978214777276, 25.15471819106523 68.76777314786403, 25.21444519112086 68.81749114791032, 25.40694519130014 68.88638214797447, 25.617773191496497 68.8827631479711, 25.76110919162997 68.98916314807022, 25.7683271916367 69.04527314812248, 25.732218191603067 69.10916314818198, 25.708054191580572 69.20901814827496, 25.713336191585483 69.25526314831802, 25.75236319162184 69.33915414839615, 25.83374519169763 69.38527314843913, 25.874163191735278 69.48637314853326, 25.953327191808995 69.58416314862436, 25.970691191825154 69.61880914865662, 25.969445191824008 69.64249114867866, 25.94450919180079 69.66520014869982, 25.95930019181455 69.68568214871888, 26.004445191856604 69.71193614874335, 26.155827191997588 69.74249114877179, 26.373745192200545 69.85220914887398, 26.47680019229651 69.93638214895236, 26.806582192603656 69.95205414896697, 26.894300192685336 69.92541814894216, 27.074854192853508 69.9095731489274, 27.286245193050377 69.94860914896375, 27.306036193068792 69.96491814897894, 27.29826319306156 69.98624514899882, 27.570409193315015 70.06638214907343, 27.91069119363192 70.08860914909414, 27.937745193657122 70.08303614908897, 27.971145193688244 70.045509149054, 27.991391193707102 69.99790914900967, 28.10208219381019 69.93457314895068, 28.316800194010142 69.88916314890841, 28.379718194068744 69.82750014885096, 29.10278219474216 69.7059731487378, 29.298473194924412 69.4853361485323, 29.269163194897118 69.4519361485012, 29.12221819476025 69.37081814842566, 28.82541819448383 69.23616314830025, 28.78291819444425 69.15513614822478, 28.785063194446252 69.12408214819587, 28.827500194485765 69.09360014816747, 28.957336194606683 69.05161814812837, 28.435554194120755 68.90263614798963, 28.43986319412477 68.88235414797074, 28.4708271941536 68.87443614796337, 28.73778219440223 68.87582714796466, 28.817354194476337 68.84700014793782, 28.738609194402983 68.73416314783273, 28.45985419414339 68.53485414764711, 28.695000194362365 68.19540914733096, 29.356945194978863 68.0824911472258, 29.6916631952906 67.81527314697695, 30.02860919560439 67.69471814686466, 29.977773195557063 67.57249114675082, 29.93278219551516 67.51388214669623, 29.52527319513564 67.29388214649134, 29.13416319477139 67.01360914623032, 29.090136194730377 66.97290914619242, 29.075136194716407 66.90360014612787, 29.076109194717304 66.87749114610355, 29.12874519476634 66.82040014605039, 29.35486319497693 66.67790914591768, 29.385545195005506 66.6283091458715, 29.5544451951628 66.47027314572432, 29.577154195183937 66.40304514566171, 29.631945195234977 66.32943614559315, 29.79916319539072 66.1924911454656, 29.903745195488113 66.13388214541101, 30.093891195665208 65.83805414513552, 30.134927195703426 65.7088821450152, 30.120200195689705 65.66811814497723, 30.030273195605957 65.69054514499814, 29.81888219540906 65.65331814496346, 29.834163195423315 65.58833614490294, 29.798054195389682 65.53749114485558, 29.74610919534129 65.51443614483412, 29.73832719533405 65.48110914480307, 29.74860919534362 65.34610014467734, 29.613054195217387 65.27123614460763, 29.602045195207126 65.24443614458266, 29.633054195236014 65.22596314456544, 29.848327195436497 65.21804514455809, 29.870418195457063 65.20200014454315, 29.869445195456166 65.11999114446675, 29.674163195274303 65.08180014443118, 29.621182195224947 65.05235414440378, 29.608127195212802 65.00596314436055, 29.640827195243247 64.92096314428139, 29.73360919532965 64.8372091442034, 29.80889119539978 64.79401814416318, 30.048054195622512 64.7955451441646, 30.14277319571073 64.77207314414272, 30.206873195770413 64.66331814404145, 30.17645419574208 64.6313821440117, 29.976454195555817 64.57894514396287, 30.01052719558757 64.51226314390075, 30.08790919565962 64.48069114387135, 30.06152719563505 64.40534514380118, 30.163191195729723 64.35276314375221, 30.389718195940702 64.30943614371188, 30.577354196115465 64.22373614363207, 30.612773196148453 64.09415414351136, 30.595273196132155 64.0469361434674, 30.398054195948475 63.93054514335901, 30.26347319582314 63.8226271432585, 30.008891195586045 63.75458214319511, 29.998954195576772 63.73533614317719, 30.24555419580645 63.59326314304488, 30.395418195946007 63.54804514300278, 30.4784001960233 63.480973142940314, 30.714718196243382 63.42443614288766, 31.2197181967137 63.22305414270011, 31.383054196865828 63.06916314255679, 31.519582196992985 62.982636142476196, 31.581963197051067 62.90790014240659, 31.430000196909532 62.7588911422678, 31.25819119674952 62.50825414203439, 30.704163196233566 62.21054514175714, 30.30055419585767 61.95610914152016, 29.8019451953933 61.60374514119201, 29.355273194977315 61.35971814096473, 29.21360919484536 61.25332714086565, 28.816663194475694 61.10513614072764, 28.720000194385648 61.045273140671895, 28.645554194316333 60.971109140602806, 28.52950919420826 60.954582140587405, 28.38888219407727 60.88666314052418, 28.2986091939932 60.8205451404626, 27.807827193536127 60.54640014020728, 27.77819119350852 60.571309140230454, 27.74256319347535 60.56645414022594, 27.738054193471157 60.511382140174646, 27.474445193225648 60.504436140168195, 27.473054193224357 60.476391140142056, 27.295554193059047 60.50388214016766, 27.219163192987907 60.58374514024206, 27.02450919280662 60.53152714019342, 26.958191192744835 60.444573140112425, 26.90528219269558 60.4761091401418, 26.81110919260786 60.47277314013871, 26.666945192473605 60.42666314009577, 26.50013619231825 60.445000140112825, 26.47822719229785 60.47790914014348, 26.595000192406587 60.598054140255385, 26.658609192465832 60.60819114026481, 26.749718192550688 60.575336140234214, 26.69194519249689 60.64250014029676, 26.652354192460024 60.646382140300375, 26.611391192421877 60.63860914029314, 26.456391192277522 60.49680014016107, 26.473191192293143 60.427636140096666, 26.41652719224038 60.39166314006317, 26.14610919198853 60.393882140065216, 26.05506319190374 60.42277314009215, 26.10513619195038 60.31978213999622, 26.078745191925805 60.29402713997223, 25.99610919184883 60.34471814001944, 25.838191191701753 60.39846314006948, 25.913054191771494 60.35694514003083, 25.921663191779516 60.24374513992541, 25.887218191747422 60.244645139926234, 25.87187319173313 60.271663139951414, 25.745963191615886 60.304000139981525, 25.794027191660632 60.26791813994791, 25.83631819170003 60.269027139948946, 25.774863191642794 60.233609139915956, 25.720554191592214 60.24805413992942, 25.651182191527596 60.29520913997334, 25.655136191531284 60.336518140011805, 25.68946319156325 60.34858214002304, 25.657500191533472 60.36124514003484, 25.545273191428976 60.31110013998813, 25.484163191372062 60.247082139928494, 25.367773191263666 60.255827139936656, 25.196527191104167 60.24097313992283, 25.150063191060894 60.220763139903994, 25.194654191102416 60.20860913989267, 25.19166319109965 60.18430013987003, 24.954154190878455 60.13611813982516, 24.603336190551715 60.121936139811964, 24.60847319055651 60.09250013978453, 24.589300190538637 60.0548631397495, 24.472500190429855 59.99041813968947, 24.421100190381992 59.98721813968649, 24.42139119038228 60.02721813972374, 24.333054190300004 60.0719361397654, 23.797218189800958 59.96193613966295, 23.623191189638874 59.952082139653754, 23.561354189581294 59.97067313967108, 23.43159118946045 59.9538181396554, 23.540000189561397 60.02819113972464, 23.53750018955907 60.06756313976132, 23.49389118951848 60.05832713975272, 23.249300189290665 59.83791813954744, 22.900273188965627 59.80680013951846, 22.934718188997692 59.84055413954991, 23.160827189208277 59.88485413959117, 23.257218189298044 59.91944513962338, 23.33569118937112 60.0239541397207, 23.22750018927036 59.929027139632296, 23.109227189160208 59.92565413962916, 23.111109189161965 59.970273139670724, 23.221645189264905 60.00166313969996, 23.25486318929586 60.03708213973292, 23.19194518923726 60.0477731397429, 23.049445189104546 60.03610913973202, 22.991245189050346 60.05735413975182, 23.017291189074598 60.10121813979265)), ((19.94388218621225 60.042773139738244, 19.918054186188215 60.09277313978481, 19.84750018612249 60.07582713976902, 19.750827186032467 60.094991139786856, 19.64847318593715 60.259582139940136, 19.748891186030676 60.304718139982185, 19.782827186062264 60.292663139970955, 19.76291818604372 60.24263613992437, 19.794163186072836 60.189018139874435, 19.812918186090286 60.18666313987225, 19.937354186206193 60.29180013997015, 19.89541818616712 60.34152714001647, 19.865000186138786 60.31499113999175, 19.781391186060944 60.35180014002603, 19.857218186131547 60.40360914007428, 20.084718186343423 60.350273140024626, 20.277500186522957 60.27416313995374, 20.16694518642001 60.16305413985026, 20.08569118634432 60.1755541398619, 20.120282186376556 60.240000139921904, 20.064163186324294 60.29860913997649, 20.025273186288075 60.31055413998763, 19.914027186184455 60.21443613989811, 19.941663186210207 60.18250013986835, 20.025773186288518 60.154273139842076, 20.052082186313044 60.098473139790116, 19.95458218622224 60.08735413977976, 19.94388218621225 60.042773139738244)), ((22.60110918868699 59.98332713968287, 22.572500188660342 60.027500139724, 22.471118188565924 59.99847313969698, 22.471136188565964 60.07208213976551, 22.424163188522215 60.108327139799286, 22.415273188513936 60.15221813984016, 22.44666318854317 60.2158271398994, 22.58777318867459 60.20250013988698, 22.824445188894998 60.22721813991001, 22.847636188916596 60.12208213981208, 22.837500188907143 60.09374513978571, 22.731391188808345 60.0023541397006, 22.633327188717004 60.00471813970279, 22.60110918868699 59.98332713968287)), ((25.000000190921128 65.02584514437908, 24.846663190778344 65.00360014435836, 24.820273190753767 64.96388214432136, 24.722773190662963 64.94415414430298, 24.599582190548233 64.96387314432135, 24.551663190503604 65.02499114437828, 24.645836190591297 65.06360014441424, 24.83360919076617 65.07860014442821, 25.032500190951396 65.0383181443907, 25.000000190921128 65.02584514437908)), ((21.246945187425837 63.14471814262714, 21.190554187373323 63.18916314266855, 21.14819118733385 63.17638214265662, 21.080482187270803 63.27729114275061, 21.295973187471503 63.24139114271716, 21.415973187583262 63.24916314272443, 21.424027187590752 63.19457314267356, 21.246945187425837 63.14471814262714)), ((21.972218188101294 60.323609139999775, 21.785273187927203 60.37693614004945, 21.80624518794673 60.46250014012912, 21.896382188030657 60.44444514011232, 21.93332718806508 60.416663140086456, 21.996663188124074 60.358891140032625, 21.998327188125614 60.33443614000987, 21.972218188101294 60.323609139999775)), ((22.868327188935865 63.770554143210006, 22.770273188844556 63.784163143222685, 22.706663188785313 63.775273143214406, 22.673891188754794 63.79172714322971, 22.80610918887791 63.87693614330908, 22.880554188947258 63.87277314330521, 22.91763618898179 63.830418143265746, 22.875000188942067 63.803054143240274, 22.868327188935865 63.770554143210006)), ((20.11000018636696 60.08805413978041, 20.2086091864588 60.061800139755945, 20.226763186475722 60.00139113969968, 20.2070821864574 59.97847313967836, 20.133191186388558 59.993327139692184, 20.001663186266086 60.05319113974792, 20.11000018636696 60.08805413978041)), ((19.57527318586898 60.121936139811964, 19.54694518584259 60.12666313981637, 19.511391185809487 60.178336139864484, 19.53832718583456 60.22777313991054, 19.60194518589381 60.255827139936656, 19.66763618595499 60.19096313987623, 19.674863185961726 60.15360913984145, 19.60444518589614 60.15305413984095, 19.57527318586898 60.121936139811964)), ((23.04055418909627 59.89721813960267, 22.8812451889479 59.90360913960862, 22.803891188875866 59.951245139653, 22.827082188897464 59.9734731396737, 22.838327188907925 59.95485413965636, 23.054163189108948 59.95860913965984, 23.071109189124712 59.94943613965131, 23.04055418909627 59.89721813960267)), ((22.213336188325854 60.241663139923475, 22.218891188331042 60.26971813994959, 22.143054188260407 60.27943613995865, 22.180000188294798 60.27096313995074, 22.129163188247475 60.255827139936656, 22.072145188194355 60.26561813994576, 22.07250018819468 60.29200913997036, 22.096109188216673 60.30778213998505, 22.205827188318864 60.30916313998634, 22.34166318844538 60.285691139964456, 22.333327188437607 60.265409139945575, 22.28152718838936 60.266109139946224, 22.213336188325854 60.241663139923475)), ((21.73916318788426 60.109991139800826, 21.699300187847115 60.11416313980473, 21.704445187851917 60.166936139853874, 21.7233271878695 60.18638213987197, 21.856391187993438 60.19166313987691, 21.885000188020058 60.17430013986072, 21.785000187926926 60.11889113980911, 21.73916318788426 60.109991139800826)), ((23.402218189433086 59.90083613960604, 23.370418189403466 59.914163139618466, 23.523054189545633 59.959163139660376, 23.726382189734977 59.93130913963441, 23.402218189433086 59.90083613960604))) +LVA Latvia MULTIPOLYGON (((24.31498219028316 57.871827137716366, 24.324436190291976 57.87027313771492, 24.373054190337257 57.868882137713626, 24.411382190372933 57.87249113771699, 24.430827190391057 57.882627137726445, 24.443954190403275 57.902836137745254, 24.54992719050199 57.95340013779236, 24.72388219066397 57.965000137803145, 25.01582719093588 58.039436137872485, 25.038327190956835 58.050273137882584, 25.065409190982052 58.06319113789459, 25.091663191006518 58.071663137902505, 25.13180019104388 58.076382137906876, 25.16651819107622 58.07513613790573, 25.18610919109446 58.06485413789616, 25.201800191109072 58.044582137877256, 25.209018191115803 58.020273137854645, 25.21943619112551 58.00151813783717, 25.23985419114453 57.99262713782889, 25.29520919119608 58.01090013784591, 25.29520919119608 58.038391137871514, 25.267500191170257 58.07228213790307, 25.29784519119852 58.083254137913286, 25.429854191321482 58.03186313786543, 25.452218191342297 58.00512713784053, 25.620409191498936 57.91735413775879, 25.801391191667506 57.865827137710795, 25.836382191700068 57.860545137705884, 25.883054191743554 57.85582713770148, 25.946945191803053 57.85388213769966, 26.035000191885047 57.823327137671214, 26.20444519204287 57.69499113755168, 26.28083619211401 57.62430013748585, 26.30624519213768 57.60819113747084, 26.511391192328745 57.526100137394394, 26.531245192347228 57.522636137391174, 26.60680019241758 57.527009137395254, 26.62416319243377 57.546245137413166, 26.697773192502325 57.57555413744046, 26.87846319267061 57.63207313749308, 26.902218192692715 57.633463137494374, 26.969991192755828 57.623318137484944, 26.996109192780153 57.61832713748029, 27.025273192807333 57.608045137470725, 27.045554192826216 57.59401813745765, 27.077082192855585 57.56520013743082, 27.31027319307276 57.531382137399305, 27.372054193130282 57.53563613740329, 27.425000193179585 57.53193613739984, 27.44943619320236 57.531109137399056, 27.471663193223065 57.531382137399305, 27.547218193293418 57.53638213740396, 27.542773193289293 57.49360913736413, 27.527773193275323 57.444327137318226, 27.571391193315947 57.41819113729389, 27.60638219334851 57.41054513728679, 27.687218193423803 57.379991137258315, 27.82527319355239 57.323882137206056, 27.855345193580376 57.305963137189366, 27.863882193588324 57.26250013714889, 27.84937319357482 57.17991813707198, 27.774718193505294 57.05720913695771, 27.70166319343727 56.914709136824996, 27.731109193464675 56.869154136782555, 27.762500193493906 56.873600136786706, 27.80250019353116 56.87818213679097, 27.837773193564033 56.87554513678853, 27.860554193585244 56.868882136782304, 27.938818193658136 56.82242713673904, 27.926727193646855 56.794018136712594, 27.94360919366258 56.72276313664622, 28.009445193723906 56.64832713657691, 28.11416319382144 56.51749113645505, 28.147773193852743 56.4713731364121, 28.18277319388534 56.40638213635157, 28.23596319393488 56.276382136230495, 28.197082193898666 56.181236136141905, 28.183463193885984 56.16193613612393, 28.16800919387157 56.150154136112945, 28.149645193854468 56.16096413612303, 28.121663193828425 56.16749113612909, 27.922491193642912 56.10512713607102, 27.897773193619912 56.07027313603854, 27.79610919352521 56.00110913597413, 27.712491193447335 55.95610013593222, 27.64638219338576 55.91957313589819, 27.63204519337242 55.846000135829684, 27.620000193361193 55.81832713580391, 27.6002451933428 55.79251813577986, 27.55971819330506 55.78916413577676, 27.53110919327841 55.78889113577648, 27.310827193073266 55.80749113579381, 27.21166319298092 55.8258271358109, 27.152773192926077 55.846518135830166, 26.985827192770586 55.832354135816985, 26.90499119269529 55.77554513576408, 26.88326319267506 55.74048213573141, 26.856663192650302 55.713882135706626, 26.765827192565695 55.68749113568205, 26.738473192540226 55.6877641356823, 26.692054192496983 55.70173613569531, 26.665273192472057 55.70582713569914, 26.64221819245057 55.69874513569255, 26.624854192434412 55.687909135682446, 26.613209192423568 55.67483613567026, 26.58332719239573 55.675545135670944, 26.53139119234737 55.680827135675855, 26.504582192322403 55.68512713567986, 26.36694519219421 55.716518135709094, 26.33860919216781 55.72638213571827, 26.31332719214427 55.7397181357307, 26.266109192100288 55.773400135762074, 26.239718192075713 55.81693613580262, 26.21638219205397 55.84582713582952, 26.196245192035235 55.863745135846216, 26.058327191906784 55.93804513591542, 26.00532719185742 55.95743613593348, 25.93721819179399 55.97873613595331, 25.891109191751042 55.99943613597259, 25.708609191581075 56.09703613606348, 25.5827731914639 56.15138213611408, 25.429718191321342 56.16638213612805, 25.327500191226136 56.16915413613063, 25.2625001911656 56.18082713614152, 25.183054191091628 56.183327136143845, 25.160273191070416 56.18443613614488, 25.1398541910514 56.18749113614771, 25.10152719101569 56.19915413615857, 25.076800190992657 56.214854136173216, 24.996527190917902 56.30027313625274, 24.98193619090432 56.32916413627967, 24.970554190893722 56.353609136302424, 24.95666319088079 56.38249113632932, 24.942218190867322 56.4069361363521, 24.91888219084558 56.44262713638534, 24.89416319082258 56.44985413639208, 24.653327190598276 56.36582713631381, 24.602773190551204 56.32916413627967, 24.5825001905323 56.31249113626413, 24.56055419051188 56.28943613624267, 24.476663190433754 56.269436136224044, 24.44943619040839 56.2697181362243, 24.420345190381283 56.27589113623006, 24.371800190336074 56.298600136251196, 24.33437319030122 56.309709136261546, 24.265000190236606 56.28943613624267, 24.16930019014748 56.262218136217314, 24.14180019012187 56.26277313621782, 24.069854190054883 56.28360913623723, 23.99985418998969 56.32040913627151, 23.948882189942196 56.332218136282506, 23.8736091898721 56.34276413629232, 23.733745189741853 56.360691136309015, 23.599718189617022 56.3615181363098, 23.57347318959259 56.34527313629465, 23.553473189573964 56.33596413628601, 23.525273189547704 56.33416413628433, 23.448054189475783 56.34415413629361, 23.36305418939662 56.36707313631496, 23.3261091893622 56.379018136326096, 23.29610918933426 56.380818136327775, 23.17489118922137 56.3548541363036, 23.138609189187576 56.318191136269434, 23.10527318915655 56.30617313625825, 23.060973189115288 56.316527136267894, 23.034445189090576 56.33138213628172, 23.015554189072986 56.35249113630138, 23.003745189061988 56.37471813632209, 22.989718189048915 56.39582713634175, 22.951245189013093 56.42013613636439, 22.93006318899336 56.42304513636711, 22.886382188952666 56.41027313635519, 22.853191188921755 56.392218136338386, 22.832363188902377 56.38082713632778, 22.69138218877106 56.35665413630525, 22.666245188747666 56.3605451363089, 22.64860918873123 56.371236136318856, 22.624791188709054 56.38554513633218, 22.586936188673803 56.394718136340714, 22.553609188642753 56.39971813634537, 22.51916318861069 56.40443613634977, 22.48930018858286 56.40638213635157, 22.30943618841536 56.40388213634924, 22.14693618826402 56.423882136367865, 22.06721818818977 56.41944513636375, 22.043745188167918 56.414436136359086, 21.90527318803896 56.369154136316894, 21.735545187880888 56.32332713627423, 21.566663187723606 56.295273136248085, 21.44777318761288 56.248882136204884, 21.42131818758824 56.24096413619753, 21.388191187557368 56.24027313619686, 21.359509187530676 56.239373136196036, 21.258891187436973 56.17860013613944, 21.241800187421035 56.16526413612701, 21.23430018741405 56.132073136096096, 21.226100187406416 56.101654136067765, 21.207427187389044 56.085682136052895, 21.14666318733245 56.088045136055115, 21.123891187311244 56.08749113605458, 21.099027187288073 56.08540913605265, 21.058054187249923 56.07943613604709, 21.051682187243983 56.0773091360451, 21.042773187235696 56.11832713608331, 21.025827187219903 56.15610013611848, 21.01263618720762 56.171382136132706, 20.995554187191715 56.18457313614499, 20.973609187171263 56.23790913619467, 20.968609187166606 56.36360913631174, 20.99763618719365 56.50944513644757, 21.024927187219077 56.508191136446385, 21.044445187237244 56.45832713639996, 21.06860918725974 56.43554513637875, 21.057773187249666 56.510554136448604, 21.02666318722069 56.61415413654507, 21.039718187232836 56.64415413657301, 21.0494451872419 56.6719361365989, 21.056109187248097 56.69137313661699, 21.065000187256373 56.747354136669145, 21.06347318725497 56.78193613670135, 21.052227187244483 56.817491136734446, 21.062291187253862 56.84193613675723, 21.14500018733088 56.87276313678592, 21.224436187404876 56.90665413681748, 21.2613911874393 56.92276313683249, 21.357909187529174 56.98735413689266, 21.395691187564353 57.02665413692924, 21.40943618757717 57.049436136950476, 21.41555418758287 57.06944513696911, 21.415409187582725 57.0936091369916, 21.411382187578965 57.124436137020325, 21.412491187580002 57.23901813712703, 21.417282187584476 57.28193613716701, 21.434163187600205 57.30290913718653, 21.458609187622955 57.316936137199605, 21.482491187645195 57.33388213721537, 21.59610918775101 57.443318137317306, 21.640000187791884 57.488882137359724, 21.6655541878157 57.51666313738562, 21.6769361878263 57.53388213740163, 21.705827187853203 57.559718137425705, 21.7290181878748 57.574718137439675, 21.755000187898986 57.5833271374477, 21.856245187993295 57.59582713745934, 21.901109188035065 57.593609137457264, 21.92277318805526 57.59096313745479, 21.991527188119278 57.595545137459084, 22.019718188145532 57.603054137466074, 22.04916318817297 57.61666313747875, 22.098327188218747 57.633882137494766, 22.28139118838925 57.68471813754212, 22.480136188574335 57.7395731375932, 22.582773188669933 57.755273137607816, 22.60690018869238 57.74905413760203, 22.584027188671087 57.68901813754613, 22.59458218868093 57.63762713749827, 22.643327188726317 57.58527313744949, 22.67221818875322 57.57110913743631, 22.75110918882669 57.535273137402925, 22.905273188970284 57.45470913732791, 22.941173189003706 57.43069113730553, 23.014163189071695 57.398609137275656, 23.04916318910429 57.385273137263226, 23.083609189136354 57.37582713725445, 23.10360918915498 57.37249113725133, 23.135691189184854 57.36443613724384, 23.16750018921448 57.3127631371957, 23.24110018928303 57.16874513706159, 23.249163189290556 57.114718137011266, 23.256109189297007 57.100963136998445, 23.30582718934332 57.07332713697272, 23.32750018936349 57.062209136962366, 23.34666318938136 57.05415413695485, 23.586109189604343 56.97665413688267, 23.655273189668776 56.96589113687267, 23.76527318977122 56.96831813687493, 23.785827189790353 56.97027313687673, 23.850273189850384 56.983882136889406, 23.8736091898721 56.98888213689406, 23.955273189948173 57.01138213691502, 23.98499118997583 57.02221813692512, 24.155273190134437 57.09749113699522, 24.223327190197807 57.12887313702444, 24.373191190337366 57.21901813710841, 24.404163190366233 57.251245137138426, 24.41319119037462 57.277218137162606, 24.40916319037089 57.35430013723439, 24.362218190327155 57.58082713744537, 24.330827190297924 57.699436137555836, 24.304091190273027 57.73165413758582, 24.289718190259634 57.79250013764249, 24.28895419025892 57.83346313768064, 24.31498219028316 57.871827137716366))) +LTU Lithuania MULTIPOLYGON (((23.50403618952791 53.94704513406114, 23.508054189531663 53.960545134073726, 23.517500189540442 54.03874513414655, 23.49416318951873 54.11720913421962, 23.484436189509665 54.13832713423929, 23.45777318948484 54.17416413427267, 23.35610918939014 54.2354091343297, 23.33305418936868 54.2472181343407, 23.2044451892489 54.28721813437795, 23.115827189166367 54.304436134393995, 22.995063189053894 54.38575413446972, 22.86319118893107 54.40831813449074, 22.835136188904954 54.40512713448777, 22.812218188883605 54.39596413447924, 22.78588218885909 54.363836134449315, 22.776391188850255 54.376936134461516, 22.73610918881272 54.423464134504854, 22.710336188788716 54.4439181345239, 22.69832718877754 54.464573134543116, 22.69138218877106 54.493609134570164, 22.694854188774315 54.52943613460354, 22.720136188797852 54.69318213475603, 22.745273188821272 54.717209134778415, 22.813882188885145 54.77166413482914, 22.84040918890986 54.77762713483469, 22.866873188934505 54.812145134866824, 22.865000188932754 54.838600134891465, 22.85138218892007 54.88166413493158, 22.83874518890832 54.89930013494799, 22.719991188797707 54.96262713500698, 22.682218188762533 54.958327135002975, 22.64540918872825 54.96447313500869, 22.60290918868867 55.04485413508357, 22.51277318860474 55.063327135100764, 22.279718188387676 55.06721813510438, 22.25805418836751 55.066382135103595, 22.190691188304754 55.06096413509857, 22.138745188256394 55.05270013509087, 22.122773188241524 55.03889113507799, 22.103327188223403 55.029436135069204, 22.059927188182996 55.028527135068344, 21.722627187868852 55.138736135171, 21.647354187798754 55.18180013521109, 21.564163187721277 55.19720913522545, 21.431382187597592 55.251936135276424, 21.37078218754118 55.28677313530886, 21.327654187500997 55.270627135293836, 21.30027318747551 55.25889113528288, 21.274854187451837 55.250618135275175, 21.263936187441658 55.24898213527368, 21.289027187465024 55.28645413530856, 21.245827187424794 55.46693613547666, 21.197491187379768 55.575000135577284, 21.144163187330122 55.67762713567288, 21.11006318729835 55.71409113570684, 21.07708218726765 55.732773135724216, 21.05832718725017 55.78166413576977, 21.044718187237493 55.88276413586391, 21.04437318723717 55.91319113589225, 21.060000187251717 55.9512361359277, 21.0669451872582 55.984573135958726, 21.05916318725096 56.05596413602524, 21.051682187243983 56.0773091360451, 21.058054187249923 56.07943613604709, 21.099027187288073 56.08540913605265, 21.123891187311244 56.08749113605458, 21.14666318733245 56.088045136055115, 21.207427187389044 56.085682136052895, 21.226100187406416 56.101654136067765, 21.23430018741405 56.132073136096096, 21.241800187421035 56.16526413612701, 21.258891187436973 56.17860013613944, 21.359509187530676 56.239373136196036, 21.388191187557368 56.24027313619686, 21.42131818758824 56.24096413619753, 21.44777318761288 56.248882136204884, 21.566663187723606 56.295273136248085, 21.735545187880888 56.32332713627423, 21.90527318803896 56.369154136316894, 22.043745188167918 56.414436136359086, 22.06721818818977 56.41944513636375, 22.14693618826402 56.423882136367865, 22.30943618841536 56.40388213634924, 22.48930018858286 56.40638213635157, 22.51916318861069 56.40443613634977, 22.553609188642753 56.39971813634537, 22.586936188673803 56.394718136340714, 22.624791188709054 56.38554513633218, 22.64860918873123 56.371236136318856, 22.666245188747666 56.3605451363089, 22.69138218877106 56.35665413630525, 22.832363188902377 56.38082713632778, 22.853191188921755 56.392218136338386, 22.886382188952666 56.41027313635519, 22.93006318899336 56.42304513636711, 22.951245189013093 56.42013613636439, 22.989718189048915 56.39582713634175, 23.003745189061988 56.37471813632209, 23.015554189072986 56.35249113630138, 23.034445189090576 56.33138213628172, 23.060973189115288 56.316527136267894, 23.10527318915655 56.30617313625825, 23.138609189187576 56.318191136269434, 23.17489118922137 56.3548541363036, 23.29610918933426 56.380818136327775, 23.3261091893622 56.379018136326096, 23.36305418939662 56.36707313631496, 23.448054189475783 56.34415413629361, 23.525273189547704 56.33416413628433, 23.553473189573964 56.33596413628601, 23.57347318959259 56.34527313629465, 23.599718189617022 56.3615181363098, 23.733745189741853 56.360691136309015, 23.8736091898721 56.34276413629232, 23.948882189942196 56.332218136282506, 23.99985418998969 56.32040913627151, 24.069854190054883 56.28360913623723, 24.14180019012187 56.26277313621782, 24.16930019014748 56.262218136217314, 24.265000190236606 56.28943613624267, 24.33437319030122 56.309709136261546, 24.371800190336074 56.298600136251196, 24.420345190381283 56.27589113623006, 24.44943619040839 56.2697181362243, 24.476663190433754 56.269436136224044, 24.56055419051188 56.28943613624267, 24.5825001905323 56.31249113626413, 24.602773190551204 56.32916413627967, 24.653327190598276 56.36582713631381, 24.89416319082258 56.44985413639208, 24.91888219084558 56.44262713638534, 24.942218190867322 56.4069361363521, 24.95666319088079 56.38249113632932, 24.970554190893722 56.353609136302424, 24.98193619090432 56.32916413627967, 24.996527190917902 56.30027313625274, 25.076800190992657 56.214854136173216, 25.10152719101569 56.19915413615857, 25.1398541910514 56.18749113614771, 25.160273191070416 56.18443613614488, 25.183054191091628 56.183327136143845, 25.2625001911656 56.18082713614152, 25.327500191226136 56.16915413613063, 25.429718191321342 56.16638213612805, 25.5827731914639 56.15138213611408, 25.708609191581075 56.09703613606348, 25.891109191751042 55.99943613597259, 25.93721819179399 55.97873613595331, 26.00532719185742 55.95743613593348, 26.058327191906784 55.93804513591542, 26.196245192035235 55.863745135846216, 26.21638219205397 55.84582713582952, 26.239718192075713 55.81693613580262, 26.266109192100288 55.773400135762074, 26.31332719214427 55.7397181357307, 26.33860919216781 55.72638213571827, 26.36694519219421 55.716518135709094, 26.504582192322403 55.68512713567986, 26.53139119234737 55.680827135675855, 26.58332719239573 55.675545135670944, 26.613209192423568 55.67483613567026, 26.62263619243234 55.65235413564935, 26.627909192437244 55.59840013559909, 26.526663192342966 55.44693613545803, 26.4648541922854 55.33874513535727, 26.505836192323557 55.32388213534341, 26.52888219234501 55.31777313533772, 26.560827192374774 55.3138821353341, 26.625273192434804 55.33027313534936, 26.645827192453936 55.33027313534936, 26.775409192574614 55.31124513533166, 26.813054192609684 55.290273135312106, 26.806800192603845 55.269718135292976, 26.783745192582387 55.254854135279146, 26.641663192450068 55.19082713521951, 26.512082192329387 55.15027313518172, 26.481663192301056 55.15499113518612, 26.28013619211336 55.14569113517746, 26.253054192088143 55.118736135152375, 26.249445192084778 55.078673135115054, 26.21471819205243 55.02568213506569, 26.160827192002245 54.97720913502056, 26.076382191923585 54.96193613500634, 25.936663191793485 54.95554513500039, 25.911945191770457 54.95360913499857, 25.875136191736175 54.941100134986925, 25.792082191658835 54.87304513492356, 25.73693619160747 54.78811813484444, 25.7270821915983 54.67485413473898, 25.732082191602956 54.654154134719676, 25.75770019162681 54.61499113468321, 25.7626361916314 54.58249113465294, 25.748882191618577 54.56443613463614, 25.724718191596082 54.54846413462127, 25.655754191531855 54.52311813459764, 25.55513619143815 54.362636134448195, 25.551663191434926 54.326909134414905, 25.575409191457027 54.31263613440163, 25.61110919149027 54.311382134400446, 25.650273191526765 54.3158271344046, 25.691518191565166 54.327354134415344, 25.7127001915849 54.33151813441921, 25.807218191672916 54.24665413434016, 25.785000191652216 54.16450913426368, 25.766109191634627 54.15388213425376, 25.66867319154389 54.13652713423761, 25.539927191424 54.14548213424595, 25.505409191391834 54.18512713428288, 25.544582191428333 54.20054513429724, 25.573054191454844 54.243045134336825, 25.501109191387826 54.303045134392704, 25.466936191356012 54.30436413439392, 25.438327191329364 54.2888911343795, 25.420691191312926 54.27096413436283, 25.398745191292505 54.25847313435119, 25.372500191268045 54.25416413434718, 25.345827191243217 54.25277313434586, 25.204445191111546 54.215964134311605, 25.178882191087723 54.18610013428378, 25.161945191071965 54.1724911342711, 25.10139119101558 54.144436134244984, 25.07721819099305 54.136109134237216, 25.027082190946373 54.13193613423334, 25.004027190924887 54.14235413424305, 24.971518190894614 54.157282134256945, 24.847773190779378 54.14340013424402, 24.79840019073339 54.10159113420508, 24.822500190755818 54.0647821341708, 24.839445190771613 54.03819113414602, 24.840409190772505 54.0111091341208, 24.82673619075979 53.9843641340959, 24.72401819066411 53.97020013408272, 24.695618190637674 53.99651813410722, 24.612218190559986 53.99221813410321, 24.514445190468933 53.95040913406427, 24.467491190425193 53.92262713403841, 24.391663190354592 53.89033613400832, 24.26735419023882 53.90720913402404, 24.25624519022847 53.92943613404475, 24.241800190215002 53.94569113405987, 24.206873190182478 53.962982134075986, 24.17555419015332 53.96749113408018, 24.149582190129138 53.9652731340781, 24.122636190104032 53.951454134065244, 24.084927190068925 53.937554134052306, 24.016109190004812 53.93720913405198, 23.986109189976872 53.93888213405353, 23.89888218989563 53.9405451340551, 23.783882189788528 53.93554513405044, 23.709436189719213 53.92388213403956, 23.59430018961197 53.93082713404604, 23.568609189588045 53.93915413405378, 23.543609189564762 53.94331813405768, 23.516663189539685 53.946654134060765, 23.50403618952791 53.94704513406114)), ((20.984809187181696 55.276554135299335, 20.942836187142603 55.28720013530926, 20.982773187179816 55.33082713534989, 21.002500187198166 55.35249113537006, 21.043400187236273 55.40895413542265, 21.06444518725587 55.45166413546244, 21.085827187275783 55.507218135514165, 21.093463187282907 55.53999113554468, 21.095827187285096 55.59415413559512, 21.095827187285096 55.67180013566744, 21.092009187281548 55.714018135706766, 21.112218187300357 55.70054513569423, 21.125136187312393 55.68304513567793, 21.13471818732131 55.629154135627715, 21.128054187315115 55.575000135577284, 21.103054187291832 55.42082713543371, 21.046663187239318 55.329718135348855, 20.984809187181696 55.276554135299335))) +MDA Moldova MULTIPOLYGON (((28.108327193815995 46.10229112675515, 28.138882193844438 46.190536126837316, 28.193600193895406 46.330273126967455, 28.24842719394647 46.42703612705759, 28.24680019394495 46.60780012722594, 28.228745193928148 46.67200912728575, 28.203882193904974 46.6986001273105, 28.17443619387757 46.739718127348794, 28.11575419382291 46.840473127442635, 28.1197181938266 46.8544091274556, 28.11582719382298 46.88777312748667, 28.10638219381417 46.920273127516936, 28.079373193789024 46.9822731275747, 28.03388219374665 47.01554512760569, 27.998718193713927 47.02777312761705, 27.945382193664244 47.043309127631545, 27.861382193585996 47.10248212768664, 27.798054193527037 47.152491127733214, 27.78540919351525 47.20331812778056, 27.742218193475026 47.262773127835914, 27.719282193453665 47.28564512785724, 27.679436193416564 47.293873127864885, 27.636309193376405 47.305954127876134, 27.576100193320315 47.36610012793216, 27.472918193224217 47.485982128043815, 27.433327193187353 47.56526412811763, 27.361191193120163 47.6169821281658, 27.327773193089058 47.63665412818412, 27.29943619306266 47.65860012820457, 27.28027319304482 47.69304512823666, 27.238327193005745 47.78525412832252, 27.211100192980382 47.84581812837894, 27.20082719297082 47.902200128431446, 27.158600192931488 47.98581812850932, 27.000554192784307 48.1555451286674, 26.95471819274161 48.18554512869534, 26.817218192613552 48.24680012875237, 26.704163192508275 48.26388212876827, 26.634991192443835 48.257164128762014, 26.63782719244648 48.27360912877734, 26.65166319245938 48.300827128802695, 26.702073192506333 48.33999112883916, 26.808327192605276 48.333054128832714, 26.981109192766183 48.35777312885571, 27.23943619300678 48.36832712886556, 27.454163193206767 48.43970912893204, 27.51951819326763 48.46550012895605, 27.547218193293418 48.468318128958686, 27.76319119349455 48.449582128941216, 27.866245193590544 48.40055412889558, 27.880273193603614 48.38110012887745, 27.890973193613576 48.36415412886166, 27.912773193633882 48.34804512884668, 27.932218193651977 48.33749112883683, 27.95582719367397 48.32735412882741, 28.01471819372881 48.31666412881745, 28.0749271937849 48.31110012881226, 28.09368219380235 48.2911731287937, 28.086109193795295 48.24260012874845, 28.213054193913536 48.20651812871486, 28.23582719393474 48.206800128715116, 28.26000019395724 48.220545128727935, 28.290554193985713 48.23638212874266, 28.347009194038293 48.24204512874795, 28.370482194060145 48.22179112872908, 28.367500194057357 48.19096412870039, 28.38860919407702 48.16388212867514, 28.43666319412179 48.14582712865834, 28.501945194182582 48.134164128647484, 28.557700194234513 48.16180012867321, 28.642491194313465 48.15360012866557, 28.737500194401946 48.1386001286516, 28.80736319446703 48.12540912863932, 28.828327194486548 48.109718128624706, 28.879809194534488 48.010454128532245, 28.882218194536733 48.005554128527706, 28.900409194553674 47.9885911285119, 28.96165419461073 47.946645128472824, 28.982627194630254 47.93691812846379, 29.01652719466182 47.9323361284595, 29.043045194686528 47.93567312846261, 29.0611731947034 47.95171812847755, 29.073391194714787 47.97699112850108, 29.1034631947428 47.986509128509965, 29.144854194781345 47.98351812850717, 29.175554194809934 47.95470012848034, 29.257500194886234 47.766373128304934, 29.195409194828414 47.60915412815851, 29.160127194795564 47.58166412813293, 29.135373194772512 47.54908212810258, 29.14290919477952 47.51179112806784, 29.190100194823486 47.439536128000555, 29.223045194854166 47.44887312800924, 29.245618194875192 47.45756412801734, 29.299436194925306 47.42220912798442, 29.358891194980686 47.378318127943544, 29.380973195001246 47.35610912792285, 29.380273195000598 47.32908212789769, 29.41395419503195 47.29110012786231, 29.47853619509209 47.297209127868, 29.4901271951029 47.32763612789634, 29.50187319511383 47.34450012791203, 29.567009195174506 47.33770012790572, 29.590545195196427 47.310264127880146, 29.59922719520449 47.27909112785113, 29.572218195179346 47.142773127724155, 29.59249119519822 47.023182127612785, 29.574236195181243 46.94741812754222, 29.737491195333263 46.89026412748899, 29.867009195453903 46.86130912746202, 29.94430019552587 46.81825412742194, 29.971663195551372 46.74192712735086, 29.96502719554519 46.57012712719086, 29.916154195499672 46.55856412718009, 29.8994361954841 46.53520012715833, 29.928609195511257 46.50527312713044, 30.006945195584223 46.45664512708515, 30.035273195610614 46.44304512707251, 30.06582719563906 46.43526412706524, 30.09651819566764 46.42957312705994, 30.11655419568629 46.426464127057045, 30.12870919569761 46.40509112703714, 30.09847319566947 46.381236127014944, 30.048609195623015 46.378873127012724, 29.99638219557437 46.378873127012724, 29.966663195546715 46.37971812701352, 29.923327195506346 46.38200012701563, 29.866382195453298 46.346373126982456, 29.825273195415036 46.36860012700316, 29.73443619533043 46.44095412707054, 29.66220919526316 46.379436127013264, 29.633609195236517 46.3697091270042, 29.602082195207174 46.37679112701079, 29.494436195106914 46.44228212707179, 29.49943619511157 46.48480912711139, 29.350827194973164 46.46998212709758, 29.30540919493086 46.428245127058716, 29.307354194932685 46.404227127036336, 29.23832719486839 46.36831812700291, 29.21790919484937 46.36727312700194, 29.202427194834968 46.38310912701667, 29.219854194851195 46.406800127038736, 29.228327194859077 46.4847091271113, 29.22319119485428 46.51950012714369, 29.203300194835776 46.54496412716742, 29.173882194808357 46.53971812716253, 29.03888219468263 46.49665412712241, 28.994436194641253 46.47832712710536, 28.97638219462442 46.4681821270959, 28.933954194584913 46.42999112706033, 28.950000194599852 46.28942712692944, 29.021663194666615 46.21762712686257, 29.04013619468381 46.19553612684197, 28.96825419461686 46.00610012666556, 28.8966631945502 45.99053612665105, 28.829436194487585 45.9783271266397, 28.80110919446119 45.97248212663425, 28.763363194426034 45.96186412662436, 28.750482194414047 45.9263731265913, 28.766727194429166 45.86283612653213, 28.679963194348375 45.779673126454696, 28.597009194271124 45.768045126443866, 28.52443619420353 45.71110012639082, 28.490691194172086 45.66575412634859, 28.524791194203857 45.64700012633111, 28.53055419420923 45.53166412622372, 28.51582719419551 45.5149181262081, 28.483045194164987 45.50651812620029, 28.399573194087253 45.5118001262052, 28.366382194056314 45.517773126210756, 28.345554194036936 45.52303612621566, 28.316382194009748 45.527491126219815, 28.288882193984136 45.52595412621838, 28.266527193963327 45.52012712621297, 28.24693619394509 45.51110912620456, 28.232354193931513 45.495400126189935, 28.21540919391572 45.46345412616017, 28.214836193915175 45.4486451261464, 28.211309193911916 45.450109126147765, 28.17443619387757 45.4720731261682, 28.06916319377953 45.58331812627182, 28.137273193842958 45.62040012630635, 28.15930019386346 45.62700012631248, 28.166800193870444 45.66819112635085, 28.164509193868327 45.72081812639988, 28.12027319382713 45.92192712658718, 28.10721819381496 45.966100126628305, 28.093445193802125 45.99175412665221, 28.0913821938002 46.0758271267305, 28.108327193815995 46.10229112675515))) +ROM Romania MULTIPOLYGON (((24.31970919028757 43.6966361245147, 24.30778219027647 43.697491124515494, 24.286391190256552 43.697491124515494, 24.257218190229366 43.69444512451267, 24.224163190198595 43.689436124508006, 24.18923619016607 43.68492712450379, 24.15561819013476 43.68990912450843, 24.116082190097927 43.699909124517745, 24.06798219005313 43.72062712453706, 23.987500189978164 43.74416412455898, 23.7741631897795 43.7883271246001, 23.62971818964496 43.795000124606304, 23.607082189623895 43.79735412460852, 23.570273189589614 43.80693612461744, 23.533700189555532 43.822427124631844, 23.511518189534883 43.836554124645005, 23.446663189474492 43.851109124658564, 23.42268218945216 43.85570012466283, 23.28360918932262 43.85082712465831, 23.262073189302555 43.84778212465548, 23.224500189267587 43.83866412464698, 23.198609189243456 43.831382124640186, 23.162109189209474 43.81822712462795, 23.14319118919184 43.80971812462002, 23.067527189121392 43.80218212461301, 22.96694518902771 43.81693612462675, 22.89444518896019 43.836109124644594, 22.869300188936762 43.845418124653264, 22.85254518892117 43.86073612466754, 22.841963188911308 43.89667312470101, 22.882218188948798 43.984864124783144, 22.913400188977846 44.00086412479803, 22.959427189020715 44.01227312480867, 22.992236189051255 44.01375412481005, 23.037636189093547 44.050691124844434, 23.042982189098524 44.07256412486481, 23.0127731890704 44.09610912488674, 22.997445189056123 44.10062712489096, 22.94832718901037 44.10401812489411, 22.914582188978954 44.11110912490071, 22.691663188771344 44.21555412499799, 22.681436188761808 44.22470012500651, 22.68777318876772 44.274018125052436, 22.665273188746767 44.28846412506587, 22.641109188724243 44.294164125071205, 22.616673188701498 44.29803612507479, 22.57561818866327 44.30554512508181, 22.543327188633185 44.32971812510431, 22.53000018862076 44.34527312511878, 22.459927188555525 44.46106412522664, 22.461527188557 44.48332712524737, 22.58624518867316 44.547636125307264, 22.615418188700318 44.55166412531102, 22.63902718872231 44.54582712530558, 22.672500188753475 44.52888212528978, 22.701182188780194 44.52356412528485, 22.73889118881533 44.53305412529369, 22.762509188837328 44.55260012531187, 22.712773188791004 44.605136125360815, 22.665836188747278 44.61944512537414, 22.64444518872736 44.618609125373354, 22.607291188692756 44.6224271253769, 22.574445188662168 44.63860912539198, 22.543054188632937 44.65860912541061, 22.513891188605783 44.67971812543027, 22.493473188586762 44.69916412544839, 22.466109188561262 44.71374512546197, 22.42881818852655 44.7120821254604, 22.311591188417367 44.659027125411, 22.297773188404506 44.6358271253894, 22.273327188381728 44.604164125359915, 22.258609188368013 44.5852731253423, 22.1754821882906 44.4832641252473, 22.137500188255217 44.48027312524451, 22.09166318821255 44.49867312526166, 22.03541818816015 44.55950912531833, 22.031263188156288 44.58942712534619, 22.029163188154342 44.593891125350325, 21.997009188124395 44.633045125386815, 21.909163188042584 44.649436125402076, 21.783609187925634 44.66194512541372, 21.734163187879602 44.655827125408024, 21.644236187795855 44.66013612541204, 21.61770918777114 44.682845125433175, 21.61560018776916 44.710791125459195, 21.5969451877518 44.755827125501156, 21.56555418772257 44.77166412551591, 21.533745187692944 44.777354125521214, 21.47471818763796 44.77777312552158, 21.453609187618298 44.77666412552057, 21.398663187567138 44.783100125526545, 21.362573187533513 44.828100125568454, 21.36958218754006 44.86652712560425, 21.40777318757563 44.87624512561331, 21.453609187618298 44.875418125612526, 21.47888218764183 44.87527312561238, 21.502218187663573 44.879718125616535, 21.553954187711753 44.89242712562836, 21.5568001877144 44.91395412564842, 21.535827187694878 44.940200125672874, 21.47319118763653 44.96235412569351, 21.450136187615072 44.96235412569351, 21.429718187596052 44.96166412569286, 21.407218187575097 44.97221812570268, 21.373436187543632 45.013609125741226, 21.44305418760848 45.05360012577847, 21.514100187674643 45.14277312586151, 21.482773187645478 45.18360912589955, 21.473373187636724 45.18744512590314, 21.410827187578462 45.215418125929176, 21.35139118752312 45.21777312593136, 21.27194518744912 45.23124512594393, 21.04888218724136 45.3163821260232, 20.98666318718344 45.34583612605064, 20.80832718701734 45.47888212617454, 20.79416318700416 45.50777312620144, 20.767563186979373 45.61353612629995, 20.77652718698772 45.63332712631839, 20.797500187007245 45.653045126336764, 20.801600187011076 45.75867312643513, 20.773018186984444 45.76815412644396, 20.752773186965612 45.7469361264242, 20.71763618693288 45.74374512642123, 20.662363186881407 45.798745126472454, 20.655973186875457 45.827909126499605, 20.585273186809616 45.898745126565586, 20.553745186780247 45.91124512657723, 20.513745186742995 45.91423612657999, 20.373191186612075 45.98151812664267, 20.354027186594237 46.017391126676074, 20.314027186556984 46.06985412672495, 20.26102718650762 46.11485412676686, 20.27430018651998 46.140409126790644, 20.34027318658144 46.15943612680837, 20.48694518671803 46.181109126828545, 20.53527318676305 46.17304512682105, 20.563327186789166 46.16499112681353, 20.582773186807287 46.155000126804225, 20.622082186843897 46.130827126781725, 20.687663186904956 46.146309126796126, 20.719654186934747 46.16610012681457, 20.726954186941555 46.17556412682339, 20.720273186935344 46.18958212683643, 20.757354186969877 46.242909126886104, 20.78305418699381 46.259436126901505, 20.79590018700577 46.265727126907365, 20.825000187032856 46.27597312691691, 20.846382187052768 46.27916412691988, 20.868609187073474 46.27610912691702, 20.98971818718627 46.2547181268971, 21.049373187241827 46.24082712688417, 21.080827187271126 46.246936126889864, 21.17736318736104 46.29736412693683, 21.178609187362184 46.326945126964375, 21.188327187371243 46.37193612700628, 21.202773187384707 46.39680912702943, 21.21916318739997 46.40833612704017, 21.288891187464912 46.46054512708881, 21.293609187469286 46.532491127155794, 21.308054187482753 46.589854127209236, 21.327563187500914 46.62061812723786, 21.453536187618226 46.6846451272975, 21.48940918765166 46.684536127297406, 21.493891187655834 46.68694512729965, 21.525727187685476 46.72618212733619, 21.493400187655368 46.75475412736279, 21.53020918768965 46.8270091274301, 21.613327187767055 46.88416412748333, 21.670827187820606 46.96139112755523, 21.692218187840524 47.006282127597046, 21.655500187806325 47.02086412761062, 21.652500187803525 47.02756412761687, 21.710000187857077 47.079718127665444, 21.743191187887987 47.09819112768264, 21.783473187925523 47.11492712769822, 21.84721818798488 47.1981181277757, 21.842291187980294 47.22923612780468, 21.87166318800766 47.296527127867364, 21.929445188061464 47.3589541279255, 21.962500188092235 47.36804512793398, 21.998536188125797 47.37360912793915, 22.013473188139727 47.39013612795455, 22.02055418814632 47.42528212798729, 22.020273188146064 47.45082712801107, 22.008327188134928 47.478609128036936, 22.013882188140087 47.51061812806674, 22.03777318816236 47.53360912808816, 22.118009188237068 47.5781091281296, 22.167909188283545 47.58832712813913, 22.186391188300775 47.598609128148695, 22.189836188303957 47.603954128153674, 22.19139118830543 47.628745128176774, 22.225273188336985 47.679300128223844, 22.273745188382122 47.72624512826758, 22.32097318842611 47.7466641282866, 22.44985418854614 47.79485412833148, 22.481109188575232 47.79555412833213, 22.5018001885945 47.79028212832722, 22.55221818864146 47.76708212830559, 22.60360918868932 47.76777312830623, 22.634163188717793 47.77166412830988, 22.653609188735885 47.77638212831425, 22.78000018885359 47.84298212837629, 22.894800188960517 47.954536128480186, 22.89610918896173 47.95389112847957, 22.93000018899329 47.96054512848579, 23.043327189098846 47.99304512851606, 23.08777318914025 48.01347312853508, 23.10221818915369 48.03430012855446, 23.112500189163256 48.06277312858097, 23.125618189175498 48.08936412860575, 23.152354189200395 48.10569112862095, 23.174163189220707 48.108327128623415, 23.26069118930127 48.09012712860647, 23.279163189318496 48.07527312859261, 23.299100189337054 48.04485412856431, 23.35610918939014 48.02110012854217, 23.410273189440602 48.000545128523044, 23.502982189526932 47.982464128506194, 23.514263189537445 47.989336128512605, 23.56610018958571 47.99999112852251, 23.823891189825815 47.966945128491744, 23.96971818996161 47.961391128486554, 24.032363190019964 47.955964128481526, 24.09618219007939 47.93235412845954, 24.12750019010855 47.91200912844059, 24.246945190219805 47.903882128433, 24.32694519029431 47.928891128456286, 24.421527190382392 47.95777312848318, 24.45389119041255 47.95860912848397, 24.55639119050801 47.953045128478806, 24.572291190522805 47.949482128475466, 24.588336190537746 47.945827128472075, 24.615409190562957 47.93374512846083, 24.67010019061391 47.895482128425186, 24.670900190614645 47.86680012839847, 24.69388219063603 47.84916412838206, 24.716945190657526 47.83860912837221, 24.7702731907072 47.820545128355405, 24.80277319073747 47.8177731283528, 24.821109190754527 47.80840012834409, 24.863327190793854 47.75999112829899, 24.898709190826793 47.71784512825974, 24.928918190854944 47.71314512825538, 24.96124519088505 47.72083612826253, 24.99950919092069 47.72446412826591, 25.000000190921128 47.724491128265925, 25.029718190948813 47.728864128270004, 25.049436190967185 47.73332712827417, 25.08554519100082 47.744427128284514, 25.11693619103005 47.75943612829849, 25.153818191064403 47.79012712832707, 25.17513619108425 47.82332712835799, 25.224436191130167 47.87610012840713, 25.246382191150587 47.88873612841891, 25.333882191232078 47.91666412844492, 25.50166319138836 47.933327128460434, 25.525000191410072 47.93470912846172, 25.568327191450436 47.935818128462756, 25.588609191469317 47.93443612846147, 25.646109191522868 47.93359112846068, 25.78048219164802 47.93685412846372, 25.81721819168223 47.955273128480854, 25.838327191701893 47.96346412848851, 25.92221819178002 47.97470912849897, 26.03721819188712 47.98360012850725, 26.102709191948122 47.98171812850549, 26.115000191959552 47.98136412850516, 26.15860919200017 47.985254128508785, 26.193463192032652 48.00151812852394, 26.27221819210598 48.076100128593396, 26.31770019214835 48.17613612868655, 26.46888219228913 48.21749112872507, 26.507500192325097 48.21346412872134, 26.53083619234684 48.20819112871641, 26.567773192381253 48.22249112872973, 26.634991192443835 48.257164128762014, 26.704163192508275 48.26388212876827, 26.817218192613552 48.24680012875237, 26.95471819274161 48.18554512869534, 27.000554192784307 48.1555451286674, 27.158600192931488 47.98581812850932, 27.20082719297082 47.902200128431446, 27.211100192980382 47.84581812837894, 27.238327193005745 47.78525412832252, 27.28027319304482 47.69304512823666, 27.29943619306266 47.65860012820457, 27.327773193089058 47.63665412818412, 27.361191193120163 47.6169821281658, 27.433327193187353 47.56526412811763, 27.472918193224217 47.485982128043815, 27.576100193320315 47.36610012793216, 27.636309193376405 47.305954127876134, 27.679436193416564 47.293873127864885, 27.719282193453665 47.28564512785724, 27.742218193475026 47.262773127835914, 27.78540919351525 47.20331812778056, 27.798054193527037 47.152491127733214, 27.861382193585996 47.10248212768664, 27.945382193664244 47.043309127631545, 27.998718193713927 47.02777312761705, 28.03388219374665 47.01554512760569, 28.079373193789024 46.9822731275747, 28.10638219381417 46.920273127516936, 28.11582719382298 46.88777312748667, 28.1197181938266 46.8544091274556, 28.11575419382291 46.840473127442635, 28.17443619387757 46.739718127348794, 28.203882193904974 46.6986001273105, 28.228745193928148 46.67200912728575, 28.24680019394495 46.60780012722594, 28.24842719394647 46.42703612705759, 28.193600193895406 46.330273126967455, 28.138882193844438 46.190536126837316, 28.108327193815995 46.10229112675515, 28.0913821938002 46.0758271267305, 28.093445193802125 45.99175412665221, 28.10721819381496 45.966100126628305, 28.12027319382713 45.92192712658718, 28.164509193868327 45.72081812639988, 28.166800193870444 45.66819112635085, 28.15930019386346 45.62700012631248, 28.137273193842958 45.62040012630635, 28.06916319377953 45.58331812627182, 28.17443619387757 45.4720731261682, 28.211309193911916 45.450109126147765, 28.214836193915175 45.4486451261464, 28.22698219392649 45.44938212614707, 28.279227193975146 45.42894512612804, 28.285382193980894 45.39519112609662, 28.299163193993735 45.36263612606629, 28.317845194011113 45.33714512604254, 28.343327194034856 45.31553612602241, 28.375827194065124 45.30054512600847, 28.57471819425035 45.242764125954636, 28.700809194367793 45.22009112593352, 28.797600194457942 45.23794512595015, 28.84860919450543 45.30165412600948, 28.968054194616684 45.32110912602761, 29.22166319485288 45.42582712612514, 29.321527194945872 45.43901812613743, 29.411382195029546 45.43581812613445, 29.510827195122175 45.41068212611103, 29.580691195187228 45.38901812609086, 29.60333619520833 45.37693612607961, 29.64097319524339 45.34638212605114, 29.655000195256434 45.3277641260338, 29.669027195269507 45.29457312600289, 29.672218195272478 45.27220912598207, 29.664327195265145 45.211800125925805, 29.627363195230714 45.2143641259282, 29.6411091952435 45.173882125890486, 29.660273195261368 45.112764125833564, 29.64138219524375 44.98193612571174, 29.60832719521298 44.84540912558458, 29.549436195158137 44.82026412556115, 29.450827195066296 44.808882125550554, 29.390000195009634 44.80221812554436, 29.344182194966976 44.79971812554203, 29.25082719488003 44.79582712553841, 29.214163194845895 44.79305412553583, 29.067491194709277 44.82276412556348, 29.04971819469273 44.84734512558637, 29.042909194686388 44.92415412565791, 29.067500194709282 44.94748212567964, 29.103400194742733 44.963291125694354, 29.04443619468782 45.00319112573152, 28.983809194631363 45.005754125733915, 28.900000194553286 44.96666412569752, 28.869191194524603 44.940509125673145, 28.864645194520364 44.878809125615675, 28.893745194547478 44.86319112560113, 28.94735419459741 44.8266541255671, 28.92693619457839 44.77832712552211, 28.901663194554857 44.75540912550076, 28.865963194521612 44.749018125494814, 28.79582719445628 44.716382125464406, 28.78208219444349 44.69568212544513, 28.78082719444231 44.66096412541279, 28.789927194450797 44.642391125395505, 28.7997181944599 44.64020012539348, 28.84930019450607 44.64831812540103, 28.90659119455944 44.686309125436395, 28.910400194562982 44.69233612544201, 28.901873194555037 44.70650912545523, 28.93002719458127 44.70122712545029, 28.95666319460608 44.698464125447714, 28.99086319463791 44.6856451254358, 28.9709631946194 44.644018125397025, 28.948500194598466 44.63085412538476, 28.975445194623575 44.67217312542326, 28.957354194606722 44.68984512543969, 28.819673194478497 44.61695412537182, 28.796518194456922 44.63084512538475, 28.763054194425763 44.62558212537985, 28.757500194420572 44.51971812528126, 28.80813619446775 44.531436125292174, 28.927773194579174 44.61749112537231, 28.91305419456546 44.58805412534491, 28.876800194531683 44.535691125296125, 28.84527319450234 44.4972091252603, 28.828327194486548 44.479582125243866, 28.801163194461253 44.46145412522699, 28.751800194415267 44.426109125194074, 28.64430019431515 44.32770012510244, 28.629582194301463 44.29651812507339, 28.628882194300786 44.2719361250505, 28.632773194304434 44.1574911249439, 28.660273194330045 43.97554512477447, 28.647218194317873 43.9544271247548, 28.613609194286568 43.881654124687, 28.594991194269227 43.83165412464044, 28.585282194260202 43.80081812461174, 28.579436194254754 43.76137312457499, 28.583245194258296 43.74776412456231, 28.485000194166787 43.74416412455898, 28.403891194091273 43.75027312456464, 28.257773193955188 43.764436124577855, 28.23555419393449 43.77000012458302, 28.18194519388456 43.78527312459724, 28.13305419383903 43.8016541246125, 28.038463193750943 43.835409124643945, 27.9980541937133 43.8595091246664, 27.96027319367812 43.944991124746, 27.952218193670603 43.97443612477343, 27.922218193642664 44.00388212480084, 27.8604091935851 43.980818124779375, 27.83332719355988 43.969164124768525, 27.813191193541115 43.96500012476463, 27.74180019347463 43.95943612475946, 27.71680019345135 43.969227124768565, 27.69835419343417 43.99360912479128, 27.67874519341592 44.02971812482491, 27.652427193391418 44.041664124836046, 27.624791193365667 44.02818212482347, 27.475827193226934 44.01943612481534, 27.407500193163287 44.02180012481753, 27.29527319305879 44.08430012487574, 27.279300193043895 44.10388212489397, 27.27270919303777 44.1321451249203, 27.250545193017132 44.12498212491363, 27.230273192998254 44.120827124909766, 27.193600192964084 44.12331812491209, 27.16583619293823 44.12999112491829, 27.111109192887255 44.14082712492839, 27.036427192817712 44.14733612493444, 26.913400192703136 44.136127124924, 26.89020919268154 44.13199112492015, 26.840827192635544 44.11555412490486, 26.794718192592597 44.09527312488595, 26.671100192477468 44.07193612486424, 26.478609192298194 44.04942712484328, 26.43841819226077 44.04130912483569, 26.413036192237143 44.04312712483741, 26.38666319221258 44.043873124838086, 26.301936192133667 44.03081812482594, 26.136382191979465 43.982773124781176, 26.111663191956467 43.968318124767734, 26.085282191931896 43.949718124750405, 25.942773191799176 43.848473124656124, 25.884563191744945 43.79301812460446, 25.78694519165404 43.713054124530004, 25.76652719163502 43.70332712452094, 25.73530919160595 43.69460012451282, 25.681336191555687 43.690427124508915, 25.609163191488477 43.662209124482644, 25.53193619141655 43.64360012446531, 25.463854191353136 43.63920912446122, 25.432063191323522 43.62792712445071, 25.378791191273905 43.62330912444642, 25.344163191241677 43.633464124455855, 25.31444519121399 43.652218124473336, 25.268609191171294 43.675273124494794, 25.22471819113042 43.687482124506175, 25.022754190942322 43.71019112452731, 24.881382190810655 43.712218124529215, 24.793609190728915 43.71277312452972, 24.714163190654943 43.714718124531544, 24.686927190629575 43.71838212453497, 24.605827190554038 43.75151812456582, 24.562500190513674 43.75916412457295, 24.528609190482115 43.761109124574745, 24.501800190457146 43.761245124574884, 24.457773190416162 43.74471812455948, 24.438609190398296 43.73638212455171, 24.405282190367274 43.7197181245362, 24.355273190320702 43.69687312451492, 24.31970919028757 43.6966361245147))) +UKR Ukraine POLYGON ((28.214836193915175 45.4486451261464, 28.24693619394509 45.51110912620456, 28.288882193984136 45.52595412621838, 28.51582719419551 45.5149181262081, 28.53055419420923 45.53166412622372, 28.524791194203857 45.64700012633111, 28.490691194172086 45.66575412634859, 28.52443619420353 45.71110012639082, 28.597009194271124 45.768045126443866, 28.679963194348375 45.779673126454696, 28.766727194429166 45.86283612653213, 28.750482194414047 45.9263731265913, 28.763363194426034 45.96186412662436, 28.96825419461686 46.00610012666556, 29.04013619468381 46.19553612684197, 28.950000194599852 46.28942712692944, 28.933954194584913 46.42999112706033, 28.994436194641253 46.47832712710536, 29.203300194835776 46.54496412716742, 29.228327194859077 46.4847091271113, 29.202427194834968 46.38310912701667, 29.21790919484937 46.36727312700194, 29.307354194932685 46.404227127036336, 29.30540919493086 46.428245127058716, 29.350827194973164 46.46998212709758, 29.49943619511157 46.48480912711139, 29.494436195106914 46.44228212707179, 29.633609195236517 46.3697091270042, 29.73443619533043 46.44095412707054, 29.866382195453298 46.346373126982456, 29.923327195506346 46.38200012701563, 30.09847319566947 46.381236127014944, 30.12870919569761 46.40509112703714, 30.11655419568629 46.426464127057045, 30.006945195584223 46.45664512708515, 29.8994361954841 46.53520012715833, 29.916154195499672 46.55856412718009, 29.96502719554519 46.57012712719086, 29.971663195551372 46.74192712735086, 29.94430019552587 46.81825412742194, 29.867009195453903 46.86130912746202, 29.574236195181243 46.94741812754222, 29.59249119519822 47.023182127612785, 29.572218195179346 47.142773127724155, 29.59922719520449 47.27909112785113, 29.567009195174506 47.33770012790572, 29.50187319511383 47.34450012791203, 29.47853619509209 47.297209127868, 29.41395419503195 47.29110012786231, 29.358891194980686 47.378318127943544, 29.245618194875192 47.45756412801734, 29.190100194823486 47.439536128000555, 29.14290919477952 47.51179112806784, 29.135373194772512 47.54908212810258, 29.195409194828414 47.60915412815851, 29.257500194886234 47.766373128304934, 29.175554194809934 47.95470012848034, 29.144854194781345 47.98351812850717, 29.073391194714787 47.97699112850108, 29.043045194686528 47.93567312846261, 28.982627194630254 47.93691812846379, 28.882218194536733 48.005554128527706, 28.80736319446703 48.12540912863932, 28.557700194234513 48.16180012867321, 28.501945194182582 48.134164128647484, 28.43666319412179 48.14582712865834, 28.38860919407702 48.16388212867514, 28.347009194038293 48.24204512874795, 28.213054193913536 48.20651812871486, 28.086109193795295 48.24260012874845, 28.09368219380235 48.2911731287937, 28.0749271937849 48.31110012881226, 27.932218193651977 48.33749112883683, 27.866245193590544 48.40055412889558, 27.76319119349455 48.449582128941216, 27.547218193293418 48.468318128958686, 27.23943619300678 48.36832712886556, 26.808327192605276 48.333054128832714, 26.702073192506333 48.33999112883916, 26.65166319245938 48.300827128802695, 26.634991192443835 48.257164128762014, 26.567773192381253 48.22249112872973, 26.53083619234684 48.20819112871641, 26.46888219228913 48.21749112872507, 26.31770019214835 48.17613612868655, 26.27221819210598 48.076100128593396, 26.15860919200017 47.985254128508785, 25.92221819178002 47.97470912849897, 25.78048219164802 47.93685412846372, 25.333882191232078 47.91666412844492, 25.224436191130167 47.87610012840713, 25.11693619103005 47.75943612829849, 24.928918190854944 47.71314512825538, 24.898709190826793 47.71784512825974, 24.821109190754527 47.80840012834409, 24.69388219063603 47.84916412838206, 24.670900190614645 47.86680012839847, 24.67010019061391 47.895482128425186, 24.55639119050801 47.953045128478806, 24.421527190382392 47.95777312848318, 24.246945190219805 47.903882128433, 24.12750019010855 47.91200912844059, 24.032363190019964 47.955964128481526, 23.410273189440602 48.000545128523044, 23.299100189337054 48.04485412856431, 23.26069118930127 48.09012712860647, 23.174163189220707 48.108327128623415, 23.125618189175498 48.08936412860575, 23.08777318914025 48.01347312853508, 22.89610918896173 47.95389112847957, 22.85916318892734 47.99389112851682, 22.883227188949746 48.04048212856023, 22.84654518891557 48.083164128599975, 22.790273188863182 48.116654128631154, 22.625718188709925 48.10034512861597, 22.574718188662416 48.18720912869688, 22.494609188587816 48.24970012875508, 22.38097318848199 48.244854128750575, 22.270273188378894 48.359991128857786, 22.27020918837883 48.40221812889712, 22.151445188268212 48.411918128906166, 22.15979118827599 48.578254129061065, 22.32867318843327 48.68700012916233, 22.425000188522972 48.889436129350884, 22.461382188556854 48.94943612940676, 22.534854188625303 48.99485412944907, 22.56847318865661 49.08790912953572, 22.886073188952395 49.00291812945656, 22.86350018893137 49.049827129500244, 22.876518188943493 49.08741812953525, 22.778054188851797 49.150545129594065, 22.703809188782657 49.16989112961207, 22.758818188833885 49.28590012972012, 22.732791188809642 49.39720912982378, 22.656873188738928 49.529854129947324, 22.678463188759054 49.56943612998418, 22.78000018885359 49.67500013008248, 23.303609189341245 50.100827130479075, 23.591109189609 50.269154130635826, 23.684173189695684 50.333700130695945, 23.71759118972679 50.38383613074265, 23.814445189817008 50.40581813076312, 24.00221818999188 50.41443613077115, 24.111382190093536 50.56693613091318, 24.107218190089668 50.63360913097526, 24.07221819005707 50.69582713103321, 23.954382189947324 50.7917001311225, 23.9809631899721 50.829582131157764, 24.131036190111843 50.83818213116578, 24.143473190123444 50.859582131185704, 24.034300190021753 50.898254131221734, 23.96513618995735 50.950409131270305, 23.90500018990133 51.06805413137988, 23.81110918981389 51.168882131473765, 23.731936189740168 51.21471813151646, 23.683882189695396 51.288609131585275, 23.6927731897037 51.402354131691226, 23.6046361896216 51.527691131807956, 23.641073189655543 51.52350013180404, 23.613291189629678 51.60672713188154, 23.650000189663842 51.636173131908976, 23.751318189758223 51.65179113192352, 23.90159118989817 51.63415413190708, 23.93840018993245 51.59610013187165, 23.99819118998812 51.59290913186868, 24.283400190253758 51.741173132006764, 24.314582190282806 51.82402713208393, 24.394227190356958 51.88471813214045, 24.897500190825667 51.900691132155316, 25.173054191082315 51.959300132209904, 25.439991191330904 51.922218132175374, 25.818327191683267 51.93581813218805, 26.02694519187756 51.910273132164235, 26.207773192045977 51.858327132115875, 26.435545192258104 51.85617313211387, 26.457218192278276 51.812764132073426, 26.64235419245071 51.82069113208081, 26.926527192715355 51.75040913201536, 27.01930019280175 51.768118132031844, 27.170000192942098 51.764164132028185, 27.202563192972434 51.75130913201619, 27.19937319296946 51.675136131945266, 27.28256319304694 51.59819113187359, 27.416663193171843 51.59749113187294, 27.511973193260587 51.62886413190216, 27.687218193423803 51.60139113187657, 27.724473193458493 51.58165413185819, 27.681663193418643 51.4931911317758, 27.747909193480325 51.46651813175097, 27.81680019354448 51.53325413181312, 27.813891193541792 51.59220913186803, 27.832082193558733 51.60916413188383, 27.865973193590293 51.62180013189558, 27.983745193699974 51.56582713184346, 28.079027193788704 51.56443613184217, 28.138191193843795 51.58304513185951, 28.182009193884625 51.63777313191045, 28.256736193954225 51.6592911319305, 28.319445194012616 51.58915413186517, 28.433327194118675 51.56610013184371, 28.490554194171978 51.58110913185769, 28.628263194300217 51.564854131842566, 28.666527194335856 51.44665413173246, 28.757154194420252 51.4156451317036, 28.766036194428523 51.4813821317648, 28.81055419447 51.53443613181423, 29.052500194695313 51.63110013190425, 29.118054194756382 51.63693613190969, 29.181382194815342 51.6180451318921, 29.24151819487136 51.54096413182032, 29.31200919493702 51.387627131677505, 29.34221819496514 51.37318213166404, 29.675827195275843 51.499300131781496, 29.718954195316 51.49102713177379, 29.76277319535683 51.44081813172704, 29.83444519542357 51.441936131728085, 29.983327195562225 51.48638213176946, 30.179991195745373 51.49151813177426, 30.347636195901515 51.40006413168908, 30.35027319590398 51.35832713165021, 30.551418196091305 51.25184513155105, 30.567773196106543 51.2977731315938, 30.642600196176232 51.33120013162494, 30.643745196177292 51.36888213166003, 30.553891196093616 51.54193613182122, 30.565000196103938 51.64332713191564, 30.625973196160743 51.70790913197578, 30.662082196194376 51.821654132081704, 30.825000196346082 51.947491132198905, 30.958882196470768 52.00082713224859, 30.93061819644447 52.03221813227782, 30.935000196448527 52.061800132305365, 30.959663196471496 52.07934513232172, 31.29624519678498 52.08693613232879, 31.345973196831295 52.113745132353756, 31.422500196902547 52.11999113235956, 31.82527319727768 52.11138213235154, 31.900000197347254 52.09318213233459, 31.908882197355524 52.069445132312495, 32.12374519755565 52.044436132289206, 32.298118197718054 52.10915413234946, 32.33170019774931 52.16940013240557, 32.36443619777981 52.31895413254486, 32.389163197802844 52.334018132558896, 32.552491197954936 52.31999113254582, 32.73165419812182 52.261382132491235, 32.916800198294226 52.24762713247844, 33.20568219856327 52.37860013260041, 33.378600198724314 52.36500013258774, 33.51277319884929 52.32694513255231, 33.76221819908159 52.36873613259124, 33.83166319914628 52.36318213258605, 34.06290919936163 52.19610913243045, 34.099782199395975 52.14505413238291, 34.07763619937535 52.12124513236074, 34.07360919937159 52.058609132302394, 34.12915419942334 51.98610913223487, 34.3840361996607 51.84310913210169, 34.42221819969626 51.80416413206544, 34.441100199713844 51.754918132019554, 34.42610919969988 51.7283181319948, 34.10554519940135 51.67478213194494, 34.10186319939791 51.64770013191972, 34.1630451994549 51.61471813188899, 34.234645199521566 51.54415413182326, 34.239854199526434 51.43193613171877, 34.382209199659 51.26360913156199, 34.55054519981579 51.2333271315338, 34.67235419992923 51.17846413148271, 34.73499119998755 51.17249113147713, 34.827218200073446 51.17804513148232, 34.974991200211065 51.223600131524734, 35.07644520030556 51.22064513152199, 35.119009200345204 51.199264131502076, 35.11963620034578 51.15176413145784, 35.16574520038873 51.05855413137101, 35.293545200507765 51.05992713137229, 35.36882720057787 51.04212713135573, 35.370500200579414 51.02135413133638, 35.30966320052275 50.98255413130025, 35.30577320051913 50.96033613127955, 35.35779120056759 50.92858213124998, 35.46086320066357 50.76307313109584, 35.48607320068706 50.67862713101718, 35.399318200606274 50.641591130982704, 35.44105420064514 50.511973130861975, 35.5979002007912 50.37360013073311, 35.69309120087985 50.34740913070871, 35.7431912009265 50.38527313074397, 35.8580542010335 50.429718130785375, 36.00777320117294 50.43915413079415, 36.14846320130397 50.422282130778456, 36.30013620144521 50.28360013064929, 36.419991201556826 50.313882130677484, 36.47720920161012 50.30138213066584, 36.55989120168712 50.269364130636035, 36.55405420168168 50.23100013060031, 36.60846320173238 50.213045130583595, 36.65144520177239 50.21943613058954, 36.717491201833894 50.274709130641014, 36.89180020199623 50.33735413069937, 37.1305452022186 50.34832713070958, 37.245691202325816 50.37985413073895, 37.322627202397484 50.42874513078448, 37.46193620252723 50.43617313079139, 37.74610920279187 50.080482130460126, 37.92478220295828 50.024573130408044, 38.013609203041 49.934436130324116, 38.024227203050884 49.903082130294905, 38.10360920312482 49.938600130327984, 38.186863203202364 50.065545130446225, 38.30485420331226 50.07388213045397, 38.32964520333533 50.06568213044633, 38.38457320338651 49.984991130371185, 38.505682203499276 49.95207313034052, 38.652218203635755 49.958882130346865, 38.89894520386554 49.86138213025606, 38.94186320390551 49.81102713020917, 39.07283620402748 49.81992713021745, 39.18373620413078 49.88040913027379, 39.26610920420748 49.756664130158555, 39.359718204294666 49.73290913013642, 39.47027320439764 49.75721813015906, 39.587700204507 49.721382130125676, 39.65430020456901 49.60762713001975, 39.8124272047163 49.55054512996659, 39.93040920482616 49.568600129983395, 39.99846320488956 49.61235413002416, 40.042773204930825 49.61666413002817, 40.139763205021154 49.60105413001361, 40.148954205029696 49.57770012999188, 40.079300204964824 49.53069112994808, 40.05464520494186 49.47401812989531, 40.172354205051505 49.35263612978227, 40.1676362050471 49.25166412968824, 39.966382204859684 49.12388212956921, 39.93943620483458 49.0897181295374, 39.94144520483644 49.06436412951379, 39.91763620481427 49.05027312950065, 39.705409204616615 49.035964129487354, 39.69790920460963 49.01680012946949, 39.693736204605756 48.97651812943198, 39.77561820468202 48.90117312936181, 39.9500002048444 48.86749112933043, 40.02680020491593 48.8937451293549, 40.0748542049607 48.876236129338594, 40.06895420495519 48.84978212931395, 40.02138220491091 48.80873612927573, 39.808045204712215 48.8195731292858, 39.72720920463692 48.762218129232394, 39.66019120457452 48.603918129084974, 39.81485420471856 48.577636129060494, 39.84891820475028 48.55690012904117, 39.921518204817886 48.368391128865625, 39.99888220488995 48.29721812879933, 39.776227204682584 48.024018128544895, 39.81783620472132 47.97436412849865, 39.80325420470774 47.868600128400146, 39.76429120467145 47.82930012836354, 39.409573204341115 47.8317271283658, 39.353873204289215 47.852482128385134, 39.141518204091454 47.8343001283682, 39.0381732039952 47.86580012839755, 38.84596320381621 47.85680012838915, 38.789982203764055 47.778873128316576, 38.75819120373444 47.6895641282334, 38.577491203566154 47.63248212818024, 38.3538822033579 47.608673128158074, 38.3008272033085 47.55512712810821, 38.22330920323631 47.33999112790784, 38.30110020330875 47.30110012787162, 38.214709203228296 47.18762712776595, 38.235827203247965 47.109427127693124, 38.13373620315289 47.062218127649146, 38.0713822030948 47.09498212767966, 37.859709202897676 47.09692712768148, 37.75116320279659 47.07005412765645, 37.55957320261817 47.08644512767171, 37.32102720239598 46.900127127498195, 37.24728220232731 46.93290012752871, 37.196936202280426 46.92568212752198, 36.99304520209054 46.857491127458474, 36.763882201877095 46.75110012735939, 36.61360020173714 46.775273127381894, 36.39554520153408 46.717209127327834, 36.239009201388285 46.63401812725036, 36.19318220134559 46.66693612728102, 35.90720020107926 46.651091127266255, 35.76054520094269 46.59290012721206, 35.62803620081928 46.48915412711543, 35.48421820068532 46.44164512707118, 35.35221820056239 46.33165412696874, 35.19622720041713 46.15442712680371, 35.124427200350254 46.11249112676464, 34.996727200231305 46.074227126729, 34.980118200215855 46.08602712673999, 35.05464520028525 46.14165412679179, 35.20429120042462 46.184436126831656, 35.34797320055844 46.3496361269855, 35.19804520041882 46.44331812707276, 35.215682200435225 46.410264127041955, 35.20540920042566 46.38707312702036, 35.11970920034585 46.29942712693875, 35.03388220026591 46.250127126892835, 34.81248220005972 46.18137312682879, 34.70249119995728 46.17581812682363, 34.58262719984566 45.99818212665818, 34.54082719980673 45.98373612664474, 34.40519119968042 46.01273612667174, 34.44137319971409 46.0938821267473, 34.49060019975994 46.11204512676423, 34.54117319980705 46.08790912674175, 34.55970919982431 46.09762712675081, 34.57401819983764 46.1532451268026, 34.53690019980306 46.18446412683167, 34.45636319972806 46.154591126803865, 34.32942719960985 46.170273126818444, 34.15581819944816 46.281445126921994, 34.12776319942202 46.20609112685182, 34.126863199421194 46.11839112677015, 34.03249119933329 46.13332712678405, 33.95720919926319 46.21360912685881, 33.77297319909161 46.248118126890944, 33.671027198996654 46.21547312686056, 33.7295731990512 46.14500012679491, 33.78992719910741 46.12110012677266, 33.80703619912333 46.17058212681874, 33.84580919915945 46.160264126809125, 33.89999119920989 46.03860912669583, 33.9681821992734 46.017218126675914, 33.98958219929335 46.02679112668483, 33.9898451992936 46.07179112672674, 33.94421819925108 46.08800912674184, 34.005336199308005 46.097282126750486, 34.114263199409464 46.01760912667629, 34.11692719941195 45.96825412663031, 34.13943619943291 45.940127126604125, 34.20050919948977 45.95623612661913, 34.19769119948717 45.994918126655136, 34.221482199509325 46.007654126667006, 34.181400199471994 46.03317312669077, 34.358318199636756 46.01616412667494, 34.41484519968941 45.94860012661201, 34.35845419963687 45.88366412655154, 34.49742719976632 45.874782126543266, 34.5716181998354 45.92780012659264, 34.54554519981113 45.96547312662773, 34.636518199895846 45.937418126601585, 34.60318219986479 45.878809126547, 34.463391199734616 45.76929112644501, 34.64915419990763 45.78555412646017, 34.986645200221915 45.631927126317095, 35.07069120030019 45.551100126241806, 35.09359120032153 45.46394512616064, 35.013736200247166 45.42335412612283, 35.058736200289076 45.36540012606886, 35.13304520035828 45.32500012603123, 35.16707320038998 45.33665412604208, 35.3385912005497 45.28610912599501, 35.343036200553854 45.33250012603821, 35.05429120028492 45.60999112629665, 34.84870920009345 45.898109126564975, 34.666209199923486 46.08637312674031, 34.73346319998615 46.108182126760624, 34.82364520007013 46.07261812672752, 34.90220920014329 45.88348212655137, 35.053882200284534 45.653873126337515, 35.31930020053173 45.37693612607961, 35.457900200660816 45.29846412600651, 35.54553620074245 45.29305412600149, 35.69734520088383 45.32846412603445, 35.86304520103815 45.40442712610522, 35.9551272011239 45.363191126066795, 36.015136201179786 45.36026412606407, 36.06887320122982 45.42505412612442, 36.136236201292576 45.458318126155405, 36.29083620143655 45.46527312616186, 36.604573201728755 45.418600126118406, 36.636800201758746 45.37790912608051, 36.62040020174348 45.333464126039104, 36.49409120162585 45.338664126043966, 36.431100201567176 45.271100125981036, 36.40519120154306 45.155964125873794, 36.45346320158802 45.07728212580054, 36.22818220137819 45.00582712573399, 36.13442720129089 45.019845125747025, 35.856936201032454 44.98638212571586, 35.78540920096583 45.05277312577769, 35.72790920091228 45.08054512580358, 35.641927200832214 45.11138212583228, 35.52658220072479 45.118454125838866, 35.42888220063378 45.074154125797605, 35.148873200373004 44.89193612562792, 35.08298220031165 44.79123612553414, 34.96414520020096 44.83942712557902, 34.72415419997748 44.80930012555095, 34.462073199733396 44.72040012546816, 34.336509199616444 44.54909112530862, 34.13012719942424 44.43540912520274, 33.95554519926165 44.38110012515216, 33.710682199033585 44.394364125164515, 33.57858219891057 44.49186412525532, 33.53797319887275 44.48665412525045, 33.459573198799745 44.51277312527478, 33.36905419871542 44.584364125341466, 33.554436198888084 44.623600125378005, 33.519709198855736 44.781109125524694, 33.556173198889695 44.842282125581676, 33.601445198931856 44.85777312559608, 33.621227198950294 44.91749112565171, 33.546245198880456 45.108464125829556, 33.39623619874075 45.184782125900654, 33.276173198628925 45.15554512587343, 33.17540019853507 45.19012712590563, 32.9345731983108 45.34276412604777, 32.840545198223225 45.359709126063564, 32.7273451981178 45.35457312605877, 32.656718198052005 45.31262712601972, 32.56984519797112 45.319854126026456, 32.509718197915106 45.33970912604494, 32.48110019788845 45.39401812609552, 32.528745197932835 45.457482126154616, 32.93123619830769 45.657627126341026, 33.31040919866081 45.765973126441935, 33.42401819876662 45.83165412650308, 33.76940019908827 45.925300126590315, 33.6463821989737 45.97081812663271, 33.62638219895507 45.99818212665818, 33.62299119895192 46.12401812677538, 33.59352719892448 46.156236126805396, 33.525327198860964 46.1129731267651, 33.49527319883299 46.066373126721686, 33.42964519877185 46.0459641267027, 33.31581819866585 46.12442712677577, 33.18860019854736 46.160127126809016, 33.12485419848801 46.13110012678197, 32.90380019828214 46.11117312676342, 32.77443619816165 46.129991126780936, 32.500409197906436 46.076245126730896, 32.26450019768674 46.1269271267781, 32.24331819766701 46.17304512682105, 32.02720919746574 46.25638212689864, 31.91866319736465 46.28382712692422, 31.790136197244948 46.28416412692454, 31.76597319722245 46.30984512694843, 31.81500019726809 46.33957312697612, 31.942773197387112 46.34303612697934, 32.05671819749321 46.391682127024666, 32.00700019744693 46.44803612707713, 31.7723631972284 46.49359112711957, 31.65832719712219 46.47137312709887, 31.514509196988257 46.579091127199206, 31.587773197056492 46.54194512716461, 31.763745197220373 46.55332712717521, 31.85252719730306 46.522673127146646, 32.09248219752652 46.50971812713459, 32.34804519776455 46.45915412708749, 32.416100197827916 46.49777312712345, 32.41262719782469 46.5258271271496, 32.44871819785831 46.55230012717425, 32.596100197995554 46.60401812722242, 32.641618198037946 46.642282127258056, 32.39999119781291 46.56137312718269, 32.32832719774618 46.556509127178174, 32.24311819766683 46.601100127219695, 32.14186319757252 46.560264127181654, 32.01360019745306 46.634291127250606, 31.935963197380772 46.76401812737143, 31.946663197390734 46.82054512742408, 31.979718197421505 46.84512712744697, 32.0080451974479 46.904982127502706, 31.980827197422542 47.00750012759818, 31.83999119729137 47.17970912775857, 31.75151819720898 47.25235412782624, 31.726654197185837 47.23175412780705, 31.816518197269517 47.17790912775689, 31.87027319731959 47.07991812766562, 31.839373197290797 47.01290912760322, 31.907563197354307 46.923954127520375, 31.965027197407835 46.92537312752171, 31.94096319738543 46.85470912745589, 31.887909197336 46.832209127434936, 31.863818197313577 46.79548212740073, 31.907082197353873 46.73374512734324, 31.90819119735488 46.653591127268584, 31.811936197265254 46.61568212723327, 31.647073197111723 46.65332712726834, 31.614927197081784 46.64818212726354, 31.575618197045173 46.607564127225714, 31.477736196953998 46.63196412724844, 31.595691197063843 46.797082127402206, 31.419718196899964 46.625409127242335, 31.337009196822947 46.60193612722048, 31.176936196673864 46.625545127242475, 31.05305419655849 46.61192712722979, 30.832773196353344 46.54832712717055, 30.780000196304172 46.481373127108185, 30.79353619631678 46.44532712707462, 30.765136196290342 46.379009127012864, 30.509163196051958 46.096373126749626, 30.24624519580709 45.87360012654216, 30.06332719563673 45.79985412647349, 30.03013619560582 45.83130912650276, 29.983600195562474 45.843182126513824, 29.929991195512542 45.81777312649015, 29.80214519539348 45.73505412641313, 29.797427195389105 45.714918126394366, 29.859927195447312 45.67558212635774, 29.74262719533806 45.624009126309716, 29.679718195279463 45.69623612637699, 29.681382195281003 45.80359112647696, 29.63610019523884 45.82068212649287, 29.596109195201592 45.683391126365024, 29.593045195198755 45.55707312624736, 29.61916319522308 45.48776412618281, 29.674163195274303 45.46554512616214, 29.732982195329072 45.47144512616762, 29.75346319534816 45.449436126147134, 29.76040919535461 45.32220912602864, 29.731936195328103 45.226236125939266, 29.708609195306366 45.213327125927236, 29.664327195265145 45.211800125925805, 29.669027195269507 45.29457312600289, 29.60333619520833 45.37693612607961, 29.411382195029546 45.43581812613445, 29.22166319485288 45.42582712612514, 28.968054194616684 45.32110912602761, 28.84860919450543 45.30165412600948, 28.797600194457942 45.23794512595015, 28.700809194367793 45.22009112593352, 28.343327194034856 45.31553612602241, 28.299163193993735 45.36263612606629, 28.279227193975146 45.42894512612804, 28.214836193915175 45.4486451261464)) +IND India MULTIPOLYGON (((68.19780023115223 23.766682105953493, 68.28470923123317 23.939300106114246, 68.7472092316639 23.969991106142828, 68.78874523170259 24.333609106481475, 68.97740923187828 24.263609106416283, 69.59860023245682 24.28139110643285, 69.72360023257323 24.171109106330135, 70.00000023283067 24.169718106328844, 70.11711823293973 24.30312710645309, 70.55998223335217 24.43582710657668, 70.5841542333747 24.28110910643258, 70.76193623354027 24.235827106390417, 71.10498223385974 24.41930010656128, 71.00331823376507 24.465064106603904, 70.97894523374237 24.604027106733326, 71.0774272338341 24.680464106804507, 70.88248223365252 25.14916410724102, 70.67769123346181 25.40311810747754, 70.67567223345992 25.680136107735535, 70.28484523309595 25.7055541077592, 70.0885272329131 25.983191108017778, 70.17428223299297 26.24750010826392, 70.1679722329871 26.556245108551465, 69.79553623264025 26.59693610858936, 69.51130923237554 26.748745108730745, 69.58353623244278 27.17798210913051, 69.86748223270723 27.408609109345292, 70.03110023285961 27.59055410951474, 70.12387223294601 27.822500109730754, 70.366509233172 28.018745109913525, 70.58735423337768 28.00319110989905, 70.72720023350792 27.74582710965936, 70.82943623360313 27.706382109622623, 71.22581823397229 27.84582710975249, 71.89694523459733 27.961936109860616, 71.91900923461787 28.11916411000705, 72.20664523488577 28.40250011027092, 72.29026323496362 28.6728451105227, 72.38970923505624 28.785000110627152, 72.95026323557829 29.04000011086464, 73.26527223587169 29.553054111342462, 73.3974912359948 29.94277311170542, 73.93340023649392 30.13600011188538, 73.9619272365205 30.24416411198611, 73.87040923643525 30.387409112119514, 74.3074822368423 30.848882112549305, 74.69759123720564 31.059091112745065, 74.62374523713686 31.12392711280546, 74.55728223707496 31.076045112760866, 74.5226632370427 31.17508211285309, 74.63280023714529 31.462109113120405, 74.48872723701112 31.721591113362066, 74.59928223711407 31.869427113499754, 74.93573623742742 32.06186411367898, 75.25652723772617 32.09287311370785, 75.38129123784239 32.21423611382089, 75.31470923778036 32.351109113948354, 75.05762723754094 32.47512711406385, 74.71068223721781 32.480691114069046, 74.6419272371538 32.77707311434507, 74.36338223689438 32.77505411434319, 74.33179123686494 33.002354114554876, 74.0197182365743 33.184154114724194, 74.18234523672578 33.50750011502534, 74.01270023656778 33.641591115150206, 73.99121823654778 33.7454091152469, 74.29456323683027 33.97360011545942, 73.91622723647794 34.06388211554351, 74.02158223657605 34.20193611567207, 73.97637223653393 34.29804511576158, 73.85137223641752 34.31721811577944, 73.79990923636959 34.397564115854266, 73.93657223649689 34.632973116073515, 74.38081823691061 34.7826361162129, 75.66137223810321 34.50082711595044, 75.79887223823127 34.50666411595587, 76.01500023843255 34.630273116070995, 76.16511823857235 34.58686411603057, 76.45000023883767 34.76720911619853, 76.70234523907271 34.74901811618159, 76.86998223922882 34.658882116097644, 77.06275423940838 35.02082711643473, 77.04248223938947 35.09916411650768, 77.82392724011726 35.50132711688222, 77.91205424019932 35.43725411682256, 78.07180024034813 35.499027116880086, 78.02304524030268 35.28069111667675, 78.33707224059515 34.611800116053786, 78.65360024088994 34.54624511599273, 78.98535424119893 34.35000911580998, 78.97873624119273 34.19749111566793, 78.73580924096649 34.068327115547646, 78.8138632410392 33.52040911503735, 78.99477224120767 33.31770011484856, 79.37511824156189 33.099436114645286, 79.35658224154463 32.96840011452325, 79.52873624170496 32.75666411432606, 79.45276324163422 32.599018114179245, 78.97110024118564 32.3508271139481, 78.78554524101281 32.47179111406075, 78.74622724097622 32.6390181142165, 78.4059542406593 32.55610011413927, 78.47593624072448 32.243045113847714, 78.77075424099905 31.968473113591998, 78.69289124092654 31.77971811341621, 78.84248224106585 31.60750011325581, 78.71249124094481 31.502709113158218, 78.76824524099675 31.308954112977773, 78.87765424109864 31.291627112961635, 79.08081824128783 31.437291113097302, 79.22060024141803 31.325973112993623, 79.31442724150537 31.13458211281538, 79.55429124172878 30.95708211265007, 79.86303624201634 30.965827112658218, 80.25422724238064 30.733745112442065, 80.20700024233668 30.575518112294702, 80.61179124271365 30.47208211219838, 81.03012724310327 30.213327111957398, 80.37500924249315 29.740200111516756, 80.4084632425243 29.60138211138748, 80.23802724236555 29.42298211122133, 80.28776324241187 29.205554111018827, 80.06971824220881 28.949436110780297, 80.06137224220106 28.829927110669004, 80.47220924258369 28.590000110445544, 80.54136324264806 28.685273110534283, 80.93025424301027 28.445545110311016, 81.19359124325553 28.36666411023755, 81.29803624335278 28.163882110048704, 81.90105424391436 27.854927109760965, 82.04331824404687 27.918609109820267, 82.42942724440644 27.677500109595712, 82.70110024465947 27.711109109627017, 82.76651824472043 27.503473109433642, 83.17658224510228 27.447009109381057, 83.30997224522656 27.336245109277897, 83.41831824532744 27.472773109405054, 83.60775424550388 27.46916410940169, 83.85830924573719 27.352227109292784, 83.8713722457494 27.440273109374786, 84.14721824600628 27.51139110944102, 84.29776324614647 27.38832710932641, 84.63804524646338 27.311109109254488, 84.65526324647942 27.040345109002317, 84.85498224666543 26.9955451089606, 85.32804524710599 26.736109108718978, 85.63075424738793 26.865973108839924, 85.73019124748055 26.787082108766455, 85.72887224747933 26.67360910866077, 85.86047224760188 26.572845108566923, 86.03290924776246 26.663191108651077, 86.20478224792254 26.58763610858071, 86.33415424804303 26.60777310859946, 86.73338224841484 26.420200108424766, 87.00443624866728 26.534445108531173, 87.26971824891433 26.375273108382927, 87.8941542494959 26.46930010847049, 88.02019124961328 26.368364108376497, 88.19455424977565 26.760418108741618, 88.11859124970493 26.98443610895025, 87.99498224958978 27.112291109069332, 88.05692724964746 27.53333610946146, 88.18733624976892 27.78263610969364, 88.1381182497231 27.94937310984892, 88.39082724995848 27.983609109880803, 88.62435425017594 28.116800110004846, 88.83575425037282 28.00805410990357, 88.88109125041507 27.839582109746672, 88.76463625030658 27.542427109469926, 88.79970925033928 27.41638210935254, 88.91746325044892 27.317382109260336, 88.75193625029476 27.14860910910315, 89.12608225064321 26.82360910880047, 89.36720025086777 26.859436108833833, 89.76985425124275 26.70360910868871, 90.14901825159592 26.75541810873696, 90.21693625165915 26.850827108825825, 90.38873625181913 26.903464108874843, 90.70860025211704 26.772500108752865, 91.30734525267468 26.77805410875804, 91.41727225277702 26.871245108844832, 91.54282725289397 26.805273108783396, 92.03123625334882 26.85193610882685, 92.11317225342515 26.93027310889981, 92.01527225333399 27.168054109121258, 92.11421825342615 27.293054109237673, 91.99366325331385 27.475582109407668, 91.77082725310635 27.431664109366764, 91.67581825301784 27.48708210941838, 91.60025425294748 27.615409109537893, 91.65776325300101 27.76471810967695, 91.97831825329956 27.728609109643315, 92.26553625356706 27.868400109773503, 92.33110025362811 27.79471810970489, 92.5449822538273 27.861936109767484, 92.7195722539899 27.97902710987654, 92.71044525398139 28.14190011002823, 93.04570925429363 28.31026411018503, 93.22205425445787 28.31930011019344, 93.21553625445182 28.418318110285654, 93.35193625457885 28.61876411047234, 93.50206325471868 28.67916411052859, 93.96172725514674 28.669200110519313, 94.02110025520204 28.836027110674678, 94.23455425540084 29.073482110895824, 94.4277542555808 29.215509111028098, 94.58120025572367 29.23152711104302, 94.64750925578545 29.333464111137957, 94.86408225598711 29.174991110990362, 95.38777225647488 29.035273110860246, 95.62469125669548 29.255000111064874, 96.08314525712245 29.46443611125993, 96.23318225726223 29.255973111065785, 96.39172725740985 29.257564111067268, 96.14888225718369 29.05971811088301, 96.17532725720832 28.901382110735554, 96.47082725748356 29.056664110880163, 96.61372725761663 28.795691110637122, 96.34027225736196 28.525000110385008, 96.40192725741935 28.351109110223064, 96.65387225765403 28.46749111033145, 96.98470925796215 28.33250011020573, 97.12818225809576 28.38193611025177, 97.3488722583013 28.222773110103546, 97.36110025831266 27.940827109840967, 96.88638225787054 27.599854109523406, 96.9035912578866 27.457427109390764, 97.15900925812446 27.128054109084005, 97.13540925810247 27.087218109045978, 96.88206325786655 27.18277310913497, 96.82151825781017 27.321527109264196, 96.72589125772106 27.36569110930533, 96.19122725722315 27.269864109216073, 95.60612725667823 26.82308210879998, 95.50749125658638 26.812909108790507, 95.44540025652856 26.712354108696857, 95.14498225624874 26.616173108607285, 95.06589125617506 26.475482108476257, 95.06672725617585 26.311664108323683, 95.16498225626736 26.0368091080677, 94.88527225600689 25.578609107640972, 94.62859125576784 25.401873107476376, 94.57847225572112 25.2091641072969, 94.72137225585425 25.14000010723248, 94.73518225586707 25.032009107131913, 94.31387225547473 24.285827106436983, 94.14776325532 23.851527106032506, 93.6896822548934 24.015273106185006, 93.50011825471682 23.96235410613572, 93.40757225463068 24.074536106240203, 93.3375182545654 24.071836106237683, 93.42276325464479 23.662491105856446, 93.3878362546123 23.231454105455015, 93.30546325453554 23.01763610525589, 93.13957225438105 23.04708210528331, 93.09275425433748 22.7144361049735, 93.19789125443538 22.264718104554674, 93.155582254396 22.187845104483074, 93.04699125429482 22.204509104498598, 92.92442725418067 22.005000104312785, 92.70632725397758 22.154509104452032, 92.6758912539492 22.02513610433155, 92.60081825387931 21.982218104291576, 92.510272253795 22.726454104984697, 92.37553625366951 22.938882105182543, 92.38718225368035 23.285682105505515, 92.27804525357868 23.710827105901473, 92.17485425348258 23.73681810592568, 92.03282725335032 23.645973105841065, 91.95860025328119 23.72777310591725, 91.96630925328839 23.50557310571031, 91.77012725310567 23.279164105499447, 91.81817225315041 23.090273105323533, 91.61150925295794 22.94458210518785, 91.42609125278528 23.261945105483406, 91.3994272527604 23.06979110530446, 91.34429125270907 23.098191105330912, 91.16192725253921 23.631527105827615, 91.23707225260921 23.90208210607959, 91.3819822527442 24.105136106268702, 91.88257225321041 24.15155410631192, 91.92120025324635 24.32746410647576, 92.1172002534289 24.39000010653399, 92.24838225355109 24.894582107003927, 92.49162725377761 24.87750910698803, 92.40887225370057 25.0255541071259, 92.03888225335595 25.187491107276713, 90.41249125184129 25.148882107240766, 89.85053625131792 25.28895410737121, 89.80803625127834 25.82242710786805, 89.84901825131652 25.90616410794604, 89.73393625120934 26.156318108179008, 89.6017182510862 26.227473108245277, 89.54821825103636 26.01562710804798, 89.31990925082374 26.02482710805654, 89.13497225065151 26.153709108176585, 89.07073625059166 26.38532710839229, 88.94669125047614 26.44268210844571, 88.92336325045443 26.357609108366475, 89.04400925056677 26.27460910828917, 88.85714525039276 26.240136108257076, 88.43032724999523 26.554300108549654, 88.41307224997917 26.626136108616564, 88.335591249907 26.483000108483253, 88.4816822500431 26.460254108462067, 88.52306325008163 26.367318108375514, 88.1828912497648 26.150554108173637, 88.11053624969742 25.83555410788027, 88.16338224974663 25.780064107828593, 88.27373624984938 25.806245107852973, 88.55663625011289 25.50471810757216, 88.79970925033928 25.51055410757759, 88.8429002503795 25.364718107441774, 89.00866325053386 25.290273107372442, 88.93304525046341 25.16443610725524, 88.45422725001748 25.18840010727756, 88.3972182499644 24.939718107045962, 88.33887224991008 24.86874510697986, 88.22006324979941 24.950982107056447, 88.14110024972587 24.916418107024256, 88.16679124974979 24.848327106960852, 88.04387224963534 24.68520010680892, 88.13040024971593 24.506527106642523, 88.50720925006686 24.318191106467125, 88.70190925024815 24.306182106455935, 88.75172725029455 24.216436106372356, 88.70040925024676 24.14846410630905, 88.73470925027874 23.91812710609453, 88.60180025015495 23.858491106038983, 88.56596325012157 23.646664105841708, 88.78633625032683 23.49284510569845, 88.72713625027166 23.247082105469573, 88.9828002505098 23.20613610543144, 88.8748362504092 23.092218105325344, 88.86310925039828 22.968254105209894, 88.92929125045993 22.869436105117856, 88.99331825051956 22.324436104610285, 89.09408225061338 22.143327104441624, 89.00555425053096 21.90360910421836, 89.08436325060438 21.625200103959074, 88.85248225038839 21.62888210396251, 88.71200925025755 21.562291103900492, 88.69663625024327 21.842973104161885, 88.76561825030751 22.00516410431294, 88.71304525025852 22.06194510436582, 88.68449125023193 21.93311810424585, 88.624418250176 21.96166410427243, 88.67678225022479 22.19714510449174, 88.55776325011391 21.8186091041392, 88.62802725017934 21.752500104077626, 88.57221825012738 21.560000103898346, 88.48318225004448 21.553891103892667, 88.50026325006036 21.948045104259748, 88.45040025001396 21.611382103946212, 88.30633624987979 21.610591103945467, 88.29547224986965 21.776591104100063, 88.26120924983775 21.796918104119, 88.3045272498781 21.567145103905005, 88.25749124983429 21.548745103887867, 88.1436002497282 21.958291104269293, 88.19925424978004 22.151909104449615, 88.00749124960146 22.235273104527252, 87.906100249507 22.420409104699672, 87.98193624957764 22.22304510451586, 88.13045424971597 22.178218104474112, 88.16651824974957 22.089718104391693, 87.79637224940484 21.698882104027703, 87.20720924885615 21.549300103888385, 86.96331824862898 21.381936103732514, 86.82804524850297 21.152500103518832, 86.9619362486277 20.81708210320646, 86.89137224856199 20.75944510315277, 87.02555424868694 20.674827103073966, 86.75582724843576 20.49138210290313, 86.71761824840013 20.39277310281129, 86.80213624847886 20.43422710284989, 86.80165424847843 20.38389110280302, 86.48782724818614 20.177082102610413, 86.42122724812413 19.984927102431456, 86.19636324791469 20.075000102515332, 86.35525424806269 19.96582710241367, 85.45138224722086 19.660273102129096, 85.57500924733603 19.835482102292275, 85.43488224720551 19.887009102340258, 85.23882724702293 19.7406001022039, 85.1251912469171 19.507282101986604, 85.24944524703284 19.6495361021191, 85.38035424715474 19.67642710214413, 85.38249124715674 19.612500102084596, 85.29277224707317 19.59742710207057, 85.32981824710765 19.57116410204611, 84.79026324660515 19.11763610162373, 84.72658224654583 19.124000101629647, 84.75999124657699 19.06138210157134, 84.67637224649911 18.941936101460087, 84.1158822459771 18.302082100864183, 83.58123624547915 18.01527310059707, 83.2341452451559 17.59249110020332, 82.6149912445793 17.291109099922636, 82.36207224434372 17.098327099743102, 82.24838224423786 16.911936099569502, 82.3694542443506 16.869300099529795, 82.30170024428753 16.583054099263208, 81.72726324375253 16.310827099009686, 81.32101824337417 16.367082099062074, 81.01333624308762 15.783436098518507, 80.90163624298361 15.863327098592919, 80.90803624298957 15.977773098699501, 80.88261824296586 16.011945098731317, 80.82527224291249 15.751945098489173, 80.77707224286758 15.878054098606626, 80.6847092427816 15.90000009862706, 80.27943624240413 15.699164098440022, 80.0938822422313 15.31569109808288, 80.04908224218957 15.055554097840613, 80.19497224232549 14.555827097375214, 80.1260822422613 14.200273097044075, 80.30914524243178 13.438054096334199, 80.15248224228588 13.718054096594969, 80.04942724218989 13.620554096504165, 80.1188542422546 13.499727096391638, 80.2613822423873 13.465273096359553, 80.34873624246865 13.342636096245329, 80.16026324229313 12.473054095435472, 79.86553624201866 12.028327095021297, 79.76430024192439 11.656245094674759, 79.85331824200728 11.145691094199265, 79.85810924201172 10.285827093398467, 79.32435424151464 10.27992709339297, 79.24192724143785 10.183054093302744, 79.25000024144538 10.017218093148301, 78.94330924115974 9.598327092758183, 78.90900924112782 9.47389109264229, 79.0091542412211 9.331664092509826, 79.33166324152143 9.264164092446961, 79.44622724162815 9.15992709234989, 79.29443624148678 9.246664092430663, 78.96790024118269 9.273327092455503, 78.40999124066309 9.096945092291222, 78.19247224046052 8.904164092111685, 78.06206324033906 8.366245091610708, 77.53610023984919 8.071945091336616, 77.2991452396285 8.133054091393532, 76.9986002393486 8.365273091609808, 76.57581823895487 8.87694509208633, 76.66373623903672 9.003818092204497, 76.53414523891604 8.965000092168339, 76.38026323877273 9.28139109246301, 76.24441823864623 9.96120909309613, 76.35693623875102 9.776664092924264, 76.35290023874728 9.526391092691185, 76.49887223888322 9.53041809269493, 76.21172723861577 10.128500093251944, 76.23707223863937 9.984164093117514, 76.20430023860888 10.035418093165248, 75.71775423815572 11.365273094403776, 75.52859123797955 11.700273094715769, 75.27440923774284 12.00777309500215, 75.19387223766782 12.010136095004341, 74.85525423735245 12.755000095698051, 74.61913623713255 13.832500096701551, 74.37526323690545 14.448327097275097, 74.41192723693959 14.483327097307694, 74.34754523687963 14.562982097381877, 74.3031722368383 14.52041809734223, 74.24720923678618 14.7223540975303, 74.0979722366472 14.787464097590941, 73.90581823646824 15.301391098069573, 73.78860023635906 15.398991098160465, 73.94950023650892 15.398545098160056, 73.79372723636385 15.44986409820784, 73.69720923627395 15.721936098461228, 73.44748223604137 16.05860909877478, 73.32610023592832 16.485827099172667, 73.27470023588046 17.081936099727827, 72.85386323548852 18.66055410119803, 72.8598362354941 18.796391101324545, 72.92706323555669 18.820554101347042, 72.98749123561296 18.727773101260638, 72.9119272355426 18.917500101437327, 73.05418223567509 19.004718101518563, 72.96970923559641 19.078882101587638, 72.82304523545983 18.912491101432664, 72.77321823541342 18.945936101463815, 72.82401823546073 19.04540910155646, 72.77901823541882 19.31055410180339, 73.04262723566433 19.211045101710724, 72.96138223558867 19.309854101802742, 72.75374523539529 19.37277310186134, 72.66415423531186 19.870827102325194, 72.93441823556356 20.774718103167004, 72.84749123548258 20.84290910323051, 72.80622723544417 21.125691103493878, 72.61297223526418 21.106736103476223, 72.71457223535879 21.201518103564496, 72.61552723526657 21.252427103611907, 72.56484523521937 21.375064103726118, 72.74973623539154 21.464127103809062, 72.59200023524465 21.418018103766116, 72.81769123545484 21.63416410396742, 72.9013822355328 21.643745103976343, 73.12712723574302 21.757845104082605, 72.93664523556563 21.68166410401166, 72.54602723520182 21.663882103995107, 72.56637223522077 21.845973104164685, 72.7226272353663 21.990127104298935, 72.53893623519522 21.91075410422502, 72.50165423516052 21.974927104284788, 72.5806822352341 22.198327104492847, 72.75102723539274 22.166800104463476, 72.81310923545058 22.23624510452815, 72.91658223554694 22.219509104512568, 72.91477223554526 22.271109104560622, 72.5838822352371 22.285827104574338, 72.46831823512946 22.228054104520524, 72.3758092350433 22.29916410458675, 72.15519123483784 22.28124510457006, 72.30004523497274 22.22714510451968, 72.32540923499636 22.151527104449258, 72.26527223494037 22.016109104323135, 72.03890023472954 21.939018104251346, 72.14707223483026 21.92714510424028, 72.16318223484527 21.83735410415666, 71.99830923469173 21.853882104172058, 72.02249123471424 21.773327104097035, 72.16658223484845 21.788400104111062, 72.28915423496261 21.610827103945695, 72.10359123478977 21.307082103662808, 72.10810023479397 21.20409110356688, 71.44165423417331 20.874436103259868, 70.82512723359912 20.695964103093658, 70.5227632333175 20.81389110320349, 70.0608092328873 21.144436103511325, 68.94595423184902 22.289300104577563, 69.07138223196583 22.480754104755874, 69.22039123210459 22.273954104563273, 70.03851823286652 22.556591104826495, 70.16998223298896 22.55082710482114, 70.3674822331729 22.888609105135714, 70.50304523329916 22.974645105215842, 70.50971823330536 23.098191105330912, 70.41442723321663 23.089027105322373, 70.39387223319747 22.940064105183637, 70.22720023304225 22.95750010519987, 69.8416542326832 22.856391105105715, 69.7102632325608 22.7427731049999, 69.21581823210033 22.840273105090702, 68.65900923158176 23.148264105377535, 68.43304523137132 23.43000010563992, 68.40852723134847 23.608118105805815, 68.74136323165845 23.844164106025644, 68.44984523138697 23.728191105917645, 68.32957223127494 23.584927105784217, 68.14422723110235 23.609091105806712, 68.19780023115223 23.766682105953493)), ((92.87441825413413 12.30666409528051, 92.82950925409227 12.318645095291672, 92.79123625405663 12.319209095292194, 92.7588822540265 12.305000095278956, 92.71804525398846 12.34110909531259, 92.73637225400557 12.80971809574902, 92.91825425417494 12.913264095845449, 92.99165425424331 12.525000095483847, 92.93400925418962 12.415827095382184, 92.8487272541102 12.428054095393563, 92.87441825413413 12.30666409528051)), ((92.88573625414466 12.898454095831653, 92.81080925407485 12.920827095852502, 92.84068225410272 13.327500096231233, 92.94386325419879 13.543054096431987, 93.04498225429296 13.570136096457205, 93.04525425429324 13.065554095987281, 92.93011825418597 13.064027095985864, 92.88573625414466 12.898454095831653)), ((92.75405425402204 12.067882095058124, 92.79581825406092 11.901945094903581, 92.71651825398709 11.491800094521608, 92.525327253809 11.855418094860255, 92.62469125390152 11.943327094942134, 92.70984525398086 12.234300095213115, 92.75405425402204 12.067882095058124)), ((93.86804525505949 7.182300090508079, 93.9296912551169 6.9491640902909495, 93.82706325502136 6.745827090101585, 93.64360025485047 7.118609090448757, 93.79498225499145 7.233473090555734, 93.86804525505949 7.182300090508079)), ((92.56047225384174 10.776973093855872, 92.50749125379241 10.531391093627164, 92.35929125365436 10.542636093637626, 92.35693625365218 10.789864093867877, 92.4980362537836 10.900836093971236, 92.56047225384174 10.776973093855872)), ((92.75427225402223 12.07133609506134, 92.75527225402317 12.279800095255496, 92.87637225413596 12.30194509527611, 92.86110025412171 12.162218095145988, 92.75427225402223 12.07133609506134)), ((88.14634524973076 21.86555410418292, 88.13234524971773 21.620554103954746, 88.06498224965497 21.629718103963285, 88.05303624964387 21.72082710404814, 88.14634524973076 21.86555410418292)), ((93.39144525461563 8.011718091280528, 93.45027225467044 7.929164091203646, 93.45360025467352 7.868954091147572, 93.30900925453886 7.925418091200157, 93.31595425454532 7.99541809126535, 93.39144525461563 8.011718091280528)), ((93.53407225474848 8.208827091464101, 93.5347722547491 8.037636091304663, 93.48324525470116 7.990691091260942, 93.44712725466752 8.162364091420827, 93.53407225474848 8.208827091464101)), ((93.69554525489883 7.410282090720401, 93.72727225492838 7.324027090640072, 93.6204002548289 7.249718090570866, 93.61761825482625 7.367082090680171, 93.69554525489883 7.410282090720401)), ((92.62664525390335 11.353609094392908, 92.59630925387512 11.373882094411798, 92.64020025391596 11.512218094540628, 92.70262725397413 11.383609094420848, 92.62664525390335 11.353609094392908)), ((92.7866542540524 9.238609092423161, 92.80830925407253 9.149864092340508, 92.73137225400092 9.12735409231955, 92.71277225398359 9.210273092396775, 92.7866542540524 9.238609092423161)), ((73.08193623570094 8.303054091551857, 73.06580923568592 8.263054091514604, 73.03102723565351 8.247500091500115, 73.02040923564363 8.262427091514027, 73.08193623570094 8.303054091551857)), ((72.1988632348785 10.86360909393656, 72.17998223486092 10.817500093893614, 72.17080923485238 10.8124270938889, 72.18054523486146 10.848054093922073, 72.1988632348785 10.86360909393656)), ((72.77692723541688 11.185554094236394, 72.77117223541151 11.192427094242802, 72.78844523542759 11.251245094297573, 72.77831823541817 11.188891094239509, 72.77692723541688 11.185554094236394)), ((73.64665423622688 10.084718093211166, 73.64526323622559 10.068609093196159, 73.63603623621697 10.053118093181737, 73.64269123622319 10.096800093222413, 73.64665423622688 10.084718093211166)), ((72.64999123529864 10.566945093660266, 72.63332723528313 10.550682093645122, 72.6262912352766 10.551109093645522, 72.65207223530058 10.573536093666405, 72.64999123529864 10.566945093660266))) +MDV Maldives MULTIPOLYGON (((73.09915423571698 -0.6027819167423445, 73.10941823572654 -0.6199999167583883, 73.11520023573192 -0.6416639167785547, 73.08942723570792 -0.6034729167429873, 73.09060923570902 -0.5853459167261121, 73.10192723571956 -0.5843089167251492, 73.09915423571698 -0.6027819167423445)), ((73.16331823577673 6.774445090128225, 73.15720923577103 6.757500090112444, 73.15138223576562 6.744718090100548, 73.14387223575861 6.7338910900904665, 73.13126323574687 6.731073090087833, 73.16206323577555 6.782154090135407, 73.16331823577673 6.774445090128225)), ((73.35442723595472 2.437218086088876, 73.36360023596325 2.4230540860756804, 73.36872723596804 2.4076360860613164, 73.36525423596478 2.384164086039462, 73.35068223595121 2.4380540860896502, 73.35442723595472 2.437218086088876)), ((72.95721823558478 4.438327087952558, 72.96179123558903 4.428745087943625, 72.95623623558387 4.419309087934835, 72.94254523557112 4.425900087940974, 72.94984523557792 4.43971808795385, 72.95721823558478 4.438327087952558)), ((73.55331823613994 1.9325000856188126, 73.55415423614073 1.9197180856069167, 73.55053623613736 1.8981910855868591, 73.54192723612934 1.891245085580394, 73.55150923613826 1.936664085622695, 73.55331823613994 1.9325000856188126)), ((73.62970023621108 5.418609088865509, 73.63727223621814 5.40944508885697, 73.63248223621366 5.387636088836658, 73.63039123621172 5.403609088851539, 73.62227223620417 5.41833608886526, 73.62970023621108 5.418609088865509)), ((73.43525423602998 -0.2836089164450897, 73.4424722360367 -0.2863179164476151, 73.44601823604 -0.3049999164650217, 73.42977223602489 -0.2858999164472351, 73.43525423602998 -0.2836089164450897)), ((73.39305423599069 5.737773089162758, 73.39234523599004 5.726809089152539, 73.38074523597922 5.7092360891361835, 73.38936323598725 5.740554089165343, 73.39305423599069 5.737773089162758)), ((73.49748223608793 4.17833608771042, 73.50575423609564 4.176600087708806, 73.50499123609492 4.16500008769799, 73.49191823608277 4.169236087701947, 73.49748223608793 4.17833608771042)), ((72.97804523560418 3.1102820867157135, 72.98275423560855 3.1108360867162332, 72.98498223561063 3.108336086713905, 72.98498223561063 3.104445086710271, 72.98220923560805 3.101945086707943, 72.97804523560418 3.101664086707686, 72.97499123560132 3.10250008670846, 72.97276323559925 3.104718086710534, 72.97387223560028 3.1080540867136364, 72.97804523560418 3.1102820867157135)), ((73.09553623571361 0.2280540840314274, 73.10123623571891 0.2291640840324618, 73.10679123572407 0.214164084018492, 73.09574523571379 0.2211090840249597, 73.09553623571361 0.2280540840314274)), ((73.58360023616814 3.374445086961728, 73.58692723617125 3.376391086963551, 73.59081823617487 3.3769450869640565, 73.59137223617537 3.37277308696018, 73.5872002361715 3.367782086955529, 73.58388223616842 3.3663910869542377, 73.58137223616606 3.3680540869557802, 73.58166323616635 3.3722180869596627, 73.58360023616814 3.374445086961728)), ((72.97942723560547 4.8955540883783755, 72.96818223559498 4.878336088362346, 72.9758182356021 4.900000088382512, 72.97942723560547 4.8955540883783755)), ((72.97998223560597 7.027773090364164, 72.98271823560853 7.012982090350391, 72.9742182356006 7.027573090363973, 72.97998223560597 7.027773090364164)), ((72.87025423550378 2.9691640865842857, 72.8723092355057 2.9585450865744036, 72.8633912354974 2.9666000865819058, 72.87025423550378 2.9691640865842857)), ((73.04914523567041 6.441664089818303, 73.04397223566559 6.431073089808436, 73.04310923566479 6.4438180898203115, 73.04914523567041 6.441664089818303)), ((72.93192723556123 5.969164089378253, 72.92983623555929 5.956809089366743, 72.9278272355574 5.971454089380387, 72.93192723556123 5.969164089378253)), ((73.51360923610295 0.3877820841801878, 73.51012723609972 0.3804820841733942, 73.50797223609771 0.3904180841826417, 73.51360923610295 0.3877820841801878)), ((73.58610923617047 2.9616640865773007, 73.57762723616258 2.9510090865673817, 73.58540023616982 2.9656270865809944, 73.58610923617047 2.9616640865773007))) +OMN Oman MULTIPOLYGON (((55.42220021925402 21.267509103625954, 55.66610921948117 21.999718104307874, 55.19916321904631 22.6997181049598, 55.217773219063645 22.800554105053706, 55.218609219064405 22.820554105072333, 55.21721821906311 22.851664105101307, 55.2133362190595 22.894164105140888, 55.21221821905846 22.9183271051634, 55.21416321906028 23.014027105252524, 55.24207321908628 23.11680910534824, 55.26749121910993 23.157773105386397, 55.296391219136865 23.201382105427015, 55.32360921916219 23.243891105466602, 55.3438912191811 23.2818001055019, 55.361382219197395 23.326109105543168, 55.421945219253786 23.507218105711843, 55.485836219313285 23.64166410583705, 55.56256321938474 23.768536105955206, 55.556382219379 23.885764106064386, 55.53819121936206 23.905000106082298, 55.51027321933606 23.972773106145425, 55.63790921945491 24.027909106196773, 55.68027321949438 24.03110910619975, 55.80138221960718 24.0200001061894, 55.87527321967599 24.03500010620337, 56.00708221979875 24.068609106234675, 56.023673219814185 24.083191106248265, 55.94860921974427 24.232573106387377, 55.91860921971633 24.23666410639119, 55.892082219691645 24.227427106382592, 55.86250021966407 24.21402710637011, 55.77895421958627 24.243645106397693, 55.81360921961854 24.31694510646595, 55.82000021962449 24.416664106558827, 55.79777321960381 24.476945106614963, 55.78138221958855 24.565418106697365, 55.8124912196175 24.596109106725947, 55.84360921964648 24.64971810677588, 55.82000021962449 24.701664106824254, 55.813891219618824 24.729718106850385, 55.803809219609434 24.860064106971777, 55.814027219618936 24.885827106995777, 55.84555421964831 24.920273107027853, 55.86639121966772 24.94221810704829, 55.88874521968853 24.959582107064463, 55.922218219719696 24.976527107080244, 55.94527321974118 24.982500107085798, 55.97657321977033 24.981991107085335, 56.00013621979227 24.97708210708076, 56.02277321981336 24.965827107070282, 56.03471821982447 24.94639110705218, 56.050827219839476 24.866109106977405, 56.028609219818776 24.8812451069915, 55.998745219790976 24.890273106999913, 55.981136219774584 24.871736106982652, 56.064436219852155 24.74423610686391, 56.0769452198638 24.738054106858144, 56.10416321988916 24.73471810685504, 56.14374521992602 24.74110910686099, 56.17971821995951 24.78166410689876, 56.18876321996794 24.825000106939115, 56.22610922000271 24.833609106947137, 56.269436220043076 24.849509106961946, 56.28047322005335 24.857273106969174, 56.28708222005952 24.870136106981164, 56.303327220074635 24.882500106992666, 56.33214522010147 24.895136107004447, 56.34013622010892 24.914027107022036, 56.33916322010802 24.926109107033284, 56.334645220103795 24.96180910706653, 56.33900922010787 24.96944510707364, 56.35214522012009 24.976527107080244, 56.373527220140005 24.9793821070829, 56.375827220142156 24.964445107068983, 56.41389122017762 24.86832710697948, 56.49958222025742 24.682773106806664, 56.52583622028186 24.630554106758026, 56.546109220300735 24.5958361067257, 56.603609220354286 24.50166410663799, 56.61978222036936 24.477564106615546, 56.65360922040085 24.448609106588577, 56.67832722042388 24.431664106572796, 56.71471822045777 24.40110910654434, 56.7972182205346 24.30889110645846, 56.81402722055026 24.286109106437237, 56.82978222056494 24.242564106396685, 56.867218220599796 24.189300106347076, 56.9074912206373 24.14055410630168, 56.98971822071388 24.07082710623675, 57.058327220777784 24.015273106185006, 57.11305422082876 23.9736091061462, 57.17131822088302 23.934436106109715, 57.535273221221985 23.824445106007275, 57.83582722150189 23.73805410592682, 57.868327221532155 23.724445105914143, 57.89416322155623 23.717082105907295, 57.93027322158986 23.71250010590302, 57.943327221602004 23.71277310590328, 57.9911092216465 23.720554105910523, 58.02221822167547 23.724445105914143, 58.07860922172799 23.720273105910266, 58.10027322174818 23.71721810590742, 58.14971822179422 23.703609105894742, 58.173336221816214 23.696109105887757, 58.20693622184751 23.682782105875347, 58.24762722188541 23.656754105851107, 58.26610922190261 23.636391105832146, 58.295963221930435 23.623609105820236, 58.34138222197274 23.615973105813126, 58.40458222203159 23.61639110581352, 58.439436222064046 23.619164105816097, 58.48034522210213 23.631873105827935, 58.495273222116055 23.65152710584624, 58.57721822219236 23.645000105840154, 58.60930022222223 23.632773105828775, 58.792500222392846 23.473891105680806, 58.86832722246348 23.361945105576538, 58.92735422251846 23.31910010553665, 59.00076322258681 23.20006410542578, 59.00916322259465 23.16040910538885, 59.01763622260253 23.142082105371784, 59.03277322261664 23.11860910534992, 59.090691222670586 23.041245105277866, 59.11888222269684 23.016527105254852, 59.16819122274276 22.992082105232086, 59.18749122276071 22.978336105219284, 59.22487322279554 22.946854105189956, 59.28124522284804 22.822918105074535, 59.291518222857604 22.80236410505539, 59.31082722287559 22.777773105032495, 59.39777322295657 22.680554104941947, 59.44416322299978 22.63971810490392, 59.4863822230391 22.609445104875718, 59.53388222308334 22.57638210484494, 59.57416322312085 22.56860910483769, 59.65027322319173 22.5672181048364, 59.80172722333276 22.536873104808137, 59.83250022336142 22.488891104763454, 59.847082223375025 22.430000104708597, 59.831663223360664 22.312218104598912, 59.8286092233578 22.291664104579766, 59.80916322333971 22.22332710451613, 59.772082223305176 22.166800104463476, 59.71763622325446 22.100691104401918, 59.65096322319238 21.933054104245784, 59.584718223130665 21.878891104195347, 59.54055422308954 21.809718104130923, 59.51471822306547 21.78416410410712, 59.4997182230515 21.767354104091467, 59.488191223040786 21.745691104071298, 59.47444522302797 21.68221810401218, 59.45777322301245 21.629445103963022, 59.34430022290675 21.442009103788465, 59.30499122287014 21.421109103769, 59.2744362228417 21.41027310375891, 59.20471822277676 21.376391103727357, 59.17395422274811 21.360273103712345, 59.08777322266786 21.296945103653357, 58.91624522250811 21.13680910350422, 58.853336222449514 21.059445103432168, 58.8372182224345 21.03944510341354, 58.80416322240373 20.992218103369567, 58.710827222316794 20.847218103234525, 58.72277322232793 20.78555410317709, 58.72763622233245 20.76027310315355, 58.708000222314155 20.74155410313611, 58.656109222265826 20.700836103098197, 58.59846322221216 20.65458210305512, 58.58180022219662 20.617082103020195, 58.56610922218201 20.55527310296263, 58.52069122213973 20.419509102836187, 58.45197322207571 20.358536102779397, 58.4175002220436 20.355273102776366, 58.27700922191278 20.369718102789818, 58.30221822193624 20.38166410280094, 58.2681182219045 20.37874510279822, 58.211518221851776 20.39721810281543, 58.19937322184046 20.41868210283542, 58.21430022185436 20.459164102873117, 58.23055422186951 20.48471810289692, 58.26639122190289 20.571391102977643, 58.26346322190017 20.592773102997555, 58.240554221878824 20.610418103013984, 58.213745221853856 20.61277310301618, 58.120827221767314 20.579164102984876, 58.08492722173389 20.557154102964375, 58.067773221717914 20.49916410291037, 58.047218221698756 20.464718102878294, 57.95277322161081 20.385827102804825, 57.85401822151883 20.257218102685044, 57.82819122149479 20.21624510264688, 57.82250022148946 20.195418102627485, 57.823191221490134 20.174582102608085, 57.84040922150615 20.144309102579882, 57.83971822150551 20.09458210253358, 57.81277322148043 19.97319110242053, 57.772909221443285 19.856664102311996, 57.73444522140747 19.803336102262335, 57.69103622136703 19.742709102205865, 57.687636221363874 19.708327102173854, 57.69250022136839 19.684718102151862, 57.74528222141757 19.472773101954473, 57.768054221438774 19.42236410190752, 57.77389122144422 19.390554101877896, 57.7705452214411 19.36166410185099, 57.76027322143153 19.331527101822928, 57.742909221415346 19.29450910178845, 57.75193622142376 19.250827101747774, 57.80166322147008 19.12444510163006, 57.83971822150551 19.028264101540486, 57.805691221473836 18.970973101487132, 57.714227221388626 18.940973101459193, 57.663327221341234 18.938054101456473, 57.59860922128095 18.943336101461398, 57.524300221211746 18.952500101469923, 57.49082722118058 18.950273101467857, 57.339718221039846 18.930000101448968, 57.293054220996396 18.92360910144302, 57.16555422087765 18.895273101416635, 57.13888222085282 18.888882101410687, 57.04055422076124 18.85832710138223, 56.929445220657755 18.812500101339538, 56.90139122063164 18.79944510132738, 56.81043622054693 18.744400101276128, 56.79500022053253 18.730827101263486, 56.733327220475104 18.669445101206307, 56.70805422045157 18.644445101183024, 56.65582722040293 18.596245101138138, 56.643882220391816 18.57916410112223, 56.63777322038612 18.537636101083564, 56.63443622038301 18.437218100990037, 56.60999122036023 18.33360910089354, 56.58513622033709 18.265409100830027, 56.56194522031549 18.22416410079161, 56.5522912203065 18.19374510076328, 56.56166322031524 18.136673100710127, 56.55680022031069 18.12985410070378, 56.51770022027429 18.1017361006776, 56.48395422024285 18.09187310066841, 56.45652722021731 18.074582100652307, 56.40610922017035 18.012218100594225, 56.35082722011887 17.96166410054714, 56.35231822012025 17.941182100528067, 56.30388222007517 17.94097310052787, 56.26693622004075 17.947773100534206, 56.23250022000866 17.95110910053731, 56.19208221997104 17.953609100539637, 56.02666321981698 17.93750010052463, 55.97943621977299 17.92500010051299, 55.85305421965529 17.903327100492817, 55.80000021960586 17.90528210049463, 55.643882219460494 17.89110910048143, 55.52221821934717 17.863191100455424, 55.468609219297235 17.845554100439003, 55.436036219266896 17.826109100420894, 55.41860921925067 17.799445100396056, 55.404718219237736 17.76527310036424, 55.38082721921549 17.71139110031406, 55.36555421920127 17.68513610028961, 55.33582721917358 17.6633271002693, 55.31513621915431 17.653054100259723, 55.26610921910864 17.613745100223113, 55.23055421907554 17.550000100163743, 55.22492721907031 17.494791100112337, 55.23666321908124 17.468682100088017, 55.27360921911563 17.451109100071648, 55.298327219138656 17.421527100044102, 55.30500021914486 17.39916410002327, 55.29971821913995 17.36791809999417, 55.250545219094164 17.26693609990012, 55.21221821905846 17.193054099831315, 55.091663218946195 17.057500099705067, 55.075000218930654 17.042354099690968, 55.031936218890564 17.01471809966523, 54.96054521882408 16.987500099639874, 54.898891218766664 16.966391099620225, 54.803745218678046 16.944854099600164, 54.73624521861518 16.957082099611554, 54.69353621857539 16.97965409963257, 54.682145218564784 17.01187309966258, 54.65110921853588 17.0250000996748, 54.60694521849476 17.03166409968101, 54.585545218474834 17.033882099683083, 54.50416321839904 17.03805409968696, 54.42000021832064 17.035827099684894, 54.38860921829141 17.03500009968411, 54.09263621801577 17.014309099664843, 54.01027321793907 16.97673609962986, 53.92944521786379 16.908609099566405, 53.82666321776807 16.886664099545968, 53.74263621768981 16.859164099520356, 53.69138221764209 16.817218099481295, 53.677145217628805 16.79506409946066, 53.59638221755361 16.74500009941403, 53.57610921753471 16.743891099413005, 53.54804521750859 16.74694509941584, 53.45360921742062 16.74694509941584, 53.353054217326985 16.73000009940006, 53.18582721717124 16.68250009935582, 53.125691217115246 16.66069109933551, 53.11443621710475 16.642782099318836, 52.81228221682335 17.285527099917445, 52.782173216795314 17.34972709997723, 51.99929121606618 18.999345101513555, 55.000000218860805 20.000000102445483, 55.42220021925402 21.267509103625954)), ((56.40420922016858 26.36870910837682, 56.401936220166476 26.285000108298846, 56.45832722021899 26.24750010826392, 56.481309220240405 26.240073108257008, 56.47138222023116 26.142154108165812, 56.37721822014345 26.172218108193817, 56.37721822014345 26.197709108217552, 56.32069122009082 26.166945108188912, 56.33290922010218 26.112218108137938, 56.374027220140476 26.095000108121894, 56.43110922019363 26.054445108084124, 56.423882220186925 25.950273107987115, 56.40166322016623 25.894164107934856, 56.39221822015742 25.873882107915975, 56.36360922013077 25.82194510786759, 56.32555422009534 25.75693610780705, 56.30256322007392 25.74690910779772, 56.27443622004773 25.717918107770714, 56.26430022003828 25.65944510771625, 56.26971822004333 25.63601810769444, 56.23803622001384 25.62610910768521, 56.18332721996288 25.654991107712107, 56.15897321994021 25.662500107719097, 56.14721821992924 25.666109107722463, 56.140827219923295 25.734991107786612, 56.139163219921755 25.832500107877422, 56.16581821994657 25.90805410794779, 56.185554219964956 26.014718108047134, 56.15318221993479 26.083882108111553, 56.079936219866596 26.06556410809449, 56.08708221987325 26.087773108115172, 56.10971821989432 26.1286091081532, 56.17180021995213 26.23040910824801, 56.20190021998019 26.26086410827638, 56.234445220010485 26.2180541082365, 56.30389122007517 26.20110910822072, 56.32651822009623 26.198609108218392, 56.35750922012511 26.21596410823456, 56.40152722016609 26.219791108238127, 56.38458222015032 26.239854108256807, 56.35006322011816 26.23847310825552, 56.33416322010336 26.223191108241295, 56.31097322008176 26.222709108240835, 56.318327220088605 26.268891108283853, 56.35471822012249 26.321391108332747, 56.40420922016858 26.36870910837682)), ((58.65500022226479 20.168327102602262, 58.647500222257804 20.171391102605114, 58.63471822224591 20.235000102664344, 58.634163222245405 20.245554102674177, 58.63332722224462 20.274164102700823, 58.63832722224927 20.340273102762396, 58.641109222251856 20.350000102771446, 58.65145422226149 20.37040910279046, 58.70166322230827 20.425282102841564, 58.71110922231705 20.433609102849317, 58.72277322232793 20.42889110284493, 58.741173222345054 20.427909102844012, 58.7552732223582 20.43278210284855, 58.76527322236751 20.44139110285657, 58.78666322238743 20.471109102884242, 58.82721822242519 20.57221810297841, 58.88332722247745 20.68110910307982, 58.89603622248927 20.692354103090295, 58.91950922251115 20.682291103080928, 58.951109222540566 20.511109102921495, 58.94138222253153 20.498054102909336, 58.91360922250564 20.478609102891227, 58.89804522249116 20.470000102883205, 58.87250022246735 20.460827102874674, 58.86193622245753 20.456109102870272, 58.84513622244188 20.44319110285825, 58.82416322242236 20.413327102830436, 58.806109222405524 20.370827102790855, 58.802218222401905 20.36138210278206, 58.79332722239363 20.32860910275153, 58.784582222385495 20.293609102718932, 58.785136222386 20.27930910270561, 58.721663222326896 20.210691102641718, 58.67166322228033 20.175554102608984, 58.65500022226479 20.168327102602262))) +SOM Somalia MULTIPOLYGON (((45.86944521035733 10.844164093918451, 45.89750021038344 10.830273093905518, 45.97416321045486 10.793336093871119, 46.07971821055315 10.771391093850681, 46.115482210586464 10.76874509384821, 46.16360021063127 10.77805409385688, 46.198745210664015 10.790827093868785, 46.24666321070865 10.786182093864454, 46.27180021073204 10.76597309384563, 46.29694521075547 10.736109093817817, 46.33555421079143 10.702918093786906, 46.41750021086773 10.688191093773185, 46.45332721090111 10.69000009377487, 46.64624521108078 10.745000093826093, 46.768054211194226 10.814164093890511, 46.979718211391344 10.934445094002527, 47.05471821146119 10.969164094034866, 47.093054211496906 10.994582094058543, 47.14694521154709 11.041391094102138, 47.16492721156385 11.068954094127804, 47.340000211726874 11.156945094209746, 47.36832721175327 11.170000094221905, 47.39666321177967 11.17895409423025, 47.48305421186012 11.187773094238466, 47.5141632118891 11.18471809423562, 47.550282211922735 11.171109094222942, 47.61332721198144 11.141245094195128, 47.642354212008485 11.120691094175982, 47.664300212028905 11.107782094163966, 47.69166321205441 11.099164094155938, 47.71360921207483 11.101391094158018, 47.741100212100434 11.114164094169908, 47.7925002121483 11.130554094185172, 47.908054212255934 11.1330540941875, 47.94777321229293 11.12152709417677, 48.125691212458605 11.135136094189434, 48.165618212495815 11.148745094202113, 48.19554521252368 11.180273094231481, 48.22193621254826 11.210554094259678, 48.3427732126608 11.274309094319051, 48.52138221282715 11.315554094357466, 48.66069121295686 11.328054094369108, 48.81721821310265 11.276945094321505, 48.86250021314481 11.258473094304307, 48.880691213161754 11.247918094294477, 48.95693621323278 11.242773094289689, 48.987218213260974 11.245836094292542, 49.01414521328607 11.25028209429668, 49.192218213451895 11.293891094337297, 49.424163213667924 11.340836094381018, 49.516591213754 11.390000094426796, 49.543882213779426 11.433336094467165, 49.56033621379473 11.447982094480807, 49.67693621390333 11.471245094502464, 49.705963213930374 11.469582094500922, 49.73097321395366 11.462082094493937, 49.753054213974224 11.455000094487332, 49.7847182140037 11.453054094485523, 50.06916321426863 11.508336094537015, 50.09319121429098 11.514582094542831, 50.28139121446628 11.59527309461798, 50.436245214610494 11.683473094700119, 50.48583621465667 11.735000094748102, 50.50416321467375 11.759582094771005, 50.51540921468421 11.791527094800756, 50.521945214690305 11.824718094831667, 50.533463214701044 11.860136094864643, 50.552909214719136 11.893745094895948, 50.579018214743456 11.916109094916777, 50.635554214796116 11.946391094944985, 50.7694362149208 11.979164094975502, 50.910000215051696 11.941391094940329, 51.1447182152703 11.872500094876159, 51.27277321538958 11.839445094845374, 51.27832721539474 11.816664094824162, 51.23853621535767 11.665345094683232, 51.19916321532102 11.617218094638417, 51.16721821529126 11.578891094602724, 51.12527321525221 11.507636094536352, 51.07638221520668 11.328054094369108, 51.07166321520228 11.206809094256187, 51.08311821521295 11.18124509423238, 51.112354215240174 11.1643000942166, 51.16471821528893 11.15062709420387, 51.16151821528595 11.11360909416939, 51.139718215265646 11.071391094130078, 51.130273215256864 11.048609094108855, 51.11971821524702 11.012218094074967, 51.11458221524225 10.979373094044377, 51.12916321525583 10.740273093821699, 51.14555421527109 10.633609093722356, 51.102909215231364 10.497636093595716, 51.08777321521728 10.47763609357709, 51.03999121517276 10.465418093565717, 51.01721821515156 10.44666409354825, 51.05255421518447 10.436264093538568, 51.13482721526108 10.446718093548299, 51.191318215313714 10.480418093579686, 51.18943621531196 10.538054093633363, 51.37680021548644 10.487636093586403, 51.411318215518605 10.453254093554392, 51.39124521549991 10.397364093502333, 51.36860921547881 10.3726360934793, 51.27395421539066 10.385764093491531, 51.257145215375004 10.419582093523033, 51.218609215339114 10.425691093528712, 51.14777321527316 10.412109093516065, 51.1219452152491 10.410273093514363, 51.092609215221785 10.40586409351026, 51.072691215203236 10.400445093505212, 51.03519121516831 10.386236093491974, 50.95888221509725 10.360836093468322, 50.91110921505273 10.333327093442705, 50.89582721503851 10.312218093423041, 50.89471821503747 10.152773093274547, 50.899163215041625 10.02278209315348, 50.8152822149635 9.633054092790516, 50.80250021495158 9.574718092736191, 50.803609214952616 9.563054092725324, 50.809436214958055 9.536945092701004, 50.81916321496712 9.500554092667116, 50.83555421498238 9.471109092639693, 50.83853621498514 9.43787309260874, 50.81888221496686 9.40139109257477, 50.75540921490773 9.302291092482477, 50.7136092148688 9.28360909246507, 50.68958221484644 9.268336092450852, 50.656945214816034 9.22389109240946, 50.64694521480672 9.20194509238901, 50.64263621480271 9.180827092369356, 50.64569121480554 9.160973092350858, 50.65250021481188 9.125136092317476, 50.64597321480582 9.091527092286185, 50.63347321479418 9.067773092264062, 50.5534002147196 8.989791092191439, 50.518327214686934 8.97221809217507, 50.49680021466688 8.959718092163428, 50.47930021465058 8.942773092147647, 50.42485421459989 8.860282092070818, 50.32221821450429 8.613609091841084, 50.32693621450869 8.565418091796204, 50.32291821450494 8.538336091770987, 50.310691214493545 8.515000091749243, 50.28374521446847 8.48291809171937, 50.25368221444046 8.463336091701137, 50.19693621438762 8.38360909162688, 50.185409214376875 8.359582091604508, 50.178327214370285 8.338045091584448, 50.16027321435348 8.321391091568941, 50.14874521434274 8.305000091553666, 50.13888221433356 8.27930909152974, 50.125545214321136 8.21527309147011, 50.10902721430574 8.18569109144255, 50.06909121426855 8.138891091398975, 50.02888221423112 8.118054091379562, 50.00721821421092 8.10583609136819, 49.97805421418377 8.087218091350849, 49.940827214149095 8.06305409132834, 49.92221821413176 8.047218091313596, 49.84416321405908 7.966109091238053, 49.82930021404522 7.9461090912194265, 49.81388221403088 7.91555409119097, 49.806391214023904 7.8827820911604505, 49.80444521402208 7.856664091136125, 49.80458221402222 7.826245091107793, 49.795827214014054 7.714445091003668, 49.73250021395506 7.574445090873283, 49.664445213891696 7.445000090752728, 49.6522182138803 7.423054090732293, 49.636109213865296 7.3975000907084905, 49.631409213860934 7.390445090701931, 49.60416321383556 7.33778209065288, 49.59000021382235 7.316945090633467, 49.48554521372509 7.178336090504388, 49.39777321364335 7.064164090398052, 49.37888221362576 7.041391090376848, 49.342773213592125 6.980836090320452, 49.25054521350623 6.81860909016936, 49.21944521347726 6.758336090113232, 49.09874521336485 6.477782089851942, 49.07555421334325 6.415836089794254, 49.07194521333989 6.389027089769286, 49.076109213343756 6.343609089726982, 49.08283621335002 6.301454089687724, 49.078045213345575 6.260554089649631, 49.06777321333601 6.2208360896126464, 49.059718213328495 6.1930540895867665, 49.052363213321655 6.173336089568409, 49.04083621331091 6.149718089546411, 48.85333621313629 5.820000089239329, 48.820827213106014 5.768054089190954, 48.66832721296399 5.528609088967954, 48.59138221289234 5.4180540888649915, 48.51721821282325 5.320000088773668, 48.37082721268692 5.1358360886021615, 48.32860921264759 5.088609088558172, 48.3101362126304 5.065418088536575, 48.20166321252938 4.90305408838536, 48.19138221251981 4.885282088368811, 48.16416321249446 4.835554088322496, 48.15221821248332 4.812500088301022, 48.12693621245978 4.762782088254724, 48.11054521244452 4.73027308822445, 48.053054212390975 4.618891088120719, 48.00055421234208 4.523054088031458, 47.95110921229602 4.460273087972993, 47.92435421227111 4.43384508794837, 47.871936212222295 4.373891087892545, 47.707500212069135 4.187364087718819, 47.656945212022066 4.134718087669796, 47.59693621196618 4.080000087618828, 47.5724912119434 4.049164087590114, 47.54694521191962 4.0125000875559635, 47.51138221188651 3.9572180875044864, 47.448054211827525 3.8784730874311464, 47.37778221176208 3.815282087372296, 47.229718211624174 3.682500087248627, 47.21458221161009 3.666664087233883, 47.184718211582265 3.6311090872007696, 47.10905421151179 3.5400180871159392, 47.089436211493535 3.519718087097033, 47.04582721145292 3.4744450870548604, 47.016936211426014 3.4427820870253782, 46.87693621129563 3.288336086881543, 46.76388221119035 3.160000086762011, 46.54860921098984 2.954164086570316, 46.48499121093059 2.895282086515479, 46.358054210812384 2.7911090864184587, 46.237782210700374 2.662500086298678, 46.175282210642166 2.5877820862290974, 46.110545210581876 2.516109086162345, 46.043327210519266 2.4533360861038886, 46.02555421050272 2.437218086088876, 46.00901821048731 2.423336086075949, 45.926663210410624 2.367500086023938, 45.894163210380356 2.34610908600402, 45.78777321028127 2.2861090859481408, 45.68777321018814 2.2308360858966694, 45.585827210093186 2.171936085841807, 45.58221821008982 2.1686090858387104, 45.543191210053465 2.1402820858123306, 45.36777320989012 2.0386090857176384, 45.24180020977278 1.974309085657751, 45.1983272097323 1.9541640856389932, 45.13304520967151 1.919164085606397, 45.12471820966374 1.914173085601746, 45.088882209630384 1.9038910855921785, 45.066936209609935 1.8955540855844077, 45.03777320958278 1.8808360855707065, 45.00416320955148 1.86083608555208, 44.932782209485 1.8138910855083594, 44.84805420940609 1.7572180854555768, 44.60471820917945 1.5930540853026827, 44.54499120912382 1.5519450852643928, 44.34360920893627 1.3952820851184953, 44.17416320877848 1.2466640849800825, 44.1450002087513 1.219718084954991, 44.108600208717405 1.1741640849125616, 44.06721820867887 1.1336090848747915, 43.94582720856582 1.0190270847680836, 43.883045208507355 0.981664084733282, 43.8605452084864 0.9705540847229344, 43.83971820846699 0.9580540847112928, 43.79013620842082 0.9237450846793394, 43.65097320829122 0.799309084563447, 43.48860920813999 0.6500000844243914, 43.46638220811931 0.624718084400854, 43.33603620799789 0.4789180842650609, 43.28832720795347 0.4358360842249454, 43.26735420793395 0.4091640842000999, 43.247773207915714 0.3811090841739713, 43.227218207896556 0.3611090841553448, 43.13527320781094 0.2694450840699716, 43.003054207687796 0.1244450839349298, 42.890273207582766 -0.0019459161827768, 42.809436207507474 -0.0916639162663273, 42.779163207479286 -0.1224999162950553, 42.717500207421836 -0.1780549163467953, 42.64221820735173 -0.2411089164055085, 42.56888220728345 -0.3084729164682472, 42.51943620723739 -0.3724999165278859, 42.471663207192904 -0.4397179165904816, 42.45916320718126 -0.4569459166065286, 42.439782207163205 -0.478472916626572, 42.41666320714168 -0.4924999166396446, 42.39750020712381 -0.5116639166574828, 42.30166320703458 -0.6336089167710526, 42.21416320695309 -0.7526359168819141, 42.17693620691841 -0.7980549169242153, 42.159163206901866 -0.8147179169397276, 42.06666320681572 -0.8961089170155248, 41.97277320672828 -1.0202819171311717, 41.91721820667652 -1.1277819172312888, 41.79250020656036 -1.3374999174266122, 41.69250020646723 -1.496945917575104, 41.645827206423775 -1.5688909176421078, 41.590273206372046 -1.6394459177078176, 41.571663206354714 -1.6619459177287723, 41.558154206342124 -1.6748729177408137, 41.55527320633945 -1.592217917663831, 41.381382206177506 -1.364717917451955, 41.15388220596563 -1.0680549171756724, 40.99832720582074 -0.8661089169875851, 40.988609205811684 0.0000000838190317, 40.988609205811684 1.3139540850427522, 40.988609205811684 2.3093000859697383, 40.988609205811684 2.7166640863491267, 40.99135420581425 2.8355360864598396, 41.28638220608903 3.118336086723218, 41.3369362061361 3.167500086768996, 41.797773206565296 3.824718087381086, 41.89643620665717 3.964254087511037, 41.90516320666529 3.980318087526001, 41.93874520669658 4.022364087565151, 41.93784520669573 4.0527090875934135, 41.95943620671585 4.088473087626724, 42.04083620679165 4.142782087677304, 42.07388220682245 4.1761450877083774, 42.0983272068452 4.186664087718171, 42.11777320686332 4.193891087724907, 42.15166320689488 4.203336087733703, 42.195827206936 4.208891087738877, 42.23610920697351 4.207773087737834, 42.269854207004954 4.203745087734077, 42.37027320709848 4.202082087732535, 42.401382207127455 4.2075000877375714, 42.48583620720609 4.228891087757503, 42.62229120733318 4.26041808778686, 42.656109207364665 4.264718087790868, 42.72652720743025 4.271191087796893, 42.74082720744357 4.272782087798376, 42.76860920746944 4.278336087803552, 42.83166320752818 4.295282087819331, 42.855691207550535 4.304718087828121, 42.87666320757009 4.318336087840805, 42.91999120761042 4.364027087883358, 42.93360920762311 4.388745087906372, 42.94651820763514 4.4461090879597975, 42.9572182076451 4.481109087992394, 42.96888220765598 4.504309088013997, 42.98569120767161 4.5254180880336605, 43.08082720776022 4.604164088106998, 43.15819120783226 4.666391088164957, 43.193600207865245 4.687782088184875, 43.32166320798453 4.748609088241523, 43.3588912080192 4.765273088257047, 43.490554208141816 4.8222180883100805, 43.56777320821374 4.8525000883382745, 43.58721820823183 4.860000088345259, 43.68639120832421 4.89194508837501, 43.73735420837167 4.900554088383032, 43.76749120839972 4.903336088385629, 43.7980542084282 4.905691088387812, 43.833054208460794 4.910282088392094, 43.855827208482 4.913891088395459, 43.88721820851123 4.922782088403736, 43.922218208543825 4.934445088414591, 43.95985420857889 4.951391088430384, 43.981945208599456 4.96305408844124, 44.05902720867124 4.9586090884371, 44.22166320882272 4.9483360884275385, 44.29027320888662 4.944164088423648, 44.46690020905112 4.93352708841374, 44.51277320909384 4.930273088410715, 44.950827209501796 4.902500088384841, 45.00000020954758 4.954309088433092, 45.00783620955488 4.9625730884407915, 45.09610920963709 5.060273088531787, 45.374463209896334 5.363918088814572, 45.489400210003396 5.4897640889317785, 45.716663210215046 5.738609089163532, 45.955827210437775 5.999164089406193, 45.990273210469866 6.035554089440083, 46.11398221058508 6.162027089557867, 46.56139121100176 6.61944508998387, 46.99139121140223 7.056945090391324, 47.55554521192764 7.592218090889844, 47.6580542120231 7.6888910909798796, 47.76183621211976 7.786591091070861, 47.904045212252186 7.920454091195538, 47.98721821232965 8.00110909127065, 47.98824521233061 8.004109091273449, 47.90250021225074 8.00305409127246, 47.85055421220238 8.00305409127246, 47.746382212105374 8.003609091272978, 47.607500211976 8.003336091272729, 47.08693621149121 8.001945091271423, 47.01193621142136 8.00110909127065, 46.99471821140531 8.006109091275306, 46.790836211215435 8.076391091340767, 46.552773210993735 8.157218091416041, 46.33166321078781 8.23221809148589, 46.059163210534024 8.323609091571, 45.616100210121374 8.473327091710445, 45.41166320993099 8.541945091774338, 45.189991209724525 8.616109091843413, 45.00221820954965 8.67860909190162, 44.65047320922207 8.795173092010174, 44.010554208626104 9.007218092207665, 43.72777320836275 9.262782092445676, 43.627218208269085 9.354445092531037, 43.58305420822796 9.336109092513965, 43.555273208202095 9.34847309252548, 43.44166320809629 9.417636092589888, 43.42582720808153 9.43458209260568, 43.425136208080886 9.460836092630132, 43.42777320808335 9.48527309265289, 43.386663208045064 9.55694509271963, 43.32847320799087 9.619582092777975, 43.305273207969265 9.628336092786128, 43.28333620794882 9.63471809279207, 43.275273207941325 9.645554092802158, 43.26721820793381 9.664445092819747, 43.26055420792761 9.684718092838636, 43.24638220791442 9.75082709290021, 43.2377732079064 9.79930909294535, 43.22485420789437 9.863191093004843, 43.204091207875024 9.892291093031957, 43.18040920785296 9.902773093041716, 43.14784520782263 9.902773093041716, 43.11027320778766 9.908891093047416, 43.08430020776345 9.924864093062283, 43.06304520774367 9.948745093084526, 43.05166320773307 9.968191093102632, 43.04277320772479 9.993054093125792, 43.034718207717276 10.02500009315554, 43.01305420769711 10.0811090932078, 42.98055420766684 10.117636093241813, 42.95325420764141 10.132500093255658, 42.922773207613034 10.147782093269896, 42.890973207583414 10.17208209329253, 42.86416320755845 10.200554093319042, 42.85069120754588 10.219445093336631, 42.81693620751446 10.313891093424601, 42.80610920750436 10.35000009345822, 42.80332720750178 10.38055409348668, 42.797082207495976 10.42278209352601, 42.78610920748574 10.455554093556529, 42.74666320744902 10.495691093593905, 42.72221820742624 10.517918093614611, 42.70944520741435 10.536109093631552, 42.68110920738795 10.582773093675016, 42.66479120737276 10.632918093721713, 42.764163207465316 10.780418093859083, 42.83860920753463 10.873891093946142, 42.85500020754989 10.892218093963209, 42.9175002076081 10.955273094021933, 42.94409120763288 11.002436094065857, 42.95360920764173 11.02027309408247, 42.975554207662185 11.053609094113511, 43.06416320774471 11.186945094237686, 43.10620020778384 11.25000009429641, 43.18639120785855 11.370282094408438, 43.20547320787631 11.397827094434092, 43.22500020789448 11.430827094464831, 43.24921820791704 11.469536094500882, 43.28832720795347 11.454164094486558, 43.375554208034714 11.383191094420454, 43.45485420810857 11.351391094390848, 43.4825002081343 11.254718094300813, 43.49000020814128 11.23500009428244, 43.501800208152275 11.210836094259946, 43.62444520826651 11.042218094102907, 43.709163208345416 10.935836094003832, 43.81389120844295 10.813891093890263, 43.835273208462866 10.793609093871368, 43.93832720855883 10.701391093785489, 44.18388220878754 10.525273093621465, 44.20832720881029 10.507782093605172, 44.2527822088517 10.468336093568439, 44.27832720887548 10.447773093549287, 44.30277320889826 10.436664093538937, 44.39138220898079 10.41152709351553, 44.55659120913464 10.410764093514814, 44.59444520916989 10.416391093520062, 44.61443620918851 10.423891093527047, 44.63304520920585 10.431945093534537, 44.65610920922731 10.44319109354501, 44.682500209251884 10.450836093552141, 44.72235420928902 10.45832709355912, 44.74693620931191 10.459164093559892, 44.8002822093616 10.450000093551353, 44.833327209392365 10.440273093542302, 44.853336209411 10.43166409353428, 44.892082209447096 10.421527093524844, 44.93555420948758 10.423609093526778, 44.968882209518625 10.42819109353104, 44.99290920954098 10.435000093537383, 45.15943620969608 10.534164093629741, 45.25000020978041 10.592782093684335, 45.27166320980061 10.620000093709677, 45.33166320985649 10.666664093753141, 45.36208220988482 10.662773093749522, 45.38596320990706 10.658054093745122, 45.44923620996599 10.663536093750224, 45.51277321002516 10.69666409378108, 45.62832721013277 10.774164093853258, 45.70055421020004 10.824445093900081, 45.75888221025437 10.872982093945296, 45.79985421029252 10.875000093947165, 45.85235421034142 10.839864093914443, 45.86944521035733 10.844164093918451))) +LKA Sri Lanka MULTIPOLYGON (((81.78526324380653 6.672500090033282, 81.78457224380588 6.639864090002888, 81.78220924380372 6.624718089988789, 81.77777224379957 6.615273089979993, 81.7633182437861 6.588054089954639, 81.70971824373618 6.502218089874702, 81.69970924372689 6.484445089858141, 81.67747224370618 6.458054089833567, 81.6611002436909 6.440000089816749, 81.61137224364461 6.4025000897818245, 81.40860024345574 6.252500089642126, 81.32415424337711 6.198327089591686, 81.31441824336804 6.194445089588058, 81.05554524312691 6.107773089507347, 81.01914524309302 6.1030540895029475, 80.99136324306716 6.096664089496997, 80.89029124297303 6.062018089464729, 80.82916324291608 6.040836089445008, 80.79248224288193 6.016109089421974, 80.77970924287007 6.004718089411369, 80.74525424283797 5.977218089385758, 80.7005452427963 5.959445089369197, 80.58957224269295 5.918054089330653, 80.45304524256579 5.945273089356007, 80.28679124241097 5.9913910893989595, 80.24331824237049 6.007500089413952, 80.20081824233091 6.026109089431287, 80.18441824231564 6.034718089439309, 80.11360024224967 6.116391089515375, 80.08276324222095 6.1680540895634834, 80.04610024218681 6.23971808963023, 80.02192724216428 6.325282089709916, 79.98648224213127 6.432364089809639, 79.96970024211566 6.527782089898508, 79.95193624209912 6.575000089942478, 79.92470024207375 6.6438910900066475, 79.8988822420497 6.7072180900656235, 79.88080924203285 6.751109090106496, 79.85914524201269 6.797364090149571, 79.85138224200546 6.836391090185927, 79.83728224199234 6.937573090280154, 79.84803624200237 6.960282090301305, 79.86216324201553 6.980073090319735, 79.8613722420148 6.993054090331825, 79.85276324200674 7.1230540904528965, 79.83055424198608 7.197218090521972, 79.83595424199109 7.2683090905881755, 79.83388224198916 7.296664090614584, 79.8169362419734 7.40277309071341, 79.8149912419716 7.414445090724271, 79.7895722419479 7.607500090904068, 79.79553624195347 7.634445090929162, 79.79693624195477 7.661391090954268, 79.78387224194262 7.750554091037301, 79.7530542419139 7.8838910911614875, 79.74331824190483 7.921945091196918, 79.73942724190118 7.931664091205974, 79.73248224189473 7.945554091218909, 79.72665424188932 7.960282091232628, 79.71804524188127 7.985836091256431, 79.71470924187821 7.996391091266261, 79.71220024187585 8.007500091276597, 79.70637224187044 8.035827091302991, 79.70248224186679 8.079445091343601, 79.69790024186256 8.194445091450703, 79.70860024187249 8.220827091475286, 79.72276324188567 8.241391091494435, 79.74914524191024 8.265554091516933, 79.72511824188786 8.125554091386547, 79.72942724189187 8.017773091286173, 79.73248224189473 8.007082091276217, 79.74783624190906 7.9911820912614075, 79.76277224192296 7.9850000912556425, 79.78692724194542 7.981109091252023, 79.80080924195835 7.9808270912517685, 79.8145632419712 7.984445091255125, 79.82458224198052 7.991809091261985, 79.82999124198557 8.000273091269875, 79.83027224198582 8.012782091281522, 79.82610024198192 8.022500091290567, 79.81441824197105 8.039445091306348, 79.81303624196977 8.245827091498569, 79.86810024202106 8.536245091769032, 79.89582724204689 8.553609091785205, 79.9146722420644 8.562209091793221, 79.94192724208978 8.630827091857128, 79.9500002420973 8.723891091943798, 79.94970924209707 8.736945091955945, 79.92998224207867 8.8388910920509, 79.9190822420685 8.937636092142853, 79.97303624211878 8.971945092174806, 79.99136324213583 8.981109092183345, 80.04137224218243 9.014445092214388, 80.05026324219068 9.026391092225523, 80.06441824220389 9.06139109225812, 80.10720924224375 9.180000092368573, 80.11164524224785 9.198609092385908, 80.12302724225844 9.251109092434803, 80.11665424225254 9.297918092478398, 80.10775424224425 9.306109092486025, 80.0980362422352 9.310554092490165, 80.09443624223184 9.411391092584083, 80.13581824227037 9.42527309259701, 80.19497224232549 9.47027309263892, 80.1862362423173 9.489164092656509, 80.17665424230842 9.500273092666859, 80.15525424228849 9.520827092686005, 80.13471824226934 9.535000092699192, 80.1208182422564 9.542218092705923, 80.0861092422241 9.56360909272584, 80.05678224219679 9.582918092743824, 80.05109124219149 9.592500092752744, 80.06580924220515 9.594164092754298, 80.08942724222715 9.58971809275016, 80.23803624236558 9.530836092695324, 80.27665424240155 9.499718092666342, 80.47249124258394 9.488882092656254, 80.49331824260332 9.481664092649524, 80.52303624263101 9.469164092637882, 80.5377632426447 9.462773092631934, 80.54942724265555 9.452773092622621, 80.55775424266335 9.446945092617185, 80.56944524267425 9.444718092615119, 80.61032724271229 9.444718092615119, 80.5888822426923 9.461664092630897, 80.53692724264391 9.492218092659357, 80.46415424257617 9.53166409269609, 80.4289002425433 9.537473092701504, 80.40732724252325 9.532891092697227, 80.38435424250184 9.531600092696038, 80.33166324245275 9.555273092718082, 80.31470024243697 9.57277309273438, 80.29887224242225 9.585000092745759, 80.21026324233969 9.63639109279363, 80.19636324232675 9.643609092800347, 80.18387224231515 9.648473092804878, 80.16935424230161 9.643609092800347, 80.16804524230037 9.631664092789222, 80.17692724230864 9.6197180927781, 80.1861002423172 9.614718092773444, 80.1974822423278 9.602082092761677, 80.19588224232632 9.58687309274751, 80.18470924231593 9.582218092743176, 80.12052724225612 9.600000092759728, 80.02470024216689 9.644718092801384, 79.94569124209329 9.690445092843973, 79.93914524208719 9.703054092855709, 79.92580924207476 9.744718092894516, 79.92580924207476 9.770827092918836, 79.96998224211592 9.810000092955306, 79.98095424212613 9.816527092961394, 80.01639124215916 9.818891092963597, 80.03027224217209 9.818609092963328, 80.11364524224973 9.803000092948793, 80.12482724226015 9.77812709292563, 80.13602724227059 9.769054092917173, 80.16266324229537 9.76809109291628, 80.19625424232669 9.750136092899552, 80.2263822423547 9.751391092900732, 80.23331824236118 9.744164092893996, 80.24973624237646 9.712491092864497, 80.27442724239944 9.695000092848204, 80.3095632424322 9.650554092806814, 80.35192724247162 9.6197180927781, 80.36442724248326 9.611109092770079, 80.39165424250865 9.593054092753263, 80.44191824255546 9.577009092738322, 80.2727632423979 9.720000092871487, 80.22405424235257 9.774454092922213, 80.20248224233245 9.769718092917799, 80.18914524232002 9.770554092918573, 80.15540024228864 9.782773092929958, 80.14054524227475 9.792218092938754, 80.16128224229408 9.812736092957863, 80.24206324236934 9.828191092972247, 80.2522092423788 9.825000092969276, 80.25693624238318 9.815836092960751, 80.25971824238576 9.801664092947547, 80.26388224238963 9.79194509293849, 80.27470024239972 9.77500009292271, 80.34298224246334 9.686245092840053, 80.35615424247555 9.67232709282709, 80.40192724251818 9.625000092783011, 80.57470924267915 9.492218092659357, 80.5892912426927 9.482218092650044, 80.60998224271196 9.47166409264021, 80.62720024272801 9.460827092630126, 80.63970924273968 9.452218092622104, 80.66679124276487 9.430691092602046, 80.71581824281054 9.382218092556911, 80.76582724285714 9.331664092509826, 80.80026324288917 9.294582092475295, 80.8244362429117 9.26194509244489, 80.8447092429306 9.226945092412294, 80.84942724293495 9.218054092404017, 80.9322092430121 9.040836092238976, 80.93026324301024 8.979445092181791, 80.92359124300407 8.975973092178563, 80.91276324299395 8.950827092155151, 80.9177632429986 8.939309092144413, 80.92734524300755 8.931527092137173, 80.93776324301723 8.931245092136905, 80.9615182430394 8.94221809214713, 80.96860024304596 8.952218092156443, 81.02720924310057 8.916664092123327, 81.16609124322991 8.745000091963448, 81.22276324328266 8.66360909188765, 81.23207224329133 8.64860909187368, 81.25360024331138 8.550827091782622, 81.25040924330841 8.540554091773046, 81.24053624329923 8.536664091769424, 81.22900924328849 8.538609091771235, 81.22498224328473 8.565691091796452, 81.21110924327184 8.571391091801772, 81.14776324321281 8.52721809176063, 81.13025424319653 8.502364091737476, 81.13929124320492 8.491527091727392, 81.21970924327985 8.462773091700612, 81.25443624331217 8.455000091693364, 81.26832724332513 8.45416409169259, 81.28151824333742 8.461664091699575, 81.29234524334748 8.478745091715481, 81.29095424334616 8.495064091730683, 81.32720924337997 8.520136091754026, 81.35831824340892 8.491109091726997, 81.36330924341354 8.482218091718721, 81.38831824343686 8.384445091627654, 81.39082724343922 8.373327091617313, 81.4230362434692 8.201945091457688, 81.39761824344549 8.185764091442621, 81.39193624344023 8.149445091408793, 81.4230362434692 8.092636091355885, 81.51943624355897 8.000273091269875, 81.61387224364694 7.8247180911063765, 81.69108224371882 7.7613910910474, 81.7049912437318 7.747636091034579, 81.71388224374004 7.729164091017381, 81.7124542437387 7.715882091005014, 81.68734524371536 7.701536090991652, 81.68624524371432 7.681673090973149, 81.70721824373385 7.650491090944115, 81.71908224374488 7.639454090933839, 81.73149124375647 7.637800090932288, 81.75383624377724 7.611864090908142, 81.77221824379438 7.570282090869412, 81.76470924378742 7.548336090848977, 81.75693624378016 7.5040270908077105, 81.7666632437892 7.462782090769295, 81.79498224381558 7.444718090752474, 81.81034524382989 7.441927090749871, 81.81888224383783 7.472918090778734, 81.82888224384715 7.470973090776923, 81.85581824387225 7.405282090715744, 81.87137224388675 7.352500090666581, 81.87387224388908 7.341391090656245, 81.8788632438937 7.312218090629074, 81.88165424389632 7.288054090606565, 81.87942724389421 7.168054090494806, 81.89166324390561 7.013609090350968, 81.89054524390457 7.0005540903388095, 81.88136324389603 6.958054090299228, 81.84915424386605 6.831664090181519, 81.83221824385026 6.765836090120217, 81.80692724382669 6.699445090058376, 81.79248224381325 6.679164090039492, 81.78526324380653 6.672500090033282)), ((79.75610024191673 9.102500092296395, 79.82638224198217 9.083891092279075, 79.83665424199177 9.080273092275704, 79.8449822419995 9.074445092270267, 79.90081824205151 9.032773092231466, 79.91180024206176 9.020136092219687, 79.8949912420461 8.98666409218852, 79.8505362420047 9.001109092201972, 79.69970924186424 9.08055409227596, 79.69609124186087 9.093473092287994, 79.725263241888 9.101664092295621, 79.74413624190561 9.103327092297178, 79.75610024191673 9.102500092296395))) +TKM Turkmenistan MULTIPOLYGON (((66.44084522951593 37.31888211857496, 66.41388222949084 37.3437361185981, 66.35234522943352 37.33665411859151, 66.31762722940118 37.326109118581684, 66.2874822293731 37.32651811858207, 66.18637222927893 37.37193611862436, 66.10525422920338 37.42138211867042, 66.00804522911287 37.45527311870198, 65.77192722889296 37.53750011877857, 65.69754522882369 37.53256411877396, 65.68109122880836 37.5169361187594, 65.66665422879493 37.494991118738966, 65.6456912287754 37.45388211870069, 65.64429122877408 37.4274911186761, 65.64991822877934 37.39617311864694, 65.64852722877802 37.35228211860607, 65.56304522869843 37.261318118521345, 65.52415422866221 37.24790911850886, 65.46775422860966 37.244991118506135, 65.43725422858128 37.244373118505564, 65.39138222853856 37.2486001185095, 65.36220022851137 37.2486001185095, 65.09331822826096 37.24610011850717, 65.06679122823624 37.2429091185042, 65.04359122821464 37.23554511849734, 64.84443622802917 37.14804511841585, 64.82304522800925 37.138600118407055, 64.79372722798195 37.12151811839115, 64.78068222796978 37.10249111837342, 64.77762722796695 37.062636118336314, 64.78553622797432 37.02804511830409, 64.7902632279787 37.0072181182847, 64.80004522798782 36.955409118236446, 64.79290022798116 36.91943611820294, 64.7763822279658 36.89388211817915, 64.74432722793594 36.85062711813886, 64.71554522790913 36.802773118094294, 64.69359122788867 36.76832711806222, 64.65207222785 36.71013611800802, 64.63735422783631 36.689018117988354, 64.62609122782581 36.663882117964945, 64.61692722781729 36.636382117939334, 64.6098452278107 36.59999111790543, 64.61457222781507 36.56735411787504, 64.63039122782982 36.532082117842194, 64.6330452278323 36.486382117799636, 64.6259542278257 36.4536001177691, 64.61526322781572 36.423609117741165, 64.60138222780282 36.39694511771634, 64.58137222778416 36.36943611769071, 64.52388222773064 36.29943611762552, 64.50360022771173 36.28054511760793, 64.46638222767709 36.251382117580775, 64.42712722764051 36.246036117575784, 64.35331822757178 36.23081811756161, 64.16457222739598 36.16471811750006, 64.09498222733117 36.123318117461494, 63.97777322722203 36.03916411738312, 63.92720922717493 36.03832711738235, 63.88897322713933 36.031627117376104, 63.80138222705776 35.98763611733514, 63.76888222702749 35.97873611732685, 63.69804522696151 35.97082711731949, 63.65554522692193 35.96915411731793, 63.63332722690123 35.96943611731818, 63.613054226882355 35.96749111731637, 63.58999122686086 35.958254117307774, 63.55013622682375 35.9179091172702, 63.52277322679828 35.90290911725623, 63.34249122663036 35.85721811721368, 63.317218226606826 35.85221811720902, 63.29582722658691 35.8516641172085, 63.27276322656542 35.85277311720954, 63.24027322653518 35.856654117213154, 63.2044362265018 35.86166411721781, 63.12310922642607 35.86279111721886, 63.10485422640906 35.831936117190125, 63.15832722645885 35.76416411712701, 63.184718226483426 35.67360911704267, 63.13721822643919 35.65276411702327, 63.10533622640949 35.63373611700554, 63.09930022640387 35.556382116933506, 63.12442722642729 35.53971811691798, 63.10735422641139 35.45693611684088, 63.08680022639223 35.43220911681786, 63.05054522635848 35.429991116815785, 63.02304522633287 35.427773116813725, 62.98610922629845 35.4158271168026, 62.9224912262392 35.38416411677311, 62.90331822622136 35.374164116763794, 62.88319122620263 35.357491116748264, 62.83693622615954 35.32416411671723, 62.72707322605723 35.25763611665528, 62.62999122596679 35.22581811662563, 62.54957322589192 35.23666411663574, 62.527909225871724 35.258609116656174, 62.5130542258579 35.27374511667027, 62.469536225817365 35.28756411668314, 62.42721822577795 35.26500011666214, 62.410545225762434 35.25054511664867, 62.387218225740696 35.22720911662694, 62.361109225716376 35.19860011660029, 62.33901822569581 35.16999111657364, 62.31211822567076 35.1459911165513, 62.27380922563509 35.20144511660294, 62.269991225631514 35.25624511665397, 62.16360922553244 35.33581811672808, 62.13256322550353 35.3680541167581, 62.127773225499084 35.37470911676431, 62.07249122544758 35.41999111680647, 62.04270022541985 35.44123611682626, 61.99166322537232 35.4588821168427, 61.96569122534814 35.459164116842956, 61.8175002252101 35.41888211680545, 61.79832722519225 35.411654116798715, 61.59582722500366 35.44415411682898, 61.57666322498582 35.4508271168352, 61.528463224940936 35.48373611686584, 61.50332722491751 35.50943611688977, 61.44680022486486 35.5516541169291, 61.42934522484862 35.554773116932, 61.37505422479805 35.63610011700774, 61.296382224724795 35.62853611700069, 61.2765542247063 35.60724511698086, 61.253609224684936 35.63276411700464, 61.23318222466591 35.66262711703244, 61.2304732246634 35.69228211706006, 61.26208222469285 35.816518117175775, 61.23707322466956 35.8913821172455, 61.225818224659065 35.90388211725714, 61.21166322464589 35.93749111728843, 61.201100224636036 36.06916411741106, 61.216936224650794 36.1086091174478, 61.22137322465491 36.139991117477024, 61.22081822465441 36.178882117513254, 61.184436224620526 36.286664117613626, 61.162627224600215 36.41970911773754, 61.18950022462525 36.56895411787653, 61.16666322460398 36.632209117935446, 61.15373622459194 36.65040911795239, 61.07277322451654 36.65054511795252, 60.934436224387696 36.64971811795175, 60.79639122425914 36.648882117950976, 60.66693622413857 36.64749111794967, 60.64082722411425 36.64721811794942, 60.50278222398569 36.64610011794838, 60.364718223857096 36.64554511794786, 60.33124522382593 36.6580451179595, 60.157491223664096 36.871100118157926, 60.14138222364912 36.891664118177076, 60.10610022361624 36.936936118219236, 60.09180022360292 36.95860911823942, 60.07638222358858 36.988882118267625, 60.06346322357655 37.011664118288834, 60.01582722353217 37.04381811831878, 59.81304522334332 37.12470911839412, 59.71554522325252 37.14721811841508, 59.5461092230947 37.208327118472, 59.479991223033124 37.23276411849476, 59.39305422295217 37.32305411857884, 59.38721822294673 37.34360911859798, 59.371936222932504 37.404154118654375, 59.37054522293121 37.42470911867352, 59.37589122293619 37.47130911871692, 59.37554522293587 37.49596411873988, 59.3430452229056 37.53554511877674, 59.3156822228801 37.540827118781664, 59.29347322285943 37.535973118777136, 59.259854222828125 37.5171451187596, 59.23804522280781 37.518054118760446, 59.202218222774434 37.533054118774416, 59.13388222271081 37.57666411881503, 59.08166322266217 37.61193611884788, 59.05277322263527 37.631382118866, 58.980818222568246 37.65470911888772, 58.93360022252426 37.668600118900656, 58.80630922240573 37.67096411890286, 58.719436222324816 37.64971811888307, 58.674709222283155 37.65311811888624, 58.64638222225679 37.661664118894194, 58.49249122211344 37.645545118879184, 58.47068222209313 37.640273118874276, 58.40720922203403 37.64110911887505, 58.233736221872476 37.67867311891004, 58.220963221860586 37.69880911892879, 58.22443622186381 37.721236118949676, 58.197773221838986 37.78624511901022, 58.174436221817245 37.796391119019674, 57.69964522137505 37.926445119140794, 57.614436221295705 37.9252731191397, 57.528600221215754 37.927218119141514, 57.4540182211463 37.93846411915199, 57.378873221076304 37.974709119185746, 57.351663221050984 37.993254119203016, 57.37081822106882 38.07000011927448, 57.372073221069996 38.09054511929364, 57.24151822094839 38.27235411946296, 57.20846322091762 38.28263611947253, 57.18249122089341 38.28180011947174, 57.15888222087145 38.270273119460995, 57.149791220862966 38.260091119451516, 57.13686322085093 38.23978211943262, 57.06262722078179 38.195409119391286, 56.94249122066989 38.21138211940615, 56.86670922059932 38.2256091194194, 56.83957322057407 38.234045119427265, 56.79602722053349 38.252818119444754, 56.77388222051289 38.26693611945791, 56.75574522049598 38.2862641194759, 56.69526322043964 38.26693611945791, 56.56971822032273 38.25901811945053, 56.54277322029765 38.26610911945713, 56.47110022023088 38.263054119454296, 56.44276322020448 38.25999111945143, 56.419300220182635 38.25207311944405, 56.38555422015122 38.231373119424774, 56.36720922013413 38.21860011941288, 56.32298222009294 38.18283611937957, 56.326727220096416 38.162700119360835, 56.349645220117765 38.13602711933598, 56.331800220101144 38.08693611929027, 56.21970021999675 38.07120911927561, 56.1687452199493 38.09471811929751, 56.10999121989457 38.08665411928999, 56.07708221986394 38.080409119284184, 56.04319121983238 38.07500011927914, 55.987073219780115 38.072491119276805, 55.86832721966951 38.09388211929672, 55.8347092196382 38.106654119308615, 55.806382219611834 38.12249111932337, 55.76388221957225 38.124164119324945, 55.733318219543776 38.120682119321685, 55.69165421950498 38.11138211931302, 55.67027321948507 38.1088911193107, 55.556654219379254 38.098327119300876, 55.46943621929802 38.09082711929389, 55.43762721926839 38.083327119286906, 55.41415421924654 38.0677731192724, 55.39443621922817 38.048609119254564, 55.376518219211476 38.038464119245106, 55.229427219074495 37.98193611919247, 55.179436219027934 37.96470911917643, 55.14006321899126 37.95491811916732, 55.070409218926386 37.90581811912158, 55.05416321891127 37.88721811910426, 55.03777321889601 37.865827119084344, 54.954709218818635 37.804991119027676, 54.91999121878629 37.78416411900828, 54.89027321875864 37.774991118999736, 54.86332721873353 37.76666411899198, 54.83305421870534 37.7463821189731, 54.8097182186836 37.71110911894024, 54.78186321865766 37.643045118876856, 54.79353621866852 37.62394511885907, 54.808873218682805 37.577909118816194, 54.780691218656585 37.51388211875657, 54.756382218633945 37.495545118739486, 54.66874521855232 37.44012711868787, 54.630545218516744 37.44027311868801, 54.60470921849267 37.448327118695516, 54.580127218469784 37.45290911869978, 54.545827218437836 37.44415411869163, 54.51277321840706 37.43054511867895, 54.482209218378586 37.41415411866369, 54.424709218325034 37.38610911863756, 54.405682218307305 37.37790911862993, 54.35610021826113 37.360827118614026, 54.20166321811732 37.330273118585566, 53.90563621784162 37.35085411860473, 53.677318217628965 37.33534511859028, 53.52710021748908 37.323436118579195, 53.226900217209504 37.48360011872836, 53.21442721719788 37.49008211873439, 53.0702632170636 37.56508211880424, 53.00033621699848 37.6125911188485, 52.86823621687546 37.668554118900616, 52.7381362167543 37.718864118947465, 52.65500921667689 37.77763611900221, 52.545200216574614 37.797009119020245, 52.141773216198885 37.85232711907176, 52.0712362161332 37.87940911909699, 51.9716002160404 37.92782711914208, 51.788282215869685 38.10128211930362, 51.6326092157247 38.255873119447585, 51.46589121556943 38.48395411966001, 51.29270921540814 38.71485411987507, 51.294554215409846 38.9537091200975, 51.4782002155809 39.15104512028128, 51.653309215743974 39.40817312052076, 51.63190921572405 39.47577312058371, 51.635427215727304 39.527054120631476, 51.652654215743354 39.59908212069857, 51.668445215758055 39.644382120740744, 51.673436215762706 39.82550912090943, 51.67700921576605 40.29600912134762, 51.671227215760666 40.47007312150973, 51.63827321572995 40.67203612169783, 51.58753621568272 40.78074512179907, 51.53361821563249 40.92519112193358, 51.35433621546554 41.11677312211202, 51.25018221536854 41.23120912221859, 51.54537321564345 41.348518122327846, 51.906173215979464 41.50200912247081, 52.17234521622737 41.59915412256126, 52.44007321647669 41.74093612269331, 52.4913822165245 41.780818122730466, 52.80720921681862 42.01610912294959, 52.92304521692651 42.09360012302176, 52.95707321695821 42.11235412303924, 53.00624521700399 42.13569112306095, 53.3166632172931 42.23582712315422, 53.34082721731559 42.24332712316121, 53.39804521736889 42.25721812317414, 53.446591217414095 42.2679091231841, 53.54055421750161 42.27943612319484, 53.59804521755515 42.28416412319925, 53.641936217596026 42.28694512320183, 53.66304521761569 42.2891641232039, 53.7719362177171 42.30665412322017, 53.87721821781514 42.324854123237145, 53.90360021783971 42.330273123242165, 53.93512721786908 42.33860012324993, 53.995545217925354 42.348600123259246, 54.02332721795122 42.35040912326093, 54.05554521798123 42.348600123259246, 54.173045218090664 42.33720912324864, 54.19860021811445 42.332500123244245, 54.22581821813981 42.322491123234926, 54.24832721816077 42.31054512322382, 54.315273218223126 42.26832712318449, 54.5669362184575 42.15331812307738, 54.732209218611416 42.07332712300288, 54.761109218638325 42.05888212298942, 54.934154218799506 41.92999112286938, 54.96273621882611 41.90061812284202, 54.958327218822006 41.85527312279979, 54.96277321882616 41.816454122763645, 54.98069121884285 41.79250012274133, 55.001936218862625 41.77138212272166, 55.04790921890543 41.73360012268648, 55.125827218978 41.65193612261044, 55.14666321899742 41.62499112258533, 55.1938822190414 41.56276412252737, 55.2072182190538 41.54360912250954, 55.227763219072926 41.50555412247411, 55.23999121908432 41.488745122458454, 55.28916321913013 41.43970912241278, 55.31666321915574 41.42388212239803, 55.35554521919195 41.408327122383554, 55.39249121922634 41.38888212236543, 55.40749121924031 41.37069112234849, 55.41471821924705 41.35165412233076, 55.43610021926696 41.308318122290416, 55.45478221928437 41.288673122272115, 55.52888221935339 41.263882122249015, 55.65249121946849 41.267209122252126, 55.8058272196113 41.28874512227219, 55.833882219637445 41.300000122282654, 55.865273219666676 41.320973122302206, 55.89443621969383 41.33151812231202, 55.933600219730295 41.33360012231395, 56.00096321979305 41.328454122309154, 56.0150002198061 41.32555412230647, 56.21500021999236 41.31527312229687, 56.36027322012768 41.306382122288596, 56.52360922027978 41.29694512227982, 56.53375422028924 41.29829112228106, 56.54277322029765 41.296109122279034, 56.64415422039207 41.28916412227258, 56.66693622041328 41.28804512227154, 56.697209220441465 41.28721812227076, 56.748054220488825 41.29250012227567, 56.798336220535646 41.29888212228161, 56.83554522057031 41.29860912228136, 56.885273220616625 41.288327122271795, 56.92208222065091 41.27693612226119, 56.95610022068257 41.26999112225471, 57.03790922075876 41.2594451222449, 57.05707322077663 41.267909122252775, 57.133882220848164 41.345827122325346, 57.115963220831475 41.390827122367256, 57.08943622080676 41.40680012238212, 57.05707322077663 41.44276412241561, 57.041100220761734 41.47179112244265, 56.977482220702484 41.681936122638376, 56.96970922069525 41.860136122804334, 56.982627220707286 41.88901812283123, 57.0044362207276 41.9040181228452, 57.02916322075063 41.910264122851004, 57.0673542207862 41.91846412285864, 57.097218220814 41.92762712286719, 57.122073220837166 41.94332712288181, 57.14249122085616 41.961109122898364, 57.167909220879835 41.990273122925515, 57.19033622090072 42.032909122965236, 57.211109220920065 42.063609122993824, 57.24582722095241 42.095273123023304, 57.26416322096949 42.10971812303677, 57.2874912209912 42.123045123049195, 57.32360922102484 42.13860012306367, 57.35221822105149 42.149718123074024, 57.378191221075696 42.15929112308294, 57.41750022111228 42.17110912309394, 57.44499122113788 42.17388212309652, 57.47387322116478 42.17527312309781, 57.49777322118706 42.173327123096016, 57.52221822120981 42.17027312309315, 57.57999122126361 42.16304512308645, 57.620127221301004 42.15415412307814, 57.66443622134227 42.15360012307764, 57.838600221504464 42.187764123109446, 57.872763221536275 42.210818123130935, 57.90832722156941 42.26527312318163, 57.954163221612106 42.3422181232533, 57.961654221619085 42.37047312327962, 57.94804522160641 42.39916412330635, 57.94360022160225 42.44554512334955, 58.02150022167481 42.50134512340151, 58.053609221704704 42.508045123407754, 58.076382221725936 42.507500123407226, 58.101663221749476 42.503882123403855, 58.25139122188892 42.47137312337358, 58.28333622191866 42.462773123365565, 58.32500022195745 42.44693612335084, 58.37124522200054 42.42513612333053, 58.40436322203138 42.399018123306206, 58.41623622204244 42.358609123268565, 58.40880922203553 42.3063451232199, 58.44165422206612 42.294718123209066, 58.50676322212675 42.30252712321635, 58.342763221973996 42.52138212342015, 58.3129092219462 42.55013612344695, 58.293191221927856 42.56110012345715, 58.254718221892006 42.57277312346801, 58.229154221868214 42.578609123473456, 58.19943622184053 42.588327123482514, 58.151791221796145 42.61117312350379, 58.152973221797254 42.64241812353288, 58.266663221903144 42.694018123580946, 58.30208222193613 42.696518123583274, 58.33360022196547 42.688600123575895, 58.367209221996774 42.674436123562714, 58.40575422203267 42.66331812355236, 58.46110922208422 42.65915412354846, 58.52166322214063 42.65777312354717, 58.55651822217308 42.660964123550144, 58.57332722218874 42.67332712356168, 58.58250022219727 42.69554512358238, 58.58623622220077 42.71638212360176, 58.591663222205824 42.75971812364213, 58.596518222210335 42.780827123661794, 58.61353622222617 42.796173123676084, 58.73054522233517 42.70388212359012, 58.77575422237726 42.66290912355197, 58.804573222404116 42.63762712352843, 58.850273222446674 42.60416412349727, 58.9516632225411 42.54083612343828, 58.97804522256567 42.532354123430395, 59.023882222608364 42.52527312342377, 59.04721822263008 42.52388212342248, 59.068054222649494 42.52555412342406, 59.09331822267302 42.531382123429466, 59.14339122271966 42.54443612344164, 59.21610022278736 42.4973541233978, 59.239436222809104 42.476654123378495, 59.25999122282823 42.4468001233507, 59.259718222827985 42.42208212332767, 59.25902722282734 42.39485412330234, 59.26582722283368 42.367491123276835, 59.27930022284622 42.35110912326158, 59.42555422298244 42.29971812321372, 59.44901822300429 42.29388212320828, 59.487209223039855 42.29166412320623, 59.52999122307969 42.29360912320803, 59.55889122310663 42.29943612321347, 59.62221822316559 42.30888212322225, 59.7358272232714 42.322491123234926, 59.857500223384704 42.31610012322898, 59.914227223437535 42.29846412321254, 60.014445223530885 42.21749112313714, 60.026654223542266 42.16360912308696, 60.02804522354356 42.03249112296484, 60.13721822364522 41.91110012285179, 60.14915422365635 41.89151812283356, 60.15276322365969 41.88387312282643, 60.180409223685444 41.86054512280472, 60.253045223753105 41.82422712277088, 60.27415422377277 41.79103612273997, 60.25930022375891 41.7740911227242, 60.2256822237276 41.78069112273033, 60.193318223697474 41.79500012274366, 60.143327223650914 41.80624512275415, 60.1168002236262 41.80277312275089, 60.094436223605385 41.78735412273656, 60.07131822358386 41.7591641227103, 60.07582722358805 41.73054512268365, 60.13610922364418 41.659718122617676, 60.16068222366707 41.63180012259167, 60.18394522368874 41.590545122553266, 60.1606912236671 41.573609122537476, 60.12137322363046 41.557627122522604, 60.09735422360811 41.53075412249757, 60.07777322358987 41.44547312241815, 60.09214522360324 41.41075412238581, 60.14027322364808 41.38110012235819, 60.159718223666175 41.372773122350424, 60.19415422369826 41.359436122338025, 60.22276322372488 41.34916412232846, 60.26457322376385 41.338745122318755, 60.32582722382088 41.314436122296115, 60.344300223838076 41.3054091222877, 60.374436223866155 41.28777312227126, 60.408882223898246 41.26305412224826, 60.43249122392021 41.24221812222885, 60.45374522394002 41.22901812221656, 60.47999122396445 41.22110012220918, 60.51811822399998 41.217627122205954, 60.59388222407054 41.231654122219, 60.65638222412875 41.245827122232214, 60.67999122415071 41.252773122238665, 60.704991224173995 41.2580451222436, 60.81193622427361 41.25777312224332, 60.939991224392855 41.25097312223701, 60.96277322441409 41.245827122232214, 60.981800224431794 41.23443612222161, 61.00420022445266 41.20987312219873, 61.02249122446969 41.23027312221771, 61.085827224528686 41.237209122224186, 61.13895422457816 41.23220912221953, 61.16151822459918 41.20610012219521, 61.24527322467719 41.16735412215914, 61.28999122471882 41.16290012215498, 61.32930022475543 41.17304512216444, 61.361936224785836 41.192909122182925, 61.37970922480238 41.21401812220259, 61.3948542248165 41.267909122252775, 61.41484522483512 41.29880912228154, 61.44638222486449 41.30235412228487, 61.61138222501816 41.26749112225238, 61.63235422503769 41.25930012224475, 61.73777322513587 41.2027731221921, 61.87416322526289 41.1255451221202, 61.89332722528073 41.11166412210727, 61.94790922533156 41.04430012204452, 61.97054522535265 41.00860912201128, 61.98415422536533 40.97123612197649, 61.98750022536842 40.94582712195282, 61.98533622536641 40.92124512192993, 61.98638222536741 40.877627121889304, 61.999300225379415 40.83997312185423, 62.04471822542172 40.719154121741695, 62.11250022548484 40.60665412163692, 62.141109225511485 40.56443612159762, 62.185527225552875 40.50420912154152, 62.19249122555934 40.49360912153165, 62.21666322558187 40.48026412151921, 62.25922722562149 40.47339112151283, 62.33610922569309 40.43943612148121, 62.352636225708494 40.42457312146735, 62.39888222575158 40.278045121330905, 62.41081822576268 40.220273121277074, 62.425136225776015 40.12832712119146, 62.41832722576967 40.107491121172046, 62.4218002257729 40.082354121148654, 62.441209225791 40.03233612110205, 62.555409225897336 39.93054512100727, 62.58443622592438 39.909709120987856, 62.72720922605734 39.8294361209131, 62.7894362261153 39.799718120885416, 62.81347322613769 39.78749112087402, 62.87971822619937 39.74888212083806, 62.90165422621982 39.73582712082592, 62.95527322626975 39.69777312079046, 63.000000226311386 39.66693612076176, 63.03860922634735 39.64443612074081, 63.09331822639831 39.617209120715444, 63.130273226432735 39.599164120698646, 63.19915422649689 39.56666412066838, 63.28081822657293 39.52832712063267, 63.34249122663036 39.49832712060473, 63.47860022675712 39.42332712053488, 63.51860922679438 39.39860912051185, 63.56138222683424 39.364436120480036, 63.595827226866305 39.329718120447694, 63.6436092269108 39.27916412040062, 63.65720922692347 39.26332712038587, 63.69388222695764 39.2241641203494, 63.71040922697301 39.207764120334105, 63.8138822270694 39.15360012028367, 63.893054227143125 39.11388212024667, 63.98332722722719 39.06805412020401, 64.04387222728357 39.0297181201683, 64.08638222732318 39.000691120141255, 64.1324722273661 38.97554512011786, 64.1779002274084 38.95374512009755, 64.20567222743426 38.952073120095974, 64.23441822746105 38.95957312010296, 64.26693622749133 38.972764120115244, 64.30290022752482 38.98540912012703, 64.33811822755763 38.99075412013201, 64.36692722758445 38.9715181201141, 64.38302722759946 38.95312712009698, 64.38860022760463 38.94554512008992, 64.40192722761705 38.92943612007491, 64.41638222763052 38.91388212006041, 64.43483622764771 38.89693612004464, 64.46470922767551 38.873882120023154, 64.631654227831 38.76138211991838, 64.67151822786812 38.739018119897565, 64.7466452279381 38.70832711986898, 64.79803622798596 38.689991119851896, 64.8749822280576 38.66610011982965, 64.90762722808802 38.656800119820986, 64.93525422811373 38.64888211981361, 64.97638222815206 38.63193611979784, 64.99526322816962 38.621654119788246, 65.10664522827338 38.54804511971972, 65.1238722282894 38.53333611970601, 65.1516542283153 38.511936119686084, 65.19886322835924 38.47693611965349, 65.25665422841308 38.43471811961416, 65.29220922844618 38.41081811959191, 65.32818222847968 38.38985411957239, 65.56441822869971 38.2683271194592, 65.59720922873024 38.253882119445734, 65.62776322875868 38.24360911943617, 65.65776322878662 38.236382119429436, 65.69552722882182 38.228045119421694, 65.71638222884124 38.225818119419614, 65.73915422886245 38.225818119419614, 65.77692722889762 38.23443611942764, 65.80505422892381 38.257427119449034, 65.84027222895662 38.27360911946411, 65.87824522899197 38.28200911947195, 66.05581822915735 38.24110011943384, 66.07832722917831 38.233191119426465, 66.26560922935275 38.147354119346545, 66.2859542293717 38.12221811932312, 66.30636322939068 38.0956821192984, 66.32610022940906 38.081800119285475, 66.42387222950012 38.04360911924991, 66.4514362295258 38.03742711924414, 66.49220022956376 38.04208211924848, 66.52053622959016 38.04332711924965, 66.54136322960954 38.04083611924733, 66.57026322963645 38.035000119241886, 66.60026322966439 38.024436119232064, 66.62025422968301 38.01554511922379, 66.651372229712 37.99651811920606, 66.66609122972571 37.98163611919219, 66.67088222973018 37.96464511917637, 66.65998222972001 37.92707311914138, 66.63776322969932 37.904854119120685, 66.61609122967914 37.88471811910193, 66.55428222962158 37.81819111903998, 66.53983622960814 37.78082711900518, 66.5169362295868 37.53193611877337, 66.51914522958887 37.39026411864144, 66.53773622960617 37.3663821186192, 66.51241822958261 37.3616641186148, 66.48983622956158 37.344154118598496, 66.45450022952866 37.321518118577416, 66.44084522951593 37.31888211857496))) +UZB Uzbekistan POLYGON ((68.64267223156654 39.85823612093992, 68.62761823155253 39.6505451207465, 68.54026323147116 39.554709120657236, 68.52027223145257 39.54777312065076, 68.3847182313263 39.535554120639404, 68.17526323113123 39.5536001206562, 67.83803623081718 39.61950012071756, 67.72970923071628 39.629154120726554, 67.50443623050649 39.52888212063317, 67.44195423044829 39.483582120590995, 67.43150923043856 39.36790912048326, 67.40914523041775 39.29693612041717, 67.36600023037755 39.288782120409564, 67.37588223038676 39.21669112034243, 67.5218542305227 39.167700120296814, 67.62595423061967 39.1684641202975, 67.6968632306857 39.12846412026025, 67.69526323068419 39.01599112015552, 67.71734523070478 38.995136120136095, 67.86081823083839 38.97762712011979, 67.98441823095351 39.008045120148125, 68.11053623107097 38.99888212013957, 68.12636323108569 38.98096412012288, 68.18511823114042 38.89846412004604, 68.19364523114837 38.85172712000252, 68.17428223113032 38.82069111997362, 68.12004523107981 38.79798211995248, 68.07415423103708 38.66470911982836, 68.07123623103436 38.54388211971582, 68.12490923108433 38.427564119607496, 68.21984523117277 38.33012711951676, 68.33706323128192 38.26762711945855, 68.38297223132469 38.19485411939078, 68.33781823128263 38.04615411925229, 68.26846323121805 37.95228211916486, 68.17110023112735 37.93401811914785, 68.14255423110077 37.916309119131355, 68.07304523103605 37.76527311899069, 67.9172092308909 37.6172091188528, 67.83831823081744 37.50582711874907, 67.81749123079803 37.416382118665766, 67.84081823081976 37.35249111860625, 67.84137223082027 37.28166411854029, 67.8140092307948 37.21874511848169, 67.78741823077004 37.19081811845568, 67.779872230763 37.185818118451024, 67.74956323073476 37.222627118485306, 67.52638223052693 37.26860011852813, 67.38080923039135 37.21249111847587, 67.24609123026588 37.184991118450256, 67.225818230247 37.1974911184619, 67.20027223022322 37.24665411850769, 67.09208223012246 37.34327311859768, 67.0129092300487 37.37970911863161, 66.72110022977694 37.355554118609106, 66.53773622960617 37.3663821186192, 66.51914522958887 37.39026411864144, 66.5169362295868 37.53193611877337, 66.53983622960814 37.78082711900518, 66.55428222962158 37.81819111903998, 66.65998222972001 37.92707311914138, 66.67088222973018 37.96464511917637, 66.651372229712 37.99651811920606, 66.62025422968301 38.01554511922379, 66.54136322960954 38.04083611924733, 66.42387222950012 38.04360911924991, 66.32610022940906 38.081800119285475, 66.26560922935275 38.147354119346545, 66.05581822915735 38.24110011943384, 65.87824522899197 38.28200911947195, 65.80505422892381 38.257427119449034, 65.77692722889762 38.23443611942764, 65.71638222884124 38.225818119419614, 65.56441822869971 38.2683271194592, 65.29220922844618 38.41081811959191, 64.97638222815206 38.63193611979784, 64.7466452279381 38.70832711986898, 64.631654227831 38.76138211991838, 64.43483622764771 38.89693612004464, 64.33811822755763 38.99075412013201, 64.1779002274084 38.95374512009755, 63.71040922697301 39.207764120334105, 63.51860922679438 39.39860912051185, 63.34249122663036 39.49832712060473, 63.03860922634735 39.64443612074081, 62.87971822619937 39.74888212083806, 62.555409225897336 39.93054512100727, 62.441209225791 40.03233612110205, 62.4218002257729 40.082354121148654, 62.425136225776015 40.12832712119146, 62.39888222575158 40.278045121330905, 62.352636225708494 40.42457312146735, 62.19249122555934 40.49360912153165, 62.141109225511485 40.56443612159762, 62.04471822542172 40.719154121741695, 61.98638222536741 40.877627121889304, 61.98750022536842 40.94582712195282, 61.97054522535265 41.00860912201128, 61.87416322526289 41.1255451221202, 61.63235422503769 41.25930012224475, 61.44638222486449 41.30235412228487, 61.41484522483512 41.29880912228154, 61.361936224785836 41.192909122182925, 61.28999122471882 41.16290012215498, 61.24527322467719 41.16735412215914, 61.16151822459918 41.20610012219521, 61.13895422457816 41.23220912221953, 61.02249122446969 41.23027312221771, 61.00420022445266 41.20987312219873, 60.981800224431794 41.23443612222161, 60.939991224392855 41.25097312223701, 60.704991224173995 41.2580451222436, 60.51811822399998 41.217627122205954, 60.47999122396445 41.22110012220918, 60.32582722382088 41.314436122296115, 60.14027322364808 41.38110012235819, 60.09214522360324 41.41075412238581, 60.07777322358987 41.44547312241815, 60.09735422360811 41.53075412249757, 60.12137322363046 41.557627122522604, 60.18394522368874 41.590545122553266, 60.07582722358805 41.73054512268365, 60.07131822358386 41.7591641227103, 60.1168002236262 41.80277312275089, 60.143327223650914 41.80624512275415, 60.25930022375891 41.7740911227242, 60.27415422377277 41.79103612273997, 60.253045223753105 41.82422712277088, 60.15276322365969 41.88387312282643, 60.02804522354356 42.03249112296484, 60.014445223530885 42.21749112313714, 59.914227223437535 42.29846412321254, 59.857500223384704 42.31610012322898, 59.7358272232714 42.322491123234926, 59.44901822300429 42.29388212320828, 59.27930022284622 42.35110912326158, 59.25902722282734 42.39485412330234, 59.25999122282823 42.4468001233507, 59.21610022278736 42.4973541233978, 59.14339122271966 42.54443612344164, 59.04721822263008 42.52388212342248, 58.9516632225411 42.54083612343828, 58.804573222404116 42.63762712352843, 58.61353622222617 42.796173123676084, 58.596518222210335 42.780827123661794, 58.57332722218874 42.67332712356168, 58.55651822217308 42.660964123550144, 58.40575422203267 42.66331812355236, 58.30208222193613 42.696518123583274, 58.266663221903144 42.694018123580946, 58.152973221797254 42.64241812353288, 58.151791221796145 42.61117312350379, 58.3129092219462 42.55013612344695, 58.50676322212675 42.30252712321635, 58.44165422206612 42.294718123209066, 58.40880922203553 42.3063451232199, 58.41623622204244 42.358609123268565, 58.40436322203138 42.399018123306206, 58.32500022195745 42.44693612335084, 58.101663221749476 42.503882123403855, 58.02150022167481 42.50134512340151, 57.94360022160225 42.44554512334955, 57.961654221619085 42.37047312327962, 57.954163221612106 42.3422181232533, 57.872763221536275 42.210818123130935, 57.838600221504464 42.187764123109446, 57.66443622134227 42.15360012307764, 57.47387322116478 42.17527312309781, 57.378191221075696 42.15929112308294, 57.24582722095241 42.095273123023304, 57.122073220837166 41.94332712288181, 56.982627220707286 41.88901812283123, 56.96970922069525 41.860136122804334, 56.977482220702484 41.681936122638376, 57.041100220761734 41.47179112244265, 57.08943622080676 41.40680012238212, 57.115963220831475 41.390827122367256, 57.133882220848164 41.345827122325346, 57.05707322077663 41.267909122252775, 57.03790922075876 41.2594451222449, 56.95610022068257 41.26999112225471, 56.83554522057031 41.29860912228136, 56.66693622041328 41.28804512227154, 56.00096321979305 41.328454122309154, 55.99875421979098 45.00205412573047, 57.39221822108874 45.3205451260271, 58.57082722218641 45.570591126259956, 61.14916322458768 44.211100124993834, 62.02510922540347 43.48479112431741, 63.21138222650828 43.63638212445858, 63.997218227240126 43.570545124397285, 64.45803622766931 43.54804512437633, 64.93136322811011 43.737773124553, 65.26832722842394 43.432491124268694, 65.51901822865742 43.32110912416496, 65.82192722893953 42.877209123751555, 66.12387222922072 42.996936123863065, 66.0707822291713 42.42386412332934, 66.03665422913951 42.423327123328846, 66.02916322913254 42.00305412293744, 66.52638222959561 42.00305412293744, 66.56248222962921 41.71693612267097, 66.7199822297759 41.17500012216624, 66.87580922992103 41.14999112214295, 67.0719452301037 41.143300122136736, 67.43941823044594 41.15416412214685, 67.75533623074014 41.19214512218221, 67.93552723090798 41.183327122174006, 67.98942723095817 41.13054512212486, 68.1541632311116 41.03610912203689, 68.10331823106424 40.87943612189099, 68.05386323101817 40.84082712185503, 68.04803623101276 40.810273121826555, 68.23331823118531 40.69137312171583, 68.455263231392 40.59777312162865, 68.6080362315343 40.599718121630474, 68.64074523156475 40.61422712164398, 68.65192723157517 40.67166412169749, 68.62858223155342 40.71804512174069, 68.58915423151672 40.73888212176007, 68.56805423149706 40.86138212187416, 68.59360023152084 40.919991121928746, 68.72171823164015 40.97783612198262, 68.78581823169986 41.08568212208306, 68.87526323178315 41.11860012211372, 69.06456323195945 41.22221812221022, 69.07074523196522 41.35756412233627, 69.05962723195486 41.37679112235418, 69.2549912321368 41.47082712244176, 69.3538722322289 41.48443612245444, 69.63720923249278 41.67012712262738, 69.78637223263169 41.703327122658294, 69.92838223276397 41.711900122666265, 70.13999123296102 41.828318122774704, 70.24413623305801 41.9552361228929, 70.33777223314524 42.04288212297453, 70.38790023319191 42.06940912299922, 70.48483623328221 42.100518123028195, 70.53110023332528 42.06739112299735, 70.538318233332 42.04059112297239, 70.62820923341573 42.02426412295719, 70.6655362334505 42.096627123024575, 70.75068223352977 42.19884512311978, 70.8841452336541 42.20510012312559, 71.03318223379287 42.29899112321306, 71.06450023382206 42.30260012321639, 71.27505423401814 42.20419112312476, 71.26373623400761 42.17454512309715, 71.22249123396918 42.14190912306674, 70.98095423374426 42.042609122974284, 70.87720923364762 42.041773122973495, 70.85942723363107 42.02704512295978, 70.8466912336192 41.93117312287049, 70.78526323356198 41.9135731228541, 70.70020023348278 41.91010012285085, 70.53081823332502 41.800100122748404, 70.47457223327262 41.71649112267056, 70.30859123311805 41.633300122593084, 70.2047092330213 41.598718122560854, 70.18429123300228 41.582609122545875, 70.1809542329992 41.5412091225073, 70.20630923302281 41.51911812248673, 70.36998223317522 41.49926412246825, 70.41373623321599 41.47772712244819, 70.47415423327226 41.412173122387145, 70.53124523332542 41.4191181223936, 70.66970023345436 41.475854122446435, 70.71101823349284 41.47026412244122, 70.7934452335696 41.35495412233385, 70.81330923358811 41.25050012223656, 71.15693623390814 41.161054122153246, 71.2454722339906 41.19460012218451, 71.42359123415648 41.12084512211581, 71.44039123417213 41.14314512213659, 71.43441823416657 41.332591122313005, 71.44782723417904 41.35036412232958, 71.54568223427017 41.30237312228488, 71.59845423431935 41.31578212229735, 71.61804523433759 41.33356412231393, 71.65977223437645 41.42876412240258, 71.61941823433887 41.50411812247276, 71.64540023436305 41.554873122520036, 71.68830923440302 41.55626412252133, 71.88831823458929 41.33105412231157, 71.8883272345893 41.20063612219013, 71.90900923460856 41.18945412217971, 72.15019123483319 41.20397312219322, 72.18109123486195 41.192718122182754, 72.21547223489398 41.052336122052, 72.19548223487536 41.00659112200941, 72.3952632350614 41.04021812204073, 72.50332723516206 41.01674512201885, 72.60580923525751 40.927854121936065, 72.62130023527195 40.89480012190529, 72.65999123530796 40.87910912189068, 73.04914523567041 40.86827312188058, 73.15248223576663 40.847164121860914, 73.16754523578066 40.82910912184411, 73.14721823576173 40.799664121816676, 73.10414523572163 40.77507312179378, 72.80588223544385 40.67507312170065, 72.65388223530229 40.519373121555645, 72.59117223524387 40.52145412155758, 72.40460923507013 40.616436121646046, 72.3736452350413 40.60278212163334, 72.37997223504718 40.52619112156199, 72.43407223509757 40.48805412152649, 72.45304523511524 40.45868212149912, 72.42053623508497 40.38785412143315, 72.34526323501484 40.4093731214532, 72.25804523493363 40.465491121505465, 72.17956323486052 40.462027121502246, 72.11207223479767 40.432300121474555, 72.01277223470521 40.33437312138335, 72.04387223473415 40.26632712131999, 71.90359123460351 40.25049112130523, 71.78276323449097 40.174382121234345, 71.71422723442717 40.1479181212097, 71.50555423423282 40.2238181212804, 71.47109123420071 40.26876412132225, 71.38998223412517 40.30188212135309, 71.2991452340406 40.30993612136058, 71.2466452339917 40.28716412133937, 70.99567223375794 40.26764512132121, 70.98203623374525 40.24484512129996, 70.86067223363222 40.241191121296566, 70.74888223352812 40.20910012126669, 70.64499123343134 40.205909121263716, 70.62359123341142 40.21188212126927, 70.58942723337961 40.25520912130963, 70.46096323325997 40.350354121398226, 70.37553623318041 40.376400121422506, 70.34309123315018 40.445809121487144, 70.36998223317522 40.47132712151091, 70.73400923351426 40.675082121700655, 70.79680023357272 40.7255911217477, 70.78415423356097 40.74918212176968, 70.7124912334942 40.77036412178941, 70.66720923345204 40.82744512184257, 70.65803623344351 40.87022712188241, 70.54860023334157 40.97743612198224, 70.46081823325983 41.043282122043564, 70.4176272332196 41.04772712204772, 70.39116323319496 41.03661812203737, 70.37573623318059 41.00918212201182, 70.37441823317937 40.961818121967696, 70.32347223313192 40.899245121909416, 70.05026323287746 40.76998212178904, 69.81810923266127 40.712491121735496, 69.7596362326068 40.651936121679114, 69.7267822325762 40.63880912166687, 69.6690092325224 40.6552731216822, 69.53720023239964 40.78081812179914, 69.45150923231984 40.81110012182734, 69.3652632322395 40.77943612179786, 69.26999123215077 40.5955451216266, 69.2597092321412 40.50277312154017, 69.33873623221481 40.33346412138249, 69.31943623219684 40.20971812126726, 69.22692723211068 40.190545121249414, 69.0358182319327 40.2387451212943, 68.72790923164592 40.20250012126053, 68.60567223153208 40.165754121226314, 68.63665423156095 40.139991121202314, 68.71388223163288 40.11639112118033, 68.87622723178407 40.14762712120944, 68.99109123189103 40.1408271212031, 69.00873623190748 40.1036731211685, 68.99504523189472 40.0706181211377, 68.82296323173446 40.078654121145206, 68.78457223169869 40.06790912113519, 68.81164523172393 40.00082712107272, 68.90467223181057 39.89228212097163, 68.75755423167354 39.829645120913284, 68.72304523164141 39.868600120949566, 68.64267223156654 39.85823612093992)) +YEM Yemen MULTIPOLYGON (((47.25444521164721 13.615282096499257, 47.168882211567535 13.587500096473377, 47.005827211415664 13.556664096444663, 46.926527211341806 13.535973096425394, 46.882709211301005 13.515482096406316, 46.84901821126962 13.490691096383216, 46.81416321123717 13.47416409636783, 46.762500211189035 13.451664096346875, 46.691527211122946 13.428054096324885, 46.469300210915975 13.405136096303536, 46.351663210806436 13.406109096304448, 46.29610021075467 13.413054096310915, 46.16583621063336 13.41082709630885, 46.045554210521345 13.408609096306776, 45.94805421043054 13.397636096296552, 45.819163210310506 13.37944509627961, 45.659027210161355 13.3391640962421, 45.63194521013614 13.3254180962293, 45.56638221007509 13.263054096171217, 45.54527321005543 13.242773096152334, 45.49117321000503 13.183818096097426, 45.47930920999397 13.15847309607382, 45.462909209978704 13.132782096049894, 45.409582209929056 13.067636095989215, 45.38750020990847 13.055000095977448, 45.339718209863975 13.042218095965552, 45.31291820983901 13.039164095962704, 45.28597320981393 13.036245095959984, 45.24332720977421 13.025836095950297, 45.203882209737486 13.015000095940195, 45.17652720971199 13.005418095931276, 45.13097320966958 12.971391095899591, 45.10860020964873 12.948891095878636, 45.105545209645896 12.944991095874997, 45.06971820961252 12.860836095796628, 45.042318209586995 12.752382095695623, 45.01500020956155 12.83889109577619, 44.95444520950517 12.832218095769974, 44.87489120943107 12.803645095743363, 44.87950920943538 12.77240009571426, 44.92193620947489 12.768127095710284, 44.91721820947049 12.745000095688738, 44.90221820945652 12.7315270956762, 44.852773209410486 12.729164095673994, 44.7261002092925 12.768891095710998, 44.67832720924801 12.805000095744617, 44.621109209194714 12.816664095755485, 44.590409209166125 12.817082095755879, 44.5600002091378 12.807082095746566, 44.53000020910986 12.788745095729482, 44.4780542090615 12.740000095684081, 44.43680020902306 12.696109095643209, 44.409718208997845 12.681945095630013, 44.29458220889063 12.635973095587204, 44.18666320879012 12.616945095569477, 43.949854208569576 12.59465409554872, 43.92193620854357 12.611245095564172, 43.904582208527415 12.647427095597877, 43.82249120845094 12.685836095633647, 43.69721820833428 12.726391095671417, 43.5986732082425 12.748682095692175, 43.57040920821618 12.734582095679045, 43.52774520817644 12.68971809563726, 43.50978220815972 12.682009095630079, 43.49830920814904 12.680000095628202, 43.478882208130955 12.675000095623545, 43.46193620811516 12.687364095635061, 43.47811820813024 12.765691095708007, 43.48458220813626 12.795273095735567, 43.482773208134574 12.822636095761041, 43.40277320806007 12.971245095899448, 43.35305420801376 13.050554095973311, 43.276109207942085 13.171109096085587, 43.24971820791751 13.20569109611779, 43.230273207899415 13.269718096177428, 43.24152720790988 13.313473096218175, 43.25124520791894 13.342218096244949, 43.276109207942085 13.552500096440781, 43.280000207945704 13.605000096489675, 43.28500020795036 13.650273096531848, 43.286382207951675 13.672782096552808, 43.2794452079452 13.72027309659704, 43.23298220790193 13.873264096739518, 43.20138220787251 13.899718096764161, 43.172909207845976 13.920000096783042, 43.11832720779515 13.963191096823266, 43.08666320776567 13.993327096851345, 43.09110920776979 14.076391096928702, 43.09944520777756 14.153327097000357, 43.10277320778067 14.173609097019238, 43.06000020774081 14.295000097132288, 43.0211092077046 14.444718097271732, 43.02735420771043 14.550691097370418, 42.98916320767486 14.636391097450243, 42.96555420765287 14.692500097502489, 42.94471820763346 14.778609097582688, 42.94597320763464 14.813891097615553, 42.95555420764356 14.864864097663016, 42.94527320763399 14.917500097712036, 42.93582720762518 14.957773097749552, 42.8711092075649 15.124509097904834, 42.844445207540076 15.148336097927029, 42.78894520748838 15.177391097954086, 42.75393620745578 15.195391097970855, 42.71236320741707 15.210691097985091, 42.68110920738795 15.208327097982902, 42.679991207386905 15.236391098009037, 42.69916320740478 15.273609098043693, 42.72416320742806 15.301109098069304, 42.77903620747915 15.229982098003063, 42.802500207501 15.230273098003337, 42.8103362075083 15.262009098032891, 42.809300207507334 15.349445098114316, 42.78624520748588 15.464582098221555, 42.75479120745658 15.525627098278406, 42.718891207423155 15.570836098320513, 42.7036092074089 15.636109098381297, 42.69388220739987 15.700282098441065, 42.701109207406574 15.721527098460854, 42.726382207430134 15.73430909847275, 42.74485420744733 15.750691098488005, 42.757773207459365 15.830000098561868, 42.79916320749791 15.851945098582306, 42.8345822075309 15.88333609861155, 42.84194520753775 15.971391098693559, 42.84583620754137 16.07139109878669, 42.84583620754137 16.093327098807123, 42.81304520751084 16.311945099010714, 42.80778220750594 16.340554099037362, 42.78968220748908 16.377500099071767, 42.82353620752059 16.381182099075204, 42.91860920760914 16.423054099114196, 43.0598542077407 16.54236409922531, 43.07013620775027 16.560409099242122, 43.07943620775893 16.601109099280023, 43.10242720778035 16.677773099351427, 43.13471820781041 16.680000099353492, 43.20610920787689 16.672218099346253, 43.19777320786915 16.71582709938687, 43.16097320783487 16.835554099498367, 43.12353620779999 16.925136099581806, 43.1516632078262 17.122218099765348, 43.191936207863705 17.34221809997024, 43.25880920792599 17.41464510003769, 43.31388220797729 17.45971810007967, 43.34583620800703 17.476664100095448, 43.37360920803289 17.49513610011266, 43.407218208064194 17.513882100130118, 43.44513620809951 17.52645410014182, 43.513609208163274 17.521945100137614, 43.62082720826314 17.481245100099713, 43.63870020827977 17.469591100088863, 43.653882208293936 17.443609100064663, 43.67152720831035 17.419718100042417, 43.73860920837282 17.365554099991968, 43.76096320839366 17.35194509997929, 43.93916320855962 17.30645409993693, 44.08971820869982 17.346664099974376, 44.18527320878883 17.409164100032584, 44.366109208957226 17.4333361000551, 44.46666320905089 17.4333361000551, 44.566663209144025 17.40555410002922, 44.650000209221616 17.4333361000551, 45.216663209749385 17.4333361000551, 45.40000020992011 17.33333609996197, 46.100000210572034 17.250000099884346, 46.366663210820406 17.233336099868836, 46.750000211177394 17.283336099915402, 47.000000211410224 16.95000009960495, 47.18333621158098 16.95000009960495, 47.42964521181037 17.094891099739897, 47.46666321184486 17.116664099760172, 47.60000021196902 17.45000010007061, 47.8360822121889 17.740045100340737, 48.1833362125123 18.16666410073806, 49.11666321338154 18.616664101157156, 50.78333621493374 18.78889110131756, 51.221991215342285 18.865000101388432, 51.99929121606618 18.999345101513555, 52.782173216795314 17.34972709997723, 52.81228221682335 17.285527099917445, 53.11443621710475 16.642782099318836, 53.02471821702119 16.626664099303824, 52.939854216942166 16.605345099283966, 52.912773216916946 16.583609099263725, 52.89055421689625 16.569854099250918, 52.865554216872965 16.55721809923915, 52.733327216749814 16.506664099192065, 52.65221821667427 16.48721809917396, 52.617218216641675 16.483054099170076, 52.59638221662229 16.477218099164645, 52.568600216596394 16.463891099152235, 52.50582721653794 16.430273099120924, 52.48888221652217 16.41944509911083, 52.46360921649861 16.40305409909557, 52.439718216476365 16.384445099078235, 52.29430021634093 16.266527098968425, 52.22708221627835 16.16618209887497, 52.157700216213726 15.98479109870604, 52.18471821623888 15.864582098594084, 52.21388221626606 15.760000098496675, 52.23194521628287 15.674164098416739, 52.18916321624303 15.605273098352583, 52.04083621610488 15.559718098310157, 51.95832721602804 15.52639109827912, 51.71889121580506 15.423054098182874, 51.669645215759175 15.388127098150349, 51.66360921575355 15.358891098123124, 51.58277321567829 15.325282098091819, 51.49389121559551 15.29333609806207, 51.26805421538518 15.200554097975655, 51.24013621535917 15.187636097963633, 51.164163215288426 15.170554097947715, 51.07193621520253 15.150836097929357, 51.00124521513669 15.136391097915904, 50.86555421501032 15.105836097887448, 50.74944521490218 15.073327097857174, 50.72277321487735 15.065836097850195, 50.702909214858835 15.070554097854583, 50.551382214717734 15.043473097829363, 50.47639121464789 15.016945097804651, 50.45082721462407 15.005282097793796, 50.409436214585526 14.977773097768178, 50.17986321437172 14.838891097638836, 50.04311821424437 14.817918097619298, 50.029509214231695 14.84194509764167, 49.96013621416708 14.845000097644515, 49.71221821393618 14.770000097574666, 49.53416321377037 14.710000097518787, 49.41888221366301 14.655282097467833, 49.25332721350881 14.58360909740108, 49.11804521338283 14.526945097348303, 49.0943002133607 14.516809097338864, 49.07666321334429 14.503336097326326, 49.02590021329701 14.435627097263264, 49.00298221327566 14.352709097186036, 49.006454213278886 14.325418097160622, 48.84332721312697 14.157773097004494, 48.72069121301274 14.05555409690929, 48.69805421299168 14.0400000968948, 48.68639121298082 14.037500096892472, 48.610000212909654 14.04402709689856, 48.55388221285742 14.039100096893975, 48.42555421273789 14.008336096865321, 48.31110021263129 13.991945096850046, 48.2761092125987 13.98916409684746, 48.234445212559905 13.988891096847212, 48.19082721251928 13.996809096854577, 48.142491212474255 14.023054096879022, 48.07416321241064 14.043327096897912, 48.045273212383734 14.048336096902574, 48.01888221235916 14.05139109690542, 47.990136212332374 14.047082096901406, 47.95944521230379 14.037500096892472, 47.93235421227857 14.026391096882136, 47.90833621225619 14.004445096861687, 47.88729121223659 13.980073096838993, 47.85110021220288 13.951109096812019, 47.82000021217391 13.934164096796238, 47.77027321212762 13.91639109677969, 47.72152721208221 13.909027096772832, 47.65221821201766 13.876809096742818, 47.627218211994375 13.856945096724317, 47.61555421198352 13.840554096709056, 47.598054211967224 13.819309096689267, 47.451945211831145 13.688891096567815, 47.413891211795715 13.657773096538833, 47.39443621177759 13.646391096528234, 47.31860021170695 13.632500096515287, 47.28694521167748 13.624164096507528, 47.25444521164721 13.615282096499257)), ((54.22083621813516 12.650554095600782, 54.25666321816854 12.645973095596517, 54.447773218346526 12.576245095531576, 54.47347321837046 12.548745095505964, 54.41305421831419 12.478336095440397, 54.2225002181367 12.40250009536976, 54.17944521809662 12.374445095343631, 54.144300218063876 12.352918095323588, 54.124027218045 12.34819109531918, 54.0147182179432 12.344164095315435, 53.79277321773651 12.312773095286204, 53.755273217701586 12.308609095282321, 53.63610921759059 12.328891095301216, 53.595836217553085 12.339164095310778, 53.57110921753005 12.346391095317514, 53.37360021734611 12.491391095452556, 53.33082721730628 12.545973095503385, 53.37527321734768 12.553336095510247, 53.39312721736431 12.566600095522602, 53.406391217376665 12.601391095555002, 53.40790921737806 12.621391095573628, 53.40437321737477 12.655000095604919, 53.49971821746357 12.717218095662872, 53.650627217604125 12.703682095650265, 53.713609217662764 12.66221809561165, 53.76687321771237 12.622218095574397, 53.821800217763524 12.605482095558813, 54.00360921793285 12.658609095608284, 54.06555421799055 12.685554095633378, 54.098509218021235 12.703154095649765, 54.12666321804747 12.698891095645806, 54.14638221806584 12.69221809563959, 54.18139121809844 12.674164095622771, 54.22083621813516 12.650554095600782)), ((52.3413822163848 12.14471809512969, 52.26888221631728 12.147782095132541, 52.17889121623347 12.171945095155039, 52.12902721618701 12.1873640951694, 52.112782216171894 12.196109095177547, 52.103609216163335 12.201945095182978, 52.085554216146534 12.223536095203087, 52.09221821615273 12.240273095218683, 52.13901821619632 12.246527095224508, 52.16416321621975 12.238609095217129, 52.17333621622828 12.233609095212472, 52.18694521624096 12.21971809519954, 52.199163216252344 12.210836095191269, 52.20832721626087 12.205554095186343, 52.22055421627226 12.202773095183758, 52.23416321628494 12.201109095182204, 52.27888221632659 12.200554095181687, 52.29110921633796 12.201945095182978, 52.36221821640419 12.199718095180913, 52.39527321643499 12.196527095177942, 52.39457321643434 12.153054095137449, 52.38250021642307 12.148891095133578, 52.3413822163848 12.14471809512969)), ((42.58888220730208 15.27082709804111, 42.581245207294955 15.274027098044087, 42.56528220728009 15.290000098058954, 42.55597320727142 15.30416409807215, 42.56847320728306 15.38986409815196, 42.57860920729249 15.41110909817175, 42.60860020732042 15.450554098208485, 42.645000207354315 15.457218098214696, 42.65971820736803 15.447218098205383, 42.65139120736029 15.390827098152869, 42.634163207344244 15.339718098105266, 42.61416320732562 15.301664098069821, 42.597291207309894 15.274509098044533, 42.58888220730208 15.27082709804111)), ((42.78110920748108 13.909445096773212, 42.76305420746428 13.916109096779422, 42.69805420740374 13.995554096853411, 42.68916320739547 14.013609096870226, 42.7433272074459 14.058609096912136, 42.768191207469044 14.066527096919515, 42.78680020748638 14.047427096901728, 42.79555420749455 14.024164096880057, 42.799854207498555 13.996945096854702, 42.78985420748924 13.912500096776057, 42.78110920748108 13.909445096773212))) +ARM Armenia MULTIPOLYGON (((46.54037321098218 38.87559112002475, 46.51639121095985 38.87803612002702, 46.45193621089982 38.88999112003816, 46.37638221082946 38.906936120053956, 46.35109121080589 38.90998212005678, 46.29471821075339 38.8958181200436, 46.26860021072906 38.88234512003103, 46.245000210707076 38.86679112001656, 46.19553621066103 38.84414511999546, 46.17824521064492 38.84114511999266, 46.12360021059402 38.90998212005678, 46.107218210578765 38.93610012008111, 45.968736210449805 39.174573120303194, 45.96942721045045 39.19776412032479, 45.98609121046596 39.22304512034836, 46.00561821048416 39.249027120372546, 45.985127210465066 39.27540012039711, 45.855554210344394 39.34803612046474, 45.8289452103196 39.44630012055626, 45.81935421031068 39.54916412065208, 45.791936210285144 39.5655361206673, 45.73839121023528 39.57915412067999, 45.62665421013122 39.55999112066215, 45.599163210105615 39.551654120654376, 45.558327210067574 39.53387312063782, 45.528327210039635 39.51720912062231, 45.502354210015454 39.50443612061042, 45.46499120998064 39.494018120600714, 45.32692720985207 39.53895412064256, 45.2663912097957 39.611109120709756, 45.07554520961796 39.77228212085987, 45.047073209591446 39.77915412086625, 45.02110020956724 39.769854120857616, 44.99874520954643 39.751918120840884, 44.96053620951085 39.72942712081996, 44.926791209479404 39.719845120811016, 44.88957320944476 39.72290912081388, 44.85832720941565 39.724991120815815, 44.794282209356 39.71122712080299, 44.77886320934164 39.70638212079848, 44.74610020931112 39.73055412082101, 44.64138220921362 39.803745120889175, 44.59249120916806 39.83180012091529, 44.56026320913804 39.87943612095967, 44.551800209130164 39.89874512097765, 44.48778220907056 39.96277312103726, 44.39915420898802 40.0036091210753, 44.35166320894379 40.022218121092635, 44.282636208879495 40.046100121114875, 44.04429120865751 40.01034512108157, 43.9713732085896 40.010818121082025, 43.93388220855471 40.01360912108461, 43.91249120853476 40.018600121089264, 43.668400208307446 40.10318212116803, 43.648818208289214 40.124854121188235, 43.66852720830755 40.14617312120808, 43.715373208351195 40.15718212121834, 43.66165420830117 40.27443612132754, 43.606936208250204 40.36889112141549, 43.58305420822796 40.45110912149207, 43.59276320823699 40.50110012153863, 43.65304520829315 40.53138212156682, 43.717936208353564 40.62091812165022, 43.74138220837543 40.6666541216928, 43.750409208383815 40.74500012176577, 43.742491208376435 40.770264121789296, 43.67249120831124 40.92651812193483, 43.59520020823928 40.993327121997055, 43.56597320821206 40.99666412200017, 43.48387320813558 41.02277312202446, 43.45416320810793 41.09492712209166, 43.46077320811406 41.11296412210848, 43.546391208193825 41.13499112212898, 43.57013620821593 41.135545122129514, 43.59970920824347 41.129718122124075, 43.63750020827865 41.12304512211787, 43.73442720836894 41.11360012210906, 43.75624520838926 41.112627122108165, 43.79137320842196 41.118664122113785, 43.8336092084613 41.14554512213883, 43.85651820848264 41.1601271221524, 43.892491208516134 41.165409122157314, 43.99276320860952 41.16414512215613, 44.12276320873059 41.18192712217271, 44.14470920875104 41.184991122175546, 44.172700208777115 41.19686412218661, 44.24887320884804 41.2235911222115, 44.340545208933435 41.21249112220116, 44.42999120901672 41.19221812218228, 44.484154209067185 41.18776412217812, 44.566236209143625 41.185264122175795, 44.728600209294825 41.2122091222009, 44.82471820938434 41.21249112220116, 44.84887320940683 41.2130541222017, 44.86970920942625 41.21664512220502, 44.978600209527656 41.27026412225496, 45.022945209568974 41.29705412227992, 45.046945209591314 41.22330912221125, 45.143600209681324 41.20151812219095, 45.19304520972739 41.17304512216444, 45.21137320974444 41.159718122152015, 45.221091209753496 41.13998212213363, 45.20470920973824 41.12075412211573, 45.17596320971148 41.11500012211036, 45.127900209666706 41.118182122113325, 45.08207320962404 41.113636122109085, 45.07999120962208 41.08040912207815, 45.096373209637335 41.05970912205888, 45.350963209874465 41.00096412200415, 45.61943621012449 40.86658212187902, 45.6180452101232 40.83596412185048, 45.60270021010891 40.80047312181745, 45.57693621008491 40.77749112179603, 45.52331821003497 40.7630541217826, 45.45554520997186 40.74220912176318, 45.43638220995402 40.7337361217553, 45.42040020993912 40.71999112174248, 45.38915420991003 40.66373612169011, 45.41360020993278 40.60803612163821, 45.53638221004715 40.4569271214975, 45.63803621014182 40.39110912143619, 45.662763210164826 40.37582712142196, 45.88220921036921 40.26749112132106, 45.913345210398205 40.264500121318264, 45.95602721043795 40.27213612132539, 45.997727210476796 40.23082712128692, 45.977409210457864 40.11845412118225, 45.90797321039321 40.02394512109424, 45.88054521036767 40.014018121085, 45.84777321033715 40.01610912108694, 45.82443621031541 40.01998212109055, 45.76360921025875 40.02443612109471, 45.713609210212184 40.02609112109624, 45.68192721018269 40.025827121096, 45.63803621014182 40.02166412109213, 45.613600210119046 40.014436121085396, 45.59755421010411 39.99735412106949, 45.6077632101136 39.97179112104567, 45.70527321020444 39.96137312103596, 45.729709210227185 39.95831812103313, 45.7511002102471 39.953318121028474, 45.77930021027336 39.940545121016584, 45.7969362102898 39.91790012099548, 45.80471821029704 39.89207312097142, 45.82026321031151 39.86040012094193, 45.85068221033984 39.82901812091271, 45.88138221036846 39.80859112089368, 45.9176272104022 39.791664120877925, 45.960273210441926 39.77860012086575, 45.983873210463884 39.77749112086471, 46.008663210486986 39.7701911208579, 46.030536210507364 39.74553612083494, 46.04331821051926 39.72303612081399, 46.05749121053245 39.69984512079239, 46.18970921065559 39.607218120706136, 46.207627210672285 39.59707312069668, 46.244227210706356 39.59498212069474, 46.304573210762584 39.6165181207148, 46.329427210785724 39.62512712072282, 46.357218210811595 39.62650912072411, 46.52623621096902 39.57811812067902, 46.545691210987115 39.54936412065226, 46.51297321095666 39.475609120583556, 46.4486002108967 39.457764120566935, 46.40429121085543 39.45123612056088, 46.38602721083842 39.43866412054916, 46.3841542108367 39.40596412051869, 46.39818221084974 39.38415412049838, 46.55749121099811 39.26914512039127, 46.58138221102038 39.25360912037681, 46.620536211056844 39.2294271203543, 46.620473211056776 39.22165412034704, 46.54165421098338 39.189418120317015, 46.49609121094093 39.20360912033024, 46.45581821090343 39.21755412034324, 46.423145210873 39.20870012033498, 46.4244272108742 39.16561812029485, 46.45831821090576 39.142773120273574, 46.4774822109236 39.13665412026788, 46.495063210939975 39.12644512025838, 46.51777321096114 39.073736120209304, 46.52360021096655 39.04415412018173, 46.516100210959564 39.02484512016375, 46.50220921094663 38.99984512014046, 46.49553621094043 38.95734512010088, 46.54037321098218 38.87559112002475), (45.025827209571645 41.030545122031725, 45.049709209593885 41.03874512203936, 45.05526320959905 41.05971812205888, 45.02388220956985 41.08707312208435, 44.992636209540734 41.08540912208281, 44.984154209532846 41.05762712205694, 45.00999120955689 41.03305412203406, 45.025827209571645 41.030545122031725), (45.229163209761026 40.969154121974526, 45.24110020977213 40.98512712198942, 45.202027209735746 40.99943612200275, 45.206382209739814 40.979427121984116, 45.229163209761026 40.969154121974526)), ((45.528882210040166 40.606100121636416, 45.50610021001893 40.612082121641976, 45.49193621000575 40.636936121665144, 45.509436210022045 40.66179112168828, 45.563918210072785 40.66420912169053, 45.58790921009512 40.651100121678326, 45.573054210081295 40.63249112166099, 45.528882210040166 40.606100121636416))) +AZE Azerbaijan MULTIPOLYGON (((51.29270921540814 38.71485411987507, 51.09730921522615 38.623318119789815, 50.90722721504912 38.58136411975073, 50.71240021486767 38.54509111971694, 50.51363621468258 38.47230011964916, 50.30774521449081 38.402582119584224, 50.198973214389525 38.37843611956174, 49.96957321417588 38.333909119520285, 49.71452721393834 38.26280911945406, 48.88828221316885 38.44240911962132, 48.84117321312496 38.450482119628845, 48.78373621307148 38.44553611962422, 48.742209213032794 38.42416411960434, 48.66290021295893 38.389154119571714, 48.623509212922244 38.396500119578576, 48.59915421289958 38.41693611959761, 48.56526321286799 38.4713821196483, 48.43276321274459 38.624573119790966, 48.39873621271292 38.620536119787204, 48.36192721267864 38.60581811977352, 48.33165421265045 38.60283611977073, 48.243600212568424 38.672073119835204, 48.24690021257152 38.71540011987557, 48.18470921251358 38.75054511990831, 48.1493002124806 38.76110911991813, 48.123600212456665 38.77221811992848, 48.103045212437536 38.78360011993908, 48.0246362123645 38.833391119985464, 48.01319121235383 38.86304512001308, 48.01207321235282 38.89707312004475, 48.07679121241307 38.95388212009766, 48.14414521247579 38.96831812011112, 48.18526321251409 38.969145120111875, 48.224709212550835 38.97137312011395, 48.26371821258718 38.977600120119746, 48.28373621260582 38.98581812012742, 48.3087362126291 39.00374512014412, 48.325409212644615 39.03220912017062, 48.32692721264604 39.054436120191326, 48.29387321261524 39.11249112024538, 48.27235421259522 39.12651812025845, 48.22922721255503 39.13991812027092, 48.13332721246573 39.21096412033708, 48.12171821245491 39.25180012037512, 48.123873212456914 39.27818212039969, 48.14894521248027 39.30679112042634, 48.19853621252645 39.33610012045364, 48.24596321257064 39.34248212045958, 48.27887321260127 39.35026412046682, 48.357882212674866 39.389909120503745, 48.340545212658725 39.423454120534984, 48.32193621264139 39.44081812055117, 48.283873212605926 39.4727541205809, 48.25082721257516 39.49470912060136, 48.21249121253945 39.526373120630836, 48.159154212489796 39.57331812067457, 48.082491212418375 39.646236120742486, 48.06331821240053 39.665554120760476, 48.03831821237725 39.68332712077702, 48.014154212354754 39.699154120791746, 47.98470921232732 39.715582120807056, 47.81290021216731 39.67916412077315, 47.79388221214961 39.66680012076162, 47.76985421212723 39.633736120730845, 47.54250021191547 39.515264120620486, 47.46068221183927 39.49819112060459, 47.39166321177501 39.47054512057886, 47.33721821172429 39.424300120535776, 47.318609211706956 39.39749112051081, 47.28693621167747 39.37443612048935, 47.199500211596046 39.339991120457256, 47.16457321156352 39.335273120452854, 47.0997092115031 39.30443612042416, 47.04346321145073 39.237900120362184, 47.03388221144181 39.19672712032383, 46.95290021136637 39.15637312028625, 46.90873621132525 39.167909120297, 46.87470021129354 39.16750012029661, 46.84888221126951 39.16060912029019, 46.75894521118573 39.085964120220666, 46.74547321117319 39.051036120188144, 46.65220921108633 38.97692712011914, 46.57249121101208 38.91582712006223, 46.54037321098218 38.87559112002475, 46.49553621094043 38.95734512010088, 46.50220921094663 38.99984512014046, 46.516100210959564 39.02484512016375, 46.52360021096655 39.04415412018173, 46.51777321096114 39.073736120209304, 46.495063210939975 39.12644512025838, 46.4774822109236 39.13665412026788, 46.45831821090576 39.142773120273574, 46.4244272108742 39.16561812029485, 46.423145210873 39.20870012033498, 46.45581821090343 39.21755412034324, 46.49609121094093 39.20360912033024, 46.54165421098338 39.189418120317015, 46.620473211056776 39.22165412034704, 46.620536211056844 39.2294271203543, 46.58138221102038 39.25360912037681, 46.55749121099811 39.26914512039127, 46.39818221084974 39.38415412049838, 46.3841542108367 39.40596412051869, 46.38602721083842 39.43866412054916, 46.40429121085543 39.45123612056088, 46.4486002108967 39.457764120566935, 46.51297321095666 39.475609120583556, 46.545691210987115 39.54936412065226, 46.52623621096902 39.57811812067902, 46.357218210811595 39.62650912072411, 46.329427210785724 39.62512712072282, 46.304573210762584 39.6165181207148, 46.244227210706356 39.59498212069474, 46.207627210672285 39.59707312069668, 46.18970921065559 39.607218120706136, 46.05749121053245 39.69984512079239, 46.04331821051926 39.72303612081399, 46.030536210507364 39.74553612083494, 46.008663210486986 39.7701911208579, 45.983873210463884 39.77749112086471, 45.960273210441926 39.77860012086575, 45.9176272104022 39.791664120877925, 45.88138221036846 39.80859112089368, 45.85068221033984 39.82901812091271, 45.82026321031151 39.86040012094193, 45.80471821029704 39.89207312097142, 45.7969362102898 39.91790012099548, 45.77930021027336 39.940545121016584, 45.7511002102471 39.953318121028474, 45.729709210227185 39.95831812103313, 45.70527321020444 39.96137312103596, 45.6077632101136 39.97179112104567, 45.59755421010411 39.99735412106949, 45.613600210119046 40.014436121085396, 45.63803621014182 40.02166412109213, 45.68192721018269 40.025827121096, 45.713609210212184 40.02609112109624, 45.76360921025875 40.02443612109471, 45.82443621031541 40.01998212109055, 45.84777321033715 40.01610912108694, 45.88054521036767 40.014018121085, 45.90797321039321 40.02394512109424, 45.977409210457864 40.11845412118225, 45.997727210476796 40.23082712128692, 45.95602721043795 40.27213612132539, 45.913345210398205 40.264500121318264, 45.88220921036921 40.26749112132106, 45.662763210164826 40.37582712142196, 45.63803621014182 40.39110912143619, 45.53638221004715 40.4569271214975, 45.41360020993278 40.60803612163821, 45.38915420991003 40.66373612169011, 45.42040020993912 40.71999112174248, 45.43638220995402 40.7337361217553, 45.45554520997186 40.74220912176318, 45.52331821003497 40.7630541217826, 45.57693621008491 40.77749112179603, 45.60270021010891 40.80047312181745, 45.6180452101232 40.83596412185048, 45.61943621012449 40.86658212187902, 45.350963209874465 41.00096412200415, 45.096373209637335 41.05970912205888, 45.07999120962208 41.08040912207815, 45.08207320962404 41.113636122109085, 45.127900209666706 41.118182122113325, 45.17596320971148 41.11500012211036, 45.20470920973824 41.12075412211573, 45.221091209753496 41.13998212213363, 45.21137320974444 41.159718122152015, 45.19304520972739 41.17304512216444, 45.143600209681324 41.20151812219095, 45.046945209591314 41.22330912221125, 45.022945209568974 41.29705412227992, 45.05138220959546 41.316373122297904, 45.141373209679244 41.37665412235404, 45.186100209720905 41.40498212238043, 45.260963209790646 41.4492911224217, 45.28540020981339 41.45720912242908, 45.3066542098332 41.4611001224327, 45.341591209865726 41.46096412243256, 45.61110921011672 41.381927122358974, 45.71692721021529 41.34859112232792, 45.7129732102116 41.31179112229364, 45.71117321020992 41.28721812227076, 45.74804521024427 41.26027312224565, 45.80457321029692 41.230400122217844, 45.85081821033998 41.21277312220141, 45.86970921035757 41.206091122195204, 45.89554521038164 41.19749112218719, 45.92249121040672 41.18915412217942, 45.96610021044734 41.179154122170104, 45.996936210476065 41.17360912216495, 46.03957321051578 41.17027312216183, 46.062200210536844 41.171927122163396, 46.091518210564146 41.17887312216985, 46.135609210605224 41.20255412219191, 46.239991210702414 41.20470912219392, 46.27400921073411 41.178318122169344, 46.29415421075288 41.16276412215484, 46.340827210796334 41.12999112212432, 46.35970921081392 41.11693612211218, 46.37831821083125 41.104154122100255, 46.492763210937824 41.0518001220515, 46.51470921095827 41.04804512204802, 46.622491211058644 41.10054512209692, 46.6666542110998 41.150545122143484, 46.697200211128234 41.21165412220037, 46.71081821114092 41.258327122243855, 46.68963621112118 41.3173451222988, 46.62109121105735 41.36500012234319, 46.59331821103149 41.37943612235665, 46.55303621099398 41.386936122363636, 46.50263621094703 41.3962361223723, 46.33193621078806 41.48346412245351, 46.23332721069622 41.59859112256075, 46.21610021068017 41.62498212258532, 46.196091210661535 41.67749112263422, 46.194427210659995 41.69804512265338, 46.198045210663366 41.72499112267846, 46.20970921067422 41.74665412269863, 46.23046321069356 41.762473122713374, 46.2563822107177 41.76457312271532, 46.29081821074976 41.75777312270898, 46.32478221078139 41.756454122707765, 46.35054521080539 41.77331812272348, 46.41470921086514 41.831800122777935, 46.43582721088481 41.861800122805874, 46.45175421089965 41.89705412283871, 46.5052732109495 41.893600122835494, 46.56484521100498 41.88186412282457, 46.64220921107702 41.81762712276475, 46.761727211188315 41.86047312280465, 46.76943621119551 41.83096412277715, 46.7743632112001 41.79561812274423, 46.80692721123043 41.76914512271958, 46.86166321128141 41.73470912268752, 46.94053621135487 41.683873122640165, 47.021382211430165 41.61860012257938, 47.09235421149626 41.56929112253346, 47.129573211530925 41.57638212254005, 47.15859121155793 41.562909122527515, 47.25909121165154 41.420264122394656, 47.261036211653334 41.37429112235185, 47.27464521166601 41.32110012230231, 47.37109121175584 41.271936122256534, 47.57617321194684 41.21130912220005, 47.59943621196851 41.21527312220374, 47.630682211997595 41.232064122219384, 47.65151821201701 41.235545122222646, 47.72137321208206 41.21053612219933, 47.76081821211881 41.196582122186356, 47.79610021215166 41.19886412218847, 47.8591542122104 41.20776412219675, 47.91547321226284 41.2249911222128, 47.921791212268715 41.25151812223751, 47.90839121225625 41.27811812226227, 47.95831821230274 41.355818122334654, 48.070263212406985 41.46401812243542, 48.10582721244012 41.480264122450535, 48.14999121248124 41.488318122458054, 48.18610021251487 41.492209122461674, 48.228463212554345 41.501518122470344, 48.24887321257333 41.50916412247747, 48.3783182126939 41.57471812253851, 48.399709212713816 41.58914512255194, 48.41957321273233 41.609009122570455, 48.436927212748486 41.63915412259851, 48.53138221283646 41.76720912271779, 48.5839542128854 41.83577312278163, 48.770954213059554 42.04534512297681, 49.0416822133117 42.23078212314951, 49.38141821362811 42.463954123366676, 49.76062721398128 42.71075412359653, 50.12543621432101 42.31880912323149, 50.37760021455588 42.10811812303527, 50.58727321475115 41.93740912287629, 50.71710021487206 41.799827122748155, 50.82110021496891 41.617836122578666, 51.04086321517357 41.443664122416465, 51.25018221536854 41.23120912221859, 51.35433621546554 41.11677312211202, 51.53361821563249 40.92519112193358, 51.58753621568272 40.78074512179907, 51.63827321572995 40.67203612169783, 51.671227215760666 40.47007312150973, 51.67700921576605 40.29600912134762, 51.673436215762706 39.82550912090943, 51.668445215758055 39.644382120740744, 51.652654215743354 39.59908212069857, 51.635427215727304 39.527054120631476, 51.63190921572405 39.47577312058371, 51.653309215743974 39.40817312052076, 51.4782002155809 39.15104512028128, 51.294554215409846 38.9537091200975, 51.29270921540814 38.71485411987507), (45.528882210040166 40.606100121636416, 45.573054210081295 40.63249112166099, 45.58790921009512 40.651100121678326, 45.563918210072785 40.66420912169053, 45.509436210022045 40.66179112168828, 45.49193621000575 40.636936121665144, 45.50610021001893 40.612082121641976, 45.528882210040166 40.606100121636416)), ((44.813045209373485 39.63080912072812, 44.816373209376565 39.64581812074209, 44.79937320936074 39.68644512077992, 44.77886320934164 39.70638212079848, 44.794282209356 39.71122712080299, 44.85832720941565 39.724991120815815, 44.88957320944476 39.72290912081388, 44.926791209479404 39.719845120811016, 44.96053620951085 39.72942712081996, 44.99874520954643 39.751918120840884, 45.02110020956724 39.769854120857616, 45.047073209591446 39.77915412086625, 45.07554520961796 39.77228212085987, 45.2663912097957 39.611109120709756, 45.32692720985207 39.53895412064256, 45.46499120998064 39.494018120600714, 45.502354210015454 39.50443612061042, 45.528327210039635 39.51720912062231, 45.558327210067574 39.53387312063782, 45.599163210105615 39.551654120654376, 45.62665421013122 39.55999112066215, 45.73839121023528 39.57915412067999, 45.791936210285144 39.5655361206673, 45.81935421031068 39.54916412065208, 45.8289452103196 39.44630012055626, 45.855554210344394 39.34803612046474, 45.985127210465066 39.27540012039711, 46.00561821048416 39.249027120372546, 45.98609121046596 39.22304512034836, 45.96942721045045 39.19776412032479, 45.968736210449805 39.174573120303194, 46.107218210578765 38.93610012008111, 46.12360021059402 38.90998212005678, 46.17824521064492 38.84114511999266, 46.0747182105485 38.87193612002136, 45.95082721043312 38.887218120035584, 45.84110021033092 38.90360012005084, 45.60749121011335 38.95138212009533, 45.5386002100492 38.965545120108544, 45.518591210030564 38.9705451201132, 45.47726320999209 38.98496412012662, 45.4334732099513 39.00318212014358, 45.42443620994288 39.02276412016181, 45.421100209939766 39.06081812019727, 45.345545209869414 39.16470912029402, 45.298391209825496 39.19762712032468, 45.27123620980021 39.18720012031497, 45.225818209757904 39.19498212032221, 45.14352720968125 39.21685412034259, 45.141800209679644 39.247073120370715, 45.13054520966918 39.28555412040657, 45.11581820965546 39.312200120431385, 45.063045209606315 39.37304512048806, 45.00221820954965 39.4166911205287, 44.974709209524036 39.42053612053226, 44.9545732095053 39.432354120543295, 44.927773209480335 39.47664512058452, 44.90804520946196 39.53582712063965, 44.903045209457304 39.555545120658024, 44.88860020944384 39.60581812070484, 44.8684632094251 39.62234512072021, 44.813045209373485 39.63080912072812)), ((45.025827209571645 41.030545122031725, 45.00999120955689 41.03305412203406, 44.984154209532846 41.05762712205694, 44.992636209540734 41.08540912208281, 45.02388220956985 41.08707312208435, 45.05526320959905 41.05971812205888, 45.049709209593885 41.03874512203936, 45.025827209571645 41.030545122031725)), ((45.229163209761026 40.969154121974526, 45.206382209739814 40.979427121984116, 45.202027209735746 40.99943612200275, 45.24110020977213 40.98512712198942, 45.229163209761026 40.969154121974526))) +BHR Bahrain MULTIPOLYGON (((50.59304521475653 26.1508271081739, 50.605554214768176 26.14110910816484, 50.61305421477516 26.127773108152425, 50.61610921477799 26.117218108142595, 50.61694521477878 26.104718108130953, 50.61490021477687 26.090618108117823, 50.61832721478007 26.056391108085947, 50.61971821478136 25.980827108015575, 50.61860921478032 25.966945108002633, 50.60750021476997 25.86278210790563, 50.60249121476531 25.845836107889852, 50.5972182147604 25.836664107881305, 50.590827214754455 25.828609107873802, 50.57332721473816 25.809718107856213, 50.55527321472135 25.81194510785828, 50.468891214640905 25.945000107982196, 50.46388221463624 25.954164107990735, 50.46166321463417 25.965273108001085, 50.46249121463492 25.978336108013252, 50.466109214638294 25.98916410802333, 50.47666321464814 26.008054108040923, 50.48554521465641 26.02805410805955, 50.49000021466054 26.038327108069126, 50.49166321466211 26.05139110808129, 50.48610921465692 26.07305410810146, 50.48194521465305 26.082773108110516, 50.46944521464141 26.11166410813742, 50.45464521462762 26.198127108217946, 50.4533272146264 26.211527108230428, 50.458882214631586 26.224445108242463, 50.47124521464309 26.2355541082528, 50.49998221466984 26.239782108256733, 50.51082721467995 26.240000108256936, 50.53221821469987 26.234445108251776, 50.54732721471393 26.226927108244766, 50.58096321474528 26.238882108255908, 50.590827214754455 26.236245108253442, 50.60930021477165 26.206664108225894, 50.59888221476197 26.191945108212195, 50.55516321472123 26.194109108214207, 50.55416321472032 26.191391108211675, 50.56888221473403 26.170554108192263, 50.59304521475653 26.1508271081739)), ((50.771945214923136 25.57194510763476, 50.751936214904504 25.581945107644074, 50.74471821489777 25.58944510765106, 50.74249121489569 25.60055410766141, 50.74166321489494 25.670000107726082, 50.74166321489494 25.683054107738243, 50.74777321490063 25.695136107749505, 50.7641632149159 25.71139110776464, 50.773609214924676 25.716391107769297, 50.79471821494434 25.727364107779508, 50.79639121494591 25.71389110776697, 50.790836214940725 25.687218107742126, 50.77180021492299 25.681800107737075, 50.76360921491536 25.655000107712112, 50.76138221491331 25.59805410765908, 50.771945214923136 25.57194510763476)), ((50.650554214810086 26.24471810826134, 50.613045214775156 26.246945108263418, 50.603954214766674 26.263191108278548, 50.611245214773476 26.279164108293415, 50.62721821478834 26.28889110830248, 50.64054521480077 26.281945108296014, 50.65395421481324 26.27061810828546, 50.654309214813566 26.25055410826677, 50.650554214810086 26.24471810826134))) +IRN Iran MULTIPOLYGON (((60.80693622426895 31.99666411361825, 60.82346322428435 31.948464113573365, 60.8113822242731 31.65971811330445, 60.848809224307956 31.496109113152073, 61.713609225113345 31.383327113047045, 61.77110022516689 31.31832711298651, 61.76680022516288 31.256182112928627, 61.81110022520414 31.177218112855087, 61.8501272252405 31.023882112712286, 61.758327225155 30.790273112494717, 60.86630022432425 29.863654111631732, 61.3144362247416 29.39582711119604, 61.360273224784294 29.26582711107497, 61.42804522484741 29.151382110968385, 61.511936224925535 29.071109110893616, 61.651382225055414 28.785273110627415, 61.905545225292116 28.555000110412948, 62.39985422575248 28.419436110286696, 62.48909122583558 28.35561811022727, 62.592491225931866 28.233609110113633, 62.78221822610857 28.2637451101417, 62.75916322608711 27.99527310989167, 62.82193622614557 27.76027310967281, 62.839709226162114 27.474436109406597, 62.78027322610677 27.26680010921322, 62.814854226138976 27.234991109183596, 62.9358912262517 27.21471810916472, 63.20193622649947 27.26763610921401, 63.2848542265767 27.222218109171706, 63.330273226619 27.14888210910341, 63.328809226617636 27.127982109083945, 63.276518226568925 27.12055410907702, 63.252636226546684 27.080554109039767, 63.25819122655187 26.94040910890925, 63.21610022651265 26.85388210882867, 63.185127226483814 26.63916410862869, 62.77026322609743 26.648745108637613, 62.70388222603563 26.602218108594286, 62.437909225787905 26.566527108561047, 62.31527322567371 26.509027108507496, 62.27256322563392 26.420409108424963, 62.27489122563608 26.35660010836554, 62.13895422550948 26.379545108386907, 62.10388222547684 26.314445108326282, 61.85485422524491 26.230554108248143, 61.779991225175166 25.84389110788804, 61.761936225158365 25.80780910785444, 61.68762722508916 25.797500107844826, 61.64360922504815 25.298336107379953, 61.61102722501781 25.197645107286178, 61.518400224931554 25.16409110725492, 61.49943622491389 25.118054107212046, 61.4413732248598 25.075973107172857, 61.396236224817784 25.080827107177385, 61.21901822465273 25.123054107216703, 61.176382224613036 25.173609107263786, 60.6226272240973 25.269854107353424, 60.60360922407958 25.39777310747256, 60.55096322403057 25.441109107512915, 60.454991223941164 25.43166410750412, 60.41027322389954 25.39777310747256, 60.408463223897854 25.33290910741215, 60.4373092239247 25.329418107408898, 60.46680022395216 25.265973107349808, 60.29555422379269 25.34569110742406, 60.196936223700845 25.36527310744229, 59.958045223478365 25.372773107449277, 59.831663223360664 25.411382107485238, 59.61304522315706 25.39290910746803, 59.49054522304297 25.47353610754311, 59.45054522300572 25.477773107547065, 59.11999122269785 25.391664107466866, 59.05193622263448 25.393609107468677, 59.000136222586235 25.41332710748705, 58.91207322250423 25.518473107584967, 58.81832722241691 25.560000107623637, 58.368600221998065 25.60444510766503, 58.12818222177415 25.542909107607727, 58.05180022170302 25.5720821076349, 57.95123622160938 25.699991107754016, 57.778600221448585 25.66860910772479, 57.786109221455575 25.700827107754805, 57.730409221403704 25.747773107798523, 57.52416322121164 25.73777310778921, 57.31909122102064 25.771454107820574, 57.27138222097622 25.919445107958396, 57.23068222093829 25.98513610801959, 57.195545220905586 25.9994451080329, 57.16638222087843 26.077909108105985, 57.07513622079344 26.45513610845731, 57.08818222080558 26.633745108623643, 57.02346322074533 26.847500108822715, 56.84408222057826 27.030691108993338, 56.867491220600044 27.059436109020098, 56.808882220545485 27.123609109079865, 56.69054522043527 27.148327109102894, 56.35582722012353 27.20027310915127, 56.13276321991577 27.160273109114016, 55.956318219751466 27.03208210899463, 55.641382219458166 26.980136108946255, 55.57888221939996 26.911245108882085, 55.59832721941805 26.798609108777185, 55.41720921924937 26.754718108736313, 55.23971821908407 26.778745108758685, 54.78846321866382 26.490409108490155, 54.47249121836953 26.588327108581353, 54.29693621820604 26.71610910870035, 54.21193621812688 26.69582710868147, 54.0658272179908 26.724718108708373, 53.83610921777685 26.69916410868457, 53.686936217637935 26.732773108715875, 53.485963217450774 26.85513610882984, 53.43930021740729 26.974436108940935, 53.0011092169992 27.12943610908529, 52.7563822167713 27.28916410923405, 52.6083272166334 27.348191109289033, 52.57360921660106 27.386245109324463, 52.614991216639595 27.411245109347746, 52.62638221665023 27.461664109394704, 52.499718216532244 27.608609109531557, 52.43401821647106 27.642500109563116, 52.22416321627563 27.686382109603997, 52.02610021609115 27.828327109736193, 51.79221821587333 27.851109109757402, 51.71734521580362 27.832682109740247, 51.60638221570028 27.841945109748877, 51.43027321553626 27.93777310983812, 51.32527321543847 28.04833610994109, 51.26471821538206 28.154991110040413, 51.23416321535362 28.28166411015839, 51.093327215222445 28.497218110359142, 51.05471821518648 28.738745110584077, 51.00860921514354 28.80055411064164, 50.87895421502279 28.8309001106699, 50.801036214950216 28.92979111076201, 50.80027321494953 28.970900110800287, 50.82576321497325 28.991600110819576, 50.89172721503468 28.944854110776035, 50.92597321506659 29.005273110832306, 50.923745215064514 29.064582110887542, 50.82659121497403 29.136591110954598, 50.68714521484415 29.119582110938765, 50.638882214799224 29.142773110960363, 50.66874521482703 29.400345111200238, 50.63916321479948 29.470418111265502, 50.46582721463804 29.62444511140896, 50.39402721457117 29.655273111437666, 50.23756321442545 29.862218111630398, 50.14750021434156 29.932782111696113, 50.13360921432863 30.068882111822873, 50.05554521425594 30.202773111947565, 50.00319121420716 30.21863611196234, 49.89889121411005 30.198054111943165, 49.555054213789816 30.00721811176544, 49.49852721373716 30.067354111821444, 49.485827213725344 30.148673111897182, 49.423327213667136 30.170273111917297, 49.31581821356701 30.163609111911086, 49.004709213277266 30.29735411203565, 48.92887321320663 30.387045112119182, 49.06388221333239 30.40610911213693, 49.190473213450275 30.360691112094642, 49.263463213518264 30.429091112158332, 49.192773213452426 30.489718112214803, 49.10026321336625 30.516109112239377, 48.97888221325323 30.511527112235115, 48.94888221322529 30.496382112221013, 48.866382213148455 30.359027112093088, 48.862009213144376 30.308118112045676, 48.913609213192416 30.255000111996196, 48.94290921321971 30.169027111916137, 48.91735421319592 30.04069111179662, 48.867763213149715 30.020827111778118, 48.70805421300099 30.027218111784066, 48.617773212916916 29.953191111715128, 48.47338221278244 29.982900111742794, 48.41110021272442 30.103609111855206, 48.411945212725215 30.199673111944676, 48.28943621261112 30.32971811206579, 48.03249121237181 30.491382112216357, 48.036663212375714 30.996109112686412, 47.69388221205648 31.00110911269107, 47.69720921205956 31.40777311306981, 47.86443621221531 31.7986091134338, 47.63319121199993 32.053182113670886, 47.41608221179774 32.34945411394682, 47.43790021181806 32.38555411398043, 47.36123621174667 32.47380911406263, 47.270963211662604 32.488600114076405, 47.1327732115339 32.4658271140552, 46.74749121117506 32.753054114322694, 46.45082721089878 32.92527311448309, 46.304709210762695 32.96360911451879, 46.151654210620165 32.95263611450858, 46.10641821057803 32.97106411452573, 46.11305421058421 33.08305411463003, 46.19901821066426 33.19346411473286, 46.177145210643886 33.264782114799274, 46.04916321052471 33.38360011490994, 46.04422721052009 33.43735411496, 46.006473210484955 33.48578211500511, 45.87422721036177 33.499791115018155, 45.94478221042749 33.55436411506898, 45.898882210384755 33.63304511514225, 45.75169121024766 33.595027115106845, 45.75232721024824 33.63728211514619, 45.69672721019646 33.66943611517614, 45.50013621001338 33.94589111543361, 45.4468002099637 33.94249111543044, 45.403609209923474 33.97520011546091, 45.46720920998271 34.0770821155558, 45.5665182100752 34.151309115624926, 45.584163210091646 34.30127311576459, 45.5494362100593 34.34554511580582, 45.49235421000614 34.33512711579611, 45.438636209956115 34.457836115910396, 45.56292721007185 34.58610911602986, 45.71467321021319 34.55760911600332, 45.72957321022707 34.58561811602941, 45.70832721020727 34.659154116097895, 45.651654210154504 34.73520011616871, 45.69110021019122 34.81651811624445, 45.765054210260104 34.84627311627216, 45.79773621029054 34.91403611633527, 45.86776321035575 34.90360011632555, 45.89235421037867 34.973045116390225, 45.87777321036509 35.032491116445584, 45.94981821043217 35.0932731165022, 46.03575421051221 35.059227116470495, 46.16600921063352 35.10851811651639, 46.1866002106527 35.221718116621815, 45.99096321047051 35.485200116867205, 45.97999121046027 35.58471811695989, 46.03416321051074 35.68901811705703, 46.22942721069259 35.71220911707863, 46.33416321079014 35.77749111713942, 46.345200210800414 35.81419111717361, 46.29096321074991 35.831518117189745, 46.17290921063994 35.807354117167236, 46.08936321056214 35.865482117221376, 45.86790921035589 35.81777311717694, 45.75712721025272 35.817345117176544, 45.624518210129224 35.966282117315245, 45.51054521002308 36.017773117363205, 45.413882209933064 35.99541811734238, 45.35443620987769 36.06443611740666, 45.27916320980759 36.38110011770158, 45.243736209774596 36.42831811774555, 45.10694520964719 36.41818211773611, 45.013091209559775 36.54285411785223, 45.065409209608504 36.683045117982786, 45.025554209571396 36.736382118032466, 44.93922720949098 36.78207311807502, 44.85304520941074 36.794582118086666, 44.84450020940278 36.82192711811213, 44.905536209459626 36.89255411817791, 44.903118209457375 37.03047311830636, 44.81749120937761 37.05581811832995, 44.76617320932982 37.11228211838255, 44.81818220937825 37.29741811855497, 44.64860020922032 37.42777311867637, 44.58885420916468 37.44309111869063, 44.58443620916057 37.6138821188497, 44.617763209191594 37.717973118946645, 44.57679120915344 37.76680011899211, 44.22397320882487 37.89915411911538, 44.23888220883876 37.9602731191723, 44.48251820906566 38.34130011952715, 44.43672720902299 38.39480911957699, 44.31814520891257 38.38205411956511, 44.305263208900556 38.40053611958231, 44.3172182089117 38.61304511978025, 44.26180020886008 38.724291119883844, 44.3002632088959 38.84262711999406, 44.20942720881132 38.893464120041386, 44.16241820876752 39.005200120145474, 44.216445208817845 39.136518120267766, 44.03638220865017 39.385473120499626, 44.076863208687854 39.41165412052399, 44.20095420880341 39.41693612052893, 44.304527208899884 39.38729112050132, 44.40110020898982 39.416518120528536, 44.42582720901285 39.43644512054709, 44.47789120906134 39.64065412073728, 44.471082209055 39.698864120791484, 44.60846320918296 39.77915412086625, 44.813045209373485 39.63080912072812, 44.88860020944384 39.60581812070484, 44.9545732095053 39.432354120543295, 45.063045209606315 39.37304512048806, 45.13054520966918 39.28555412040657, 45.14352720968125 39.21685412034259, 45.298391209825496 39.19762712032468, 45.345545209869414 39.16470912029402, 45.421100209939766 39.06081812019727, 45.4334732099513 39.00318212014358, 46.17824521064492 38.84114511999266, 46.35109121080589 38.90998212005678, 46.54037321098218 38.87559112002475, 46.84888221126951 39.16060912029019, 46.95290021136637 39.15637312028625, 47.03388221144181 39.19672712032383, 47.0997092115031 39.30443612042416, 47.28693621167747 39.37443612048935, 47.39166321177501 39.47054512057886, 47.54250021191547 39.515264120620486, 47.76985421212723 39.633736120730845, 47.81290021216731 39.67916412077315, 47.98470921232732 39.715582120807056, 48.32193621264139 39.44081812055117, 48.357882212674866 39.389909120503745, 48.19853621252645 39.33610012045364, 48.123873212456914 39.27818212039969, 48.13332721246573 39.21096412033708, 48.29387321261524 39.11249112024538, 48.32692721264604 39.054436120191326, 48.3087362126291 39.00374512014412, 48.26371821258718 38.977600120119746, 48.07679121241307 38.95388212009766, 48.01207321235282 38.89707312004475, 48.0246362123645 38.833391119985464, 48.24690021257152 38.71540011987557, 48.243600212568424 38.672073119835204, 48.33165421265045 38.60283611977073, 48.43276321274459 38.624573119790966, 48.623509212922244 38.396500119578576, 48.66290021295893 38.389154119571714, 48.84117321312496 38.450482119628845, 49.71452721393834 38.26280911945406, 50.30774521449081 38.402582119584224, 50.71240021486767 38.54509111971694, 51.09730921522615 38.623318119789815, 51.29270921540814 38.71485411987507, 51.6326092157247 38.255873119447585, 51.9716002160404 37.92782711914208, 52.141773216198885 37.85232711907176, 52.65500921667689 37.77763611900221, 53.52710021748908 37.323436118579195, 53.90563621784162 37.35085411860473, 54.20166321811732 37.330273118585566, 54.35610021826113 37.360827118614026, 54.580127218469784 37.45290911869978, 54.66874521855232 37.44012711868787, 54.780691218656585 37.51388211875657, 54.808873218682805 37.577909118816194, 54.78186321865766 37.643045118876856, 54.83305421870534 37.7463821189731, 54.954709218818635 37.804991119027676, 55.14006321899126 37.95491811916732, 55.376518219211476 38.038464119245106, 55.43762721926839 38.083327119286906, 55.76388221957225 38.124164119324945, 55.987073219780115 38.072491119276805, 56.331800220101144 38.08693611929027, 56.349645220117765 38.13602711933598, 56.32298222009294 38.18283611937957, 56.419300220182635 38.25207311944405, 56.75574522049598 38.2862641194759, 56.86670922059932 38.2256091194194, 57.06262722078179 38.195409119391286, 57.18249122089341 38.28180011947174, 57.24151822094839 38.27235411946296, 57.372073221069996 38.09054511929364, 57.351663221050984 37.993254119203016, 57.378873221076304 37.974709119185746, 57.528600221215754 37.927218119141514, 57.69964522137505 37.926445119140794, 58.174436221817245 37.796391119019674, 58.197773221838986 37.78624511901022, 58.233736221872476 37.67867311891004, 58.40720922203403 37.64110911887505, 58.93360022252426 37.668600118900656, 59.05277322263527 37.631382118866, 59.23804522280781 37.518054118760446, 59.3430452229056 37.53554511877674, 59.37554522293587 37.49596411873988, 59.39305422295217 37.32305411857884, 59.479991223033124 37.23276411849476, 59.81304522334332 37.12470911839412, 60.06346322357655 37.011664118288834, 60.33124522382593 36.6580451179595, 61.15373622459194 36.65040911795239, 61.18950022462525 36.56895411787653, 61.162627224600215 36.41970911773754, 61.22081822465441 36.178882117513254, 61.201100224636036 36.06916411741106, 61.21166322464589 35.93749111728843, 61.26208222469285 35.816518117175775, 61.23318222466591 35.66262711703244, 61.287909224716884 35.55561811693279, 61.18360022461974 35.34860011673999, 61.10582722454731 35.28180011667777, 61.099782224541684 35.176591116579786, 61.136036224575435 35.132073116538336, 61.13166322457138 35.08581811649525, 61.05110022449634 34.78943611621922, 60.97665422442702 34.65075411609007, 60.85319122431204 34.567627116012645, 60.72387322419158 34.52790911597566, 60.88360922434035 34.35527311581488, 60.87887322433593 34.31971811578177, 60.675127224146195 34.31401811577646, 60.546109224026026 34.19638211566691, 60.50443622398723 34.12221811559783, 60.553591224033 33.82187311531811, 60.50869122399118 33.739954115241815, 60.5308272240118 33.63999111514872, 60.66610022413778 33.56750011508122, 60.89401822435005 33.55582711507034, 60.93888222439185 33.517036115034216, 60.852700224311576 33.48422711500366, 60.80331822426558 33.390827114916675, 60.58326322406063 33.14957311469199, 60.59582722407234 33.013609114565355, 60.85180022431072 32.261109113864535, 60.8550002243137 32.19054511379882, 60.80693622426895 31.99666411361825)), ((56.288327220060665 26.949973108918158, 55.987209219780226 26.72777310871122, 55.696100219509106 26.688882108675003, 55.32749121916581 26.546109108542026, 55.28360921912494 26.558609108553668, 55.2824912191239 26.658054108646283, 55.36027321919636 26.642773108632056, 55.76999121957792 26.792773108771755, 55.784163219591136 26.841109108816767, 55.737073219547284 26.926382108896192, 55.75458221956359 26.952082108920123, 55.85336321965556 26.9155541088861, 56.22054521999755 27.00055410896526, 56.288327220060665 26.949973108918158)), ((55.703745219516236 26.81235410878999, 55.63750021945452 26.78527310876477, 55.626382219444196 26.833054108809264, 55.69262721950588 26.929991108899543, 55.73499121954532 26.83805410881392, 55.731654219542236 26.79750010877615, 55.703745219516236 26.81235410878999))) +KWT Kuwait MULTIPOLYGON (((47.46339121184181 28.984464110812922, 47.45999121183863 28.999436110826863, 46.99666321140714 29.0530541108768, 46.80028221122424 29.0752731108975, 46.58777321102633 29.09805411091871, 46.54860921098984 29.103054110923367, 46.5469452109883 29.104200110924438, 46.547354210988686 29.105200110925367, 46.55818221099875 29.121454110940505, 46.581654211020634 29.143327110960882, 46.59888221103668 29.15610911097278, 46.63527321107057 29.178609110993733, 46.65383621108785 29.188482111002926, 46.690382211121886 29.230345111041913, 46.714909211144715 29.26631811107542, 46.77555421120121 29.356382111159306, 46.82776321124982 29.43360911123122, 46.85889121127883 29.475827111270547, 46.92401821133947 29.554718111344016, 46.94429121135835 29.578473111366137, 46.98137321139288 29.646109111429126, 47.04776321145471 29.794164111567014, 47.09443621149819 29.90708211167218, 47.11360021151603 29.946382111708786, 47.12887321153025 29.97471811173517, 47.14776321154784 29.996527111755483, 47.169991211568544 30.01527311177294, 47.2043002116005 30.03332711178976, 47.35110021173722 30.08166411183477, 47.39666321177967 30.082773111835806, 47.43666321181692 30.083054111836063, 47.72346321208403 30.084164111837097, 47.934991212281005 30.01777311177527, 47.94347321228892 30.01755411177507, 47.95110921229602 29.981664111741637, 47.982218212324995 29.864164111632206, 47.990000212332234 29.840691111610354, 48.006100212347235 29.80360911157581, 48.02610021236586 29.769854111544376, 48.05992721239738 29.731591111508735, 48.08805421242357 29.714164111492508, 48.14749121247891 29.615827111400932, 48.16686321249696 29.565136111353723, 48.1493002124806 29.547636111337425, 48.099718212434425 29.562500111351255, 48.0865822124222 29.580136111367693, 48.00790921234892 29.629645111413794, 47.97527321231854 29.630827111414902, 47.95596321230056 29.623745111408297, 47.70831821206991 29.407491111206895, 47.70721821206888 29.375827111177415, 47.821245212175086 29.329227111134003, 47.8541362122057 29.329954111134683, 47.86207321221312 29.330827111135505, 47.882073212231745 29.33777311114197, 47.92499121227169 29.361936111164468, 47.96220921230636 29.384436111185423, 47.973663212317035 29.394391111194693, 47.9874912123299 29.38499111118594, 48.00599121234714 29.36782711116996, 48.02860021236819 29.344991111148687, 48.07970921241579 29.25471811106462, 48.09740021243226 29.212509111025312, 48.122209212455374 29.103054110923367, 48.146109212477626 29.02902711085443, 48.17304521250273 28.97805411080695, 48.18500021251384 28.96110911079117, 48.2788822126013 28.836664110675272, 48.36054521267735 28.742218110587316, 48.379718212695195 28.714164110561185, 48.38082721269623 28.683045110532206, 48.37512721269093 28.660409110511125, 48.41659121272954 28.545273110403897, 48.30250021262327 28.54416411040286, 47.68888221205182 28.53888211039795, 47.61777321198559 28.614164110468053, 47.60276321197159 28.634991110487448, 47.57499121194573 28.703054110550838, 47.5766542119473 28.733054110578777, 47.574845211945615 28.770136110613322, 47.56470921193616 28.79666411063802, 47.54054521191367 28.850554110688208, 47.50694521188237 28.92305411075573, 47.46339121184181 28.984464110812922)), ((48.188536212517135 29.981927111741882, 48.19915421252705 29.966391111727418, 48.20831821253557 29.954718111716545, 48.27970921260206 29.86638211163428, 48.33553621265406 29.798882111571416, 48.34777321266546 29.782218111555892, 48.352218212669584 29.77166411154606, 48.35944521267632 29.74500011152122, 48.35999121267682 29.731936111509057, 48.35637321267345 29.713327111491736, 48.348882212666496 29.700000111479312, 48.33971821265794 29.686936111467148, 48.32999121264888 29.67500011145603, 48.31555421263545 29.66000011144206, 48.27832721260077 29.623882111408435, 48.26639121258967 29.613891111399127, 48.25277321257698 29.605000111390837, 48.24304521256792 29.599718111385926, 48.2283182125542 29.595273111381786, 48.202763212530385 29.594436111381, 48.1886002125172 29.596100111382555, 48.176518212505954 29.60277311138877, 48.16776321249779 29.612218111397567, 48.16249121249288 29.621109111405843, 48.07999121241605 29.773327111547616, 48.14610021247762 29.929718111693262, 48.114854212448535 29.97534511173575, 48.12276321245588 29.983609111743448, 48.155827212486685 29.992354111751595, 48.17554521250506 29.98916411174862, 48.188536212517135 29.981927111741882))) +QAT Qatar MULTIPOLYGON (((51.47463621557756 24.761509106879984, 51.435554215541174 24.661109106786483, 51.366245215476624 24.589582106719874, 51.334927215447465 24.572709106704153, 51.335063215447576 24.5989541067286, 51.34805421545968 24.634027106761266, 51.328327215441305 24.652218106778207, 51.27110921538801 24.6569451067826, 51.21437321533517 24.634445106761646, 51.215163215335906 24.620891106749028, 51.20444521532593 24.60819110673721, 51.178891215302144 24.586391106716903, 51.11136321523924 24.556045106688643, 50.97305421511044 24.576945106708095, 50.865909215010646 24.690000106813386, 50.83095421497808 24.749964106869243, 50.84360021498986 24.75920010687784, 50.86305421500799 24.79048210690698, 50.85721821500255 24.870554106981544, 50.84944521499531 24.913609107021642, 50.80513621495405 25.064300107161984, 50.76766321491914 25.12945410722267, 50.766391214917974 25.138882107231453, 50.760273214912274 25.186109107275428, 50.75527321490762 25.25985410734411, 50.751936214904504 25.43139110750387, 50.756382214908655 25.499582107567377, 50.78298221493341 25.522773107588975, 50.80778221495652 25.490273107558707, 50.81880921496679 25.465064107535227, 50.83832721498496 25.45971810753025, 50.84250021498883 25.4883271075569, 50.8333272149803 25.565273107628556, 50.82750021497486 25.593054107654424, 50.90721821504911 25.588891107650554, 50.95180021509063 25.599164107660116, 50.97305421511044 25.641945107699954, 50.95082721508973 25.633891107692463, 50.91916321506025 25.625273107684436, 50.89090021503392 25.659718107716515, 50.889927215033026 25.717709107770517, 50.89816321504068 25.730736107782647, 50.900691215043025 25.77465410782355, 50.93190021507212 25.802809107849782, 50.95596321509453 25.776664107825425, 50.974645215111906 25.808609107855176, 50.96971821510732 25.82417310786967, 50.96223621510035 25.823991107869503, 50.952909215091665 25.828954107874125, 50.94916321508819 25.859027107902136, 50.99832721513397 25.965273108001085, 51.036945215169936 26.042427108072943, 51.171945215295665 26.123609108148543, 51.244854215363574 26.152500108175445, 51.309436215423716 26.12680910815152, 51.34076321545288 26.105136108131347, 51.34513621545696 26.07916410810715, 51.34443621545631 26.042773108073263, 51.39687321550514 25.96124510799733, 51.41330021552045 25.94959110798648, 51.47860921558126 25.9530541079897, 51.50076321560189 25.949091107986007, 51.567218215663786 25.90770910794747, 51.59304521568785 25.78082710782931, 51.593463215688246 25.759864107809776, 51.58749121568266 25.693882107748337, 51.541945215640254 25.621109107680553, 51.51694521561697 25.613609107673568, 51.49666321559809 25.60860910766891, 51.485136215587346 25.58902710765068, 51.491173215592966 25.55009110761442, 51.475382215578264 25.521773107588047, 51.48860921559057 25.48000010754913, 51.504027215604935 25.464854107535032, 51.51992721561976 25.43229110750471, 51.517591215617585 25.383418107459192, 51.51055421561102 25.330827107410215, 51.510273215610766 25.302218107383567, 51.53208221563108 25.287218107369597, 51.575618215671625 25.28708210736947, 51.60319121569731 25.271873107355304, 51.604436215698456 25.233064107319166, 51.61443621570777 25.211664107299228, 51.61582721570906 25.178609107268443, 51.61194521570545 25.0137451071149, 51.569582215666 24.9219451070294, 51.531391215630435 24.876945106987492, 51.50381821560475 24.85389110696603, 51.47430921557725 24.784445106901345, 51.47463621557756 24.761509106879984))) +SAU Saudi Arabia MULTIPOLYGON (((55.000000218860805 20.000000102445483, 51.99929121606618 18.999345101513555, 51.221991215342285 18.865000101388432, 50.78333621493374 18.78889110131756, 49.11666321338154 18.616664101157156, 48.1833362125123 18.16666410073806, 47.8360822121889 17.740045100340737, 47.60000021196902 17.45000010007061, 47.46666321184486 17.116664099760172, 47.42964521181037 17.094891099739897, 47.18333621158098 16.95000009960495, 47.000000211410224 16.95000009960495, 46.750000211177394 17.283336099915402, 46.366663210820406 17.233336099868836, 46.100000210572034 17.250000099884346, 45.40000020992011 17.33333609996197, 45.216663209749385 17.4333361000551, 44.650000209221616 17.4333361000551, 44.566663209144025 17.40555410002922, 44.46666320905089 17.4333361000551, 44.366109208957226 17.4333361000551, 44.18527320878883 17.409164100032584, 44.08971820869982 17.346664099974376, 43.93916320855962 17.30645409993693, 43.76096320839366 17.35194509997929, 43.73860920837282 17.365554099991968, 43.67152720831035 17.419718100042417, 43.653882208293936 17.443609100064663, 43.63870020827977 17.469591100088863, 43.62082720826314 17.481245100099713, 43.513609208163274 17.521945100137614, 43.44513620809951 17.52645410014182, 43.407218208064194 17.513882100130118, 43.37360920803289 17.49513610011266, 43.34583620800703 17.476664100095448, 43.31388220797729 17.45971810007967, 43.25880920792599 17.41464510003769, 43.191936207863705 17.34221809997024, 43.1516632078262 17.122218099765348, 43.12353620779999 16.925136099581806, 43.16097320783487 16.835554099498367, 43.19777320786915 16.71582709938687, 43.20610920787689 16.672218099346253, 43.13471820781041 16.680000099353492, 43.10242720778035 16.677773099351427, 43.07943620775893 16.601109099280023, 43.07013620775027 16.560409099242122, 43.0598542077407 16.54236409922531, 42.91860920760914 16.423054099114196, 42.82353620752059 16.381182099075204, 42.78968220748908 16.377500099071767, 42.78933620748876 16.460827099149384, 42.734509207437696 16.525000099209137, 42.72069120742481 16.56750009924872, 42.72596320742974 16.59986409927886, 42.7319452074353 16.62250009929994, 42.73770920744067 16.66326409933791, 42.67221820737967 16.781945099448436, 42.64374520735316 16.811800099476244, 42.625273207335965 16.825273099488797, 42.583045207296635 16.835064099497913, 42.54034520725685 16.87450909953465, 42.54777320726379 16.938609099594345, 42.5479092072639 16.9982640996499, 42.518054207236105 17.029445099678938, 42.408336207133914 17.12139109976458, 42.36527320709382 17.11055409975448, 42.370554207098735 17.04000009968877, 42.35333620708269 17.080827099726804, 42.336391207066924 17.184164099823036, 42.325827207057074 17.253327099887457, 42.32471820705604 17.322218099951613, 42.32110920705267 17.398054100022236, 42.30708220703963 17.447636100068422, 42.19444520693472 17.542218100156504, 42.09389120684108 17.64971810025662, 41.87651820663862 17.812500100408215, 41.84610920661029 17.807918100403953, 41.79110920655907 17.831945100426324, 41.743891206515116 17.880273100471342, 41.72666320649907 17.89832710048816, 41.67889120645458 17.949445100535755, 41.596663206378 18.089509100666206, 41.59714520637843 18.121354100695868, 41.53666320632212 18.191664100761344, 41.513054206300126 18.229164100796268, 41.47721820626674 18.29055410085344, 41.4580542062489 18.32597310088643, 41.44388220623571 18.369718100927173, 41.44416320623597 18.39750010095304, 41.43847320623067 18.46221810101332, 41.40971820620388 18.503609101051865, 41.356245206154085 18.56541810110943, 41.32346320612356 18.58166410112456, 41.26221820606651 18.613054101153793, 41.20582720601399 18.700273101235027, 41.21333620602098 18.756382101287286, 41.244782206050274 18.82645410135254, 41.205554206013744 18.864718101388178, 41.174854205985156 18.866391101389738, 41.13458220594765 18.945209101463135, 41.148609205960696 18.987782101502788, 41.17534520598559 19.065000101574697, 41.15569120596729 19.08805410159617, 41.11943620593354 19.098054101605484, 41.087354205903665 19.10819110161492, 41.06332720588128 19.137218101641963, 41.04360920586291 19.18082710168258, 40.95610920578142 19.45221810193533, 40.843682205676714 19.533818102011324, 40.766663205605 19.602218102075028, 40.78555420562259 19.615409102087312, 40.80277320563863 19.65916410212806, 40.80055420563656 19.680273102147723, 40.78708220562402 19.71736410218226, 40.756936205595935 19.76416410222585, 40.732218205572906 19.78902710224901, 40.6811092055253 19.795273102254825, 40.658400205504165 19.793264102252948, 40.511382205367255 19.974164102421426, 40.44332720530386 20.008609102453505, 40.33554520520349 20.07360910251404, 40.28013620515188 20.10805410254612, 40.160273205040255 20.20027310263201, 40.12819120501035 20.235554102664864, 40.09694520498127 20.27194510269875, 40.05513620494233 20.28263610270872, 39.957500204851385 20.282218102708327, 39.906945204804316 20.284718102710656, 39.88000020477921 20.2877731027135, 39.803054204707564 20.333882102756448, 39.66069120457496 20.437909102853325, 39.633045204549234 20.470836102883993, 39.600273204518714 20.518745102928605, 39.56832720448895 20.56805410297453, 39.54444520446671 20.614436103017724, 39.48638220441265 20.716391103112684, 39.43749120436709 20.747500103141647, 39.42708220435742 20.765554103158465, 39.41916320435004 20.798054103188733, 39.448054204376945 20.79332710318434, 39.45708220438536 20.795827103186667, 39.447354204376296 20.824445103213307, 39.4149272043461 20.847009103234328, 39.38076320431426 20.84940010323656, 39.35013620428575 20.86736410325328, 39.27110920421214 20.949445103329722, 39.17485420412251 21.104027103473697, 39.15639120410532 21.148054103514696, 39.105827204058215 21.280000103637576, 39.15867320410743 21.37465410372573, 39.17082720411875 21.41027310375891, 39.17221820412004 21.437218103784005, 39.169445204117466 21.46139110380652, 39.163327204111766 21.50082710384325, 39.14603620409565 21.533327103873518, 39.09360920404683 21.61944510395371, 39.08666320404038 21.653327103985276, 39.06666320402175 21.72027310404762, 39.03360920399095 21.792218104114625, 39.018054203976476 21.811382104132477, 38.99304520395319 21.836936104156266, 39.01721820397569 22.12221810442196, 39.030827203988366 22.21471810450811, 39.10527320405771 22.37721810465945, 39.06277320401813 22.583327104851406, 38.96860920393041 22.74805410500481, 38.95277320391568 22.76777310502318, 38.89638220386317 22.846109105096133, 38.85103620382091 22.925064105169668, 38.88610920385358 22.91444510515977, 38.90110920386755 22.876945105124847, 38.91305420387869 22.849718105099498, 38.94666320390999 22.84561810509568, 38.960554203922925 22.865554105114242, 38.9411092039048 22.903891105149953, 38.89485420386174 22.96082710520298, 38.86804520383677 22.978609105219533, 38.758609203734835 23.173336105400892, 38.70811820368783 23.24284510546562, 38.69221820367301 23.291382105510834, 38.68916320367018 23.333609105550153, 38.683609203664986 23.391109105603704, 38.678327203660075 23.413327105624404, 38.674554203656555 23.422654105633086, 38.644436203628516 23.459718105667605, 38.583118203571416 23.515136105719222, 38.55367320354398 23.525136105728535, 38.48444520347951 23.690000105882064, 38.44687320344451 23.78909110597435, 38.24582720325728 23.95443610612834, 38.13666320315562 24.040554106208546, 38.08082720310361 24.068054106234158, 38.013609203041 24.089718106254338, 37.87860920291527 24.17082710632988, 37.75486320280004 24.258891106411895, 37.67485420272553 24.2981911064485, 37.62590020267993 24.270345106422553, 37.619718202674164 24.250973106404516, 37.59888220265475 24.250000106403604, 37.52735420258816 24.277354106429087, 37.488609202552055 24.31750010646647, 37.442363202509 24.37513610652016, 37.460273202525684 24.4141641065565, 37.450000202516094 24.45416410659375, 37.383418202454095 24.53900010667276, 37.37860920244961 24.560273106692577, 37.36889120244058 24.579436106710418, 37.32750020240201 24.63750010676449, 37.31110020238674 24.6569451067826, 37.2650002023438 24.7000001068227, 37.24124520232169 24.71624510683783, 37.15450920224092 24.840136106953224, 37.17624520226116 24.842082106955033, 37.19721820228068 24.838473106951668, 37.219718202301635 24.840973106953996, 37.244163202324415 24.852636106964866, 37.25721820233656 24.870273106981287, 37.27860920235648 24.975827107079596, 37.25804520233734 25.13277310722576, 37.25082720233061 25.15166410724335, 37.23554520231639 25.182500107272062, 37.210618202293176 25.207500107295346, 37.184163202268536 25.22860910731501, 37.12874520221692 25.288473107370763, 37.09582720218626 25.33652710741552, 37.0861092021772 25.36110910743841, 37.07860920217021 25.391664107466866, 37.077500202169176 25.433818107506127, 36.932500202034134 25.6450001077028, 36.828045201936874 25.744027107795034, 36.798954201909766 25.756600107806747, 36.79590020190693 25.71902710777175, 36.72416320184013 25.74985410780046, 36.696936201814765 25.78639110783449, 36.673882201793276 25.825836107871226, 36.65513620177583 25.8659731079086, 36.67895420179801 25.898954107939318, 36.705273201822536 25.95430010799086, 36.70930020182627 25.982218108016866, 36.70013620181774 26.015836108048177, 36.685827201804415 26.034582108065635, 36.66555420178554 26.048891108078962, 36.63000020175241 26.056664108086196, 36.608600201732486 26.058327108087752, 36.58666320171207 26.061109108090335, 36.54534520167357 26.078400108106436, 36.51250020164298 26.107636108133676, 36.49360920162539 26.135618108159733, 36.48166320161428 26.18444510820521, 36.30805420145259 26.49569110849508, 36.211800201362934 26.646245108635284, 36.14430020130007 26.717364108701517, 36.120000201277435 26.72944510871278, 36.097082201256114 26.74958210873153, 36.05193620121406 26.840827108816512, 36.04332720120604 26.870827108844452, 36.031800201195296 26.896527108868383, 35.99194520115819 26.926664108896446, 35.935554201105674 26.97305410893965, 35.90610920107824 26.999445108964238, 35.81916320099728 27.100136109058013, 35.80027320097969 27.158054109111944, 35.811391200990045 27.186109109138073, 35.79971820097916 27.21000010916032, 35.72500020090956 27.3063911092501, 35.637082200827706 27.35964510929969, 35.611382200803746 27.388336109326417, 35.56582720076133 27.44305410937737, 35.53249120073028 27.496109109426783, 35.52250020072097 27.51444510944387, 35.50804520070753 27.542773109470247, 35.50527320070495 27.56555410949146, 35.507500200707 27.602500109525863, 35.49555420069589 27.633054109554323, 35.39305420060043 27.775836109687305, 35.33290920054441 27.858745109764513, 35.31666320052929 27.878891109783282, 35.295000200509094 27.901391109804237, 35.232500200450886 27.964164109862693, 35.21721820043666 27.976664109874335, 35.187773200409254 27.996945109893232, 35.1605542003839 28.05666410994884, 35.05610920028661 28.112782110001106, 34.99708220023166 28.110836109999298, 34.97277320020902 28.099445109988693, 34.933882200172775 28.08332710997368, 34.91110920015157 28.077918109968635, 34.84652720009143 28.071391109962562, 34.70624519996079 28.13827311002484, 34.67874519993518 28.129445110016633, 34.64889119990738 28.093609109983248, 34.646991199905614 28.064373109956023, 34.64416319990298 28.038191109931645, 34.624791199884925 28.02576410992006, 34.57214519983589 28.09590010998538, 34.58860919985122 28.129445110016633, 34.63214519989177 28.17471811005879, 34.69250019994797 28.287218110163565, 34.73638219998884 28.38888211025825, 34.745000199996866 28.417773110285154, 34.772773200022755 28.478191110341427, 34.78721820003619 28.49340011035558, 34.806800200054425 28.539091110398132, 34.79833620004655 28.627218110480214, 34.79138220004006 28.65750011050841, 34.836391200082005 28.857773110694936, 34.84253620008772 28.88451811071984, 34.879436200122086 29.11500011093449, 34.883327200125706 29.135827110953898, 34.89804520013942 29.191945111006163, 34.909436200150026 29.228882111040562, 34.95082720018857 29.348473111151932, 34.96139120019842 29.36083611116345, 35.18721820040872 29.32694511113189, 35.541109200738305 29.272500111081172, 36.07000020123087 29.188891111003315, 36.272727201419684 29.33652711114081, 36.500545201631866 29.50277311129564, 36.74360920185822 29.864718111632726, 37.034436202129086 29.918054111682395, 37.41010020247896 29.985582111745288, 37.50278220256527 30.002218111760783, 37.66750020271866 30.336391112072008, 38.00139120302964 30.504164112228253, 37.561091202619565 30.95109111264449, 37.49000020255335 31.023054112711506, 37.29499120237173 31.217227112892346, 37.00527320210193 31.50555411316087, 37.202200202285326 31.556164113208013, 37.47193620253654 31.625000113272108, 37.709500202757795 31.684664113327685, 37.96388220299468 31.748336113386983, 37.98666320301592 31.7540541133923, 38.488327203483124 31.87916411350882, 39.0050002039643 32.00555411362653, 39.07221820402691 32.057782113675174, 39.1967452041429 32.15494511376566, 39.48758220441374 32.10555411371966, 40.07460920496047 32.00586411362683, 40.41332720527592 31.948327113573242, 41.44000020623207 31.373327113037732, 42.085000206832774 31.11166411279403, 42.92470020761482 30.51615411223942, 43.06500020774547 30.416664112146762, 43.81038220843968 29.86850011163625, 44.72166320928838 29.198327111012105, 46.12215421059267 29.08607311090755, 46.42667321087629 29.06166411088482, 46.5469452109883 29.104200110924438, 46.54860921098984 29.103054110923367, 46.58777321102633 29.09805411091871, 46.80028221122424 29.0752731108975, 46.99666321140714 29.0530541108768, 47.45999121183863 28.999436110826863, 47.46339121184181 28.984464110812922, 47.50694521188237 28.92305411075573, 47.54054521191367 28.850554110688208, 47.56470921193616 28.79666411063802, 47.574845211945615 28.770136110613322, 47.5766542119473 28.733054110578777, 47.57499121194573 28.703054110550838, 47.60276321197159 28.634991110487448, 47.61777321198559 28.614164110468053, 47.68888221205182 28.53888211039795, 48.30250021262327 28.54416411040286, 48.41659121272954 28.545273110403897, 48.425273212737636 28.542636110401446, 48.50165421280877 28.49513611035721, 48.51860021282454 28.416664110284117, 48.51874521282468 28.334718110207803, 48.60332721290345 28.12110911000886, 48.650409212947295 28.038191109931645, 48.85310021313606 27.855609109761602, 48.87750021315878 27.833609109741104, 48.874300213155806 27.761109109673583, 48.84679121313019 27.732464109646912, 48.85569121313847 27.802218109711873, 48.82020921310544 27.824909109733, 48.79860021308531 27.80736410971666, 48.788600213075995 27.744445109658074, 48.83887321312281 27.619718109541907, 48.9113182131903 27.599854109523406, 48.95873621323446 27.624164109546044, 48.98012721325438 27.616382109538804, 49.01666321328841 27.58332710950802, 49.05138221332075 27.545554109472832, 49.076654213344284 27.5397181094674, 49.17714521343785 27.551109109478006, 49.236518213493156 27.544300109471664, 49.30124521355344 27.489027109420192, 49.30873621356042 27.44485410937905, 49.22909121348624 27.45082710938462, 49.16693621342836 27.45860910939186, 49.12797321339207 27.44229110937667, 49.247491213503366 27.340545109281905, 49.40055421364593 27.157773109111687, 49.40887321365366 27.12721810908323, 49.444482213686825 27.13216410908784, 49.471654213712156 27.14389110909876, 49.492736213731774 27.16218210911579, 49.51103621374881 27.186109109138073, 49.54220921377785 27.171109109124103, 49.62249121385261 27.056664109017518, 49.66692721389401 26.977636108943926, 49.703327213927906 26.951109108919212, 49.786109214004995 26.90000010887161, 49.81081821402802 26.887218108859713, 49.86651821407989 26.859436108833833, 49.9027092141136 26.856482108831088, 49.951991214159506 26.850009108825063, 50.13277321432787 26.687500108673703, 50.15500021434855 26.66305410865094, 50.15874521435205 26.642636108631933, 50.08193621428052 26.68860910867474, 49.99638221420085 26.742500108724926, 49.98304521418842 26.69944510868484, 49.98249121418789 26.679436108666195, 50.002354214206406 26.56152710855639, 50.05040921425115 26.465136108466623, 50.08180021428038 26.44777310845045, 50.10971821430638 26.444164108447083, 50.173118214365445 26.421591108426057, 50.21180021440145 26.374927108382607, 50.21944521440858 26.300282108313084, 50.215273214404704 26.207636108226808, 50.20860921439848 26.181391108202362, 50.15582721434933 26.101109108127588, 50.11694521431312 26.090554108117757, 50.063118214263 26.178054108199248, 50.027009214229366 26.194791108214844, 49.9789542141846 26.13305410815734, 49.99389121419853 26.020000108052045, 50.10763621430445 25.915136107954396, 50.11409121431046 25.868682107911127, 50.13443621432941 25.82000010786578, 50.17949121437138 25.765891107815392, 50.2105452144003 25.737782107789215, 50.2559632144426 25.66506410772149, 50.25540921444207 25.630691107689486, 50.234300214422404 25.652500107709784, 50.23340021442158 25.67659110773222, 50.163109214356126 25.72000910777267, 50.13805421433278 25.726109107778342, 50.1486092143426 25.698745107752856, 50.305545214488774 25.516936107583533, 50.34680021452718 25.47541810754487, 50.369645214548456 25.458400107529016, 50.45770021463048 25.44409110751569, 50.48277321465383 25.413891107487572, 50.522773214691085 25.288264107370566, 50.53416321470169 25.204164107292243, 50.56000021472573 25.04950910714821, 50.57082721473583 25.038609107138058, 50.57391821473871 25.056909107155107, 50.606454214769 25.042636107141817, 50.64388221480388 24.994164107096665, 50.72639121488072 24.87708210698763, 50.74006321489344 24.794927106911118, 50.740454214893816 24.76711810688522, 50.775409214926356 24.72082710684211, 50.83095421497808 24.749964106869243, 50.865909215010646 24.690000106813386, 50.97305421511044 24.576945106708095, 51.11136321523924 24.556045106688643, 51.178891215302144 24.586391106716903, 51.20444521532593 24.60819110673721, 51.215163215335906 24.620891106749028, 51.25777321537561 24.615836106744325, 51.3061002154206 24.59333610672337, 51.292773215408204 24.56735410669917, 51.298927215413926 24.519673106654764, 51.345827215457604 24.54124510667485, 51.392218215500804 24.59555410672543, 51.40250021551037 24.61374510674237, 51.438745215544145 24.620136106748333, 51.48721821558928 24.58332710671405, 51.40805421551556 24.498336106634895, 51.33193621544467 24.438609106579264, 51.31750021543121 24.423609106565294, 51.30708221542153 24.404864106547834, 51.27902721539539 24.337354106484966, 51.2823542153985 24.30000010645017, 51.30791821542229 24.29124510644202, 51.352618215463934 24.29214510644286, 51.38458221549371 24.314164106463366, 51.407218215514774 24.319718106468542, 51.44166321554687 24.31555410646466, 51.47332721557635 24.309854106459355, 51.5060362156068 24.293327106443968, 51.52958221562875 24.260554106413437, 51.55013621564788 24.25139110640491, 51.5772182156731 24.255273106408524, 51.58422721567962 24.26046410641335, 51.58332721567879 24.11666410627943, 52.583327216610115 22.93889110518255, 55.141654218992755 22.633327104897973, 55.19916321904631 22.6997181049598, 55.66610921948117 21.999718104307874, 55.42220021925402 21.267509103625954, 55.000000218860805 20.000000102445483)), ((42.17055420691247 16.562773099244325, 42.13374520687819 16.571391099252352, 42.12110920686641 16.576945099257514, 42.11278220685867 16.58277309926295, 42.0834002068313 16.613264099291342, 42.10298220684953 16.619854099297484, 42.10889120685505 16.64138209931754, 42.09416320684133 16.658054099333057, 42.08582720683356 16.6638910993385, 42.07027320681908 16.67000009934418, 42.058327206807945 16.673609099347544, 42.036245206787385 16.6735540993475, 42.01666320676915 16.67000009934418, 42.00638220675958 16.666382099340822, 41.99805420675182 16.66082709933565, 41.98305420673785 16.647782099323493, 41.971382206726986 16.642218099318313, 41.9591632067156 16.64347309931948, 41.93193620669024 16.655827099330992, 41.89305420665403 16.68110909935453, 41.83860920660331 16.718891099389722, 41.77061820654001 16.778682099445405, 41.75500020652544 16.859445099520613, 41.753609206524146 16.876109099536137, 41.76444520653425 16.87360909953381, 41.77499120654406 16.86971809953019, 41.80901820657576 16.850136099511957, 41.841945206606425 16.823609099487243, 41.86138220662454 16.797364099462797, 41.865963206628805 16.780973099447536, 41.8736002066359 16.756245099424504, 41.89457320665545 16.735273099404978, 41.92055420667964 16.7216640993923, 41.94500020670239 16.710827099382215, 41.95777320671431 16.708882099380403, 42.069436206818295 16.710691099382075, 42.05402720680394 16.73332709940317, 42.04235420679308 16.724373099394825, 42.0277732067795 16.728609099398767, 42.015963206768504 16.73965409940905, 42.01610920676862 16.75389109942232, 42.041936206792684 16.805554099470427, 42.056663206806405 16.809445099474047, 42.075691206824104 16.810273099474827, 42.14249120688632 16.71582709938687, 42.159163206901866 16.653327099328664, 42.17750020691892 16.5844450992645, 42.178400206919775 16.566591099247873, 42.17055420691247 16.562773099244325)), ((41.886109206647546 16.999445099651, 41.921391206680426 16.98943609964168, 41.939509206697295 16.975764099628947, 41.98790920674236 16.755345099423664, 41.97582720673111 16.75166409942024, 41.92916320668766 16.764445099432137, 41.88360920664522 16.797773099463186, 41.8602732066235 16.829718099492936, 41.83721820660202 16.868609099529152, 41.83471820659969 16.882500099542085, 41.84263620660707 16.89541809955412, 41.870554206633074 16.898609099557092, 41.89332720665428 16.907082099564988, 41.92832720668687 16.931800099588003, 41.931245206689596 16.95152709960638, 41.927082206685725 16.964445099618402, 41.91569120667509 16.977354099630432, 41.90388220666412 16.983609099636254, 41.85333620661703 16.992218099644276, 41.842563206607 17.003191099654487, 41.85139120661523 17.01082709966161, 41.866309206629126 17.005064099656238, 41.886109206647546 16.999445099651))) +ARE United Arab Emirates MULTIPOLYGON (((56.36027322012768 25.42110910749429, 56.365554220132594 25.382218107458073, 56.375827220142156 25.341945107420557, 56.3816632201476 25.320827107400902, 56.37277322013932 25.261664107345794, 56.357500220125075 25.101664107196783, 56.35638222012406 25.081664107178156, 56.35666322012432 25.069164107166515, 56.373527220140005 24.9793821070829, 56.35214522012009 24.976527107080244, 56.33900922010787 24.96944510707364, 56.334645220103795 24.96180910706653, 56.33916322010802 24.926109107033284, 56.34013622010892 24.914027107022036, 56.33214522010147 24.895136107004447, 56.303327220074635 24.882500106992666, 56.28708222005952 24.870136106981164, 56.28047322005335 24.857273106969174, 56.269436220043076 24.849509106961946, 56.22610922000271 24.833609106947137, 56.18876321996794 24.825000106939115, 56.17971821995951 24.78166410689876, 56.14374521992602 24.74110910686099, 56.10416321988916 24.73471810685504, 56.0769452198638 24.738054106858144, 56.064436219852155 24.74423610686391, 55.981136219774584 24.871736106982652, 55.998745219790976 24.890273106999913, 56.028609219818776 24.8812451069915, 56.050827219839476 24.866109106977405, 56.03471821982447 24.94639110705218, 56.02277321981336 24.965827107070282, 56.00013621979227 24.97708210708076, 55.97657321977033 24.981991107085335, 55.94527321974118 24.982500107085798, 55.922218219719696 24.976527107080244, 55.88874521968853 24.959582107064463, 55.86639121966772 24.94221810704829, 55.84555421964831 24.920273107027853, 55.814027219618936 24.885827106995777, 55.803809219609434 24.860064106971777, 55.813891219618824 24.729718106850385, 55.82000021962449 24.701664106824254, 55.84360921964648 24.64971810677588, 55.8124912196175 24.596109106725947, 55.78138221958855 24.565418106697365, 55.79777321960381 24.476945106614963, 55.82000021962449 24.416664106558827, 55.81360921961854 24.31694510646595, 55.77895421958627 24.243645106397693, 55.86250021966407 24.21402710637011, 55.892082219691645 24.227427106382592, 55.91860921971633 24.23666410639119, 55.94860921974427 24.232573106387377, 56.023673219814185 24.083191106248265, 56.00708221979875 24.068609106234675, 55.87527321967599 24.03500010620337, 55.80138221960718 24.0200001061894, 55.68027321949438 24.03110910619975, 55.63790921945491 24.027909106196773, 55.51027321933606 23.972773106145425, 55.53819121936206 23.905000106082298, 55.556382219379 23.885764106064386, 55.56256321938474 23.768536105955206, 55.485836219313285 23.64166410583705, 55.421945219253786 23.507218105711843, 55.361382219197395 23.326109105543168, 55.3438912191811 23.2818001055019, 55.32360921916219 23.243891105466602, 55.296391219136865 23.201382105427015, 55.26749121910993 23.157773105386397, 55.24207321908628 23.11680910534824, 55.21416321906028 23.014027105252524, 55.21221821905846 22.9183271051634, 55.2133362190595 22.894164105140888, 55.21721821906311 22.851664105101307, 55.218609219064405 22.820554105072333, 55.217773219063645 22.800554105053706, 55.19916321904631 22.6997181049598, 55.141654218992755 22.633327104897973, 52.583327216610115 22.93889110518255, 51.58332721567879 24.11666410627943, 51.58422721567962 24.26046410641335, 51.623327215716046 24.264445106417057, 51.725827215811506 24.261109106413954, 51.773609215856 24.17833610633687, 51.77000021585263 24.1525001063128, 51.77277321585524 24.12916410629107, 51.7881912158696 24.04471810621243, 51.80033621588089 24.013300106183166, 51.81597321589547 23.997982106168905, 51.85416321593104 23.98805410615965, 51.934163216005544 23.987500106159132, 52.08596321614692 23.955973106129775, 52.20750021626009 23.970000106142834, 52.23166321628261 23.973891106146468, 52.254436216303816 23.980000106152147, 52.33090021637503 24.00203610617268, 52.434163216471205 24.05235410621954, 52.52304521655398 24.121664106284086, 52.5815912166085 24.19131810634896, 52.62624521665009 24.19680010635406, 52.65360921667556 24.166664106325996, 52.677218216697554 24.139718106300904, 52.77221821678603 24.136391106297808, 52.94360021694564 24.137773106299093, 53.05554521704991 24.121664106284086, 53.08027321707294 24.124164106286415, 53.145827217133984 24.135827106297285, 53.224445217207204 24.13610910629754, 53.32582721730162 24.102773106266497, 53.41499121738465 24.10750010627089, 53.459718217426314 24.1061091062696, 53.52944521749126 24.087773106252527, 53.55694521751687 24.070554106236486, 53.567500217526685 24.052909106220056, 53.58777321754559 24.04416410621191, 53.87416321781231 24.0597181062264, 54.123745218044746 24.141664106302713, 54.1863912181031 24.18305410634126, 54.24582721815844 24.217782106373605, 54.38194521828521 24.252218106405678, 54.42750021832762 24.285691106436857, 54.45638221835455 24.335282106483035, 54.4694452183667 24.366945106512517, 54.47749121837418 24.41027310655288, 54.502845218397795 24.437709106578424, 54.546663218438624 24.43305410657409, 54.57555421846553 24.440973106581467, 54.66916321855271 24.663327106788557, 54.6530452185377 24.71971810684107, 54.65027321853512 24.74694510686642, 54.70777321858867 24.801391106917137, 54.9463912188109 24.953609107058895, 55.00637321886674 24.9760451070798, 55.016936218876594 24.983054107086318, 55.05000021890737 25.00583610710754, 55.066382218922655 25.018054107118914, 55.12971821898162 25.08555410718178, 55.17805421902665 25.138882107231453, 55.19166321903933 25.154164107245677, 55.20555421905226 25.170273107260684, 55.216945219062865 25.18805410727724, 55.22916321907425 25.204718107292763, 55.26388221910659 25.24360910732898, 55.30193621914202 25.281945107364677, 55.32670921916508 25.30560010738671, 55.330827219168924 25.311945107392617, 55.36971821920514 25.36110910743841, 55.4248542192565 25.394245107469274, 55.43928221926993 25.407282107481407, 55.466518219295295 25.413954107487626, 55.493018219319964 25.45943610752998, 55.504163219330366 25.473609107543183, 55.51807321934331 25.511864107578816, 55.52750021935208 25.54000010760501, 55.54270921936626 25.565482107628753, 55.56367321938578 25.581591107643746, 55.564745219386765 25.574054107636726, 55.545582219368924 25.548073107612538, 55.54913621937223 25.52575410759175, 55.58524521940586 25.526409107592357, 55.63212721944953 25.536473107601736, 55.63792721945492 25.5557731076197, 55.647345219463716 25.58223610764435, 55.691109219504455 25.623054107682364, 55.747100219556614 25.661109107717806, 55.859436219661234 25.720418107773042, 56.02479121981523 25.88257310792406, 56.043609219832746 25.928609107966935, 56.073609219860685 26.025973108057613, 56.079936219866596 26.06556410809449, 56.15318221993479 26.083882108111553, 56.185554219964956 26.014718108047134, 56.16581821994657 25.90805410794779, 56.139163219921755 25.832500107877422, 56.140827219923295 25.734991107786612, 56.14721821992924 25.666109107722463, 56.15897321994021 25.662500107719097, 56.18332721996288 25.654991107712107, 56.23803622001384 25.62610910768521, 56.26971822004333 25.63601810769444, 56.32819122009781 25.608327107668657, 56.34694522011526 25.594300107655584, 56.368745220135565 25.519445107585867, 56.36527322013234 25.465827107535944, 56.36027322012768 25.42110910749429)), ((53.78416321772849 24.12500010628719, 53.678054217629665 24.160136106319925, 53.66555421761802 24.15555410631565, 53.65471821760792 24.152218106312546, 53.63832721759266 24.15180010631215, 53.62694521758206 24.158891106318762, 53.62471821757998 24.169718106328844, 53.63138221758621 24.177500106336083, 53.64027321759448 24.18305410634126, 53.70860921765811 24.22166410637722, 53.85270021779232 24.267773106420165, 53.95916321789147 24.19110910634876, 53.96485421789677 24.179445106337894, 53.95500021788757 24.145827106306598, 53.946382217879574 24.14000010630116, 53.899991217836345 24.132500106294174, 53.821391217763164 24.137218106298576, 53.78416321772849 24.12500010628719)), ((54.47263621836967 24.41977310656172, 54.33058221823737 24.456782106596194, 54.38669121828963 24.512882106648433, 54.47263621836967 24.41977310656172))) +AFG Afghanistan MULTIPOLYGON (((61.2765542247063 35.60724511698086, 61.296382224724795 35.62853611700069, 61.37505422479805 35.63610011700774, 61.42934522484862 35.554773116932, 61.44680022486486 35.5516541169291, 61.50332722491751 35.50943611688977, 61.528463224940936 35.48373611686584, 61.57666322498582 35.4508271168352, 61.59582722500366 35.44415411682898, 61.79832722519225 35.411654116798715, 61.8175002252101 35.41888211680545, 61.96569122534814 35.459164116842956, 61.99166322537232 35.4588821168427, 62.04270022541985 35.44123611682626, 62.07249122544758 35.41999111680647, 62.127773225499084 35.37470911676431, 62.13256322550353 35.3680541167581, 62.16360922553244 35.33581811672808, 62.269991225631514 35.25624511665397, 62.27380922563509 35.20144511660294, 62.31211822567076 35.1459911165513, 62.33901822569581 35.16999111657364, 62.361109225716376 35.19860011660029, 62.387218225740696 35.22720911662694, 62.410545225762434 35.25054511664867, 62.42721822577795 35.26500011666214, 62.469536225817365 35.28756411668314, 62.5130542258579 35.27374511667027, 62.527909225871724 35.258609116656174, 62.54957322589192 35.23666411663574, 62.62999122596679 35.22581811662563, 62.72707322605723 35.25763611665528, 62.83693622615954 35.32416411671723, 62.88319122620263 35.357491116748264, 62.90331822622136 35.374164116763794, 62.9224912262392 35.38416411677311, 62.98610922629845 35.4158271168026, 63.02304522633287 35.427773116813725, 63.05054522635848 35.429991116815785, 63.08680022639223 35.43220911681786, 63.10735422641139 35.45693611684088, 63.12442722642729 35.53971811691798, 63.09930022640387 35.556382116933506, 63.10533622640949 35.63373611700554, 63.13721822643919 35.65276411702327, 63.184718226483426 35.67360911704267, 63.15832722645885 35.76416411712701, 63.10485422640906 35.831936117190125, 63.12310922642607 35.86279111721886, 63.2044362265018 35.86166411721781, 63.24027322653518 35.856654117213154, 63.27276322656542 35.85277311720954, 63.29582722658691 35.8516641172085, 63.317218226606826 35.85221811720902, 63.34249122663036 35.85721811721368, 63.52277322679828 35.90290911725623, 63.55013622682375 35.9179091172702, 63.58999122686086 35.958254117307774, 63.613054226882355 35.96749111731637, 63.63332722690123 35.96943611731818, 63.65554522692193 35.96915411731793, 63.69804522696151 35.97082711731949, 63.76888222702749 35.97873611732685, 63.80138222705776 35.98763611733514, 63.88897322713933 36.031627117376104, 63.92720922717493 36.03832711738235, 63.97777322722203 36.03916411738312, 64.09498222733117 36.123318117461494, 64.16457222739598 36.16471811750006, 64.35331822757178 36.23081811756161, 64.42712722764051 36.246036117575784, 64.46638222767709 36.251382117580775, 64.50360022771173 36.28054511760793, 64.52388222773064 36.29943611762552, 64.58137222778416 36.36943611769071, 64.60138222780282 36.39694511771634, 64.61526322781572 36.423609117741165, 64.6259542278257 36.4536001177691, 64.6330452278323 36.486382117799636, 64.63039122782982 36.532082117842194, 64.61457222781507 36.56735411787504, 64.6098452278107 36.59999111790543, 64.61692722781729 36.636382117939334, 64.62609122782581 36.663882117964945, 64.63735422783631 36.689018117988354, 64.65207222785 36.71013611800802, 64.69359122788867 36.76832711806222, 64.71554522790913 36.802773118094294, 64.74432722793594 36.85062711813886, 64.7763822279658 36.89388211817915, 64.79290022798116 36.91943611820294, 64.80004522798782 36.955409118236446, 64.7902632279787 37.0072181182847, 64.78553622797432 37.02804511830409, 64.77762722796695 37.062636118336314, 64.78068222796978 37.10249111837342, 64.79372722798195 37.12151811839115, 64.82304522800925 37.138600118407055, 64.84443622802917 37.14804511841585, 65.04359122821464 37.23554511849734, 65.06679122823624 37.2429091185042, 65.09331822826096 37.24610011850717, 65.36220022851137 37.2486001185095, 65.39138222853856 37.2486001185095, 65.43725422858128 37.244373118505564, 65.46775422860966 37.244991118506135, 65.52415422866221 37.24790911850886, 65.56304522869843 37.261318118521345, 65.64852722877802 37.35228211860607, 65.64991822877934 37.39617311864694, 65.64429122877408 37.4274911186761, 65.6456912287754 37.45388211870069, 65.66665422879493 37.494991118738966, 65.68109122880836 37.5169361187594, 65.69754522882369 37.53256411877396, 65.77192722889296 37.53750011877857, 66.00804522911287 37.45527311870198, 66.10525422920338 37.42138211867042, 66.18637222927893 37.37193611862436, 66.2874822293731 37.32651811858207, 66.31762722940118 37.326109118581684, 66.35234522943352 37.33665411859151, 66.41388222949084 37.3437361185981, 66.44084522951593 37.31888211857496, 66.45450022952866 37.321518118577416, 66.48983622956158 37.344154118598496, 66.51241822958261 37.3616641186148, 66.53773622960617 37.3663821186192, 66.5802722296458 37.368191118620885, 66.62345422968602 37.36054511861376, 66.72110022977694 37.355554118609106, 66.83638222988432 37.36360911861661, 66.85803622990449 37.36582711861868, 66.92692722996864 37.37887311863082, 66.97026323000898 37.38249111863419, 67.0129092300487 37.37970911863161, 67.09208223012246 37.34327311859768, 67.20027223022322 37.24665411850769, 67.21623623023808 37.226382118488814, 67.225818230247 37.1974911184619, 67.24609123026588 37.184991118450256, 67.26679123028515 37.185827118451044, 67.292391230309 37.194409118459035, 67.3049452303207 37.2032821184673, 67.38080923039135 37.21249111847587, 67.40069123040988 37.219018118481955, 67.45637223046171 37.25054511851131, 67.52638223052693 37.26860011852813, 67.64942723064152 37.24610011850717, 67.72581823071266 37.22887311849112, 67.74956323073476 37.222627118485306, 67.77318223075676 37.20520011846908, 67.779872230763 37.185818118451024, 67.77422723075776 37.11554511838558, 67.78693623076958 37.092209118363854, 68.00139123096932 36.93610011821846, 68.05800923102203 36.932527118215134, 68.18248223113795 37.017627118294385, 68.28414523123266 37.03054511830642, 68.33442723127948 37.10889111837939, 68.41499123135449 37.11999111838972, 68.62734523155228 37.20610011846992, 68.63943623156354 37.24388211850511, 68.66220923158474 37.27290911853214, 68.80941823172185 37.32249111857831, 68.89110923179791 37.338464118593194, 68.96921823187066 37.32290911857871, 69.00581823190475 37.30069111855802, 69.03151823192869 37.25360911851416, 69.12436323201516 37.16422711843093, 69.15104523204002 37.15076411841838, 69.20499123209024 37.116391118386375, 69.2544272321363 37.09568211836708, 69.28665423216631 37.10416411837498, 69.32241823219962 37.1194361183892, 69.38860023226124 37.15860011842568, 69.40999123228116 37.17527311844121, 69.42124523229165 37.19640911846089, 69.42609123229616 37.20721811847096, 69.40581823227728 37.276936118535886, 69.38998223226253 37.324436118580124, 69.3813632322545 37.344154118598496, 69.37441823224805 37.38804511863937, 69.37664523225013 37.41971811866887, 69.38150923225464 37.453464118700296, 69.52220923238568 37.582354118820334, 69.58110023244052 37.57860911881684, 69.67189123252507 37.57440011881293, 69.79304523263792 37.582773118820725, 69.84610023268732 37.600000118836775, 69.86748223270723 37.60832711884453, 69.89165423272976 37.61402711884983, 69.91193623274864 37.61319111884906, 69.9330272327683 37.60263611883923, 69.95123623278525 37.57277311881141, 70.0138822328436 37.54554511878605, 70.03554523286377 37.541791118782555, 70.06245423288883 37.54133611878213, 70.08706323291173 37.53286411877424, 70.12790923294978 37.52891811877056, 70.15581823297578 37.536227118777376, 70.25360023306683 37.615745118851436, 70.2860912330971 37.69970011892963, 70.28220923309348 37.72898211895689, 70.26915423308134 37.771309118996314, 70.23574523305021 37.82220911904372, 70.20484523302144 37.83408211905477, 70.1777542329962 37.85200011907146, 70.16554523298484 37.87171811908982, 70.16253623298203 37.92895411914313, 70.2094272330257 37.92893611914312, 70.24456323305841 37.94328211915648, 70.2799822330914 37.976436119187355, 70.29720923310745 37.99859111920799, 70.31123623312052 38.00033611920961, 70.34193623314911 38.01867311922669, 70.49025423328723 38.161891119360064, 70.54262723333602 38.252818119444754, 70.59915423338867 38.31095411949889, 70.64749123343367 38.354291119539255, 70.7113822334932 38.40986411959102, 70.77943623355657 38.441545119620514, 70.96012723372485 38.47198211964886, 70.98817223375096 38.46670911964395, 71.15127223390286 38.38102711956415, 71.17776323392752 38.347945119533335, 71.21249123395987 38.319745119507076, 71.2481822339931 38.3041911194926, 71.27151823401485 38.30239111949092, 71.30595423404694 38.297118119486015, 71.36192723409906 38.2479451194402, 71.36581823410268 38.195291119391186, 71.35581823409336 38.155073119353716, 71.3394272340781 38.131254119331544, 71.31526323405558 38.085127119288586, 71.2661002340098 37.982318119192826, 71.2521452339968 37.92793611914219, 71.3290182340684 37.89009111910694, 71.38970923412492 37.90704511912273, 71.43580923416786 37.9253821191398, 71.50719123423434 37.947509119160415, 71.54026323426513 37.944145119157284, 71.58485423430668 37.9117361191271, 71.5936002343148 37.87427311909221, 71.59109123431247 37.836773119057284, 71.58859123431014 37.81565411903762, 71.5759632342984 37.7976001190208, 71.5419272342667 37.72674511895481, 71.50439123423172 37.60939111884551, 71.49618223422408 37.56327311880257, 71.48720023421572 37.41808211866734, 71.49331823422142 37.370300118622836, 71.49188223422007 37.30930011856603, 71.48929123421766 37.278491118537346, 71.48276323421157 37.25903611851922, 71.46349123419364 37.23060911849275, 71.44776323417898 37.20959111847317, 71.43750023416945 37.16611811843268, 71.43081823416321 37.06693611834031, 71.45693623418754 36.9447361182265, 71.46638223419635 36.9266911182097, 71.55291823427692 36.7635821180578, 71.57657223429896 36.731018118027464, 71.61530023433502 36.697845117996565, 71.67720023439267 36.676009117976236, 71.69525423440948 36.67184511797235, 71.75915423446901 36.67489111797519, 71.78166323448997 36.67821811797829, 71.8202632345259 36.68460011798423, 71.84275423454685 36.69210011799122, 71.93136323462937 36.75041811804553, 72.04774523473776 36.83038211812, 72.22385423490178 36.94271811822463, 72.27997223495404 36.96700011824724, 72.30635423497861 36.97810011825757, 72.34663623501612 36.98949111826819, 72.41024523507537 37.00255411828036, 72.43136323509503 37.00283611828061, 72.51803623517577 37.001736118279595, 72.66246323531027 37.02534511830157, 72.70803623535272 37.09065411836241, 72.72220923536591 37.11232711838258, 72.73387223537677 37.13538211840405, 72.75888223540008 37.18068211844624, 72.77804523541792 37.21040011847393, 72.79977223543816 37.229218118491445, 72.83422723547025 37.235064118496894, 72.89249123552449 37.25000911851082, 73.00139123562593 37.30406411856116, 73.10775423572497 37.36270011861576, 73.15776323577154 37.402982118653284, 73.27692723588254 37.45301811869989, 73.29928223590335 37.46039111870675, 73.43552723603025 37.47581811872111, 73.45637223604965 37.47610911872138, 73.50512723609506 37.472709118718214, 73.5412362361287 37.46098211870729, 73.57138223615678 37.44834511869553, 73.61303623619557 37.437091118685046, 73.66970023624833 37.43536411868344, 73.71165423628742 37.4378001186857, 73.74720923632051 37.438645118686495, 73.77631823634763 37.43286411868111, 73.76985423634162 37.34349111859788, 73.718736236294 37.30881811856558, 73.64665423622688 37.300127118557484, 73.62060023620259 37.26351811852339, 73.63130023621258 37.24289111850419, 73.73859123631249 37.2216451184844, 73.81706323638556 37.2281911184905, 73.84220923640899 37.25049111851126, 73.87192723643668 37.26723611852685, 74.04026323659346 37.311436118568025, 74.146100236692 37.33618211859107, 74.2312272367713 37.396764118647496, 74.25415423679266 37.40940911865927, 74.32249123685628 37.406773118656815, 74.3949912369238 37.40122711865165, 74.43220923695847 37.39400911864493, 74.54676323706516 37.3817361186335, 74.63943623715147 37.38626411863771, 74.66957223717952 37.39211811864317, 74.82304523732248 37.33183611858702, 74.83942723733773 37.31974511857577, 74.9157362374088 37.237327118498996, 74.80872723730914 37.22422711848681, 74.7734632372763 37.27306411853229, 74.76032723726405 37.29910011855654, 74.73970923724485 37.301400118558675, 74.66943623717941 37.26597311852568, 74.6074822371217 37.2509541185117, 74.52782723704752 37.240800118502236, 74.39089123692 37.170000118436306, 74.3949912369238 37.146464118414386, 74.52887223704849 37.04923611832383, 74.56542723708253 37.027818118303884, 74.57172723708842 37.019027118295696, 74.55483623707269 36.96505411824543, 74.53074523705024 36.96825411824841, 74.50735423702847 36.998736118276796, 74.47664523699987 37.010473118287734, 74.41692723694425 37.00004511827801, 74.20582723674764 36.903327118187946, 74.12261823667015 36.8435821181323, 74.06219123661387 36.821345118111594, 74.0352632365888 36.815373118106024, 73.95762723651649 36.839809118128784, 73.9274822364884 36.863418118150776, 73.83532723640258 36.89611811818122, 73.66830923624704 36.909636118193816, 73.64310023622355 36.90266411818732, 73.63664523621756 36.8996361181845, 73.53997223612751 36.88045411816664, 73.48483623607618 36.89183611817724, 73.38581823598395 36.88919111817478, 73.05469123567556 36.86877311815576, 72.93544523556452 36.85481811814276, 72.91830923554855 36.843500118132226, 72.89442723552631 36.83655411812575, 72.86539123549926 36.83420011812356, 72.80912723544685 36.8329541181224, 72.76790023540846 36.83877311812782, 72.7458182353879 36.84237311813118, 72.64610023529502 36.83349111812291, 72.57860023523216 36.825427118115385, 72.55282723520816 36.8175911181081, 72.53580923519232 36.80265411809418, 72.49748223515661 36.77502711806845, 72.4704092351314 36.76170011805604, 72.406627235072 36.76240011805669, 72.33055423500116 36.75571811805047, 72.22637223490412 36.72948211802604, 72.17413623485547 36.70909111800704, 72.17608223485729 36.68812711798752, 72.1458092348291 36.647736117949904, 71.97330923466845 36.54192711785136, 71.74500923445584 36.416118117734186, 71.709745234423 36.436945117753595, 71.64418223436192 36.46597311778062, 71.61986323433928 36.452709117768265, 71.59085423431225 36.388645117708606, 71.58112723430321 36.346445117669305, 71.46419123419429 36.272064117600024, 71.24609123399117 36.131382117469016, 71.18970923393866 36.052109117395176, 71.18779123393688 36.039445117383394, 71.22238223396909 36.0236731173687, 71.33193623407112 35.955554117305255, 71.38275423411844 35.92082711727292, 71.44274523417431 35.86693611722272, 71.54581823427031 35.69970911706699, 71.52804523425377 35.66276411703258, 71.56832723429127 35.58693611696195, 71.60470923432516 35.52693611690607, 71.64831823436577 35.4281821168141, 71.62442723434353 35.39569111678385, 71.57671823429908 35.35860911674931, 71.5480452342724 35.317836116711334, 71.5538722342778 35.28943611668488, 71.61276323433265 35.23081811663029, 71.57388223429646 35.12082711652786, 71.5354002342606 35.08409111649364, 71.50305423423049 34.98416411640058, 71.49890023422662 34.96634511638399, 71.49380023422188 34.95770011637593, 71.47581823420512 34.94582711636488, 71.40220923413656 34.91526411633642, 71.29165423403362 34.82999111625699, 71.17025423392053 34.72387311615816, 71.0919362338476 34.66853611610662, 71.0929002338485 34.643882116083674, 71.10359123385845 34.61680011605844, 71.08741823384341 34.561936116007345, 70.9917452337543 34.555500116001355, 70.98227223374548 34.537909115984974, 70.97831823374179 34.507909115957034, 70.99860023376067 34.46554511591758, 71.07749123383414 34.39068211584785, 71.10352723385839 34.381173115839005, 71.15491823390627 34.355618115815204, 71.13470923388743 34.163736115636496, 71.08117223383758 34.056173115536325, 70.88234523365242 33.96500011545142, 70.79414523357028 33.953045115440275, 70.55831823335063 33.944436115432254, 70.48179123327935 33.94360011543148, 70.33831823314574 33.963882115450374, 70.19970923301665 33.99249111547701, 70.12081823294318 34.016109115499006, 70.05914523288575 34.03527311551686, 69.9999272328306 34.05194511553239, 69.95166323278565 34.044718115525654, 69.93691823277192 34.041664115522806, 69.92998223276544 34.04110911552229, 69.90095423273843 34.029164115511165, 69.86720023270698 33.935754115424174, 69.91665423275305 33.852218115346375, 69.9870632328186 33.75340011525434, 70.09943623292327 33.72679111522956, 70.13338223295489 33.73388211523617, 70.19663623301378 33.640827115149506, 70.19929123301625 33.60693611511793, 70.18552723300346 33.57388211508716, 70.17330923299207 33.546109115061284, 70.1697002329887 33.519854115036836, 70.20262723301937 33.47720911499712, 70.23859123305286 33.46561811498633, 70.28803623309892 33.42040911494422, 70.31386323312296 33.383809114910136, 70.32477223313313 33.33270011486253, 70.2279002330429 33.25110011478654, 70.15054523297087 33.20555411474412, 70.02887223285754 33.13582711467919, 69.90373623274101 33.09512711464127, 69.87428223271357 33.08943611463597, 69.62637223248268 33.084436114631316, 69.58082723244027 33.086936114633644, 69.55998223242085 33.07964511462686, 69.50707223237157 33.03610911458631, 69.49178223235734 32.99672711454964, 69.50082723236576 32.94526411450171, 69.50749123237196 32.91526411447377, 69.51270023237683 32.87221811443368, 69.46581823233316 32.836936114400814, 69.40804523227936 32.79040911435749, 69.39540923226758 32.76687311433557, 69.41734523228803 32.74096411431144, 69.43914523230833 32.71527311428751, 69.4561002323241 32.67422711424929, 69.42137223229176 32.61693611419592, 69.40123623227302 32.591800114172514, 69.37776323225114 32.56832711415066, 69.35720923223201 32.5586001141416, 69.32720923220407 32.54860911413229, 69.30692723218519 32.54027311412453, 69.2827722321627 32.520000114105656, 69.2705362321513 32.50027311408728, 69.25651823213823 32.470409114059464, 69.2478912321302 32.44110011403217, 69.25102723213311 32.41123611400435, 69.26138223214278 32.383882113978885, 69.27777223215804 32.35555411395249, 69.29067223217004 32.32193611392118, 69.29068223217004 32.29055411389196, 69.28305423216295 32.217764113824174, 69.27831823215854 32.19777311380555, 69.27110023215181 32.170691113780336, 69.27303623215363 32.13930011375109, 69.29164523217096 32.04860011366662, 69.32824523220503 31.94036411356582, 69.29130923217065 31.924373113550928, 69.21456323209915 31.858864113489915, 69.2029092320883 31.831109113464066, 69.157482232046 31.769164113406376, 69.12915423201963 31.73416411337378, 69.10575423199782 31.711709113352867, 69.01909123191712 31.651036113296357, 68.82776323173891 31.605827113254264, 68.80373623171656 31.614582113262415, 68.72999123164786 31.701800113343637, 68.71970923163829 31.721664113362138, 68.65054523157389 31.782773113419054, 68.57610023150454 31.823473113456956, 68.55637223148616 31.82790911346109, 68.51915423145152 31.82450911345792, 68.48535423142005 31.812373113446625, 68.44630023138367 31.780173113416637, 68.51582723144841 31.768745113405984, 68.56463623149386 31.760618113398422, 68.55387223148384 31.73651811337598, 68.53457223146586 31.72680011336692, 68.27138223122077 31.773682113410587, 68.21887223117184 31.816391113450365, 68.18800023114309 31.82917311346226, 68.16362723112042 31.829336113462418, 68.14582723110382 31.80582711344053, 68.12532723108473 31.76763611340496, 68.04387223100886 31.686936113329793, 67.9687362309389 31.633882113280393, 67.92831823090125 31.641664113287632, 67.886172230862 31.639227113285372, 67.8613722308389 31.62832711327522, 67.83970923081873 31.60763611325595, 67.82304523080322 31.58027311323046, 67.73740923072344 31.531382113184932, 67.70832723069637 31.524436113178453, 67.68165423067154 31.52332711317743, 67.65498223064668 31.531245113184795, 67.58137223057813 31.529273113182967, 67.61415423060868 31.429991113090495, 67.66109123065237 31.40152711306399, 67.6858092306754 31.403045113065403, 67.716518230704 31.412082113073822, 67.74526323073076 31.41458211307615, 67.76651823075056 31.410827113072656, 67.79685423077882 31.3846821130483, 67.79055423077295 31.34340911300987, 67.61303623060763 31.271109112942526, 67.38471823039498 31.21527311289053, 67.27540923029318 31.214018112889363, 67.25648223027557 31.22232711289709, 67.23429123025488 31.218254112893305, 67.06276323009513 31.241109112914586, 67.04213623007593 31.26444511293633, 67.04990923008316 31.302709112971954, 67.03637223007055 31.318473112986638, 67.00804523004419 31.32221811299013, 66.96554523000461 31.320000112988055, 66.88080922992569 31.292500112962443, 66.85581822990241 31.28055411295132, 66.7215822297774 31.207354112883152, 66.69386322975157 31.126664112808, 66.68678222974498 31.091591112775333, 66.57901822964462 30.986664112677616, 66.56095422962781 30.97582711266753, 66.53749122960593 30.97055411266261, 66.47581822954851 30.961664112654333, 66.44984522952433 30.959718112652524, 66.42096322949743 30.95193611264527, 66.40026322947813 30.943464112637386, 66.28318222936909 30.570136112289703, 66.31644522940007 30.51020911223388, 66.3395722294216 30.49416411221894, 66.35179122943299 30.44250011217082, 66.32089122940422 30.227982111971045, 66.29054522937597 30.18610911193204, 66.27249122935913 30.149718111898153, 66.2406722293295 30.065345111819568, 66.26123622934867 30.040618111796547, 66.29651822938152 30.020000111777335, 66.36206322944255 29.959782111721253, 66.30247222938706 29.893327111659374, 66.2566542293444 29.851936111620816, 66.12803622922462 29.82055411159159, 66.06805422916875 29.80555411157762, 65.86249122897729 29.753891111529512, 65.7338722288575 29.72138211149924, 65.59693622872999 29.686664111466897, 65.25499122841151 29.598327111384634, 65.03414522820586 29.541109111331338, 64.87330922805606 29.569164111357466, 64.76947222795934 29.578754111366393, 64.73997222793187 29.582773111370145, 64.6955272278905 29.58638211137351, 64.6605362278579 29.5877731113748, 64.57500022777825 29.5830541113704, 64.54942722775442 29.580827111368336, 64.48817222769736 29.57430011136225, 64.37970022759635 29.55360911134298, 64.26860022749287 29.5219451113135, 64.2113822274396 29.49860011129175, 64.18720022741707 29.48208211127637, 64.16275422739429 29.457218111253212, 64.05914522729782 29.414436111213362, 64.01707322725863 29.430409111228244, 63.70304522696617 29.484436111278555, 63.58720922685828 29.50389111129668, 63.55470922682801 29.501664111294602, 63.230436226526024 29.473700111268556, 63.20332722650076 29.47082711126589, 62.55860022590031 29.41277311121182, 62.484436225831246 29.40610911120561, 62.461382225809785 29.411945111211054, 62.408045225760105 29.427218111225272, 62.36250022571767 29.44082711123795, 62.33970922569645 29.447491111244148, 62.24832722561135 29.473609111268473, 62.10360922547656 29.514718111306763, 62.01221822539145 29.54055411133082, 61.78943622518398 29.60332711138929, 61.063045224507476 29.80750011157943, 60.986382224436085 29.828609111599093, 60.86630022432425 29.863654111631732, 60.871654224329234 29.866936111634786, 60.9108182243657 29.907218111672307, 61.04193622448781 30.043609111799327, 61.180273224616656 30.185827111931786, 61.216663224650546 30.22277311196619, 61.27749122470718 30.284445112023633, 61.372218224795404 30.381664112114166, 61.758327225155 30.790273112494717, 61.8501272252405 31.023882112712286, 61.81110022520414 31.177218112855087, 61.78832722518294 31.21721811289234, 61.76680022516288 31.256182112928627, 61.77110022516689 31.31832711298651, 61.7408272251387 31.353327113019105, 61.713609225113345 31.383327113047045, 61.45051822486832 31.41820011307952, 61.188600224624395 31.4522181131112, 61.10416322454577 31.463054113121288, 60.848809224307956 31.496109113152073, 60.8113822242731 31.65971811330445, 60.824163224285 31.774436113411284, 60.82346322428435 31.948464113573365, 60.80693622426895 31.99666411361825, 60.81443622427594 32.01943611363946, 60.83665422429664 32.090273113705436, 60.8550002243137 32.19054511379882, 60.85832722431681 32.22596411383181, 60.85180022431072 32.261109113864535, 60.83277322429302 32.32193611392118, 60.72638222419394 32.6238821142024, 60.65970922413183 32.81860011438374, 60.59582722407234 33.013609114565355, 60.58790922406496 33.043136114592855, 60.58250022405991 33.066100114614244, 60.58055422405812 33.0886001146352, 60.58326322406063 33.14957311469199, 60.631382224105465 33.20750011474594, 60.72387322419158 33.30888211484036, 60.75694522422239 33.34499111487398, 60.80331822426558 33.390827114916675, 60.852700224311576 33.48422711500366, 60.87756322433472 33.50075411501905, 60.92982722438339 33.504954115022954, 60.93888222439185 33.517036115034216, 60.915545224370106 33.547909115062964, 60.89401822435005 33.55582711507034, 60.85582722431448 33.55888211507319, 60.78777322425111 33.56165411507577, 60.708973224177726 33.56048211507468, 60.66610022413778 33.56750011508122, 60.59720922407362 33.597491115109136, 60.5705452240488 33.61110911512182, 60.546109224026026 33.62526411513501, 60.5308272240118 33.63999111514872, 60.52026322400195 33.66069111516801, 60.5133272239955 33.68970911519503, 60.50869122399118 33.739954115241815, 60.540554224020866 33.77693611527626, 60.55165422403121 33.79721811529515, 60.553591224033 33.82187311531811, 60.52916322401026 33.961382115448046, 60.5199912240017 34.01055411549383, 60.509182223991644 34.06010911553999, 60.50416322398698 34.09166411556937, 60.50443622398723 34.12221811559783, 60.51097322399332 34.145545115619555, 60.52610022400739 34.16944511564182, 60.546109224026026 34.19638211566691, 60.675127224146195 34.31401811577646, 60.73930022420595 34.32000011578204, 60.76666322423145 34.322218115784096, 60.8361002242961 34.32262711578447, 60.87887322433593 34.31971811578177, 60.88360922434035 34.35527311581488, 60.79825422426086 34.4633181159155, 60.767773224232485 34.477982115929166, 60.72387322419158 34.52790911597566, 60.73999122420659 34.544718115991316, 60.77916322424309 34.556100116001915, 60.83290922429313 34.561791116007214, 60.85319122431204 34.567627116012645, 60.97665422442702 34.65075411609007, 61.05110022449634 34.78943611621922, 61.07749122452091 34.87943611630304, 61.11554522455637 35.0169361164311, 61.13166322457138 35.08581811649525, 61.136036224575435 35.132073116538336, 61.11638222455716 35.16387311656794, 61.099782224541684 35.176591116579786, 61.09623622453839 35.23623611663534, 61.10582722454731 35.28180011667777, 61.18360022461974 35.34860011673999, 61.27651822470628 35.51763611689742, 61.287909224716884 35.55561811693279, 61.2765542247063 35.60724511698086))) +KGZ Kyrgyzstan MULTIPOLYGON (((74.84501823734294 40.50397312154129, 74.83193623733075 40.46355412150365, 74.8261002373253 40.40798212145191, 74.84512723734304 40.39257312143755, 74.8772002373729 40.36520912141208, 74.89075423738552 40.34910012139707, 74.88089123737635 40.32791812137734, 74.84887223734651 40.32492712137454, 74.82095423732054 40.33200912138116, 74.76054523726427 40.344936121393175, 74.7342822372398 40.3407641213893, 74.60040023711511 40.261945121315904, 74.55220023707022 40.222982121279614, 74.5147092370353 40.18826412124727, 74.44220023696778 40.13937312120174, 74.41498223694242 40.12257312118609, 74.3836092369132 40.10770912117226, 74.3542912368859 40.09784512116306, 74.32221823685603 40.09270912115829, 74.29484523683055 40.09270912115829, 74.25804523679628 40.11125412117556, 74.2259632367664 40.11729112118118, 74.18928223673223 40.111736121175994, 74.02470023657895 40.06736412113469, 73.99096323654754 40.042018121111084, 73.84782723641422 39.816945120901465, 73.84290023640963 39.76895412085676, 73.86234523642776 39.74520912083466, 73.9074092364697 39.7282001208188, 73.92470023648582 39.69270012078576, 73.95470923651376 39.599654120699086, 73.86372723642904 39.485209120592515, 73.83999123640692 39.47381812058191, 73.78580923635647 39.46799112057647, 73.65568223623526 39.454827120564204, 73.65416323623387 39.460764120569735, 73.5247092361133 39.47325412058137, 73.49136323608224 39.46992712057826, 73.36776323596715 39.43784512054839, 73.35755423595762 39.4040271205169, 73.18552723579742 39.35827312047428, 73.16359123577698 39.3545181204708, 72.86235423549644 39.362018120477785, 72.80498223544299 39.37131812048645, 72.77748223541738 39.377982120492646, 72.68887223533486 39.397709120511024, 72.65734523530551 39.40131812051439, 72.63318223528299 39.39076412050454, 72.59860023525079 39.365909120481405, 72.48441823514446 39.349654120466255, 72.4533272351155 39.35271812046912, 72.42449123508865 39.35874512047474, 72.34776323501717 39.33840012045579, 72.32499123499596 39.31687312043573, 72.31413623498585 39.286591120407536, 72.30636323497862 39.2571451203801, 72.25888223493442 39.195473120322674, 72.13970923482341 39.274636120396394, 72.09831823478487 39.34825412046496, 72.0776182347656 39.371445120486555, 71.97138223466666 39.3479731204647, 71.9338722346317 39.326854120445034, 71.89942723459964 39.30656412042612, 71.86130923456415 39.288373120409176, 71.77851823448702 39.277636120399194, 71.74275423445371 39.30878212042819, 71.73282723444447 39.333782120451474, 71.74387223445476 39.3608731204767, 71.77318223448205 39.391436120505176, 71.77526323448399 39.4171271205291, 71.75776323446769 39.45584512056516, 71.71457223442746 39.46143612057037, 71.68109123439629 39.453236120562735, 71.65443623437147 39.45019112055988, 71.59707223431803 39.449209120558976, 71.56387223428712 39.45434512056377, 71.53790023426293 39.46440912057312, 71.51749123424392 39.488654120595726, 71.51846323424485 39.50886412061453, 71.54880923427311 39.54761812065064, 71.54872723427303 39.572209120673534, 71.51470923424134 39.60436412070348, 71.48455423421325 39.61797312071616, 71.40637223414043 39.60630012070527, 71.32638223406596 39.56962712067113, 71.1960912339446 39.53321812063723, 71.10261823385756 39.512654120618066, 71.07387223383077 39.489582120596566, 71.05581823381397 39.45347312056296, 71.04359123380257 39.42540912053681, 71.0280362337881 39.41094512052334, 70.99414523375654 39.40093612051402, 70.84860023362097 39.41093612052333, 70.72110023350223 39.42537312053679, 70.69470023347765 39.48926412059629, 70.67267223345712 39.507045120612844, 70.67164523345619 39.518154120623194, 70.6613722334466 39.54941812065229, 70.63283623342002 39.579773120680585, 70.50749123330328 39.60705412070598, 70.48207223327961 39.60663612070559, 70.35609123316229 39.58203612068269, 70.30192723311185 39.55150912065426, 70.23749123305183 39.57738212067835, 70.18136323299956 39.58436412068485, 69.96609123279907 39.55443612065699, 69.84664523268785 39.537218120640944, 69.82443623266715 39.54527312064843, 69.8010912326454 39.56220912066422, 69.78192723262757 39.57249112067379, 69.75027223259809 39.5819361206826, 69.70803623255875 39.58777312068801, 69.67220923252538 39.58638212068672, 69.60914523246666 39.58221812068285, 69.58123623244066 39.573464120674686, 69.55122723241271 39.55013612065298, 69.51637223238023 39.538609120642235, 69.3332542322097 39.518809120623786, 69.30859123218673 39.534854120638755, 69.30150923218014 39.56040912066254, 69.30970023218777 39.59930012069876, 69.31414523219192 39.630273120727594, 69.31414523219192 39.659709120755025, 69.30998223218802 39.68680012078025, 69.29873623217756 39.704300120796546, 69.26249123214379 39.7334641208237, 69.24950023213171 39.75763612084623, 69.25721823213888 39.79860912088438, 69.2677632321487 39.83832712092138, 69.28499123216474 39.88721812096691, 69.33481823221115 39.99260012106504, 69.40748223227882 39.93797312101418, 69.42484523229501 39.90505412098352, 69.49831823236343 39.92082712099821, 69.52404523238738 39.93450912101096, 69.50554523237017 39.962627121037144, 69.48546323235146 40.03784512110718, 69.49929123236433 40.072909121139844, 69.54074523240294 40.128882121191964, 69.56970923242991 40.10930012117373, 69.60581823246355 40.1119361211762, 69.63693623249253 40.11888212118265, 69.69247223254425 40.13276412119558, 69.81776323266092 40.17027312123051, 70.01193623284178 40.21799112127496, 70.05247223287952 40.20776412126543, 70.28568223309671 40.1325541211954, 70.30956323311895 40.11567312117967, 70.32957223313758 40.09073612115645, 70.35151823315803 40.08212712114843, 70.42665423322802 40.07018212113729, 70.51235423330783 40.056709121124754, 70.54220923333563 40.0460181211148, 70.55824523335056 40.028100121098106, 70.54650923333963 40.00295412107468, 70.5176912333128 39.988445121061176, 70.48859123328569 39.96920012104326, 70.46803623326656 39.92793612100482, 70.49428223329099 39.908145120986404, 70.6030452333923 39.95823612103305, 70.62248223341038 39.97045412104441, 70.63970923342643 39.98504512105802, 70.65430023344001 40.00754512107898, 70.66026323344556 40.044845121113696, 70.66338223344849 40.10069112116571, 70.8861092336559 40.17131812123151, 70.92165423368903 40.1689731212293, 70.95735423372227 40.17480012123474, 70.98567223374863 40.18993612124882, 70.9949822337573 40.22861812128485, 70.98203623374525 40.24484512129996, 70.99567223375794 40.26764512132121, 71.06790023382521 40.27757312133045, 71.09414523384967 40.27799112133084, 71.1391632338916 40.27743612133031, 71.2466452339917 40.28716412133937, 71.2991452340406 40.30993612136058, 71.38998223412517 40.30188212135309, 71.47109123420071 40.26876412132225, 71.48470023421339 40.23860912129416, 71.50555423423282 40.2238181212804, 71.52415423425015 40.21548212127263, 71.71422723442717 40.1479181212097, 71.78276323449097 40.174382121234345, 71.80769123451421 40.19374512125239, 71.90359123460351 40.25049112130523, 72.04387223473415 40.26632712131999, 72.01277223470521 40.33437312138335, 72.11207223479767 40.432300121474555, 72.17956323486052 40.462027121502246, 72.20693623488603 40.46494512150497, 72.22705423490476 40.464545121504585, 72.25804523493363 40.465491121505465, 72.28310923495698 40.44722712148845, 72.34526323501484 40.4093731214532, 72.39387223506012 40.39270912143769, 72.42053623508497 40.38785412143315, 72.43275423509633 40.404645121448794, 72.446363235109 40.43381812147598, 72.45304523511524 40.45868212149912, 72.43407223509757 40.48805412152649, 72.39971823506556 40.507164121544264, 72.37997223504718 40.52619112156199, 72.3736452350413 40.60278212163334, 72.40460923507013 40.616436121646046, 72.59117223524387 40.52145412155758, 72.62915423527926 40.5134091215501, 72.65388223530229 40.519373121555645, 72.67359123532063 40.5356271215708, 72.71053623535505 40.58493612161669, 72.80588223544385 40.67507312170065, 72.85192723548673 40.68882712171347, 72.87803623551105 40.69326412171759, 72.94359123557209 40.71271812173572, 73.10414523572163 40.77507312179378, 73.14721823576173 40.799664121816676, 73.16754523578066 40.82910912184411, 73.15248223576663 40.847164121860914, 73.04914523567041 40.86827312188058, 72.89942723553096 40.867718121880074, 72.72553623536902 40.86910012188136, 72.70220923534728 40.87049112188265, 72.65999123530796 40.87910912189068, 72.62130023527195 40.89480012190529, 72.60580923525751 40.927854121936065, 72.5797092352332 40.95382712196027, 72.50332723516206 41.01674512201885, 72.3952632350614 41.04021812204073, 72.31915423499055 41.032154122033205, 72.19548223487536 41.00659112200941, 72.21547223489398 41.052336122052, 72.18109123486195 41.192718122182754, 72.15019123483319 41.20397312219322, 72.11143623479708 41.196473122186234, 71.90900923460856 41.18945412217971, 71.8883272345893 41.20063612219013, 71.88985423459073 41.24606412223244, 71.89623623459667 41.2748091222592, 71.89443623459499 41.30244512228495, 71.88831823458929 41.33105412231157, 71.86678223456923 41.358000122336676, 71.68830923440302 41.55626412252133, 71.64540023436305 41.554873122520036, 71.61941823433887 41.50411812247276, 71.62595423434496 41.48424512245424, 71.65005423436739 41.462864122434354, 71.65977223437645 41.42876412240258, 71.65151823436875 41.39730912237329, 71.61804523433759 41.33356412231393, 71.59845423431935 41.31578212229735, 71.5759542342984 41.30175412228431, 71.54568223427017 41.30237312228488, 71.50207223422956 41.31814512229957, 71.44782723417904 41.35036412232958, 71.43441823416657 41.332591122313005, 71.43914523417098 41.25745412224305, 71.44220023417381 41.230227122217684, 71.44220023417381 41.19578212218559, 71.44039123417213 41.14314512213659, 71.42359123415648 41.12084512211581, 71.39721823413191 41.125500122120144, 71.2454722339906 41.19460012218451, 71.20811823395582 41.18668212217713, 71.15693623390814 41.161054122153246, 70.9883092337511 41.20356412219286, 70.81330923358811 41.25050012223656, 70.79262723356885 41.330927122311465, 70.7934452335696 41.35495412233385, 70.77166323354933 41.394818122370964, 70.71101823349284 41.47026412244122, 70.66970023345436 41.475854122446435, 70.63415423342127 41.45911812243085, 70.60110023339047 41.44398212241674, 70.53124523332542 41.4191181223936, 70.48887223328595 41.410782122385825, 70.47415423327226 41.412173122387145, 70.43498223323576 41.45925412243099, 70.41373623321599 41.47772712244819, 70.36998223317522 41.49926412246825, 70.34776323315452 41.50551812247406, 70.32331823313177 41.51079112247896, 70.2927632331033 41.51523612248312, 70.26639123307876 41.51468212248261, 70.20630923302281 41.51911812248673, 70.1809542329992 41.5412091225073, 70.18429123300228 41.582609122545875, 70.2047092330213 41.598718122560854, 70.25192723306529 41.614964122576, 70.28526323309632 41.62496412258531, 70.30859123311805 41.633300122593084, 70.47457223327262 41.71649112267056, 70.49164523328855 41.73204512268504, 70.50235423329852 41.750664122702375, 70.51666323331185 41.78551812273483, 70.53081823332502 41.800100122748404, 70.70020023348278 41.91010012285085, 70.75179123353081 41.91231812285292, 70.78526323356198 41.9135731228541, 70.8466912336192 41.93117312287049, 70.85150923362369 41.97058212290719, 70.85942723363107 42.02704512295978, 70.87720923364762 42.041773122973495, 70.91234523368036 42.04565412297711, 70.94511823371087 42.03954512297142, 70.98095423374426 42.042609122974284, 71.22249123396918 42.14190912306674, 71.26373623400761 42.17454512309715, 71.27574523401879 42.19815412311914, 71.27505423401814 42.20419112312476, 71.26388223400775 42.20565412312612, 71.23165423397774 42.218291123137874, 71.17248223392261 42.24969112316714, 71.12254523387611 42.27760012319311, 71.06450023382206 42.30260012321639, 71.03318223379287 42.29899112321306, 70.98053623374386 42.26204512317864, 70.9708092337348 42.254673123171784, 70.96249123372704 42.25440912317151, 70.91429123368215 42.26469112318111, 70.87317223364386 42.30913612322249, 70.88388223365385 42.3233001232357, 70.92775423369469 42.357191123267256, 70.96130023372595 42.39899112330619, 70.95560923372065 42.4274641233327, 71.03553623379509 42.5774731234724, 71.05706323381511 42.58843612348261, 71.16900923391938 42.63150012352273, 71.1697722339201 42.68864512357595, 71.27527223401836 42.75913612364158, 71.42470023415751 42.80413612368349, 71.48776323421623 42.79359112367368, 71.51027223423722 42.789418123669805, 71.57804523430033 42.76428212364638, 71.60346323432401 42.76539112364742, 71.63957223435762 42.781773123662674, 71.65776323437456 42.79220012367239, 71.71651823442929 42.81844512369682, 71.74720923445787 42.82358212370161, 71.82192723452746 42.826364123704195, 71.89803623459835 42.82747312370523, 71.9574912346537 42.81747312369592, 71.98915423468321 42.80913612368815, 72.17164523485317 42.77357312365504, 72.27249123494707 42.77496412365633, 72.29693623496985 42.77357312365504, 72.35331823502236 42.75385412363667, 72.45803623511989 42.716627123601995, 72.62137223527199 42.68551812357302, 72.74874523539063 42.6580091235474, 72.78602723542534 42.64239112353286, 72.81519123545252 42.603018123496184, 72.83713623547294 42.57475412346986, 72.86442723549837 42.561345123457386, 72.8838822355165 42.554127123450655, 72.9086002355395 42.548300123445244, 72.96012723558749 42.53926412343682, 73.01999123564323 42.550509123447284, 73.15262723576677 42.56036412345648, 73.33568223593724 42.5030451234031, 73.33526323593688 42.45341812335687, 73.34650923594734 42.42932712333442, 73.52054523610943 42.40925412331575, 73.53282723612085 42.43030012333534, 73.52251823611127 42.44480012334884, 73.51331823610269 42.45384512335727, 73.47330923606543 42.503845123403835, 73.45110023604474 42.53329112343124, 73.4424722360367 42.551900123448576, 73.43359123602843 42.584745123479166, 73.43414523602897 42.62745412351896, 73.46359123605637 42.71412712359967, 73.4948452360855 42.74857312363176, 73.5242912361129 42.797045123676895, 73.5298542361181 42.831418123708914, 73.53998223612751 42.930245123800944, 73.58638223617075 43.04024512390339, 73.6505452362305 43.067745123929, 73.7130452362887 43.08496412394504, 73.78970023636009 43.10440912396314, 73.91519123647697 43.125100123982406, 73.93858223649875 43.14830012400404, 74.0594182366113 43.188009124041, 74.23442723677428 43.20982712406132, 74.29359123682937 43.216900124067905, 74.34610023687827 43.205518124057306, 74.39166323692072 43.19550912404799, 74.5754822370919 43.126418123983655, 74.61400923712779 43.08843612394827, 74.66859123717862 43.044127123907, 74.74547223725023 42.99670012386284, 74.78081823728314 42.99065412385721, 74.82776323732688 42.992736123859146, 74.86470023736126 42.98649112385334, 74.89332723738792 42.97912712384647, 75.06693623754961 42.91550912378722, 75.1838722376585 42.86884512374377, 75.24331823771388 42.85523612373109, 75.31776323778323 42.853291123729264, 75.562345238011 42.83467312371195, 75.59193623803856 42.82842712370612, 75.6220632380666 42.8178731236963, 75.67135423811251 42.80721812368637, 75.74915423818499 42.8528731237289, 75.76985423820426 42.88522712375902, 75.78553623821887 42.91911812379058, 75.79060023822356 42.93569112380601, 75.79637223822894 42.9385641238087, 75.84470923827396 42.9452271238149, 75.90317223832841 42.94675412381633, 76.1155362385262 42.941891123811786, 76.24026323864234 42.936900123807135, 76.3249092387212 42.9239821237951, 76.37747223877017 42.91023612378231, 76.4241452388136 42.89940012377221, 76.61692723899313 42.90022712377299, 76.73373623910192 42.918709123790194, 76.8191542391815 42.95245412382164, 76.84872723920904 42.97835412384575, 76.98095423933216 42.99579112386198, 77.13860023947899 42.96759112383572, 77.15803623949711 42.95884512382759, 77.2081912395438 42.91815412378969, 77.26832723959984 42.916345123788005, 77.40720923972918 42.92079112379213, 77.53553623984868 42.921336123792656, 77.66887223997287 42.91522712378696, 77.72220924002255 42.914954123786714, 77.9445722402296 42.895091123768196, 77.96554524024913 42.886073123759815, 77.99290024027465 42.86980912374466, 78.09776324037227 42.85731812373302, 78.12025424039325 42.86218212373757, 78.15248224042324 42.86884512374377, 78.18054524044936 42.87079112374556, 78.45220024070238 42.887464123761106, 78.51637224076217 42.88468212375852, 78.53692724078127 42.879400123753584, 78.67025424090548 42.82718212370497, 79.03138224124177 42.75996412364236, 79.05706324126572 42.765091123647125, 79.10984524131487 42.78662712366719, 79.13860024134163 42.79273612367288, 79.1753912413759 42.7976001236774, 79.20581824140424 42.783709123664465, 79.20221824140089 42.75815412364068, 79.1979002413969 42.735091123619185, 79.19970924139858 42.711345123597084, 79.21527224141306 42.679118123567065, 79.23304524142958 42.65884512354819, 79.26470924145912 42.632591123523724, 79.29665424148885 42.617318123509506, 79.32458224151486 42.61440012350678, 79.36046324154825 42.60294512349611, 79.38804524157393 42.56634512346204, 79.40637224159104 42.52607312342454, 79.42380924160727 42.490645123391545, 79.44386324162593 42.47217312337435, 79.46970924165004 42.46550912336812, 79.5102722416878 42.458845123361925, 79.54165424171703 42.454954123358306, 79.5788722417517 42.453427123356875, 79.61192724178244 42.45773612336089, 79.68330924184892 42.47015412337245, 79.71304524187661 42.4744001233764, 79.91943624206885 42.44133612334562, 79.95651824210341 42.4327271233376, 80.1155362422515 42.30148212321535, 80.15554524228872 42.24856412316609, 80.17276324230477 42.22370012314292, 80.19220024232288 42.20911812312934, 80.21442724234356 42.200791123121576, 80.23402724236183 42.19621812311732, 80.2460912423731 42.175227123097784, 80.2815822424061 42.08314512301203, 80.26943624239482 42.05426412298513, 80.24513624237221 42.03953612297141, 80.21387224234309 42.03079112296325, 80.17970024231124 42.02661812295938, 80.13970924227402 42.025791122958594, 80.06219124220178 42.0346821229669, 80.02527224216743 42.03634512296844, 79.97720024212265 42.03412712296637, 79.92360024207272 42.02495412295784, 79.89638224204737 42.01995412295318, 79.87317224202576 42.01342712294709, 79.84442724199897 41.992036122927175, 79.82623624198203 41.96585412290278, 79.81575424197229 41.92480912286456, 79.79164524194982 41.89488212283669, 79.75331824191414 41.88245412282512, 79.7222092418852 41.88190012282459, 79.69373624185863 41.88481812282731, 79.65900924182631 41.883282122825875, 79.52665424170306 41.83134512277752, 79.34081824152997 41.79217312274105, 79.14721824134966 41.719936122673744, 79.0594182412679 41.68244512263885, 78.958600241174 41.64161812260082, 78.75831824098748 41.56313612252774, 78.72692724095822 41.55411812251933, 78.69552724092898 41.54300912250898, 78.67081824090599 41.53189112249862, 78.53110024077586 41.463836122435254, 78.39553624064962 41.39286412236916, 78.37053624062634 41.37258212235025, 78.36360024061986 41.353009122332026, 78.376645240632 41.31828212229968, 78.38331824063823 41.29383612227693, 78.36982724062568 41.27484512225922, 78.32638224058519 41.25355412223939, 78.3074822405676 41.24202712222868, 78.29053624055183 41.229664122217144, 78.2652722405283 41.198000122187665, 78.25220924051615 41.175509122166716, 78.24622724051056 41.16512712215706, 78.23664524050162 41.14550012213877, 78.20637224047346 41.116054122111336, 78.18887224045716 41.101345122097655, 78.13873624041042 41.069254122067775, 78.08082724035654 41.04079112204124, 78.05498224033244 41.04397312204421, 78.02873624030798 41.05633612205574, 77.99775424027916 41.06022712205936, 77.86060024015143 41.06967312206817, 77.82776324012082 41.06244512206143, 77.78027224007661 41.04079112204124, 77.68470923998763 41.00189112200502, 77.5435912398562 40.986609121990796, 77.50582723982103 40.986064121990296, 77.47470923979205 40.99689112200036, 77.43637223975634 41.01272712201512, 77.38206323970576 41.02508212202662, 77.33804523966472 41.02730012202869, 77.2744362396055 41.00633612200917, 77.13998223948028 41.01598212201816, 77.10914523945155 41.02716412202855, 77.0733182394182 41.046536122046604, 77.02144523936988 41.04959112204946, 76.9213722392767 41.0274361220288, 76.89721823925419 41.021045122022855, 76.87067223922946 41.012582122014976, 76.79102723915531 40.95090912195755, 76.64839123902243 40.7412641217623, 76.64846323902253 40.704518121728086, 76.64436323901873 40.61910012164853, 76.63012723900545 40.6026451216332, 76.58665423896497 40.57758212160985, 76.5697092389492 40.56230012159563, 76.55109123893186 40.53938212157428, 76.53749123891919 40.519664121555905, 76.52637223890883 40.49869112153638, 76.51415423889745 40.45890012149934, 76.49346323887818 40.43674512147868, 76.45026323883792 40.4041091214483, 76.33440023873004 40.353236121400926, 76.31499123871197 40.38466412143018, 76.22360023862683 40.403827121448046, 76.09942723851117 40.39828212144286, 76.06805423848198 40.39577312144053, 76.04525423846076 40.388827121434076, 75.9834632384032 40.36660012141337, 75.96679123838766 40.34550012139371, 75.94302723836554 40.31494512136527, 75.90012723832558 40.301191121352446, 75.70373623814268 40.298000121349475, 75.68817223812817 40.31202712136255, 75.6788632381195 40.33493612138386, 75.66581823810736 40.373827121420106, 75.62893623807301 40.53792712157292, 75.62983623807386 40.56980012160261, 75.62414523806856 40.59465412162575, 75.60429123805005 40.62855412165732, 75.58283623803007 40.64452712167221, 75.53081823798163 40.62966412165835, 75.48637223794023 40.60883612163897, 75.33970923780365 40.526536121562316, 75.27748223774569 40.48243612152123, 75.23393623770514 40.45042712149143, 75.06609123754882 40.44757312148877, 75.02110023750691 40.45660012149719, 74.99109123747897 40.46577312150572, 74.97096323746024 40.47382712151324, 74.93610023742775 40.49160912152979, 74.9079092374015 40.508691121545695, 74.8823362373777 40.519245121555514, 74.85880023735578 40.517227121553645, 74.84501823734294 40.50397312154129))) +NPL Nepal MULTIPOLYGON (((82.70110024465947 27.711109109627017, 82.65790924461925 27.70763610962379, 82.61720024458134 27.696945109613836, 82.5980362445635 27.690273109607617, 82.56805424453557 27.68527310960296, 82.4788632444525 27.67277310959132, 82.45207224442754 27.6722181095908, 82.42942724440644 27.677500109595712, 82.40610024438473 27.690827109608136, 82.30429124428991 27.759164109671772, 82.27831824426573 27.778054109689364, 82.14888224414517 27.86416410976956, 82.06640024406835 27.914154109816124, 82.04331824404687 27.918609109820267, 81.99970924400628 27.922218109823632, 81.96950024397813 27.913054109815093, 81.93691824394779 27.88750010979129, 81.90105424391436 27.854927109760965, 81.7808182438024 27.910827109813027, 81.72692724375219 27.955827109854937, 81.60748224364096 28.018891109913667, 81.47876324352109 28.08437310997465, 81.37441824342392 28.16610911005077, 81.29803624335278 28.163882110048704, 81.22249124328243 28.32471811019849, 81.19359124325553 28.36666411023755, 81.18887224325113 28.36916411023988, 81.16692724323065 28.375273110245573, 81.13916324320479 28.382500110252295, 81.09414524316287 28.39332711026239, 81.03137224310444 28.403045110271435, 80.93025424301027 28.445545110311016, 80.70470924280022 28.57860911043494, 80.58499124268872 28.65360911050479, 80.54136324264806 28.685273110534283, 80.51900924262725 28.67138211052135, 80.50590024261504 28.655273110506343, 80.51081824261962 28.62110911047452, 80.47220924258369 28.590000110445544, 80.38750024250476 28.62500011047814, 80.3166542424388 28.692909110541393, 80.25026324237695 28.747500110592227, 80.15081824228434 28.793609110635174, 80.06137224220106 28.829927110669004, 80.0522002421925 28.89832711073271, 80.05761824219752 28.92430011075689, 80.06971824220881 28.949436110780297, 80.19692724232726 29.128327110946913, 80.2491452423759 29.163609110979763, 80.28776324241187 29.205554111018827, 80.30192724242505 29.278609111086865, 80.30616324242902 29.308882111115068, 80.28567224240993 29.320209111125607, 80.23802724236555 29.42298211122133, 80.2902632424142 29.48305411127727, 80.31303624243543 29.49860011129175, 80.3461002424662 29.52139111131298, 80.4084632425243 29.60138211138748, 80.41658224253183 29.640000111423433, 80.3965182425132 29.660827111442842, 80.38415424250167 29.68124511146185, 80.37500924249315 29.740200111516756, 80.41581824253115 29.78569111155913, 80.44330924255672 29.79652711156922, 80.48282724259354 29.79826411157083, 80.53728224264427 29.844645111614028, 80.57415424267862 29.91000011167489, 80.59546324269843 29.949645111711817, 80.62553624272647 29.962909111724173, 80.659427242758 29.963327111724567, 80.67886324277612 29.970273111731032, 80.7440092428368 30.019582111776955, 80.87414524295798 30.140973111890005, 80.94303624302216 30.181109111927384, 81.02536324309881 30.20435411194903, 81.04443624311659 30.176109111922727, 81.073882243144 30.12860911187849, 81.0961002431647 30.084718111837617, 81.11942724318641 30.019445111776832, 81.16095424322509 30.030418111787043, 81.19984524326134 30.01777311177527, 81.23220924329149 30.011945111769847, 81.25332724331116 30.028745111785483, 81.24748224330568 30.05638211181123, 81.27859124333469 30.06721811182132, 81.29860024335329 30.078054111831406, 81.38081824342987 30.172500111919362, 81.39276324344098 30.26555411200603, 81.39096324343933 30.31527311205234, 81.40860024345574 30.375554112108475, 81.42622724347217 30.385000112117268, 81.44692724349142 30.37721811211003, 81.46638224350954 30.359436112093462, 81.4936002435349 30.34152711207679, 81.54568224358343 30.332082112067994, 81.55053624358794 30.35832711209244, 81.56052724359722 30.384436112116745, 81.6302542436622 30.424718112154267, 81.6549822436852 30.41916411214909, 81.72804524375323 30.392491112124247, 81.80831824382801 30.363745112097476, 81.85304524386964 30.37666411210951, 81.95138224396123 30.363882112097613, 82.11122724411013 30.3344451120702, 82.15123624414736 30.120409111870856, 82.17525424416976 30.0692361118232, 82.22491824421598 30.075000111828558, 82.42081824439845 30.010273111768285, 82.59860024456401 29.892218111658337, 82.65235424461406 29.83832711160815, 82.77665424472985 29.73388211151088, 82.87206324481872 29.66693611144852, 82.90824524485242 29.690618111470584, 82.99860024493654 29.670000111451373, 83.01805424495467 29.658327111440514, 83.0599822449937 29.623327111407917, 83.12080924505034 29.622082111406755, 83.16499124509153 29.633054111416968, 83.19108224511581 29.631664111415674, 83.25749124517768 29.580000111367553, 83.35442724526791 29.490554111284254, 83.37915424529098 29.46610911126149, 83.3774822452894 29.43763611123498, 83.38053624529226 29.416382111215185, 83.4144272453238 29.36555411116784, 83.54790924544812 29.18902711100344, 83.6059452455022 29.1647181109808, 83.62858224552326 29.165827110981837, 83.63610024553026 29.16943611098519, 83.67227224556393 29.16332711097951, 83.68830924557886 29.183882110998653, 83.6951182455852 29.206382111019607, 83.72053624560891 29.228882111040562, 83.75082724563714 29.242773111053495, 83.91249124578769 29.289718111097216, 83.97610024584691 29.296945111103952, 84.11650924597768 29.26097311107044, 84.18095424603769 29.20971811102271, 84.18040024603721 29.183327110998135, 84.15942724601763 29.156664110973296, 84.1620722460201 29.13000011094846, 84.23997224609269 29.053891110877586, 84.23275424608596 28.97610911080514, 84.2369272460898 28.918882110751852, 84.24442724609679 28.913609110746933, 84.3265182461733 28.871800110707994, 84.38860024623108 28.863327110700112, 84.40554524624685 28.849164110686914, 84.43026324626987 28.812500110652763, 84.4591542462968 28.759164110603095, 84.48622724632202 28.734018110579683, 84.57082724640082 28.712491110559625, 84.63638224646184 28.70277311055058, 84.70845424652896 28.651527110502855, 84.70310924652398 28.607218110461588, 84.82331824663595 28.551936110410097, 84.84664524665766 28.54444511040313, 84.94720924675136 28.542082110400926, 85.03166324682996 28.603882110458485, 85.05227224684916 28.634227110486734, 85.07221824686775 28.64138211049341, 85.10693624690009 28.636664110489008, 85.19518224698226 28.59103611044651, 85.1819272469699 28.530000110389665, 85.13512724692634 28.46527311032939, 85.11360024690629 28.39582711026472, 85.10331824689672 28.316391110190736, 85.11095424690382 28.30666411018167, 85.13998224693086 28.295273110171067, 85.23692724702113 28.278609110155543, 85.28387224706489 28.272218110149595, 85.37664524715126 28.263609110141573, 85.39721824717043 28.26639111014417, 85.41388224718594 28.27971811015658, 85.43691824720742 28.3001361101756, 85.45888224722785 28.301664110177015, 85.58360024734401 28.282500110159162, 85.72137224747235 28.27916411015606, 85.74248224749198 28.24263611012205, 85.78081824752769 28.206109110088022, 85.82054524756467 28.18527311006862, 85.84720924758955 28.173609110057754, 85.86941824761021 28.16733611005192, 85.88777224762731 28.14860911003447, 85.95166324768678 28.013054109908225, 85.97637224770983 27.910136109812385, 86.00540024773687 27.886245109790124, 86.06971824779674 27.888045109791804, 86.0894182478151 27.8908271097944, 86.13596324785846 27.935336109835845, 86.1238722478472 27.98082710987822, 86.10386324782854 28.026945109921172, 86.09622724782145 28.086736109976854, 86.19769124791594 28.158054110043267, 86.21457224793164 28.11235411000071, 86.19691824791522 28.072082109963205, 86.22304524793952 28.011391109906683, 86.35206324805972 27.94500010984484, 86.45137224815221 27.908882109811216, 86.51776324821401 27.940273109840447, 86.53776324823264 27.959718109858557, 86.54109124823577 28.024164109918573, 86.56943624826215 28.10041810998959, 86.58860024827999 28.113054110001357, 86.69526324837932 28.111664110000063, 86.7285912484104 28.100554109989716, 86.75610024843598 28.082218109972644, 86.75610024843598 28.055973109948198, 86.75999124843963 28.030554109924523, 86.90359124857338 27.96971810986787, 86.94707224861384 27.94763610984731, 87.03255424869349 27.96325410986185, 87.08651824874374 27.924300109825566, 87.09707224875353 27.89124510979478, 87.14151824879497 27.84402710975081, 87.19274524884264 27.823054109731274, 87.30609124894823 27.816391109725075, 87.32916324896968 27.8222181097305, 87.40887224904395 27.8430541097499, 87.53665424916295 27.840273109747315, 87.59054524921311 27.81485410972364, 87.62608224924622 27.813609109722478, 87.66053624927832 27.82888210973671, 87.7205362493342 27.805000109714456, 87.75139124936294 27.81305410972196, 87.78027224938984 27.825000109733082, 87.80456324941247 27.84388210975068, 87.82527224943175 27.869718109774738, 87.84900924945384 27.910691109812902, 87.8726182494758 27.917218109818975, 87.97692724957295 27.89000010979362, 88.00305424959731 27.885827109789744, 88.02777224962034 27.888609109792327, 88.05442724964513 27.89860910980164, 88.09166324967981 27.892218109795692, 88.14279124972745 27.866054109771326, 88.15248224973647 27.86416410976956, 88.18830924976982 27.849227109755645, 88.18733624976892 27.78263610969364, 88.1488822497331 27.680273109598303, 88.12067224970684 27.611936109534653, 88.09338224968144 27.587154109511573, 88.05692724964746 27.53333610946146, 88.04734524963857 27.496454109427106, 88.03470924962681 27.283609109228877, 88.01401824960755 27.223609109172997, 88.00999124960379 27.194164109145575, 88.01081824960454 27.151391109105745, 87.99498224958978 27.112291109069332, 88.03526324962729 27.04930010901066, 88.07297224966243 27.030973108993592, 88.11859124970493 26.98443610895025, 88.1742822497568 26.876800108850006, 88.19455424977565 26.760418108741618, 88.1917822497731 26.725964108709533, 88.17970024976182 26.685273108671637, 88.17276324975535 26.665691108653405, 88.12137224970752 26.566109108560653, 88.10192724968937 26.530282108527288, 88.10741824969449 26.488809108488667, 88.09068224967893 26.433191108436873, 88.02019124961328 26.368364108376497, 87.94747224954557 26.402500108408276, 87.92720024952666 26.423327108427685, 87.90803624950883 26.446382108449157, 87.8941542494959 26.46930010847049, 87.79136324940015 26.4588821084608, 87.68678224930278 26.425273108429494, 87.65054524926899 26.399718108405693, 87.643045249262 26.392491108398957, 87.55359124917874 26.405827108411387, 87.53027224915701 26.41832710842303, 87.4858182491156 26.43401810843764, 87.45512724908701 26.433609108437253, 87.399291249035 26.418191108422903, 87.36873624900653 26.40152710840738, 87.26971824891433 26.375273108382927, 87.16998224882144 26.400000108405948, 87.08442724874175 26.48638210848641, 87.00443624866728 26.534445108531173, 86.9651822486307 26.525827108523146, 86.94802724861472 26.53092710852789, 86.90068224857066 26.50040910849947, 86.89158224856214 26.477054108477716, 86.82095424849638 26.436736108440172, 86.73338224841484 26.420200108424766, 86.6599912483465 26.456664108458725, 86.4755362481747 26.546109108542026, 86.33415424804303 26.60777310859946, 86.20478224792254 26.58763610858071, 86.18386324790305 26.608054108599717, 86.13831824786064 26.603473108595452, 86.10499124782962 26.618609108609547, 86.08942724781508 26.633054108623, 86.06387224779132 26.653954108642466, 86.03290924776246 26.663191108651077, 85.96581824769999 26.64805410863697, 85.9506092476858 26.62770910861802, 85.86047224760188 26.572845108566923, 85.75345424750219 26.642773108632056, 85.72887224747933 26.67360910866077, 85.72499124747571 26.704991108689995, 85.72692724747748 26.73360910871665, 85.73019124748055 26.787082108766455, 85.71053624746224 26.816109108793484, 85.63075424738793 26.865973108839924, 85.56860024733004 26.845136108820526, 85.54026324730364 26.829718108806162, 85.50804524727363 26.813882108791418, 85.4530452472224 26.786945108766332, 85.33734524711468 26.736936108719746, 85.32804524710599 26.736109108718978, 85.31052724708968 26.739436108722074, 85.22192724700716 26.763054108744072, 85.20116324698785 26.77506410875526, 85.18552724697327 26.798054108776668, 84.96775424677048 26.935827108904988, 84.85498224666543 26.9955451089606, 84.80220024661628 27.015273108978974, 84.78110024659662 27.01139110897536, 84.7534632465709 27.0073641089716, 84.7074912465281 27.021109108984405, 84.65526324647942 27.040345109002317, 84.646236246471 27.06138210902192, 84.66026324648408 27.094164109052443, 84.6798362465023 27.135691109091127, 84.68511824650722 27.206245109156825, 84.6802632465027 27.23221810918102, 84.65318224647751 27.291527109236256, 84.63804524646338 27.311109109254488, 84.59839124642644 27.34000010928139, 84.4994182463343 27.35638210929666, 84.39499124623705 27.367500109307002, 84.32970924617626 27.37777310931658, 84.29776324614647 27.38832710932641, 84.14721824600628 27.51139110944102, 84.05137224591704 27.452982109386625, 84.01914524588699 27.44305410937737, 83.93567224580926 27.447218109381254, 83.922491245797 27.4517731093855, 83.8713722457494 27.440273109374786, 83.87220924575018 27.385273109323563, 83.85830924573719 27.352227109292784, 83.82610024570721 27.371109109310368, 83.80165424568446 27.383054109321492, 83.77748224566193 27.39471810933236, 83.74802724563449 27.408609109345292, 83.63388224552818 27.459718109392895, 83.60775424550388 27.46916410940169, 83.54054524544125 27.473045109405305, 83.41831824532744 27.472773109405054, 83.3940092453048 27.411173109347686, 83.37664524528861 27.37527310931425, 83.3588722452721 27.356109109296398, 83.34235424525667 27.342491109283714, 83.30997224522656 27.336245109277897, 83.27346324519254 27.344718109285793, 83.26110024518101 27.371245109310493, 83.25179124517234 27.390000109327957, 83.17658224510228 27.447009109381057, 83.13053624505943 27.449436109383313, 83.05748224499138 27.44832710938229, 83.02873624496459 27.449582109383456, 82.96804524490807 27.461109109394187, 82.76651824472043 27.503473109433642, 82.74366324469912 27.555900109482465, 82.74692724470214 27.581664109506463, 82.7324822446887 27.639436109560265, 82.7175632446748 27.690409109607742, 82.70110024465947 27.711109109627017))) +PAK Pakistan POLYGON ((63.230436226526024 29.473700111268556, 63.58720922685828 29.50389111129668, 64.05914522729782 29.414436111213362, 64.2113822274396 29.49860011129175, 64.37970022759635 29.55360911134298, 64.6605362278579 29.5877731113748, 65.03414522820586 29.541109111331338, 66.2566542293444 29.851936111620816, 66.36206322944255 29.959782111721253, 66.2406722293295 30.065345111819568, 66.32089122940422 30.227982111971045, 66.35179122943299 30.44250011217082, 66.3395722294216 30.49416411221894, 66.28318222936909 30.570136112289703, 66.40026322947813 30.943464112637386, 66.57901822964462 30.986664112677616, 66.68678222974498 31.091591112775333, 66.7215822297774 31.207354112883152, 66.96554523000461 31.320000112988055, 67.03637223007055 31.318473112986638, 67.06276323009513 31.241109112914586, 67.38471823039498 31.21527311289053, 67.61303623060763 31.271109112942526, 67.79055423077295 31.34340911300987, 67.79685423077882 31.3846821130483, 67.76651823075056 31.410827113072656, 67.66109123065237 31.40152711306399, 67.61415423060868 31.429991113090495, 67.58137223057813 31.529273113182967, 67.73740923072344 31.531382113184932, 67.82304523080322 31.58027311323046, 67.8613722308389 31.62832711327522, 67.9687362309389 31.633882113280393, 68.12532723108473 31.76763611340496, 68.16362723112042 31.829336113462418, 68.21887223117184 31.816391113450365, 68.27138223122077 31.773682113410587, 68.53457223146586 31.72680011336692, 68.56463623149386 31.760618113398422, 68.44630023138367 31.780173113416637, 68.51915423145152 31.82450911345792, 68.57610023150454 31.823473113456956, 68.65054523157389 31.782773113419054, 68.82776323173891 31.605827113254264, 69.01909123191712 31.651036113296357, 69.10575423199782 31.711709113352867, 69.21456323209915 31.858864113489915, 69.32824523220503 31.94036411356582, 69.27303623215363 32.13930011375109, 69.29067223217004 32.32193611392118, 69.2478912321302 32.44110011403217, 69.2827722321627 32.520000114105656, 69.37776323225114 32.56832711415066, 69.4561002323241 32.67422711424929, 69.39540923226758 32.76687311433557, 69.51270023237683 32.87221811443368, 69.49178223235734 32.99672711454964, 69.50707223237157 33.03610911458631, 69.58082723244027 33.086936114633644, 69.87428223271357 33.08943611463597, 70.02887223285754 33.13582711467919, 70.2279002330429 33.25110011478654, 70.32477223313313 33.33270011486253, 70.28803623309892 33.42040911494422, 70.1697002329887 33.519854115036836, 70.19663623301378 33.640827115149506, 70.13338223295489 33.73388211523617, 69.9870632328186 33.75340011525434, 69.91665423275305 33.852218115346375, 69.86720023270698 33.935754115424174, 69.90095423273843 34.029164115511165, 69.9999272328306 34.05194511553239, 70.33831823314574 33.963882115450374, 70.55831823335063 33.944436115432254, 70.88234523365242 33.96500011545142, 71.08117223383758 34.056173115536325, 71.13470923388743 34.163736115636496, 71.15491823390627 34.355618115815204, 71.07749123383414 34.39068211584785, 70.99860023376067 34.46554511591758, 70.98227223374548 34.537909115984974, 70.9917452337543 34.555500116001355, 71.08741823384341 34.561936116007345, 71.10359123385845 34.61680011605844, 71.0919362338476 34.66853611610662, 71.40220923413656 34.91526411633642, 71.49380023422188 34.95770011637593, 71.61276323433265 35.23081811663029, 71.5480452342724 35.317836116711334, 71.64831823436577 35.4281821168141, 71.52804523425377 35.66276411703258, 71.54581823427031 35.69970911706699, 71.44274523417431 35.86693611722272, 71.18970923393866 36.052109117395176, 71.24609123399117 36.131382117469016, 71.58112723430321 36.346445117669305, 71.61986323433928 36.452709117768265, 71.64418223436192 36.46597311778062, 71.74500923445584 36.416118117734186, 72.1458092348291 36.647736117949904, 72.17413623485547 36.70909111800704, 72.33055423500116 36.75571811805047, 72.4704092351314 36.76170011805604, 72.57860023523216 36.825427118115385, 72.86539123549926 36.83420011812356, 73.05469123567556 36.86877311815576, 73.38581823598395 36.88919111817478, 73.53997223612751 36.88045411816664, 73.66830923624704 36.909636118193816, 73.83532723640258 36.89611811818122, 74.0352632365888 36.815373118106024, 74.41692723694425 37.00004511827801, 74.47664523699987 37.010473118287734, 74.55483623707269 36.96505411824543, 74.56542723708253 37.027818118303884, 74.67567223718521 37.06009111833394, 74.98261823747109 36.9869271182658, 75.14786323762499 36.99719111827535, 75.21207223768477 36.9589001182397, 75.39901823785888 36.911554118195596, 75.42580923788384 36.85822711814593, 75.42539123788345 36.76404511805822, 75.45179123790803 36.731691118028095, 75.52414523797543 36.732818118029144, 75.55179123800116 36.768109118062014, 75.66470023810632 36.75853611805309, 75.78970923822274 36.70966411800758, 75.9040182383292 36.622954117926824, 76.01069123842854 36.442082117758375, 76.0416542384574 36.23750911756785, 75.99096323841019 36.159582117495276, 75.91872723834291 36.109945117449044, 75.92887223835234 36.0708181174126, 75.98650923840603 36.00610011735233, 76.10900923852012 35.99180011733901, 76.15499123856296 35.898882117252484, 76.15637223856424 35.830964117189225, 76.18060923858678 35.814573117173964, 76.38499123877716 35.84138211719893, 76.55303623893366 35.90665411725972, 76.59414523897192 35.757218117120544, 76.89526323925236 35.61250011698577, 77.25139123958405 35.53360911691229, 77.42164523974259 35.47276411685563, 77.53553623984868 35.483882116865985, 77.71339124001429 35.46352711684702, 77.78352724007965 35.503745116884474, 77.82392724011726 35.50132711688222, 77.04248223938947 35.09916411650768, 77.06275423940838 35.02082711643473, 76.95401823930712 34.85624511628144, 76.9067912392631 34.67388211611161, 76.86998223922882 34.658882116097644, 76.82220923918436 34.6638821161023, 76.70234523907271 34.74901811618159, 76.45000023883767 34.76720911619853, 76.29872723869681 34.70290911613864, 76.22921823863209 34.611382116053406, 76.16511823857235 34.58686411603057, 76.01500023843255 34.630273116070995, 75.93220923835545 34.60638211604875, 75.79887223823127 34.50666411595587, 75.66137223810321 34.50082711595044, 75.38915423784971 34.555827116001666, 75.24300023771357 34.62610011606711, 75.11053623759022 34.62777311606867, 74.69274523720111 34.69360011612997, 74.38081823691061 34.7826361162129, 74.24748223678642 34.75471811618689, 74.15540023670067 34.70040911613631, 73.9902632365469 34.67555411611316, 73.93657223649689 34.632973116073515, 73.90359123646616 34.53832711598537, 73.79990923636959 34.397564115854266, 73.80456323637392 34.35734511581681, 73.85137223641752 34.31721811577944, 73.97637223653393 34.29804511576158, 74.02158223657605 34.20193611567207, 74.00651823656202 34.17110911564336, 73.9155362364773 34.119718115595504, 73.91622723647794 34.06388211554351, 73.98526323654224 34.01138211549461, 74.2444272367836 34.01915411550185, 74.29456323683027 33.97360011545942, 74.27692723681386 33.921591115410976, 74.23580923677557 33.88416411537612, 74.14304523668918 33.84151811533641, 74.04610023659887 33.82832711532413, 73.99121823654778 33.7454091152469, 73.98692723654378 33.67985411518585, 74.01270023656778 33.641591115150206, 74.14790023669369 33.56624511508004, 74.18234523672578 33.50750011502534, 74.12164523666925 33.3361001148657, 74.02331823657767 33.27298211480692, 74.0197182365743 33.184154114724194, 74.18094523672445 33.042909114592646, 74.33179123686494 33.002354114554876, 74.36359123689456 32.87249111443393, 74.32966323686298 32.81542711438078, 74.36338223689438 32.77505411434319, 74.5316632370511 32.75027311432011, 74.6419272371538 32.77707311434507, 74.66914523717915 32.70470911427768, 74.65415423716519 32.58485411416605, 74.71068223721781 32.480691114069046, 74.89832723739258 32.458882114048734, 75.05762723754094 32.47512711406385, 75.31470923778036 32.351109113948354, 75.32653623779137 32.300445113901176, 75.39130023785171 32.24158211384635, 75.38129123784239 32.21423611382089, 75.25652723772617 32.09287311370785, 74.99635423748387 32.03629111365515, 74.93573623742742 32.06186411367898, 74.59928223711407 31.869427113499754, 74.48872723701112 31.721591113362066, 74.63280023714529 31.462109113120405, 74.62687223713976 31.419409113080647, 74.54837223706667 31.354436113020128, 74.5226632370427 31.17508211285309, 74.55728223707496 31.076045112760866, 74.58957223710502 31.079491112764075, 74.62374523713686 31.12392711280546, 74.706572237214 31.093264112776893, 74.69759123720564 31.059091112745065, 74.3074822368423 30.848882112549305, 74.1810912367246 30.691664112402876, 74.04887223660145 30.59916411231673, 73.9960912365523 30.505000112229027, 73.87040923643525 30.387409112119514, 73.86010923642567 30.361464112095362, 73.93609123649642 30.311664112048973, 73.9619272365205 30.24416411198611, 73.9676272365258 30.208191111952615, 73.93340023649392 30.13600011188538, 73.79887223636862 30.07055411182442, 73.58110023616581 30.017636111775147, 73.3974912359948 29.94277311170542, 73.26527223587169 29.553054111342462, 73.08638223570509 29.245827111056343, 72.98887223561425 29.141936110959577, 72.95026323557829 29.04000011086464, 72.38970923505624 28.785000110627152, 72.29026323496362 28.6728451105227, 72.20664523488577 28.40250011027092, 71.99220023468604 28.21582711009708, 71.91900923461787 28.11916411000705, 71.89694523459733 27.961936109860616, 71.61470023433446 27.876109109780685, 71.22581823397229 27.84582710975249, 70.92998223369676 27.723045109638136, 70.82943623360313 27.706382109622623, 70.72720023350792 27.74582710965936, 70.66206323344724 27.87020910977519, 70.66568223345061 27.921936109823363, 70.58735423337768 28.00319110989905, 70.48067223327831 28.045554109938493, 70.366509233172 28.018745109913525, 70.12387223294601 27.822500109730754, 70.03110023285961 27.59055410951474, 69.86748223270723 27.408609109345292, 69.58353623244278 27.17798210913051, 69.51208223237626 26.999300108964093, 69.48581823235179 26.817773108795038, 69.51130923237554 26.748745108730745, 69.72276323257245 26.66527310865301, 69.79553623264025 26.59693610858936, 70.07138223289715 26.596109108588593, 70.1679722329871 26.556245108551465, 70.18727223300507 26.523882108521335, 70.17428223299297 26.24750010826392, 70.09470023291885 26.086245108113744, 70.0885272329131 25.983191108017778, 70.12289123294511 25.910691107950257, 70.28484523309595 25.7055541077592, 70.3788722331835 25.67582710773152, 70.53720923333097 25.685273107740315, 70.61234523340096 25.71458210776761, 70.67567223345992 25.680136107735535, 70.67769123346181 25.40311810747754, 70.75040923352952 25.277909107360927, 70.88248223365252 25.14916410724102, 70.94220023370815 24.93555410704208, 71.0774272338341 24.680464106804507, 71.00101823376292 24.64464510677115, 70.98012723374347 24.55791810669038, 71.00331823376507 24.465064106603904, 71.09568223385108 24.44054510658107, 71.10498223385974 24.41930010656128, 71.02068223378123 24.362218106508124, 70.92803623369497 24.361664106507604, 70.86498223363623 24.30412710645402, 70.88122723365137 24.273191106425216, 70.76193623354027 24.235827106390417, 70.64511823343148 24.244091106398102, 70.5841542333747 24.28110910643258, 70.59901823338853 24.40832710655107, 70.55998223335217 24.43582710657668, 70.11711823293973 24.30312710645309, 70.06409123289035 24.19368210635116, 70.02026323284952 24.170691106329755, 69.72360023257323 24.171109106330135, 69.59860023245682 24.28139110643285, 69.07728223197131 24.294854106445385, 68.97740923187828 24.263609106416283, 68.92970023183386 24.324300106472805, 68.78874523170259 24.333609106481475, 68.74836323166497 24.31782710646678, 68.74470923166157 24.295273106445777, 68.7472092316639 23.969991106142828, 68.38248223132422 23.96624510613934, 68.28470923123317 23.939300106114246, 68.2177632311708 23.87250010605203, 68.19780023115223 23.766682105953493, 68.16692723112348 23.754818105942434, 68.1851912311405 23.830209106012646, 68.15738223111458 23.89187310607008, 68.15081823110847 23.68804510588025, 68.05240923101681 23.72298210591279, 68.071927231035 23.792500105977524, 68.05331823101767 23.910273106087217, 68.01562723098257 23.935209106110435, 68.04873623101341 23.827291106009937, 68.01943623098612 23.766454105953272, 67.94748223091909 23.807773105991757, 67.85511823083309 23.90180010607932, 67.83942723081847 23.813191105996808, 67.7088822306969 23.78971810597494, 67.6325542306258 23.80235410598671, 67.61442723060892 23.846109106027455, 67.50228223050448 23.891909106070116, 67.53803623053778 23.93642710611158, 67.50067223050297 23.974045106146605, 67.48664523048993 24.045273106212946, 67.4612002304662 24.065354106231652, 67.34845423036123 24.07790910624334, 67.30247223031839 24.176109106334792, 67.27388223029178 24.425827106567368, 67.1511002301774 24.61305410674173, 67.148527230175 24.650136106776273, 67.20150923022436 24.71513610683681, 67.25464523027384 24.738400106858464, 67.23540023025592 24.772918106890614, 66.85609122990266 24.8547181069668, 66.651372229712 24.82853610694241, 66.66775422972725 24.870200106981216, 66.70499122976193 24.891664107001205, 66.67504522973405 24.921318107028824, 66.73275422978779 25.197491107286027, 66.7019362297591 25.243327107328724, 66.58638222965149 25.32721810740685, 66.53983622960814 25.509300107576422, 66.43803622951333 25.593327107654687, 66.35941822944011 25.613609107673568, 66.1658272292598 25.56805410763114, 66.14414522923963 25.507273107574534, 66.33193622941451 25.554091107618135, 66.48505422955711 25.48492710755373, 66.50005422957108 25.403818107478187, 66.36126322944182 25.407718107481813, 66.23019122931976 25.442636107514346, 65.92803622903836 25.412218107486012, 65.6625542287911 25.34319110742173, 65.46641822860843 25.3826731074585, 65.2449912284022 25.37450910745089, 65.17005422833242 25.295209107377033, 65.13622722830092 25.28805410737037, 64.93719122811555 25.32471810740452, 64.76290922795323 25.32055410740064, 64.68429122788001 25.284582107367143, 64.66165422785895 25.230827107317083, 64.70307222789751 25.188118107277305, 64.64873622784691 25.16249110725343, 64.61998222782012 25.169991107260415, 64.62164522782169 25.238191107323942, 64.53818222774393 25.27110910735459, 64.38804522760412 25.26666410735045, 64.09366322732996 25.328473107408016, 64.0804092273176 25.415691107489252, 64.13943622737258 25.42263610749572, 64.15339122738558 25.44596410751744, 64.11734522735202 25.453191107524177, 63.98054522722461 25.418400107491763, 64.01401822725578 25.3904091074657, 64.03415422727454 25.413191107486924, 64.05449122729348 25.4055541074798, 64.0686002273066 25.33937310741817, 63.92916322717676 25.334164107413315, 63.74513622700536 25.385409107461044, 63.656382226922716 25.37888210745497, 63.518191226794016 25.32819110740776, 63.470682226749744 25.281945107364677, 63.48110022675945 25.248609107333635, 63.4291632267111 25.21500010730233, 63.30319122659378 25.21874510730582, 63.163045226463254 25.255554107340103, 63.01401822632445 25.21555410730285, 62.74470922607364 25.259445107343723, 62.55693622589877 25.259445107343723, 62.479154225826335 25.246518107331696, 62.37470922572905 25.182773107272325, 62.31750022567576 25.171664107261975, 62.24443622560773 25.219718107306733, 62.105827225478635 25.204436107292494, 62.014163225393276 25.116664107210752, 61.88081822526908 25.100554107195748, 61.84485422523559 25.037364107136895, 61.741518225139345 25.039718107139095, 61.7290182251277 25.087354107183458, 61.782873225177866 25.174209107264346, 61.61102722501781 25.197645107286178, 61.64360922504815 25.298336107379953, 61.68762722508916 25.797500107844826, 61.761936225158365 25.80780910785444, 61.779991225175166 25.84389110788804, 61.81693622520959 26.108609108134573, 61.85485422524491 26.230554108248143, 62.10388222547684 26.314445108326282, 62.13895422550948 26.379545108386907, 62.27489122563608 26.35660010836554, 62.288609225648855 26.37901810838642, 62.27256322563392 26.420409108424963, 62.31527322567371 26.509027108507496, 62.437909225787905 26.566527108561047, 62.70388222603563 26.602218108594286, 62.77026322609743 26.648745108637613, 63.185127226483814 26.63916410862869, 63.21610022651265 26.85388210882867, 63.25819122655187 26.94040910890925, 63.252636226546684 27.080554109039767, 63.276518226568925 27.12055410907702, 63.328809226617636 27.127982109083945, 63.330273226619 27.14888210910341, 63.2848542265767 27.222218109171706, 63.20193622649947 27.26763610921401, 62.9358912262517 27.21471810916472, 62.814854226138976 27.234991109183596, 62.78027322610677 27.26680010921322, 62.839709226162114 27.474436109406597, 62.82193622614557 27.76027310967281, 62.75916322608711 27.99527310989167, 62.78221822610857 28.2637451101417, 62.592491225931866 28.233609110113633, 62.48909122583558 28.35561811022727, 62.39985422575248 28.419436110286696, 61.905545225292116 28.555000110412948, 61.651382225055414 28.785273110627415, 61.511936224925535 29.071109110893616, 61.42804522484741 29.151382110968385, 61.360273224784294 29.26582711107497, 61.3144362247416 29.39582711119604, 60.86630022432425 29.863654111631732, 62.484436225831246 29.40610911120561, 63.230436226526024 29.473700111268556)) +TJK Tajikistan MULTIPOLYGON (((74.9157362374088 37.237327118498996, 74.83942723733773 37.31974511857577, 74.82304523732248 37.33183611858702, 74.66957223717952 37.39211811864317, 74.63943623715147 37.38626411863771, 74.54676323706516 37.3817361186335, 74.43220923695847 37.39400911864493, 74.3949912369238 37.40122711865165, 74.32249123685628 37.406773118656815, 74.25415423679266 37.40940911865927, 74.2312272367713 37.396764118647496, 74.146100236692 37.33618211859107, 74.04026323659346 37.311436118568025, 73.87192723643668 37.26723611852685, 73.84220923640899 37.25049111851126, 73.81706323638556 37.2281911184905, 73.73859123631249 37.2216451184844, 73.63130023621258 37.24289111850419, 73.62060023620259 37.26351811852339, 73.64665423622688 37.300127118557484, 73.718736236294 37.30881811856558, 73.76985423634162 37.34349111859788, 73.77631823634763 37.43286411868111, 73.74720923632051 37.438645118686495, 73.71165423628742 37.4378001186857, 73.66970023624833 37.43536411868344, 73.61303623619557 37.437091118685046, 73.57138223615678 37.44834511869553, 73.5412362361287 37.46098211870729, 73.50512723609506 37.472709118718214, 73.45637223604965 37.47610911872138, 73.43552723603025 37.47581811872111, 73.29928223590335 37.46039111870675, 73.27692723588254 37.45301811869989, 73.15776323577154 37.402982118653284, 73.10775423572497 37.36270011861576, 73.00139123562593 37.30406411856116, 72.89249123552449 37.25000911851082, 72.83422723547025 37.235064118496894, 72.79977223543816 37.229218118491445, 72.77804523541792 37.21040011847393, 72.75888223540008 37.18068211844624, 72.73387223537677 37.13538211840405, 72.72220923536591 37.11232711838258, 72.70803623535272 37.09065411836241, 72.66246323531027 37.02534511830157, 72.51803623517577 37.001736118279595, 72.43136323509503 37.00283611828061, 72.41024523507537 37.00255411828036, 72.34663623501612 36.98949111826819, 72.30635423497861 36.97810011825757, 72.27997223495404 36.96700011824724, 72.22385423490178 36.94271811822463, 72.04774523473776 36.83038211812, 71.93136323462937 36.75041811804553, 71.84275423454685 36.69210011799122, 71.8202632345259 36.68460011798423, 71.78166323448997 36.67821811797829, 71.75915423446901 36.67489111797519, 71.69525423440948 36.67184511797235, 71.67720023439267 36.676009117976236, 71.61530023433502 36.697845117996565, 71.57657223429896 36.731018118027464, 71.55291823427692 36.7635821180578, 71.46638223419635 36.9266911182097, 71.45693623418754 36.9447361182265, 71.43081823416321 37.06693611834031, 71.43750023416945 37.16611811843268, 71.44776323417898 37.20959111847317, 71.46349123419364 37.23060911849275, 71.48276323421157 37.25903611851922, 71.48929123421766 37.278491118537346, 71.49188223422007 37.30930011856603, 71.49331823422142 37.370300118622836, 71.48720023421572 37.41808211866734, 71.49618223422408 37.56327311880257, 71.50439123423172 37.60939111884551, 71.5419272342667 37.72674511895481, 71.5759632342984 37.7976001190208, 71.58859123431014 37.81565411903762, 71.59109123431247 37.836773119057284, 71.5936002343148 37.87427311909221, 71.58485423430668 37.9117361191271, 71.54026323426513 37.944145119157284, 71.50719123423434 37.947509119160415, 71.43580923416786 37.9253821191398, 71.38970923412492 37.90704511912273, 71.3290182340684 37.89009111910694, 71.2521452339968 37.92793611914219, 71.2661002340098 37.982318119192826, 71.31526323405558 38.085127119288586, 71.3394272340781 38.131254119331544, 71.35581823409336 38.155073119353716, 71.36581823410268 38.195291119391186, 71.36192723409906 38.2479451194402, 71.30595423404694 38.297118119486015, 71.27151823401485 38.30239111949092, 71.2481822339931 38.3041911194926, 71.21249123395987 38.319745119507076, 71.17776323392752 38.347945119533335, 71.15127223390286 38.38102711956415, 70.98817223375096 38.46670911964395, 70.96012723372485 38.47198211964886, 70.77943623355657 38.441545119620514, 70.7113822334932 38.40986411959102, 70.64749123343367 38.354291119539255, 70.59915423338867 38.31095411949889, 70.54262723333602 38.252818119444754, 70.49025423328723 38.161891119360064, 70.34193623314911 38.01867311922669, 70.31123623312052 38.00033611920961, 70.29720923310745 37.99859111920799, 70.2799822330914 37.976436119187355, 70.24456323305841 37.94328211915648, 70.2094272330257 37.92893611914312, 70.16253623298203 37.92895411914313, 70.16554523298484 37.87171811908982, 70.1777542329962 37.85200011907146, 70.20484523302144 37.83408211905477, 70.23574523305021 37.82220911904372, 70.26915423308134 37.771309118996314, 70.28220923309348 37.72898211895689, 70.2860912330971 37.69970011892963, 70.25360023306683 37.615745118851436, 70.15581823297578 37.536227118777376, 70.12790923294978 37.52891811877056, 70.08706323291173 37.53286411877424, 70.06245423288883 37.54133611878213, 70.03554523286377 37.541791118782555, 70.0138822328436 37.54554511878605, 69.95123623278525 37.57277311881141, 69.9330272327683 37.60263611883923, 69.91193623274864 37.61319111884906, 69.89165423272976 37.61402711884983, 69.86748223270723 37.60832711884453, 69.84610023268732 37.600000118836775, 69.79304523263792 37.582773118820725, 69.67189123252507 37.57440011881293, 69.58110023244052 37.57860911881684, 69.52220923238568 37.582354118820334, 69.38150923225464 37.453464118700296, 69.37664523225013 37.41971811866887, 69.37441823224805 37.38804511863937, 69.3813632322545 37.344154118598496, 69.38998223226253 37.324436118580124, 69.40581823227728 37.276936118535886, 69.42609123229616 37.20721811847096, 69.42124523229165 37.19640911846089, 69.40999123228116 37.17527311844121, 69.38860023226124 37.15860011842568, 69.32241823219962 37.1194361183892, 69.28665423216631 37.10416411837498, 69.2544272321363 37.09568211836708, 69.20499123209024 37.116391118386375, 69.15104523204002 37.15076411841838, 69.12436323201516 37.16422711843093, 69.03151823192869 37.25360911851416, 69.00581823190475 37.30069111855802, 68.96921823187066 37.32290911857871, 68.89110923179791 37.338464118593194, 68.80941823172185 37.32249111857831, 68.66220923158474 37.27290911853214, 68.63943623156354 37.24388211850511, 68.62734523155228 37.20610011846992, 68.41499123135449 37.11999111838972, 68.33442723127948 37.10889111837939, 68.28414523123266 37.03054511830642, 68.18248223113795 37.017627118294385, 68.05800923102203 36.932527118215134, 68.00139123096932 36.93610011821846, 67.78693623076958 37.092209118363854, 67.77422723075776 37.11554511838558, 67.779872230763 37.185818118451024, 67.78741823077004 37.19081811845568, 67.8140092307948 37.21874511848169, 67.83707223081626 37.25901811851921, 67.84137223082027 37.28166411854029, 67.84373623082249 37.321518118577416, 67.84081823081976 37.35249111860625, 67.82957223080928 37.39069111864184, 67.81749123079803 37.416382118665766, 67.81749123079803 37.44610011869344, 67.82638223080633 37.482073118726944, 67.83831823081744 37.50582711874907, 67.86095423083853 37.54304511878372, 67.90304523087772 37.599718118836506, 67.9172092308909 37.6172091188528, 67.93719123090952 37.636109118870394, 67.98122723095054 37.673327118905064, 68.00179123096967 37.687491118918246, 68.05192723101638 37.73888211896612, 68.07304523103605 37.76527311899069, 68.09540923105686 37.802354119025225, 68.1230272310826 37.85889111907788, 68.12997223108906 37.884436119101665, 68.14255423110077 37.916309119131355, 68.17110023112735 37.93401811914785, 68.23839123119004 37.94214511915541, 68.26846323121805 37.95228211916486, 68.33781823128263 38.04615411925229, 68.3549822312986 38.08554511928898, 68.37998223132189 38.16054511935883, 68.38297223132469 38.19485411939078, 68.36429123130728 38.23749111943047, 68.33706323128192 38.26762711945855, 68.27748223122643 38.30367311949212, 68.21984523117277 38.33012711951676, 68.12490923108433 38.427564119607496, 68.07123623103436 38.54388211971582, 68.07415423103708 38.66470911982836, 68.12004523107981 38.79798211995248, 68.14970923110744 38.806236119960175, 68.17428223113032 38.82069111997362, 68.19364523114837 38.85172712000252, 68.18511823114042 38.89846412004604, 68.18026323113588 38.904709120051876, 68.15387223111131 38.931382120076705, 68.14012723109852 38.95026412009429, 68.12636323108569 38.98096412012288, 68.11053623107097 38.99888212013957, 67.98441823095351 39.008045120148125, 67.9347092309072 38.996936120137775, 67.86081823083839 38.97762712011979, 67.75082723073595 38.99027312013155, 67.71734523070478 38.995136120136095, 67.69998223068859 39.006245120146446, 67.69526323068419 39.01599112015552, 67.6968632306857 39.12846412026025, 67.62595423061967 39.1684641202975, 67.59554523059134 39.17319112030191, 67.56666323056444 39.171664120300505, 67.5218542305227 39.167700120296814, 67.37588223038676 39.21669112034243, 67.36470023037634 39.27166412039364, 67.36600023037755 39.288782120409564, 67.40914523041775 39.29693612041717, 67.43150923043856 39.36790912048326, 67.43997223044644 39.437209120547806, 67.44247223044877 39.46249112057134, 67.44195423044829 39.483582120590995, 67.50443623050649 39.52888212063317, 67.68192723067179 39.615273120713624, 67.70971823069766 39.62582712072347, 67.72970923071628 39.629154120726554, 67.75915423074372 39.630545120727874, 67.83803623081718 39.61950012071756, 67.86303623084046 39.611382120710005, 67.9077632308821 39.600545120699934, 68.08249123104483 39.56721812066888, 68.14888223110668 39.55665412065903, 68.17526323113123 39.5536001206562, 68.35331823129707 39.53666412064044, 68.3847182313263 39.535554120639404, 68.47330923140882 39.5375001206412, 68.52027223145257 39.54777312065076, 68.54026323147116 39.554709120657236, 68.61178223153777 39.630273120727594, 68.62761823155253 39.6505451207465, 68.62858223155342 39.77110012085876, 68.63720923156146 39.83942712092241, 68.64267223156654 39.85823612093992, 68.65610023157905 39.86250012094388, 68.72304523164141 39.868600120949566, 68.73553623165304 39.84930012093159, 68.75755423167354 39.829645120913284, 68.90467223181057 39.89228212097163, 68.85665423176584 39.95485412102991, 68.82943623174049 39.97776412105122, 68.81164523172393 40.00082712107272, 68.78457223169869 40.06790912113519, 68.82296323173446 40.078654121145206, 68.9327542318367 40.07527312114203, 68.99504523189472 40.0706181211377, 69.00873623190748 40.1036731211685, 68.99109123189103 40.1408271212031, 68.87622723178407 40.14762712120944, 68.79537223170877 40.12881812119193, 68.76220923167787 40.12221812118577, 68.71388223163288 40.11639112118033, 68.70236323162214 40.117709121181576, 68.68136323160257 40.12193612118551, 68.63665423156095 40.139991121202314, 68.60567223153208 40.165754121226314, 68.64200023156593 40.18406412124335, 68.69553623161579 40.196100121254574, 68.72790923164592 40.20250012126053, 68.76832723168357 40.20804512126571, 69.0358182319327 40.2387451212943, 69.06164523195676 40.23471812129054, 69.07893623197285 40.2301731212863, 69.13414523202428 40.20874512126636, 69.19415423208017 40.19554512125407, 69.22692723211068 40.190545121249414, 69.24914523213138 40.19110012124992, 69.30248223218103 40.199018121257296, 69.31943623219684 40.20971812126726, 69.33873623221481 40.33346412138249, 69.32832723220511 40.37470912142092, 69.2597092321412 40.50277312154017, 69.26999123215077 40.5955451216266, 69.34887223222424 40.76395412178343, 69.3652632322395 40.77943612179786, 69.40060923227244 40.79985412181688, 69.45150923231984 40.81110012182734, 69.53720023239964 40.78081812179914, 69.5715182324316 40.7512451217716, 69.58832723244726 40.72499112174714, 69.6690092325224 40.6552731216822, 69.68970023254167 40.64263612167045, 69.7267822325762 40.63880912166687, 69.7596362326068 40.651936121679114, 69.78595423263133 40.67971812170498, 69.81810923266127 40.712491121735496, 69.84720923268836 40.72249112174481, 69.90027223273779 40.733882121755414, 69.93997223277475 40.74027312176136, 69.97262723280517 40.7461001217668, 70.00000023283067 40.75410912177426, 70.05026323287746 40.76998212178904, 70.25290023306619 40.858154121871166, 70.32347223313192 40.899245121909416, 70.3608182331667 40.93494512194269, 70.37441823317937 40.961818121967696, 70.37573623318059 41.00918212201182, 70.39116323319496 41.03661812203737, 70.4176272332196 41.04772712204772, 70.43900923323952 41.04925412204915, 70.46081823325983 41.043282122043564, 70.46514523326385 41.03874512203936, 70.47511823327315 41.03446412203536, 70.54860023334157 40.97743612198224, 70.65803623344351 40.87022712188241, 70.66720923345204 40.82744512184257, 70.7124912334942 40.77036412178941, 70.7597182335382 40.761482121781114, 70.78415423356097 40.74918212176968, 70.79680023357272 40.7255911217477, 70.77748223355474 40.70632712172977, 70.73400923351426 40.675082121700655, 70.5349912333289 40.559382121592904, 70.41526323321739 40.49105412152926, 70.36998223317522 40.47132712151091, 70.34309123315018 40.445809121487144, 70.37553623318041 40.376400121422506, 70.46096323325997 40.350354121398226, 70.58942723337961 40.25520912130963, 70.60290923339215 40.23312712128907, 70.62359123341142 40.21188212126927, 70.64499123343134 40.205909121263716, 70.70845423349047 40.20396412126189, 70.74888223352812 40.20910012126669, 70.79304523356925 40.219100121276, 70.82249123359665 40.22827312128453, 70.86067223363222 40.241191121296566, 70.95776323372263 40.24494512130008, 70.98203623374525 40.24484512129996, 70.9949822337573 40.22861812128485, 70.98567223374863 40.18993612124882, 70.95735423372227 40.17480012123474, 70.92165423368903 40.1689731212293, 70.8861092336559 40.17131812123151, 70.66338223344849 40.10069112116571, 70.66026323344556 40.044845121113696, 70.65430023344001 40.00754512107898, 70.63970923342643 39.98504512105802, 70.62248223341038 39.97045412104441, 70.6030452333923 39.95823612103305, 70.49428223329099 39.908145120986404, 70.46803623326656 39.92793612100482, 70.48859123328569 39.96920012104326, 70.5176912333128 39.988445121061176, 70.54650923333963 40.00295412107468, 70.55824523335056 40.028100121098106, 70.54220923333563 40.0460181211148, 70.51235423330783 40.056709121124754, 70.42665423322802 40.07018212113729, 70.35151823315803 40.08212712114843, 70.32957223313758 40.09073612115645, 70.30956323311895 40.11567312117967, 70.28568223309671 40.1325541211954, 70.05247223287952 40.20776412126543, 70.01193623284178 40.21799112127496, 69.81776323266092 40.17027312123051, 69.69247223254425 40.13276412119558, 69.63693623249253 40.11888212118265, 69.60581823246355 40.1119361211762, 69.56970923242991 40.10930012117373, 69.54074523240294 40.128882121191964, 69.49929123236433 40.072909121139844, 69.48546323235146 40.03784512110718, 69.50554523237017 39.962627121037144, 69.52404523238738 39.93450912101096, 69.49831823236343 39.92082712099821, 69.42484523229501 39.90505412098352, 69.40748223227882 39.93797312101418, 69.33481823221115 39.99260012106504, 69.28499123216474 39.88721812096691, 69.2677632321487 39.83832712092138, 69.25721823213888 39.79860912088438, 69.24950023213171 39.75763612084623, 69.26249123214379 39.7334641208237, 69.29873623217756 39.704300120796546, 69.30998223218802 39.68680012078025, 69.31414523219192 39.659709120755025, 69.31414523219192 39.630273120727594, 69.30970023218777 39.59930012069876, 69.30150923218014 39.56040912066254, 69.30859123218673 39.534854120638755, 69.3332542322097 39.518809120623786, 69.51637223238023 39.538609120642235, 69.55122723241271 39.55013612065298, 69.58123623244066 39.573464120674686, 69.60914523246666 39.58221812068285, 69.67220923252538 39.58638212068672, 69.70803623255875 39.58777312068801, 69.75027223259809 39.5819361206826, 69.78192723262757 39.57249112067379, 69.8010912326454 39.56220912066422, 69.82443623266715 39.54527312064843, 69.84664523268785 39.537218120640944, 69.96609123279907 39.55443612065699, 70.18136323299956 39.58436412068485, 70.23749123305183 39.57738212067835, 70.30192723311185 39.55150912065426, 70.35609123316229 39.58203612068269, 70.48207223327961 39.60663612070559, 70.50749123330328 39.60705412070598, 70.63283623342002 39.579773120680585, 70.6613722334466 39.54941812065229, 70.67164523345619 39.518154120623194, 70.67267223345712 39.507045120612844, 70.69470023347765 39.48926412059629, 70.72110023350223 39.42537312053679, 70.84860023362097 39.41093612052333, 70.99414523375654 39.40093612051402, 71.0280362337881 39.41094512052334, 71.04359123380257 39.42540912053681, 71.05581823381397 39.45347312056296, 71.07387223383077 39.489582120596566, 71.10261823385756 39.512654120618066, 71.1960912339446 39.53321812063723, 71.32638223406596 39.56962712067113, 71.40637223414043 39.60630012070527, 71.48455423421325 39.61797312071616, 71.51470923424134 39.60436412070348, 71.54872723427303 39.572209120673534, 71.54880923427311 39.54761812065064, 71.51846323424485 39.50886412061453, 71.51749123424392 39.488654120595726, 71.53790023426293 39.46440912057312, 71.56387223428712 39.45434512056377, 71.59707223431803 39.449209120558976, 71.65443623437147 39.45019112055988, 71.68109123439629 39.453236120562735, 71.71457223442746 39.46143612057037, 71.75776323446769 39.45584512056516, 71.77526323448399 39.4171271205291, 71.77318223448205 39.391436120505176, 71.74387223445476 39.3608731204767, 71.73282723444447 39.333782120451474, 71.74275423445371 39.30878212042819, 71.77851823448702 39.277636120399194, 71.86130923456415 39.288373120409176, 71.89942723459964 39.30656412042612, 71.9338722346317 39.326854120445034, 71.97138223466666 39.3479731204647, 72.0776182347656 39.371445120486555, 72.09831823478487 39.34825412046496, 72.13970923482341 39.274636120396394, 72.25888223493442 39.195473120322674, 72.30636323497862 39.2571451203801, 72.31413623498585 39.286591120407536, 72.32499123499596 39.31687312043573, 72.34776323501717 39.33840012045579, 72.42449123508865 39.35874512047474, 72.4533272351155 39.35271812046912, 72.48441823514446 39.349654120466255, 72.59860023525079 39.365909120481405, 72.63318223528299 39.39076412050454, 72.65734523530551 39.40131812051439, 72.68887223533486 39.397709120511024, 72.77748223541738 39.377982120492646, 72.80498223544299 39.37131812048645, 72.86235423549644 39.362018120477785, 73.16359123577698 39.3545181204708, 73.18552723579742 39.35827312047428, 73.35755423595762 39.4040271205169, 73.36776323596715 39.43784512054839, 73.49136323608224 39.46992712057826, 73.5247092361133 39.47325412058137, 73.65416323623387 39.460764120569735, 73.65568223623526 39.454827120564204, 73.66887223624755 39.36549112048101, 73.66900923624769 39.34159112045876, 73.64553623622584 39.29299112041349, 73.62817223620965 39.26104512038373, 73.62004523620209 39.235691120360116, 73.72838223630299 39.076254120211644, 73.77610023634742 39.04965412018686, 73.84186323640867 38.99610912013699, 73.85234523641844 38.97256412011507, 73.84574523641228 38.947364120091606, 73.81921823638757 38.93729112008222, 73.78110023635207 38.93659112008157, 73.74984523632298 38.92937312007484, 73.72330923629826 38.91242712005905, 73.70818223628416 38.88652712003494, 73.70860023628455 38.85840912000876, 73.72345423629841 38.83826411998999, 73.76304523633527 38.7616091199186, 73.80218223637172 38.649836119814495, 73.80414523637356 38.634100119799854, 73.81400923638273 38.612709119779936, 73.84220923640899 38.59104511975974, 73.93941823649953 38.53993611971214, 73.96734523652555 38.53410011970672, 74.07874523662929 38.54507311971693, 74.07589123662663 38.56708211973742, 74.06213623661381 38.59423611976271, 74.12275423667026 38.666882119830376, 74.14519123669118 38.67680911983962, 74.3547092368863 38.67438211983736, 74.3949912369238 38.65992711982389, 74.67776323718718 38.56381811973441, 74.79317223729464 38.523682119697014, 74.8544272373517 38.472564119649405, 74.86817223736449 38.4209001196013, 74.86221823735895 38.38526411956809, 74.84123623733942 38.36188211954632, 74.81915423731886 38.34326411952898, 74.8029002373037 38.3249271195119, 74.79429123729568 38.30062711948929, 74.792482237294 38.19520911939111, 74.81769123731749 38.07396411927817, 74.84443623734239 38.051609119257364, 74.86387223736048 38.04397311925024, 74.90485423739867 38.02590911923343, 74.91596323740902 38.0078541192166, 74.90999123740343 37.915218119130344, 74.90616323739988 37.84180911906196, 74.92706323741933 37.82050011904212, 74.95985423744989 37.806600119029184, 74.9865002374747 37.78657311901053, 74.93941823743086 37.68625411891709, 74.91442723740758 37.670345118902276, 74.90360023739748 37.6524271188856, 74.92110023741378 37.60410011884059, 74.93553623742724 37.578809118817034, 74.95428223744469 37.55964511879918, 75.03824523752289 37.5220821187642, 75.06943623755194 37.505764118749, 75.18748223766187 37.40658211865663, 75.09664523757729 37.32185411857772, 75.07887223756072 37.312682118569185, 74.94525423743627 37.24738211850837, 74.9157362374088 37.237327118498996))) +BGD Bangladesh MULTIPOLYGON (((90.44922725187547 23.04360910528007, 90.4816542519057 22.9647181052066, 90.46893625189387 22.879900105127604, 90.42440025185238 22.770191105025432, 90.45610025188188 22.749436105006097, 90.49525425191837 22.694436104954875, 90.58388225200088 22.5275001047994, 90.60150925201731 22.47180010474753, 90.59038225200698 22.432354104710797, 90.61692725203164 22.371109104653755, 90.61248225202752 22.302773104590116, 90.603318252019 22.27443610456372, 90.56206325198059 22.20680010450073, 90.49594525191901 22.172227104468533, 90.49086325191428 22.143945104442196, 90.43595425186311 22.07305410437617, 90.39033625182066 22.100345104401583, 90.40581825183506 22.15166410444938, 90.40138225183091 22.260554104550792, 90.38845425181887 22.21214510450571, 90.39638225182625 22.164164104461022, 90.36713625179902 22.07597310437889, 90.34068225177441 22.047354104352237, 90.31721825175254 22.002218104310202, 90.28179125171954 21.86874510418589, 90.26999125170857 21.84693610416558, 90.20248225164568 21.802982104124652, 90.1708182516162 21.798336104120324, 90.11553625156472 21.81221810413325, 90.02331825147883 21.863473104180983, 90.02991825148496 21.943809104255806, 90.09275425154351 22.035273104340988, 90.16248225160842 22.107636104408385, 90.21942725166144 22.120136104420027, 90.2384452516792 22.182845104478417, 90.14874525159564 22.11805410441808, 90.09526325154582 22.061664104365562, 90.06465425151731 21.9994271043076, 90.04814525150192 21.983018104292313, 90.00262725145956 21.99419110430273, 89.99192725144957 22.02533610433173, 90.04068225149501 22.127636104427012, 90.07409125152611 22.15888210445611, 90.04011825149445 22.141173104439616, 89.97804525143664 22.026827104333123, 89.98190925144024 21.983145104292433, 89.95872725141868 21.97242710428246, 89.93387225139554 21.994718104303217, 89.91581825137871 22.0372181043428, 89.9147092513777 22.13624510443502, 89.87588225134152 22.24311810453456, 89.87414525133988 22.276664104565796, 89.91275425137587 22.360554104643924, 89.93109125139296 22.38943610467082, 89.97246325143146 22.42985410470847, 90.0000002514571 22.48375410475866, 89.94303625140407 22.433609104711962, 89.90942725137273 22.390273104671607, 89.8599822513267 22.31471810460124, 89.84138225130937 22.260973104551184, 89.86330925132978 22.180691104476423, 89.8708182513368 22.101936104403066, 89.84686325131452 21.98180010429118, 89.85400925132114 21.948745104260396, 89.88373625134881 21.894645104210014, 89.81817225128776 21.83500010415446, 89.69886325117665 21.783882104106866, 89.58110025106697 21.701664104030286, 89.56137225104862 21.709300104037396, 89.54400925103243 21.73208210405862, 89.52165425101163 21.800273104122127, 89.52617225101585 21.828745104148638, 89.56818225105496 21.886109104202063, 89.59803625108276 22.08166410438419, 89.60386325108817 22.25721810454769, 89.61511825109864 22.31958210460577, 89.54999125103802 22.21027310450397, 89.54776325103592 22.18895410448411, 89.57734525106349 22.141527104439945, 89.58055425106647 22.119582104419507, 89.54912725103719 21.9967361043051, 89.52825425101776 21.990691104299472, 89.53404525102314 22.06392710436768, 89.48720025097953 22.196945104491547, 89.49580925098752 22.260900104551112, 89.47470925096792 22.289164104577438, 89.46206325095613 22.21985410451289, 89.51887225100904 22.064445104368147, 89.48767225097998 22.032264104338182, 89.51943625100955 21.953327104264673, 89.51666325100695 21.910273104224572, 89.46276325095675 21.7688911040929, 89.41824525091533 21.7138091040416, 89.39255425089141 21.711109104039082, 89.372827250873 21.730964104057577, 89.36220025086311 21.806109104127557, 89.3847092508841 21.89263610420815, 89.35498225085638 21.966036104276498, 89.29581825080129 21.761391104085916, 89.2930362507987 21.669445104000275, 89.24498225075394 21.642845103975503, 89.20745425071897 21.652182103984202, 89.21666325072755 21.723609104050723, 89.18997225070274 21.787500104110222, 89.15380025066901 21.785554104108414, 89.10200025062079 21.8093731041306, 89.07887225059926 21.896664104211894, 89.08956325060922 22.014591104321724, 89.05910925058083 22.06207310436595, 89.05748225057931 22.085827104388073, 89.06300025058448 22.11547310441567, 89.09408225061338 22.143327104441624, 89.07315425059392 22.192209104487148, 89.0072182505325 22.276391104565548, 88.99331825051956 22.324436104610285, 88.92929125045993 22.869436105117856, 88.86310925039828 22.968254105209894, 88.8748362504092 23.092218105325344, 88.91581825044739 23.12332710535432, 88.9828002505098 23.20613610543144, 88.82783625036546 23.242700105465488, 88.80483625034401 23.227009105450875, 88.72713625027166 23.247082105469573, 88.71282725025833 23.272291105493053, 88.71249125025804 23.310973105529072, 88.73915425028287 23.350273105565677, 88.78637225032685 23.45082710565933, 88.78633625032683 23.49284510569845, 88.75686325029938 23.46936410567659, 88.58512725013941 23.604027105802004, 88.56596325012157 23.646664105841708, 88.57687225013171 23.766527105953344, 88.60180025015495 23.858491106038983, 88.73470925027874 23.91812710609453, 88.75460925029728 24.040745106208732, 88.70095425024726 24.08242710624755, 88.7073362502532 24.12170910628413, 88.70040925024676 24.14846410630905, 88.71568225026101 24.180064106338477, 88.74000025028363 24.187027106344956, 88.75172725029455 24.216436106372356, 88.74208225028559 24.24167310639585, 88.70190925024815 24.306182106455935, 88.66872725021727 24.310000106459484, 88.6522092502019 24.29416410644474, 88.50720925006686 24.318191106467125, 88.46266325002534 24.340900106488263, 88.3655362499349 24.411945106554427, 88.28442724985933 24.45082710659065, 88.13040024971593 24.506527106642523, 88.11262724969936 24.521664106656615, 88.04387224963534 24.68520010680892, 88.13665424972174 24.820000106934458, 88.16679124974979 24.848327106960852, 88.16234524974567 24.889718106999396, 88.14110024972587 24.916418107024256, 88.22006324979941 24.950982107056447, 88.26401824984038 24.912909107020994, 88.27692724985235 24.888045106997836, 88.305545249879 24.874164106984907, 88.33887224991008 24.86874510697986, 88.3972182499644 24.939718107045962, 88.46138225002414 25.074582107171565, 88.45422725001748 25.18840010727756, 88.48303625004434 25.199718107288106, 88.70499125025106 25.195273107283967, 88.88888225042228 25.17582710726586, 88.93304525046341 25.16443610725524, 88.9460182504755 25.16958210726004, 89.00866325053386 25.290273107372442, 88.99165425051802 25.308536107389443, 88.93380025046412 25.307218107388223, 88.87400925040845 25.332564107411827, 88.8429002503795 25.364718107441774, 88.82110025035917 25.40443610747876, 88.83700025037399 25.42659110749939, 88.83999125037678 25.46096410753141, 88.83262725036991 25.480964107550037, 88.79970925033928 25.51055410757759, 88.76666325030845 25.51777310758432, 88.71553625026087 25.488609107557153, 88.65165425020137 25.48943610755792, 88.55663625011289 25.50471810757216, 88.45388225001716 25.589718107651322, 88.44720925001099 25.61638210767616, 88.4495002500131 25.65930010771612, 88.27373624984938 25.806245107852973, 88.25401824983106 25.814864107861, 88.16338224974663 25.780064107828593, 88.14401824972862 25.78569110783384, 88.11053624969742 25.83555410788027, 88.09553624968345 25.91527310795452, 88.15776324974138 26.097500108124223, 88.1828912497648 26.150554108173637, 88.34852724991907 26.22013610823845, 88.3567182499267 26.282500108296517, 88.39638224996361 26.32527310833636, 88.47360025003553 26.357218108366112, 88.52306325008163 26.367318108375514, 88.51443625007357 26.406382108411904, 88.4816822500431 26.460254108462067, 88.37157224994053 26.485545108485624, 88.35658224992653 26.45450910845672, 88.335591249907 26.483000108483253, 88.37498224994368 26.580554108574105, 88.41307224997917 26.626136108616564, 88.43032724999523 26.554300108549654, 88.57277225012791 26.465273108466747, 88.60693625015972 26.470827108471923, 88.68081825022853 26.420273108424837, 88.69413625024094 26.39193610839844, 88.70398225025008 26.333264108343798, 88.73576325027972 26.29350910830678, 88.85714525039276 26.240136108257076, 89.02048225054489 26.235173108252454, 89.04400925056677 26.27460910828917, 88.96910025049704 26.338791108348943, 88.92336325045443 26.357609108366475, 88.91048225044244 26.392318108398797, 88.92482725045579 26.42488210842913, 88.94669125047614 26.44268210844571, 89.07073625059166 26.38532710839229, 89.12080925063827 26.17840010819957, 89.13497225065151 26.153709108176585, 89.31990925082374 26.02482710805654, 89.34277225084503 26.017027108049277, 89.5043542509955 26.005636108038672, 89.54821825103636 26.01562710804798, 89.60241825108682 26.06896410809766, 89.59526325108015 26.099318108125928, 89.56210025104929 26.15267310817562, 89.6017182510862 26.227473108245277, 89.63419125111642 26.230164108247777, 89.64930025113051 26.189464108209876, 89.68552725116422 26.159991108182425, 89.73393625120934 26.156318108179008, 89.8299912512988 25.999164108032645, 89.84901825131652 25.90616410794604, 89.80803625127834 25.82242710786805, 89.86303625132956 25.647082107704748, 89.85138225131868 25.51554510758224, 89.81630025128601 25.366045107443014, 89.83305425130163 25.306664107387704, 89.85053625131792 25.28895410737121, 89.88450025134955 25.293536107375473, 89.91199125137513 25.308882107389778, 89.96609125142555 25.2952731073771, 90.03915425149358 25.260827107345023, 90.16914525161462 25.21360910730104, 90.41249125184129 25.148882107240766, 90.44748225187385 25.150136107241934, 90.46720925189226 25.161109107252145, 90.52956325195032 25.174164107264303, 90.84109125224046 25.148464107240372, 90.96720925235792 25.161382107252408, 91.07262725245607 25.192909107281764, 91.26179125263224 25.206036107293983, 91.31137225267844 25.182773107272325, 91.48227225283756 25.138882107231453, 91.70276325304292 25.151591107243277, 91.74941825308639 25.16721810725784, 92.03888225335595 25.187491107276713, 92.11526325342709 25.170827107261204, 92.33249125362943 25.07943610717608, 92.40887225370057 25.0255541071259, 92.42167225371247 24.966773107071162, 92.44554525373468 24.95943610706432, 92.48818225377443 24.91776410702552, 92.49162725377761 24.87750910698803, 92.43654525372631 24.849282106961738, 92.38992725368291 24.848909106961386, 92.3424822536387 24.882500106992666, 92.28457225358477 24.90638210701492, 92.24838225355109 24.894582107003927, 92.24818225355091 24.851664106963952, 92.26263625356438 24.803745106919322, 92.25665425355879 24.773891106891526, 92.1883092534951 24.562427106694585, 92.13499125344549 24.518327106653516, 92.13276325344339 24.40971810655236, 92.1172002534289 24.39000010653399, 91.98067225330175 24.320064106468863, 91.94663625327007 24.34944510649622, 91.92120025324635 24.32746410647576, 91.93130025325576 24.282218106433618, 91.90637225323258 24.17693610633556, 91.88257225321041 24.15155410631192, 91.75191825308872 24.15444510631461, 91.59356325294124 24.096664106260803, 91.54632725289724 24.08693610625174, 91.47896325283449 24.090827106255375, 91.42051825278008 24.109436106272696, 91.3819822527442 24.105136106268702, 91.26846325263847 23.968882106141805, 91.23707225260921 23.90208210607959, 91.25138225262253 23.8400361060218, 91.21450025258821 23.75590010594344, 91.16609125254314 23.745200105933478, 91.15665425253434 23.725691105915317, 91.16192725253921 23.631527105827615, 91.2092182525833 23.510691105715082, 91.25471825262565 23.4516641056601, 91.28220925265128 23.37332710558715, 91.33304525269858 23.124582105355486, 91.34429125270907 23.098191105330912, 91.3747002527374 23.066945105301798, 91.3994272527604 23.06979110530446, 91.40499125276563 23.094436105327404, 91.39053625275216 23.132773105363114, 91.37948225274187 23.219300105443693, 91.40269125276347 23.26590010548709, 91.42609125278528 23.261945105483406, 91.47456325283042 23.220273105444605, 91.54803625289884 23.000691105240108, 91.61150925295794 22.94458210518785, 91.72499125306365 22.99471810523454, 91.77859125311358 23.03694510527386, 91.81817225315041 23.090273105323533, 91.79525425312909 23.19500010542106, 91.76818225310387 23.254791105476755, 91.77012725310567 23.279164105499447, 91.79734525313103 23.336664105552998, 91.84498225317537 23.410273105621556, 91.88373625321145 23.434718105644322, 91.9222002532473 23.442145105651235, 91.96630925328839 23.50557310571031, 91.96304525328532 23.562773105763583, 91.93838225326238 23.68040910587314, 91.95860025328119 23.72777310591725, 92.03282725335032 23.645973105841065, 92.06720925338237 23.6504091058452, 92.10970925342195 23.690827105882846, 92.17485425348258 23.73681810592568, 92.20304525350883 23.706664105897588, 92.2686002535699 23.71943610590948, 92.28942725358928 23.692773105884655, 92.29979125359898 23.572918105773027, 92.32331825362087 23.45610910566424, 92.38718225368035 23.285682105505515, 92.34984525364558 23.228882105452627, 92.37553625366951 22.938882105182543, 92.477000253764 22.74819110500495, 92.510272253795 22.726454104984697, 92.53089125381416 22.58166410484985, 92.52470925380845 22.55221810482243, 92.57832725385839 22.322218104608226, 92.5969362538757 22.17555410447163, 92.58499125386459 22.0661091043697, 92.62046325389758 21.879782104196167, 92.59915425387777 21.795000104117207, 92.60026325387878 21.63416410396742, 92.61804525389533 21.46999110381452, 92.6480362539233 21.349718103702514, 92.6693452539431 21.29698210365339, 92.60671825388482 21.252291103611782, 92.58638225386585 21.262564103621344, 92.53749125382035 21.3780541037289, 92.38165425367521 21.472082103816476, 92.36011825365512 21.472354103816727, 92.26081825356266 21.41443610376278, 92.22220925352673 21.358054103710273, 92.20499125351068 21.300554103656722, 92.21485425351983 21.136727103504143, 92.23290025353668 21.11527310348417, 92.2619362535637 21.054309103427386, 92.25610025355826 21.029582103404366, 92.26081825356266 20.934718103316015, 92.33027225362736 20.774164103166484, 92.32710925362443 20.744818103139153, 92.30053625359966 20.76027310315355, 92.20749125351301 20.93305410331446, 92.12302725343432 21.066936103439147, 92.04804525336448 21.165000103530474, 92.04804525336448 21.285000103642233, 92.02692725334481 21.328882103683114, 91.97525425329673 21.40540910375438, 91.95526325327808 21.450545103796415, 92.00471825332414 21.496109103838847, 92.03942725335645 21.66027310399174, 92.02450925334256 21.703609104032097, 92.01506325333378 21.67235410400299, 91.98261825330354 21.650827103982948, 91.96190925328426 21.680091104010202, 91.9463632532698 21.733509104059948, 91.95458225327747 21.75580910408071, 91.95018225327334 21.791618104114065, 91.9013822532279 21.774436104098058, 91.91526325324082 21.862773104180334, 91.9022092532287 21.922773104236214, 91.84999125318006 22.109445104410057, 91.8329722531642 22.12131810442112, 91.81930025315148 22.145273104443433, 91.8113722531441 22.193609104488445, 91.77193625310736 22.258745104549106, 91.75319125308988 22.377082104659323, 91.70443625304449 22.480545104755677, 91.6694362530119 22.53721810480846, 91.56749125291697 22.674164104935997, 91.45582725281298 22.790000105043873, 91.25463625262557 22.654582104917765, 91.25943625263005 22.626382104891505, 91.23067225260326 22.586382104854252, 91.11872725249901 22.577500104845967, 91.04192725242746 22.591109104858646, 90.99477225238354 22.572291104841128, 90.96526325235607 22.57069110483964, 90.94595425233808 22.58027310484856, 90.83151825223155 22.688327104949195, 90.77901825218265 22.761245105017096, 90.7508272521564 22.82303610507465, 90.74692725215272 22.86610910511476, 90.72261825213008 22.924027105168705, 90.67970025209013 22.991664105231692, 90.6245632520388 23.058400105293842, 90.64123625205428 23.19874510542455, 90.62199125203637 23.322982105540262, 90.59366325201 23.37374510558753, 90.60233625201806 23.46666410567407, 90.64040025205355 23.486173105692245, 90.69483625210421 23.47825410568487, 90.71602725212398 23.50680010571145, 90.709636252118 23.549654105751358, 90.69170025210133 23.55140010575299, 90.69504525210442 23.51520910571928, 90.66637225207774 23.517673105721585, 90.60020025201607 23.491727105697407, 90.58728225200406 23.542082105744313, 90.6084632520238 23.581664105781172, 90.59382725201016 23.59796410579635, 90.56080925197938 23.58666410578583, 90.47360025189818 23.575827105775744, 90.50761825192984 23.55097310575259, 90.57776325199518 23.536664105739263, 90.57471825199235 23.44250010565156, 90.5480452519675 23.38430010559736, 90.31080925174655 23.43582710564536, 90.30887225174479 23.414436105625427, 90.42650925185433 23.32500010554213, 90.49860025192146 23.298745105517682, 90.56665425198486 23.2900641055096, 90.60554525202105 23.24304510546581, 90.61470025202959 23.18943610541588, 90.59831825201434 23.117918105349275, 90.57860025199597 23.09000010532327, 90.55887225197762 23.07388210530827, 90.45303625187904 23.065800105300738, 90.44922725187547 23.04360910528007)), ((90.67137225208239 21.987218104296232, 90.63741825205074 21.992627104301263, 90.60200025201777 22.031736104337696, 90.62387225203815 22.15610910445352, 90.67637225208705 22.26971810455933, 90.68470925209482 22.392491104673667, 90.6766542520873 22.44554510472308, 90.66554525207692 22.502218104775864, 90.64276325205572 22.553054104823204, 90.59999125201591 22.570000104838982, 90.55692725197576 22.60527310487184, 90.55080925197007 22.63971810490392, 90.58305425200012 22.766936105022396, 90.60554525202105 22.77790910503262, 90.66248225207408 22.783191105037545, 90.68095425209128 22.773473105028486, 90.71276325212091 22.651936104915293, 90.7941452521967 22.55389110482399, 90.85956325225766 22.50000010477379, 90.86900925226644 22.487500104762148, 90.87886325227561 22.436664104714808, 90.86581825226347 22.318473104604735, 90.82026325222103 22.13582710443464, 90.76970925217398 22.070064104373387, 90.67137225208239 21.987218104296232)), ((91.0272092524138 22.083882104386262, 91.05359125243837 22.18416410447965, 91.07304525245644 22.507500104780775, 91.07680025245998 22.52027310479268, 91.089709252472 22.524027104796176, 91.10081825248233 22.511664104784657, 91.14414525252266 22.409164104689197, 91.17387225255038 22.32110910460719, 91.17998225255604 22.29055410457873, 91.17470025255113 22.218609104511728, 91.16388225254104 22.18693610448223, 91.14166325252035 22.16138210445844, 91.07388225245722 22.108609104409283, 91.0272092524138 22.083882104386262)), ((91.88693625321446 21.47332710381764, 91.8624912531917 21.49110910383419, 91.85442725318416 21.51305410385463, 91.84387225317437 21.690554104019938, 91.86330925319243 21.74360910406935, 91.86886325319762 21.75194510407711, 91.88400925321173 21.755000104079954, 91.93637225326052 21.734164104060554, 91.94724525327064 21.683027104012936, 91.97831825329956 21.642773103975443, 91.98220925330321 21.611664103946467, 91.96499125328717 21.516382103857737, 91.95000025327317 21.500000103842467, 91.88693625321446 21.47332710381764)), ((91.51304525286622 22.345554104629954, 91.47526325283104 22.36221810464548, 91.40525425276587 22.482773104757754, 91.40277225276355 22.51110910478414, 91.43282725279153 22.622700104888068, 91.44720925280495 22.620554104886068, 91.45999125281685 22.6055541048721, 91.52527225287764 22.509445104782586, 91.55998225290995 22.435273104713517, 91.56832725291775 22.402500104682986, 91.56191825291177 22.370691104653375, 91.54581825289677 22.355554104639268, 91.51304525286622 22.345554104629954)), ((90.51943625194087 22.685827104946867, 90.48457225190839 22.755691105011934, 90.45568225188151 22.765827105021373, 90.46991825189474 22.867291105115868, 90.55053625196985 22.88250010513002, 90.58777225200453 22.882218105129766, 90.68359125209378 22.85388210510338, 90.6919272521015 22.8322181050832, 90.67810025208865 22.80790910506056, 90.65637225206842 22.796391105049835, 90.62637225204048 22.788054105042065, 90.54161825196155 22.78320010503755, 90.54720925196676 22.719436104978158, 90.51943625194087 22.685827104946867)), ((90.51749125193908 21.988045104297, 90.50027225192304 21.999436104307605, 90.47942725190359 22.03819110434371, 90.48636325191006 22.077082104379926, 90.56164525198017 22.137500104436185, 90.6107362520259 22.161664104458694, 90.5631722519816 22.033054104338916, 90.5437272519635 22.00277310431072, 90.51749125193908 21.988045104297))) +BTN Bhutan MULTIPOLYGON (((92.08150925339567 26.869045108842784, 92.06442725337973 26.8597181088341, 92.03123625334882 26.85193610882685, 91.99178225331212 26.853745108828534, 91.83824525316913 26.8632641088374, 91.74233625307977 26.819854108796974, 91.71554525305481 26.800973108779388, 91.54282725289397 26.805273108783396, 91.51693625286987 26.839164108814956, 91.5012722528553 26.867254108841124, 91.41727225277702 26.871245108844832, 91.401091252762 26.848327108823497, 91.39012725275177 26.82194510879893, 91.37553625273819 26.80416410878236, 91.34303625270792 26.786391108765812, 91.30734525267468 26.77805410875804, 91.2848542526537 26.77985410875972, 91.26304525263339 26.79500010877382, 91.23122725260379 26.806245108784296, 91.11970925249994 26.809164108787016, 91.04970925243475 26.78889110876814, 90.96662725235734 26.78342710876305, 90.95749125234886 26.784445108764004, 90.93691825232969 26.784718108764253, 90.9024822522976 26.784718108764253, 90.74429125215028 26.777218108757268, 90.70860025211704 26.772500108752865, 90.68859125209843 26.773191108753522, 90.64137225205445 26.78250010876218, 90.5641452519825 26.805136108783273, 90.51887225194037 26.824718108801505, 90.45713625188284 26.857982108832488, 90.41720925184569 26.89443610886643, 90.38873625181913 26.903464108874843, 90.36290025179511 26.89985410887148, 90.21693625165915 26.850827108825825, 90.19609125163976 26.8341641088103, 90.1831722516277 26.813682108791227, 90.17616325162118 26.773882108754165, 90.14901825159592 26.75541810873696, 90.12360025157221 26.748054108730102, 90.08193625153342 26.739164108721823, 89.85410925132123 26.70948210869419, 89.80581825127626 26.707218108692075, 89.79317225126448 26.706718108691604, 89.76985425124275 26.70360910868871, 89.64305425112468 26.715273108699577, 89.62282725110583 26.725136108708767, 89.64387225112546 26.75250010873424, 89.64269125112435 26.762636108743692, 89.58873625107407 26.792354108771363, 89.5631822510503 26.802500108780805, 89.52623625101586 26.811664108789344, 89.48179125097448 26.800064108778543, 89.36720025086777 26.859436108833833, 89.36080925086179 26.860000108834356, 89.29998225080516 26.850827108825825, 89.27617225078302 26.831527108807848, 89.22082725073147 26.814718108792192, 89.20000025071204 26.813882108791418, 89.14942725066493 26.818882108796075, 89.12608225064321 26.82360910880047, 89.1063092506248 26.83256410880881, 89.0933182506127 26.85832710883281, 89.08457225060454 26.885618108858225, 89.03818225056136 26.922491108892558, 88.94775425047715 26.96943610893628, 88.89387225042697 26.975554108941978, 88.86941825040418 27.067354109027477, 88.86171825039702 27.09374510905205, 88.82610025036382 27.121109109077537, 88.79248225033251 27.142354109097326, 88.75310925029584 27.14806410910265, 88.75193625029476 27.14860910910315, 88.76220925030435 27.184436109136513, 88.81074525034956 27.254718109201974, 88.84276325037933 27.2656911092122, 88.89096325042425 27.27694510922268, 88.9112362504431 27.294027109238584, 88.91746325044892 27.317382109260336, 88.9169272504484 27.320827109263547, 88.92360025045463 27.345554109286567, 88.93552725046573 27.368327109307785, 88.9466362504761 27.385273109323563, 88.956236250485 27.430827109365993, 88.96749125049553 27.466382109399106, 88.98498225051179 27.48888210942006, 89.01553625054026 27.509854109439587, 89.05761825057942 27.523609109452394, 89.08638225060622 27.53832710946611, 89.10498225062355 27.55055410947749, 89.12858225064554 27.57166410949715, 89.12803625064504 27.623327109545272, 89.1662272506806 27.675000109593384, 89.17956325069304 27.69680010961369, 89.20027225071232 27.738045109652106, 89.21845425072922 27.7781911096895, 89.23699125074648 27.80721810971653, 89.26914525077643 27.82750010973541, 89.35998225086104 27.871664109776546, 89.38693625088615 27.915273109817164, 89.3980362508965 27.93305410983372, 89.40942725090707 27.950000109849498, 89.45042725094527 28.008382109903877, 89.45610025095056 28.017218109912108, 89.46775425096143 28.034164109927886, 89.48749125097982 28.057773109949878, 89.58819125107357 28.141664110028003, 89.62650925110927 28.159436110044552, 89.69275425117098 28.173609110057754, 89.72123625119747 28.174436110058522, 89.74637225122092 28.175554110059565, 89.79185425126326 28.194718110077417, 89.83665425130499 28.25166411013045, 89.86303625132956 28.27138211014882, 89.99819125145541 28.32369111019753, 90.02068225147639 28.325000110198744, 90.17859125162346 28.30055411017598, 90.22553625166717 28.29027311016641, 90.24887225168891 28.284718110161236, 90.28651825172398 28.275409110152566, 90.31942725175458 28.264300110142216, 90.34650925177982 28.25930011013756, 90.38897225181938 28.242564110121975, 90.39540025182538 28.200545110082842, 90.37929125181034 28.16958211005401, 90.36638225179831 28.150554110036282, 90.35664525178925 28.132500110019464, 90.35331825178616 28.09847310998778, 90.37650025180773 28.07958210997019, 90.46638225189145 28.07166410996281, 90.5105542519326 28.079164109969796, 90.53248225195301 28.08055410997109, 90.55615425197504 28.075136109966053, 90.62665425204074 28.0754091099663, 90.65054525206295 28.07860910996928, 90.75665425216181 28.064718109956345, 90.84027225223969 28.04805410994082, 90.86887225226633 28.05055410994315, 90.917900252312 28.046527109939404, 90.95138225234314 28.032500109926332, 90.96775425235842 28.019164109913916, 90.99345425238232 27.99235410988895, 91.02040025240746 27.976936109874586, 91.08692725246937 27.96999110986812, 91.11234525249307 27.97193610986993, 91.13164525251102 27.983609109880803, 91.14554525252396 28.002082109898012, 91.16499125254211 28.026109109920384, 91.21887225259229 28.07471810996566, 91.30137225266913 28.081109109971607, 91.32610025269213 28.06305410995479, 91.35693625272086 28.041945109935142, 91.41943625277906 28.010554109905897, 91.45000025280751 27.99721810989348, 91.48526325284035 27.989300109886102, 91.50111825285512 27.989518109886305, 91.52053625287323 27.99138210988805, 91.60693625295369 27.9694361098676, 91.63873625298328 27.957773109856745, 91.66276325300566 27.94500010984484, 91.67706325301901 27.929164109830097, 91.67394525301609 27.897982109801063, 91.65671825300007 27.86943610977447, 91.6530452529966 27.836109109743433, 91.65664525299997 27.777773109689107, 91.65776325300101 27.76471810967695, 91.65887225300207 27.763336109675663, 91.6591452530023 27.741245109655083, 91.65443625299793 27.71666410963219, 91.64220925298656 27.69708210961396, 91.62040025296625 27.680964109598946, 91.59894525294624 27.66006410957948, 91.60025425294748 27.615409109537893, 91.6174822529635 27.560827109487064, 91.63136325297643 27.5363821094643, 91.67581825301784 27.48708210941838, 91.77082725310635 27.431664109366764, 91.85359125318342 27.43666410937142, 91.95831825328094 27.45443610938797, 91.99366325331385 27.475582109407668, 92.07804525339242 27.36860910930804, 92.0891542534028 27.3494451092902, 92.11421825342615 27.293054109237673, 92.04415425336089 27.188327109140147, 92.01527225333399 27.168054109121258, 92.00999125332908 27.101527109059305, 92.01777225333632 27.0793001090386, 92.04539125336203 27.055136109016104, 92.07137225338624 27.037082108999286, 92.08665425340047 27.014718108978457, 92.10081825341365 26.97916410894534, 92.11317225342515 26.93027310889981, 92.1030452534157 26.895545108867466, 92.09206325340551 26.878327108851437, 92.08150925339567 26.869045108842784))) +BRN Brunei MULTIPOLYGON (((115.01843627475733 4.895791088378601, 114.98914527473005 4.842918088329355, 114.97942727472099 4.831664088318874, 114.96220027470497 4.821945088309818, 114.94582727468975 4.817218088305424, 114.91748227466331 4.8116640883002475, 114.90442727465114 4.81110908829973, 114.87915427462764 4.810273088298956, 114.866654274616 4.809718088298439, 114.85261827460289 4.803609088292745, 114.78707227454186 4.749582088242434, 114.77985427453513 4.735836088229632, 114.77777227453322 4.720836088215663, 114.77998227453526 4.709164088204787, 114.78846327454318 4.697364088193794, 114.81553627456839 4.580836088085277, 114.82581827457795 4.495836088006115, 114.82916327458105 4.4738910879856775, 114.83471827458624 4.446391087960066, 114.84366327459458 4.435627087950039, 114.85900927460887 4.432636087947245, 114.86692727461622 4.355273087875204, 114.80636327455983 4.144582087678984, 114.79305427454744 4.126945087662548, 114.70540927446581 4.050000087590888, 114.66998227443281 4.029718087572007, 114.64999127441422 4.022218087565022, 114.63803627440308 4.018191087561263, 114.61949127438578 4.021664087564503, 114.6094272743764 4.03083608757305, 114.6084542743755 4.055691087596188, 114.47553627425174 4.2000000877305865, 114.39999127418139 4.256391087783115, 114.3299912741162 4.326945087848813, 114.32916327411539 4.340000087860972, 114.30900927409664 4.433191087947762, 114.26389127405463 4.497500088007655, 114.24609127403806 4.521664088030164, 114.23580927402844 4.531945088039734, 114.1883092739842 4.56694508807233, 114.17998227397646 4.572500088077504, 114.16499127396253 4.577773088082424, 114.15331827395164 4.580000088084489, 114.09508227389739 4.590536088094311, 114.1016452739035 4.591391088095108, 114.13997227393924 4.594164088097685, 114.16053627395837 4.594164088097685, 114.17970027397621 4.592782088096399, 114.19053627398631 4.590000088093802, 114.20304527399793 4.581664088086043, 114.28691827407607 4.592364088096005, 114.30080927408898 4.595554088098979, 114.52026327429337 4.691109088187972, 114.52916327430165 4.6958360881923795, 114.5449822743164 4.707500088203233, 114.55525427432599 4.7177820882128145, 114.56414527433424 4.72944508822367, 114.57999127434903 4.7477730882407485, 114.59275427436091 4.762218088254201, 114.63388227439918 4.803054088292228, 114.65525427441912 4.822773088310598, 114.66609127442922 4.832500088319648, 114.68552727444728 4.847500088333618, 114.71692727447652 4.871391088355878, 114.73664527449489 4.885836088369331, 114.9136002746597 4.9963910884722935, 114.93137227467628 5.0058360884810895, 114.95416327469746 5.017500088491943, 114.9636092747063 5.021664088495825, 115.00942727474893 5.037218088510315, 115.04026327477766 5.047500088519882, 115.05137227478804 5.050273088522474, 115.06915427480459 5.053054088525059, 115.08220927481676 5.052218088524285, 115.09803627483149 5.047500088519882, 115.10360027483665 5.039100088512072, 115.04165427477898 4.968891088446682, 114.98970027473058 4.904718088386915, 114.98206327472349 4.889718088372945, 115.01843627475733 4.895791088378601)), ((115.02912727476729 4.820209088308204, 115.03547227477321 4.806945088295848, 115.04998227478671 4.79833608828784, 115.0616542747976 4.803054088292228, 115.12469127485633 4.849445088335429, 115.13359127486461 4.857636088343057, 115.14578227487596 4.903236088385526, 115.19220027491917 4.849164088335172, 115.2230362749479 4.805000088294037, 115.26138227498359 4.683054088180469, 115.28249127500328 4.611664088113983, 115.28249127500328 4.598609088101824, 115.27831827499938 4.58277308808708, 115.27277227499422 4.57389108807881, 115.26860027499032 4.564445088070002, 115.26442727498642 4.541109088048273, 115.27318227499461 4.451391087964723, 115.27805427499914 4.438891087953081, 115.2863722750069 4.426945087941945, 115.30275427502215 4.410282087926433, 115.31790027503627 4.3963910879135, 115.34470927506123 4.368327087887366, 115.35080927506687 4.360000087879598, 115.35665427507234 4.349309087869642, 115.36026327507568 4.332636087854112, 115.35207227506805 4.317500087840017, 115.33985427505667 4.311664087834586, 115.32054527503868 4.315554087838208, 115.11360027484596 4.374164087892794, 115.1023452748355 4.380554087898744, 115.09636327482991 4.391391087908843, 115.09027227482426 4.413336087929281, 115.02942727476756 4.645836088145813, 115.02665427476501 4.6566640881558925, 115.02053627475931 4.724445088219014, 115.0208272747596 4.753336088245931, 115.02912727476729 4.820209088308204))) +CHN China MULTIPOLYGON (((97.6499822585817 23.851700106032666, 97.53720925847671 23.948609106122916, 97.75930025868354 24.260554106413437, 97.5430452584821 24.476664106614706, 97.552554258491 24.739927106859895, 98.19108225908565 25.615273107675122, 98.36137225924426 25.569445107632433, 98.71040025956933 25.85597310789929, 98.56944525943806 26.125273108150097, 98.7310912595886 26.18471810820546, 98.77554525962995 26.60582710859765, 98.6969912595568 27.529718109458088, 98.45888225933504 27.672500109591056, 98.31991825920562 27.540136109467795, 98.14499125904274 28.148882110034734, 97.70610025863397 28.519027110379454, 97.55887225849688 28.546527110405066, 97.3488722583013 28.222773110103546, 96.65387225765403 28.46749111033145, 96.40192725741935 28.351109110223064, 96.34027225736196 28.525000110385008, 96.61372725761663 28.795691110637122, 96.47082725748356 29.056664110880163, 96.17532725720832 28.901382110735554, 96.14888225718369 29.05971811088301, 96.39172725740985 29.257564111067268, 96.08314525712245 29.46443611125993, 95.38777225647488 29.035273110860246, 94.64750925578545 29.333464111137957, 93.96172725514674 28.669200110519313, 93.35193625457885 28.61876411047234, 93.22205425445787 28.31930011019344, 92.71044525398139 28.14190011002823, 92.64372725391928 27.916245109818064, 92.01442725333317 27.73471810964901, 91.65776325300101 27.76471810967695, 91.66276325300566 27.94500010984484, 91.30137225266913 28.081109109971607, 91.08692725246937 27.96999110986812, 90.37650025180773 28.07958210997019, 90.38897225181938 28.242564110121975, 89.99819125145541 28.32369111019753, 89.48749125097982 28.057773109949878, 88.9169272504484 27.320827109263547, 88.76463625030658 27.542427109469926, 88.83575425037282 28.00805410990357, 88.62435425017594 28.116800110004846, 87.7205362493342 27.805000109714456, 87.19274524884264 27.823054109731274, 86.69526324837932 28.111664110000063, 86.45137224815221 27.908882109811216, 86.19769124791594 28.158054110043267, 86.00540024773687 27.886245109790124, 85.72137224747235 28.27916411015606, 85.11095424690382 28.30666411018167, 85.19518224698226 28.59103611044651, 84.84664524665766 28.54444511040313, 84.48622724632202 28.734018110579683, 84.11650924597768 29.26097311107044, 83.54790924544812 29.18902711100344, 83.19108224511581 29.631664111415674, 82.17525424416976 30.0692361118232, 82.11122724411013 30.3344451120702, 81.42622724347217 30.385000112117268, 81.11942724318641 30.019445111776832, 80.99351824306916 30.26395411200454, 80.20700024233668 30.575518112294702, 80.18859124231955 30.79513611249925, 79.55429124172878 30.95708211265007, 79.16415424136545 31.395273113058167, 78.76824524099675 31.308954112977773, 78.77075424099905 31.968473113591998, 78.47593624072448 32.243045113847714, 78.4059542406593 32.55610011413927, 78.74622724097622 32.6390181142165, 78.97110024118564 32.3508271139481, 79.53027224170643 32.728045114299405, 79.37511824156189 33.099436114645286, 78.8138632410392 33.52040911503735, 78.73580924096649 34.068327115547646, 78.98535424119893 34.35000911580998, 78.30414524056448 34.64874511608819, 78.02304524030268 35.28069111667675, 78.07180024034813 35.499027116880086, 76.89526323925236 35.61250011698577, 76.55303623893366 35.90665411725972, 76.18060923858678 35.814573117173964, 75.92887223835234 36.0708181174126, 76.0416542384574 36.23750911756785, 75.85983623828807 36.66342711796452, 74.3949912369238 37.146464118414386, 75.18748223766187 37.40658211865663, 74.90360023739748 37.6524271188856, 74.8544272373517 38.472564119649405, 74.3547092368863 38.67438211983736, 73.96734523652555 38.53410011970672, 73.80414523637356 38.634100119799854, 73.70818223628416 38.88652712003494, 73.85234523641844 38.97256412011507, 73.62004523620209 39.235691120360116, 73.65568223623526 39.454827120564204, 73.95470923651376 39.599654120699086, 73.84290023640963 39.76895412085676, 73.99096323654754 40.042018121111084, 74.88089123737635 40.32791812137734, 74.85880023735578 40.517227121553645, 75.23393623770514 40.45042712149143, 75.58283623803007 40.64452712167221, 75.70373623814268 40.298000121349475, 76.33440023873004 40.353236121400926, 76.87067223922946 41.012582122014976, 78.08082724035654 41.04079112204124, 78.67081824090599 41.53189112249862, 80.26943624239482 42.05426412298513, 80.15803624229108 42.632454123523615, 80.25795424238413 42.81565412369423, 80.57225424267682 42.88545412375922, 80.38404524250154 43.02905412389296, 80.81526324290314 43.168300124022664, 80.36887224248744 44.113782124903196, 80.38499124250245 44.63580012538938, 80.51589124262432 44.73408212548091, 79.87105424202377 44.90281812563805, 81.67928224370786 45.349700126054245, 81.94802724395811 45.15748212587522, 82.56637224453402 45.133027125852436, 82.64623624460836 45.435809126134444, 82.32179124430621 45.5831001262716, 83.03442724496989 47.20061812777803, 83.93026324580421 46.97331812756636, 84.67803624650065 46.993609127585245, 84.80317224661718 46.827700127430745, 85.52256324728717 47.05910912764625, 85.7013822474537 47.26221812783541, 85.53707224730067 47.93721812846405, 85.7391542474889 48.35638212885442, 86.59790924828866 48.54277312902801, 86.87601824854767 49.11020012955649, 87.84070024944612 49.17295412961491, 87.76110024937196 48.881036129343045, 88.05941824964981 48.73499112920703, 87.99193624958696 48.5654091290491, 89.0851362506051 47.9937361285167, 90.07096325152321 47.88790912841813, 90.35120025178418 47.62797312817605, 91.04330925242874 46.72484512733493, 90.92150925231533 46.29693612693643, 91.02650925241312 46.017354126676054, 90.68192725209218 45.57971812626846, 90.89694525229248 45.25305412596424, 93.55470025476768 44.95721812568871, 94.71734525585049 44.35499112512784, 95.41060925649612 44.294164125071205, 95.34109125643141 44.01936412481527, 95.53339125661046 43.99311812479081, 95.87900925693236 43.28388212413029, 96.38206325740089 42.734991123619096, 99.5101272603141 42.57194512346726, 100.84248226155495 42.67707312356515, 101.8147002624604 42.5097181234093, 102.07720926270491 42.233327123151895, 103.41638226395207 41.88721812282955, 104.52665426498612 41.87720912282023, 104.52373626498337 41.67068212262788, 105.00650926543301 41.58665412254962, 107.47581826773273 42.46624512336882, 109.31067226944157 42.42999112333504, 110.44053627049385 42.77777312365893, 110.98970027100529 43.31693612416109, 111.95832727190742 43.69221812451059, 111.42137227140734 44.37527312514672, 111.98081827192834 45.091664125813935, 113.63804527347173 44.74527312549131, 114.54525427431668 45.389436126091255, 115.47470027518227 45.414154126114255, 116.18956327584806 45.708745126388635, 116.38416327602926 46.112500126764644, 116.84166327645534 46.39360912702645, 117.37081827694817 46.364436126999294, 117.4249822769986 46.57069112719137, 117.84554527739027 46.53645412715949, 118.31470927782726 46.73638212734568, 119.89803627930183 46.67694512729034, 119.72748227914298 47.166518127746286, 118.53933627803644 47.99475412851763, 117.80455427735211 48.011245128533005, 117.38267227695923 47.65741812820346, 116.87469127648615 47.88804512841827, 116.26236327591585 47.878182128409065, 115.9231182755999 47.69186412823555, 115.59440927529374 47.917491128445675, 115.54907227525155 48.14352712865619, 115.83581827551859 48.25249112875767, 115.81110027549556 48.52054512900733, 116.711382276334 49.830464130227284, 117.87470927741748 49.52057312993867, 118.57457227806924 49.92263613031312, 119.32102727876446 50.09630913047485, 119.35999127880075 50.330273130692746, 119.13860027859454 50.390273130748625, 120.06414527945651 51.620827131894686, 120.77665428012011 52.11500013235491, 120.62590927997974 52.34422713256839, 120.71217228006003 52.5426641327532, 120.08192727947306 52.588045132795486, 120.03143627942609 52.76819113296324, 120.86650928020379 53.27978213343971, 123.61470928276327 53.54360913368541, 124.49330928358148 53.188327133354534, 125.62004528463086 53.05027313322594, 125.65734528466561 52.87520013306292, 126.09679128507486 52.75721813295303, 125.99428228497942 52.57610013278435, 126.55498228550158 52.12693613236604, 126.44122728539566 51.994364132242566, 126.91388228583583 51.38138213167167, 126.81761828574616 51.26555413156382, 126.96887228588707 51.319227131613786, 126.93310028585375 51.058254131370745, 127.2919272861879 50.741382131075625, 127.33401828622715 50.31471813067827, 127.58606328646187 50.20856413057942, 127.5150092863957 49.805882130204395, 127.83804528669651 49.5866541300002, 128.71190928751037 49.58443612999815, 129.11178228788282 49.3467541297768, 129.4902002882352 49.4158001298411, 130.22460928891923 48.86464512932778, 130.67400028933776 48.86040912932384, 130.52359128919767 48.60575412908668, 130.82399128947742 48.326800128826875, 130.65983628932452 48.10839112862348, 130.99217228963403 47.68720912823122, 132.52109129105799 47.71027312825268, 133.08273629158106 48.098882128614605, 133.484272291955 48.068882128586665, 134.4153452928221 48.391118128886774, 134.74075429312518 48.26712712877131, 134.5576002929546 47.99207312851513, 134.76081829314387 47.70027312824337, 134.18246329260523 47.32332712789233, 134.21519129263572 47.09967312768404, 133.84718229229298 46.47888212710586, 133.90160929234366 46.25362712689608, 133.47605429194732 45.82346412649548, 133.47024529194192 45.624573126310224, 133.1491362916429 45.450827126148425, 133.11746329161338 45.12457312584456, 132.93145429144016 45.021409125748505, 131.86843629045012 45.34581812605063, 131.46911829007826 44.973873125704216, 130.95299128959755 44.83649112557629, 131.2980362899189 44.05193612484561, 131.19122728981944 43.53624512436534, 131.3103912899304 43.389582124228724, 131.12849128976103 42.916445123788094, 130.43273628911305 42.7448541236283, 130.60437228927287 42.42186412332748, 130.24678228893987 42.714154123599684, 130.2514182889442 42.88794512376154, 129.90459128862113 43.00457312387016, 129.69552728842643 42.43581812334048, 129.34927228810398 42.44623612335019, 128.9269272877106 42.02735412296008, 128.05663628690013 42.00124512293576, 128.30024528712698 41.58283612254607, 128.15290928698977 41.38123612235833, 127.2708272861683 41.4724911224433, 126.90470928582732 41.792218122741076, 126.56608228551192 41.61176412257302, 126.0117912849957 40.89693612190729, 124.88512728394642 40.47037312151002, 124.1280272832413 39.82777312091153, 123.24220028241632 39.81430012089899, 123.21666328239252 39.67388212076821, 121.64803628093165 38.99638212013724, 121.69818228097836 38.86110012001126, 121.18733628050256 38.719082119879005, 121.08867228041072 38.91220912005886, 121.67942728096085 39.090127120224565, 121.59942728088635 39.218600120344206, 121.75110028102762 39.35166412046814, 121.5091542808023 39.36735412048276, 121.4316632807301 39.511664120617155, 121.2283452805408 39.528464120632776, 121.5330092808245 39.62321812072105, 121.46831828076427 39.81138212089627, 121.88095428114855 40.0030541210748, 122.29866328153759 40.505618121542824, 122.052127281308 40.73874512175996, 121.36373628066684 40.93138212193935, 120.96984528030004 40.815345121831285, 121.03241828035829 40.71103612173414, 120.44678227981291 40.196100121254574, 119.52644527895575 39.872418120953114, 118.97151827843896 39.15693612028679, 118.32728227783895 39.04082712017865, 118.0552632775856 39.22304512034836, 117.74387227729562 39.1050001202384, 117.53637227710237 38.675554119838466, 117.67220927722889 38.386654119569386, 118.11052727763706 38.14638211934562, 118.83776327831436 38.152909119351705, 119.03553627849857 37.878318119095965, 118.95664527842507 37.30054511855788, 119.23275427868225 37.14360911841172, 119.76720927918001 37.151382118418965, 119.85290927925979 37.35228211860607, 120.73707228008323 37.834991119055616, 121.57999128086828 37.42457311867339, 122.1281722813788 37.55256411879259, 122.18137228142837 37.41832711866758, 122.55858228177965 37.396245118647, 122.59720928181565 37.20999111847354, 122.40054528163245 37.02582711830203, 122.53915428176157 37.019782118296405, 122.5047092817295 36.89360911817889, 122.19233628143854 36.84297311813174, 121.95664528121904 37.00027311827823, 121.59443628088172 36.75889111805343, 120.77638228011983 36.61665411792096, 120.95999128029086 36.52638211783689, 120.87526328021193 36.37582711769667, 120.7062362800545 36.42277311774039, 120.69562728004462 36.140745117477735, 120.3435912797168 36.04190011738568, 120.30780927968345 36.263445117592, 120.08885427947956 36.1999821175329, 120.2377632796182 35.95943611730887, 119.64745427906848 35.5789271169545, 119.17609127862949 34.884991116308214, 120.24873627962842 34.31145411577407, 120.88581828022177 32.97499111452939, 120.83749128017678 32.63888211421637, 121.33484528063997 32.42957311402144, 121.44122728073904 32.11332711372691, 121.89651828116308 31.74152711338064, 121.82747228109878 31.678327113321785, 121.29151828059963 31.870273113500545, 120.94442728027633 31.86639111349693, 120.60192727995735 32.09360911370854, 120.099009279489 31.94555411357065, 119.82666327923533 32.30638211390671, 119.63165427905375 32.26277311386609, 119.88504527928973 31.991936113613846, 120.13637227952381 31.90388211353185, 120.70261828005113 31.988327113610495, 120.719636280067 31.819436113453193, 121.66805428095029 31.30889111297772, 121.88276328115023 30.979854112671276, 120.9915092803202 30.568882112288534, 120.81441828015528 30.33555411207122, 120.4585912798239 30.392982112124713, 120.1499912795365 30.196936111942122, 120.50819127987006 30.310273112047682, 120.79158228013398 30.06464511181892, 121.28080928058961 30.304582112042382, 121.67775428095933 29.963054111724304, 122.1195632813708 29.882109111648916, 121.44831828074564 29.511664111303915, 121.97435428123555 29.589164111376093, 121.93359128119761 29.195273111009257, 121.81191828108427 29.183882110998653, 121.7969182810703 29.372354111174175, 121.74435428102134 29.19729111101114, 121.56110028085067 29.291109111098507, 121.41351828071322 29.163400110979566, 121.69136328097198 29.021945110847838, 121.49081828078522 28.93590011076769, 121.61130028089741 28.72798211057406, 121.14638228046442 28.842145110680377, 121.48442728077924 28.669927110519993, 121.64166328092568 28.347218110219444, 121.34192728064653 28.13888211002542, 121.16511828048186 28.382773110252558, 120.93525428026783 27.98221810987951, 120.59081827994703 28.079436109970047, 120.8399912801791 27.872291109777137, 120.58116327993804 27.593191109517207, 120.6655452800166 27.45082710938462, 120.50749127986944 27.207773109158254, 120.18956327957335 27.282773109228103, 120.42110027978896 27.14763610910225, 120.0331822794277 26.8980541088698, 120.12796327951594 26.644645108633796, 119.86026327926663 26.51777310851564, 120.07330927946504 26.788227108767515, 119.86678227927274 26.64888210863775, 119.78790027919928 26.796109108774857, 119.55026327897792 26.75624510873773, 119.82040027922955 26.442218108445275, 119.5774722790033 26.47388210847477, 119.6580452790783 26.338609108348777, 119.94886327934915 26.367773108375943, 119.42526327886151 25.996936108030567, 119.09749127855628 26.140409108164192, 119.35400927879516 25.937873107975562, 119.70582727912284 25.990691108024762, 119.45220927888664 25.68221810773747, 119.64540027906656 25.35332710743117, 119.31494527875878 25.60649110766694, 119.10526327856348 25.420964107494157, 119.35255427879383 25.253191107337912, 119.27262727871937 25.17208210726237, 118.87487227834896 25.242600107328045, 119.01144527847612 24.94763610705334, 118.5729092780677 24.882909106993054, 118.76311827824486 24.75673610687555, 118.62275427811414 24.54389110667732, 118.23970027775738 24.53638210667033, 118.16880027769133 24.68193610680588, 118.01988227755265 24.440236106580784, 117.79472727734299 24.460182106599362, 118.12372727764938 24.25874510641175, 117.76331827731372 23.917218106093685, 117.76262727731307 24.060000106226653, 117.6147002771753 23.863609106043754, 117.30470027688659 23.75832710594571, 117.19568227678508 23.62437310582095, 116.9179362765264 23.65919110585338, 116.7603272763796 23.35500010557007, 116.53220027616715 23.420236105630835, 116.7870722764045 23.236664105459866, 116.5138912761501 23.21082710543581, 116.48171827612015 22.93901810518267, 115.79776327548313 22.739164104996533, 115.64026327533645 22.884164105131575, 115.53665427523998 22.658882104921773, 115.16137227489048 22.808327105060954, 114.8888912746367 22.702773104962645, 114.93665427468119 22.650000104913488, 114.87220927462118 22.533054104804577, 114.71804527447756 22.640273104904438, 114.7781822745336 22.81402710506626, 114.52082727429394 22.6997181049598, 114.61359127438033 22.504236104777746, 114.22226327401586 22.5500451048204, 114.38852727417071 22.42992710470854, 114.29610927408464 22.26056410455081, 114.19802727399326 22.318054104604343, 113.90560927372093 22.36735410465026, 114.03369127384025 22.50873610478193, 113.8608092736792 22.474436104749984, 113.52333627336492 23.016645105254966, 113.821900273643 23.11723610534864, 113.6835912735142 23.152709105381675, 113.47928227332392 23.0508271052868, 113.36290027321553 22.879854105127563, 113.56477227340349 22.54944510481984, 113.55268227339224 22.1870091044823, 113.16872727303468 22.567009104836202, 113.38679127323775 22.17964510447544, 113.22261827308483 22.04069110434604, 113.08484527295656 22.20485410449892, 112.94004527282169 21.869300104186408, 112.82401827271366 21.964718104275278, 112.28193627220878 21.70138210403003, 111.89213627184574 21.916109104230003, 111.96692727191538 21.751391104076603, 111.67622727164468 21.778191104101566, 111.78317227174426 21.61263610394738, 111.64395427161463 21.52680010386743, 111.02845427104137 21.525273103866013, 110.53276327057972 21.211382103573683, 110.39435427045083 21.373218103724398, 110.15935427023197 20.843818103231357, 110.37553627043332 20.840827103228577, 110.32388227038518 20.64000010304153, 110.51450027056273 20.429645102845626, 109.92442727001315 20.233609102663053, 110.00686327008998 20.43180010284763, 109.66290026976964 20.924164103306182, 109.94109127002872 21.446945103793055, 109.66047226976735 21.50569110384778, 109.57331826968618 21.72332710405047, 109.53442726964994 21.494991103837805, 109.14276326928518 21.396664103746232, 108.87024526903139 21.798882104120835, 108.74025426891035 21.59888210393457, 108.46921826865793 21.935618104248178, 108.46623626865511 21.55874510389718, 108.3336002685316 21.689991104019413, 108.20797226841461 21.499164103841693, 107.78305426801887 21.66693610399794, 107.3627272676274 21.605264103940513, 106.69330926700394 22.03082710433685, 106.55170926687208 22.456818104733586, 106.75749126706376 22.821945105073624, 105.8770632662438 22.91252710515799, 105.35872726576105 23.324164105541357, 104.90749126534081 23.180273105407352, 104.73192726517726 22.818054105070004, 104.37470026484459 22.687500104948413, 104.11130026459927 22.798118105051444, 103.96866326446644 22.503873104777398, 103.65380926417322 22.78287310503724, 103.52241826405083 22.58436410485237, 103.33367226387509 22.79450910504808, 103.0647092636246 22.440827104718693, 102.50096326309955 22.771800105026927, 102.14074526276409 22.396282104677198, 101.69136326234553 22.472218104747924, 101.57443626223665 22.209164104502932, 101.76526326241435 21.834445104153943, 101.84951826249284 21.239536103599903, 101.7325632623839 21.139491103506728, 101.25360026193783 21.210409103572772, 101.12056326181397 21.770518104094407, 100.63970926136614 21.47693610382099, 100.20568226096191 21.435464103782365, 99.95740926073069 22.050182104354874, 99.16784525999532 22.15591810445335, 99.56484526036508 22.936591105180398, 99.51130026031518 23.08204510531587, 98.92747225977149 23.189164105415628, 98.67990925954092 23.970754106143545, 98.89072725973722 24.160073106319857, 98.06448225896776 24.089100106253767, 97.6499822585817 23.851700106032666)), ((120.12516327951334 23.508754105713265, 121.00916328033662 25.008891107110387, 121.56318228085263 25.28360910736623, 122.0004092812598 25.007218107108827, 121.8181912810901 24.85027310696266, 121.83970928111017 24.47638210661445, 121.45304528075002 23.327218105544205, 120.96970928029992 22.568327104837437, 120.82415428016435 21.92777310424087, 120.05393627944704 23.044373105280783, 120.12516327951334 23.508754105713265)), ((109.70360026980751 18.197773100767037, 108.68705426886078 18.50561810105374, 108.64305426881981 19.308891101801848, 109.29387226942595 19.760000102221966, 109.16024526930147 19.785064102245315, 109.30025426943189 19.919227102370257, 109.46581826958607 19.828609102285867, 109.61080926972107 19.993882102439798, 110.66554527070338 20.13360910256992, 110.92602727094601 20.003745102448974, 111.02154527103494 19.638291102108624, 110.4832182705336 19.167609101670266, 110.52554527057299 18.80082710132868, 110.05025427013038 18.38520010094159, 109.75943626985952 18.391527100947485, 109.70360026980751 18.197773100767037)), ((121.20385428051799 31.800536113435598, 121.3330542806383 31.81832711345217, 121.8736002811417 31.49971811315544, 121.54637228083698 31.53110911318467, 121.20385428051799 31.800536113435598)), ((121.9699912812315 30.0666641118208, 122.10637228135852 30.13250011188211, 122.32638228156338 30.010136111768162, 122.27811828151846 29.93124511169468, 121.9699912812315 30.0666641118208)), ((119.70056327911794 25.426091107498934, 119.69191827910987 25.598745107659724, 119.77963627919155 25.655545107712626, 119.84262727925022 25.54194510760682, 119.70056327911794 25.426091107498934)), ((117.4671452770379 23.755618105943185, 117.41442727698876 23.60221810580032, 117.310527276892 23.58194510578143, 117.36984527694727 23.76221810594933, 117.4671452770379 23.755618105943185)), ((110.45556327050787 21.057418103430294, 110.49802727054737 20.95582710333568, 110.24845427031494 20.9805541033587, 110.3291632703901 21.075554103447175, 110.45556327050787 21.057418103430294)), ((112.79359127268532 21.574164103911542, 112.70276327260069 21.684718104014507, 112.83360027272255 21.774164104097807, 112.86887227275543 21.763191104087596, 112.79359127268532 21.574164103911542)), ((121.40941828070942 39.361382120477174, 121.25901828056936 39.3804091204949, 121.26332728057338 39.43596412054663, 121.43054528072906 39.470827120579116, 121.40941828070942 39.361382120477174)), ((121.12996328044915 28.098609109987905, 121.20095428051525 28.20409111008614, 121.2654002805753 28.1823541100659, 121.20499128051904 28.05527310994755, 121.12996328044915 28.098609109987905)), ((114.04970027385514 22.328882104614436, 113.96500027377624 22.21805410451121, 113.83217227365253 22.200418104494787, 113.88540927370212 22.282636104571367, 114.04970027385514 22.328882104614436)), ((119.71273627912927 32.26673611386978, 119.82567227923442 32.265973113869066, 119.89734527930119 32.071109113687584, 119.78532727919685 32.128809113741326, 119.81960027922878 32.1923451138005, 119.71273627912927 32.26673611386978)), ((113.60476327344077 22.766773105022253, 113.55193627339156 22.755554105011797, 113.38920927324 22.894227105140942, 113.49220027333592 22.89443610514114, 113.60476327344077 22.766773105022253)), ((118.29337227780735 24.419845106561795, 118.3930542779002 24.515827106651187, 118.43776327794183 24.49582710663256, 118.42095427792617 24.397636106541114, 118.29337227780735 24.419845106561795)), ((117.11549127671037 23.473854105680772, 117.12165427671613 23.40075410561269, 116.94511827655168 23.434509105644125, 117.10053627669646 23.48930010569515, 117.11549127671037 23.473854105680772)), ((111.81638227177518 21.5569451038955, 111.83860027179588 21.641382103974152, 112.00081827194697 21.653745103985656, 111.99524527194177 21.615273103949832, 111.81638227177518 21.5569451038955)), ((118.07855427760728 24.439145106579772, 118.09684527762431 24.55215410668501, 118.17830927770018 24.5291641066636, 118.14595427767006 24.43208210657319, 118.07855427760728 24.439145106579772)), ((110.53137227057846 21.198600103561773, 110.61150027065304 21.19381810355732, 110.53693627058362 21.09750010346761, 110.44248227049565 21.15708210352311, 110.53137227057846 21.198600103561773)), ((122.0867002813402 30.3008451120389, 122.20983628145484 30.33958211207498, 122.23526328147852 30.311109112048456, 122.19970928144545 30.23777311198016, 122.0867002813402 30.3008451120389)), ((122.12326328137425 29.686354111466613, 122.03367228129082 29.71353611149192, 122.05845428131386 29.776245111550324, 122.18470928143148 29.687773111467934, 122.12326328137425 29.686354111466613)), ((114.14452727394348 22.286182104574664, 114.23496327402768 22.26608210455595, 114.2440092740361 22.200764104495107, 114.20080027399587 22.194736104489493, 114.14452727394348 22.286182104574664))) +JPN Japan MULTIPOLYGON (((134.29938229271414 34.70411811613977, 134.2502722926684 34.71527311615016, 134.1192632925464 34.5811091160252, 134.03344529246647 34.60582711604823, 133.9324632923724 34.58332711602728, 133.93722729237686 34.5501731159964, 134.04207229247447 34.58471811602857, 133.93684529237646 34.45081811590386, 133.70303629215874 34.52166411596984, 133.3001272917835 34.34374511580414, 133.2519182917386 34.42319111587814, 133.19031829168125 34.277491115742436, 133.07115429157022 34.24978211571663, 133.04635429154717 34.324164115785905, 132.82011829133643 34.30790911577077, 132.7649822912851 34.231654115699754, 132.5504632910853 34.191936115662756, 132.50387229104194 34.322491115784345, 132.35399129090234 34.353464115813196, 132.22494529078216 34.23638211570416, 132.21329129077128 33.9905451154752, 132.12952729069332 33.9414731154295, 132.1545542907166 33.8348541153302, 132.05053629061973 33.77249111527212, 132.0485822906179 33.89527311538647, 131.7457912903359 34.053600115533925, 131.2583182898819 33.91847311540808, 131.03040028966967 34.03958211552087, 130.91691828956397 33.91666411540639, 130.88442728953368 33.93443611542294, 130.88693628953604 34.12526411560067, 130.92776328957405 34.18138211565294, 130.87967228952925 34.29305411575693, 130.94469128958985 34.41388211586947, 131.16552728979548 34.417209115872566, 131.210100289837 34.370336115828906, 131.40610029001954 34.4220821158771, 131.60385429020374 34.65360011609272, 131.8453822904287 34.702773116138516, 132.13080029069448 34.95000011636877, 132.29999129085206 35.036109116448955, 132.41470029095888 35.172082116575595, 132.63888229116765 35.28638211668205, 132.68136329120722 35.36901811675901, 132.63365429116277 35.421109116807514, 132.96120929146787 35.49416411687555, 133.0910632915888 35.58250011695783, 133.40164529187803 35.44526411683002, 133.56191829202731 35.515273116895216, 133.8136002922617 35.48554511686753, 134.26005429267752 35.53901811691733, 134.5148452929148 35.64596411701693, 134.9165182932889 35.63512711700683, 135.22220029357356 35.7622181171252, 135.30636329365194 35.683736117052106, 135.19343629354677 35.525409116904655, 135.38720929372727 35.46638211684969, 135.34650029368936 35.53874511691707, 135.46109129379607 35.58804511696299, 135.51095429384247 35.48901811687077, 135.73635429405243 35.483882116865985, 135.96801829426818 35.648745117019516, 136.01470929431167 35.740964117105406, 136.07275429436572 35.64860911701939, 136.09857229438978 35.76277311712572, 135.96107229426173 35.97610011732439, 136.12830029441744 36.195545117528766, 136.40691829467693 36.39721811771659, 136.71246329496148 36.75139111804644, 136.76776329501297 36.965273118245634, 136.68246329493354 37.17610011844198, 136.7869272950308 37.36220911861531, 137.24856329546077 37.5169361187594, 137.35635429556118 37.50471811874803, 137.3527362955578 37.42985411867831, 137.0348362952617 37.18082711844639, 136.92135429515605 37.19720911846164, 136.86328229510195 37.08777311835972, 137.04443629527066 37.05665411833074, 137.00555429523445 36.82916411811887, 137.09274529531564 36.77166411806532, 137.30246329551096 36.74638211804178, 137.3963822955984 36.7999911180917, 137.44343629564224 36.925691118208775, 138.2438362963877 37.172491118438614, 138.58053629670127 37.398609118649205, 138.74023629685001 37.5802731188184, 138.83856329694157 37.80693611902949, 139.23578229731152 37.993882119203604, 139.42622729748888 38.154573119353245, 139.48745429754592 38.43888211961803, 139.62862729767738 38.67339111983645, 139.76580929780516 38.79110911994607, 140.02276329804442 39.37860012049322, 140.07080029808918 39.585545120685964, 140.0383002980589 39.80304512088853, 139.93191829795984 39.889718120969235, 139.75332729779353 39.85804512093975, 139.69620929774032 39.979018121052405, 139.8858002979169 39.98360912105667, 140.02053629804237 40.230818121286916, 139.9355182979632 40.53638212157148, 139.85232729788572 40.59819112162904, 140.0088822980315 40.73804512175931, 140.11386329812927 40.73193612175362, 140.26886329827363 40.806654121823186, 140.33996329833985 41.03777312203843, 140.34551829834504 41.24707312223336, 140.45677229844864 41.18262712217336, 140.56607229855047 41.22110012220918, 140.63928229861864 41.18138212217218, 140.66080029863866 40.92555412193394, 140.72190929869555 40.830827121845715, 140.83523629880114 40.84470912185864, 140.88273629884537 40.99151812199537, 141.11605429906263 40.8605451218734, 141.16912729911206 40.87665412188838, 141.27873629921413 41.14693612214012, 141.1985822991395 41.25193612223791, 141.062745299013 41.17721812216831, 140.80260929877073 41.12262712211748, 140.76666329873723 41.15249112214528, 140.91123629887187 41.52554512249273, 141.10608229905336 41.46081812243244, 141.22481829916393 41.35443612233337, 141.4558092993791 41.34388212232352, 141.39553629932294 41.144718122138045, 141.46050929938343 40.59388212162503, 141.68914529959636 40.43693612147888, 141.8202542997185 40.2672091213208, 141.86245429975781 40.15749112121861, 141.84051829973737 40.063327121130925, 141.957182299846 39.96277312103726, 141.9788542998662 39.65277312074855, 142.0697002999508 39.54666412064975, 142.03387229991745 39.41457312052671, 141.9063722997987 39.32999112044794, 141.8481632997445 39.019854120159124, 141.636109299547 38.99485412013584, 141.64249129955294 38.884991120033504, 141.5925272995064 38.88568212003415, 141.533054299451 38.78054511993625, 141.5194272994383 38.26346411945465, 141.35772729928772 38.39832711958027, 141.09579129904375 38.364436119548714, 140.95358229891133 38.14804511934719, 140.91816329887837 37.93735411915095, 141.02249129897552 37.7208271189493, 141.03888229899076 37.45638211870302, 140.97454529893088 36.98471811826374, 140.82440029879103 36.90179111818651, 140.74606329871807 36.7791641180723, 140.56551829854993 36.24749111757714, 140.6005272985825 36.08082711742193, 140.83719129880296 35.74332711710761, 140.82412729879076 35.694991117062585, 140.6260632986063 35.654436117024815, 140.45080929844312 35.50388211688461, 140.39803629839395 35.385273116774144, 140.39080929838724 35.17332711657676, 140.12189129813675 35.086382116495784, 139.99300929801672 35.00832711642309, 139.95468229798104 34.910827116332285, 139.83816329787254 34.89500011631755, 139.77165429781058 34.96311811638098, 139.86719129789958 34.9965361164121, 139.82358229785893 35.16470911656873, 139.84884529788246 35.278882116675064, 140.11314529812864 35.55235411692975, 139.9957912980193 35.65804511702818, 139.77719129781576 35.633327117005166, 139.7780452978165 35.50194511688281, 139.64609129769366 35.457491116841396, 139.65720029770398 35.28138211667739, 139.74502729778578 35.251727116649775, 139.67872729772404 35.137218116543124, 139.614272297664 35.13221811653847, 139.5578912976115 35.28555411668127, 139.32580929739538 35.298045116692904, 139.17330929725335 35.238045116637025, 139.08829129717412 35.05720911646861, 139.13858229722098 34.87470911629865, 138.9816272970748 34.66638211610463, 138.85039129695258 34.593182116036445, 138.74600029685536 34.68082711611808, 138.76790029687578 34.95464511637309, 138.90594529700434 35.034782116447715, 138.7412092968509 35.123464116530315, 138.56690929668855 35.08970911649888, 138.33245429647025 34.85804511628312, 138.19912729634603 34.65360011609272, 138.21414529636002 34.59916411604202, 137.59133629578002 34.66888211610696, 137.0287912952561 34.56783611601284, 137.06997229529446 34.63999111608004, 137.34830029555366 34.718745116153386, 137.27691829548718 34.80193611623086, 137.02678229525424 34.759300116191156, 136.97789129520868 34.91901811633991, 136.91665429515166 34.783191116213416, 136.9738452952049 34.685409116122344, 136.8777452951154 34.720273116154814, 136.82385429506525 34.91388211633513, 136.9021912951382 35.04540911645762, 136.8498362950894 35.07902711648893, 136.6577452949105 34.97999111639669, 136.63970929489375 34.854164116279506, 136.52109129478328 34.67665411611419, 136.5357362947969 34.601273116043984, 136.91568229515076 34.43360911588783, 136.897691295134 34.266518115732225, 136.82718229506833 34.24221811570959, 136.6688542949209 34.298336115761856, 136.34384529461818 34.18970911566069, 136.29246329457033 34.142700115616904, 136.2746912945538 33.96915411545528, 136.09579129438714 33.86305411535646, 135.95135429425267 33.57666411508974, 135.7722182940858 33.45499111497642, 135.45773629379295 33.539991115055585, 135.33620929367976 33.65680011516437, 135.37857229371923 33.719436115222706, 135.06468229342687 33.8755451153681, 135.1959542935491 34.14040911561477, 135.09801829345793 34.24943611571631, 135.13244529348998 34.31721811577944, 135.29580929364215 34.390827115848, 135.43637229377305 34.525827115973726, 135.41923629375708 34.691364116127886, 135.31497229366 34.71582711615068, 135.04885429341215 34.61860011606012, 134.66388229305358 34.778600116209134, 134.29938229271414 34.70411811613977)), ((143.78137230154493 42.74916412363231, 143.59097230136757 42.61493612350728, 143.3738363011654 42.361664123271424, 143.31692730111234 42.04277312297441, 143.24314530104368 41.924718122864476, 143.11431830092369 42.02651812295929, 142.48522730033778 42.258045123174924, 141.79052729969078 42.606382123499316, 141.43649129936108 42.569436123464925, 140.99024529894547 42.29700912321121, 140.7522542987238 42.5509641234477, 140.47065429846157 42.570827123466216, 140.2988722983016 42.379436123287974, 140.29871829830142 42.241245123159274, 140.537672298524 42.10784512303502, 140.74302729871522 42.115127123041816, 140.96842729892518 41.90943612285025, 141.1944092991356 41.79495412274363, 140.98079129893665 41.705127122659974, 140.66636329864383 41.82416412277084, 140.59981829858185 41.73290912268584, 140.45600929844795 41.681936122638376, 140.41456329840935 41.51430012248224, 140.27026329827493 41.47985412245018, 140.19899129820857 41.39728212237327, 140.05190929807156 41.429164122402966, 139.97941829800408 41.58825412255112, 140.12745429814197 41.81721812276436, 140.13763629815145 41.98360012291931, 140.03888229805943 42.09804512302591, 139.78609129782404 42.24315412316105, 139.76976329780882 42.31207312322522, 139.84164529787574 42.44499112334901, 139.86363629789622 42.65319112354291, 140.03538229805622 42.679854123567765, 140.30831829831038 42.80915412368816, 140.5296362985165 43.00749112387288, 140.34692729834632 43.189709124042594, 140.35621829835497 43.316518124160694, 140.4834272984735 43.365891124206684, 140.79928229876765 43.187209124040265, 141.15852729910222 43.138536123994925, 141.41109129933744 43.29693612414246, 141.43870929936315 43.382282124221945, 141.3382272992696 43.71158212452863, 141.38136329930973 43.7836091245957, 141.56636329948202 43.856173124663286, 141.64580929955605 43.94221812474342, 141.65852729956788 44.302973125079404, 141.75094529965395 44.432418125199945, 141.79567229969558 44.61666412537156, 141.76165429966392 44.860964125599054, 141.57358229948875 45.20985412592401, 141.69386329960076 45.39999112610107, 141.97107229985897 45.486382126181525, 142.51623630036664 45.043609125769166, 142.8121823006423 44.711800125460144, 143.38470930117552 44.32555412510044, 143.69165430146137 44.208045124991, 143.77622730154013 44.094082124884864, 144.0333273017796 44.13360912492166, 144.17135430190814 44.10853612489831, 144.36773630209103 43.95388212475427, 144.7916453024858 43.9177001247206, 145.33885430299546 44.34415412511774, 145.37759130303152 44.26784512504668, 145.0706633027457 43.77749112459, 145.16388230283246 43.63276412445521, 145.35684530301222 43.5531911243811, 145.20812730287366 43.600909124425556, 145.30359130296262 43.368600124209195, 145.25610030291836 43.31763612416174, 145.4724723031199 43.25110912409977, 145.65109130328625 43.378182124218114, 145.81240930343648 43.365482124206295, 145.62329130326032 43.304709124149696, 145.52080930316492 43.170273124024476, 145.13705430280748 43.1258271239831, 145.10718230277968 43.045827123908595, 145.00344530268308 42.984300123851284, 144.87466330256314 42.97887312384623, 144.8062273024994 43.04430012390716, 144.74050930243817 42.960818123829426, 144.48607230220125 42.92930012380006, 144.29192730202038 42.9933271238597, 143.98968230173892 42.906654123778964, 143.78137230154493 42.74916412363231)), ((129.74606328847352 32.561100114143926, 129.8576092885774 32.71874511429074, 129.68551828841714 32.83804511440185, 129.63554528837057 32.96540911452047, 129.687527288419 33.078573114625854, 129.82149128854377 32.97540911452978, 129.8040002885275 32.85846411442087, 129.851763288572 32.82249111438736, 129.96997228868207 32.86305411442514, 129.92690928864192 33.01277311456458, 129.57014528830967 33.2095091147478, 129.58858228832685 33.36401811489171, 129.83433628855573 33.29222711482484, 129.87839128859673 33.375073114901994, 129.80119128852488 33.4492641149711, 129.8692632885883 33.52720911504369, 129.92110028863652 33.53666411505249, 130.00332728871314 33.43942711496193, 130.20745428890325 33.65082711515882, 130.28358228897412 33.57596411508909, 130.3653722890503 33.5840181150966, 130.468154289146 33.75040911525156, 130.45100028913004 33.79957311529735, 130.7027452893645 33.9358911154243, 130.98218228962475 33.88110011537327, 130.95497228959943 33.814300115311056, 131.09877228973335 33.61256411512318, 131.35190028996908 33.56249111507654, 131.4189272900315 33.56666411508043, 131.52719129013235 33.668882115175634, 131.66970929026508 33.6474911151557, 131.7303822903216 33.57471811508793, 131.72955429032078 33.46638211498704, 131.5834542901847 33.34290911487204, 131.50317229010994 33.33992711486927, 131.51738229012318 33.264664114799174, 131.89668229047646 33.24718211478289, 131.81655429040183 33.11964511466411, 131.9852272905589 32.90388211446317, 131.98940929056278 32.83055411439487, 131.89721829047693 32.7833361143509, 131.68518229027944 32.534927114119554, 131.7041272902971 32.460273114050025, 131.61578229021484 32.339991113938, 131.4466362900573 31.88902711351801, 131.49078229009842 31.789582113425396, 131.33454528995293 31.36923611303392, 131.24627228987072 31.384927113048533, 131.20546328983266 31.459718113118186, 131.07162728970803 31.44874511310796, 131.00521828964622 31.35170911301759, 131.10608228974013 31.322500112990383, 131.1291182897616 31.26735411293903, 130.93496328958076 31.117082112799082, 130.6682452893324 30.99958211268965, 130.79871828945386 31.31430011298275, 130.67371828933744 31.542909113195662, 130.6021092892708 31.585900113235695, 130.680736289344 31.618400113265963, 130.75110028940952 31.55332711320537, 130.8079542894625 31.682491113325653, 130.64499128931072 31.714164113355153, 130.5344272892077 31.528882113182604, 130.56094528923245 31.33124511299853, 130.6634542893279 31.262500112934504, 130.63830928930452 31.182282112859795, 130.52019128919449 31.163673112842474, 130.48612728916277 31.23159111290572, 130.23108228892522 31.247491112920528, 130.2033092888994 31.339164113005907, 130.30470028899379 31.453673113112558, 130.33620928902315 31.62597311327302, 130.1858092888831 31.754691113392894, 130.16247228886135 32.006945113627836, 130.2060722889019 32.123454113736344, 130.32191828900983 32.11693611373026, 130.56456328923582 32.43527311402674, 130.58746328925713 32.63193611420989, 130.45023628912935 32.61943611419825, 130.6024452892711 32.715545114287764, 130.60691828927526 32.78346411435102, 130.4566362891353 32.911236114470015, 130.41580028909726 33.08749111463416, 130.21109128890663 33.170827114711784, 130.13775428883832 33.10582711465125, 130.21842728891346 32.95818211451373, 130.09620928879963 32.85401811441673, 130.3141362890026 32.8619361144241, 130.3766182890608 32.769300114337824, 130.33940028902612 32.65930011423538, 130.17690928887475 32.5872821141683, 130.13546328883615 32.633809114211644, 130.20198228889814 32.725200114296754, 130.17407228887214 32.782982114350574, 130.08814528879213 32.78443611435192, 129.74606328847352 32.561100114143926)), ((134.3051452927195 33.52757311504402, 134.18655429260906 33.24200911477807, 133.92454529236505 33.47401811499415, 133.74760929220025 33.51638211503361, 133.60426329206678 33.50332711502145, 133.28150929176616 33.36290911489067, 133.24163629172904 33.196654114735836, 133.01734529152014 32.99832711455113, 133.00747229151096 32.76749111433614, 132.96441829147085 32.743045114313375, 132.63930029116807 32.75180911432153, 132.71400929123763 32.90665411446575, 132.48301829102252 32.8955451144554, 132.4641452910049 33.024991114575954, 132.53470029107064 33.24470911478059, 132.37731829092405 33.31082711484217, 132.3667182909142 33.46772711498829, 132.01871829059007 33.34047311486978, 132.63982729116856 33.67373611518015, 132.7089272912329 33.87492711536753, 132.89692729140796 34.106109115582825, 132.97996329148532 34.10305411557998, 133.1459542916399 33.912345115402374, 133.31531829179767 33.983945115469055, 133.52310029199117 33.96277311544934, 133.62050929208186 34.04659111552739, 133.67969129213702 34.22068211568953, 133.89386329233645 34.35999111581927, 134.08260929251225 34.33874511579948, 134.1315002925578 34.38638211584386, 134.43428229283978 34.20762711567737, 134.57912729297465 34.22416411569277, 134.63244529302432 34.145827115619824, 134.605236292999 33.98395411546906, 134.694409293082 33.9327731154214, 134.74469129312888 33.817354115313904, 134.38309129279207 33.62304511513294, 134.3051452927195 33.52757311504402)), ((128.28720028711484 26.8550001088297, 128.33550928715982 26.76500010874588, 128.2713632871001 26.658327108646546, 127.94637228679744 26.45110910845355, 127.8497182867074 26.436382108439844, 127.77859128664119 26.236664108253834, 127.81302728667322 26.155554108178293, 127.65220928652349 26.085691108113238, 127.63997228651209 26.208609108227705, 127.74414528660907 26.309445108321626, 127.71754528658431 26.432082108435836, 127.95999128681012 26.54735410854319, 127.88388228673921 26.667500108655076, 127.95845428680866 26.695554108681208, 127.99373628684151 26.63624510862597, 128.06747228691023 26.642491108631788, 128.28720028711484 26.8550001088297)), ((138.51110929663662 38.2811091194711, 138.42982729656092 38.06048211926563, 138.57801829669893 38.06971811927423, 138.51054529663605 37.91527311913039, 138.37551829651034 37.82360911904502, 138.21829129636387 37.80082711902381, 138.33719129647466 37.96666411917825, 138.23981829638393 37.97339111918451, 138.2424632963864 38.07500011927914, 138.46691829659545 38.3086001194967, 138.51207229663748 38.3213821195086, 138.51110929663662 38.2811091194711)), ((129.6904632884217 28.497718110359614, 129.71774528844713 28.43380911030009, 129.58440928832295 28.369991110240647, 129.37329128812632 28.1163181100044, 129.1433092879122 28.252500110131223, 129.6904632884217 28.497718110359614)), ((134.7622092931452 34.18443611565577, 134.6738722930629 34.23790911570558, 134.6669272930564 34.296945115760565, 134.8749722932502 34.51166411596053, 135.01997229338525 34.59082711603426, 134.8935822932675 34.366664115825486, 134.94650029331683 34.26138211572744, 134.7622092931452 34.18443611565577)), ((130.00000028871 32.18831811379674, 129.9552272886683 32.24360911384824, 129.98745428869836 32.40942711400267, 130.02719128873537 32.49832711408547, 130.15387228885334 32.543609114127634, 130.20760928890337 32.333464113931925, 130.00000028871 32.18831811379674)), ((129.47305428821926 34.68561811612254, 129.50526328824924 34.657627116096464, 129.47607228822204 34.534436115981734, 129.3365002880921 34.294718115758485, 129.2452362880071 34.35665411581617, 129.30026328805832 34.55693611600269, 129.3333002880891 34.63138211607203, 129.47305428821926 34.68561811612254)), ((131.0719002897083 30.82667311252861, 131.07440028971064 30.689164112400547, 130.96970028961312 30.390554112122445, 130.87911828952878 30.35500011208933, 130.86636328951687 30.456936112184266, 130.95190928959653 30.583054112301724, 130.94413628958932 30.678536112390645, 131.0719002897083 30.82667311252861)), ((130.5235272891976 30.44310011217138, 130.66818228933232 30.38013611211275, 130.59830028926723 30.24360911198559, 130.44440928912388 30.250691111992197, 130.38845428907177 30.349582112084292, 130.38433628906796 30.394091112125736, 130.5235272891976 30.44310011217138)), ((128.652409287455 32.69663611427015, 128.6608002874628 32.78193611434959, 128.81329128760478 32.79250011435944, 128.9010182876865 32.64687311422381, 128.7419092875383 32.58915411417006, 128.61022728741568 32.611664114191015, 128.652409287455 32.69663611427015)), ((129.33078228808677 34.22970011569794, 129.27026328803038 34.10332711558024, 129.18518228795114 34.10033611557745, 129.21052728797474 34.317354115779565, 129.3478822881027 34.27770011574263, 129.33078228808677 34.22970011569794)), ((123.79225428292858 24.405245106548193, 123.93650928306295 24.354300106500745, 123.8728912830037 24.253891106407238, 123.67886328282299 24.316109106465177, 123.79225428292858 24.405245106548193)), ((133.298554291782 36.31827311764307, 133.3852542918628 36.2515181175809, 133.37677229185488 36.19818211753122, 133.25636329174273 36.15193611748815, 133.1885632916796 36.20304511753575, 133.18914529168012 36.26971811759785, 133.298554291782 36.31827311764307)), ((128.9336272877169 27.901100109803963, 129.02928228780598 27.771664109683414, 128.95344528773535 27.677082109595332, 128.88066328766757 27.822082109730374, 128.9336272877169 27.901100109803963)), ((130.23938228893297 32.460345114050085, 130.3319092890191 32.51639111410229, 130.44802728912725 32.505273114091935, 130.35885428904425 32.37054511396646, 130.2357912889296 32.39707311399117, 130.23938228893297 32.460345114050085)), ((141.17587229911834 45.24233612595424, 141.27190929920778 45.21998212593343, 141.33038229926228 45.14610012586462, 141.25942729919615 45.09804512581988, 141.16580029910898 45.12804512584782, 141.12898229907466 45.164154125881424, 141.17587229911834 45.24233612595424)), ((129.1236912878939 33.068518114616495, 129.09690928786893 32.98554511453922, 129.18304528794914 32.986109114539744, 129.0555272878304 32.81867311438381, 129.00555428778387 32.934991114492135, 129.11515428788596 33.14241811468533, 129.1236912878939 33.068518114616495)), ((124.09491828321046 24.439491106580093, 124.2172092833244 24.445136106585352, 124.32505428342483 24.586109106716634, 124.23165428333783 24.340136106487563, 124.12371828323728 24.34319110649041, 124.09491828321046 24.439491106580093)), ((129.53796328827968 33.30749111483905, 129.4844092882298 33.20860011474696, 129.36107228811494 33.16971811471075, 129.45412728820162 33.33166411486157, 129.56164528830175 33.38832711491435, 129.53796328827968 33.30749111483905)), ((139.45303629751385 42.21360912313352, 139.56190929761522 42.23214512315079, 139.45454529751527 42.04763612297896, 139.40774529747165 42.15082712307506, 139.45303629751385 42.21360912313352)), ((132.42721829097053 33.8967001153878, 132.33163629088153 33.84916411534353, 132.21829129077594 33.85360011534766, 132.1848272907448 33.904854115395395, 132.24606329080183 33.9474911154351, 132.32801829087816 33.89485411538608, 132.44830029099018 33.933600115422166, 132.42721829097053 33.8967001153878)), ((125.28830928432194 24.865554106976887, 125.34970028437908 24.781245106898368, 125.44637228446913 24.73277310685323, 125.25916328429474 24.727354106848182, 125.28830928432194 24.865554106976887)), ((134.3715822927814 34.51240911596122, 134.3492722927606 34.43151811588589, 134.19384529261583 34.471373115923, 134.27790929269412 34.54221811598899, 134.36481829277506 34.55082711599701, 134.3715822927814 34.51240911596122)), ((129.72079128844996 33.69749111520227, 129.65887228839233 33.749164115250395, 129.6995542884302 33.85597311534987, 129.77247228849814 33.8433271153381, 129.79412728851827 33.76277311526307, 129.72079128844996 33.69749111520227)), ((132.49810929103654 34.255082115721564, 132.48370029102313 34.129991115605065, 132.44607229098807 34.11485411559097, 132.38644529093256 34.245345115712496, 132.49810929103654 34.255082115721564)), ((140.99493629894982 45.448954126146674, 141.07440029902386 45.414154126114255, 141.03040929898287 45.26651812597677, 140.9681542989249 45.45985412615684, 140.99493629894982 45.448954126146674))) +PRK North Korea MULTIPOLYGON (((127.4387542863247 39.404945120517766, 127.4111002862989 39.3922181205059, 127.37469128626503 39.372218120487275, 127.37642728626662 39.23512712035961, 127.39970928628833 39.19527312032247, 127.44775428633307 39.16450912029384, 127.54081828641972 39.140273120271246, 127.64553628651726 39.12499112025702, 127.78276328664504 39.088327120222885, 127.80970928667017 39.04916412018642, 127.85581828671309 38.987354120128856, 127.88025428673586 38.962773120105936, 128.01081828685744 38.85846412000879, 128.03802728688277 38.852491120003236, 128.0649722869079 38.84638211999754, 128.09384528693477 38.834436119986435, 128.1221912869612 38.819164119972214, 128.13665428697465 38.802773119956925, 128.20135428703492 38.735264119894055, 128.22662728705842 38.733327119892266, 128.26360028709286 38.73790911989653, 128.29330928712056 38.727482119886815, 128.33719128716143 38.70221811986329, 128.36272728718518 38.67686411983968, 128.36355428718593 38.6252451197916, 128.30850028713468 38.58756411975651, 128.30663628713296 38.56040911973122, 128.31338228713923 38.52464511969791, 128.307736287134 38.48860011966434, 128.29733628712427 38.45943611963719, 128.27969128710788 38.43027311961001, 128.26052728708999 38.4116641195927, 128.2435632870742 38.39527311957741, 128.22497228705691 38.38166411956476, 128.20080928703442 38.36554511954975, 128.1760912870114 38.35000011953525, 128.15844528699495 38.33957311952554, 128.137072286975 38.32930011951598, 128.07995428692186 38.31193611949982, 128.05469128689833 38.30665411949488, 128.01052728685715 38.30554511949387, 127.97970028682846 38.30720911949541, 127.88527228674053 38.313609119501365, 127.66900928653911 38.31971811950706, 127.53749128641664 38.307491119495666, 127.4508182863359 38.31249111950032, 127.36638228625725 38.323327119510424, 127.25139128615018 38.31888211950627, 127.19748228609996 38.31193611949982, 127.13081828603788 38.298191119487, 127.10096328601009 38.28416411947396, 127.0680452859794 38.25999111945143, 127.0501182859627 38.249991119442114, 127.00580028592145 38.22923611942278, 126.98664528590359 38.21374511940837, 126.96983628588794 38.188600119384944, 126.95510928587424 38.15444511935314, 126.93525428585576 38.128600119329064, 126.82443628575254 38.016109119224296, 126.80720928573652 38.00054511920982, 126.77346328570508 37.97360011918471, 126.73664528567076 37.9551271191675, 126.68849128562596 37.83390911905461, 126.62469128556654 37.78860911901242, 126.58235428552706 37.77200911899696, 126.47915428543098 37.820273119041914, 126.42150928537728 37.856873119076, 126.39980028535706 37.885991119103124, 126.38860028534663 37.88721811910426, 126.35331828531378 37.880545119098045, 126.20818228517862 37.84540911906532, 126.14352728511841 37.818327119040106, 126.15886328513267 37.779718119004144, 126.16109128513477 37.757636118983584, 126.14942728512386 37.734364118961906, 126.10483628508234 37.74124511896831, 126.06638228504653 37.794718119018114, 126.04276328502453 37.86360911908227, 125.96998228495676 37.90568211912145, 125.94330928493196 37.89006411910691, 125.97220928495886 37.86909111908737, 125.98511828497084 37.82922711905026, 125.9201182849103 37.83590011905646, 125.82443628482122 37.94110011915444, 125.80372728480194 37.98533611919564, 125.74845428475044 38.00263611921176, 125.67249128467972 38.01693611922508, 125.60526328461708 38.026100119233604, 125.57714528459093 38.01714511922526, 125.59249128460522 37.991800119201656, 125.61303628462434 37.9787451191895, 125.64623628465523 37.96651811917812, 125.72442728472805 37.91081811912623, 125.6430542846523 37.81888211904062, 125.56540028458 37.78228211900654, 125.5211002845387 37.78443611900853, 125.38067228440792 37.70874511893804, 125.34275428437263 37.67138211890325, 125.33720028436744 37.68027311891153, 125.33345428436394 37.716100118944894, 125.38387228441093 37.79238211901594, 125.4438722844668 37.81916411904088, 125.48749128450743 37.837491119057944, 125.50970928452813 37.8855451191027, 125.45610028447817 37.91249111912779, 125.42637228445051 37.906654119122365, 125.38750028441427 37.89610011911253, 125.35276328438192 37.86166411908046, 125.30859128434082 37.88638211910349, 125.23998228427689 37.92714511914144, 125.21900928425737 37.888809119105744, 125.17601828421732 37.864154119082784, 125.1324722841768 37.8680451190864, 125.08665428413411 37.87720911909494, 125.02151828407347 37.89548211911196, 124.9829002840375 37.93329111914717, 125.1174822841628 38.04250011924887, 125.18525428422595 38.04639111925249, 125.20609128424536 38.0430451192494, 125.2190182842574 38.026173119233675, 125.24158228427837 38.01395411922229, 125.27380028430838 38.063745119268674, 125.25685428429261 38.07728211928128, 125.13304528417729 38.09110011929414, 125.1066452841527 38.08693611929027, 125.08305428413075 38.07943611928329, 125.06068228410993 38.07013611927462, 125.02179128407369 38.062909119267886, 124.86498228392765 38.10290911930514, 124.78888228385676 38.095273119298014, 124.76693628383634 38.0966541192993, 124.67005428374614 38.11950911932061, 124.67630028375191 38.13964511933935, 124.72164528379415 38.139164119338915, 124.7441452838151 38.14388211934329, 124.82138228388703 38.1888821193852, 124.86249128392535 38.2291541194227, 124.8679002839304 38.260827119452216, 124.86553628392818 38.332500119518954, 124.95832728401462 38.46332711964081, 124.99330928404714 38.58637311975539, 125.05526328410485 38.5806911197501, 125.15664528419927 38.64471811980974, 125.30900928434119 38.651654119816186, 125.34610028437572 38.670273119833524, 125.37706328440458 38.69180011985358, 125.44720028446989 38.700545119861744, 125.55400928456936 38.67422711983721, 125.57639128459022 38.64888211981361, 125.59248228460518 38.63680011980236, 125.62553628463598 38.624154119790575, 125.64915428465798 38.62207311978864, 125.65259128466118 38.62450911979093, 125.65207228466068 38.629436119795514, 125.63304528464295 38.65485411981919, 125.62979128463996 38.656936119821125, 125.51720928453511 38.71776411987776, 125.47915428449966 38.72165411988138, 125.43220928445595 38.72220911988191, 125.36775428439591 38.707218119867946, 125.28324528431722 38.69707311985849, 125.24470928428133 38.71638211987647, 125.1405362841843 38.79811811995259, 125.14943628419257 38.869582120019146, 125.19970928423942 38.921936120067926, 125.23580928427305 38.99916412013985, 125.25916328429474 39.05221812018925, 125.28414528431802 39.11554512024824, 125.29026328432371 39.15526412028521, 125.3397092843698 39.20332712032999, 125.35941828438814 39.21582712034163, 125.38831828441505 39.2375001203618, 125.41165428443679 39.27971812040113, 125.42191828444635 39.30804512042752, 125.40165428442748 39.35889112047485, 125.35998228438865 39.39346412050705, 125.33810928436827 39.4345091205453, 125.34679128437637 39.45930012056837, 125.40331828442902 39.525409120629945, 125.45043628447291 39.57235412067368, 125.44199128446502 39.57672712067773, 125.37275428440057 39.55221812065491, 125.3113722843434 39.52582712063034, 125.29040028432388 39.51930012062425, 125.12025428416541 39.558745120661, 125.03749128408833 39.605554120704596, 124.94553628400269 39.66249112075761, 124.84610028391006 39.721373120812444, 124.74529128381619 39.77321812086075, 124.74637228381721 39.714154120805716, 124.75568228382588 39.677845120771906, 124.74081828381202 39.6293001207267, 124.6358822837143 39.598009120697554, 124.63109128370985 39.64985412074586, 124.65005428372751 39.676936120771074, 124.56165428364517 39.80000012088567, 124.53637228362163 39.80971812089473, 124.4988722835867 39.821109120905334, 124.43956328353147 39.82902712091271, 124.40637228350056 39.83166412091518, 124.3636002834607 39.865000120946206, 124.3239542834238 39.91589112099362, 124.38860028348398 40.022491121092884, 124.37360028347001 40.093618121159125, 124.38136328347724 40.10221812116714, 124.41080928350465 40.130273121193255, 124.55470028363868 40.242218121297526, 124.62692728370592 40.28360912133607, 124.68871828376348 40.296800121348355, 124.71099128378427 40.30700912135788, 124.81247228387878 40.396664121441376, 124.88512728394642 40.47037312151002, 124.9622002840182 40.45916412149958, 125.03998228409063 40.46068212150098, 125.02470928407644 40.49416412153218, 125.04276328409321 40.53750012157252, 125.14054528418427 40.585264121617, 125.28610028431984 40.64749112167496, 125.31499128434677 40.64999112167729, 125.3691362843972 40.639991121667975, 125.41269128443776 40.65380012168083, 125.45749128447949 40.70332712172697, 125.55303628456846 40.7413821217624, 125.60386328461578 40.755827121775866, 125.64984528465862 40.80260012181941, 125.68858228469469 40.85214512186556, 125.7031092847082 40.859973121872855, 125.9325452849219 40.877627121889304, 126.0117912849957 40.89693612190729, 126.12469128510088 41.0347181220356, 126.27916328524469 41.15277312214553, 126.2862272852513 41.172627122164045, 126.3099822852734 41.21443612220298, 126.36692728532643 41.275691122260014, 126.41110028536758 41.31916412230052, 126.4377632853924 41.34249112232223, 126.45610028540949 41.35721812233595, 126.48400028543551 41.3667271223448, 126.51027228545996 41.38999112236647, 126.58318228552787 41.570827122534894, 126.56804528551373 41.58971812255248, 126.56608228551192 41.61176412257302, 126.64553628558593 41.66054512261846, 126.71277228564855 41.6911001226469, 126.79553628572563 41.708045122662696, 126.84790028577441 41.73582712268856, 126.8688632857939 41.76138212271235, 126.90470928582732 41.792218122741076, 126.92761828584861 41.796109122744696, 127.04802728596076 41.70832712266295, 127.06080928597271 41.6911001226469, 127.05703628596916 41.643500122602575, 127.10080928600996 41.62137312258196, 127.13499128604178 41.5936091225561, 127.15941828606452 41.52999112249685, 127.2708272861683 41.4724911224433, 127.62081828649423 41.41805412239262, 127.69415428656254 41.41312712238803, 127.83527228669396 41.409991122385094, 127.87109128672734 41.42416412239831, 127.92802728678032 41.447345122419875, 128.01165428685823 41.41582712239054, 128.04412728688845 41.389436122365964, 128.11433628695386 41.37179112234952, 128.15290928698977 41.38123612235833, 128.19267228702682 41.407491122382766, 128.2224722870546 41.44110012241407, 128.2822002871102 41.53027312249711, 128.30024528712698 41.58283612254607, 128.2694362870983 41.63693612259647, 128.25427228708418 41.650409122609005, 128.22662728705842 41.663882122621544, 128.20385428703725 41.676382122633186, 128.15567228699234 41.71457312266875, 128.09843628693903 41.80304512275117, 128.06884528691148 41.88499112282747, 128.06079128690396 41.91054512285129, 128.05010928689404 41.981645122917485, 128.05663628690013 42.00124512293576, 128.27552728710396 42.03832712297029, 128.3360912871604 42.03971812297158, 128.36135428718393 42.037500122969504, 128.42248228724083 42.02860012296122, 128.4467002872634 42.01277312294647, 128.4728822872878 41.997627122932386, 128.49705428731028 41.99554512293045, 128.57025428737848 42.00027312293483, 128.68309128748353 42.021027122954166, 128.84497228763433 42.029718122962265, 128.8955362876814 42.02276412295578, 128.9269272877106 42.02735412296008, 128.94926328773147 42.052073122983074, 128.95808228773967 42.07840012300761, 129.01410028779185 42.09419112302231, 129.01669128779423 42.09499112302305, 129.11440928788522 42.139436123064456, 129.15246328792068 42.16805412309111, 129.2112092879754 42.221309123140685, 129.2094092879737 42.26582712318216, 129.24606328800786 42.37582712328461, 129.34927228810398 42.44623612335019, 129.4451182881932 42.432773123337626, 129.51470928825808 42.38693612329496, 129.69552728842643 42.43581812334048, 129.7166272884461 42.452491123356, 129.72829128845694 42.47540012337734, 129.73288228846127 42.52221812342094, 129.72550928845436 42.54749112344447, 129.7533092884803 42.71388212359943, 129.8074632885307 42.85360912372957, 129.84704528856759 42.94248212381234, 129.8776722885961 42.99179112385826, 129.90459128862113 43.00457312387016, 129.9292182886441 43.00610012387159, 129.9475542886612 42.99540012386163, 130.0341452887418 42.95804512382685, 130.19316328888993 42.906654123778964, 130.2514182889442 42.88794512376154, 130.2502722889431 42.831664123709146, 130.24329128893658 42.81166412369052, 130.23621828893 42.786245123666845, 130.24678228893987 42.714154123599684, 130.32844528901592 42.641800123532306, 130.3766182890608 42.617491123509666, 130.51416328918884 42.56805412346364, 130.52249128919664 42.53721812343491, 130.56747228923854 42.44304512334722, 130.58649128925623 42.427145123332394, 130.60437228927287 42.42186412332748, 130.63275428929933 42.4113731233177, 130.65900928932376 42.375273123284074, 130.65277228931797 42.339991123251224, 130.65504528932007 42.318118123230846, 130.69741828935952 42.29220912320673, 130.6823452893455 42.27991812319527, 130.59968228926851 42.25458212317167, 130.59626328926532 42.27888212319431, 130.5797002892499 42.3050641232187, 130.50027228917594 42.32388212323622, 130.47288228915045 42.324582123236866, 130.42080928910195 42.31193612322511, 130.20830928890405 42.167773123090825, 130.08773628879175 42.06971812299952, 129.98412728869522 41.97994512291592, 129.9497092886632 41.88387312282643, 129.84724528856776 41.75673612270802, 129.80885428853202 41.760964122711954, 129.78220028850717 41.7559641227073, 129.76052728848697 41.73054512268365, 129.69787228842864 41.6456911226046, 129.6887182884201 41.62569112258598, 129.66415428839724 41.54971812251523, 129.66051828839386 41.52819112249517, 129.66664528839954 41.47957312244989, 129.67663628840887 41.45832712243012, 129.6962272884271 41.435827122409165, 129.721891288451 41.42166412239598, 129.7533272884803 41.40720912238251, 129.80359128852712 41.377418122354754, 129.78803628851261 41.32582712230672, 129.76971828849554 41.3002731222829, 129.71968228844895 41.180545122171424, 129.71551828844508 41.14277312213622, 129.71386328844352 41.11220912210777, 129.7185632884479 41.00388212200687, 129.72301828845207 40.98013612198477, 129.73913628846708 40.95888212196496, 129.75220028847923 40.94186412194912, 129.72732728845608 40.85985412187276, 129.70204528843254 40.830691121845575, 129.66415428839724 40.83360012184829, 129.6015002883389 40.82721812184235, 129.5645632883045 40.821245121836796, 129.21516328797907 40.679300121704586, 129.17053628793752 40.58554512161729, 129.17108228793802 40.5656181215987, 129.17024528793723 40.56012712159361, 129.15594528792394 40.53540912157058, 129.1078822878792 40.477900121517024, 129.07788228785125 40.46221812150242, 129.0555452878304 40.46165412150188, 128.977754287758 40.45040912149142, 128.94192728772458 40.42470912146749, 128.91433628769892 40.39762712144227, 128.8936002876796 40.376518121422606, 128.87329128766066 40.36430012141122, 128.8121912876038 40.34166412139015, 128.7910722875841 40.33470912138367, 128.6366542874403 40.27276412132596, 128.59801828740433 40.174164121234156, 128.33245428715702 40.05360012112186, 128.18414528701885 40.023609121093926, 128.14108228697876 40.02276412109313, 128.11190928695157 40.027209121097286, 128.05523628689883 40.03388212110349, 128.00137228684866 40.037218121106605, 127.93359128678554 39.97165412104553, 127.88574528674098 39.91075412098883, 127.8690452867254 39.885945120965715, 127.7272002865933 39.84610012092861, 127.61233628648631 39.81124512089616, 127.56052728643806 39.78220912086911, 127.51762728639812 39.73957312082939, 127.50311828638462 39.712836120804496, 127.50443628638584 39.64471812074106, 127.5306822864103 39.4566541205659, 127.53580928641509 39.4272181205385, 127.55663628643447 39.327218120445366, 127.56019128643777 39.311136120430376, 127.52831828640808 39.3029821204228, 127.52429128640432 39.34220912045933, 127.53623628641543 39.359018120474985, 127.5316542864112 39.388745120502676, 127.49783628637971 39.427773120539, 127.4574822863421 39.42006412053183, 127.4387542863247 39.404945120517766))) +PLW Palau MULTIPOLYGON (((134.5313722929302 7.354445090668392, 134.52233629292175 7.359164090672792, 134.4852272928872 7.438054090746263, 134.54498229294285 7.596109090893464, 134.55303629295037 7.608609090905105, 134.56219129295891 7.613336090909513, 134.58955429298436 7.616664090912607, 134.60522729299896 7.618054090913901, 134.62160929301422 7.621945090917521, 134.63343629302523 7.627500090922695, 134.64166329303288 7.636391090930985, 134.64303629303419 7.648609090942358, 134.6380272930295 7.670836090963064, 134.6327182930246 7.685827090977028, 134.62301829301555 7.703609090993581, 134.61814529301103 7.715836091004974, 134.62022729301293 7.72597309101441, 134.63066329302268 7.729445091017638, 134.64220929303343 7.723891091012476, 134.65150929304207 7.707918090997595, 134.65469129304506 7.694164090984785, 134.65887229304894 7.657500090950634, 134.65887229304894 7.64389109093797, 134.65469129304506 7.600273090897346, 134.6497182930404 7.578054090876648, 134.62857229302074 7.490273090794901, 134.56137229295814 7.37194509068469, 134.5313722929302 7.354445090668392)), ((134.51329129291332 7.305254090622583, 134.4524822928567 7.327109090642935, 134.46008229286377 7.363209090676563, 134.516145292916 7.343254090657979, 134.51329129291332 7.305254090622583))) +PHL Philippines MULTIPOLYGON (((119.89258227929673 15.801127098534991, 119.85747227926407 15.962918098685662, 119.77290027918531 15.918891098644664, 119.75277227916655 15.960418098683334, 119.82415427923303 16.365000099060126, 119.92928227933095 16.38360909907746, 119.9352542793365 16.2427730989463, 120.15664527954266 16.036109098753826, 120.28110027965857 16.04610909876314, 120.42609127979364 16.169118098877703, 120.31720927969224 16.631109099307963, 120.4538722798195 16.981664099634443, 120.4599912798252 17.411664100034912, 120.33859127971215 17.571664100183924, 120.43997227980657 17.732491100333704, 120.4799822798438 18.078609100656053, 120.60080927995631 18.330827100890957, 120.58527227994188 18.511391101059118, 120.8749722802117 18.610827101151727, 120.93455428026715 18.55944510110386, 121.15359128047118 18.625273101165178, 121.5863822808742 18.38305410093959, 121.94970928121262 18.268891100833272, 122.11998228137116 18.376945100933895, 122.16707228141502 18.51874510106596, 122.23887228148192 18.51500010106247, 122.34248228157838 18.310554100872068, 122.17318228142074 18.075136100652827, 122.17025428141801 17.60721810021704, 122.257209281499 17.36347309999003, 122.42746328165754 17.26860909990168, 122.4195632816502 17.155964099796776, 122.5211632817448 17.134509099776793, 122.51833628174217 17.043891099692402, 122.20720928145244 16.432773099123253, 122.20638228145162 16.23416409893828, 122.00214528126145 16.02889109874711, 122.13984528138968 16.25229109895517, 121.74331828102038 16.068054098783577, 121.5633092808527 15.903054098629909, 121.56137228085095 15.78083609851609, 121.643054280927 15.713054098452957, 121.38025428068227 15.302500098070595, 121.69526328097561 14.696664097506371, 121.60999128089622 14.62027309743523, 121.76138228103719 14.239164097080291, 121.73553628101314 14.168473097014456, 121.91053628117612 14.009164096866087, 122.23331828147673 13.897218096761833, 122.30941828154761 14.01527309687178, 122.16511828141319 14.15131809699848, 122.25679128149858 14.240000097081065, 122.3035912815422 14.101109096951717, 122.47330928170021 14.340554097174717, 122.71331828192376 14.338327097172652, 122.86511828206511 14.265273097104611, 123.03888228222695 14.069445096922223, 123.0949822822792 13.968891096828585, 123.04942728223676 13.77944509665214, 123.11761828230027 13.734300096610099, 123.0999912822839 13.667500096547883, 123.31845428248732 13.789300096661322, 123.22970928240471 14.002218096859622, 123.34304528251022 14.086945096938521, 123.41776328257981 13.982218096840995, 123.97012728309426 13.751809096626403, 123.97164528309565 13.707218096584882, 123.80970928294488 13.687218096566255, 123.57999128273093 13.718327096595232, 123.5331722826873 13.571245096458242, 123.86973628300075 13.232118096142415, 123.77554528291301 13.220554096131636, 123.76179128290022 13.063473095985344, 123.90055428302946 13.140691096057253, 124.08179128319824 13.009100095934713, 124.19094528329992 13.065000095986761, 124.09637228321185 12.553609095510495, 123.97261828309655 12.55582709551257, 123.8501272829825 12.727354095672311, 123.86393628299538 12.869300095804505, 124.01639128313735 12.871664095806707, 124.02636328314662 12.963745095892463, 123.89665428302584 12.972773095900877, 123.72915428286984 12.853609095789892, 123.4213722825832 13.042218095965552, 123.32388228249238 13.008609095934247, 123.20150928237842 13.417982096315512, 122.89262728209076 13.574582096461356, 122.84027228204201 13.733054096608939, 122.5610002817819 13.936564096798477, 122.48539128171149 13.693327096571949, 122.66276328187666 13.424582096321657, 122.70247228191369 13.23194509614224, 122.60748228182518 13.16389109607887, 122.40359128163533 13.519164096409739, 122.20832728145348 13.60194509648683, 122.10860028136057 13.763891096637664, 121.74991828102651 13.964791096824769, 121.47415428076971 13.834718096703625, 121.38777228068926 13.663609096544263, 121.27942728058832 13.59389109647934, 121.05554528037982 13.662218096542972, 121.04694528037186 13.755000096629374, 120.92886328026185 13.775000096648, 120.87943628021583 13.902500096766744, 120.71666328006421 13.925273096787961, 120.6624182800137 13.76889109664232, 120.59220927994835 14.231109097072789, 120.97310028030307 14.477100097301886, 120.99109128031984 14.549164097369001, 120.83728228017657 14.760345097565676, 120.54866327990777 14.823264097624275, 120.61040927996527 14.488054097312087, 120.49331827985623 14.429718097257762, 120.39360027976335 14.458609097284665, 120.25207227963153 14.688745097498995, 120.29547227967197 14.803954097606294, 120.24524527962518 14.847773097647107, 120.18303627956726 14.744582097551003, 120.08734527947814 14.783473097587219, 120.01250027940841 15.263891098034648, 119.8994272793031 15.425554098185202, 119.9555542793554 15.522500098275486, 119.89258227929673 15.801127098534991)), ((122.32916328156597 7.30833609062546, 122.14999128139914 6.905282090250083, 121.94720028121026 6.960000090301037, 121.9013722811676 7.145418090473726, 122.03470928129178 7.326664090642524, 122.12580928137658 7.563336090862947, 122.1111002813629 7.775836091060853, 122.22540028146938 7.964164091236242, 122.44165428167076 8.065554091330668, 122.92302728211905 8.150827091410093, 122.99095428218232 8.201664091457431, 123.02569128221467 8.488745091724795, 123.30470028247453 8.523054091756748, 123.37859128254337 8.725273091945084, 123.54889128270196 8.62038209184739, 123.6930362828362 8.633054091859194, 123.8180452829526 8.476945091713802, 123.86637228299765 8.160418091419018, 123.670254282815 8.0330540913004, 123.66720028281213 7.954445091227186, 123.9619272830866 8.171109091428974, 124.2240092833307 8.212500091467518, 124.28053628338336 8.459445091697503, 124.43220928352463 8.615273091842639, 124.72748228379959 8.486382091722604, 124.80080928386786 8.999582092200555, 124.88011828394173 9.016527092216336, 125.09055428413774 8.825273092038216, 125.27998228431414 8.990273092191885, 125.51470928453278 9.006664092207146, 125.5323452845492 9.191245092379049, 125.39110028441763 9.64971809280604, 125.44026328446341 9.809164092954532, 125.55498228457026 9.762500092911068, 125.63638228464606 9.611945092770853, 125.92215428491221 9.48726409265474, 125.90192728489336 9.407500092580449, 126.05047228503173 9.23194509241695, 126.18610028515803 9.242773092427043, 126.16665428513994 9.101109092295104, 126.33499128529672 8.841800092053603, 126.08443628506336 8.609718091837465, 126.14414528511895 8.527500091760885, 126.39220928535002 8.507500091742259, 126.32610028528842 8.236382091489773, 126.46581828541855 8.225273091479423, 126.36580928532544 7.882500091160182, 126.55193628549875 7.692218090982976, 126.58186328552665 7.284309090603074, 126.4552632854087 7.05166409038641, 126.28068228524614 6.9212450902649465, 126.34830928530914 6.800482090152485, 126.21290028518303 6.947500090289395, 126.16526328513862 6.881664090228085, 126.25860928522559 6.750836090106247, 126.19165428516322 6.272218089660498, 126.08471828506362 6.528891089899545, 126.0766632850561 6.843609090192643, 125.88735428487979 7.1173640904475945, 125.85609128485072 7.345273090659859, 125.65150928466016 7.234582090556771, 125.6581822846664 7.115136090445517, 125.5258182845431 7.030836090367018, 125.37761828440506 6.723609090080885, 125.39138228441789 6.597636089963558, 125.59331828460597 6.4766640898509, 125.71192728471641 6.169445089564775, 125.70276328470788 6.02500008943025, 125.40554528443107 5.563336089000302, 125.28970928432324 5.579591089015437, 125.28553628431933 5.6883270891167115, 125.1916542842319 5.76721808919018, 125.17693628421819 5.835836089254087, 125.28553628431933 5.975554089384204, 125.25942728429499 6.093336089493903, 125.15470928419751 6.101391089501405, 125.08720028413461 5.872773089288486, 124.9569362840133 5.851391089268574, 124.32415428342398 6.114582089513689, 124.06749128318495 6.379164089760096, 123.96831828309257 6.926664090269995, 124.05386328317223 7.1302730904596245, 124.1549822832664 7.171945090498426, 124.26860028337222 7.3744450906870185, 124.16442728327519 7.408054090718323, 124.0119362831332 7.648609090942358, 123.77442728291197 7.699164090989441, 123.56789128271964 7.849027091129017, 123.4588822826181 7.810554091093181, 123.46887228262744 7.64166409093589, 123.33471828250248 7.557773090857765, 123.44846328260843 7.4379180907461375, 123.40305428256613 7.356391090670215, 123.28929128246017 7.460836090767486, 123.29913628246936 7.525691090827877, 123.17318228235206 7.463609090770063, 123.11110028229422 7.5200000908225775, 123.19482728237222 7.585691090883756, 123.11720928229994 7.7288910910171325, 122.992763282184 7.4554820907625015, 122.81276328201636 7.436945090745226, 122.81693628202027 7.732218091020229, 122.65886328187304 7.781109091065758, 122.43359128166327 7.580836090879245, 122.32916328156597 7.30833609062546)), ((123.34684528251375 10.39440009349957, 123.10706328229048 9.627636092785465, 123.31276328248202 9.29639109247698, 123.16165428234132 9.070000092266127, 123.01470928220448 9.033891092232508, 122.93900928213395 9.07416409227001, 122.86637228206632 9.324027092502718, 122.54164528176386 9.48374509265146, 122.41388228164487 9.658336092814068, 122.40664528163813 9.798609092944702, 122.45387228168215 9.974864093108849, 122.66304528187692 9.973054093107166, 122.85693628205752 10.095136093220859, 122.835963282038 10.544027093638931, 122.95220928214627 10.687218093772287, 122.95247228214652 10.894445093965274, 123.1852542823633 10.999445094063063, 123.5047182826608 10.937364094005247, 123.56387228271592 10.794164093871885, 123.46555428262434 10.518054093614737, 123.34684528251375 10.39440009349957)), ((124.4699912835598 12.104164095091917, 124.34340928344193 12.28934509526438, 124.28671828338912 12.573782095529282, 124.65277228373003 12.504164095464446, 125.14831828419153 12.576527095531844, 125.22915428426683 12.525000095483847, 125.31915428435065 12.415000095381401, 125.29654528432957 12.293500095268257, 125.50470928452347 12.205000095185824, 125.44620928446898 12.115100095102108, 125.52138228453896 12.055618095046711, 125.43610028445954 11.953609094951702, 125.45027228447276 11.590273094613323, 125.64060928465 11.351454094390903, 125.54207228455823 11.18950909424008, 125.66456328467234 11.19444509424467, 125.75110028475291 11.00889109407187, 125.66442728467217 11.13430009418866, 125.26943628430433 11.128054094182843, 124.99970928405315 11.352773094392134, 124.97123628402659 11.446245094479181, 124.84908228391282 11.464791094496462, 125.03707228408791 11.752918094764794, 124.86249128392535 11.807500094815623, 124.69386328376828 12.010554095004736, 124.4699912835598 12.104164095091917)), ((123.09526328227946 11.236664094283995, 123.12359128230588 11.165691094217891, 122.73109128194034 10.944645094012031, 122.77640928198252 10.91100909398071, 122.72915428193852 10.800827093878098, 122.62170928183843 10.803745093880806, 122.48610028171214 10.678054093763748, 122.20803628145319 10.634718093723393, 121.96998228123147 10.41319109351707, 121.90983628117544 10.444582093546316, 121.97527228123641 10.646391093734266, 121.93331828119733 10.781664093860243, 122.05068228130665 11.029445094091002, 122.10138228135384 11.6483360946674, 122.0751272813294 11.730691094744088, 121.8494182811192 11.758473094769968, 121.88817228115528 11.89958209490139, 121.97442728123559 11.923336094923513, 122.22942728147308 11.797782094806578, 122.58664528180577 11.521109094548905, 122.8308362820332 11.608609094630395, 122.89220928209039 11.538054094564686, 122.88025428207925 11.430273094464312, 123.14694528232764 11.598609094621082, 123.09526328227946 11.236664094283995)), ((119.6794272790982 10.486109093584986, 119.32860027877149 10.30944509342045, 119.20193627865353 10.048473093177407, 118.75332727823576 9.925000093062408, 118.69302727817956 9.7640270929125, 118.75336327823578 9.6545090928105, 118.34859127785882 9.188609092376595, 118.14249127766686 9.146109092337014, 117.99890927753313 8.877464092086825, 117.17859127676917 8.332982091579737, 117.25916327684416 8.609445091837202, 117.66220027721954 9.076945092272595, 117.9062362774468 9.264164092446961, 118.0272092775595 9.259164092442305, 118.51610027801479 9.76666409291495, 118.75551827823779 10.123854093247616, 118.80109127828024 10.0347180931646, 118.80053627827971 10.190209093309406, 118.92477227839538 10.204027093322281, 119.00651827847156 10.43930009354139, 119.13158227858798 10.383682093489597, 119.3134452787574 10.584164093676307, 119.34119127878324 10.720100093802913, 119.21664527866722 10.95548209402213, 119.4555452788897 10.723954093806498, 119.30274527874741 11.006109094069274, 119.32852727877145 11.099582094156332, 119.42040027885702 11.030836094092308, 119.47192727890496 11.424236094458692, 119.56580927899239 11.288327094332118, 119.48401827891627 10.879300093951173, 119.59685427902133 10.823745093899433, 119.71585427913215 10.510936093608109, 119.6794272790982 10.486109093584986)), ((121.07887228040158 12.332218095304313, 120.93303628026575 12.5011090954616, 120.90833628024274 12.650554095600782, 120.80171828014346 12.724927095670054, 120.68802728003755 13.135827096052736, 120.31191827968729 13.419445096316863, 120.36845427973992 13.512082096403148, 120.74331828008906 13.466945096361101, 120.9903272803191 13.518400096409025, 121.03442728036015 13.422218096319455, 121.21831828053143 13.40750009630574, 121.50220928079585 13.1488910960649, 121.4823362807773 12.761318095703942, 121.55790028084772 12.601454095555056, 121.41206328071189 12.439864095404559, 121.43970028073761 12.35166409532242, 121.22054528053349 12.230554095209627, 121.12317228044282 12.245000095223077, 121.07887228040158 12.332218095304313)), ((124.76666328383607 10.574718093667514, 124.7984452838657 10.726527093808897, 124.67457228375031 10.948191094015328, 124.57443628365706 11.014164094076776, 124.5215182836078 10.87124509394367, 124.42137228351453 10.913327093982872, 124.31638228341671 11.566945094591588, 124.64110928371917 11.293054094336512, 124.85637228391965 11.422500094457064, 124.97276328402802 11.387218094424213, 125.02998228408131 11.19582709424597, 125.01506328406742 10.743400093824604, 125.14417228418768 10.61079109370111, 125.27165428430641 10.297500093409326, 125.12052728416563 10.17694509329705, 124.97831828403321 10.374582093481123, 125.01137228406401 10.02944509315968, 124.76470928383429 10.196391093315171, 124.78790028385589 10.32916409343882, 124.72442728379673 10.407218093511517, 124.76666328383607 10.574718093667514)), ((123.41026328257283 10.050000093178824, 123.66414528280927 10.412773093516691, 123.86387228299532 10.81277309388922, 123.94671828307247 11.17750009422889, 124.05026328316887 11.277500094322022, 124.01999128314071 10.387009093492694, 123.63650928278355 10.069864093197324, 123.47276328263104 9.5719450927336, 123.33360028250144 9.41027309258304, 123.29707228246741 9.487500092654955, 123.41026328257283 10.050000093178824)), ((124.52859128361439 10.055554093184, 124.57887228366121 9.912736093050995, 124.52886328361461 9.848427092991102, 124.59921828368016 9.761736092910368, 124.35720928345478 9.62360909278172, 123.95693628308197 9.598609092758437, 123.79179128292816 9.733327092883911, 123.78692728292361 9.84389109298688, 124.04525428316424 9.998327093130712, 124.15249128326411 10.148054093270147, 124.37635428347261 10.146800093268979, 124.52859128361439 10.055554093184)), ((123.16470028234414 11.904164094905653, 123.3016542824717 12.244718095222822, 123.24574528241965 12.605764095559067, 123.91080928303899 12.18916409517108, 124.04470928316374 11.978882094975248, 124.07909128319574 11.727909094741506, 123.80094528293671 11.919300094919748, 123.53692728269078 12.205418095186218, 123.44074528260126 12.19937309518059, 123.16470028234414 11.904164094905653)), ((124.20803628331583 13.51527309640612, 124.0305452831505 13.663891096544532, 124.13388228324675 13.792218096664044, 124.12997228324315 14.060418096913821, 124.20831828331609 14.098745096949514, 124.41805428351142 13.793191096664941, 124.3305452834299 13.548609096437161, 124.25971828336395 13.59389109647934, 124.20803628331583 13.51527309640612)), ((121.99053628125063 6.408336089787269, 121.79276328106641 6.63055408999422, 122.07568228132993 6.752500090107787, 122.2302722814739 6.660836090022428, 122.23830928148135 6.592218089958521, 122.1633092814115 6.458054089833567, 121.99053628125063 6.408336089787269)), ((125.64665428465565 9.821664092966174, 125.58220928459565 9.823609092967985, 125.61249128462384 9.946945093082846, 125.47527228449604 10.131109093254366, 125.51458228453265 10.318327093428735, 125.63665428464634 10.466664093566877, 125.71165428471619 9.892364093032015, 125.64665428465565 9.821664092966174)), ((120.2006092795836 12.000000094994903, 120.1286452795166 12.021664095015083, 120.0994362794894 11.96319109496062, 119.97301827937167 12.024164095017412, 119.86164527926792 12.244300095222428, 119.8880452792925 12.333609095305604, 120.16704527955238 12.119300095106013, 120.24470927962471 12.179718095162286, 120.33274527970667 12.083609095072774, 120.33998227971341 11.99277309498818, 120.2006092795836 12.000000094994903)), ((122.03090028128821 13.200818096113252, 121.83720028110781 13.334718096237964, 121.814845281087 13.452845096347971, 121.87441828114248 13.541391096430445, 122.01082728126954 13.544718096433542, 122.12663628137739 13.456391096351282, 122.15109128140017 13.371945096272626, 122.03090028128821 13.200818096113252)), ((121.28803628059637 5.854164089271151, 121.23193628054412 5.941945089352899, 120.932209280265 5.887782089302462, 120.86942728020648 5.953891089364035, 121.01554528034256 6.078054089479664, 121.12830928044758 6.086664089487684, 121.42712728072593 5.977636089386138, 121.28803628059637 5.854164089271151)), ((122.01805428127625 12.094164095082604, 121.91776328118283 12.302918095277022, 122.00305428126228 12.445136095409467, 121.99970928125919 12.602354095555896, 122.12275428137377 12.676945095625356, 122.01805428127625 12.094164095082604)), ((121.93970028120327 14.626945097441435, 121.91373628117907 14.790827097594075, 121.8076822810803 14.923473097717604, 121.8374912811081 15.027218097814227, 121.93580928119962 15.056945097841904, 122.01443628127288 15.03736409782367, 122.05831828131375 14.962218097753691, 122.01123628126987 14.985409097775289, 121.96831828122993 14.901109097696775, 122.03158228128882 14.712082097520735, 121.93970028120327 14.626945097441435)), ((119.85831827926484 5.049164088521437, 119.82498227923378 5.14721808861276, 120.2114452795937 5.3466000887984535, 120.22560027960691 5.126736088593688, 120.05094527944425 5.183473088646522, 119.85831827926484 5.049164088521437)), ((122.54387228176597 10.403054093507635, 122.47970928170622 10.48777309358654, 122.67220028188547 10.744854093825964, 122.73109128194034 10.617773093707612, 122.66845428188196 10.47332709357309, 122.54387228176597 10.403054093507635)), ((124.4880362835766 11.461664094493543, 124.44470028353624 11.485827094516054, 124.33776328343663 11.677564094694617, 124.53137228361697 11.679718094696625, 124.61913628369871 11.522082094549816, 124.4880362835766 11.461664094493543)), ((123.36913628253455 12.69139109563882, 122.95026328214442 13.031109095955202, 122.93123628212669 13.109164096027897, 123.0452632822329 13.136664096053508, 123.36913628253455 12.69139109563882)), ((122.64026328185571 12.264445095241186, 122.43359128166327 12.413327095379856, 122.45901828168695 12.484791095446411, 122.6694362818829 12.483609095445303, 122.70901828191978 12.403191095370403, 122.64026328185571 12.264445095241186)), ((119.95276327935278 11.65666409467515, 119.87248227927802 11.892773094895048, 119.88372727928851 11.975136094971745, 120.07054527946246 11.865000094869174, 120.04331827943713 11.720827094734915, 119.95276327935278 11.65666409467515)), ((126.03193628501447 9.742500092892442, 125.94553628493401 9.830827092974715, 126.07304528505273 10.0520090931807, 126.17470928514746 9.805136092950775, 126.03193628501447 9.742500092892442)), ((119.8169362792263 10.439164093541265, 119.76082727917407 10.558745093652632, 119.99706327939407 10.595345093686717, 119.99331827939056 10.52750009362353, 119.8169362792263 10.439164093541265)), ((123.58638228273685 9.088891092283731, 123.45720928261659 9.190554092378406, 123.62858228277616 9.29680909247736, 123.70763628284982 9.138054092329511, 123.58638228273685 9.088891092283731)), ((117.01526327661702 7.805273091088267, 116.95000027655624 8.032218091299626, 117.06679127666501 8.077918091342184, 117.09331827668973 7.907082091183085, 117.01526327661702 7.805273091088267)), ((123.78720028292389 12.342218095313626, 123.6902632828336 12.455000095418654, 123.58430028273494 12.658609095608284, 123.72776328286852 12.60166409555525, 123.78720028292389 12.342218095313626)), ((125.7674912847682 6.887500090233516, 125.66345428467127 7.098609090430131, 125.6984452847039 7.190273090515504, 125.79679128479546 7.119445090449531, 125.7674912847682 6.887500090233516)), ((124.77165428384075 9.07471809227053, 124.63527228371373 9.17000009235926, 124.67276328374862 9.253054092436614, 124.77692728384562 9.209445092395995, 124.77165428384075 9.07471809227053)), ((125.27970928431392 9.907773093046373, 125.12441828416928 10.082773093209354, 125.12851828417308 10.155554093277132, 125.21595428425451 10.124027093247776, 125.27970928431392 9.907773093046373)), ((122.83276328203499 7.275282090594672, 122.8061542820102 7.422364090731648, 122.92998228212554 7.422773090732036, 122.97560928216802 7.365136090678348, 122.83276328203499 7.275282090594672)), ((120.27470027965262 13.668327096548666, 120.1088722794982 13.779164096651883, 120.08192727947306 13.852354096720049, 120.23887227961927 13.808054096678788, 120.27470027965262 13.668327096548666)), ((121.51331828080617 19.249164101746217, 121.39388228069492 19.315554101808047, 121.39569128069661 19.391109101878413, 121.52888228082065 19.39027310187764, 121.51331828080617 19.249164101746217)), ((122.17110028141877 13.998609096856256, 121.99552728125525 14.104718096955082, 121.91748228118257 14.185273097030105, 121.94720028121026 14.21750009706011, 122.12580928137658 14.087636096939178, 122.17110028141877 13.998609096856256)), ((121.85442728112383 18.818882101345494, 121.87275428114094 18.978882101494506, 121.94880028121173 19.00305410151701, 121.9880362812483 18.944718101462684, 121.85442728112383 18.818882101345494)), ((119.82916327923766 11.37666409441438, 119.76526327917816 11.401109094437146, 119.7144272791308 11.472145094503304, 119.87317227927866 11.504864094533772, 119.82916327923766 11.37666409441438)), ((125.94386328493243 9.555827092718602, 125.90179128489325 9.612354092771241, 125.94080928492963 9.755691092904726, 125.99109128497645 9.661945092817419, 125.94386328493243 9.555827092718602)), ((125.76639128476717 10.685554093770733, 125.6612362846692 10.75410009383458, 125.69531828470099 10.823191093898913, 125.82229128481924 10.717982093800941, 125.76639128476717 10.685554093770733)), ((117.29498227687753 8.181664091438805, 117.26805427685247 8.306109091554703, 117.31853627689947 8.33062709157754, 117.34414527692331 8.206736091462162, 117.29498227687753 8.181664091438805)), ((122.24802728149041 14.718054097526291, 122.11720028136858 14.796664097599503, 122.09818228135089 14.836664097636756, 122.21151828145645 14.839718097639604, 122.24802728149041 14.718054097526291)), ((124.8272092838925 11.528054094555372, 124.7699912838392 11.565554094590297, 124.7255362837978 11.727982094741577, 124.84275428390697 11.591664094614615, 124.8272092838925 11.528054094555372)), ((120.54720927990644 6.2402730896307474, 120.47991827984373 6.2572910896466, 120.60040027995598 6.394654089774519, 120.57860027993564 6.252218089641872, 120.54720927990644 6.2402730896307474))) +KOR South Korea MULTIPOLYGON (((126.86921828579426 36.060600117403084, 126.85910028578485 36.05554511739838, 126.7394722856734 36.00580911735206, 126.68877228562621 36.00136411734792, 126.54441828549176 36.13640911747369, 126.53663628548452 36.21916411755076, 126.49581828544649 36.39415411771374, 126.48055428543228 36.48110011779471, 126.46720928541987 36.57936411788623, 126.51470928546411 36.59068211789676, 126.51610028546537 36.65970911796106, 126.49720928544781 36.723873118020805, 126.47235428542461 36.742773118038414, 126.3499912853107 36.739300118035175, 126.30630028526997 36.68894511798828, 126.32929128529139 36.65478211795647, 126.3155362852786 36.599436117904915, 126.29305428525765 36.58193611788862, 126.29900028526322 36.63360011793674, 126.26606328523252 36.71120911800902, 126.23699128520542 36.684573117984215, 126.18941828516114 36.67082711797141, 126.16942728514249 36.674018117974384, 126.1258182851019 36.7072181180053, 126.12886328510473 36.75166411804669, 126.16426328513774 36.809654118100696, 126.1916632851632 36.81988211811023, 126.18636328515828 36.8804091181666, 126.29484528525933 36.96207311824266, 126.3088722852724 36.94221811822416, 126.3196362852824 36.87867311816498, 126.29720928526154 36.84360911813232, 126.27985428524534 36.81249111810334, 126.28699128525199 36.79304511808523, 126.32470928528716 36.80388211809533, 126.40109128535829 36.851936118140074, 126.41475428537098 36.90509111818959, 126.41040028536696 36.934573118217045, 126.38637228534458 36.92999111821277, 126.34970928531044 36.95172711823302, 126.34512728530615 36.991382118269954, 126.3927632853505 37.00471811828237, 126.43101828538613 37.002182118280004, 126.47558228542766 36.92262711820591, 126.46206328541507 36.896464118181555, 126.46331828541622 36.86388211815121, 126.47480928542694 36.84318211813192, 126.49650928544713 36.86749111815456, 126.51416328546355 36.94137311822337, 126.49053628544158 36.995545118273824, 126.50081828545115 37.051245118325696, 126.52151828547045 37.051245118325696, 126.56957228551516 37.02318211829956, 126.61998228556212 36.97276411825261, 126.6822092856201 36.97165411825158, 126.77207228570376 36.96749111824769, 126.82443628575254 36.91151811819557, 126.83235428575989 36.88624511817203, 126.83047228575816 36.856800118144605, 126.83303628576056 36.76090011805529, 126.90610028582859 36.81693611810748, 126.99220028590878 36.91081811819491, 127.00022728591625 36.92971811821252, 126.91644528583822 36.9175641182012, 126.86802728579312 36.948745118230235, 126.75478228568767 37.04790911832259, 126.77617228570762 37.1215821183912, 126.81944528574792 37.13388211840267, 126.86157228578713 37.14090011840919, 126.86941828579444 37.1743001184403, 126.76582728569798 37.17235411843849, 126.73859128567261 37.14888211841664, 126.71803628565345 37.12874511839787, 126.69109128562837 37.12304511839257, 126.66095428560027 37.159018118426076, 126.66192728560117 37.25166411851235, 126.69941828563611 37.262218118522185, 126.759436285692 37.23846411850006, 126.86184528578735 37.26554511852528, 126.84360028577038 37.30630911856325, 126.81025428573935 37.29651811855413, 126.77053628570235 37.30470911856176, 126.72220928565736 37.32804511858349, 126.74192728567567 37.3867911186382, 126.72699128566177 37.38520911863672, 126.66400928560313 37.40623611865631, 126.62629128556802 37.48151811872643, 126.6319632855733 37.487436118731935, 126.66838228560721 37.48520011872985, 126.66081828560016 37.54777311878813, 126.65212728559209 37.5667451188058, 126.62915428557068 37.59138211882875, 126.57249128551791 37.61999111885538, 126.5492822854963 37.645064118878736, 126.53207228548024 37.718318118946954, 126.53970028548736 37.76305411898862, 126.64137228558207 37.76055411898629, 126.6805452856185 37.6844361189154, 126.68849128562596 37.83390911905461, 126.73664528567076 37.9551271191675, 126.77346328570508 37.97360011918471, 126.80720928573652 38.00054511920982, 126.82443628575254 38.016109119224296, 126.93525428585576 38.128600119329064, 126.95510928587424 38.15444511935314, 126.96983628588794 38.188600119384944, 126.98664528590359 38.21374511940837, 127.00580028592145 38.22923611942278, 127.0501182859627 38.249991119442114, 127.0680452859794 38.25999111945143, 127.10096328601009 38.28416411947396, 127.13081828603788 38.298191119487, 127.19748228609996 38.31193611949982, 127.25139128615018 38.31888211950627, 127.36638228625725 38.323327119510424, 127.4508182863359 38.31249111950032, 127.53749128641664 38.307491119495666, 127.66900928653911 38.31971811950706, 127.88527228674053 38.313609119501365, 127.97970028682846 38.30720911949541, 128.01052728685715 38.30554511949387, 128.05469128689833 38.30665411949488, 128.07995428692186 38.31193611949982, 128.137072286975 38.32930011951598, 128.15844528699495 38.33957311952554, 128.1760912870114 38.35000011953525, 128.20080928703442 38.36554511954975, 128.22497228705691 38.38166411956476, 128.2435632870742 38.39527311957741, 128.26052728708999 38.4116641195927, 128.27969128710788 38.43027311961001, 128.29733628712427 38.45943611963719, 128.307736287134 38.48860011966434, 128.31338228713923 38.52464511969791, 128.30663628713296 38.56040911973122, 128.30850028713468 38.58756411975651, 128.36355428718593 38.6252451197916, 128.38916328720978 38.57943611974895, 128.5324722873433 38.33055411951716, 128.62579128743016 38.14443611934382, 128.63691828744055 38.1224181193233, 128.86064528764894 37.85777311907684, 128.8805092876674 37.849991119069585, 129.00454528778295 37.730273118958095, 129.04999128782526 37.685818118916686, 129.0630182878374 37.663191118895625, 129.06317228783752 37.631518118866126, 129.13610928790547 37.52555411876743, 129.18970028795536 37.46470911871077, 129.25888228801978 37.371373118623836, 129.34247228809767 37.25721811851753, 129.35357228810796 37.23096411849308, 129.3624912881163 37.1500271184177, 129.37106328812428 37.14097311840926, 129.42944528817867 37.05985411833372, 129.41498228816516 37.02512711830137, 129.41607228816616 36.94221811822416, 129.42358228817318 36.89999111818483, 129.4292912881785 36.87388211816052, 129.45650028820387 36.81165411810257, 129.47177228821806 36.78027311807334, 129.47231828821856 36.70138211799987, 129.4626722882096 36.6783271179784, 129.44051828818897 36.66249111796364, 129.4197722881696 36.626936117930526, 129.42225428817193 36.57172711787912, 129.43900028818757 36.54097311785047, 129.45052728819826 36.50346411781554, 129.43788228818653 36.40179111772085, 129.4119272881623 36.363464117685155, 129.38789128813994 36.33342711765718, 129.38192728813436 36.31148211763674, 129.39202728814382 36.02282711736791, 129.422291288172 35.99884511734558, 129.46049128820755 35.99520011734218, 129.48594528823128 36.01187311735771, 129.52813628827056 36.051036117394176, 129.5616912883018 36.07411811741568, 129.58530028832382 36.034864117379115, 129.58687228832525 36.003854117350244, 129.48663628823192 35.68332711705173, 129.4647542882115 35.64460911701566, 129.47406328822018 35.59450911696901, 129.46790028821448 35.54374511692173, 129.43941828818794 35.47581811685846, 129.34483628809983 35.34374511673546, 129.27943628803894 35.29832711669317, 129.24163628800375 35.20888211660987, 129.2374912879999 35.189900116592185, 129.17468228794138 35.14694511655219, 129.13693628790622 35.112209116519836, 128.9785722877587 35.08499111649448, 128.9739092877544 35.13482711654089, 128.92573628770953 35.09207311650108, 128.81051828760224 35.08416411649371, 128.73495428753188 35.092764116501726, 128.71050928750907 35.10110911650949, 128.61996328742475 35.14860911655373, 128.61135428741676 35.17332711657676, 128.5727542873808 35.16999111657364, 128.3820632872032 35.0391641164518, 128.37790028719934 35.00829111642305, 128.40961828722885 35.026027116439565, 128.4783632872929 35.050682116462525, 128.50137228731433 35.00832711642309, 128.46649128728183 34.877209116300975, 128.44613628726285 34.84117311626741, 128.40596328722546 34.83277311625959, 128.33550928715982 34.87137311629553, 128.35134528717458 34.903736116325675, 128.3510722871743 34.93138211635143, 128.33496328715933 34.946518116365525, 128.2156542870482 34.9288821163491, 128.20683628704 34.8986091163209, 128.1763632870116 34.88943611631235, 128.1541452869909 34.89443611631701, 128.06970028691228 34.92304511634366, 128.05032728689423 34.939500116358985, 128.0205362868665 34.98638211640265, 127.90164528675575 34.951382116370056, 127.8734542867295 34.94165411636099, 127.83083628668982 34.94665411636565, 127.76740028663073 34.96028211637834, 127.65192728652318 34.90304511632503, 127.63165428650433 34.90262711632464, 127.61387228648778 34.91680011633784, 127.5970722864721 34.94012711635956, 127.56888228644584 34.91485411633603, 127.57639128645286 34.886936116310025, 127.60817228648244 34.84499111627096, 127.63860028651078 34.81415411624225, 127.66109128653176 34.81290911624109, 127.67970028654906 34.82069111624834, 127.70581828657339 34.8378361162643, 127.77374528663665 34.83513611626179, 127.76943628663264 34.795000116224415, 127.74580928661067 34.72540011615959, 127.63790028651016 34.61596411605767, 127.57639128645286 34.6383271160785, 127.55526328643316 34.653736116092844, 127.55845428643613 34.701654116137476, 127.56775428644482 34.766664116198015, 127.52249128640267 34.856945116282105, 127.49387228637602 34.85166411627718, 127.41831828630563 34.81860011624639, 127.39888228628752 34.80221811623113, 127.36387228625495 34.7513911161838, 127.39388228628286 34.697909116133985, 127.42942728631596 34.67693611611445, 127.48734528636993 34.63985411607992, 127.51276328639358 34.59082711603426, 127.3894272862787 34.47110011592275, 127.31526328620964 34.44360011589714, 127.24359128614293 34.511382115960274, 127.1683182860728 34.51193611596078, 127.13602728604275 34.51971811596803, 127.12621828603358 34.55138211599753, 127.20769128610948 34.6241541160653, 127.19580928609844 34.57193611601666, 127.24220028614161 34.56944511601435, 127.33054528622387 34.65430011609337, 127.35220028624406 34.69540011613165, 127.33511828622812 34.7401271161733, 127.2738822861711 34.727482116161525, 127.21666328611781 34.707500116142924, 127.11249128602083 34.660273116098935, 127.09166328600139 34.65054511608987, 127.03692728595041 34.61999111606141, 127.00971828592509 34.60221811604487, 126.98824528590512 34.53340011598077, 126.96638228588472 34.50416411595354, 126.93830928585862 34.48720911593776, 126.89235428581577 34.442073115895724, 126.88942728581304 34.412491115868164, 126.81429128574308 34.444018115897535, 126.80080928573057 34.463054115915256, 126.79999128572979 34.49193611594215, 126.80498228573441 34.529718115977346, 126.80025428573003 34.57256411601725, 126.78074528571187 34.58540911602921, 126.76082728569332 34.56554511601071, 126.68387228562165 34.4344361158886, 126.59720928554094 34.29985411576327, 126.5563722855029 34.30054511576391, 126.52499128547367 34.3161001157784, 126.47831828543019 34.34527311580557, 126.46227228541522 34.477627115928826, 126.39137228534923 34.54388211599054, 126.31554528527857 34.56652711601163, 126.28830928525326 34.59027311603374, 126.27303628523902 34.63388211607436, 126.26610028523254 34.67708211611459, 126.29213628525679 34.745754116178546, 126.31505428527817 34.7452731161781, 126.34720928530811 34.70596411614149, 126.41748228537352 34.59582711603892, 126.45166328540535 34.57804511602235, 126.4324822853875 34.619436116060896, 126.45936328541256 34.644027116083805, 126.52720928547575 34.6151361160569, 126.61428228555684 34.61950911606097, 126.50305428545323 34.71527311615016, 126.48470028543613 34.72332711615766, 126.49413628544494 34.750545116183005, 126.60803628555101 34.77943611620991, 126.6320632855734 34.78138211621173, 126.66026328559963 34.81012711623849, 126.59081828553497 34.87749111630123, 126.53998228548761 34.87304511629709, 126.53234528548052 34.81040911623876, 126.51081828546046 34.77846411620901, 126.37556328533452 34.791382116221044, 126.41330928536968 34.89443611631701, 126.43359128538856 34.963609116381434, 126.3748362853338 34.941173116360545, 126.3358542852975 34.9215911163423, 126.304154285268 34.961936116379874, 126.24873628521635 35.11347311652101, 126.25957228522645 35.130827116537176, 126.34499128530604 35.15165411655657, 126.35248228531299 35.132145116538396, 126.34421828530532 35.10470911651285, 126.35970928531975 35.06916411647974, 126.42130028537707 35.02048211643441, 126.45720928541056 35.068882116479486, 126.45721828541053 35.09262711650159, 126.43761828539226 35.1030541165113, 126.41610028537224 35.11540911652281, 126.3875002853456 35.147773116552955, 126.36052728532047 35.18027311658322, 126.36360028532334 35.227764116627455, 126.37830928533708 35.3122091167061, 126.3875002853456 35.33693611672912, 126.42442728537998 35.41026411679742, 126.44135428539579 35.430191116815976, 126.45193628540562 35.45512711683919, 126.48921828544036 35.50610911688668, 126.52595428547454 35.52596411690517, 126.61942728556158 35.54694511692472, 126.68441828562214 35.533391116912085, 126.67206328561065 35.58082711695627, 126.65463628559439 35.59388211696843, 126.54137228548893 35.58777311696274, 126.51054528546018 35.576727116952455, 126.48261828543417 35.59012711696492, 126.4697092854222 35.60680011698045, 126.47706328542904 35.63790911700943, 126.6373452855783 35.73958211710412, 126.70123628563778 35.76860911713115, 126.74512728567868 35.777354117139296, 126.80109128573082 35.86166411721781, 126.78540028571621 35.89388211724783, 126.72942728566403 35.88249111723721, 126.61733628555965 35.891036117245164, 126.6147002855572 35.92263611727461, 126.63269128557397 35.965682117314685, 126.70526328564154 35.98471811733242, 126.76193628569433 35.99527311734225, 126.86118228578675 36.03916411738312, 126.87201828579686 36.05624511739903, 126.86921828579426 36.060600117403084)), ((126.83966328576673 33.536373115052214, 126.8944272858177 33.52430011504097, 126.9410912858612 33.4538821149754, 126.93665428585706 33.424436114947966, 126.91734528583908 33.390273114916155, 126.90833628583067 33.3791541149058, 126.84527228577196 33.30999111484138, 126.76470928569694 33.28277311481604, 126.7252722856602 33.2702731148044, 126.62220928556422 33.23999111477619, 126.59942728554296 33.23332711476999, 126.58692728553132 33.23137311476816, 126.50860928545842 33.22360011476093, 126.47929128543109 33.22192711475937, 126.44553628539967 33.22942711476635, 126.42081828537664 33.23513611477168, 126.33569128529734 33.226382114763524, 126.31220028527548 33.2177731147555, 126.29914528526331 33.2073541147458, 126.28818228525313 33.19429111473363, 126.26561828523211 33.192209114731696, 126.22692728519604 33.21638211475421, 126.20720928517773 33.22942711476635, 126.18610028515803 33.24749111478317, 126.17053628514356 33.26250011479716, 126.15776328513164 33.27888211481242, 126.15525428512933 33.28943611482224, 126.15833628513218 33.31470911484578, 126.176372285149 33.344154114873206, 126.18359128515573 33.35277311488123, 126.27026328523641 33.42276411494642, 126.31498228527806 33.4515181149732, 126.37511828533405 33.47387311499401, 126.63360928557483 33.53166411504783, 126.69582728563279 33.539991115055585, 126.79305428572331 33.55082711506569, 126.8172002857458 33.55123611506606, 126.82747228575539 33.54777311506284, 126.83581828576314 33.54055411505611, 126.83966328576673 33.536373115052214)), ((128.72820928752554 34.943045116362285, 128.7299452875272 34.942218116361516, 128.7352272875321 34.93332711635324, 128.75442728754996 34.879854116303434, 128.74246328753884 34.78485411621496, 128.68273628748324 34.72319111615754, 128.63901828744252 34.70819111614357, 128.6124542874178 34.701100116136956, 128.58820928739516 34.70123611613708, 128.60107228740713 34.76027311619207, 128.60412728741 34.80915411623759, 128.59560028740208 34.83470911626139, 128.55218228736163 34.82360911625105, 128.5377542873482 34.814018116242124, 128.52359128733502 34.80749111623604, 128.49649128730977 34.834300116261005, 128.49050928730418 34.84582711627175, 128.48855428730235 34.85638211628158, 128.49050928730418 34.86888211629322, 128.49441828730784 34.880273116303826, 128.5045632873173 34.88874511631171, 128.64108228744442 34.95249111637108, 128.66360928746542 34.96027311637833, 128.71109128750965 34.97665411639359, 128.72820928752554 34.943045116362285)), ((126.38111828533965 34.4916541159419, 126.3831092853415 34.4765181159278, 126.36775428532724 34.44165411589533, 126.34470928530578 34.40304511585937, 126.25915428522609 34.3705451158291, 126.19914528517018 34.35332711581307, 126.18317228515531 34.351245115811125, 126.17191828514484 34.35193611581177, 126.14693628512157 34.35500011581463, 126.1124912850895 34.37887311583685, 126.10609128508355 34.38721811584463, 126.10164528507937 34.396664115853426, 126.09901828507697 34.40985411586571, 126.10081828507862 34.4220821158771, 126.24110028520926 34.571654116016404, 126.25332728522068 34.5730541160177, 126.27331828523927 34.56582711601098, 126.29831828526255 34.555827116001666, 126.33499128529672 34.53999111598691, 126.3785822853373 34.496800115946684, 126.38111828533965 34.4916541159419)), ((127.93770928678936 34.90192711632399, 127.90818228676187 34.8716541162958, 127.9097092867633 34.84457311627058, 127.91638228676948 34.83277311625959, 127.96359128681348 34.799782116228855, 127.99025428683831 34.8172181162451, 128.00191828684916 34.820827116248466, 128.03247228687763 34.81777311624562, 128.05554528689908 34.81332711624148, 128.0733632869157 34.8032541162321, 128.05912728690242 34.70061811613651, 128.04443628688875 34.69499111613126, 127.98109128682978 34.69735411613347, 127.88442728673971 34.71138211614654, 127.85886328671592 34.721791116156226, 127.85276328671023 34.73888211617215, 127.82221828668179 34.84304511626915, 127.82692728668616 34.85582711628106, 127.83692728669547 34.87971811630331, 127.86775428672422 34.9175001163385, 127.88178228673729 34.929436116349606, 127.89860928675296 34.93305411635298, 127.9183182867713 34.92860011634883, 127.92873628678097 34.922354116343016, 127.9349822867868 34.91373611633499, 127.93770928678936 34.90192711632399)), ((126.44360028539785 37.80634511902895, 126.49789128544842 37.77819111900273, 126.51221828546176 37.767909118993146, 126.5166542854659 37.758473118984355, 126.53942728548708 37.627773118862635, 126.51389128546333 37.59720911883417, 126.50139128545169 37.59443611883158, 126.44859128540253 37.59221811882952, 126.41456328537083 37.59318211883041, 126.39749128535493 37.59887311883571, 126.3841542853425 37.607082118843365, 126.37302728533211 37.62318211885835, 126.36415428532388 37.72027311894878, 126.36734528532685 37.7875001190114, 126.39874528535609 37.817773119039586, 126.42414528537972 37.82151811904308, 126.43580928539063 37.81624511903816, 126.44360028539785 37.80634511902895)), ((126.4211002853769 36.39943611771865, 126.37872728533745 36.403327117722284, 126.36553628532516 36.410545117729, 126.33706328529865 36.43638211775307, 126.3263002852886 36.567145117874844, 126.33442728529616 36.58110911788785, 126.34442728530547 36.589709117895865, 126.35637228531664 36.59290911789884, 126.37748228533627 36.5884641178947, 126.43060028538576 36.40353611772247, 126.4211002853769 36.39943611771865))) +KHM Cambodia MULTIPOLYGON (((105.1917452656055 10.906118093976147, 105.10080026552083 10.954300094021022, 105.06108226548383 10.920273093989337, 105.04995426547345 10.90693609397691, 105.03891826546322 10.881700093953413, 105.04913626547273 10.843891093918202, 105.06108226548383 10.823609093899307, 105.09371826551421 10.746527093827524, 105.09414526551461 10.713191093796468, 105.05997226548283 10.69347309377811, 104.98260926541076 10.653473093740857, 104.95440926538447 10.631245093720153, 104.93913626537028 10.611945093702175, 104.9296912653615 10.593609093685103, 104.91830026535087 10.576945093669579, 104.8944272653286 10.544164093639054, 104.87788226531325 10.530418093626253, 104.85052726528772 10.52139109361785, 104.80107226524166 10.520000093616545, 104.77051826521324 10.521945093618356, 104.73303626517833 10.525000093621202, 104.71547226516196 10.528482093624447, 104.70168226514915 10.531182093626967, 104.66982726511947 10.536945093632326, 104.59482726504962 10.532709093628384, 104.56622726502297 10.501809093599604, 104.5485722650065 10.46520909356552, 104.48774526494987 10.422773093526004, 104.44532726491036 10.42273609352597, 104.3460722648179 10.492773093591197, 104.276363264753 10.543327093638283, 104.25129126472967 10.566182093659563, 104.16385426464825 10.561664093655352, 104.12774526461459 10.557773093651733, 104.09371826458289 10.54777309364242, 104.0324722645259 10.55944509365328, 104.00496326450025 10.566945093660266, 103.9310722644314 10.588191093680052, 103.82706326433458 10.545418093640222, 103.80470026431374 10.531327093627098, 103.75855426427074 10.53195409362769, 103.73635426425011 10.495973093594174, 103.6349912641557 10.490209093588803, 103.52165426405014 10.60444509369519, 103.51608226404494 10.638054093726495, 103.55857226408449 10.713327093796607, 103.5883002641122 10.73110909381316, 103.68439126420168 10.740564093821973, 103.6661452641847 10.756109093836443, 103.67635426419423 10.800554093877835, 103.69315426420985 10.812354093888828, 103.71733626423236 10.836664093911466, 103.72190926423661 10.866109093938888, 103.71941826423432 10.887500093958806, 103.7119092642273 10.91250009398209, 103.66664526418515 11.027773094089454, 103.5556542640818 11.155345094208258, 103.51010926403939 11.159027094211694, 103.47580026400743 11.131936094186457, 103.45163626398494 11.095827094152838, 103.4341272639686 11.019164094081432, 103.41163626394768 10.943891094011335, 103.3488632638892 10.884718093956224, 103.17345426372583 10.865554093938371, 103.14971826370373 10.87416409394639, 103.1297002636851 10.88305409395467, 103.09601826365372 10.934445094002527, 103.10440926366152 10.960000094026327, 103.11690926367316 11.111945094167837, 103.11343626366994 11.152636094205732, 103.09260926365056 11.204582094254121, 103.10135426365872 11.348609094388252, 103.07637226363545 11.44250009447569, 103.02884526359117 11.541945094568305, 102.97566326354166 11.529236094556481, 102.9602542635273 11.544164094570377, 102.97182726353805 11.564582094589397, 102.98300026354849 11.582100094605707, 102.98386326354927 11.617454094638632, 102.96968226353607 11.636582094656447, 102.96538226353209 11.672364094689769, 102.98926326355428 11.703054094718354, 103.02097226358381 11.719982094734121, 103.06400026362388 11.702182094717543, 103.07639126363546 11.712736094727376, 103.02330026358601 11.728882094742417, 103.00247226356663 11.725136094738914, 102.99584526356045 11.722391094736366, 102.97844526354424 11.710409094725208, 102.96965426353603 11.732909094746162, 102.95740926352465 11.75652709476816, 102.91580026348589 11.796000094804924, 102.91440926348457 11.803327094811749, 102.89588226346734 11.826773094833584, 102.90693626347763 11.787409094796914, 102.92996326349908 11.770000094780698, 102.95246326352003 11.747918094760138, 102.96650026353308 11.719582094733752, 102.95914526352624 11.682154094698888, 102.95850026352565 11.650982094669857, 102.96774526353425 11.5991640946216, 102.95892726352605 11.575418094599485, 102.93565426350438 11.591391094614366, 102.91609126348618 11.63585409465577, 102.92405426349359 11.652154094670948, 102.9153912634855 11.745691094758058, 102.90690926347759 11.767782094778639, 102.8984182634697 11.778882094788983, 102.886918263459 11.78694509479648, 102.84642726342128 11.839791094845708, 102.71727226330097 12.166318095149805, 102.71720926330096 12.19555409517703, 102.7477542633294 12.373682095342929, 102.78778226336664 12.415854095382201, 102.77942726335885 12.451945095415809, 102.63373626322317 12.602909095556413, 102.57011826316392 12.644791095595423, 102.52290026312 12.65777309560751, 102.50360026310199 12.685482095633319, 102.50680026310499 12.736945095681236, 102.52165426311882 12.750800095694146, 102.52360926312065 12.756664095699605, 102.53380926313014 12.798400095738472, 102.49248226309163 12.976664095904496, 102.41720926302156 13.116945096035138, 102.395136263001 13.161664096076791, 102.34650926295569 13.281736096188624, 102.35010026295902 13.298973096204676, 102.35304526296176 13.310273096215198, 102.35609126296464 13.379164096279354, 102.35984526296812 13.496945096389041, 102.37720026298427 13.573891096460713, 102.3966542630024 13.568609096455788, 102.43941826304223 13.56221809644984, 102.46581826306681 13.561945096449577, 102.54101826313683 13.570554096457599, 102.56387226315815 13.580554096466912, 102.59901826319089 13.615136096499128, 102.56692726316095 13.646664096528482, 102.56553626315969 13.681182096560633, 102.62943626321919 13.716945096593932, 102.72207226330545 13.765000096638687, 102.76276326334334 13.850827096718632, 102.77554526335524 13.888609096753811, 102.78470926336382 13.923473096786282, 102.79525426337364 13.941391096802974, 102.80941826338682 13.955554096816158, 102.8580362634321 13.993054096851083, 102.90248226347347 14.036664096891698, 102.93970026350814 14.145691096993232, 102.93539126350413 14.168609097014581, 102.94087226350922 14.18353609702848, 102.96277226352964 14.206391097049774, 102.98483626355016 14.211245097054288, 103.02380026358645 14.227982097069884, 103.03632726359814 14.238154097079345, 103.06373626362364 14.272427097111276, 103.09464526365247 14.291127097128694, 103.14388226369829 14.317218097152988, 103.18386326373553 14.330554097165404, 103.24426326379177 14.335291097169815, 103.27388226381936 14.35347309718675, 103.32832726387011 14.358400097191335, 103.37900926391728 14.357427097190438, 103.47122726400318 14.373609097205502, 103.51318226404226 14.39944509722956, 103.56456326409011 14.423054097251551, 103.65914526417816 14.447773097274577, 103.6937272642104 14.438536097265967, 103.72276326423741 14.390273097221026, 103.9222092644232 14.339164097173423, 104.0360272645292 14.347845097181505, 104.04500026453752 14.354473097187679, 104.05609126454789 14.359445097192307, 104.12372726461086 14.384582097215727, 104.28358226475973 14.407773097237325, 104.42302726488958 14.376664097208348, 104.45855426492267 14.366164097198578, 104.47533626493833 14.35714509719017, 104.55303626501069 14.362773097195415, 104.58373626503925 14.36937309720156, 104.60540026505947 14.398891097229054, 104.64414526509552 14.429582097257637, 104.80900926524907 14.447636097274454, 104.88970926532426 14.419445097248186, 104.91829126535083 14.40124509723124, 104.97083626539978 14.393327097223874, 105.00335426543006 14.377327097208962, 105.00139126542825 14.346382097180154, 104.9984542654255 14.317354097153114, 105.0094272654357 14.288891097126609, 105.04117226546532 14.238473097079648, 105.08213626550344 14.21895409706147, 105.12137226554 14.230827097072535, 105.14824526556504 14.249927097090321, 105.16470026558034 14.302500097139273, 105.19314526560686 14.34965409718319, 105.2106002656231 14.349645097183185, 105.20916326562173 14.288682097126411, 105.28297226569049 14.178264097023572, 105.37477226577596 14.106527096956768, 105.43970026583645 14.115273096964913, 105.49595426588883 14.135136096983416, 105.55912726594767 14.168327097014327, 105.73326326610987 14.110927096960864, 105.78456326615765 14.076318096928631, 105.7934542661659 14.03291809688821, 105.80802726617947 14.016945096873329, 105.88860026625451 13.950554096811501, 105.91028226627469 13.932845096795006, 105.9472002663091 13.926664096789253, 106.05663626641103 13.930000096792355, 106.11110026646173 13.945827096807108, 106.17421826652054 14.058609096912136, 106.16762726651439 14.081391096933359, 106.11942726646947 14.13527309698354, 106.03456326639048 14.23687309707816, 105.99622726635477 14.331664097166438, 106.00081826635903 14.367218097199554, 106.09984526645127 14.38138209721275, 106.14012726648878 14.378473097210033, 106.1694912665161 14.365827097198263, 106.22192726656493 14.381664097213005, 106.23941826658125 14.413609097242755, 106.24720926658853 14.448191097274957, 106.25192726659287 14.488882097312867, 106.2902822666286 14.481364097305857, 106.30526326664256 14.459718097285702, 106.32262726665874 14.448473097275226, 106.40873626673891 14.458054097284148, 106.43220926676082 14.485554097309759, 106.43137226676004 14.508054097330714, 106.47456326680026 14.564164097382971, 106.53449126685604 14.597391097413919, 106.60080926691779 14.509445097332005, 106.62886326694394 14.465973097291524, 106.70332726701332 14.435000097262673, 106.75261826705918 14.409418097238856, 106.76526326707096 14.38889109721974, 106.80345426710653 14.340973097175109, 106.85026326715013 14.303891097140578, 107.11844526739992 14.40389109723371, 107.1691452674471 14.438891097266307, 107.23415426750768 14.497218097320626, 107.25360026752577 14.531109097352186, 107.34749126761324 14.595273097411948, 107.47303626773015 14.640000097453594, 107.54660026779868 14.708618097517501, 107.55330926780488 14.701800097511153, 107.55845426780968 14.657082097469512, 107.53324526778624 14.550136097369915, 107.50443626775939 14.482218097306657, 107.48081826773739 14.435554097263193, 107.45671826771496 14.422218097250777, 107.43226326769218 14.43503609726271, 107.40914526767062 14.420273097248966, 107.37545426763927 14.33735409717174, 107.389145267652 14.292427097129902, 107.3847092676479 14.240554097081585, 107.36068226762552 14.164718097010962, 107.34408226761002 14.128400096977131, 107.37052726763466 14.020418096876568, 107.38304526764631 14.004582096861824, 107.47350026773057 13.931709096793952, 107.47026326772755 13.841391096709842, 107.4641912677219 13.794364096666044, 107.58859126783778 13.595273096480625, 107.6292452678756 13.53803609642732, 107.63638226788225 13.381664096281682, 107.6064632678544 13.31133609621618, 107.48331826773972 13.020554095945371, 107.49248226774824 12.952500095881987, 107.50942726776401 12.884164095818349, 107.51970926777364 12.864164095799723, 107.56318226781411 12.810827095750057, 107.59304526784189 12.603882095557324, 107.59526326784396 12.55444509551127, 107.54990926780175 12.35930009532953, 107.53414526778704 12.338609095310261, 107.43893626769841 12.254545095231975, 107.42339126768388 12.253491095230984, 107.39777226766006 12.28777309526292, 107.3783092676419 12.312773095286204, 107.35372726761904 12.331800095303919, 107.29637226756563 12.322773095295517, 107.23859126751182 12.303609095277665, 107.18997226746654 12.287218095262403, 107.16276326744116 12.27374509524985, 107.11080926739277 12.21582709519592, 107.0819362673659 12.177773095160475, 107.05275426733874 12.13944509512477, 106.97470926726606 12.082500095071737, 106.95583626724846 12.074718095064497, 106.90734526720331 12.064654095055118, 106.85693626715636 12.067218095057513, 106.78920026709329 12.07346409506333, 106.74710026705407 12.000000094994903, 106.72608226703449 11.973818094970525, 106.69858226700887 11.96277309496024, 106.62868226694377 11.971527094968394, 106.4453822667731 11.982082094978225, 106.41954526674903 11.972636094969417, 106.42117226675055 11.965354094962649, 106.46135426678796 11.8850000948878, 106.44858226677604 11.817218094824682, 106.43773626676597 11.79360909480269, 106.44830026677579 11.709718094724565, 106.45820926678499 11.665864094683727, 106.41719126674684 11.67610909469326, 106.30305426664052 11.681736094698508, 106.26864526660847 11.717773094732067, 106.08316326643575 11.773054094783546, 106.04337226639865 11.776245094786518, 106.02226326637901 11.759854094771256, 106.0142822663716 11.720554094734652, 105.9612822663222 11.6447910946641, 105.92636326628968 11.65194509467075, 105.89817226626343 11.667364094685112, 105.87510026624193 11.67041809468796, 105.85314526622153 11.661945094680064, 105.81643626618734 11.617454094638632, 105.81907226618978 11.594009094616794, 105.87864526624526 11.548954094574839, 105.90011826626522 11.435345094469028, 105.88303626624935 11.364164094402739, 105.87113626623824 11.296736094339948, 105.92996326629304 11.220273094268734, 105.94858226631038 11.202500094252173, 106.12645426647606 11.086773094144405, 106.15551826650312 11.093891094151033, 106.18940026653468 11.053682094113583, 106.21240026655607 10.972500094037969, 106.20902726655294 10.970091094035737, 106.18662726653207 10.975000094040297, 106.15226326650009 10.968709094034438, 106.14566326649395 10.919445093988557, 106.17664526652277 10.870554093943028, 106.20330926654759 10.770554093849896, 106.08220026643482 10.802773093879907, 105.95997226632102 10.88250009395415, 105.85830926622629 10.916664093985972, 105.78135426615466 11.020973094083118, 105.74609126612182 11.019300094081558, 105.7220542660994 11.013054094075741, 105.69440926607365 10.99610909405996, 105.63552726601881 10.97000009403564, 105.58852726597507 10.959709094026067, 105.55469126594357 10.953054094019862, 105.52776326591845 10.947218094014431, 105.52429126591522 10.945764094013072, 105.43093626582828 10.965764094031698, 105.37219126577361 10.900554093970968, 105.36190926576398 10.880691093952464, 105.30024526570656 10.875554093947684, 105.23385426564477 10.88971809396088, 105.20609126561891 10.89944509396993, 105.1917452656055 10.906118093976147))) +LAO Laos MULTIPOLYGON (((104.25700026473498 17.887636100478204, 104.23943626471862 17.937218100524376, 104.21575426469656 17.989018100572622, 104.19553626467774 18.015000100596808, 104.10179126459042 18.10943610068476, 104.09193626458125 18.14638210071918, 104.07192726456259 18.199718100768848, 104.0469272645393 18.23832710080481, 103.9761542644734 18.32687310088727, 103.94067226444037 18.326664100887072, 103.84248226434892 18.311109100872585, 103.75942726427155 18.337773100897422, 103.61921826414101 18.388400100944565, 103.50776326403718 18.421664100975548, 103.4174822639531 18.43443610098744, 103.39721826393423 18.434991100987958, 103.37137226391019 18.431109100984344, 103.30109126384474 18.419027100973096, 103.27638226382169 18.40221810095744, 103.24220026378987 18.36540910092316, 103.24109126378886 18.33902710089859, 103.25665426380334 18.27500010083895, 103.14082726369548 18.16527310073677, 103.12026326367629 18.14874510072137, 103.06941826362896 18.123027100697428, 103.06840926362804 18.02882710060969, 103.04712726360822 17.99700910058006, 103.01589126357908 17.979991100564206, 102.97838226354418 17.998809100581738, 102.94650926351449 18.005973100588406, 102.8586002634326 17.9747181005593, 102.84137226341659 17.962491100547908, 102.73055426331337 17.883054100473927, 102.68359126326965 17.8200001004152, 102.61068226320174 17.886727100477344, 102.61276326320365 17.91860910050704, 102.60421826319572 17.946800100533295, 102.54414526313974 17.971664100556453, 102.5233272631204 17.97332710055801, 102.47249126307304 17.970554100555418, 102.42373626302759 17.981936100566017, 102.29914526291157 18.047636100627216, 102.25776326287303 18.08777310066459, 102.21331826283165 18.138327100711678, 102.17998226280059 18.190964100760695, 102.15706326277927 18.20422710077304, 102.10821826273377 18.2094451007779, 102.08939126271622 18.21498210078306, 102.07082726269897 18.20832710077687, 102.04776326267745 18.191664100761344, 101.99941826263245 18.127491100701576, 101.91067226254978 18.036800100617114, 101.88505426252595 18.031391100612083, 101.85080926249401 18.044164100623973, 101.78414526243193 18.06353610064201, 101.76193626241127 18.038327100618545, 101.74165426239239 17.97277310055749, 101.68914526234346 17.905827100495145, 101.63609126229409 17.889582100480013, 101.57720926223925 17.86006410045252, 101.55970926222295 17.81383610040946, 101.58106326224282 17.797354100394116, 101.49721826216472 17.743464100343928, 101.35581826203304 17.657218100263606, 101.30970926199012 17.624718100233338, 101.22717226191321 17.531354100146388, 101.15970926185042 17.460754100080635, 101.0757542617722 17.499854100117048, 101.0334542617328 17.541245100155592, 100.98790026169041 17.561527100174487, 100.96304526166722 17.565554100178232, 100.941309261647 17.564345100177107, 100.92216326162918 17.5689541001814, 100.91122726161899 17.599445100209792, 100.924145261631 17.61916410022816, 100.9534542616583 17.64971810025662, 100.98845426169089 17.732073100333324, 100.98439126168711 17.750145100350153, 100.98055426168355 17.76305410036217, 100.98970026169206 17.806109100402267, 101.0288092617285 17.897982100487837, 101.06318226176052 17.914582100503296, 101.0872092617829 17.930136100517785, 101.11373626180756 17.957082100542877, 101.14333626183515 18.022500100603793, 101.17081826186075 18.087218100664074, 101.17665426186619 18.175273100746082, 101.1545722618456 18.345000100904144, 101.0958182617909 18.373954100931115, 101.08669126178239 18.387654100943877, 101.05900026175658 18.418609100972702, 101.0578272617555 18.441591100994103, 101.10699126180128 18.51874510106596, 101.14721826183876 18.540554101086272, 101.18011826186938 18.56013610110452, 101.24109126192621 18.637636101176696, 101.26797226195123 18.684582101220414, 101.23692726192229 18.741382101273317, 101.24970926193424 18.86888210139206, 101.25394526193816 18.89479110141619, 101.29998226198103 18.97582710149166, 101.31860026199837 18.996382101510804, 101.33956326201792 19.010691101524117, 101.35346326203086 19.044373101555493, 101.30581826198647 19.09277310160057, 101.28998226197172 19.106109101612986, 101.20247226189025 19.35388210184375, 101.20110026188894 19.374582101863027, 101.21585426190268 19.461491101943963, 101.26436326194789 19.474373101955962, 101.2851272619672 19.520554101998968, 101.27908226196155 19.56624510204152, 101.25929126194313 19.58569110205964, 101.22510926191131 19.594382102067726, 101.08610926178187 19.590273102063904, 101.06360026176088 19.605273102077874, 101.03220026173165 19.619164102090807, 100.9586002616631 19.62138210209288, 100.91220026161989 19.619718102091326, 100.8838822615935 19.59832710207141, 100.86748226157823 19.577500102052, 100.85220026156401 19.5600001020357, 100.81360026152805 19.520554101998968, 100.77388226149105 19.485754101966563, 100.75533626147381 19.507909101987195, 100.70000026142225 19.533609102011127, 100.64088226136721 19.550618102026974, 100.61302726134124 19.538191102015404, 100.58495426131509 19.49397310197422, 100.57894526130951 19.493464101973743, 100.51639126125127 19.518891101997426, 100.49088226122751 19.53777310201501, 100.44553626118528 19.62777310209883, 100.4075632611499 19.738554102202002, 100.40499126114753 19.749027102211755, 100.4112362611533 19.77180010223296, 100.44609126118581 19.81500010227319, 100.48610026122304 19.859436102314575, 100.50623626124178 19.87853610233236, 100.55094526128346 20.01763610246192, 100.57097226130207 20.091664102530856, 100.58046326131091 20.15777310259243, 100.5748272613057 20.1624641025968, 100.5210272612556 20.145827102581308, 100.45786326119674 20.188082102620655, 100.41872726116031 20.23819110266733, 100.38761826113131 20.308473102732776, 100.37928226112359 20.337082102759425, 100.35990926110554 20.36554510278593, 100.34331826109008 20.38221810280146, 100.32110026106938 20.39152710281013, 100.2874912610381 20.39277310281129, 100.26089126101328 20.38610910280508, 100.22720026098193 20.356664102777657, 100.16554526092449 20.291936102717372, 100.10526326086836 20.30943610273367, 100.09137226085545 20.348609102770155, 100.1126182608752 20.375691102795386, 100.12567226088737 20.401245102819175, 100.14137226090202 20.48943610290131, 100.14942726090948 20.5447181029528, 100.17276326093122 20.627909103030277, 100.20943626096539 20.693054103090944, 100.25874526101131 20.749027103143078, 100.2905452610409 20.771664103164156, 100.37171826111654 20.826182103214933, 100.44165426118167 20.818327103207622, 100.46220026120079 20.813054103202703, 100.49693626123315 20.80582710319598, 100.5261002612603 20.804582103194818, 100.56053626129238 20.81389110320349, 100.60470926133354 20.83388210322211, 100.61786326134575 20.840454103228225, 100.64054526136687 20.86173610324805, 100.64252726136874 20.88489110326961, 100.61053626133895 20.88860910327307, 100.57554526130633 20.876664103261945, 100.54387226127687 20.86777310325367, 100.52171826125624 20.876664103261945, 100.52068226125527 20.951936103332045, 100.54677226127956 21.026109103401126, 100.57068226130184 21.032082103406694, 100.60290926133183 21.038609103412767, 100.62456326135202 21.054718103427774, 100.67191826139612 21.12805410349607, 100.69963626142192 21.182636103546912, 100.70317226142521 21.22750010358868, 100.72720926144763 21.307809103663487, 100.77437226149152 21.300973103657114, 100.81817226153231 21.299582103655823, 100.83915426155187 21.30430010366021, 100.86248226157358 21.316664103671727, 101.00136326170292 21.39832710374779, 101.10081826179555 21.46540910381026, 101.12720026182012 21.490827103833936, 101.16213626185265 21.53639110387637, 101.14823626183971 21.572636103910128, 101.1847092618737 21.558891103897324, 101.26484526194832 21.37443610372553, 101.24720926193191 21.333327103687253, 101.23463626192017 21.252009103611513, 101.25360026193783 21.210409103572772, 101.29192726197351 21.17687310354154, 101.3381722620166 21.18874510355259, 101.38749126206255 21.223191103584682, 101.50860926217536 21.24680010360666, 101.570545262233 21.247218103607054, 101.60887226226873 21.234718103595412, 101.67706326233224 21.196382103559714, 101.70332726235671 21.175000103539787, 101.7325632623839 21.139491103506728, 101.78595426243362 21.144509103511396, 101.84526326248886 21.216109103578077, 101.84951826249284 21.239536103599903, 101.84845426249183 21.25346410361287, 101.80650926245278 21.285554103642752, 101.76866326241753 21.292909103649606, 101.74095426239171 21.31389110366915, 101.7433092623939 21.357773103710016, 101.76053626240997 21.453327103799012, 101.76749126241646 21.496664103839365, 101.78166326242962 21.6534641039854, 101.75234526240234 21.732073104058614, 101.76526326241435 21.834445104153943, 101.6727632623282 21.933327104246047, 101.62712726228574 21.970409104280577, 101.57443626223665 22.209164104502932, 101.62594526228463 22.280691104569556, 101.67547226233074 22.388400104669856, 101.6619272623181 22.4115271046914, 101.67095426232652 22.44332710472102, 101.69136326234553 22.472218104747924, 101.74150926239224 22.497773104771724, 101.77351826242204 22.499927104773732, 101.79999126244672 22.489436104763953, 101.92526326256336 22.437354104715453, 102.03096326266183 22.45485410473175, 102.11484526273995 22.432982104711385, 102.14074526276409 22.396282104677198, 102.15373626277614 22.384718104666433, 102.1801182628007 22.326109104611845, 102.1849092628052 22.300409104587914, 102.2383092628549 22.24249110453397, 102.27741826289133 22.215900104509203, 102.30483626291687 22.210136104503846, 102.4227632630267 22.115691104415887, 102.44802726305022 22.06693610437047, 102.50178226310032 21.966800104277212, 102.52664526312344 21.947773104259497, 102.55525426315012 21.94055410425277, 102.58553626317831 21.936800104249272, 102.60442726319587 21.92847310424152, 102.64721826323574 21.853054104171278, 102.6616542632492 21.78680910410958, 102.66053626324816 21.76055410408513, 102.65414526324219 21.7348541040612, 102.67519126326181 21.658536103990116, 102.7540092633352 21.67069110400145, 102.86136326343518 21.718327104045812, 102.97054526353685 21.74513610407078, 102.98740926355259 21.712700104040564, 102.99080926355572 21.606945103942067, 102.98747226355266 21.574300103911668, 102.96901826353547 21.55555410389421, 102.94442726351252 21.528609103869115, 102.89068226346251 21.466109103810908, 102.87691826344968 21.430136103777414, 102.9049822634758 21.44027310378685, 102.90470926347558 21.381936103732514, 102.88860026346055 21.25221810361171, 102.91907226348894 21.22888210358998, 102.91443626348462 21.168054103533322, 102.93727226350586 21.16332710352893, 103.04207226360347 21.045973103419627, 103.08804526364628 20.955554103335416, 103.11781826367405 20.893609103277726, 103.17712726372929 20.843882103231422, 103.18909126374041 20.844200103231714, 103.21860026376788 20.830273103218744, 103.33527226387656 20.805554103195718, 103.36020926389978 20.802136103192538, 103.42499126396012 20.793891103184862, 103.60540026412815 20.740273103134925, 103.63735426415786 20.717909103114096, 103.67331826419138 20.681518103080208, 103.68705426420416 20.659582103059776, 103.73838226425198 20.670964103070375, 103.77138226428269 20.73721810313208, 103.7788722642897 20.784445103176054, 103.8566452643621 20.852500103239436, 104.10394526459243 20.975900103354363, 104.19442726467668 20.943327103324037, 104.2302722647101 20.928882103310585, 104.30622726478083 20.89430010327837, 104.33069126480359 20.87708210326234, 104.34421826481622 20.843154103230745, 104.40941826487693 20.77832710317037, 104.50192726496306 20.712218103108796, 104.5881722650434 20.672636103071937, 104.61441826506785 20.665136103064953, 104.64189126509342 20.652354103053042, 104.62997226508236 20.618609103021612, 104.60053626505493 20.590273102995226, 104.51610026497627 20.51721810292719, 104.45443626491885 20.504445102915284, 104.38150926485093 20.454582102868855, 104.3937362648623 20.43527310285087, 104.42053626488729 20.42416410284052, 104.52040026498031 20.407082102824617, 104.55275426501044 20.414227102831262, 104.6154632650688 20.416036102832948, 104.70901826515598 20.341527102763564, 104.7150002651615 20.31305410273704, 104.8449182652825 20.225064102655097, 104.93928226537042 20.183464102616355, 104.98470926541273 20.09832710253707, 104.97782726540629 20.00395410244917, 104.96271826539225 19.9884091024347, 104.89942726533326 19.973327102420654, 104.84220926528002 19.938882102388575, 104.78970026523109 19.891936102344843, 104.79015426523154 19.86399110231882, 104.8265182652654 19.863882102318726, 104.8490722652864 19.844164102300354, 104.8320002652705 19.78742710224752, 104.77026326521298 19.75694510221912, 104.71700026516339 19.747982102210784, 104.67928226512828 19.70790910217346, 104.66720926511704 19.68721810215419, 104.65497226510564 19.64790910211758, 104.6442272650956 19.616664102088478, 104.56888226502542 19.60555410207813, 104.5195722649795 19.605409102078, 104.44984526491459 19.645273102115127, 104.42276326488934 19.669854102138018, 104.24609126472484 19.70443610217022, 104.22053626470102 19.70319110216907, 104.15873626464344 19.68749110215444, 104.14999126463533 19.68167310214902, 104.1415912646275 19.6626361021313, 104.08741826457702 19.66430010213284, 104.05831826454994 19.68277310215005, 104.03882726453179 19.69373610216026, 104.0214182645156 19.669118102137332, 104.03888226453182 19.620273102091843, 104.0505362645427 19.599445102072437, 104.07894526456914 19.56916410204424, 104.10164526459027 19.55860910203441, 104.10594526459431 19.522636102000916, 104.10386326459235 19.478609101959904, 104.04136326453414 19.418464101903893, 103.9716452644692 19.392082101879325, 103.87768226438169 19.30950910180242, 104.00692726450205 19.233400101731533, 104.06109126455254 19.238609101736387, 104.1745722646582 19.190545101691626, 104.22601826470611 19.145064101649268, 104.22075426470121 19.111327101617846, 104.2788092647553 19.110900101617446, 104.53026326498946 18.972218101488295, 104.54914526500704 18.941664101459835, 104.57303626502932 18.902982101423817, 104.6722092651217 18.836936101362298, 104.74456326518907 18.796245101324402, 104.93525426536667 18.7441641012759, 105.02998226545486 18.720827101254173, 105.10555426552526 18.69666410123166, 105.146100265563 18.673327101209935, 105.19317226560685 18.636727101175836, 105.19413626560777 18.610000101150945, 105.15027226556691 18.598745101140466, 105.1152542655343 18.517636101064937, 105.1038722655237 18.470273101020823, 105.10872726552822 18.43798210099075, 105.18331826559768 18.334445100894314, 105.26707226567567 18.252500100817997, 105.30851826571427 18.2561451008214, 105.32582726573042 18.242773100808947, 105.32192726572674 18.196682100766026, 105.33220926573637 18.18610910075617, 105.35733626575973 18.168191100739477, 105.39998226579945 18.157564100729587, 105.50443626589674 18.168327100739617, 105.5822092659692 18.048609100628113, 105.62724526601113 17.987500100571197, 105.68192726606202 17.814445100410026, 105.75430026612946 17.67040910027589, 105.79553626616786 17.653327100259986, 105.8328362662026 17.640200100247753, 105.86080926622861 17.618609100227644, 105.89220926625791 17.584436100195816, 105.93192726629485 17.529164100144342, 106.02138226637817 17.426109100048365, 106.03914526639471 17.406664100030255, 106.09012726644221 17.356800099983815, 106.15138226649924 17.304718099935315, 106.21164526655537 17.261664099895214, 106.24866326658986 17.24645409988105, 106.34081826667568 17.169164099809066, 106.42053626674993 17.064718099711797, 106.43420026676267 17.011364099662103, 106.4412272667692 16.992491099644525, 106.52020026684272 16.96735409962112, 106.56110026688083 16.996936099648664, 106.55525426687541 16.938045099593822, 106.55525426687541 16.888745099547904, 106.56067226688043 16.677427099351107, 106.57527226689405 16.642218099318313, 106.68470026699595 16.459300099147953, 106.70220926701228 16.43971809912972, 106.75664526706294 16.42034509911167, 106.78249126708704 16.43250009912299, 106.81387226711627 16.473045099160757, 106.82916326713047 16.506664099192065, 106.84338226714374 16.532354099215993, 106.87511826717326 16.5368730992202, 106.89526326719204 16.517773099202415, 106.98387226727459 16.33721809903426, 106.98720026727767 16.299718098999335, 107.01055426729943 16.30736409900645, 107.03054526731802 16.306382099005546, 107.09389126737705 16.300818099000352, 107.1472182674267 16.263336098965453, 107.14860926742801 16.233082098937274, 107.15207226743121 16.205827098911897, 107.16511826744335 16.183745098891322, 107.1916542674681 16.160827098869987, 107.337618267604 16.056109098772453, 107.3624912676272 16.062773098778663, 107.38247226764582 16.067500098783057, 107.46081826771876 16.08048209879516, 107.47530026773228 16.027336098745664, 107.47581826773273 16.022500098741148, 107.46360926772138 16.003891098723827, 107.40193626766393 15.91847309864427, 107.25554526752757 15.85847309858839, 107.22929126750313 15.86639109859577, 107.20394526747953 15.858954098588839, 107.17630026745377 15.790345098524938, 107.18303626746007 15.765418098501726, 107.26304526753455 15.64778209839217, 107.36110026762589 15.55639109830706, 107.420254267681 15.503336098257648, 107.51749126777156 15.468327098225046, 107.59636326784499 15.383891098146407, 107.6847092679273 15.288609098057663, 107.69525426793712 15.27082709804111, 107.6847092679273 15.234718098007477, 107.68158226792434 15.226482097999806, 107.67025426791383 15.205273097980054, 107.64054526788613 15.128054097908134, 107.61581826786312 15.063609097848115, 107.58679126783608 15.0455540978313, 107.47330926773037 15.03582709782225, 107.4680362677255 15.023191097810468, 107.4799822677366 14.97145409776229, 107.5401182677926 14.918891097713342, 107.55165426780337 14.847500097646844, 107.54942726780126 14.72444509753224, 107.54660026779868 14.708618097517501, 107.47303626773015 14.640000097453594, 107.34749126761324 14.595273097411948, 107.25360026752577 14.531109097352186, 107.23415426750768 14.497218097320626, 107.1691452674471 14.438891097266307, 107.11844526739992 14.40389109723371, 106.85026326715013 14.303891097140578, 106.80345426710653 14.340973097175109, 106.76526326707096 14.38889109721974, 106.75261826705918 14.409418097238856, 106.70332726701332 14.435000097262673, 106.62886326694394 14.465973097291524, 106.60080926691779 14.509445097332005, 106.53449126685604 14.597391097413919, 106.47456326680026 14.564164097382971, 106.43137226676004 14.508054097330714, 106.43220926676082 14.485554097309759, 106.40873626673891 14.458054097284148, 106.32262726665874 14.448473097275226, 106.30526326664256 14.459718097285702, 106.2902822666286 14.481364097305857, 106.25192726659287 14.488882097312867, 106.24720926658853 14.448191097274957, 106.23941826658125 14.413609097242755, 106.22192726656493 14.381664097213005, 106.1694912665161 14.365827097198263, 106.14012726648878 14.378473097210033, 106.09984526645127 14.38138209721275, 106.00081826635903 14.367218097199554, 105.99622726635477 14.331664097166438, 106.03456326639048 14.23687309707816, 106.11942726646947 14.13527309698354, 106.16762726651439 14.081391096933359, 106.17421826652054 14.058609096912136, 106.11110026646173 13.945827096807108, 106.05663626641103 13.930000096792355, 105.9472002663091 13.926664096789253, 105.91028226627469 13.932845096795006, 105.88860026625451 13.950554096811501, 105.80802726617947 14.016945096873329, 105.7934542661659 14.03291809688821, 105.78456326615765 14.076318096928631, 105.73326326610987 14.110927096960864, 105.55912726594767 14.168327097014327, 105.49595426588883 14.135136096983416, 105.43970026583645 14.115273096964913, 105.37477226577596 14.106527096956768, 105.28297226569049 14.178264097023572, 105.20916326562173 14.288682097126411, 105.2106002656231 14.349645097183185, 105.22560926563705 14.342354097176397, 105.29749126570402 14.36944509720162, 105.37052726577201 14.404718097234479, 105.44442726584083 14.450554097277163, 105.49331826588639 14.503891097326843, 105.51526326590681 14.531109097352186, 105.5354002659256 14.563891097382722, 105.5363722659265 14.607636097423466, 105.52831826591898 14.648054097461099, 105.51596326590749 14.815554097617095, 105.54525426593477 14.858609097657194, 105.56638226595442 14.88305409767996, 105.57720926596454 14.911664097706606, 105.59055426597695 15.00055409778939, 105.52442726591534 15.070273097854326, 105.47116326586575 15.110209097891513, 105.47470026586905 15.174718097951597, 105.53707226592712 15.395273098157006, 105.56580926595387 15.405836098166844, 105.5833182659702 15.41694509817718, 105.59999126598575 15.433054098192187, 105.60032726598604 15.436682098195561, 105.6063722659917 15.471109098227629, 105.63123626601481 15.585691098334337, 105.63929126602233 15.6394450983844, 105.63512726601846 15.669164098412082, 105.60386326598933 15.720064098459488, 105.55748226594613 15.748882098486334, 105.50775426589985 15.766527098502763, 105.48450026587818 15.761873098498427, 105.44233626583889 15.76131809849791, 105.40109126580052 15.807218098540659, 105.3894272657896 15.82805409856006, 105.34595426574913 15.92603609865131, 105.37137226577283 15.973327098695364, 105.38554526578599 15.989927098710822, 105.4297452658272 16.000464098720627, 105.42271826582066 16.00937309872893, 105.30859126571437 16.038609098756154, 105.27638226568433 16.04389109876108, 105.24524526565534 16.046391098763408, 105.22026326563207 16.050273098767022, 105.18887226560287 16.056382098772715, 105.08067226550207 16.09500009880867, 105.05748226548047 16.115000098827295, 105.0448542654687 16.13290909884398, 105.02867226545368 16.175554098883694, 105.02429126544956 16.226664098931295, 105.01250026543858 16.251664098954578, 104.99248226541994 16.276945098978118, 104.97885426540728 16.287591098988045, 104.96192726539147 16.299718098999335, 104.9099822653431 16.34624509904266, 104.7495722651937 16.52444509920862, 104.74261826518722 16.566245099247553, 104.75305426519697 16.636382099312883, 104.76012726520355 16.6577730993328, 104.76797226521086 16.691382099364105, 104.76873626521154 16.724718099395147, 104.7608182652042 16.753327099421796, 104.74552726518993 16.91027309956796, 104.74241826518704 16.946718099601895, 104.73996326518477 16.973191099626547, 104.74108226518581 17.01069109966147, 104.74637226519076 17.03763609968658, 104.77442726521684 17.09110909973637, 104.79749126523836 17.1333270997757, 104.80246326524298 17.152773099793805, 104.80914526524919 17.19027309982873, 104.81441826525412 17.242491099877356, 104.81360026525334 17.28610909991798, 104.80941826524946 17.36138209998809, 104.80554526524583 17.381936100007223, 104.7930362652342 17.408191100031672, 104.71831826516461 17.503327100120288, 104.69205426514014 17.528536100143754, 104.64102726509265 17.557709100170925, 104.46137226492533 17.649300100256227, 104.41748226488443 17.70388210030707, 104.4016542648697 17.728118100329638, 104.33553626480813 17.826382100421156, 104.28581826476182 17.845554100439003, 104.2663822647437 17.86500010045711, 104.25700026473498 17.887636100478204))) +MYS Malaysia MULTIPOLYGON (((114.09508227389739 4.590536088094311, 114.17998227397646 4.572500088077504, 114.24609127403806 4.521664088030164, 114.30900927409664 4.433191087947762, 114.3299912741162 4.326945087848813, 114.39999127418139 4.256391087783115, 114.47553627425174 4.2000000877305865, 114.6084542743755 4.055691087596188, 114.6094272743764 4.03083608757305, 114.63803627440308 4.018191087561263, 114.70540927446581 4.050000087590888, 114.80636327455983 4.144582087678984, 114.86692727461622 4.355273087875204, 114.85900927460887 4.432636087947245, 114.83471827458624 4.446391087960066, 114.77985427453513 4.735836088229632, 114.85261827460289 4.803609088292745, 114.94582727468975 4.817218088305424, 114.97942727472099 4.831664088318874, 115.01843627475733 4.895791088378601, 115.02912727476729 4.820209088308204, 115.0208272747596 4.753336088245931, 115.02665427476501 4.6566640881558925, 115.1023452748355 4.380554087898744, 115.32054527503868 4.315554087838208, 115.35207227506805 4.317500087840017, 115.36026327507568 4.332636087854112, 115.35080927506687 4.360000087879598, 115.27318227499461 4.451391087964723, 115.26442727498642 4.541109088048273, 115.28249127500328 4.611664088113983, 115.2230362749479 4.805000088294037, 115.14578227487596 4.903236088385526, 115.22053627494557 4.958054088436583, 115.32782727504548 4.89374508837669, 115.36665427508166 4.903336088385629, 115.47970927518696 5.022773088496862, 115.52887227523274 5.041945088514709, 115.5577452752596 5.068609088539546, 115.5741542752749 5.1791640886425085, 115.5591452752609 5.202500088664237, 115.52970927523353 5.200282088662178, 115.48511827519195 5.220836088681324, 115.3597092750752 5.309582088763975, 115.38025427509433 5.400973088849085, 115.52831827523221 5.517500088957604, 115.7625002754503 5.520273088960195, 115.81749127550154 5.533891088972879, 115.84887227553077 5.563891089000819, 115.89526327557394 5.644864089076222, 115.91887227559596 5.747500089171808, 116.0510912757191 5.840836089258744, 116.05330927572112 5.9002820893141035, 116.09027227575558 5.977773089386275, 116.10999127577395 6.127773089525974, 116.32860027597752 6.36333608974536, 116.50068227613781 6.493473089866555, 116.50721827614387 6.544309089913895, 116.64388227627114 6.70110909005993, 116.64333627627065 6.773336090127202, 116.65693627628332 6.846664090195489, 116.71581827633815 6.96778209030829, 116.76638227638523 7.023127090359836, 116.83985427645365 6.948745090290558, 116.85970927647219 6.803336090155142, 116.85138227646439 6.756945090111927, 116.80970927642562 6.703054090061741, 116.78081827639869 6.64333609000613, 116.78380027640145 6.584236089951091, 116.82415427643906 6.580000089947134, 116.86249127647477 6.59639108996241, 117.04802727664753 6.825554090175828, 117.05442727665348 6.843336090192395, 117.02970927663051 6.910836090255259, 117.0310912766318 6.934864090277628, 117.07762727667512 6.987500090326648, 117.14513627673801 7.001527090339721, 117.24929127683498 6.945136090287193, 117.2530542768385 6.767782090122026, 117.27707227686085 6.666391090027602, 117.30165427688377 6.626245089990206, 117.46651827703732 6.539445089909364, 117.55859127712307 6.537773089907816, 117.64846327720676 6.514718089886344, 117.67665427723301 6.491391089864621, 117.72442727727747 6.423336089801239, 117.73929127729133 6.386945089767337, 117.72261827727579 6.257009089646331, 117.70970927726381 6.249309089639155, 117.67165427722836 6.255282089644723, 117.64220927720095 6.24360908963385, 117.61248227717323 6.220209089612055, 117.60040027716201 6.192500089586247, 117.66277227722009 6.088891089489763, 117.6748362772313 5.982364089390543, 117.62996327718952 5.940273089351351, 117.50305427707133 5.896109089310215, 117.78220927733133 5.915000089327805, 117.88692727742881 5.952636089362855, 117.98664527752169 6.056182089459298, 118.00686327754056 6.061245089464009, 118.0486002775794 6.019445089425076, 118.1246912776503 5.864027089280341, 118.08027227760891 5.810273089230279, 118.04054527757188 5.803336089223819, 117.93137227747025 5.813609089233381, 117.90817227744861 5.797573089218446, 117.91776327745754 5.755000089178793, 117.95547227749267 5.685073089113672, 118.12552727765103 5.68944508911774, 118.1563722776798 5.786945089208544, 118.17665427769867 5.8038910892243365, 118.25873627777509 5.827500089246314, 118.37360027788208 5.807500089227688, 118.47499127797653 5.75833608918191, 118.5790272780734 5.688891089117234, 118.64888227813844 5.637782089069631, 118.6922002781788 5.5913910890264304, 118.93470927840468 5.429718088875859, 119.07026327853089 5.404445088852313, 119.10261827856101 5.4133360888606035, 119.13138227858781 5.435691088881413, 119.18970027864214 5.4433270888885374, 119.23887227868795 5.403609088851539, 119.27581827872234 5.345000088796951, 119.27249127871926 5.223609088683901, 119.22387227867398 5.148609088614052, 119.1711002786248 5.112218088580164, 119.06971827853039 5.070000088540837, 118.9133092783847 5.027773088501519, 118.7016632781876 4.943054088422613, 118.54970927804612 4.9586090884371, 118.44678227795026 4.999027088474747, 118.41330927791904 5.030554088504104, 118.35428227786412 5.035836088509029, 118.20735427772723 4.961809088440077, 118.14054527766501 4.888336088371659, 118.13234527765741 4.8536090883393115, 118.28233627779707 4.68083608817841, 118.41720927792272 4.593336088096919, 118.44053627794443 4.6131910881154, 118.48526327798606 4.592782088096399, 118.48697227798766 4.564900088070431, 118.46726327796932 4.5384450880457905, 118.50928227800847 4.500573088010526, 118.5440272780408 4.525473088033706, 118.59484527808814 4.521245088029772, 118.64484527813471 4.437636087951901, 118.62985427812072 4.4151360879309465, 118.54957227804596 4.350973087871196, 118.40442727791077 4.348891087869262, 118.18359127770515 4.307773087830967, 118.12500027765054 4.2904820878148655, 117.99589127753029 4.2241640877530955, 117.90568227744632 4.245973087773407, 117.8630362774066 4.287218087811823, 117.69303627724827 4.374718087893314, 117.62915427718877 4.35360908787365, 117.65192727720995 4.266945087792934, 117.60109127716265 4.199718087730332, 117.5920542771542 4.169818087702481, 117.45276327702447 4.188609087719982, 117.40179127697701 4.254582087781429, 117.23943627682581 4.358336087878058, 117.17665427676735 4.335554087856835, 117.0438722766437 4.336945087858126, 116.91053627651951 4.352218087872359, 116.83984527645367 4.330418087852053, 116.53360027616844 4.330836087852447, 116.52761827616285 4.319309087841702, 116.46581827610532 4.294027087818165, 116.31470027596458 4.357773087877533, 116.15331827581429 4.3550000878749415, 116.06110027572839 4.277918087803158, 115.98664527565904 4.339718087860717, 115.88803627556723 4.368127087887174, 115.87248227555273 4.361109087880635, 115.8505362755323 4.321664087843899, 115.69080927538351 4.180273087712223, 115.6597092753546 4.1086000876454705, 115.66249127535718 4.078336087617288, 115.5713822752723 3.666109087233366, 115.5741542752749 3.594718087166882, 115.60192727530074 3.5391640871151395, 115.62768227532473 3.434309087017482, 115.6138722753119 3.420418087004549, 115.58297227528311 3.4279820870116, 115.57082727527182 3.417782087002095, 115.53888227524203 3.333609086923701, 115.50999127521516 3.198336086797724, 115.51304527521796 3.184027086784397, 115.52859127523249 3.176109086777018, 115.49552727520165 3.0400000866502523, 115.48720027519391 3.027500086638611, 115.37803627509226 2.9918090866053717, 115.31831827503663 2.9877820866016265, 115.30137227502087 3.016391086628275, 115.24970927497276 3.010836086623101, 115.13970927487031 2.9061090865255608, 115.11831827485037 2.851109086474338, 115.08236327481688 2.613609086253149, 115.10761827484038 2.5972180862378877, 115.13360027486459 2.6115270862512148, 115.18525427491272 2.596945086237625, 115.23609127496007 2.5296540861749577, 115.23081827495514 2.508054086154843, 115.0016632747417 2.3605540860174727, 114.93941827468376 2.2855540859476235, 114.8730272746219 2.27944508594193, 114.8137272745667 2.2606910859244636, 114.80470027455829 2.2488910859134847, 114.7763822745319 2.150136085821501, 114.80053627455442 2.0647180857419585, 114.83915427459038 2.0438910857225636, 114.8626182746122 2.046454085724946, 114.8724822746214 2.020282085700572, 114.86192727461156 1.915282085602783, 114.84470927459557 1.8916640855807856, 114.78333627453839 1.8638910855549256, 114.71081827447085 1.7705540854679924, 114.67442727443694 1.642500085348729, 114.5888722743573 1.4520820851713978, 114.55998227433037 1.4329180851535455, 114.53333627430555 1.4355540851559994, 114.45247227423027 1.4919450852085134, 114.40165427418293 1.5097180852250744, 114.23137227402435 1.4436090851635015, 114.08440027388747 1.4699910851880702, 113.93081827374442 1.4452820851650614, 113.79040927361365 1.3047180850341533, 113.65908227349132 1.2258360849606902, 113.62996327346423 1.237782084971812, 113.58692727342412 1.28360908501449, 113.4561002733023 1.2883360850188978, 113.34081827319494 1.3652820850905556, 113.12637227299524 1.4316640851523772, 113.05748227293105 1.5397910852530856, 112.99970927287728 1.572782085283805, 112.88414527276962 1.588054085298026, 112.68026327257974 1.563054085274743, 112.47276327238649 1.5680540852793996, 112.20137227213377 1.450136085169575, 112.18150927211525 1.411391085133502, 112.20983627214162 1.4031910851258544, 112.21290027214451 1.3761090851006372, 112.13220027206933 1.1497910848898698, 112.07443627201553 1.1355540848766026, 111.95470927190405 1.1322180848735002, 111.89123627184489 1.0756910848208463, 111.8601182718159 1.020418084769375, 111.8272092717853 0.998609084749063, 111.79776327175784 0.9938910847446749, 111.73275427169733 1.0061090847560479, 111.66957227163846 1.0384730847861903, 111.5651272715412 1.0002820847506229, 111.40637227139337 1.0088910847586448, 111.2583272712555 1.0672180848129642, 111.21192727121223 1.0697180848152925, 111.00694527102138 1.0211090847700177, 110.90693627092821 1.0151360847644497, 110.81956327084686 0.9500000847037882, 110.807900270836 0.9084730846651183, 110.57443627061855 0.8527820846132528, 110.52206327056979 0.8652820846248943, 110.45999127051198 0.9027820846598189, 110.33249127039323 1.0019450847521654, 110.19886327026876 1.1761090849143727, 110.11553627019117 1.1952820849322308, 110.07166327015028 1.2200000849552453, 109.98540927006997 1.301882085031508, 109.9316632700199 1.406945085129351, 109.82470926992033 1.4686090851867846, 109.72191826982458 1.555554085267758, 109.66872726977505 1.6170090853249945, 109.66720926977365 1.7063910854082422, 109.61580926972573 1.789164085485325, 109.58387226969603 1.8025000854977407, 109.5638722696774 1.8336090855267173, 109.54733626966197 1.9069450855950123, 109.6308092697397 2.0316640857111707, 109.64856326975627 2.0734090857500433, 109.651509269759 1.9363910856224464, 109.67137226977752 1.898054085586736, 109.71040026981387 1.851391085543284, 109.89942726998987 1.7219450854227176, 109.92802727001651 1.6904820853934268, 109.98182727006662 1.6823000853858048, 110.25305427031924 1.7055540854074565, 110.33054527039138 1.8015270854968435, 110.47720027052799 1.6433360853495174, 110.47998227053057 1.6241640853316568, 110.73368227076685 1.540136085253394, 110.73498227076806 1.502082085217964, 110.67580927071293 1.4504820851699094, 110.68748227072382 1.4447180851645385, 110.7341542707673 1.4527820851720463, 110.76220927079345 1.479445085196872, 110.77429127080467 1.5627820852744918, 110.82192727084902 1.5680540852793996, 110.97651827099304 1.4963910852126645, 111.06302727107357 1.40500008512754, 111.15554527115972 1.3638910850892643, 111.31944527131242 1.3330540850605388, 111.37830927136719 1.345973085072572, 111.28720027128236 1.4130540851350446, 111.24192727124017 1.4158360851376415, 111.18818227119016 1.3959000851190666, 111.15970927116365 1.399445085122366, 111.05790027106883 1.4619450851805738, 111.01277227102679 1.5333360852470719, 111.00000027101487 1.5720820852831565, 111.02915427104205 1.6661090853707208, 111.06441827107489 1.6822180853857276, 111.17330927117627 1.9480540856333022, 111.20555427120632 2.0663910857435184, 111.25499127125238 2.1234730857966753, 111.3248542713174 2.1055540857799855, 111.36998227135945 2.146664085818273, 111.37192727136124 2.1581270858289514, 111.35498227134548 2.1630540858335365, 111.19193627119364 2.141109085813099, 111.17275427117579 2.14597308581763, 111.18303627118536 2.2622180859258947, 111.21110927121151 2.3986090860529146, 111.22540027122483 2.4225000860751607, 111.24470927124281 2.4293090860815028, 111.31567227130887 2.387427086042507, 111.3681092713577 2.339091085997481, 111.39414527138194 2.3561090860133334, 111.45027227143424 2.368609086024975, 111.40305427139026 2.4808360861295, 111.43665427142156 2.6725000863079913, 111.44845427143252 2.6947180863286917, 111.66887227163784 2.8476360864710983, 112.09304527203284 2.9052820865247924, 112.86470027275152 3.10083608670692, 112.95304527283378 3.1288910867330486, 113.01053627288735 3.160554086762531, 113.27499127313365 3.486109087065728, 113.41499127326404 3.691945087257423, 113.51776327335972 3.808054087365562, 113.73552727356252 3.9969450875414765, 113.92609127374004 4.244164087771722, 113.9644272737757 4.321391087843651, 113.99470927380395 4.43971808795385, 113.99192727380131 4.484718087995759, 113.96304527377441 4.569582088074796, 113.96720927377834 4.582500088086817, 113.998027273807 4.599445088102598, 114.09508227389739 4.590536088094311)), ((100.34913626109551 5.569164089005724, 100.35025426109655 5.609164089042977, 100.37412726111876 5.683336089112061, 100.3757912611203 5.821109089240366, 100.34801826109447 5.9972180894043845, 100.2508092610039 6.208336089601005, 100.17190926093042 6.286664089673948, 100.12785426088942 6.413700089792258, 100.12710926088874 6.424945089802733, 100.16844526092723 6.470836089845477, 100.19274526094983 6.575282089942746, 100.17454526093292 6.62236408998659, 100.19406326095105 6.697427090056507, 100.21498226097054 6.711109090069243, 100.30024526104995 6.69979109005871, 100.3351722610825 6.586109089952828, 100.37440026111904 6.543891089913515, 100.43690026117724 6.515554089887118, 100.65663626138189 6.4486820898248425, 100.68135426140492 6.453336089829179, 100.75136326147009 6.50277308987522, 100.82816326154165 6.42777308980537, 100.85441826156608 6.322500089707319, 100.8469182615591 6.285000089672394, 100.85323626156497 6.243891089634118, 100.95206326165703 6.240827089631267, 101.00970026171069 6.269445089657907, 101.11204526180603 6.250691089640441, 101.11426326180805 6.182464089576911, 101.099136261794 6.118891089517703, 101.1192002618127 5.990273089397917, 101.09566326179078 5.923954089336149, 101.042254261741 5.90180908931552, 100.99114526169342 5.794309089215403, 100.9946632616967 5.779618089201719, 101.05745426175514 5.729164089154736, 101.14232726183423 5.6334730890656175, 101.22322726190953 5.670973089100542, 101.25941826194327 5.71458208914116, 101.31190026199215 5.807218089227433, 101.50604526217296 5.880573089295751, 101.57101826223345 5.915209089328002, 101.6064912622665 5.905273089318754, 101.65940926231576 5.85062708926786, 101.65857226231498 5.821736089240957, 101.69231826234642 5.7643090891874635, 101.74635426239678 5.789164089210615, 101.7718542624205 5.777500089199748, 101.80071826244739 5.745973089170391, 101.82609126247104 5.740973089165735, 101.94405426258089 5.867082089283187, 101.94372726258058 5.956527089366489, 102.09052726271727 6.154164089550548, 102.09522726272166 6.236136089626896, 102.1666542627882 6.193609089587284, 102.22164526283939 6.21750008960953, 102.33388226294392 6.175554089570468, 102.41193626301663 6.070836089472948, 102.50165426310019 5.882082089297157, 102.60523626319667 5.81221808923209, 102.66572726325296 5.7298640891553845, 102.84219126341736 5.589309089024482, 102.96087226352785 5.537009088975779, 103.03775426359948 5.476945088919834, 103.12190926367782 5.377364088827093, 103.20830926375828 5.240554088699682, 103.27913626382428 5.086109088555844, 103.40997226394614 4.858054088343451, 103.44107226397506 4.765273088257047, 103.45497226398805 4.62694508812821, 103.45380026398692 4.484791087995831, 103.49370926402412 4.308745087831866, 103.44656326398018 4.1664360876993385, 103.41413626395001 4.150764087684735, 103.39595426393305 4.111391087648073, 103.41385426394976 3.9588910875060463, 103.33636326387756 3.744100087306009, 103.3710822639099 3.6427820872116428, 103.46302726399551 3.531809087108286, 103.47642726400801 3.498682087077441, 103.44162726397559 3.440136087022907, 103.42636326396138 3.3925000869785435, 103.42719126396219 3.3297180869200815, 103.45441826398752 3.180973086781549, 103.43469126396917 3.0527820866621624, 103.43801826397225 2.9258360865439386, 103.50164526403148 2.8080540864342396, 103.61885426414068 2.680554086315496, 103.63701826415758 2.664091086300161, 103.76525426427702 2.625836086264542, 103.82024526432821 2.5759000862180272, 103.83636326434322 2.4551360861055542, 103.89831826440093 2.3858360860410244, 103.97746326447464 2.2430540859080423, 104.05830026454993 2.059164085736782, 104.11580026460348 1.9661090856501175, 104.22330926470357 1.7179180854189724, 104.25359126473182 1.6333360853402041, 104.29330026476879 1.4377820851580765, 104.27754526475411 1.3691000850941037, 104.21163626469274 1.3406270850675952, 104.18092726466415 1.3391640850662299, 104.10490926459335 1.3691640850941695, 104.0477362645401 1.4688910851870531, 104.0775912645679 1.503364085219161, 103.98024526447722 1.6330540853399356, 103.958509264457 1.6443090853504145, 103.97100926446865 1.5904820853002946, 104.01108226450594 1.5350000852486119, 104.01052726450541 1.4619450851805738, 103.99850926449426 1.4356910851561224, 103.97108226446869 1.418891085140487, 103.90476326440694 1.4321540851528312, 103.84607226435224 1.471945085189887, 103.82490026433254 1.475973085193644, 103.68349126420088 1.4455540851653126, 103.51213626404126 1.2695270850013713, 103.45456326398767 1.3275000850553624, 103.40580026394224 1.4895820852063224, 103.37454526391315 1.533473085247195, 103.19135426374254 1.6147180853228633, 102.83163626340752 1.8452820855375904, 102.8112272633885 1.8527820855445754, 102.72037226330389 1.8470820855392702, 102.69927226328423 1.8573640855488378, 102.55330026314829 2.0480540857264344, 102.46747226306837 2.100554085775329, 102.16885426279026 2.220000085886568, 102.10414526272996 2.2686090859318426, 101.9861632626201 2.3900360860449297, 101.93135426256907 2.4152730860684386, 101.849700262493 2.472500086121727, 101.78551826243324 2.5733360862156474, 101.76760926241656 2.586391086227806, 101.69800926235172 2.5947180862355594, 101.54940926221332 2.655000086291693, 101.48163626215023 2.702500086335931, 101.41359126208687 2.802218086428809, 101.36884526204517 2.8236090864487267, 101.31329126199341 2.827782086452615, 101.28573626196777 2.8435450864673015, 101.28135426196371 2.8941640865144365, 101.316072261996 2.953891086570067, 101.36614526204266 2.9913180866049203, 101.37108226204725 3.033054086643787, 101.36629126204281 3.063609086672244, 101.31941826199915 3.126527086730846, 101.30523626198595 3.2322180868292776, 101.29010926197185 3.2748640868689876, 101.23524526192074 3.3387450869284834, 101.19344526188183 3.361045086949261, 101.10899126180317 3.469027087049824, 101.07190926176861 3.5347180871110027, 101.04720026174562 3.605136087176575, 101.02802726172774 3.628054087197924, 100.86858226157926 3.765554087325981, 100.81427226152869 3.77603608733574, 100.8083632615232 3.796664087354955, 100.84412726155648 3.8443360873993555, 100.75720026147553 3.8425000873976387, 100.7037182614257 3.8900000874418765, 100.69704526141953 3.910418087460897, 100.70482726142677 3.982709087528221, 100.724400261445 3.9950000875396654, 100.77858226149544 3.9837450875291864, 100.86850926157922 4.022364087565151, 100.6908002614137 4.155418087689071, 100.62399126135148 4.1626360876957875, 100.60190926133089 4.221664087750767, 100.57220026130324 4.340000087860972, 100.58303626131334 4.399164087916077, 100.59364526132322 4.750973088243725, 100.60552726133426 4.79833608828784, 100.51080026124606 4.8861090883695795, 100.44620926118591 4.913682088395262, 100.40219126114494 4.983891088460652, 100.36231826110776 5.08437308855423, 100.40466326114722 5.120000088587403, 100.43358226117414 5.194164088656478, 100.43080026117156 5.282500088738743, 100.38149126112563 5.51889108895891, 100.34913626109551 5.569164089005724)), ((117.0932632766897 7.29345409061159, 117.14512727673798 7.334027090649386, 117.22220927680979 7.352773090666844, 117.2681822768526 7.343891090658573, 117.28298227686639 7.319445090635796, 117.27831827686202 7.25000009057112, 117.25053627683616 7.179164090505154, 117.14942727674196 7.168609090495323, 117.09817227669424 7.137218090466092, 117.07928227667668 7.105000090436079, 117.0664452766647 7.10507309043615, 117.05192727665116 7.170836090497403, 117.062482276661 7.271664090591301, 117.0932632766897 7.29345409061159)), ((99.8529542606334 6.464154089839255, 99.86954526064886 6.41930908979748, 99.9154542606916 6.387082089767475, 99.92301826069865 6.333609089717669, 99.87162726065077 6.288191089675365, 99.7395632605278 6.248891089638775, 99.65693626045083 6.360836089743032, 99.64220926043714 6.422082089800071, 99.70332726049406 6.426109089803816, 99.74941826053697 6.407773089786744, 99.79413626057863 6.411664089790364, 99.8529542606334 6.464154089839255)), ((111.31183627130531 2.4972180861447555, 111.29331827128806 2.733336086364659, 111.30359127129765 2.7676360863965925, 111.32894527132123 2.780345086408431, 111.35442727134495 2.760000086389482, 111.38165427137034 2.6983360863320627, 111.37691827136592 2.49528208614295, 111.41151827139817 2.3763910860322284, 111.36803627135765 2.359582086016573, 111.35080927134157 2.3719450860280773, 111.30393627129797 2.450000086100772, 111.31183627130531 2.4972180861447555)), ((100.30827226105743 5.446118088891126, 100.32025426106861 5.427773088874048, 100.32469126107276 5.38082708883033, 100.28704526103769 5.254445088712615, 100.20385426096021 5.271109088728139, 100.17969126093772 5.427500088873785, 100.18580026094338 5.462291088906198, 100.26109126101352 5.466945088910521, 100.30827226105743 5.446118088891126)), ((117.68691827724257 4.168336087701107, 117.63889127719784 4.228609087757235, 117.6858092772415 4.259882087786366, 117.76027227731089 4.255282087782078, 117.9035542774443 4.174045087706418, 117.68691827724257 4.168336087701107)), ((117.34274527692202 6.672527090033313, 117.39860027697404 6.676945090037421, 117.4377632770105 6.692636090052034, 117.43859127701131 6.718336090075979, 117.40331827697844 6.723127090080439, 117.40011827697543 6.736809090093175, 117.46790027703861 6.761391090116078, 117.49191827706096 6.74430909010016, 117.51485427708229 6.705836090064338, 117.51277227708039 6.678609090038975, 117.5007452770692 6.663336090024757, 117.43331827700638 6.62833608999216, 117.35068227692943 6.640973090003925, 117.33527227691508 6.658891090020617, 117.34274527692202 6.672527090033313)), ((104.18794526467065 2.8677820864898678, 104.21970026470024 2.7744450864029346, 104.22072726470117 2.7218730863539804, 104.21190926469296 2.7113910863442214, 104.16774526465184 2.705282086338528, 104.14164526462753 2.7308360863623307, 104.12329126461043 2.7816640864096627, 104.16948226465348 2.8925000865128823, 104.18794526467065 2.8677820864898678)), ((116.85693627646958 7.183891090509562, 116.87872727648988 7.274164090593629, 117.00088227660365 7.352918090666975, 117.01749127661913 7.30833609062546, 117.0180452766196 7.266736090586718, 116.87470027648612 7.221809090544866, 116.85693627646958 7.183891090509562)), ((118.39461827790166 4.67604508817395, 118.47886327798011 4.6891640881861605, 118.59602727808925 4.6383360881388285, 118.56817227806329 4.599445088102598, 118.5297092780275 4.600273088103378, 118.34987227786002 4.672045088170222, 118.39461827790166 4.67604508817395))) +MMR Myanmar MULTIPOLYGON (((98.89791825974396 10.776527093855464, 98.78498225963875 10.677500093763229, 98.77527225962973 10.621736093711306, 98.82429125967536 10.51986409361642, 98.67970025954071 10.195827093314648, 98.5514002594212 9.986909093120076, 98.50721825938007 10.156945093278424, 98.53318225940427 10.348891093457198, 98.49727225937079 10.438609093540748, 98.46074525933682 10.728745093810957, 98.52650925939804 10.69666409378108, 98.70942725956837 10.91624509398558, 98.69691825955675 11.137082094191257, 98.7373452595944 11.180136094231344, 98.75804525961365 11.268054094313229, 98.70193625956142 11.375000094412826, 98.74720025960357 11.674854094692094, 98.82985425968053 11.708473094723402, 98.88372725973073 11.697218094712923, 98.78499125963879 11.766945094777853, 98.68998225955028 11.676527094693654, 98.59845425946503 11.749300094761423, 98.6630362595252 11.916391094917046, 98.71978225957804 11.964236094961606, 98.72082725957904 12.01389109500785, 98.65462725951738 12.168664095151996, 98.71042725956931 12.199409095180627, 98.70587225956507 12.224464095203956, 98.68651825954709 12.24192709522022, 98.59720925946391 12.193891095175488, 98.54948225941945 12.208900095189463, 98.53372725940477 12.254636095232058, 98.56805425943674 12.295000095269643, 98.70359125956298 12.340045095311595, 98.604845259471 12.421182095387167, 98.62150925948652 12.558191095514758, 98.68081825954175 12.690836095638304, 98.63526325949931 12.87200909580703, 98.59373625946063 12.915691095847706, 98.58033625944819 13.178327096092318, 98.47470025934979 13.284718096191398, 98.42998225930813 13.476527096370035, 98.28665425917467 13.684164096563407, 98.23414525912574 13.952918096813704, 98.18623625908111 14.05500009690877, 98.1980272590921 13.66194509654271, 98.17712725907268 13.535136096424608, 98.14068225903873 13.538191096427454, 98.07832725898066 13.789309096661327, 98.10359125900419 13.90583609676986, 98.08720925898893 14.17986409702506, 97.98220925889115 14.358327097191278, 97.79725425871885 14.881964097678946, 97.81122725873189 15.152636097931037, 97.74275425866813 15.252218098023775, 97.7361002586619 15.358891098123124, 97.77970925870255 15.426664098186237, 97.72457225865116 15.846664098577392, 97.56970925850698 16.065209098780926, 97.6149822585491 16.114373098826718, 97.64888225858067 16.256664098959234, 97.62067225855441 16.36124509905663, 97.63512725856788 16.49040909917693, 97.73729125866305 16.560764099242448, 97.40692725835532 16.522564099206875, 97.37803625832845 16.495000099181198, 97.20470925816704 16.844718099506906, 97.21430925817594 16.90039109955876, 97.18610025814968 16.89971809955813, 97.15027225811633 17.123882099766902, 97.06164525803376 17.251945099886157, 96.89471825787831 17.382500100007746, 96.87803625786279 17.45000010007061, 96.84220925782944 17.404991100028695, 96.87942725786405 17.3444360999723, 96.84429125783134 17.19117309982957, 96.91248225789485 17.036664099685666, 96.87143625785666 16.92242709957928, 96.80789125779745 16.904436099562517, 96.84664525783353 16.842982099505292, 96.77777225776941 16.703882099375747, 96.59623625760031 16.53874509922194, 96.3774822573966 16.502500099188183, 96.2647092572916 16.597500099276658, 96.22177225725159 16.745964099414934, 96.27661825730269 16.803609099468616, 96.24192725727033 16.803736099468736, 96.19581825722742 16.76639109943396, 96.22817225725754 16.588473099268256, 96.30370025732788 16.462436099150878, 96.26832725729497 16.389718099083154, 96.18275425721527 16.347500099043828, 96.00680925705137 16.38306409907696, 96.0727632571128 16.314927099013502, 96.02192725706544 16.25583609895847, 95.96874525701594 16.21582709892121, 95.88735425694011 16.237354098941253, 95.75332725681534 16.14443609885471, 95.67360025674105 15.961664098684494, 95.4285912565129 15.729718098468481, 95.29207225638572 15.726245098465242, 95.27804525637265 15.790000098524615, 95.36540025645405 15.99194509871269, 95.36060025644957 16.141454098851938, 95.32651825641784 16.103745098816816, 95.3448452564349 15.995554098716056, 95.25783625635387 15.862909098592525, 95.238663256336 15.87582709860456, 95.2738722563688 15.999864098720067, 95.23553625633309 15.940764098665028, 95.21756325631634 15.786318098521193, 95.17351825627532 15.776873098512397, 95.12109125622652 15.824718098556957, 95.10796325621425 16.062354098778272, 95.2242912563226 16.119091098831106, 95.13720925624153 16.137218098847995, 95.06735425617643 16.05332709876987, 95.04060925615153 15.808327098541696, 94.96012725607659 15.753127098490282, 94.84818225597235 15.78215409851731, 94.83581825596082 15.947636098671438, 94.88728225600875 16.017818098736797, 94.86137225598463 16.130554098841785, 94.98851825610302 16.236173098940156, 94.8792912560013 16.190827098897927, 94.84602725597034 16.1287450988401, 94.84027225596498 15.99332709871399, 94.71053625584415 15.847500098578166, 94.65707225579433 15.850827098581277, 94.60595425574672 15.917291098643176, 94.71929125585228 16.000973098721104, 94.7916542559197 16.14866409885866, 94.76068225589086 16.140136098850718, 94.71102725584461 16.017709098736688, 94.62248225576212 15.947773098671561, 94.5637362557074 15.938609098663022, 94.68095425581657 16.12388209883558, 94.68664525582187 16.189582098896764, 94.64277225578104 16.337909099034903, 94.55663625570082 16.270827098972433, 94.51235425565955 16.283218098983966, 94.50749125565505 16.179854098887702, 94.43220925558495 16.06555409878125, 94.25096325541614 15.958891098681917, 94.20193625537047 16.027636098745944, 94.23276325539916 16.35082709904694, 94.34560925550426 16.55250009923475, 94.40623625556071 16.798745099464085, 94.3942912555496 16.84360909950587, 94.52527225567161 17.17332709981295, 94.51165425565893 17.215827099852532, 94.56971825571298 17.501945100118988, 94.6123452557527 17.547427100161357, 94.49386325564234 17.833327100427624, 94.46693625561727 18.003054100585686, 94.48942725563819 18.06486410064325, 94.38332725553943 18.362773100920705, 94.25383625541883 18.534618101080753, 94.23859125540463 18.73777310126995, 94.14027225531305 18.86069110138442, 94.12025425529441 18.811109101338246, 94.03839125521813 18.847082101371754, 94.0577542552362 19.051936101562532, 94.02692725520745 19.143327101647657, 94.05129125523018 19.221564101720517, 94.04070025522032 19.241309101738906, 93.96984525515433 19.143473101647785, 93.87430925506533 19.25597310175256, 93.97824525516216 19.362636101851905, 93.98570925516907 19.457145101939915, 93.90970925509833 19.476936101958344, 93.73297225493371 19.623118102094494, 93.6844182548885 19.71943610218419, 93.60040025481027 19.71749110218238, 93.59956325480948 19.78582710224603, 93.66192725486752 19.876936102330873, 93.72366325492504 19.88110910233476, 93.72435425492569 19.93242710238256, 93.58643625479726 19.879300102333076, 93.48971825470716 19.964209102412156, 93.4131822546359 19.97388210242117, 93.3710912545967 20.041945102484547, 93.13787225437949 20.0657271025067, 93.24296325447733 19.831800102288838, 93.22276325445853 19.82763610228497, 93.13818225437979 19.97635410242347, 93.1005452543447 19.975827102422983, 93.16720925440683 19.802500102261547, 93.12663625436903 19.839300102295823, 92.98192725423422 20.074445102514815, 92.9822002542345 20.123845102560836, 93.05859125430567 20.130000102566555, 93.10915425435275 20.17124510260497, 93.11434525435754 20.21617310264682, 92.99414525424561 20.149300102584533, 93.0820722543275 20.53920010294766, 93.03137225428031 20.469436102882682, 93.00680025425743 20.29569110272088, 92.89097225414952 20.119027102556345, 92.86768225412783 20.11950910255679, 92.76977225403664 20.203227102634756, 92.79060025405607 20.255418102683365, 92.89193625415044 20.322773102746098, 92.79610025406117 20.489991102901826, 92.64432725391981 20.685827103084222, 92.705700253977 20.59198210299681, 92.73720025400632 20.263191102690612, 92.50040925378579 20.61582710301903, 92.38060925367421 20.695200103092944, 92.20582725351147 21.21888210358067, 92.22220925352673 21.358054103710273, 92.26081825356266 21.41443610376278, 92.36011825365512 21.472354103816727, 92.53749125382035 21.3780541037289, 92.58638225386585 21.262564103621344, 92.66609125394012 21.29332710365, 92.60026325387878 21.63416410396742, 92.62046325389758 21.879782104196167, 92.60081825387931 21.982218104291576, 92.6758912539492 22.02513610433155, 92.70632725397758 22.154509104452032, 92.92442725418067 22.005000104312785, 92.99081825424253 22.048609104353403, 93.04699125429482 22.204509104498598, 93.155582254396 22.187845104483074, 93.19789125443538 22.264718104554674, 93.17622725441521 22.44145410471927, 93.11928225436219 22.530282104801998, 93.09275425433748 22.7144361049735, 93.13957225438105 23.04708210528331, 93.20991825444656 23.05124510528718, 93.24735425448142 23.00694510524592, 93.30546325453554 23.01763610525589, 93.34901825457615 23.07110910530568, 93.3878362546123 23.231454105455015, 93.37191825459746 23.35777310557266, 93.42276325464479 23.662491105856446, 93.32922725455768 23.980618106152733, 93.3375182545654 24.071836106237683, 93.40757225463068 24.074536106240203, 93.50011825471682 23.96235410613572, 93.6896822548934 24.015273106185006, 93.76614525496461 24.000273106171036, 93.82262725501721 23.935136106110377, 93.91019125509877 23.955754106129575, 94.14776325532 23.851527106032506, 94.31387225547473 24.285827106436983, 94.4722092556222 24.581664106712495, 94.61831825575825 24.76027310687884, 94.73518225586707 25.032009107131913, 94.72137225585425 25.14000010723248, 94.57847225572112 25.2091641072969, 94.62859125576784 25.401873107476376, 94.68700025582223 25.465900107536, 94.79372725592162 25.49985410756763, 94.88527225600689 25.578609107640972, 94.99637225611036 25.732218107784036, 95.06727225617635 25.9461731079833, 95.16498225626736 26.0368091080677, 95.17508225627677 26.06610910809499, 95.11330925621922 26.138327108162258, 95.06672725617585 26.311664108323683, 95.06589125617506 26.475482108476257, 95.14498225624874 26.616173108607285, 95.23817225633553 26.676245108663224, 95.26159125635735 26.64985410863865, 95.44540025652856 26.712354108696857, 95.50749125658638 26.812909108790507, 95.60612725667823 26.82308210879998, 95.80609125686448 27.00263610896721, 95.91220025696327 27.030827108993464, 96.0295632570726 27.18749110913936, 96.19122725722315 27.269864109216073, 96.49664525750757 27.302218109246212, 96.62191825762426 27.365827109305457, 96.72589125772106 27.36569110930533, 96.82151825781017 27.321527109264196, 96.88206325786655 27.18277310913497, 97.05971825803198 27.09300010905136, 97.13540925810247 27.087218109045978, 97.15900925812446 27.128054109084005, 96.9035912578866 27.457427109390764, 96.89027225787419 27.619718109541907, 97.0466452580198 27.74971810966298, 97.36110025831266 27.940827109840967, 97.38053625833078 27.99138210988805, 97.31685425827146 28.087500109977555, 97.3488722583013 28.222773110103546, 97.41581825836363 28.295000110170804, 97.46888225841303 28.29770911017333, 97.55887225849688 28.546527110405066, 97.70610025863397 28.519027110379454, 97.80463625872574 28.345764110218084, 97.90207225881647 28.378954110248998, 98.02033625892665 28.269300110146872, 98.01634525892291 28.21565411009692, 98.14499125904274 28.148882110034734, 98.14623625904386 28.00832710990383, 98.31991825920562 27.540136109467795, 98.40700025928675 27.55694510948345, 98.45888225933504 27.672500109591056, 98.64610025950941 27.605273109528454, 98.6969912595568 27.529718109458088, 98.68580925954637 27.469300109401814, 98.73574525959293 27.321591109264247, 98.69122725955145 27.208045109158505, 98.77777225963206 26.791664108770718, 98.77845425963267 26.639582108629085, 98.7041542595635 26.24763610826406, 98.7310912595886 26.18471810820546, 98.6790182595401 26.106382108132507, 98.65533625951804 26.10013610812669, 98.6486632595118 26.14784510817111, 98.56944525943806 26.125273108150097, 98.60580925947187 25.989227108023385, 98.71429125957292 25.8925001079333, 98.71040025956933 25.85597310789929, 98.62859125949313 25.803327107850265, 98.54078225941134 25.84489110788897, 98.48256325935711 25.796736107844126, 98.36137225924426 25.569445107632433, 98.30759125919417 25.552354107616523, 98.19108225908565 25.615273107675122, 98.12469125902379 25.390000107465312, 97.94497225885647 25.216173107303433, 97.90894525882288 25.211727107299282, 97.85220025877004 25.266936107350702, 97.82735425874688 25.250900107335767, 97.78942725871156 25.137500107230153, 97.72581825865234 25.064718107162378, 97.7366452586624 24.918882107026562, 97.68941825861845 24.83444510694791, 97.552554258491 24.739927106859895, 97.5430452584821 24.476664106614706, 97.66511825859578 24.44221810658263, 97.75930025868354 24.260554106413437, 97.73637225866219 24.135273106296765, 97.53720925847671 23.948609106122916, 97.6499822585817 23.851700106032666, 97.91249125882621 24.02666410619561, 98.06448225896776 24.089100106253767, 98.44659125932361 24.134954106296462, 98.58653625945396 24.095336106259566, 98.85202725970123 24.130436106292265, 98.89072725973722 24.160073106319857, 98.89747225974355 24.10161810626542, 98.67990925954092 23.970754106143545, 98.68748225954795 23.816391105999784, 98.81717225966872 23.760727105947936, 98.85276325970187 23.637773105833432, 98.80664525965892 23.541736105743993, 98.82790025967876 23.480482105686946, 98.88741825973415 23.473045105680015, 98.91532725976015 23.412491105623616, 98.92747225977149 23.189164105415628, 99.10414525993599 23.10388210533621, 99.35776326017219 23.13422710536446, 99.51130026031518 23.08204510531587, 99.56484526036508 22.936591105180398, 99.44247226025112 22.869991105118373, 99.34457226015991 22.70999110496936, 99.38457226019716 22.506945104780257, 99.29324526011214 22.404854104685185, 99.16784525999532 22.15591810445335, 99.24110026006355 22.112500104412902, 99.36678226018063 22.093473104395187, 99.46554526027256 22.13582710443464, 99.65984526045355 22.08735410438949, 99.70915426049947 22.039718104345127, 99.74393626053188 22.073745104376812, 99.95740926073069 22.050182104354874, 99.99039126076138 21.964373104274955, 99.9422002607165 21.821245104141653, 99.9776272607495 21.72554510405253, 100.14137226090202 21.63416410396742, 100.10760926087056 21.58513610392177, 100.12026326088233 21.514509103855985, 100.20568226096191 21.435464103782365, 100.37317226111787 21.53819110387805, 100.42650026116752 21.52944510386989, 100.47727226121481 21.462145103807217, 100.57220926130327 21.4523541037981, 100.63970926136614 21.47693610382099, 100.72123626144202 21.511109103852817, 100.83581826154875 21.646664103979063, 101.09900926179387 21.769027104093027, 101.12056326181397 21.770518104094407, 101.16942726185943 21.60367310393903, 101.12720026182012 21.490827103833936, 101.00136326170292 21.39832710374779, 100.83915426155187 21.30430010366021, 100.72720926144763 21.307809103663487, 100.67191826139612 21.12805410349607, 100.62456326135202 21.054718103427774, 100.54677226127956 21.026109103401126, 100.52068226125527 20.951936103332045, 100.52171826125624 20.876664103261945, 100.64252726136874 20.88489110326961, 100.64054526136687 20.86173610324805, 100.5261002612603 20.804582103194818, 100.37171826111654 20.826182103214933, 100.25874526101131 20.749027103143078, 100.17276326093122 20.627909103030277, 100.09137226085545 20.348609102770155, 100.01999126078897 20.383327102802497, 99.96262726073553 20.454582102868855, 99.87366326065268 20.428882102844923, 99.78831826057319 20.329718102752565, 99.66999126046301 20.311382102735493, 99.52845426033116 20.350136102771586, 99.50220926030676 20.30889110273317, 99.55483626035573 20.2028451026344, 99.53956326034154 20.153745102588672, 99.45207226026002 20.096936102535764, 99.33192726014812 20.067082102507968, 99.1930362600188 20.12680010256358, 99.07909125991267 20.0984731025372, 99.04192725987804 20.042773102485327, 99.03818225987459 19.857218102312515, 99.00047225983946 19.784436102244726, 98.89110925973762 19.776109102236973, 98.83818225968832 19.81500010227319, 98.47602725935104 19.693673102160204, 98.24220025913326 19.689991102156768, 98.13943625903755 19.78305410224344, 98.04935425895366 19.804791102263692, 98.03595425894116 19.647773102117455, 97.86908225878574 19.57017310204519, 97.7923452587143 19.39888210188566, 97.83415425875324 19.290000101784244, 97.83179125875102 19.098673101606067, 97.6798362586095 18.93214510145097, 97.74622725867135 18.86750010139076, 97.7756822586988 18.57235410111589, 97.44664525839232 18.49630910104507, 97.35408225830611 18.575209101118546, 97.34727225829977 18.542218101087826, 97.49790925844007 18.279164100842834, 97.53893625847832 18.27548210083941, 97.55436325849269 18.31958210088048, 97.58610025852221 18.326664100887072, 97.64335425857553 18.28048210084407, 97.62095425855466 18.225482100792846, 97.75110925867591 17.974854100559426, 97.68727225861642 17.867709100459635, 97.77831825870123 17.703327100306552, 97.96887225887872 17.52832710014357, 98.11886325901838 17.313882099943854, 98.37469125925662 17.0505540996986, 98.42360025930219 17.053327099701193, 98.51110925938372 16.941109099596673, 98.54999125941993 16.85471809951622, 98.48001825935472 16.738954099408403, 98.66207225952428 16.459854099148473, 98.69122725955145 16.28305409898381, 98.71457225957317 16.275554098976826, 98.86499125971329 16.438609099128684, 98.92120025976561 16.395345099088388, 98.91595425976072 16.261391098963642, 98.85776325970653 16.141036098851544, 98.81233625966422 16.104854098817853, 98.69886325955855 16.129300098840616, 98.63165425949597 16.04610909876314, 98.56526325943412 15.722773098462014, 98.59610025946284 15.452364098210168, 98.58179125944952 15.357909098122207, 98.56296325943197 15.334582098100483, 98.50054525937384 15.387500098149758, 98.42393625930254 15.360482098124606, 98.39776325927812 15.271109098041364, 98.20547225909905 15.226782098000086, 98.20110025909497 15.07500009785872, 98.26208225915178 14.811800097613599, 98.32540925921074 14.715000097523443, 98.46804525934357 14.57832709739617, 98.61470025948017 14.32215409715758, 98.9738722598147 14.07916409693128, 99.17396326000102 13.727782096604031, 99.21388226003819 13.234718096144832, 99.20338226002843 13.203582096115838, 99.12491825995534 13.179236096093163, 99.11240925994372 13.061109095983142, 99.23900926006161 12.73471809567917, 99.43623626024527 12.57443609552989, 99.45555426026328 12.298609095273008, 99.49970926030443 12.188327095170308, 99.5702632603701 12.138745095124122, 99.55663626035744 12.01583609500966, 99.58421826038312 11.884445094887283, 99.65734526045122 11.82645409483328, 99.63818226043338 11.741809094754444, 99.56011826036064 11.630482094650773, 99.46554526027256 11.568327094592888, 99.21331826003768 11.099164094155938, 99.04887225988455 10.958054094024519, 98.89791825974396 10.776527093855464)), ((93.87039125506169 19.254654101751328, 93.98526325516866 18.95930010147626, 93.94220025512857 18.862500101386104, 93.7027722549056 19.014718101527876, 93.49929125471607 19.306800101799894, 93.4833182547012 19.38638210187402, 93.5472002547607 19.428473101913212, 93.61095425482006 19.400827101887472, 93.6683182548735 19.295827101789683, 93.74192725494203 19.24943610174647, 93.81845425501331 19.230973101729276, 93.87039125506169 19.254654101751328)), ((93.96728225515193 19.36935410185815, 93.9044362550934 19.300554101794077, 93.79733625499364 19.26937310176504, 93.66026325486598 19.447491101930922, 93.65164525485795 19.5136091019925, 93.68122725488553 19.558745102034536, 93.73749125493794 19.549164102025614, 93.9616542551467 19.428609101913338, 93.96728225515193 19.36935410185815)), ((98.31231825919855 12.36848209533808, 98.33360025921837 12.453327095417109, 98.3005362591876 12.632709095584161, 98.32192725920748 12.671109095619926, 98.44887225932575 12.604582095557973, 98.46775425934334 12.500000095460564, 98.3598362592428 12.32389109529656, 98.30498225919172 12.33374509530573, 98.31231825919855 12.36848209533808)), ((94.6480272557859 16.2450270989484, 94.67081825580715 16.184436098891965, 94.65138225578903 16.114436098826772, 94.58485425572707 16.011527098730937, 94.41581825556966 15.868054098597312, 94.38150925553771 15.984445098705706, 94.46500025561545 16.037218098754863, 94.6480272557859 16.2450270989484)), ((93.63807225484533 18.887182101409095, 93.74790025494764 18.87069110139373, 93.75582725495502 18.731664101264258, 93.70582725490846 18.669027101205927, 93.63555425484299 18.684582101220414, 93.48942725470687 18.85250010137679, 93.48935425470683 18.873536101396382, 93.63807225484533 18.887182101409095)), ((98.41331825929262 11.61087309463251, 98.37498225925691 11.677218094694297, 98.37025425925253 11.783745094793503, 98.54164525941212 11.798473094807221, 98.54602725941623 11.609791094631504, 98.49831825937179 11.566109094590814, 98.4273452593057 11.560691094585763, 98.41331825929262 11.61087309463251)), ((97.51862725845939 16.505336099190828, 97.61665425855068 16.46527309915352, 97.55748225849555 16.23082709893518, 97.50220925844411 16.25583609895847, 97.4658182584102 16.318054099016408, 97.44845425839401 16.44500009913463, 97.46720025841148 16.486873099173636, 97.51862725845939 16.505336099190828)), ((98.16554525906184 11.453327094485786, 98.2701362591593 11.794718094803727, 98.2912362591789 11.79708209480593, 98.32027225920598 11.725900094739629, 98.28081825916922 11.481664094512169, 98.20999125910328 11.444582094477639, 98.16554525906184 11.453327094485786)), ((98.51900025939102 12.000000094994903, 98.57304525944136 11.99055409498611, 98.65999125952237 11.933054094932558, 98.47915425935395 11.887218094889874, 98.4388632593164 12.006664095001113, 98.43858225931615 12.111391095098654, 98.51900025939102 12.000000094994903)), ((98.28384525917204 10.72527309380773, 98.26679125915615 10.690691093775513, 98.23165425912345 10.689864093774744, 98.24039125913157 10.825000093900599, 98.1547092590518 10.922636093991528, 98.07700025897941 10.887218093958552, 98.13985425903792 10.975554094040817, 98.21220025910532 10.947773094014948, 98.28384525917204 10.72527309380773)), ((98.28361825917182 10.006973093138754, 98.17595425907155 9.924445093061891, 98.13602725903439 9.839582092982866, 98.11462725901447 9.859582093001492, 98.11581825901555 9.916109093054132, 98.17511825907076 10.01444509314571, 98.25721825914724 10.057218093185554, 98.28942725917722 10.05368209318226, 98.28361825917182 10.006973093138754)), ((93.41990925464216 19.95057310239946, 93.49860025471543 19.880554102334244, 93.51150925472746 19.744509102207545, 93.43776325465876 19.7994451022587, 93.39610025461997 19.926664102377188, 93.41990925464216 19.95057310239946)), ((97.9876362588962 12.291382095266286, 97.9372002588492 12.340691095312195, 97.94941825886059 12.380000095348805, 98.07693625897934 12.416391095382707, 98.10526325900571 12.398473095366015, 98.00555425891287 12.281945095257484, 97.9876362588962 12.291382095266286)), ((92.79052725405597 20.43815410285356, 92.86026325412092 20.325827102748946, 92.84275425410465 20.299718102724626, 92.76852725403552 20.29729110272237, 92.7636002540309 20.432427102848223, 92.79052725405597 20.43815410285356)), ((98.0660272589692 12.171445095154581, 98.03442725893973 12.21582709519592, 98.05748225896122 12.281045095256658, 98.12101825902039 12.28020909525587, 98.1390822590372 12.142082095127236, 98.0660272589692 12.171445095154581))) +SGP Singapore MULTIPOLYGON (((103.99053626448682 1.3832910851073308, 103.9979452644937 1.369864085094818, 103.99413626449018 1.3552820850812424, 103.98497226448166 1.3441640850708865, 103.95997226445837 1.3208360850491658, 103.84191826434841 1.259027084991601, 103.79830926430776 1.259445084991981, 103.6469182641668 1.3046540850340875, 103.64094526416125 1.3183360850468375, 103.6433092641634 1.3313910850589963, 103.6710822641893 1.3931910851165412, 103.6777452641955 1.4036090851262486, 103.68440026420171 1.4111090851332335, 103.69913626421544 1.423609085144875, 103.71359126422891 1.4294450851503058, 103.80413626431323 1.4450000851647928, 103.81720026432538 1.4452820851650614, 103.82941826433677 1.4436090851635015, 103.84830926435433 1.4347180851552253, 103.8794092643833 1.417218085138927, 103.89400926439691 1.4075000851298682, 103.96774526446558 1.3872180851109874, 103.99053626448682 1.3832910851073308))) +THA Thailand MULTIPOLYGON (((101.69954526235318 5.760973089184361, 101.65857226231498 5.821736089240957, 101.65940926231576 5.85062708926786, 101.6064912622665 5.905273089318754, 101.57101826223345 5.915209089328002, 101.31190026199215 5.807218089227433, 101.22322726190953 5.670973089100542, 101.14232726183423 5.6334730890656175, 100.99114526169342 5.794309089215403, 101.042254261741 5.90180908931552, 101.09566326179078 5.923954089336149, 101.1192002618127 5.990273089397917, 101.099136261794 6.118891089517703, 101.11426326180805 6.182464089576911, 101.11204526180603 6.250691089640441, 101.00970026171069 6.269445089657907, 100.95206326165703 6.240827089631267, 100.85323626156497 6.243891089634118, 100.85441826156608 6.322500089707319, 100.82816326154165 6.42777308980537, 100.75136326147009 6.50277308987522, 100.65663626138189 6.4486820898248425, 100.3874822611312 6.536109089906262, 100.3351722610825 6.586109089952828, 100.30024526104995 6.69979109005871, 100.26413626101635 6.706664090065104, 100.21498226097054 6.711109090069243, 100.19406326095105 6.697427090056507, 100.17454526093292 6.62236408998659, 100.19274526094983 6.575282089942746, 100.16844526092723 6.470836089845477, 100.12710926088874 6.424945089802733, 100.0901822608543 6.533436089903773, 100.05843626082475 6.511627089883461, 100.01469126078399 6.551945089921006, 99.92940926070457 6.686391090046229, 99.84720026062803 6.777218090130816, 99.78983626057459 6.8238910901742855, 99.70846326049883 6.8486090901973, 99.68387226047594 6.882782090229128, 99.68268226047479 7.031454090367589, 99.7456822605335 7.117918090448114, 99.734418260523 7.13028209045963, 99.68776326047953 7.111527090442166, 99.58457226038342 7.142573090471075, 99.53553626033778 7.235273090557413, 99.39082726020303 7.301664090619241, 99.34025426015592 7.376809090689221, 99.34741826016256 7.438127090746335, 99.259809260081 7.655800090949057, 99.13053625996059 7.733745091021646, 99.10706325993874 7.694927090985502, 99.03707225987353 7.707218090996946, 99.01735425985515 7.816664091098872, 99.0363722598729 7.895000091171823, 98.95693625979891 7.975827091247112, 98.88318225973023 8.014718091283328, 98.84026325969023 7.996109091265993, 98.77193625962661 8.018473091286822, 98.74359125960024 8.079445091343601, 98.73998225959684 8.221800091476183, 98.69761825955737 8.304027091552769, 98.65137225951435 8.279718091530128, 98.62122725948626 8.284100091534214, 98.63429125949841 8.359509091604437, 98.65588225951853 8.379927091623458, 98.61804525948327 8.382218091625589, 98.54637225941656 8.35708209160218, 98.44372725932095 8.2980540915472, 98.46810925934363 8.22555409147968, 98.43629125931403 8.147982091407442, 98.38554525926673 8.137218091397415, 98.31693625920286 8.208054091463381, 98.27415425916303 8.274445091525209, 98.19387225908827 8.5540270917856, 98.22442725911668 8.611391091839025, 98.2608182591506 8.853882092064865, 98.33915425922356 9.010554092210768, 98.35138225923492 9.114718092307783, 98.32804525921318 9.207500092394184, 98.3861092592673 9.323891092502592, 98.45254525932916 9.548682092711942, 98.56261825943164 9.734164092884683, 98.5424822594129 9.806391092951955, 98.54664525941678 9.87805409301869, 98.57470925944295 9.908609093047147, 98.69802725955776 10.170554093291102, 98.75942725961494 10.409718093513845, 98.82429125967536 10.51986409361642, 98.77527225962973 10.621736093711306, 98.78498225963875 10.677500093763229, 98.86848225971653 10.773364093852521, 98.89791825974396 10.776527093855464, 99.04887225988455 10.958054094024519, 99.11067225994208 11.01333609407601, 99.1670722599946 11.042427094103104, 99.21331826003768 11.099164094155938, 99.32443626014117 11.278891094323328, 99.46554526027256 11.568327094592888, 99.56011826036064 11.630482094650773, 99.63818226043338 11.741809094754444, 99.65734526045122 11.82645409483328, 99.62872726042457 11.833054094839426, 99.58421826038312 11.884445094887283, 99.55663626035744 12.01583609500966, 99.5702632603701 12.138745095124122, 99.49970926030443 12.188327095170308, 99.45555426026328 12.298609095273008, 99.42886326023842 12.498882095459535, 99.43623626024527 12.57443609552989, 99.30525426012332 12.665273095614495, 99.23900926006161 12.73471809567917, 99.11240925994372 13.061109095983142, 99.12491825995534 13.179236096093163, 99.15457225998296 13.197918096110556, 99.20338226002843 13.203582096115838, 99.21388226003819 13.234718096144832, 99.2166542600408 13.412082096310016, 99.16914525999653 13.63471809651736, 99.17396326000102 13.727782096604031, 99.12929125995942 13.771664096644898, 99.0363722598729 13.934718096796757, 98.9738722598147 14.07916409693128, 98.61470025948017 14.32215409715758, 98.46804525934357 14.57832709739617, 98.32540925921074 14.715000097523443, 98.26208225915178 14.811800097613599, 98.24748225913817 14.874027097671558, 98.25206325914246 14.928327097722132, 98.21615425910898 14.99384509778315, 98.20110025909497 15.07500009785872, 98.20547225909905 15.226782098000086, 98.23429125912588 15.22118209799487, 98.39776325927812 15.271109098041364, 98.4202542592991 15.284164098053523, 98.42393625930254 15.360482098124606, 98.50054525937384 15.387500098149758, 98.55212725942192 15.357082098121438, 98.56296325943197 15.334582098100483, 98.58179125944952 15.357909098122207, 98.59610025946284 15.452364098210168, 98.56540025943428 15.607636098354789, 98.57557225944373 15.6618820984053, 98.56526325943412 15.722773098462014, 98.63165425949597 16.04610909876314, 98.67928225954034 16.120827098832734, 98.69886325955855 16.129300098840616, 98.78928225964279 16.118400098830463, 98.81233625966422 16.104854098817853, 98.85776325970653 16.141036098851544, 98.91595425976072 16.261391098963642, 98.92120025976561 16.395345099088388, 98.86499125971329 16.438609099128684, 98.71457225957317 16.275554098976826, 98.69122725955145 16.28305409898381, 98.66207225952428 16.459854099148473, 98.56360025943258 16.63082709930771, 98.48001825935472 16.738954099408403, 98.54999125941993 16.85471809951622, 98.51110925938372 16.941109099596673, 98.42360025930219 17.053327099701193, 98.37469125925662 17.0505540996986, 98.2727632591617 17.17388209981347, 98.11886325901838 17.313882099943854, 97.96887225887872 17.52832710014357, 97.8509632587689 17.623473100232175, 97.77831825870123 17.703327100306552, 97.68727225861642 17.867709100459635, 97.70699125863479 17.92819110051596, 97.74394525866921 17.9548541005408, 97.75110925867591 17.974854100559426, 97.68719125861634 18.12860910070262, 97.62095425855466 18.225482100792846, 97.64335425857553 18.28048210084407, 97.61845425855233 18.315000100876205, 97.58610025852221 18.326664100887072, 97.55436325849269 18.31958210088048, 97.53893625847832 18.27548210083941, 97.51929125845999 18.266391100830944, 97.49790925844007 18.279164100842834, 97.45095425839634 18.336873100896582, 97.4459452583917 18.390827100946836, 97.39360025834293 18.49346410104242, 97.34727225829977 18.542218101087826, 97.3622912583138 18.579654101122685, 97.3684542583195 18.558191101102693, 97.44664525839232 18.49630910104507, 97.50665425844824 18.49610910104488, 97.55137225848989 18.507082101055104, 97.62691825856024 18.555273101099985, 97.7756822586988 18.57235410111589, 97.78151825870424 18.678464101214715, 97.74622725867135 18.86750010139076, 97.6798362586095 18.93214510145097, 97.74720025867225 19.03152710154353, 97.83179125875102 19.098673101606067, 97.84180925876035 19.20710010170704, 97.83415425875324 19.290000101784244, 97.7923452587143 19.39888210188566, 97.86638225878323 19.521664102000003, 97.86908225878574 19.57017310204519, 97.90748225882152 19.574718102049417, 98.03595425894116 19.647773102117455, 98.02873625893443 19.713954102179088, 98.04935425895366 19.804791102263692, 98.07471825897727 19.809300102267883, 98.13943625903755 19.78305410224344, 98.21527225910819 19.72638210219067, 98.24220025913326 19.689991102156768, 98.47602725935104 19.693673102160204, 98.64915425951227 19.741936102205145, 98.83818225968832 19.81500010227319, 98.89110925973762 19.776109102236973, 98.94581825978855 19.771109102232316, 99.00047225983946 19.784436102244726, 99.03818225987459 19.857218102312515, 99.0227632598602 19.924300102374985, 99.04192725987804 20.042773102485327, 99.07909125991267 20.0984731025372, 99.1930362600188 20.12680010256358, 99.24386326006612 20.11721810255466, 99.33192726014812 20.067082102507968, 99.45207226026002 20.096936102535764, 99.53956326034154 20.153745102588672, 99.55483626035573 20.2028451026344, 99.50220926030676 20.30889110273317, 99.52845426033116 20.350136102771586, 99.66999126046301 20.311382102735493, 99.78831826057319 20.329718102752565, 99.81568226059869 20.34040910276252, 99.87366326065268 20.428882102844923, 99.96262726073553 20.454582102868855, 100.01999126078897 20.383327102802497, 100.09137226085545 20.348609102770155, 100.10526326086836 20.30943610273367, 100.16554526092449 20.291936102717372, 100.26089126101328 20.38610910280508, 100.34331826109008 20.38221810280146, 100.45786326119674 20.188082102620655, 100.5210272612556 20.145827102581308, 100.58046326131091 20.15777310259243, 100.50623626124178 19.87853610233236, 100.4112362611533 19.77180010223296, 100.40499126114753 19.749027102211755, 100.44553626118528 19.62777310209883, 100.49088226122751 19.53777310201501, 100.51639126125127 19.518891101997426, 100.58495426131509 19.49397310197422, 100.61302726134124 19.538191102015404, 100.64088226136721 19.550618102026974, 100.75533626147381 19.507909101987195, 100.77388226149105 19.485754101966563, 100.91220026161989 19.619718102091326, 101.03220026173165 19.619164102090807, 101.08610926178187 19.590273102063904, 101.22510926191131 19.594382102067726, 101.27908226196155 19.56624510204152, 101.2851272619672 19.520554101998968, 101.26436326194789 19.474373101955962, 101.21585426190268 19.461491101943963, 101.20247226189025 19.35388210184375, 101.28998226197172 19.106109101612986, 101.35346326203086 19.044373101555493, 101.25394526193816 18.89479110141619, 101.23692726192229 18.741382101273317, 101.26797226195123 18.684582101220414, 101.18011826186938 18.56013610110452, 101.10699126180128 18.51874510106596, 101.0578272617555 18.441591100994103, 101.05900026175658 18.418609100972702, 101.0958182617909 18.373954100931115, 101.1545722618456 18.345000100904144, 101.17665426186619 18.175273100746082, 101.17081826186075 18.087218100664074, 101.11373626180756 17.957082100542877, 101.0288092617285 17.897982100487837, 100.98970026169206 17.806109100402267, 100.98055426168355 17.76305410036217, 100.98845426169089 17.732073100333324, 100.9534542616583 17.64971810025662, 100.91122726161899 17.599445100209792, 100.92216326162918 17.5689541001814, 100.98790026169041 17.561527100174487, 101.0334542617328 17.541245100155592, 101.0757542617722 17.499854100117048, 101.15970926185042 17.460754100080635, 101.30970926199012 17.624718100233338, 101.58106326224282 17.797354100394116, 101.55970926222295 17.81383610040946, 101.57720926223925 17.86006410045252, 101.68914526234346 17.905827100495145, 101.74165426239239 17.97277310055749, 101.76193626241127 18.038327100618545, 101.78414526243193 18.06353610064201, 101.88505426252595 18.031391100612083, 101.91067226254978 18.036800100617114, 102.04776326267745 18.191664100761344, 102.08939126271622 18.21498210078306, 102.17998226280059 18.190964100760695, 102.29914526291157 18.047636100627216, 102.42373626302759 17.981936100566017, 102.54414526313974 17.971664100556453, 102.60421826319572 17.946800100533295, 102.61068226320174 17.886727100477344, 102.68359126326965 17.8200001004152, 102.73055426331337 17.883054100473927, 102.8586002634326 17.9747181005593, 102.94650926351449 18.005973100588406, 103.01589126357908 17.979991100564206, 103.04712726360822 17.99700910058006, 103.06840926362804 18.02882710060969, 103.06941826362896 18.123027100697428, 103.14082726369548 18.16527310073677, 103.25665426380334 18.27500010083895, 103.24220026378987 18.36540910092316, 103.30109126384474 18.419027100973096, 103.39721826393423 18.434991100987958, 103.50776326403718 18.421664100975548, 103.84248226434892 18.311109100872585, 103.9761542644734 18.32687310088727, 104.07192726456259 18.199718100768848, 104.10179126459042 18.10943610068476, 104.21575426469656 17.989018100572622, 104.2663822647437 17.86500010045711, 104.33553626480813 17.826382100421156, 104.46137226492533 17.649300100256227, 104.69205426514014 17.528536100143754, 104.80554526524583 17.381936100007223, 104.80914526524919 17.19027309982873, 104.79749126523836 17.1333270997757, 104.74108226518581 17.01069109966147, 104.76873626521154 16.724718099395147, 104.74261826518722 16.566245099247553, 104.7495722651937 16.52444509920862, 105.01250026543858 16.251664098954578, 105.0448542654687 16.13290909884398, 105.08067226550207 16.09500009880867, 105.18887226560287 16.056382098772715, 105.42271826582066 16.00937309872893, 105.4297452658272 16.000464098720627, 105.38554526578599 15.989927098710822, 105.34595426574913 15.92603609865131, 105.40109126580052 15.807218098540659, 105.44233626583889 15.76131809849791, 105.50775426589985 15.766527098502763, 105.60386326598933 15.720064098459488, 105.63929126602233 15.6394450983844, 105.59999126598575 15.433054098192187, 105.53707226592712 15.395273098157006, 105.47470026586905 15.174718097951597, 105.47116326586575 15.110209097891513, 105.59055426597695 15.00055409778939, 105.56638226595442 14.88305409767996, 105.51596326590749 14.815554097617095, 105.5354002659256 14.563891097382722, 105.44442726584083 14.450554097277163, 105.29749126570402 14.36944509720162, 105.22560926563705 14.342354097176397, 105.19314526560686 14.34965409718319, 105.14824526556504 14.249927097090321, 105.12137226554 14.230827097072535, 105.08213626550344 14.21895409706147, 105.04117226546532 14.238473097079648, 104.9984542654255 14.317354097153114, 105.00335426543006 14.377327097208962, 104.80900926524907 14.447636097274454, 104.64414526509552 14.429582097257637, 104.58373626503925 14.36937309720156, 104.55303626501069 14.362773097195415, 104.47533626493833 14.35714509719017, 104.28358226475973 14.407773097237325, 104.12372726461086 14.384582097215727, 104.0360272645292 14.347845097181505, 103.9222092644232 14.339164097173423, 103.72276326423741 14.390273097221026, 103.6937272642104 14.438536097265967, 103.65914526417816 14.447773097274577, 103.56456326409011 14.423054097251551, 103.47122726400318 14.373609097205502, 103.27388226381936 14.35347309718675, 103.24426326379177 14.335291097169815, 103.14388226369829 14.317218097152988, 103.06373626362364 14.272427097111276, 103.02380026358645 14.227982097069884, 102.96277226352964 14.206391097049774, 102.93539126350413 14.168609097014581, 102.93970026350814 14.145691096993232, 102.90248226347347 14.036664096891698, 102.79525426337364 13.941391096802974, 102.72207226330545 13.765000096638687, 102.56553626315969 13.681182096560633, 102.56692726316095 13.646664096528482, 102.59901826319089 13.615136096499128, 102.54101826313683 13.570554096457599, 102.43941826304223 13.56221809644984, 102.37720026298427 13.573891096460713, 102.35984526296812 13.496945096389041, 102.34650926295569 13.281736096188624, 102.49248226309163 12.976664095904496, 102.53380926313014 12.798400095738472, 102.50680026310499 12.736945095681236, 102.50360026310199 12.685482095633319, 102.52290026312 12.65777309560751, 102.57011826316392 12.644791095595423, 102.63373626322317 12.602909095556413, 102.77942726335885 12.451945095415809, 102.78778226336664 12.415854095382201, 102.7477542633294 12.373682095342929, 102.71727226330097 12.166318095149805, 102.84642726342128 11.839791094845708, 102.9153912634855 11.745691094758058, 102.91609126348618 11.63585409465577, 102.90413626347504 11.740273094753022, 102.80362726338143 11.874982094878476, 102.76262726334323 12.027918095020908, 102.64151826323047 12.175000095157884, 102.5955452631876 12.203882095184795, 102.55712726315187 12.202427095183438, 102.52192726311904 12.116664095103559, 102.33777226294757 12.195273095176773, 102.31915426293023 12.29221809526706, 102.36408226297203 12.344582095315829, 102.35574526296432 12.358673095328953, 102.33777226294757 12.360691095330822, 102.34206326295157 12.335273095307159, 102.31178226292337 12.310691095284255, 102.26526326288001 12.29805409527249, 102.24346326285973 12.306527095280387, 102.06811826269643 12.48561809544718, 102.06067226268948 12.566245095522262, 102.01942726265105 12.563609095519809, 101.9466362625833 12.525000095483847, 101.89234526253273 12.572082095527705, 101.85977226250236 12.641773095592612, 101.75658226240625 12.705000095651485, 101.68691826234141 12.696391095643477, 101.65164526230853 12.650827095601045, 101.38193626205737 12.609164095562235, 101.26250026194612 12.653609095603628, 101.10915426180333 12.675273095623808, 100.9752182616786 12.64092709559182, 100.97067226167434 12.604300095557704, 100.93220926163855 12.611391095564315, 100.85386326156555 12.682773095630793, 100.83915426155187 12.701391095648134, 100.84325426155567 12.736800095681104, 100.86885426157954 12.767773095709956, 100.91998226162713 12.984445095911738, 100.90165426161008 13.072218095993492, 100.94261826164819 13.197845096110484, 100.91436326162193 13.291600096197811, 100.9308092616372 13.334718096237964, 100.98019126168322 13.357909096259561, 100.98817226169064 13.383891096283762, 100.97634526167963 13.462809096357262, 100.84872726156078 13.47124509636511, 100.5791632613097 13.519164096409739, 100.46781826120605 13.491618096384087, 100.22220926097731 13.468327096362401, 100.05936326082565 13.415973096313635, 99.95679126073009 13.291073096197309, 100.00178226077202 13.210973096122714, 100.07319126083848 13.148609096064632, 100.1040092608672 13.04471809596788, 100.04553626081275 12.955554095884835, 99.97012726074252 12.743191095687052, 99.96165426073463 12.674445095623028, 99.97435426074645 12.461109095424348, 100.00694526077683 12.343891095315186, 100.02081826078972 12.194645095176185, 99.97164526074391 12.089718095078467, 99.86511826064469 11.983054094979124, 99.82666326060888 11.901945094903581, 99.82330026060578 11.784709094794408, 99.73734526052573 11.690554094706712, 99.64026326043529 11.514445094542694, 99.60941826040658 11.39221809442887, 99.49192726029713 11.115554094171202, 99.51298226031679 11.040482094101293, 99.49504526030006 10.969300094034992, 99.50054526030516 10.926527093995162, 99.48275426028863 10.88527309395674, 99.41610026022653 10.76500009384472, 99.3217912601387 10.653745093741108, 99.24109126006357 10.522918093619268, 99.2388722600615 10.463191093563637, 99.19497226002062 10.37221809347892, 99.15081825997947 10.364718093471936, 99.15421825998266 10.308818093419873, 99.1930362600188 10.200554093319042, 99.15601825998431 10.127427093250944, 99.1505452599792 10.083327093209874, 99.16900925999641 9.849164092991785, 99.1443822599735 9.790973092937591, 99.14749125997639 9.763336092911857, 99.17637226000329 9.641527092798412, 99.30303626012125 9.385273092559757, 99.23015426005338 9.337218092515002, 99.23720926005996 9.257291092440568, 99.26846326008905 9.218609092404535, 99.44505426025353 9.192500092380214, 99.47623626028252 9.200273092387462, 99.57970926037893 9.269164092451618, 99.70749126049793 9.318327092497412, 99.79790026058214 9.316109092495338, 99.84540026062638 9.30040909248072, 99.9188722606948 8.97221809217507, 99.95860026073177 8.625273091851952, 99.98727226075846 8.574718091804868, 100.05095426081778 8.520136091754026, 100.10440926086756 8.414718091655857, 100.16038226091973 8.381245091624677, 100.18608226094364 8.39860909164085, 100.1794092609374 8.468054091705525, 100.13849126089934 8.518536091752537, 100.17246326093095 8.506809091741616, 100.23801826099202 8.406664091648352, 100.26997226102179 8.311245091559485, 100.29608226104608 8.109718091371803, 100.43366326117422 7.5000730908040225, 100.50359126123936 7.316391090632962, 100.57809126130871 7.220136090543306, 100.56989126130111 7.192573090517641, 100.54191826127504 7.1987450905233885, 100.43885426117907 7.286109090604754, 100.37969126112398 7.54560909084644, 100.29239126104267 7.780000091064721, 100.26761826101955 7.793054091076883, 100.20761826096367 7.7773640910622674, 100.1503912609104 7.7272180910155726, 100.14636326090664 7.703891090993849, 100.15163626091157 7.625973090921278, 100.18288226094069 7.515554090818441, 100.26608226101814 7.378336090690652, 100.31513626106386 7.340000090654939, 100.36607226111124 7.3276360906434235, 100.39206326113549 7.208054090532059, 100.424827261166 7.157773090485236, 100.53837226127172 7.130764090460076, 100.58482726131501 7.170627090497206, 100.5905452613203 7.209118090533053, 100.77719126149418 6.969445090309833, 100.91636326162376 6.915836090259916, 101.02552726172541 6.847218090196009, 101.35818226203526 6.875936090222751, 101.33374526201249 6.91527309025939, 101.294545261976 6.9355540902782735, 101.33638226201492 6.933891090276731, 101.54553626220974 6.848473090197174, 101.56998226223249 6.826391090176614, 101.78678226243443 6.477082089851294, 102.01844526265018 6.28513608967252, 102.09522726272166 6.236136089626896, 102.09052726271727 6.154164089550548, 101.94372726258058 5.956527089366489, 101.94405426258089 5.867082089283187, 101.82609126247104 5.740973089165735, 101.80071826244739 5.745973089170391, 101.74635426239678 5.789164089210615, 101.69954526235318 5.760973089184361)), ((98.33276325921759 8.162191091420667, 98.34304525922715 8.108891091371035, 98.40192725928199 8.081391091345424, 98.41863625929756 7.997454091267244, 98.40006325928027 7.979109091250166, 98.39984525928008 7.941754091215373, 98.41393625929322 7.9046180911807795, 98.44108225931848 7.906109091182174, 98.43637225931411 7.871664091150095, 98.30907225919555 7.757218091043512, 98.28387225917209 7.787773091071969, 98.27192725916092 7.9222180911971805, 98.28207225917038 8.183327091440361, 98.30345425919029 8.185209091442104, 98.33276325921759 8.162191091420667)), ((102.42645426303017 12.000000094994903, 102.4469002630492 11.973264094970006, 102.43453626303767 11.953327094951447, 102.31440926292578 11.956945094954804, 102.29135426290435 11.974445094971102, 102.25193626286762 12.150691095135244, 102.3162272629275 12.137918095123354, 102.35400026296264 12.112636095099802, 102.42645426303017 12.000000094994903)), ((100.07731826084233 9.545209092708703, 100.06902726083462 9.47082709263944, 100.01999126078897 9.422636092594544, 99.97330926074545 9.413609092586142, 99.9410182607154 9.422564092594484, 99.93220926070722 9.546945092710317, 99.98610026075738 9.576109092737482, 100.07762726084263 9.58832709274887, 100.09193626085596 9.565973092728044, 100.07731826084233 9.545209092708703)), ((99.6628092604563 6.703000090061693, 99.68137226047361 6.679100090039441, 99.70228226049306 6.54250008991221, 99.66804526046116 6.496391089869277, 99.65262726044682 6.494791089867789, 99.59664526039467 6.585273089952054, 99.6628092604563 6.703000090061693)), ((102.56022726315473 11.754400094766169, 102.60469126319617 11.69694509471266, 102.61023626320133 11.645273094664546, 102.59344526318569 11.564236094589077, 102.53177226312823 11.602709094624899, 102.52900026312562 11.692500094708521, 102.54913626314442 11.751945094763883, 102.56022726315473 11.754400094766169)), ((98.53694525940779 8.1073540913696, 98.59360025946052 8.07888209134309, 98.61081825947656 8.051109091317215, 98.6113722594771 7.954718091227448, 98.59839125946496 7.899027091175583, 98.57491825944311 7.913536091189087, 98.52818225939961 8.120000091381371, 98.53694525940779 8.1073540913696))) +VNM Vietnam MULTIPOLYGON (((107.07896326736312 17.10803609975214, 107.11636326739796 17.081836099727738, 107.12996326741063 17.01194509966264, 107.1916542674681 16.874718099534846, 107.34275426760883 16.789164099455164, 107.5401182677926 16.629018099306023, 107.44910926770785 16.655291099330483, 107.44844526770726 16.638327099314694, 107.50512726776003 16.604091099282797, 107.59414526784292 16.58055409926088, 107.69957226794111 16.51416409919905, 107.81749126805096 16.382082099076044, 107.79067226802596 16.374718099069185, 107.81150926804537 16.31200909901078, 107.88275426811174 16.278054098979155, 107.90658226813389 16.281600098982466, 107.96970926819273 16.333882099031158, 108.02665426824575 16.3241640990221, 108.04802726826563 16.311664099010457, 108.08720026830213 16.248882098951995, 108.18858226839654 16.199164098905683, 108.14310926835418 16.155554098865068, 108.13790926834935 16.1277730988392, 108.22145426842718 16.055209098771613, 108.20116326840827 15.999445098719676, 108.23675426844142 16.032109098750098, 108.2322092684372 16.133882098844893, 108.24657226845056 16.15437309886397, 108.33082726852905 16.15040909886028, 108.34102726853854 16.132082098843213, 108.30601826850591 16.10750009882031, 108.26345426846626 16.097636098811137, 108.26801826847054 16.034718098752535, 108.30581826850573 15.948327098672081, 108.42276326861463 15.806109098539622, 108.62498226880297 15.48221809823798, 108.75890026892768 15.395954098157631, 108.8002632689662 15.427218098186756, 108.82916326899311 15.421945098181837, 108.88275426904306 15.281391098050946, 108.89414526905364 15.132773097912533, 108.92859126908576 15.000827097789653, 109.00166326915377 14.836382097636502, 109.07873626922554 14.723191097531071, 109.09179126923772 14.672500097483862, 109.08027226922701 14.6413910974549, 109.07860026922543 14.548336097368235, 109.12387226926762 14.405836097235522, 109.18720026932658 14.290827097128414, 109.20443626934264 14.237773097079, 109.2141542693517 14.12027309696957, 109.25748226939203 14.022918096878897, 109.30442726943573 13.864445096731302, 109.30261826943405 13.7515910966262, 109.26818226940202 13.753473096627957, 109.25019126938525 13.885000096750446, 109.21804526935529 13.81610909668629, 109.24295426937852 13.766918096640481, 109.22415426936101 13.737218096612821, 109.25665426939128 13.555273096443372, 109.22886326936538 13.408609096306776, 109.31359126944432 13.108473096027254, 109.46484526958517 12.900554095833613, 109.46186326958241 12.860973095796751, 109.43233626955487 12.843191095780185, 109.41554526953922 12.862218095797914, 109.22858226936512 12.681664095629756, 109.197336269336 12.631527095583067, 109.20638226934443 12.545273095502736, 109.29914526943082 12.46055409542383, 109.34692726947532 12.394927095362718, 109.3363822694655 12.372636095341946, 109.30171826943325 12.345691095316852, 109.27261826940611 12.362009095332056, 109.22081826935789 12.430827095396154, 109.1765722693167 12.456909095420443, 109.14700026928915 12.43208209539732, 109.21609126935351 12.323609095296291, 109.20526326934339 12.099300095087386, 109.2699912694037 11.892500094894785, 109.22580926936251 11.935000094934367, 109.2254632693622 11.98221809497835, 109.18310926932276 12.116945095103816, 109.17997226931988 12.045000095036812, 109.20324526934155 12.016527095010304, 109.20915426934704 11.978609094974985, 109.18790026932726 11.924582094924673, 109.13956326928223 11.894100094896288, 109.12336326926714 11.848227094853556, 109.19330926933225 11.792773094801916, 109.22110026935815 11.756109094767766, 109.1806722693205 11.629718094650059, 109.13428226927732 11.567354094591977, 109.05255426920121 11.593536094616354, 109.03749126918717 11.578054094601939, 109.02192726917264 11.514718094542957, 109.02168226917246 11.362254094400967, 108.962145269117 11.31145409435365, 108.93400926909078 11.308327094350744, 108.86800026902932 11.334709094375313, 108.80983626897512 11.31721809435902, 108.66455426883982 11.18860909423924, 108.58359126876445 11.181664094232772, 108.53247226871684 11.149445094202761, 108.49031826867758 11.095691094152698, 108.24497226844909 10.949027094016117, 108.11316326832633 10.915973093985329, 108.0766362682923 10.883891093955455, 108.0549632682721 10.84471809391897, 107.99969126822066 10.70423609378814, 107.9099722681371 10.718473093801393, 107.82538226805832 10.694791093779344, 107.75609126799378 10.63916409372753, 107.58663626783596 10.572391093665345, 107.51748226777153 10.503054093600767, 107.44093626770024 10.466800093567002, 107.32885426759589 10.445827093547479, 107.26619126753752 10.376127093482552, 107.22903626750292 10.397309093502287, 107.21219126748724 10.437500093539711, 107.17217226744992 10.47571809357531, 107.13278226741323 10.467545093567693, 107.05357226733946 10.495273093593525, 107.03497226732219 10.531109093626895, 107.02328226731129 10.630336093719308, 106.99858226728827 10.65506409374234, 107.02122726730937 10.590000093681738, 107.01539126730393 10.537918093633238, 106.99432726728429 10.576454093669128, 106.99360926728366 10.61482709370486, 106.9816362672725 10.565418093658849, 106.99398226728397 10.520554093617065, 106.96714526725901 10.474618093574293, 106.96046326725275 10.507527093604935, 106.94024526723393 10.530000093625858, 106.93391826722808 10.574164093666994, 106.94273626723628 10.592427093684009, 106.90413626720033 10.63138209372029, 106.76302726706888 10.680554093766077, 106.74166326704898 10.66090009374777, 106.77052726707586 10.58930009368109, 106.74957226705635 10.577336093669956, 106.73648226704415 10.550973093645396, 106.73524526704301 10.51208209360918, 106.66230926697511 10.490800093589357, 106.59155426690921 10.42969109353244, 106.73246326704043 10.470482093570439, 106.79141826709537 10.389582093495093, 106.79469126709841 10.31027309342123, 106.78423626708866 10.279791093392845, 106.68761826699864 10.290873093403164, 106.65121826696475 10.280136093393153, 106.57386326689272 10.288891093401318, 106.53592726685741 10.30528209341658, 106.42431826675346 10.311382093422267, 106.48635426681125 10.273891093387348, 106.69608226700655 10.20874509332667, 106.79316326709699 10.15700909327849, 106.80246326710562 10.124236093247973, 106.77802726708285 10.082364093208966, 106.65046326696404 9.969791093104135, 106.60385426692068 9.974091093108129, 106.48455426680954 10.037082093166802, 106.39663626672768 10.149718093271701, 106.36461826669785 10.208682093326615, 106.3319182666674 10.242500093358103, 106.29662726663452 10.255000093369745, 106.38664526671835 10.121936093245822, 106.49656326682071 10.003473093135497, 106.56693626688627 9.97471809310872, 106.68843626699942 9.893891093033446, 106.6934272670041 9.87221809301326, 106.67440926698634 9.84221809298532, 106.60711826692369 9.810864092956123, 106.48685426681169 9.917645093055569, 106.38524526671705 9.975554093109494, 106.16552726651241 10.207218093325253, 106.11480926646522 10.234064093350256, 106.16440926651137 10.164164093285152, 106.4530362667802 9.876391093017148, 106.57067226688974 9.74139109289142, 106.5798452668983 9.663473092818847, 106.54302726686399 9.583609092744467, 106.5041362668278 9.550691092713805, 106.39845426672935 9.532364092696739, 106.23497226657713 9.639164092796207, 106.071636266425 9.787082092933971, 105.97720026633704 9.911109093049475, 105.91080926627518 9.966391093100967, 105.82371826619408 10.004227093136194, 106.0572452664116 9.75965409290842, 106.18579126653128 9.558336092720936, 106.21066326655449 9.501527092668027, 106.19454526653948 9.368473092544107, 105.53387226592417 9.12944509232149, 105.40734526580633 8.99777309219887, 105.35441826575703 8.846664092058134, 105.3054002657114 8.775418091991781, 105.1213002655399 8.625064091851755, 104.86463626530087 8.559236091790453, 104.76693626520989 8.585554091814956, 104.74275426518739 8.605000091833062, 104.8908272653253 8.693891091915859, 104.92254526535481 8.745209091963645, 104.91638226534906 8.802218092016744, 104.82033626525964 8.769027091985834, 104.79893626523972 8.792218092007431, 104.83720926527536 9.561800092724155, 104.86052726529704 9.692500092845876, 104.8992182653331 9.810691092955949, 105.03885426546316 9.927218093064482, 105.0727182654947 9.93750009307405, 105.11274526553194 9.854791092997033, 105.10746326552703 9.945273093081298, 105.07330026549522 10.011664093143125, 104.98177226540997 10.104445093229529, 104.89739126533141 10.094654093220413, 104.85330026529033 10.135000093257986, 104.80149126524208 10.20742709332545, 104.72350926516947 10.232354093348661, 104.61023626506397 10.16889109328956, 104.58192726503756 10.270691093384357, 104.49801826495946 10.388609093494182, 104.44532726491036 10.42273609352597, 104.48774526494987 10.422773093526004, 104.5485722650065 10.46520909356552, 104.59482726504962 10.532709093628384, 104.66982726511947 10.536945093632326, 104.80107226524166 10.520000093616545, 104.87788226531325 10.530418093626253, 104.95440926538447 10.631245093720153, 105.09414526551461 10.713191093796468, 105.09371826551421 10.746527093827524, 105.03891826546322 10.881700093953413, 105.06108226548383 10.920273093989337, 105.10080026552083 10.954300094021022, 105.23385426564477 10.88971809396088, 105.30024526570656 10.875554093947684, 105.36190926576398 10.880691093952464, 105.43093626582828 10.965764094031698, 105.52429126591522 10.945764094013072, 105.63552726601881 10.97000009403564, 105.7220542660994 11.013054094075741, 105.78135426615466 11.020973094083118, 105.85830926622629 10.916664093985972, 105.95997226632102 10.88250009395415, 106.08220026643482 10.802773093879907, 106.20330926654759 10.770554093849896, 106.17664526652277 10.870554093943028, 106.14566326649395 10.919445093988557, 106.15226326650009 10.968709094034438, 106.21240026655607 10.972500094037969, 106.18940026653468 11.053682094113583, 106.15551826650312 11.093891094151033, 106.12645426647606 11.086773094144405, 105.94858226631038 11.202500094252173, 105.87113626623824 11.296736094339948, 105.90011826626522 11.435345094469028, 105.87864526624526 11.548954094574839, 105.81907226618978 11.594009094616794, 105.81643626618734 11.617454094638632, 105.85314526622153 11.661945094680064, 105.89817226626343 11.667364094685112, 105.9612822663222 11.6447910946641, 106.0142822663716 11.720554094734652, 106.02226326637901 11.759854094771256, 106.04337226639865 11.776245094786518, 106.26864526660847 11.717773094732067, 106.30305426664052 11.681736094698508, 106.45820926678499 11.665864094683727, 106.43773626676597 11.79360909480269, 106.46135426678796 11.8850000948878, 106.41954526674903 11.972636094969417, 106.4453822667731 11.982082094978225, 106.69858226700887 11.96277309496024, 106.72608226703449 11.973818094970525, 106.78920026709329 12.07346409506333, 106.90734526720331 12.064654095055118, 106.97470926726606 12.082500095071737, 107.05275426733874 12.13944509512477, 107.16276326744116 12.27374509524985, 107.18997226746654 12.287218095262403, 107.35372726761904 12.331800095303919, 107.42339126768388 12.253491095230984, 107.43893626769841 12.254545095231975, 107.54990926780175 12.35930009532953, 107.59526326784396 12.55444509551127, 107.59304526784189 12.603882095557324, 107.56318226781411 12.810827095750057, 107.50942726776401 12.884164095818349, 107.48331826773972 13.020554095945371, 107.63638226788225 13.381664096281682, 107.6292452678756 13.53803609642732, 107.4641912677219 13.794364096666044, 107.47350026773057 13.931709096793952, 107.37052726763466 14.020418096876568, 107.34408226761002 14.128400096977131, 107.3847092676479 14.240554097081585, 107.389145267652 14.292427097129902, 107.37545426763927 14.33735409717174, 107.40914526767062 14.420273097248966, 107.43226326769218 14.43503609726271, 107.45671826771496 14.422218097250777, 107.48081826773739 14.435554097263193, 107.53324526778624 14.550136097369915, 107.55845426780968 14.657082097469512, 107.54660026779868 14.708618097517501, 107.55165426780337 14.847500097646844, 107.5401182677926 14.918891097713342, 107.4799822677366 14.97145409776229, 107.4680362677255 15.023191097810468, 107.47330926773037 15.03582709782225, 107.58679126783608 15.0455540978313, 107.61581826786312 15.063609097848115, 107.69525426793712 15.27082709804111, 107.51749126777156 15.468327098225046, 107.420254267681 15.503336098257648, 107.26304526753455 15.64778209839217, 107.18303626746007 15.765418098501726, 107.17630026745377 15.790345098524938, 107.20394526747953 15.858954098588839, 107.22929126750313 15.86639109859577, 107.25554526752757 15.85847309858839, 107.40193626766393 15.91847309864427, 107.47581826773273 16.022500098741148, 107.46081826771876 16.08048209879516, 107.337618267604 16.056109098772453, 107.16511826744335 16.183745098891322, 107.15207226743121 16.205827098911897, 107.1472182674267 16.263336098965453, 107.09389126737705 16.300818099000352, 107.01055426729943 16.30736409900645, 106.98720026727767 16.299718098999335, 106.98387226727459 16.33721809903426, 106.89526326719204 16.517773099202415, 106.87511826717326 16.5368730992202, 106.84338226714374 16.532354099215993, 106.78249126708704 16.43250009912299, 106.75664526706294 16.42034509911167, 106.70220926701228 16.43971809912972, 106.68470026699595 16.459300099147953, 106.56067226688043 16.677427099351107, 106.56110026688083 16.996936099648664, 106.52020026684272 16.96735409962112, 106.4412272667692 16.992491099644525, 106.42053626674993 17.064718099711797, 106.34081826667568 17.169164099809066, 106.09012726644221 17.356800099983815, 105.86080926622861 17.618609100227644, 105.75430026612946 17.67040910027589, 105.68192726606202 17.814445100410026, 105.62724526601113 17.987500100571197, 105.50443626589674 18.168327100739617, 105.39998226579945 18.157564100729587, 105.35733626575973 18.168191100739477, 105.32192726572674 18.196682100766026, 105.32582726573042 18.242773100808947, 105.30851826571427 18.2561451008214, 105.26707226567567 18.252500100817997, 105.18331826559768 18.334445100894314, 105.10872726552822 18.43798210099075, 105.1038722655237 18.470273101020823, 105.15027226556691 18.598745101140466, 105.19413626560777 18.610000101150945, 105.19317226560685 18.636727101175836, 105.10555426552526 18.69666410123166, 104.74456326518907 18.796245101324402, 104.57303626502932 18.902982101423817, 104.53026326498946 18.972218101488295, 104.2788092647553 19.110900101617446, 104.22075426470121 19.111327101617846, 104.22601826470611 19.145064101649268, 104.1745722646582 19.190545101691626, 104.06109126455254 19.238609101736387, 104.00692726450205 19.233400101731533, 103.87768226438169 19.30950910180242, 103.9716452644692 19.392082101879325, 104.04136326453414 19.418464101903893, 104.10386326459235 19.478609101959904, 104.10164526459027 19.55860910203441, 104.0505362645427 19.599445102072437, 104.0214182645156 19.669118102137332, 104.03882726453179 19.69373610216026, 104.08741826457702 19.66430010213284, 104.1415912646275 19.6626361021313, 104.15873626464344 19.68749110215444, 104.24609126472484 19.70443610217022, 104.42276326488934 19.669854102138018, 104.5195722649795 19.605409102078, 104.6442272650956 19.616664102088478, 104.66720926511704 19.68721810215419, 104.71700026516339 19.747982102210784, 104.77026326521298 19.75694510221912, 104.8320002652705 19.78742710224752, 104.8490722652864 19.844164102300354, 104.8265182652654 19.863882102318726, 104.79015426523154 19.86399110231882, 104.78970026523109 19.891936102344843, 104.89942726533326 19.973327102420654, 104.96271826539225 19.9884091024347, 104.97782726540629 20.00395410244917, 104.98470926541273 20.09832710253707, 104.93928226537042 20.183464102616355, 104.8449182652825 20.225064102655097, 104.7150002651615 20.31305410273704, 104.70901826515598 20.341527102763564, 104.6154632650688 20.416036102832948, 104.52040026498031 20.407082102824617, 104.3937362648623 20.43527310285087, 104.38150926485093 20.454582102868855, 104.45443626491885 20.504445102915284, 104.51610026497627 20.51721810292719, 104.62997226508236 20.618609103021612, 104.64189126509342 20.652354103053042, 104.50192726496306 20.712218103108796, 104.40941826487693 20.77832710317037, 104.34421826481622 20.843154103230745, 104.33069126480359 20.87708210326234, 104.2302722647101 20.928882103310585, 104.10394526459243 20.975900103354363, 103.8566452643621 20.852500103239436, 103.7788722642897 20.784445103176054, 103.77138226428269 20.73721810313208, 103.73838226425198 20.670964103070375, 103.68705426420416 20.659582103059776, 103.60540026412815 20.740273103134925, 103.42499126396012 20.793891103184862, 103.21860026376788 20.830273103218744, 103.17712726372929 20.843882103231422, 103.11781826367405 20.893609103277726, 103.04207226360347 21.045973103419627, 102.93727226350586 21.16332710352893, 102.91443626348462 21.168054103533322, 102.91907226348894 21.22888210358998, 102.88860026346055 21.25221810361171, 102.9049822634758 21.44027310378685, 102.87691826344968 21.430136103777414, 102.89068226346251 21.466109103810908, 102.98747226355266 21.574300103911668, 102.98740926355259 21.712700104040564, 102.97054526353685 21.74513610407078, 102.86136326343518 21.718327104045812, 102.7540092633352 21.67069110400145, 102.67519126326181 21.658536103990116, 102.65414526324219 21.7348541040612, 102.6616542632492 21.78680910410958, 102.64721826323574 21.853054104171278, 102.60442726319587 21.92847310424152, 102.52664526312344 21.947773104259497, 102.50178226310032 21.966800104277212, 102.4227632630267 22.115691104415887, 102.30483626291687 22.210136104503846, 102.2383092628549 22.24249110453397, 102.1849092628052 22.300409104587914, 102.14074526276409 22.396282104677198, 102.26970926288419 22.49166410476603, 102.38889126299517 22.60916410487546, 102.45408226305585 22.75374510501011, 102.47443626307484 22.771873105026998, 102.52138226311854 22.76500010502059, 102.70247226328723 22.68416410494531, 102.87000926344325 22.592882104860294, 102.88060026345312 22.55443610482449, 102.92893626349814 22.48229110475731, 103.03040026359264 22.43651810471468, 103.0647092636246 22.440827104718693, 103.16692726371974 22.54250010481337, 103.33367226387509 22.79450910504808, 103.39499126393218 22.771873105026998, 103.45985426399255 22.6391641049034, 103.52241826405083 22.58436410485237, 103.53728226406469 22.587427104855223, 103.58373626410793 22.648609104912197, 103.56638226409177 22.698191104958383, 103.61810026413997 22.779445105034043, 103.65380926417322 22.78287310503724, 103.86110026436626 22.577218104845713, 103.96866326446644 22.503873104777398, 104.00858226450362 22.52324510479545, 104.03387226452719 22.686382104947384, 104.06150926455291 22.740554104997827, 104.11130026459927 22.798118105051444, 104.25915426473699 22.827882105079155, 104.25458226473273 22.773745105028738, 104.26518226474258 22.734927104992593, 104.37470026484459 22.687500104948413, 104.57360926502986 22.830000105081126, 104.65130026510218 22.826173105077572, 104.67345426512281 22.813054105065348, 104.73192726517726 22.818054105070004, 104.85220926528933 22.962500105204526, 104.82453626526353 23.099264105331898, 104.90749126534081 23.180273105407352, 105.25804526566725 23.304445105522987, 105.35872726576105 23.324164105541357, 105.55130026594037 23.162427105390734, 105.57390926596145 23.06332710529844, 105.63926326602228 23.062909105298047, 105.76860026614276 23.020136105258217, 105.8770632662438 22.91252710515799, 105.99136326635022 22.9381911051819, 106.0148452663721 22.982491105223147, 106.13471826648373 22.988609105228846, 106.19560926654043 22.97388210521514, 106.22359126656653 22.95555410519806, 106.25206326659304 22.9041641051502, 106.2561362665968 22.87214510512038, 106.29429126663234 22.857082105106358, 106.34123626667605 22.853327105102863, 106.47360026679934 22.890554105137525, 106.52196326684441 22.93267310517676, 106.70290026701292 22.866945105115533, 106.77831826708314 22.803054105056034, 106.7874912670917 22.76388210501956, 106.71748226702647 22.63055410489538, 106.60712726692373 22.60492710487152, 106.55170926687208 22.456818104733586, 106.56498226688444 22.349300104633443, 106.58665426690465 22.335418104620516, 106.64873626696243 22.32881810461437, 106.69220026700293 22.216318104509597, 106.67005426698233 22.204164104498275, 106.66859126698097 22.174718104470855, 106.69330926700394 22.03082710433685, 106.73749126704513 21.999718104307874, 107.02110026730924 21.939164104251475, 107.04400926733058 21.921382104234922, 107.04249126732918 21.88950910420523, 107.01582726730436 21.8498541041683, 107.02401826731199 21.820618104141076, 107.21360926748855 21.71151810403947, 107.25339126752556 21.710200104038236, 107.2985912675677 21.729373104056094, 107.34040026760664 21.681382104011405, 107.3627272676274 21.605264103940513, 107.53179126778485 21.58638210392293, 107.6602632679045 21.610000103944913, 107.78305426801887 21.66693610399794, 107.8608182680913 21.6477731039801, 107.947482268172 21.54444510388386, 107.9978452682189 21.539345103879114, 108.0336002682522 21.521382103862393, 108.06429126828078 21.48666410383005, 107.93143626815709 21.43902710378569, 107.91546326814216 21.458254103803597, 107.92678226815275 21.484227103827777, 107.91540026814215 21.520136103861233, 107.89193626812028 21.532154103872415, 107.85484526808574 21.52555410386627, 107.59478226784353 21.29277310364948, 107.48081826773739 21.29000010364689, 107.4165092676775 21.32596410368039, 107.3669272676313 21.26527310362387, 107.3628272676275 21.182354103546643, 107.38247226764582 21.135000103502534, 107.36266326762734 21.057700103430548, 107.3706722676348 21.025691103400746, 107.34998226761553 21.008818103385025, 107.23220926750588 20.99388210337112, 107.15442726743339 20.925000103306957, 107.07421826735873 20.950409103330628, 107.08430026736812 20.986245103364, 107.14650926742604 21.036145103410476, 107.03720026732424 20.996664103373703, 107.01464526730325 20.950564103330777, 106.94146326723506 20.95337310333339, 106.87672726717477 20.988209103365833, 106.87039126716888 20.96040910333994, 106.92105426721605 20.9343821033157, 106.9428722672364 20.904818103288164, 106.88235426718 20.9027091032862, 106.86262726716166 20.871182103256842, 106.83591826713678 20.91678210329931, 106.77539126708041 20.93578210331701, 106.82303626712479 20.96992710334881, 106.8097092671124 21.011664103387673, 106.79137226709531 21.026109103401126, 106.64665426696052 21.021664103396986, 106.67096326698316 21.007564103383856, 106.66701826697948 20.98222710336026, 106.67970026699129 20.954082103334045, 106.75888226706502 20.93388210331524, 106.74161826704898 20.886527103271135, 106.69587226700634 20.87667310326195, 106.74304526705026 20.840273103228057, 106.72527226703374 20.799718103190287, 106.77998226708468 20.74055410313518, 106.77692726708182 20.699164103096635, 106.6479002669617 20.626036103028525, 106.59720926691449 20.632591103034642, 106.6230272669385 20.590827102995746, 106.56708226688642 20.287009102712787, 106.52320026684555 20.311954102736024, 106.49550926681974 20.299664102724577, 106.53526326685676 20.297218102722297, 106.55734526687735 20.271245102698103, 106.50470926682834 20.22555410265555, 106.34193626667673 20.156936102591644, 106.32500026666094 20.12832710256501, 106.17457226652084 19.986382102432813, 106.10580926645679 19.970754102418255, 106.1119002664625 20.028882102472394, 106.0771362664301 19.96172710240984, 106.02527226638182 19.990827102436953, 105.95679126631802 19.92304510237382, 105.91277226627705 19.793054102252754, 105.80859126618003 19.60110910207399, 105.81797226618875 19.565900102041198, 105.80415426617589 19.455827101938695, 105.7848452661579 19.398191101885004, 105.80642726617799 19.274227101769554, 105.74275426611871 19.226382101725008, 105.61052726599553 19.003891101517794, 105.63856326602166 18.890654101412323, 105.69595426607509 18.856664101380673, 105.7565092661315 18.765273101295563, 105.7497092661252 18.662491101199834, 105.79414526616654 18.67110910120786, 105.8410912662103 18.563054101107227, 105.88360926624989 18.499164101047725, 106.05609126641053 18.31610910087724, 106.11303626646355 18.270273100834558, 106.1620722665092 18.261664100826536, 106.27026326660996 18.19943610076858, 106.44386326677164 18.038054100618282, 106.50991826683315 17.956109100541966, 106.45373626678082 17.872909100464483, 106.42499126675409 17.74166410034225, 106.49498226681925 17.691109100295165, 106.64276326695688 17.466936100086386, 106.75387226706039 17.343327099971276, 107.07896326736312 17.10803609975214)), ((104.01239126450719 10.439436093541516, 104.08288226457285 10.364854093472061, 104.0866272645763 10.247354093362631, 104.02638226452018 10.080273093207026, 103.94941826444852 10.243891093359409, 103.91790026441919 10.285000093397684, 103.86595426437077 10.299582093411274, 103.83838226434511 10.367709093474716, 103.9769092644741 10.433609093536091, 104.01239126450719 10.439436093541516)), ((107.47194526772915 21.271418103629586, 107.52360926777726 21.22443610358583, 107.60408226785216 21.216936103578846, 107.60027226784865 21.20527310356799, 107.54040926779288 21.155700103521824, 107.51143626776593 21.149700103516224, 107.46304526772082 21.089436103460102, 107.37921826764278 21.0481911034217, 107.37553626763935 21.081245103452474, 107.44470026770375 21.23527310359593, 107.47194526772915 21.271418103629586)), ((106.78171826708632 10.66317309374989, 106.85647226715594 10.60388209369468, 106.8582912671576 10.583882093676053, 106.83756326713831 10.573154093666048, 106.87234526717072 10.502927093600647, 106.86992726716846 10.45607309355701, 106.85732726715673 10.406736093511071, 106.84191826714238 10.40221809350686, 106.82594526712751 10.404718093509189, 106.75553626706193 10.481391093580598, 106.7498362670566 10.558609093652507, 106.78466326708906 10.574609093667405, 106.77802726708285 10.62416409371356, 106.7523002670589 10.658964093745965, 106.78171826708632 10.66317309374989)), ((106.91060026720635 20.834400103222592, 106.96360926725572 20.851109103238144, 107.03339126732067 20.85569110324242, 107.10151826738417 20.79943610319002, 107.04776326733406 20.703882103101037, 106.97220926726374 20.74749110314164, 106.9205362672156 20.794445103185367, 106.91060026720635 20.834400103222592))) +GUM Guam MULTIPOLYGON (((144.7094093024092 13.235000096145086, 144.70245430240277 13.235000096145086, 144.69302730239394 13.238882096148714, 144.6805453023823 13.24694509615621, 144.67025430237277 13.256945096165524, 144.6477633023518 13.288327096194763, 144.63415430233914 13.352218096254262, 144.64499130234924 13.398891096297731, 144.65524530235876 13.427773096324628, 144.70245430240277 13.468327096362401, 144.71911830241828 13.478882096372232, 144.73272730243093 13.485554096378436, 144.7430093024405 13.488882096381545, 144.76220930245842 13.496945096389041, 144.77859130247367 13.507500096398871, 144.79580930248972 13.524164096414395, 144.80941830250237 13.544164096433022, 144.81692730250933 13.563609096451131, 144.8285823025202 13.612218096496406, 144.83746330252848 13.630136096513098, 144.85469130254455 13.646800096528608, 144.8760543025644 13.65229109653373, 144.94955430263286 13.597218096482436, 144.9533093026364 13.587500096473377, 144.94662730263013 13.570827096457862, 144.92803630261284 13.542218096431213, 144.90774530259392 13.51527309640612, 144.87050930255924 13.478327096371714, 144.84997230254015 13.46500009635929, 144.83609130252722 13.458327096353088, 144.80663630249978 13.44027309633627, 144.7892913024836 13.42402709632114, 144.78081830247572 13.412218096310141, 144.77440930246973 13.398336096297214, 144.7683093024641 13.377773096278062, 144.7636093024597 13.342218096244949, 144.76275430245892 13.329718096233307, 144.76275430245892 13.30971809621468, 144.76080030245708 13.291664096197863, 144.7561003024527 13.276391096183644, 144.75191830244881 13.266945096174837, 144.74023630243795 13.25166409616061, 144.72940030242785 13.242218096151817, 144.72051830241958 13.237500096147414, 144.7094093024092 13.235000096145086))) +MHL Marshall Is. MULTIPOLYGON (((168.78637232483266 7.2888910906073505, 168.76720932481481 7.289718090608119, 168.7016273247537 7.305273090622606, 168.69080032474363 7.30833609062546, 168.67123632472544 7.319864090636187, 168.67233632472642 7.330136090645752, 168.76803632481557 7.2983360906161465, 168.78637232483266 7.2888910906073505)), ((168.11359132420608 5.600273089034701, 168.10565432419867 5.601391089035744, 168.09497232418875 5.610691089044394, 168.12648132421805 5.638473089070274, 168.13098132422226 5.622364089055267, 168.11994532421198 5.604164089038321, 168.11359132420608 5.600273089034701)), ((171.36161832723104 7.136245090465181, 171.37488132724337 7.128018090457516, 171.37806332724637 7.11857309044872, 171.37562732724405 7.114464090444898, 171.36177232723117 7.120100090450151, 171.35856332722818 7.131373090460642, 171.36161832723104 7.136245090465181)), ((167.7319003238506 8.724718091944567, 167.7253723238445 8.72805409194767, 167.7395363238577 8.74569109196409, 167.74496332386275 8.73639109195544, 167.74066332385877 8.726945091946632, 167.7319003238506 8.724718091944567)), ((168.98108132501397 14.580273097397978, 168.97607232500934 14.582773097400306, 168.98522732501783 14.590554097407548, 169.00198132503346 14.594027097410788, 168.98772732502016 14.580827097398497, 168.98108132501397 14.580273097397978)), ((169.96997232593498 10.4322180935348, 169.9617723259273 10.434718093537128, 169.94877232591523 10.449718093551098, 169.96287232592834 10.445000093546696, 169.9716183259365 10.436391093538688, 169.96997232593498 10.4322180935348)), ((165.5313723218012 9.19610909238358, 165.52719132179732 9.198891092386177, 165.525818321796 9.21423609240047, 165.53712732180657 9.201182092388308, 165.5313723218012 9.19610909238358)), ((162.33273631882224 11.350827094390326, 162.32496331881498 11.352773094392134, 162.3394453188285 11.357118094396185, 162.33273631882224 11.350827094390326))) +FSM Micronesia MULTIPOLYGON (((158.22775431499917 6.7805540901339185, 158.18469131495908 6.793609090146077, 158.1758093149508 6.798336090150485, 158.15524531493162 6.8194450901701344, 158.12016331489895 6.906109090250851, 158.12010031489888 6.926945090270252, 158.127745314906 6.936391090279059, 158.18232731495686 6.977636090317461, 158.2648453150337 6.9623640903032395, 158.29580931506257 6.948609090290432, 158.3206633150857 6.928609090271806, 158.3351003150991 6.87471809022162, 158.31733631508257 6.820418090171046, 158.29983631506627 6.787500090140384, 158.22775431499917 6.7805540901339185)), ((163.00191831944545 5.261664088719343, 162.91642731936582 5.279100088735589, 162.9056723193558 5.307773088762289, 162.9733003194188 5.368054088818425, 162.98495431942968 5.373473088823474, 163.02163631946382 5.374927088824833, 163.0428913194836 5.320000088773668, 163.03220031947365 5.293054088748576, 163.02261831946475 5.278745088735249, 163.00747231945064 5.2630540887206365, 163.00191831944545 5.261664088719343))) +MNP Northern Mariana Is. MULTIPOLYGON (((145.73468230336408 15.087218097870107, 145.72830030335814 15.08805409787088, 145.68453630331737 15.100554097882522, 145.67690930331025 15.116391097897278, 145.68387230331678 15.142773097921847, 145.6955273033276 15.1780540979547, 145.73315430336265 15.240136098012528, 145.79316330341857 15.268191098038642, 145.81808230344177 15.263191098033985, 145.79664530342177 15.240409098012776, 145.73682730336606 15.137709097917124, 145.73468230336408 15.087218097870107)), ((145.62411830326113 14.908054097703243, 145.6111913032491 14.91395409770874, 145.57268230321318 15.005482097793987, 145.58719130322675 15.035000097821467, 145.62995430326657 15.083609097866741, 145.63969130327564 15.080273097863639, 145.64818230328353 15.066800097851086, 145.6619273032963 14.989436097779034, 145.6627543032971 14.976664097767141, 145.66051830329502 14.965554097756794, 145.63330030326966 14.912364097707254, 145.62411830326113 14.908054097703243))) +UMI Wake I. MULTIPOLYGON (((166.62759132282213 19.32458210181646, 166.65054532284347 19.317500101809856, 166.65886332285123 19.3115271018043, 166.66220032285435 19.297773101791492, 166.65878132285115 19.282845101777582, 166.64276332283623 19.279445101774414, 166.61386332280932 19.297218101790975, 166.60898132280477 19.307082101800162, 166.62759132282213 19.32458210181646))) +BWA Botswana MULTIPOLYGON (((26.401145192226068 -24.631890939121206, 26.389963192215646 -24.627426939117044, 26.360000192187726 -24.618890939109093, 26.265273192099528 -24.637499939126428, 26.167827192008758 -24.663963939151074, 26.01889119187007 -24.710835939194723, 25.9183271917764 -24.738335939220335, 25.871391191732698 -24.744445939226026, 25.875273191736312 -24.813681939290504, 25.872218191733452 -24.90528193937581, 25.827773191692074 -25.041945939503094, 25.769445191637743 -25.208335939658056, 25.68471819155883 -25.435554939869675, 25.671391191546434 -25.47028193990201, 25.62221819150062 -25.550835939977034, 25.58997319147059 -25.61469094003651, 25.581700191462886 -25.625026940046126, 25.509718191395848 -25.677781940095258, 25.41416319130687 -25.733335940147, 25.360836191257192 -25.754581940166787, 25.17500019108411 -25.761945940173646, 25.1522181910629 -25.762217940173898, 25.12833619104066 -25.752781940165107, 25.08666319100186 -25.735145940148684, 25.03305419095193 -25.728617940142612, 25.012354190932655 -25.734172940147786, 24.953609190877927 -25.771117940182194, 24.90069119082864 -25.808126940216653, 24.801663190736434 -25.832226940239096, 24.68457319062736 -25.828217940235362, 24.648891190594156 -25.82263594023017, 24.62194519056905 -25.812363940220607, 24.53305419048627 -25.77194594018296, 24.501345190456732 -25.76139094017313, 24.4722181904296 -25.746672940159428, 24.438818190398507 -25.739863940153086, 24.398745190361183 -25.760699940172486, 24.35166319031734 -25.7555549401677, 24.281391190251895 -25.72028194013484, 24.243054190216185 -25.676108940093698, 24.228327190202464 -25.64965494006907, 24.18923619016607 -25.623190940044424, 24.115273190097184 -25.634163940054634, 24.046391190033034 -25.65152694007081, 24.00680018999614 -25.657917940076757, 23.9019451898985 -25.624863940045984, 23.88930018988671 -25.60513594002761, 23.871663189870304 -25.58361794000757, 23.73624518974418 -25.463754939895935, 23.713745189723227 -25.454445939887265, 23.670273189682746 -25.435835939869932, 23.65027318966412 -25.42333593985829, 23.596109189613657 -25.38944593982673, 23.530827189552866 -25.33722693977809, 23.454373189481657 -25.27701793972203, 23.275273189314873 -25.265835939711607, 23.194445189239588 -25.264163939710045, 23.014827189072292 -25.299726939743167, 22.97250018903287 -25.33722693977809, 22.910000188974664 -25.396945939833714, 22.830000188900158 -25.530835939958408, 22.812218188883605 -25.568408939993404, 22.830000188900158 -25.614445940036276, 22.812845188884182 -25.678263940095718, 22.77721818885101 -25.71187294012701, 22.75639118883163 -25.73625494014972, 22.74332718881945 -25.79805494020728, 22.745000188820995 -25.848335940254103, 22.72290918880043 -25.973890940371035, 22.707145188785745 -26.003608940398713, 22.6636091887452 -26.015208940409515, 22.626391188710556 -26.093054940482013, 22.624809188709065 -26.111563940499252, 22.479163188573438 -26.20278194058421, 22.366391188468413 -26.286390940662073, 22.249445188359488 -26.34111794071304, 22.19708218831073 -26.394172940762452, 22.175554188290675 -26.43111794079686, 22.158327188274626 -26.492572940854096, 22.13389118825188 -26.539863940898137, 22.056736188180025 -26.624445940976912, 22.015827188141913 -26.64444594099554, 21.96221818809198 -26.661808941011707, 21.891663188026286 -26.668890941018304, 21.862636187999243 -26.662081941011962, 21.808327187948663 -26.666390941015976, 21.769754187912753 -26.683963941032346, 21.774027187916715 -26.734172941079102, 21.778745187921118 -26.767499941110138, 21.772636187915424 -26.789863941130967, 21.750418187894724 -26.818472941157616, 21.693054187841312 -26.853054941189818, 21.668327187818278 -26.863681941199715, 21.613054187766807 -26.860835941197067, 21.51666318767704 -26.8524999411893, 21.481391187644192 -26.84222694117974, 21.460273187624523 -26.829726941168097, 21.435691187601606 -26.823754941162534, 21.410554187578214 -26.821663941160587, 21.37763618754755 -26.82139094116033, 21.33889118751148 -26.82902694116744, 21.276945187453776 -26.845554941182833, 21.177773187361424 -26.862226941198365, 21.144163187330122 -26.866672941202502, 21.1288911873159 -26.86639094120224, 21.101109187290007 -26.86305494119913, 21.01250018720748 -26.847499941184644, 20.98832718718498 -26.837635941175463, 20.966245187164418 -26.81715494115639, 20.92416318712523 -26.79861794113912, 20.892082187095355 -26.795345941136077, 20.85582718706158 -26.804999941145063, 20.823473187031453 -26.817635941156837, 20.801800187011253 -26.841526941179083, 20.763882186975934 -26.861117941197328, 20.70389118692009 -26.875554941210773, 20.6411091868616 -26.8259729411646, 20.618891186840926 -26.767499941110138, 20.601945186825134 -26.536390940894904, 20.603336186826425 -26.516390940876278, 20.609718186832367 -26.454445940818587, 20.62324518684497 -26.438863940804076, 20.65221818687195 -26.42583594079194, 20.691800186908807 -26.388054940756753, 20.744445186957847 -26.320835940694153, 20.757218186969737 -26.30444594067889, 20.796391187006236 -26.249445940627666, 20.860282187065735 -26.14180894052742, 20.810273187019163 -25.88083594028437, 20.78388218699456 -25.824717940232105, 20.739436186953185 -25.763054940174683, 20.682154186899822 -25.68569094010263, 20.679163186897057 -25.636672940056982, 20.689091186906296 -25.591181940014607, 20.650000186869875 -25.479445939910548, 20.631945186853073 -25.436945939870967, 20.609718186832367 -25.397363939834108, 20.536391186764092 -25.29805493974162, 20.449718186683356 -25.153617939607102, 20.39000018662773 -25.036945939498437, 20.261945186508484 -24.93166393940038, 20.23708218648534 -24.916108939385893, 20.16610918641922 -24.886390939358222, 20.13221818638766 -24.88444593935641, 20.059163186319637 -24.826390939302343, 20.04444518630592 -24.812226939289147, 20.000945186265398 -24.765408939245546, 20.001663186266086 -24.76555493924569, 20.00221818626659 -24.72416393920713, 20.00194518626634 -24.57222693906563, 20.001109186265552 -24.406390938911187, 20.00055418626505 -24.28221793879554, 20.000000186264515 -23.950835938486918, 20.000536186265037 -23.864408938406427, 20.000273186264792 -23.7572269383066, 20.000000186264515 -23.64749993820442, 19.999445186264012 -23.45417293802437, 19.998900186263512 -23.30869993788889, 19.998891186263506 -23.12278193771573, 19.998609186263224 -22.970835937574222, 19.99828218626294 -22.959917937564057, 19.997773186262464 -22.94333593754861, 19.997500186262187 -22.722499937342945, 19.99759118626227 -22.499999937135726, 19.997218186261932 -22.266945936918674, 19.996109186260895 -22.087499936751556, 19.99666318626143 -22.00499993667472, 20.00047318626497 -22.001563936671516, 20.30832718655168 -22.001390936671356, 20.64971818686962 -21.999999936670065, 20.91777318711928 -21.99833593666851, 20.99194518718835 -21.996945936667217, 20.99277318718913 -21.969445936641605, 20.99277318718913 -21.941945936615994, 20.99277318718913 -21.597226936294945, 20.992500187188853 -21.32222693603883, 20.992500187188853 -21.018890935756332, 20.99302718718934 -20.992454935731715, 20.992809187189152 -20.82427293557508, 20.993327187189635 -20.17917293497429, 20.993073187189395 -19.99821793480575, 20.993527187189812 -19.17194593403623, 20.994163187190424 -18.695281933592298, 20.994163187190424 -18.475563933387676, 20.99360918718989 -18.33860893326012, 20.993291187189612 -18.31841793324132, 21.235554187415232 -18.311945933235293, 21.462500187626574 -18.30444593322831, 21.81694518795669 -18.238335933166738, 22.262218188371378 -18.153890933088093, 22.50000018859282 -18.11126393304839, 22.637218188720624 -18.086672933025497, 23.077773189130937 -18.00444593294891, 23.28710918932589 -17.996335932941363, 23.297109189335202 -17.995945932940998, 23.31639118935317 -18.015417932959124, 23.32583618936195 -18.044999932986684, 23.33000018936582 -18.076390933015915, 23.36305418939662 -18.127226933063255, 23.398054189429217 -18.17610893310878, 23.43110918945999 -18.193890933125346, 23.45347318948083 -18.20360893313439, 23.503054189527006 -18.24833593317605, 23.519718189542516 -18.266945933193384, 23.55416318957461 -18.326117933248497, 23.555063189575435 -18.36166393328159, 23.56389118958367 -18.437226933351965, 23.582427189600935 -18.47520893338735, 23.61325418962963 -18.48516393339662, 23.650554189664376 -18.469717933382228, 23.719163189728278 -18.42528193334084, 23.7916631897958 -18.354172933274626, 23.829854189831366 -18.31499993323814, 23.844027189844553 -18.289999933214858, 23.870418189869127 -18.263054933189764, 23.886936189884523 -18.264763933191347, 23.91221818990806 -18.236945933165444, 23.967218189959283 -18.18499993311707, 24.006663189996033 -18.167781933101026, 24.268891190240254 -18.01333593295719, 24.363054190327944 -17.94916393289742, 24.38833619035148 -17.945835932894326, 24.41694519037813 -17.953754932901703, 24.439791190399404 -17.978054932924337, 24.451945190410726 -17.999172932944006, 24.473609190430892 -18.032781932975297, 24.497909190453527 -18.05930893300001, 24.524163190477992 -18.059999933000654, 24.56631819051725 -18.054235932995283, 24.679163190622347 -17.944172932892783, 24.83277319076541 -17.837708932793632, 24.93610919086163 -17.813890932771443, 24.972773190895794 -17.82110893277816, 25.000000190921128 -17.826045932782762, 25.066391190982984 -17.832226932788515, 25.09909119101343 -17.82784593278444, 25.136391191048176 -17.796563932755305, 25.17937319108819 -17.782081932741818, 25.252382191156187 -17.795708932754508, 25.264427191167414 -17.8022459327606, 25.241800191146325 -17.85513593280986, 25.23791819114271 -17.903754932855136, 25.241391191145965 -17.924445932874406, 25.275554191177775 -18.00541793294981, 25.31742719121678 -18.074935933014558, 25.36639119126238 -18.110554933047737, 25.39652719129043 -18.127917933063898, 25.450000191340223 -18.219999933149666, 25.47944519136766 -18.27444593320037, 25.50082719138757 -18.328335933250557, 25.50638219139273 -18.35110893327176, 25.514445191400256 -18.377645933296478, 25.526391191411392 -18.397499933314975, 25.601663191481492 -18.479581933391415, 25.66166319153737 -18.535835933443806, 25.71889119159067 -18.591390933495546, 25.7966631916631 -18.711945933607822, 25.87028219173166 -18.84402693373083, 25.940554191797105 -18.89319993377663, 25.956109191811578 -18.91360893379563, 25.97666319183074 -18.952781933832114, 25.986945191840306 -18.988054933864973, 25.986673191840055 -18.9982909338745, 25.964163191819097 -19.061672933933536, 25.964373191819277 -19.10479093397369, 26.00000019185245 -19.160835934025883, 26.02221819187315 -19.187781934050975, 26.05471819190342 -19.264999934122898, 26.09860919194429 -19.37555493422586, 26.15180019199383 -19.506526934347832, 26.169373192010198 -19.529863934369573, 26.19666319203563 -19.54736393438587, 26.24347319207922 -19.57209093440889, 26.26360919209796 -19.576945934413416, 26.35666319218464 -19.61694593445067, 26.404445192229133 -19.675835934505514, 26.53666319235228 -19.763617934587273, 26.56867319238208 -19.785217934607388, 26.59013619240207 -19.80125493462232, 26.59569119240723 -19.82736393464664, 26.61090019242141 -19.852781934670304, 26.635273192444117 -19.86569993468234, 26.695836192500508 -19.87788193469369, 26.728536192530953 -19.928754934741065, 26.978954192764178 -20.011317934817953, 27.07916319285752 -20.026672934832263, 27.213609192982716 -20.087363934888785, 27.232845193000628 -20.109099934909025, 27.28250019304687 -20.221108935013334, 27.29055419305439 -20.241672935032497, 27.298882193062127 -20.311526935097547, 27.295827193059296 -20.385281935166233, 27.290836193054645 -20.45472693523091, 27.287454193051502 -20.494963935268387, 27.293891193057505 -20.489172935263, 27.330973193092035 -20.471808935246827, 27.357427193116678 -20.46583593524126, 27.43250019318657 -20.472226935247207, 27.516391193264724 -20.47639093525109, 27.610691193352523 -20.47131793524636, 27.691873193428137 -20.489172935263, 27.715582193450217 -20.510217935282597, 27.7263911934603 -20.54889093531861, 27.73082719346442 -20.748335935504358, 27.726945193460807 -20.791945935544973, 27.710000193445012 -20.84389093559335, 27.694027193430145 -20.864926935612942, 27.68971819342613 -20.934717935677938, 27.68673619342337 -21.07118193580503, 27.727354193461196 -21.131945935861623, 27.747500193479937 -21.151808935880126, 27.780000193510205 -21.1691729358963, 27.842982193568872 -21.224726935948027, 27.89971819362171 -21.308608936026147, 27.94194519366104 -21.383335936095747, 27.970409193687544 -21.440417936148904, 28.007773193722358 -21.545563936246836, 28.012773193727014 -21.561390936261574, 28.015827193729848 -21.566108936265962, 28.04874519376051 -21.57625493627542, 28.161945193865932 -21.593608936291574, 28.202773193903965 -21.59667293629444, 28.238327193937067 -21.595554936293397, 28.280482193976326 -21.58778193628615, 28.350554194041592 -21.602499936299864, 28.380836194069786 -21.615554936312023, 28.408054194095143 -21.630554936325993, 28.462500194145832 -21.654581936348364, 28.506454194186773 -21.660554936353932, 28.52639119420536 -21.64805493634229, 28.56798219424408 -21.632290936327607, 28.646245194316975 -21.649581936343708, 28.863473194519287 -21.75180893643892, 28.92513619457671 -21.769726936455598, 28.955273194604786 -21.771108936456883, 28.98708219463441 -21.770554936456378, 29.07251819471398 -21.80940893649256, 29.0750091947163 -21.833535936515034, 29.04486319468822 -21.877635936556104, 29.035827194679797 -21.903063936579784, 29.031945194676183 -21.93639093661082, 29.035000194679014 -21.965554936637986, 29.046109194689365 -21.99389093666437, 29.058609194701006 -22.0172269366861, 29.07582719471705 -22.039445936706798, 29.093891194733885 -22.053608936719982, 29.11360919475223 -22.062499936728273, 29.148336194784576 -22.074445936739394, 29.181391194815376 -22.080835936745345, 29.220554194851843 -22.07902693674366, 29.248745194878097 -22.070135936735383, 29.267773194895824 -22.077781936742497, 29.36194519498352 -22.176945936834855, 29.37361819499438 -22.19240893684926, 29.274163194901774 -22.194172936850904, 29.07166319471318 -22.220554936875473, 29.045000194688328 -22.224163936878824, 29.024800194669524 -22.227108936881578, 28.961109194610202 -22.326045936973713, 28.968054194616684 -22.3683359370131, 28.964718194613567 -22.388754937032118, 28.950554194600386 -22.41306393705476, 28.93430919458524 -22.439026937078935, 28.917845194569907 -22.454954937093774, 28.828891194487085 -22.490835937127187, 28.638327194309596 -22.56180893719329, 28.456109194139884 -22.57389093720454, 28.356527194047146 -22.576390937206867, 28.298336193992952 -22.609445937237652, 28.196663193898274 -22.675281937298962, 28.179636193882402 -22.686435937309355, 28.16777319387137 -22.703608937325342, 28.159718193863853 -22.72360893734397, 28.161945193865932 -22.744172937363132, 28.156600193860953 -22.771463937388546, 28.109718193817287 -22.806117937420822, 28.04944519376116 -22.863054937473848, 27.97221819368923 -22.952781937557404, 27.94388219366283 -23.03139093763062, 27.78388219351382 -23.170281937759967, 27.70458219343999 -23.200835937788426, 27.604027193346326 -23.21916393780549, 27.572773193317232 -23.266672937849748, 27.565200193310176 -23.31083593789087, 27.55721819330273 -23.348335937925796, 27.529091193276543 -23.379381937954705, 27.502082193251397 -23.38389093795891, 27.452773193205473 -23.3852819379602, 27.407218193163033 -23.387217937962006, 27.33971819310017 -23.399726937973654, 27.148054192921677 -23.52472693809007, 27.098609192875614 -23.5891729381501, 27.06971819284871 -23.6361089381938, 27.030554192812247 -23.653817938210295, 27.00520919278864 -23.643754938200928, 26.978336192763607 -23.69167293824556, 26.959191192745777 -23.752072938301808, 26.963318192749625 -23.759772938308984, 26.919718192709013 -23.92749993846519, 26.880554192672548 -24.087781938614455, 26.852363192646294 -24.253754938769035, 26.830409192625837 -24.27513593878895, 26.787773192586144 -24.295281938807705, 26.759163192559498 -24.304172938815995, 26.726318192528908 -24.310835938822194, 26.555000192369334 -24.436945938939644, 26.514100192331256 -24.480345938980065, 26.493609192312164 -24.511108939008707, 26.485000192304142 -24.53055493902683, 26.47791819229755 -24.55472693904933, 26.46139119228218 -24.584445939077014, 26.440282192262515 -24.60639093909745, 26.411045192235264 -24.628272939117835, 26.401145192226068 -24.631890939121206))) +BDI Burundi MULTIPOLYGON (((30.84366319636348 -2.978790918955184, 30.837227196357475 -2.9947269189700165, 30.83340019635392 -3.086254919055264, 30.853191196372336 -3.1574999191216193, 30.833609196354104 -3.2590269192161685, 30.80305419632566 -3.2836089192390574, 30.76610919629124 -3.299099919253493, 30.738327196265374 -3.282781919238289, 30.65319119618607 -3.332154919284278, 30.635554196169664 -3.350554919301416, 30.625545196160346 -3.3717269193211337, 30.632273196166608 -3.373626919322902, 30.649300196182452 -3.378545919327479, 30.666036196198036 -3.3946549193424858, 30.663473196195667 -3.4168089193631204, 30.625409196160206 -3.454517919398228, 30.591527196128652 -3.4607639194040445, 30.534445196075495 -3.4891639194304958, 30.502218196045476 -3.505554919445771, 30.448473195995433 -3.551045919488132, 30.396663195947184 -3.6891639196167603, 30.391391195942276 -3.711108919637198, 30.403891195953918 -3.765972919688295, 30.400836195951058 -3.786108919707047, 30.372354195924544 -3.772845919694703, 30.343054195897253 -3.7709729196929516, 30.31971819587551 -3.7887549197095183, 30.226800195788968 -3.933608919844417, 30.224718195787034 -3.9652819198739166, 30.174582195740356 -4.0820819199826985, 30.02610919560206 -4.269445920157196, 29.935273195517482 -4.334163920217463, 29.7663911953602 -4.438054920314229, 29.672500195272733 -4.4463909203219885, 29.43082719504767 -4.448054920323543, 29.42333619504069 -4.447499920323025, 29.407500195025932 -4.36916392025006, 29.39750019501662 -4.295835920181773, 29.394445195013787 -4.228890920119426, 29.393054195012496 -4.195281920088121, 29.389027195008737 -4.168054920062772, 29.378327194998775 -4.133608920030682, 29.3462451949689 -4.054863919957356, 29.33639119495973 -4.037081919940789, 29.31305419493799 -4.004999919910915, 29.2941631949204 -3.9824999198899604, 29.275000194902532 -3.96028191986926, 29.25847319488716 -3.94583591985581, 29.238609194868644 -3.920835919832527, 29.23250019486295 -3.8849999197991565, 29.223745194854814 -3.789654919710358, 29.229900194860534 -3.7509639196743194, 29.23250019486295 -3.743335919667217, 29.236382194866565 -3.7197179196452197, 29.240136194870075 -3.692917919620257, 29.246945194876417 -3.594445919528553, 29.24194519487176 -3.4961089194369634, 29.237500194867607 -3.459163919402556, 29.231945194862448 -3.422781919368674, 29.225273194856243 -3.387781919336078, 29.21360919484536 -3.3336089192856235, 29.208336194840456 -3.311663919265186, 29.21444519484615 -3.2903459192453397, 29.236963194867116 -3.2718639192281245, 29.217845194849303 -3.250072919207824, 29.21291819484472 -3.153681919118057, 29.24055419487047 -3.1177819190846208, 29.237218194867353 -3.0602819190310697, 29.215554194847186 -3.0216639189951024, 29.185136194818853 -3.0213179189947823, 29.148609194784825 -2.996108918971302, 28.990691194637748 -2.8143089188019985, 28.98500019463245 -2.784308918774059, 29.000063194646486 -2.756663918748302, 29.024436194669192 -2.74471791873718, 29.041527194685102 -2.729445918722959, 29.053327194696095 -2.6970819186928168, 29.04708219469029 -2.66652691866436, 29.062563194704694 -2.6032639186054354, 29.094163194734136 -2.5922179185951535, 29.140554194777337 -2.5891639185923054, 29.279718194906934 -2.6344459186344835, 29.328891194952746 -2.657081918655564, 29.325836194949886 -2.6833269186800095, 29.35416319497628 -2.7169459187113176, 29.351663194973952 -2.736945918729944, 29.33750019496074 -2.757081918748696, 29.358954194980726 -2.817781918805224, 29.38048219500078 -2.825490918812406, 29.443891195059848 -2.795835918784789, 29.464300195078835 -2.8059729187942253, 29.53555419514521 -2.824445918811435, 29.570554195177806 -2.7999999187886715, 29.597009195202446 -2.802363918790874, 29.61583619521997 -2.793890918782978, 29.630827195233934 -2.781108918771068, 29.69582719529447 -2.805626918793905, 29.73916319533484 -2.8029179187913797, 29.821945195411928 -2.7727819187633145, 29.856945195444524 -2.755554918747279, 29.876391195462645 -2.737499918730464, 29.906454195490625 -2.6936819186896486, 29.92194519550506 -2.6527819186515558, 29.920273195503512 -2.6419459186414684, 29.916382195499864 -2.566390918571102, 29.935273195517482 -2.370835918388977, 29.946945195528343 -2.3211089183426594, 29.95221819553325 -2.3094459183318037, 30.00416319558164 -2.3361089183566293, 30.093054195664422 -2.4091639184246674, 30.112500195682514 -2.420417918435149, 30.158336195725212 -2.428335918442528, 30.28594519584405 -2.3559909183751557, 30.35639119590968 -2.336390918356898, 30.393118195943885 -2.3015639183244616, 30.442427195989808 -2.326045918347262, 30.465136196010945 -2.352363918371779, 30.509445196052212 -2.3834729184007415, 30.5613911961006 -2.399863918416017, 30.573327196111705 -2.399163918415354, 30.52208219606399 -2.4615999184735102, 30.47971819602452 -2.591390918594385, 30.416945195966065 -2.856045918840863, 30.485000196029432 -2.947217918925773, 30.494827196038585 -2.949035918927464, 30.559100196098456 -2.894999918877147, 30.61278219614846 -2.9188909188993932, 30.652354196185314 -2.953954918932041, 30.661527196193845 -2.9741639189508646, 30.74860919627494 -2.99055491896614, 30.84366319636348 -2.978790918955184))) +ATF French Southern & Antarctic Lands MULTIPOLYGON (((68.8394272317498 -49.5130639622936, 68.82666323173791 -49.475281962258414, 68.88082723178834 -49.40361796219167, 68.821382231733 -49.339999962132424, 68.75984523167568 -49.2220819620226, 68.74027223165746 -49.06889096187993, 68.82610923173738 -48.884444961708155, 68.88194523178939 -48.81778196164607, 68.9497182318525 -48.7481269615812, 68.91922723182412 -48.73479096156878, 68.95665423185898 -48.666672961505334, 69.03499123193191 -48.6513909614911, 69.06659123196135 -48.65861796149783, 69.07889123197282 -48.69500896153173, 69.07470923196891 -48.757508961589934, 69.00110023190035 -48.79749996162718, 68.95110923185379 -48.84722696167349, 69.07943623197332 -48.78778196161813, 69.10360923199582 -48.77639096160752, 69.12250023201344 -48.76805496159976, 69.15277223204163 -48.758054961590446, 69.17513623206244 -48.75652696158902, 69.18693623207344 -48.77278196160416, 69.17888223206594 -48.825563961653316, 69.1669272320548 -48.84528196167168, 69.12734523201794 -48.887226961710745, 69.05692723195236 -48.94610896176558, 69.00235423190153 -49.033890961847334, 69.00130923190056 -49.088544961898236, 69.0663092319611 -49.11806396192573, 69.05325423194893 -49.089444961899076, 69.05367223194932 -49.03152696184513, 69.09186323198489 -49.00166396181732, 69.11762723200889 -48.99472696181086, 69.15957223204794 -49.02209096183635, 69.21720923210162 -49.12555496193271, 69.25200923213404 -49.11076396191893, 69.2908362321702 -49.105563961914086, 69.33801823221415 -49.08960896189922, 69.38888223226152 -49.05333596186544, 69.40318223227482 -49.038617961851735, 69.55512723241634 -48.9537549617727, 69.5823542324417 -48.950417961769595, 69.62193623247856 -48.97805496179534, 69.66054523251452 -49.06695496187813, 69.64102723249633 -49.122572961929926, 69.5766632324364 -49.13417296194073, 69.52033623238393 -49.13743596194377, 69.48138223234767 -49.12499996193219, 69.45527223232335 -49.121390961928824, 69.36188223223635 -49.132517961939186, 69.28640923216608 -49.19215496199473, 69.35339123222846 -49.1745179619783, 69.4663822323337 -49.16611796197048, 69.46333623233085 -49.24028196203955, 69.49471823236007 -49.27806396207474, 69.58276323244206 -49.30445496209932, 69.60416323246201 -49.30764496210229, 69.70310923255417 -49.31062696210507, 69.85818223269857 -49.24486396204382, 69.85256323269334 -49.22152696202208, 69.90470923274191 -49.181672961984965, 69.95110923278511 -49.16250896196712, 70.05582723288265 -49.12389096193115, 70.0844362329093 -49.12076396192824, 70.14097223296196 -49.136390961942794, 70.24665423306038 -49.10319096191188, 70.25970923307253 -49.084308961894294, 70.30346323311329 -49.05472696186674, 70.32916323313722 -49.050835961863115, 70.41194523321431 -49.05889096187062, 70.46013623325919 -49.066254961877476, 70.52846323332284 -49.096808961905936, 70.56749123335916 -49.22119096202177, 70.56416323335608 -49.25180896205029, 70.53999123333355 -49.29222696208793, 70.5118002333073 -49.32541796211884, 70.47220923327043 -49.357781962148984, 70.4469362332469 -49.372226962162436, 70.4058182332086 -49.36278196215364, 70.38471823318895 -49.349163962140956, 70.36304523316878 -49.33930896213178, 70.34096323314822 -49.34347296213566, 70.30901823311845 -49.38125496217084, 70.32192723313048 -49.40695496219478, 70.37958223318418 -49.41459096220189, 70.40943623321198 -49.41278196220021, 70.45888223325804 -49.431390962217534, 70.45915423325829 -49.44417296222944, 70.43693623323759 -49.44083596222633, 70.41055423321302 -49.43749996222323, 70.37054523317576 -49.43749996222323, 70.34000023314732 -49.438335962224, 70.29666323310695 -49.42959096221586, 70.28277223309402 -49.40361796219167, 70.26520023307765 -49.37340896216354, 70.21527223303116 -49.347854962139735, 70.1772182329957 -49.34333596213553, 70.12778223294967 -49.341390962133715, 70.10700023293032 -49.34847296214031, 70.07415423289973 -49.36139096215234, 70.04276323287047 -49.366317962156934, 69.98443623281617 -49.36194496215286, 69.95944523279289 -49.358063962149245, 69.90581823274294 -49.34305496213527, 69.82540923266805 -49.34402696213617, 69.87401823271333 -49.37445496216451, 69.89721823273493 -49.38333596217278, 69.91985423275602 -49.39264496218145, 69.94249123277709 -49.434172962220124, 69.90068223273815 -49.44472696222996, 69.86165423270182 -49.418472962205506, 69.82540923266805 -49.39139096218028, 69.77471823262084 -49.39417296218287, 69.78660923263192 -49.463226962247184, 69.80227223264652 -49.49972696228118, 69.81642723265969 -49.51526396229565, 69.84081823268241 -49.55194496232981, 70.02138223285058 -49.58639096236189, 70.04054523286842 -49.564444962341454, 70.03921823286717 -49.53576396231474, 70.13332723295483 -49.50805496228894, 70.1577722329776 -49.508063962288944, 70.32262723313113 -49.54139096231998, 70.33360023314134 -49.55833596233576, 70.31666323312558 -49.60028196237483, 70.28110023309245 -49.66083596243122, 70.2562362330693 -49.689308962457744, 70.04693623287437 -49.70639096247365, 69.87319123271257 -49.69944496246718, 69.84666323268786 -49.682226962451146, 69.7787362326246 -49.58930896236461, 69.78054523262628 -49.55667296233421, 69.75289123260052 -49.53386396231297, 69.63707223249264 -49.507226962288165, 69.65277223250729 -49.53305496231222, 69.6817912325343 -49.541663962320236, 69.72165423257144 -49.584308962359955, 69.715827232566 -49.64549096241693, 69.69373623254543 -49.66722696243718, 69.64139123249669 -49.668063962437955, 69.48277223234896 -49.6361179624082, 69.43867223230788 -49.62159996239468, 69.35970923223434 -49.564726962341716, 69.25471823213655 -49.51278196229334, 69.08047223197428 -49.542154962320694, 69.07193623196633 -49.57667296235284, 69.09290923198586 -49.61417296238776, 69.10999123200176 -49.63736396240937, 69.10790923199983 -49.66583596243588, 69.07720923197124 -49.69056396245891, 69.00665423190554 -49.72028196248659, 68.98597223188628 -49.723890962489946, 68.93026323183437 -49.72500896249099, 68.79207223170567 -49.718754962485164, 68.75909123167497 -49.67861796244778, 68.7735272316884 -49.59257296236765, 68.82221823173376 -49.52806396230757, 68.8394272317498 -49.5130639622936)), ((69.21554523210008 -49.09944496190839, 69.20589123209109 -49.09035496189992, 69.20304523208844 -49.01500896182975, 69.21638223210087 -48.96722696178525, 69.2724912321531 -48.914726961736356, 69.28305423216295 -48.90778196172989, 69.34693623222245 -48.88486396170855, 69.3688822322429 -48.886390961709964, 69.40749123227883 -48.9329179617533, 69.40527223227679 -48.94458196176416, 69.33249123220898 -49.03917296185225, 69.26470923214586 -49.09111796190063, 69.21554523210008 -49.09944496190839)), ((51.803054215883435 -46.45667295944711, 51.72138221580738 -46.45278195944349, 51.71055421579729 -46.4466729594378, 51.66166321575176 -46.39972695939408, 51.65083621574166 -46.38583595938114, 51.65374521574438 -46.37194495936821, 51.73082721581616 -46.327644959326946, 51.752636215836475 -46.33000895932915, 51.78221821586402 -46.34236395934065, 51.844300215921834 -46.38417295937959, 51.86040921593684 -46.40139095939563, 51.86360921593982 -46.41250895940598, 51.85610921593283 -46.42417295941684, 51.82221821590127 -46.45209095944285, 51.803054215883435 -46.45667295944711)), ((52.1913822162451 -46.46361795945358, 52.17027321622544 -46.45694495944737, 52.10944521616878 -46.43167295942383, 52.098327216158424 -46.42556395941814, 52.08985421615054 -46.412917959406364, 52.09777321615792 -46.400699959394984, 52.139163216196465 -46.38333595937881, 52.17832721623293 -46.37139095936769, 52.195000216248445 -46.37083595936717, 52.2572182163064 -46.378063959373904, 52.270000216318294 -46.3827819593783, 52.308745216354396 -46.40778195940158, 52.29971821634598 -46.44222695943366, 52.28860921633563 -46.45166395944245, 52.254436216303816 -46.45749995944789, 52.1913822162451 -46.46361795945358))) +HMD Heard I. & McDonald Is. MULTIPOLYGON (((73.77388223634537 -53.125026965657504, 73.74665423632001 -53.12694496565929, 73.7197092362949 -53.13195496566396, 73.68860023626593 -53.140835965672224, 73.66777223624655 -53.148890965679726, 73.64776323622792 -53.15778196568801, 73.63581823621678 -53.16417296569396, 73.6216542362036 -53.17264496570185, 73.56749123615313 -53.19194496571983, 73.55055423613737 -53.19583596572345, 73.53166323611978 -53.198335965725775, 73.50999123609958 -53.19944496572681, 73.47444523606649 -53.1941729657219, 73.46053623605354 -53.18917296571724, 73.43026323602535 -53.16611796569577, 73.39665423599405 -53.138335965669896, 73.3572092359573 -53.07805496561376, 73.2880542358929 -53.0266729655659, 73.25555423586263 -53.019172965558916, 73.24249123585045 -53.006672965547274, 73.23470923584321 -52.99249996553408, 73.30346323590726 -52.9651449655086, 73.3545092359548 -53.00749996554805, 73.37250023597156 -53.019172965558916, 73.43415423602897 -53.02972696556875, 73.44444523603855 -53.030281965569266, 73.46582723605846 -53.025554965564865, 73.48318223607461 -53.01555496555555, 73.52707223611549 -53.01222696555245, 73.57889123616377 -53.02444496556383, 73.63276323621395 -53.046390965584266, 73.64721823622739 -53.05806396559514, 73.65470923623437 -53.06749996560393, 73.6633272362424 -53.07611796561195, 73.67776323625586 -53.08805496562307, 73.70637223628248 -53.104999965638854, 73.71943623629465 -53.110835965644284, 73.74720923632051 -53.1208359656536, 73.77388223634537 -53.125026965657504))) +KEN Kenya MULTIPOLYGON (((33.921100199229556 -1.0019459171140994, 33.92333619923164 -0.9530549170685703, 33.918609199227234 -0.4527819166026461, 33.951663199258036 -0.2718089164341109, 33.97610019928078 -0.1341639163059085, 33.96638219927172 -0.1008359162748746, 33.950482199256925 -0.0481359162257888, 33.936836199244226 0.0000000838190317, 33.92304519923138 0.0486090838643065, 33.91250019922154 0.0825000838958658, 33.90721819921663 0.103054083915012, 33.98180919928609 0.2050730840100243, 34.05360019935296 0.3016640840999827, 34.106382199402105 0.3877820841801878, 34.1636001994554 0.6084730843857216, 34.21346319950186 0.6329180844084874, 34.248600199534565 0.6394450844145609, 34.26916319955373 0.6484730844229745, 34.410827199685656 0.8219450845845273, 34.44221819971489 0.8719450846310934, 34.480136199750206 0.9591640847123273, 34.485554199755256 0.9840270847354873, 34.483118199752994 1.0116640847612217, 34.48777319975733 1.0431910847905783, 34.5043001997727 1.0808360848256484, 34.52000019978732 1.1058360848489315, 34.57554519983907 1.0926820848366816, 34.59714519985917 1.1504820848905126, 34.691663199947214 1.208127084944195, 34.739718199991955 1.2141640849498145, 34.76471820001524 1.2169450849523997, 34.80166320004966 1.2219450849570563, 34.82034520006704 1.2359730849701265, 34.829718200075774 1.2691640850010373, 34.828882200074986 1.2950000850250944, 34.82208220006868 1.3156910850443637, 34.803745200051594 1.3350000850623474, 34.79221820004085 1.3936090851169354, 34.79568220004407 1.398554085121546, 34.853191200097626 1.4280540851490144, 34.86388220010758 1.4594450851782454, 34.87430020011729 1.5061090852217092, 34.88527320012753 1.5308360852447436, 34.90040920014161 1.5530540852654298, 34.91819120015816 1.5629180852746174, 34.943463200181725 1.5688910852801854, 34.95916320019634 1.587218085297252, 34.9997182002341 1.670282085374609, 35.00971820024341 1.8952820855841566, 34.99443620022919 2.0850000857608393, 34.941936200180294 2.2238910858902017, 34.91916320015909 2.2777820859403874, 34.88777320012986 2.3572180860143703, 34.881100200123626 2.3783360860340395, 34.8802002001228 2.403400086057374, 34.909436200150026 2.5211090861670016, 34.84346320008859 2.5977820862384107, 34.792500200041104 2.6804180863153704, 34.78930020003813 2.7006910863342455, 34.78166320003103 2.7895820864170418, 34.75555420000671 2.8499270864732438, 34.712218199966344 2.878054086499432, 34.68561819994159 2.863891086486248, 34.66548219992282 2.8609730864835257, 34.593400199855694 2.9367360865540917, 34.582500199845526 3.00721808661973, 34.5723541998361 3.0829180866902277, 34.56166319982614 3.106809086712474, 34.5450001998106 3.127500086731743, 34.508745199776854 3.14528208674831, 34.453891199725774 3.245554086841693, 34.403745199679065 3.385282086971827, 34.40340019967874 3.484164087063917, 34.435482199708616 3.500073087078732, 34.45347319972538 3.521109087098324, 34.465000199736096 3.6144450871852456, 34.463609199734805 3.664654087232009, 34.381663199658504 3.731664087294419, 34.361109199639344 3.7380540873003696, 34.222218199509996 3.779164087338657, 34.18471819947507 3.8400000873953104, 34.12832719942256 3.9518090874994414, 34.088054199385056 4.097218087634872, 34.06304519936177 4.173609087706012, 34.049445199349094 4.190554087721793, 34.02624519932749 4.208054087738091, 33.996663199299945 4.22278208775181, 34.096109199392544 4.320554087842865, 34.37416319965152 4.596664088100013, 34.38819119966456 4.609682088112137, 34.40777319968282 4.6105540881129485, 34.48221819975214 4.611109088113466, 34.71305419996713 4.612218088114503, 34.7738912000238 4.612500088114757, 34.821391200068035 4.612218088114503, 34.950273200188064 4.612782088115026, 35.14694520037122 4.613891088116063, 35.508882200708285 4.616736088118714, 35.54694520074375 4.61666408811864, 35.5808272007753 4.6169450881188965, 35.60845420080102 4.617745088119648, 35.64193620083222 4.617218088119159, 35.67582720086378 4.617500088119414, 35.69610920088266 4.6180540881199335, 35.69923620088559 4.619182088120979, 35.70971820089534 4.617773088119677, 35.89971820107229 4.619718088121488, 35.94055420111033 4.62250008812407, 35.95110920112015 4.521109088029647, 36.04530020120788 4.447082087960709, 36.21116320136235 4.44800008796156, 36.271663201418704 4.43916408795333, 36.43360920156951 4.441664087955658, 36.64750020176871 4.446664087960315, 36.66638220178629 4.433609087948156, 36.71215420182892 4.4338360879483645, 36.8877732019925 4.434718087949193, 37.039718202134 4.375554087894088, 37.099163202189374 4.331664087853213, 37.13027320221835 4.2863910878110545, 37.2805452023583 4.194445087725413, 37.99805420302653 3.7286090872915736, 38.033609203059626 3.6980540872631167, 38.05610920308058 3.65194508722017, 38.12110920314112 3.6116640871826604, 38.32388220332996 3.6088910871800834, 38.44805420344562 3.5994450871712758, 38.51693620350977 3.626945087196887, 38.62193620360756 3.601664087173347, 38.72943620370768 3.5672180871412706, 38.81000020378269 3.5433360871190303, 38.913600203879184 3.513891087091608, 38.95638220391905 3.518609087095996, 39.046100204002585 3.5288910871055776, 39.08471820403855 3.53444508711074, 39.130000204080716 3.5108360870887623, 39.19693620414307 3.478609087058743, 39.248891204191466 3.4713910870520266, 39.295000204234384 3.4752820870556462, 39.29613620423547 3.4765000870567775, 39.32864520426574 3.4996540870783406, 39.331382204268294 3.469164087049947, 39.42249120435312 3.460000087041408, 39.45082720437952 3.462500087043736, 39.49958220442494 3.45013608703222, 39.50208220442727 3.422636087006609, 39.519027204443034 3.409309086994199, 39.56027320448146 3.4066640869917393, 39.594991204513775 3.500836087079449, 39.78277320468868 3.678336087244759, 39.86666320476681 3.869445087422733, 40.000000204890966 3.928582087477821, 40.18250020506093 4.022500087565277, 40.38860920525289 4.0988910876364315, 40.39889120526249 4.123054087658929, 40.67221820551703 4.228609087757235, 40.783763205620915 4.287973087812517, 40.853609205685956 4.2347180877629285, 40.87693620570769 4.216664087746111, 41.00943620583109 4.108609087645476, 41.04819120586717 4.0604180876005955, 41.063609205881534 4.031245087573424, 41.09360920590947 3.996391087540971, 41.11471820592914 3.9759730875219503, 41.13513620594816 3.958473087505652, 41.160554205971835 3.9458360874938876, 41.18097320599085 3.941527087489874, 41.273891206077394 3.9411090874894796, 41.46902720625911 3.949309087497113, 41.48763620627645 3.961109087508106, 41.53485420632043 3.976109087522076, 41.61138220639171 3.9891640875342347, 41.72582720649828 4.000136087544448, 41.78110920654976 3.9819450875275066, 41.80082720656813 3.960554087507589, 41.84013620660474 3.948473087496339, 41.89194520665299 3.9698640875162567, 41.90516320666529 3.980318087526001, 41.89643620665717 3.964254087511037, 41.797773206565296 3.824718087381086, 41.3369362061361 3.167500086768996, 41.28638220608903 3.118336086723218, 40.99135420581425 2.8355360864598396, 40.988609205811684 2.7166640863491267, 40.988609205811684 2.3093000859697383, 40.988609205811684 1.3139540850427522, 40.988609205811684 0.0000000838190317, 40.99832720582074 -0.8661089169875851, 41.15388220596563 -1.0680549171756724, 41.381382206177506 -1.364717917451955, 41.55527320633945 -1.592217917663831, 41.558154206342124 -1.6748729177408137, 41.53819120632352 -1.6894459177543837, 41.478336206267784 -1.7527819178133655, 41.454991206246035 -1.7836089178420735, 41.43777320623002 -1.8074999178643338, 41.43416320622666 -1.8280549178834775, 41.414445206208285 -1.8524999179062434, 41.31528220611594 -1.9580549180045494, 41.280273206083336 -1.9702819180159281, 41.200827206009336 -1.9727819180182564, 41.10555420592061 -1.9819459180267955, 40.99166320581455 -2.0341639180754214, 40.891663205721414 -2.0191639180614516, 40.910554205739004 -2.122781918157955, 40.945000205771066 -2.2124999182415195, 40.97040920579474 -2.2308359182585917, 40.982082205805625 -2.2572179182831604, 40.95847320578363 -2.3043729183270756, 40.92093620574866 -2.3159359183378427, 40.92569120575308 -2.288335918312143, 40.89000020571984 -2.225835918253935, 40.85500020568725 -2.236108918263497, 40.83916320567252 -2.24833591827489, 40.78582720562284 -2.30041791832339, 40.784300205621406 -2.33041791835133, 40.81257320564774 -2.3590999183780497, 40.82416320565855 -2.383190918400487, 40.81374520564884 -2.4004179184165224, 40.63048220547816 -2.5528459185584893, 40.59194520544227 -2.5538909185594605, 40.56374520541601 -2.5416639185480676, 40.532909205387284 -2.526390918533849, 40.485836205343446 -2.5352819185421254, 40.42194520528395 -2.554163918559709, 40.38221820524694 -2.5688909185734303, 40.338609205206325 -2.5938909185967134, 40.3119452051815 -2.6097179186114516, 40.27805420514994 -2.6299999186303467, 40.23110920510621 -2.6711089186686223, 40.18943620506741 -2.7430549187356377, 40.17139120505061 -2.779999918770045, 40.16444520504413 -2.8936089188758416, 40.16624520504581 -2.932781918912326, 40.177500205056276 -2.983054918959155, 40.15777320503793 -3.080835919050216, 40.11937320500215 -3.1902819191521417, 40.13180020501372 -3.2212549191809927, 40.12548220500784 -3.2656909192223793, 40.10777320499136 -3.2920819192469537, 40.06277320494945 -3.315281919268557, 40.02527320491453 -3.340554919292103, 39.974163204866926 -3.375835919324956, 39.93500020483043 -3.4669459194098096, 39.87138220477121 -3.619999919552356, 39.87055420477043 -3.641945919572791, 39.87221820477197 -3.6741639196027904, 39.86749120476756 -3.6955549196227224, 39.83639120473862 -3.798890919718957, 39.829163204731884 -3.8188909197375835, 39.80554520470989 -3.8755549197903605, 39.781663204687646 -3.9258359198371835, 39.72110920463123 -4.016945919922037, 39.693118204605184 -4.052499919955153, 39.6716632045852 -4.092226919992143, 39.52555420444912 -4.41778192029534, 39.4025002043345 -4.633890920496611, 39.325827204263106 -4.639999920502305, 39.305273204243974 -4.602081920466986, 39.255827204197914 -4.611945920476174, 39.20302720414875 -4.6696179205298876, 39.161663204110226 -4.639445920501785, 39.037773203994846 -4.549999920418486, 38.72110920369991 -4.32249992020661, 38.624445203609895 -4.253335920142192, 38.486663203481584 -4.154999920050614, 38.41750020341715 -4.105835920004822, 37.85139120288994 -3.700554919627379, 37.78305420282629 -3.6511089195813184, 37.764854202809346 -3.6152819195479537, 37.75638220280143 -3.5786089195137976, 37.75000020279549 -3.5506909194878062, 37.737354202783735 -3.5287549194673744, 37.686391202736274 -3.512499919452239, 37.62638220268036 -3.5095179194494506, 37.60000020265579 -3.4502819193942855, 37.60013620265593 -3.4247179193704795, 37.61027320266538 -3.401526919348882, 37.690554202740145 -3.3166639192698426, 37.719991202767545 -3.3119459192654546, 37.71249120276056 -3.267499919224065, 37.69805420274713 -3.1866639191487707, 37.675282202725924 -3.0513909190227935, 37.6027732026584 -2.9958359189710535, 37.522500202583615 -2.9491639189275816, 37.50124520256384 -2.9380549189172456, 37.425282202493094 -2.906945918888269, 37.27860920235648 -2.825554918812472, 37.222582202304295 -2.794454918783501, 37.19582720227939 -2.778890918769008, 36.68527320180391 -2.4969459185064267, 36.32555420146889 -2.298335918321456, 36.153327201308485 -2.199999918229878, 36.0332822011967 -2.133081918167548, 35.8808272010547 -2.0483359180886254, 35.67832720086611 -1.9358359179838516, 35.26888220048477 -1.707217917770933, 34.717218199971 -1.398890917483783, 34.50027319976897 -1.2777819173709872, 34.40971819968462 -1.2272179173238982, 34.075554199373414 -1.0391639171487554, 34.018745199320506 -1.0011089171133136, 33.94832719925492 -1.0011089171133136, 33.921100199229556 -1.0019459171140994)), ((40.99750020581996 -2.2030549182327235, 40.98930020581233 -2.2013909182311693, 40.95033620577604 -2.171317918203158, 40.972773205796955 -2.1091639181452706, 40.99069120581362 -2.0894459181269127, 41.063891205881816 -2.0441639180847346, 41.07500020589214 -2.0413909180821577, 41.098673205914196 -2.038190918079181, 41.129163205942604 -2.052499918092508, 41.162427205973586 -2.081108918119142, 41.16916320597986 -2.0980549181349346, 41.163745205974806 -2.108890918145022, 41.13805420595088 -2.124445918159509, 41.09416320591001 -2.1399999181739986, 41.0605542058787 -2.133335918167788, 41.016109205837296 -2.148890918182275, 41.000273205822566 -2.1783359182096973, 40.99750020581996 -2.2030549182327235))) +RWA Rwanda MULTIPOLYGON (((29.024436194669192 -2.74471791873718, 29.017118194662373 -2.724026918717911, 28.97590019462399 -2.6942359186901683, 28.94291819459326 -2.6912549186873918, 28.923473194575166 -2.679999918676913, 28.90221819455536 -2.6599999186582863, 28.854445194510873 -2.5261089185335805, 28.867427194522975 -2.3986819184149084, 28.893473194547227 -2.3663909183848375, 28.98500019463245 -2.3344459183550867, 29.0977731947375 -2.268545918293711, 29.11832719475663 -2.2411089182681536, 29.130491194767956 -2.212945918241928, 29.14389119478045 -2.1891639182197764, 29.156391194792093 -2.160835918193399, 29.166391194801406 -2.1331909181676565, 29.170554194805277 -2.093335918130535, 29.167500194802415 -2.0686089181075005, 29.14820919478447 -2.0143639180569863, 29.135273194772424 -1.9763909180216217, 29.128054194765696 -1.9488909179960103, 29.124300194762185 -1.9160459179654197, 29.129927194767447 -1.8510459179048837, 29.143473194780057 -1.8151359178714443, 29.25139119488057 -1.6547179177220386, 29.270836194898664 -1.6263909176956588, 29.362009194983585 -1.5108999175881053, 29.442773195058805 -1.5041639175818204, 29.45639119507149 -1.5041639175818204, 29.47000019508414 -1.482499917561654, 29.495282195107706 -1.4495819175309919, 29.538327195147787 -1.4136089174974842, 29.573327195180383 -1.3934729174787321, 29.59694519520238 -1.3858359174716242, 29.6173631952214 -1.3870819174727842, 29.640827195243247 -1.38666391747239, 29.67750019527739 -1.3816639174677334, 29.697773195296293 -1.367499917454552, 29.717218195314388 -1.3474999174359255, 29.835282195424355 -1.3197179174100455, 29.855273195442976 -1.3269459174167793, 29.88416319546988 -1.3704179174572602, 29.8845091954702 -1.4018089174865054, 29.89055419547583 -1.4327819175153422, 29.91000019549392 -1.4650729175454131, 29.929718195512294 -1.4761089175556918, 29.936663195518776 -1.4758359175554432, 29.97971819555886 -1.462217917542759, 30.10916319567943 -1.367499917454552, 30.171663195737636 -1.3149999174056575, 30.229163195791187 -1.2666639173606313, 30.283473195841765 -1.209654917307546, 30.297773195855086 -1.184717917284317, 30.315354195871436 -1.1437639172461758, 30.3608271959138 -1.0609729171690674, 30.45194519599866 -1.0544459171629939, 30.476754196021773 -1.0593269171675388, 30.48221819602685 -1.0633359171712726, 30.46694519601263 -1.07499991718214, 30.45444519600099 -1.1013909172067144, 30.470554196015996 -1.1606909172619453, 30.564718196103684 -1.3306909174202701, 30.63750019617146 -1.389445917474987, 30.686109196216734 -1.3872179174729098, 30.739163196266162 -1.4369459175192247, 30.748891196275224 -1.5170819175938561, 30.830936196351615 -1.6548999177222043, 30.81110919633315 -1.7005549177647339, 30.81832719633988 -1.7287549177909938, 30.835000196355395 -1.8005549178578661, 30.824718196345827 -1.8466639179007984, 30.808327196330566 -1.929445917977901, 30.871427196389334 -2.038263918079238, 30.893263196409663 -2.075490918113914, 30.88618219640307 -2.0972909181342203, 30.84819119636768 -2.189717918220296, 30.843191196363023 -2.2241639182523727, 30.848745196368213 -2.26110891828678, 30.851800196371045 -2.297917918321062, 30.84582719636549 -2.325690918346936, 30.830763196351455 -2.35430891837359, 30.782218196306246 -2.3805549183980332, 30.72639119625427 -2.3551359183743585, 30.7062451962355 -2.3477819183675024, 30.58624519612374 -2.3876359184046265, 30.573327196111705 -2.399163918415354, 30.5613911961006 -2.399863918416017, 30.509445196052212 -2.3834729184007415, 30.465136196010945 -2.352363918371779, 30.442427195989808 -2.326045918347262, 30.393118195943885 -2.3015639183244616, 30.35639119590968 -2.336390918356898, 30.28594519584405 -2.3559909183751557, 30.158336195725212 -2.428335918442528, 30.112500195682514 -2.420417918435149, 30.093054195664422 -2.4091639184246674, 30.00416319558164 -2.3361089183566293, 29.95221819553325 -2.3094459183318037, 29.946945195528343 -2.3211089183426594, 29.935273195517482 -2.370835918388977, 29.916382195499864 -2.566390918571102, 29.920273195503512 -2.6419459186414684, 29.92194519550506 -2.6527819186515558, 29.906454195490625 -2.6936819186896486, 29.876391195462645 -2.737499918730464, 29.856945195444524 -2.755554918747279, 29.821945195411928 -2.7727819187633145, 29.73916319533484 -2.8029179187913797, 29.69582719529447 -2.805626918793905, 29.630827195233934 -2.781108918771068, 29.61583619521997 -2.793890918782978, 29.597009195202446 -2.802363918790874, 29.570554195177806 -2.7999999187886715, 29.53555419514521 -2.824445918811435, 29.464300195078835 -2.8059729187942253, 29.443891195059848 -2.795835918784789, 29.38048219500078 -2.825490918812406, 29.358954194980726 -2.817781918805224, 29.33750019496074 -2.757081918748696, 29.351663194973952 -2.736945918729944, 29.35416319497628 -2.7169459187113176, 29.325836194949886 -2.6833269186800095, 29.328891194952746 -2.657081918655564, 29.279718194906934 -2.6344459186344835, 29.140554194777337 -2.5891639185923054, 29.094163194734136 -2.5922179185951535, 29.062563194704694 -2.6032639186054354, 29.04708219469029 -2.66652691866436, 29.053327194696095 -2.6970819186928168, 29.041527194685102 -2.729445918722959, 29.024436194669192 -2.74471791873718))) +TZA Tanzania MULTIPOLYGON (((34.136363199430036 -9.571172925094814, 34.07443619937237 -9.507781925035772, 34.041527199341715 -9.4837549250134, 34.002700199305565 -9.487781925017146, 33.957218199263195 -9.526672925053376, 33.949300199255816 -9.551808925076784, 33.95242719925875 -9.57839992510155, 33.960273199266055 -9.604445925125802, 33.95860919926449 -9.6286089251483, 33.94450919925137 -9.686254925201993, 33.918818199227445 -9.706735925221068, 33.900273199210176 -9.684163925200039, 33.871382199183245 -9.659726925177281, 33.76290919908223 -9.58513592510782, 33.57889119891087 -9.584717925107427, 33.54943619888343 -9.594999925117008, 33.53152719886674 -9.613890925134598, 33.49347319883131 -9.622081925142226, 33.42916319877142 -9.609654925130656, 33.41791819876093 -9.578472925101607, 33.39805419874244 -9.542845925068434, 33.31193619866224 -9.486045925015532, 33.25471819860894 -9.492226925021285, 33.19964519855765 -9.507635925035643, 33.12895419849181 -9.491872925020957, 33.031963198401485 -9.419045924953139, 33.01939119838977 -9.399754924935166, 33.001245198372885 -9.376672924913677, 32.96777319834172 -9.384163924920642, 32.943336198318946 -9.399863924935275, 32.94040019831621 -9.405081924940134, 32.91527319829282 -9.390281924926342, 32.87471819825504 -9.377226924914183, 32.844163198226596 -9.37389092491108, 32.76777319815545 -9.332499924872536, 32.70277319809492 -9.282217924825702, 32.62832719802557 -9.274172924818217, 32.54006319794337 -9.26118192480611, 32.505482197911164 -9.217290924765237, 32.49069119789738 -9.176735924727467, 32.42124519783272 -9.129026924683032, 32.36555419778085 -9.132499924686272, 32.30166319772135 -9.134726924688337, 32.25860919768124 -9.133335924687046, 32.22138219764656 -9.120281924674885, 32.199718197626396 -9.09972692465574, 32.16034519758972 -9.064445924622888, 32.094936197528824 -9.058717924617554, 32.08639119752087 -9.051945924611246, 32.058745197495114 -9.041526924601541, 32.02992719746828 -9.046317924606, 32.002636197442854 -9.06833592462651, 31.98166319742333 -9.070626924628641, 31.939300197383858 -9.031254924591977, 31.932782197377804 -9.009726924571922, 31.931800197376873 -8.973890924538551, 31.93832719738296 -8.95305492451915, 31.952082197395782 -8.936254924503501, 31.897782197345208 -8.91416392448292, 31.835000197286718 -8.897781924467665, 31.78738219724238 -8.887681924458263, 31.74124519719942 -8.912754924481618, 31.706391197166965 -8.917081924485643, 31.683609197145728 -8.908890924478015, 31.592782197061155 -8.839726924413597, 31.573954197043605 -8.81778192439316, 31.563891197034252 -8.751390924331332, 31.48555419696129 -8.66639092425217, 31.414718196895308 -8.633608924221633, 31.295554196784337 -8.619999924208969, 31.22680019672029 -8.579717924171447, 31.202773196697933 -8.578890924170679, 31.170273196667665 -8.59528192418594, 31.142291196641594 -8.612845924202304, 31.110418196611903 -8.613890924203275, 31.07889119658256 -8.607499924197327, 31.05944519656444 -8.59972692419008, 31.03263619653947 -8.584999924176373, 30.976945196487605 -8.547499924141448, 30.960973196472736 -8.53221792412721, 30.907500196422916 -8.467781924067197, 30.85277319637197 -8.381672923987011, 30.835836196356183 -8.35291792396022, 30.794163196317385 -8.265554923878867, 30.770836196295647 -8.19833592381626, 30.77123619629603 -8.192245923810589, 30.759445196285043 -8.14499992376659, 30.707218196236397 -7.994999923626892, 30.696945196226835 -7.970281923603864, 30.66889119620072 -7.9149999235523865, 30.650554196183634 -7.88041792352017, 30.617500196152832 -7.833890923476844, 30.57750019611558 -7.778054923424847, 30.520554196062562 -7.696390923348787, 30.50971819605246 -7.679445923333006, 30.471391196016782 -7.613472923271559, 30.455827196002275 -7.580281923240648, 30.448609195995544 -7.559717923221498, 30.43971819598727 -7.529999923193827, 30.431945195980035 -7.484999923151918, 30.429445195977706 -7.455972923124875, 30.42610919597459 -7.427781923098621, 30.42082719596968 -7.405281923077666, 30.40944519595908 -7.364308923039516, 30.379163195930886 -7.279726922960734, 30.354445195907857 -7.220281922905372, 30.338054195892596 -7.187499922874849, 30.315000195871107 -7.1437549228341055, 30.246663195807486 -7.04360892274083, 30.22666319578886 -7.014999922714196, 30.188327195753146 -6.962499922665302, 30.172082195738028 -6.944163922648215, 30.141663195709697 -6.919163922624932, 30.070554195643467 -6.851390922561819, 30.064854195638162 -6.845763922556571, 30.037154195612345 -6.822635922535042, 30.00250019558007 -6.8022179225160215, 29.984163195563013 -6.792781922507231, 29.950000195531175 -6.778890922494298, 29.914718195498324 -6.766108922482388, 29.885418195471033 -6.75083592246817, 29.761391195355543 -6.653890922377883, 29.73916319533484 -6.634581922359899, 29.720418195317365 -6.611808922338696, 29.703891195301992 -6.586390922315019, 29.613054195217387 -6.39972692214117, 29.56721819517469 -6.331254922077406, 29.55028219515893 -6.295281922043898, 29.54083619515012 -6.263054922013893, 29.49833619511054 -6.056390921821418, 29.495000195107423 -6.00889092177718, 29.497773195110028 -5.979726921750014, 29.50471819511648 -5.945835921718455, 29.51639119512737 -5.9230549216972435, 29.538327195147787 -5.889999921666458, 29.570000195177272 -5.851945921631014, 29.59208219519786 -5.828472921609148, 29.608745195213373 -5.807217921589356, 29.63000019523315 -5.754863921540604, 29.631663195234722 -5.721945921509942, 29.62610919522953 -5.685554921476054, 29.597500195202883 -5.57916392137696, 29.573054195180134 -5.520554921322386, 29.562218195170033 -5.496390921299877, 29.54389119515298 -5.4663909212719375, 29.534445195144173 -5.448054921254865, 29.527218195137436 -5.427499921235722, 29.513609195124758 -5.385554921196658, 29.487218195100183 -5.293608921111016, 29.476109195089833 -5.236663921057982, 29.45430019506952 -5.176663921002103, 29.430000195046887 -5.147499920974951, 29.41416319503216 -5.125281920954251, 29.403327195022058 -5.101390920932005, 29.379718195000066 -5.041108920875857, 29.365273194986628 -4.999999920837581, 29.363054194984556 -4.995281920833179, 29.3513911949737 -4.951390920792306, 29.34790919497044 -4.9304179207727685, 29.341945194964893 -4.883890920729442, 29.34082719496385 -4.850281920698137, 29.341391194964388 -4.797781920649243, 29.34777319497033 -4.763335920617166, 29.358745194980543 -4.729726920585861, 29.371800194992687 -4.701663920559724, 29.3977821950169 -4.638054920500494, 29.411109195029297 -4.6033359204681545, 29.42027319503785 -4.5783359204448715, 29.429718195046632 -4.545072920413887, 29.430273195047164 -4.501108920372943, 29.42693619504405 -4.4558359203307845, 29.42333619504069 -4.447499920323025, 29.43082719504767 -4.448054920323543, 29.672500195272733 -4.4463909203219885, 29.7663911953602 -4.438054920314229, 29.935273195517482 -4.334163920217463, 30.02610919560206 -4.269445920157196, 30.174582195740356 -4.0820819199826985, 30.224718195787034 -3.9652819198739166, 30.226800195788968 -3.933608919844417, 30.31971819587551 -3.7887549197095183, 30.343054195897253 -3.7709729196929516, 30.372354195924544 -3.772845919694703, 30.400836195951058 -3.786108919707047, 30.403891195953918 -3.765972919688295, 30.391391195942276 -3.711108919637198, 30.396663195947184 -3.6891639196167603, 30.448473195995433 -3.551045919488132, 30.502218196045476 -3.505554919445771, 30.534445196075495 -3.4891639194304958, 30.591527196128652 -3.4607639194040445, 30.625409196160206 -3.454517919398228, 30.663473196195667 -3.4168089193631204, 30.666036196198036 -3.3946549193424858, 30.649300196182452 -3.378545919327479, 30.632273196166608 -3.373626919322902, 30.625545196160346 -3.3717269193211337, 30.635554196169664 -3.350554919301416, 30.65319119618607 -3.332154919284278, 30.738327196265374 -3.282781919238289, 30.76610919629124 -3.299099919253493, 30.80305419632566 -3.2836089192390574, 30.833609196354104 -3.2590269192161685, 30.853191196372336 -3.1574999191216193, 30.83340019635392 -3.086254919055264, 30.837227196357475 -2.9947269189700165, 30.84366319636348 -2.978790918955184, 30.74860919627494 -2.99055491896614, 30.661527196193845 -2.9741639189508646, 30.652354196185314 -2.953954918932041, 30.61278219614846 -2.9188909188993932, 30.559100196098456 -2.894999918877147, 30.494827196038585 -2.949035918927464, 30.485000196029432 -2.947217918925773, 30.416945195966065 -2.856045918840863, 30.47971819602452 -2.591390918594385, 30.52208219606399 -2.4615999184735102, 30.573327196111705 -2.399163918415354, 30.58624519612374 -2.3876359184046265, 30.7062451962355 -2.3477819183675024, 30.72639119625427 -2.3551359183743585, 30.782218196306246 -2.3805549183980332, 30.830763196351455 -2.35430891837359, 30.84582719636549 -2.325690918346936, 30.851800196371045 -2.297917918321062, 30.848745196368213 -2.26110891828678, 30.843191196363023 -2.2241639182523727, 30.84819119636768 -2.189717918220296, 30.88618219640307 -2.0972909181342203, 30.893263196409663 -2.075490918113914, 30.871427196389334 -2.038263918079238, 30.808327196330566 -1.929445917977901, 30.824718196345827 -1.8466639179007984, 30.835000196355395 -1.8005549178578661, 30.81832719633988 -1.7287549177909938, 30.81110919633315 -1.7005549177647339, 30.830936196351615 -1.6548999177222043, 30.748891196275224 -1.5170819175938561, 30.739163196266162 -1.4369459175192247, 30.686109196216734 -1.3872179174729098, 30.63750019617146 -1.389445917474987, 30.564718196103684 -1.3306909174202701, 30.470554196015996 -1.1606909172619453, 30.45444519600099 -1.1013909172067144, 30.46694519601263 -1.07499991718214, 30.48221819602685 -1.0633359171712726, 30.593327196130332 -1.065554917173344, 30.696945196226835 -1.0145819171258665, 30.756382196282175 -0.9977549171101998, 30.888609196405326 -0.997217917109694, 31.060000196564943 -0.9974999171099626, 31.27250019676285 -0.9983359171107367, 31.29305419678201 -0.9988909171112539, 31.54694519701846 -0.9994459171117711, 31.67721819713978 -0.9997179171120223, 32.485273197892354 -1.0002819171125452, 32.61555419801368 -1.0002819171125452, 32.684163198077584 -0.9999999171122909, 32.742418198131816 -0.9997179171120223, 32.89035419826959 -0.9997089171120166, 33.001109198372745 -0.9999999171122909, 33.11083619847494 -1.0002819171125452, 33.18639119854532 -0.9997179171120223, 33.29610019864748 -0.9999999171122909, 33.40582719874968 -1.0002819171125452, 33.43887319878044 -1.0007179171129508, 33.4608271988009 -1.0002819171125452, 33.9202731992288 -1.0011089171133136, 33.921100199229556 -1.0019459171140994, 33.94832719925492 -1.0011089171133136, 34.018745199320506 -1.0011089171133136, 34.075554199373414 -1.0391639171487554, 34.40971819968462 -1.2272179173238982, 34.50027319976897 -1.2777819173709872, 34.717218199971 -1.398890917483783, 35.26888220048477 -1.707217917770933, 35.67832720086611 -1.9358359179838516, 35.8808272010547 -2.0483359180886254, 36.0332822011967 -2.133081918167548, 36.153327201308485 -2.199999918229878, 36.32555420146889 -2.298335918321456, 36.68527320180391 -2.4969459185064267, 37.19582720227939 -2.778890918769008, 37.222582202304295 -2.794454918783501, 37.27860920235648 -2.825554918812472, 37.425282202493094 -2.906945918888269, 37.50124520256384 -2.9380549189172456, 37.522500202583615 -2.9491639189275816, 37.6027732026584 -2.9958359189710535, 37.675282202725924 -3.0513909190227935, 37.69805420274713 -3.1866639191487707, 37.71249120276056 -3.267499919224065, 37.719991202767545 -3.3119459192654546, 37.690554202740145 -3.3166639192698426, 37.61027320266538 -3.401526919348882, 37.60013620265593 -3.4247179193704795, 37.60000020265579 -3.4502819193942855, 37.62638220268036 -3.5095179194494506, 37.686391202736274 -3.512499919452239, 37.737354202783735 -3.5287549194673744, 37.75000020279549 -3.5506909194878062, 37.75638220280143 -3.5786089195137976, 37.764854202809346 -3.6152819195479537, 37.78305420282629 -3.6511089195813184, 37.85139120288994 -3.700554919627379, 38.41750020341715 -4.105835920004822, 38.486663203481584 -4.154999920050614, 38.624445203609895 -4.253335920142192, 38.72110920369991 -4.32249992020661, 39.037773203994846 -4.549999920418486, 39.161663204110226 -4.639445920501785, 39.20302720414875 -4.6696179205298876, 39.216518204161304 -4.6913909205501625, 39.22083620416532 -4.747781920602677, 39.22055420416507 -4.848608920696577, 39.184718204131684 -4.921108920764098, 39.162845204111306 -4.9335459207756855, 39.158609204107364 -4.898890920743412, 39.16729120411546 -4.865690920712495, 39.146382204096 -4.885135920730605, 39.13777320408798 -4.922781920765658, 39.13374520408422 -4.953754920794509, 39.12693620407788 -5.051390920885439, 39.07804520403235 -5.243890921064718, 39.055545204011395 -5.313054921129137, 39.000000203959644 -5.459717921265721, 38.96666320392862 -5.546663921346692, 38.92944520389395 -5.60749992140336, 38.859445203828756 -5.7699999215546995, 38.80296320377616 -5.956945921728803, 38.78608220376043 -5.995972921765144, 38.77610920375113 -6.039726921805894, 38.78236320375697 -6.060417921825163, 38.83833620380909 -6.1466639219054855, 38.84332720381374 -6.267781922018287, 38.845273203815566 -6.3230549220697725, 38.851663203821516 -6.351108922095889, 38.870827203839355 -6.385281922127717, 38.922636203887606 -6.446663922184882, 38.96582720392783 -6.473335922209728, 39.022218203980344 -6.489717922224983, 39.04624520400273 -6.480972922216836, 39.1422182040921 -6.570554922300275, 39.15544520410444 -6.586154922314805, 39.16750020411564 -6.614163922340879, 39.24389120418681 -6.737499922455754, 39.30499120424369 -6.816390922529223, 39.34416320428019 -6.831108922542924, 39.39000020432286 -6.848054922558717, 39.46402720439181 -6.860690922570484, 39.4927732044186 -6.891663922599321, 39.5004182044257 -6.9188909226246835, 39.507354204432175 -6.939163922643559, 39.531527204454676 -6.97597292267784, 39.547882204469914 -6.994308922694927, 39.540273204462835 -7.082781922777315, 39.48360020441004 -7.166945922855703, 39.42110020435183 -7.221945922906926, 39.39166320432443 -7.263608922945721, 39.374991204308884 -7.291108922971333, 39.299718204238786 -7.459163923127846, 39.28832720422818 -7.498890923164851, 39.27443620421525 -7.579163923239605, 39.27555420421629 -7.606108923264699, 39.277500204218086 -7.630281923287214, 39.299718204238786 -7.7577819234059575, 39.32221820425974 -7.736945923386557, 39.34235420427851 -7.740281923389659, 39.44666320437565 -7.814163923458466, 39.44554520437461 -7.999999923631549, 39.348609204284315 -8.274999923887663, 39.324436204261815 -8.295835923907063, 39.29529120423467 -8.26786392388101, 39.305273204243974 -8.296663923907829, 39.310000204248354 -8.40333592400718, 39.34000020427629 -8.548335924142222, 39.354163204289506 -8.666672924252438, 39.355827204291046 -8.716945924299253, 39.45860920438676 -8.822499924397562, 39.53388220445689 -8.911108924480075, 39.45250020438107 -8.861390924433778, 39.40527320433711 -8.866945924438951, 39.39270020432539 -8.906663924475936, 39.457773204386 -8.940835924507766, 39.63332720454949 -9.172226924723262, 39.64471820456009 -9.193608924743174, 39.64971820456475 -9.355626924894068, 39.70166320461314 -9.566945925090877, 39.731945204641335 -9.65610892517391, 39.73499120464416 -9.716663925230307, 39.73055420464004 -9.75499992526602, 39.78443620469022 -9.802226925309995, 39.80374520470821 -9.843335925348285, 39.805273204709636 -9.8670819253704, 39.791109204696426 -9.923890925423308, 39.8263822047293 -9.993054925487726, 39.88971820478827 -10.02166392551436, 39.927909204823834 -10.054717925545148, 39.972636204865495 -10.125554925611127, 39.9820822048743 -10.176526925658592, 39.975636204868294 -10.202281925682584, 39.9887452048805 -10.216808925696114, 39.99763620488878 -10.170554925653036, 39.989509204881216 -10.13597292562082, 40.04721820493495 -10.140554925625096, 40.06693620495332 -10.148335925632338, 40.11360920499678 -10.167781925650445, 40.128054205010244 -10.194726925675539, 40.13250020501437 -10.24778192572495, 40.22790920510323 -10.297635925771388, 40.26118220513422 -10.272154925747657, 40.20819120508486 -10.244926925722297, 40.238118205112755 -10.20528192568537, 40.398609205262204 -10.371108925839806, 40.43388220529508 -10.447781925911215, 40.43680920529778 -10.478172925939518, 40.427773205289384 -10.499445925959336, 40.38138220524618 -10.540281925997363, 40.34610920521331 -10.5643729260198, 40.158882205038964 -10.677499926125165, 40.01971820490934 -10.779163926219837, 39.96277320485632 -10.808890926247528, 39.94221820483716 -10.814999926253222, 39.89832720479629 -10.831663926268732, 39.86832720476835 -10.848608926284513, 39.83902720474106 -10.86610892630081, 39.81194520471584 -10.885554926318932, 39.79527320470032 -10.90180892633407, 39.766936204673925 -10.920554926351528, 39.69124520460343 -10.94423592637358, 39.663891204577965 -10.946108926375317, 39.52290920444665 -10.990281926416458, 39.50389120442895 -10.997635926423314, 39.39139120432418 -11.078054926498211, 39.31528220425329 -11.1352819265515, 39.292636204232195 -11.152363926567418, 39.262500204204116 -11.169445926583322, 39.23305420417671 -11.17416392658771, 39.20596320415149 -11.173190926586813, 39.18263620412975 -11.159445926574008, 39.136100204086404 -11.142363926558104, 38.93139120389577 -11.165554926579702, 38.90569120387181 -11.170135926583967, 38.67249120365463 -11.270835926677748, 38.655273203638615 -11.28110892668731, 38.63513620361985 -11.294445926699737, 38.57110920356021 -11.342781926744749, 38.533882203525536 -11.372499926772434, 38.491709203486266 -11.415308926812301, 38.4168002034165 -11.397226926795454, 38.37778220338018 -11.377226926776828, 38.357218203361015 -11.364308926764807, 38.33388220333927 -11.347917926749531, 38.17360920319001 -11.284999926690944, 38.09669120311838 -11.25632692666423, 38.032773203058866 -11.260835926668435, 37.96249120299339 -11.278917926685281, 37.93443620296728 -11.288054926693789, 37.900273202935466 -11.30444592670905, 37.86513620290273 -11.332781926735436, 37.819163202859926 -11.451108926845635, 37.810200202851576 -11.4838179268761, 37.82270020286322 -11.510072926900548, 37.816936202857846 -11.53625492692494, 37.79193620283456 -11.56110892694808, 37.69332720274272 -11.602781926986893, 37.59721820265321 -11.639717927021294, 37.47320920253773 -11.718708927094866, 37.39958220246916 -11.72319092709904, 37.267773202346405 -11.702781927080025, 37.19082720227473 -11.68999992706813, 37.11895420220779 -11.67007292704956, 36.99777320209495 -11.591390926976288, 36.82694520193584 -11.572190926958413, 36.78582720189755 -11.617499927000608, 36.766109201879175 -11.643608927024914, 36.74610920186055 -11.66389092704381, 36.725000201840885 -11.681945927060625, 36.677773201796924 -11.71472692709115, 36.557427201684845 -11.740417927115075, 36.51749120164763 -11.720345927096389, 36.37554520151545 -11.683890927062436, 36.342500201484654 -11.696108927073809, 36.293882201439374 -11.707499927084427, 36.26721820141455 -11.709445927086236, 36.18763620134044 -11.705417927082479, 36.17458220132829 -11.668817927048394, 36.17777320133126 -11.643608927024914, 36.168191201322315 -11.585835926971114, 35.93819120110811 -11.432781926828568, 35.82847320100595 -11.416872926813753, 35.73332720091733 -11.483335926875654, 35.67249120086066 -11.558335926945503, 35.64805420083792 -11.587081926972274, 35.57332720076832 -11.607081926990901, 35.437073200641436 -11.593754926978491, 35.23860920045658 -11.575835926961801, 35.011109200244704 -11.573335926959473, 34.966727200203366 -11.572108926958336, 34.96443620020125 -11.508890926899454, 34.95763620019491 -11.48194592687436, 34.890545200132436 -11.383054926782265, 34.86347320010722 -11.357226926758202, 34.80249120005041 -11.331808926734539, 34.70888219996323 -11.19902692661087, 34.63867319989785 -11.137017926553114, 34.61603619987676 -11.110763926528662, 34.59311819985544 -11.02097292644504, 34.59958219986146 -10.981526926408307, 34.62721819988718 -10.95166392638049, 34.64138219990036 -10.926672926357227, 34.649991199908385 -10.890281926323325, 34.663054199920566 -10.761108926203022, 34.663054199920566 -10.728890926173023, 34.657909199915764 -10.664172926112755, 34.651382199909676 -10.64389092609386, 34.62110919988149 -10.606945926059453, 34.585000199847855 -10.561672926017295, 34.58082719984398 -10.538890925996071, 34.58022719984342 -10.534463925991943, 34.575827199839324 -10.516672925975385, 34.56555419982976 -10.403054925869569, 34.56916319983313 -10.36778192583671, 34.573327199836996 -10.34667292581706, 34.534854199801174 -10.045972925537, 34.52458219979161 -10.015554925508681, 34.50054519976922 -9.969026925465343, 34.48277319975267 -9.95139092544892, 34.426663199700414 -9.881390925383727, 34.37389119965127 -9.811672925318803, 34.32964519961004 -9.740208925252233, 34.205827199494735 -9.627499925147276, 34.1763821994673 -9.603608925125016, 34.136363199430036 -9.571172925094814)), ((39.193327204139706 -6.02389092179115, 39.1890272041357 -6.016390921784165, 39.187663204134424 -5.999999921768904, 39.18639120413326 -5.959717921731382, 39.18916320413584 -5.920281921694652, 39.194582204140886 -5.905554921680945, 39.24152720418459 -5.8722179216498915, 39.29055420423026 -5.743608921530111, 39.29714520423639 -5.730135921517572, 39.31110920424939 -5.724163921512002, 39.34055420427683 -5.759999921545386, 39.36013620429506 -5.804717921587027, 39.36250020429725 -5.844445921624029, 39.35401820428936 -5.8531909216321765, 39.35360920428897 -5.898335921674217, 39.3545822042899 -5.9147269216894784, 39.36666320430115 -5.953608921725689, 39.37971820431329 -5.987781921757517, 39.39054520432339 -6.011663921779757, 39.39518220432771 -6.019581921787136, 39.4241632043547 -6.054445921819607, 39.4241632043547 -6.092781921855305, 39.42139120435212 -6.122499921882991, 39.423609204354165 -6.134163921893844, 39.435273204365046 -6.187499921943527, 39.44964520437841 -6.212217921966541, 39.50194520442713 -6.199999921955168, 39.505827204430744 -6.190135921945981, 39.50027320442558 -6.153890921912222, 39.49000020441599 -6.1438909219029085, 39.493473204419246 -6.13083592189075, 39.50659120443146 -6.135417921895012, 39.52901820445234 -6.187363921943401, 39.5727732044931 -6.375281922118404, 39.575000204495154 -6.3869459221292715, 39.569445204489995 -6.414163922154614, 39.56666320448741 -6.424999922164716, 39.55916320448043 -6.444163922182554, 39.5406912044632 -6.459163922196524, 39.51610920444031 -6.46860892220532, 39.50443620442945 -6.470554922207143, 39.494445204420146 -6.47028192220688, 39.47763620440449 -6.463890922200932, 39.462491204390375 -6.452217922190059, 39.449854204378624 -6.437781922176612, 39.429027204359215 -6.387635922129917, 39.399436204331664 -6.311390922058905, 39.305273204243974 -6.2462549219982435, 39.28819120422804 -6.248890922000697, 39.28455420422466 -6.264072922014833, 39.291109204230764 -6.311945922059422, 39.28422720422435 -6.320490922067378, 39.25805420419999 -6.308608922056308, 39.208327204153676 -6.246663921998618, 39.20138220414722 -6.22694592198026, 39.19055420413713 -6.177781921934468, 39.19666320414282 -6.151945921910411, 39.20569120415121 -6.140690921899932, 39.21110920415626 -6.119999921880662, 39.212491204157544 -6.087781921850649, 39.21110920415626 -6.068890921833059, 39.20221820414798 -6.040281921806411, 39.19610920414229 -6.026663921793727, 39.193327204139706 -6.02389092179115)), ((39.74277320465143 -5.1591639209858045, 39.73721820464624 -5.157781920984519, 39.69249120460458 -5.1362549209644754, 39.679163204592186 -5.049163920883359, 39.67416320458753 -5.008890920845857, 39.677636204590755 -4.938608920780396, 39.68250020459527 -4.919445920762556, 39.68943620460175 -4.901108920745472, 39.857218204758 -4.908608920752457, 39.87028220477018 -4.91471792075815, 39.87305420477276 -4.988335920826714, 39.86971820476964 -5.0041639208414495, 39.8597912047604 -5.019926920856136, 39.83888220474094 -5.049717920883879, 39.824436204727476 -5.103054920933559, 39.835273204737575 -5.135135920963435, 39.855636204756536 -5.1594089209860385, 39.856663204757496 -5.219717921042204, 39.8552732047562 -5.231945921053594, 39.8511002047523 -5.25194592107222, 39.80166320470627 -5.393608921204148, 39.795000204700045 -5.407499921217095, 39.73332720464262 -5.463472921269215, 39.64874520456385 -5.433681921241472, 39.640418204556084 -5.41666392122562, 39.64000020455569 -5.394445921204934, 39.64416320455959 -5.369163921181382, 39.650000204565 -5.341526921155648, 39.684718204597345 -5.29749992111465, 39.72027320463047 -5.256663921076608, 39.74277320465143 -5.206108921029525, 39.74500020465348 -5.19055492101505, 39.74555420465401 -5.1658359209920235, 39.74277320465143 -5.1591639209858045)), ((39.653054204567866 -7.996945923628701, 39.64694520456217 -7.996108923627915, 39.61166320452932 -7.974717923607997, 39.59290920451184 -7.949445923584463, 39.6030542045213 -7.943890923579289, 39.65250020456733 -7.913335923550832, 39.80110920470574 -7.783608923430009, 39.84221820474403 -7.733335923383194, 39.86278220476319 -7.706945923358617, 39.88055420477974 -7.678754923332363, 39.88805420478673 -7.6594459233143795, 39.90124520479901 -7.642572923298658, 39.90805420480535 -7.652499923307914, 39.91000020480715 -7.677781923331452, 39.90805420480535 -7.689163923342051, 39.89638220479449 -7.736945923386557, 39.88944520478802 -7.763335923411134, 39.846382204747925 -7.877363923517336, 39.825000204727985 -7.9091639235469415, 39.811391204715335 -7.919445923556523, 39.72777320463746 -7.974999923608266, 39.698882204610555 -7.989445923621716, 39.68250020459527 -7.993335923625338, 39.653054204567866 -7.996945923628701))) +ZMB Zambia MULTIPOLYGON (((30.21301819577613 -14.981717930133783, 30.219163195781874 -15.096108930240305, 30.227773195789894 -15.139445930280672, 30.2525001958129 -15.216108930352064, 30.27152719583063 -15.257781930390877, 30.303336195860254 -15.291390930422182, 30.332773195887683 -15.312499930441845, 30.361109195914054 -15.337426930465057, 30.388054195939162 -15.478890930596805, 30.396663195947184 -15.593608930703638, 30.41575419596495 -15.631872930739277, 30.38486319593619 -15.647226930753575, 30.35430019590771 -15.658963930764514, 30.29368219585126 -15.650363930756498, 30.26124519582106 -15.640135930746979, 30.159854195726638 -15.631526930738957, 29.835000195424072 -15.616526930724987, 29.799445195390973 -15.624445930732364, 29.72805419532449 -15.648054930754355, 29.65610919525747 -15.670835930775567, 29.62721819523057 -15.671254930775959, 29.60139119520653 -15.662781930768062, 29.578473195185182 -15.66089993076632, 29.345136194967864 -15.736663930836869, 29.245691194875235 -15.777363930874785, 29.07971819472067 -15.889717930979415, 28.988891194636096 -15.951945931037372, 28.943218194593555 -15.963726931048342, 28.92770919457911 -15.972363931056393, 28.866109194521727 -16.036526931116143, 28.85944519451553 -16.05597293113425, 28.84777319450467 -16.15999993123114, 28.837500194495078 -16.304172931365414, 28.84360919450077 -16.33999993139878, 28.853536194510014 -16.36222693141947, 28.85236319450894 -16.39402693144909, 28.820691194479423 -16.475763931525222, 28.752636194416056 -16.555899931599853, 28.585554194260453 -16.590281931631864, 28.26000019395724 -16.72416393175655, 28.13860919384419 -16.823608931849165, 28.025836193739167 -16.87309093189525, 27.82527319355239 -16.95916393197541, 27.807500193535816 -16.983335931997928, 27.705827193441138 -17.128054932132713, 27.638882193378777 -17.224726932222737, 27.61416319335578 -17.341254932331267, 27.519700193267795 -17.42393593240827, 27.347773193107685 -17.575281932549217, 27.14610919291985 -17.806526932764584, 27.150209192923683 -17.854172932808964, 27.029400192811153 -17.961263932908693, 26.996109192780153 -17.966945932913987, 26.943882192731508 -17.974445932920972, 26.888054192679533 -17.98583593293158, 26.84139119263608 -18.000554932945292, 26.745000192546286 -18.03375493297621, 26.725554192528193 -18.049726932991078, 26.698582192503068 -18.074917933014547, 26.60548219241636 -18.042745932984587, 26.568336192381764 -17.99736393294232, 26.429445192252416 -17.94999993289821, 26.361663192189297 -17.931117932880625, 26.230000192066655 -17.902781932854225, 26.190554192029936 -17.90194593285345, 26.123609191967574 -17.931390932880873, 26.09278219193888 -17.967226932914244, 25.967500191822182 -18.00451793294897, 25.90444519176347 -17.988890932934424, 25.861663191723636 -17.97499993292149, 25.84166319170501 -17.940417932889275, 25.85433619171681 -17.921945932872077, 25.782500191649888 -17.864726932818783, 25.685827191559866 -17.80763593276562, 25.657082191533107 -17.81402693277157, 25.618473191497145 -17.836390932792398, 25.513882191399716 -17.863054932817235, 25.432782191324208 -17.85694593281154, 25.411109191304007 -17.854172932808964, 25.33902719123688 -17.843754932799257, 25.319582191218785 -17.836254932792272, 25.264427191167414 -17.8022459327606, 25.251945191155784 -17.78305493274273, 25.065282190981947 -17.624726932595266, 25.030000190949067 -17.60999993258156, 24.98430019090651 -17.58389093255724, 24.970000190893188 -17.559717932534724, 24.912500190839637 -17.54083593251714, 24.81777319075144 -17.5155549324936, 24.708609190649753 -17.49833593247756, 24.663891190608126 -17.49361793247317, 24.638191190584166 -17.496672932476017, 24.619163190566468 -17.505835932484544, 24.590273190539563 -17.533890932510673, 24.565418190516397 -17.53347293251028, 24.542218190494793 -17.524999932502396, 24.502500190457795 -17.508054932486615, 24.440136190399727 -17.48236393246269, 24.381245190344885 -17.4734729324544, 24.23909119021249 -17.478426932459016, 24.029027190016848 -17.519581932497346, 23.82082718982295 -17.560281932535247, 23.476109189501898 -17.625835932596303, 23.45444518948173 -17.61583593258699, 23.201663189246318 -17.479726932460224, 23.06500018911902 -17.331945932322597, 22.762500188837294 -17.069999932078645, 22.73055418880756 -17.041390932051996, 22.493891188587156 -16.78089093180938, 22.293327188400355 -16.6122269316523, 22.21777318833 -16.56167293160523, 22.188327188302566 -16.541117931586086, 22.135063188252957 -16.48589993153466, 22.131527188249663 -16.382081931437966, 22.123891188242567 -16.34875493140693, 22.11194518823143 -16.32249993138248, 22.06721818818977 -16.23409993130015, 22.014445188140627 -16.18333593125287, 22.000145188127306 -16.171663931241994, 21.999718188126906 -16.12278193119647, 21.999163188126403 -15.99999993108213, 22.00000018812716 -15.605554930714774, 22.00000018812716 -15.451108930570925, 21.999163188126403 -14.94999993010424, 21.999163188126403 -14.898608930056369, 21.999163188126403 -14.847226930008517, 21.999163188126403 -14.744163929912531, 21.999718188126906 -14.452499929640908, 21.999445188126657 -14.0066729292257, 21.999445188126657 -13.967499929189216, 21.99860918812587 -13.916108929141345, 21.99777318812511 -13.72721792896543, 21.998254188125543 -13.697781928938014, 21.996663188124074 -13.45278192870984, 21.996391188123823 -13.315554928582046, 22.00152718812859 -13.004581928292424, 22.50000018859282 -13.004990928292798, 22.99582718905461 -13.00471792829255, 23.28250018932158 -13.005281928293073, 23.4230541894525 -13.005554928293336, 23.584718189603052 -13.00639092829411, 23.880000189878047 -13.006945928294627, 24.01944519000793 -12.999445928287642, 24.00624518999564 -12.953054928244441, 23.994582189984783 -12.933472928226195, 23.961663189954123 -12.896390928191664, 23.946391189939902 -12.880281928176657, 23.91194518990781 -12.852363928150666, 23.891945189889185 -12.82541792812556, 23.887009189884594 -12.763608928067995, 23.97138218996315 -12.512499927834142, 23.985273189976112 -12.491945927814996, 24.050691190037014 -12.392426927722312, 24.042773190029664 -12.297499927633908, 24.0391631900263 -12.277081927614887, 24.031109190018782 -12.25763592759678, 24.003891189993453 -12.2293089275704, 23.984791189975653 -12.211808927554102, 23.984163189975078 -11.882226927247146, 24.012354190001332 -11.82416392719307, 23.998473189988403 -11.715690927092055, 23.989718189980238 -11.696945927074594, 23.96736318995943 -11.662154927042195, 24.03194519001957 -11.45249992684694, 24.056245190042205 -11.42639092682262, 24.084445190068465 -11.402781926800628, 24.027000190014974 -11.249999926658347, 24.007782189997073 -11.122735926539818, 23.988054189978698 -10.91999992635101, 23.98620918997696 -10.870463926304879, 23.994718189984894 -10.869163926303656, 24.058473190044282 -10.878608926312452, 24.092218190075698 -10.893608926326422, 24.131945190112702 -10.916663926347894, 24.142218190122264 -10.97944592640637, 24.185554190162634 -11.029581926453062, 24.318473190286426 -11.051317926473303, 24.37680019034073 -11.08860892650803, 24.398609190361043 -11.111808926529648, 24.416527190377735 -11.21659992662724, 24.410000190371647 -11.280072926686344, 24.365973190330664 -11.349863926751354, 24.37527319033933 -11.40472692680244, 24.449163190408143 -11.462635926856379, 24.52639119048007 -11.461390926855216, 24.58416319053387 -11.437781926833225, 24.60291819055132 -11.404790926802505, 24.692773190635023 -11.339999926742166, 24.73971819067873 -11.317081926720817, 24.98027319090278 -11.264999926672317, 25.029445190948564 -11.261945926669469, 25.066391190982984 -11.261108926668683, 25.12694519103937 -11.262363926669863, 25.18930019109743 -11.25236392666055, 25.255273191158892 -11.22715492663707, 25.28444519118605 -11.207499926618766, 25.320209191219362 -11.194445926606605, 25.34444519124193 -11.205281926616692, 25.345000191242434 -11.278054926684476, 25.32250019122148 -11.327217926730256, 25.291600191192714 -11.365626926766026, 25.31610919121553 -11.51610892690617, 25.326109191224845 -11.55444592694188, 25.36360919125977 -11.642990927024343, 25.49833619138525 -11.709999927086756, 25.692218191565814 -11.767499927140307, 25.842500191705767 -11.80222692717264, 25.983473191837078 -11.895690927259693, 26.004718191856853 -11.902499927266035, 26.04389119189335 -11.904999927268364, 26.07194519191947 -11.9047269272681, 26.19805419203692 -11.902226927265772, 26.436663192259147 -11.9104179272734, 26.45763619227867 -11.915554927278194, 26.477500192297157 -11.927226927289055, 26.598609192409953 -11.97139092733019, 26.678054192483955 -11.989172927346758, 26.750827192551725 -11.98444592734235, 26.87395419266639 -11.971735927330514, 26.902218192692715 -11.961108927320609, 26.95986319274641 -11.914581927277283, 26.975827192761272 -11.895835927259824, 26.98471819276955 -11.87722692724249, 26.994445192778613 -11.835690927203814, 26.996800192780796 -11.759726927133059, 27.03311819281464 -11.596945926981462, 27.20897319297842 -11.576490926962407, 27.218891192987655 -11.604999926988967, 27.22832719299643 -11.682217927060876, 27.22916319299722 -11.71701792709328, 27.228609192996686 -11.743608927118046, 27.231109192999014 -11.775835927148066, 27.244718193011693 -11.79736392716812, 27.26388219302953 -11.81333592718299, 27.35277319311234 -11.871390927237059, 27.374718193132765 -11.884163927248949, 27.41889119317392 -11.9094459272725, 27.453891193206516 -11.936945927298112, 27.480836193231596 -11.971526927330316, 27.486663193237035 -12.000281927357094, 27.48694519323729 -12.02083592737624, 27.49402719324388 -12.058890927411682, 27.53027319327765 -12.161390927507142, 27.535827193282813 -12.173335927518266, 27.541382193287973 -12.181663927526017, 27.568473193313224 -12.213472927555642, 27.586936193330416 -12.226390927567678, 27.600063193342635 -12.233363927574175, 27.623327193364304 -12.245281927585268, 27.640691193380462 -12.262635927601437, 27.655418193394183 -12.290281927627177, 27.677009193414307 -12.302226927638301, 27.79742719352646 -12.297781927634162, 27.821945193549283 -12.283335927620712, 27.8381911935644 -12.259790927598786, 27.860282193584993 -12.254717927594058, 27.885554193608527 -12.264717927603371, 27.91444519363543 -12.277499927615281, 27.935836193655348 -12.290835927627697, 27.96395419368153 -12.311599927647038, 28.049163193760904 -12.367781927699355, 28.163609193867472 -12.429445927756788, 28.229445193928797 -12.424445927752132, 28.319445194012616 -12.433054927760153, 28.346527194037833 -12.440417927767001, 28.44624519413071 -12.525835927846558, 28.53055419420923 -12.656808927968541, 28.53055419420923 -12.689163927998663, 28.51569119419537 -12.707154928015427, 28.49507319417617 -12.72819092803502, 28.497918194178823 -12.754999928059988, 28.57270919424849 -12.891808928187402, 28.597427194271518 -12.892017928187585, 28.617500194290187 -12.863608928161128, 28.637145194308488 -12.83999992813915, 28.673536194342375 -12.840626928139727, 28.742982194407062 -12.908681928203109, 28.825000194483437 -13.026672928313005, 28.920209194572124 -13.154235928431802, 28.950554194600386 -13.250835928521767, 28.954445194604006 -13.274726928544013, 28.957982194607297 -13.331108928596521, 28.970418194618873 -13.360135928623563, 29.018745194663893 -13.39847292865926, 29.040282194683954 -13.396526928657451, 29.065845194707748 -13.387435928648983, 29.098054194737756 -13.38916392865059, 29.19739119483026 -13.433817928692179, 29.308327194933582 -13.373054928635597, 29.464300195078835 -13.303335928570661, 29.485554195098644 -13.289717928557977, 29.518609195129415 -13.26028192853056, 29.54513619515413 -13.23472692850676, 29.570418195177666 -13.222781928495635, 29.5947181952003 -13.223472928496278, 29.68347319528297 -13.2668729285367, 29.681945195281543 -13.300208928567756, 29.650973195252703 -13.31639092858282, 29.621109195224875 -13.38222692864413, 29.63402719523691 -13.415554928675178, 29.65458219525607 -13.434717928693019, 29.726663195323198 -13.458054928714759, 29.801663195393047 -13.449726928706994, 29.80221819539355 -13.417781928677243, 29.80305419539434 -13.171390928447778, 29.80444519539563 -12.780835928084045, 29.805554195396667 -12.541108927860776, 29.805827195396915 -12.472499927796889, 29.806663195397704 -12.225554927566904, 29.806391195397453 -12.16389092750947, 29.80504519539619 -12.155245927501426, 29.770273195363814 -12.154163927500406, 29.56888219517623 -12.190835927534565, 29.473536195087433 -12.24909992758883, 29.446945195062682 -12.338754927672326, 29.4895821951024 -12.393545927723352, 29.523682195134143 -12.395663927725323, 29.52763619513783 -12.425281927752906, 29.517082195128012 -12.44249992776895, 29.481663195095024 -12.459445927784728, 29.470554195084674 -12.45749992778292, 29.400000195018947 -12.433890927760928, 29.261036194889527 -12.365417927697152, 29.17680019481108 -12.369026927700517, 29.148882194785074 -12.37625492770725, 29.103882194743164 -12.391108927721078, 29.057082194699603 -12.387226927717464, 29.027082194671664 -12.376945927707894, 29.0250001946697 -12.355763927688159, 29.0008271946472 -12.305281927641147, 28.935418194586276 -12.200554927543621, 28.919718194571658 -12.181526927525894, 28.835554194493284 -12.096945927447123, 28.697636194364833 -11.98819092734584, 28.676936194345558 -11.981108927339235, 28.632218194303903 -11.956390927316221, 28.500273194181034 -11.870554927236284, 28.4486091941329 -11.776390927148583, 28.444863194129425 -11.724163927099937, 28.42582719411169 -11.662499927042518, 28.406945194094106 -11.6188909270019, 28.395273194083245 -11.594999926979654, 28.37916319406824 -11.576663926962567, 28.365409194055417 -11.555554926942918, 28.357427194048 -11.524445926913941, 28.358054194048577 -11.475835926868669, 28.36670019405662 -11.434363926830045, 28.41055419409747 -11.369445926769586, 28.46500019414816 -11.244581926653296, 28.471109194153854 -11.223054926633253, 28.48555419416732 -11.162499926576857, 28.53028219420898 -10.955835926384381, 28.549027194226426 -10.855554926290992, 28.553609194230688 -10.832781926269774, 28.57638219425189 -10.790281926230193, 28.62540919429756 -10.71499992616009, 28.661391194331088 -10.710763926156133, 28.69874519436587 -10.65187292610129, 28.66332719433288 -10.556945926012887, 28.633473194305083 -10.519235925977767, 28.595000194269232 -10.24610892572339, 28.623054194295378 -10.147499925631564, 28.62221819429459 -9.986390925481516, 28.625827194297955 -9.947781925445554, 28.631109194302866 -9.925835925425119, 28.66082719433055 -9.852499925356824, 28.6955541943629 -9.795763925303973, 28.669718194338827 -9.748608925260058, 28.53777319421596 -9.470835925001367, 28.518954194198415 -9.359026924897236, 28.487354194169 -9.336945924876673, 28.428891194114556 -9.322917924863603, 28.39027319407859 -9.302781924844851, 28.37221819406176 -9.279172924822873, 28.377145194066344 -9.250417924796082, 28.397636194085436 -9.227499924774747, 28.415691194102237 -9.21763592476556, 28.442773194127483 -9.20555492475431, 28.473891194156465 -9.19152692474124, 28.516945194196552 -9.168335924719642, 28.603882194277503 -9.108608924664011, 28.622500194294844 -9.09389092465031, 28.705136194371818 -9.017081924578775, 28.72860919439367 -8.991945924555367, 28.805273194465087 -8.902781924472322, 28.84360919450077 -8.857499924430158, 28.8683271945238 -8.826945924401699, 28.92582719457735 -8.741945924322536, 28.952773194602457 -8.686672924271065, 28.96194519461099 -8.66471792425061, 28.9605541946097 -8.635554924223456, 28.953609194603217 -8.596945924187494, 28.93069119458187 -8.52944592412463, 28.89974519455305 -8.480408924078958, 28.901663194554857 -8.478608924077278, 28.92250019457424 -8.474726924073664, 28.99194519463893 -8.464172924063845, 29.200554194833217 -8.433054924034863, 29.235273194865556 -8.427781924029944, 29.39500019501429 -8.40333592400718, 29.56860919517598 -8.376663923982335, 29.57515419518208 -8.373763923979638, 29.589445195195395 -8.37360892397949, 29.92277319550584 -8.322226923931638, 30.082500195654575 -8.297499923908617, 30.256109195816265 -8.270554923883523, 30.436663195984437 -8.241945923856875, 30.506109196049096 -8.231108923846776, 30.73527319626254 -8.195554923813674, 30.763054196288408 -8.19166392381004, 30.77123619629603 -8.192245923810589, 30.770836196295647 -8.19833592381626, 30.794163196317385 -8.265554923878867, 30.835836196356183 -8.35291792396022, 30.85277319637197 -8.381672923987011, 30.907500196422916 -8.467781924067197, 30.960973196472736 -8.53221792412721, 30.976945196487605 -8.547499924141448, 31.03263619653947 -8.584999924176373, 31.05944519656444 -8.59972692419008, 31.07889119658256 -8.607499924197327, 31.110418196611903 -8.613890924203275, 31.142291196641594 -8.612845924202304, 31.170273196667665 -8.59528192418594, 31.202773196697933 -8.578890924170679, 31.22680019672029 -8.579717924171447, 31.295554196784337 -8.619999924208969, 31.414718196895308 -8.633608924221633, 31.48555419696129 -8.66639092425217, 31.563891197034252 -8.751390924331332, 31.573954197043605 -8.81778192439316, 31.592782197061155 -8.839726924413597, 31.683609197145728 -8.908890924478015, 31.706391197166965 -8.917081924485643, 31.74124519719942 -8.912754924481618, 31.78738219724238 -8.887681924458263, 31.835000197286718 -8.897781924467665, 31.897782197345208 -8.91416392448292, 31.952082197395782 -8.936254924503501, 31.93832719738296 -8.95305492451915, 31.931800197376873 -8.973890924538551, 31.932782197377804 -9.009726924571922, 31.939300197383858 -9.031254924591977, 31.98166319742333 -9.070626924628641, 32.002636197442854 -9.06833592462651, 32.02992719746828 -9.046317924606, 32.058745197495114 -9.041526924601541, 32.08639119752087 -9.051945924611246, 32.094936197528824 -9.058717924617554, 32.16034519758972 -9.064445924622888, 32.199718197626396 -9.09972692465574, 32.22138219764656 -9.120281924674885, 32.25860919768124 -9.133335924687046, 32.30166319772135 -9.134726924688337, 32.36555419778085 -9.132499924686272, 32.42124519783272 -9.129026924683032, 32.49069119789738 -9.176735924727467, 32.505482197911164 -9.217290924765237, 32.54006319794337 -9.26118192480611, 32.62832719802557 -9.274172924818217, 32.70277319809492 -9.282217924825702, 32.76777319815545 -9.332499924872536, 32.844163198226596 -9.37389092491108, 32.87471819825504 -9.377226924914183, 32.91527319829282 -9.390281924926342, 32.94040019831621 -9.405081924940134, 32.93943619831532 -9.415835924950144, 32.94360019831919 -9.455835924987397, 32.94708219832245 -9.477363925007452, 33.00012719837184 -9.621845925142011, 33.01880019838924 -9.63132692515083, 33.072218198438975 -9.631672925151165, 33.1091631984734 -9.624999925144948, 33.13499119849743 -9.598054925119854, 33.20693619856445 -9.602499925123993, 33.229163198585155 -9.634163925153473, 33.23416319858981 -9.655554925173405, 33.22888219858487 -9.677635925193968, 33.22458219858089 -9.705281925219708, 33.238609198593934 -9.731390925244028, 33.30250019865343 -9.798890925306893, 33.322491198672054 -9.811108925318266, 33.35944519870648 -9.933054925431847, 33.33082719867983 -9.993608925488232, 33.325973198675314 -10.064026925553819, 33.46166319880169 -10.165281925648117, 33.53388219886892 -10.206108925686138, 33.557082198890555 -10.223754925702579, 33.560273198893526 -10.244863925722242, 33.55055419888447 -10.271108925746674, 33.54582719888006 -10.296390925770226, 33.544854198879165 -10.331872925803268, 33.567500198900234 -10.392499925859738, 33.646563198973865 -10.500745925960544, 33.68749119901199 -10.548608926005116, 33.702282199025774 -10.56185492601746, 33.6959731990199 -10.576663926031245, 33.680409199005396 -10.596254926049497, 33.637773198965704 -10.621108926072637, 33.604718198934904 -10.64778192609748, 33.54700919888117 -10.712917926158141, 33.5418001988763 -10.743608926186724, 33.510827198847466 -10.775554926216486, 33.46090019880097 -10.803608926242603, 33.41777319876081 -10.803054926242098, 33.396945198741406 -10.798608926237947, 33.34416319869226 -10.813890926252185, 33.26256319861625 -10.863681926298554, 33.25040919860493 -10.892081926325005, 33.34978219869748 -11.079999926500022, 33.38443619872976 -11.113054926530808, 33.41040919875394 -11.1631909265775, 33.400836198745026 -11.193890926606088, 33.39110919873596 -11.215554926626268, 33.33943619868785 -11.300281926705168, 33.293054198644654 -11.368054926768295, 33.2495091986041 -11.411045926808328, 33.25416319860844 -11.520281926910059, 33.270409198623554 -11.57076392695707, 33.30874519865927 -11.582499926968012, 33.32458219867402 -11.613054926996469, 33.33082719867983 -11.744717927119083, 33.33221819868112 -11.897226927261116, 33.312427198662704 -12.000135927356965, 33.27999119863247 -12.057226927410127, 33.27138219862445 -12.12992692747784, 33.355273198702605 -12.30971792764528, 33.368882198715255 -12.326254927660685, 33.38958219873456 -12.340135927673614, 33.41027319875383 -12.341945927675297, 33.436663198778405 -12.336390927670124, 33.47971819881849 -12.314445927649686, 33.54582719888006 -12.335763927669532, 33.5418001988763 -12.364172927696004, 33.52866319886408 -12.3778089277087, 33.5052731988423 -12.386108927716421, 33.476391198815406 -12.412781927741264, 33.47958219881838 -12.439581927766227, 33.36401819871074 -12.540417927860133, 33.23805419859343 -12.585835927902437, 33.16430019852473 -12.589308927905677, 33.1437451985056 -12.581254927898172, 33.069027198436004 -12.585281927901917, 33.04639119841494 -12.603890927919252, 32.96200919833635 -12.757990928062767, 32.97235419834598 -12.853126928151369, 33.026736198396634 -12.88576392818176, 33.03485419840419 -12.913754928207837, 33.028882198398605 -12.941108928233305, 33.02055419839087 -12.962781928253492, 33.0102731983813 -12.981108928270558, 33.00278219837432 -13.002226928290227, 32.992773198365 -13.036945928322567, 32.986382198359024 -13.096390928377929, 32.986245198358915 -13.140554928419064, 32.97749119835075 -13.229172928501598, 32.91874519829605 -13.389308928650735, 32.896382198275205 -13.430281928688885, 32.831663198214954 -13.528608928780457, 32.81374519819826 -13.541254928792242, 32.75332719814199 -13.563890928813322, 32.695482198088115 -13.566045928815328, 32.68187319807544 -13.612845928858917, 32.710000198101625 -13.631390928876186, 32.75416319814278 -13.641945928886017, 32.78096319816774 -13.638754928883046, 32.830827198214166 -13.704163928943956, 32.89916319827782 -13.819999929051846, 32.990000198362395 -13.93471792915868, 33.078891198445206 -13.98110892920188, 33.166727198526985 -13.926945929151444, 33.189991198548654 -13.973608929194896, 33.20450919856219 -13.997154929216833, 33.22222719857868 -14.012563929231177, 32.98389119835673 -14.09667292930952, 32.37277319778758 -14.30833592950664, 32.343327197760146 -14.31721792951491, 32.23027319765487 -14.341390929537425, 32.09471819752861 -14.377226929570796, 31.950836197394608 -14.42360892961399, 31.87500019732397 -14.457781929645819, 31.855554197305878 -14.465554929653067, 31.83555419728725 -14.472781929659789, 31.80971819726318 -14.480554929667036, 31.782500197237823 -14.486945929672984, 31.73082719718971 -14.494999929680489, 31.700836197161777 -14.50208192968708, 31.534927197007278 -14.588754929767802, 31.50374519697823 -14.611526929789008, 31.4847181969605 -14.619717929796636, 31.46333619694059 -14.625281929801815, 31.304718196792862 -14.665554929839331, 31.116391196617485 -14.70833592987917, 31.094445196597036 -14.711672929882283, 31.045827196551755 -14.716390929886671, 30.912218196427318 -14.750554929918493, 30.808054196330318 -14.778054929944105, 30.602500196138863 -14.849726930010846, 30.52777319606929 -14.875835930035166, 30.504718196047804 -14.884726930043442, 30.343609195897756 -14.967781930120793, 30.21301819577613 -14.981717930133783))) +ZWE Zimbabwe MULTIPOLYGON (((32.488873197895686 -21.34444593605953, 32.46540919787384 -21.324999936041422, 32.41610919782792 -21.307217936024855, 32.40412719781676 -21.318399936035277, 31.926391197371856 -21.811108936494136, 31.688609197150384 -22.054445936720768, 31.40040919688198 -22.347226936993437, 31.35471819683943 -22.379445937023448, 31.30600019679406 -22.40951793705146, 31.29750019678613 -22.414763937056335, 31.290273196779424 -22.403335937045696, 31.26562719675647 -22.370417937015034, 31.157500196655747 -22.323472936971314, 31.122354196623036 -22.325281936973, 31.096945196599364 -22.334726936981795, 31.08944519659238 -22.337499936984386, 31.064718196569345 -22.333617936980772, 30.97263619648359 -22.31083593695955, 30.928891196442862 -22.293890936943768, 30.90430019641994 -22.289308936939506, 30.838891196359043 -22.287781936938075, 30.78110919630521 -22.29333593694325, 30.70360919623303 -22.309999936958775, 30.63680019617081 -22.32972693697714, 30.55944519609878 -22.321945936969897, 30.512082196054678 -22.312499936961103, 30.48624519603061 -22.31180893696046, 30.460282196006432 -22.32306393697094, 30.41666319596581 -22.335699936982707, 30.36750019592 -22.343608936990066, 30.300973195858063 -22.34444593699085, 30.031109195606717 -22.23778193689151, 29.939027195520964 -22.191254936848182, 29.902709195487148 -22.19458193685128, 29.831527195420847 -22.175972936833944, 29.810554195401323 -22.164717936823465, 29.726109195322664 -22.13916393679966, 29.670000195270404 -22.136390936797085, 29.44458219506049 -22.16458193682334, 29.37361819499438 -22.19240893684926, 29.36194519498352 -22.176945936834855, 29.267773194895824 -22.077781936742497, 29.248745194878097 -22.070135936735383, 29.220554194851843 -22.07902693674366, 29.181391194815376 -22.080835936745345, 29.148336194784576 -22.074445936739394, 29.11360919475223 -22.062499936728273, 29.093891194733885 -22.053608936719982, 29.07582719471705 -22.039445936706798, 29.058609194701006 -22.0172269366861, 29.046109194689365 -21.99389093666437, 29.035000194679014 -21.965554936637986, 29.031945194676183 -21.93639093661082, 29.035827194679797 -21.903063936579784, 29.04486319468822 -21.877635936556104, 29.0750091947163 -21.833535936515034, 29.07251819471398 -21.80940893649256, 28.98708219463441 -21.770554936456378, 28.955273194604786 -21.771108936456883, 28.92513619457671 -21.769726936455598, 28.863473194519287 -21.75180893643892, 28.646245194316975 -21.649581936343708, 28.56798219424408 -21.632290936327607, 28.52639119420536 -21.64805493634229, 28.506454194186773 -21.660554936353932, 28.462500194145832 -21.654581936348364, 28.408054194095143 -21.630554936325993, 28.380836194069786 -21.615554936312023, 28.350554194041592 -21.602499936299864, 28.280482193976326 -21.58778193628615, 28.238327193937067 -21.595554936293397, 28.202773193903965 -21.59667293629444, 28.161945193865932 -21.593608936291574, 28.04874519376051 -21.57625493627542, 28.015827193729848 -21.566108936265962, 28.012773193727014 -21.561390936261574, 28.007773193722358 -21.545563936246836, 27.970409193687544 -21.440417936148904, 27.94194519366104 -21.383335936095747, 27.89971819362171 -21.308608936026147, 27.842982193568872 -21.224726935948027, 27.780000193510205 -21.1691729358963, 27.747500193479937 -21.151808935880126, 27.727354193461196 -21.131945935861623, 27.68673619342337 -21.07118193580503, 27.68971819342613 -20.934717935677938, 27.694027193430145 -20.864926935612942, 27.710000193445012 -20.84389093559335, 27.726945193460807 -20.791945935544973, 27.73082719346442 -20.748335935504358, 27.7263911934603 -20.54889093531861, 27.715582193450217 -20.510217935282597, 27.691873193428137 -20.489172935263, 27.610691193352523 -20.47131793524636, 27.516391193264724 -20.47639093525109, 27.43250019318657 -20.472226935247207, 27.357427193116678 -20.46583593524126, 27.330973193092035 -20.471808935246827, 27.293891193057505 -20.489172935263, 27.287454193051502 -20.494963935268387, 27.290836193054645 -20.45472693523091, 27.295827193059296 -20.385281935166233, 27.298882193062127 -20.311526935097547, 27.29055419305439 -20.241672935032497, 27.28250019304687 -20.221108935013334, 27.232845193000628 -20.109099934909025, 27.213609192982716 -20.087363934888785, 27.07916319285752 -20.026672934832263, 26.978954192764178 -20.011317934817953, 26.728536192530953 -19.928754934741065, 26.695836192500508 -19.87788193469369, 26.635273192444117 -19.86569993468234, 26.61090019242141 -19.852781934670304, 26.59569119240723 -19.82736393464664, 26.59013619240207 -19.80125493462232, 26.56867319238208 -19.785217934607388, 26.53666319235228 -19.763617934587273, 26.404445192229133 -19.675835934505514, 26.35666319218464 -19.61694593445067, 26.26360919209796 -19.576945934413416, 26.24347319207922 -19.57209093440889, 26.19666319203563 -19.54736393438587, 26.169373192010198 -19.529863934369573, 26.15180019199383 -19.506526934347832, 26.09860919194429 -19.37555493422586, 26.05471819190342 -19.264999934122898, 26.02221819187315 -19.187781934050975, 26.00000019185245 -19.160835934025883, 25.964373191819277 -19.10479093397369, 25.964163191819097 -19.061672933933536, 25.986673191840055 -18.9982909338745, 25.986945191840306 -18.988054933864973, 25.97666319183074 -18.952781933832114, 25.956109191811578 -18.91360893379563, 25.940554191797105 -18.89319993377663, 25.87028219173166 -18.84402693373083, 25.7966631916631 -18.711945933607822, 25.71889119159067 -18.591390933495546, 25.66166319153737 -18.535835933443806, 25.601663191481492 -18.479581933391415, 25.526391191411392 -18.397499933314975, 25.514445191400256 -18.377645933296478, 25.50638219139273 -18.35110893327176, 25.50082719138757 -18.328335933250557, 25.47944519136766 -18.27444593320037, 25.450000191340223 -18.219999933149666, 25.39652719129043 -18.127917933063898, 25.36639119126238 -18.110554933047737, 25.31742719121678 -18.074935933014558, 25.275554191177775 -18.00541793294981, 25.241391191145965 -17.924445932874406, 25.23791819114271 -17.903754932855136, 25.241800191146325 -17.85513593280986, 25.264427191167414 -17.8022459327606, 25.319582191218785 -17.836254932792272, 25.33902719123688 -17.843754932799257, 25.411109191304007 -17.854172932808964, 25.432782191324208 -17.85694593281154, 25.513882191399716 -17.863054932817235, 25.618473191497145 -17.836390932792398, 25.657082191533107 -17.81402693277157, 25.685827191559866 -17.80763593276562, 25.782500191649888 -17.864726932818783, 25.85433619171681 -17.921945932872077, 25.84166319170501 -17.940417932889275, 25.861663191723636 -17.97499993292149, 25.90444519176347 -17.988890932934424, 25.967500191822182 -18.00451793294897, 26.09278219193888 -17.967226932914244, 26.123609191967574 -17.931390932880873, 26.190554192029936 -17.90194593285345, 26.230000192066655 -17.902781932854225, 26.361663192189297 -17.931117932880625, 26.429445192252416 -17.94999993289821, 26.568336192381764 -17.99736393294232, 26.60548219241636 -18.042745932984587, 26.698582192503068 -18.074917933014547, 26.725554192528193 -18.049726932991078, 26.745000192546286 -18.03375493297621, 26.84139119263608 -18.000554932945292, 26.888054192679533 -17.98583593293158, 26.943882192731508 -17.974445932920972, 26.996109192780153 -17.966945932913987, 27.029400192811153 -17.961263932908693, 27.150209192923683 -17.854172932808964, 27.14610919291985 -17.806526932764584, 27.347773193107685 -17.575281932549217, 27.519700193267795 -17.42393593240827, 27.61416319335578 -17.341254932331267, 27.638882193378777 -17.224726932222737, 27.705827193441138 -17.128054932132713, 27.807500193535816 -16.983335931997928, 27.82527319355239 -16.95916393197541, 28.025836193739167 -16.87309093189525, 28.13860919384419 -16.823608931849165, 28.26000019395724 -16.72416393175655, 28.585554194260453 -16.590281931631864, 28.752636194416056 -16.555899931599853, 28.820691194479423 -16.475763931525222, 28.85236319450894 -16.39402693144909, 28.853536194510014 -16.36222693141947, 28.84360919450077 -16.33999993139878, 28.837500194495078 -16.304172931365414, 28.84777319450467 -16.15999993123114, 28.85944519451553 -16.05597293113425, 28.866109194521727 -16.036526931116143, 28.92770919457911 -15.972363931056393, 28.943218194593555 -15.963726931048342, 28.988891194636096 -15.951945931037372, 29.07971819472067 -15.889717930979415, 29.245691194875235 -15.777363930874785, 29.345136194967864 -15.736663930836869, 29.578473195185182 -15.66089993076632, 29.60139119520653 -15.662781930768062, 29.62721819523057 -15.671254930775959, 29.65610919525747 -15.670835930775567, 29.72805419532449 -15.648054930754355, 29.799445195390973 -15.624445930732364, 29.835000195424072 -15.616526930724987, 30.159854195726638 -15.631526930738957, 30.26124519582106 -15.640135930746979, 30.29368219585126 -15.650363930756498, 30.35430019590771 -15.658963930764514, 30.38486319593619 -15.647226930753575, 30.41575419596495 -15.631872930739277, 30.417291195966385 -15.642145930748853, 30.422363195971116 -16.005554931087303, 30.820827196342208 -16.004445931086266, 31.071109196575293 -16.015281931096354, 31.14888219664772 -15.99465493107715, 31.276663196766748 -16.01860893109945, 31.3119451967996 -16.032499931112397, 31.342082196827675 -16.072781931149905, 31.343745196829218 -16.09333593116905, 31.40083619688238 -16.146390931218463, 31.426245196906052 -16.162363931233344, 31.51082719698482 -16.186390931255715, 31.556245197027124 -16.194999931263737, 31.577082197046536 -16.19249993126141, 31.66221819712581 -16.19860893126709, 31.7151361971751 -16.210554931278224, 31.78221819723757 -16.260835931325047, 31.902982197350042 -16.365490931422514, 31.911182197357675 -16.412708931466497, 31.98305419742462 -16.43528193148751, 32.05555419749214 -16.448472931499794, 32.084854197519434 -16.448199931499545, 32.15610919758578 -16.441390931493203, 32.230554197655124 -16.439026931491, 32.25471819767762 -16.440281931492166, 32.29305419771333 -16.44833593149967, 32.353609197769714 -16.46360893151389, 32.37778219779224 -16.46999993151985, 32.407218197819645 -16.47833593152761, 32.57999119798055 -16.545835931590474, 32.70736319809919 -16.61173593165185, 32.72805419811846 -16.693608931728093, 32.767463198155156 -16.718035931750848, 32.799436198184935 -16.718335931751128, 32.930482198306976 -16.70270893173658, 32.981136198354164 -16.709054931742486, 32.973609198347134 -16.752226931782687, 32.96694519834094 -16.77528193180416, 32.9591631983337 -16.79694593182434, 32.9483271983236 -16.822781931848397, 32.93860919831454 -16.842226931866506, 32.92666319830343 -16.8591729318823, 32.912773198290495 -16.874445931896517, 32.89221819827134 -16.89652693191708, 32.86500019824598 -16.91860893193764, 32.917500198294874 -17.054726932064412, 32.93471819831092 -17.08555493209313, 32.96832719834222 -17.147499932150822, 32.97985419835297 -17.1829179321838, 32.98721819835981 -17.227781932225582, 32.988609198361104 -17.252226932248348, 32.98780919836037 -17.264999932260253, 32.99381819836597 -17.30805493230035, 33.017491198388 -17.324717932315863, 33.03749119840663 -17.340972932331, 33.042027198410864 -17.356481932345446, 32.95652719833123 -17.50549093248422, 32.97826319835147 -17.5574359325326, 33.028473198398245 -17.578054932551808, 33.040827198409744 -17.599999932572246, 33.042354198411175 -17.629308932599542, 33.01500019838568 -17.74528193270754, 32.97499119834842 -17.817635932774934, 32.952354198327356 -17.88083593283379, 32.94610919832152 -17.97499993292149, 32.954718198329545 -18.041672932983587, 32.96457319833874 -18.078335933017726, 32.9772181983505 -18.102217933039967, 32.9880541983606 -18.1222269330586, 32.99930019837106 -18.187708933119595, 32.974054198347545 -18.250099933177694, 33.020000198390335 -18.30167293322573, 33.05028219841856 -18.328890933251074, 33.0715911984384 -18.349726933270475, 33.02055419839087 -18.45972693337292, 32.99624519836823 -18.481526933393226, 32.94555419832102 -18.507081933417027, 32.91527319829282 -18.514026933423494, 32.88832719826772 -18.530554933438893, 32.88944519826876 -18.57139093347692, 32.905827198284015 -18.613335933515984, 32.94971819832489 -18.69028193358764, 32.92027319829748 -18.776735933668164, 32.893054198272125 -18.791117933681562, 32.86916319824988 -18.78749993367819, 32.83221819821546 -18.778335933669652, 32.79027319817641 -18.788890933679482, 32.70416319809621 -18.833054933720618, 32.6994361980918 -18.947917933827583, 32.714509198105844 -19.017990933892847, 32.73971819812931 -19.025835933900154, 32.78270019816935 -19.022217933896783, 32.83401819821714 -19.02305493389757, 32.88485419826449 -19.10528193397414, 32.85500019823667 -19.274172934131443, 32.840273198222974 -19.302499934157822, 32.79284519817878 -19.362435934213636, 32.78540919817186 -19.467081934311096, 32.81221819819683 -19.474099934317636, 32.84020919822291 -19.475554934318993, 32.85180019823369 -19.49999993434176, 32.850554198232544 -19.617781934451443, 32.984718198357484 -19.68722693451612, 33.05943619842708 -19.780281934602783, 33.01888219838929 -19.943335934754643, 32.98277319835569 -20.02222693482811, 32.904163198282475 -20.124172934923067, 32.892491198271586 -20.16639093496238, 32.8844451982641 -20.230835935022398, 32.873891198254285 -20.274026935062622, 32.80250019818777 -20.36278193514528, 32.665836198060504 -20.55722693532637, 32.550827197953396 -20.554999935324304, 32.50221819790812 -20.598608935364908, 32.48416319789132 -20.67028193543166, 32.50082719790683 -20.819445935570585, 32.51027319791564 -20.859445935607837, 32.52138219792596 -20.91417293565881, 32.4808271978882 -20.992226935731495, 32.37610919779067 -21.106108935837554, 32.360554197776196 -21.135554935864988, 32.4122181978243 -21.21778193594156, 32.47622719788393 -21.32185493603849, 32.488873197895686 -21.34444593605953))) +ATA Antarctica MULTIPOLYGON (((-81.00306390780192 -79.45139999017584, -58.210835886575 -83.03333599351178, -28.319445858736458 -80.2769449909447, -36.2997268661687 -78.77194498954306, -9.869354841553474 -70.90020898221194, 34.140354199433744 -68.48279097996054, 38.65036320363404 -69.98863598136296, 41.11188220592649 -68.52209097999713, 53.77896321772363 -65.84002697749926, 69.64479123249984 -67.7539089792817, 68.93641823184012 -72.424999983632, 134.4378362928431 -64.92613597664814, 170.45303632638485 -71.3516729826324, 158.06675431484922 -80.28861799095557, 180.00000033527613 -84.30224499469355, 180.00000033527613 -90, -180 -90, -180 -84.30534499469644, -138.5894449614334 -84.98472699532917, -153.05307297490373 -84.01279099442398, -156.95605497853865 -81.25229999185306, -145.52417296789187 -80.4605549911157, -157.75308197928095 -77.10806398799345, -149.66222697174575 -77.76112698860166, -146.2686179685852 -77.46639998832717, -134.30389095744218 -74.53279098559504, -99.51389092504147 -75.09626398611981, -103.17611792845219 -72.73333598391916, -82.13417290885533 -73.94334498504608, -80.69555490751553 -73.0505639842146, -76.9627819040391 -73.87306398498062, -69.42834589702211 -73.19723598435121, -66.80028189457454 -72.4061909836145, -68.83278189646745 -69.41354498082737, -67.48583589521301 -67.07722697865151, -60.997917889170665 -64.03889097582183, -57.27667288570498 -63.20916397504909, -56.72652688519263 -63.55715497537318, -58.213063886577075 -63.72708197553143, -58.7786358871038 -64.53580897628463, -61.9524998900597 -65.17779097688252, -62.45736389052988 -65.91111797756548, -60.56402688876658 -65.95069997760234, -60.95056388912657 -66.2661089778961, -65.61180889346768 -67.56285497910378, -61.88750888999917 -74.83222698587392, -81.00306390780192 -79.45139999017584)), ((-43.38472687276712 -79.82194499052095, -46.59972687576132 -80.60417299124946, -54.909581883500465 -80.71249999135034, -47.30306387641633 -77.93583598876437, -43.38472687276712 -79.82194499052095)), ((-68.36306389603 -70.75584498207749, -69.26000889686534 -72.56418198376163, -75.49180890266916 -71.71271798296864, -70.60875489812146 -71.16306398245673, -70.59639089810995 -68.77750898023501, -68.36306389603 -70.75584498207749)), ((-159.08752698052373 -79.88195499057683, -162.46502698366928 -79.64557299035668, -163.81530898492684 -79.1805549899236, -161.66833598292732 -78.74779098952057, -159.08752698052373 -79.88195499057683)), ((-60.19517288842306 -80.22782699089896, -61.843890889958544 -80.83639999146573, -67.03056389478901 -80.15695499083294, -60.695008888888566 -79.60999999032356, -60.19517288842306 -80.22782699089896)), ((-98.66361792424959 -72.56695498376422, -99.34389992488315 -72.3416729835544, -102.5601359278785 -72.1230639833508, -95.67680892146791 -72.35639998356811, -98.66361792424959 -72.56695498376422)), ((-71.09807289857717 -79.65167299036237, -71.85264589927992 -79.41493599014188, -67.31729989505605 -78.50368198929321, -70.38195489791023 -79.57806399029381, -71.09807289857717 -79.65167299036237)), ((-118.55161794277173 -73.92485498502886, -122.13223594610645 -74.36805498544162, -123.15733594706114 -73.73090898484823, -122.27278194623733 -73.59807298472451, -118.55161794277173 -73.92485498502886)), ((-125.10254594887276 -73.58995498471695, -123.72222694758725 -74.092517985185, -127.38152695099522 -73.40723598454679, -126.30584594999343 -73.21751798437009, -125.10254594887276 -73.58995498471695)), ((-74.18581790145286 -73.06256398422579, -74.4655639017134 -73.64834498477134, -76.0925089032286 -73.20618198435955, -75.31807290250735 -72.81167298399212, -74.18581790145286 -73.06256398422579)), ((169.42300032542556 -77.46298198832399, 166.77664532296092 -77.85779098869169, 166.21710032243982 -77.53543598839147, 166.6316543228259 -77.17280898805375, 169.42300032542556 -77.46298198832399)), ((-77.70693590473215 -72.47154498367536, -77.5944549046274 -72.9099999840837, -79.41667290632446 -72.95938198412969, -79.24750890616693 -72.40250898361106, -77.70693590473215 -72.47154498367536)), ((-73.81292690110557 -70.9023269822139, -75.74583590290574 -71.17807298247071, -76.63028190372944 -71.0824999823817, -74.98583590219793 -70.66944498199702, -73.81292690110557 -70.9023269822139)), ((-67.67615489539025 -67.16080897872935, -68.57348189622596 -67.74889097927704, -69.22889989683637 -67.54139997908379, -67.8094458955144 -66.60972697821612, -67.67615489539025 -67.16080897872935)), ((-58.422508886772135 -64.12031797589766, -57.83778188622756 -63.79528197559495, -57.033335885478365 -64.17249997594627, -57.91278188629741 -64.4452819762003, -58.422508886772135 -64.12031797589766)), ((-63.65528189164553 -64.83445497656275, -64.220563892172 -64.6733359764127, -62.763754890815235 -64.56319997631013, -63.0797268911095 -64.62639997636899, -63.65528189164553 -64.83445497656275)), ((-20.404972851365528 -74.11831798520903, -20.14666385112497 -74.86168198590134, -21.602781852481087 -74.44667298551484, -20.929999851854518 -74.33611798541187, -20.404972851365528 -74.11831798520903)), ((-2.7227818348977166 -71.04055498234264, -3.291390835427279 -70.8902909822027, -3.4524998355773278 -70.67889098200581, -1.984863834210472 -70.81959098213684, -2.7227818348977166 -71.04055498234264)), ((-99.55250892507743 -72.8097179839903, -100.42445492588949 -72.7552819839396, -100.85860892629383 -72.66555498385604, -98.93041792449806 -72.66944498385966, -99.55250892507743 -72.8097179839903)), ((-74.75509990198304 -70.15011798151335, -75.26972690246232 -70.17807298153939, -75.86180890301375 -70.05111798142116, -74.4541819017028 -70.01168198138443, -74.75509990198304 -70.15011798151335)), ((-90.83416391695783 -72.66584498385632, -91.36306391745042 -73.15833598431497, -91.61932691768908 -72.60760898380207, -91.03333591714333 -72.53168198373136, -90.83416391695783 -72.66584498385632)), ((-148.04529097023985 -77.43610898829897, -148.3047449704815 -77.35889998822705, -148.86349097100185 -77.26709098814155, -147.59112696981688 -77.33556398820532, -148.04529097023985 -77.43610898829897)), ((-37.93249986768933 -78.66555498944398, -39.47055486912174 -78.60833598939068, -41.930554871412795 -78.59194498937542, -41.02694587057124 -78.47389098926547, -37.459445867248746 -78.64029098942045, -37.93249986768933 -78.66555498944398)), ((-56.3497268848417 -63.437781975262006, -56.01028188452557 -63.13278197497795, -55.00104588358565 -63.25869097509521, -55.14805488372255 -63.35999997518957, -56.3497268848417 -63.437781975262006)), ((-149.98535497204668 -76.87367298777515, -149.51641797160994 -76.88583598778648, -149.07446397119836 -77.10418198798983, -150.73292697274292 -76.95431798785026, -149.98535497204668 -76.87367298777515)), ((15.933709182477486 -70.17499998153653, 15.504509182077783 -70.13195498149643, 15.3603451819435 -70.02889998140046, 16.362873182877195 -70.02085498139297, 15.933709182477486 -70.17499998153653)), ((101.2566542619407 -65.50377297718612, 100.98113626168407 -65.66334497733473, 100.24627226099972 -65.58778197726434, 100.76030926147843 -65.39474497708457, 101.2566542619407 -65.50377297718612)), ((-58.58361788692217 -62.25028197415606, -58.98639088729729 -62.211108974119576, -58.38750888673954 -61.935835973863206, -57.58917288599602 -62.00833597393073, -58.58361788692217 -62.25028197415606)), ((-115.88429094028758 -73.92530898502928, -116.27361794065018 -74.15362698524191, -117.24111794155124 -74.18749998527346, -116.72889994107419 -73.97056398507142, -115.88429094028758 -73.92530898502928)), ((-62.06139089016111 -69.72222698111486, -62.38195489045965 -69.27612698069939, -62.32722689040868 -69.10750898054235, -61.71417288983773 -69.47194498088176, -62.06139089016111 -69.72222698111486)), ((-130.7994359541784 -74.37079998544417, -130.8963909542687 -74.54417298560564, -132.0083639553043 -74.42306398549285, -131.67083595498997 -74.29333598537202, -130.7994359541784 -74.37079998544417)), ((-127.44056395105021 -74.5813909856403, -127.928890951505 -74.40501798547604, -128.16085495172103 -74.25418198533556, -127.03959095067677 -74.38945498546154, -127.44056395105021 -74.5813909856403)), ((-62.548617890614864 -64.51556397626577, -62.480563890551494 -64.04333597582597, -62.01430889011725 -64.21111797598223, -62.35778189043714 -64.46945497622282, -62.548617890614864 -64.51556397626577)), ((-60.267781888490674 -62.76167297463233, -60.34389088856156 -62.613617974494446, -61.106390889271694 -62.65472697453273, -61.16944588933042 -62.57153597445525, -59.81819988807197 -62.61098197449199, -60.267781888490674 -62.76167297463233)), ((-72.05119089946483 -69.67949998107505, -72.58445489996147 -69.75083598114149, -72.94528190029752 -69.60084498100181, -72.46529089985049 -69.49361798090194, -72.05119089946483 -69.67949998107505)), ((-78.34733590532858 -73.25827298440805, -77.92945490493939 -73.21250898436543, -77.6370819046671 -73.31764498446334, -78.19694590518851 -73.446117984583, -78.34733590532858 -73.25827298440805)), ((-90.28083591644251 -73.08307298424488, -89.94307291612795 -72.84499998402316, -89.45903591567715 -72.90292698407711, -89.73529091593443 -73.05806398422159, -90.28083591644251 -73.08307298424488)), ((86.03200024776163 -67.00501797858425, 85.46893624723725 -66.84889097843885, 85.37281824714773 -66.74669097834366, 86.19031824790909 -66.93556397851957, 86.03200024776163 -67.00501797858425)), ((2.9226091703599764 -70.628617981959, 2.621763170079788 -70.48530898182553, 3.3249451707346793 -70.46515498180676, 3.235900170651746 -70.55361798188915, 2.9226091703599764 -70.628617981959)), ((167.1174913232784 -78.25472698906137, 166.87417232305177 -78.1947449890055, 167.67709132379952 -78.12084498893668, 167.51080032364467 -78.24305498905049, 167.1174913232784 -78.25472698906137)), ((-2.7624268349346437 -70.287181981641, -2.6572178348366435 -70.42472698176911, -3.3291638354624524 -70.47972698182033, -3.2047178353465426 -70.32999998168088, -2.7624268349346437 -70.287181981641)), ((103.46862726400076 -65.43857297712539, 103.12584526368153 -65.41001797709879, 102.77600926335572 -65.13736397684487, 103.20117226375169 -65.16779997687321, 103.46862726400076 -65.43857297712539)), ((-66.11389089393529 -65.88167297753806, -65.94417289377722 -65.54250897722218, -65.59445489345153 -65.51779097719917, -65.82695489366806 -65.83889997749822, -66.11389089393529 -65.88167297753806)), ((169.75030932573037 -73.6008449847271, 169.5424813255368 -73.59474498472142, 169.38818132539313 -73.5364179846671, 169.89070032586113 -73.29765498444473, 169.75030932573037 -73.6008449847271)), ((72.20674523488586 -70.61586398194711, 71.83143623453631 -70.55584498189123, 71.69047223440504 -70.3347359816853, 71.93007223462817 -70.29417298164752, 72.20674523488586 -70.61586398194711)), ((-151.19308197317147 -77.269717988144, -150.81890897282298 -77.19500898807442, -150.07641797213148 -77.34056398820998, -150.3083449723475 -77.36973598823715, -151.19308197317147 -77.269717988144)), ((-104.89055493004888 -73.24084498439183, -105.0525089301997 -73.21417298436698, -105.24250893037666 -73.05889998422236, -104.55153592973313 -73.19041798434486, -104.89055493004888 -73.24084498439183)), ((-67.55944589528157 -67.81110897933499, -67.81237289551713 -67.68584497921833, -67.08639989484101 -67.63312697916922, -67.29639989503659 -67.75418197928197, -67.55944589528157 -67.81110897933499)), ((-146.6097449689029 -76.30862698724891, -146.91696396918903 -76.26112698720468, -147.27570896952312 -76.11014498706406, -146.77611796905785 -76.08723598704273, -146.6097449689029 -76.30862698724891)), ((-148.85583597099475 -76.83694498774095, -149.1669639712845 -76.72903598764046, -148.1591819703459 -76.76181798767098, -148.37780897054955 -76.8083359877143, -148.85583597099475 -76.83694498774095)), ((-146.8350179691127 -76.98918198788273, -146.97778196924565 -76.83222698773656, -146.22335496854305 -76.89750898779735, -146.33779996864962 -76.94611798784263, -146.8350179691127 -76.98918198788273)), ((12.980645179727247 -70.03668198140771, 13.220909179951008 -70.13418198149851, 12.481745179262617 -70.11056398147652, 12.548700179324953 -70.04972698141987, 12.980645179727247 -70.03668198140771)), ((-145.54757296791368 -75.55753598654941, -145.25249996763887 -75.63473598662131, -145.11363596750954 -75.72153598670215, -145.86728196821144 -75.6045549865932, -145.54757296791368 -75.55753598654941)), ((-45.14528187440675 -60.766108972773814, -45.37833587462379 -60.6713909726856, -46.017226875218824 -60.58639997260644, -45.42819987467024 -60.54903597257165, -45.14528187440675 -60.766108972773814)), ((-73.49719090081152 -73.15678198431353, -73.78584590108035 -73.39639098453668, -74.06418190133958 -73.32556398447072, -73.72445490102318 -73.15362698431059, -73.49719090081152 -73.15678198431353)), ((166.31805432253384 -78.31474498911726, 166.06470932229792 -78.11793598893397, 166.7699273229547 -78.21938198902845, 166.74527232293173 -78.23974498904741, 166.31805432253384 -78.31474498911726)), ((-148.7708449709156 -77.01999998791143, -149.19473597131037 -76.95056398784676, -148.2066999703902 -76.97805498787237, -148.30557297048227 -76.99945498789229, -148.7708449709156 -77.01999998791143)), ((-55.24083588380897 -61.27972697325216, -55.49444588404516 -61.12667297310962, -54.64639088325535 -61.092781973078054, -55.02889088361158 -61.161663973142204, -55.24083588380897 -61.27972697325216)), ((96.72949125772442 -66.26391797789405, 96.31892725734207 -66.22195497785496, 96.26196325728904 -66.19293597782794, 96.86390925784963 -66.13307297777219, 96.72949125772442 -66.26391797789405)), ((-60.81406388899944 -70.66132698198946, -61.075563889242986 -70.64195498197142, -61.15917288932084 -70.57583598190983, -60.631390888829316 -70.54833598188422, -60.81406388899944 -70.66132698198946)), ((-94.69676392055517 -72.6141999838082, -95.33139092114621 -72.67195498386201, -95.51722692131928 -72.64611798383794, -94.93333592077549 -72.4963999836985, -94.69676392055517 -72.6141999838082)), ((-150.37810897241246 -76.67279098758807, -149.8952909719628 -76.65889098757512, -149.7700819718462 -76.69854498761205, -150.7001639727124 -76.72292698763476, -150.37810897241246 -76.67279098758807)), ((-56.27944588477625 -63.16972697501236, -56.47389088495734 -63.1088909749557, -56.58430888506017 -63.03986397489142, -55.98167288449892 -63.03556397488741, -56.27944588477625 -63.16972697501236)), ((-147.05971796932198 -76.51250898743879, -146.76083596904363 -76.57055498749286, -146.7300089690149 -76.69500898760876, -147.2491729694984 -76.58041798750205, -147.05971796932198 -76.51250898743879)), ((-55.99972688451574 -63.582499975396786, -56.205554884707425 -63.452781975275975, -55.70778188424384 -63.45250897527572, -55.74110888427488 -63.51249997533159, -55.99972688451574 -63.582499975396786)), ((-57.32444588574948 -64.55445497630198, -57.48833588590212 -64.49973597625103, -56.8598638853168 -64.3411179761033, -57.06639088550915 -64.51749997626757, -57.32444588574948 -64.55445497630198)), ((164.76611832108847 -67.60000897913838, 164.6203003209527 -67.5119729790564, 164.55930932089586 -67.27487297883557, 164.83739132115488 -67.41987297897062, 164.76611832108847 -67.60000897913838)), ((-60.53552688874004 -71.05635498235736, -60.84111788902463 -71.01167298231574, -60.955417889131084 -70.93529098224461, -60.624726888823105 -70.88500898219777, -60.53552688874004 -71.05635498235736)), ((-5.969854837921787 -70.41795498176279, -5.977499837928917 -70.57471798190879, -6.377645838301561 -70.48026398182083, -6.132226838072995 -70.41028198175565, -5.969854837921787 -70.41795498176279)), ((-57.34778188577121 -63.90444497569662, -57.58999988599679 -63.879172975673086, -57.69250888609227 -63.806535975605435, -57.04611788549026 -63.8262549756238, -57.34778188577121 -63.90444497569662)), ((92.49781825378341 -65.80750897746898, 92.26891825357018 -65.76417297742863, 92.76226325402968 -65.76391797742839, 92.69892725397068 -65.79835497746046, 92.49781825378341 -65.80750897746898)), ((48.39731821271158 -66.89029097847741, 48.31199121263214 -66.78224497837678, 48.8436912131273 -66.80806397840082, 48.51700921282307 -66.85113597844094, 48.39731821271158 -66.89029097847741)), ((-149.12417297124463 -77.35667298822499, -149.2824999713921 -77.34418198821335, -149.518626971612 -77.28709098816017, -148.8230549709642 -77.3444549882136, -149.12417297124463 -77.35667298822499)), ((-67.45807289518716 -66.89889997848542, -67.49057289521743 -66.71111797831054, -67.21278189495871 -66.77972697837444, -67.29639989503659 -66.89249997847946, -67.45807289518716 -66.89889997848542)), ((162.54974531902434 -66.43667297805494, 162.35000931883832 -66.32500897795094, 162.2979273187898 -66.19196397782704, 162.60140931907245 -66.35058197797477, 162.54974531902434 -66.43667297805494)), ((68.46059123139696 -72.2791909834962, 68.69312723161354 -72.08890898331899, 68.82172723173332 -72.17141798339584, 68.77669123169136 -72.22058198344163, 68.46059123139696 -72.2791909834962)), ((47.89803621224661 -67.59428197913304, 47.71976321208058 -67.65140897918624, 47.40869121179085 -67.6208449791578, 47.53982721191298 -67.51045497905497, 47.89803621224661 -67.59428197913304)), ((-59.515008887789605 -65.12112697682974, -59.400554887683 -65.23722697693788, -59.81305488806717 -65.1072269768168, -59.765281888022685 -65.08084497679224, -59.515008887789605 -65.12112697682974)), ((-147.4336269696702 -76.6886089876028, -147.8013909700127 -76.65333598756995, -147.95419097015503 -76.59112698751201, -147.59139996981713 -76.59389998751459, -147.4336269696702 -76.6886089876028)), ((-60.738335888928916 -63.86833597566299, -60.764163888952964 -63.660563975469486, -60.53014588873502 -63.65486397546418, -60.65805488885414 -63.83083597562806, -60.738335888928916 -63.86833597566299)), ((155.88370031281607 -69.05897298049715, 155.81778231275467 -69.15279098058453, 155.51571831247338 -69.06583598050354, 155.55667231251152 -68.99389998043654, 155.88370031281607 -69.05897298049715)), ((86.45978224816002 -66.77612697837108, 86.30155424801268 -66.71447297831367, 86.72864524841043 -66.70889997830847, 86.70228224838587 -66.74197297833928, 86.45978224816002 -66.77612697837108)), ((-66.76306389453988 -66.31807297794448, -66.74056389451893 -66.11444497775484, -66.56750889435776 -66.09418197773597, -66.58264589437185 -66.22861797786118, -66.76306389453988 -66.31807297794448)), ((-63.32444589133742 -64.91195497663493, -63.55499989155214 -64.89306397661734, -63.11500889114237 -64.72750897646316, -63.10889089113667 -64.75667297649032, -63.32444589133742 -64.91195497663493)), ((-59.679454887942754 -62.5580639744427, -59.88639088813548 -62.525281974412174, -59.97930888822201 -62.45417297434595, -59.54236388781507 -62.50194497439044, -59.679454887942754 -62.5580639744427)), ((-132.2022729554849 -74.40571798547668, -132.3719449556429 -74.46417298553114, -132.65931795591055 -74.42209098549193, -132.39251795566207 -74.35667298543102, -132.2022729554849 -74.40571798547668)), ((-62.704726890760256 -63.09722697494484, -62.489445890559765 -62.921108974780815, -62.260835890346854 -62.88499997474719, -62.364726890443606 -62.99305497484782, -62.704726890760256 -63.09722697494484)), ((155.30969131228153 -68.98501798042827, 155.20083631218012 -69.04610898048517, 154.95460931195083 -69.01584498045699, 155.09070031207756 -68.92214498036972, 155.30969131228153 -68.98501798042827)), ((-90.59445491673459 -68.92584498037317, -90.7345909168651 -68.86680898031818, -90.75403591688321 -68.80279098025856, -90.48695491663447 -68.82779098028185, -90.59445491673459 -68.92584498037317)), ((-59.47667288775389 -62.45972697435112, -59.56195488783332 -62.43222697432551, -59.678335887941714 -62.363890974261864, -59.32471788761238 -62.37749997427454, -59.47667288775389 -62.45972697435112)), ((-93.78528191970628 -72.91307298408655, -94.13028192002758 -72.86834498404491, -94.13806392003484 -72.83917298401774, -93.80584591972543 -72.81499998399522, -93.78528191970628 -72.91307298408655)), ((-98.14805492376944 -72.73000898391606, -98.34069992394885 -72.69569998388411, -97.82459092346818 -72.66792698385825, -98.00110892363257 -72.71556398390261, -98.14805492376944 -72.73000898391606)), ((-58.99249988730298 -62.347781974246864, -59.07972688738421 -62.341663974241165, -59.20889088750451 -62.28875497419189, -58.81701788713954 -62.29965497420204, -58.99249988730298 -62.347781974246864)), ((-62.237499890325125 -63.335281975166545, -62.21055489030002 -63.211399975051165, -61.944445890052194 -63.27847297511364, -61.971117890077025 -63.306672975139904, -62.237499890325125 -63.335281975166545)), ((0.4520271680590611 -71.10058198239855, 0.2709361678903974 -71.07140898237137, 0.2416091678630892 -71.03028198233307, 0.5867271681844954 -71.06793598236814, 0.4520271680590611 -71.10058198239855)), ((-60.76570888895441 -68.68173598014582, -60.688263888882275 -68.7384089801986, -61.081672889248665 -68.67945498014369, -60.89833588907793 -68.65084498011706, -60.76570888895441 -68.68173598014582)), ((2.0081181695082932 -70.70000898202548, 1.8994091694070505 -70.64307298197245, 2.214536169700523 -70.63265498196276, 2.172054169660953 -70.6811359820079, 2.0081181695082932 -70.70000898202548)), ((-68.88612689651714 -72.4783449836817, -68.97709089660185 -72.4576449836624, -68.59611789624704 -72.39625498360523, -68.6636178963099 -72.44361798364935, -68.88612689651714 -72.4783449836817)), ((-147.2580549695067 -77.24305498811917, -147.34112696958405 -77.23472698811142, -147.52959996975957 -77.15541798803756, -147.06486396932678 -77.17708198805772, -147.2580549695067 -77.24305498811917)), ((-61.38721788953323 -62.81556397468252, -61.4769458896168 -62.75110897462249, -61.150554889312815 -62.70861797458292, -61.20667288936508 -62.761117974631816, -61.38721788953323 -62.81556397468252)), ((99.271663260092 -66.75083597834752, 99.21713626004123 -66.71973597831857, 99.52337226032643 -66.59389997820136, 99.38336326019606 -66.71918197831805, 99.271663260092 -66.75083597834752)), ((-67.20695489495328 -67.91084497942788, -67.26083589500347 -67.90055497941829, -67.38098189511535 -67.83501797935725, -67.06834589482419 -67.83445497935672, -67.20695489495328 -67.91084497942788)), ((-117.16139094147698 -74.33723598541292, -117.11334594143224 -74.28306398536246, -116.75168194109541 -74.24721798532907, -116.77863594112051 -74.27750898535729, -117.16139094147698 -74.33723598541292)), ((163.09445431953162 -66.75890897835504, 163.02057231946281 -66.71694497831596, 162.94834531939557 -66.5755729781843, 163.1183453195539 -66.62306397822853, 163.09445431953162 -66.75890897835504)), ((-60.57999988878146 -63.00805497486179, -60.731617888922656 -62.98189997483743, -60.74643588893646 -62.92855497478775, -60.61736388881624 -62.87917297474176, -60.471835888680715 -62.900899974762, -60.57999988878146 -63.00805497486179)), ((-54.059445882708715 -61.271117973244145, -54.19861788283832 -61.23249997320818, -54.01639988266862 -61.09111797307651, -54.0063908826593 -61.1899999731686, -54.059445882708715 -61.271117973244145)), ((-93.19433591915592 -72.56225498375983, -93.26556391922226 -72.63473598382734, -93.47515491941745 -72.6426449838347, -93.44833591939248 -72.57945498377586, -93.19433591915592 -72.56225498375983)), ((-67.09639089485032 -67.6005729791389, -67.21785489496344 -67.56603597910674, -66.84917289462007 -67.53333597907628, -66.9283458946938 -67.58445497912389, -67.09639089485032 -67.6005729791389)), ((69.77809123262398 -72.03585498326959, 69.77309123261932 -71.92362698316506, 69.95881823279231 -71.92126398316286, 69.83980023268145 -72.01445498324966, 69.77809123262398 -72.03585498326959)), ((-148.43695497060463 -76.69139098760539, -148.68695497083746 -76.6786179875935, -148.77266397091728 -76.64945498756633, -148.3672449705397 -76.67222698758755, -148.43695497060463 -76.69139098760539)), ((-61.2895728894423 -69.96270898133882, -61.40610888955082 -70.01583598138829, -61.52806388966441 -69.96529098134123, -61.39055488953633 -69.90889098128869, -61.2895728894423 -69.96270898133882)), ((85.31616324709495 -66.62972697823474, 85.17451824696303 -66.61975497822544, 85.15379124694374 -66.58709997819503, 85.28419124706517 -66.52029097813282, 85.31616324709495 -66.62972697823474)), ((97.22919125818981 -66.46639997808262, 97.1236542580915 -66.4491909780666, 97.08990925806012 -66.41209097803204, 97.35101825830327 -66.4198729780393, 97.22919125818981 -66.46639997808262)), ((100.49170026122829 -66.15000897778796, 100.61865426134648 -66.04695497769198, 100.75378226147234 -66.07529997771839, 100.68084526140444 -66.12861797776804, 100.49170026122829 -66.15000897778796)), ((-64.88417289279002 -67.659726979194, -64.84029089274915 -67.59529097913399, -64.54292689247221 -67.63209097916825, -64.77111789268473 -67.63444497917045, -64.88417289279002 -67.659726979194)), ((-56.829999885288984 -64.31722697608106, -56.75833588522225 -64.23779097600708, -56.5773638850537 -64.21653597598728, -56.637508885109725 -64.27833597604483, -56.829999885288984 -64.31722697608106)), ((-142.96172696550542 -75.51522698651, -143.13555496566732 -75.53333598652686, -143.28085496580263 -75.49167298648807, -143.08224496561766 -75.4652909864635, -142.96172696550542 -75.51522698651)), ((98.7291912595868 -66.49583597811004, 98.62616325949085 -66.4766729780922, 98.6008632594673 -66.43709997805533, 98.8602912597089 -66.45043597806776, 98.7291912595868 -66.49583597811004)), ((-44.72528187401559 -60.77639097278339, -44.78472687407097 -60.73445497274433, -44.42514587373606 -60.72152697273229, -44.65555487395065 -60.74389997275313, -44.72528187401559 -60.77639097278339)), ((-7.902499839721713 -70.7341729820573, -8.040836839850527 -70.69639998202211, -7.727217839558449 -70.70611798203117, -7.748336839578116 -70.72083598204487, -7.902499839721713 -70.7341729820573)), ((100.75030926146911 -65.86168197751944, 100.7114272614329 -65.82973597748969, 100.99600026169793 -65.81223597747339, 100.93256326163885 -65.83917297749848, 100.75030926146911 -65.86168197751944)), ((-61.95555489006253 -64.08805497586762, -61.91389089002374 -63.994999975780956, -61.77097288989063 -63.96958197575728, -61.82528188994121 -64.03472697581796, -61.95555489006253 -64.08805497586762)), ((-60.328281888547025 -72.25553598347418, -60.45250888866272 -72.25306398347188, -60.50194588870876 -72.19971798342219, -60.34360888856129 -72.19417298341703, -60.328281888547025 -72.25553598347418)), ((-147.6508449698725 -77.1069449879924, -147.79446397000626 -77.07444498796214, -147.83557297004455 -77.03861798792877, -147.65472696987612 -77.04000898793007, -147.6508449698725 -77.1069449879924)), ((168.5766633246373 -76.23474498718011, 168.43581832450616 -76.20556398715293, 168.3622003244376 -76.1665449871166, 168.49081832455738 -76.15861798710921, 168.5766633246373 -76.23474498718011)), ((-67.709163895421 -67.29028197884992, -67.79348189549953 -67.2679179788291, -67.58444589530485 -67.21375497877865, -67.58944589530951 -67.23668197880001, -67.709163895421 -67.29028197884992)), ((-146.8464089691233 -75.85889998683007, -146.9386269692092 -75.85111798682283, -147.00321796926934 -75.82279098679645, -146.7587729690417 -75.84042698681287, -146.8464089691233 -75.85889998683007))) +NOR Bouvet I. MULTIPOLYGON (((3.361391170768627 -54.462781966903385, 3.3541631707618933 -54.45861796689951, 3.3461091707543744 -54.451117966892525, 3.3423631707509003 -54.43173596687447, 3.3522911707601395 -54.40999996685423, 3.366945170773789 -54.39972696684466, 3.3925001707975753 -54.390563966836126, 3.41333617081699 -54.38556396683147, 3.4333361708356165 -54.38360896682965, 3.443891170845461 -54.38417296683017, 3.4812451708802428 -54.40014496684505, 3.4841631708829652 -54.41153596685566, 3.4786091708777747 -54.42556396686872, 3.472500170872081 -54.43583596687829, 3.462500170862768 -54.4472269668889, 3.4441631708457123 -54.452226966893555, 3.399163170803803 -54.451954966893304, 3.383891170789582 -54.45319996689446, 3.361391170768627 -54.462781966903385))) +COM Comoros MULTIPOLYGON (((43.453609208107395 -11.936108927297326, 43.427500208083075 -11.922781927284916, 43.29305420795788 -11.846390927213776, 43.27263620793886 -11.83347292720174, 43.25750020792475 -11.815554927185062, 43.220136207889965 -11.763472927136547, 43.21500020788517 -11.74555492711987, 43.21402720788427 -11.7305549271059, 43.21971820788957 -11.714172927090644, 43.23221820790121 -11.692781927070712, 43.2397182079082 -11.681108927059839, 43.24458220791274 -11.669163927048714, 43.250000207917765 -11.551108926938767, 43.252782207920376 -11.476390926869186, 43.250482207918225 -11.439581926834904, 43.260273207927355 -11.41139092680865, 43.26582720793252 -11.397226926795454, 43.277636207943516 -11.382781926782002, 43.286945207952186 -11.378335926777865, 43.33082720799305 -11.368335926768552, 43.34304520800444 -11.366945926767258, 43.37263620803199 -11.372499926772434, 43.38082720803962 -11.381108926780442, 43.395273208053084 -11.406108926803725, 43.39721820805488 -11.417499926814344, 43.39666320805438 -11.441663926836839, 43.37943620803833 -11.580554926966201, 43.374791208034 -11.615281926998534, 43.3836092080422 -11.6444459270257, 43.427500208083075 -11.712781927089338, 43.43832720809317 -11.728890927104345, 43.497773208148544 -11.88610892725076, 43.48708220813859 -11.916390927278968, 43.462082208115305 -11.934445927295783, 43.453609208107395 -11.936108927297326)), ((44.5136092090946 -12.380281927710996, 44.50804520908943 -12.379717927710473, 44.487909209070665 -12.369581927701034, 44.42721820901414 -12.30944592764503, 44.3909732089804 -12.26986392760817, 44.3224912089166 -12.235554927576217, 44.31277320890757 -12.231672927572603, 44.247773208847036 -12.19833592754155, 44.230554208830995 -12.188890927532753, 44.21889120882014 -12.180835927525251, 44.21221820881391 -12.163545927509148, 44.23249120883278 -12.167708927513033, 44.241663208841345 -12.175281927520075, 44.297500208893325 -12.187081927531068, 44.32582720891972 -12.187499927531462, 44.3636092089549 -12.180835927525251, 44.373891208964494 -12.178054927522666, 44.382773208972765 -12.173335927518266, 44.409854208997984 -12.151526927497954, 44.42027320900769 -12.121945927470406, 44.41971820900716 -12.110281927459539, 44.41319120900107 -12.09333592744376, 44.434163209020625 -12.078890927430308, 44.45332720903846 -12.070835927422806, 44.467354209051535 -12.070135927422157, 44.47971820906304 -12.08125492743251, 44.48750020907028 -12.093054927443504, 44.518327209099 -12.213608927555768, 44.53041820911025 -12.347781927680728, 44.52666320910677 -12.366108927697795, 44.51777320909849 -12.377781927708668, 44.5136092090946 -12.380281927710996)), ((43.854436208480706 -12.383054927713587, 43.7749912084067 -12.363608927695466, 43.74000020837411 -12.359445927691596, 43.73166320836637 -12.364999927696772, 43.71193620834799 -12.363608927695466, 43.66860920830763 -12.357499927689787, 43.656945208296776 -12.350281927683056, 43.630273208271944 -12.299999927636236, 43.624718208266756 -12.28583592762304, 43.62138220826367 -12.272499927610625, 43.62554520826754 -12.254445927593807, 43.645409208286026 -12.242154927582362, 43.72500020836014 -12.267781927606222, 43.73721820837153 -12.274445927612433, 43.82416320845252 -12.326663927661059, 43.83582720846337 -12.334163927668044, 43.85708220848318 -12.352781927685385, 43.86360920848924 -12.363190927695086, 43.8615182084873 -12.37360892770478, 43.854436208480706 -12.383054927713587))) +REU Juan De Nova I. MULTIPOLYGON (((42.75193620745392 -17.076117932084344, 42.74152720744422 -17.07402693208239, 42.72381820742774 -17.057990932067455, 42.737845207440785 -17.052017932061887, 42.76090020746227 -17.065281932074242, 42.757773207459365 -17.0749999320833, 42.75193620745392 -17.076117932084344))) +LSO Lesotho MULTIPOLYGON (((29.022500194667373 -29.989845944111188, 28.906391194559262 -30.05528194417213, 28.885273194539593 -30.06499994418118, 28.790554194451374 -30.10139094421507, 28.674445194343235 -30.135281944246636, 28.618891194291507 -30.129863944241585, 28.52138219420067 -30.12889094424068, 28.404645194091955 -30.143817944254586, 28.377782194066953 -30.16028194426992, 28.350136194041198 -30.207917944314282, 28.310273194004083 -30.246945944350628, 28.25750019395491 -30.326663944424872, 28.160000193864107 -30.498335944584753, 28.148054193853 -30.55194594463468, 28.079936193789564 -30.650526944726494, 28.021663193735293 -30.64917294472523, 27.97277319368976 -30.644172944720573, 27.933327193653014 -30.63763594471449, 27.73735419347051 -30.59659994467627, 27.6123631933541 -30.484581944571943, 27.57347319331788 -30.428054944519296, 27.564618193309627 -30.40490894449774, 27.464718193216584 -30.32139094441996, 27.416945193172097 -30.318335944417115, 27.378918193136684 -30.317326944416173, 27.362500193121377 -30.226108944331223, 27.29694519306034 -30.046672944164108, 27.22513619299346 -29.99444594411547, 27.20444519297419 -29.951663944075626, 27.191436192962072 -29.923708944049594, 27.160000192932785 -29.856108943986634, 27.100273192877182 -29.735554943874355, 27.065973192845235 -29.692217943833995, 27.035409192816758 -29.676045943818934, 27.01397319279681 -29.627135943773382, 27.157227192930208 -29.5668089437172, 27.215000192984007 -29.554445943705687, 27.25194519301843 -29.546108943697924, 27.292773193056462 -29.532781943685514, 27.300554193063704 -29.52583594367904, 27.31250019307481 -29.499445943654464, 27.35916319311829 -29.4494459436079, 27.451382193204154 -29.29999994346872, 27.492009193242012 -29.276754943447067, 27.540836193287475 -29.206390943381535, 27.62916319336975 -29.106672943288665, 27.64305419338268 -29.091108943274172, 27.63347319337376 -29.075972943260076, 27.636800193376843 -29.040417943226963, 27.797500193526503 -28.918054943113, 27.892218193614724 -28.902499943098512, 28.016663193730636 -28.86222694306101, 28.066945193777457 -28.809999943012365, 28.118609193825563 -28.74028194294744, 28.182845193885385 -28.698263942908305, 28.200827193902143 -28.711945942921048, 28.287363193982742 -28.7102819429195, 28.356182194046823 -28.692781942903203, 28.36832719405814 -28.66438194287675, 28.39971819408737 -28.627781942842667, 28.45971819414325 -28.613608942829465, 28.488200194169792 -28.610035942826137, 28.513882194193684 -28.6113909428274, 28.577982194253394 -28.60680894282313, 28.61110919428424 -28.587226942804897, 28.647773194318404 -28.570690942789497, 28.68639119435437 -28.596108942813167, 28.79250019445317 -28.70694594291639, 28.80693619446663 -28.75749994296347, 28.865727194521384 -28.761617942967305, 28.871109194526383 -28.764445942969942, 28.903054194556148 -28.795281942998663, 28.933327194584336 -28.84194594304212, 28.950973194600778 -28.876872943074652, 28.998336194644878 -28.909445943104984, 29.200554194833217 -29.03360894322062, 29.285827194912628 -29.071945943256324, 29.326945194950923 -29.087499943270814, 29.43082719504767 -29.2786179434488, 29.455554195070704 -29.349099943514446, 29.421873195039325 -29.427990943587915, 29.399718195018693 -29.43833594359755, 29.37406319499479 -29.444117943602933, 29.3472181949698 -29.455554943613585, 29.310136194935268 -29.47555494363221, 29.293900194920155 -29.505217943659844, 29.295273194921435 -29.5819459437313, 29.293263194919547 -29.618263943765122, 29.271109194898912 -29.630554943776566, 29.240827194870718 -29.632363943778252, 29.216945194848478 -29.639726943785114, 29.172918194807465 -29.663890943807615, 29.145554194781994 -29.716945943857027, 29.132909194770207 -29.755135943892597, 29.136663194773718 -29.779445943915235, 29.124163194762076 -29.809163943942913, 29.129445194766987 -29.83493594396691, 29.154163194790016 -29.849372943980363, 29.166527194801517 -29.91541794404187, 29.10139119474087 -29.953335944077182, 29.04389119468732 -29.97999994410202, 29.022500194667373 -29.989845944111188))) +MWI Malawi MULTIPOLYGON (((33.22222719857868 -14.012563929231177, 33.20450919856219 -13.997154929216833, 33.189991198548654 -13.973608929194896, 33.166727198526985 -13.926945929151444, 33.078891198445206 -13.98110892920188, 32.990000198362395 -13.93471792915868, 32.89916319827782 -13.819999929051846, 32.830827198214166 -13.704163928943956, 32.78096319816774 -13.638754928883046, 32.75416319814278 -13.641945928886017, 32.710000198101625 -13.631390928876186, 32.68187319807544 -13.612845928858917, 32.695482198088115 -13.566045928815328, 32.75332719814199 -13.563890928813322, 32.81374519819826 -13.541254928792242, 32.831663198214954 -13.528608928780457, 32.896382198275205 -13.430281928688885, 32.91874519829605 -13.389308928650735, 32.97749119835075 -13.229172928501598, 32.986245198358915 -13.140554928419064, 32.986382198359024 -13.096390928377929, 32.992773198365 -13.036945928322567, 33.00278219837432 -13.002226928290227, 33.0102731983813 -12.981108928270558, 33.02055419839087 -12.962781928253492, 33.028882198398605 -12.941108928233305, 33.03485419840419 -12.913754928207837, 33.026736198396634 -12.88576392818176, 32.97235419834598 -12.853126928151369, 32.96200919833635 -12.757990928062767, 33.04639119841494 -12.603890927919252, 33.069027198436004 -12.585281927901917, 33.1437451985056 -12.581254927898172, 33.16430019852473 -12.589308927905677, 33.23805419859343 -12.585835927902437, 33.36401819871074 -12.540417927860133, 33.47958219881838 -12.439581927766227, 33.476391198815406 -12.412781927741264, 33.5052731988423 -12.386108927716421, 33.52866319886408 -12.3778089277087, 33.5418001988763 -12.364172927696004, 33.54582719888006 -12.335763927669532, 33.47971819881849 -12.314445927649686, 33.436663198778405 -12.336390927670124, 33.41027319875383 -12.341945927675297, 33.38958219873456 -12.340135927673614, 33.368882198715255 -12.326254927660685, 33.355273198702605 -12.30971792764528, 33.27138219862445 -12.12992692747784, 33.27999119863247 -12.057226927410127, 33.312427198662704 -12.000135927356965, 33.33221819868112 -11.897226927261116, 33.33082719867983 -11.744717927119083, 33.32458219867402 -11.613054926996469, 33.30874519865927 -11.582499926968012, 33.270409198623554 -11.57076392695707, 33.25416319860844 -11.520281926910059, 33.2495091986041 -11.411045926808328, 33.293054198644654 -11.368054926768295, 33.33943619868785 -11.300281926705168, 33.39110919873596 -11.215554926626268, 33.400836198745026 -11.193890926606088, 33.41040919875394 -11.1631909265775, 33.38443619872976 -11.113054926530808, 33.34978219869748 -11.079999926500022, 33.25040919860493 -10.892081926325005, 33.26256319861625 -10.863681926298554, 33.34416319869226 -10.813890926252185, 33.396945198741406 -10.798608926237947, 33.41777319876081 -10.803054926242098, 33.46090019880097 -10.803608926242603, 33.510827198847466 -10.775554926216486, 33.5418001988763 -10.743608926186724, 33.54700919888117 -10.712917926158141, 33.604718198934904 -10.64778192609748, 33.637773198965704 -10.621108926072637, 33.680409199005396 -10.596254926049497, 33.6959731990199 -10.576663926031245, 33.702282199025774 -10.56185492601746, 33.68749119901199 -10.548608926005116, 33.646563198973865 -10.500745925960544, 33.567500198900234 -10.392499925859738, 33.544854198879165 -10.331872925803268, 33.54582719888006 -10.296390925770226, 33.55055419888447 -10.271108925746674, 33.560273198893526 -10.244863925722242, 33.557082198890555 -10.223754925702579, 33.53388219886892 -10.206108925686138, 33.46166319880169 -10.165281925648117, 33.325973198675314 -10.064026925553819, 33.33082719867983 -9.993608925488232, 33.35944519870648 -9.933054925431847, 33.322491198672054 -9.811108925318266, 33.30250019865343 -9.798890925306893, 33.238609198593934 -9.731390925244028, 33.22458219858089 -9.705281925219708, 33.22888219858487 -9.677635925193968, 33.23416319858981 -9.655554925173405, 33.229163198585155 -9.634163925153473, 33.20693619856445 -9.602499925123993, 33.13499119849743 -9.598054925119854, 33.1091631984734 -9.624999925144948, 33.072218198438975 -9.631672925151165, 33.01880019838924 -9.63132692515083, 33.00012719837184 -9.621845925142011, 32.94708219832245 -9.477363925007452, 32.94360019831919 -9.455835924987397, 32.93943619831532 -9.415835924950144, 32.94040019831621 -9.405081924940134, 32.943336198318946 -9.399863924935275, 32.96777319834172 -9.384163924920642, 33.001245198372885 -9.376672924913677, 33.01939119838977 -9.399754924935166, 33.031963198401485 -9.419045924953139, 33.12895419849181 -9.491872925020957, 33.19964519855765 -9.507635925035643, 33.25471819860894 -9.492226925021285, 33.31193619866224 -9.486045925015532, 33.39805419874244 -9.542845925068434, 33.41791819876093 -9.578472925101607, 33.42916319877142 -9.609654925130656, 33.49347319883131 -9.622081925142226, 33.53152719886674 -9.613890925134598, 33.54943619888343 -9.594999925117008, 33.57889119891087 -9.584717925107427, 33.76290919908223 -9.58513592510782, 33.871382199183245 -9.659726925177281, 33.900273199210176 -9.684163925200039, 33.918818199227445 -9.706735925221068, 33.94450919925137 -9.686254925201993, 33.95860919926449 -9.6286089251483, 33.960273199266055 -9.604445925125802, 33.95242719925875 -9.57839992510155, 33.949300199255816 -9.551808925076784, 33.957218199263195 -9.526672925053376, 34.002700199305565 -9.487781925017146, 34.041527199341715 -9.4837549250134, 34.07443619937237 -9.507781925035772, 34.136363199430036 -9.571172925094814, 34.1763821994673 -9.603608925125016, 34.205827199494735 -9.627499925147276, 34.32964519961004 -9.740208925252233, 34.37389119965127 -9.811672925318803, 34.426663199700414 -9.881390925383727, 34.48277319975267 -9.95139092544892, 34.50054519976922 -9.969026925465343, 34.52458219979161 -10.015554925508681, 34.534854199801174 -10.045972925537, 34.573327199836996 -10.34667292581706, 34.56916319983313 -10.36778192583671, 34.56555419982976 -10.403054925869569, 34.575827199839324 -10.516672925975385, 34.58022719984342 -10.534463925991943, 34.58082719984398 -10.538890925996071, 34.585000199847855 -10.561672926017295, 34.62110919988149 -10.606945926059453, 34.651382199909676 -10.64389092609386, 34.657909199915764 -10.664172926112755, 34.663054199920566 -10.728890926173023, 34.663054199920566 -10.761108926203022, 34.649991199908385 -10.890281926323325, 34.64138219990036 -10.926672926357227, 34.62721819988718 -10.95166392638049, 34.59958219986146 -10.981526926408307, 34.59311819985544 -11.02097292644504, 34.61603619987676 -11.110763926528662, 34.63867319989785 -11.137017926553114, 34.70888219996323 -11.19902692661087, 34.80249120005041 -11.331808926734539, 34.86347320010722 -11.357226926758202, 34.890545200132436 -11.383054926782265, 34.95763620019491 -11.48194592687436, 34.96443620020125 -11.508890926899454, 34.966727200203366 -11.572108926958336, 34.95777320019505 -11.572499926958699, 34.890545200132436 -11.57389092695999, 34.70332719995807 -11.575835926961801, 34.62485419988499 -11.579372926965092, 34.626245199886284 -11.604308926988324, 34.631800199891444 -11.625835927008367, 34.63416319989366 -11.667226927046912, 34.63360919989313 -11.691945927069938, 34.629436199889255 -11.714172927090644, 34.616800199877474 -11.756526927130082, 34.60819119986945 -11.776808927148977, 34.552773199817864 -11.871808927237453, 34.51500019978266 -11.923335927285436, 34.47110919974179 -11.981317927339433, 34.410827199685656 -12.080835927432119, 34.38444519966109 -12.129863927477786, 34.375273199652554 -12.155835927501968, 34.37000019964762 -12.186108927530157, 34.36944519964712 -12.227217927568446, 34.37329119965071 -12.246417927586336, 34.40749119968254 -12.319445927654343, 34.424436199698334 -12.410281927738936, 34.44680019971915 -12.511390927833105, 34.46555419973663 -12.568890927886656, 34.47652719974684 -12.595417927911356, 34.49888219976765 -12.6324999279459, 34.507773199775954 -12.653890927965818, 34.52389119979097 -12.714726928022472, 34.53000019979663 -12.758890928063607, 34.53277319979924 -12.782781928085853, 34.53416319980053 -12.84166392814069, 34.53902719980505 -12.92652692821973, 34.541663199807516 -12.960554928251426, 34.5491631998145 -13.013335928300577, 34.55610919982095 -13.046108928331094, 34.56304519982743 -13.288890928557208, 34.56304519982743 -13.309308928576229, 34.56569119982987 -13.339581928604417, 34.58166319984477 -13.373608928636102, 34.65805419991591 -13.496390928750458, 34.83082720007681 -13.496945928750975, 34.86599120010956 -13.506308928759694, 34.89943620014071 -13.522499928774778, 35.095273200323106 -13.68610892892714, 35.17110020039371 -13.796108929029586, 35.20555420042581 -13.84444592907461, 35.490827200691484 -14.155835929364613, 35.50500020070467 -14.191663929397976, 35.530000200727955 -14.251108929453338, 35.54471820074167 -14.269445929470422, 35.82139120099936 -14.60278192978086, 35.87602720105022 -14.6611179298352, 35.87750020105159 -14.699772929871187, 35.878609201052626 -14.774026929940348, 35.88110020105495 -14.884999930043705, 35.92096320109209 -14.893890930051981, 35.868045201042804 -15.01972693016917, 35.80236320098163 -15.186663930324642, 35.840191201016864 -15.324117930452658, 35.85388220102959 -15.372499930497725, 35.86721820104202 -15.419445930541443, 35.86443620103944 -15.453608930573253, 35.86311820103822 -15.458354930577684, 35.86250020103762 -15.476390930594476, 35.83166320100892 -15.854999930947088, 35.815963200994304 -16.013608931094794, 35.79356320097344 -16.055181931133518, 35.77416320095537 -16.07055493114784, 35.70944520089509 -16.110554931185092, 35.540273200737545 -16.164445931235278, 35.486936200687865 -16.132781931205784, 35.44221820064621 -16.12278193119647, 35.41166320061777 -16.12625493119971, 35.29166320050601 -16.22833593129478, 35.27416320048971 -16.304445931365663, 35.25500020047184 -16.400554931455176, 35.24298220046066 -16.473263931522894, 35.19388220041492 -16.506672931554007, 35.13861820036345 -16.549745931594117, 35.156109200379746 -16.599163931640135, 35.172773200395284 -16.624172931663438, 35.19082720041209 -16.633890931672482, 35.22311820044217 -16.6460459316838, 35.25582720047262 -16.677226931712838, 35.27805420049333 -16.70472693173845, 35.302218200515824 -16.809172931835732, 35.28916320050368 -16.867781931890306, 35.28277320049773 -16.966390931982147, 35.296663200510665 -17.015281932027676, 35.30805420052127 -17.061390932070623, 35.30430020051776 -17.108263932114284, 35.2900542005045 -17.134263932138495, 35.271945200487636 -17.135281932139435, 35.12721820035284 -17.13055493213504, 35.08777320031612 -17.1270819321318, 35.05464520028525 -17.02396393203577, 35.06847320029814 -17.00055493201397, 35.10027320032776 -16.98278193199741, 35.12971820035517 -16.96360893197955, 35.14332720036785 -16.9375729319553, 35.145136200369535 -16.836108931860807, 35.12423620035008 -16.817990931843937, 35.07610920030524 -16.823890931849434, 35.04374520027511 -16.822081931847748, 35.0229092002557 -16.813054931839346, 34.99847320023295 -16.794308931821888, 34.84097320008627 -16.621526931660966, 34.767491200017815 -16.54639093159099, 34.71999119997358 -16.508054931555293, 34.660000199917704 -16.453608931504576, 34.59416319985641 -16.379445931435512, 34.571663199835456 -16.320490931380604, 34.54860919981397 -16.300972931362423, 34.525000199791975 -16.294726931356607, 34.49832719976715 -16.29347293135544, 34.4677731997387 -16.29249993135454, 34.45069119972277 -16.28069993134355, 34.437500199710485 -16.265281931329184, 34.40958219968451 -16.199172931267626, 34.407500199682545 -16.13194593120501, 34.42680019970052 -16.09209093116789, 34.42874519970235 -16.06902693114641, 34.42069119969483 -16.05013593112882, 34.3315271996118 -15.957917931042928, 34.31513619959654 -15.944726931030644, 34.28638219956974 -15.929726931016674, 34.2625001995475 -15.911526930999727, 34.25443619954001 -15.888890930978647, 34.2511091995369 -15.837781930931044, 34.26680019955151 -15.79291793088926, 34.28027319956408 -15.77749993087491, 34.30055419958296 -15.759445930858092, 34.32416319960495 -15.743608930843337, 34.34693619962616 -15.736663930836869, 34.37582719965306 -15.714172930815934, 34.42500019969884 -15.652426930758423, 34.43832719971127 -15.611663930720454, 34.443327199715924 -15.547499930660706, 34.43596319970908 -15.522081930637029, 34.426527199700274 -15.501808930618154, 34.43430019970751 -15.469581930588134, 34.52860919979534 -15.342499930469785, 34.549718199815004 -15.334026930461889, 34.566382199830514 -15.321945930450639, 34.58971819985226 -15.28278193041416, 34.59332719985562 -15.253054930386483, 34.59027319985279 -15.233054930367857, 34.58679119984953 -15.223735930359169, 34.57540919983893 -15.211526930347802, 34.56360919982794 -15.117781930260492, 34.5672181998313 -15.061108930207709, 34.58888219985147 -14.963890930117174, 34.5619451998264 -14.766390929933237, 34.54110919980698 -14.615554929792765, 34.532218199798706 -14.592781929771547, 34.52221819978939 -14.571663929751878, 34.49610919976507 -14.550554929732229, 34.46700919973799 -14.526254929709594, 34.44610919971851 -14.496108929681512, 34.42693619970066 -14.461672929649453, 34.410827199685656 -14.42972692961969, 34.38402719966069 -14.393335929585803, 34.36374519964181 -14.38597292957894, 34.129436199423594 -14.443890929632886, 33.89249119920291 -14.489445929675313, 33.77721819909556 -14.517781929701698, 33.6963911990203 -14.53305492971593, 33.63332719896155 -14.53971792972213, 33.531945198867135 -14.431663929621493, 33.435000198776834 -14.321390929518799, 33.3463821986943 -14.208890929414025, 33.30235419865332 -14.142781929352452, 33.2577731986118 -14.036108929253103, 33.22222719857868 -14.012563929231177)), ((34.72610019997927 -12.096390927446606, 34.70901819996337 -12.085417927436382, 34.720827199974366 -12.038263927392464, 34.751173200002626 -12.039235927393378, 34.74412719999606 -12.085072927436059, 34.72610019997927 -12.096390927446606)), ((34.618327199878905 -12.037226927391501, 34.616873199877546 -12.008263927364524, 34.628118199888036 -12.030763927385479, 34.618327199878905 -12.037226927391501))) +MOZ Mozambique MULTIPOLYGON (((32.13340019756464 -26.839626941177315, 32.12610919755784 -26.499026940860105, 32.07221819750765 -26.393335940761673, 32.0611001974973 -26.26139094063879, 32.10193619753534 -26.155417940540097, 32.07471819750998 -26.037226940430024, 31.968509197411066 -25.957835940356077, 31.919445197365377 -25.814163940222272, 32.006100197446074 -25.61583594003757, 32.00500019744504 -25.5369459399641, 31.988191197429387 -25.51111793994005, 32.01666319745593 -25.110554939566995, 31.995554197436263 -24.704445939188773, 32.01610919745539 -24.4594459389606, 31.96389119740678 -24.306945938818572, 31.885827197334066 -24.171117938692078, 31.87740019732621 -23.950645938486744, 31.844718197295776 -23.907217938446294, 31.769718197225927 -23.85639093839896, 31.688609197150384 -23.68028193823494, 31.683609197145728 -23.613608938172845, 31.550827197022073 -23.476672938045326, 31.53750019700965 -23.417226937989952, 31.561663197032175 -23.186672937775242, 31.29750019678613 -22.414763937056335, 31.40040919688198 -22.347226936993437, 32.41610919782792 -21.307217936024855, 32.488873197895686 -21.34444593605953, 32.360554197776196 -21.135554935864988, 32.4808271978882 -20.992226935731495, 32.52138219792596 -20.91417293565881, 32.48416319789132 -20.67028193543166, 32.50221819790812 -20.598608935364908, 32.550827197953396 -20.554999935324304, 32.665836198060504 -20.55722693532637, 32.873891198254285 -20.274026935062622, 32.904163198282475 -20.124172934923067, 32.98277319835569 -20.02222693482811, 33.01888219838929 -19.943335934754643, 33.05943619842708 -19.780281934602783, 32.984718198357484 -19.68722693451612, 32.850554198232544 -19.617781934451443, 32.85180019823369 -19.49999993434176, 32.84020919822291 -19.475554934318993, 32.78540919817186 -19.467081934311096, 32.79284519817878 -19.362435934213636, 32.85500019823667 -19.274172934131443, 32.88485419826449 -19.10528193397414, 32.83401819821714 -19.02305493389757, 32.714509198105844 -19.017990933892847, 32.6994361980918 -18.947917933827583, 32.70416319809621 -18.833054933720618, 32.79027319817641 -18.788890933679482, 32.83221819821546 -18.778335933669652, 32.893054198272125 -18.791117933681562, 32.92027319829748 -18.776735933668164, 32.94971819832489 -18.69028193358764, 32.88944519826876 -18.57139093347692, 32.88832719826772 -18.530554933438893, 33.02055419839087 -18.45972693337292, 33.0715911984384 -18.349726933270475, 32.974054198347545 -18.250099933177694, 32.99930019837106 -18.187708933119595, 32.94610919832152 -17.97499993292149, 32.952354198327356 -17.88083593283379, 33.01500019838568 -17.74528193270754, 33.042354198411175 -17.629308932599542, 33.028473198398245 -17.578054932551808, 32.97826319835147 -17.5574359325326, 32.95652719833123 -17.50549093248422, 33.042027198410864 -17.356481932345446, 32.99381819836597 -17.30805493230035, 32.96832719834222 -17.147499932150822, 32.86500019824598 -16.91860893193764, 32.93860919831454 -16.842226931866506, 32.981136198354164 -16.709054931742486, 32.767463198155156 -16.718035931750848, 32.72805419811846 -16.693608931728093, 32.70736319809919 -16.61173593165185, 32.37778219779224 -16.46999993151985, 32.25471819767762 -16.440281931492166, 32.05555419749214 -16.448472931499794, 31.911182197357675 -16.412708931466497, 31.902982197350042 -16.365490931422514, 31.7151361971751 -16.210554931278224, 31.556245197027124 -16.194999931263737, 31.426245196906052 -16.162363931233344, 31.343745196829218 -16.09333593116905, 31.3119451967996 -16.032499931112397, 31.276663196766748 -16.01860893109945, 31.14888219664772 -15.99465493107715, 31.071109196575293 -16.015281931096354, 30.422363195971116 -16.005554931087303, 30.417291195966385 -15.642145930748853, 30.396663195947184 -15.593608930703638, 30.361109195914054 -15.337426930465057, 30.27152719583063 -15.257781930390877, 30.2525001958129 -15.216108930352064, 30.219163195781874 -15.096108930240305, 30.21301819577613 -14.981717930133783, 30.343609195897756 -14.967781930120793, 30.504718196047804 -14.884726930043442, 30.808054196330318 -14.778054929944105, 31.4847181969605 -14.619717929796636, 31.700836197161777 -14.50208192968708, 31.83555419728725 -14.472781929659789, 32.09471819752861 -14.377226929570796, 32.37277319778758 -14.30833592950664, 33.22222719857868 -14.012563929231177, 33.2577731986118 -14.036108929253103, 33.3463821986943 -14.208890929414025, 33.63332719896155 -14.53971792972213, 34.36374519964181 -14.38597292957894, 34.38402719966069 -14.393335929585803, 34.54110919980698 -14.615554929792765, 34.58888219985147 -14.963890930117174, 34.56360919982794 -15.117781930260492, 34.59332719985562 -15.253054930386483, 34.566382199830514 -15.321945930450639, 34.52860919979534 -15.342499930469785, 34.43430019970751 -15.469581930588134, 34.426527199700274 -15.501808930618154, 34.443327199715924 -15.547499930660706, 34.42500019969884 -15.652426930758423, 34.37582719965306 -15.714172930815934, 34.26680019955151 -15.79291793088926, 34.25443619954001 -15.888890930978647, 34.2625001995475 -15.911526930999727, 34.42069119969483 -16.05013593112882, 34.40958219968451 -16.199172931267626, 34.45069119972277 -16.28069993134355, 34.54860919981397 -16.300972931362423, 34.571663199835456 -16.320490931380604, 34.59416319985641 -16.379445931435512, 34.660000199917704 -16.453608931504576, 34.767491200017815 -16.54639093159099, 34.99847320023295 -16.794308931821888, 35.04374520027511 -16.822081931847748, 35.12423620035008 -16.817990931843937, 35.145136200369535 -16.836108931860807, 35.14332720036785 -16.9375729319553, 35.05464520028525 -17.02396393203577, 35.08777320031612 -17.1270819321318, 35.2900542005045 -17.134263932138495, 35.30805420052127 -17.061390932070623, 35.28277320049773 -16.966390931982147, 35.302218200515824 -16.809172931835732, 35.27805420049333 -16.70472693173845, 35.22311820044217 -16.6460459316838, 35.172773200395284 -16.624172931663438, 35.13861820036345 -16.549745931594117, 35.24298220046066 -16.473263931522894, 35.29166320050601 -16.22833593129478, 35.41166320061777 -16.12625493119971, 35.486936200687865 -16.132781931205784, 35.540273200737545 -16.164445931235278, 35.70944520089509 -16.110554931185092, 35.79356320097344 -16.055181931133518, 35.815963200994304 -16.013608931094794, 35.86721820104202 -15.419445930541443, 35.80236320098163 -15.186663930324642, 35.92096320109209 -14.893890930051981, 35.88110020105495 -14.884999930043705, 35.87602720105022 -14.6611179298352, 35.530000200727955 -14.251108929453338, 35.490827200691484 -14.155835929364613, 35.20555420042581 -13.84444592907461, 35.095273200323106 -13.68610892892714, 34.86599120010956 -13.506308928759694, 34.65805419991591 -13.496390928750458, 34.56569119982987 -13.339581928604417, 34.52389119979097 -12.714726928022472, 34.44680019971915 -12.511390927833105, 34.40749119968254 -12.319445927654343, 34.37329119965071 -12.246417927586336, 34.37000019964762 -12.186108927530157, 34.410827199685656 -12.080835927432119, 34.616800199877474 -11.756526927130082, 34.63360919989313 -11.691945927069938, 34.62485419988499 -11.579372926965092, 35.23860920045658 -11.575835926961801, 35.57332720076832 -11.607081926990901, 35.64805420083792 -11.587081926972274, 35.73332720091733 -11.483335926875654, 35.82847320100595 -11.416872926813753, 35.93819120110811 -11.432781926828568, 36.168191201322315 -11.585835926971114, 36.18763620134044 -11.705417927082479, 36.293882201439374 -11.707499927084427, 36.37554520151545 -11.683890927062436, 36.557427201684845 -11.740417927115075, 36.677773201796924 -11.71472692709115, 36.82694520193584 -11.572190926958413, 36.99777320209495 -11.591390926976288, 37.11895420220779 -11.67007292704956, 37.19082720227473 -11.68999992706813, 37.39958220246916 -11.72319092709904, 37.47320920253773 -11.718708927094866, 37.59721820265321 -11.639717927021294, 37.79193620283456 -11.56110892694808, 37.816936202857846 -11.53625492692494, 37.810200202851576 -11.4838179268761, 37.86513620290273 -11.332781926735436, 37.93443620296728 -11.288054926693789, 38.09669120311838 -11.25632692666423, 38.33388220333927 -11.347917926749531, 38.4168002034165 -11.397226926795454, 38.491709203486266 -11.415308926812301, 38.67249120365463 -11.270835926677748, 38.90569120387181 -11.170135926583967, 39.136100204086404 -11.142363926558104, 39.20596320415149 -11.173190926586813, 39.262500204204116 -11.169445926583322, 39.50389120442895 -10.997635926423314, 39.766936204673925 -10.920554926351528, 39.89832720479629 -10.831663926268732, 40.01971820490934 -10.779163926219837, 40.38138220524618 -10.540281925997363, 40.44777320530801 -10.471108925932938, 40.516245205371774 -10.481945925943037, 40.56944520542132 -10.597226926050396, 40.58833620543891 -10.68667292613371, 40.50305420535949 -10.791108926230962, 40.55138220540451 -10.799717926238984, 40.617218205465804 -10.841672926278065, 40.50922720536522 -10.929790926360127, 40.50624520536246 -11.031390926454748, 40.531245205385744 -11.016317926440706, 40.563818205416084 -11.024235926448085, 40.56166320541408 -11.066390926487344, 40.49860020535533 -11.176672926590058, 40.38777320525213 -11.317781926721466, 40.476663205334916 -11.404099926801862, 40.42889120529043 -11.574717926960759, 40.42416320528602 -11.649726927030613, 40.50555420536182 -11.957226927316995, 40.51000020536594 -12.434026927761053, 40.47416320533259 -12.504926927827086, 40.55888220541149 -12.553335927872169, 40.61110920546011 -12.708890928017041, 40.645973205492595 -12.755417928060368, 40.64402720549077 -12.777363928080817, 40.513609205369306 -12.88499992818106, 40.476663205334916 -12.884163928180271, 40.44971820530981 -12.903054928197875, 40.415836205278254 -12.935417928228006, 40.412773205275414 -12.969235928259508, 40.46110920532041 -13.016390928303423, 40.49401820535107 -13.025417928311825, 40.51082720536672 -13.006808928294504, 40.49273620534987 -12.955045928246292, 40.59290920544316 -12.970690928260865, 40.57193620542364 -13.202781928477009, 40.53944520539338 -13.312226928578937, 40.58985420544033 -13.371872928634488, 40.5258362053807 -13.515281928768047, 40.578891205430125 -13.567217928816419, 40.53930020539323 -13.640417928884588, 40.64971820549607 -14.02166392923965, 40.61630920546497 -14.132017929342425, 40.53277320538717 -14.16749992937548, 40.59860920544847 -14.245835929448432, 40.66888220551394 -14.19028192939669, 40.69888220554188 -14.183190929390094, 40.722773205564124 -14.202081929407683, 40.74471820558455 -14.274726929475335, 40.72860920556954 -14.34305492953898, 40.64360920549038 -14.401390929593305, 40.63610920548339 -14.484726929670913, 40.67055420551549 -14.487781929673758, 40.68999120553357 -14.435835929625384, 40.806382205641995 -14.405972929597567, 40.831109205665 -14.459445929647373, 40.84610920567897 -14.697781929869336, 40.82000020565465 -14.811108929974878, 40.728463205569426 -14.88902693004745, 40.77027320560836 -14.978335930130626, 40.703882205546535 -15.081808930226998, 40.537845205391875 -15.12402693026631, 40.514445205370095 -15.183890930322065, 40.58159120543263 -15.196045930333383, 40.60555420545495 -15.163335930302921, 40.63180020547938 -15.157781930297745, 40.66832720551341 -15.191526930329175, 40.684300205528274 -15.254863930388169, 40.57832720542959 -15.498890930615431, 40.43790920529881 -15.602081930711535, 40.36027320522652 -15.723335930824462, 40.12554520500791 -15.93999993102625, 40.13401820501579 -15.997635931079927, 40.09750020498177 -16.082917931159344, 39.976663204869254 -16.235554931301508, 39.883891204782856 -16.239308931305004, 39.782636204688544 -16.3055549313667, 39.817500204721 -16.412781931466554, 39.69860920461028 -16.536945931582196, 39.12749120407838 -16.87041793189276, 39.12500020407606 -16.9377819319555, 39.09618220404923 -16.98437293199889, 38.824436203796154 -17.05680893206636, 38.68610020366731 -17.07083593207942, 38.2497182032609 -17.229445932227136, 38.09652720311823 -17.316945932308627, 37.87221820290932 -17.37639093236399, 37.220554202302424 -17.750072932712, 37.088609202179526 -17.87194593282551, 36.98389120208202 -18.001390932946066, 36.91638220201912 -17.950554932898726, 36.89985420200375 -17.88999993284233, 36.84638220195393 -17.875554932828877, 36.821518201930786 -17.89479093284679, 36.97048220206952 -18.059445933000134, 36.94388220204473 -18.108608933045915, 36.77360920188616 -18.30152693322559, 36.47971820161246 -18.576945933482094, 36.398609201536914 -18.733335933627743, 36.32054520146423 -18.794445933684656, 36.25278220140112 -18.891390933774943, 36.13103620128771 -18.900072933783022, 36.13104520128775 -18.808754933697983, 36.10013620125895 -18.81305493370199, 35.982773201149655 -18.926945933808057, 35.878882201052875 -18.974999933852814, 35.67040920085873 -19.121945933989664, 35.5761092007709 -19.271390934128846, 35.447145200650795 -19.41902693426634, 35.11221820033887 -19.7169459345438, 34.89069120013255 -19.860417934677415, 34.847563200092395 -19.855590934672918, 34.812700200059936 -19.77839993460104, 34.62680019988679 -19.61860893445221, 34.683882199939944 -19.738954934564305, 34.74250019999454 -19.769026934592304, 34.77610020002584 -19.825899934645278, 34.75054520000205 -20.036663934841556, 34.75943620001033 -20.180554934975575, 34.69513619995044 -20.381108935162345, 34.66693619992418 -20.39118193517173, 34.73930019999156 -20.557781935326886, 34.99027320022532 -20.72736393548483, 35.00889120024266 -20.806945935558943, 35.074436200303694 -20.913063935657775, 35.11180020033848 -20.933299935676615, 35.102963200330265 -20.957326935699, 35.11790920034417 -20.97444593571494, 35.08249120031118 -21.08722693581997, 35.0502822002812 -21.0977819358298, 35.0791632003081 -21.324172936040654, 35.269645200485485 -21.648608936342796, 35.27673620049211 -21.819235936501713, 35.329991200541684 -21.993335936663854, 35.33749120054867 -22.074445936739394, 35.32693620053885 -22.234026936888014, 35.302354200515964 -22.33041793697778, 35.30673620052005 -22.40749993704958, 35.371663200580514 -22.466117937104173, 35.3972182006043 -22.459999937098473, 35.40943620061569 -22.414172937055795, 35.38930020059692 -22.2987549369483, 35.403054200609745 -22.221390936876247, 35.445827200649575 -22.120281936782078, 35.48055420068192 -22.095799936759278, 35.5452732007422 -22.232499936886597, 35.5405542007378 -22.414172937055795, 35.48583620068683 -22.62917293725603, 35.50443620070416 -22.83416393744693, 35.53527320073289 -22.950281937555076, 35.59726320079062 -22.91967293752657, 35.479791200681206 -23.178472937767594, 35.486800200687725 -23.281808937863843, 35.41262720061866 -23.52125493808684, 35.406945200613364 -23.656108938212427, 35.347773200558265 -23.69528193824891, 35.33833620054946 -23.90583593844501, 35.33971820055075 -23.96944593850425, 35.36027320056991 -23.953335938489246, 35.37631820058485 -23.857990938400448, 35.43971820064388 -23.878608938419646, 35.4900002006907 -23.79291793833984, 35.52290920072136 -23.79549093834224, 35.539791200737085 -23.873054938414484, 35.48325420068443 -24.048126938577525, 35.49555420069589 -24.102217938627902, 35.39000020059757 -24.266108938780533, 35.192363200413524 -24.490281938989312, 35.18548220040711 -24.522217939019058, 35.14388220036835 -24.569999939063564, 35.01221820024574 -24.654163939141938, 34.81277320006001 -24.74333593922499, 34.303891199586076 -24.926945939395992, 33.72263619904473 -25.109026939565567, 33.13190019849455 -25.381154939819012, 32.88208219826191 -25.538335939965393, 32.811109198195794 -25.612081940034074, 32.77027319815778 -25.683608940100683, 32.733400198123434 -25.80618194021484, 32.70443619809646 -25.825835940233148, 32.69388219808661 -25.8740999402781, 32.58715419798722 -25.972435940369678, 32.60388219800279 -26.031390940424586, 32.80652719819153 -26.27528194065173, 32.84319119822567 -26.29110894066647, 32.87330019825373 -26.272417940649063, 32.86416319824522 -26.209308940590283, 32.90235419828079 -26.107781940495734, 32.945618198321085 -26.087708940477036, 32.89042719826966 -26.847145941184316, 32.3483271977648 -26.860281941196554, 32.13340019756464 -26.839626941177315), (34.72610019997927 -12.096390927446606, 34.74412719999606 -12.085072927436059, 34.751173200002626 -12.039235927393378, 34.720827199974366 -12.038263927392464, 34.70901819996337 -12.085417927436382, 34.72610019997927 -12.096390927446606), (34.618327199878905 -12.037226927391501, 34.628118199888036 -12.030763927385479, 34.616873199877546 -12.008263927364524, 34.618327199878905 -12.037226927391501)), ((39.8861092047849 -16.41778193147121, 39.83437320473672 -16.40673593146093, 39.81055420471455 -16.36069093141805, 39.81277320471662 -16.324863931384684, 39.8350002047373 -16.29013593135234, 39.89805420479604 -16.272917931336295, 39.91485420481169 -16.282917931345608, 39.90290920480055 -16.412363931466174, 39.8861092047849 -16.41778193147121)), ((35.45221820065552 -21.78749993647216, 35.42805420063303 -21.77610893646154, 35.42443620062966 -21.72749993641628, 35.4833272006845 -21.52528193622794, 35.49680020069704 -21.546390936247604, 35.494718200695104 -21.65833593635186, 35.45221820065552 -21.78749993647216))) +ZAF South Africa MULTIPOLYGON (((17.171654183630437 -28.10226394235324, 17.19860918365552 -28.22360894246625, 17.343118183790125 -28.233054942475043, 17.398054183841282 -28.342226942576723, 17.36138218380711 -28.53499994275625, 17.40090018384393 -28.708399942917744, 17.589754184019796 -28.68954594290019, 17.643400184069776 -28.77396394297881, 17.749718184168785 -28.746390942953127, 17.91250018432038 -28.77916394298365, 18.044445184443276 -28.8681269430665, 18.181318184570756 -28.90847294310408, 18.719163185071665 -28.83652694303707, 18.951527185288057 -28.866390943064886, 19.00250018533552 -28.92791794312219, 19.145827185469017 -28.954999943147406, 19.25389118556967 -28.89944594309567, 19.261245185576513 -28.744863942951703, 19.466391185767577 -28.699717942909658, 19.567454185861692 -28.52832694275004, 19.812218186089638 -28.49249994271667, 19.996945186261684 -28.415590942645046, 20.000945186265398 -24.765408939245546, 20.13221818638766 -24.88444593935641, 20.23708218648534 -24.916108939385893, 20.39000018662773 -25.036945939498437, 20.631945186853073 -25.436945939870967, 20.689091186906296 -25.591181940014607, 20.682154186899822 -25.68569094010263, 20.810273187019163 -25.88083594028437, 20.860282187065735 -26.14180894052742, 20.691800186908807 -26.388054940756753, 20.609718186832367 -26.454445940818587, 20.6411091868616 -26.8259729411646, 20.70389118692009 -26.875554941210773, 20.892082187095355 -26.795345941136077, 21.1288911873159 -26.86639094120224, 21.37763618754755 -26.82139094116033, 21.668327187818278 -26.863681941199715, 21.772636187915424 -26.789863941130967, 21.769754187912753 -26.683963941032346, 22.056736188180025 -26.624445940976912, 22.249445188359488 -26.34111794071304, 22.624809188709065 -26.111563940499252, 22.6636091887452 -26.015208940409515, 22.72290918880043 -25.973890940371035, 22.75639118883163 -25.73625494014972, 22.812845188884182 -25.678263940095718, 22.830000188900158 -25.530835939958408, 23.014827189072292 -25.299726939743167, 23.194445189239588 -25.264163939710045, 23.454373189481657 -25.27701793972203, 23.73624518974418 -25.463754939895935, 23.9019451898985 -25.624863940045984, 24.00680018999614 -25.657917940076757, 24.18923619016607 -25.623190940044424, 24.35166319031734 -25.7555549401677, 24.4722181904296 -25.746672940159428, 24.68457319062736 -25.828217940235362, 24.90069119082864 -25.808126940216653, 25.03305419095193 -25.728617940142612, 25.1522181910629 -25.762217940173898, 25.360836191257192 -25.754581940166787, 25.509718191395848 -25.677781940095258, 25.58997319147059 -25.61469094003651, 25.671391191546434 -25.47028193990201, 25.872218191733452 -24.90528193937581, 25.871391191732698 -24.744445939226026, 26.265273192099528 -24.637499939126428, 26.411045192235264 -24.628272939117835, 26.555000192369334 -24.436945938939644, 26.726318192528908 -24.310835938822194, 26.830409192625837 -24.27513593878895, 27.00520919278864 -23.643754938200928, 27.06971819284871 -23.6361089381938, 27.148054192921677 -23.52472693809007, 27.33971819310017 -23.399726937973654, 27.529091193276543 -23.379381937954705, 27.604027193346326 -23.21916393780549, 27.78388219351382 -23.170281937759967, 27.94388219366283 -23.03139093763062, 27.97221819368923 -22.952781937557404, 28.156600193860953 -22.771463937388546, 28.179636193882402 -22.686435937309355, 28.356527194047146 -22.576390937206867, 28.638327194309596 -22.56180893719329, 28.917845194569907 -22.454954937093774, 29.024800194669524 -22.227108936881578, 29.670000195270404 -22.136390936797085, 29.939027195520964 -22.191254936848182, 30.300973195858063 -22.34444593699085, 30.90430019641994 -22.289308936939506, 31.08944519659238 -22.337499936984386, 31.157500196655747 -22.323472936971314, 31.26562719675647 -22.370417937015034, 31.561663197032175 -23.186672937775242, 31.550827197022073 -23.476672938045326, 31.683609197145728 -23.613608938172845, 31.769718197225927 -23.85639093839896, 31.87740019732621 -23.950645938486744, 31.885827197334066 -24.171117938692078, 32.01610919745539 -24.4594459389606, 32.006100197446074 -25.61583594003757, 31.919445197365377 -25.814163940222272, 31.968509197411066 -25.957835940356077, 31.878054197326833 -25.995554940391216, 31.42166319690179 -25.728335940142344, 31.325691196812386 -25.753335940165627, 31.12680019662716 -25.921117940321892, 31.051109196556666 -26.11278194050039, 30.829445196350235 -26.390835940759345, 30.79833619632126 -26.54278194090086, 30.820763196342142 -26.810208941149916, 30.899445196415428 -26.771945941114282, 30.968327196479578 -26.9608359412902, 31.161663196659646 -27.20305494151578, 31.517500196991023 -27.313054941618226, 31.98555419742695 -27.316390941621336, 31.95860919740184 -27.112781941431713, 32.01559119745491 -26.807081941147004, 32.3483271977648 -26.860281941196554, 32.89042719826966 -26.847145941184316, 32.84166319822427 -27.109999941429116, 32.650136198045885 -27.604863941889995, 32.556945197959095 -28.15417294240158, 32.43221819784293 -28.378054942610085, 32.39443619780775 -28.531390942752893, 31.994163197434972 -28.879445943077044, 31.77416319723008 -28.94555494313861, 31.32583619681253 -29.390835943553313, 31.009718196518122 -29.872499944001902, 31.000136196509203 -29.899308944026863, 31.051791196557303 -29.89254594402057, 31.0351361965418 -29.924999944050796, 30.87000019638799 -30.076945944192303, 30.390000195940956 -30.85667294491848, 30.023891195600015 -31.28110894531377, 29.850827195438825 -31.42236394544532, 29.773327195366647 -31.440417945462137, 29.62944519523265 -31.581390945593427, 29.411945195030086 -31.704172945707775, 29.091663194731808 -32.06444594604331, 28.54236319422023 -32.5679179465122, 28.228054193927505 -32.76749994669808, 27.900000193621963 -33.040554946952376, 27.730273193463916 -33.117499947024044, 27.10097319287783 -33.525699947404206, 26.530554192346585 -33.75333594761621, 26.277918192111287 -33.76514594762721, 25.963609191818563 -33.71125494757702, 25.725000191596337 -33.76722694762915, 25.62860919150657 -33.85139094770753, 25.613054191492097 -33.91445494776626, 25.70194519157488 -34.03195494787569, 25.58444519146545 -34.048890947891465, 25.16416319107404 -33.958890947807646, 25.022636190942222 -33.96805494781618, 24.918327190845076 -34.00792694785331, 24.919300190845973 -34.06688194790822, 24.824718190757892 -34.20166394803375, 24.51582719047022 -34.17028194800452, 24.3855541903489 -34.1072269479458, 23.649300189663194 -33.98389094783093, 23.38930018942105 -34.029099947873036, 23.366182189399524 -34.09089994793059, 22.959445189020727 -34.091390947931046, 22.78333618885671 -34.011117947856285, 22.539163188629317 -34.01118194785634, 22.438891188535933 -34.064172947905696, 22.297218188403974 -34.05444594789664, 22.1625001882785 -34.08945494792924, 21.943882188074895 -34.2302819480604, 21.899582188033662 -34.33778194816052, 21.802500187943224 -34.38305494820268, 21.648609187799906 -34.38944594820863, 21.5320821876914 -34.35222694817397, 21.30138218747652 -34.432781948248994, 20.942500187142286 -34.36028194818147, 20.88694518709056 -34.37167294819208, 20.79860918700828 -34.45861794827305, 20.50444518673433 -34.464726948278745, 20.08971818634808 -34.726390948522436, 20.000000186264515 -34.82199994861148, 19.85777318613208 -34.752499948546756, 19.646454185935255 -34.77312694856597, 19.423609185727713 -34.621945948425164, 19.320409185631604 -34.595281948400334, 19.364027185672228 -34.530699948340185, 19.278191185592277 -34.409172948227, 19.120345185445274 -34.408472948226354, 19.083336185410815 -34.34639094816853, 18.8197181851653 -34.3788909481988, 18.80860918515495 -34.30861794813335, 18.854582185197785 -34.15333594798874, 18.79902718514603 -34.08889094792872, 18.60194518496249 -34.07361794791449, 18.485973184854487 -34.09944594793855, 18.44180018481333 -34.17507294800898, 18.478882184847862 -34.23445494806428, 18.485027184853607 -34.34830894817032, 18.420273184793302 -34.32306394814681, 18.38027318475605 -34.2558359480842, 18.310554184691114 -34.03555494787904, 18.384791184760246 -33.910699947762765, 18.445554184816842 -33.911663947763664, 18.466663184836506 -33.8172179476757, 18.439027184810755 -33.70195494756835, 18.294718184676356 -33.466117947348714, 18.160554184551415 -33.3411179472323, 18.107773184502264 -33.250554947147954, 18.127636184520753 -33.18028194708251, 18.028000184427952 -33.025999946938825, 17.99520018439742 -33.00284594691726, 17.913191184321022 -33.04364594695526, 17.87610918428649 -33.00083594691539, 17.847500184259843 -32.83083594675706, 17.98639118438922 -32.732781946665746, 18.113563184507655 -32.78087294671053, 18.2897181846717 -32.629308946569374, 18.349863184727724 -32.28840894625189, 18.27909118466181 -31.902990945892938, 18.178054184567713 -31.670554945676464, 17.804300184219613 -31.21860894525556, 17.277918183729383 -30.342290944439426, 17.086109183550747 -29.840281943971895, 17.001391183471867 -29.519726943673355, 16.818327183301363 -29.094372943277214, 16.614718183111734 -28.87646394307427, 16.48332718298937 -28.608335942824553, 16.677118183169853 -28.464308942690415, 16.71950918320934 -28.49902694272275, 16.77666318326257 -28.441672942669335, 16.822500183305237 -28.23778194247945, 16.91187318338848 -28.067499942320858, 17.075763183541113 -28.03034594228626, 17.171654183630437 -28.10226394235324), (29.295273194921435 -29.5819459437313, 29.310136194935268 -29.47555494363221, 29.421873195039325 -29.427990943587915, 29.455554195070704 -29.349099943514446, 29.326945194950923 -29.087499943270814, 28.950973194600778 -28.876872943074652, 28.903054194556148 -28.795281942998663, 28.80693619446663 -28.75749994296347, 28.79250019445317 -28.70694594291639, 28.647773194318404 -28.570690942789497, 28.39971819408737 -28.627781942842667, 28.356182194046823 -28.692781942903203, 28.182845193885385 -28.698263942908305, 28.016663193730636 -28.86222694306101, 27.797500193526503 -28.918054943113, 27.636800193376843 -29.040417943226963, 27.64305419338268 -29.091108943274172, 27.300554193063704 -29.52583594367904, 27.01397319279681 -29.627135943773382, 27.22513619299346 -29.99444594411547, 27.29694519306034 -30.046672944164108, 27.378918193136684 -30.317326944416173, 27.464718193216584 -30.32139094441996, 27.73735419347051 -30.59659994467627, 28.079936193789564 -30.650526944726494, 28.377782194066953 -30.16028194426992, 28.790554194451374 -30.10139094421507, 29.166527194801517 -29.91541794404187, 29.124163194762076 -29.809163943942913, 29.145554194781994 -29.716945943857027, 29.172918194807465 -29.663890943807615, 29.293263194919547 -29.618263943765122, 29.295273194921435 -29.5819459437313)), ((37.82000020286068 -46.969726959924934, 37.60916320266435 -46.95389095991018, 37.575973202633435 -46.912917959872026, 37.65152720270379 -46.832781959797394, 37.7775002028211 -46.83152695979622, 37.89221820292795 -46.89999995986, 37.82000020286068 -46.969726959924934))) +SWZ Swaziland MULTIPOLYGON (((30.899445196415428 -26.771945941114282, 30.88027319639758 -26.793263941134136, 30.820763196342142 -26.810208941149916, 30.80884519633105 -26.743590941087874, 30.803609196326164 -26.702499941049602, 30.802500196325127 -26.68111794102969, 30.80028219632308 -26.61194594096527, 30.79833619632126 -26.54278194090086, 30.802218196324873 -26.468390940831576, 30.80860919633082 -26.447226940811866, 30.829445196350235 -26.390835940759345, 30.902045196417845 -26.305254940679646, 30.96944519648062 -26.23833594061732, 31.005554196514254 -26.184172940566874, 31.051109196556666 -26.11278194050039, 31.06389119656859 -26.091390940480466, 31.076945196580738 -26.063054940454073, 31.095554196598073 -26.020835940414756, 31.109291196610855 -25.98788194038407, 31.12680019662716 -25.921117940321892, 31.325691196812386 -25.753335940165627, 31.42166319690179 -25.728335940142344, 31.590827197059326 -25.827499940234702, 31.733891197192577 -25.911390940312828, 31.769954197226156 -25.933035940332985, 31.8136091972668 -25.958890940357065, 31.878054197326833 -25.995554940391216, 31.968509197411066 -25.957835940356077, 31.998609197439094 -25.990835940386816, 32.07471819750998 -26.037226940430024, 32.10193619753534 -26.155417940540097, 32.0611001974973 -26.26139094063879, 32.07221819750765 -26.393335940761673, 32.08916319752345 -26.42499994079116, 32.12610919755784 -26.499026940860105, 32.132500197563786 -26.79667294113731, 32.13340019756464 -26.839626941177315, 32.08985419752409 -26.81069094115037, 32.01559119745491 -26.807081941147004, 31.9677821974104 -27.053054941376082, 31.95860919740184 -27.112781941431713, 31.96054519740366 -27.142926941459784, 31.964718197407535 -27.209445941521736, 31.9683271974109 -27.264163941572697, 31.98495419742639 -27.289454941596247, 31.98555419742695 -27.316390941621336, 31.92528219737082 -27.316390941621336, 31.762218197218942 -27.315554941620555, 31.680554197142897 -27.314999941620037, 31.517500196991023 -27.313054941618226, 31.41360919689427 -27.281108941588478, 31.278291196768265 -27.239217941549462, 31.218891196712946 -27.220835941532343, 31.161663196659646 -27.20305494151578, 31.05694519656211 -27.076945941398336, 30.968327196479578 -26.9608359412902, 30.910554196425778 -26.80444594114455, 30.899445196415428 -26.771945941114282))) +AGO Angola MULTIPOLYGON (((23.476109189501898 -17.625835932596303, 23.28916318932781 -17.661108932629148, 23.284718189323655 -17.662499932630453, 22.996391189055146 -17.716945932681156, 22.910000188974664 -17.73333593269642, 22.88110918894776 -17.73944593270211, 22.5641631886526 -17.798890932757473, 22.29027318839752 -17.849999932805076, 21.755409187899375 -17.94734593289573, 21.379354187549154 -18.014890932958636, 21.263327187441092 -17.956390932904156, 21.23687318741645 -17.93889093288786, 21.16586318735031 -17.931463932880945, 21.13860918732493 -17.93444593288372, 21.02138218721575 -17.95333593290131, 20.953327187152382 -17.96826393291522, 20.889718187093138 -17.9944459329396, 20.85416318706004 -18.016390932960036, 20.781582186992438 -18.010199932954265, 20.751945186964832 -17.99610893294114, 20.63847318685916 -17.978472932924717, 20.595554186819186 -17.98139093292744, 20.55368218678018 -17.983054932928994, 20.492554186723254 -17.941890932890658, 20.44520018667916 -17.90187293285338, 20.321318186563786 -17.8572269328118, 20.27083618651676 -17.861254932815555, 20.244718186492435 -17.88013593283314, 20.12889118638458 -17.894445932846466, 20.09889118635664 -17.896390932848277, 20.01694518628031 -17.890835932843103, 19.971318186237824 -17.88013593283314, 19.94624518621447 -17.863335932817492, 19.920554186190543 -17.8572269328118, 19.818609186095586 -17.85805493281258, 19.797918186076316 -17.863754932817884, 19.701382185986404 -17.87055493282422, 19.559163185853976 -17.867499932821374, 19.445827185748414 -17.862781932816972, 19.413327185718146 -17.861117932815432, 19.33721818564726 -17.843890932799383, 19.298745185611438 -17.824999932781793, 19.2455541855619 -17.806254932764332, 19.175282185496457 -17.801108932759533, 19.13360918545763 -17.804372932762575, 19.116800185441974 -17.819445932776617, 19.055827185385198 -17.827781932784376, 19.025836185357264 -17.82999993278645, 18.983891185318214 -17.82597293278269, 18.919445185258184 -17.81639093277377, 18.804300185150936 -17.768890932729533, 18.7536821851038 -17.74528193270754, 18.64194518499974 -17.648054932617, 18.57832718494049 -17.57222693254637, 18.51333618487996 -17.472781932453756, 18.4515361848224 -17.389835932376513, 18.390000184765086 -17.38694593237382, 18.188891184577813 -17.38721793237407, 18.117218184511046 -17.38694593237382, 18.000545184402398 -17.3861729323731, 17.73389118415406 -17.38889093237563, 17.56166318399366 -17.390835932377442, 17.510554183946056 -17.391945932378476, 17.278827183730243 -17.392226932378733, 16.60610918310371 -17.390835932377442, 16.003327182542336 -17.38667293237357, 15.956663182498886 -17.38667293237357, 15.583054182150931 -17.38916393237588, 15.496945182070732 -17.389445932376148, 14.993891181602237 -17.389726932376405, 14.634718181267715 -17.388335932375114, 14.44805418109388 -17.38749993237434, 14.361663181013427 -17.38721793237407, 14.218054180879676 -17.38694593237382, 14.194718180857933 -17.411390932396586, 14.171391180836224 -17.42111793240565, 14.082918180753808 -17.42999993241392, 14.051109180724183 -17.419445932404088, 14.01666318069212 -17.410899932396134, 13.993218180670283 -17.423945932408273, 13.928891180610378 -17.401108932387004, 13.841391180528888 -17.323608932314826, 13.697773180395131 -17.24139093223826, 13.660691180360573 -17.218890932217306, 13.528018180237012 -17.087572932095, 13.494300180205613 -17.025554932037252, 13.472082180184941 -17.01083593202354, 13.376036180095468 -16.970908931986358, 13.346309180067806 -16.97067293198613, 13.317782180041235 -16.978054931993015, 13.260827179988183 -16.984863931999357, 13.208891179939826 -16.973608931988863, 13.170900179904436 -16.956317931972762, 13.149163179884198 -16.954172931970774, 13.01847317976248 -16.978054931993015, 12.985836179732075 -16.99110893200516, 12.923336179673868 -17.016390932028713, 12.879791179633315 -17.04013593205083, 12.851391179606878 -17.072499932080973, 12.817918179575685 -17.107081932113175, 12.604445179376881 -17.225835932223774, 12.557218179332892 -17.243335932240072, 12.47889117925996 -17.24167293223853, 12.434163179218302 -17.212781932211612, 12.292218179086092 -17.229726932227393, 12.238054179035657 -17.21528193221394, 12.205827179005638 -17.194726932194797, 12.087773178895702 -17.136526932140598, 12.048054178858706 -17.143890932147457, 11.976109178791688 -17.164172932166352, 11.933054178751604 -17.18069993218174, 11.902218178722876 -17.205835932205147, 11.884582178706466 -17.22444593222248, 11.811663178638554 -17.270281932265164, 11.752782178583715 -17.254835932250785, 11.758336178588877 -17.139445932143317, 11.771945178601555 -16.96583593198163, 11.773191178602701 -16.826526931851888, 11.812500178639311 -16.791390931819166, 11.821109178647333 -16.702499931736384, 11.82221817864837 -16.6727819317087, 11.820836178647085 -16.503054931550636, 11.819718178646042 -16.47167293152141, 11.81778217864425 -16.447226931498633, 11.815554178642174 -16.423335931476387, 11.81027317863726 -16.370554931427236, 11.807500178634655 -16.347499931405764, 11.794163178622256 -16.241945931307455, 11.78639117861502 -16.19610893126476, 11.781527178610474 -16.08917293116518, 11.791391178619676 -16.05278193113128, 11.80555417863286 -16.02458193110502, 11.81027317863726 -16.000281931082384, 11.802918178630392 -15.967917931052241, 11.77139117860105 -15.924308931011637, 11.741245178572967 -15.878754930969208, 11.731245178563654 -15.850690930943074, 11.74139117857311 -15.819726930914229, 11.773473178602984 -15.783681930880661, 11.811663178638554 -15.779235930876524, 11.827636178653421 -15.79958193089547, 11.85750017868122 -15.787917930884603, 11.890827178712271 -15.755135930854081, 12.005973178819517 -15.59652693070636, 12.015000178827904 -15.569445930681141, 12.034027178845633 -15.495281930612066, 12.036036178847496 -15.4639549305829, 12.030836178842662 -15.428335930549721, 12.030282178842157 -15.401945930525144, 12.057500178867485 -15.218335930354144, 12.10610917891276 -15.11417293025714, 12.159163178962189 -14.988608930140188, 12.205273179005133 -14.877781930036974, 12.247500179044437 -14.78944592995471, 12.273609179068757 -14.752363929920179, 12.277773179072653 -14.66805492984166, 12.282218179076779 -14.637499929813202, 12.300554179093865 -14.529163929712297, 12.31583617910809 -14.466108929653572, 12.332218179123345 -14.424163929614508, 12.340418179130978 -14.396945929589165, 12.347773179137846 -14.307499929505866, 12.341600179132087 -14.259999929461628, 12.326245179117791 -14.230554929434206, 12.317291179109446 -14.189999929396436, 12.332218179123345 -14.104999929317273, 12.35777317914716 -14.041390929258029, 12.408609179194485 -13.950554929173435, 12.48284517926362 -13.8772909291052, 12.504582179283886 -13.84444592907461, 12.535973179313117 -13.577635928826126, 12.531954179309366 -13.567935928817093, 12.523054179301084 -13.552917928803097, 12.512709179291448 -13.424372928683383, 12.540000179316849 -13.400281928660945, 12.766663179527967 -13.192499928467441, 12.8625001796172 -13.085835928368098, 12.938327179687832 -12.994163928282717, 12.961873179709755 -12.947990928239719, 12.951109179699728 -12.926672928219872, 12.92708217967737 -12.85666392815466, 12.93242717968235 -12.826808928126866, 12.970000179717317 -12.784445928087408, 13.12527317986195 -12.655554927967373, 13.198054179929727 -12.609581927924552, 13.230000179959461 -12.613054927927791, 13.354445180075373 -12.603472927918858, 13.375836180095291 -12.58999992790632, 13.459154180172902 -12.508608927830508, 13.472500180185307 -12.48402692780762, 13.473745180186484 -12.456663927782131, 13.473336180186095 -12.434717927761696, 13.485836180197737 -12.405554927734542, 13.508054180218437 -12.372217927703488, 13.525282180234484 -12.350690927683445, 13.556663180263712 -12.323054927657708, 13.575973180281693 -12.312363927647752, 13.662500180362258 -12.169726927514901, 13.764163180456961 -11.936108927297326, 13.792082180482964 -11.794726927165655, 13.794445180485155 -11.758890927132285, 13.792882180483701 -11.748754927122846, 13.786454180477705 -11.715763927092112, 13.775273180467309 -11.577217926963087, 13.77889118047068 -11.516945926906956, 13.791527180482433 -11.334026926736598, 13.816282180505482 -11.303090926707782, 13.84777318053483 -11.09555492651451, 13.853609180540246 -11.002917926428225, 13.849445180536378 -10.95610892638463, 13.836036180523877 -10.9215999263525, 13.781945180473514 -10.85139092628711, 13.724509180420029 -10.765490926207107, 13.74055418043497 -10.730281926174314, 13.76958218046201 -10.70034592614644, 13.768336180460835 -10.672845926120829, 13.746391180440412 -10.643054926093086, 13.642500180343632 -10.531390925989086, 13.538891180247163 -10.423754925888844, 13.523191180232516 -10.398054925864912, 13.520836180230333 -10.374581925843046, 13.529718180238604 -10.346526925816917, 13.511391180221551 -10.282081925756898, 13.488318180200054 -10.251099925728042, 13.479718180192037 -10.241108925718734, 13.44860918016306 -10.196663925677342, 13.316036180039589 -9.963190925459912, 13.334373180056673 -9.950417925448008, 13.329163180051836 -9.909726925410112, 13.304718180029056 -9.851808925356181, 13.290273180015618 -9.828608925334564, 13.253336179981204 -9.775554925285164, 13.222218179952222 -9.6484729251668, 13.223473179953402 -9.61333592513408, 13.170000179903582 -9.408608924943408, 13.142373179877865 -9.337708924877376, 13.11666317985393 -9.301108924843291, 12.984582179730921 -9.081254924638543, 13.002782179747868 -9.022017924583366, 13.028709179771994 -8.961645924527147, 13.076282179816303 -8.917345924485886, 13.131318179867577 -8.881663924452653, 13.104009179842137 -8.907008924476258, 13.088418179827613 -8.927190924495065, 13.070373179810815 -8.942281924509118, 13.05500017979648 -8.955835924521736, 13.029718179772942 -8.986108924549924, 13.007500179752242 -9.034445924594948, 13.00055417974579 -9.054726924613831, 13.013609179757935 -9.086945924643842, 13.055273179796757 -9.024726924585892, 13.099718179838135 -8.957781924523545, 13.190282179922491 -8.86160892443398, 13.227709179957344 -8.804517924380804, 13.278327180004482 -8.781108924359003, 13.360282180080816 -8.768335924347113, 13.387500180106144 -8.740281924320982, 13.40750018012477 -8.659163924245433, 13.400282180118069 -8.630763924218982, 13.36877318008871 -8.581417924173039, 13.351109180072257 -8.504445924101347, 13.349582180070854 -8.467499924066942, 13.379236180098445 -8.458754924058795, 13.391800180110152 -8.393754923998259, 13.36987318008974 -8.32925492393818, 13.351945180073045 -8.300554923911463, 13.319163180042523 -8.257226923871102, 13.259163179986643 -8.165835923785991, 13.215554179946025 -8.065554923692602, 13.199718179931267 -8.028608923658183, 13.19471817992661 -8.009163923640074, 13.155282179889895 -7.914445923551867, 13.116109179853396 -7.821663923465451, 13.107773179845651 -7.802781923447867, 13.101263179839577 -7.792008923437834, 13.087773179827025 -7.774726923421738, 13.072363179812669 -7.750135923398844, 13.010273179754847 -7.593335923252809, 12.984445179730784 -7.526663923190711, 12.951663179700262 -7.438054923108197, 12.869163179623428 -7.268608922950378, 12.84194517959807 -7.087226922781454, 12.833054179589794 -7.019445922718333, 12.828336179585392 -6.99055492269143, 12.817782179575573 -6.9502819226539145, 12.665554179433798 -6.766390922482657, 12.598609179371437 -6.695281922416427, 12.5676361793426 -6.670554922393407, 12.548891179325153 -6.65499992237892, 12.536109179313229 -6.63278192235822, 12.461945179244168 -6.473608922209976, 12.362782179151822 -6.257226922008456, 12.340827179131367 -6.222781921976377, 12.313327179105755 -6.195281921950766, 12.263336179059195 -6.1344459218941125, 12.246245179043285 -6.103608921865387, 12.256600179052924 -6.077635921841207, 12.280000179074705 -6.0633359218278855, 12.305836179098776 -6.0598639218246575, 12.314445179106798 -6.097499921859708, 12.408336179194237 -6.0769459218405615, 12.527773179305484 -6.048054921813659, 12.580000179354101 -6.036108921802523, 12.727773179491749 -6.019163921786742, 12.795000179554336 -6.0165269217842905, 12.826527179583707 -6.006945921775369, 12.891663179644382 -5.976108921746643, 12.930691179680707 -5.945835921718455, 12.945273179694311 -5.918890921693361, 12.953054179701553 -5.899445921675252, 12.979863179726522 -5.884445921661282, 13.059300179800488 -5.878472921655714, 13.091945179830901 -5.898335921674217, 13.125554179862206 -5.89139092166775, 13.172582179905987 -5.863854921642101, 13.178882179911852 -5.8563269216350875, 13.245000179973431 -5.86139092163981, 13.40527318012272 -5.854445921633342, 13.458609180172374 -5.848472921627774, 13.513336180223348 -5.854163921633074, 13.541036180249137 -5.864790921642978, 13.759718180452808 -5.862499921640847, 13.938609180619409 -5.840835921620666, 13.973336180651756 -5.836390921616527, 13.997500180674251 -5.8486089216279, 14.080273180751362 -5.8663909216444665, 14.242773180902702 -5.885554921662319, 14.3416631809948 -5.893335921669561, 14.596391181232036 -5.908054921683274, 14.712427181340104 -5.880417921657525, 14.758473181382982 -5.8780179216552995, 14.85110918146924 -5.87249992165016, 15.076391181679071 -5.862781921641101, 15.686109182246895 -5.857081921635796, 15.812636182364741 -5.869717921647563, 15.928336182472492 -5.86139092163981, 16.10007318263243 -5.859372921637927, 16.143054182672472 -5.856390921635153, 16.21582718274024 -5.852499921631534, 16.319718182836993 -5.852217921631265, 16.36832718288227 -5.853054921632051, 16.5141631830181 -5.8758359216532625, 16.579718183079137 -5.900835921676546, 16.5961091830944 -5.921663921695938, 16.605273183102952 -5.981663921751817, 16.60610918310371 -6.0272179217942465, 16.685273183177458 -6.136872921896369, 16.715691183205763 -6.168472921925797, 16.725227183214656 -6.1974459219527915, 16.693609183185202 -6.354999922099523, 16.688473183180434 -6.404999922146089, 16.70805418319867 -6.467226922204034, 16.78277318326826 -6.681663922403743, 16.83416318331612 -6.792226922506714, 16.8709731833504 -6.85757292256757, 16.903118183380343 -6.863890922573461, 16.930000183405355 -6.892217922599841, 16.969791183442425 -7.017917922716904, 16.95791818343136 -7.067635922763216, 16.93500018341001 -7.112499922805, 16.943118183417596 -7.199026922885579, 16.994582183465525 -7.297363922977169, 17.06471818353083 -7.339163923016088, 17.09526318355927 -7.379017923053212, 17.10555418356887 -7.422226923093447, 17.151109183611283 -7.452781923121904, 17.186663183644413 -7.513054923178046, 17.283609183734683 -7.679445923333006, 17.309445183758754 -7.756108923404398, 17.390691183834406 -7.845835923487968, 17.41971818386145 -7.854999923496507, 17.438327183878783 -7.8766639235166735, 17.505273183941142 -8.003335923634651, 17.525554183960026 -8.053608923681466, 17.55020018398298 -8.080681923706692, 17.55527318398771 -8.0830549237089, 17.631109184058317 -8.09805492372287, 17.660273184085497 -8.09278192371795, 17.756663184175267 -8.066663923693625, 17.88971818429917 -8.042363923671004, 17.922218184329438 -8.046663923674998, 17.95277318435791 -8.061526923688845, 17.976945184380412 -8.0830549237089, 18.004863184406418 -8.107081923731272, 18.04138218444041 -8.10778192373192, 18.115418184509366 -8.107108923731303, 18.1094271845038 -8.081363923707315, 18.112573184506715 -8.028617923658203, 18.196109184584515 -7.996663923628432, 18.329718184708952 -7.997499923629221, 18.40332718477751 -8.009163923640074, 18.525554184891348 -7.989026923621324, 18.5191631848854 -7.957635923592093, 18.52694518489264 -7.937081923572947, 18.766118185115374 -7.937963923573776, 18.77305418512185 -7.972363923605812, 18.791763185139274 -7.998972923630589, 19.001663185334763 -7.999445923631029, 19.372773185680387 -7.993335923625338, 19.35889118566746 -7.935281923571267, 19.352363185661375 -7.914308923551744, 19.349300185658507 -7.8931909235320745, 19.361245185669645 -7.812917923457306, 19.373473185681036 -7.790690923436614, 19.38750018569408 -7.763190923411003, 19.40139118570704 -7.692472923345136, 19.38138218568838 -7.619717923277378, 19.37250018568011 -7.601108923260043, 19.375018185682478 -7.579254923239688, 19.399300185705073 -7.572781923233663, 19.46819118576923 -7.568954923230109, 19.530618185827393 -7.477499923144933, 19.528263185825182 -7.434999923105352, 19.502218185800928 -7.369717923044547, 19.490273185789817 -7.316254922994759, 19.49013618578968 -7.286945922967462, 19.498891185797845 -7.179445922867345, 19.502918185801576 -7.152363922842127, 19.538945185835132 -6.996608922697064, 19.962773186229867 -6.995554922696087, 20.311391186554545 -6.994717922695301, 20.3179091865606 -6.971390922673578, 20.31750018656021 -6.951108922654683, 20.331527186573283 -6.914726922620801, 20.62974518685101 -6.913881922620021, 20.615973186838204 -6.972781922674869, 20.587773186811944 -7.03083592272894, 20.546182186773194 -7.115417922807708, 20.53347318676137 -7.180554922868382, 20.53090018675897 -7.249654922932734, 20.548718186775574 -7.283617922964368, 21.208045187389615 -7.283054922963842, 21.603054187757493 -7.282217922963056, 21.77785418792027 -7.281254922962162, 21.812773187952814 -7.311945922990745, 21.84000018797815 -7.367781923042742, 21.85971818799652 -7.476945923144413, 21.8511091879885 -7.591663923251247, 21.833054187971698 -7.635554923292133, 21.825973187965104 -7.645417923301309, 21.81694518795669 -7.654445923309723, 21.77374518791646 -7.77347292342057, 21.76333618790676 -7.835554923478398, 21.749027187893432 -7.935690923571656, 21.755063187899054 -8.003754923635043, 21.773327187916067 -8.0234729236534, 21.803891187944544 -8.05347292368134, 21.83610918797453 -8.13167292375418, 21.858891187995766 -8.200135923817939, 21.879027188014504 -8.28360892389567, 21.909254188042667 -8.332135923940868, 21.903609188037393 -8.343545923951496, 21.91385418804694 -8.389899923994662, 21.936527188068055 -8.420972924023602, 21.94000018807128 -8.496108924093576, 21.935000188066624 -8.546390924140411, 21.924445188056808 -8.584163924175584, 21.89027318802499 -8.73222692431348, 21.875827188011527 -8.80110892437763, 21.852773187990067 -8.933890924501299, 21.835282187973775 -9.071108924629087, 21.841391187979468 -9.154163924706438, 21.825273187964456 -9.302226924844334, 21.807218187947626 -9.346390924885469, 21.791527187933013 -9.411390924946005, 21.85027318798774 -9.620281925140546, 21.859445187996272 -9.64236392516112, 21.87471818801049 -9.664999925182201, 22.023191188148758 -9.849717925354227, 22.061245188184216 -9.882845925385084, 22.132082188250195 -9.90194592540287, 22.158327188274626 -9.924308925423702, 22.175418188290536 -9.96249992545927, 22.200836188314213 -10.083335925571802, 22.207218188320155 -10.15416392563776, 22.22819118833968 -10.202217925682518, 22.26889118837761 -10.27778192575289, 22.313818188419447 -10.37499992584344, 22.30444518841071 -10.422781925887932, 22.272500188380945 -10.513054925972014, 22.303336188409673 -10.583054926037207, 22.308054188414076 -10.612781926064883, 22.30610918841225 -10.675281926123091, 22.315136188420666 -10.727499926171731, 22.252218188362065 -10.789999926229939, 22.208882188321695 -10.809163926247777, 22.19013618830425 -10.825699926263184, 22.166454188282188 -10.85992692629506, 22.194445188308265 -10.967226926394986, 22.217500188329723 -11.018890926443106, 22.244027188354437 -11.068335926489155, 22.258891188368295 -11.183754926596649, 22.25389118836364 -11.209726926620831, 22.298882188405514 -11.237217926646437, 22.48076318857491 -11.130626926547166, 22.49992718859278 -11.093781926512847, 22.504582188597112 -11.06472692648579, 22.518609188610156 -11.044163926466638, 22.567500188655686 -11.033608926456807, 22.598191188684268 -11.041254926463935, 22.623473188707834 -11.061108926482419, 22.646663188729434 -11.072781926493292, 22.666109188747527 -11.081108926501045, 22.716663188794627 -11.093335926512438, 22.775073188849007 -11.091454926510693, 22.8069451888787 -11.074717926495097, 22.83624518890599 -11.055972926477637, 22.856945188925266 -11.049445926471563, 22.906800188971687 -11.064926926485981, 22.94124518900378 -11.093054926512181, 23.016945189074278 -11.096108926515015, 23.088054189140507 -11.096390926515284, 23.217009189260608 -11.076599926496854, 23.241945189283825 -11.061663926482936, 23.293891189332214 -11.026945926450608, 23.368054189401278 -10.982781926409473, 23.397500189428683 -10.970281926397831, 23.421945189451463 -10.963190926391235, 23.45610918948327 -10.959163926387475, 23.47639118950218 -10.95833592638671, 23.49666318952106 -10.958890926387227, 23.52000018954277 -10.96222692639033, 23.54305418956426 -10.966945926394729, 23.58582718960409 -10.97999992640689, 23.610273189626866 -10.990281926416458, 23.665136189677952 -11.010835926435604, 23.85860918985813 -11.027154926450805, 23.88610918988374 -11.014717926439218, 23.954027189947 -10.933754926363818, 23.98620918997696 -10.870463926304879, 23.988054189978698 -10.91999992635101, 24.007782189997073 -11.122735926539818, 24.027000190014974 -11.249999926658347, 24.084445190068465 -11.402781926800628, 24.056245190042205 -11.42639092682262, 24.03194519001957 -11.45249992684694, 23.96736318995943 -11.662154927042195, 23.989718189980238 -11.696945927074594, 23.998473189988403 -11.715690927092055, 24.012354190001332 -11.82416392719307, 23.984163189975078 -11.882226927247146, 23.984791189975653 -12.211808927554102, 24.003891189993453 -12.2293089275704, 24.031109190018782 -12.25763592759678, 24.0391631900263 -12.277081927614887, 24.042773190029664 -12.297499927633908, 24.050691190037014 -12.392426927722312, 23.985273189976112 -12.491945927814996, 23.97138218996315 -12.512499927834142, 23.887009189884594 -12.763608928067995, 23.891945189889185 -12.82541792812556, 23.91194518990781 -12.852363928150666, 23.946391189939902 -12.880281928176657, 23.961663189954123 -12.896390928191664, 23.994582189984783 -12.933472928226195, 24.00624518999564 -12.953054928244441, 24.01944519000793 -12.999445928287642, 23.880000189878047 -13.006945928294627, 23.584718189603052 -13.00639092829411, 23.4230541894525 -13.005554928293336, 23.28250018932158 -13.005281928293073, 22.99582718905461 -13.00471792829255, 22.50000018859282 -13.004990928292798, 22.00152718812859 -13.004581928292424, 21.996391188123823 -13.315554928582046, 21.996663188124074 -13.45278192870984, 21.998254188125543 -13.697781928938014, 21.99777318812511 -13.72721792896543, 21.99860918812587 -13.916108929141345, 21.999445188126657 -13.967499929189216, 21.999445188126657 -14.0066729292257, 21.999718188126906 -14.452499929640908, 21.999163188126403 -14.744163929912531, 21.999163188126403 -14.847226930008517, 21.999163188126403 -14.898608930056369, 21.999163188126403 -14.94999993010424, 22.00000018812716 -15.451108930570925, 22.00000018812716 -15.605554930714774, 21.999163188126403 -15.99999993108213, 21.999718188126906 -16.12278193119647, 22.000145188127306 -16.171663931241994, 22.014445188140627 -16.18333593125287, 22.06721818818977 -16.23409993130015, 22.11194518823143 -16.32249993138248, 22.123891188242567 -16.34875493140693, 22.131527188249663 -16.382081931437966, 22.135063188252957 -16.48589993153466, 22.188327188302566 -16.541117931586086, 22.21777318833 -16.56167293160523, 22.293327188400355 -16.6122269316523, 22.493891188587156 -16.78089093180938, 22.73055418880756 -17.041390932051996, 22.762500188837294 -17.069999932078645, 23.06500018911902 -17.331945932322597, 23.201663189246318 -17.479726932460224, 23.45444518948173 -17.61583593258699, 23.476109189501898 -17.625835932596303)), ((13.091391179830396 -4.633054920495837, 13.092636179831544 -4.646108920507984, 13.077636179817574 -4.669863920530119, 13.042218179784584 -4.668472920528814, 12.856663179611786 -4.71513592057228, 12.820554179578153 -4.737499920593109, 12.712218179477247 -4.878054920724011, 12.709509179474736 -4.907426920751362, 12.60694517937921 -4.99805492083577, 12.572218179346862 -5.021808920857893, 12.53221817930961 -5.115835920945457, 12.535273179312469 -5.273608921092389, 12.52666317930445 -5.724163921512002, 12.485000179265626 -5.725281921513044, 12.367218179155941 -5.730554921517964, 12.274582179069682 -5.736663921523643, 12.22986317902803 -5.755072921540787, 12.21455417901376 -5.768554921553346, 12.176109178977953 -5.7141639215026885, 12.154791178958106 -5.677426921468481, 12.152773178956238 -5.61458192140995, 12.162082178964909 -5.58139092137904, 12.18263617898404 -5.538472921339064, 12.225418179023876 -5.528817921330074, 12.232636179030607 -5.501526921304659, 12.228609179026847 -5.476945921281768, 12.176109178977953 -5.323335921138707, 12.163891178966594 -5.293890921111284, 12.13055417893554 -5.228335921050231, 12.083609178891805 -5.146390920973914, 12.06639117887579 -5.122499920951668, 12.045273178856121 -5.088890920920363, 12.018473178831158 -5.0398639208747085, 12.026127178838266 -5.014999920851551, 12.166391178968922 -4.895835920740566, 12.179163178980815 -4.8547269207022765, 12.186391178987549 -4.8272179206766594, 12.215063179014237 -4.759926920613992, 12.266109179061772 -4.787499920639675, 12.295000179088674 -4.789445920641484, 12.33145417912263 -4.787081920639281, 12.381245179169014 -4.7123639205697, 12.395627179182412 -4.665072920525645, 12.388473179175747 -4.6340999204968085, 12.400836179187252 -4.609445920473846, 12.462773179244948 -4.592226920457804, 12.644300179413989 -4.557154920425148, 12.661245179429784 -4.528890920398823, 12.691527179457978 -4.479581920352899, 12.742218179505187 -4.419163920296626, 12.765273179526673 -4.393890920273094, 12.77904517953948 -4.388990920268526, 12.86971817962393 -4.3995819202783935, 12.89708217964943 -4.41736392029496, 12.901245179653301 -4.437081920313318, 12.904300179656133 -4.457781920332593, 12.913891179665086 -4.475835920349411, 13.018745179762732 -4.585135920451208, 13.038054179780715 -4.604445920469189, 13.05513617979662 -4.618608920482373, 13.077773179817711 -4.6297089204927175, 13.091391179830396 -4.633054920495837))) +COG Congo MULTIPOLYGON (((15.89050018243725 -3.9430089198531704, 15.880282182427749 -3.951108919860715, 15.862218182410913 -3.960554919869523, 15.835827182386339 -3.9718089198800044, 15.768054182323226 -3.9861089198933115, 15.69194518225234 -3.995554919902119, 15.584445182152223 -4.031945919936007, 15.564445182133596 -4.039163919942723, 15.535273182106437 -4.0581909199604524, 15.520691182092833 -4.078190919979079, 15.51610918208857 -4.096390919996026, 15.485836182060382 -4.140135920036769, 15.483118182057865 -4.153290920049017, 15.488054182062456 -4.177363920071443, 15.485836182060382 -4.217635920108947, 15.46805418204383 -4.251808920140775, 15.451391182028317 -4.272917920160424, 15.41583618199519 -4.295690920181642, 15.391245181972295 -4.290417920176722, 15.351391181935185 -4.281663920168569, 15.332618181917695 -4.278317920165463, 15.328054181913444 -4.277217920164432, 15.28430018187268 -4.295835920181773, 15.273054181862221 -4.306663920191852, 15.218054181810999 -4.33402692021734, 15.19639118179083 -4.353890920235841, 15.149436181747092 -4.423563920300722, 15.13360918173234 -4.450135920325479, 15.09250018169405 -4.502081920373854, 15.072500181675423 -4.519999920390546, 15.015418181622266 -4.559308920427156, 14.926663181539624 -4.649863920511493, 14.910827181524866 -4.669445920529725, 14.893054181508319 -4.699999920558184, 14.875273181491764 -4.737781920593363, 14.832009181451468 -4.819026920669032, 14.706109181334199 -4.89263592073759, 14.669300181299917 -4.907217920751165, 14.638745181271474 -4.907154920751111, 14.58624518122258 -4.884926920730408, 14.562773181200726 -4.8618089207088815, 14.488263181131316 -4.840899920689409, 14.418891181066726 -4.887217920732539, 14.414463181062587 -4.8739639207202, 14.411663181059993 -4.8272179206766594, 14.418891181066726 -4.7563909206106985, 14.383609181033847 -4.624999920488335, 14.36732718101868 -4.555099920423231, 14.39347318104305 -4.524581920394809, 14.417218181065152 -4.513890920384853, 14.446391181092338 -4.4883359203610524, 14.476663181120529 -4.456390920331302, 14.487082181130233 -4.4293089203060845, 14.405836181054553 -4.282781920169612, 14.372218181023243 -4.283335920170131, 14.301391180957296 -4.308335920193414, 14.008336180684353 -4.453335920328456, 13.96034518063965 -4.494863920367138, 13.905473180588558 -4.4894359203620695, 13.850136180537021 -4.439163920315252, 13.815273180504562 -4.421945920299223, 13.78305418047455 -4.423890920301034, 13.7302731804254 -4.4483359203237995, 13.729027180424225 -4.476663920350177, 13.73958218043407 -4.51055492038175, 13.741109180435473 -4.536108920405539, 13.739445180433933 -4.562217920429859, 13.699582180396817 -4.725835920582242, 13.600345180304373 -4.78166392063423, 13.579027180284527 -4.779090920631845, 13.543473180251425 -4.753090920607619, 13.503536180214212 -4.7752089206282164, 13.514791180224705 -4.7931909206449745, 13.412082180129062 -4.882781920728405, 13.19305417992507 -4.6819459205413665, 13.183191179915866 -4.657635920518729, 13.175691179908881 -4.630972920493889, 13.141945179877467 -4.585690920451725, 13.119445179856513 -4.5736089204404635, 13.095209179833944 -4.579026920445514, 13.08778217982703 -4.619445920483159, 13.091391179830396 -4.633054920495837, 13.077773179817711 -4.6297089204927175, 13.05513617979662 -4.618608920482373, 13.038054179780715 -4.604445920469189, 13.018745179762732 -4.585135920451208, 12.913891179665086 -4.475835920349411, 12.904300179656133 -4.457781920332593, 12.901245179653301 -4.437081920313318, 12.89708217964943 -4.41736392029496, 12.86971817962393 -4.3995819202783935, 12.77904517953948 -4.388990920268526, 12.765273179526673 -4.393890920273094, 12.742218179505187 -4.419163920296626, 12.691527179457978 -4.479581920352899, 12.661245179429784 -4.528890920398823, 12.644300179413989 -4.557154920425148, 12.462773179244948 -4.592226920457804, 12.400836179187252 -4.609445920473846, 12.388473179175747 -4.6340999204968085, 12.395627179182412 -4.665072920525645, 12.381245179169014 -4.7123639205697, 12.33145417912263 -4.787081920639281, 12.295000179088674 -4.789445920641484, 12.266109179061772 -4.787499920639675, 12.215063179014237 -4.759926920613992, 12.186391178987549 -4.8272179206766594, 12.179163178980815 -4.8547269207022765, 12.166391178968922 -4.895835920740566, 12.026127178838266 -5.014999920851551, 12.0010361788149 -5.0149269208514795, 11.932782178751353 -4.924717920767463, 11.82610917865199 -4.804163920655185, 11.806600178633829 -4.777217920630093, 11.7850001786137 -4.686108920545237, 11.783891178612691 -4.628608920491686, 11.798191178625984 -4.604581920469315, 11.793336178621473 -4.571808920438798, 11.77416317860363 -4.542635920411627, 11.752782178583715 -4.5161089203869125, 11.735836178567922 -4.498608920370614, 11.707218178541268 -4.47166392034552, 11.638473178477255 -4.409308920287458, 11.558609178402861 -4.347499920229893, 11.380418178236908 -4.1901359200833355, 11.364027178221647 -4.161945920057079, 11.356945178215057 -4.114163920012572, 11.343191178202233 -4.092917919992786, 11.313609178174687 -4.067081919968729, 11.216945178084671 -3.991108919897968, 11.160000178031623 -3.94583591985581, 11.140663178013625 -3.9252819198366637, 11.141945178014822 -3.9186089198304472, 11.167773178038885 -3.8413909197585383, 11.22687317809391 -3.693335919620651, 11.302218178164082 -3.6333359195647716, 11.492082178340922 -3.509026919448999, 11.526663178373127 -3.506663919446794, 11.556109178400533 -3.5148639194544415, 11.583745178426284 -3.5349999194731936, 11.628336178467805 -3.598608919532424, 11.653745178491477 -3.638190919569297, 11.74000017857179 -3.686663919614432, 11.838927178663937 -3.706717919633107, 11.876109178698556 -3.7059729196324156, 11.899163178720045 -3.6794459196077156, 11.912082178732078 -3.660835919590383, 11.92187317874118 -3.627499919559341, 11.876391178698839 -3.5999999195337296, 11.857082178680855 -3.591945919526225, 11.840136178665063 -3.5681909195041044, 11.903054178723664 -3.4077819193547043, 11.91277317873272 -3.389999919338152, 11.931663178750313 -3.371108919320548, 11.966245178782515 -3.347635919298696, 11.97360917878936 -3.32618191927871, 11.962291178778827 -3.297426919251933, 11.801109178628707 -3.214717919174902, 11.782500178611372 -3.2058359191666312, 11.763336178593534 -3.1977819191591266, 11.706391178540514 -3.1777819191405, 11.70069117853518 -3.0919459190605636, 11.715273178548784 -3.055554919026676, 11.734300178566485 -3.0434729190154144, 11.76610917859611 -3.045490919017297, 11.804863178632218 -3.015417918989286, 11.790836178619145 -2.992499918967951, 11.647191178485372 -2.823372918810435, 11.583054178425641 -2.8447179188303124, 11.560309178404452 -2.862326918846719, 11.542773178388131 -2.831663918818151, 11.544291178389528 -2.8165639188040927, 11.54610917839122 -2.793890918782978, 11.572773178416071 -2.761945918753227, 11.590000178432092 -2.7433359187358946, 11.60750017844839 -2.7223639187163684, 11.632500178471673 -2.6674999186652713, 11.646318178484563 -2.614654918616054, 11.62971817846909 -2.550281918556095, 11.601663178442976 -2.4516639184642486, 11.57347317841672 -2.336390918356898, 11.61152717845215 -2.3322179183530096, 11.659163178496527 -2.353890918373196, 11.68250017851824 -2.3791639183967277, 11.733327178565588 -2.418890918433732, 11.763336178593534 -2.4024999184184708, 11.80166317862924 -2.3722179183902625, 11.952218178769442 -2.3324269183532067, 11.976245178791828 -2.341108918361286, 11.99971817881368 -2.366108918384569, 12.018327178831015 -2.388054918405018, 12.034718178846276 -2.406663918422339, 12.052500178862829 -2.416945918431921, 12.478054179259175 -2.327217918348353, 12.495554179275473 -2.2237549182519984, 12.50221817928167 -2.133890918168305, 12.473054179254518 -2.074445918112943, 12.448054179231235 -2.0244459180663767, 12.436945179220885 -1.901108917951504, 12.446182179229481 -1.8816639179333947, 12.453800179236566 -1.8780549179300436, 12.463609179245708 -1.9005549179509984, 12.501109179280633 -1.921390917970399, 12.524509179302441 -1.890590917941708, 12.588473179362012 -1.8254909178810834, 12.652500179421622 -1.8234729178792008, 12.72479117948896 -1.859026917912317, 12.742654179505593 -1.88372691793532, 12.793336179552796 -1.8997179179502126, 12.820000179577619 -1.9106909179604372, 12.845273179601179 -1.9544459180011842, 12.848473179604156 -1.97889091802395, 12.900836179652913 -2.1427819181765813, 12.931800179681744 -2.1900999182206533, 12.960209179708215 -2.183335918214354, 13.000973179746182 -2.231945918259626, 13.016663179760798 -2.270281918295325, 13.012500179756898 -2.3155549183374973, 13.001509179746677 -2.3676729183860346, 13.031245179774373 -2.3330549183537954, 13.203054179934384 -2.360554918379407, 13.251663179979658 -2.370835918388977, 13.330000180052593 -2.4024999184184708, 13.390554180109007 -2.4287549184429196, 13.484654180196628 -2.434654918448416, 13.504927180215532 -2.3995179184156825, 13.560000180266798 -2.3497179183693078, 13.590273180295014 -2.3258359183470674, 13.692500180390198 -2.2202819182487588, 13.72721818042254 -2.18416391821512, 13.726945180422291 -2.15416391818718, 13.764445180457216 -2.0907639181281326, 13.809445180499125 -2.1444459181781355, 13.878891180563812 -2.3147179183367115, 13.864445180550348 -2.4230549184376144, 13.870554180556042 -2.470899918482175, 13.916391180598737 -2.490135918500087, 14.08221818075316 -2.496108918505641, 14.110836180779813 -2.493054918502807, 14.118609180787047 -2.465281918476933, 14.153891180819926 -2.395554918412003, 14.181109180845255 -2.3716639183897428, 14.199163180862087 -2.3595819183784954, 14.22139118088279 -2.2927819183162796, 14.253609180912775 -2.12639091816132, 14.268536180926674 -2.0364549180775526, 14.253818180912987 -2.0184729180608088, 14.258891180917715 -1.9736819180190963, 14.320000180974603 -1.9373639179852802, 14.357773181009804 -1.9286089179771153, 14.37135418102244 -1.9286179179771352, 14.381663181032053 -1.9252819179740186, 14.415973181064004 -1.9052819179553921, 14.428054181075254 -1.8845819179361172, 14.41430018106243 -1.855281917908826, 14.404445181053262 -1.5977819176690105, 14.438054181084567 -1.5688909176421078, 14.46471818110939 -1.5505549176250355, 14.476945181120783 -1.433335917515862, 14.482500181125943 -1.2599999173544347, 14.48194518112544 -1.2127819173104513, 14.454445181099828 -1.127217917230766, 14.426391181073711 -1.046945917156009, 14.420273181068012 -0.9952819171078886, 14.428745181075897 -0.9269459170442502, 14.472918181117024 -0.7359729168663875, 14.495000181137584 -0.7008359168336682, 14.505973181147823 -0.6762549168107768, 14.519582181160501 -0.6133359167521775, 14.48360918112698 -0.5480549166913846, 14.456663181101902 -0.5186089166639505, 14.413336181061538 -0.476808916625032, 14.322773180977208 -0.4369459165879022, 14.235282180895723 -0.4386089165894447, 14.192500180855859 -0.4447179165951383, 14.177082180841523 -0.4219459165739323, 14.166109180831285 -0.3741639165294259, 14.151663180817849 -0.3327819164908874, 14.131945180799477 -0.2815269164431555, 14.070136180741912 -0.2518089164154844, 13.97847318065655 -0.237635916402283, 13.937500180618372 -0.2366639164013691, 13.905209180588315 -0.2649999164277688, 13.849027180535984 -0.2026359163696867, 13.850973180537807 -0.1751359163440753, 13.862082180548157 -0.1452819163162644, 13.90005418058351 -0.096435916270778, 13.940282180620983 -0.0380549162164101, 13.949100180629188 0.0308360838477597, 13.91139118059408 0.1122180839235512, 13.88582718057026 0.190000083995983, 13.887782180572088 0.2187450840227569, 13.96041818063972 0.3486090841437033, 14.07389118074542 0.5227820843059163, 14.099163180768954 0.5438910843255798, 14.14097318080789 0.5512450843324217, 14.172218180836978 0.5458360843273908, 14.199445180862341 0.5358360843180776, 14.269300180927388 0.5456910843272453, 14.346800180999566 0.6215270843978828, 14.473609181117666 0.8308360845928178, 14.485691181128914 0.9172180846732658, 14.461945181106813 0.9326360846876156, 14.425554181072926 0.9605540847136211, 14.320554180975137 1.1061090848491801, 14.29333618094978 1.1952820849322308, 14.293127180949597 1.2549270849877843, 14.271109180929074 1.3300000850576907, 14.236109180896477 1.363336085088747, 14.191527180854962 1.3905540851140898, 14.150273180816555 1.3956910851188695, 14.116109180784719 1.390691085114213, 14.098336180768172 1.381527085105688, 14.076945180748254 1.37555408510012, 13.977500180655625 1.4163910851381587, 13.897773180581396 1.4400000851601362, 13.804445180494469 1.4356270851560708, 13.784445180475842 1.3940270851173295, 13.573054180278973 1.305836085035196, 13.469163180182221 1.2905540850209576, 13.36500018008519 1.2719450850036225, 13.305273180029587 1.2344450849686979, 13.264718179991803 1.2241640849591278, 13.205000179936178 1.2216640849567995, 13.18678217991922 1.2224730849575565, 13.170554179904116 1.247364084980731, 13.183645179916311 1.283818085014687, 13.216873179947243 1.29471808502484, 13.249100179977262 1.3297180850574364, 13.24639117997475 1.3955540851187465, 13.235836179964906 1.4272180851482403, 13.22471817995455 1.4483360851679095, 13.190282179922491 1.5105540852258486, 13.158745179893117 1.5383360852517285, 13.135136179871125 1.5777090852883902, 13.143191179878613 1.706873085408688, 13.171663179905153 1.7644450854622988, 13.192636179924676 1.808054085502917, 13.191391179923528 1.8411090855337022, 13.182154179914903 1.8722910855627504, 13.184163179916794 1.9291640856157102, 13.206945179938003 1.9777820856609907, 13.270282179996997 2.03700908571615, 13.289718180015086 2.072364085749072, 13.293891180018989 2.1636090858340538, 13.306073180030324 2.164100085834505, 13.661818180361621 2.160518085831171, 13.750554180444283 2.1605540858312082, 14.118609180787047 2.15805408582888, 14.298336180954436 2.152218085823449, 14.46305418110785 2.14305408581491, 14.562636181200588 2.168473085838585, 14.714163181341718 2.124164085797318, 14.759163181383627 2.0725000857491978, 14.856663181474431 2.0827820857587795, 14.887218181502874 2.016664085697201, 15.029163181635084 1.986945085669518, 15.093263181694766 1.9804820856635104, 15.123054181722523 2.012218085693064, 15.148891181746592 2.038745085717764, 15.211109181804517 2.03610908571531, 15.239163181830662 2.029718085709362, 15.294718181882388 1.976664085659948, 15.448327182025452 1.9688910856527144, 15.491527182065681 1.9747180856581394, 15.519163182091432 1.961109085645461, 15.646109182209642 1.9313910856177898, 15.687500182248186 1.933545085619798, 15.757427182313336 1.9086090855965665, 15.880554182428 1.8202820855143074, 15.978336182519058 1.7711090854685096, 16.026109182563545 1.7305540854307395, 16.030000182567164 1.7100000854115933, 16.045136182581274 1.6743090853783542, 16.07221818260649 1.6541640853595965, 16.1610361826892 1.7247180854253088, 16.142773182672215 1.7991640854946382, 16.12916318265954 1.8450000855373219, 16.095273182627977 1.9501360856352363, 16.083882182617344 2.044718085723332, 16.083473182616984 2.1525000858237036, 16.112118182643655 2.2002090858681385, 16.158127182686513 2.186391085855277, 16.203536182728783 2.2135450858805683, 16.20700018273203 2.2212640858877535, 16.27083618279147 2.355554086012816, 16.30582718282406 2.4300000860821456, 16.404163182915653 2.639718086277469, 16.441318182950255 2.720009086352249, 16.480273182986537 2.802218086428809, 16.501663183006457 2.849445086472784, 16.495554183000763 2.8843090865052545, 16.46950918297651 2.910973086530092, 16.466109182973327 2.949718086566179, 16.4827091829888 3.1550000867573544, 16.4925001829979 3.1811090867816745, 16.505000183009543 3.2025000868015923, 16.527773183030774 3.234164086831086, 16.558745183059614 3.3309730869212473, 16.568473183068676 3.4102820869951103, 16.573682183073515 3.4496540870317745, 16.586245183085225 3.4779180870581, 16.643054183138133 3.522782087099884, 16.66444518315805 3.535418087111651, 16.699163183190393 3.545282087120839, 16.876663183355703 3.565836087139985, 16.957427183430923 3.554864087129758, 17.10971818357274 3.567500087141525, 17.3488911837955 3.6131640871840602, 17.41596318385797 3.6805730872468416, 17.46360918390232 3.7111090872752754, 17.491109183927932 3.71007308727431, 17.52194518395666 3.6861090872519924, 17.563891183995736 3.6533360872214757, 17.615273184043588 3.6297180871994783, 17.642218184068668 3.6294450871992154, 17.681109184104884 3.6300000871997327, 17.76333618418147 3.62721808719715, 17.829373184242968 3.616045087186748, 17.840000184252858 3.58610908715886, 17.85805418426969 3.536664087112811, 17.909445184317548 3.5527820871278237, 18.043327184442234 3.565836087139985, 18.06582718446319 3.5669450871410078, 18.11097318450524 3.562218087136614, 18.147563184539308 3.5477090871230956, 18.1623631845531 3.5252820871022124, 18.169373184559618 3.490073087069419, 18.193609184582186 3.4825000870623626, 18.21471818460185 3.4879180870674134, 18.23513618462087 3.5012450870798233, 18.250554184635234 3.526527087103375, 18.26225418464611 3.564336087138585, 18.45194518482279 3.6162450871869254, 18.47971818484865 3.640836087209834, 18.530691184896114 3.6011820871729014, 18.568336184931184 3.538891087114891, 18.581391184943357 3.5011090870796977, 18.60076318496138 3.4815270870614654, 18.62495418498392 3.479445087059517, 18.632354184990817 3.45360908703546, 18.64360918500128 3.3184730869096057, 18.641800184999596 3.207500086806249, 18.615827184975416 3.138054086741576, 18.59805418495887 3.118609086723467, 18.579718184941783 3.1030540867089798, 18.559163184922653 3.089718086696564, 18.540845184905578 3.0762910866840514, 18.47000018483959 2.9158360865346253, 18.413327184786823 2.776109086404489, 18.382773184758378 2.701664086335157, 18.34278218472113 2.6127820862523805, 18.31721818469731 2.5775000862195157, 18.3005541846818 2.5637450862067084, 18.274582184657618 2.549027086193007, 18.237082184622693 2.521736086167593, 18.227363184613637 2.4905540861385447, 18.22721818461349 2.4577820861080255, 18.223745184610266 2.415973086069087, 18.206945184594616 2.3886090860436013, 18.16250018455321 2.3273640859865594, 18.126800184519965 2.301809085962759, 18.11055418450485 2.280554085942967, 18.09187318448744 2.222427085888839, 18.07500018447172 2.066945085744024, 18.07250018446939 2.0363910857155787, 18.06528218446269 1.8750000855652615, 18.073054184469925 1.756945085455314, 18.077773184474324 1.728891085429197, 18.078609184475084 1.6688910853733177, 18.075691184472362 1.5633360852750116, 18.07027318446734 1.5288910852429325, 17.9788821843822 1.245554084979048, 17.952500184357632 1.173891084912313, 17.93874518434484 1.1395820848803595, 17.925554184332555 1.115136084857582, 17.89889118430773 1.0802820848251287, 17.885000184294768 1.0530540847997685, 17.877354184287668 1.0298640847781684, 17.873609184284163 0.9923640847432438, 17.87555418428599 0.9705540847229344, 17.881591184291608 0.9332910846882356, 17.889300184298776 0.8993090846565792, 17.89930018430809 0.8630540846228172, 17.905827184314177 0.8288910845910067, 17.90761818431585 0.7963910845607387, 17.903745184312243 0.7423640845104131, 17.88958218429906 0.687500084459316, 17.89500018430408 0.6000000843778253, 17.922154184329372 0.557500084338244, 17.966527184370705 0.4750000842614099, 17.968327184372384 0.4530540842409749, 17.961109184365654 0.3997180841913064, 17.955973184360886 0.3698640841634955, 17.94582718435143 0.3427820841382783, 17.931109184337714 0.3233360841201716, 17.91250018432038 0.3011090840994655, 17.87305418428366 0.2575000840588473, 17.839718184252604 0.2188910840228999, 17.80194518421743 0.1436090839527822, 17.79652718421238 0.1194450839302732, 17.770273184187943 0.0183360838361182, 17.743054184162588 -0.0641639162407159, 17.726109184146793 -0.1147179162878018, 17.715691184137086 -0.1420819163132876, 17.710000184131786 -0.1741639163431614, 17.70916318413103 -0.204026916370978, 17.710000184131786 -0.2269459163923244, 17.71527318413672 -0.2594459164225924, 17.73666318415664 -0.3169459164761434, 17.742363184161945 -0.3391639164968296, 17.745827184165165 -0.3763909165315056, 17.741391184161046 -0.413335916565913, 17.736109184156106 -0.4497179165997949, 17.721945184142925 -0.5099999166559428, 17.71221818413386 -0.5447179166882705, 17.697500184120145 -0.5747179167162102, 17.681800184105526 -0.6037549167432559, 17.618609184046676 -0.6951359168283631, 17.558300183990525 -0.7638089168923159, 17.548891183981766 -0.7797179169071313, 17.397773183841025 -0.9411089170574343, 17.323054183771433 -1.0041639171161592, 17.298609183748653 -1.0206909171315601, 17.27124518372318 -1.0344459171443674, 17.24889118370237 -1.039445917149024, 17.212500183668453 -1.0447179171539318, 17.1591631836188 -1.0542359171627993, 17.12194518358413 -1.0683359171759292, 16.968054183440813 -1.1538909172556089, 16.946391183420644 -1.1736089172739668, 16.878609183357497 -1.2366639173326917, 16.861945183341987 -1.2544459173492584, 16.801527183285714 -1.324445917414451, 16.75055418323825 -1.4111089174951559, 16.738609183227112 -1.4336089175161106, 16.719718183209523 -1.469717917549744, 16.7111091832015 -1.488890917567602, 16.67805418317073 -1.5727819176457274, 16.671363183164488 -1.5913089176629853, 16.669445183162708 -1.5988909176700474, 16.65680018315092 -1.6399999177083373, 16.62750018312363 -1.6863909177515382, 16.603609183101383 -1.72444591778698, 16.544163183046038 -1.830281917885543, 16.53277318303543 -1.8533359179070175, 16.528436183031374 -1.8624639179155196, 16.513609183017564 -1.882499917934183, 16.462218182969707 -1.9374999179854058, 16.40750018291874 -1.9880549180324891, 16.367500182881486 -2.0238909180658595, 16.337500182853546 -2.0488909180891426, 16.269718182790427 -2.0908359181282066, 16.24389118276639 -2.11319091814903, 16.20694518273197 -2.158890918191588, 16.194027182719935 -2.1809729182121487, 16.187218182713593 -2.2141639182430595, 16.18389118271051 -2.2458359182725616, 16.18389118271051 -2.3069459183294754, 16.186109182712556 -2.3591639183781012, 16.18805418271438 -2.3945819184110917, 16.215691182740102 -2.5272179185346175, 16.214027182738562 -2.7020819186974734, 16.208054182733008 -2.7236089187175168, 16.202773182728095 -2.753054918744951, 16.18263618270933 -2.8787549188620147, 16.182218182708937 -2.911663918892657, 16.186109182712556 -2.9352819189146544, 16.187527182713893 -2.942017918920925, 16.195827182721615 -3.0005549189754532, 16.193336182719293 -3.0961089190644344, 16.188609182714885 -3.1333359190991104, 16.196945182722658 -3.2638909192206995, 16.218609182742824 -3.283472919238932, 16.227082182750735 -3.302499919256661, 16.226945182750597 -3.3283359192807183, 16.219163182743358 -3.3483359192993447, 16.187500182713848 -3.413890919360398, 16.128609182659005 -3.5216639194607637, 16.105827182637796 -3.5608359194972508, 16.08430018261774 -3.5877819195223424, 16.058336182593564 -3.6068089195400717, 15.97916318251984 -3.766390919688689, 15.924445182468872 -3.8849999197991565, 15.89050018243725 -3.9430089198531704))) +ZAR Congo, DRC POLYGON ((16.10007318263243 -5.859372921637927, 15.076391181679071 -5.862781921641101, 14.596391181232036 -5.908054921683274, 13.973336180651756 -5.836390921616527, 13.107918179845768 -5.8691639216470435, 12.89791817965019 -5.811945921593761, 12.758191179520054 -5.860972921639416, 12.714236179479116 -5.950763921723038, 12.659718179428353 -5.9793089217496345, 12.435836179219848 -6.016663921784414, 12.265000179060735 -5.864717921642907, 12.21455417901376 -5.768554921553346, 12.274582179069682 -5.736663921523643, 12.52666317930445 -5.724163921512002, 12.53221817930961 -5.115835920945457, 12.572218179346862 -5.021808920857893, 12.709509179474736 -4.907426920751362, 12.820554179578153 -4.737499920593109, 13.077636179817574 -4.669863920530119, 13.095209179833944 -4.579026920445514, 13.141945179877467 -4.585690920451725, 13.19305417992507 -4.6819459205413665, 13.412082180129062 -4.882781920728405, 13.543473180251425 -4.753090920607619, 13.600345180304373 -4.78166392063423, 13.699582180396817 -4.725835920582242, 13.739445180433933 -4.562217920429859, 13.7302731804254 -4.4483359203237995, 13.815273180504562 -4.421945920299223, 13.905473180588558 -4.4894359203620695, 13.96034518063965 -4.494863920367138, 14.301391180957296 -4.308335920193414, 14.405836181054553 -4.282781920169612, 14.487082181130233 -4.4293089203060845, 14.36732718101868 -4.555099920423231, 14.418891181066726 -4.7563909206106985, 14.418891181066726 -4.887217920732539, 14.488263181131316 -4.840899920689409, 14.669300181299917 -4.907217920751165, 14.832009181451468 -4.819026920669032, 14.910827181524866 -4.669445920529725, 15.09250018169405 -4.502081920373854, 15.218054181810999 -4.33402692021734, 15.328054181913444 -4.277217920164432, 15.41583618199519 -4.295690920181642, 15.451391182028317 -4.272917920160424, 15.535273182106437 -4.0581909199604524, 15.89050018243725 -3.9430089198531704, 16.226945182750597 -3.3283359192807183, 16.196945182722658 -3.2638909192206995, 16.182218182708937 -2.911663918892657, 16.214027182738562 -2.7020819186974734, 16.194027182719935 -2.1809729182121487, 16.528436183031374 -1.8624639179155196, 16.75055418323825 -1.4111089174951559, 16.861945183341987 -1.2544459173492584, 16.968054183440813 -1.1538909172556089, 17.12194518358413 -1.0683359171759292, 17.323054183771433 -1.0041639171161592, 17.548891183981766 -0.7797179169071313, 17.71221818413386 -0.5447179166882705, 17.745827184165165 -0.3763909165315056, 17.715691184137086 -0.1420819163132876, 17.80194518421743 0.1436090839527822, 17.961109184365654 0.3997180841913064, 17.966527184370705 0.4750000842614099, 17.89500018430408 0.6000000843778253, 17.90761818431585 0.7963910845607387, 17.873609184284163 0.9923640847432438, 18.07027318446734 1.5288910852429325, 18.09187318448744 2.222427085888839, 18.223745184610266 2.415973086069087, 18.237082184622693 2.521736086167593, 18.34278218472113 2.6127820862523805, 18.540845184905578 3.0762910866840514, 18.615827184975416 3.138054086741576, 18.641800184999596 3.207500086806249, 18.590691184951993 3.7258360872889966, 18.647082185004535 4.027500087569933, 18.544445184908938 4.340000087860972, 18.751663185101933 4.390554087908058, 18.839445185183678 4.577782088082429, 18.987918185321945 4.7405540882340205, 19.08541818541275 4.914718088396228, 19.185409185505875 4.944236088423722, 19.415900185720545 5.131036088597682, 19.649300185937904 5.142782088608627, 19.841391186116823 5.084509088554356, 19.901391186172702 4.995136088471114, 20.002082186266477 4.9772180884544355, 20.339300186580516 4.767500088259112, 20.457982186691055 4.619309088121099, 20.45278218668622 4.522382088030838, 20.571945186797194 4.417500087933149, 20.835554187042703 4.448891087962394, 20.96986318716779 4.432500087947119, 21.208609187390124 4.288891087813383, 21.548263187706453 4.246245087773659, 21.655136187805994 4.299164087822945, 21.73666318788193 4.295691087819705, 21.986945188115016 4.246391087773802, 22.21319118832571 4.148609087682729, 22.346663188450037 4.127500087663066, 22.453600188549615 4.144582087678984, 22.538263188628463 4.219236087748513, 22.599300188685305 4.474309087986057, 22.683682188763896 4.479864087991231, 22.780282188853874 4.712427088207832, 22.847573188916527 4.723127088217794, 22.893327188959148 4.820136088308132, 22.970691189031186 4.831182088318428, 23.016800189074132 4.749582088242434, 23.21193618925588 4.6819450881794324, 23.325900189362017 4.600073088103187, 23.424509189453858 4.593745088097293, 23.43971818946801 4.650482088150142, 23.579718189598395 4.73236408822639, 24.367500190332066 5.008891088483935, 24.3979181903604 5.0352820885085094, 24.35735419032264 5.057009088528744, 24.38729119035051 5.112154088580098, 24.525554190479284 5.077218088547568, 24.734445190673824 4.910836088392614, 24.950827190875344 4.985836088462463, 25.089718191004692 4.97360908845107, 25.29000019119121 5.025000088498928, 25.343609191241143 5.111664088579644, 25.31221819121191 5.1961090886582895, 25.36194519125823 5.314718088768757, 25.540136191424182 5.38069108883019, 25.63555419151305 5.305273088759961, 25.91139119176995 5.178609088641991, 26.06555419191352 5.197500088659581, 26.127500191971194 5.249164088707701, 26.197500192036387 5.232782088692446, 26.520836192337526 5.041945088514709, 26.71555419251888 5.092500088561792, 26.869445192662198 5.030973088504496, 26.941527192729325 5.143609088609395, 27.09027319286787 5.203473088665149, 27.42458219317922 5.069718088540583, 27.52443619327221 4.9436090884231305, 27.660209193398657 4.896182088378964, 27.768891193499883 4.787773088278001, 27.789445193519015 4.600136088103241, 28.02805419374124 4.502218088012057, 28.201109193902397 4.347845087868279, 28.363054194053234 4.290000087814406, 28.652500194322783 4.425418087940528, 28.712500194378663 4.537500088044908, 28.782500194443855 4.557364088063409, 28.827427194485722 4.482709087993882, 29.01145419465709 4.496982088007172, 29.210273194842273 4.34208208786292, 29.2436091948733 4.346109087866665, 29.325000194949098 4.390000087907538, 29.432782195049498 4.525554088033786, 29.46777319508209 4.663891088162629, 29.494236195106737 4.683536088180915, 29.643327195245575 4.643609088143734, 29.813536195404083 4.5590270880649655, 29.79916319539072 4.375345087893891, 29.959445195539985 4.291391087815711, 30.0618001956353 4.1313910876666995, 30.148054195715645 4.099582087637074, 30.207773195771267 3.9616640875086233, 30.551036196090934 3.863818087417499, 30.58166319611948 3.700136087265051, 30.562009196101172 3.613264087184149, 30.78639119631015 3.6600000872276723, 30.858818196377598 3.49339108707251, 30.92479119643903 3.5107640870886883, 30.934445196448024 3.4138910869984755, 30.828054196348944 3.2402820868367854, 30.7634731962888 3.051736086661194, 30.85235419637158 2.9628450865783975, 30.8794451963968 2.8859000865067372, 30.755973196281815 2.6011090862415074, 30.729718196257352 2.4480540860989635, 30.886245196403138 2.3368090859953554, 30.93971819645293 2.4002820860544745, 30.984863196494985 2.4093090860628763, 31.299200196787723 2.162854085833345, 31.302773196791065 2.121391085794741, 31.03666319654323 1.7655540854633358, 30.69548219622547 1.5000000852160156, 30.45610919600253 1.212782084948529, 30.27458219583349 1.1670820849059709, 30.234373195796024 1.1308360848722145, 30.217363195780194 0.9944450847451805, 30.15555419572263 0.9091000846656954, 30.015827195592493 0.8666640846261799, 29.95750019553816 0.8183360845811762, 29.93874519552071 0.6245820844007284, 29.95986319554038 0.4837450842695574, 29.85832719544581 0.3666640841605187, 29.806945195397958 0.1627820839706402, 29.78048219537331 0.1734730839805962, 29.71860919531568 0.0770820838908293, 29.733327195329394 -0.0031639161839081, 29.648609195250486 -0.4397179165904816, 29.66666319526732 -0.5805549167216526, 29.634718195237554 -0.6413909167783061, 29.61889119522283 -0.8915999170113338, 29.57513619518207 -0.9163909170344198, 29.59694519520238 -1.3858359174716242, 29.45639119507149 -1.5041639175818204, 29.362009194983585 -1.5108999175881053, 29.143473194780057 -1.8151359178714443, 29.124300194762185 -1.9160459179654197, 29.167500194802415 -2.0686089181075005, 29.156391194792093 -2.160835918193399, 29.0977731947375 -2.268545918293711, 28.893473194547227 -2.3663909183848375, 28.854445194510873 -2.5261089185335805, 28.90221819455536 -2.6599999186582863, 29.017118194662373 -2.724026918717911, 28.990691194637748 -2.8143089188019985, 29.237218194867353 -3.0602819190310697, 29.21291819484472 -3.153681919118057, 29.236963194867116 -3.2718639192281245, 29.208336194840456 -3.311663919265186, 29.246945194876417 -3.594445919528553, 29.23250019486295 -3.8849999197991565, 29.378327194998775 -4.133608920030682, 29.430273195047164 -4.501108920372943, 29.34777319497033 -4.763335920617166, 29.34790919497044 -4.9304179207727685, 29.631663195234722 -5.721945921509942, 29.608745195213373 -5.807217921589356, 29.497773195110028 -5.979726921750014, 29.55028219515893 -6.295281922043898, 29.73916319533484 -6.634581922359899, 30.064854195638162 -6.845763922556571, 30.188327195753146 -6.962499922665302, 30.315000195871107 -7.1437549228341055, 30.40944519595908 -7.364308923039516, 30.455827196002275 -7.580281923240648, 30.66889119620072 -7.9149999235523865, 30.77123619629603 -8.192245923810589, 28.901663194554857 -8.478608924077278, 28.9605541946097 -8.635554924223456, 28.92582719457735 -8.741945924322536, 28.705136194371818 -9.017081924578775, 28.397636194085436 -9.227499924774747, 28.37221819406176 -9.279172924822873, 28.518954194198415 -9.359026924897236, 28.53777319421596 -9.470835925001367, 28.6955541943629 -9.795763925303973, 28.625827194297955 -9.947781925445554, 28.595000194269232 -10.24610892572339, 28.633473194305083 -10.519235925977767, 28.69874519436587 -10.65187292610129, 28.553609194230688 -10.832781926269774, 28.46500019414816 -11.244581926653296, 28.36670019405662 -11.434363926830045, 28.365409194055417 -11.555554926942918, 28.500273194181034 -11.870554927236284, 28.835554194493284 -12.096945927447123, 28.935418194586276 -12.200554927543621, 29.027082194671664 -12.376945927707894, 29.261036194889527 -12.365417927697152, 29.481663195095024 -12.459445927784728, 29.52763619513783 -12.425281927752906, 29.446945195062682 -12.338754927672326, 29.473536195087433 -12.24909992758883, 29.56888219517623 -12.190835927534565, 29.80504519539619 -12.155245927501426, 29.801663195393047 -13.449726928706994, 29.726663195323198 -13.458054928714759, 29.63402719523691 -13.415554928675178, 29.621109195224875 -13.38222692864413, 29.68347319528297 -13.2668729285367, 29.5947181952003 -13.223472928496278, 29.19739119483026 -13.433817928692179, 29.098054194737756 -13.38916392865059, 29.018745194663893 -13.39847292865926, 28.957982194607297 -13.331108928596521, 28.920209194572124 -13.154235928431802, 28.742982194407062 -12.908681928203109, 28.673536194342375 -12.840626928139727, 28.57270919424849 -12.891808928187402, 28.497918194178823 -12.754999928059988, 28.53055419420923 -12.656808927968541, 28.44624519413071 -12.525835927846558, 28.346527194037833 -12.440417927767001, 28.163609193867472 -12.429445927756788, 27.860282193584993 -12.254717927594058, 27.79742719352646 -12.297781927634162, 27.655418193394183 -12.290281927627177, 27.535827193282813 -12.173335927518266, 27.453891193206516 -11.936945927298112, 27.231109192999014 -11.775835927148066, 27.20897319297842 -11.576490926962407, 27.03311819281464 -11.596945926981462, 26.98471819276955 -11.87722692724249, 26.87395419266639 -11.971735927330514, 26.678054192483955 -11.989172927346758, 26.436663192259147 -11.9104179272734, 26.004718191856853 -11.902499927266035, 25.842500191705767 -11.80222692717264, 25.49833619138525 -11.709999927086756, 25.36360919125977 -11.642990927024343, 25.291600191192714 -11.365626926766026, 25.345000191242434 -11.278054926684476, 25.34444519124193 -11.205281926616692, 25.320209191219362 -11.194445926606605, 25.18930019109743 -11.25236392666055, 24.73971819067873 -11.317081926720817, 24.58416319053387 -11.437781926833225, 24.449163190408143 -11.462635926856379, 24.37527319033933 -11.40472692680244, 24.365973190330664 -11.349863926751354, 24.410000190371647 -11.280072926686344, 24.398609190361043 -11.111808926529648, 24.318473190286426 -11.051317926473303, 24.185554190162634 -11.029581926453062, 24.131945190112702 -10.916663926347894, 23.994718189984894 -10.869163926303656, 23.85860918985813 -11.027154926450805, 23.47639118950218 -10.95833592638671, 23.368054189401278 -10.982781926409473, 23.217009189260608 -11.076599926496854, 23.088054189140507 -11.096390926515284, 22.94124518900378 -11.093054926512181, 22.856945188925266 -11.049445926471563, 22.716663188794627 -11.093335926512438, 22.567500188655686 -11.033608926456807, 22.518609188610156 -11.044163926466638, 22.48076318857491 -11.130626926547166, 22.298882188405514 -11.237217926646437, 22.25389118836364 -11.209726926620831, 22.244027188354437 -11.068335926489155, 22.166454188282188 -10.85992692629506, 22.315136188420666 -10.727499926171731, 22.272500188380945 -10.513054925972014, 22.313818188419447 -10.37499992584344, 22.207218188320155 -10.15416392563776, 22.158327188274626 -9.924308925423702, 22.023191188148758 -9.849717925354227, 21.87471818801049 -9.664999925182201, 21.791527187933013 -9.411390924946005, 21.94000018807128 -8.496108924093576, 21.83610918797453 -8.13167292375418, 21.755063187899054 -8.003754923635043, 21.77374518791646 -7.77347292342057, 21.8511091879885 -7.591663923251247, 21.85971818799652 -7.476945923144413, 21.84000018797815 -7.367781923042742, 21.77785418792027 -7.281254922962162, 20.548718186775574 -7.283617922964368, 20.546182186773194 -7.115417922807708, 20.62974518685101 -6.913881922620021, 20.331527186573283 -6.914726922620801, 20.311391186554545 -6.994717922695301, 19.538945185835132 -6.996608922697064, 19.49013618578968 -7.286945922967462, 19.530618185827393 -7.477499923144933, 19.46819118576923 -7.568954923230109, 19.375018185682478 -7.579254923239688, 19.40139118570704 -7.692472923345136, 19.349300185658507 -7.8931909235320745, 19.372773185680387 -7.993335923625338, 18.791763185139274 -7.998972923630589, 18.766118185115374 -7.937963923573776, 18.52694518489264 -7.937081923572947, 18.525554184891348 -7.989026923621324, 18.196109184584515 -7.996663923628432, 18.112573184506715 -8.028617923658203, 18.115418184509366 -8.107108923731303, 18.004863184406418 -8.107081923731272, 17.88971818429917 -8.042363923671004, 17.631109184058317 -8.09805492372287, 17.55527318398771 -8.0830549237089, 17.438327183878783 -7.8766639235166735, 17.309445183758754 -7.756108923404398, 17.151109183611283 -7.452781923121904, 17.06471818353083 -7.339163923016088, 16.994582183465525 -7.297363922977169, 16.943118183417596 -7.199026922885579, 16.93500018341001 -7.112499922805, 16.969791183442425 -7.017917922716904, 16.930000183405355 -6.892217922599841, 16.83416318331612 -6.792226922506714, 16.70805418319867 -6.467226922204034, 16.688473183180434 -6.404999922146089, 16.725227183214656 -6.1974459219527915, 16.60610918310371 -6.0272179217942465, 16.5961091830944 -5.921663921695938, 16.5141631830181 -5.8758359216532625, 16.36832718288227 -5.853054921632051, 16.10007318263243 -5.859372921637927)) +FJI Fiji MULTIPOLYGON (((177.47301833292272 -18.16278193309637, 177.33150033279094 -18.11763593305433, 177.29913633276078 -18.078608933017975, 177.25915433272354 -17.99833593294322, 177.24856333271367 -17.959581932907128, 177.25804533272253 -17.872081932825637, 177.28088133274377 -17.854172932808964, 177.37133633282804 -17.81249993277015, 177.43178133288433 -17.74986393271182, 177.42247233287566 -17.68700893265327, 177.38873633284425 -17.665281932633036, 177.38664533284225 -17.642081932611433, 177.51469133296155 -17.50667293248533, 177.62466333306395 -17.444717932427622, 177.8242003332498 -17.363754932352222, 177.83447233325933 -17.383890932370974, 177.89776333331827 -17.407772932393215, 177.95141833336828 -17.41020893239549, 178.1246633335296 -17.35777293234665, 178.17053633357233 -17.34249993233243, 178.18691833358758 -17.323335932314578, 178.1908003335912 -17.302499932295177, 178.21747233361606 -17.309999932302162, 178.2419003336388 -17.324717932315863, 178.27024533366517 -17.34639093233605, 178.2804543336747 -17.38721793237407, 178.30276333369545 -17.430281932414175, 178.37246333376038 -17.47499993245583, 178.59468133396734 -17.63944593260898, 178.60093633397315 -17.66429993263212, 178.5969093339694 -17.688054932654254, 178.59774533397018 -17.784172932743772, 178.62079133399163 -17.89389093284595, 178.6933003340592 -18.024999932968058, 178.6948363340606 -18.052081932993275, 178.6795633340464 -18.07625493301579, 178.6611003340292 -18.089717933028325, 178.58829133396137 -18.135272933070752, 178.55809133393325 -18.107217933044623, 178.53220033390915 -18.09222693303066, 178.4468813338297 -18.151417933085796, 178.39831833378446 -18.103890933041527, 178.3437093337336 -18.118054933054722, 178.27331833366804 -18.147499933082145, 178.24356333364034 -18.18860893312042, 178.22497233362304 -18.191526933123143, 178.1944273335946 -18.21778193314759, 178.1821913335832 -18.234163933162847, 178.1638633335661 -18.251245933178765, 178.01913633343133 -18.267781933194158, 177.96023633337649 -18.268335933194678, 177.86413633328698 -18.263890933190538, 177.61357233305364 -18.17736393310996, 177.5160813329628 -18.15305493308732, 177.47301833292272 -18.16278193309637)), ((178.7471913341094 -17.011945932024574, 178.71829133408244 -17.009445932022246, 178.69433633406015 -16.996945932010604, 178.68052733404727 -16.967499931983184, 178.67080933403827 -16.921663931940486, 178.62497233399557 -16.8355549318603, 178.5476093339235 -16.811390931837792, 178.52165433389933 -16.816254931842323, 178.49217233387185 -16.804445931831324, 178.47787233385856 -16.765763931795306, 178.52831833390553 -16.706663931740252, 178.59774533397018 -16.64278193168076, 178.6987183340642 -16.67402693170986, 178.74105433410364 -16.63159993167035, 178.77525433413552 -16.600417931641303, 178.8269093341836 -16.57471793161737, 178.8632813342175 -16.566663931609867, 178.89456333424664 -16.55083593159513, 178.9274003342772 -16.50923593155639, 178.98190033432797 -16.469717931519583, 179.2308543345598 -16.40221793145672, 179.2985813346229 -16.412781931466554, 179.33190933465391 -16.413054931466817, 179.40302733472015 -16.40603593146028, 179.39166333470956 -16.38194593143784, 179.4013633347186 -16.349163931407304, 179.46329133477627 -16.29222693135428, 179.5033273348136 -16.273890931337206, 179.67276333497136 -16.22833593129478, 179.77080933506272 -16.203608931271745, 179.8421913351292 -16.20749993127538, 179.87106333515607 -16.205835931273825, 179.91552733519745 -16.17916393124898, 179.96316333524186 -16.153472931225053, 180.00000033527613 -16.15472693122622, 180.00000033527613 -16.172745931243014, 179.9862093352633 -16.179581931249373, 179.95800933523702 -16.197499931266066, 179.89499133517836 -16.240972931306544, 179.85302733513925 -16.291108931353236, 179.80969133509893 -16.36083593141818, 179.74885433504227 -16.450063931501276, 179.6819183349799 -16.49139093153977, 179.65304533495305 -16.50166393154933, 179.59164533489582 -16.539717931584775, 179.48149133479325 -16.696945931731207, 179.49300933480396 -16.761672931791495, 179.54302733485054 -16.764863931794466, 179.56413633487023 -16.76083593179071, 179.61605433491854 -16.7205549317532, 179.6430363349437 -16.690835931725516, 179.71469133501046 -16.624999931664206, 179.7519183350451 -16.5913909316329, 179.81301833510202 -16.54055493158556, 179.85244533513873 -16.508890931556067, 179.938645335219 -16.46794593151793, 179.9490633352287 -16.513754931560598, 179.92538133520668 -16.534445931579867, 179.90109133518405 -16.577226931619705, 179.87439133515915 -16.63666393167506, 179.88093633516525 -16.668126931704364, 179.94620933522606 -16.745626931776542, 179.90011833518315 -16.770145931799377, 179.86126333514693 -16.765763931795306, 179.8447003351315 -16.743890931774928, 179.8105183350997 -16.734717931766383, 179.77887233507022 -16.727499931759667, 179.74633633503993 -16.72639093175863, 179.70996333500602 -16.729717931761726, 179.66275433496207 -16.73971793177104, 179.57162733487718 -16.80110893182821, 179.40942733472616 -16.810835931837275, 179.33190933465391 -16.802226931829253, 179.34440933466556 -16.765835931795365, 179.3538543346744 -16.744926931775893, 179.27046333459674 -16.691317931725962, 179.206363334537 -16.70527293173896, 179.1683093345016 -16.72416393175655, 179.04878133439024 -16.805345931832164, 179.01990933436338 -16.89492693191559, 179.03733633437957 -16.879372931901102, 179.07142733441134 -16.889308931910364, 179.0213633343647 -16.92625493194477, 178.95288133430097 -16.898335931918766, 178.9441183342928 -16.879163931900905, 178.90664533425786 -16.85499993187841, 178.8696913342235 -16.86083593188384, 178.8106723341685 -16.920072931939004, 178.8096913341676 -16.949717931966617, 178.7921913341513 -16.987217932001542, 178.75638133411792 -17.010417932023145, 178.7471913341094 -17.011945932024574)), ((178.09411833350117 -19.16278193402769, 178.08550933349312 -19.158335934023555, 178.03580933344688 -19.147917934013847, 178.01580933342825 -19.15944593402459, 178.00177233341515 -19.162635934027563, 177.95830033337467 -19.14194593400829, 177.95218133336897 -19.129581933996775, 177.96997233338556 -19.104172933973118, 178.0685723334774 -19.066108933937656, 178.1713543335731 -18.999999933876097, 178.17927233358046 -18.984926933862056, 178.30691833369934 -18.93555493381608, 178.34205433373205 -18.926945933808057, 178.37219133376016 -18.931663933812445, 178.4682913338496 -18.95639093383548, 178.49432733387385 -18.974790933852617, 178.49829133387755 -18.989999933866784, 178.49801833387733 -19.00944593388489, 178.48635433386647 -19.018890933893687, 178.46551833384706 -19.033890933907657, 178.4201183338048 -19.046254933919172, 178.37718133376478 -19.05222693392473, 178.33955433372972 -19.050690933923306, 178.328036333719 -19.027781933901963, 178.32711833371815 -19.006108933881777, 178.3052543336978 -18.99916393387531, 178.18997233359045 -19.047499933920335, 178.17137233357312 -19.072917933943998, 178.16982733357167 -19.09110893396094, 178.13610933354028 -19.13778193400441, 178.09411833350117 -19.16278193402769)), ((-180 -16.78736393181542, -179.93859999994282 -16.715863931748828, -179.9295359999344 -16.71011793174347, -179.89245499989985 -16.68739993172231, -179.86486399987413 -16.67989093171532, -179.8531179998632 -16.692781931727325, -179.8211089998334 -16.781090931809572, -179.9021909999089 -16.8755089318975, -179.93588199994028 -16.89969993192004, -179.98758199998844 -16.94696393196405, -179.99331799999376 -16.95527293197179, -180 -16.965726931981536, -180 -16.78736393181542)), ((179.34164533466299 -18.12249993305886, 179.33609133465785 -18.121108933057556, 179.2457913345737 -18.036390932978662, 179.24300933457113 -18.025281932968312, 179.23635433456496 -17.968326932915275, 179.2432813345714 -17.95110893289923, 179.26999133459628 -17.935835932885013, 179.29623633462074 -17.9395819328885, 179.3080183346317 -17.948335932896654, 179.35426333467478 -18.011526932955505, 179.36773633468732 -18.089717933028325, 179.35858133467877 -18.11360893305057, 179.35190033467256 -18.121108933057556, 179.34164533466299 -18.12249993305886)), ((180.00000033527613 -16.965726931981536, 179.98468133526188 -16.98305493199767, 179.95745433523655 -16.998608932012147, 179.94748133522722 -17.002781932016035, 179.92913633521016 -17.00610893201913, 179.91858133520032 -16.999163932012664, 179.8848453351689 -16.972081931987447, 179.88357233516774 -16.96166393197774, 179.89276333517626 -16.946108931963252, 179.90441833518713 -16.92971793194799, 179.93219133521302 -16.900835931921094, 179.94692733522675 -16.88694593190816, 179.9541273352334 -16.879999931901693, 179.95940933523832 -16.871108931893403, 179.96884533524712 -16.852499931876082, 180.00000033527613 -16.787390931815438, 180.00000033527613 -16.965726931981536)), ((178.77190933413237 -17.75444593271608, 178.74774533410988 -17.719717932683736, 178.7441093341065 -17.672499932639766, 178.74969133411173 -17.653472932622037, 178.75859133412 -17.64110893261052, 178.77804533413814 -17.62860893259888, 178.79192733415107 -17.621108932591895, 178.8134453341711 -17.62097293259177, 178.83136333418776 -17.62666393259707, 178.85025433420537 -17.65860893262682, 178.85302733420792 -17.66971793263717, 178.85357233420848 -17.688326932654505, 178.8533003342082 -17.704999932670034, 178.84970033420484 -17.715272932679596, 178.83773633419372 -17.731945932695126, 178.82025433417743 -17.742772932705208, 178.77190933413237 -17.75444593271608))) +GAB Gabon MULTIPOLYGON (((11.544291178389528 -2.8165639188040927, 11.542773178388131 -2.831663918818151, 11.560309178404452 -2.862326918846719, 11.583054178425641 -2.8447179188303124, 11.647191178485372 -2.823372918810435, 11.790836178619145 -2.992499918967951, 11.804863178632218 -3.015417918989286, 11.76610917859611 -3.045490919017297, 11.734300178566485 -3.0434729190154144, 11.715273178548784 -3.055554919026676, 11.70069117853518 -3.0919459190605636, 11.706391178540514 -3.1777819191405, 11.763336178593534 -3.1977819191591266, 11.782500178611372 -3.2058359191666312, 11.801109178628707 -3.214717919174902, 11.962291178778827 -3.297426919251933, 11.97360917878936 -3.32618191927871, 11.966245178782515 -3.347635919298696, 11.931663178750313 -3.371108919320548, 11.91277317873272 -3.389999919338152, 11.903054178723664 -3.4077819193547043, 11.840136178665063 -3.5681909195041044, 11.857082178680855 -3.591945919526225, 11.876391178698839 -3.5999999195337296, 11.92187317874118 -3.627499919559341, 11.912082178732078 -3.660835919590383, 11.899163178720045 -3.6794459196077156, 11.876109178698556 -3.7059729196324156, 11.838927178663937 -3.706717919633107, 11.74000017857179 -3.686663919614432, 11.653745178491477 -3.638190919569297, 11.628336178467805 -3.598608919532424, 11.583745178426284 -3.5349999194731936, 11.556109178400533 -3.5148639194544415, 11.526663178373127 -3.506663919446794, 11.492082178340922 -3.509026919448999, 11.302218178164082 -3.6333359195647716, 11.22687317809391 -3.693335919620651, 11.167773178038885 -3.8413909197585383, 11.141945178014822 -3.9186089198304472, 11.140663178013625 -3.9252819198366637, 11.045136177924661 -3.8519459197683688, 11.009300177891276 -3.8054179197250306, 10.985554177869176 -3.74402691966786, 10.986109177869679 -3.721254919646654, 10.97652717786076 -3.696526919623622, 10.960273177845636 -3.675281919603833, 10.926527177814194 -3.6399999195709825, 10.827500177721959 -3.552781919489746, 10.801109177697384 -3.530835919469311, 10.752218177651855 -3.4969459194377492, 10.714163177616427 -3.471945919414466, 10.645973177552918 -3.3454909192966937, 10.629718177537768 -3.308890919262609, 10.611663177520967 -3.285835919241137, 10.50139117741827 -3.168890919132224, 10.435273177356692 -3.1041639190719366, 10.301945177232511 -2.978608918955004, 10.198327177136008 -2.902499918884132, 10.173891177113262 -2.885554918868351, 10.06860917701519 -2.8044459187928084, 10.046109176994236 -2.785281918774956, 9.992927176944704 -2.737026918730024, 9.967218176920767 -2.7188909187131287, 9.945000176900066 -2.6997179186952707, 9.889863176848735 -2.6509729186498703, 9.739163176708388 -2.4915269185013784, 9.70250017667422 -2.4479179184607602, 9.74086317670995 -2.480217918490851, 9.769054176736205 -2.4954269185050038, 9.799927176764982 -2.5012459185104348, 9.830273176793241 -2.500835918510049, 9.970691176923992 -2.582781918586363, 9.974654176927686 -2.6176359186188307, 10.016109176966296 -2.6397179186393913, 10.156454177097004 -2.575072918579181, 10.133473177075615 -2.523890918531521, 10.076109177022175 -2.493335918503064, 10.003336176954406 -2.5374999185441993, 9.981391176933982 -2.561108918566177, 9.958609176912745 -2.5452819185514386, 9.911945176869295 -2.475554918486509, 9.868054176828423 -2.419445918434249, 9.81423617677828 -2.4303459184444023, 9.794373176759791 -2.4552819184676196, 9.761736176729386 -2.47881791848954, 9.723418176693713 -2.439499918452924, 9.66555417663983 -2.4261089184404483, 9.631945176608525 -2.3941639184106975, 9.610973176588999 -2.3706909183888456, 9.58937317656887 -2.339099918359423, 9.578818176559054 -2.2919459183155055, 9.580554176560668 -2.2549999182811007, 9.575273176555754 -2.217917918246556, 9.555273176537128 -2.1881909182188792, 9.503745176489133 -2.133335918167788, 9.48528217647194 -2.1166639181522555, 9.453191176442033 -2.090135918127558, 9.424163176415021 -2.06097291810039, 9.376873176370964 -2.0092359180522124, 9.336945176333785 -1.9366639179846175, 9.322500176320318 -1.907499917957466, 9.443336176432865 -1.9174999179667793, 9.473609176461053 -1.970554918016191, 9.488336176474775 -2.00721791805033, 9.536873176519975 -2.0683999181073176, 9.562363176543727 -2.0574999180971645, 9.566391176547484 -2.034717918075941, 9.51805417650246 -1.9269459179755728, 9.477082176464307 -1.8585459179118686, 9.373191176367527 -1.8233359178790778, 9.348054176344135 -1.8566639179101116, 9.316391176314653 -1.8572179179106314, 9.262773176264716 -1.8494459179033953, 9.24381817624706 -1.7822909178408537, 9.250973176253723 -1.753190917813754, 9.253473176256051 -1.7219459177846517, 9.233473176237425 -1.6219459176915194, 9.221945176226683 -1.595835917667202, 9.202218176208305 -1.5611089176348543, 9.182218176189679 -1.5299999176058918, 9.128609176139747 -1.4705549175505297, 9.069445176084656 -1.3927819174780893, 9.054718176070935 -1.3733359174599826, 9.030282176048189 -1.3361089174253067, 9.011254176030462 -1.304435917395807, 8.985482176006457 -1.2430549173386538, 8.997900176018021 -1.26514591735922, 9.016391176035256 -1.3069089173981183, 9.04015417605737 -1.325545917415468, 9.07555417609035 -1.340281917429195, 9.116391176128388 -1.4072179174915362, 9.233327176237282 -1.5302819176061462, 9.291109176291087 -1.6388909177073003, 9.361945176357068 -1.6291639176982358, 9.391663176384753 -1.6516639177191905, 9.41166317640338 -1.6727819177388596, 9.422782176413733 -1.614163917684266, 9.451663176440633 -1.6108359176811717, 9.49583617648176 -1.6105549176809149, 9.51389117649859 -1.5966639176679678, 9.483609176470367 -1.548335917622964, 9.436391176426412 -1.5148639175917964, 9.391945176385008 -1.563335917636934, 9.347500176343601 -1.5758359176485754, 9.309718176308422 -1.5838909176560776, 9.288327176288504 -1.5704179176435247, 9.251391176254117 -1.4986089175766466, 9.279582176280371 -1.4706909175506553, 9.336945176333785 -1.3997179174845513, 9.349718176345675 -1.3638909174511866, 9.35278217634854 -1.341945917430749, 9.333436176330508 -1.2855909173782578, 9.326945176324472 -1.3082639173993726, 9.337082176333922 -1.3449999174335971, 9.327773176325252 -1.3697179174566116, 9.304445176303517 -1.383890917469813, 9.22471817622926 -1.4112549174952989, 9.17652717618438 -1.4122909174962643, 9.046663176063447 -1.3152819174059118, 9.02666317604482 -1.297635917389485, 9.016945176035762 -1.269999917363748, 9.020836176039381 -1.2358359173319258, 8.999445176019464 -1.159717917261034, 8.896945175924003 -1.008054917119793, 8.80778217584097 -0.8536089169759435, 8.786391175821052 -0.8138909169389592, 8.710000175749883 -0.6411089167780375, 8.700836175741358 -0.6030549167426074, 8.704445175744723 -0.581045916722104, 8.751109175788173 -0.6141639167529434, 8.776391175811739 -0.6422179167790745, 8.791109175825426 -0.6816639168158076, 8.86416317589348 -0.7219459168533291, 8.958473175981311 -0.7561089168851396, 9.007773176027229 -0.8138909169389592, 9.087291176101274 -0.6791639168134793, 9.088473176102383 -0.6322179167697612, 9.09889117611209 -0.6047179167441499, 9.114163176126311 -0.5856909167264348, 9.139163176149594 -0.5626359167049628, 9.164445176173132 -0.5399999166838825, 9.186945176194087 -0.5147179166603308, 9.272782176274035 -0.4077819165607366, 9.298336176297823 -0.3716639165270976, 9.30950917630824 -0.3428459165002664, 9.31055417630921 -0.2986089164590595, 9.305363176304382 -0.2711089164334481, 9.305554176304554 -0.2497179164135304, 9.30757317630642 -0.2124999163788743, 9.316800176315013 -0.1836089163519574, 9.326663176324217 -0.1518089163223522, 9.341109176337653 -0.1179179162907786, 9.344718176341019 -0.0744459162502977, 9.339445176336113 -0.0493089162268916, 9.339509176336179 -0.0188179161984863, 9.34959117634557 0.0000000838190317, 9.350900176346784 0.0078450838263393, 9.34173617633823 0.0655540838800874, 9.32000017631799 0.1758360839828015, 9.302218176301437 0.2841640840836845, 9.305827176304803 0.317364084114601, 9.350836176346718 0.3620090841561847, 9.372500176366884 0.3283360841248282, 9.38166317637544 0.2036090840086615, 9.466945176454857 0.1672180839747739, 9.489445176475812 0.1644450839721827, 9.563327176544618 0.1627820839706402, 9.706391176677869 0.1286090839388123, 9.746527176715233 0.1162450839272964, 9.789718176755457 0.1316640839416578, 9.92110917687782 0.185282083991595, 9.85805417681911 0.1838910839903036, 9.826527176789739 0.1786090839853784, 9.788327176754166 0.181664083988224, 9.76778217673504 0.1855540839918461, 9.68047317665372 0.2197090840236626, 9.590773176570167 0.2750450840751881, 9.550036176532245 0.2984640840970059, 9.49770917648351 0.293682084092552, 9.460282176448658 0.3594450841537906, 9.441391176431068 0.401664084193115, 9.418891176410114 0.4536090842414922, 9.407082176399115 0.4793090842654237, 9.353473176349183 0.5284000843111443, 9.330345176327626 0.5256910843086189, 9.308609176307385 0.5263910843092816, 9.30513617630416 0.5809730843601102, 9.315073176313405 0.6214540843978114, 9.517773176502203 0.6761090844487114, 9.542218176524955 0.6725000844453461, 9.558336176539967 0.6477820844223316, 9.584027176563893 0.5947180843729143, 9.587636176567258 0.5720820843518339, 9.584718176564536 0.521391084304625, 9.581945176561959 0.4975000842823647, 9.60000017657876 0.4811090842671035, 9.630418176607094 0.5501360843313847, 9.632773176609305 0.5822180843612728, 9.625000176602043 0.7838910845490972, 9.617082176594693 0.8201360845828418, 9.599100176577934 0.8447180846057449, 9.560000176541507 0.9559730847093562, 9.572009176552712 0.9966000847471861, 9.602782176581371 1.0202820847692493, 9.675973176649535 1.0555540848020968, 9.737500176706817 1.058054084804425, 9.762363176729991 1.048400084795432, 9.80397317676875 1.002609084752791, 9.832463176795272 1.0020540847522739, 9.871463176831583 0.9761640847281541, 9.892100176850818 0.9518540847055164, 9.951509176906143 0.9301540846853129, 9.975454176928451 0.9459450847000141, 9.992209176944044 1.0018820847521113, 10.001109176952326 1.0022180847524282, 10.028609176977938 1.0025000847526826, 10.226663177162408 1.0025000847526826, 10.253891177187768 1.0025000847526826, 10.28139117721338 1.0025000847526826, 10.308609177238708 1.0025000847526826, 10.415045177337845 1.0025000847526826, 10.4930541774105 1.0022180847524282, 10.52028217743586 1.0022180847524282, 10.77305417767127 1.0025000847526826, 10.909718177798538 1.0027820847529512, 10.969845177854552 1.0035910847537082, 11.244445178110283 1.0022180847524282, 11.353891178212223 1.0019450847521654, 11.350000178208575 1.4486090851681581, 11.348609178207283 1.6055540853143242, 11.347773178206523 1.6941640853968494, 11.346691178205504 1.7407000854401957, 11.345836178204706 1.8305540855238718, 11.345000178203918 1.919164085606397, 11.344445178203415 1.987218085669781, 11.345000178203918 2.0077820856889304, 11.343609178202627 2.164445085834828, 11.339763178199064 2.1686090858387104, 11.350554178209109 2.236391085901843, 11.367345178224753 2.2988730859600253, 11.579718178422524 2.315282085975312, 11.700000178534538 2.3078450859683812, 11.75639117858708 2.28236408594465, 12.229163179027381 2.283682085945884, 12.28889117908301 2.301664085962628, 12.33565417912655 2.3179000859777545, 12.481800179262649 2.3001360859611992, 12.501800179281275 2.2926360859542143, 12.523609179301587 2.283336085945564, 12.59583617936886 2.258891085922798, 12.631109179401705 2.251391085915813, 12.751945179514252 2.233054085898729, 12.864163179618771 2.240282085905463, 13.000000179745257 2.256109085920201, 13.121663179858587 2.2752090859379877, 13.171391179904901 2.2829180859451697, 13.254582179982378 2.2661090859295143, 13.294445180019494 2.225973085892136, 13.296109180021034 2.1711090858410387, 13.293891180018989 2.1636090858340538, 13.289718180015086 2.072364085749072, 13.270282179996997 2.03700908571615, 13.206945179938003 1.9777820856609907, 13.184163179916794 1.9291640856157102, 13.182154179914903 1.8722910855627504, 13.191391179923528 1.8411090855337022, 13.192636179924676 1.808054085502917, 13.171663179905153 1.7644450854622988, 13.143191179878613 1.706873085408688, 13.135136179871125 1.5777090852883902, 13.158745179893117 1.5383360852517285, 13.190282179922491 1.5105540852258486, 13.22471817995455 1.4483360851679095, 13.235836179964906 1.4272180851482403, 13.24639117997475 1.3955540851187465, 13.249100179977262 1.3297180850574364, 13.216873179947243 1.29471808502484, 13.183645179916311 1.283818085014687, 13.170554179904116 1.247364084980731, 13.18678217991922 1.2224730849575565, 13.205000179936178 1.2216640849567995, 13.264718179991803 1.2241640849591278, 13.305273180029587 1.2344450849686979, 13.36500018008519 1.2719450850036225, 13.469163180182221 1.2905540850209576, 13.573054180278973 1.305836085035196, 13.784445180475842 1.3940270851173295, 13.804445180494469 1.4356270851560708, 13.897773180581396 1.4400000851601362, 13.977500180655625 1.4163910851381587, 14.076945180748254 1.37555408510012, 14.098336180768172 1.381527085105688, 14.116109180784719 1.390691085114213, 14.150273180816555 1.3956910851188695, 14.191527180854962 1.3905540851140898, 14.236109180896477 1.363336085088747, 14.271109180929074 1.3300000850576907, 14.293127180949597 1.2549270849877843, 14.29333618094978 1.1952820849322308, 14.320554180975137 1.1061090848491801, 14.425554181072926 0.9605540847136211, 14.461945181106813 0.9326360846876156, 14.485691181128914 0.9172180846732658, 14.473609181117666 0.8308360845928178, 14.346800180999566 0.6215270843978828, 14.269300180927388 0.5456910843272453, 14.199445180862341 0.5358360843180776, 14.172218180836978 0.5458360843273908, 14.14097318080789 0.5512450843324217, 14.099163180768954 0.5438910843255798, 14.07389118074542 0.5227820843059163, 13.96041818063972 0.3486090841437033, 13.887782180572088 0.2187450840227569, 13.88582718057026 0.190000083995983, 13.91139118059408 0.1122180839235512, 13.949100180629188 0.0308360838477597, 13.940282180620983 -0.0380549162164101, 13.90005418058351 -0.096435916270778, 13.862082180548157 -0.1452819163162644, 13.850973180537807 -0.1751359163440753, 13.849027180535984 -0.2026359163696867, 13.905209180588315 -0.2649999164277688, 13.937500180618372 -0.2366639164013691, 13.97847318065655 -0.237635916402283, 14.070136180741912 -0.2518089164154844, 14.131945180799477 -0.2815269164431555, 14.151663180817849 -0.3327819164908874, 14.166109180831285 -0.3741639165294259, 14.177082180841523 -0.4219459165739323, 14.192500180855859 -0.4447179165951383, 14.235282180895723 -0.4386089165894447, 14.322773180977208 -0.4369459165879022, 14.413336181061538 -0.476808916625032, 14.456663181101902 -0.5186089166639505, 14.48360918112698 -0.5480549166913846, 14.519582181160501 -0.6133359167521775, 14.505973181147823 -0.6762549168107768, 14.495000181137584 -0.7008359168336682, 14.472918181117024 -0.7359729168663875, 14.428745181075897 -0.9269459170442502, 14.420273181068012 -0.9952819171078886, 14.426391181073711 -1.046945917156009, 14.454445181099828 -1.127217917230766, 14.48194518112544 -1.2127819173104513, 14.482500181125943 -1.2599999173544347, 14.476945181120783 -1.433335917515862, 14.46471818110939 -1.5505549176250355, 14.438054181084567 -1.5688909176421078, 14.404445181053262 -1.5977819176690105, 14.41430018106243 -1.855281917908826, 14.428054181075254 -1.8845819179361172, 14.415973181064004 -1.9052819179553921, 14.381663181032053 -1.9252819179740186, 14.37135418102244 -1.9286179179771352, 14.357773181009804 -1.9286089179771153, 14.320000180974603 -1.9373639179852802, 14.258891180917715 -1.9736819180190963, 14.253818180912987 -2.0184729180608088, 14.268536180926674 -2.0364549180775526, 14.253609180912775 -2.12639091816132, 14.22139118088279 -2.2927819183162796, 14.199163180862087 -2.3595819183784954, 14.181109180845255 -2.3716639183897428, 14.153891180819926 -2.395554918412003, 14.118609180787047 -2.465281918476933, 14.110836180779813 -2.493054918502807, 14.08221818075316 -2.496108918505641, 13.916391180598737 -2.490135918500087, 13.870554180556042 -2.470899918482175, 13.864445180550348 -2.4230549184376144, 13.878891180563812 -2.3147179183367115, 13.809445180499125 -2.1444459181781355, 13.764445180457216 -2.0907639181281326, 13.726945180422291 -2.15416391818718, 13.72721818042254 -2.18416391821512, 13.692500180390198 -2.2202819182487588, 13.590273180295014 -2.3258359183470674, 13.560000180266798 -2.3497179183693078, 13.504927180215532 -2.3995179184156825, 13.484654180196628 -2.434654918448416, 13.390554180109007 -2.4287549184429196, 13.330000180052593 -2.4024999184184708, 13.251663179979658 -2.370835918388977, 13.203054179934384 -2.360554918379407, 13.031245179774373 -2.3330549183537954, 13.001509179746677 -2.3676729183860346, 13.012500179756898 -2.3155549183374973, 13.016663179760798 -2.270281918295325, 13.000973179746182 -2.231945918259626, 12.960209179708215 -2.183335918214354, 12.931800179681744 -2.1900999182206533, 12.900836179652913 -2.1427819181765813, 12.848473179604156 -1.97889091802395, 12.845273179601179 -1.9544459180011842, 12.820000179577619 -1.9106909179604372, 12.793336179552796 -1.8997179179502126, 12.742654179505593 -1.88372691793532, 12.72479117948896 -1.859026917912317, 12.652500179421622 -1.8234729178792008, 12.588473179362012 -1.8254909178810834, 12.524509179302441 -1.890590917941708, 12.501109179280633 -1.921390917970399, 12.463609179245708 -1.9005549179509984, 12.453800179236566 -1.8780549179300436, 12.446182179229481 -1.8816639179333947, 12.436945179220885 -1.901108917951504, 12.448054179231235 -2.0244459180663767, 12.473054179254518 -2.074445918112943, 12.50221817928167 -2.133890918168305, 12.495554179275473 -2.2237549182519984, 12.478054179259175 -2.327217918348353, 12.052500178862829 -2.416945918431921, 12.034718178846276 -2.406663918422339, 12.018327178831015 -2.388054918405018, 11.99971817881368 -2.366108918384569, 11.976245178791828 -2.341108918361286, 11.952218178769442 -2.3324269183532067, 11.80166317862924 -2.3722179183902625, 11.763336178593534 -2.4024999184184708, 11.733327178565588 -2.418890918433732, 11.68250017851824 -2.3791639183967277, 11.659163178496527 -2.353890918373196, 11.61152717845215 -2.3322179183530096, 11.57347317841672 -2.336390918356898, 11.601663178442976 -2.4516639184642486, 11.62971817846909 -2.550281918556095, 11.646318178484563 -2.614654918616054, 11.632500178471673 -2.6674999186652713, 11.60750017844839 -2.7223639187163684, 11.590000178432092 -2.7433359187358946, 11.572773178416071 -2.761945918753227, 11.54610917839122 -2.793890918782978, 11.544291178389528 -2.8165639188040927)), ((9.00221817602204 -0.7688909168970497, 8.991945176012479 -0.7652819168936844, 8.978054175999546 -0.7548639168839912, 8.968609175990736 -0.7405549168706642, 8.964163175986613 -0.7313909168621251, 8.947218175970818 -0.6713909168062457, 8.946663175970315 -0.658335916794087, 8.949163175972643 -0.6469459167834799, 8.965554175987904 -0.6218089167600738, 9.003891176023615 -0.5995819167393677, 9.043609176060585 -0.6561089167920073, 9.046527176063307 -0.6693089168043116, 9.037082176054525 -0.7451359168749292, 9.016663176035507 -0.763054916891619, 9.007773176027229 -0.7677819168960127, 9.00221817602204 -0.7688909168970497))) +NAM Namibia MULTIPOLYGON (((19.998900186263512 -23.30869993788889, 19.999445186264012 -23.45417293802437, 20.000000186264515 -23.64749993820442, 20.000273186264792 -23.7572269383066, 20.000536186265037 -23.864408938406427, 20.000000186264515 -23.950835938486918, 20.00055418626505 -24.28221793879554, 20.001109186265552 -24.406390938911187, 20.00194518626634 -24.57222693906563, 20.00221818626659 -24.72416393920713, 20.001663186266086 -24.76555493924569, 20.000945186265398 -24.765408939245546, 20.001663186266086 -24.793608939271806, 20.001663186266086 -24.86278193933623, 20.001391186265835 -25.08361793954191, 20.00055418626505 -25.221672939670484, 20.000273186264792 -25.41499993985053, 20.00043618626492 -25.616490940038176, 20.000000186264515 -25.870835940275057, 20.000000186264515 -26.409172940776422, 19.999445186264012 -27.03028194135488, 19.999163186263758 -27.320281941624962, 19.998763186263375 -27.369499941670796, 19.998336186262975 -27.485835941779143, 19.99805418626272 -27.582226941868917, 19.997773186262464 -27.871945942138737, 19.998336186262975 -28.06499994231853, 19.99805418626272 -28.354726942588364, 19.996945186261684 -28.415590942645046, 19.812218186089638 -28.49249994271667, 19.789718186068683 -28.495554942719515, 19.743609186025736 -28.485554942710202, 19.567454185861692 -28.52832694275004, 19.513336185811283 -28.59499994281213, 19.49389118579319 -28.633054942847572, 19.490691185790183 -28.669026942881075, 19.466391185767577 -28.699717942909658, 19.447773185750236 -28.710835942920014, 19.418327185722802 -28.718890942927516, 19.349027185658258 -28.735835942943297, 19.322500185633544 -28.72749994293553, 19.301382185613875 -28.725417942933596, 19.27721818559138 -28.73125494293903, 19.261245185576513 -28.744863942951703, 19.239791185556527 -28.802426943005315, 19.24805418556423 -28.83167294303255, 19.260000185575336 -28.85541794305467, 19.25389118556967 -28.89944594309567, 19.18389118550448 -28.93722694313086, 19.145827185469017 -28.954999943147406, 19.108327185434092 -28.961872943153814, 19.00250018533552 -28.92791794312219, 18.985691185319865 -28.90499994310084, 18.970418185305647 -28.87763594307536, 18.951527185288057 -28.866390943064886, 18.719163185071665 -28.83652694303707, 18.33833618471698 -28.8844459430817, 18.181318184570756 -28.90847294310408, 18.044445184443276 -28.8681269430665, 18.02610918442619 -28.849863943049492, 18.00139118440319 -28.82694594302815, 17.969927184373887 -28.804099943006875, 17.91250018432038 -28.77916394298365, 17.749718184168785 -28.746390942953127, 17.71082718413257 -28.7566729429627, 17.679300184103198 -28.769863942974986, 17.643400184069776 -28.77396394297881, 17.605273184034274 -28.753126942959398, 17.602218184031415 -28.720690942929195, 17.589754184019796 -28.68954594290019, 17.497773183934157 -28.694726942905014, 17.461109183899993 -28.702781942912516, 17.422009183863594 -28.715281942924157, 17.40090018384393 -28.708399942917744, 17.36138218380711 -28.53499994275625, 17.3854181838295 -28.424235942653098, 17.396109183839457 -28.402226942632602, 17.39958218384271 -28.363190942596248, 17.398054183841282 -28.342226942576723, 17.343118183790125 -28.233054942475043, 17.309573183758857 -28.22103594246385, 17.278818183730237 -28.238263942479897, 17.218809183674352 -28.242072942483446, 17.19860918365552 -28.22360894246625, 17.184373183642265 -28.20049994244473, 17.188327183645953 -28.17165494241786, 17.189018183646596 -28.11410894236427, 17.171654183630437 -28.10226394235324, 17.1541361836141 -28.097499942348797, 17.134300183595627 -28.087081942339097, 17.1204181835827 -28.065417942318923, 17.107909183571053 -28.045835942300684, 17.075763183541113 -28.03034594228626, 16.91187318338848 -28.067499942320858, 16.88694518336527 -28.092363942344015, 16.822500183305237 -28.23778194247945, 16.801600183285785 -28.362781942595866, 16.77666318326257 -28.441672942669335, 16.71950918320934 -28.49902694272275, 16.70061818319175 -28.49034594271467, 16.677118183169853 -28.464308942690415, 16.6250001831213 -28.496108942720035, 16.489591182995213 -28.57818194279647, 16.45162718295984 -28.614617942830407, 16.39332718290555 -28.591117942808516, 16.35444518286934 -28.56278194278213, 16.171945182699375 -28.399172942629754, 16.158054182686442 -28.383890942615523, 16.1172181826484 -28.337499942572315, 16.049718182585536 -28.266390942506092, 16.023191182560822 -28.24167294248307, 15.997500182536896 -28.22917294247143, 15.973327182514396 -28.214999942458228, 15.898609182444801 -28.1627819424096, 15.75639118231237 -28.03417294228982, 15.736109182293461 -28.011108942268343, 15.68971818225026 -27.95610894221712, 15.676527182237976 -27.929172942192032, 15.682709182243741 -27.90909994217334, 15.671391182233208 -27.87347294214016, 15.64694518221043 -27.84389094211261, 15.605554182171886 -27.7974999420694, 15.570273182139033 -27.767226942041212, 15.552500182122458 -27.754445942029307, 15.531045182102474 -27.73041794200693, 15.521945182094015 -27.681808941961656, 15.53110918210254 -27.661463941942714, 15.519163182091432 -27.626945941910563, 15.399163181979674 -27.454999941750422, 15.360554181943712 -27.407217941705923, 15.294163181881885 -27.322499941627022, 15.287218181875403 -27.302226941608147, 15.264373181854126 -27.214726941526656, 15.27000018185936 -27.162226941477762, 15.235282181827046 -26.96944594129822, 15.218609181811502 -26.936672941267695, 15.20221818179624 -26.923335941255274, 15.179163181774783 -26.918335941250618, 15.157773181754862 -26.902781941236135, 15.112500181712676 -26.783890941125406, 15.095000181696378 -26.73528194108014, 15.084027181686167 -26.69687294104437, 15.079718181682153 -26.649999941000708, 15.09402718169548 -26.63417294098597, 15.131736181730588 -26.631699940983665, 15.13680018173531 -26.674654941023675, 15.166663181763141 -26.623335940975878, 15.171800181767907 -26.601663940955696, 15.131109181730011 -26.478617940841097, 15.117363181717224 -26.44709094081174, 15.088091181689947 -26.403163940770824, 15.04750018165214 -26.374999940744594, 15.0231911816295 -26.364863940735155, 14.991945181600414 -26.353617940724682, 14.969863181579854 -26.340145940712134, 14.959163181569892 -26.308054940682247, 14.947363181558899 -26.13736394052328, 14.97430018158397 -26.130208940516617, 14.981663181590847 -26.088890940478137, 14.980836181590064 -26.063472940454467, 14.96944518157946 -26.014163940408544, 14.95750018156832 -25.987781940383968, 14.9355541815479 -25.963054940360948, 14.915273181529017 -25.936808940336505, 14.83777318145684 -25.761945940173646, 14.834300181453585 -25.74194594015502, 14.849163181467446 -25.633608940054117, 14.86471818148192 -25.590281940013767, 14.880900181496997 -25.56729093999236, 14.840973181459816 -25.418608939853883, 14.830000181449577 -25.401390939837853, 14.81708218143757 -25.379172939817167, 14.800973181422563 -25.280417939725183, 14.811663181432522 -25.253335939699966, 14.834163181453476 -25.187499939638656, 14.857773181475466 -25.08722693954526, 14.856663181474431 -25.058890939518875, 14.838891181457882 -25.011390939474637, 14.832073181451506 -24.99943593946351, 14.801109181422675 -24.956672939423683, 14.791663181413895 -24.937917939406205, 14.78708218140963 -24.893054939364433, 14.794300181416332 -24.858545939332288, 14.779300181402363 -24.804026939281513, 14.729445181355942 -24.714026939197694, 14.664718181295655 -24.642226939130822, 14.60680018124171 -24.578754939071715, 14.598054181233579 -24.559863939054125, 14.605100181240147 -24.52110893901802, 14.619300181253351 -24.486808938986087, 14.6143091812487 -24.46167293896268, 14.570836181208222 -24.359726938867723, 14.55444518119296 -24.333617938843418, 14.510827181152337 -24.25194593876735, 14.488336181131388 -24.199445938718455, 14.472773181116906 -24.15333593867551, 14.462636181107456 -24.103335938628945, 14.455273181100608 -23.987781938521323, 14.460063181105056 -23.95860893849415, 14.510273181151831 -23.82639093837102, 14.500554181142775 -23.61694593817596, 14.495000181137584 -23.582781938144137, 14.480900181124468 -23.55347293811684, 14.44083618108715 -23.451390938021774, 14.434309181081062 -23.414581937987492, 14.441245181087538 -23.39291793796731, 14.473682181117738 -23.346045937923662, 14.481563181125068 -23.373126937948882, 14.496109181138621 -23.350563937927873, 14.498054181140446 -23.324308937903425, 14.482782181126225 -23.23958193782451, 14.461391181106308 -23.166390937756347, 14.453882181099289 -23.146399937737726, 14.451109181096712 -23.142226937733838, 14.440554181086895 -23.124172937717034, 14.431109181078085 -23.099445937694, 14.409300181057773 -23.02631793762589, 14.410554181058956 -22.967226937570857, 14.436600181083207 -22.882226937491694, 14.447773181093623 -22.926526937532955, 14.444718181090764 -22.960554937564652, 14.462363181107207 -22.997017937598613, 14.517082181158173 -22.926045937532507, 14.535000181174837 -22.881599937491117, 14.539027181178596 -22.80180893741681, 14.529163181169423 -22.719999937340617, 14.524845181165404 -22.6920639373146, 14.527400181167764 -22.667954937292137, 14.524582181165158 -22.629026937255887, 14.511391181152874 -22.552781937184875, 14.416391181064398 -22.33444593698154, 14.387636181037607 -22.28347293693406, 14.285827180942789 -22.123335936784926, 14.127782180795606 -21.940554936614703, 14.10250018077204 -21.91402693658999, 14.04250018071616 -21.862226936541745, 13.952673180632502 -21.778890936464137, 13.967982180646771 -21.73465493642294, 13.956663180636241 -21.701945936392477, 13.935554180616577 -21.674445936366865, 13.877918180562887 -21.594581936292485, 13.865973180551777 -21.548890936249933, 13.859163180545437 -21.507708936211586, 13.812773180502234 -21.431526936140628, 13.779163180470931 -21.394172936105846, 13.70110918039822 -21.296108936014505, 13.576945180282593 -21.129172935859046, 13.403891180121434 -20.86236393561056, 13.385000180103816 -20.82444593557524, 13.377782180097114 -20.804445935556615, 13.374582180094137 -20.78152693553527, 13.376391180095823 -20.739863935496473, 13.369445180089343 -20.703890935462965, 13.352773180073825 -20.646663935409663, 13.30639118003063 -20.555763935325018, 13.279100180005202 -20.520072935291765, 13.252636179980556 -20.4693089352445, 13.244163179972674 -20.433054935210734, 13.242218179970848 -20.402499935182277, 13.238891179967766 -20.373054935154855, 13.223891179953796 -20.307781935094056, 13.21750017994782 -20.287499935075175, 13.198891179930513 -20.238335935029383, 13.175000179908238 -20.180835934975832, 13.159718179894014 -20.154726934951512, 13.14027317987592 -20.131108934929514, 13.11666317985393 -20.11507293491458, 13.084445179823916 -20.099445934900032, 13.055691179797122 -20.073608934875963, 13.041945179784335 -20.04639093485062, 13.03028217977348 -20.00139093480871, 12.989163179735186 -19.90944593472308, 12.979718179726376 -19.891390934706266, 12.970273179717594 -19.87333593468945, 12.944445179693531 -19.8238909346434, 12.927773179678013 -19.7893089346112, 12.811945179570131 -19.598335934433337, 12.791391179550999 -19.564999934402294, 12.77333617953417 -19.539090934378166, 12.70721817947259 -19.41778193426518, 12.698609179464569 -19.399172934247858, 12.688054179454753 -19.369445934220167, 12.64000017940998 -19.2616729341198, 12.586945179360583 -19.152499934018124, 12.542218179318922 -19.067781933939216, 12.460836179243131 -18.928054933809094, 12.441663179225287 -18.899172933782197, 12.418745179203938 -18.866526933751786, 12.306663179099559 -18.717226933612736, 12.290836179084806 -18.700835933597475, 12.230836179028927 -18.65055493355065, 12.213609179012877 -18.638617933539535, 12.196663178997113 -18.62694593352866, 12.17458217897655 -18.612781933515464, 12.146109178950013 -18.5930549334971, 12.125554178930884 -18.577781933482868, 12.083054178891302 -18.53555493344355, 12.020836178833349 -18.47110893338352, 11.997918178812 -18.41333593332972, 11.997500178811606 -18.374308933293378, 11.95305417877023 -18.26583593319235, 11.943891178761703 -18.24778193317553, 11.892363178713708 -18.18055493311293, 11.847082178671542 -18.13916393307437, 11.8072181786344 -18.086254933025103, 11.767636178597542 -17.988190932933776, 11.761109178591454 -17.961808932909207, 11.741945178573616 -17.830281932786704, 11.732500178564806 -17.761945932723066, 11.716663178550078 -17.56416393253886, 11.716391178549827 -17.539172932515598, 11.717218178550581 -17.483608932463838, 11.720554178553698 -17.45722693243927, 11.732218178564551 -17.3722179323601, 11.747773178579052 -17.329726932320526, 11.74971817858085 -17.309172932301394, 11.753736178584603 -17.26500893226026, 11.752782178583715 -17.254835932250785, 11.811663178638554 -17.270281932265164, 11.884582178706466 -17.22444593222248, 11.902218178722876 -17.205835932205147, 11.933054178751604 -17.18069993218174, 11.976109178791688 -17.164172932166352, 12.048054178858706 -17.143890932147457, 12.087773178895702 -17.136526932140598, 12.205827179005638 -17.194726932194797, 12.238054179035657 -17.21528193221394, 12.292218179086092 -17.229726932227393, 12.434163179218302 -17.212781932211612, 12.47889117925996 -17.24167293223853, 12.557218179332892 -17.243335932240072, 12.604445179376881 -17.225835932223774, 12.817918179575685 -17.107081932113175, 12.851391179606878 -17.072499932080973, 12.879791179633315 -17.04013593205083, 12.923336179673868 -17.016390932028713, 12.985836179732075 -16.99110893200516, 13.01847317976248 -16.978054931993015, 13.149163179884198 -16.954172931970774, 13.170900179904436 -16.956317931972762, 13.208891179939826 -16.973608931988863, 13.260827179988183 -16.984863931999357, 13.317782180041235 -16.978054931993015, 13.346309180067806 -16.97067293198613, 13.376036180095468 -16.970908931986358, 13.472082180184941 -17.01083593202354, 13.494300180205613 -17.025554932037252, 13.528018180237012 -17.087572932095, 13.660691180360573 -17.218890932217306, 13.697773180395131 -17.24139093223826, 13.841391180528888 -17.323608932314826, 13.928891180610378 -17.401108932387004, 13.993218180670283 -17.423945932408273, 14.01666318069212 -17.410899932396134, 14.051109180724183 -17.419445932404088, 14.082918180753808 -17.42999993241392, 14.171391180836224 -17.42111793240565, 14.194718180857933 -17.411390932396586, 14.218054180879676 -17.38694593237382, 14.361663181013427 -17.38721793237407, 14.44805418109388 -17.38749993237434, 14.634718181267715 -17.388335932375114, 14.993891181602237 -17.389726932376405, 15.496945182070732 -17.389445932376148, 15.583054182150931 -17.38916393237588, 15.956663182498886 -17.38667293237357, 16.003327182542336 -17.38667293237357, 16.60610918310371 -17.390835932377442, 17.278827183730243 -17.392226932378733, 17.510554183946056 -17.391945932378476, 17.56166318399366 -17.390835932377442, 17.73389118415406 -17.38889093237563, 18.000545184402398 -17.3861729323731, 18.117218184511046 -17.38694593237382, 18.188891184577813 -17.38721793237407, 18.390000184765086 -17.38694593237382, 18.4515361848224 -17.389835932376513, 18.51333618487996 -17.472781932453756, 18.57832718494049 -17.57222693254637, 18.64194518499974 -17.648054932617, 18.7536821851038 -17.74528193270754, 18.804300185150936 -17.768890932729533, 18.919445185258184 -17.81639093277377, 18.983891185318214 -17.82597293278269, 19.025836185357264 -17.82999993278645, 19.055827185385198 -17.827781932784376, 19.116800185441974 -17.819445932776617, 19.13360918545763 -17.804372932762575, 19.175282185496457 -17.801108932759533, 19.2455541855619 -17.806254932764332, 19.298745185611438 -17.824999932781793, 19.33721818564726 -17.843890932799383, 19.413327185718146 -17.861117932815432, 19.445827185748414 -17.862781932816972, 19.559163185853976 -17.867499932821374, 19.701382185986404 -17.87055493282422, 19.797918186076316 -17.863754932817884, 19.818609186095586 -17.85805493281258, 19.920554186190543 -17.8572269328118, 19.94624518621447 -17.863335932817492, 19.971318186237824 -17.88013593283314, 20.01694518628031 -17.890835932843103, 20.09889118635664 -17.896390932848277, 20.12889118638458 -17.894445932846466, 20.244718186492435 -17.88013593283314, 20.27083618651676 -17.861254932815555, 20.321318186563786 -17.8572269328118, 20.44520018667916 -17.90187293285338, 20.492554186723254 -17.941890932890658, 20.55368218678018 -17.983054932928994, 20.595554186819186 -17.98139093292744, 20.63847318685916 -17.978472932924717, 20.751945186964832 -17.99610893294114, 20.781582186992438 -18.010199932954265, 20.85416318706004 -18.016390932960036, 20.889718187093138 -17.9944459329396, 20.953327187152382 -17.96826393291522, 21.02138218721575 -17.95333593290131, 21.13860918732493 -17.93444593288372, 21.16586318735031 -17.931463932880945, 21.23687318741645 -17.93889093288786, 21.263327187441092 -17.956390932904156, 21.379354187549154 -18.014890932958636, 21.755409187899375 -17.94734593289573, 22.29027318839752 -17.849999932805076, 22.5641631886526 -17.798890932757473, 22.88110918894776 -17.73944593270211, 22.910000188974664 -17.73333593269642, 22.996391189055146 -17.716945932681156, 23.284718189323655 -17.662499932630453, 23.28916318932781 -17.661108932629148, 23.476109189501898 -17.625835932596303, 23.82082718982295 -17.560281932535247, 24.029027190016848 -17.519581932497346, 24.23909119021249 -17.478426932459016, 24.381245190344885 -17.4734729324544, 24.440136190399727 -17.48236393246269, 24.502500190457795 -17.508054932486615, 24.542218190494793 -17.524999932502396, 24.565418190516397 -17.53347293251028, 24.590273190539563 -17.533890932510673, 24.619163190566468 -17.505835932484544, 24.638191190584166 -17.496672932476017, 24.663891190608126 -17.49361793247317, 24.708609190649753 -17.49833593247756, 24.81777319075144 -17.5155549324936, 24.912500190839637 -17.54083593251714, 24.970000190893188 -17.559717932534724, 24.98430019090651 -17.58389093255724, 25.030000190949067 -17.60999993258156, 25.065282190981947 -17.624726932595266, 25.251945191155784 -17.78305493274273, 25.264427191167414 -17.8022459327606, 25.252382191156187 -17.795708932754508, 25.17937319108819 -17.782081932741818, 25.136391191048176 -17.796563932755305, 25.09909119101343 -17.82784593278444, 25.066391190982984 -17.832226932788515, 25.000000190921128 -17.826045932782762, 24.972773190895794 -17.82110893277816, 24.93610919086163 -17.813890932771443, 24.83277319076541 -17.837708932793632, 24.679163190622347 -17.944172932892783, 24.56631819051725 -18.054235932995283, 24.524163190477992 -18.059999933000654, 24.497909190453527 -18.05930893300001, 24.473609190430892 -18.032781932975297, 24.451945190410726 -17.999172932944006, 24.439791190399404 -17.978054932924337, 24.41694519037813 -17.953754932901703, 24.38833619035148 -17.945835932894326, 24.363054190327944 -17.94916393289742, 24.268891190240254 -18.01333593295719, 24.006663189996033 -18.167781933101026, 23.967218189959283 -18.18499993311707, 23.91221818990806 -18.236945933165444, 23.886936189884523 -18.264763933191347, 23.870418189869127 -18.263054933189764, 23.844027189844553 -18.289999933214858, 23.829854189831366 -18.31499993323814, 23.7916631897958 -18.354172933274626, 23.719163189728278 -18.42528193334084, 23.650554189664376 -18.469717933382228, 23.61325418962963 -18.48516393339662, 23.582427189600935 -18.47520893338735, 23.56389118958367 -18.437226933351965, 23.555063189575435 -18.36166393328159, 23.55416318957461 -18.326117933248497, 23.519718189542516 -18.266945933193384, 23.503054189527006 -18.24833593317605, 23.45347318948083 -18.20360893313439, 23.43110918945999 -18.193890933125346, 23.398054189429217 -18.17610893310878, 23.36305418939662 -18.127226933063255, 23.33000018936582 -18.076390933015915, 23.32583618936195 -18.044999932986684, 23.31639118935317 -18.015417932959124, 23.297109189335202 -17.995945932940998, 23.28710918932589 -17.996335932941363, 23.077773189130937 -18.00444593294891, 22.637218188720624 -18.086672933025497, 22.50000018859282 -18.11126393304839, 22.262218188371378 -18.153890933088093, 21.81694518795669 -18.238335933166738, 21.462500187626574 -18.30444593322831, 21.235554187415232 -18.311945933235293, 20.993291187189612 -18.31841793324132, 20.99360918718989 -18.33860893326012, 20.994163187190424 -18.475563933387676, 20.994163187190424 -18.695281933592298, 20.993527187189812 -19.17194593403623, 20.993073187189395 -19.99821793480575, 20.993327187189635 -20.17917293497429, 20.992809187189152 -20.82427293557508, 20.99302718718934 -20.992454935731715, 20.992500187188853 -21.018890935756332, 20.992500187188853 -21.32222693603883, 20.99277318718913 -21.597226936294945, 20.99277318718913 -21.941945936615994, 20.99277318718913 -21.969445936641605, 20.99194518718835 -21.996945936667217, 20.91777318711928 -21.99833593666851, 20.64971818686962 -21.999999936670065, 20.30832718655168 -22.001390936671356, 20.00047318626497 -22.001563936671516, 19.99666318626143 -22.00499993667472, 19.996109186260895 -22.087499936751556, 19.997218186261932 -22.266945936918674, 19.99759118626227 -22.499999937135726, 19.997500186262187 -22.722499937342945, 19.997773186262464 -22.94333593754861, 19.99828218626294 -22.959917937564057, 19.998609186263224 -22.970835937574222, 19.998891186263506 -23.12278193771573, 19.998900186263512 -23.30869993788889))) +NZL New Zealand MULTIPOLYGON (((167.20522732336008 -45.47777295853544, 167.15801832331613 -45.40666395846922, 167.05109132321655 -45.33332695840092, 167.1708633233281 -45.305290958374805, 167.26025432341135 -45.335826958403246, 167.3040003234521 -45.31652695838527, 167.1946363233502 -45.27144495834328, 167.09321832325577 -45.270235958342155, 167.002200323171 -45.20110895827778, 166.99691832316608 -45.1458359582263, 167.31677232346397 -44.87319095797238, 167.40027232354174 -44.86287295796277, 167.4596913235971 -44.99471795808556, 167.5061913236404 -45.000144958090615, 167.45080932358883 -44.79209095789685, 167.74300932386092 -44.61167295772882, 167.94998132405368 -44.40360895753505, 168.1280183242195 -44.31694495745434, 168.12410032421587 -44.251399957393296, 168.29107232437138 -44.17013595731761, 168.37232732444704 -44.04055495719693, 168.82440032486807 -43.988335957148294, 169.2244003252406 -43.743326956920114, 169.66051832564676 -43.601944956788444, 169.73913632571998 -43.55805495674757, 169.87106332584284 -43.40666395660657, 170.02525432598645 -43.35013595655393, 170.28830032623142 -43.10778195632822, 170.7941273267025 -42.901390956136, 171.1516543270355 -42.560417955818444, 171.30440932717772 -42.29667295557281, 171.34384532721447 -42.110835955399736, 171.51080032736996 -41.76445495507715, 171.65081832750036 -41.76139095507429, 171.79052732763046 -41.696390955013754, 171.88665432772 -41.62999995495193, 172.0649723278861 -41.40360895474108, 172.1221913279394 -41.2777819546239, 172.1138633279316 -40.879999954253435, 172.47830032827102 -40.6138909540056, 172.52019132831003 -40.60314595399559, 172.52984532831903 -40.63208195402254, 172.59634532838095 -40.601390953993956, 172.63161832841382 -40.55999995395541, 172.5821363283677 -40.554999953950755, 172.6302453284125 -40.51056395390937, 172.71219132848887 -40.49555495389539, 172.98821832874592 -40.53103595392844, 172.7357913285108 -40.518335953916605, 172.65691832843737 -40.65332695404233, 172.70135432847877 -40.74833595413081, 172.8606543286271 -40.85305495422834, 172.98092732873914 -40.78152695416172, 173.0133093287693 -40.796672954175826, 173.0510913288045 -40.8694459542436, 173.0596913288125 -40.96735495433479, 173.03164532878634 -41.027499954390805, 173.07774532882928 -41.294308954639284, 173.10552732885515 -41.313326954657, 173.20301832894597 -41.309999954653904, 173.60232732931786 -41.053054954414606, 173.63970932935268 -41.07361795443375, 173.73996332944603 -41.047226954409176, 173.73828132944448 -41.01860895438252, 173.6791363293894 -41.038754954401284, 173.69662732940566 -41.000281954365455, 173.9895453296785 -40.89680895426908, 174.02581832971225 -40.94541795431436, 173.92996332962298 -40.99222695435795, 173.7804003294837 -41.0123639543767, 173.77859132948203 -41.114445954471776, 173.8414913295406 -41.054026954415505, 173.9498273296415 -41.05819095441939, 173.84884532954743 -41.144163954499454, 173.82052732952104 -41.24583595459414, 173.7620543294666 -41.27028195461691, 173.77581832947942 -41.28972695463502, 174.13052732980975 -41.179790954532635, 173.8935813295891 -41.19277295454472, 173.90011832959522 -41.13097295448717, 174.0327453297187 -40.99972695436494, 174.24633632991765 -41.04472695440685, 174.31954532998583 -41.001945954367, 174.20996332988375 -41.19749095454912, 174.026645329713 -41.23611795458509, 174.21066332988443 -41.26805495461484, 174.32385432998984 -41.2215269545715, 174.24537232991673 -41.324308954667224, 174.15164532982942 -41.30679995465092, 174.1116363297922 -41.336663954678734, 174.04511832973026 -41.44666395478118, 174.08413632976658 -41.52610895485517, 174.10455432978557 -41.50736395483771, 174.17747232985352 -41.58236395490756, 174.16024532983744 -41.620963954943505, 174.19302732986796 -41.68555495500367, 174.289700329958 -41.73763595505217, 174.23635432990835 -41.83721795514491, 173.97967232966926 -42.061108955353426, 173.93081832962378 -42.19971795548251, 173.55859132927714 -42.4877819557508, 173.2855183290228 -42.958054956188775, 173.10314532885297 -43.059581956283324, 172.838009328606 -43.148054956365726, 172.75941832853283 -43.24291795645407, 172.72676332850244 -43.41944495661848, 172.7758183285481 -43.612217956798006, 173.0596913288125 -43.653054956836044, 173.11440932886342 -43.74139095691831, 173.09164532884222 -43.85639095702541, 173.00169132875845 -43.86745495703572, 172.939972328701 -43.75610895693202, 172.92053632868289 -43.828754956999674, 172.93856332869967 -43.89429995706072, 172.8662093286323 -43.902917957068745, 172.64276332842417 -43.77222695694703, 172.4952363282868 -43.723881956902005, 172.42499132822138 -43.73360895691106, 172.3849813281841 -43.77860895695297, 172.38693632818593 -43.86333595703188, 172.18970032800223 -43.90916395707456, 171.654691327504 -44.12249995727325, 171.34446332721507 -44.293872957432846, 171.28551832716016 -44.35639095749107, 171.2699913271457 -44.45194495758007, 171.20052732708098 -44.54111795766311, 171.19719132707792 -44.92374495801946, 170.9639913268607 -45.16610895824518, 170.87342732677638 -45.362635958428214, 170.8578813267619 -45.49069995854748, 170.55554532648028 -45.89610895892505, 170.77720932668677 -45.78458195882118, 170.7797093266891 -45.880554958910565, 170.3424723262819 -45.973608958997225, 170.26360932620844 -46.05193595907017, 170.22662732617397 -46.164999959175475, 169.86079132583325 -46.37402695937014, 169.84524532581878 -46.469990959459516, 169.63134532561958 -46.581944959563785, 169.13302732515547 -46.67083595964657, 169.06720032509418 -46.6349999596132, 169.0578913250855 -46.676808959652135, 168.8808183249206 -46.664863959641, 168.84038132488297 -46.56208195954528, 168.4927363245592 -46.613335959593016, 168.43937232450946 -46.60058195958114, 168.4422003245121 -46.57499995955732, 168.56387232462544 -46.58465495956631, 168.39135432446477 -46.53999995952472, 168.35774532443344 -46.54611795953041, 168.35140932442755 -46.60316395958355, 168.26871832435052 -46.5323639595176, 168.33941832441639 -46.539172959523945, 168.38957232446307 -46.49499995948281, 168.37133632444613 -46.41902695941205, 168.25027232433337 -46.40083595939511, 168.19010932427733 -46.3440269593422, 167.82829132394033 -46.396526959391096, 167.75387232387106 -46.33388195933276, 167.78248132389768 -46.294590959296166, 167.70190932382263 -46.20944495921687, 167.5344273236667 -46.152781959164095, 167.45607232359373 -46.15305495916435, 167.35662732350107 -46.25444495925878, 167.28027232342998 -46.27305495927611, 166.76803632295292 -46.223608959230056, 166.67053632286212 -46.157635959168616, 166.73886332292574 -46.119163959132784, 166.8299543230106 -46.003890959025426, 166.9446273231174 -45.949235958974526, 166.83220032301267 -45.982917959005896, 166.73938132292625 -46.06630895908356, 166.67053632286212 -46.08721795910303, 166.6146813228101 -46.08860895910433, 166.66165432285385 -45.991944959014305, 166.62579132282042 -45.96721795899127, 166.47497232268 -46.0027819590244, 166.4769003226818 -45.80971795884459, 166.88608132306285 -45.77889095881588, 166.97411832314486 -45.734999958775006, 166.98718132315702 -45.70972695875147, 166.80941832299146 -45.72138195876232, 166.77581832296016 -45.662772958707734, 166.86969132304762 -45.588781958638826, 166.99595432316517 -45.57847295862923, 167.04135432320749 -45.50139995855745, 166.79403632297715 -45.570054958621384, 166.70745432289652 -45.576944958627806, 166.69816332288786 -45.550690958603354, 166.82162732300282 -45.320554958389025, 166.86883632304682 -45.279726958351, 167.03830032320462 -45.35778195842369, 167.20522732336008 -45.47777295853544)), ((176.64413633215077 -40.379999953787774, 176.35230933187898 -40.691108954077514, 176.23913633177358 -40.90889095428034, 176.14220933168332 -40.97527295434216, 176.08080933162614 -41.129163954485485, 175.9846813315366 -41.231381954580684, 175.73996333130867 -41.39417295473229, 175.31816333091587 -41.615417954938344, 175.219554330824 -41.615554954938474, 175.18191833078896 -41.519444954848964, 175.18858133079516 -41.427781954763596, 175.04928133066545 -41.3786089547178, 174.91359133053908 -41.4481909547826, 174.8635723304925 -41.422363954758545, 174.89123633051827 -41.2262449545759, 174.78747233042162 -41.24444495459285, 174.77484533040985 -41.279717954625696, 174.83107233046223 -41.31305495465675, 174.74469133038178 -41.34749995468883, 174.65150933029497 -41.330835954673304, 174.59191833023948 -41.278608954624666, 174.61218133025835 -41.234717954583786, 174.6947003303352 -41.213617954564135, 174.84441833047464 -41.041672954404, 174.9321913305564 -40.98749995435355, 175.120791330732 -40.72694595411089, 175.23800933084118 -40.32972695374095, 175.1963453308024 -40.16694595358935, 175.07162733068623 -40.00306395343672, 174.96078133058302 -39.91277295335263, 174.83247233046353 -39.86375495330698, 174.54580933019656 -39.82041795326662, 174.31247232997924 -39.6120909530726, 173.96662732965711 -39.543472953008695, 173.79525432949754 -39.42194595289551, 173.7516453294569 -39.269999952754006, 173.82995432952987 -39.145835952638365, 174.209136329883 -38.977217952481325, 174.38873633005028 -38.975826952480034, 174.5877363302356 -38.82889095234319, 174.72440033036287 -38.18582695174429, 174.8521913304819 -38.1555549517161, 174.94024533056387 -38.10110895166539, 174.87716333050514 -38.06416395163098, 174.89303633051992 -37.97319095154626, 174.86828133049687 -37.943608951518705, 174.8187273304507 -38.001108951572256, 174.78872733042277 -37.99097295156282, 174.79330933042706 -37.849863951431395, 174.872745330501 -37.80610895139065, 174.97150033059302 -37.80778195139221, 174.97497233059624 -37.749999951338395, 174.84830033047825 -37.76971795135675, 174.71747233035643 -37.424999951035716, 174.72245433036107 -37.3918089510048, 174.84065433047112 -37.29417295091387, 174.71428133035346 -37.362917950977895, 174.55080933020122 -37.077226950711825, 174.66318133030586 -37.06874595070393, 174.6489363302926 -37.0998639507329, 174.70385433034375 -37.19777295082409, 174.73385433037168 -37.19610895082254, 174.72010933035887 -37.15221795078166, 174.87911833050697 -37.088890950722686, 174.88748133051473 -37.059163950695, 174.79553633042912 -37.023054950661376, 174.83107233046223 -36.951808950595016, 174.77026333040556 -36.936663950580915, 174.65637233029952 -36.94944595059282, 174.60052733024747 -37.0222269506606, 174.5002453301541 -37.034726950672244, 174.40790033006812 -36.76819995042402, 174.20886332988272 -36.5352819502071, 174.1779003298539 -36.462917950139705, 174.20094532987537 -36.42819995010737, 174.25483632992552 -36.44582695012379, 174.36932733003215 -36.63083595029609, 174.42651833008546 -36.667635950330364, 174.45470033011168 -36.647917950312, 174.46551833012177 -36.53221795020424, 174.42053633007987 -36.368472950051746, 174.38107233004314 -36.40027295008136, 174.300400329968 -36.39347295007503, 174.26858132993834 -36.34583595003066, 174.29220932996037 -36.316945950003756, 174.37286333003544 -36.33125495001708, 174.42124533008052 -36.31060894999786, 174.50692733016035 -36.26721794995744, 174.50524533015874 -36.23138194992407, 174.33636333000146 -36.29889094998694, 174.3052363299725 -36.28750894997634, 174.36523633002838 -36.259999949950725, 174.44220033010004 -36.16972694986665, 174.39609133005712 -36.1444459498431, 174.33510033000027 -36.23097294992369, 174.27887232994794 -36.11971794982007, 174.19525432987007 -36.13110894983068, 174.18579132986122 -36.171945949868714, 174.31358132998025 -36.24027294993235, 174.2554003299261 -36.27278194996263, 174.0658003297495 -36.16833594986535, 173.99273632968146 -36.11263594981348, 173.93109132962405 -35.98194594969176, 173.94732732963917 -35.911799949626435, 173.9111003296054 -35.87208194958944, 173.92135432961499 -36.00306394971143, 173.99010032967897 -36.13694594983612, 174.12439132980404 -36.26361794995409, 174.17831832985428 -36.279726949969096, 174.19941832987394 -36.34805495003273, 174.19192732986699 -36.377499950060155, 174.06760932975118 -36.39708195007839, 174.02053632970734 -36.27389094996366, 173.82608132952623 -36.03249994973885, 173.3972003291268 -35.57069994930876, 173.44662732917283 -35.4402819491873, 173.54025432926005 -35.430826949178496, 173.65554532936738 -35.31791794907334, 173.56414532928227 -35.27805494903622, 173.56303632928126 -35.37124594912301, 173.4131633291417 -35.38667294913737, 173.38177232911244 -35.524717949265934, 173.08969132884044 -35.21416394897671, 173.09538132884575 -35.18555494895007, 173.1662273289117 -35.17639094894153, 173.19192732893566 -35.128335948896776, 173.19858132894183 -35.051108948824854, 173.15914532890508 -34.95833594873845, 172.72247232849844 -34.4952819483072, 172.73913632851395 -34.43555494825157, 172.9119273286749 -34.414717948232166, 173.03888132879308 -34.43694594825287, 173.04164532879565 -34.519999948330224, 173.0120723287681 -34.52778194833747, 172.95857232871833 -34.467081948280935, 172.91053632867357 -34.546945948355315, 173.05331832880654 -34.665554948465775, 173.13580032888336 -34.830281948619195, 173.24273632898297 -34.8847269486699, 173.26691832900548 -35.017090948793175, 173.31747232905258 -35.01889094879485, 173.35885432909112 -34.98110894875966, 173.40081832913017 -34.863335948649976, 173.45080932917676 -34.80778194859824, 173.4980273292207 -34.868817948655085, 173.4009543291303 -34.910135948693565, 173.47150032919603 -34.99028194876821, 173.54165432926135 -34.98860894876665, 173.58941832930583 -34.92860894871077, 174.10107232978237 -35.12110894889005, 174.09857232978004 -35.17083594893636, 174.0219093297086 -35.164163948930145, 174.00970932969727 -35.218190948980464, 174.09718132977872 -35.22708194898874, 174.14358132982193 -35.328608949083296, 174.21801832989127 -35.322226949077354, 174.31997232998623 -35.23277294899404, 174.5758093302245 -35.60194594933786, 174.56663633021594 -35.649863949382485, 174.4767003301322 -35.64624594937912, 174.5206723301731 -35.72679994945414, 174.58386333023196 -35.764726949489464, 174.60244533024928 -35.844445949563706, 174.55787233020777 -35.84555494956474, 174.49105433014552 -35.76944594949386, 174.3596813300232 -35.72347294945104, 174.348727330013 -35.83625494955608, 174.48635433014118 -35.82471794954533, 174.52262733017494 -35.846945949566035, 174.48718133014194 -35.91499994962942, 174.49676333015088 -35.99139094970056, 174.60981833025613 -36.0398639497457, 174.61636333026223 -36.100863949802516, 174.78110033041565 -36.26694594995719, 174.81274533044513 -36.33916395002445, 174.76830933040378 -36.34639095003118, 174.70816333034776 -36.53749995020917, 174.808318330441 -36.805272950458544, 174.89663633052328 -36.87833595052659, 175.0555453306713 -36.880281950528406, 175.1616543307701 -36.95555495059851, 175.22566333082972 -36.938608950582726, 175.27831833087873 -36.96528195060757, 175.32885433092582 -37.026945950664995, 175.3184363309161 -37.14832695077804, 175.37329133096716 -37.216663950841685, 175.57912733115887 -37.24444595086756, 175.5891453311682 -37.16944595079771, 175.54248133112475 -36.99444595063473, 175.43524533102487 -36.866945950515984, 175.509427331094 -36.776108950431386, 175.4863543310725 -36.679726950341625, 175.4635913310513 -36.62138195028729, 175.36400033095856 -36.55902695022921, 175.35244533094777 -36.48999995016493, 175.5403913311228 -36.51736395019041, 175.6310723312073 -36.71055495037034, 175.7636093313307 -36.713617950373184, 175.84079133140256 -36.754172950410954, 175.73358133130273 -36.805826950459064, 175.70870933127958 -36.872635950521286, 175.73980933130855 -36.89263595053991, 175.7609543313282 -36.82902695048067, 175.84731833140864 -36.84291795049361, 175.9183093314748 -37.06749995070277, 175.88970933144816 -37.246945950869886, 175.92900033148476 -37.2593089508814, 175.9760723315286 -37.453054951061844, 176.0907913316354 -37.52833595113195, 176.1656003317051 -37.62103595121828, 176.06692733161321 -37.59639095119533, 176.09051833163517 -37.57673595117703, 176.02091833157033 -37.52713595113084, 175.94357233149833 -37.525417951129235, 175.99441833154566 -37.63889095123491, 176.24219133177644 -37.70944595130062, 176.2674913318 -37.67639095126984, 176.52470033203952 -37.77166395135857, 176.67108133217585 -37.86249995144317, 177.08273633255925 -37.96721795154069, 177.15942733263068 -38.01333595158364, 177.47357233292325 -37.9624999515363, 177.60134533304222 -37.87527295145506, 177.73218133316408 -37.68249995127553, 177.8719003332942 -37.65291795124798, 178.0094273334223 -37.585826951185496, 178.01800933343026 -37.5508269511529, 178.28191833367606 -37.56082695116221, 178.34970033373918 -37.62694595122379, 178.48886333386878 -37.644163951239825, 178.55761833393285 -37.695690951287816, 178.35052733373993 -38.004717951575614, 178.37801833376557 -38.094299951659046, 178.3177453337094 -38.259726951813114, 178.29844533369146 -38.539172952073365, 178.06427233347335 -38.71943595224125, 177.92886333334724 -38.72221795224384, 177.94107233335865 -38.793617952310335, 177.89386333331464 -39.06478195256288, 177.99800033341165 -39.12389095261793, 177.90997233332968 -39.25695495274185, 177.86496333328773 -39.28806395277083, 177.8211363332469 -39.103945952599354, 177.62884533306783 -39.07110895256877, 177.42609133287903 -39.0641639525623, 177.05496333253336 -39.20444595269295, 176.93358133242032 -39.3527819528311, 176.89859133238775 -39.44221795291439, 176.94662733243246 -39.66444595312136, 177.11744533259156 -39.6793089531352, 177.02192733250263 -39.77139095322096, 176.83413633232772 -40.18167295360306, 176.64413633215077 -40.379999953787774)), ((168.01165432411113 -46.73060895970224, 168.05469132415124 -46.79194495975936, 168.1828913242706 -46.86652695982882, 168.19192732427905 -46.9052729598649, 168.0483093241453 -46.93582695989336, 168.2255273243103 -46.97166395992674, 168.2594273243419 -47.00333595995623, 168.21774532430305 -47.07249996002065, 168.15637232424592 -47.11500896006024, 168.00135432410156 -47.1243089600689, 167.89108132399883 -47.19110896013111, 167.7824723238977 -47.167499960109126, 167.7692913238854 -47.14097296008442, 167.61975432374612 -47.223263960161056, 167.71927232383882 -47.21263596015116, 167.70108132382188 -47.24944496018544, 167.5223363236554 -47.27652696021066, 167.52998132366253 -47.20124496014055, 167.8091273239225 -46.91999995987862, 167.75638132387337 -46.808335959774624, 167.7729003238888 -46.70291795967645, 167.92190932402752 -46.682217959657166, 168.01165432411113 -46.73060895970224)), ((-176.6550639968848 -44.01198195717032, -176.52337299676213 -43.936108957099655, -176.55364499679033 -43.84583595701558, -176.65419099688398 -43.80014495697303, -176.683226996911 -43.83098195700175, -176.83375499705122 -43.8420909570121, -176.84251799705936 -43.80305495697574, -176.5577999967942 -43.71750895689607, -176.26919999652543 -43.763890956939264, -176.31366399656685 -43.79639095696953, -176.42447299667003 -43.75610895693202, -176.511417996751 -43.749444956925814, -176.53555499677347 -43.77167295694651, -176.4519449966956 -43.95499995711725, -176.3547359966051 -44.01250895717081, -176.37722699662604 -44.05611795721142, -176.51226399675178 -44.12055495727144, -176.60208199683544 -44.12028195727118, -176.6550639968848 -44.01198195717032)), ((166.29192732250954 -50.5683359632764, 166.1413543223693 -50.69805496339721, 166.22940032245128 -50.75417296344947, 166.23787232245917 -50.85180896354041, 165.89303632213802 -50.84763596353652, 165.90801832215197 -50.76278196345749, 166.089536322321 -50.66569096336707, 166.10830932233853 -50.5366639632469, 166.22357232244588 -50.52944496324018, 166.29192732250954 -50.5683359632764)), ((175.52303633110665 -36.348308950032965, 175.35885433095376 -36.229435949922255, 175.37578133096952 -36.069172949773, 175.41345433100457 -36.06833594977222, 175.5294183311126 -36.17860894987492, 175.55955433114065 -36.31875495000544, 175.52303633110665 -36.348308950032965)), ((166.7360543229231 -45.63779995868448, 166.75332732293924 -45.70194495874422, 166.71637232290482 -45.741672958781216, 166.50470032270766 -45.72277295876361, 166.57662732277464 -45.63805495868472, 166.71523632290376 -45.61597295866415, 166.7360543229231 -45.63779995868448)), ((173.7847003294877 -40.91138195428266, 173.82912732952906 -40.75778195413961, 173.9601183296511 -40.709726954094855, 173.95940932965038 -40.79514595417441, 173.92344532961692 -40.86597295424037, 173.80581832950736 -40.927781954297934, 173.7847003294877 -40.91138195428266)), ((169.20938132522662 -52.46579096504354, 169.23816332525342 -52.55430896512598, 169.18551832520438 -52.576954965147074, 169.02831832505797 -52.5591639651305, 169.0001093250317 -52.51889096509299, 169.16360932518398 -52.44582696502495, 169.2080093252253 -52.4441639650234, 169.20938132522662 -52.46579096504354)), ((175.16943633077733 -36.829181950480816, 175.08886333070228 -36.83360895048494, 175.00247233062186 -36.792781950446916, 175.01387233063247 -36.76902695042479, 175.1892723307958 -36.72846395038701, 175.212054330817 -36.756526950413146, 175.16943633077733 -36.829181950480816)), ((166.16690032239308 -50.90310896358818, 166.08636332231805 -50.92361796360728, 165.97357232221304 -50.90527296359019, 165.9274723221701 -50.854308963542735, 166.10772732233795 -50.8555639635439, 166.21538132243825 -50.88812696357423, 166.16690032239308 -50.90310896358818)), ((166.97134532314226 -45.1666639582457, 167.02998132319686 -45.3005549583704, 167.00526332317384 -45.311390958380485, 166.8910813230675 -45.24610895831969, 166.97134532314226 -45.1666639582457)), ((178.83328133418956 -49.669454962439254, 178.81637233417382 -49.72388196248994, 178.71719133408146 -49.70360896247106, 178.727445334091 -49.66666396243665, 178.80246333416085 -49.61500896238854, 178.8358003341919 -49.62291796239591, 178.83328133418956 -49.669454962439254))) +IOT British Indian Ocean Territory MULTIPOLYGON (((72.43253623509614 -7.4347359231050945, 72.42720023509116 -7.414163923085937, 72.3762272350437 -7.298954922978652, 72.35790023502662 -7.269654922951361, 72.36873623503672 -7.261526922943787, 72.4249912350891 -7.313890922992556, 72.43372723509725 -7.328054923005752, 72.43691823510022 -7.346663923023073, 72.43691823510022 -7.360281923035757, 72.43434523509782 -7.426599923097527, 72.48005423514039 -7.377008923051335, 72.46220923512377 -7.268817922950575, 72.44469123510746 -7.233472922917656, 72.49150923515106 -7.288472922968879, 72.49428223515363 -7.299163922978835, 72.48720023514704 -7.381945923055937, 72.43817223510138 -7.436245923106512, 72.43253623509614 -7.4347359231050945))) +REU Glorioso Is. MULTIPOLYGON (((47.29582721168575 -11.57778192696361, 47.28208221167296 -11.574581926960633, 47.27909121167016 -11.557572926944786, 47.29714521168697 -11.55409992694156, 47.30305421169248 -11.574999926961027, 47.29582721168575 -11.57778192696361))) +MDG Madagascar MULTIPOLYGON (((48.607791212907614 -20.416172935195007, 48.52110921282687 -20.697499935457017, 48.45638221276661 -20.98555493572529, 48.37055421268667 -21.29222693601089, 48.21777321254439 -21.744999936432578, 48.015273212355794 -22.19110893684804, 47.9008362122492 -22.48583593712253, 47.83721821218995 -22.867226937477724, 47.712491212073786 -23.339726937917774, 47.62888221199594 -23.561672938124488, 47.57582721194652 -23.83917293838293, 47.49805421187409 -24.01499993854668, 47.426182211807145 -24.124126938648303, 47.339436211726365 -24.306117938817806, 47.30332721169273 -24.50389093900199, 47.1986092115952 -24.74139093922318, 47.13527321153623 -24.831672939307268, 47.127218211528714 -24.86111793933469, 47.13304521153415 -24.92805493939703, 47.0944452114982 -24.973890939439713, 46.730273211159044 -25.16749993962003, 46.646663211081176 -25.191672939642544, 46.503054210947425 -25.161663939614584, 46.413327210863855 -25.161663939614584, 46.336663210792466 -25.17361793962573, 46.17194521063905 -25.22694593967539, 45.92304521040725 -25.328890939770332, 45.739163210236 -25.43610893987018, 45.65332721015605 -25.50916393993822, 45.55028221006009 -25.56222693998764, 45.46249120997831 -25.578335940002646, 45.21471820974756 -25.58833594001196, 45.12735420966621 -25.548617939974974, 44.78249120934501 -25.32110893976308, 44.35582720894766 -25.255554939702037, 44.29770020889353 -25.16312693961595, 44.32305420891714 -25.16749993962003, 44.389163208978715 -25.23278193968082, 44.411945208999924 -25.21167293966117, 44.401936208990605 -25.193335939644086, 44.174718208778984 -25.064726939524306, 44.13971820874639 -25.05389093951422, 44.10832720871716 -25.061672939521472, 44.03221820864627 -25.00444593946817, 44.01708220863219 -24.98083593944618, 44.02194520863671 -24.94444593941229, 44.00527320862119 -24.88028193935253, 43.9177732085397 -24.74110893922291, 43.914300208536446 -24.717645939201063, 43.93124520855224 -24.67278193915928, 43.905827208528564 -24.598890939090467, 43.834445208462085 -24.505281939003282, 43.71193620834799 -24.417226938921274, 43.664163208303506 -24.31139093882271, 43.66221820830168 -23.868617938410353, 43.624991208267005 -23.761672938310753, 43.63638220827764 -23.657781938213986, 43.64971820829004 -23.6237549381823, 43.747909208381486 -23.5773639381391, 43.759991208392734 -23.468054938037298, 43.74528220837905 -23.443054938014015, 43.6305542082722 -23.347499937925022, 43.60694520825021 -23.278054937860347, 43.58805420823262 -23.07833593767434, 43.49277320814389 -23.00805493760889, 43.36193620802203 -22.852781937464272, 43.23888220790744 -22.282499936933164, 43.26082720792786 -22.213335936868745, 43.23682720790552 -22.06874593673409, 43.27916320794495 -21.90833593658469, 43.31443620797779 -21.88278193656089, 43.32804520799047 -21.846390936527, 43.33416320799617 -21.758608936445242, 43.43110920808644 -21.663890936357035, 43.47235420812487 -21.668054936360917, 43.466109208119036 -21.463335936170253, 43.47833620813043 -21.383335936095747, 43.500545208151124 -21.3338909360497, 43.57971820822485 -21.28055493600003, 43.698882208335846 -21.271945935992008, 43.741100208375144 -21.286108936005192, 43.77666320840828 -21.26472693598528, 43.808609208438014 -21.225281935948544, 43.84110920846828 -21.156945935884906, 43.87554520850037 -21.00889093574702, 43.878882208503484 -20.945835935688294, 43.91166320853401 -20.849999935599044, 43.96804520858652 -20.764163935519093, 43.99194520860877 -20.74361793549997, 44.015273208630504 -20.74583593550203, 44.03610920864989 -20.72389093548159, 44.176109208780275 -20.44194593521901, 44.34027320893318 -20.157217934953835, 44.437491209023705 -20.068608934871307, 44.4827732090659 -19.965835934775598, 44.4719362090558 -19.877363934693207, 44.44028220902632 -19.845554934663582, 44.39971820898853 -19.832499934651423, 44.37082720896163 -19.777090934599812, 44.440273209026316 -19.552781934390907, 44.476100209059666 -19.54249993438134, 44.48319120906626 -19.52694593436685, 44.46916320905322 -19.438335934284325, 44.4255542090126 -19.3577819342093, 44.26193620886022 -19.139999934006482, 44.231382208831775 -19.081108933951626, 44.231382208831775 -18.97360893385151, 44.248609208847796 -18.961672933840404, 44.261382208859715 -18.841945933728894, 44.2311092088315 -18.741108933634976, 44.16360020876863 -18.591117933495298, 44.035691208649496 -18.408054933324806, 44.043609208656875 -18.20139093313233, 44.001109208617294 -17.948608932896903, 44.02693620864136 -17.846945932802228, 44.031391208645516 -17.75694593271841, 43.928891208550056 -17.611945932583367, 43.92166320854332 -17.580554932554136, 43.931391208552384 -17.50055493247963, 43.95250020857202 -17.439445932422714, 44.13777320874459 -17.176390932177725, 44.35166320894379 -16.78833593181632, 44.38332720897327 -16.763890931793554, 44.43777320902399 -16.692217931726802, 44.46610920905036 -16.49583593154391, 44.458609209043374 -16.466663931516734, 44.40444520899294 -16.382781931438615, 44.39805420898699 -16.34166393140032, 44.442773209028644 -16.203890931272014, 44.46027320904494 -16.183890931253387, 44.48888220907159 -16.177226931247176, 44.87360020942987 -16.21028193127796, 45.03443620957967 -16.120554931194405, 45.14069120967861 -15.993472931076042, 45.26500020979438 -15.927499931014609, 45.27721820980577 -15.943054931029096, 45.29360920982103 -16.05555493113387, 45.288600209816366 -16.09680893117229, 45.302636209829444 -16.117781931191814, 45.395554209915986 -16.066945931144474, 45.41277320993203 -16.041390931120674, 45.401109209921145 -16.026672931106972, 45.39221820991287 -16.03329093111313, 45.37444520989632 -16.006390931088077, 45.367082209889475 -15.983335931066605, 45.39054520991132 -15.973335931057292, 45.572491210080756 -15.949163931034775, 45.59416321010096 -15.987499931070488, 45.576382210084404 -16.038335931117828, 45.61777321012295 -16.05749993113568, 45.64388221014727 -15.883054930973216, 45.716663210215046 -15.791672930888112, 45.82610921031696 -15.814726930909572, 45.8783272103656 -15.782217930879298, 45.921391210405716 -15.772499930870254, 45.95750021043932 -15.783890930880858, 45.95194521043416 -15.835281930928716, 45.965000210446306 -15.853335930945534, 46.06360921053815 -15.871945930962866, 46.07249121054642 -15.861108930952767, 46.07054521054462 -15.784172930881127, 46.048882210524454 -15.788890930885515, 46.01138221048953 -15.823890930918111, 46.004854210483444 -15.808890930904141, 46.06888221054308 -15.739999930839986, 46.151382210619914 -15.703608930806084, 46.232500210695434 -15.714172930815934, 46.24610921070811 -15.75972693085835, 46.23554521069829 -15.806108930901544, 46.24666321070865 -15.846945930939583, 46.28000021073967 -15.932499931019265, 46.30221821076037 -15.9611089310459, 46.331109210787275 -15.977217931060906, 46.477773210923885 -15.961390931046168, 46.447218210895414 -15.885835930975801, 46.380136210832944 -15.835690930929104, 46.30347321076155 -15.712363930814249, 46.33833621079401 -15.62472693073262, 46.47360921091999 -15.498054930614657, 46.70527321113576 -15.364726930490477, 46.88027321129874 -15.230554930365528, 46.947218211361076 -15.198890930336034, 46.96832721138074 -15.202217930339131, 47.07638221148139 -15.33444593046228, 47.05499121146144 -15.36889093049436, 47.007218211416955 -15.405835930528767, 46.962218211375045 -15.502226930618534, 46.95944521137247 -15.558054930670536, 47.04221821144955 -15.493608930610506, 47.0930452114969 -15.479726930597579, 47.12900921153039 -15.445181930565411, 47.18078221157862 -15.458772930578064, 47.223618211618486 -15.448463930568465, 47.23673621163073 -15.417290930539437, 47.19610921159287 -15.401390930524627, 47.11193621151449 -15.305554930435378, 47.05971821146585 -15.2233359303588, 47.05832721146456 -15.184999930323102, 47.10874521151152 -15.115554930258426, 47.31055421169947 -14.912499930069316, 47.28688221167741 -14.85573593001645, 47.29277321168291 -14.84222693000386, 47.341663211728445 -14.777781929943842, 47.45499121183397 -14.665281929839068, 47.46555421184382 -14.663608929837508, 47.50082721187667 -14.711672929882283, 47.506382211881856 -14.826945929989634, 47.412500211794395 -14.971390930124159, 47.40916321179131 -15.086945930231778, 47.42721821180811 -15.11055493025377, 47.4919452118684 -15.076663930222196, 47.56693621193824 -14.950281930104495, 47.643609212009636 -14.778054929944105, 47.69860921206086 -14.683608929856135, 47.81127321216579 -14.603890929781898, 47.97860921232163 -14.625835929802335, 47.99889121234054 -14.686672929859, 47.987500212329905 -14.75999992992729, 47.99708221233885 -14.767226929934012, 48.01332721235397 -14.749445929917457, 48.0225002123625 -14.712363929882926, 48.00694521234803 -14.622781929799487, 47.919163212266284 -14.56917292974957, 47.75097321210964 -14.603199929781255, 47.720836212081565 -14.55833592973947, 47.69943621206164 -14.420554929611157, 47.717773212078725 -14.3469459295426, 47.77888221213564 -14.26139092946292, 47.83000021218322 -14.233890929437308, 47.87527321222541 -14.25222692945438, 47.9277732122743 -14.253890929455935, 47.948382212293495 -14.177972929385234, 47.93902721228477 -14.131108929341579, 47.90430021225242 -14.096945929309769, 47.91416321226163 -14.088890929302266, 47.98721821232965 -14.120281929331497, 48.01666321235709 -14.147499929356854, 47.97138221231492 -14.306663929505078, 47.99304521233509 -14.326945929523973, 48.00305421234441 -14.32278192952009, 48.04833621238657 -14.155554929364357, 48.05250021239044 -14.106108929318296, 48.04110921237984 -14.06889092928364, 47.994718212336636 -14.05167292926761, 47.94193621228749 -14.006390929225432, 47.946391212291644 -13.996663929216368, 47.98305421232578 -13.99471792921456, 48.022082212362136 -13.960554929182749, 47.91055421225826 -13.897499929124024, 47.883609212233154 -13.826945929058311, 47.8725002122228 -13.776672929011497, 47.90527321225335 -13.59639092884359, 48.01971821235992 -13.581108928829352, 48.04777321238606 -13.54999992880039, 48.02304521236303 -13.520835928773224, 48.06332721240054 -13.518054928770638, 48.15277321248385 -13.60083592884773, 48.183463212512436 -13.757635928993764, 48.24194521256689 -13.804445929037357, 48.28721821260905 -13.808054929040722, 48.33554521265407 -13.773054929008126, 48.35582721267295 -13.603890928850575, 48.33763621265601 -13.550835928801163, 48.50388221281085 -13.51555492876831, 48.50054521280774 -13.444172928701832, 48.53694521284163 -13.425554928684491, 48.66555421296141 -13.449163928706469, 48.73596321302699 -13.424163928683186, 48.7927732130799 -13.367781928630677, 48.823882213108874 -13.11999992839992, 48.91805421319657 -12.956108928247275, 48.959445213235114 -12.82222692812259, 48.902500213182066 -12.673890927984445, 48.87971821316086 -12.573054927890539, 48.78221821307005 -12.465835927790678, 48.73360021302477 -12.437635927764418, 48.76639121305533 -12.3991729277286, 48.850827213133954 -12.413335927741784, 48.87028221315208 -12.42305492775084, 48.90721821318647 -12.495835927818618, 48.94416321322089 -12.485835927809305, 48.9773542132518 -12.345135927678271, 49.0638912133324 -12.276672927614513, 49.096663213362916 -12.280554927618127, 49.164445213426035 -12.238054927578546, 49.191518213451246 -12.159781927505648, 49.18943621344931 -12.125554927473772, 49.12943621339343 -12.103608927453323, 49.1572182134193 -12.053890927407025, 49.25832721351347 -11.945554927306134, 49.297218213549684 -11.964445927323723, 49.32054521357142 -12.003054927359685, 49.356945213605314 -12.090835927441432, 49.37000021361746 -12.1872269275312, 49.36736321361502 -12.205835927548534, 49.32555421357608 -12.157499927503522, 49.26193621351683 -12.143890927490844, 49.24221821349846 -12.169863927515038, 49.2325002134894 -12.224999927566387, 49.27096321352525 -12.282081927619544, 49.31079121356234 -12.257135927596309, 49.32750021357788 -12.301108927637259, 49.34638221359549 -12.303335927639338, 49.36832721361591 -12.28360892762096, 49.36639121361412 -12.262499927601311, 49.42860921367205 -12.282781927620192, 49.51832721375561 -12.34583592767892, 49.59555421382754 -12.50778192782974, 49.59666321382858 -12.532499927852768, 49.574891213808286 -12.565099927883125, 49.56455421379866 -12.6138269279285, 49.57061821380432 -12.648772927961048, 49.59430021382636 -12.65019092796237, 49.79804521401613 -12.81610892811689, 49.90027321411134 -12.958335928249355, 49.943327214151424 -13.039445928324895, 49.93332721414211 -13.181108928456823, 49.94360021415167 -13.22444592849719, 49.97943621418506 -13.346672928611028, 50.03805421423965 -13.46389092872019, 50.037773214239394 -13.513335928766239, 50.0666632142663 -13.541672928792636, 50.10194521429915 -13.627499928872567, 50.148327214342345 -13.8202819290521, 50.14416321433848 -13.988890929209134, 50.17610921436821 -14.061945929277172, 50.160000214353204 -14.221672929425935, 50.20277321439306 -14.269863929470816, 50.21694521440625 -14.307635929505992, 50.190827214381926 -14.431108929620976, 50.20000021439046 -14.570281929750593, 50.271945214457475 -14.826108929988848, 50.33749121451851 -14.998608930149501, 50.483891214654875 -15.203890930340691, 50.50139121467117 -15.322781930451413, 50.433609214608026 -15.579999930690974, 50.299718214483335 -15.873608930964409, 50.23221821442047 -15.974445931058327, 50.17277321436512 -15.97972693106324, 50.13792721433265 -15.92751793101462, 50.10055421429786 -15.920554931008141, 50.033882214235774 -15.86694593095821, 50.026663214229046 -15.79833593089431, 49.9038822141147 -15.56110893067337, 49.902218214113134 -15.468335930586974, 49.8661092140795 -15.432499930553604, 49.75139121397268 -15.435835930556706, 49.720554213943956 -15.447499930567574, 49.67693621390333 -15.4883359306056, 49.63360921386297 -15.55749993067002, 49.65749121388521 -15.681945930785915, 49.734027213956495 -15.904163930992866, 49.68777321391343 -16.009999931091443, 49.68138221390748 -16.054999931133352, 49.709718213933854 -16.127499931200873, 49.81693621403372 -16.181945931251576, 49.85401821406825 -16.231390931297625, 49.8254092140416 -16.34333593140188, 49.83444521405002 -16.41639093146992, 49.859445214073304 -16.434445931486735, 49.86305421407667 -16.455281931506136, 49.8486092140632 -16.554172931598245, 49.791936214010434 -16.65139093168878, 49.719163213942664 -16.714726931747762, 49.72083621394421 -16.756945931787087, 49.73666321395896 -16.78639093181451, 49.78860921400732 -16.83028193185538, 49.596936213828826 -16.908608931928327, 49.42277321366663 -17.315835932307593, 49.421663213665596 -17.362499932351056, 49.45471821369637 -17.41541793240033, 49.475273213715525 -17.486945932466952, 49.51027321374812 -17.711390932675982, 49.414445213658865 -18.072499933012296, 49.36832721361591 -18.35139093327203, 49.1438822134069 -18.940281933820472, 49.06638221333472 -19.088054933958105, 49.02499121329615 -19.215835934077106, 48.99638221326953 -19.356390934208008, 48.87554521315698 -19.628335934461276, 48.813045213098775 -19.933054934745073, 48.759163213048595 -20.09111793489228, 48.63638221293425 -20.336672935120973, 48.607791212907614 -20.416172935195007)), ((48.3319362126507 -13.419999928679317, 48.22235421254865 -13.405417928665727, 48.20721821253454 -13.393054928654223, 48.19221821252057 -13.338054928603, 48.196663212524726 -13.269999928539619, 48.28416321260622 -13.195972928470667, 48.32082721264035 -13.197917928472478, 48.32500021264423 -13.211108928484762, 48.36193621267864 -13.394163928655246, 48.36151821267825 -13.40833592866845, 48.3319362126507 -13.419999928679317)), ((49.827218214043285 -17.095281932102182, 49.817636214034366 -17.04430893205472, 49.860545214074335 -16.913890931933253, 49.96166321416851 -16.75972693178967, 50.01055421421404 -16.72556393175786, 49.93971821414806 -16.907499931927305, 49.827218214043285 -17.095281932102182))) +MUS Mauritius MULTIPOLYGON (((57.52944522121655 -20.520554935292225, 57.47083622116196 -20.516108935288074, 57.386109221083046 -20.503054935275927, 57.306309221008746 -20.456108935232194, 57.307082221009466 -20.434026935211634, 57.37666322107427 -20.244999935035594, 57.38555422108254 -20.22583593501774, 57.40471822110038 -20.195835934989802, 57.41360922110866 -20.18360893497841, 57.53388222122069 -20.020554934826563, 57.592427221275216 -19.98659993479494, 57.624445221305024 -19.98639093479474, 57.67221822134951 -19.99999993480742, 57.68278222135936 -20.0141639348206, 57.79540922146424 -20.227499935019296, 57.791936221461015 -20.27083593505965, 57.78958222145883 -20.285972935073744, 57.72277322139661 -20.438890935216165, 57.70527322138031 -20.455281935231426, 57.67944522135625 -20.479172935253686, 57.670000221347436 -20.483890935258074, 57.57249122125663 -20.514163935286263, 57.52944522121655 -20.520554935292225)), ((63.478054226756626 -19.67749993450707, 63.4957542267731 -19.68368193451282, 63.495554226772924 -19.706872934534417, 63.46888222674809 -19.734726934560356, 63.366109226652355 -19.76639093458985, 63.353336226640465 -19.761390934585194, 63.33200922662061 -19.742990934568056, 63.333400226621904 -19.71562693454257, 63.3483272266358 -19.707499934535008, 63.434436226716 -19.67416393450395, 63.46443622674394 -19.673335934503186, 63.478054226756626 -19.67749993450707))) +MYT Mayotte MULTIPOLYGON (((45.13638220967462 -12.992499928281177, 45.12416320966324 -12.99139092828014, 45.09750020963838 -12.985835928274966, 45.07000020961277 -12.957226928248318, 45.06284520960611 -12.894099928189533, 45.084582209626376 -12.890626928186293, 45.096527209637486 -12.905554928200203, 45.11789120965739 -12.901108928196052, 45.12452720966357 -12.888863928184648, 45.10360920964408 -12.828335928128283, 45.05832720960191 -12.750835928056105, 45.040963209585755 -12.738472928044587, 45.039163209584075 -12.71333592802118, 45.045273209589766 -12.695281928004363, 45.07889120962108 -12.66249992797384, 45.20832720974161 -12.727499928034376, 45.222773209755076 -12.739445928045498, 45.22971820976153 -12.754863928059862, 45.204991209738495 -12.8497269281482, 45.17700920971245 -12.925345928218633, 45.181109209716254 -12.971390928261513, 45.13638220967462 -12.992499928281177)), ((45.28008220980843 -12.805126928106674, 45.26312720979266 -12.768281928072355, 45.283763209811866 -12.746899928052443, 45.293345209820785 -12.785226928088136, 45.28008220980843 -12.805126928106674))) +REU Reunion MULTIPOLYGON (((55.710000219522044 -20.99805493573693, 55.74500021955464 -21.057499935792293, 55.78540921959228 -21.10499993583653, 55.800282219606146 -21.1152819358461, 55.82082721962527 -21.123608935853852, 55.84208221964508 -21.128054935858003, 55.850273219652706 -21.13402693586356, 55.85305421965529 -21.16860893589576, 55.82402721962825 -21.32312693603967, 55.80693621961234 -21.341663936056932, 55.79040921959694 -21.350417936065085, 55.72193621953318 -21.364445936078155, 55.67416321948869 -21.37389093608695, 55.65943621947497 -21.373608936086683, 55.53333621935752 -21.3547269360691, 55.42777321925922 -21.31249993602978, 55.35194521918859 -21.274445935994336, 55.343327219180566 -21.268608935988894, 55.293327219134 -21.206390935930955, 55.229718219074755 -21.076390935809883, 55.22555421907089 -21.061390935795913, 55.22055421906623 -21.024999935762025, 55.29444521913504 -20.921672935665796, 55.40527321923827 -20.868890935616633, 55.4149912192473 -20.86555493561353, 55.45250021928223 -20.856526935605118, 55.57082721939244 -20.878890935625947, 55.612218219430986 -20.88861793563501, 55.66000021947548 -20.902645935648067, 55.66971821948454 -20.91055493565544, 55.687773219501366 -20.92805493567174, 55.69777321951068 -20.945835935688294, 55.702773219515336 -20.954999935696833, 55.70555421951792 -20.96583593570692, 55.710000219522044 -20.99805493573693))) +SYC Seychelles MULTIPOLYGON (((55.53249121935673 -4.789163920641215, 55.5243002193491 -4.786945920639155, 55.51110921933682 -4.776108920629056, 55.477491219305506 -4.7405549205959545, 55.37540921921044 -4.625135920488461, 55.44527321927552 -4.558054920425988, 55.463882219292856 -4.551663920420026, 55.47500021930318 -4.5594459204272795, 55.53819121936206 -4.6637549205244255, 55.54055421936425 -4.683890920543178, 55.53527321935934 -4.763054920616909, 55.53249121935673 -4.789163920641215)), ((46.2691632107296 -9.463054924994125, 46.26305421072391 -9.462499924993608, 46.238054210700625 -9.457363924988826, 46.221663210685364 -9.447226924979375, 46.21166321067605 -9.433335924966443, 46.20610921067086 -9.419172924953259, 46.205691210670466 -9.39680892493243, 46.21610921068017 -9.40736392494226, 46.238327210700874 -9.421390924955318, 46.26750021072803 -9.429717924963072, 46.30221821076037 -9.428054924961529, 46.36527321081911 -9.41305492494756, 46.42555421087525 -9.386108924922453, 46.44971821089774 -9.34646392488554, 46.46804521091482 -9.348890924887797, 46.4830542109288 -9.353608924892185, 46.511800210955556 -9.36513592490293, 46.52130921096443 -9.377426924914374, 46.51388221095752 -9.393608924929438, 46.47610021092231 -9.422499924956355, 46.465273210912244 -9.424717924958415, 46.44916321089724 -9.4255549249592, 46.418609210868766 -9.419172924953259, 46.405545210856616 -9.418608924952721, 46.39527321084705 -9.421390924955318, 46.3330542107891 -9.439445924972134, 46.32277321077953 -9.442781924975236, 46.2691632107296 -9.463054924994125))) +CXR Christmas I. MULTIPOLYGON (((105.70140026608016 -10.510972925970066, 105.68310026606315 -10.47413592593577, 105.6445002660272 -10.466135925928313, 105.62900026601272 -10.437308925901462, 105.6546002660366 -10.414890925880584, 105.715200266093 -10.384472925852265, 105.73660026611299 -10.384081925851888, 105.75090026612628 -10.394081925861201, 105.75190026612722 -10.483754925944723, 105.73630026611266 -10.504563925964106, 105.70140026608016 -10.510972925970066))) +CCK Cocos Is. MULTIPOLYGON (((96.85248225783897 -12.199445927542584, 96.83804525782551 -12.193472927537016, 96.81944525780824 -12.178054927522666, 96.81749125780641 -12.166663927512047, 96.82360925781211 -12.130417927478291, 96.8648452578505 -12.192081927535725, 96.85248225783897 -12.199445927542584))) +IDN Indonesia MULTIPOLYGON (((109.64856326975627 2.0734090857500433, 117.23943627682581 4.358336087878058, 119.00901827847389 0.9838910847353617, 114.63707227440216 -4.1850729200786105, 109.64856326975627 2.0734090857500433)), ((103.46638226399864 -0.764454916892916, 105.72887226610578 -5.898263921674143, 95.23358225633126 5.570136089006624, 97.51482725845585 5.249445088707958, 103.46638226399864 -0.764454916892916)), ((139.0558182971439 -7.250281922933311, 132.9002542914111 -4.089445919989558, 131.25555428987934 -0.8227819169472355, 135.1177362934763 -3.36860891931822, 141.0024722989569 -2.6070819186089977, 139.0558182971439 -7.250281922933311)), ((123.39220928255605 -0.9486359170644505, 121.2987182806063 -1.8004179178577289, 122.89373628209177 -4.3980549202769765, 119.46500027889851 -5.563608921362473, 120.03276327942729 0.7125730844826705, 123.39220928255605 -0.9486359170644505)), ((110.05640027013607 -7.897508923536094, 106.56720926688655 -7.416945923088534, 105.21595426562806 -6.7752179224908815, 110.92734527094723 -6.41118192215184, 114.62165427438782 -8.743890924324347, 110.05640027013607 -7.897508923536094)), ((127.9013822867555 -0.4569459166065286, 127.39888228628752 1.18694508492446, 127.65318228652438 1.8706910855612477, 128.0540632868977 2.192427085860899, 127.9013822867555 -0.4569459166065286)), ((130.829954289483 -3.8727819197877693, 128.18187228701674 -3.0740999190439453, 127.9183182867713 -3.559445919495957, 127.85609128671337 -3.1866639191487707, 128.1719182870075 -2.856945918841703, 129.52664528826915 -2.783608918773396, 130.829954289483 -3.8727819197877693)), ((119.18450927863728 -8.700554924283992, 118.40511827791141 -8.589581924180635, 118.16859127769118 -8.865135924437268, 117.43887227701157 -9.041672924601684, 116.74359127636404 -8.98179992454591, 118.2570002777735 -8.660835924246996, 117.94553627748343 -8.082635923708509, 119.18450927863728 -8.700554924283992)), ((122.83777228203968 -8.598181924188651, 121.01639128034338 -8.949717924516037, 119.796236279207 -8.720345924302421, 122.86803628206786 -8.072008923698604, 122.83777228203968 -8.598181924188651)), ((125.12941828417394 -9.435290924968257, 124.43525428352746 -10.162781925645788, 123.4883092826455 -10.316390925788852, 123.97734528310099 -9.3569459248953, 125.12941828417394 -9.435290924968257)), ((138.5597542966819 -7.379081923053263, 138.84884529695114 -8.0783359237045, 137.6449092958299 -8.4351359240368, 138.0182452961776 -7.625208923282486, 138.5597542966819 -7.379081923053263)), ((106.44442726677215 -2.981390918957601, 105.13755426555508 -2.0758359181142367, 105.39333626579327 -1.606663917677281, 106.02679126638321 -1.5747179176475328, 106.44442726677215 -2.981390918957601)), ((119.20054527865221 -9.747499925259035, 119.93983627934074 -9.289654924832632, 120.83318228017276 -10.077363925566246, 120.22026327960191 -10.24833592572547, 119.20054527865221 -9.747499925259035)), ((126.12790028510386 -3.119681919086389, 126.99387228591036 -3.144999919109978, 127.23664528613642 -3.6174999195500277, 126.50804528545785 -3.7688909196910174, 126.12790028510386 -3.119681919086389)), ((114.4785912742546 -8.09003592371539, 115.19568227492243 -8.058054923685617, 115.70984527540128 -8.404445924008215, 115.10261827483572 -8.846799924420182, 114.4785912742546 -8.09003592371539)), ((116.33980927598799 -8.21854592383508, 116.58283627621432 -8.896181924466177, 115.85775427553904 -8.822572924397619, 116.07303627573953 -8.731108924312437, 116.33980927598799 -8.21854592383508)), ((123.07554528226109 -4.40350892028205, 123.21463628239064 -5.293681921111087, 122.65544528186985 -5.68503592147556, 122.85442728205516 -4.600554920465569, 123.07554528226109 -4.40350892028205)), ((108.29331826849409 -2.8537909188387687, 108.07738226829298 -3.2273639191866863, 107.6121272678597 -3.212081919172448, 107.66609126790996 -2.5643729185692195, 108.29331826849409 -2.8537909188387687)), ((112.93941827282111 -6.893335922600883, 113.94110027375399 -6.865417922574878, 114.127963273928 -6.973263922675315, 112.7169362726139 -7.148754922838762, 112.93941827282111 -6.893335922600883)), ((97.81079125873146 0.5497180843310048, 97.69927225862762 0.5780540843573903, 97.11468225808318 1.3933360851166867, 97.90934525882324 1.039236084786907, 97.81079125873146 0.5497180843310048)), ((99.28220926010187 -1.7394459178009498, 98.87622725972375 -1.6769459177427422, 98.65748225952001 -0.971108917085374, 98.92915425977304 -0.9502819170659791, 99.28220926010187 -1.7394459178009498)), ((131.6457182902427 -7.116654922808863, 131.63010029022814 -7.629163923286171, 131.10856328974245 -7.998472923630118, 131.23704528986212 -7.4909729231574715, 131.6457182902427 -7.116654922808863)), ((130.75942728941726 -0.4527819166026461, 130.21932728891426 -0.2112549163777118, 130.8247092894781 -0.0086729161890418, 131.29983628992056 -0.1676359163370904, 130.75942728941726 -0.4527819166026461)), ((122.7091542819199 -4.618335920482124, 122.64359128185885 -5.352363921165747, 122.28470928152461 -5.381735921193098, 122.37421828160797 -4.755899920610247, 122.7091542819199 -4.618335920482124)), ((124.42492728351783 -1.6571179177242783, 125.29073628432417 -1.7332639177951847, 125.3199822843514 -1.8874269179387682, 124.40532728349956 -2.016108918058606, 124.42492728351783 -1.6571179177242783)), ((135.46084529379584 -0.662426916797898, 135.8516362941598 -0.7034729168361196, 136.38636329465777 -1.1152089172195758, 135.8842822941902 -1.1855549172851028, 135.46084529379584 -0.662426916797898)), ((128.1411092869788 -1.5882359176601284, 128.07885428692083 -1.716945917779995, 127.3783092862684 -1.6338909177026437, 127.64360028651544 -1.328335917418073, 128.1411092869788 -1.5882359176601284)), ((134.12094529254796 -6.170354921927554, 134.51572729291564 -6.592499922320712, 134.20052729262204 -6.920835922626495, 134.0515002924833 -6.777635922493133, 134.12094529254796 -6.170354921927554)), ((125.97220928495886 -7.658608923313594, 126.61845428556069 -7.564999923226424, 126.79054528572095 -7.74971792339845, 125.78276328478239 -8.020417923650555, 125.97220928495886 -7.658608923313594)), ((123.55386328270657 -1.3049999173963442, 123.1815092823598 -1.624026917693456, 122.80567228200977 -1.4544459175355229, 122.92220928211833 -1.1769459172770809, 123.55386328270657 -1.3049999173963442)), ((135.505036293837 -1.600399917671453, 136.80359129504637 -1.7474999178084545, 136.90066329513678 -1.7961819178537866, 136.21884529450176 -1.8744459179266784, 135.505036293837 -1.600399917671453)), ((128.276645287105 2.017300085697798, 128.2321822870636 2.3061090859667672, 128.57641828738423 2.62910008626757, 128.61996328742475 2.21528208588218, 128.276645287105 2.017300085697798)), ((124.47499128356446 -8.135872923758086, 125.0874912841349 -8.155417923776284, 125.13970928418354 -8.325690923934872, 124.35915428345658 -8.459999924059957, 124.47499128356446 -8.135872923758086)), ((134.51617229291605 -5.4364359212440405, 134.7302362931154 -5.977081921747555, 134.63021829302227 -5.934863921708242, 134.30233629271686 -6.022781921790113, 134.51617229291605 -5.4364359212440405)), ((130.3505542890365 -1.6801999177457674, 130.38150028906534 -2.010972918053824, 129.7179452884473 -1.8881909179394825, 130.0380272887454 -1.741390917802761, 130.3505542890365 -1.6801999177457674)), ((116.27105427592392 -3.2852549192406, 116.30531827595587 -3.9072179198198427, 116.05526327572295 -4.042363919945714, 116.0127722756834 -3.632781919564252, 116.27105427592392 -3.2852549192406)), ((127.53130028641084 -0.3103459164699984, 127.89575428675028 -0.7779179169054515, 127.81525428667533 -0.8718089169929044, 127.30261828619786 -0.5168089166622849, 127.53130028641084 -0.3103459164699984)), ((96.48412725749591 2.371109086027303, 96.33212725735439 2.3525730860100396, 95.69691825676279 2.8188910864443386, 95.88331825693638 2.918891086537471, 96.48412725749591 2.371109086027303)), ((108.06157226827827 3.851864087406369, 107.99165426821315 4.024164087566831, 108.25139126845505 4.18000008771196, 108.32110026851996 3.6826360872487527, 108.06157226827827 3.851864087406369)), ((134.47827229288072 -5.988772921758439, 134.76693629314957 -6.089999921852723, 134.60551829299925 -6.369581922113099, 134.2685272926854 -6.114926921875934, 134.47827229288072 -5.988772921758439)), ((130.8993542895476 -0.8914459170111826, 131.07467228971086 -0.9727819170869338, 130.96136328960534 -1.356945917444719, 130.63930028930542 -0.9869459171001296, 130.8993542895476 -0.8914459170111826)), ((103.00657226357043 0.6927270844641953, 102.48026326308025 0.8066640845703006, 102.47330026307378 1.1177820848600533, 103.01136326357488 0.8500000846106559, 103.00657226357043 0.6927270844641953)), ((101.77429126242276 1.9395000856253404, 101.60163626226199 1.7091640854108192, 101.39371826206832 1.9155540856030342, 101.64205426229961 2.1200000857934356, 101.77429126242276 1.9395000856253404)), ((122.85630928205694 -10.75974592620176, 123.07527228226087 -10.681245926128653, 123.39096328255488 -10.438054925902165, 123.19831828237545 -10.823054926260724, 122.85630928205694 -10.75974592620176)), ((123.40610028256896 -8.596945924187494, 123.40248228256559 -8.274999923887663, 123.93247228305921 -8.235481923850855, 123.53610028269003 -8.566945924159555, 123.40610028256896 -8.596945924187494)), ((125.4158452844407 -1.7838819178423364, 125.65359128466213 -1.8244459178801122, 126.34887228530965 -1.8198639178758498, 125.46666328448799 -1.939999917987734, 125.4158452844407 -1.7838819178423364)), ((104.6668912651167 1.0238270847725488, 104.58330926503885 0.8191640845819421, 104.23136326471109 1.0850000848295167, 104.40871826487626 1.1968090849336477, 104.6668912651167 1.0238270847725488)), ((102.4774362630776 1.2060540849422665, 102.37329126298062 0.9252820846807737, 102.21094526282945 1.4036090851262486, 102.28899126290213 1.4062450851287025, 102.4774362630776 1.2060540849422665)), ((109.75638226985666 -1.0325179171425702, 109.77581826987478 -1.1423639172448787, 109.4185912695421 -1.2633359173575371, 109.49248226961089 -0.9797179170933958, 109.75638226985666 -1.0325179171425702)), ((102.4952452630942 1.436336085156725, 102.49190926309109 1.2597180849922438, 102.30885426292065 1.4205540851420295, 102.10051826272661 1.4658360851842076, 101.99407226262747 1.6069450853156155, 102.4952452630942 1.436336085156725)), ((121.98135428124209 -5.08110892091311, 122.05358228130933 -5.424717921233125, 121.96180028122387 -5.476663921281499, 121.80830928108088 -5.26916392108825, 121.98135428124209 -5.08110892091311)), ((126.74970928568297 3.9838910875293294, 126.69053628562784 4.070000087609515, 126.74186328567566 4.539791088047053, 126.91581828583764 4.275836087801224, 126.74970928568297 3.9838910875293294)), ((100.45942726119819 -3.333890919285892, 100.19136326094855 -2.975835918952427, 100.19748226095425 -2.78694591877651, 100.46970926120781 -3.023890918997182, 100.45942726119819 -3.333890919285892)), ((104.9294272653612 -0.334163916492173, 104.4428912649081 -0.2224999163881876, 104.52498226498454 0.0104180838287391, 104.88889126532348 -0.1936089163612706, 104.9294272653612 -0.334163916492173)), ((103.08307226364167 0.8371450845986885, 102.69273626327816 1.0233360847720974, 102.71260926329666 1.1500000848900527, 103.03719126359897 1.0377820847855475, 103.08307226364167 0.8371450845986885)), ((104.48520926494751 -0.3480089165050657, 104.59636326505102 -0.4698639166185643, 104.4934452649552 -0.6269459167648535, 104.25011826472854 -0.4747179166230779, 104.48520926494751 -0.3480089165050657)), ((123.9808002831042 -8.342781923950781, 124.10637228322116 -8.371945923977947, 124.2998362834013 -8.208190923825441, 124.12552728323897 -8.552226924145842, 123.9808002831042 -8.342781923950781)), ((128.03637228688126 -3.593054919527262, 128.27609128710452 -3.5115269194513274, 128.34677228717032 -3.5327819194711196, 127.94246328679378 -3.7713909196933457, 128.03637228688126 -3.593054919527262)), ((138.82302729692708 -8.17305492379272, 138.8985912969975 -8.405345924009055, 138.55705429667938 -8.365835923972256, 138.7071822968192 -8.18333592380229, 138.82302729692708 -8.17305492379272)), ((123.04610028223368 -3.9786179198863465, 123.25388228242718 -4.062781919964721, 123.14623628232692 -4.242708920132287, 122.9577632821514 -4.100281919999645, 123.04610028223368 -3.9786179198863465)), ((133.18249129167395 -5.309763921126063, 133.11190929160819 -5.5916639213886015, 132.83953629135453 -6.000281921769158, 133.1141362916103 -5.302217921119038, 133.18249129167395 -5.309763921126063)), ((100.20301826095942 -2.7589269187504186, 100.01597226078519 -2.839026918825013, 99.97387226074602 -2.496526918506035, 100.15957226091894 -2.629308918629704, 100.20301826095942 -2.7589269187504186)), ((129.63217228836743 -7.798572923443956, 129.84252728856336 -7.841254923483703, 129.76720928849323 -8.060417923687808, 129.58413628832272 -7.907781923545656, 129.63217228836743 -7.798572923443956)), ((120.49560927985834 -5.787199921570718, 120.56137227991962 -6.027917921794895, 120.47990927984375 -6.482217922217998, 120.4402632798068 -5.911390921686376, 120.49560927985834 -5.787199921570718)), ((99.85914526063914 -2.3764909183942393, 99.56860026036856 -2.22013591824863, 99.57262726037231 -2.026390918068188, 99.68498226047694 -2.0687549181076434, 99.85914526063914 -2.3764909183942393)), ((125.95915428494669 -1.9785459180236273, 126.08680028506558 -2.4213909184360602, 126.05345428503449 -2.482781918493231, 125.86192728485611 -2.086663918124316, 125.95915428494669 -1.9785459180236273)), ((125.88080928487375 3.3619450869500866, 125.64527228465437 3.6584730872262554, 125.67386328468098 3.724164087287434, 125.91207228490282 3.4891640870685734, 125.88080928487375 3.3619450869500866)), ((123.0908092822753 -8.285735923897661, 123.21749128239333 -8.233608923849104, 123.34664528251358 -8.283472923895545, 123.01755428220713 -8.409999924013391, 123.0908092822753 -8.285735923897661)), ((98.50220925937543 -0.4663909166153246, 98.32610025921139 -0.5397179166836139, 98.42318225930183 -0.2495819164134048, 98.51193625938447 -0.3705549165260749, 98.50220925937543 -0.4663909166153246)), ((127.2432722861426 -0.2677729164303457, 127.25401828615264 -0.4976359166444269, 127.11637228602444 -0.5249999166699126, 127.10567228601445 -0.2944459164551887, 127.2432722861426 -0.2677729164303457)), ((132.73855429126047 -5.678845921469801, 132.80914529132622 -5.83360892161393, 132.73945429126132 -5.9502089217225205, 132.63498229116402 -5.616108921411367, 132.73855429126047 -5.678845921469801)), ((104.15305426463817 1.1353640848764286, 104.0783272645686 0.9855540847369042, 103.90088226440332 1.0895820848337934, 104.09607226458508 1.1877820849252458, 104.15305426463817 1.1353640848764286)), ((103.7211542642359 -0.2724359164346879, 103.75278226426536 -0.3533359165100336, 103.45359126398677 -0.3598639165161188, 103.53830926406562 -0.2322179163972322, 103.7211542642359 -0.2724359164346879)), ((115.29332727501338 -6.838790922550089, 115.46192727517035 -6.850554922561045, 115.5704822752715 -6.921108922626743, 115.29553627501542 -7.008263922707911, 115.29332727501338 -6.838790922550089)), ((121.7263542810046 -10.54468192600146, 121.89499128116165 -10.42166392588689, 122.00332728126256 -10.4552819259182, 121.8710912811394 -10.607499926059972, 121.7263542810046 -10.54468192600146)), ((130.84103628949327 -0.7705359168985808, 130.8382912894907 -0.8630549169847512, 130.39762728908033 -0.9238909170414047, 130.48663628916324 -0.835281916958877, 130.84103628949327 -0.7705359168985808)), ((127.79779128665905 -8.103854923728264, 128.10052728694097 -8.138608923760628, 128.12772728696632 -8.168608923788568, 128.02527228687092 -8.267499923880678, 127.79779128665905 -8.103854923728264)), ((102.37805426298507 -5.487199921291321, 102.2569452628723 -5.454445921260813, 102.09984526272598 -5.3351359211497, 102.38080926298761 -5.372499921184499, 102.37805426298507 -5.487199921291321)), ((130.76553628942298 -8.354999923962168, 131.01351828965392 -8.090281923715622, 131.1783182898074 -8.13124592375378, 130.82190028947548 -8.349445923956992, 130.76553628942298 -8.354999923962168)), ((117.5361002771021 -8.390835923995539, 117.48137227705115 -8.191390923809792, 117.67956327723573 -8.159163923779772, 117.6913632772467 -8.183754923802681, 117.5361002771021 -8.390835923995539)), ((134.21450929263506 -6.026354921793441, 134.23176329265118 -6.140972921900186, 134.40400929281157 -6.281663922031214, 134.33303629274548 -6.326390922072875, 134.11996329254703 -6.134163921893844, 134.21450929263506 -6.026354921793441)), ((134.452791292857 -6.288035922037153, 134.597745292992 -6.407217922148149, 134.54387229294184 -6.533608922265856, 134.3455182927571 -6.359717922103911, 134.452791292857 -6.288035922037153)), ((119.45546327888962 -8.429990924031998, 119.58526327901052 -8.55999992415309, 119.45143627888592 -8.75326392433307, 119.37456327881432 -8.72221792430416, 119.45546327888962 -8.429990924031998)), ((98.54414525941445 -0.3863909165408188, 98.29192725917954 -0.0152819161951925, 98.30080925918782 -0.0072179161876846, 98.45220925932887 -0.0738909162497805, 98.54414525941445 -0.3863909165408188)), ((134.89440929326827 -0.9433179170595025, 134.99205429335922 -1.073890917181103, 134.87994529325482 -1.1408359172434501, 134.79913629317957 -1.0255549171360911, 134.89440929326827 -0.9433179170595025)), ((98.8053272596577 0.0942640839068218, 98.63765425950157 0.0773640838910836, 98.51432725938668 0.13555408394528, 98.76280025961813 0.1716640839789108, 98.8053272596577 0.0942640839068218)), ((103.29689126384079 0.5889450843675377, 103.2730362638186 0.5300000843126327, 103.13524526369025 0.5436090843253112, 103.20441826375469 0.7025000844732858, 103.29689126384079 0.5889450843675377)), ((103.50665426403617 0.7403000845084904, 103.40248226393913 0.6608360844344929, 103.37300926391168 0.8882640846462948, 103.46691826399916 0.8088910845723802, 103.50665426403617 0.7403000845084904)), ((105.70630026608472 2.843582086467336, 105.68387226606387 3.0063910866189616, 105.70095426607975 3.059864086668753, 105.8481092662168 2.9771540865917245, 105.70630026608472 2.843582086467336)), ((123.41635428257854 -10.153308925636964, 123.50671828266269 -10.180417925662212, 123.32124528248994 -10.341108925811866, 123.30970028247918 -10.275972925751205, 123.41635428257854 -10.153308925636964)), ((130.6374822893037 -0.4191729165713554, 130.65887228932365 -0.5186089166639505, 130.46530028914339 -0.525281916670167, 130.4798272891569 -0.4506909166007063, 130.6374822893037 -0.4191729165713554)), ((127.23860028613825 -0.6144089167531774, 127.31825428621244 -0.7945819169209756, 127.27761828617457 -0.8083359169337854, 127.15359128605911 -0.7699999168980867, 127.23860028613825 -0.6144089167531774)), ((122.90356328210095 -8.61053592420015, 122.98803628217962 -8.45666392405684, 123.17428228235309 -8.438890924040294, 123.1691542823483 -8.472499924071599, 122.90356328210095 -8.61053592420015)), ((117.9035542774443 4.174045087706418, 117.88693627742884 4.026945087569416, 117.68691827724257 4.168336087701107, 117.83970927738488 4.171945087704458, 117.9035542774443 4.174045087706418)), ((117.23526327682191 3.579718087152912, 117.39082727696683 3.561945087136351, 117.51749127708479 3.4744450870548604, 117.26610027685064 3.4991640870778866, 117.23526327682191 3.579718087152912)), ((117.55469127711945 3.4333450870165905, 117.6780362772343 3.4113910869961472, 117.63192727719132 3.2588910868541205, 117.55761827712212 3.318054086909214, 117.55469127711945 3.4333450870165905)), ((121.91217228117762 -0.4742179166226066, 121.89026328115722 -0.5138909166595624, 121.64082728092495 -0.5336089166779203, 121.74136328101855 -0.4186089165708182, 121.91217228117762 -0.4742179166226066)), ((97.34274525829557 2.0536360857316396, 97.32081825827515 2.030282085709885, 97.10830925807721 2.221945085888379, 97.28455425824137 2.2257640858919387, 97.34274525829557 2.0536360857316396)), ((131.91607229049447 -7.104163922797227, 131.97260029054712 -7.251390922934348, 131.72816329031951 -7.1555549228450985, 131.7505452903403 -7.1164549228086855, 131.91607229049447 -7.104163922797227)), ((117.61079127717164 4.102154087639462, 117.74498227729663 4.0775000876164995, 117.7285912772814 4.000282087544591, 117.605809277167 4.026036087568571, 117.61079127717164 4.102154087639462)), ((106.82552726712709 -2.900554918882321, 106.90734526720331 -2.9352819189146544, 106.89151826718859 -3.023472918996788, 106.72387226703245 -2.9675729189447253, 106.82552726712709 -2.900554918882321)), ((128.62353628742807 -7.065263922761005, 128.70303628750213 -7.1197179228117164, 128.63720928744084 -7.219717922904849, 128.52609128733735 -7.140135922830737, 128.62353628742807 -7.065263922761005)), ((116.42952727607155 -3.4049729193520903, 116.40331827604712 -3.5841639195189714, 116.38067227602602 -3.644581919575245, 116.31693627596667 -3.5409729194787474, 116.42952727607155 -3.4049729193520903)), ((122.04866328130475 -0.3786179165335852, 121.9165002811817 -0.4168089165691526, 121.8555362811249 -0.3633359165193468, 121.94749128121055 -0.3126359164721322, 122.04866328130475 -0.3786179165335852)), ((108.95590026911117 -1.5708639176439476, 108.8517912690142 -1.6702819177365313, 108.79574526896204 -1.582081917654392, 108.89638226905572 -1.5374999176128767, 108.95590026911117 -1.5708639176439476)), ((112.69467227259315 -5.731354921518701, 112.72463627262107 -5.8398639216197665, 112.59032727249598 -5.845072921624606, 112.58777227249362 -5.784581921568275, 112.69467227259315 -5.731354921518701)), ((128.4405822872577 -3.519954919459181, 128.51052728732282 -3.5266639194654203, 128.56219128737098 -3.591254919525582, 128.38588228720675 -3.638399919569494, 128.4405822872577 -3.519954919459181)), ((127.41607228630352 -7.512545923177569, 127.48526328636797 -7.579999923240393, 127.35928228625068 -7.654581923309848, 127.36679128625764 -7.515972923180755, 127.41607228630352 -7.512545923177569)), ((128.58380028739106 -3.4944359194354035, 128.7063632875052 -3.501945919442406, 128.72314528752088 -3.6163179195489192, 128.6268912874312 -3.6234729195555815, 128.58380028739106 -3.4944359194354035)), ((95.38019125646781 5.83754508925567, 95.2924632563861 5.785554089207253, 95.2109452563102 5.903473089317075, 95.33733625642788 5.894445089308661, 95.38019125646781 5.83754508925567)), ((115.58998227528963 -8.806108924382286, 115.46970927517765 -8.732081924313349, 115.51041827521556 -8.671390924256826, 115.60282727530159 -8.702708924285986, 115.58998227528963 -8.806108924382286)), ((129.53637228827824 -0.2224999163881876, 129.29192728805054 0.0313910838482769, 129.28998228804875 0.0430540838591327, 129.54316328828457 -0.143054916314199, 129.53637228827824 -0.2224999163881876)), ((105.26110926567014 -6.533263922265533, 105.19553626560906 -6.683472922405429, 105.11748226553635 -6.62624592235214, 105.16442726558006 -6.566663922296641, 105.26110926567014 -6.533263922265533)), ((126.70526328564154 3.7944450873528837, 126.61080928555361 3.9768090875227244, 126.60317228554646 4.03687308757867, 126.72310928565815 3.912154087462511, 126.70526328564154 3.7944450873528837)), ((129.87830028859668 -1.1455639172478556, 129.95925428867207 -1.1734729172738412, 129.74148228846923 -1.2109729173087658, 129.76580928849194 -1.1722179172726754, 129.87830028859668 -1.1455639172478556)), ((119.69941827911686 -8.723108924304995, 119.60963627903323 -8.776663924354864, 119.63305427905505 -8.600790924191074, 119.71999127913602 -8.686945924271313, 119.69941827911686 -8.723108924304995)), ((133.3290092918104 -4.107854920006702, 133.55276329201877 -4.233608920123814, 133.6155092920772 -4.300554920186173, 133.32637229180796 -4.170690920065226, 133.3290092918104 -4.107854920006702)), ((104.17553626465912 0.7908360845555649, 104.09803626458694 0.8822180846406695, 104.09470926458386 0.9472180847012055, 104.26082726473857 0.8659730846255371, 104.17553626465912 0.7908360845555649)), ((120.65807228000966 -7.0224819227211555, 120.77554528011905 -7.06028192275636, 120.76970928011366 -7.1341639228251665, 120.63777227999077 -7.122081922813919, 120.65807228000966 -7.0224819227211555)), ((131.0369272896757 -7.4174999230890535, 131.1651182897951 -7.403890923076375, 131.17726328980643 -7.411872923083806, 131.06024528969743 -7.512499923177529, 131.0369272896757 -7.4174999230890535)), ((138.6341542967512 -6.729499922448298, 138.7385542968484 -6.768054922484211, 138.78580929689247 -6.837708922549069, 138.68524529679877 -6.857217922567244, 138.6341542967512 -6.729499922448298)), ((128.85864528764705 -8.188899923807469, 128.96970028775047 -8.183890923802807, 129.03290028780935 -8.243335923858169, 128.92499128770885 -8.262635923876147, 128.85864528764705 -8.188899923807469)), ((134.7100822930966 -6.591372922319664, 134.72161829310738 -6.6905549224120335, 134.64650029303743 -6.7698639224858965, 134.62634529301863 -6.715554922435317, 134.7100822930966 -6.591372922319664)), ((119.08829127854767 -8.136317923758497, 119.13471827859092 -8.206945923824279, 119.0451272785075 -8.264163923877561, 119.02388227848769 -8.1677819237878, 119.08829127854767 -8.136317923758497)), ((127.56610028644326 -1.177745917277818, 127.61470028648853 -1.2577819173523608, 127.45692728634157 -1.2424999173381366, 127.50652728638778 -1.1858359172853596, 127.56610028644326 -1.177745917277818)), ((127.70807228657549 -3.1605909191244876, 127.78942728665123 -3.1796549191422514, 127.78727228664923 -3.2454909192035615, 127.63832728651056 -3.2245819191840894, 127.70807228657549 -3.1605909191244876)), ((104.69692726514467 0.022782083840255, 104.59315426504804 0.0972180839095813, 104.49190926495373 0.2336820840366727, 104.54121826499966 0.2247180840283249, 104.69692726514467 0.022782083840255)), ((120.83080028017054 -7.26521792294723, 120.99540928032383 -7.2806909229616394, 121.06303628038683 -7.302081922981557, 120.79165428013408 -7.2891639229695215, 120.83080028017054 -7.26521792294723)), ((134.88550029326 -6.308499922056214, 134.8332182932113 -6.469717922206357, 134.81607229319536 -6.469999922206625, 134.79358229317438 -6.378054922120995, 134.88550029326 -6.308499922056214)), ((123.58553628273609 -5.255281921075323, 123.63275428278007 -5.290835921108439, 123.63310928278037 -5.373608921185522, 123.52805428268255 -5.29694592111413, 123.58553628273609 -5.255281921075323)), ((114.32694527411337 -7.0639729227598025, 114.39610027417774 -7.10139092279465, 114.40248227418368 -7.181108922868887, 114.32623627411266 -7.164717922853626, 114.32694527411337 -7.0639729227598025)), ((108.781772268949 2.89980008651969, 108.8441542690071 2.9936090866070515, 108.88735426904731 2.9988910866119767, 108.88728226904726 2.892009086512431, 108.781772268949 2.89980008651969)), ((103.4355272639699 1.0252090847738344, 103.34940026388972 1.005000084755011, 103.3398272638808 1.1180540848603044, 103.38574526392358 1.125073084866841, 103.4355272639699 1.0252090847738344)), ((127.57309128644977 -3.2667459192233537, 127.62387228649709 -3.315281919268557, 127.64305428651494 -3.3619459193120207, 127.48109128636412 -3.293335919248122, 127.57309128644977 -3.2667459192233537)), ((98.57781825944585 1.6228180853304082, 98.44800925932492 1.6405540853469205, 98.4285722593068 1.6812450853848162, 98.55505425942465 1.6816640853852078, 98.57781825944585 1.6228180853304082)), ((125.44586328446866 2.752500086382497, 125.42609128445025 2.644309086281737, 125.38970928441637 2.629445086267893, 125.38081828440806 2.792918086420144, 125.44586328446866 2.752500086382497))) +TLS Timor Leste MULTIPOLYGON (((127.30835428620321 -8.409645924013063, 127.30859128620347 -8.410554924013908, 127.30859128620347 -8.424163924026573, 127.30442728619954 -8.433608924035369, 127.26458228616247 -8.47221792407133, 127.25305428615172 -8.477499924076255, 127.17137228607567 -8.539163924133675, 127.12637228603376 -8.575835924167833, 127.09331828600295 -8.60444592419448, 127.06330928597504 -8.635554924223456, 127.01734528593221 -8.681526924266265, 126.88777228581154 -8.728890924310377, 126.78970028572019 -8.75610892433572, 126.77665428570805 -8.755281924334952, 126.76442728569663 -8.756672924336257, 126.69941828563611 -8.76694592434582, 126.65609128559578 -8.775417924353704, 126.58179128552655 -8.811254924387086, 126.54026328548787 -8.851663924424713, 126.53276328548088 -8.864445924436623, 126.52805428547651 -8.879999924451113, 126.52053628546952 -8.899726924469476, 126.49637228544702 -8.929999924497679, 126.47456328542671 -8.951108924517328, 126.46164528541465 -8.954999924520962, 126.32443628528688 -8.975554924540106, 126.25860928522559 -8.982217924546305, 126.23943628520772 -8.980835924545019, 126.22580928519506 -8.980835924545019, 126.16414528513758 -8.98749992455123, 126.15331828512751 -8.990272924553807, 126.14360028511845 -8.994445924557695, 126.12637228510243 -9.004445924567008, 126.11415428509105 -9.012781924574767, 126.0866452850654 -9.033054924593657, 125.94359128493221 -9.126945924681095, 125.92110028491123 -9.132781924686526, 125.89137228488357 -9.132499924686272, 125.87970028487268 -9.130281924684198, 125.86775428486158 -9.129163924683155, 125.84554528484085 -9.13097292468484, 125.78305428478268 -9.147217924699973, 125.55914528457413 -9.218335924766208, 125.40442728443003 -9.268335924812774, 125.39470928442103 -9.272499924816657, 125.35276328438192 -9.295417924837992, 125.330272284361 -9.310281924851836, 125.28637228432012 -9.34833592488728, 125.23499128427227 -9.398890924934364, 125.2233092842614 -9.41444592494885, 125.2116452842505 -9.42333592495713, 125.20192728424144 -9.427226924960749, 125.19109128423139 -9.42999992496334, 125.12941828417394 -9.435290924968257, 125.06230028411142 -9.367772924905381, 125.01990028407192 -9.336226924876001, 124.97100028402639 -9.27439092481842, 124.966300284022 -9.221308924768977, 124.98680028404112 -9.194363924743882, 125.01970028407175 -9.167854924719194, 125.06910028411778 -9.167172924718557, 125.14000028418377 -9.150399924702938, 125.16590028420791 -9.109208924664571, 125.15970028420213 -9.068099924626296, 125.13990028418368 -9.024117924585326, 125.0933002841403 -9.011672924573745, 125.01850028407063 -9.03431792459483, 124.96530028402111 -9.037272924597573, 124.94630028400337 -9.008945924571194, 124.95190028400862 -8.950126924516425, 124.97054528402595 -8.934717924502067, 125.09304528414003 -8.759445924338834, 125.09499128414188 -8.74110892432175, 125.10053628414704 -8.71278192429537, 125.10609128415223 -8.691108924275184, 125.10941828415531 -8.680835924265622, 125.11831828416359 -8.66249992424855, 125.12410928416898 -8.654199924240814, 125.12664528417133 -8.650554924237426, 125.13693628418093 -8.64028192422785, 125.14526328418867 -8.634726924222676, 125.21860028425698 -8.612499924201984, 125.22942728426705 -8.609717924199387, 125.4241452844484 -8.571945924164211, 125.60693628461866 -8.542781924137046, 125.7083272847131 -8.530554924125667, 125.72499128472862 -8.526390924121785, 125.78720028478654 -8.506672924103427, 125.79694528479564 -8.502781924099793, 125.80581828480388 -8.498054924095399, 125.81804528481524 -8.489717924087628, 125.8277632848243 -8.485835924084014, 125.84414528483956 -8.481663924080124, 125.85637228485098 -8.480281924078838, 125.88860028488097 -8.482217924080643, 125.9077632848988 -8.483608924081935, 125.93802728492699 -8.487781924085823, 125.96555428495265 -8.494445924092034, 125.98664528497227 -8.500554924097727, 126.0216542850049 -8.520281924116091, 126.04109128502301 -8.52472692412023, 126.07639128505588 -8.524445924119973, 126.22026328518984 -8.501390924098502, 126.23193628520073 -8.499163924096422, 126.28553628525066 -8.477499924076255, 126.33749128529905 -8.44778192404857, 126.34499128530604 -8.441108924042354, 126.35637228531664 -8.428472924030586, 126.4102632853668 -8.425281924027615, 126.42191828537767 -8.42749992402969, 126.49304528544388 -8.449717924050375, 126.50332728545351 -8.45305492405349, 126.51833628546746 -8.465272924064863, 126.54026328548787 -8.484308924082598, 126.55053628549746 -8.487781924085823, 126.56302728550907 -8.486390924084532, 126.77138228570311 -8.424163924026573, 126.86110028578668 -8.38416392398932, 126.87886328580322 -8.3745819239804, 126.89860928582164 -8.36028192396708, 127.00499128592071 -8.324445923933709, 127.19859128610102 -8.332781923941468, 127.3033822861986 -8.39694592400123, 127.30835428620321 -8.409645924013063)), ((124.046100283165 -9.339999924879521, 124.06667228318418 -9.33333592487331, 124.13638228324908 -9.307499924849253, 124.15081828326254 -9.301663924843808, 124.15914528327028 -9.295554924838129, 124.17081828328116 -9.279999924823642, 124.18303628329255 -9.261663924806555, 124.29054528339265 -9.221663924769302, 124.42053628351374 -9.185899924736006, 124.4628092835531 -9.184408924734612, 124.44930028354054 -9.282654924826105, 124.36850028346527 -9.428963924962375, 124.34040028343912 -9.46166392499282, 124.29340028339533 -9.463626924994657, 124.26230028336636 -9.427663924961166, 124.24940028335436 -9.40436392493946, 124.20010028330842 -9.399035924934495, 124.17610028328608 -9.418645924952756, 124.1188002832327 -9.432281924965466, 124.06660028318413 -9.401599924936889, 124.046100283165 -9.339999924879521)), ((125.64749128465644 -8.150045923771287, 125.59749128460987 -8.29860892390964, 125.59248228460518 -8.30749992391793, 125.58374528459706 -8.316245923926076, 125.57249128458659 -8.317917923927624, 125.53580928455244 -8.310281923920513, 125.52609128454338 -8.306108923916625, 125.49761828451682 -8.277217923889722, 125.4987452845179 -8.26541792387873, 125.52470028454206 -8.229999923845753, 125.61596328462707 -8.139999923761934, 125.6454002846545 -8.140281923762188, 125.64749128465644 -8.150045923771287))) +AUS Australia MULTIPOLYGON (((151.54025430877095 -24.045835938575394, 151.6838723089047 -23.98889093852236, 152.13177230932183 -24.60819093909913, 152.468018309635 -24.81221793928914, 152.6714913098245 -25.245135939692332, 152.9078183100446 -25.28889093973308, 152.92053631005643 -25.735417940148935, 153.18191831029986 -25.94944594034827, 153.07205431019753 -26.30847294068264, 153.15720031027683 -27.082781941403773, 153.03456331016264 -27.176663941491206, 153.57760931066838 -28.207917942451637, 153.62419131071175 -28.66103594287363, 153.01858231014774 -30.5686089446502, 152.9541273100877 -31.359445945386724, 152.5118543096758 -32.13104594610533, 152.52969130969245 -32.40360894635918, 151.81213630902414 -32.888754946811005, 151.45456330869115 -33.31680894720966, 151.2727633085218 -33.969445947817476, 151.09971830836065 -34.01379094785877, 151.19526330844963 -34.05681794789885, 150.93414530820644 -34.331672948154825, 150.74690030803208 -34.87749994866317, 150.8367633081158 -35.08839994885958, 150.68518230797457 -35.04219094881655, 150.1624723074878 -35.94055494965322, 149.90246330724563 -36.9233359505685, 149.97163630731006 -37.52221795112625, 149.45718230683093 -37.78333595136944, 148.30914530576172 -37.82167295140514, 147.75915430524952 -37.98249995155493, 146.87356330442475 -38.65166395217813, 146.2192723038154 -38.715972952238026, 146.2964913038873 -38.91656395242484, 146.46927230404822 -38.805626952321525, 146.39413630397826 -39.14722695263966, 146.14234530374375 -38.8459729523591, 145.90441830352216 -38.856945952369315, 145.81614530343995 -38.65229095217872, 145.41607230306738 -38.54583595207957, 145.555254303197 -38.37430895191982, 145.4442723030936 -38.22693595178257, 145.25546330291775 -38.23763595179254, 144.90136330258798 -38.50583595204232, 144.76110930245738 -38.37778195192306, 145.13127230280213 -38.137008951698824, 144.91768230260317 -37.868545951448795, 144.3685633020918 -38.12652695168906, 144.70634530240636 -38.14916395171014, 144.65887230236217 -38.28499995183665, 144.36328230208687 -38.324445951873386, 143.54295430132288 -38.85923595237145, 142.37933630023917 -38.36389095191012, 141.75094529965395 -38.26708195181996, 141.57134529948667 -38.417217951959785, 141.10357229905105 -38.11389095167729, 140.52997229851684 -38.00028195157149, 139.7513722977917 -37.1997179508259, 139.82350029785886 -36.55458195022507, 139.08260029716882 -35.67976394941034, 139.66040029770699 -36.216245949909975, 139.09956329718466 -35.6125089493477, 139.15970029724065 -35.50389094924654, 139.3358272974047 -35.69139094942116, 139.35660929742403 -35.374445949125985, 139.2124632972898 -35.31666394907217, 138.96995429706396 -35.40847294915768, 138.99113629708364 -35.5574269492964, 138.53628229666003 -35.65347294938585, 138.09315429624735 -35.6191639493539, 138.43878229656923 -35.34381794909746, 138.51416329663942 -35.02499994880054, 138.4960632966226 -34.72888194852476, 138.0922542962465 -34.13492694797159, 137.74817229592605 -35.13278194890092, 136.8596822950986 -35.29111794904838, 137.02408229525173 -34.902008948685996, 137.43414529563358 -34.93889094872034, 137.45170929564995 -34.160417947995334, 137.9485822961127 -33.5592999474355, 137.81434529598772 -33.278054947173565, 138.0394272961973 -33.0780549469873, 137.76297229593985 -32.53249994647922, 137.7748452959509 -32.99277294690788, 137.48828229568403 -33.12778194703362, 137.2099632954248 -33.66610894753497, 136.94971829518244 -33.68103594754887, 136.413454294683 -34.0409819478841, 135.93690929423917 -34.53687294834594, 135.80379129411523 -34.815208948605154, 136.00666329430413 -34.74259994853753, 135.95640929425736 -35.00823594878493, 135.11231829347122 -34.59475494839984, 135.20850929356084 -34.43582694825183, 135.3444182936874 -34.61416394841792, 135.49586329382845 -34.61708194842063, 135.26108229360977 -34.00652694785201, 134.84066329321826 -33.63778194750859, 134.7074722930942 -33.17722694707967, 134.26871829268555 -33.145554947050165, 134.07450929250467 -32.720863946654646, 134.27651829269286 -32.72874594666199, 134.1841452926068 -32.48666394643653, 133.8528722922983 -32.54180894648788, 133.95079129238945 -32.3982639463542, 133.60586329206825 -32.098054946074605, 133.41720929189256 -32.21333594618197, 132.7644362912846 -31.9508359459375, 132.19593629075513 -32.02694594600838, 131.14859128977974 -31.474026945493435, 130.7935822894491 -31.610281945620336, 128.97870928775887 -31.696108945700267, 127.2677632861654 -32.27833594624251, 125.97227228495888 -32.266735946231705, 124.74664528381743 -32.897781946819414, 124.28193628338465 -32.98555494690115, 123.73499128287528 -33.77972694764079, 123.16805428234727 -34.018608947863264, 123.01782728220735 -33.85757294771329, 122.11831828136962 -34.02860894787258, 121.99386328125371 -33.8247269476827, 120.00499127940145 -33.928890947779706, 119.61609127903927 -34.09999994793907, 119.32554527876863 -34.44694594826218, 118.9116542783832 -34.45305494826787, 118.28166327779644 -34.9055549486893, 117.83797227738324 -35.030135948805324, 117.9341452774728 -35.125345948893994, 116.60192727623206 -35.033054948808044, 115.9736002756469 -34.819454948609106, 115.64803627534371 -34.46777294828158, 115.0089452747485 -34.26243594809034, 114.99710027473748 -33.52410894740272, 115.39694527510989 -33.62138194749332, 115.71262727540386 -33.2640269471605, 115.59436327529374 -32.67069094660792, 115.61761827531535 -32.60284594654473, 115.69450027538699 -32.52221794646964, 115.71824527540912 -32.77034594670073, 115.73998227542933 -31.8680549458604, 115.04727227478418 -30.504717944590695, 114.88734527463527 -29.205835943381018, 114.15429127395254 -28.090972942342724, 113.93691827375011 -27.198890941511905, 113.22442727308652 -26.23916394061809, 113.28765427314545 -26.027772940421215, 113.64345427347678 -26.65430894100472, 113.85581827367457 -26.507499940867994, 113.3911092732418 -25.71041794012565, 113.46943627331473 -25.54083593996772, 113.73408227356117 -25.889026940292, 113.7140092735425 -26.19694594057877, 113.87886327369603 -26.028890940422258, 114.06929127387338 -26.46166394082531, 114.22144527401508 -26.29249994066776, 114.25810927404922 -25.84784594025365, 113.70108227353046 -25.122426939578048, 113.3897092732405 -24.42944593893266, 113.53220927337321 -23.7572269383066, 113.76833627359309 -23.44166393801271, 113.80748227362955 -22.93332693753929, 113.65637227348884 -22.604717937233247, 114.03027227383706 -21.841663936522593, 114.1759542739727 -21.82278193650501, 114.15387227395217 -22.527781937161592, 114.37248227415574 -22.442499937082175, 114.65109127441525 -21.839999936521053, 115.45192727516104 -21.517781936220956, 115.9252542756019 -21.069026935803024, 116.70749127633042 -20.64916393541199, 117.68539127724114 -20.676390935437354, 118.17851827770039 -20.34868193513215, 118.80109127828024 -20.28583593507362, 119.08027227854024 -19.968745934778312, 119.58179127900729 -20.070835934873386, 121.0274822803537 -19.592226934427643, 121.48859128078317 -19.1230549339907, 121.80053628107368 -18.480281933392064, 122.33749128157376 -18.131390933067138, 122.17499128142242 -17.243326932240066, 122.57429128179427 -16.953326931969983, 122.56650928178703 -16.78986393181775, 122.75220928196 -16.762217931791994, 122.9202542821165 -16.414581931468234, 123.06024528224685 -16.4555549315064, 122.95622728215 -16.58680893162864, 123.57527228272653 -17.597499932569917, 123.59261828274265 -16.996663932010335, 123.65575428280147 -16.9947909320086, 123.8558182829878 -17.206390932205665, 123.91602728304389 -17.208263932207416, 123.79637228293245 -16.99798193201157, 123.89166328302116 -16.89333593191411, 123.42518228258672 -16.499508931547325, 123.70888228285094 -16.430281931482853, 123.57090028272245 -16.171663931241994, 123.72623628286709 -16.13860893121121, 123.89137228302093 -16.378890931434995, 123.96442728308892 -16.24555493131082, 124.22984528333615 -16.4042359314586, 124.89304528395377 -16.406699931460892, 124.40054528349509 -16.329445931388946, 124.43054528352303 -16.10249993117759, 124.59304528367437 -16.114163931188443, 124.7267182837989 -15.808954930904207, 124.53470928362009 -15.936390931022885, 124.40020028349477 -15.864299930955738, 124.45726328354795 -15.478263930596214, 124.65637228373339 -15.479717930597573, 124.70527228377892 -15.25333593038674, 125.18180928422271 -15.520681930635732, 125.09734528414407 -15.30180893043189, 124.91210028397154 -15.336008930463734, 125.04425428409462 -15.16156393030127, 124.82485428389026 -15.160281930300073, 125.07832728412637 -14.999717930150538, 125.16470928420682 -15.162363930302021, 125.16165428420396 -15.033890930182366, 125.32165428435297 -15.15604593029613, 125.43477228445829 -15.133126930274784, 125.1360272841801 -14.747426929915576, 125.33610928436644 -14.523054929706618, 125.58888228460182 -14.549445929731192, 125.61831828462925 -14.222426929426632, 125.72867228473206 -14.273190929473913, 125.64224528465155 -14.630099929806306, 125.72279128472655 -14.404308929596027, 125.90277228489418 -14.643608929818882, 126.03761828501973 -14.515208929699313, 126.14665428512131 -14.129999929340556, 126.01759128500112 -13.926526929151052, 126.21748228518726 -13.96194592918404, 126.28777228525274 -14.233054929436534, 126.50249128545272 -13.96471792918662, 126.60053628554402 -14.22971792943342, 126.85790028578373 -13.75097292898755, 127.12841828603564 -13.971490929192925, 127.42525428631211 -13.954026929176663, 128.16943628700517 -14.702781929873993, 128.0208452868668 -15.49822693061482, 128.13213628697042 -15.214054930350159, 128.28718228711483 -15.400690930523979, 128.1921092870263 -15.06520893021154, 128.30629128713264 -14.91278193006957, 128.44829128726485 -15.04708193019465, 128.3876822872084 -14.799999929964542, 128.53596328734653 -14.758472929925858, 129.08941828786197 -14.899445930057155, 129.19107228795662 -15.182499930320773, 129.22961828799254 -14.839235930001081, 129.7319632884604 -15.182190930320488, 129.64733628838155 -14.837772929999716, 129.80157228852522 -14.863954930024107, 129.94442728865823 -14.767781929934529, 129.67538228840772 -14.766045929932915, 129.58656328832495 -14.628054929804406, 129.7727542884984 -14.535590929718282, 129.5401182882817 -14.550281929731966, 129.37023628812352 -14.333335929529923, 129.7327272884611 -13.99471792921456, 129.82885428855064 -13.516945928769601, 130.2644362889563 -13.325281928591096, 130.14070028884106 -12.92592692821917, 130.32760928901513 -12.894026928189462, 130.3544182890401 -12.67263592798328, 130.5090002891841 -12.60444592791977, 130.60080028926956 -12.707363928015624, 130.68882728935154 -12.701072928009765, 130.5792722892495 -12.404654927733702, 130.77040028942753 -12.429581927756914, 130.8963632895448 -12.64028192795314, 130.9541272895986 -12.536390927856388, 130.8158002894698 -12.444726927771015, 131.0269182896664 -12.358335927690561, 131.024318289664 -12.149581927496143, 131.49260029010009 -12.297217927633639, 132.36092729090882 -12.202363927545306, 132.38360929092994 -12.379999927710742, 132.4443542909865 -12.150281927496792, 132.74899129127022 -12.135417927482948, 132.62759129115716 -12.032781927387362, 132.6915002912167 -11.658190927038504, 132.48996329102897 -11.476945926869703, 132.08677229065347 -11.524726926914198, 131.77095429035933 -11.317635926721337, 131.98432729055804 -11.127426926544189, 132.1659362907272 -11.40645492680406, 132.1466822907093 -11.139999926555902, 132.3405182908898 -11.130135926546714, 132.6719822911985 -11.50812692689874, 132.91802729142762 -11.336945926739318, 133.18304529167443 -11.716663927092952, 133.54885429201516 -11.832781927201097, 133.90832729234995 -11.736108927111061, 133.83940029228575 -11.854163927221009, 134.05040029248227 -11.844445927211964, 134.20663629262776 -12.061663927414259, 134.7713822931537 -11.995835927352957, 135.23135429358211 -12.29444592763106, 135.9127542942167 -11.765554927138496, 135.6691452939898 -12.190835927534565, 135.7355092940516 -12.280835927618384, 136.0230362943194 -12.111945927461093, 136.03970029433492 -12.4716639277961, 136.2937272945715 -12.414308927742695, 136.3639182946369 -12.239717927580088, 136.17774529446348 -12.166945927512316, 136.56219129482156 -11.934445927295783, 136.67323629492495 -12.284517927621806, 136.7754092950201 -12.171735927516778, 136.97836329520914 -12.358163927690399, 136.62079129487608 -12.825281928125435, 136.49441829475842 -12.779163928082482, 136.4580092947245 -13.25249992852332, 136.35662729463007 -13.053754928338222, 136.20023629448445 -13.23916392851089, 135.92726329423022 -13.277845928546924, 135.8457912941543 -13.603890928850575, 136.0202632943168 -13.762499928998295, 135.86912729417605 -14.194581929400698, 135.37274529371376 -14.728890929898313, 135.451354293787 -14.932781930088197, 136.7658092950112 -15.904445930993134, 137.7376722959163 -16.251735931316574, 138.19482729634205 -16.707363931740915, 139.01054529710171 -16.89916393191953, 139.26052729733453 -17.34249993233243, 140.13217229814632 -17.719163932683216, 140.83330029879932 -17.451945932434356, 141.286100299221 -16.503335931550893, 141.66552729957436 -15.026526930175507, 141.46579129938834 -13.89708192912363, 141.68871829959596 -13.254026928524738, 141.58566329950003 -12.986390928275483, 141.79691829969676 -12.691245928000612, 141.9403092998303 -12.864999928162433, 141.74760929965083 -12.469717927794292, 141.5941182995079 -12.53166392785198, 141.84911829974538 -11.988472927346095, 142.02366329990792 -12.067781927419958, 141.94662729983617 -11.92444592728647, 142.14769130002344 -10.949163926378162, 142.44442730029976 -10.709717926155164, 142.61314530045695 -10.750763926193386, 142.5092913003602 -10.950281926379205, 142.60898230045302 -10.872499926306773, 142.78830030062005 -11.08055492650054, 142.85981830068664 -11.833190927201485, 143.19912730100265 -11.987499927345198, 143.07747230088938 -12.33429992766817, 143.27581830107408 -12.413054927741527, 143.42998230121765 -12.616808927931288, 143.36231830115463 -12.848890928147426, 143.51416330129604 -12.879163928175615, 143.5308093013116 -13.756390928992602, 143.78220030154569 -14.413335929604429, 144.01185430175957 -14.487708929673701, 144.51594530222906 -14.17166392937935, 144.67677230237882 -14.557363929738571, 145.31580030297397 -14.945554930100101, 145.24856330291135 -15.446390930566537, 145.46232730311044 -16.08305493115948, 145.40205430305429 -16.44097293149281, 145.8060913034306 -16.91305493193248, 145.95544530356966 -16.899090931919474, 145.88280930350203 -17.07173593208026, 146.1042633037083 -17.691663932657605, 146.00942730361993 -18.23805493316648, 146.2119093038085 -18.491663933402663, 146.33357230392187 -18.53562693344361, 146.27761830386976 -18.887017933770863, 147.13943630467236 -19.40278193425121, 147.43191830494476 -19.412363934260142, 147.40149130491642 -19.307954934162893, 147.66955430516606 -19.82471793464417, 147.8218363053079 -19.71069093453798, 148.41345430585886 -20.206390934999632, 148.4529913058957 -20.06360893486665, 148.76889130618991 -20.232463935023915, 148.93441830634407 -20.534726935305414, 148.79025430620982 -20.45694593523298, 148.69165430611798 -20.624445935388977, 149.21469130660512 -21.079999935813248, 149.66948230702866 -22.49517293713123, 149.81465430716383 -22.38391793702762, 150.03830030737214 -22.641008937267046, 149.92080930726274 -22.350554936996545, 150.0437273073772 -22.149026936808852, 150.2003823075231 -22.39166393703482, 150.59301830788877 -22.58610893721591, 150.53442730783422 -22.383472937027193, 150.63455430792743 -22.34305493698956, 150.81911830809935 -22.73194593735174, 150.80040030808192 -23.380690937955933, 151.16804530842427 -23.79249993833946, 151.54025430877095 -24.045835938575394)), ((146.91670030446494 -43.617844956803246, 146.03830030364685 -43.49805495669169, 145.93268230354846 -43.37631795657831, 146.23454530382963 -43.32514495653065, 145.83690930345927 -43.29722695650465, 145.459691303108 -42.904444956138846, 145.20522730287098 -42.256954955535825, 145.46941830311704 -42.52305495578365, 145.552045303194 -42.35110895562351, 145.2802723029409 -42.18111795546519, 144.85858230254814 -41.54444495487225, 144.637209302342 -41.03194595439494, 144.70135430240174 -40.7591729541409, 146.58609130415704 -41.186663954539036, 146.73149130429243 -41.06972695443013, 146.80645430436226 -41.14836395450337, 146.94280930448923 -41.166872954520606, 146.81872730437368 -41.059790954420876, 147.0170633045584 -40.97610895434294, 147.83816330532312 -40.891254954263914, 147.9718363054476 -40.74479095412751, 148.27331830572837 -40.90110895427309, 148.36384530581267 -42.222426955503664, 148.2752723057302 -42.25556395553453, 148.19526330565566 -41.945444955245705, 147.84288230532752 -42.87291795610948, 147.99969130547356 -42.9070819561413, 147.99552730546964 -43.2275909564398, 147.78970030527796 -43.246944956457824, 147.63161830513076 -43.06555495628889, 147.7065003052005 -42.9383269561704, 147.89941830538015 -43.026872956252866, 147.82580930531162 -42.93194495616446, 147.55746330506167 -42.83055495607003, 147.4271273049403 -43.041735956266706, 147.3174723048382 -42.84666395608503, 147.247454304773 -43.26917295647852, 146.97009130451465 -43.1370819563555, 147.0953363046313 -43.288717956496725, 146.91670030446494 -43.617844956803246)), ((130.95886328960302 -11.938890927299923, 130.49343628916955 -11.642008927023426, 130.3926822890757 -11.163399926577696, 130.70495428936658 -11.390281926788987, 131.15171828978265 -11.26076392666836, 131.22350928984952 -11.402008926799908, 131.27151828989423 -11.190281926602722, 131.52859129013365 -11.391945926790541, 130.95886328960302 -11.938890927299923)), ((137.91094529607767 -35.729381949456545, 138.11272729626558 -35.86971794958724, 137.76095429593795 -35.86604594958382, 137.45544529565342 -36.08534594978806, 137.22607229543985 -35.9840269496937, 136.71219129496126 -36.05666394976135, 136.53387229479517 -35.88221794959888, 137.31720029552469 -35.59069094932738, 137.79150029596644 -35.80319994952529, 137.91094529607767 -35.729381949456545)), ((136.9087822951443 -14.179263929386437, 136.88916329512602 -14.297781929496807, 136.37801829465002 -14.21639092942101, 136.42831829469685 -13.88694592911419, 136.67886329493018 -13.658054928901024, 136.71289129496188 -13.837917929068524, 136.9184542951533 -13.809581929042139, 136.70801829495736 -14.167781929375735, 136.9087822951443 -14.179263929386437)), ((148.1288453055938 -40.274445953689465, 147.76074530525102 -39.87798195332023, 147.88190030536384 -39.75417295320492, 148.27941830573405 -39.96583595340205, 148.33136330578242 -40.21916395363798, 148.1288453055938 -40.274445953689465)), ((153.08163631020648 -25.795835940205208, 152.94302731007735 -25.55833593998402, 153.28164531039272 -24.699163939183848, 153.37106331047602 -25.014163939477214, 153.08163631020648 -25.795835940205208)), ((130.49356328916969 -11.838608927206522, 130.02470028873302 -11.798472927169144, 130.25567228894812 -11.344163926746035, 130.34399128903038 -11.325554926728714, 130.49105428916732 -11.688608927066824, 130.6365822893029 -11.772917927145343, 130.49356328916969 -11.838608927206522)), ((143.92162730167553 -40.13639095356089, 143.83773630159743 -39.873054953315645, 143.97746330172754 -39.57389095303702, 144.14645430188494 -39.92943595336815, 143.92162730167553 -40.13639095356089)), ((139.14831829723005 -16.76083593179071, 139.3066362973775 -16.462499931512866, 139.73358229777511 -16.455835931506655, 139.44192729750347 -16.66778193170404, 139.14831829723005 -16.76083593179071)), ((113.20555427306897 -26.14471794053013, 112.9524912728333 -25.7844459401946, 112.95387227283459 -25.4877729399183, 113.00325427288055 -25.499026939928783, 113.20555427306897 -26.14471794053013)), ((148.33914530578966 -40.503335953902635, 148.31830030577026 -40.435272953839245, 147.9985633054725 -40.38972695379683, 148.3430183057933 -40.30666395371947, 148.47914530592004 -40.43069095383498, 148.33914530578966 -40.503335953902635)), ((151.22717230847934 -23.786663938334016, 151.06607230832935 -23.605281938165092, 151.018463308285 -23.45639093802643, 151.222472308475 -23.558608938121623, 151.22717230847934 -23.786663938334016)), ((147.30276330482445 -43.513335956705916, 147.12301830465708 -43.421944956620806, 147.30026330482212 -43.26278195647257, 147.3649633048824 -43.38583595658717, 147.30276330482445 -43.513335956705916)), ((146.28998230388123 -18.493890933404742, 146.22051830381656 -18.468326933380936, 146.08600030369126 -18.25437293318167, 146.26971830386236 -18.30833593323193, 146.28998230388123 -18.493890933404742)), ((136.50332729476673 -11.45639092685056, 136.7287002949766 -11.045135926467552, 136.77386329501866 -11.021245926445303, 136.72497229497316 -11.206945926618246, 136.50332729476673 -11.45639092685056)), ((153.4069183105094 -27.731108942007573, 153.43359131053427 -27.416108941714207, 153.5409363106342 -27.418054941716015, 153.45399131055325 -27.726390942003178, 153.4069183105094 -27.731108942007573)), ((132.59607229112777 -11.344717926746554, 132.50220029104037 -11.051390926473374, 132.57885429111178 -11.022499926446471, 132.62634529115599 -11.17778192659108, 132.59607229112777 -11.344717926746554)), ((137.05440929527992 -15.829999930923805, 136.9344182951682 -15.698890930801696, 137.01019129523877 -15.593054930703133, 137.09301829531591 -15.76639093086456, 137.05440929527992 -15.829999930923805)), ((136.2013542944855 -13.8599999290891, 136.1051002943958 -13.815281929047444, 136.2017632944859 -13.664581928907097, 136.28886329456697 -13.730281928968282, 136.2013542944855 -13.8599999290891)), ((124.5224912836087 -15.4452819305655, 124.46915428355902 -15.324717930453218, 124.55970928364337 -15.25999993039295, 124.64651828372422 -15.400690930523979, 124.5224912836087 -15.4452819305655)), ((115.36887227508373 -20.880835935627758, 115.30276327502213 -20.815972935567345, 115.43817227514825 -20.66721793542881, 115.45971827516831 -20.77278193552712, 115.36887227508373 -20.880835935627758)), ((145.35580930301126 -38.43111795197273, 145.2956723029552 -38.29875495184946, 145.49649130314225 -38.3623639519087, 145.4213543030723 -38.3774999519228, 145.35580930301126 -38.43111795197273)), ((153.42526331052647 -27.362781941664544, 153.35835431046416 -27.061526941383974, 153.44442731054437 -27.019308941344654, 153.4663723105648 -27.0341729413585, 153.42526331052647 -27.362781941664544)), ((158.87967231560629 -54.7538909671745, 158.83386331556363 -54.66889096709534, 158.96037231568147 -54.47638196691605, 158.94552731566762 -54.57639096700919, 158.87967231560629 -54.7538909671745)), ((125.13831828418222 -14.648608929823538, 125.09248228413952 -14.544445929726535, 125.16220028420446 -14.439026929628355, 125.20803628424716 -14.489163929675044, 125.13831828418222 -14.648608929823538)), ((142.1833183000566 -10.770281926211567, 142.11580029999374 -10.657499926106539, 142.2169183000879 -10.610281926062555, 142.25901830012714 -10.720972926165643, 142.1833183000566 -10.770281926211567)), ((147.3616363048793 -43.263063956472834, 147.29302730481538 -43.15708195637413, 147.35718230487515 -43.07499995629769, 147.43273630494554 -43.24194495645317, 147.3616363048793 -43.263063956472834)), ((136.18273629446816 -11.690835927068903, 136.2737452945529 -11.57221792695843, 136.4812182947461 -11.467217926860641, 136.37329129464558 -11.592499926977325, 136.18273629446816 -11.690835927068903)), ((148.014163305487 -42.75306395599786, 148.01873630549125 -42.61971795587367, 148.12800930559303 -42.590272955846245, 148.16816330563046 -42.66555495591636, 148.014163305487 -42.75306395599786)), ((142.27997230014665 -10.265554925741512, 142.1894183000623 -10.204163925684327, 142.2285723000988 -10.145554925629753, 142.3399633002025 -10.191390925672437, 142.27997230014665 -10.265554925741512)), ((139.42831829749082 -17.146108932149517, 139.4001182974646 -17.08875493209611, 139.554136297608 -17.03187293204313, 139.57025429762302 -17.10499993211124, 139.42831829749082 -17.146108932149517)), ((145.35412730300965 -38.56999995210208, 145.27136330293257 -38.52083595205629, 145.11705430278886 -38.53110895206586, 145.28290030294335 -38.45249995199265, 145.35412730300965 -38.56999995210208)), ((136.52469129478663 -15.646108930752533, 136.5194362947817 -15.549717930662766, 136.6055182948619 -15.524863930639626, 136.58773629484534 -15.634726930741934, 136.52469129478663 -15.646108930752533)), ((144.88888230257635 -40.72943595411321, 144.92622730261115 -40.617217954008694, 145.01608230269483 -40.695545954081645, 144.92636330261126 -40.72249995410675, 144.88888230257635 -40.72943595411321))) +NRU Nauru MULTIPOLYGON (((166.92913632310297 -0.5522179166952554, 166.91957232309403 -0.5515269166946126, 166.90914532308432 -0.5447179166882705, 166.90441832307994 -0.532363916676772, 166.90774532308302 -0.5119459166577514, 166.91816332309276 -0.4980549166448185, 166.93054532310424 -0.4933359166404188, 166.950672323123 -0.4980549166448185, 166.95704532312897 -0.5142359166598851, 166.93788132311113 -0.5492359166924814, 166.92913632310297 -0.5522179166952554))) +NCL New Caledonia MULTIPOLYGON (((166.9169273230916 -22.398890937041557, 166.92135432309573 -22.373890937018274, 166.87466332305223 -22.32583593697352, 166.83121832301174 -22.299863936949336, 166.81927232300063 -22.324026936971833, 166.8158003229974 -22.36249993700767, 166.73358132292083 -22.369999937014654, 166.68122732287208 -22.309999936958775, 166.63415432282824 -22.280554936931352, 166.50548132270842 -22.240790936894314, 166.45190932265848 -22.31666393696497, 166.43219132264016 -22.28749993693782, 166.38161832259306 -22.179999936837703, 166.28387232250202 -22.164717936823465, 166.21637232243916 -22.1436089368038, 166.1513633223786 -22.073054936738103, 166.15191832237912 -22.033890936701624, 166.13887232236698 -21.963472936636038, 166.116363322346 -21.946390936620134, 166.06470032229788 -21.918608936594254, 165.96801832220785 -21.932781936607455, 165.83026332207953 -21.84444593652519, 165.75802732201225 -21.776945936462326, 165.7222003219789 -21.72444593641343, 165.6824633219419 -21.730826936419376, 165.6194183218832 -21.733326936421705, 165.5621913218299 -21.7138909364036, 165.52179132179225 -21.69832693638911, 165.2973363215832 -21.582499936281238, 165.2769183215642 -21.57028193626985, 165.25998132154842 -21.558054936258472, 165.1546913214504 -21.466663936173347, 164.94552732125555 -21.299726936017876, 164.90414532121702 -21.268608935988894, 164.8296813211477 -21.19499993592035, 164.80080932112082 -21.0944459358267, 164.74748132107112 -21.08236393581545, 164.71719132104295 -21.0661089358003, 164.69830032102533 -21.05333593578841, 164.623836320956 -20.940835935683637, 164.5760633209115 -20.924372935668302, 164.5141633208538 -20.896945935642762, 164.46329132080643 -20.855835935604475, 164.3851003207336 -20.771808935526224, 164.34970032070066 -20.68805493544822, 164.2513723206091 -20.571663935339814, 164.23094532059008 -20.55902693532805, 164.20690932056766 -20.536945935307486, 164.17260932053574 -20.503472935276307, 164.15359132051805 -20.43166393520943, 164.15574532052005 -20.395417935175672, 164.16802732053145 -20.371108935153032, 164.16678132053033 -20.343054935126915, 164.15416332051853 -20.321108935106466, 163.99219132036774 -20.15583593495255, 163.9827453203589 -20.110554934910382, 163.99551832037082 -20.08791793488929, 164.0180363203918 -20.088608934889933, 164.03679132040924 -20.102081934902486, 164.0574633204285 -20.11944593491866, 164.11746332048438 -20.174163934969613, 164.21300932057335 -20.273190935061848, 164.25247232061014 -20.295835935082934, 164.32567232067828 -20.324654935109777, 164.3133093206668 -20.282635935070644, 164.30177232065603 -20.2597269350493, 164.30824532066208 -20.236735935027895, 164.34720032069833 -20.242772935033514, 164.5098543208498 -20.30916393509534, 164.56816332090415 -20.369790935151812, 164.5817723209168 -20.40236393518215, 164.65860032098834 -20.44499993522186, 164.7402363210644 -20.488326935262208, 164.8232273211417 -20.57589993534377, 164.8555913211718 -20.622081935386774, 165.03387232133787 -20.72221793548003, 165.06219132136425 -20.737781935494525, 165.11182732141043 -20.75187293550765, 165.1351003214321 -20.748608935504606, 165.1577453214532 -20.751390935507203, 165.22330032151427 -20.765281935520136, 165.24690032153626 -20.791945935544973, 165.2611093215495 -20.823608935574455, 165.2602723215487 -20.85666393560524, 165.40109132167987 -21.05583593579074, 165.42094532169835 -21.078608935811943, 165.4430273217189 -21.099163935831086, 165.46997232174402 -21.106526935837948, 165.54192732181104 -21.13499993586447, 165.6030273218679 -21.18082693590715, 165.60006332186515 -21.216981935940822, 165.61245432187673 -21.255835935977004, 165.6308003218938 -21.27972693599925, 165.71386332197113 -21.297217936015542, 165.76095432201498 -21.30513593602292, 165.96386332220396 -21.406945936117737, 166.23330932245494 -21.611108936307872, 166.29385432251132 -21.642499936337117, 166.3377363225522 -21.668054936360917, 166.42996332263806 -21.72721793641601, 166.45385432266033 -21.746663936434118, 166.47497232268 -21.77610893646154, 166.546936322747 -21.843608936524404, 166.6196913228148 -21.906945936583398, 166.74356332293013 -21.986945936657904, 166.8455183230251 -22.024999936693348, 166.8707913230486 -22.036108936703684, 166.95094532312328 -22.093608936757235, 167.02804532319504 -22.232772936886846, 167.02359132319094 -22.28305493693368, 167.0163003231841 -22.31749993696576, 166.99856332316762 -22.341108936987737, 166.9294093231032 -22.397499937040266, 166.9169273230916 -22.398890937041557)), ((167.36272732350676 -21.183326935909477, 167.32912732347546 -21.165554935892928, 167.15441832331277 -21.081945935815057, 167.14193632330114 -21.076108935809614, 167.1336093232934 -21.069999935803935, 167.12219132328278 -21.059717935794353, 167.10080032326283 -21.03860893577469, 167.09384532325635 -21.031390935767973, 167.06497232322948 -20.997217935736145, 167.05969132322457 -20.988608935728124, 167.05163632321705 -20.94194593568467, 167.06247232322715 -20.92110893566526, 167.0766273232403 -20.921390935665528, 167.09692732325925 -20.913335935658026, 167.11135432327268 -20.906663935651807, 167.12524532328558 -20.899163935644822, 167.13693632329648 -20.889445935635777, 167.16955432332685 -20.853335935602146, 167.18551832334174 -20.823890935574724, 167.1899723233459 -20.81041793556217, 167.184772323341 -20.79354593554646, 167.15747232331563 -20.776945935531003, 167.10844532326996 -20.75819093551354, 167.09274532325531 -20.75860893551392, 167.06441832322895 -20.765281935520136, 167.04913632321473 -20.77139093552583, 167.03962732320588 -20.768263935522924, 167.05136332321678 -20.720135935478098, 167.07371832323759 -20.70694593546581, 167.19220032334795 -20.67999993544072, 167.21109132336557 -20.67749993543839, 167.2299453233831 -20.68139093544201, 167.24579132339784 -20.68778193544796, 167.30621832345412 -20.72221793548003, 167.30517232345318 -20.74423593550054, 167.28983632343886 -20.755554935511086, 167.28303632343255 -20.76305493551807, 167.2788723234287 -20.804999935557134, 167.27754532342743 -20.899581935645216, 167.32025432346722 -20.933326935676646, 167.33026332347652 -20.938054935681052, 167.3688543235125 -20.9392999356822, 167.38399132352657 -20.94624593568868, 167.4635813236007 -21.057363935792168, 167.4217813235618 -21.155135935883223, 167.39499132353683 -21.17832693590482, 167.36800932351167 -21.183054935909226, 167.36272732350676 -21.183326935909477)), ((167.99469132409536 -21.660826936354184, 167.9856543240869 -21.658754936352253, 167.97024532407255 -21.648608936342796, 167.88332732399164 -21.56889093626856, 167.8402363239515 -21.488890936194053, 167.81497232392798 -21.406945936117737, 167.80969132392306 -21.383890936096265, 167.83566332394724 -21.37541793608837, 167.93359132403845 -21.377499936090317, 167.9624633240653 -21.38721793609936, 167.9624633240653 -21.40027293611152, 167.96637232406897 -21.41028193612084, 167.98412732408548 -21.434445936143348, 167.99203632409285 -21.444299936152518, 168.00220032410232 -21.451945936159646, 168.03164532412973 -21.46291793616986, 168.09524532418897 -21.45555493616301, 168.12857232422004 -21.520554936223547, 168.1305093242218 -21.61610893631253, 168.12023632421227 -21.6311089363265, 168.0855093241799 -21.644445936338926, 168.0460813241432 -21.65889093635238, 167.99469132409536 -21.660826936354184)), ((167.49633632363123 -22.67389093729767, 167.48886332362423 -22.673608937297402, 167.4546813235924 -22.66583593729017, 167.41912732355928 -22.64639093727206, 167.4205363235606 -22.56110893719263, 167.42524532356498 -22.551390937183584, 167.43732732357626 -22.542081937174913, 167.4556543235933 -22.540554937173496, 167.50497232363927 -22.560208937191803, 167.541227323673 -22.59375493722304, 167.55470032368555 -22.61499993724283, 167.55038132368156 -22.63930893726547, 167.51942732365274 -22.649672937275113, 167.50164532363613 -22.67221793729611, 167.49633632363123 -22.67389093729767)), ((166.4991183227025 -20.717781935475898, 166.50915432271182 -20.681108935441742, 166.54220932274262 -20.64999993541278, 166.54858132274853 -20.641945935405275, 166.55456332275412 -20.629999935394153, 166.5586273227579 -20.594781935361354, 166.5597183227589 -20.54015493531047, 166.58047232277823 -20.503554935276384, 166.59384532279068 -20.49139093526506, 166.5969273227936 -20.479717935254186, 166.60134532279767 -20.447499935224187, 166.59830032279484 -20.436945935214354, 166.57426332277248 -20.4087549351881, 166.56051832275966 -20.411390935190553, 166.5631723227621 -20.399508935179483, 166.59411832279096 -20.389717935170367, 166.6091273228049 -20.38958193517024, 166.6246633228194 -20.406108935185628, 166.64831832284142 -20.438608935215896, 166.6515093228444 -20.466390935241776, 166.63610932283007 -20.466945935242293, 166.61204532280766 -20.47444593524928, 166.58800932278524 -20.511672935283954, 166.58411832278165 -20.52405493529548, 166.57608132277414 -20.55944593532844, 166.57662732277464 -20.584999935352243, 166.58136332277905 -20.59736393536376, 166.59412732279094 -20.60347293536944, 166.61079132280645 -20.59833593536466, 166.62440932281913 -20.602781935368796, 166.58136332277905 -20.67971793544045, 166.5744003227726 -20.686945935447184, 166.56524532276404 -20.69194593545184, 166.51580932271804 -20.71333593547176, 166.50582732270874 -20.717499935475644, 166.4991183227025 -20.717781935475898))) +NFK Norfolk I. MULTIPOLYGON (((167.96496332406764 -29.08110894326486, 167.9235813240291 -29.056663943242093, 167.91607232402214 -29.043054943229414, 167.91094532401735 -29.007363943196175, 167.93054532403556 -29.000554943189833, 167.94734532405124 -29.00305494319216, 167.99887232409924 -29.027499943214927, 167.98330932408476 -29.06610894325089, 167.96496332406764 -29.08110894326486))) +PNG Papua New Guinea MULTIPOLYGON (((146.37910930396424 -8.584708924176098, 146.27554530386777 -8.443054924044176, 146.23855430383333 -8.28583592389775, 146.11108230371462 -8.16389092378418, 146.08969130369474 -8.09110892371639, 145.83550930345797 -8.028054923657677, 145.61690930325437 -7.937781923573596, 145.4327363030829 -7.948054923583172, 145.2441093029072 -7.868608923509171, 145.18272730285003 -7.813835923458171, 145.15933630282825 -7.843345923485643, 144.87967230256777 -7.782499923428986, 144.84106330253184 -7.749235923398004, 144.8724543025611 -7.705417923357189, 144.86245430255178 -7.61055492326885, 144.84470030253522 -7.607781923266259, 144.8217823025139 -7.6890269233419275, 144.59940030230678 -7.660281923315154, 144.5521823022628 -7.611945923270142, 144.52290030223554 -7.502917923168596, 144.50832730222197 -7.618054923275835, 144.40858230212905 -7.5198639231843885, 144.43551830215415 -7.679999923333526, 144.46774530218414 -7.7430549233922505, 144.35878230208266 -7.743335923392507, 144.360227302084 -7.682499923335854, 144.3141183020411 -7.617917923275698, 144.24356330197537 -7.666945923321364, 144.2702453020002 -7.773754923420839, 144.217372301951 -7.794654923440305, 144.14721830188563 -7.778890923425621, 143.91192730166648 -7.696945923349304, 143.82919130158945 -7.617335923275164, 143.76830930153278 -7.506663923172084, 143.6648273014364 -7.467645923135748, 143.83941830159898 -7.715281923366376, 143.8537093016123 -7.810281923454852, 143.9580093017094 -7.978617923611637, 143.8881093016443 -8.039999923668802, 143.75276330151826 -8.039999923668802, 143.66137230143318 -7.991390923623527, 143.54608230132578 -8.006390923637497, 143.48370030126767 -7.990135923622361, 143.43864530122573 -7.910281923547984, 143.36038230115287 -7.901108923539439, 143.54300030132293 -8.054872923682652, 143.62940930140337 -8.195972923814054, 143.62385430139824 -8.238745923853898, 143.33856330113252 -8.253890923868, 142.97662730079543 -8.344163923952067, 142.84579130067357 -8.286663923898516, 142.6963453005344 -8.267499923880678, 142.50860930035958 -8.33597292394444, 142.44010930029577 -8.33208192394082, 142.4119273002695 -8.31583592392569, 142.3826003002422 -8.189308923807857, 142.32775430019115 -8.16389092378418, 142.2216183000923 -8.173335923792976, 142.1355273000121 -8.233335923848855, 142.32440030018802 -8.18333592380229, 142.35829130021955 -8.202781923820396, 142.38523630024469 -8.323190923932543, 142.43941830029513 -8.37139092397743, 142.51275430036344 -8.371945923977947, 142.63860030048062 -8.310554923920776, 142.7346823005701 -8.3224999239319, 142.90610030072975 -8.423608924026055, 143.11022730091986 -8.470281924069525, 143.24599130104633 -8.578054924169905, 143.39276330118298 -8.770281924348922, 143.40463630119405 -8.96805492453312, 143.3651003011572 -9.01222692457425, 143.31475430111033 -9.033126924593716, 143.2480183010482 -9.025554924586672, 143.0419913008563 -9.093126924649596, 142.90277230072667 -9.197499924746808, 142.63888230048087 -9.334717924874596, 142.57162730041824 -9.328054924868397, 142.42580930028248 -9.228054924775265, 142.20650030007823 -9.16499992471654, 141.61231829952482 -9.236108924782755, 141.52249129944119 -9.221108924768785, 141.37524529930403 -9.143335924696359, 141.30982729924312 -9.15389092470619, 141.16080029910432 -9.23749992478406, 141.10940929905644 -9.22471792477215, 141.013309298967 -9.13666392469014, 141.00613629896026 -6.893281922600835, 140.94940029890745 -6.903608922610445, 140.90277229886402 -6.855835922565959, 140.85885429882313 -6.678335922400649, 140.86300929882697 -6.631390922356928, 140.94720929890542 -6.499999922234565, 140.92803629888755 -6.450835922188773, 140.96705429892387 -6.336872922082634, 141.00613629896026 -6.332926922078968, 141.0024722989569 -2.6070819186089977, 141.0428912989945 -2.5899999185930938, 141.21414529915398 -2.622217918623093, 141.34579129927658 -2.7077819187027785, 141.60885429952162 -2.812499918800313, 141.89234529978563 -2.9709729189478935, 142.00360029988923 -2.9561089189340493, 142.1249723000023 -3.0594459190302956, 142.55190930039987 -3.2183359191782728, 143.03690930085156 -3.3634729193134376, 143.19470030099853 -3.359999919310212, 143.51844530130006 -3.4355549193805786, 143.61036330138563 -3.545835919483281, 143.79586330155843 -3.613263919546071, 144.0169363017643 -3.8105549197298245, 144.25030930198164 -3.870972919786084, 144.2809453020102 -3.806390919725942, 144.51373630222696 -3.8222179197406803, 144.5510913022618 -3.8786089197931943, 144.54385430225506 -3.9536089198630435, 144.57134530228063 -3.991945919898754, 144.72967230242807 -4.03139091993549, 144.85428230254416 -4.095690919995377, 144.9799633026612 -4.224581920115412, 145.0348543027123 -4.337217920220311, 145.09232730276585 -4.372781920253431, 145.3359363029927 -4.3908359202702485, 145.45108230309995 -4.494163920366475, 145.6173273032548 -4.70402692056193, 145.73550930336484 -4.802781920653899, 145.81360030343757 -5.069026920901862, 145.7869273034127 -5.231390921053077, 145.73886330336796 -5.305281921121889, 145.7244003033545 -5.412217921221483, 145.76639130339362 -5.485281921289527, 145.9635913035773 -5.473054921278148, 146.28915430388048 -5.5888909213860245, 146.47090030404974 -5.607572921403417, 146.65304530421935 -5.751945921537882, 146.77328230433136 -5.792499921575654, 146.7963093043528 -5.834417921614687, 146.8949543044447 -5.828890921609542, 146.96270930450777 -5.8977819216736975, 147.10743630464253 -5.966390921737599, 147.23187230475844 -5.971817921742655, 147.28494530480788 -5.935290921708628, 147.48061830499012 -5.977245921747709, 147.82635430531212 -6.3372179220829565, 147.86663630534963 -6.469999922206625, 147.8696913053525 -6.657781922381503, 147.81051830529736 -6.717781922437382, 147.5680273050715 -6.751945922469204, 147.19998230472874 -6.745835922463513, 147.1499913046822 -6.713890922433762, 146.9613633045065 -6.747217922464799, 146.94566330449192 -6.956663922659857, 147.03747230457742 -7.044445922741616, 147.14025430467314 -7.22110892290614, 147.13970930467264 -7.3252819230031605, 147.17859130470885 -7.463890923132254, 147.2135823047414 -7.4909729231574715, 147.3345453048541 -7.504308923169901, 147.45773630496882 -7.597781923256946, 147.6687273051653 -7.7924999234382994, 147.73162730522387 -7.9399999235756695, 147.86663630534963 -7.937217923573073, 147.97440030545 -7.996108923627915, 148.00720030548052 -8.066663923693625, 148.1352543055998 -8.066108923693108, 148.20621830566586 -8.298335923909391, 148.2305273056885 -8.559717924152821, 148.4444093058877 -8.676945924262, 148.4792633059202 -8.735835924316845, 148.53081830596818 -8.993054924556404, 148.60412730603645 -9.082499924639706, 148.75360030617566 -9.104163924659872, 149.06927230646966 -9.039863924599999, 149.13775430653345 -9.006672924569088, 149.25790030664535 -8.99847292456144, 149.31448230669804 -9.0197909245813, 149.33800930671993 -9.129717924683675, 149.17976330657257 -9.355554924894008, 149.21997230661003 -9.474717925004981, 149.27372730666008 -9.511463925039209, 149.34884530673003 -9.521945925048968, 149.4374723068126 -9.571390925095017, 149.45440930682832 -9.60305492512451, 149.742872307097 -9.601663925123205, 149.87759130722247 -9.642635925161372, 150.00888230734472 -9.631390925150896, 150.0537273073865 -9.722363925235626, 149.92663630726815 -9.76944592527947, 149.7673453071198 -9.791254925299782, 149.7171913070731 -9.833472925339095, 149.91415430725652 -10.048890925539723, 149.98996330732712 -10.081872925570437, 150.18664530751028 -10.094308925582027, 150.3083183076236 -10.192499925673474, 150.57968230787634 -10.241108925718734, 150.61564530790986 -10.276526925751725, 150.8780183081542 -10.229999925708398, 150.635118307928 -10.350481925820603, 150.41885430772658 -10.300690925774234, 150.36910930768022 -10.321945925794026, 150.3531453076654 -10.394445925861547, 150.6494183079413 -10.47555492593709, 150.68995430797906 -10.563190926018706, 150.56802730786546 -10.621945926073423, 150.47681830778055 -10.625481926076716, 150.42622730773343 -10.689163926136018, 150.20969130753178 -10.700554926146637, 150.1130093074417 -10.667499926115852, 150.01122730734693 -10.570554926025565, 149.8516363071983 -10.548608926005116, 149.8801093072248 -10.506390925965803, 149.98968230732686 -10.51805492597667, 150.07885430740993 -10.462781925925185, 149.74774530710152 -10.342781925813426, 149.5695633069356 -10.341390925812135, 149.53665430690495 -10.36166392583101, 149.093291306492 -10.234163925712267, 148.93496330634457 -10.26722692574306, 148.7944363062137 -10.239163925716923, 148.67886330610605 -10.151390925635184, 148.63998230606984 -10.187363925668691, 148.40331830584944 -10.200554925680976, 148.33482730578567 -10.178335925660278, 148.30469130575761 -10.13028192561552, 148.15599130561912 -10.076435925565377, 148.08609130555402 -10.13652692562134, 147.95245430542957 -10.14583592563001, 147.87219130535482 -10.047499925538432, 147.76608230525596 -10.05610892554644, 147.60134530510254 -9.975281925471165, 147.50429130501215 -9.871108925374145, 147.4894003049983 -9.769026925279078, 147.29660030481875 -9.534126925060306, 147.248563304774 -9.505835925033963, 147.14780930468015 -9.501008925029467, 147.129391304663 -9.443608924976004, 147.080000304617 -9.434154924967203, 147.09940930463506 -9.489163925018431, 147.05871830459716 -9.469999925000593, 146.9266363044742 -9.282781924826224, 146.8958093044455 -9.27847292482221, 146.888882304439 -9.183335924733612, 146.90695430445584 -9.133363924687075, 146.96970030451428 -9.091390924647982, 146.97126330451573 -9.02992692459074, 146.9213723044693 -9.10305492465885, 146.6216093041901 -9.025554924586672, 146.5783093041498 -8.98694592455071, 146.54580930411953 -8.900135924469865, 146.5674723041397 -8.807499924383592, 146.4413453040222 -8.624717924213357, 146.37910930396424 -8.584708924176098)), ((149.22076330661076 -5.606108921402054, 149.61135430697453 -5.518608921320563, 149.66830930702758 -5.519445921321349, 149.68469130704284 -5.560345921359442, 149.71078230706712 -5.56249992136145, 149.87801830722287 -5.5356909213364816, 149.92859130726998 -5.5036089213065935, 149.98385430732145 -5.419445921228217, 149.91830930726042 -5.34610892115991, 150.00277230733906 -5.169445920995386, 150.01971830735482 -5.047781920882073, 150.09232730742247 -5.00778192084482, 150.18163630750564 -5.038890920873797, 150.2039183075264 -5.071808920904459, 150.07248230740396 -5.1516639209788195, 150.04248230737602 -5.308608921124986, 150.12231830745037 -5.514863921317087, 150.16442730748963 -5.5513909213511, 150.29871830761465 -5.567781921366361, 150.41247230772063 -5.458608921264684, 150.48855430779145 -5.446945921253828, 150.5762183078731 -5.477781921282542, 150.6121823079066 -5.544308921344509, 150.64413630793638 -5.556945921356274, 150.92440930819737 -5.487217921291332, 151.01138230827837 -5.408890921218386, 151.02859130829444 -5.271663921090578, 151.0846913083467 -5.1563909209832275, 151.26430030851395 -4.985135920823737, 151.4410723086786 -4.936663920778585, 151.61085430883668 -4.969717920809373, 151.67609130889747 -4.908054920751951, 151.68219130890316 -4.814445920664767, 151.62911830885372 -4.501945920373728, 151.50033630873378 -4.231735920122077, 151.53692730876787 -4.181945920075705, 151.8419183090519 -4.224717920115538, 151.89526330910155 -4.314999920199625, 151.97080930917195 -4.33659992021974, 152.18150030936818 -4.146945920043109, 152.2146913093991 -4.16610892006095, 152.24078230942337 -4.242572920132162, 152.19760030938312 -4.241254920130942, 152.17927230936607 -4.216390920107784, 152.18316330936972 -4.308190920193283, 152.3558093095305 -4.343054920225754, 152.40304530957445 -4.623054920486524, 152.38610930955872 -4.793335920645106, 152.23731830942012 -4.987217920825671, 152.1591453093473 -5.006945920844046, 151.99356330919312 -4.97249992081197, 151.96801830916934 -5.0041639208414495, 151.9769003091776 -5.161808920988278, 152.07109130926534 -5.236663921057982, 152.14483630933398 -5.344026921157976, 152.09607230928862 -5.457226921263398, 151.82205430903338 -5.6011089213973975, 151.70247230892204 -5.530690921331825, 151.470518308706 -5.530972921332079, 151.3847093086261 -5.807199921589344, 151.16564530842209 -5.958072921729851, 151.00305430827063 -6.0224999217898585, 150.85580930813353 -6.040835921806931, 150.77359130805695 -6.140417921899669, 150.66372730795462 -6.166872921924309, 150.6352543079281 -6.148608921907297, 150.46856330777285 -6.27610892202604, 150.2227453075439 -6.288335922037433, 150.18351830750737 -6.255972922007288, 150.08080930741176 -6.279999922029674, 150.01830930735355 -6.323608922070278, 149.97552730731366 -6.273608922023712, 149.63470930699629 -6.308054922055803, 149.57330030693907 -6.26333592201415, 149.48592730685772 -6.122781921883245, 149.31191830669565 -6.057217921822186, 149.16388230655775 -6.1124999218736775, 149.13482730653072 -6.151663921910142, 149.06622730646683 -6.164581921922178, 149.0491453064509 -6.143472921902514, 149.07240030647256 -6.146526921905362, 149.0788543064786 -6.119445921880143, 149.05554530645685 -6.0444459218102935, 148.8830003062962 -5.981663921751817, 148.877445306291 -5.94557292171821, 148.76443630618576 -5.864990921643155, 148.52804530596558 -5.828372921609059, 148.3898273058369 -5.778008921562147, 148.33932730578982 -5.714372921502886, 148.31646330576854 -5.6280269214224745, 148.35813630580736 -5.492635921296383, 148.428591305873 -5.451108921257699, 148.51971830595784 -5.502499921305571, 148.88360930629676 -5.496945921300394, 148.9857823063919 -5.473054921278148, 149.18914530658128 -5.558335921357568, 149.22076330661076 -5.606108921402054)), ((155.40408231236944 -5.999999921768904, 155.4301183123937 -6.114717921875737, 155.47717231243746 -6.16916392192644, 155.5778823125313 -6.22257292197618, 155.6149633125658 -6.219999921973795, 155.80345431274134 -6.3662459221099965, 155.91476331284503 -6.520763922253892, 155.96684531289355 -6.714163922434011, 155.9442723128725 -6.782217922497395, 155.91253631284297 -6.805481922519064, 155.89053631282246 -6.779717922495067, 155.8201183127569 -6.779163922494547, 155.70850031265292 -6.8808999225893075, 155.48510931244488 -6.827217922539305, 155.33989131230965 -6.74145492245944, 155.19274531217258 -6.560554922290962, 155.23288231221 -6.43770892217654, 155.2164913121947 -6.324717922071315, 155.18109131216175 -6.287499922036659, 155.10162731208771 -6.277217922027077, 154.9878723119818 -6.212635921966935, 154.7505823117608 -5.949154921721544, 154.69973631171342 -5.772826921557325, 154.7536003117636 -5.518054921320058, 154.79232731179968 -5.48083592128539, 154.8824453118836 -5.543335921343598, 155.0735823120616 -5.561663921360662, 155.2160633121943 -5.8687269216466404, 155.27323631224755 -5.88659992166329, 155.40408231236944 -5.999999921768904)), ((152.65942730981328 -3.8427819197598296, 152.9191273100551 -4.004163919910127, 153.1330273102543 -4.265835920153833, 153.12808231024974 -4.391599920270963, 153.03998231016766 -4.492917920365315, 153.0784273102035 -4.59486392046027, 152.97746331010944 -4.763608920617415, 152.90095431003817 -4.822917920672651, 152.73898230988732 -4.665763920526288, 152.69302730984452 -4.558335920426245, 152.6649823098184 -4.468890920342943, 152.69775430984896 -4.361526920242952, 152.693509309845 -4.187154920080559, 152.53872730970085 -3.900090919813209, 152.37497230954835 -3.7277819196527275, 152.35522730952994 -3.6540999195841124, 152.28594530946543 -3.5761089195114693, 152.14434530933357 -3.488090919429496, 151.93496330913854 -3.445554919389892, 151.75832730897406 -3.324445919277096, 151.61661830884208 -3.174372919137326, 151.48830030872256 -3.1279179190940596, 151.41720930865637 -3.0505549190220194, 151.214963308468 -2.941945918920865, 151.00206330826973 -2.7881909187776728, 150.75234530803715 -2.769445918760212, 150.7301003080164 -2.737499918730464, 150.7492633080343 -2.720490918714617, 150.88379130815957 -2.7093359187042267, 150.87350930815 -2.6520729186509016, 150.7927543080748 -2.616663918617917, 150.80573630808686 -2.5665909185712934, 151.19024530844496 -2.8261089188129773, 151.28081830852932 -2.870835918854638, 151.42315430866188 -2.900835918882578, 151.82371830903492 -3.196454919157901, 151.8587183090675 -3.1865269191486476, 152.05511830925047 -3.2538909192113863, 152.20745430939235 -3.457499919401016, 152.35995430953437 -3.5454179194828868, 152.41192730958278 -3.6336089195650203, 152.49453630965968 -3.653335919583398, 152.55498230971597 -3.7512549196745937, 152.54774530970923 -3.796254919716503, 152.65942730981328 -3.8427819197598296)), ((147.39193630490752 -1.9608359180071346, 147.44670030495854 -2.0129909180557064, 147.43871830495107 -2.063190918102464, 147.27527230479888 -2.121108918156395, 147.2084363047366 -2.189508918220099, 146.98052730452434 -2.1991639182290896, 146.72634530428763 -2.160835918193399, 146.56863630414074 -2.235208918262657, 146.52499130410013 -2.190835918221339, 146.51844530409403 -2.146663918180195, 146.58024530415156 -1.9986819180423794, 146.6385823042059 -1.9786089180236814, 146.8571823044095 -1.949163917996259, 147.09677230463262 -1.9666639180125571, 147.41887230493262 -2.048190918088494, 147.39193630490752 -1.9608359180071346)), ((150.84692730812526 -9.718054925231613, 150.84411830812263 -9.685554925201345, 150.80163630808306 -9.658608925176239, 150.65803630794932 -9.662917925180253, 150.51443630781557 -9.623335925143394, 150.42330930773073 -9.431390924964631, 150.43913630774546 -9.357081924895425, 150.50220030780417 -9.341245924880681, 150.67998230796974 -9.44125492497382, 150.76150930804567 -9.405417924940437, 150.8044093080856 -9.432781924965923, 150.88691830816248 -9.52319092505013, 150.93219130820466 -9.644726925163312, 150.84692730812526 -9.718054925231613)), ((150.36773630767897 -2.6866639186831094, 150.3442723076571 -2.6629179186609946, 150.18733630751092 -2.6855549186820866, 149.95010030728997 -2.470763918482035, 150.2060823075284 -2.3744459183923396, 150.41720930772505 -2.460554918472539, 150.44469130775065 -2.4777819184885743, 150.4671913077716 -2.5447179185509157, 150.45900030776397 -2.6509729186498703, 150.36773630767897 -2.6866639186831094)), ((151.22912730848117 -10.201108925681481, 151.1459543084037 -10.146254925630402, 150.94970930822097 -10.1055549255925, 150.82690930810656 -9.838890925344145, 150.76054530804475 -9.803754925311424, 150.76261830804674 -9.707845925222102, 150.9353913082076 -9.852363925356698, 151.05996330832363 -10.016945925509972, 151.11809130837776 -10.046599925537592, 151.1481823084058 -10.03013592552226, 151.13636330839478 -9.989163925484092, 151.18817230844303 -9.942081925440249, 151.28276330853112 -9.9252819254246, 151.2991363085464 -9.96249992545927, 151.2216183084742 -10.170835925653293, 151.22912730848117 -10.201108925681481)), ((152.83550930997723 -9.23555492478225, 152.65122730980562 -9.06833592462651, 152.5601183097208 -9.016108924577864, 152.49871830966356 -9.0233359245846, 152.52928230969206 -8.989581924553164, 152.62274530977908 -8.960972924526516, 152.8112183099546 -8.971454924536289, 153.01956331014867 -9.123054924677476, 152.9999823101304 -9.169026924720285, 152.83550930997723 -9.23555492478225)), ((147.99048230546498 -5.8560359216348274, 147.97099130544683 -5.79053592157382, 147.8651093053482 -5.747754921533982, 147.7699543052596 -5.622217921417061, 147.76151830525174 -5.52528192132678, 147.78207230527084 -5.4924999212962575, 147.85217230533613 -5.49360892129728, 148.06530930553464 -5.627581921422063, 148.08044530554872 -5.6659549214577964, 148.0614913055311 -5.777117921561327, 147.99048230546498 -5.8560359216348274)), ((153.56607231065766 -11.642499927023891, 153.47912731057664 -11.573335926959473, 153.37606331048067 -11.567217926953774, 153.38699131049083 -11.5036819268946, 153.27150031038332 -11.459372926853334, 153.18940931030681 -11.370690926770749, 153.19941831031616 -11.322081926725474, 153.50775431060333 -11.472499926865567, 153.6866453107699 -11.52694592691627, 153.77707231085412 -11.600135926984436, 153.67330931075753 -11.628054927010439, 153.6023273106914 -11.617499927000608, 153.56607231065766 -11.642499927023891)), ((150.3344093076479 -9.526663925053356, 150.19302730751622 -9.453890924985586, 150.1095453074385 -9.370690924908104, 150.1246823074526 -9.261663924806555, 150.19359130751678 -9.20944592475793, 150.2321823075527 -9.207781924756375, 150.3309453076447 -9.27360892481768, 150.37716330768774 -9.386390924922722, 150.36300930767453 -9.487499925016891, 150.3344093076479 -9.526663925053356)), ((154.63720931165523 -5.458608921264684, 154.53027231155562 -5.133890920962273, 154.60219131162262 -5.027363920863067, 154.64262731166025 -5.016390920852842, 154.66858231168442 -5.034863920870052, 154.72830031174004 -5.216390921039107, 154.69316331170734 -5.421108921229759, 154.63720931165523 -5.458608921264684)), ((147.1355273046687 -5.451108921257699, 147.0090003045509 -5.352635921165998, 147.00247230454482 -5.303890921120598, 147.01477230455623 -5.23916392106031, 147.12481830465873 -5.191526921015949, 147.2116363047396 -5.26916392108825, 147.22885430475566 -5.363890921176477, 147.22390930475103 -5.428608921236744, 147.1355273046687 -5.451108921257699)), ((149.7319003070868 -1.6033359176741868, 149.70288230705978 -1.5638909176374511, 149.66136330702108 -1.5813909176537493, 149.53193630690055 -1.4676359175478098, 149.5799543069453 -1.3552819174431647, 149.62481830698704 -1.360417917447947, 149.7167633070727 -1.4293729175121683, 149.79052730714136 -1.5790269176515466, 149.7319003070868 -1.6033359176741868)), ((145.9513543035659 -4.764445920618201, 145.8951273035135 -4.738608920594132, 145.87315430349304 -4.669717920529976, 145.90205430351995 -4.591808920457424, 145.97843630359108 -4.527917920397911, 146.054563303662 -4.598890920464015, 146.0541363036616 -4.661390920522223, 146.03913630364764 -4.711254920568663, 145.9513543035659 -4.764445920618201)), ((143.63244530140622 -8.734445924315551, 143.58578230136277 -8.67971792426458, 143.2405093010412 -8.4872179240853, 143.18253630098724 -8.42347292402593, 143.21469130101718 -8.41569092401869, 143.27469130107306 -8.474445924073407, 143.46719130125234 -8.527781924123076, 143.6458093014187 -8.66639092425217, 143.63244530140622 -8.734445924315551)), ((143.57275430135064 -8.493890924091517, 143.35494530114778 -8.418054924020893, 143.31441830111004 -8.380135923985577, 143.3563543011491 -8.357772923964745, 143.578509301356 -8.37548192398124, 143.61605430139093 -8.465835924065388, 143.57275430135064 -8.493890924091517)), ((154.11218231116624 -11.43971792683503, 154.06038231111802 -11.431945926827794, 154.00499131106642 -11.385554926784593, 154.02109131108142 -11.348890926750443, 154.08969131114532 -11.315281926719138, 154.22525431127156 -11.31944592672302, 154.27247231131554 -11.341526926743583, 154.29776331133905 -11.391945926790541, 154.2647093113083 -11.419863926816546, 154.13609131118852 -11.400690926798688, 154.11218231116624 -11.43971792683503)), ((151.1444363084023 -8.830554924405064, 151.09497230835626 -8.77110892434969, 151.10107230836195 -8.638890924226558, 151.05552730831948 -8.551945924145585, 150.9975273082655 -8.527081924122427, 151.03332730829885 -8.454717924055032, 151.07635430833892 -8.426108924028384, 151.1232913083826 -8.422781924025287, 151.1024453083632 -8.741945924322536, 151.1444363084023 -8.830554924405064)), ((152.64080930979594 -3.22999991918914, 152.57718230973666 -3.177217919139977, 152.53818230970035 -3.1033359190711707, 152.6028913097606 -3.0476359190192994, 152.6456003098004 -3.046390919018137, 152.66775430982102 -3.129445919095488, 152.64080930979594 -3.22999991918914)), ((152.7444183098924 -10.71666392616163, 152.57385430973358 -10.656945926106019, 152.54240930970428 -10.632572926083313, 152.69163630984326 -10.66278192611145, 152.78760930993263 -10.620417926071994, 152.87190031001114 -10.660135926108993, 152.84497230998608 -10.695281926141718, 152.7444183098924 -10.71666392616163)), ((150.8805273081565 -10.652781926102136, 150.78524530806777 -10.634726926085321, 150.76846330805216 -10.609308926061658, 150.79309130807508 -10.541663925998648, 150.89623630817113 -10.550417926006801, 150.8805273081565 -10.652781926102136)), ((150.77359130805695 -2.9855549189614834, 150.87495430815136 -2.91069091889176, 151.02199130828825 -2.9685459189456367, 150.9971183082651 -2.9835459189596065, 150.83496330811408 -2.959999918937683, 150.77359130805695 -2.9855549189614834)), ((143.23470930103582 -9.107108924662626, 143.25965430105902 -9.104372924660069, 143.26378230106286 -9.12520892467947, 143.2410273010417 -9.162217924713943, 143.19578230099955 -9.135072924688657, 143.23470930103582 -9.107108924662626))) +SLB Solomon Is. MULTIPOLYGON (((160.82025431741363 -9.82944592533535, 160.82523631741827 -9.866599925369954, 160.78690931738254 -9.88916392539096, 160.65027231725531 -9.929999925429001, 160.5988453172074 -9.92333592542279, 160.489963317106 -9.89139092539304, 160.34524531697122 -9.826108925332235, 160.31747231694538 -9.819581925326162, 160.235509316869 -9.812499925319571, 160.19503631683136 -9.817426925324156, 160.14663631678627 -9.824717925330944, 160.07178231671656 -9.828890925334832, 160.00638231665562 -9.82430892533057, 159.8343363164954 -9.799163925307141, 159.73272731640077 -9.711945925225919, 159.6169093162929 -9.537499925063457, 159.60244531627944 -9.428890924962303, 159.60183631627888 -9.320554924861412, 159.6263453163017 -9.294163924836823, 159.64776331632163 -9.281390924824933, 159.66552731633817 -9.271945924816137, 159.69801831636846 -9.257363924802561, 159.7230093163917 -9.254999924800359, 159.7758003164409 -9.282081924825576, 159.8088723164717 -9.307781924849508, 159.84677231650699 -9.341108924880544, 159.87385431653223 -9.368608924906155, 159.8841543165418 -9.38889092492505, 159.9064913165626 -9.415835924950144, 159.93344531658772 -9.431526924964757, 159.99856331664836 -9.437499924970325, 160.1310003167717 -9.431390924964631, 160.15803631679688 -9.416454924950727, 160.3569003169821 -9.415281924949625, 160.38638231700952 -9.426663924960224, 160.5830363171927 -9.54971792507483, 160.64249131724807 -9.601526925123082, 160.65720031726175 -9.629445925149085, 160.7170543173175 -9.699445925214278, 160.78011831737626 -9.731945925244545, 160.82025431741363 -9.82944592533535)), ((161.22662731779207 -9.11777292467255, 161.20821831777494 -9.135072924688657, 161.2421913178066 -9.211108924759472, 161.28888231785004 -9.35721792489555, 161.3669093179227 -9.482772925012483, 161.3773183179324 -9.507917925035898, 161.38693631794138 -9.553054925077944, 161.39072731794494 -9.598399925120177, 161.37900031793401 -9.631872925151342, 161.29358231785443 -9.568054925091914, 161.25747231782083 -9.516108925043525, 161.24399131780825 -9.492081925021154, 161.23412731779905 -9.457781924989206, 161.2196823177856 -9.428054924961529, 161.19372731776144 -9.396390924932035, 160.92260931750894 -9.19007292473988, 160.88552731747438 -9.184308924734523, 160.80816331740238 -9.062635924621205, 160.78665431738233 -9.00610892456855, 160.7647093173619 -8.947781924514231, 160.7563823173541 -8.896390924466374, 160.72218231732228 -8.80555492438178, 160.7044093173057 -8.775281924353578, 160.69003631729237 -8.755554924335215, 160.65860031726305 -8.626945924215434, 160.6572723172618 -8.606945924196808, 160.68191831728478 -8.588890924179992, 160.71752731731794 -8.564926924157675, 160.7099633173109 -8.523054924118682, 160.64206331724768 -8.434445924036154, 160.6161363172235 -8.417572924020433, 160.58914531719836 -8.384999923990108, 160.58024531719008 -8.334999923943542, 160.71523631731583 -8.306108923916625, 160.75512731735296 -8.314999923924915, 160.8129003174068 -8.370135923976264, 160.82371831741682 -8.411808924015077, 160.85891831744965 -8.468817924068162, 160.91470031750157 -8.526390924121785, 160.968845317552 -8.57471792416679, 160.9835633175657 -8.590554924181546, 161.0099823175903 -8.635554924223456, 161.0060913175867 -8.656108924242588, 160.9716183175546 -8.683054924267694, 160.9497093175342 -8.710281924293042, 160.9305453175163 -8.763608924342705, 160.9374723175228 -8.796108924372973, 160.94429131752912 -8.816526924391994, 160.98832731757017 -8.849545924422742, 161.0209543176005 -8.841526924415277, 161.1178723176908 -8.922499924490694, 161.14956331772032 -8.952217924518365, 161.163163317733 -8.969717924534663, 161.22161831778743 -9.096663924652887, 161.22662731779207 -9.11777292467255)), ((159.86413631652317 -8.519717924115568, 159.8766183165348 -8.52110892411686, 159.89001831654724 -8.557572924150818, 159.8444183165048 -8.547499924141448, 159.81079131647346 -8.527226924122559, 159.80246331646572 -8.521663924117377, 159.69912731636947 -8.411390924014682, 159.62246331629808 -8.360554923967342, 159.5932913162709 -8.353608923960863, 159.5613723162412 -8.353745923961, 159.52499131620732 -8.339445923947679, 159.20218231590667 -8.184717923803575, 159.01388231573128 -8.087217923712771, 158.8421823155714 -7.971454923604966, 158.84405431557315 -7.946526923581743, 158.8233003155538 -7.923054923559889, 158.67594531541658 -7.806108923450964, 158.60599131535145 -7.769790923417148, 158.5798823153271 -7.721426923372107, 158.58880931533542 -7.6900639233428905, 158.57458231532217 -7.662408923317145, 158.5480093152974 -7.6457639233016295, 158.52250931527368 -7.6245549232818774, 158.48745431524105 -7.554163923216322, 158.64580931538853 -7.567917923229132, 158.7616543154964 -7.624999923282303, 158.92190931564562 -7.755835923404149, 159.02221831573905 -7.849717923491582, 159.07858231579155 -7.90430892354243, 159.1199633158301 -7.918054923555232, 159.24273631594446 -7.947217923582386, 159.38802731607973 -7.994163923626104, 159.50247231618636 -8.077499923703726, 159.5333273162151 -8.106945923731146, 159.85120931651113 -8.331945923940694, 159.86550931652442 -8.488608924086591, 159.86413631652317 -8.519717924115568)), ((162.292754318785 -10.72944592617354, 162.2633093187576 -10.7855549262258, 162.33996331882895 -10.820281926258133, 162.38293631886899 -10.829463926266683, 162.30581831879715 -10.841945926278314, 162.11746331862173 -10.827781926265118, 161.88217231840258 -10.768608926210007, 161.77831831830588 -10.72083592616552, 161.63638231817367 -10.62527292607652, 161.5380363180821 -10.532635925990249, 161.5413633180852 -10.508890925968132, 161.49856331804534 -10.367772925836704, 161.46637231801537 -10.350835925820931, 161.40054531795403 -10.333335925804633, 161.37010031792568 -10.32999992580153, 161.34683631790404 -10.346108925816523, 161.28512731784656 -10.333745925805019, 161.27969131784153 -10.303335925776693, 161.2969823178576 -10.211872925691509, 161.34579131790304 -10.203335925683561, 161.38332731793804 -10.20805492568796, 161.40610031795921 -10.211390925691063, 161.44372731799427 -10.221526925700502, 161.50610031805235 -10.254445925731162, 161.54525431808884 -10.276663925751848, 161.69260931822606 -10.362363925831673, 161.7110913182433 -10.381390925849388, 161.72350031825482 -10.402708925869248, 161.8391453183625 -10.448054925911478, 162.00560031851757 -10.479999925941229, 162.0549273185635 -10.479063925940352, 162.0760003185831 -10.44742692591089, 162.10649131861152 -10.449299925912626, 162.1324453186357 -10.473608925935267, 162.1798363186798 -10.542363925999311, 162.2647093187589 -10.673608926121531, 162.2866543187793 -10.68444592613163, 162.29281831878507 -10.705345926151097, 162.292754318785 -10.72944592617354)), ((157.44384531426908 -7.433890923104315, 157.44183631426722 -7.418399923089893, 157.38428231421364 -7.400690923073398, 157.35885431418995 -7.396663923069639, 157.26110931409892 -7.36860892304351, 157.14636331399203 -7.33055492300808, 156.93206331379247 -7.216390922901752, 156.89053631375378 -7.175690922863851, 156.86135431372662 -7.132781922823881, 156.81274531368132 -7.0655549227612795, 156.68365431356114 -6.901663922608634, 156.64636331352636 -6.875835922584585, 156.6178003134998 -6.8683359225776, 156.55859131344465 -6.82805492254009, 156.5077543133973 -6.783335922498438, 156.4652363133577 -6.736945922455234, 156.43900031333328 -6.661108922384599, 156.44163631333572 -6.639863922364825, 156.48645431337746 -6.605517922332837, 156.5348363134225 -6.609308922336368, 156.65150931353116 -6.65889092238254, 156.67440931355247 -6.683890922405823, 156.68941831356648 -6.702781922423412, 156.7099633135856 -6.731526922450186, 156.7566543136291 -6.764163922480577, 156.7798453136507 -6.778472922493904, 156.8635913137287 -6.814445922527412, 156.98412731384093 -6.866808922576183, 157.04248231389528 -6.901663922608634, 157.11634531396408 -6.9743089226763, 157.1263453139734 -6.996526922696987, 157.12329131397053 -7.029445922727646, 157.12544531397253 -7.059654922755783, 157.14622731399191 -7.124999922816642, 157.18829131403106 -7.17833592286631, 157.31927231415307 -7.283754922964491, 157.43344531425942 -7.3246549230025835, 157.45593631428034 -7.315417922993973, 157.49926331432073 -7.3015999229811115, 157.53227231435142 -7.316663922995133, 157.5351093143541 -7.359163923034714, 157.52650931434607 -7.3779179230521805, 157.5024723143237 -7.3800999230542175, 157.46441831428825 -7.399999923072755, 157.44384531426908 -7.433890923104315)), ((157.8119183146119 -8.620835924209743, 157.80080931460157 -8.58944592418051, 157.7741363145767 -8.554445924147913, 157.75305431455706 -8.52999992412515, 157.72982731453544 -8.513817924110072, 157.7002543145079 -8.516945924112989, 157.68719131449575 -8.516390924112471, 157.67636331448563 -8.513608924109874, 157.65691831446753 -8.505554924102384, 157.61732731443067 -8.483890924082203, 157.5802453143961 -8.44249992404366, 157.5746723143909 -8.43110892403304, 157.56178231437895 -8.399863924003952, 157.55914531437645 -8.339445923947679, 157.56190931437902 -8.327499923936557, 157.57275431438916 -8.34360892395155, 157.5755273143917 -8.354445923961649, 157.580109314396 -8.388754923993602, 157.61989131443306 -8.41416392401726, 157.62814531444076 -8.403190924007049, 157.62830031444088 -8.387499923992436, 157.57885431439485 -8.298754923909783, 157.5555453143731 -8.268890923881969, 157.53233631435148 -8.25528192386929, 157.36245431419331 -8.274445923887143, 157.33496331416768 -8.308335923918705, 157.33038231416344 -8.317499923927244, 157.29359131412917 -8.339999923948199, 157.26110931409892 -8.333890923942505, 157.23635431407587 -8.312217923922319, 157.22744531406755 -8.2941639239055, 157.21496331405592 -8.256108923870059, 157.2146913140557 -8.238335923853512, 157.21856331405928 -8.223608923839791, 157.23571831407526 -8.197572923815542, 157.32745431416072 -8.127217923750024, 157.35467231418602 -8.072772923699318, 157.38302731421243 -8.032781923662071, 157.42483631425137 -7.99208192362417, 157.43637231426214 -7.986663923619119, 157.48578231430815 -7.967781923601535, 157.5005363143219 -7.96597292359985, 157.58359131439926 -8.011108923641885, 157.5974723144122 -8.026108923655855, 157.61150031442526 -8.060281923687683, 157.61440931442792 -8.140835923762708, 157.6119093144256 -8.158335923779006, 157.63302731444526 -8.238472923853635, 157.67276331448227 -8.236945923852218, 157.6998273145075 -8.2247909238409, 157.72497231453093 -8.220835923837214, 157.73440931453968 -8.224717923840828, 157.77769131458 -8.248263923862751, 157.8707913146667 -8.405835924009509, 157.90615431469968 -8.483126924081489, 157.87634531467188 -8.566390924159037, 157.8222093146215 -8.595554924186203, 157.8119183146119 -8.620835924209743)), ((156.70303631357916 -7.950835923585757, 156.56524531345082 -7.75805492340622, 156.54553631343248 -7.751945923400527, 156.50720031339677 -7.711808923363151, 156.50027231339033 -7.698335923350598, 156.4974633133877 -7.687217923340242, 156.4960633133864 -7.652781923308169, 156.49815431338834 -7.634308923290973, 156.51817231340698 -7.603126923261925, 156.55440931344071 -7.578608923239088, 156.58384531346815 -7.570554923231597, 156.62370031350525 -7.58889092324867, 156.77914531365002 -7.703054923354998, 156.8083003136772 -7.7287459233789235, 156.8078913136768 -7.759308923407389, 156.80386331367305 -7.769445923416825, 156.7908003136609 -7.790554923436488, 156.77233631364368 -7.812917923457306, 156.74969131362263 -7.824445923468048, 156.72676331360128 -7.84236392348474, 156.7155183135908 -7.865281923506075, 156.70859131358435 -7.885554923524964, 156.70663631358252 -7.89721792353582, 156.70303631357916 -7.950835923585757)), ((157.1505453139959 -8.151663923772787, 157.14443631399024 -8.150835923772021, 157.0435823138963 -8.126390923749256, 157.02900931388274 -8.118608923742002, 156.99163631384795 -8.076945923703207, 156.96774531382567 -8.04639092367475, 156.95190931381092 -8.007781923638788, 156.9449723138045 -7.9777819236108485, 156.94720931380658 -7.966390923600244, 156.9641453138223 -7.922217923559103, 156.98135431383838 -7.896390923535051, 157.02768231388148 -7.8653459235061405, 157.08024531393045 -7.851945923493659, 157.09384531394312 -7.853054923494696, 157.12189131396923 -7.859163923500375, 157.15554531400056 -7.893054923531949, 157.17690931402046 -7.919445923556523, 157.18359131402673 -7.931663923567896, 157.19691831403912 -7.981663923614462, 157.20412731404582 -8.059445923686908, 157.19912731404116 -8.084445923710192, 157.1835823140267 -8.119581923742913, 157.15983631400456 -8.14721792376865, 157.1505453139959 -8.151663923772787)), ((160.497463317113 -11.845835927213258, 160.47238231708963 -11.841663927209368, 160.41720931703827 -11.810835927180662, 160.40136331702348 -11.799445927170055, 160.38192731700542 -11.781663927153488, 160.3802453170038 -11.759726927133059, 160.3764823170003 -11.746799927121018, 160.36050931698543 -11.718335927094515, 160.27818231690878 -11.641108927022586, 160.26304531689465 -11.633054927015095, 160.23745431687087 -11.62944592701173, 160.2223823168568 -11.638190927019878, 160.20828231684368 -11.657217927037593, 160.15358231679272 -11.651599927032365, 160.02859131667634 -11.607499926991295, 160.01971831666805 -11.60221792698637, 160.0094273166585 -11.592217926977057, 159.98690931663748 -11.567217926953774, 159.9621913166145 -11.526390926915752, 159.96732731661928 -11.504445926895315, 159.9999723166497 -11.469863926863113, 160.08080931672498 -11.498054926889367, 160.3960913170186 -11.657217927037593, 160.43705431705672 -11.679999927058816, 160.51803631713216 -11.750554927124526, 160.52746331714093 -11.808054927178077, 160.497463317113 -11.845835927213258)), ((157.991336314779 -8.773054924351513, 157.95155431474194 -8.756663924336237, 157.9127543147058 -8.72221792430416, 157.87481831467045 -8.681663924266388, 157.87551831467113 -8.609999924199656, 157.8960913146903 -8.569163924161614, 157.95108231474148 -8.52999992412515, 157.96884531475803 -8.520554924116354, 157.99592731478327 -8.508472924105092, 158.00747231479403 -8.50778192410445, 158.09497231487552 -8.524581924120099, 158.12390031490241 -8.539999924134463, 158.14053631491794 -8.570135924162528, 158.1046723148845 -8.698545924282115, 158.07302731485504 -8.730554924311932, 158.0367913148213 -8.761663924340894, 158.0030543147899 -8.77110892434969, 157.991336314779 -8.773054924351513)), ((165.88302732212867 -10.873608926307796, 165.83080932208009 -10.848054926284007, 165.80413632205523 -10.851035926286784, 165.7808183220335 -10.814999926253222, 165.77746332203037 -10.804999926243909, 165.7797093220325 -10.76360892620535, 165.80887232205964 -10.734999926178716, 165.88693632213233 -10.682499926129822, 165.90580932214993 -10.673681926121603, 166.04748132228184 -10.664999926113524, 166.15734532238417 -10.678054926125682, 166.16580032239204 -10.699163926145332, 166.14186332236977 -10.757990926200122, 166.1124543223424 -10.775281926216223, 166.06110032229452 -10.795417926234975, 166.0069273222441 -10.788190926228253, 165.97128132221087 -10.771663926212852, 165.95553632219622 -10.779999926220626, 165.89663632214138 -10.85333592628892, 165.88302732212867 -10.873608926307796)), ((161.55609131809894 -9.799163925307141, 161.50054531804716 -9.732217925244797, 161.45301831800293 -9.730417925243117, 161.4395633179904 -9.732217925244797, 161.39721831795094 -9.669445925186338, 161.39303631794706 -9.659999925177544, 161.3988003179524 -9.555099925079844, 161.38743631794182 -9.520990925048082, 161.39333631794733 -9.490054925019265, 161.40516331795834 -9.472317925002741, 161.39106331794522 -9.439563924972248, 161.37189131792735 -9.419445924953507, 161.34997231790697 -9.357772924896068, 161.35190031790876 -9.34159992488101, 161.41498231796749 -9.392917924928796, 161.45190931800187 -9.45110892498299, 161.53775431808185 -9.595835925117782, 161.5541363180971 -9.632217925151664, 161.5569183180997 -9.643054925161763, 161.56911831811107 -9.724163925237292, 161.57190031811365 -9.774172925283878, 161.56441831810668 -9.793608925301967, 161.55609131809894 -9.799163925307141)), ((157.38442731421378 -8.734445924315551, 157.3430183141752 -8.719717924301833, 157.30746331414207 -8.694445924278298, 157.20274531404453 -8.583472924174941, 157.19885431404094 -8.568890924161366, 157.20190931404375 -8.554999924148433, 157.2126003140537 -8.538472924133032, 157.23550931407505 -8.513608924109874, 157.30094531413602 -8.446945924047796, 157.3430183141752 -8.41389092401701, 157.35989131419092 -8.410835924014165, 157.38636331421554 -8.428190924030332, 157.40277231423084 -8.456108924056323, 157.40900931423664 -8.496735924094168, 157.3709273142012 -8.581108924172739, 157.3602273141912 -8.582781924174299, 157.35134531418294 -8.57471792416679, 157.33760031417012 -8.57534592416738, 157.32704531416033 -8.644163924231464, 157.33273631416563 -8.668890924254498, 157.33967231417205 -8.685835924270279, 157.38442731421378 -8.734445924315551)), ((155.7691363127094 -7.1294459228207785, 155.7266273126698 -7.123335922815087, 155.67130031261826 -7.091526922785462, 155.69107231263672 -7.029445922727646, 155.70940931265375 -6.9961089226965925, 155.7299453126729 -6.967499922669958, 155.74273631268483 -6.968608922670981, 155.84940031278416 -7.033608922731517, 155.85968231279372 -7.04360892274083, 155.86897231280238 -7.062708922758617, 155.85336331278785 -7.104926922797944, 155.83009131276617 -7.1016639227948986, 155.80331831274123 -7.1091639228018835, 155.78637231272546 -7.119163922811197, 155.7691363127094 -7.1294459228207785)), ((159.67776331634957 -8.548335924142222, 159.64776331632163 -8.542081924136397, 159.63525431631 -8.537499924132135, 159.54900931622967 -8.480554924079101, 159.53747231621895 -8.468335924067716, 159.53110031621299 -8.453335924053746, 159.53317231621492 -8.412635924015845, 159.53942731622078 -8.403890924007698, 159.56884531624814 -8.378890923984414, 159.60522731628203 -8.377499923983123, 159.63052731630557 -8.38610892399113, 159.6442913163184 -8.396390924000713, 159.7012183163714 -8.51499992411118, 159.6849823163563 -8.545281924139374, 159.67776331634957 -8.548335924142222)), ((160.26443631689597 -9.131945924685752, 160.22703631686113 -9.101390924657295, 160.19386331683023 -9.08847292464526, 160.14692731678656 -9.090281924646945, 160.13359131677413 -9.09736392465355, 160.12051831676195 -9.09610892465237, 160.10927231675146 -9.090281924646945, 160.07705431672144 -9.044308924604138, 160.1630273168015 -9.006672924569088, 160.19010931682675 -8.996945924560023, 160.24314531687617 -9.004581924567134, 160.29052731692025 -9.039717924599856, 160.29608231692544 -9.048054924607627, 160.29940931692852 -9.05805492461694, 160.289154316919 -9.10889092466428, 160.28150931691187 -9.12166392467617, 160.26443631689597 -9.131945924685752)), ((166.84441832302406 -11.697499927075114, 166.83330932301374 -11.694726927072523, 166.79774532298057 -11.681254927059982, 166.78942732297287 -11.673890927053122, 166.7421723229288 -11.606526926990384, 166.75970932294518 -11.581108926966706, 166.7723363229569 -11.575626926961604, 166.78747232297104 -11.575281926961281, 166.80609132298838 -11.573335926959473, 166.82662732300747 -11.573335926959473, 166.83800932301807 -11.575281926961281, 166.86427232304254 -11.58666392697188, 166.92108132309545 -11.647781927028802, 166.93183632310547 -11.671108927050525, 166.91345432308833 -11.685417927063853, 166.8793913230566 -11.692781927070712, 166.85052732302972 -11.696945927074594, 166.84441832302406 -11.697499927075114)), ((156.59411831347774 -8.205281923822724, 156.58454531346882 -8.201808923819499, 156.53290031342073 -8.094308923719382, 156.53110031341902 -8.078890923705018, 156.5266543134149 -7.95444592358912, 156.54553631343248 -7.944308923579683, 156.55719131344335 -7.946663923581866, 156.5735823134586 -7.971108923604632, 156.58609131347026 -7.992781923624818, 156.5907913134746 -8.006945923638014, 156.6038543134868 -8.04833592367656, 156.60858231349118 -8.070835923697516, 156.61468231349687 -8.110281923734249, 156.61800931349995 -8.162572923782946, 156.60078231348393 -8.199926923817742, 156.59411831347774 -8.205281923822724)), ((159.09940031581095 -9.119717924674362, 159.06580031577965 -9.101390924657295, 159.03305431574915 -9.07694592463453, 159.031782315748 -9.062917924621459, 159.09495431580683 -8.997499924560543, 159.13511831584424 -8.993745924557047, 159.1899543158953 -9.028681924589577, 159.16802731587484 -9.076390924634012, 159.16330031587046 -9.085281924642288, 159.14749131585575 -9.10889092466428, 159.09940031581095 -9.119717924674362)), ((157.6199633144331 -8.800835924377381, 157.6087003144226 -8.78833592436574, 157.57745431439355 -8.775281924353578, 157.55150031436938 -8.766254924345176, 157.52554531434515 -8.76694592434582, 157.49328231431514 -8.7583359243378, 157.45969131428387 -8.738608924319422, 157.445918314271 -8.722008924303964, 157.44748231427246 -8.71139092429408, 157.55900931437634 -8.693190924277133, 157.5967723144115 -8.713608924296139, 157.63388231444605 -8.74805492432823, 157.65122731446223 -8.774172924352555, 157.6440093144555 -8.794163924371162, 157.6260633144388 -8.800281924376861, 157.6199633144331 -8.800835924377381)), ((160.2438363168768 -9.196108924745502, 160.22871831686268 -9.194163924743691, 160.21343631684846 -9.172917924723905, 160.2220453168565 -9.163790924715414, 160.235491316869 -9.163526924715157, 160.2551453168873 -9.163526924715157, 160.27142731690248 -9.154217924706487, 160.28460931691478 -9.13534592468892, 160.2985723169278 -9.118808924673516, 160.3045183169333 -9.097863924654007, 160.30244531693137 -9.082872924640043, 160.30928231693775 -9.066663924624947, 160.32205431694962 -9.060281924619005, 160.34742731697327 -9.092435924648953, 160.35880931698387 -9.11777292467255, 160.38180931700526 -9.120617924675201, 160.4080363170297 -9.132917924686652, 160.38741831701049 -9.172781924723779, 160.3511363169767 -9.190135924739948, 160.33026331695726 -9.1813909247318, 160.3042633169331 -9.160426924712283, 160.28580031691587 -9.165835924717314, 160.284863316915 -9.185245924735383, 160.26419131689573 -9.187054924737069, 160.2438363168768 -9.196108924745502)), ((158.52441831527545 -7.658890923313862, 158.47994531523403 -7.651390923306877, 158.41830931517666 -7.6458359233017035, 158.39636331515618 -7.6447269233006665, 158.35940931512175 -7.64055492329679, 158.32025431508532 -7.593608923253058, 158.31413631507962 -7.579445923239874, 158.36078231512306 -7.568608923229775, 158.3774543151386 -7.567217923228483, 158.4580093152136 -7.598335923257466, 158.48620931523988 -7.6133359232714355, 158.5276913152785 -7.650417923305966, 158.52441831527545 -7.658890923313862))) +TUV Tuvalu MULTIPOLYGON (((179.21322733454343 -8.561290924154292, 179.20240933453334 -8.465417924064994, 179.2183813345482 -8.481890924080346, 179.2251453345545 -8.492217924089957, 179.23109133456006 -8.50491792410179, 179.23228133456115 -8.51841792411436, 179.23149133456042 -8.533499924128407, 179.22831833455746 -8.543426924137648, 179.22236333455191 -8.554145924147633, 179.21322733454343 -8.561290924154292)), ((177.2902543327525 -6.114445921875486, 177.28137233274424 -6.109863921871224, 177.27804533274116 -6.099445921861516, 177.28137233274424 -6.089445921852203, 177.3055273327667 -6.10597292186759, 177.2958093327577 -6.113890921874969, 177.2902543327525 -6.114445921875486)), ((176.30636333183617 -6.288335922037433, 176.29871833182904 -6.285135922034456, 176.29525433182584 -6.274581922024623, 176.30601833183584 -6.260135922011173, 176.31198133184142 -6.28215492203168, 176.30636333183617 -6.288335922037433)), ((178.69580033406152 -7.484163923151129, 178.68885433405507 -7.480835923148035, 178.68878133405497 -7.467572923135677, 178.7017813340671 -7.475208923142787, 178.69580033406152 -7.484163923151129))) +VUT Vanuatu MULTIPOLYGON (((167.10781832326938 -15.123699930266014, 167.13136332329128 -15.128190930270193, 167.15658132331475 -15.20356393034038, 167.1495183233082 -15.24454593037855, 167.16258132332035 -15.27035493040259, 167.18747232334357 -15.30222693043227, 167.17135432332856 -15.340272930467705, 167.20551832336037 -15.459881930579101, 167.23774532339036 -15.493508930610417, 167.2333633233863 -15.525345930640071, 167.19497232335056 -15.516945930632247, 167.15115432330975 -15.520345930635415, 167.07690932324056 -15.596181930706038, 167.03306332319977 -15.588090930698499, 166.98245432315264 -15.580554930691491, 166.94134532311432 -15.579999930690974, 166.90990932308506 -15.581317930692194, 166.8395363230195 -15.628745930736372, 166.83141832301197 -15.653817930759715, 166.8053913229877 -15.661108930766503, 166.78470032296843 -15.655835930761597, 166.76360032294878 -15.644581930751116, 166.63665432283057 -15.433335930554378, 166.6184273228136 -15.387363930511569, 166.62911832282356 -15.345281930472368, 166.6399093228336 -15.318054930447019, 166.6491543228422 -15.255690930388937, 166.65054532284347 -15.229163930364223, 166.57830932277625 -15.015281930165031, 166.5342723227352 -14.889163930047573, 166.52525432272682 -14.854308930015122, 166.52163632272345 -14.82139092998446, 166.53053632273173 -14.724026929893782, 166.5527453227524 -14.656808929831186, 166.5991813227957 -14.626035929802526, 166.6241183228189 -14.66999992984347, 166.63943632283315 -14.714163929884592, 166.67553632286678 -14.768608929935297, 166.69302732288304 -14.786945929952381, 166.7188453229071 -14.81083592997463, 166.73272732292003 -14.831663929994022, 166.74969132293586 -14.869717930029466, 166.76110932294648 -14.905835930063105, 166.78610032296973 -15.032499930181075, 166.7883003229718 -15.068890930214963, 166.78747232297104 -15.091663930236166, 166.79469132297777 -15.134717930276267, 166.80276332298524 -15.15749993029749, 166.83550932301574 -15.164999930304475, 166.92247232309677 -15.159372930299227, 166.95816332313 -15.111245930254412, 166.9675273231387 -15.072008930217862, 166.96273632313427 -15.020835930170207, 166.97002732314104 -14.945763930100284, 167.0053273231739 -14.925763930081658, 167.04080032320695 -14.932781930088197, 167.05010932321562 -14.957635930111351, 167.0652453232297 -15.08499993022997, 167.09808132326032 -15.13673593027815, 167.10781832326938 -15.123699930266014)), ((167.49496332362992 -16.593335931634712, 167.46246332359965 -16.577781931620223, 167.4271813235668 -16.54222693158711, 167.41748132355775 -16.53221793157779, 167.3721913235156 -16.347499931405764, 167.38161832352438 -16.267226931330995, 167.3760633235192 -16.190554931259598, 167.32662732347313 -16.1252819311988, 167.31636332346358 -16.12069093119453, 167.28956332343864 -16.128745931202033, 167.28018132342987 -16.1425729312149, 167.25054532340226 -16.16389093123476, 167.2407813233932 -16.168326931238894, 167.22636332337976 -16.168472931239023, 167.17900032333569 -16.146808931218857, 167.15109132330969 -16.094999931170605, 167.14663632330553 -16.085835931162066, 167.14443632330347 -16.07444593115146, 167.14358132330267 -16.05555493113387, 167.17248132332958 -15.915554931003484, 167.17651832333337 -15.901526930990414, 167.18469132334099 -15.891945930981493, 167.21109132336557 -15.876108930966737, 167.2222003233759 -15.873054930963903, 167.24774532339967 -15.877499930968042, 167.32954532347588 -15.913190931001282, 167.38982732353202 -16.015554931096617, 167.393036323535 -16.033399931113237, 167.37884532352177 -16.05749993113568, 167.3997183235412 -16.09166393116749, 167.416654323557 -16.109999931184575, 167.62160932374786 -16.259163931323485, 167.74698132386465 -16.33916393139799, 167.82400932393637 -16.426108931478964, 167.83752732394896 -16.461454931511895, 167.7724913238884 -16.534999931580387, 167.7319003238506 -16.536945931582196, 167.72467232384383 -16.52333593156952, 167.71719132383691 -16.5166639315633, 167.66498132378825 -16.502226931549856, 167.600254323728 -16.49777293154571, 167.49496332362992 -16.593335931634712)), ((168.38415432445805 -17.82999993278645, 168.36910932444403 -17.796672932755413, 168.2844273243652 -17.71389093267831, 168.27691832435818 -17.707217932672094, 168.2426003243262 -17.693608932659416, 168.22411832430902 -17.698054932663567, 168.21579132430122 -17.703890932668997, 168.19231832427937 -17.726526932690078, 168.18441832427203 -17.74389093270625, 168.17080932425938 -17.751390932713235, 168.1619273242511 -17.74194593270444, 168.14845432423851 -17.716663932680888, 168.1763633242645 -17.6547179326232, 168.23886332432272 -17.58167293255518, 168.27581832435715 -17.546108932522046, 168.31110032439 -17.531390932508344, 168.39249132446582 -17.53417293251094, 168.43795432450815 -17.539654932516044, 168.57467232463546 -17.69277293265864, 168.57940932463987 -17.71249993267702, 168.54623632460903 -17.791526932750614, 168.5385723246019 -17.80194593276032, 168.49205432455852 -17.82208193277907, 168.47552732454312 -17.821663932778677, 168.43191832450253 -17.822226932779202, 168.38415432445805 -17.82999993278645)), ((169.2710913252841 -18.999999933876097, 169.2369093252522 -18.983054933860316, 169.12301832514618 -18.938054933818407, 169.10718132513142 -18.931663933812445, 168.9944183250264 -18.883326933767435, 168.98650032501905 -18.876663933761222, 168.97953632501253 -18.85319093373937, 168.98274532501551 -18.686390933584022, 168.98772732502016 -18.673054933571606, 169.00027232503186 -18.65721793355685, 169.0185813250489 -18.63999993354082, 169.03998132506882 -18.62582693352762, 169.0510913250792 -18.62305493352504, 169.09329132511846 -18.61986393352207, 169.13388132515627 -18.632499933533836, 169.14663632516817 -18.639790933540624, 169.16470032518498 -18.67221793357082, 169.18441832520335 -18.739717933633685, 169.19482732521305 -18.794445933684656, 169.20468132522223 -18.809163933698358, 169.21954532523608 -18.82625493371428, 169.23371832524924 -18.83374593372126, 169.2485633252631 -18.837499933724757, 169.2941273253055 -18.86194593374752, 169.30941832531977 -18.875281933759936, 169.31637232532626 -18.882499933766667, 169.3233003253327 -18.889717933773383, 169.32956332533854 -18.901390933784256, 169.336500325345 -18.92833593380935, 169.3341363253428 -18.94360893382357, 169.32440032533373 -18.962499933841173, 169.3052363253159 -18.978881933856428, 169.2710913252841 -18.999999933876097)), ((168.14413632423452 -16.362217931419465, 168.10330032419648 -16.344717931403167, 168.06219132415822 -16.329999931389466, 168.0399813241375 -16.323890931383772, 168.0251183241237 -16.326254931385975, 167.9187273240246 -16.262781931326856, 167.91289132401914 -16.23347293129956, 167.9204543240262 -16.217845931285012, 168.0020453241022 -16.193190931262052, 168.03305432413106 -16.194999931263737, 168.0592813241555 -16.19416393126295, 168.08440932417886 -16.17721793124717, 168.11969132421177 -16.13778193121044, 168.1252453242169 -16.128890931202164, 168.12952732422093 -16.11541793118961, 168.1327183242239 -16.100281931175516, 168.14080932423144 -16.090554931166466, 168.16748132425624 -16.086108931162315, 168.18455432427214 -16.091808931167634, 168.19274532427977 -16.101390931176553, 168.21523632430075 -16.174163931244323, 168.25802732434056 -16.24999993131496, 168.3016363243812 -16.271663931335127, 168.31051832438948 -16.27722693134031, 168.32178132439998 -16.29055493135273, 168.3248273244028 -16.30694593136799, 168.32178132439998 -16.31763593137795, 168.30607232438535 -16.337781931396705, 168.28414532436489 -16.347217931405496, 168.26720932434915 -16.351390931409384, 168.25177232433475 -16.352217931410152, 168.24064532432442 -16.348335931406538, 168.22079132430588 -16.3462549314046, 168.1666543242555 -16.349445931407573, 168.14413632423452 -16.362217931419465)), ((169.43136332543332 -19.65805493448896, 169.42413632542662 -19.65777293448869, 169.39776332540202 -19.654999934486113, 169.34970032535728 -19.636945934469296, 169.2796913252921 -19.5844459344204, 169.2338543252494 -19.52749993436737, 169.2244003252406 -19.509163934350283, 169.21997232523648 -19.49999993434176, 169.20330932522097 -19.459299934303843, 169.23225432524788 -19.352081934203994, 169.2482913252628 -19.338054934190936, 169.26360932527712 -19.331672934184994, 169.30136332531225 -19.320554934174638, 169.33578132534433 -19.31999993417412, 169.3541273253614 -19.334163934187302, 169.4188543254217 -19.48249993432546, 169.47940032547808 -19.51778193435831, 169.49774532549515 -19.53110893437072, 169.49829132549564 -19.544999934383668, 169.43136332543332 -19.65805493448896)), ((168.20440932429062 -15.998335931080575, 168.18304532427072 -15.978335931061949, 168.17025432425885 -15.890835930980458, 168.15691832424642 -15.808054930903367, 168.15304532424278 -15.79833593089431, 168.14193632423246 -15.781663930878779, 168.1340003242251 -15.771663930869465, 168.12329132421507 -15.738335930838431, 168.11204532420464 -15.678754930782944, 168.11496332420734 -15.645835930752284, 168.12551832421718 -15.597781930707526, 168.15331832424306 -15.492217930609215, 168.176909324265 -15.498335930614914, 168.2042723242905 -15.530835930645182, 168.20330932428965 -15.57833593068942, 168.1997093242863 -15.589163930699499, 168.1941363242811 -15.601526930711017, 168.19179132427888 -15.620554930728744, 168.2227453243077 -15.742217930842045, 168.22829132431286 -15.753745930852787, 168.23772732432167 -15.76860893086662, 168.2452363243287 -15.78528193088215, 168.26443632434655 -15.859717930951476, 168.2666633243486 -15.870835930961832, 168.26830932435018 -15.906390930994945, 168.26886332435066 -15.932917931019645, 168.26302732434522 -15.973054931057035, 168.2395453243234 -15.995690931078116, 168.2107813242966 -15.998054931080318, 168.20440932429062 -15.998335931080575)), ((167.84692732395774 -15.490835930607929, 167.72260932384194 -15.486526930603915, 167.6723363237951 -15.46173593058083, 167.6692813237923 -15.444308930564603, 167.6916543238131 -15.42055493054248, 167.72830032384724 -15.386390930510657, 167.79135432390598 -15.329445930457624, 167.80303632391684 -15.31944593044831, 167.81329132392636 -15.315835930444948, 167.9049723240118 -15.289717930420622, 167.92248132402807 -15.286390930417525, 167.97134532407358 -15.2811089304126, 167.98745432408862 -15.283054930414423, 168.0034453241035 -15.292226930422956, 168.00082732410107 -15.30305493043305, 167.93054532403556 -15.418890930540925, 167.92413632402963 -15.426945930548428, 167.9066453240133 -15.444726930564983, 167.855809323966 -15.485835930603272, 167.84692732395774 -15.490835930607929)), ((168.47134532453924 -16.848890931872717, 168.38190032445596 -16.804717931831576, 168.34460932442124 -16.788890931816837, 168.32912732440678 -16.788054931816063, 168.30941832438845 -16.789172931817106, 168.29776332437757 -16.791108931818897, 168.28747232436803 -16.794726931822268, 168.2513723243344 -16.81528193184141, 168.2449453243284 -16.82666393185201, 168.22357232430852 -16.83110893185615, 168.19024532427744 -16.817499931843486, 168.17067232425921 -16.80680893183353, 168.14609132423635 -16.778335931807007, 168.11828132421044 -16.70944593174285, 168.11605432420833 -16.672499931708444, 168.11746332420967 -16.659445931696283, 168.1483183242384 -16.580554931622814, 168.184345324272 -16.57784593162029, 168.19816332428485 -16.593472931634835, 168.2722183243538 -16.680281931715683, 168.36259132443797 -16.770972931800145, 168.4020543244747 -16.78291793181127, 168.4131813244851 -16.777781931806487, 168.427045324498 -16.767781931797174, 168.43956332450966 -16.767081931796525, 168.45510932452413 -16.773472931802473, 168.4758003245434 -16.798608931825882, 168.4749633245426 -16.84389093186806, 168.47134532453924 -16.848890931872717)), ((167.52109132365428 -14.326945929523973, 167.42101832356104 -14.323126929520413, 167.39442732353632 -14.300417929499261, 167.401645323543 -14.232499929436017, 167.4058183235469 -14.200281929406003, 167.41235432355296 -14.181245929388282, 167.44634532358464 -14.159308929367853, 167.52719132365996 -14.153335929362285, 167.58593632371463 -14.17166392937935, 167.59857232372644 -14.194163929400304, 167.59718132372512 -14.22305492942722, 167.59164532371994 -14.25028192945257, 167.58800932371656 -14.261108929462651, 167.55801832368866 -14.309717929507926, 167.549836323681 -14.31916392951672, 167.53915432367108 -14.324445929521644, 167.52746332366019 -14.326663929523704, 167.52109132365428 -14.326945929523973)), ((168.13580032422675 -15.39666393052022, 168.13052732422182 -15.352772930479347, 168.10662732419956 -15.078608930224007, 168.08886332418302 -14.95194593010605, 168.09427232418807 -14.925972930081855, 168.1028913241961 -14.920554930076818, 168.11863632421074 -14.92249993007863, 168.1266183242182 -14.933890930089234, 168.13858132422934 -14.962781930116137, 168.19024532427744 -15.214717930350773, 168.1933003242803 -15.238608930373019, 168.1933003242803 -15.251663930385178, 168.19163632427876 -15.373745930498885, 168.1716273242601 -15.395554930519197, 168.13580032422675 -15.39666393052022)), ((167.46829132360506 -13.951108929173941, 167.45593632359356 -13.895417929122075, 167.44720932358547 -13.886390929113674, 167.4130273235536 -13.856108929085465, 167.38671832352912 -13.831181929062254, 167.38860032353085 -13.769308929004637, 167.40774532354868 -13.7422179289794, 167.41664532355696 -13.73333592897113, 167.43163632357096 -13.724163928962582, 167.4720453236086 -13.707217928946804, 167.48772732362318 -13.7099999289494, 167.50665432364082 -13.718608928957408, 167.52441832365736 -13.746945928983806, 167.57775432370704 -13.847217929077189, 167.57275432370238 -13.860835929089873, 167.48198132361784 -13.945835929169036, 167.46829132360506 -13.951108929173941)), ((167.19552732335103 -15.756108930854978, 167.18887232334487 -15.75528193085421, 167.17746332333422 -15.751663930850839, 167.16220032332 -15.745281930844897, 167.1055273232672 -15.714999930816703, 167.09164532325428 -15.707217930809449, 167.07759132324122 -15.692781930796002, 167.0702543232344 -15.675972930780347, 167.07078132323488 -15.653190930759138, 167.0774543232411 -15.640281930747108, 167.08899132325183 -15.631390930738831, 167.1096813232711 -15.625272930733132, 167.12857232328872 -15.623608930731578, 167.1427633233019 -15.624445930732364, 167.21023632336477 -15.632499930739868, 167.22510032337857 -15.636254930743362, 167.23481832338763 -15.652499930758495, 167.2355183233883 -15.736245930836489, 167.22912732338233 -15.747781930847225, 167.22024532337406 -15.752781930851881, 167.20913632336374 -15.755554930854473, 167.19552732335103 -15.756108930854978)), ((169.8269093258017 -20.25417293504414, 169.77026332574894 -20.240554935031454, 169.7619363257412 -20.23444593502576, 169.73704532571804 -20.206108934999364, 169.7331723257144 -20.18319093497803, 169.73522732571632 -20.16778193496367, 169.74494532572538 -20.150763934947832, 169.7567913257364 -20.142781934940388, 169.79302732577014 -20.13833593493625, 169.8324543258069 -20.142217934939865, 169.8474723258209 -20.145835934943236, 169.8694183258413 -20.158608934955126, 169.88880932585937 -20.173608934969096, 169.89386332586406 -20.199163934992896, 169.89025432586072 -20.21360893500635, 169.88610932585686 -20.223608935015662, 169.87967232585083 -20.231663935023164, 169.86280932583514 -20.247290935037725, 169.8460723258196 -20.252226935042316, 169.8269093258017 -20.25417293504414))) diff --git a/modules/spatial-lucene/src/test/resources/data/geonames-IE.txt b/modules/spatial-lucene/src/test/resources/data/geonames-IE.txt new file mode 100644 index 00000000000..baa7b749b30 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/data/geonames-IE.txt @@ -0,0 +1,22929 @@ +2652852 Cliff Cliff 54.48333 -8.11667 S EST IE U 06 0 76 Europe/Dublin 2010-08-14 +2654332 Bun Cranncha Bun Cranncha Buncrana 55.13333 -7.45 P PPL IE U 06 5546 63 Europe/Dublin 2010-08-14 +2960863 Dromore West Dromore West Dromore,Dromore West 54.25167 -8.89306 P PPL IE IE C 25 0 32 Europe/Dublin 2010-08-14 +2960864 Dromore Dromore Dromore,Dromore House 52.93111 -8.96833 S EST IE IE M 03 0 36 Europe/Dublin 2010-08-14 +2960865 Youghal Harbour Youghal Harbour 51.95194 -7.83972 H HBR IE 00 00 0 1 Europe/Dublin 2010-08-14 +2960866 Youghal Bay Youghal Bay 52.89944 -8.30361 H BAY IE M 26 0 55 Europe/Dublin 2010-08-14 +2960867 Youghal Bay Youghal Bay 51.91 -7.81917 H BAY IE 00 00 0 -9999 Europe/Dublin 2010-08-14 +2960868 Youghal Youghal 52.88861 -8.3075 P PPL IE M 26 0 61 Europe/Dublin 2010-08-14 +2960869 Eochaill Eochaill Youghal 51.95 -7.85056 P PPL IE M 04 6868 1 Europe/Dublin 2010-08-14 +2960870 Yellow River Yellow River 54.13972 -8.02722 H STM IE C 14 0 58 Europe/Dublin 2010-08-14 +2960871 Yellow River Yellow River 54.05 -7.83333 H STM IE C 14 0 76 Europe/Dublin 2010-08-14 +2960872 Yellow River Yellow River 53.81667 -9 H STM IE C 20 0 51 Europe/Dublin 2010-08-14 +2960873 Yellow River Yellow River 53.38556 -7.08361 H STM IE 00 00 0 108 Europe/Dublin 2010-08-14 +2960874 Yellow Furze Yellow Furze 53.67333 -6.57167 P PPL IE L 21 0 86 Europe/Dublin 2010-08-14 +2960875 Woodville Woodville 54.13333 -9.31667 P PPL IE C 20 0 42 Europe/Dublin 2010-08-14 +2960876 Woodville Woodville 53.85 -7.56667 S BLDG IE L 18 0 71 Europe/Dublin 2010-08-14 +2960877 Wood View Wood View 52.83333 -7.21667 S EST IE L 13 0 135 Europe/Dublin 2010-08-14 +2960878 Woodtown House Woodtown House Woodtown,Woodtown House 53.58139 -6.98639 S EST IE IE L 21 0 92 Europe/Dublin 2010-08-14 +2960879 Woodstown Woodstown 52.19667 -7.01 P PPL IE M 27 0 75 Europe/Dublin 2010-08-14 +2960880 Woodstock House Woodstock House Woodstock,Woodstock House 52.47861 -7.05639 S EST IE IE L 13 0 32 Europe/Dublin 2010-08-14 +2960881 Woodsgift House Woodsgift House Woodsgift,Woodsgift House 52.70694 -7.515 S EST IE IE L 13 0 152 Europe/Dublin 2010-08-14 +2960882 Woodrooff House Woodrooff House Woodroof House,Woodrooff House 52.38222 -7.81944 S EST IE IE M 26 0 122 Europe/Dublin 2010-11-04 +2960883 Woodpark Woodpark 53.44417 -6.48417 S EST IE L 21 0 78 Europe/Dublin 2010-08-14 +2960884 Woodpark Woodpark 52.92583 -8.45833 S EST IE M 03 0 53 Europe/Dublin 2010-08-14 +2960885 Woodmount Woodmount 53.33583 -8.16167 S EST IE C 24 0 73 Europe/Dublin 2010-08-14 +2960886 Wood Lodge Wood Lodge 54.03333 -7.16667 S BLDG IE U 02 0 111 Europe/Dublin 2010-08-14 +2960887 Woodlawn Station Woodlawn Station Woodlawn,Woodlawn Station 53.35 -8.46667 S RSTN IE IE C 10 0 76 Europe/Dublin 2010-08-14 +2960888 Woodlawn Woodlawn Woodlawn,Woodlawn House 53.32889 -8.47889 S EST IE IE C 10 0 76 Europe/Dublin 2010-08-14 +2960889 Woodlands Station Woodlands Station Woodlands,Woodlands Station 51.55 -9.51667 S RSTN IE IE M 04 0 145 Europe/Dublin 2010-08-14 +2960890 Woodhouse Woodhouse 52.12389 -7.475 S EST IE M 27 0 1 Europe/Dublin 2010-08-14 +2960891 Wood Hill Wood Hill 54.75944 -8.41833 S EST IE U 06 0 32 Europe/Dublin 2010-08-14 +2960892 Woodfort Woodfort Woodfoot,Woodfort 53.88333 -6.83333 P PPL IE L 21 0 111 Europe/Dublin 2010-08-10 +2960893 Woodfort Woodfort 52.15944 -8.34139 S EST IE M 04 0 40 Europe/Dublin 2010-08-14 +2960894 Woodford River Woodford River Rosmore,Woodford River 53.02028 -8.31639 H STM IE IE C 10 0 55 Europe/Dublin 2010-08-14 +2960895 Woodford Woodford An Chraig,An Chráig,An Ghraig,An Ghráig,Woodford 53.04833 -8.40028 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2960896 Woodford Woodford 52.05 -9.45 P PPL IE M 11 0 92 Europe/Dublin 1993-12-27 +2960897 Woodfield House Woodfield House 53.86667 -8.88333 S EST IE C 20 0 70 Europe/Dublin 1993-12-27 +2960898 Woodfield House Woodfield House 53.37028 -7.62167 S EST IE L 23 0 74 Europe/Dublin 2010-08-14 +2960899 Woodfield House Woodfield House 53.11667 -7.9 S EST IE L 23 0 70 Europe/Dublin 2010-08-14 +2960900 Woodenbridge Junction Station Woodenbridge Junction Station Woodenbridge,Woodenbridge Junction,Woodenbridge Junction Station 52.83333 -6.23333 S RSTN IE IE L 31 0 40 Europe/Dublin 2010-08-14 +2960901 Woodenbridge Woodenbridge 52.83222 -6.23639 P PPL IE L 31 0 43 Europe/Dublin 2010-08-14 +2960902 Woodbrook House Woodbrook House Woodbrook,Woodbrook House 53.12944 -7.23583 S HSEC IE IE L 15 0 101 Europe/Dublin 2010-08-14 +2960903 Woodbrook Woodbrook 52.54806 -6.73861 S EST IE L 30 0 131 Europe/Dublin 2010-08-14 +2960904 Woodbrook Woodbrook 51.71667 -9.13333 S EST IE M 04 0 89 Europe/Dublin 1993-12-27 +2960905 Woodbine Hill Woodbine Hill 51.95472 -7.82944 S EST IE M 04 0 1 Europe/Dublin 2010-08-14 +2960906 Wingfield House Wingfield House 52.7725 -6.39194 S EST IE L 30 0 154 Europe/Dublin 2010-08-14 +2960907 Windy Harbour Windy Harbour 53.74083 -6.66472 P PPL IE L 21 0 130 Europe/Dublin 2010-08-14 +2960908 Windy Gap Windy Gap 52.03333 -9.93333 T GAP IE M 11 0 269 Europe/Dublin 2010-08-14 +2960909 Windgap Windgap Bearna na Gaoithe,Bearra na Gaoithe,Windgap 52.46556 -7.39972 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +2960910 Windfield House Windfield House 53.43333 -8.63333 S EST IE C 10 0 76 Europe/Dublin 1993-12-27 +2960911 Wilton House Wilton House Wilton,Wilton House 52.72222 -7.54806 S EST IE IE L 13 0 137 Europe/Dublin 2010-08-14 +2960912 Wilton Castle Wilton Castle Wilton Castle,Wilton House 52.45917 -6.61639 S EST IE IE L 30 0 63 Europe/Dublin 2010-08-14 +2960913 Wilmount House Wilmount House 52.58333 -6.71667 S EST IE L 30 0 150 Europe/Dublin 2010-08-14 +2960914 Wilmount House Wilmount House 52.41667 -6.45611 S EST IE L 30 0 24 Europe/Dublin 2010-08-14 +2960915 Wilmount Wilmount 53.74833 -6.89528 S EST IE L 21 0 71 Europe/Dublin 2010-08-14 +2960916 Wills Grove Wills Grove 53.73333 -8.41667 S RUIN IE C 24 0 76 Europe/Dublin 1993-12-27 +2960917 Willsbrook House Willsbrook House 53.73333 -8.48333 S BLDG IE C 24 0 74 Europe/Dublin 1993-12-27 +2960918 Willmount House Willmount House 53.11611 -6.55833 S HSEC IE L 31 0 198 Europe/Dublin 2010-08-14 +2960919 Willmount Willmount 53.26667 -8.76667 S EST IE C 10 0 30 Europe/Dublin 1993-12-27 +2960920 Willmount Willmount 52.55472 -7.56556 S EST IE M 26 0 150 Europe/Dublin 2010-08-14 +2960921 Williamstown Lodge Williamstown Lodge 52.95 -8.33333 S BLDG IE M 03 0 55 Europe/Dublin 2010-08-14 +2960922 Williamstown House Williamstown House 53.88333 -6.41417 S EST IE L 19 0 3 Europe/Dublin 2010-08-14 +2960923 Williamstown Harbour Williamstown Harbour 52.95 -8.33333 H HBR IE M 03 0 55 Europe/Dublin 2010-08-14 +2960924 Williamstown Williamstown 53.68333 -8.58333 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2960925 Williamstown Williamstown 53.75222 -6.87333 S EST IE L 21 0 70 Europe/Dublin 2010-08-14 +2960926 Willbrook Willbrook 53.29361 -6.31194 P PPL IE L 07 0 76 Europe/Dublin 2010-08-14 +2960927 Willbrook Willbrook 52.93778 -9.12806 P PPL IE M 03 0 95 Europe/Dublin 2010-08-14 +2960928 Wilkinstown Wilkinstown 53.73556 -6.71306 P PPL IE L 21 0 73 Europe/Dublin 2010-08-14 +2960929 Wilford House Wilford House 52.55722 -7.55889 S EST IE M 26 0 150 Europe/Dublin 2010-08-14 +2960930 Wild Bellows Rock Wild Bellows Rock 53.34417 -10.05056 T RK IE C 10 0 -9999 Europe/Dublin 1999-03-04 +2960931 Wicklow Mountains Wicklow Mountains Wicklow Hills,Wicklow Mountains 53.08333 -6.33333 T MTS IE L 31 0 439 Europe/Dublin 2010-08-10 +2960932 Wicklow Head Wicklow Head 52.96056 -5.99889 T CAPE IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2960933 Wicklow Gap Wicklow Gap 53.04056 -6.40194 T GAP IE L 31 0 528 Europe/Dublin 2010-08-14 +2960934 Wicklow Gap Wicklow Gap 52.75667 -6.35944 T GAP IE L 30 0 160 Europe/Dublin 2010-08-14 +2960935 Cill Mhantáin Cill Mhantain Contae Chill Mhantain,Contae Chill Mhantáin,County Wicklow,Wicklow 53 -6.41667 A ADM2 IE L 31 119873 371 Europe/Dublin 2010-08-14 +2960936 Cill Mhantáin Cill Mhantain Cill Maintain,Cill Maintainn,Cill Maintáinn,Cill Manntein,Cill Manntéin,Cill Mantan,Cill Mhanntain,Wicklow 52.975 -6.04944 P PPLA2 IE L 31 10461 69 Europe/Dublin 2010-08-14 +2960937 Whiting Bay Whiting Bay 51.94694 -7.78139 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2960938 Whitfield Court Whitfield Court Whitfield,Whitfield Court 52.22278 -7.21722 S EST IE IE M 27 0 54 Europe/Dublin 2010-08-14 +2960939 Whitewood House Whitewood House Whitewood,Whitewood House 53.84139 -6.78333 S EST IE IE L 21 0 72 Europe/Dublin 2010-08-14 +2960940 Whitewell House Whitewell House 53.43333 -7.31667 S EST IE L 29 0 130 Europe/Dublin 1993-12-27 +2960941 Whites Town Whites Town 53.99778 -6.12778 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +2960942 White River White River 53.85972 -6.38694 H STM IE L 19 0 8 Europe/Dublin 2010-08-14 +2960943 White River White River 52.59556 -9.19361 H STM IE M 16 0 15 Europe/Dublin 2010-08-14 +2960944 White Point White Point 51.85 -8.31667 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2960945 White Mountain White Mountain 52.48333 -6.83333 T MT IE L 30 0 215 Europe/Dublin 2010-08-14 +2960946 White Lough White Lough 53.70194 -7.22 H LK IE 00 0 151 Europe/Dublin 1999-03-22 +2960947 Whitehill House Whitehill House 53.73333 -7.63333 S EST IE L 18 0 76 Europe/Dublin 1993-12-27 +2960948 Whitehall Whitehall 53.75 -7.93333 P PPL IE C 24 0 66 Europe/Dublin 1993-12-27 +2960949 Paulstown Paulstown Baile Phoil,Baile Phóil,Paulstown,Whitehall 52.68111 -7.02222 P PPL IE L 13 0 55 Europe/Dublin 2010-08-14 +2960950 Whitegate Whitegate 53.73333 -7.31667 P PPL IE L 29 0 211 Europe/Dublin 1993-12-27 +2960951 Whitegate Whitegate An Geata Ban,An Geata Bán,Whitegate 52.94917 -8.37139 P PPL IE M 03 0 56 Europe/Dublin 2010-08-14 +2960952 Whitegate Whitegate An Geata Ban,An Geata Bán,Whitegate 51.83056 -8.22972 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +2960953 Whitechurch Whitechurch 52.37139 -7.39306 P PPL IE L 13 0 32 Europe/Dublin 2010-08-14 +2960954 Whitechurch Whitechurch 52.31778 -6.96611 P PPL IE L 30 0 46 Europe/Dublin 2010-08-14 +2960955 Whitechurch Whitechurch 52.10944 -7.74944 P PPL IE M 27 0 62 Europe/Dublin 2010-08-14 +2960956 Whitechurch Whitechurch 51.98139 -8.51389 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2960957 White Castle White Castle 55.13333 -7.16667 P PPL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2960958 White Ball Head White Ball Head 51.59667 -10.055 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2960959 Whiddy Island Whiddy Island Whiddy Island 51.70139 -9.49972 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2960960 Wheelam Cross Roads Wheelam Cross Roads 53.20278 -6.87083 P PPL IE L 12 0 157 Europe/Dublin 2010-08-14 +2960961 Whale Head Whale Head 55.0525 -7.57389 T CAPE IE U 06 0 1 Europe/Dublin 2010-08-14 +2960962 Wexford Harbour Wexford Harbour Wexford Harbour 52.33833 -6.40417 H HBR IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2960963 Loch Garman Loch Garman Contae Loch Garman,County Wexford,Wexford 52.5 -6.66667 A ADM2 IE L 30 121122 76 Europe/Dublin 2010-08-14 +2960964 Loch Garman Loch Garman Loch Garman,Wexford 52.33417 -6.4575 P PPLA2 IE L 30 17708 -9999 Europe/Dublin 2010-08-14 +2960965 West Village West Village 51.88333 -8.6 P PPL IE M 04 0 66 Europe/Dublin 2010-08-14 +2960966 West Town West Town Baile Thiar,West Town 55.26528 -8.22583 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2960967 West Sister West Sister Beenhenry,West Sister 52.2 -10.43333 T HLL IE IE M 11 0 61 Europe/Dublin 2010-08-14 +2960968 Westport House Westport House 53.8 -9.51667 S EST IE C 20 0 108 Europe/Dublin 1993-12-27 +2960969 Westport Bay Westport Bay 53.8 -9.63333 H BAY IE C 20 0 -9999 Europe/Dublin 1993-12-27 +2960970 Cathair na Mart Cathair na Mart Westport 53.8 -9.51667 P PPL IE C 20 6200 108 Europe/Dublin 2010-08-14 +2960971 Westmoreland Fort Westmoreland Fort Fort Westmoreland,Westmoreland Fort 51.83333 -8.28333 S FT IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2960972 An Iarmhí An Iarmhi Contae na hIarmhi,Contae na hIarmhí,County Westmeath,Westmeath 53.5 -7.5 A ADM2 IE L 29 75298 144 Europe/Dublin 2010-08-14 +2960973 Westland Row Station Westland Row Station Westland Row Passenger Station 53.35 -6.25 S RSTN IE IE L 07 0 1 Europe/Dublin 2010-08-14 +2960974 Westland House Westland House 53.785 -6.89694 S EST IE L 21 0 79 Europe/Dublin 2010-08-14 +2960975 Westfield Westfield 51.55 -9.38333 S EST IE M 04 0 92 Europe/Dublin 1993-12-27 +2960976 West Cove West Cove 51.77917 -10.07694 P PPL IE M 11 0 134 Europe/Dublin 2010-08-14 +2960977 West Court West Court 52.54917 -7.39389 S EST IE L 13 0 71 Europe/Dublin 2010-08-14 +2960978 Wells House Wells House Wells,Wells House 52.52833 -6.34444 S EST IE IE L 30 0 58 Europe/Dublin 2010-08-14 +2960979 Wellmount House Wellmount House 53.10472 -8.22778 S BLDG IE C 10 0 77 Europe/Dublin 2010-08-14 +2960980 Wellingtonbridge Wellingtonbridge Wellingtonbridge 52.26333 -6.77833 P PPL IE L 30 0 5 Europe/Dublin 2010-08-14 +2960981 Welchtown Welchtown 54.81861 -7.87083 P PPL IE U 06 0 84 Europe/Dublin 2010-08-14 +2960982 Webbsborough Webbsborough Webbsborough,Webbsborough House 52.75083 -7.23111 S BLDG IE IE L 13 0 128 Europe/Dublin 2010-08-14 +2960983 Weatherstown Weatherstown 52.37361 -7.03944 P PPL IE L 13 0 108 Europe/Dublin 2010-08-14 +2960984 Waterville Waterville An Coirean,An Coireán,Waterville 51.83333 -10.16667 P PPL IE M 11 0 14 Europe/Dublin 2010-08-14 +2960985 Waterstown House Waterstown House Waterstown,Waterstown House 53.46667 -7.85 S EST IE L 29 0 136 Europe/Dublin 2010-08-10 +2960986 Waterloo Waterloo 53.93333 -7.13028 P PPL IE U 02 0 171 Europe/Dublin 2010-08-14 +2960987 Watergrasshill Watergrasshill Cnocan na Biolrai,Cnocán na Biolraí,Watergrasshill 52.01139 -8.34417 P PPL IE M 04 0 156 Europe/Dublin 2010-08-14 +2960988 Waterford North Station Waterford North Station Waterford,Waterford North Station 52.26667 -7.11667 S RSTN IE IE L 13 0 58 Europe/Dublin 2010-08-14 +2960989 Waterford Manor Station Waterford Manor Station Manor Station,Waterford Manor Station 52.25 -7.11667 S RSTN IE IE M 27 0 17 Europe/Dublin 2010-08-14 +2960990 Waterford Harbour Waterford Harbour 52.17917 -6.93056 H ESTY IE 00 0 -9999 Europe/Dublin 1998-01-09 +2960991 Port Láirge Port Lairge Contae Phort Lairge,Contae Phort Láirge,County Waterford,Waterford 52.25 -7.5 A ADM2 IE M 27 104132 178 Europe/Dublin 2010-08-14 +2960992 Port Láirge Port Lairge Port Lairge,Port Láirge,Uoterford,Waterford,Waterford city,u~otafodo,Уотерфорд,ウォーターフォード 52.25833 -7.11194 P PPLA2 IE M 27 47904 8 Europe/Dublin 2010-08-14 +2960993 Waterfall Waterfall 51.85944 -8.55917 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +2960994 Waterdale Waterdale Waterdale,Waterdale House 53.36667 -8.95 S BLDG IE C 10 0 21 Europe/Dublin 2010-08-10 +2960995 Watch House Village Watch House Village Watch House,Watch House Village 52.69083 -6.63972 P PPL IE IE L 30 0 76 Europe/Dublin 2010-08-14 +2960996 Warrenstown House Warrenstown House 53.51667 -6.61667 S EST IE L 21 0 92 Europe/Dublin 1993-12-27 +2960997 Warrens Grove Warrens Grove 51.85 -8.83333 S EST IE M 04 0 79 Europe/Dublin 2010-08-14 +2960998 Warrens Court Warrens Court 51.85472 -8.91278 S EST IE M 04 0 146 Europe/Dublin 2010-08-14 +2960999 War Hill War Hill 53.13778 -6.25389 T MT IE L 31 0 685 439 Europe/Dublin 2010-08-14 +2961000 Hill of Ward Hill of Ward Hill of Ward 53.62444 -6.88611 T HLL IE L 21 0 79 Europe/Dublin 2010-08-14 +2961001 Ward Ward 53.43306 -6.33333 P PPL IE L 07 0 66 Europe/Dublin 2010-08-14 +2961002 Walterstown Walterstown 53.61278 -6.55306 P PPL IE L 21 0 79 Europe/Dublin 2010-08-14 +2961003 Walshtown Walshtown 51.98306 -8.18722 P PPL IE M 04 0 130 Europe/Dublin 2010-08-14 +2961004 Walshpool Lough Walshpool Lough 53.8 -9.18333 H LK IE C 20 0 65 Europe/Dublin 1993-12-27 +2961005 Virginia Road Virginia Road Virginia Road,Virginia Road Station 53.75 -7.01667 S RSTN IE L 21 0 160 Europe/Dublin 2010-08-10 +2961006 Virginia Virginia Achadh an Iuir,Achadh an Iúir,Virginia 53.83389 -7.07556 P PPL IE U 02 0 120 Europe/Dublin 2010-08-14 +2961007 Violetstown House Violetstown House 53.48333 -7.28333 S EST IE L 29 0 124 Europe/Dublin 1993-12-27 +2961008 Violet Hill Violet Hill 52.74444 -7.56083 S EST IE L 13 0 142 Europe/Dublin 2010-08-14 +2961009 Vinegar Hill Vinegar Hill 52.50417 -6.54611 T HLL IE L 30 0 61 Europe/Dublin 2010-08-14 +2961010 Villierstown Villierstown An Baile Nua,Villierstown 52.08889 -7.85306 P PPL IE M 27 0 75 Europe/Dublin 2010-08-14 +2961011 Vicarstown Cross Roads Vicarstown Cross Roads Vicarstown,Vicarstown Cross Roads 51.93333 -8.65 P PPL IE IE M 04 0 76 Europe/Dublin 2010-08-14 +2961012 Vicarstown Vicarstown 53.04917 -7.08861 P PPL IE L 15 0 71 Europe/Dublin 2010-08-14 +2961013 Ventry Harbour Ventry Harbour 52.12278 -10.35583 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961014 Ventry Ventry Ceann Tra,Ceann Trá,Ventry 52.1325 -10.36694 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2961015 Velvetstown House Velvetstown House 52.25 -8.66667 S EST IE M 04 0 114 Europe/Dublin 1993-12-27 +2961016 Lough Vearty Lough Vearty Lough Vearty 54.53333 -8 H LK IE 00 0 177 Europe/Dublin 1998-02-19 +2961017 Lough Beagh Lough Beagh Lough Beagh,Lough Veagh 55.03833 -7.97167 H LK IE IE U 06 0 70 Europe/Dublin 2010-08-14 +2961018 Vartry River Vartry River 53.00278 -6.05528 H STM IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2961019 Valencia River Valencia River Valencia River,Valentia River 51.93222 -10.27806 H STM IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961020 Valencia Island Valencia Island Valencia Island,Valentia Island 51.90833 -10.37194 T ISL IE IE M 11 0 28 Europe/Dublin 2010-08-14 +2961021 Valencia Harbour Station Valencia Harbour Station Valencia Harbour,Valencia Harbour Station,Valentia Harbour 51.91667 -10.28333 S RSTN IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961022 Valencia Harbour Valencia Harbour Valencia Harbour,Valentia Harbour 51.93 -10.30306 H HBR IE M 11 0 35 Europe/Dublin 2010-08-14 +2961023 Urris Hills Urris Hills 55.22389 -7.51889 T MTS IE U 06 0 269 Europe/Dublin 2010-08-14 +2961024 Urrin River Urrin River 52.49278 -6.56722 H STM IE L 30 0 52 Europe/Dublin 2010-08-14 +2961025 Urlingford Urlingford Ath na nUrlainn,Urlingford,Áth na nUrlainn 52.72056 -7.5825 P PPL IE L 13 0 143 Europe/Dublin 2010-08-14 +2961026 Urlaur Lough Urlaur Lough 53.83333 -8.73333 H LK IE C 20 0 54 Europe/Dublin 1993-12-27 +2961027 Uregare House Uregare House Uregare,Uregare House 52.45 -8.56667 S EST IE M 16 0 75 Europe/Dublin 2010-08-10 +2961028 Urbalreagh Urbalreagh 55.33639 -7.28528 P PPL IE U 06 0 76 Europe/Dublin 2010-08-14 +2961029 Upton House Upton House 51.79917 -8.68833 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +2961030 Upton Upton 51.79222 -8.67333 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2961031 Upper Court Upper Court 52.72611 -7.40667 S EST IE L 13 0 128 Europe/Dublin 2010-08-14 +2961032 Upperchurch Upperchurch Upperchurch 52.70333 -8.0175 P PPL IE M 26 0 289 Europe/Dublin 2010-11-04 +2961033 Unshin River Unshin River 54.19139 -8.48167 H STM IE C 25 0 59 Europe/Dublin 2010-08-14 +2961034 Lough Unshin Lough Unshin 54.52028 -8.07917 H LK IE U 06 0 403 Europe/Dublin 2010-08-14 +2961035 Unionhall Unionhall Breantra,Bréantrá,Unionhall 51.55 -9.13333 P PPL IE M 04 0 28 Europe/Dublin 2010-08-14 +2961036 Umrycam Umrycam 55.18333 -7.7 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961037 Ummeryroe Ummeryroe 54.11667 -8.28333 P PPL IE C 25 0 142 Europe/Dublin 1993-12-27 +2961038 Umma House Umma House 53.45 -7.7 S EST IE L 29 0 76 Europe/Dublin 1993-12-27 +2961039 Umfin Island Umfin Island 55.10194 -8.36583 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961040 Ullard Ullard 52.57972 -6.93083 P PPL IE L 13 0 27 Europe/Dublin 2010-08-14 +2961041 Lough Ugga Beg Lough Ugga Beg 53.27194 -9.4325 H LK IE C 10 0 74 Europe/Dublin 2010-08-14 +2961042 Tyrrelstown House Tyrrelstown House 53.4 -6.4 S EST IE L 07 0 36 Europe/Dublin 2010-08-14 +2961043 Tyrrellspass Tyrrellspass Bealach an Tirialaigh,Tyrrellspass,Tyrrelspass 53.38889 -7.37361 P PPL IE L 29 0 133 Europe/Dublin 2010-08-14 +2961044 Tyredagh Castle Tyredagh Castle Tyredach Castle,Tyredagh Castle 52.88472 -8.79861 S RUIN IE IE M 03 0 66 Europe/Dublin 2010-08-14 +2961045 Tyrcallen Tyrcallen 54.82528 -7.74417 S EST IE U 06 0 82 Europe/Dublin 2010-08-14 +2961046 Tynagh Tynagh Tine,Tynagh,Tíne 53.14944 -8.3725 P PPL IE IE C 10 0 75 Europe/Dublin 2010-08-14 +2961047 Tyholland Bridge Tyholland Bridge Tyholland,Tyholland Bridge 54.25 -6.9 P PPL IE IE 00 0 65 Europe/Dublin 2010-08-10 +2961048 Two Rock Mountain Two Rock Mountain 53.23472 -6.24167 T MT IE L 07 0 517 453 Europe/Dublin 2010-08-14 +2961049 Twomileditch Twomileditch 53.30389 -8.99778 P PPL IE C 10 0 3 Europe/Dublin 2010-08-14 +2961050 Twomileborris Twomileborris 52.67167 -7.72 P PPL IE M 26 0 124 Europe/Dublin 2010-08-14 +2961051 The Twelve Pins The Twelve Pins Beanna Beola,Benna Beola,The Twelve Bens,The Twelve Pins,Twelve Pins of Bennebeola 53.5 -9.83333 T MTS IE IE C 10 0 402 Europe/Dublin 2010-08-14 +2961052 Tuskar Rock Tuskar Rock Tuskar Rock 52.19889 -6.19833 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961053 Turvey House Turvey House 53.49667 -6.17556 S EST IE L 07 0 1 Europe/Dublin 2010-08-14 +2961054 Turners Rock Turners Rock 51.79222 -9.58111 T MT IE M 04 0 233 Europe/Dublin 2010-08-14 +2961055 Turloughmore Turloughmore 53.37472 -8.86472 P PPL IE C 10 0 27 Europe/Dublin 2010-08-14 +2961056 Turlough Turlough Turlach,Turlough 53.88333 -9.21667 P PPL IE IE C 20 0 38 Europe/Dublin 2010-08-14 +2961057 Turlough Turlough 53.09222 -9.06528 P PPL IE M 03 0 68 Europe/Dublin 2010-08-14 +2961058 Turkstown Turkstown 52.32333 -7.30389 P PPL IE L 13 0 13 Europe/Dublin 2010-08-14 +2961059 Turbotston Turbotston Turbotston,Turbotstown,Turbotstown House 53.7 -7.35 S EST IE IE L 29 0 79 Europe/Dublin 2010-08-14 +2961060 Turbot Island Turbot Island Talbot Island,Turbot Island 53.50194 -10.14806 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961061 Tulsk Tulsk Tuilsce,Tulsk 53.78333 -8.25 P PPL IE IE C 24 0 75 Europe/Dublin 2010-08-14 +2961062 Tullyvin House Tullyvin House Tullyvin,Tullyvin House 54.05 -7.15 S HSEC IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2961063 Tullyvin Tullyvin 54.04833 -7.14472 P PPL IE U 02 0 76 Europe/Dublin 2010-08-14 +2961064 Tullynascreen Tullynascreen 54.17472 -8.28167 P PPL IE C 14 0 174 Europe/Dublin 2010-08-14 +2961065 Tullynahinnera Tullynahinnera Tullynahinera,Tullynahinnera 54.08333 -6.8 P PPL IE IE 00 0 152 Europe/Dublin 2010-08-10 +2961066 Tullymurray Tullymurray 54.13333 -8.1 P PPL IE C 14 0 58 Europe/Dublin 1993-12-27 +2961067 Tullymore Tullymore Tullamore,Tullymore 54.52111 -8.17806 P PPL IE IE U 06 0 67 Europe/Dublin 2010-08-14 +2961068 Tully Lough Tully Lough Tally Lough,Tully Lough 53.58972 -9.97972 H LK IE C 10 0 15 Europe/Dublin 2010-08-14 +2961069 Tullylease Tullylease 52.3 -8.95 P PPL IE M 04 0 155 Europe/Dublin 1993-12-27 +2961070 Tullyleague Tullyleague 52.53611 -9.30028 P PPL IE M 16 0 148 Europe/Dublin 2010-08-14 +2961071 Tullyglass House Tullyglass House Tullyglass,Tullyglass House 51.76 -8.86361 S BLDG IE IE M 04 0 110 Europe/Dublin 2010-08-14 +2961072 Tullycreen Upper Tullycreen Upper Tullycreen,Tullycreen Upper,Tullycrine 52.68389 -9.35583 P PPL IE IE M 03 0 27 Europe/Dublin 2010-08-14 +2961073 Tullycreen Lower Tullycreen Lower 52.66833 -9.32722 P PPL IE M 03 0 24 Europe/Dublin 2010-08-14 +2961074 Tullycanna Tullycanna 52.2675 -6.66861 P PPL IE L 30 0 35 Europe/Dublin 2010-08-14 +2961075 Tullybrook Tullybrook 54.63194 -8.07889 P PPL IE U 06 0 53 Europe/Dublin 2010-08-14 +2961076 Tullyard Tullyard 53.58194 -6.79333 S EST IE L 21 0 77 Europe/Dublin 2010-08-14 +2961077 Tullyallen Tullyallen Tullyallen 53.73611 -6.42278 P PPL IE L 19 0 60 Europe/Dublin 2010-08-14 +2961078 Tully Tully 53.23333 -9.48333 P PPL IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2961079 Tullow Tullow An Tulach,Tullow 52.80028 -6.73694 P PPL IE L 01 2424 86 Europe/Dublin 2010-08-14 +2961080 Tullira Castle Tullira Castle 53.13611 -8.78444 S HSEC IE C 10 0 33 Europe/Dublin 2010-08-14 +2961081 Tullig Point Tullig Point 52.61417 -9.80417 T PT IE M 03 0 2 Europe/Dublin 2010-08-14 +2961082 Tullig Tullig 52.61472 -9.77611 P PPL IE M 03 0 30 Europe/Dublin 2010-08-14 +2961083 Tullig Tullig 52.11278 -9.85444 P PPL IE M 11 0 8 Europe/Dublin 2010-08-14 +2961084 Tullaroan Tullaroan Tullaroan 52.66222 -7.43639 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +2961085 Tullamore River Tullamore River Clonmore,Tullamore River 53.27722 -7.5775 H STM IE IE L 23 0 71 Europe/Dublin 2010-08-14 +2961086 Tullamore Tullamore Tulach Mhor,Tulach Mhór 53.27389 -7.48889 P PPLA2 IE L 23 11575 73 Europe/Dublin 2010-08-14 +2961087 Tullamore Tullamore 52.49167 -9.48778 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +2961088 Tullaher Lough Tullaher Lough Lough Trullaher,Tullaher Lough 52.69861 -9.54528 H LK IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2961089 Tullagh Point Tullagh Point 55.29472 -7.46722 T PT IE U 06 0 2 Europe/Dublin 2010-08-14 +2961090 Tullaghought Tullaghought 52.42194 -7.36167 P PPL IE L 13 0 169 Europe/Dublin 2010-08-14 +2961091 Tullagher Tullagher 52.43167 -7.04556 P PPL IE L 13 0 134 Europe/Dublin 2010-08-14 +2961092 Tullagh Bay Tullagh Bay 55.28639 -7.44361 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961093 Tullaghanoge Tullaghanoge 53.58889 -6.87222 P PPL IE L 21 0 77 Europe/Dublin 2010-08-14 +2961094 Tullaghan Bay Tullaghan Bay Tallaghan Bay,Tullaghan Bay 54.09111 -9.86889 H BAY IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961095 Tullaghan Tullaghan 54.46833 -8.33111 P PPL IE C 14 0 1 Europe/Dublin 2010-08-14 +2961096 Tulla Tulla An Tulach,Tulla 52.86472 -8.76056 P PPL IE M 03 0 152 Europe/Dublin 2010-08-14 +2961097 Tudenham Park Tudenham Park 53.46667 -7.35 S EST IE L 29 0 117 Europe/Dublin 1993-12-27 +2961098 Tubber Tubber Tobar,Tubber 52.99889 -8.88528 P PPL IE C 10 0 47 Europe/Dublin 2010-08-14 +2961099 Tuam Tuam Tuaim,Tuam 53.51667 -8.85 P PPL IE C 10 6130 48 Europe/Dublin 2010-08-14 +2961100 Truskmore Truskmore 54.37639 -8.37222 T MT IE 00 0 646 591 Europe/Dublin 2006-01-16 +2961101 Trusk Lough Trusk Lough 54.75722 -7.79917 H LK IE U 06 0 161 Europe/Dublin 2010-08-14 +2961102 Trusklieve Trusklieve 52.62778 -9.76444 P PPL IE M 03 0 73 Europe/Dublin 2010-08-14 +2961103 Trubley Castle Trubley Castle 53.56667 -6.71667 S RUIN IE L 21 0 57 Europe/Dublin 1993-12-27 +2961104 Trough Trough 52.73333 -8.61667 P PPL IE M 03 0 79 Europe/Dublin 1993-12-27 +2961105 Triogue River Triogue River Tiogue River,Triogue River 53.11389 -7.28972 H STM IE IE L 15 0 107 Europe/Dublin 2010-08-14 +2961106 Trimoge River Trimoge River 53.91667 -9.01667 H STM IE C 20 0 30 Europe/Dublin 1993-12-27 +2961107 Baile Átha Troim Baile Atha Troim Baile Atha Troim,Baile Átha Troim,Trim 53.555 -6.79167 P PPL IE L 21 1800 62 Europe/Dublin 2010-09-05 +2961108 The Triangle The Triangle 53.76667 -9.4 P PPLL IE C 20 0 137 Europe/Dublin 2010-08-14 +2961109 Tremone Bay Tremone Bay 55.26667 -7.06667 H BAY IE U 06 0 1 Europe/Dublin 1993-12-27 +2961110 Tremblestown River Tremblestown River 53.55417 -6.83167 H STM IE L 21 0 66 Europe/Dublin 2010-08-14 +2961111 Treantagh Treantagh 54.92667 -7.4875 P PPL IE U 06 0 52 Europe/Dublin 2010-08-14 +2961112 Trawmore Bay Trawmore Bay 54.18361 -9.9575 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961113 Trawenagh Bay Trawenagh Bay 54.89333 -8.35417 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961114 Trawbreaga Bay Trawbreaga Bay Trawbreaga Bay,Trawbreaga Lough 55.285 -7.29472 H BAY IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961115 Traverston House Traverston House 52.7975 -8.16444 S EST IE M 26 0 118 Europe/Dublin 2010-08-14 +2961116 Tranarossan Bay Tranarossan Bay Tranarossan Bay,Tranrossan Bay 55.23056 -7.82444 H BAY IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961117 Tranagh Tranagh 52.69472 -7.6025 P PPL IE M 26 0 138 Europe/Dublin 2010-08-14 +2961118 Tramore Bay Tramore Bay 55.18333 -8.03333 H BAY IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2961119 Tramore Bay Tramore Bay 52.13917 -7.1325 H BAY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2961120 Trá Mhór Tra Mhor Tramore 52.16235 -7.15244 P PPL IE M 27 9164 2 Europe/Dublin 2010-08-14 +2961121 Tralong Bay Tralong Bay 51.55694 -9.05861 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961122 Tralee Bay Tralee Bay Tralee Bay 52.27833 -9.93139 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961123 Trá Lí Tra Li Tra Li,Tralee,Trá Lí 52.27042 -9.70264 P PPLA2 IE M 11 22941 912 48 Europe/Dublin 2010-10-06 +2961124 Tracton Tracton 51.76139 -8.41639 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2961125 Tracarta Tracarta 51.51583 -9.19389 P PPL IE M 04 0 6 Europe/Dublin 2010-08-14 +2961126 Trabolgan House Trabolgan House 51.79972 -8.23583 S EST IE M 04 0 1 Europe/Dublin 2010-08-14 +2961127 Townley Hall Townley Hall 53.72944 -6.44722 S EST IE L 19 0 54 Europe/Dublin 2010-08-14 +2961128 Towerhill House Towerhill House 53.71667 -9.2 S EST IE C 20 0 46 Europe/Dublin 1993-12-27 +2961129 Tower Tower Tower,Tower Village 51.91667 -8.6 P PPL IE M 04 3099 70 Europe/Dublin 2010-08-14 +2961130 Tourin Tourin 52.11667 -7.86667 P PPL IE M 27 0 17 Europe/Dublin 1993-12-27 +2961131 Tourig River Tourig River 51.97778 -7.8625 H STM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961132 Tory Sound Tory Sound 55.21667 -8.2 H SD IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2961133 Toraigh Toraigh Toraigh,Tory Island 55.26444 -8.22111 T ISL IE U 06 0 15 Europe/Dublin 2010-08-14 +2961134 The Tor Rocks The Tor Rocks 55.43333 -7.25 T RKS IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961135 Torneady Point Torneady Point Tornado Point,Torneady Point 55.02167 -8.54028 T PT IE IE U 06 0 35 Europe/Dublin 2010-08-14 +2961136 Tormore Island Tormore Island 54.76389 -8.69222 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961137 Torc Mountain Torc Mountain Torc Mountain 52 -9.51667 T MT IE M 11 0 189 Europe/Dublin 2010-08-10 +2961138 Torc Cascade Torc Cascade Torc Cascade,Tore Cascade 52 -9.5 H FLLS IE M 11 0 378 Europe/Dublin 2010-08-10 +2961139 Toormore Bay Toormore Bay 51.50194 -9.65583 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961140 Toormore Toormore 53.79278 -10.03417 L LCTY IE C 20 0 111 Europe/Dublin 2010-08-14 +2961141 Toormore Toormore 51.52083 -9.65611 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961142 Toormakeady Lodge Toormakeady Lodge Toormakeady,Toormakeady Lodge 53.65 -9.38333 S EST IE C 20 0 59 Europe/Dublin 2010-08-10 +2961143 Toormakeady Toormakeady 53.65 -9.36667 P PPL IE C 20 0 59 Europe/Dublin 1993-12-27 +2961144 Tooreeny Tooreeny 53 -8.38333 P PPL IE C 10 0 68 Europe/Dublin 2010-08-14 +2961145 Tooreens Tooreens 51.84278 -10.02861 P PPL IE M 11 0 421 Europe/Dublin 2010-08-14 +2961146 Tooreengarriv Tooreengarriv 52.16667 -9.28333 P PPL IE M 11 0 241 Europe/Dublin 1993-12-27 +2961147 Tooreendonnell Tooreendonnell 52.495 -9.22694 P PPL IE M 16 0 152 Europe/Dublin 2010-08-14 +2961148 Tooreencahill Tooreencahill 52.15 -9.25 P PPL IE M 11 0 181 Europe/Dublin 1993-12-27 +2961149 Tooreenbrien Bridge Tooreenbrien Bridge Tooreenbrien,Tooreenbrien Bridge 52.6925 -8.27361 P PPL IE IE M 26 0 288 Europe/Dublin 2010-11-04 +2961150 Tooreen Tooreen 53.66667 -9.28333 P PPL IE C 20 0 49 Europe/Dublin 1993-12-27 +2961151 Tooreen Tooreen 51.55 -9.83333 P PPL IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2961152 Tooravoola Tooravoola 53.05667 -8.64028 P PPL IE C 10 0 146 Europe/Dublin 2010-08-14 +2961153 Tooraneena Tooraneena 52.20222 -7.715 P PPL IE M 27 0 152 Europe/Dublin 2010-08-14 +2961154 Toor Toor 51.8 -10.16667 P PPL IE M 11 0 39 Europe/Dublin 2010-08-14 +2961155 Toon River Toon River 51.88333 -9.01667 H STM IE M 04 0 104 Europe/Dublin 1993-12-27 +2961156 Toonagh House Toonagh House 52.88778 -9.02833 S EST IE M 03 0 50 Europe/Dublin 2010-08-14 +2961157 Toomyvara Toomyvara Toomyvara,Tuaim Ui Mheara,Tuaim Uí Mheára 52.84972 -8.03222 P PPL IE M 38 0 157 Europe/Dublin 2010-11-04 +2961158 Toomona House Toomona House 53.76667 -8.28333 S EST IE C 24 0 78 Europe/Dublin 1993-12-27 +2961159 Toomard Toomard 53.53333 -8.46667 P PPL IE C 10 0 73 Europe/Dublin 1993-12-27 +2961160 Tooban Junction Tooban Junction 55.05 -7.43333 S RSTN IE U 06 0 55 Europe/Dublin 1993-12-27 +2961161 Tonlegee House Tonlegee House Tonlegee,Tonlegee House 52.9775 -6.98917 S EST IE IE L 15 0 59 Europe/Dublin 2010-08-14 +2961162 Tonduff Tonduff 55.2 -7.51667 P PPL IE U 06 0 62 Europe/Dublin 1993-12-27 +2961163 Tomies Mountain Tomies Mountain 52.01667 -9.61667 T MT IE M 11 0 432 Europe/Dublin 1993-12-27 +2961164 Tomhaggard Tomhaggard 52.21194 -6.51778 P PPL IE L 30 0 11 Europe/Dublin 2010-08-14 +2961165 Tuamgraney Tuamgraney Tomgraney,Tuaim Greine,Tuaim Gréine,Tuamgraney 52.89722 -8.53861 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +2961166 Tombrack Tombrack 52.60278 -6.5475 P PPL IE L 30 0 71 Europe/Dublin 2010-08-14 +2961167 Tomacurry Tomacurry 52.55333 -6.56 P PPL IE L 30 0 56 Europe/Dublin 2010-08-14 +2961168 Tolka River Tolka River An Tulca,Tolka River 53.34972 -6.23889 H STM IE IE 00 0 1 Europe/Dublin 2010-08-10 +2961169 Toghermore Toghermore 53.48333 -8.81667 S EST IE C 10 0 43 Europe/Dublin 1993-12-27 +2961170 The Togher The Togher 53.07972 -7.19972 P PPL IE L 15 0 134 Europe/Dublin 2010-08-14 +2961171 Togher Togher 53.84278 -6.30278 P PPL IE L 19 0 21 Europe/Dublin 2010-08-14 +2961172 Togher Togher 53.08167 -6.52 P PPL IE L 31 0 280 Europe/Dublin 2010-08-14 +2961173 Roundwood Roundwood An Tochar,An Tóchar,Roundwood,Togher 53.05861 -6.22611 P PPL IE L 31 0 258 Europe/Dublin 2010-08-14 +2961174 Togher Togher 51.8775 -8.49167 P PPL IE M 04 0 56 Europe/Dublin 2010-08-14 +2961175 Togher Togher 51.78111 -9.15556 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +2961176 Toem Toem 52.57667 -8.19611 P PPL IE M 26 0 96 Europe/Dublin 2010-08-14 +2961177 Toe Head Bay Toe Head Bay 51.49111 -9.25167 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961178 Toe Head Toe Head 51.48583 -9.23556 T CAPE IE M 04 0 3 Europe/Dublin 2010-08-14 +2961179 Tobertynan House Tobertynan House Tobertynan,Tobertynan House 53.48528 -6.8575 S EST IE IE L 21 0 79 Europe/Dublin 2010-08-14 +2961180 Toberscanavan Toberscanavan 54.16694 -8.48556 P PPL IE C 25 0 66 Europe/Dublin 2010-08-14 +2961181 Toberdan Toberdan 53.53333 -8.06667 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2961182 Tobercurry Tobercurry Tobar an Choire,Tobercurry,Tubbercurry 54.05 -8.73333 P PPL IE C 25 0 92 Europe/Dublin 2010-08-14 +2961183 Tober Tober 54.21667 -8.00194 P PPL IE U 02 0 158 Europe/Dublin 2010-08-14 +2961184 Tober Tober 53.375 -7.65611 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +2961185 Tivoli House Tivoli House 51.9 -8.43333 S EST IE M 04 0 27 Europe/Dublin 2010-08-14 +2961186 Tirraboy Tirraboy 55.25 -7.15 P PPL IE U 06 0 25 Europe/Dublin 1993-12-27 +2961187 Tirneevin Tirneevin 53.06417 -8.88306 P PPL IE C 10 0 44 Europe/Dublin 2010-08-14 +2961188 Tiragarvan Tiragarvan 53.98333 -6.76667 P PPL IE 00 0 99 Europe/Dublin 1993-12-27 +2961189 Tipperary South Riding Tipperary South Riding South Riding,Tipperary County South Riding 52.41667 -7.83333 A ADM2 IE 00 40 80276 151 Europe/Dublin 2010-08-14 +2961190 Tipperary North Riding Tipperary North Riding North Riding,Tipperary County North Riding 52.75 -7.83333 A ADM2 IE 00 38 61926 104 Europe/Dublin 2010-08-14 +2961191 County Tipperary County Tipperary Contae Thiobraid Arann,Contae Thiobraid Árann,County Tipperary,Tiobraid Arann,Tiobraid Árann,Tipperary 52.66667 -7.83333 A ADMD IE IE M 26 0 93 Europe/Dublin 2010-11-04 +2961192 Tiobraid Árann Tiobraid Arann Tipperary 52.47333 -8.15583 P PPL IE M 26 4976 166 Europe/Dublin 2010-08-14 +2961193 Tintrim House Tintrim House 52.96417 -8.34556 S EST IE M 03 0 56 Europe/Dublin 2010-08-14 +2961194 Tintern Abbey Tintern Abbey 52.23528 -6.83333 S MSTY IE L 30 0 3 Europe/Dublin 2010-08-14 +2961195 Tinny Park Tinny Park 53.68333 -8.38333 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2961196 Tinnaslatty House Tinnaslatty House 52.8 -7.41667 S RUIN IE L 13 0 154 Europe/Dublin 2010-08-14 +2961197 Timnapark House Timnapark House Timnapark House,Tinnapark,Tinnapark House 53.1 -6.11667 S HSEC IE IE L 31 0 114 Europe/Dublin 2010-08-14 +2961198 Tinnahinch Tinnahinch 52.53861 -6.94806 P PPL IE L 01 0 28 Europe/Dublin 2010-08-14 +2961199 Tinnaglogh Tinnaglogh 52.26806 -6.89722 P PPL IE L 30 0 64 Europe/Dublin 2010-08-14 +2961200 Tinkerslane Tinkerslane 53.505 -6.98111 P PPL IE L 21 0 84 Europe/Dublin 2010-08-14 +2961201 Tincoora Tincoora 52.1 -8.86667 P PPL IE M 04 0 156 Europe/Dublin 1993-12-27 +2961202 Tinarana House Tinarana House Tinarana,Tinarana House 52.86444 -8.44917 S EST IE IE M 03 0 55 Europe/Dublin 2010-08-14 +2961203 Tinalira Tinalira 52.18472 -7.72806 P PPL IE M 27 0 133 Europe/Dublin 1997-12-15 +2961204 Tinahely Tinahely Tigh na hEille,Tigh na hÉille,Tinahely 52.79667 -6.46333 P PPL IE IE L 31 0 121 Europe/Dublin 2010-08-14 +2961205 Timoney Park Timoney Park Timaney Park,Timoney Park 52.91139 -7.72333 S EST IE IE M 26 0 153 Europe/Dublin 2010-11-04 +2961206 Timolin Timolin 52.9825 -6.81167 P PPL IE L 12 0 138 Europe/Dublin 2010-08-14 +2961207 Timoleague Timoleague Tigh Molaige,Timoleague 51.64222 -8.77306 P PPL IE IE M 04 0 25 Europe/Dublin 2010-08-14 +2961208 Timahoe Timahoe 53.335 -6.83861 P PPL IE L 12 0 92 Europe/Dublin 2010-08-14 +2961209 Timahoe Timahoe Tigh Mochua,Timahoe 52.95833 -7.20528 P PPL IE IE L 15 0 152 Europe/Dublin 2010-08-14 +2961210 Tiltinbane Tiltinbane Tiltinbane 54.21972 -7.85778 T MT IE 00 0 594 453 Europe/Dublin 2006-01-16 +2961211 Tievemore House Tievemore House 54.59444 -7.77472 S HSEC IE U 06 0 173 Europe/Dublin 2010-08-14 +2961212 Tievemore Tievemore 54.58333 -7.76667 P PPL IE 00 0 330 Europe/Dublin 1993-12-27 +2961213 Tiaquin Tiaquin 53.35972 -8.63333 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +2961214 Durlas Durlas Thurles 52.68194 -7.80222 P PPL IE M 26 7588 98 Europe/Dublin 2010-08-14 +2961215 The Three Sisters The Three Sisters 52.20167 -10.42194 T HLLS IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961216 The Pigeons The Pigeons The Pigeons,Three Jolly Pigeons 53.5 -7.81667 P PPL IE IE L 29 0 77 Europe/Dublin 2010-08-14 +2961217 Threecastles House Threecastles House Three Castles,Threecastles House 52.71 -7.32 S EST IE IE L 13 0 67 Europe/Dublin 2010-08-14 +2961218 Three Castle Head Three Castle Head 51.48278 -9.83667 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961219 Thomastown Park Thomastown Park Thomastown House,Thomastown Park 53.36583 -8.07333 S EST IE IE C 24 0 123 Europe/Dublin 2010-08-14 +2961220 Thomaston Park Thomaston Park Thomaston Park,Thomastown House,Thomastown Park 53.13389 -7.79583 S EST IE IE L 23 0 76 Europe/Dublin 2010-08-14 +2961221 Thomastown Castle Thomastown Castle 53.93333 -6.58333 S EST IE 00 0 44 Europe/Dublin 1993-12-27 +2961222 Thomastown Castle Thomastown Castle 52.48972 -8.03222 S EST IE M 26 0 79 Europe/Dublin 2010-08-14 +2961223 Thomastown Thomastown 53.39639 -6.88417 P PPL IE L 12 0 86 Europe/Dublin 2010-08-14 +2961224 Thomastown Thomastown Baile Mhic Andain,Baile Mhic Andáin,Thomastown 52.52667 -7.13722 P PPL IE L 13 1603 52 Europe/Dublin 2010-08-14 +2961225 Thomastown Thomastown Thomastown,Thomastown Castle 52.49417 -8.02444 P PPL IE IE M 26 0 79 Europe/Dublin 2010-11-04 +2961226 Thomas Street Thomas Street 53.46667 -8.21667 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2961227 Tervoe House Tervoe House 52.64944 -8.71139 S EST IE M 16 0 3 Europe/Dublin 2010-08-14 +2961228 Terryglass Terryglass Terryglass 53.05028 -8.19889 P PPL IE M 26 0 55 Europe/Dublin 2010-11-04 +2961229 Termon River Termon River Termon River 54.53333 -7.85 H STM IE 00 0 68 Europe/Dublin 1998-02-19 +2961230 Termon Hill Termon Hill 54.10333 -10.09611 T HLL IE C 20 0 105 2 Europe/Dublin 2010-08-14 +2961231 Termonfeckin Termonfeckin Tearmann Feichin,Tearmann Feichín,Termonfeckin 53.76333 -6.26778 P PPL IE L 19 0 3 Europe/Dublin 2010-08-14 +2961232 Termon Cottage Termon Cottage 53.04806 -9.06056 S HSEC IE M 03 0 151 Europe/Dublin 2010-08-14 +2961233 Termoncarragh Termoncarragh 54.25139 -10.06361 P PPL IE C 20 0 57 Europe/Dublin 2010-08-14 +2961234 Termonbarry Termonbarry 53.75 -7.91667 P PPL IE 00 0 66 Europe/Dublin 1993-12-27 +2961235 Terenure Terenure Roundtown,Terenure 53.30972 -6.28528 P PPL IE IE 00 0 49 Europe/Dublin 2010-08-10 +2961236 Templetouhy Templetouhy Teampall Tuaithe,Templetouhy,Templetuohy 52.78722 -7.71972 P PPL IE IE M 26 0 147 Europe/Dublin 2010-11-04 +2961237 An Teampall Mór An Teampall Mor Templemore 52.79472 -7.83389 P PPL IE M 26 2264 120 Europe/Dublin 2010-08-14 +2961238 Templehouse Lake Templehouse Lake 54.10333 -8.58917 H LK IE C 25 0 74 Europe/Dublin 2010-08-14 +2961239 Temple House Temple House 54.11083 -8.59111 S HSEC IE C 25 0 74 Europe/Dublin 2010-08-14 +2961240 Templebreedy Templebreedy 51.78167 -8.31583 A PRSH IE M 04 0 5 Europe/Dublin 2010-08-14 +2961241 Templeboy Templeboy 54.24583 -8.8125 P PPL IE C 25 0 43 Europe/Dublin 2010-08-14 +2961242 Templebodan Templebodan 51.99861 -8.24583 P PPL IE M 04 0 138 Europe/Dublin 2010-08-14 +2961243 Temple Temple Oriel Temple,Temple 53.78333 -6.46667 S EST IE IE 00 0 152 Europe/Dublin 2010-08-10 +2961244 Temora House Temora House 53.16667 -7.75 S EST IE L 23 0 73 Europe/Dublin 2010-08-14 +2961245 Teltown House Teltown House Teltown,Teltown House 53.69667 -6.77861 S BLDG IE IE L 21 0 57 Europe/Dublin 2010-08-14 +2961246 Teeromoyle Teeromoyle 51.97222 -10.07028 P PPL IE M 11 0 170 Europe/Dublin 2010-08-14 +2961247 Teerelton Teerelton 51.85139 -8.98444 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2961248 Teeranearagh Teeranearagh 51.86861 -10.26278 P PPL IE M 11 0 263 Europe/Dublin 2010-08-14 +2961249 Teelin Bay Teelin Bay Teelin Bay,Teelin Harbour 54.63333 -8.63333 H HBR IE U 06 0 -9999 Europe/Dublin 2010-08-10 +2961250 Teelin Teelin 54.63472 -8.64167 P PPL IE U 06 0 15 Europe/Dublin 2010-08-14 +2961251 Tedavnet Tedavnet 54.29639 -7.01389 P PPL IE U 22 0 138 Europe/Dublin 2010-08-14 +2961252 Tearaght Island Tearaght Island Inishteraght,Tearaght Island 52.07528 -10.65667 T ISL IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961253 River Tay River Tay 52.125 -7.46222 H STM IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2961254 Lough Tay Lough Tay Loch Te,Loch Té,Lough Tay,Luggada Lake 53.10472 -6.26861 H LK IE IE L 31 0 342 Europe/Dublin 2010-08-14 +2961255 Tawnyinah Tawnyinah 53.9 -8.76667 P PPL IE C 20 0 135 Europe/Dublin 1993-12-27 +2961256 Tawny Bay Tawny Bay 54.62167 -8.61861 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961257 Tawnyard Lough Tawnyard Lough 53.63333 -9.63333 H LK IE C 20 0 74 Europe/Dublin 1993-12-27 +2961258 Tawny Tawny Tamney,Tawny 55.2 -7.68333 P PPL IE IE U 06 0 51 Europe/Dublin 2010-08-14 +2961259 Tawny Tawny 54.62444 -8.60083 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961260 Tawnawully Mountains Tawnawully Mountains 54.73528 -7.98333 T MTS IE U 06 0 180 Europe/Dublin 2010-08-14 +2961261 Tawin Island Tawin Island Tawin Island,West Tawin 53.21861 -9.03194 T ISL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +2961262 Taurbeg Taurbeg 52.23333 -9.13333 T MT IE M 04 0 299 Europe/Dublin 1993-12-27 +2961263 Taur Taur 52.23333 -9.11667 P PPL IE M 04 0 291 Europe/Dublin 1993-12-27 +2961264 Tarsaghaunmore River Tarsaghaunmore River 54.06361 -9.785 H STM IE C 20 0 55 Europe/Dublin 2010-08-14 +2961265 Tarmon Tarmon 52.53806 -9.37889 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +2961266 Tarbert House Tarbert House 52.57833 -9.36833 S EST IE M 11 0 1 Europe/Dublin 2010-08-14 +2961267 Tarbert Tarbert Tairbeart,Tarbert 52.57278 -9.37528 P PPL IE IE M 11 0 12 Europe/Dublin 2010-08-14 +2961268 Tara Hill Tara Hill 52.69806 -6.21472 T HLL IE L 30 0 56 Europe/Dublin 2010-08-14 +2961269 Tara Hall Tara Hall 53.58 -6.60222 S EST IE L 21 0 121 Europe/Dublin 2010-08-14 +2961270 Hill of Tara Hill of Tara 53.57972 -6.61194 T HLL IE L 21 0 135 Europe/Dublin 2010-08-14 +2961271 River Tar River Tar 52.28333 -7.83333 H STM IE 00 0 48 Europe/Dublin 1993-12-27 +2961272 Lough Tap Lough Tap 53.9 -7.98333 H LK IE C 14 0 92 Europe/Dublin 1993-12-27 +2961273 Tanrego House Tanrego House Tanrego,Tanrego House 54.23056 -8.61222 S HSEC IE IE C 25 0 1 Europe/Dublin 2010-08-14 +2961274 Tankersley House Tankersley House 52.82667 -6.38583 S EST IE L 31 0 87 Europe/Dublin 2010-08-14 +2961275 Tang River Tang River 53.53333 -7.83333 H STM IE L 29 0 67 Europe/Dublin 1993-12-27 +2961276 Tang Tang 53.53333 -7.78333 P PPL IE L 29 0 67 Europe/Dublin 1993-12-27 +2961277 Lough Talt Lough Talt 54.08389 -8.92139 H LK IE C 25 0 182 Europe/Dublin 2010-08-14 +2961278 Tallyho Lodge Tallyho Lodge 53.27 -8.69611 S HSEC IE C 10 0 46 Europe/Dublin 2010-08-14 +2961279 Tallyho Tallyho 52.81361 -6.36222 P PPL IE L 31 0 170 Europe/Dublin 2010-08-14 +2961280 Tallow Road Station Tallow Road Station Tallow Road,Tallow Road Station 52.11667 -7.98333 S RSTN IE IE M 27 0 71 Europe/Dublin 2010-08-14 +2961281 Tallowbridge Tallowbridge 52.10417 -8.00278 P PPL IE M 27 0 32 Europe/Dublin 2010-08-14 +2961282 Tallow Tallow Tallow,Tulach an Iarainn 52.09278 -8.00806 P PPL IE M 27 0 44 Europe/Dublin 2010-08-14 +2961283 Tallanstown Tallanstown 53.92278 -6.54639 P PPL IE L 19 0 36 Europe/Dublin 2010-08-14 +2961284 Tallaght Tallaght Tallaght 53.2859 -6.37344 P PPL IE IE L 07 64282 87 Europe/Dublin 2010-08-14 +2961285 Talbotstown House Talbotstown House 53.22917 -6.45167 S EST IE L 31 0 298 Europe/Dublin 2010-08-14 +2961286 Talbot Hall Talbot Hall 52.38611 -6.9125 S EST IE L 13 0 76 Europe/Dublin 2010-08-14 +2961287 Tahilla Tahilla 51.83722 -9.83639 P PPL IE M 11 0 62 Europe/Dublin 2010-08-14 +2961288 Tagoat Tagoat 52.24278 -6.38028 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2961289 Taghshinny Taghshinny Taghshinny 53.6 -7.71667 P PPL IE L 18 0 76 Europe/Dublin 2010-08-10 +2961290 Taghsheenod Taghsheenod 53.61667 -7.71667 P PPL IE L 18 0 90 Europe/Dublin 1993-12-27 +2961291 Taghmon Castle Taghmon Castle 53.6 -7.26667 S BLDG IE L 29 0 118 Europe/Dublin 1993-12-27 +2961292 Taghmon Taghmon Taghmon,Teach Munna 52.32167 -6.6475 P PPL IE L 30 0 73 Europe/Dublin 2010-08-14 +2961293 Tacumshin Lake Tacumshin Lake Tacumshin Lake,Tacumshin Lough,Tucumshin Lake 52.19528 -6.45306 H BAY IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961294 Lough Tacker Lough Tacker 54.01667 -6.95 H LK IE U 02 0 127 Europe/Dublin 2010-08-14 +2961295 Table Mountain Table Mountain 53.01444 -6.48417 T MT IE L 31 0 701 599 Europe/Dublin 2010-08-14 +2961296 Sybil Point Sybil Point 52.17806 -10.47333 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961297 Swords Swords Sord,Swords 53.45972 -6.21806 P PPL IE L 35 29816 6 Europe/Dublin 2010-11-04 +2961298 Swines Head Swines Head 52.12972 -7.02667 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2961299 Swinford Swinford Beal Atha na Muice,Béal Átha na Muice,Swineford,Swinford 53.95 -8.95 P PPL IE C 20 1241 68 Europe/Dublin 2010-08-14 +2961300 River Swilly River Swilly 54.96056 -7.67778 H STM IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961301 Lough Swilly Lough Swilly Loch Suili,Loch Súilí,Lough Swilly,The Lake of Shadows 55.16667 -7.53333 H INLT IE U 06 0 -9999 Europe/Dublin 2011-03-06 +2961302 The Sweep The Sweep 52.21667 -7.23333 P PPL IE M 27 0 49 Europe/Dublin 2010-08-14 +2961303 Swanlinbar Swanlinbar An Muileann Iarainn,Swanlinbar 54.19472 -7.70444 P PPL IE U 02 0 74 Europe/Dublin 2010-08-14 +2961304 Swan Swan 52.8875 -7.15972 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +2961305 Sutton Sutton Sutton 53.39056 -6.12167 P PPL IE L 07 0 -9999 Europe/Dublin 2010-11-04 +2961306 Sunvale Sunvale Sun Ville,Sunvale 52.34611 -8.5175 S EST IE IE M 16 0 151 Europe/Dublin 2010-08-14 +2961307 Lough Sunderlin Lough Sunderlin Lough Sewdy,Lough Sunderlin 53.5 -7.66667 H LK IE L 29 0 79 Europe/Dublin 2010-08-10 +2961308 Summerville Summerville 53.8 -7.36667 P PPL IE U 02 0 73 Europe/Dublin 1993-12-27 +2961309 Summerhill House Summerhill House 53.47 -6.72556 S EST IE L 21 0 78 Europe/Dublin 2010-08-14 +2961310 Summerhill House Summerhill House 52.76306 -7.94278 S EST IE M 26 0 107 Europe/Dublin 2010-08-14 +2961311 Summerhill House Summerhill House Summerhill House,Summerville 52.36778 -7.73889 S EST IE IE M 26 0 71 Europe/Dublin 2010-11-04 +2961312 Summerhill Summerhill 53.47694 -6.73639 P PPL IE L 21 0 77 Europe/Dublin 2010-08-14 +2961313 Summerhill Summerhill 52.80528 -7.13722 P PPL IE L 13 0 227 Europe/Dublin 2010-08-14 +2961314 Summer Cove Summer Cove Summer Cove,Summor Cove 51.70333 -8.50222 P PPL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961315 Sullane River Sullane River 51.88333 -8.93333 H STM IE M 04 0 85 Europe/Dublin 2010-08-14 +2961316 Suir Mount Suir Mount 52.29611 -7.79222 S EST IE M 27 0 59 Europe/Dublin 2010-08-14 +2961317 Suir Island Suir Island 52.35 -7.7 T ISL IE M 27 0 132 Europe/Dublin 2010-08-14 +2961318 Suircastle House Suircastle House 52.46167 -7.98972 S HSEC IE M 26 0 73 Europe/Dublin 2010-08-14 +2961319 River Suir River Suir River Suir 52.27333 -6.99556 H STM IE 00 0 1 Europe/Dublin 2011-01-04 +2961320 Sugarloaf Mountain Sugarloaf Mountain Sugarloaf Mountain 51.72583 -9.63111 T MT IE M 04 0 228 Europe/Dublin 2010-08-14 +2961321 Sugar Hill Sugar Hill 52.43611 -9.16917 T HLL IE M 11 0 312 Europe/Dublin 2010-08-14 +2961322 River Suck River Suck 53.27222 -8.05306 H STM IE 00 0 55 Europe/Dublin 1998-08-18 +2961323 Sturrall Sturrall 54.73667 -8.74417 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961324 Stuake Stuake 51.98333 -8.76667 P PPL IE M 04 0 171 Europe/Dublin 2010-08-14 +2961325 Stroove Stroove 55.21667 -6.93333 P PPL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2961326 Strokestown House Strokestown House 53.76667 -8.1 S EST IE C 24 0 71 Europe/Dublin 1993-12-27 +2961327 Strokestown Strokestown Beal na mBuilli,Béal na mBuillí,Strokestown 53.78333 -8.1 P PPL IE C 24 0 72 Europe/Dublin 2010-08-14 +2961328 Street Street 53.66667 -7.48333 P PPL IE L 29 0 72 Europe/Dublin 1993-12-27 +2961329 Streek Head Streek Head 51.47056 -9.70306 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961330 Streedagh Point Streedagh Point 54.41194 -8.56722 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +2961331 Streedagh House Streedagh House 54.39778 -8.56389 S HSEC IE C 25 0 1 Europe/Dublin 2010-08-14 +2961332 Streamstown Bay Streamstown Bay 53.50917 -10.06833 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961333 Streamstown Streamstown 53.52333 -10.04694 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2961334 Streamstown Streamstown 53.43333 -7.58333 P PPL IE L 29 0 102 Europe/Dublin 1993-12-27 +2961335 Strawberryhill House Strawberryhill House 53.23639 -7.88778 S HSEC IE L 23 0 68 Europe/Dublin 2010-08-14 +2961336 Stratford Stratford Ath na Sraide,Stratford,Áth na Sráide 52.98583 -6.67778 P PPL IE L 31 0 147 Europe/Dublin 2010-08-14 +2961337 Stranorlar Stranorlar Srath an Urlair,Srath an Urláir,Stranorlar 54.8 -7.76667 P PPL IE U 06 0 58 Europe/Dublin 2010-08-14 +2961338 Strand Strand 52.39556 -9.11056 P PPL IE M 03 0 152 Europe/Dublin 2010-08-14 +2961339 Strancally House Strancally House 52.01667 -7.85 S BLDG IE M 04 0 71 Europe/Dublin 2010-08-14 +2961340 Strancally Castle Strancally Castle 52.06861 -7.87694 S EST IE M 27 0 36 Europe/Dublin 2010-08-14 +2961341 Straid River Straid River 55.28333 -7.33333 H STM IE U 06 0 40 Europe/Dublin 1993-12-27 +2961342 Straffan Straffan 53.31556 -6.63472 P PPL IE L 12 0 72 Europe/Dublin 2010-08-14 +2961343 Stradone House Stradone House 53.98389 -7.25 S EST IE U 02 0 134 Europe/Dublin 2010-08-14 +2961344 Stradone Stradone Sraith an Domhain,Stradone 53.98333 -7.23333 P PPL IE IE U 02 0 135 Europe/Dublin 2010-08-14 +2961345 Strade Strade 53.91694 -9.13389 P PPL IE C 20 0 38 Europe/Dublin 2010-08-14 +2961346 Stradbally River Stradbally River Bauteogue River,Stradbally River,Strade River,Straid River 53.03806 -7.08972 H STM IE IE L 15 0 72 Europe/Dublin 2010-08-14 +2961347 Stradbally Hall Stradbally Hall 53 -7.16667 S EST IE L 15 0 152 Europe/Dublin 2010-08-14 +2961348 Stradbally Stradbally 53.21889 -8.88667 P PPL IE C 10 0 2 Europe/Dublin 2010-08-14 +2961349 Stradbally Stradbally An Sraidbhaile,An Sráidbhaile,Stradbally 53.01556 -7.15278 P PPL IE L 15 0 149 Europe/Dublin 2010-08-14 +2961350 Stradbally Stradbally 52.24722 -10.06639 P PPL IE M 11 0 81 Europe/Dublin 2010-08-14 +2961351 Stradbally Stradbally An tSraidbhaile,An tSráidbhaile,Stradbally 52.13 -7.46 P PPL IE M 27 0 17 Europe/Dublin 2010-08-14 +2961352 Stowlin House Stowlin House 53.18139 -8.21722 S EST IE C 10 0 75 Europe/Dublin 2010-08-14 +2961353 Stookaruddan Stookaruddan Stockaruddan,Stookaruddan,Stookarudden 55.36972 -7.28222 T ISLS IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961354 Stonyford Stonyford 52.53639 -7.22 P PPL IE L 13 0 69 Europe/Dublin 2010-08-14 +2961355 Stonybatter Stonybatter 52.76278 -6.45278 P PPL IE L 31 0 159 Europe/Dublin 2010-08-14 +2961356 Stonetown Stonetown 53.61667 -8.55 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2961357 Stonepark Stonepark 54.01028 -8.93722 P PPL IE C 20 0 77 Europe/Dublin 2010-08-14 +2961358 Stonehall Stonehall 52.60722 -8.87306 P PPL IE M 16 0 22 Europe/Dublin 2010-08-14 +2961359 Stonefield Stonefield 54.31 -9.82972 P PPL IE C 20 0 141 Europe/Dublin 2010-08-14 +2961360 Stone Bridge Stone Bridge 54.2 -7.16667 P PPL IE U 22 0 73 Europe/Dublin 2010-08-14 +2961361 Stokestown Stokestown Stokestown,Stokestown Castle 52.36028 -6.98806 S EST IE IE L 30 0 13 Europe/Dublin 2010-08-14 +2961362 Stillorgan Stillorgan 53.29049 -6.19487 P PPL IE L 07 0 39 Europe/Dublin 2010-08-14 +2961363 Stephenstown House Stephenstown House Stephenstown,Stephenstown House 53.95806 -6.46639 S EST IE IE L 19 0 19 Europe/Dublin 2010-08-14 +2961364 Stepaside Stepaside Stepaside 53.2525 -6.21361 P PPL IE L 07 0 140 Europe/Dublin 2010-11-04 +2961365 Station Island Station Island 54.60833 -7.87139 T ISL IE U 06 0 148 Europe/Dublin 2010-08-14 +2961366 Stamullin Stamullin 53.62889 -6.26833 P PPL IE L 21 0 48 Europe/Dublin 2010-08-14 +2961367 Stags of Broad Haven Stags of Broad Haven Stags,Stags of Broad Haven,The Stags 54.36639 -9.78778 T RKS IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961368 Stags of Bofin Stags of Bofin 53.63194 -10.25917 T RKS IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961369 The Stag Rocks The Stag Rocks The Stag Rocks,The Stags 55.07528 -8.47889 T RKS IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961370 Stacks Mountains Stacks Mountains 52.31667 -9.56667 T MTS IE M 11 0 286 Europe/Dublin 1993-12-27 +2961371 Stabannan Stabannan Stabannan,Stahannan 53.86472 -6.43583 P PPL IE IE L 19 0 6 Europe/Dublin 2010-08-14 +2961372 Sruwaddacon Bay Sruwaddacon Bay Sruwaddacon Bay,Sruwaddacon Creek 54.26667 -9.78333 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-10 +2961373 Srahmore River Srahmore River 53.95667 -9.58 H STM IE C 20 0 98 Europe/Dublin 2010-08-14 +2961374 Srahmore Srahmore 53.96028 -9.57083 P PPL IE C 20 0 131 Europe/Dublin 2010-08-14 +2961375 Srahlaghy Srahlaghy 54.235 -9.57361 P PPL IE C 20 0 128 Europe/Dublin 2010-08-14 +2961376 Srahduggaun Srahduggaun 54 -9.73333 P PPL IE C 20 0 73 Europe/Dublin 1993-12-27 +2961377 Srah Srah 54.1725 -9.93361 P PPL IE C 20 0 5 Europe/Dublin 2010-08-14 +2961378 Srah Srah 53.68333 -9.33333 P PPL IE C 20 0 59 Europe/Dublin 1993-12-27 +2961379 Srah Srah 53.28333 -7.75 P PPL IE L 23 0 65 Europe/Dublin 2010-08-14 +2961380 Spring Valley Spring Valley 53.47806 -6.71389 S EST IE L 21 0 77 Europe/Dublin 2010-08-14 +2961381 Springfield Castle Springfield Castle 52.35 -8.95 S EST IE M 16 0 146 Europe/Dublin 1993-12-27 +2961382 Springfield Springfield 53.05 -7.4 P PPL IE L 15 0 138 Europe/Dublin 2010-08-14 +2961383 Springfield Springfield 52.71556 -6.615 S EST IE L 31 0 71 Europe/Dublin 2010-08-14 +2961384 Sporthouse Cross Roads Sporthouse Cross Roads 52.19667 -7.17917 P PPL IE M 27 0 77 Europe/Dublin 2010-08-14 +2961385 Spittle Spittle 52.38 -8.3375 P PPL IE M 16 0 152 Europe/Dublin 2010-08-14 +2961386 Spink Spink 52.89944 -7.22611 P PPL IE L 15 0 151 Europe/Dublin 2010-08-14 +2961387 Spike Island Spike Island 51.83861 -8.28889 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961388 Spiddal Spiddal An Spideal,An Spidéal,Spiddal,Spiddle 53.24667 -9.30278 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2961389 Spear Vale Spear Vale 53.91667 -7 P PPL IE U 02 0 187 Europe/Dublin 1993-12-27 +2961390 Spanish Point Spanish Point 52.84972 -9.44722 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2961391 Spancelhill Spancelhill 52.86667 -8.9 P PPL IE M 03 0 119 Europe/Dublin 1993-12-27 +2961392 Spa Spa 52.28333 -9.78333 P PPL IE M 11 0 39 Europe/Dublin 2010-08-14 +2961393 River Sow River Sow 52.37778 -6.45139 H STM IE L 30 0 4 Europe/Dublin 2010-08-14 +2961394 Sovereign Islands Sovereign Islands Big Sovereign,Sovereign Islands 51.67667 -8.45556 T ISLS IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961395 Sovereign Island Sovereign Island Little Sovereign,Sovereign Island 51.68389 -8.4425 T ISL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961396 South Sound South Sound 53.04167 -9.46583 H SD IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2961397 Southpark House Southpark House 53.76667 -8.43333 S EST IE C 24 0 77 Europe/Dublin 1993-12-27 +2961398 South Hill South Hill 53.60861 -7.07167 S EST IE L 29 0 109 Europe/Dublin 2010-08-14 +2961399 Sorrel House Sorrel House 52.75 -9.23333 S BLDG IE M 03 0 96 Europe/Dublin 1993-12-27 +2961400 Sorrelhill House Sorrelhill House 52.83333 -7.75 S EST IE M 26 0 150 Europe/Dublin 2010-08-14 +2961401 Sopwell Hall Sopwell Hall 52.99194 -8.04806 S EST IE M 26 0 119 Europe/Dublin 2010-08-14 +2961402 Soppog Soppog 55.06472 -7.32111 P PPL IE U 06 0 63 Europe/Dublin 2010-08-14 +2961403 Sonna House Sonna House 53.56667 -7.46667 S EST IE L 29 0 123 Europe/Dublin 1993-12-27 +2961404 Somerville House Somerville House Somerville,Somerville House 53.63139 -6.51167 S EST IE IE L 21 0 57 Europe/Dublin 2010-08-14 +2961405 Somerset House Somerset House 53.24778 -8.22694 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2961406 Solsborough House Solsborough House Solsborough,Solsborough House 52.52861 -6.52 S EST IE IE L 30 0 64 Europe/Dublin 2010-08-14 +2961407 Snowhill House Snowhill House 52.27278 -7.02028 S EST IE L 13 0 1 Europe/Dublin 2010-08-14 +2961408 Sneem Harbour Sneem Harbour 51.8 -9.88333 H INLT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961409 Sneem Sneem An Snaidhm,An tSnaidhm,Sneem 51.83333 -9.9 P PPL IE M 11 0 25 Europe/Dublin 2010-08-14 +2961410 Slieve Snaght Slieve Snaght Sliabh Sneachta,Slieve Snaght 55.19639 -7.33528 T MT IE U 06 0 615 573 Europe/Dublin 2010-08-14 +2961411 Slieve Snaght Slieve Snaght 54.98083 -8.11778 T MT IE U 06 0 466 Europe/Dublin 2010-08-14 +2961412 Smithstown House Smithstown House 52.98333 -9.26667 S EST IE M 03 0 75 Europe/Dublin 1993-12-27 +2961413 Smithborough Smithborough 54.22333 -7.09083 P PPL IE U 22 0 74 Europe/Dublin 2010-08-14 +2961414 Smerwick Harbour Smerwick Harbour 52.19222 -10.4025 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961415 Smerwick Smerwick 52.19444 -10.42333 P PPL IE M 11 0 30 Europe/Dublin 2010-08-14 +2961416 Smearlagh River Smearlagh River 52.43917 -9.42889 H STM IE M 11 0 74 Europe/Dublin 2010-08-14 +2961417 Smarmore Castle Smarmore Castle 53.81722 -6.56667 S EST IE L 19 0 75 Europe/Dublin 2010-08-14 +2961418 Slyne Head Slyne Head 53.40056 -10.23528 T CAPE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961419 Slugga Slugga 54.30278 -9.86556 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961420 Slish Wood Slish Wood 54.23333 -8.38333 V FRST IE C 25 0 149 Europe/Dublin 2010-08-14 +2961421 Sligo Bay Sligo Bay 54.3 -8.7 H BAY IE C 25 0 -9999 Europe/Dublin 1998-09-01 +2961422 Sligeach Sligeach Contae Shligigh,County Sligo,Sligo 54.25 -8.66667 A ADM2 IE C 25 58900 5 Europe/Dublin 2010-08-14 +2961423 Sligeach Sligeach Slajgou,Sligeach,Sligo,suraigo,Слайгоу,スライゴ 54.26969 -8.46943 P PPLA2 IE C 25 20228 13 5 Europe/Dublin 2010-08-14 +2961424 Slievetooey Slievetooey 54.76278 -8.60722 T MT IE U 06 0 329 Europe/Dublin 2010-08-14 +2961425 Slieveroe Slieveroe 52.28056 -7.08667 P PPL IE L 13 0 59 Europe/Dublin 2010-08-14 +2961426 Slievenamuck Slievenamuck 52.4275 -8.23194 T MT IE M 26 0 156 Europe/Dublin 2010-08-14 +2961427 Slievenamon Slievenamon Slievenaman,Slievenamon 52.42778 -7.56111 T MT IE M 26 0 721 568 Europe/Dublin 2010-11-04 +2961428 Slievenakilla Slievenakilla 54.15 -7.93333 P PPL IE C 14 0 315 Europe/Dublin 1993-12-27 +2961429 Slievemore Point Slievemore Point 54.01667 -10.05 T PT IE C 20 0 73 Europe/Dublin 1993-12-27 +2961430 Slievemore Slievemore 53.99611 -10.07056 P PPLL IE C 20 0 149 Europe/Dublin 2010-08-14 +2961431 Slievemore Slievemore 54.0075 -10.0625 T MT IE C 20 0 671 269 Europe/Dublin 2010-08-14 +2961432 Slieve Miskish Mountains Slieve Miskish Mountains Slieve Miskish Mountains 51.66722 -9.95306 T MTS IE M 04 0 188 Europe/Dublin 2010-08-14 +2961433 Slieve Mish Mountains Slieve Mish Mountains Slieve Mish Mountains 52.2 -9.76667 T MTS IE M 11 0 224 Europe/Dublin 2010-08-14 +2961434 Slievekimalta Slievekimalta Keeper Hill,Slievekimalta 52.74972 -8.26028 T MT IE IE M 26 0 421 Europe/Dublin 2010-11-04 +2961435 Slieveglass Slieveglass 52.27861 -10.20667 T MT IE M 11 0 143 Europe/Dublin 2010-08-14 +2961436 Slievefelim Mountains Slievefelim Mountains 52.67167 -8.3075 T MTS IE M 16 0 315 Europe/Dublin 2010-08-14 +2961437 Slievecarran Slievecarran 53.09583 -9.00639 T MT IE M 03 0 154 Europe/Dublin 2010-08-14 +2961438 Slievecallan Slievecallan 52.84056 -9.26861 T MT IE M 03 0 279 Europe/Dublin 2010-08-14 +2961439 Slieveboy Slieveboy 52.65639 -6.48861 T MT IE L 30 0 422 266 Europe/Dublin 2010-08-14 +2961440 Slieve Bloom Mountains Slieve Bloom Mountains Slieve Bloom,Slieve Bloom Mountains 53.09333 -7.56722 T MTS IE L 15 0 326 Europe/Dublin 2010-08-10 +2961441 Slievebane Bay Slievebane Bay 55.36667 -7.33333 H BAY IE U 06 0 1 Europe/Dublin 2010-08-14 +2961442 Slieve Aughty Mountains Slieve Aughty Mountains Slieve Aughty Mountains 53.04611 -8.51111 T MTS IE C 10 0 151 Europe/Dublin 2010-08-14 +2961443 Slieveardagh Hills Slieveardagh Hills Slievardagh Region,Slieveardagh Hills 52.65278 -7.52056 T HLLS IE IE 00 0 152 Europe/Dublin 2010-08-10 +2961444 Slevoir House Slevoir House 53.06139 -8.18111 S EST IE M 26 0 56 Europe/Dublin 2010-08-14 +2961445 Sleatygraigue Sleatygraigue 52.84472 -6.97167 P PPL IE L 15 0 39 Europe/Dublin 2010-08-14 +2961446 Slea Head Slea Head 52.09639 -10.45917 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961447 Slate River Slate River 53.195 -7.09417 H STM IE L 23 0 75 Europe/Dublin 1999-02-24 +2961448 River Slaney River Slaney 52.33806 -6.45306 H STM IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961449 Slane Castle Slane Castle 53.70944 -6.5825 S EST IE L 21 0 37 Europe/Dublin 2010-08-14 +2961450 Slane Slane Baile Shlaine,Baile Shláine,Slane 53.71 -6.54333 P PPL IE L 21 0 58 Europe/Dublin 2010-08-14 +2961451 Slaheny River Slaheny River 51.9 -9.45 H STM IE M 11 0 86 Europe/Dublin 1993-12-27 +2961452 Slade Slade 52.1325 -6.90444 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961453 Skycur House Skycur House Skycur,Skycur House 53.22139 -8.23472 S EST IE IE C 10 0 76 Europe/Dublin 2010-08-14 +2961454 Skull Harbour Skull Harbour 51.52528 -9.53833 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961455 Skull Skull An Scoil,Schull,Skull 51.53333 -9.53333 P PPL IE M 04 0 44 Europe/Dublin 2010-08-14 +2961456 Skreeny House Skreeny House 54.315 -8.16722 S RUIN IE C 14 0 76 Europe/Dublin 2010-08-14 +2961457 Skreen Skreen 54.24333 -8.73111 P PPL IE C 25 0 55 Europe/Dublin 2010-08-14 +2961458 Screen Screen Screen,Skreen 52.41361 -6.4125 P PPL IE IE L 30 0 22 Europe/Dublin 2010-08-14 +2961459 An Sciobairin An Sciobairin Skibbereen 51.55 -9.26667 P PPL IE M 04 2098 98 Europe/Dublin 2010-08-14 +2961460 Skerries Islands Skerries Islands 53.58333 -6.08333 T ISLS IE 00 0 -9999 Europe/Dublin 1993-12-27 +2961461 Skerries Skerries Na Sceiri,Na Sceirí,Skerries 53.58278 -6.10833 P PPL IE L 35 10014 -9999 Europe/Dublin 2010-11-04 +2961462 Skenakilla Cross Roads Skenakilla Cross Roads 52.19306 -8.51778 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2961463 Skellig Rocks Skellig Rocks Skellig Rocks,The Skelligs 51.76667 -10.51667 T RKS IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961464 Skehanagh Skehanagh 53.41389 -8.63417 P PPL IE C 10 0 72 Europe/Dublin 2010-08-14 +2961465 Lough Skean Lough Skean 54.06222 -8.21528 H LK IE 00 0 55 Europe/Dublin 1998-09-01 +2961466 Skeagh Lough Upper Skeagh Lough Upper Skeagh Lough,Skeagh Lough Upper 53.95 -7 H LK IE IE U 02 0 150 Europe/Dublin 2010-08-14 +2961467 Skeagh Skeagh 51.58639 -9.35472 P PPL IE M 04 0 79 Europe/Dublin 2010-08-14 +2961468 Skeaf House Skeaf House 51.6775 -8.78111 S EST IE M 04 0 75 Europe/Dublin 2010-08-14 +2961469 Lough Skannive Lough Skannive 53.33083 -9.78722 H LK IE C 10 0 65 Europe/Dublin 2010-08-14 +2961470 Sixmilebridge Sixmilebridge Droichead Abhann O gCearnaigh,Droíchead Abhann Ó gCearnaigh,Sixmilebridge 52.74139 -8.77417 P PPL IE M 03 0 43 Europe/Dublin 2010-08-14 +2961471 Single Street Single Street 54.48306 -8.26417 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2961472 Silver Stream Silver Stream 54.26667 -6.91667 P PPL IE 00 0 66 Europe/Dublin 1993-12-27 +2961473 Silver River Silver River 53.2925 -7.62889 H STM IE L 23 0 70 Europe/Dublin 2010-08-14 +2961474 Silver River Silver River 53.24333 -7.79139 H STM IE L 23 0 63 Europe/Dublin 2010-08-14 +2961475 Silvermines Silvermines Beal Atha Gabhann,Béal Átha Gabhann,Silvermines 52.79028 -8.23417 P PPL IE M 38 0 188 Europe/Dublin 2010-11-04 +2961476 Silvermine Mountains Silvermine Mountains Silvermine Mountains,Silvermines Mountains 52.77583 -8.24889 T MTS IE IE M 26 0 345 Europe/Dublin 2010-11-04 +2961477 Silver Hill Silver Hill 54.76944 -8.14722 T MT IE U 06 0 423 Europe/Dublin 2010-08-14 +2961478 Lough Sillan Lough Sillan 54.00222 -6.92222 H LK IE U 02 0 149 Europe/Dublin 2010-08-14 +2961479 Siddan Siddan 53.80972 -6.65639 P PPL IE L 21 0 61 Europe/Dublin 2010-08-14 +2961480 Shrule Castle Shrule Castle 52.87694 -6.95111 S BLDG IE L 15 0 48 Europe/Dublin 2010-08-14 +2961481 Shrule Shrule Shrule,Shruthair,Sruthair 53.51681 -9.08902 P PPL IE C 20 0 59 Europe/Dublin 2010-08-14 +2961482 Shronowen Shronowen 52.50389 -9.45361 P PPL IE M 11 0 69 Europe/Dublin 2010-08-14 +2961483 Shronell Shronell 52.47222 -8.23472 P PPL IE M 26 0 136 Europe/Dublin 2010-08-14 +2961484 Shrone Shrone 52.525 -9.49 P PPL IE M 11 0 57 Europe/Dublin 2010-08-14 +2961485 Shot Head Shot Head 51.67667 -9.67611 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961486 Shiven River Shiven River Kingstown River,Shiven River 53.51667 -8.45 H STM IE C 10 0 72 Europe/Dublin 2010-08-10 +2961487 Shiven River Shiven River 53.5 -8.28333 H STM IE 00 0 69 Europe/Dublin 1993-12-27 +2961488 Shippool Shippool Shippool,Shippool Castle 51.75111 -8.62889 S RUIN IE IE M 04 0 72 Europe/Dublin 2010-08-14 +2961489 Shinrone Shinrone Shinrone,Sui an Roin,Suí an Róin 52.9825 -7.92444 P PPL IE IE L 23 0 84 Europe/Dublin 2010-08-14 +2961490 Lough Shindilla Lough Shindilla 53.45 -9.56667 H LK IE C 10 0 58 Europe/Dublin 1993-12-27 +2961491 Shillelagh Shillelagh Shillelagh,Siol Ealaigh,Síol Éalaigh 52.75389 -6.53722 P PPL IE IE L 31 0 76 Europe/Dublin 2010-08-14 +2961492 Sheskin Lodge Sheskin Lodge 54.17028 -9.615 S HSE IE C 20 0 146 Europe/Dublin 2010-08-14 +2961493 Sheshia Sheshia 53.1 -9.06667 P PPL IE M 03 0 57 Europe/Dublin 1993-12-27 +2961494 Sherky Island Sherky Island 51.7975 -9.905 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961495 Sherkin Island Sherkin Island Sherkin Island 51.4775 -9.42694 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +2961496 Sheriffhill Sheriffhill 52.95 -6.80278 P PPL IE L 12 0 143 Europe/Dublin 2010-08-14 +2961497 Shercock Shercock Searcog,Searcóg,Shercock 54 -6.9 P PPL IE IE U 02 0 153 Europe/Dublin 2010-08-14 +2961498 Shenicks Island Shenicks Island 53.57472 -6.08444 T ISL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2961499 Shelton Abbey Shelton Abbey 52.815 -6.18278 S EST IE L 31 0 43 Europe/Dublin 2010-08-14 +2961500 Shehy Mountain Shehy Mountain 51.81778 -9.28722 T MT IE M 04 0 334 Europe/Dublin 2010-08-14 +2961501 Sheffield Sheffield Sheffield,Sheffield House 53.00417 -7.26806 S EST IE IE L 15 0 150 Europe/Dublin 2010-08-14 +2961502 Sheep Haven Sheep Haven Cuan na gCaorach,Sheep Haven 55.2 -7.9 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961503 Sheen River Sheen River 51.86667 -9.56667 H STM IE M 11 0 61 Europe/Dublin 1993-12-27 +2961504 Lough Sheelin Lough Sheelin 53.8 -7.31667 H LK IE L 21 0 73 Europe/Dublin 1993-12-27 +2961505 Sheehills House Sheehills House 52.93278 -7.76861 S EST IE M 26 0 135 Europe/Dublin 2010-08-14 +2961506 Sheeanamore Sheeanamore 52.885 -6.37694 P PPL IE L 31 0 269 Europe/Dublin 2010-08-14 +2961507 Shark Head Shark Head Shark Head,Stark Head 53.60167 -10.295 T CAPE IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961508 Shanvally Shanvally 53.78333 -7.91667 P PPL IE C 24 0 67 Europe/Dublin 1993-12-27 +2961509 Shantonagh Shantonagh 54.05028 -6.85056 P PPL IE U 22 0 147 Europe/Dublin 2010-08-14 +2961510 Shanow River Shanow River 52.36667 -9.65 H STM IE M 11 0 70 Europe/Dublin 1993-12-27 +2961511 Shannon View Shannon View 52.61667 -8.98333 S EST IE M 16 0 3 Europe/Dublin 1993-12-27 +2961512 Shannon Harbour Shannon Harbour Shannon Harbour 53.22056 -7.94833 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +2961513 Shannon Hall Shannon Hall Shannon Hall,Shannonvale House 52.90417 -8.28056 S BLDG IE IE M 26 0 51 Europe/Dublin 2010-11-04 +2961514 Shannongrove House Shannongrove House Shannongrove,Shannongrove House 52.66 -8.86417 S EST IE IE M 16 0 1 Europe/Dublin 2010-08-14 +2961515 Shannon Grove Shannon Grove 53.19861 -8.04806 S EST IE C 10 0 55 Europe/Dublin 2010-08-14 +2961516 Shannonbridge Shannonbridge Droichead na Sionainne,Shannonbridge 53.27778 -8.03722 P PPL IE L 23 0 56 Europe/Dublin 2010-08-14 +2961517 River Shannon River Shannon 52.58194 -9.68167 H STM IE 00 0 -9999 Europe/Dublin 1998-05-05 +2961518 Mouth of the Shannon Mouth of the Shannon 52.50167 -9.81694 H STMM IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961519 Shannaghmore Shannaghmore 53.6 -8.6 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2961520 Shanlis Cross Roads Shanlis Cross Roads Shanlis,Shanlis Cross Roads 53.83778 -6.57111 P PPL IE IE L 19 0 49 Europe/Dublin 2010-08-14 +2961521 Shanlaragh Shanlaragh 51.79556 -9.07889 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2961522 Shankill Castle Shankill Castle 52.68611 -7.02111 S EST IE L 13 0 60 Europe/Dublin 2010-08-14 +2961523 Shankill Shankill Shankill 53.22611 -6.12444 P PPL IE L 07 0 1 Europe/Dublin 2010-11-04 +2961524 Shanid Castle Shanid Castle 52.55 -9.11667 S BLDG IE M 16 0 117 Europe/Dublin 1993-12-27 +2961525 Shanganagh Junction Shanganagh Junction 53.21667 -6.1 S RSTN IE 00 0 -9999 Europe/Dublin 1993-12-27 +2961526 Shanganagh Castle Shanganagh Castle 53.22583 -6.11972 S EST IE L 07 0 1 Europe/Dublin 2010-08-14 +2961527 Shanballymore Shanballymore An Seanbhaile Mor,An Seanbhaile Mór,Shanballymore 52.22028 -8.50139 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +2961528 Shanbally House Shanbally House Shanbally,Shanbally House 52.85722 -8.09167 S EST IE IE M 26 0 105 Europe/Dublin 2010-11-04 +2961529 Shanbally Castle Shanbally Castle 52.29361 -8.04361 S EST IE M 26 0 75 Europe/Dublin 2010-08-14 +2961530 Shanbally Shanbally 51.8325 -8.3575 P PPL IE M 04 0 11 Europe/Dublin 2010-08-14 +2961531 Shanagolden Shanagolden Seanghualainn,Shanagolden 52.5725 -9.1025 P PPL IE IE M 16 0 67 Europe/Dublin 2010-08-14 +2961532 Shanagh Shanagh Shanagh,Shunagh 51.58222 -8.71889 P PPL IE IE M 04 0 13 Europe/Dublin 2010-08-14 +2961533 Shanagarry Shanagarry Shanagarry 51.85444 -8.07083 P PPL IE M 04 0 51 Europe/Dublin 2010-08-14 +2961534 Shallee River Shallee River 52.87056 -8.99528 H STM IE M 03 0 24 Europe/Dublin 2010-08-14 +2961535 Shaen House Shaen House Shaen,Shaen House 53.06667 -7.25 S EST IE IE L 15 0 141 Europe/Dublin 2010-08-14 +2961536 Shad Lough Shad Lough 53.73333 -8.26667 H LK IE C 24 0 76 Europe/Dublin 1993-12-27 +2961537 The Seven Stars The Seven Stars 53.05722 -6.88028 L LCTY IE L 12 0 108 Europe/Dublin 2010-08-14 +2961538 The Seven Hogs The Seven Hogs Magharee Islands,The Seven Hogs 52.32194 -10.03528 T ISLS IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961539 Seven Heads Bay Seven Heads Bay 51.59444 -8.7 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961540 Seven Heads Seven Heads 51.56889 -8.7275 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961541 Seven Fathom Bank Seven Fathom Bank 52.8 -6 H BNK IE L 31 0 -9999 Europe/Dublin 1993-12-27 +2961542 Sevenchurches Sevenchurches Camaderry,Sevenchurches 53.02389 -6.39306 S RUIN IE IE L 31 0 588 Europe/Dublin 2010-08-14 +2961543 The Seven Arches The Seven Arches Seven Arches,The Seven Arches 55.21667 -7.6 S CAVE IE U 06 0 -9999 Europe/Dublin 2010-08-10 +2961544 Seskinryan Seskinryan 52.68222 -6.93167 P PPL IE L 01 0 115 Europe/Dublin 2010-08-14 +2961545 Seskinrea Seskinrea 52.76778 -7.06833 P PPL IE L 01 0 191 Europe/Dublin 2010-08-14 +2961546 Seltannaveeny Seltannaveeny Seltannaveeny,Seltannavenny 54.1 -8.11667 P PPL IE C 24 0 145 Europe/Dublin 2010-08-10 +2961547 Sellerna Bay Sellerna Bay Sellerna Bay,Sillerna Bay 53.55 -10.13333 H BAY IE C 10 0 61 Europe/Dublin 2010-08-10 +2961548 Seershin Seershin 53.26667 -9.21667 P PPL IE C 10 0 57 Europe/Dublin 2010-08-14 +2961549 Seaweed Point Seaweed Point 53.24889 -9.10944 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961550 Seaview House Seaview House Seaview,Seaview House 52.02472 -7.58556 S EST IE IE M 27 0 2 Europe/Dublin 2010-08-14 +2961551 Seapark Point Seapark Point 52.93333 -6.01667 T PT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2961552 Sea Mount Sea Mount 53.44278 -6.14 P PPL IE L 07 0 1 Europe/Dublin 2010-08-14 +2961553 Seal Rocks Seal Rocks 54.33667 -8.68722 T RKS IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2961554 Seafield House Seafield House Seafield,Seafield House 52.67417 -6.21444 S EST IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961555 Scurmore House Scurmore House Scarmore House,Scurmore House 54.19667 -9.11556 S HSEC IE IE C 25 0 3 Europe/Dublin 2010-08-14 +2961556 Lough Scur Lough Scur Lough Scur,Lough Seur 54.02667 -7.95222 H LK IE IE C 14 0 65 Europe/Dublin 2010-08-14 +2961557 Scullogue Gap Scullogue Gap Sculloge Gap,Scullogue Gap 52.57306 -6.7875 T GAP IE IE L 01 0 286 Europe/Dublin 2010-08-14 +2961558 Scullane Point Scullane Point 51.49139 -9.21139 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961559 Scregg West Scregg West 53.53333 -8.58333 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2961560 Scregg House Scregg House 53.55 -8.1 S EST IE C 24 0 76 Europe/Dublin 1993-12-27 +2961561 Scregg East Scregg East 53.53333 -8.56667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2961562 Screeb Lodge Screeb Lodge Screeb,Screeb Lodge 53.38694 -9.5525 S HSEC IE IE C 10 0 69 Europe/Dublin 2010-08-14 +2961563 Scramore Loughs Scramore Loughs 54.3 -8.35 H LKS IE 00 0 284 Europe/Dublin 1993-12-27 +2961564 Scramoge Scramoge 53.76667 -8.05 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2961565 Scrahan Scrahan 52.4 -9.36667 P PPL IE M 11 0 143 Europe/Dublin 1993-12-27 +2961566 Scrabby Scrabby 53.86667 -7.53333 P PPL IE U 02 0 70 Europe/Dublin 1993-12-27 +2961567 Scotstown Scotstown Baile an Scotaigh,Scotstown 54.2775 -7.065 P PPL IE U 22 0 81 Europe/Dublin 2010-08-14 +2961568 Scotshouse Scotshouse 54.12194 -7.2475 P PPL IE U 22 0 78 Europe/Dublin 2010-08-14 +2961569 Scilly Scilly 51.70639 -8.52167 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +2961570 Scattery Island Scattery Island 52.61222 -9.51944 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2961571 Scartaglin Scartaglin Scartaglen,Scartaglin,Seartaglin 52.18333 -9.4 P PPL IE M 11 0 149 Europe/Dublin 2010-08-10 +2961572 Scarriff Bay Scarriff Bay Scariff Bay,Scarriff Bay 52.90333 -8.48694 H BAY IE IE M 03 0 55 Europe/Dublin 2010-08-14 +2961573 River Scarriff River Scarriff 52.9 -8.5 H STM IE M 03 0 55 Europe/Dublin 1993-12-27 +2961574 Scarriff Scarriff An Scairbh,Scariff,Scarriff 52.89889 -8.50917 P PPL IE M 03 0 82 Europe/Dublin 2010-08-14 +2961575 Scariff Island Scariff Island Great Hog Island,Scariff Island 51.73556 -10.25333 T ISL IE IE M 11 0 47 Europe/Dublin 2010-08-14 +2961576 Scardaun Scardaun 53.65 -9 P PPL IE C 20 0 120 Europe/Dublin 1993-12-27 +2961577 Lough Scannive Lough Scannive 53.43528 -9.9525 H LK IE C 10 0 81 Europe/Dublin 2010-08-14 +2961578 Scalp Mountain Scalp Mountain 55.08917 -7.36611 T MT IE U 06 0 484 352 Europe/Dublin 2010-08-14 +2961579 The Scalp The Scalp An Scailp,The Scalp 53.21611 -6.17944 T GAP IE IE 00 0 151 Europe/Dublin 2010-08-10 +2961580 Scalp Scalp 53.08333 -6.58333 P PPL IE L 31 0 304 Europe/Dublin 2010-08-14 +2961581 Scalp Scalp 52.99139 -8.48972 T MT IE C 10 0 304 Europe/Dublin 2010-08-14 +2961582 Saundersville Saundersville 52.96667 -6.68333 P PPL IE L 31 0 156 Europe/Dublin 1993-12-27 +2961583 Saunders Court Saunders Court 52.36611 -6.49333 S EST IE L 30 0 1 Europe/Dublin 2010-08-14 +2961584 Sarsfieldscourt House Sarsfieldscourt House Sarsfieldcourt,Sarsfieldscourt House 51.95139 -8.4025 S HSEC IE IE M 04 0 89 Europe/Dublin 2010-08-14 +2961585 Sarnaght Sarnaght 53.89056 -9.31389 P PPL IE C 20 0 104 Europe/Dublin 2010-08-14 +2961586 Sarahville Sarahville 52.16667 -7.46667 S EST IE M 27 0 78 Europe/Dublin 1993-12-27 +2961587 Santry Santry 53.39812 -6.25268 P PPL IE L 07 0 12 Europe/Dublin 2010-08-14 +2961588 Sandymount Sandymount 53.97139 -6.36194 P PPL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2961589 Sandymount Sandymount 53.335 -6.21139 P PPL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2961590 Sandy Ford Sandy Ford 52.85194 -6.46139 P PPL IE L 31 0 289 Europe/Dublin 2010-08-14 +2961591 Sandy Cove Sandy Cove 51.67694 -8.54917 P PPL IE M 04 0 72 Europe/Dublin 2010-08-14 +2961592 Sandeel Bay Sandeel Bay 52.1575 -6.87 H BAY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961593 Samphire Island Samphire Island 52.27167 -9.865 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961594 Saltmills Saltmills 52.22194 -6.82667 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961595 Salt Hill Salt Hill 53.26139 -9.06944 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2961596 Salt Hill Salt Hill 54.63111 -8.21111 S EST IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961597 Salterstown Salterstown 53.87167 -6.30694 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +2961598 Saltee Islands Saltee Islands Saltee Islands 52.125 -6.59722 T ISLS IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961599 Little Saltee Little Saltee Little Saltee,North Saltee,Saltee Island Little 52.13333 -6.61667 T ISL IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961600 Great Saltee Great Saltee Great Saltee,Saltee Island Great,South Saltee 52.11667 -6.61667 T ISL IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961601 Lough Salt Lough Salt 55.08278 -7.80611 H LK IE U 06 0 340 Europe/Dublin 2010-08-14 +2961602 Salrock Salrock 53.6 -9.85 P PPL IE C 10 0 144 Europe/Dublin 1993-12-27 +2961603 Sallymount House Sallymount House Sallymount,Sallymount House 53.12222 -6.70972 S EST IE IE L 12 0 151 Europe/Dublin 2010-08-14 +2961604 Sally Gap Sally Gap Sally Gap,Sully Gap 53.13611 -6.31306 T GAP IE IE L 31 0 460 Europe/Dublin 2010-08-14 +2961605 Sallybrook Station Sallybrook Station Sallybrook,Sallybrook Station 54.95 -7.56667 S RSTN IE U 06 0 86 Europe/Dublin 2010-08-10 +2961606 Sallybrook Sallybrook Sallybrook 51.935 -8.38639 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2961607 Sallins Sallins Na Sollain,Na Solláin,Sallins 53.24889 -6.66611 P PPL IE L 12 3164 97 Europe/Dublin 2010-08-14 +2961608 Salisbury Lodge Salisbury Lodge 53.65 -8 S EST IE L 18 0 79 Europe/Dublin 1993-12-27 +2961609 Salia Salia 53.95111 -9.94806 P PPL IE C 20 0 26 Europe/Dublin 2010-08-14 +2961610 Saleen Harbour Saleen Harbour Saleen Bay,Saleen Harbour 54.18361 -10.03 H HBR IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961611 Saleen Saleen 52.55861 -9.46444 P PPL IE M 11 0 11 Europe/Dublin 2010-08-14 +2961612 Saleen Saleen 51.86333 -8.16556 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +2961613 Saivnose River Saivnose River 51.61278 -9.27 H STM IE M 04 0 56 Europe/Dublin 2010-08-14 +2961614 Saint Thomas Island Saint Thomas Island 52.69 -8.62 T ISL IE M 03 0 2 Europe/Dublin 2010-08-14 +2961615 Saint Stephens Green Park Saint Stephens Green Park 53.33784 -6.25813 L PRK IE L 07 0 5 Europe/Dublin 2010-08-14 +2961616 Saints Island Saints Island 54.61528 -7.88639 T ISL IE U 06 0 152 Europe/Dublin 2010-08-14 +2961617 Patrickswell Patrickswell Patrickswell,Saint Patrickswell,Tobar Phadraig,Tobar Phádraig 52.59722 -8.70889 P PPL IE M 16 0 55 Europe/Dublin 2010-08-14 +2961618 Saint Patricks Island Saint Patricks Island 53.58833 -6.07389 T ISL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2961619 Saint Mullins Saint Mullins 52.49278 -6.92306 P PPL IE L 01 0 45 Europe/Dublin 2010-08-14 +2961620 Saint Margarets House Saint Margarets House 52.20083 -6.34472 S BLDG IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961621 Saint Macdaras Island Saint Macdaras Island Macdara,Saint Macdaras Island 53.305 -9.91889 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961622 Saint Johnstown Saint Johnstown Baile Suingean,Saint Johnston,Saint Johnstown 54.93333 -7.45 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2961623 Saint Johns Port Saint Johns Port 54.33333 -8.6 P PPL IE C 25 0 -9999 Europe/Dublin 1993-12-27 +2961624 Saint John’s Point Saint John's Point 54.56667 -8.46667 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961625 Saint Johns Lough Saint Johns Lough 54.04028 -7.86167 H LK IE C 14 0 70 Europe/Dublin 2010-08-14 +2961626 Saint Johns House Saint Johns House 52.48833 -6.56944 S EST IE L 30 0 51 Europe/Dublin 2010-08-14 +2961627 Saint Finans Bay Saint Finans Bay Saint Finans Bay,Saint Finian Bay,Saint Finnans Bay 51.81667 -10.36667 H BAY IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961628 Saint Edmonds Saint Edmonds 52.38333 -6.48333 S EST IE L 30 0 1 Europe/Dublin 2010-08-14 +2961629 Saint Doolaghs Saint Doolaghs 53.41639 -6.18056 P PPL IE L 07 0 3 Europe/Dublin 2010-08-14 +2961630 Saint Clerans Saint Clerans Saint Clerans,Saint Clernans 53.22667 -8.65778 S EST IE IE C 10 0 51 Europe/Dublin 2010-08-14 +2961631 Saint Catherines Saint Catherines Saint Catharine's,Saint Catharine’s,Saint Catherines 52.86667 -8.6 P PPL IE M 03 0 76 Europe/Dublin 2010-08-10 +2961632 Saint Brendans House Saint Brendans House 53.53333 -8.4 S EST IE C 10 0 69 Europe/Dublin 1993-12-27 +2961633 Saint Brendans Saint Brendans Saint Bredan's,Saint Bredan’s,Saint Brendans 53.23417 -8.06083 S EST IE IE C 10 0 61 Europe/Dublin 2010-08-14 +2961634 Saint Anns Wells Saint Anns Wells 53.23333 -6.35 P PPL IE 00 0 300 Europe/Dublin 2007-05-30 +2961635 Saint Anns Hill Saint Anns Hill Saint Ann's,Saint Anne's Hill,Saint Anne’s Hill,Saint Anns Hill,Saint Ann’s 51.93333 -8.6 P PPL IE IE M 04 0 68 Europe/Dublin 2010-08-14 +2961636 Saggart Saggart Saggart,Teach Sagard 53.28028 -6.44444 P PPL IE IE L 07 0 150 Europe/Dublin 2010-11-04 +2961637 Safe Harbour Safe Harbour 53.53333 -8 H COVE IE C 24 0 62 Europe/Dublin 1993-12-27 +2961638 Saddle Hill Saddle Hill 54.34861 -8.12917 T MT IE C 14 0 379 310 Europe/Dublin 2010-08-14 +2961639 Saddle Head Saddle Head Gubroenacoragh,Saddle Head 54.01222 -10.18889 T CAPE IE IE C 20 0 45 Europe/Dublin 2010-08-14 +2961640 Ryves Castle Ryves Castle 52.42306 -8.36611 S EST IE M 16 0 121 Europe/Dublin 2010-08-14 +2961641 Ryndville Ryndville 53.43667 -6.82306 S EST IE L 21 0 86 Europe/Dublin 2010-08-14 +2961642 Rylane Cross Rylane Cross Rylane,Rylane Cross 51.98333 -8.83333 P PPL IE IE M 04 0 191 Europe/Dublin 2010-08-14 +2961643 Rye Water Rye Water An Ri,Rye Water 53.365 -6.49111 H STM IE IE 00 0 47 Europe/Dublin 2010-08-10 +2961644 Ryehill Ryehill 53.39889 -8.69222 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2961645 Ryefield Ryefield 53.78806 -7.05861 P PPL IE U 02 0 126 Europe/Dublin 2010-08-14 +2961646 Rutland Island Rutland Island 54.97667 -8.45722 T ISL IE U 06 0 1 Europe/Dublin 2010-08-14 +2961647 Russborough House Russborough House Russborough,Russborough House 53.14111 -6.56806 S HSEC IE IE L 31 0 181 Europe/Dublin 2010-08-14 +2961648 Rushin House Rushin House 53.01778 -7.49528 S EST IE L 15 0 129 Europe/Dublin 2010-08-14 +2961649 Slieve Rushen Slieve Rushen Slieve Rushen 54.15 -7.63333 T MT IE U 02 0 309 Europe/Dublin 1998-02-13 +2961650 Rushbrooke Rushbrooke Rushbrooke 51.85 -8.31667 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961651 An Ros An Ros Rush 53.5223 -6.09308 P PPL IE L 07 7294 1 Europe/Dublin 2010-08-14 +2961652 Runnamoat House Runnamoat House Runnamoat,Runnamoat House 53.68333 -8.31667 S EST IE C 24 0 77 Europe/Dublin 2010-08-10 +2961653 Rue Point Rue Point Bankmore Point,Rue Point 54.43639 -8.64583 T PT IE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2961654 Ruan Ruan 52.93056 -8.98972 P PPL IE M 03 0 38 Europe/Dublin 2010-08-14 +2961655 Royaloak Royaloak 52.7 -6.98667 P PPL IE L 01 0 40 Europe/Dublin 2010-08-14 +2961656 Royal Canal Royal Canal An Chanail Rioga,Royal Canal 53.35 -6.23333 H CNL IE IE 00 0 1 Europe/Dublin 2010-08-10 +2961657 Roy Roy 54.08028 -9.94528 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +2961658 Roxborough House Roxborough House Roxborough,Roxborough House 53.65 -8.18333 S EST IE C 24 0 75 Europe/Dublin 2010-08-10 +2961659 Roxborough House Roxborough House Roxborough,Roxborough House 52.61306 -8.615 S EST IE IE M 16 0 56 Europe/Dublin 2010-08-14 +2961660 Roxborough Roxborough 53.16694 -8.69528 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2961661 Rowls Aldworth Rowls Aldworth 52.3 -9.01667 S BLDG IE M 04 0 232 Europe/Dublin 1993-12-27 +2961662 Roundstone Roundstone Cloch na Ron,Cloch na Rón,Roundstone 53.4 -9.91667 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2961663 Roundfort Roundfort 53.63333 -9.1 P PPL IE C 20 0 63 Europe/Dublin 1993-12-27 +2961664 Roughty River Roughty River 51.88333 -9.55 H STM IE M 11 0 69 Europe/Dublin 1993-12-27 +2961665 Rough Point Rough Point 52.31667 -10.0175 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961666 Rosturk Rosturk 53.9 -9.71778 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961667 Rostellan Rostellan 51.84861 -8.19556 P PPL IE M 04 0 27 Europe/Dublin 2010-08-14 +2961668 Ross West Ross West 53.91667 -9.25 P PPL IE C 20 0 59 Europe/Dublin 1993-12-27 +2961669 Rosstemple Station Rosstemple Station Rosstemple,Rosstemple Station 52.48333 -8.68333 S RSTN IE IE M 16 0 89 Europe/Dublin 2010-08-14 +2961670 Ross Port Ross Port 54.28167 -9.79972 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961671 Ross Point Ross Point 54.25 -9.2 T PT IE C 20 0 -9999 Europe/Dublin 1993-12-27 +2961672 Rossow River Rossow River 53.86306 -9.56028 H STM IE C 20 0 5 Europe/Dublin 2010-08-14 +2961673 Rossnowlagh Upper Rossnowlagh Upper 54.55333 -8.19861 P PPL IE U 06 0 74 Europe/Dublin 2010-08-14 +2961674 Rossnowlagh Station Rossnowlagh Station Rossnowlagh,Rossnowlagh Station 54.55 -8.2 S RSTN IE U 06 0 84 Europe/Dublin 2010-08-10 +2961675 Rossnowlagh Lower Rossnowlagh Lower Rossnowlagh,Rossnowlagh Lower 54.56889 -8.21056 P PPL IE IE U 06 0 10 Europe/Dublin 2010-08-14 +2961676 Rosnalee Rosnalee Rosnalee,Rossnalee 52.13333 -8.91667 S EST IE IE M 04 0 104 Europe/Dublin 2010-08-14 +2961677 Rosnakill Rosnakill Rosnakill,Rossnakill,Tully Rossnakill 55.18333 -7.68333 P PPL IE IE U 06 0 42 Europe/Dublin 2010-08-14 +2961678 Rossmore Island Rossmore Island 51.83583 -9.80194 T ISL IE M 11 0 55 Europe/Dublin 2010-08-14 +2961679 Rossmore House Rossmore House 52.41361 -8.83639 S EST IE M 16 0 142 Europe/Dublin 2010-08-14 +2961680 Rossmore Castle Rossmore Castle Rossmore Castle,Rossmore Park 54.22389 -6.99667 S EST IE IE U 22 0 104 Europe/Dublin 2010-08-14 +2961681 Rossmore Rossmore 52.82 -7.00583 P PPL IE L 15 0 281 Europe/Dublin 2010-08-14 +2961682 Rossmore Rossmore 52.15 -9.58333 P PPL IE M 11 0 77 Europe/Dublin 1993-12-27 +2961683 Ross Lodge Ross Lodge 53.46667 -9.05 S BLDG IE C 10 0 85 Europe/Dublin 1993-12-27 +2961684 Rosslare Strand Rosslare Strand Rosslare,Rosslare Strand 52.28333 -6.38333 S RSTN IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961685 Rosslare Point Rosslare Point 52.31111 -6.375 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961686 Rosslare House Rosslare House 52.26667 -6.38333 S EST IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961687 Rosslare Harbour Rosslare Harbour Rosslare Harbour 52.25 -6.35 S RSTN IE L 30 0 1 Europe/Dublin 2010-08-14 +2961688 Rosslare Harbour Rosslare Harbour 52.25417 -6.34778 H HBR IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961689 Rosslare Bay Rosslare Bay Rosslare Bay,South Bay 52.28389 -6.35333 H BAY IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961690 Rosslare Rosslare Ros Lair,Ros Láir,Rosslare 52.27583 -6.38444 P PPL IE IE L 30 1145 -9999 Europe/Dublin 2010-08-14 +2961691 Ross Lake Ross Lake 53.37389 -9.21417 H LK IE C 10 0 51 Europe/Dublin 2010-08-14 +2961692 Rossinver Rossinver 54.38861 -8.10972 P PPL IE C 14 0 58 Europe/Dublin 2010-08-14 +2961693 Rossinan Rossinan 52.33944 -7.16028 P PPL IE L 13 0 75 Europe/Dublin 2010-08-14 +2961694 Ross House Ross House 53.78333 -7.3 S EST IE L 21 0 108 Europe/Dublin 1993-12-27 +2961695 Ross House Ross House Ross,Ross House 53.57333 -6.58667 S EST IE IE L 21 0 112 Europe/Dublin 2010-08-14 +2961696 Ross House Ross House 53.38333 -9.23278 S HSEC IE C 10 0 41 Europe/Dublin 2010-08-14 +2961697 Ross House Ross House 53.23361 -7.56417 S EST IE L 23 0 77 Europe/Dublin 2010-08-14 +2961698 Ross House Ross House Ross,Ross House 52.77028 -8.48528 S EST IE IE M 03 0 55 Europe/Dublin 2010-08-14 +2961699 Rosshill Lodge Rosshill Lodge 53.55 -9.36667 S EST IE C 10 0 47 Europe/Dublin 1993-12-27 +2961700 Rosses Point Rosses Point An Ros,Rosses Point,Rosses Upper 54.30917 -8.56611 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +2961701 The Rosses The Rosses Na Rosa,The Rosses 55 -8.33333 L AREA IE U 06 0 80 Europe/Dublin 2010-08-14 +2961702 Rossenarra House Rossenarra House Rossenarra,Rossenarra House 52.46417 -7.30778 S EST IE IE L 13 0 150 Europe/Dublin 2010-08-14 +2961703 Rossduff Rossduff 52.19972 -7.02139 P PPL IE M 27 0 75 Europe/Dublin 2010-08-14 +2961704 Rossdohan Island Rossdohan Island 51.80889 -9.86889 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961705 Ross Cross Roads Ross Cross Roads 53.56667 -6.57972 P PPL IE L 21 0 106 Europe/Dublin 2010-08-14 +2961706 Rosscarbery Bay Rosscarbery Bay 51.56583 -9.00417 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961707 Ross Carbery Ross Carbery Ros O gCairbre,Ros Ó gCairbre 51.57814 -9.03248 P PPL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961708 Rossbrin Rossbrin 51.53528 -9.48361 P PPL IE M 04 0 3 Europe/Dublin 2010-08-14 +2961709 Rossbehy Point Rossbehy Point Rossbehy Point,Rossbeigh Point 52.08333 -9.95 T PT IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961710 Rossbehy Creek Rossbehy Creek Rossbehy Creek,Rossbeigh Creek 52.07944 -9.95444 H BAY IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961711 Ross Bay Ross Bay 52.58333 -9.88333 H BAY IE M 03 0 1 Europe/Dublin 1993-12-27 +2961712 Rossan Point Rossan Point 54.70667 -8.79583 T PT IE U 06 0 14 Europe/Dublin 2010-08-14 +2961713 Castle Ross Castle Ross 55.18333 -7.51667 S BLDG IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2961714 Ross Ross 53.56667 -6.58333 P PPL IE L 21 0 106 Europe/Dublin 1993-12-27 +2961715 Ross Ross 52.58361 -9.85 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2961716 Rosroe Lough Rosroe Lough 52.77167 -8.82306 H LK IE M 03 0 29 Europe/Dublin 2010-08-14 +2961717 Rosmult Rosmult 52.68194 -7.95583 P PPL IE M 26 0 81 Europe/Dublin 2010-08-14 +2961718 Rosmuck Rosmuck Ros Muc,Rosmuck,Rusmuck 53.35028 -9.61583 P PPL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +2961719 Rosmore Rosmore 53.03333 -8.31667 L LCTY IE C 10 0 60 Europe/Dublin 2010-08-14 +2961720 Rosmead House Rosmead House 53.62806 -7.07056 S EST IE L 29 0 108 Europe/Dublin 2010-08-14 +2961721 Roskeeragh Point Roskeeragh Point 54.45611 -8.48444 T PT IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2961722 Roskeeragh Point Roskeeragh Point Rosceeragh Point,Roskeeragh Point,Rosskeeragh Point 54.35139 -8.67722 T PT IE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2961723 Roskeeda Roskeeda 53.34306 -9.64361 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961724 Roshin Roshin 54.53333 -8.11667 P PPL IE U 06 0 471 Europe/Dublin 1993-12-27 +2961725 Rosguill Rosguill Rosguill 55.21167 -7.83222 T PEN IE U 06 0 63 Europe/Dublin 2010-08-14 +2961726 Rosenallis Rosenallis Rosenallis 53.13444 -7.40444 P PPL IE L 15 0 143 Europe/Dublin 2010-08-14 +2961727 Rose Mount Rose Mount 53.43333 -7.65 P PPL IE L 29 0 114 Europe/Dublin 1993-12-27 +2961728 Rosegarland House Rosegarland House Rosegarland,Rosegarland House 52.28 -6.73583 S EST IE IE L 30 0 13 Europe/Dublin 2010-08-14 +2961729 Rosdaul Rosdaul 53.61667 -8.46667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2961730 Roscrea Roscrea Ros Cre,Ros Cré,Roscrea 52.95111 -7.80167 P PPL IE M 38 4721 102 Europe/Dublin 2011-03-06 +2961731 Ros Comáin Ros Comain Contae Ros Comain,Contae Ros Comáin,County Roscommon,Roscommon 53.75 -8.25 A ADM2 IE C 24 54174 76 Europe/Dublin 2010-08-14 +2961732 Ros Comáin Ros Comain Ros Comain,Ros Comáin,Roscommon,Rosecommon 53.63333 -8.18333 P PPLA2 IE C 24 4860 73 Europe/Dublin 2011-02-15 +2961733 Rosborough Rosborough Rosborough,Roxborough 54.63333 -8.63333 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-10 +2961734 Rosbercon Rosbercon Rosbercon 52.39972 -6.94778 P PPL IE L 30 0 43 Europe/Dublin 2010-08-14 +2961735 Roosky Roosky 54.00028 -8.67806 P PPL IE C 20 0 88 Europe/Dublin 2010-08-14 +2961736 Roosky Roosky Rooskey,Roosky,Ruscaigh,Ruskey,Rúscaigh 53.83333 -7.91667 P PPL IE C 24 0 68 Europe/Dublin 2010-08-14 +2961737 Roonkeel Roonkeel 53.68333 -9.9 P PPL IE C 20 0 67 Europe/Dublin 1993-12-27 +2961738 Roonah Lough Roonah Lough 53.72444 -9.88972 H LK IE C 20 0 42 Europe/Dublin 2010-08-14 +2961739 Rookwood Rookwood 53.56667 -8.28333 P PPL IE C 24 0 69 Europe/Dublin 1993-12-27 +2961740 Rokeby Hall Rokeby Hall 53.80861 -6.35472 S EST IE L 19 0 76 Europe/Dublin 2010-08-14 +2961741 Rogerstown Inlet Rogerstown Inlet 53.5 -6.11667 H INLT IE 00 0 1 Europe/Dublin 1993-12-27 +2961742 Roesborough House Roesborough House 52.47806 -8.20111 S RUIN IE M 26 0 147 Europe/Dublin 2010-08-14 +2961743 Roebuck Roebuck 53.79444 -7.24194 S EST IE U 02 0 88 Europe/Dublin 2010-08-14 +2961744 Lough Roe Lough Roe 53.85 -8.78333 H LK IE C 20 0 117 Europe/Dublin 1993-12-27 +2961745 Rodena Bridge Rodena Bridge 52.83333 -6.33333 P PPL IE L 31 0 132 Europe/Dublin 2010-08-14 +2961746 Rocky Island Rocky Island Rocky Island 51.84056 -8.30556 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961747 Rockville House Rockville House 53.86667 -8.08333 S EST IE C 24 0 71 Europe/Dublin 1993-12-27 +2961748 Rockview House Rockview House Rockview,Rockview House 53.58528 -7.12417 S EST IE IE L 29 0 123 Europe/Dublin 2010-08-14 +2961749 Rockvale Rockvale 52.18944 -8.46083 S EST IE M 04 0 67 Europe/Dublin 2010-08-14 +2961750 Rockmills Rockmills Rockmills 52.22194 -8.41361 P PPL IE M 04 0 67 Europe/Dublin 2010-08-14 +2961751 Rocklawn House Rocklawn House 53.32889 -8.97639 S HSEC IE C 10 0 7 Europe/Dublin 2010-08-14 +2961752 Rockland Rockland 53.71667 -7.33333 P PPL IE L 29 0 88 Europe/Dublin 1993-12-27 +2961753 Rock Island Rock Island 51.4775 -9.70833 T PEN IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961754 Rockingham House Rockingham House Rockingham,Rockingham House 53.98333 -8.25 S EST IE C 24 0 75 Europe/Dublin 2010-08-10 +2961755 Rockingham House Rockingham House Rockingham,Rockingham House 52.26667 -7.1 S EST IE IE L 13 0 46 Europe/Dublin 2010-08-14 +2961756 Rock House Rock House 53.96667 -9.83833 S HSEC IE C 20 0 1 Europe/Dublin 2010-08-14 +2961757 Rockhill Rockhill 54.06667 -8.15 P PPL IE C 24 0 239 Europe/Dublin 1993-12-27 +2961758 Rockhill Rockhill 52.41694 -8.71417 P PPL IE M 16 0 78 Europe/Dublin 2010-08-14 +2961759 Rockforest House Rockforest House Rockforest,Rockforest House 53 -8.96667 S EST IE M 03 0 67 Europe/Dublin 2010-08-10 +2961760 Rockforest House Rockforest House 52.92917 -7.70167 S EST IE M 26 0 138 Europe/Dublin 2010-08-14 +2961761 Rockforest House Rockforest House Rockforest,Rockforest House 52.13333 -8.56667 S EST IE M 04 0 165 Europe/Dublin 2010-08-10 +2961762 Rockford House Rockford House 52.88889 -8.21722 S EST IE M 26 0 66 Europe/Dublin 2010-08-14 +2961763 Rockfield House Rockfield House Rock View,Rockfield House 52.56833 -8.63222 S EST IE IE M 16 0 49 Europe/Dublin 2010-08-14 +2961764 Rockfield House Rockfield House 53.26167 -8.75528 S BLDG IE C 10 0 34 Europe/Dublin 2010-08-14 +2961765 Rockfield Rockfield 53.65 -8.28333 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2961766 Rocketts Castle Rocketts Castle Rockets Castle,Rocketts Castle 52.29806 -7.29972 S EST IE IE M 27 0 14 Europe/Dublin 2010-08-14 +2961767 Rockcorry Rockcorry Buiochar,Buíochar,Rockcorry 54.11667 -7.01667 P PPL IE U 22 0 114 Europe/Dublin 2010-08-14 +2961768 Rockchapel Rockchapel Rockchapel 52.28333 -9.15 P PPL IE M 04 0 285 Europe/Dublin 2010-08-10 +2961769 Rockbarton House Rockbarton House 52.5075 -8.56861 S EST IE M 16 0 76 Europe/Dublin 2010-08-14 +2961770 Rochfortbridge Rochfortbridge Droichead Chaislean Loiste,Droichead Chaisleán Loiste,Rochfortbridge 53.41417 -7.29611 P PPL IE L 29 0 134 Europe/Dublin 2010-08-14 +2961771 Rochestown Rochestown 52.31833 -7.00333 P PPL IE L 13 0 5 Europe/Dublin 2010-08-14 +2961772 Roches Point Roches Point Roche Point,Roches Point 51.79556 -8.25833 T PT IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961773 Roche Mount Roche Mount 51.8 -8.21667 S EST IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961774 Roche House Roche House 54.03333 -6.46667 S BLDG IE 00 0 33 Europe/Dublin 1993-12-27 +2961775 Robinstown Robinstown 53.5925 -6.72861 P PPL IE L 21 0 60 Europe/Dublin 2010-08-14 +2961776 Robertstown River Robertstown River 52.61917 -9.08611 H STM IE M 16 0 -9999 Europe/Dublin 2010-08-14 +2961777 Robertstown Robertstown Baile Riobaird,Robertstown 53.27417 -6.81778 P PPL IE L 12 0 93 Europe/Dublin 2010-08-14 +2961778 Roberts Head Roberts Head 51.73361 -8.31917 T CAPE IE M 04 0 1 Europe/Dublin 2010-08-14 +2961779 Roberts Cove Roberts Cove 51.74553 -8.31253 H COVE IE M 04 0 1 Europe/Dublin 2010-08-14 +2961780 Robe River Robe River 53.63333 -9.28333 H STM IE C 20 0 41 Europe/Dublin 1993-12-27 +2961781 Roaringwater Bay Roaringwater Bay 51.52639 -9.43639 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961782 Roaninish Roaninish 51.86667 -8.55 T ISL IE M 04 0 76 Europe/Dublin 2010-08-14 +2961783 Roancarrig More Roancarrig More Roancarrig Island,Roancarrig More 51.65833 -9.75167 T ISL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961784 Roancarrig Beg Roancarrig Beg Roancarrig Beg,Roancarrig Island 51.66361 -9.75167 T ISL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961785 Roadford Roadford 53.02278 -9.36833 P PPL IE M 03 0 43 Europe/Dublin 2010-08-14 +2961786 Roachtown Roachtown 53.69833 -7.07833 P PPL IE L 21 0 130 Europe/Dublin 2010-08-14 +2961787 Riverstown Riverstown Baile idir dha Abhainn,Baile idir dhá Abhainn,Riverstown 54.13167 -8.39444 P PPL IE C 25 0 73 Europe/Dublin 2010-08-14 +2961788 Riverstown Riverstown 53.99444 -6.22028 P PPL IE L 19 0 28 Europe/Dublin 2010-08-14 +2961789 Rivers Town Rivers Town 53.91667 -7.81667 P PPL IE C 14 0 71 Europe/Dublin 1993-12-27 +2961790 Riverstown Riverstown Riverstown 53.08056 -7.92583 P PPL IE M 26 0 68 Europe/Dublin 2010-11-04 +2961791 Riverstown Riverstown 51.92639 -8.38917 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +2961792 Riverstick Riverstick 51.7775 -8.49778 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +2961793 Riversdale House Riversdale House 51.9 -8.78333 S BLDG IE M 04 0 72 Europe/Dublin 2010-08-14 +2961794 Riverchapel Riverchapel 52.63667 -6.23194 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961795 River River 53.97722 -10.04194 P PPL IE C 20 0 55 Europe/Dublin 2010-08-14 +2961796 Rinvyle Point Rinvyle Point 53.61028 -10.04833 T PT IE C 10 0 1 Europe/Dublin 2010-08-14 +2961797 Rinvyle House Rinvyle House 53.6 -10 S EST IE C 10 0 62 Europe/Dublin 1993-12-27 +2961798 Rinvyle Rinvyle 53.59528 -9.97417 P PPL IE C 10 0 8 Europe/Dublin 2010-08-14 +2961799 Rinville Rinville 53.25 -8.93667 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2961800 Rinville Rinville Rinville,Rinville Castle 53.24861 -8.96806 S EST IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2961801 Rinroe Point Rinroe Point 54.29722 -9.845 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961802 Rinrawros Point Rinrawros Point 55.01472 -8.55889 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961803 Rinn River Rinn River 53.78333 -7.88333 H STM IE 00 0 67 Europe/Dublin 1993-12-27 +2961804 Rinn Lough Rinn Lough 53.88333 -7.85 H LK IE C 14 0 67 Europe/Dublin 1993-12-27 +2961805 Lough Rynn House Lough Rynn House Lough Rynn House,Rinn House 53.9 -7.85 S HSEC IE IE C 14 0 69 Europe/Dublin 2010-08-14 +2961806 Rinneen Rinneen 52.89056 -9.38917 P PPL IE M 03 0 67 Europe/Dublin 2010-08-14 +2961807 Rinnalea Point Rinnalea Point 55.04306 -8.39333 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961808 Rinnagonnaght Rinnagonnaght Ravoganagh,Rinnagonnaght 52.73333 -9.51667 P PPL IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2961809 Rinnafaghla Point Rinnafaghla Point Rinnafaghla Point,Rinnafagla Point 55.22944 -7.86472 T PT IE IE U 06 0 16 Europe/Dublin 2010-08-14 +2961810 Rinn Rinn 53.21083 -8.81583 P PPL IE C 10 0 19 Europe/Dublin 2010-08-14 +2961811 Rinmore Point Rinmore Point 55.26389 -7.6925 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961812 Ringwood House Ringwood House 52.42806 -6.95778 S EST IE L 13 0 13 Europe/Dublin 2010-08-14 +2961813 Ringville House Ringville House Ringville,Ringville House 52.30278 -7.01194 S EST IE IE L 13 0 5 Europe/Dublin 2010-08-14 +2961814 Ringville Ringville Ring,Ringville 52.04833 -7.58528 P PPL IE IE M 27 0 73 Europe/Dublin 2010-08-14 +2961815 Ringsend Gut Ringsend Gut 53.35 -6.23333 H INLT IE L 07 0 1 Europe/Dublin 2010-08-14 +2961816 Ringsend Ringsend 53.34194 -6.22639 P PPLX IE L 07 0 1 Europe/Dublin 2010-08-14 +2961817 Ring Harbour Ring Harbour 51.6 -8.86667 H INLT IE M 04 0 1 Europe/Dublin 2010-08-14 +2961818 Ringaskiddy Island Ringaskiddy Island 51.83333 -8.31667 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +2961819 Ringaskiddy Ringaskiddy Ringaskiddy,Rinn an Scidigh,Rinn an Scidígh 51.83389 -8.31694 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961820 Ringarogy Island Ringarogy Island 51.50472 -9.37417 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +2961821 Ringabella Bay Ringabella Bay 51.77556 -8.31 H BAY IE M 04 0 5 Europe/Dublin 2010-08-14 +2961822 Rinevella Bay Rinevella Bay 52.5825 -9.735 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961823 Rineanna Point Rineanna Point Rineanna Point,Rynany Point 52.68528 -8.96556 T PT IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2961824 Rineanna Rineanna 52.68333 -8.95 P PPL IE M 03 0 -9999 Europe/Dublin 1993-12-27 +2961825 River Riffey River Riffey 53.63333 -7.45 H STM IE L 29 0 76 Europe/Dublin 1993-12-27 +2961826 Ridge Point Ridge Point 54.02833 -9.97444 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2961827 Ricketstown House Ricketstown House 52.88056 -6.72861 S EST IE L 01 0 113 Europe/Dublin 2010-08-14 +2961828 Richmount Hill Richmount Hill 53.63333 -7.7 P PPL IE L 18 0 104 Europe/Dublin 1993-12-27 +2961829 Richmond Harbour Richmond Harbour 53.73333 -7.91667 T DPR IE 00 0 67 Europe/Dublin 1993-12-27 +2961830 Richfort Richfort 53.68333 -7.71667 S EST IE L 18 0 128 Europe/Dublin 1993-12-27 +2961831 Richfield House Richfield House 52.20972 -6.60417 S BLDG IE L 30 0 4 Europe/Dublin 2010-08-14 +2961832 Rhode Rhode Rhode,Road,Rod,Ród 53.35222 -7.20167 P PPL IE IE L 23 0 132 Europe/Dublin 2010-08-14 +2961833 Rheban Castle Rheban Castle Redan Castle,Rheban Castle 53.03333 -7.03333 S RUIN IE L 12 0 64 Europe/Dublin 2010-08-10 +2961834 Reynella House Reynella House Reynelia House,Reynella House 53.56833 -7.16944 S EST IE IE L 29 0 142 Europe/Dublin 2010-08-14 +2961835 Rerrin Rerrin Rerrin 51.63944 -9.8175 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +2961836 Renmore House Renmore House 53.27861 -9.02417 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +2961837 Renaghmore Renaghmore 52.65 -7.53667 P PPL IE M 26 0 160 Europe/Dublin 2010-08-14 +2961838 Releagh Bridge Releagh Bridge 51.81972 -9.56417 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +2961839 Releagh Releagh 51.78333 -9.56667 P PPL IE M 04 0 188 Europe/Dublin 2010-08-14 +2961840 Relane Point Relane Point 51.67639 -9.50972 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961841 Relaghbeg Relaghbeg Relagh,Relaghbeg 53.87056 -6.95972 P PPL IE IE U 02 0 152 Europe/Dublin 2010-08-14 +2961842 Reens Reens 52.50778 -8.99944 P PPL IE M 16 0 40 Europe/Dublin 2010-08-14 +2961843 Reenroe Reenroe 51.84778 -10.24222 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961844 Reen Point Reen Point 51.65 -9.58333 T PT IE M 04 0 96 Europe/Dublin 1993-12-27 +2961845 Reen Lodge Reen Lodge 51.69083 -9.7475 S BLDG IE M 04 0 66 Europe/Dublin 2010-08-14 +2961846 Reenard Reenard 51.92972 -10.26 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2961847 Reelan River Reelan River 54.82944 -7.93889 H STM IE U 06 0 77 Europe/Dublin 2010-08-14 +2961848 Lough Ree Lough Ree Lough Ree 53.53333 -7.96667 H LK IE L 18 0 62 Europe/Dublin 2010-08-10 +2961849 Redhills Redhills An Cnoc Rua,Redhills 54.1 -7.31667 P PPL IE U 02 0 80 Europe/Dublin 2010-08-14 +2961850 Redhills Redhills Redhill,Redhills 54.1 -7.3 S EST IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2961851 Redhill Redhill 53.98333 -8.46667 P PPL IE C 25 0 80 Europe/Dublin 1993-12-27 +2961852 Redgate Redgate 52.41833 -6.50278 P PPL IE L 30 0 21 Europe/Dublin 2010-08-14 +2961853 Redforge Cross Roads Redforge Cross Roads Redforge,Redforge Cross Roads 51.99056 -7.9275 P PPL IE IE M 04 0 100 Europe/Dublin 2010-08-14 +2961854 Redcross River Redcross River 52.83917 -6.09667 H STM IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2961855 Redcross Redcross An Chrois Dhearg,Redcross 52.88583 -6.14583 P PPL IE L 31 0 75 Europe/Dublin 2010-08-14 +2961856 Red Castle Red Castle 55.15 -7.11667 P PPL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2961857 Recess River Recess River 53.46667 -9.73333 H STM IE C 10 0 83 Europe/Dublin 1993-12-27 +2961858 Rear Cross Rear Cross 52.68639 -8.23583 P PPL IE M 26 0 261 Europe/Dublin 2010-08-14 +2961859 Reanies Point Reanies Point 51.71667 -8.33333 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961860 Reanies Bay Reanies Bay Jordans Bay,Reanies Bay 51.71194 -8.37972 H BAY IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961861 Reanascreena Reanascreena 51.63472 -9.05556 P PPL IE M 04 0 143 Europe/Dublin 2010-08-14 +2961862 Reananerree Reananerree 51.9 -9.16667 P PPL IE M 04 0 166 Europe/Dublin 1993-12-27 +2961863 Reaghstown Reaghstown 53.91083 -6.61583 P PPL IE L 19 0 62 Europe/Dublin 2010-08-14 +2961864 Lough Reagh Lough Reagh 51.92361 -9.88806 H LK IE M 11 0 188 Europe/Dublin 2010-08-14 +2961865 Lough Rea Lough Rea 53.18806 -8.58194 H LK IE C 10 0 105 Europe/Dublin 2010-08-14 +2961866 Ray River Ray River 55.16167 -8.08056 H STM IE U 06 0 1 Europe/Dublin 2010-08-14 +2961867 Rawros Rawros 55.18333 -7.76667 P PPL IE U 06 0 9 Europe/Dublin 1993-12-27 +2961868 Ravensdale House Ravensdale House Ravensdale,Ravensdale House 54.08333 -6.35 S HSEC IE IE L 19 0 166 Europe/Dublin 2010-08-14 +2961869 Ravensdale Ravensdale 54.05222 -6.33972 P PPL IE L 19 0 104 Europe/Dublin 2010-08-14 +2961870 The Raven Point The Raven Point 52.34472 -6.3475 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2961871 Ratra House Ratra House Ratra,Ratra House 53.9 -8.48333 S EST IE C 24 0 77 Europe/Dublin 2010-08-10 +2961872 Ratoath Ratoath Rath To,Ratoath,Ráth Tó 53.50806 -6.4625 P PPL IE L 21 4084 78 Europe/Dublin 2010-08-14 +2961873 Rathwire Rathwire 53.505 -7.14694 P PPL IE L 29 0 129 Europe/Dublin 2010-08-14 +2961874 Rathvilly Rathvilly Rath Bhile,Rathvilly,Ráth Bhile 52.87889 -6.69333 P PPL IE IE L 01 0 130 Europe/Dublin 2010-08-14 +2961875 Rathurles House Rathurles House 52.8725 -8.13667 S EST IE M 26 0 78 Europe/Dublin 2010-08-14 +2961876 Rathtroane Rathtroane 53.43556 -6.79639 P PPL IE L 21 0 85 Europe/Dublin 2010-08-14 +2961877 Rathsnagadan House Rathsnagadan House 52.45361 -7.00861 S BLDG IE L 13 0 51 Europe/Dublin 2010-08-14 +2961878 Rathsallagh House Rathsallagh House Rathsallagh,Rathsallagh House 53.02583 -6.73194 S EST IE IE L 31 0 152 Europe/Dublin 2010-08-14 +2961879 Rath Riogh Rath Riogh 53.57833 -6.61306 S RUIN IE L 21 0 135 Europe/Dublin 2010-08-14 +2961880 Rathpeacon House Rathpeacon House 51.92806 -8.49778 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +2961881 Rathpeacon Rathpeacon 51.93333 -8.5 S RSTN IE M 04 0 76 Europe/Dublin 2010-08-14 +2961882 Rathowen Rathowen Rath Eoghain,Rathowen,Ráth Eoghain 53.65 -7.5 P PPL IE L 29 0 71 Europe/Dublin 2010-08-14 +2961883 Rathnure Rathnure Rathnure 52.49889 -6.76306 P PPL IE L 30 0 122 Europe/Dublin 2010-08-14 +2961884 Rathnew Rathnew Rath Naoi,Rathnew,Ráth Naoi 52.99056 -6.08528 P PPL IE L 31 0 69 Europe/Dublin 2010-08-14 +2961885 Rathnally House Rathnally House Rathnally,Rathnally House 53.56639 -6.73611 S BLDG IE IE L 21 0 59 Europe/Dublin 2010-08-14 +2961886 Rathmullan Roadstead Rathmullan Roadstead 55.1 -7.51667 H ANCH IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2961887 Rathmullan Rathmullan Rath Maolain,Rathmullan,Rathmullen,Ráth Maoláin 55.09389 -7.54028 P PPL IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961888 Rathmoyle House Rathmoyle House Rathmoyle,Rathmoyle House 53.78333 -8.38333 S EST IE C 24 0 108 Europe/Dublin 2010-08-10 +2961889 Rathmore House Rathmore House Rathmore,Rathmore House 53.03333 -7.88333 S RUIN IE IE L 23 0 81 Europe/Dublin 2010-08-14 +2961890 Rathmore House Rathmore House Rathmore,Rathmore House 53.17694 -8.33 S EST IE IE C 10 0 89 Europe/Dublin 2010-08-14 +2961891 Rathmore House Rathmore House Rathmore,Rathmore House 52.85361 -6.72639 S EST IE IE L 01 0 102 Europe/Dublin 2010-08-14 +2961892 Rathmore Rathmore An Rath Mhor,An Ráth Mhór,Rathmore 53.21722 -6.56444 P PPL IE L 12 0 158 Europe/Dublin 2010-08-14 +2961893 Rathmore Rathmore An Rath Mhor,An Ráth Mhór,Rathmore 52.08333 -9.21667 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +2961894 Rathmolyon Rathmolyon Rathmolyan,Rathmolyon 53.49 -6.79861 P PPL IE IE L 21 0 79 Europe/Dublin 2010-08-14 +2961895 Rathmines and Rathgar Waterworks Rathmines and Rathgar Waterworks Bohernabreena Reservoir,Rathmines and Rathgar Waterworks 53.23333 -6.35 H RSV IE IE 00 0 300 Europe/Dublin 2010-08-10 +2961896 Rathmines Rathmines 53.32028 -6.26333 P PPLX IE L 07 0 25 Europe/Dublin 2010-08-14 +2961897 Rathmelton Rathmelton Ramelton,Rath Mealtain,Rathmelton,Ráth Mealtain 55.03333 -7.63333 P PPL IE IE U 06 0 61 Europe/Dublin 2010-08-14 +2961898 Rathmacknee House Rathmacknee House Rathmackne House,Rathmacknee House 52.26583 -6.4825 S BLDG IE IE L 30 0 26 Europe/Dublin 2010-08-14 +2961899 Rath Lough Rath Lough 54.56667 -8.05 H LK IE U 06 0 186 Europe/Dublin 2010-08-14 +2961900 Rathlin O’Birne Island Rathlin O'Birne Island 54.66417 -8.82806 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2961901 Rathlee Head Rathlee Head 54.28333 -9.06667 T CAPE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2961902 Rathlaheen House Rathlaheen House Rathlaeen House,Rathlaheen,Rathlaheen House 52.74778 -8.84361 S EST IE IE M 03 0 4 Europe/Dublin 2010-08-14 +2961903 Rathlackan Rathlackan Rath Leacan,Rathlackan,Ráth Leacan 54.29167 -9.26 P PPL IE IE C 20 0 55 Europe/Dublin 2010-08-14 +2961904 Rathkenny Rathkenny 53.74778 -6.64611 P PPL IE L 21 0 126 Europe/Dublin 2010-08-14 +2961905 Rathkeale Rathkeale Rath Caola,Rathkeale,Ráth Caola 52.52444 -8.93806 P PPL IE M 16 1470 36 Europe/Dublin 2010-08-14 +2961906 Rath House Rath House Rath,Rath House 52.79833 -6.67667 S EST IE IE L 31 0 113 Europe/Dublin 2010-08-14 +2961907 Rathgranagher Rathgranagher 53.6 -9.06667 P PPL IE C 20 0 76 Europe/Dublin 1993-12-27 +2961908 Rathgormuck Rathgormuck 52.30667 -7.4975 P PPL IE M 27 0 130 Europe/Dublin 2010-08-14 +2961909 Rathfran Bay Rathfran Bay 54.25 -9.2 H BAY IE C 20 0 -9999 Europe/Dublin 1993-12-27 +2961910 Rathfeigh Rathfeigh 53.59361 -6.48611 P PPL IE L 21 0 60 Europe/Dublin 2010-08-14 +2961911 Rathfarnham Rathfarnham 53.30056 -6.28278 P PPL IE L 07 0 55 Europe/Dublin 2010-08-14 +2961912 Ratheskin Ratheskin 54.20556 -9.36139 P PPL IE C 20 0 64 Europe/Dublin 2010-08-14 +2961913 Rathescar Cross Roads Rathescar Cross Roads Rathescar Cross,Rathescar Cross Roads 53.82806 -6.44778 P PPL IE IE L 19 0 76 Europe/Dublin 2010-08-14 +2961914 Rathescar Rathescar 53.82444 -6.44944 S EST IE L 19 0 83 Europe/Dublin 2010-08-14 +2961915 Rathenny House Rathenny House 52.89861 -8.01139 S EST IE L 23 0 124 Europe/Dublin 2010-08-14 +2961916 Rathea Rathea 52.38778 -9.47917 P PPL IE M 11 0 98 Europe/Dublin 2010-08-14 +2961917 Rathduff Rathduff 52.01667 -8.58333 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2961918 Rathdrum Rathdrum Rath Droma,Rathdrum,Ráth Droma 52.92639 -6.23556 P PPL IE L 31 1649 100 Europe/Dublin 2010-08-14 +2961919 Rathdrinagh Rathdrinagh 53.6575 -6.52278 P PPL IE L 21 0 62 Europe/Dublin 2010-08-14 +2961920 Rathdowney Rathdowney Rath Domhnaigh,Rathdowney,Ráth Domhnaigh 52.85472 -7.58028 P PPL IE L 15 0 124 Europe/Dublin 2010-08-14 +2961921 Rathdangan Rathdangan Rathdangan 52.91556 -6.54861 P PPL IE L 31 0 245 Europe/Dublin 2010-08-14 +2961922 Rathcoursey Rathcoursey 51.87806 -8.18583 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +2961923 Rathcor Upper Rathcor Upper 53.98333 -6.2 P PPL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2961924 Rathcormack Rathcormack Rath Chormaic,Rathcormac,Rathcormack,Ráth Chormaic 52.07694 -8.28194 P PPL IE IE M 04 0 72 Europe/Dublin 2010-08-14 +2961925 Rathcor Lower Rathcor Lower 53.98333 -6.18333 P PPL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2961926 Rathcore Rathcore 53.45 -6.84417 P PPL IE L 21 0 85 Europe/Dublin 2010-08-14 +2961927 Rathcor Rathcor 53.98528 -6.19389 P PPL IE L 19 0 20 Europe/Dublin 2010-08-14 +2961928 Rathcoole Castle Rathcoole Castle Rathcool,Rathcool Castle,Rathcoole Castle 52.4875 -7.71417 S EST IE IE M 26 0 76 Europe/Dublin 2010-11-04 +2961929 Rathcoole Rathcoole Rath Cuil,Rathcoole,Ráth Cúil 53.28278 -6.47278 P PPL IE L 39 2443 148 Europe/Dublin 2010-11-04 +2961930 Rathcool Rathcool Rathcool,Rathcoole 52.08333 -8.96667 P PPL IE M 04 0 152 Europe/Dublin 2010-08-10 +2961931 Rathconrath Rathconrath 53.51667 -7.51667 P PPL IE L 29 0 154 Europe/Dublin 1993-12-27 +2961932 Rathconnell Court Rathconnell Court 53.53333 -7.26667 S RUIN IE L 29 0 127 Europe/Dublin 1993-12-27 +2961933 Rathcolman Rathcolman 53.51667 -7.38333 P PPL IE L 29 0 116 Europe/Dublin 1993-12-27 +2961934 Rathcline House Rathcline House 53.65 -8 S EST IE L 18 0 79 Europe/Dublin 1993-12-27 +2961935 Rathclarish Rathclarish 52.41278 -7.43333 P PPL IE M 26 0 146 Europe/Dublin 2010-08-14 +2961936 Rathcabban Rathcabban 53.11611 -8.02694 P PPL IE M 26 0 67 Europe/Dublin 2010-08-14 +2961937 Rathanna Rathanna 52.59667 -6.82472 P PPL IE L 01 0 159 Europe/Dublin 2010-08-14 +2961938 Rathangan Rathangan Rath Iomghain,Rathangan,Ráth Iomgháin 53.22139 -6.995 P PPL IE L 12 1961 76 Europe/Dublin 2010-08-14 +2961939 Rath Rath 53.13611 -7.8075 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +2961940 Rashenny Rashenny 55.27833 -7.34417 P PPL IE U 06 0 76 Europe/Dublin 2010-08-14 +2961941 Rasheen Wood Rasheen Wood 52.57333 -8.04694 V FRST IE M 26 0 126 Europe/Dublin 2010-08-14 +2961942 Rappa Castle Rappa Castle 54.14 -9.25 S BLDG IE C 20 0 32 Europe/Dublin 2010-08-14 +2961943 Rapla House Rapla House Rapla,Rapla House 52.89222 -8.16361 S EST IE IE M 26 0 81 Europe/Dublin 2010-11-04 +2961944 Raphoe Raphoe Raphoe,Rath Bhoth,Ráth Bhoth 54.87472 -7.59833 P PPL IE U 06 0 83 Europe/Dublin 2010-08-14 +2961945 Rapemills Rapemills 52.13333 -7.91667 P PPL IE M 27 0 81 Europe/Dublin 1993-12-27 +2961946 Randalstown House Randalstown House Randalstown,Randalstown House 53.68361 -6.71472 S EST IE IE L 21 0 58 Europe/Dublin 2010-08-14 +2961947 Ranaghroe Point Ranaghroe Point 55.15 -8.28333 T PT IE U 06 0 45 Europe/Dublin 1993-12-27 +2961948 Ramsgrange Ramsgrange 52.24028 -6.91194 P PPL IE L 30 0 19 Europe/Dublin 2010-08-14 +2961949 Ramsfort House Ramsfort House 52.69167 -6.29222 S EST IE L 30 0 72 Europe/Dublin 2010-08-14 +2961950 Rampart Rampart 54.02 -6.145 P PPL IE 00 0 2 Europe/Dublin 1998-04-30 +2961951 Lough Ramor Lough Ramor 53.8275 -7.08694 H LK IE U 02 0 125 Europe/Dublin 2010-08-14 +2961952 Ram Head Ram Head 51.93333 -7.7 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961953 Rake Street Rake Street 54.07028 -9.355 P PPL IE C 20 0 30 Europe/Dublin 2010-08-14 +2961954 Rathkenny House Rathkenny House Rakenny House,Rathkenny House 54.05 -7.18333 S HSEC IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2961955 Rainsford Lodge Rainsford Lodge 52.67194 -6.64694 S EST IE L 30 0 79 Europe/Dublin 2010-08-14 +2961956 Rahinstown House Rahinstown House Rahinstown,Rahinstown House 53.45833 -6.78194 S EST IE IE L 21 0 82 Europe/Dublin 2010-08-14 +2961957 Rahan Rahan Rahan,Rahin House 53.38944 -7.07278 S EST IE IE L 12 0 105 Europe/Dublin 2010-08-14 +2961958 Rahin House Rahin House 52.95028 -7.05972 S EST IE L 15 0 114 Europe/Dublin 2010-08-14 +2961959 Rahillakeen Rahillakeen 52.33333 -7.13333 P PPL IE L 13 0 67 Europe/Dublin 2010-08-14 +2961960 Raheny Raheny 53.38681 -6.18067 P PPL IE L 07 0 1 Europe/Dublin 2010-08-14 +2961961 Raheens Raheens 53.85 -9.35 P PPL IE C 20 0 62 Europe/Dublin 1993-12-27 +2961962 Raheen House Raheen House Raheen,Raheen House 53.83333 -8.26667 S EST IE C 24 0 78 Europe/Dublin 2010-08-10 +2961963 Raheen House Raheen House Raheen,Raheen House 53.1 -8.83333 S EST IE C 10 0 31 Europe/Dublin 2010-08-10 +2961964 Raheen Cross Roads Raheen Cross Roads 52.62917 -8.66194 L LCTY IE M 16 0 14 Europe/Dublin 2010-08-14 +2961965 Raheen Raheen 54.30444 -9.54694 P PPL IE C 20 0 127 Europe/Dublin 2010-08-14 +2961966 Raheen Raheen 53.58333 -8.6 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2961967 Raheen Raheen Raheen 52.9625 -7.37028 P PPL IE L 15 0 116 Europe/Dublin 2010-08-14 +2961968 Raheen Raheen 53.29861 -8.74833 S EST IE C 10 0 40 Europe/Dublin 2010-08-14 +2961969 Raheen Raheen 53.20806 -8.23056 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2961970 Raheen Raheen Raheen,Raheen House 52.38333 -6.96667 S BLDG IE IE 00 0 8 Europe/Dublin 2010-08-10 +2961971 Rahasane House Rahasane House 53.2 -8.78333 S RUIN IE C 10 0 39 Europe/Dublin 1993-12-27 +2961972 Raharney Raharney 53.5225 -7.0925 P PPL IE L 29 0 111 Europe/Dublin 2010-08-14 +2961973 Rahans Lough Rahans Lough 53.925 -6.73056 H LK IE 00 0 58 Europe/Dublin 1999-03-22 +2961974 Rahan Lodge Rahan Lodge 53.26833 -7.59417 S EST IE L 23 0 72 Europe/Dublin 2010-08-14 +2961975 Raghtin More Raghtin More 55.25528 -7.47083 T MT IE U 06 0 505 315 Europe/Dublin 2010-08-14 +2961976 The Rag The Rag 52.71667 -7.91667 P PPL IE M 26 0 92 Europe/Dublin 2010-08-14 +2961977 Raford Raford 53.27833 -8.59194 S EST IE C 10 0 67 Europe/Dublin 2010-08-14 +2961978 Racecourse Hall Racecourse Hall 52.48389 -7.89389 S EST IE M 26 0 117 Europe/Dublin 2010-08-14 +2961979 Rabbit Islands Rabbit Islands Rabbit Island,Rabbit Islands 51.53528 -9.12194 T ISLS IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2961980 Quin Quin Cuinche,Quin,Quinn 52.81861 -8.86694 P PPL IE M 03 0 18 Europe/Dublin 2010-08-14 +2961981 Quilty Quilty 52.81694 -9.45083 P PPL IE M 03 0 13 Europe/Dublin 2010-08-14 +2961982 Quignalahy Quignalahy Quignalahy,Quinalahy 54.26667 -9.03333 P PPL IE C 25 0 8 Europe/Dublin 2010-08-10 +2961983 Quigley’s Point Quigley's Point 55.13333 -7.18333 T PT IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2961984 Queenstown Junction Station Queenstown Junction Station Queenstown Junction,Queenstown Junction Station 51.91667 -8.31667 S RSTN IE IE M 04 0 82 Europe/Dublin 2010-08-14 +2961985 Queensborough Queensborough 53.73111 -6.25917 P PPL IE L 21 0 -9999 Europe/Dublin 2010-08-14 +2961986 Quarrymount Quarrymount 53.6 -8.86667 S EST IE C 10 0 47 Europe/Dublin 1993-12-27 +2961987 Quakers Cross Roads Quakers Cross Roads 51.60194 -9.01861 P PPL IE M 04 0 96 Europe/Dublin 2010-08-14 +2961988 Quagmire River Quagmire River 52.06667 -9.41667 H STM IE M 11 0 150 Europe/Dublin 1993-12-27 +2961989 Purple Mountain Purple Mountain Purple Mountain 52 -9.61667 T MT IE M 11 0 271 Europe/Dublin 2011-02-08 +2961990 Pulleen Pulleen 52.73333 -9.58333 P PPL IE M 03 0 1 Europe/Dublin 1993-12-27 +2961991 Puffin Sound Puffin Sound 51.84222 -10.39361 H SD IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961992 Puffin Island Puffin Island Puffin Island 51.83333 -10.41667 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2961993 Puckaun Puckaun 52.92889 -8.2375 P PPL IE M 26 0 83 Europe/Dublin 2010-08-14 +2961994 Prosperous Prosperous An Chorrchoill,Prosperous 53.29028 -6.75389 P PPL IE L 12 1649 97 Europe/Dublin 2010-08-14 +2961995 Prior Park Prior Park 52.94167 -8.21111 S EST IE M 26 0 103 Europe/Dublin 2010-08-14 +2961996 Prince Williams Seat Prince Williams Seat Prince William Seat,Prince Williams Seat 53.20139 -6.23917 T PK IE 00 0 556 300 Europe/Dublin 2010-08-10 +2961997 Primrose Lodge Primrose Lodge 52.68944 -6.45472 S EST IE L 30 0 154 Europe/Dublin 2010-08-14 +2961998 Powerstown House Powerstown House 52.8 -9.33333 S BLDG IE M 03 0 89 Europe/Dublin 1993-12-27 +2961999 Powerstown Powerstown 52.60583 -7.02028 P PPL IE L 13 0 56 Europe/Dublin 2010-08-14 +2962000 Powers Cross Powers Cross 53.07111 -8.33083 P PPL IE C 10 0 65 Europe/Dublin 2010-08-14 +2962001 Powerscourt House Powerscourt House Powerscourt,Powerscourt House 53.18361 -6.18111 S EST IE IE L 31 0 111 Europe/Dublin 2010-08-14 +2962002 Power Head Power Head Poor Head,Power Head 51.78833 -8.17722 T CAPE IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962003 Powellsborough Cross Roads Powellsborough Cross Roads Powellsborough,Powellsborough Cross Roads 54.04806 -8.6875 P PPL IE IE C 25 0 106 Europe/Dublin 2010-08-14 +2962004 Poulnamucky Poulnamucky 52.40111 -7.81944 P PPL IE M 26 0 159 Europe/Dublin 2010-08-14 +2962005 Poulnalour Poulnalour 53.01667 -9.01667 P PPL IE M 03 0 133 Europe/Dublin 1993-12-27 +2962006 Poulacapple Poulacapple 52.50167 -7.44083 P PPL IE M 26 0 114 Europe/Dublin 2010-08-14 +2962007 Potters River Potters River 52.89167 -6.04306 H STM IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2962008 Porturlin Porturlin 54.31472 -9.71667 P PPL IE C 20 0 36 Europe/Dublin 2010-08-14 +2962009 Portumna Bay Portumna Bay 53.06667 -8.2 H BAY IE M 26 0 55 Europe/Dublin 2010-08-14 +2962010 Portumna Portumna Port Omna,Portumna 53.08917 -8.21889 P PPL IE IE C 10 0 55 Europe/Dublin 2010-08-14 +2962011 Portsalon Portsalon Port an tSalainn,Portsalon 55.2 -7.61667 P PPL IE IE U 06 0 1 Europe/Dublin 2010-08-14 +2962012 Portroe Portroe An Port Rua,Portroe 52.8825 -8.35028 P PPL IE M 38 0 110 Europe/Dublin 2010-11-04 +2962013 Portrinard Portrinard 52.40139 -9.31972 P PPL IE M 16 0 77 Europe/Dublin 2010-08-14 +2962014 Portobello Harbour Portobello Harbour 53.31667 -6.26667 H HBR IE 00 0 29 Europe/Dublin 1993-12-27 +2962015 Portnoo Portnoo 54.8425 -8.46667 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2962016 Portnard House Portnard House 52.63528 -8.34806 S EST IE M 16 0 78 Europe/Dublin 2010-08-14 +2962017 Portnalong Portnalong 55.31667 -7.18333 P PPL IE U 06 0 35 Europe/Dublin 1993-12-27 +2962018 Portnafrankagh Portnafrankagh 54.23333 -10.08333 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2962019 Portmarnock Portmarnock Port Mearnog,Port Mearnóg,Portmarnock 53.42306 -6.1375 P PPL IE L 07 8037 1 Europe/Dublin 2010-11-04 +2962020 Portmagee Channel Portmagee Channel 51.90028 -10.31667 H CHN IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962021 Portmagee Portmagee An Caladh,Portmagee 51.88611 -10.36167 P PPL IE M 11 0 26 Europe/Dublin 2010-08-14 +2962022 Port Lough Port Lough 54.99056 -7.46306 H LK IE U 06 0 61 Europe/Dublin 2010-08-14 +2962023 Portloman Portloman 53.56667 -7.41667 S EST IE L 29 0 144 Europe/Dublin 1993-12-27 +2962024 Portlick Castle Portlick Castle 53.48333 -7.9 S EST IE L 29 0 119 Europe/Dublin 1993-12-27 +2962025 Portlaw Portlaw Port Lach,Port Lách,Portlaw 52.28833 -7.32056 P PPL IE M 27 0 31 Europe/Dublin 2010-08-14 +2962026 Port Laoise Port Laoise Maryboro',Maryborough,Port Laoighise,Port Laoise,Port Leix,Portlaoise 53.03441 -7.29979 P PPLA2 IE L 15 13622 139 Europe/Dublin 2010-08-14 +2962027 Porthall Station Porthall Station Porthall,Porthall Station 54.86667 -7.45 S RSTN IE IE 00 0 11 Europe/Dublin 2010-08-10 +2962028 Port Doon Port Doon 55.25611 -8.19389 H HBR IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962029 Portarlington Portarlington Cuil an tSudaire,Cúil an tSúdaire,Portarlington 53.16222 -7.19111 P PPL IE L 15 4293 83 Europe/Dublin 2010-08-14 +2962030 Portaleen Portaleen 55.31667 -7.16667 P PPL IE U 06 0 12 Europe/Dublin 1993-12-27 +2962031 Portahack Portahack 55.3 -7.15 P PPL IE U 06 0 1 Europe/Dublin 1993-12-27 +2962032 Portacloy Bay Portacloy Bay 54.33333 -9.78333 H BAY IE C 20 0 82 Europe/Dublin 2010-08-14 +2962033 Portacloy Portacloy 54.33056 -9.79028 P PPL IE C 20 0 125 Europe/Dublin 2010-08-14 +2962034 Port Port 53.84417 -6.26111 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +2962035 Pollremon Pollremon 53.68333 -8.63333 P PPL IE C 10 0 79 Europe/Dublin 1993-12-27 +2962036 Pollmounty River Pollmounty River 52.45 -6.91667 H STM IE L 30 0 31 Europe/Dublin 2010-08-14 +2962037 Pollboy Pollboy 53.31417 -8.20222 P PPL IE C 10 0 64 Europe/Dublin 2010-08-14 +2962038 Pollaphuca Waterfall Pollaphuca Waterfall Pollaphuca Waterfall,Puck's Pool,Puck’s Pool 53.11667 -6.58917 H FLLS IE IE L 31 0 166 Europe/Dublin 2010-08-14 +2962039 Pollaphuca Reservoir Pollaphuca Reservoir Liffey Reservoir,Pollaphuca Reservoir,Poulaphouca Reservoir,Poulaphuca Dam 53.13333 -6.51667 H RSV IE L 31 0 203 Europe/Dublin 2010-08-10 +2962040 Pollan Bay Pollan Bay 55.3 -7.4 H BAY IE U 06 0 11 Europe/Dublin 2010-08-14 +2962041 The Pocket The Pocket 51.73417 -9.83083 T VAL IE M 11 0 377 Europe/Dublin 2010-08-14 +2962042 Pluck Pluck 54.94111 -7.64056 P PPL IE U 06 0 43 Europe/Dublin 2010-08-14 +2962043 Platin Hall Platin Hall Platin Hall,Platten Hall 53.68972 -6.39639 S EST IE IE L 21 0 45 Europe/Dublin 2010-08-14 +2962044 Plassy Plassy 52.66667 -8.56667 S EST IE M 16 0 39 Europe/Dublin 1993-12-27 +2962045 Piltown Piltown Baile an Phoill,Pilltown,Piltown 52.35333 -7.34028 P PPL IE L 13 0 5 Europe/Dublin 2010-08-14 +2962046 Pilltown House Pilltown House 52.31028 -6.96667 S EST IE L 30 0 29 Europe/Dublin 2010-08-14 +2962047 Pilltown Pilltown 51.96667 -7.8 P PPL IE M 04 0 45 Europe/Dublin 2010-08-14 +2962048 The Pike The Pike 53.00306 -8.00778 P PPL IE M 26 0 159 Europe/Dublin 2010-08-14 +2962049 Pig Island Pig Island 54.33194 -9.72 T ISL IE C 20 0 1 Europe/Dublin 2010-08-14 +2962050 Pigeon House Harbour Pigeon House Harbour Pigeon Harbour,Pigeon House Harbour 53.33333 -6.2 H HBR IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2962051 Pierpoint Pierpoint 52.13333 -8.55 P PPL IE M 04 0 154 Europe/Dublin 1993-12-27 +2962052 Pickle Point Pickle Point 54.215 -9.95611 T PT IE C 20 0 1 Europe/Dublin 2010-08-14 +2962053 Phoenix Park Phoenix Park Pairc an Fhionnuisce,Phoenix Park,Phoenixpark,Phoenixparken,Páirc an Fhionnuisce,フェニックス・パーク 53.35611 -6.32889 L PRK IE IE L 07 0 13 Europe/Dublin 2010-08-14 +2962054 Daingean Daingean An Daingean,Daingean,Philipstown 53.29611 -7.28944 P PPL IE L 23 0 85 Europe/Dublin 2011-02-15 +2962055 Phepotstown House Phepotstown House 53.44222 -6.65333 S EST IE L 21 0 78 Europe/Dublin 2010-08-14 +2962056 Pettigoe Pettigoe Paiteago,Paiteagó,Pettigo,Pettigoe 54.55 -7.83333 P PPL IE 00 0 68 Europe/Dublin 1998-02-19 +2962057 Peterswell Peterswell Peterswell,Tobar Pheadair 53.115 -8.74139 P PPL IE IE C 10 0 58 Europe/Dublin 2010-08-14 +2962058 Petersville Petersville 53.82583 -6.89083 P PPL IE L 21 0 135 Europe/Dublin 2010-08-14 +2962059 Percy Mount Percy Mount 54.26833 -8.42306 S EST IE C 25 0 35 Europe/Dublin 2010-08-14 +2962060 Pedlars Cross Roads Pedlars Cross Roads 51.69278 -8.86056 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2962061 Peafield House Peafield House 52.95528 -7.56306 S EST IE L 15 0 125 Europe/Dublin 2010-08-14 +2962062 Paulsworth Paulsworth 51.97417 -7.70333 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962063 Paulstown Castle Paulstown Castle 52.66222 -7.01639 S EST IE L 13 0 40 Europe/Dublin 2010-08-14 +2962064 Pass of Kilbride Pass of Kilbride 53.44028 -7.23167 P PPL IE L 29 0 138 Europe/Dublin 2010-08-14 +2962065 Pass House Pass House 52.98333 -7.26667 S EST IE L 15 0 151 Europe/Dublin 2010-08-14 +2962066 Passage West Passage West An Pasaiste,An Pasáiste,Passage,Passage West 51.87389 -8.34444 P PPL IE M 04 4907 19 Europe/Dublin 2010-08-14 +2962067 Passage East Passage East An Pasaiste,An Pasáiste,Passage,Passage East 52.23639 -6.96806 P PPL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2962068 Partry Mountains Partry Mountains 53.65 -9.5 T MTS IE C 20 0 413 Europe/Dublin 1993-12-27 +2962069 Partry Partry 53.7 -9.28333 P PPL IE C 20 0 53 Europe/Dublin 1993-12-27 +2962070 Parteen Villa Parteen Villa Parteen,Parteen Villa 52.75 -8.46667 S HSE IE IE M 26 0 57 Europe/Dublin 2010-11-04 +2962071 Parsonstown House Parsonstown House Parsonstown,Parsonstown House 53.78083 -6.6375 S EST IE IE L 21 0 95 Europe/Dublin 2010-08-14 +2962072 Parkmore Point Parkmore Point 52.10861 -10.35028 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962073 Park Park 54.42694 -8.31444 P PPL IE C 14 0 72 Europe/Dublin 2010-08-14 +2962074 Paradise House Paradise House 52.71139 -9.07194 S EST IE M 03 0 12 Europe/Dublin 2010-08-14 +2962075 The Paps The Paps 52.01667 -9.26667 T MTS IE M 11 0 446 Europe/Dublin 1993-12-27 +2962076 Palmerstown House Palmerstown House 53.24611 -6.62639 S EST IE L 12 0 118 Europe/Dublin 2010-08-14 +2962077 Palmerstown House Palmerstown House 53.09278 -8.19889 S BLDG IE C 10 0 55 Europe/Dublin 2010-08-14 +2962078 Palmerstown Bridge Palmerstown Bridge Palmerstown,Palmerstown Bridge 54.22389 -9.26889 P PPL IE IE C 20 0 35 Europe/Dublin 2010-08-14 +2962079 Palmerston Palmerston 53.36278 -6.36556 P PPL IE L 07 0 18 Europe/Dublin 2010-08-14 +2962080 Pallaskenry Pallaskenry Pailis Chaonrai,Pailís Chaonraí,Pallaskenry 52.64306 -8.86889 P PPL IE M 16 0 4 Europe/Dublin 2010-08-14 +2962081 Pallas House Pallas House 53.2275 -7.60278 S EST IE L 23 0 77 Europe/Dublin 2010-08-14 +2962082 Pallas Grean Pallas Grean New Pallas Grean,Pallas Grean 52.56972 -8.33556 P PPL IE IE M 16 0 67 Europe/Dublin 2010-08-14 +2962083 Pallas Grean Pallas Grean Old Pallas,Pallas Grean,Pallasgreen 52.54722 -8.3525 P PPL IE IE M 16 0 144 Europe/Dublin 2010-08-14 +2962084 Pallas Pallas 53.56667 -7.7 P PPL IE L 18 0 69 Europe/Dublin 1993-12-27 +2962085 Pallas Pallas 53.1225 -8.36083 S EST IE C 10 0 69 Europe/Dublin 2010-08-14 +2962086 Palatine Palatine 52.86389 -6.87889 P PPL IE L 12 0 77 Europe/Dublin 2010-08-14 +2962087 Palace House Palace House 52.42167 -6.8075 S EST IE L 30 0 111 Europe/Dublin 2010-08-14 +2962088 Palace East Junction Palace East Junction Palace East Junction,Palace East Junction Station,Palace East Station 52.41667 -6.8 S RSTN IE IE L 30 0 114 Europe/Dublin 2010-08-14 +2962089 Pakenham Hall Pakenham Hall 53.66667 -7.31667 S EST IE L 29 0 80 Europe/Dublin 1993-12-27 +2962090 Painestown Painestown 53.68333 -6.3 P PPL IE L 21 0 1 Europe/Dublin 1993-12-27 +2962091 Paddock Paddock 52.44583 -9.76667 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +2962092 Oyster Haven Oyster Haven 51.68611 -8.45389 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962093 Owveg River Owveg River 52.35 -9.35 H STM IE M 11 0 106 Europe/Dublin 1993-12-27 +2962094 Owvane River Owvane River 51.73139 -9.44083 H STM IE M 04 0 25 Europe/Dublin 2010-08-14 +2962095 Ow River Ow River 52.84889 -6.34139 H STM IE L 31 0 89 Europe/Dublin 2010-08-14 +2962096 Ow River Ow River 52.84694 -6.33917 H STM IE L 31 0 89 Europe/Dublin 2010-08-14 +2962097 Owgarriff River Owgarriff River Ougarriff,Owgarriff River 52.03333 -9.45 H STM IE M 11 0 72 Europe/Dublin 2010-08-10 +2962098 Owey Sound Owey Sound 55.05 -8.43333 H SD IE U 06 0 1 Europe/Dublin 1993-12-27 +2962099 Owey Island Owey Island Owey Island,Uaigh 55.05 -8.45 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962100 Owenwee River Owenwee River 53.78333 -9.58333 H STM IE C 20 0 31 Europe/Dublin 1993-12-27 +2962101 Owenur River Owenur River 53.81667 -8.1 H STM IE C 24 0 73 Europe/Dublin 1993-12-27 +2962102 Owentocker River Owentocker River Owentocher River,Owentocker River 54.76278 -8.42278 H STM IE IE U 06 0 32 Europe/Dublin 2010-08-14 +2962103 Owentaraglin River Owentaraglin River 52.08333 -9.13333 H STM IE M 04 0 128 Europe/Dublin 1993-12-27 +2962104 Owenslieve River Owenslieve River 52.74583 -9.03556 H STM IE M 03 0 1 Europe/Dublin 2010-08-14 +2962105 Owenroe River Owenroe River 51.94972 -9.87722 H STM IE M 11 0 148 Europe/Dublin 2010-08-14 +2962106 Owenreagh River Owenreagh River 51.98333 -9.61667 H STM IE M 11 0 89 Europe/Dublin 1993-12-27 +2962107 Owenogarney River Owenogarney River Owengarney River,Owenogarney River,Ratty River 52.7 -8.76667 H STM IE M 03 0 37 Europe/Dublin 2010-08-10 +2962108 Owennayle River Owennayle River 54.18333 -8.03333 H STM IE 00 0 64 Europe/Dublin 1993-12-27 +2962109 Owenmore River Owenmore River 54.2125 -7.94917 H STM IE U 02 0 115 Europe/Dublin 2010-08-14 +2962110 Owenmore River Owenmore River 54.19111 -8.48306 H STM IE C 25 0 59 Europe/Dublin 1998-09-01 +2962111 Owenmore River Owenmore River 54.12056 -9.83222 H STM IE C 20 0 52 Europe/Dublin 2010-08-14 +2962112 Owenmore River Owenmore River 53.66667 -9.58333 H STM IE C 20 0 94 Europe/Dublin 1993-12-27 +2962113 Owenmore River Owenmore River 52.23 -10.17972 H STM IE M 11 0 4 Europe/Dublin 2010-08-14 +2962114 Owenkillew River Owenkillew River 55.11583 -7.40944 H STM IE U 06 0 100 Europe/Dublin 2010-08-14 +2962115 Owenkeal River Owenkeal River 52.18333 -9.01667 H STM IE M 04 0 152 Europe/Dublin 1993-12-27 +2962116 Oweniny River Oweniny River 54.11667 -9.57861 H STM IE C 20 0 75 Europe/Dublin 2010-08-14 +2962117 Owenglin River Owenglin River 53.48833 -10.02389 H STM IE C 10 0 48 Europe/Dublin 2010-08-14 +2962118 Owengarve Lough Owengarve Lough Owengarve,Owengarve Lough 53.43333 -9.7 H LK IE C 10 0 75 Europe/Dublin 2010-08-10 +2962119 Owengar River Owengar River 54.16361 -8.09917 H STM IE C 14 0 58 Europe/Dublin 2010-08-14 +2962120 Owengarriff River Owengarriff River Owengarriff River,Torc 52 -9.51667 H STM IE M 11 0 189 Europe/Dublin 2010-08-10 +2962121 Owenea River Owenea River 54.77472 -8.41306 H STM IE U 06 0 22 Europe/Dublin 2010-08-14 +2962122 Owenduff River Owenduff River 54.06889 -9.84222 H STM IE C 20 0 37 Europe/Dublin 2010-08-14 +2962123 Owenduff Owenduff 53.94806 -9.83611 P PPL IE C 20 0 35 Europe/Dublin 2010-08-14 +2962124 Owendalulleegh River Owendalulleegh River 53.025 -8.77833 H STM IE C 10 0 61 Europe/Dublin 1998-06-12 +2962125 Owencashla River Owencashla River 52.24083 -9.97194 H STM IE M 11 0 1 Europe/Dublin 2010-08-14 +2962126 Owencarrow River Owencarrow River 55.10083 -7.85806 H STM IE U 06 0 56 Europe/Dublin 2010-08-14 +2962127 Owenbrin River Owenbrin River 53.6 -9.43333 H STM IE C 20 0 59 Europe/Dublin 1993-12-27 +2962128 Owenboy River Owenboy River 55.15 -7.4 H STM IE U 06 0 115 Europe/Dublin 1993-12-27 +2962129 Owenboy River Owenboy River 54.175 -8.52861 H STM IE C 25 0 67 Europe/Dublin 2010-08-14 +2962130 Owenboy River Owenboy River 51.81361 -8.28972 H STM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962131 Owenbeg River Owenbeg River 52.85167 -7.32833 H STM IE 00 0 115 Europe/Dublin 1998-03-23 +2962132 Owenbeg River Owenbeg River 51.75444 -9.40333 H STM IE M 04 0 59 Europe/Dublin 2010-08-14 +2962133 Owenavorragh River Owenavorragh River 52.64222 -6.22111 H STM IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2962134 Owenator River Owenator River 54.99917 -8.27583 H STM IE U 06 0 20 Europe/Dublin 2010-08-14 +2962135 Owenass River Owenass River 53.13083 -7.30944 H STM IE L 15 0 102 Europe/Dublin 2010-08-14 +2962136 Lough Owel Lough Owel Lough Owel 53.56667 -7.4 H LK IE L 29 0 129 Europe/Dublin 2010-08-10 +2962137 Avoca River Avoca River Abhainn Abhoca,Abhainn Abhóca,Avoca,Avoca River,Ovoca,Ovoca River 52.79083 -6.13528 H STM IE IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2962138 Vale of Avoca Vale of Avoca Avoca,Ovoca,Ovoca Valley,Vale of Avoca,Vale of Ovoca,Valley of Ovoca 52.83861 -6.21861 T VAL IE IE L 31 0 85 Europe/Dublin 2010-08-14 +2962139 Avoca Avoca Abhoca,Abhóca,Adoca,Avoca,Newbridge,Odoca,Ovoca 52.85278 -6.21694 P PPL IE L 31 0 65 Europe/Dublin 2010-08-14 +2962140 Ovens Ovens 51.86667 -8.66667 P PPL IE M 04 0 69 Europe/Dublin 2010-08-14 +2962141 Lough Ouver Lough Ouver 53.6 -8.4 H LK IE C 10 0 76 Europe/Dublin 1993-12-27 +2962142 Ourtnagapple Ourtnagapple 53.12806 -9.73806 P PPL IE C 10 0 18 Europe/Dublin 2010-08-14 +2962143 Oulart Oulart An tAbhallort,Oulart 52.50361 -6.38222 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2962144 Oughterard Oughterard Oughterard,Uachtar Ard 53.41667 -9.33333 P PPL IE C 10 0 45 Europe/Dublin 2010-08-14 +2962145 Lough Oughter Lough Oughter Lough Oughter 53.99444 -7.47444 H LK IE U 02 0 136 Europe/Dublin 2010-08-14 +2962146 Oughter Oughter 53.24722 -7.6875 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +2962147 Oughtdarnid Oughtdarnid Oughtdarnid,Oughtdaroid 54.6 -8.01667 T HLL IE U 06 0 273 170 Europe/Dublin 2010-08-14 +2962148 O’Sullivans Cascade O'Sullivans Cascade 52.03333 -9.58333 H FLLS IE M 11 0 58 Europe/Dublin 1993-12-27 +2962149 Orthon Island Orthon Island Orthon Island,Orthon Islet 51.68333 -9.71667 T ISL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962150 Ormond View Ormond View 53.15 -8.2 P PPL IE C 10 0 67 Europe/Dublin 2010-08-14 +2962151 Oristown Oristown 53.72556 -6.80111 P PPL IE L 21 0 60 Europe/Dublin 2010-08-14 +2962152 Oranmore Bay Oranmore Bay 53.26667 -8.95056 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962153 Oranmore Oranmore Oran Mor,Oranmore,Órán Mór 53.26833 -8.92 P PPL IE C 10 1758 7 Europe/Dublin 2010-08-14 +2962154 Oran Oran 53.66667 -8.33333 P PPL IE C 24 0 77 Europe/Dublin 1993-12-27 +2962155 Oorid Lough Oorid Lough Oorid,Oorid Lough 53.45 -9.61667 H LK IE C 10 0 80 Europe/Dublin 2010-08-10 +2962156 Oolagh River Oolagh River 52.39472 -9.31333 H STM IE M 16 0 74 Europe/Dublin 2010-08-14 +2962157 Oola Oola Oola,Ulla,Úlla 52.52972 -8.25833 P PPL IE M 16 0 95 Europe/Dublin 2010-08-14 +2962158 Onaght Onaght 53.15139 -9.79 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962159 Omey Island Omey Island Omey Island 53.53278 -10.16444 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +2962160 Omeath Omeath O Meith,Omeath,Ó Méith 54.08694 -6.26167 P PPL IE IE L 19 0 1 Europe/Dublin 2010-08-14 +2962161 O’Loughlins Castle O'Loughlins Castle 53.05 -9.2 S BLDG IE M 03 0 168 Europe/Dublin 1993-12-27 +2962162 Ollatrim River Ollatrim River 52.87417 -8.18806 H STM IE M 26 0 71 Europe/Dublin 2010-08-14 +2962163 Old Twopothouse Cross Roads Old Twopothouse Cross Roads 52.18333 -8.63333 P PPL IE M 04 0 94 Europe/Dublin 1993-12-27 +2962164 Old Town Old Town 54.94194 -7.74111 P PPL IE U 06 0 54 Europe/Dublin 2010-08-14 +2962165 Oldtown Oldtown 53.52528 -6.31556 P PPL IE L 07 0 54 Europe/Dublin 2010-08-14 +2962166 Old Town Old Town 52.90583 -7.37472 P PPL IE L 15 0 106 Europe/Dublin 2010-08-14 +2962167 Oldtown House Oldtown House Oldtown,Oldtown House 53.68333 -7.7 S HSEC IE IE L 18 0 109 Europe/Dublin 2010-08-14 +2962168 Old Ross Old Ross 52.3925 -6.82 P PPL IE L 30 0 84 Europe/Dublin 2010-08-14 +2962169 Oldleighlin Oldleighlin 52.73611 -7.02083 P PPL IE L 01 0 110 Europe/Dublin 2010-08-14 +2962170 Old Kilcullen Old Kilcullen 53.10639 -6.76528 P PPL IE L 12 2110 147 Europe/Dublin 2010-08-14 +2962171 Old Head of Kinsale Old Head of Kinsale Old Head of Kinsale 51.60833 -8.53778 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962172 Oldhead House Oldhead House Old Head Lodge,Oldhead House 53.76667 -9.78333 S EST IE C 20 0 33 Europe/Dublin 2010-08-10 +2962173 Old Head Old Head 53.78333 -9.78333 T CAPE IE C 20 0 7 Europe/Dublin 1993-12-27 +2962174 Oldglass Oldglass 52.85 -7.48333 S EST IE L 15 0 98 Europe/Dublin 2010-08-14 +2962175 Oldcourt Oldcourt 53.17556 -6.47056 P PPL IE L 31 0 276 Europe/Dublin 2010-08-14 +2962176 Oldcourt Oldcourt 52.34583 -6.97528 P PPL IE L 30 0 30 Europe/Dublin 2010-08-14 +2962177 Oldchapel Oldchapel 51.73667 -8.78556 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +2962178 Oldcastle Oldcastle 53.95 -9.03333 P PPL IE C 20 0 28 Europe/Dublin 1993-12-27 +2962179 Oldcastle Oldcastle An Seanchaislean,An Seanchaisleán,Oldcastle 53.76833 -7.15861 P PPL IE L 21 0 113 Europe/Dublin 2010-08-14 +2962180 Oldbridge Oldbridge 53.05 -6.27556 P PPL IE L 31 0 296 Europe/Dublin 2010-08-14 +2962181 Oily River Oily River 54.63333 -8.4 H STM IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962182 Oilgate Oilgate Maolan na nGabhar,Maolán na nGabhar,Oilgate 52.42667 -6.53889 P PPL IE L 30 0 53 Europe/Dublin 2010-08-14 +2962183 Lough O’Grady Lough O'Grady 52.9 -8.57278 H LK IE M 03 0 61 Europe/Dublin 2010-08-14 +2962184 Oghil House Oghil House 54.23694 -8.98417 S HSEC IE C 25 0 65 Europe/Dublin 2010-08-14 +2962185 Oghil Oghil 53.13639 -9.69806 P PPL IE C 10 0 5 Europe/Dublin 2010-08-14 +2962186 Lough O’Flynn Lough O'Flynn Lough O'Flyn,Lough O'Flynn,Lough O’Flyn,Lough O’Flynn 53.76667 -8.63333 H LK IE C 24 0 80 Europe/Dublin 2010-08-14 +2962187 Uíbh Fhailí Uibh Fhaili Contae Uibh Fhaili,Contae Uíbh Fhailí,County Offaly,King's County,Offally,Offaly 53.25 -7.5 A ADM2 IE L 23 65231 76 Europe/Dublin 2010-08-14 +2962188 O’Deas Castle O'Deas Castle 52.91444 -9.05806 S RUIN IE M 03 0 53 Europe/Dublin 2010-08-14 +2962189 O’Callaghansmills O'Callaghansmills 52.84139 -8.68639 P PPL IE M 03 0 59 Europe/Dublin 2010-08-14 +2962190 O’Briensbridge O'Briensbridge Droichead Ui Bhriain,Droichead Uí Bhriain,O'Briensbridge,O’Briensbridge 52.75472 -8.49694 P PPL IE M 03 0 46 Europe/Dublin 2010-08-14 +2962191 Oatfield House Oatfield House 53.28361 -8.38083 S BLDG IE C 10 0 76 Europe/Dublin 2010-08-14 +2962192 Oakport Lough Oakport Lough 53.98333 -8.17028 H LK IE C 24 0 72 Europe/Dublin 2010-08-14 +2962193 Oakport House Oakport House Oakport,Oakport House 53.98 -8.19194 S HSEC IE IE C 24 0 73 Europe/Dublin 2010-08-14 +2962194 Oakpark House Oakpark House Oakpark,Oakpark House 52.86194 -6.91472 S EST IE IE L 01 0 61 Europe/Dublin 2010-08-14 +2962195 Oak Park Oak Park 52.28333 -9.68333 S EST IE M 11 0 61 Europe/Dublin 1993-12-27 +2962196 Oakley Park Oakley Park 53.75944 -6.88583 S EST IE L 21 0 76 Europe/Dublin 2010-08-14 +2962197 Oakley Park Oakley Park 53.1 -8.21667 S EST IE C 10 0 62 Europe/Dublin 2010-08-14 +2962198 Oakley House Oakley House Oakley,Oakley House 53.06722 -7.80917 S EST IE IE L 23 0 110 Europe/Dublin 2010-08-14 +2962199 Oaklands House Oaklands House Oaklands,Oaklands House 52.38222 -6.94222 S HSEC IE IE L 30 0 63 Europe/Dublin 2010-08-14 +2962200 Oakhampton House Oakhampton House 52.72556 -8.38028 S BLDG IE M 26 0 97 Europe/Dublin 2010-08-14 +2962201 Oakfield House Oakfield House 54.88056 -7.5775 S EST IE U 06 0 70 Europe/Dublin 2010-08-14 +2962202 Nursetown Nursetown 52.08333 -8.7 P PPL IE M 04 0 167 Europe/Dublin 1993-12-27 +2962203 Nurney Nurney 53.09583 -6.95111 P PPL IE L 12 0 78 Europe/Dublin 2010-08-14 +2962204 Nurney Nurney An Urnai,An Urnaí,Nurney 52.75056 -6.90972 P PPL IE L 01 0 102 Europe/Dublin 2010-08-14 +2962205 Nowen Hill Nowen Hill Nowen Hill,Owen Hill 51.7325 -9.24528 T MT IE IE M 04 0 300 Europe/Dublin 2010-08-14 +2962206 Noughaval Noughaval 53.01889 -9.17056 P PPL IE M 03 0 116 Europe/Dublin 2010-08-14 +2962207 Nose of Howth Nose of Howth 53.38528 -6.04556 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2962208 North Wall Station North Wall Station North Wall Western Terminal 53.35 -6.25 S RSTN IE IE L 07 0 1 Europe/Dublin 2010-08-14 +2962209 North Sound North Sound 53.1925 -9.73833 H SD IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962210 North Ring North Ring 51.615 -8.85889 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962211 Northlands Northlands 53.96306 -6.85889 P PPL IE U 02 0 153 Europe/Dublin 2010-08-14 +2962212 Northgrove Northgrove 53.0275 -7.59722 P PPL IE L 15 0 208 Europe/Dublin 2010-08-14 +2962213 North Bull Island North Bull Island An Bulla Thuaidh 53.37139 -6.15 T ISL IE IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2962214 River Nore River Nore River Nore 52.42417 -6.95806 H STM IE L 13 0 12 Europe/Dublin 2011-01-04 +2962215 Port Noo Port Noo 54.83333 -8.46667 H INLT IE U 06 0 17 Europe/Dublin 1993-12-27 +2962216 Nohaval Nohaval Nohaval,Nohoval 51.72472 -8.40694 P PPL IE IE M 04 0 26 Europe/Dublin 2010-08-14 +2962217 Nobber Nobber Nobber 53.82278 -6.75056 P PPL IE L 21 0 68 Europe/Dublin 2010-08-14 +2962218 Ninemilehouse Ninemilehouse 52.46472 -7.46028 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +2962219 River Nier River Nier 52.27722 -7.78444 H STM IE M 27 0 53 Europe/Dublin 2010-08-14 +2962220 Nicker Nicker 52.56194 -8.35333 P PPL IE M 16 0 106 Europe/Dublin 2010-08-14 +2962221 New Twopothouse Village New Twopothouse Village New Two pot House,New Twopothouse Village,Twopothouse 52.18333 -8.68333 P PPL IE M 04 0 140 Europe/Dublin 2010-08-10 +2962222 Newtown Trim Newtown Trim 53.55611 -6.77 P PPL IE L 21 6781 60 Europe/Dublin 2010-08-14 +2962223 Newtown Sandes Newtown Sandes Maigh Mheain,Maigh Mheáin,Newtown Sandes 52.50056 -9.37139 P PPL IE M 11 0 73 Europe/Dublin 2010-08-14 +2962224 Newtown Mount Kennedy Newtown Mount Kennedy Baile an Chinneidigh,Baile an Chinnéidigh,Newton Mount Kennedy,Newtown Mount Kennedy 53.08972 -6.11194 P PPL IE L 31 0 102 Europe/Dublin 2010-08-14 +2962225 Newtown Monasterboice Newtown Monasterboice Monasterboice,Newtown Monasterboice 53.77333 -6.39861 P PPL IE IE L 19 0 157 Europe/Dublin 2010-08-14 +2962226 Newtownlynch Newtownlynch 53.16611 -9.02083 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2962227 Newtown Lodge Newtown Lodge Newtown House,Newtown Lodge 52.0425 -8.08806 S EST IE IE M 04 0 125 Europe/Dublin 2010-08-14 +2962228 Newtown House Newtown House 53.53333 -6.28333 S EST IE 00 0 44 Europe/Dublin 1993-12-27 +2962229 Newtown House Newtown House Newtown,Newtown House 52.75 -6.73333 S EST IE IE L 01 0 80 Europe/Dublin 2010-08-14 +2962230 Newtown House Newtown House Newtown,Newtown House 52.54528 -7.30833 S EST IE IE L 13 0 64 Europe/Dublin 2010-08-14 +2962231 Newtown Gore Newtown Gore 54.04306 -7.67306 P PPL IE C 14 0 75 Europe/Dublin 2010-08-14 +2962232 Newtownfortescue Newtownfortescue Newtownfortescue,Newtownfortesque 53.76611 -6.54528 P PPL IE IE L 21 0 151 Europe/Dublin 2010-08-14 +2962233 Newtown Forbes Newtown Forbes An Lios Breac,Newtown Forbes 53.76667 -7.83333 P PPL IE L 18 0 74 Europe/Dublin 2010-08-14 +2962234 Newtown Daly Newtown Daly 53.17694 -8.48694 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2962235 Newtown Cunningham Newtown Cunningham An Baile Nua,Newtown Cunningham 54.99639 -7.51917 P PPL IE U 06 0 34 Europe/Dublin 2010-08-14 +2962236 Newtown Castle Newtown Castle 53.1 -9.16667 S BLDG IE M 03 0 67 Europe/Dublin 2010-08-14 +2962237 Newtownburke Newtownburke 54.76667 -8.48333 P PPL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2962238 Newtownanner House Newtownanner House Newtown Anner,Newtownanner House 52.37222 -7.64139 S EST IE IE M 26 0 30 Europe/Dublin 2010-11-04 +2962239 New Town New Town 53.58333 -7.56667 P PPL IE L 29 0 76 Europe/Dublin 1993-12-27 +2962240 Newtown Newtown 53.39611 -6.75861 P PPL IE L 12 0 87 Europe/Dublin 2010-08-14 +2962241 New Town New Town 53.28333 -8.1 P PPL IE C 24 0 59 Europe/Dublin 2010-08-14 +2962242 Newtown Newtown 53.25889 -8.45361 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2962243 Newtown Newtown 53.15111 -8.0125 P PPL IE L 23 0 57 Europe/Dublin 2010-08-14 +2962244 Newtown Newtown 52.89194 -7.73111 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +2962245 Newtown Newtown 52.86222 -7.12722 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +2962246 Newtown Newtown 52.55 -7.3 P PPL IE L 13 0 63 Europe/Dublin 2010-08-14 +2962247 Newtownshandrum Newtownshandrum Baile Nua Sheandroma,Newtown,Newtownshandrum 52.35 -8.76667 P PPL IE M 04 0 122 Europe/Dublin 2010-08-14 +2962248 Newtown Newtown 52.22167 -7.38889 P PPL IE M 27 0 123 Europe/Dublin 2010-08-14 +2962249 Newtown Newtown 52.16667 -7.78333 P PPL IE M 27 0 154 Europe/Dublin 1993-12-27 +2962250 Newtown Newtown 53.45 -8.7 S EST IE C 10 0 59 Europe/Dublin 1993-12-27 +2962251 Newstone House Newstone House 53.86667 -6.66667 S BLDG IE L 21 0 73 Europe/Dublin 1993-12-27 +2962252 Ros Mhic Thriúin Ros Mhic Thriuin New Ross,Ross 52.39667 -6.93667 P PPL IE L 30 6695 64 Europe/Dublin 2010-08-14 +2962253 New Quay New Quay 53.15472 -9.07972 P PPL IE M 03 0 11 Europe/Dublin 2010-08-14 +2962254 Newport River Newport River Beltra,Newport River 53.88278 -9.55806 H STM IE IE C 20 0 7 Europe/Dublin 2010-08-14 +2962255 Newport Bay Newport Bay 53.87389 -9.62111 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2962256 Newport Newport Baile Ui Fhiachain,Baile Uí Fhiacháin,Newport,Newport Pratt 53.88333 -9.55 P PPL IE C 20 0 14 Europe/Dublin 2010-08-14 +2962257 Newport Newport An Port Nua,Newport 52.71111 -8.40972 P PPL IE M 38 0 66 Europe/Dublin 2010-11-04 +2962258 Newpark House Newpark House Newpark,Newpark House 54.11417 -8.46278 S HSEC IE IE C 25 0 76 Europe/Dublin 2010-08-14 +2962259 Newpark Newpark 53.35889 -6.76194 S EST IE L 12 0 89 Europe/Dublin 2010-08-14 +2962260 Newmills Newmills 54.92917 -7.80722 P PPL IE U 06 0 78 Europe/Dublin 2010-08-14 +2962261 Newmills Newmills Milltown,Newmills 51.58722 -8.97944 P PPL IE IE M 04 0 72 Europe/Dublin 2010-08-14 +2962262 Newmarket on Fergus Newmarket on Fergus Cora Chaitlin,Cora Chaitlín,Newmarket on Fergus 52.76 -8.89556 P PPL IE M 03 1754 7 Europe/Dublin 2010-08-14 +2962263 Newmarket Court Newmarket Court Newmarket Court,Newmarket House 52.2 -9 S EST IE M 04 0 140 Europe/Dublin 2010-08-10 +2962264 Newmarket Newmarket 52.47333 -7.25917 P PPL IE L 13 0 89 Europe/Dublin 2010-08-14 +2962265 Newmarket Newmarket Ath Trasna,Newmarket,Áth Trasna 52.21667 -9 P PPL IE M 04 0 147 Europe/Dublin 2010-08-14 +2962266 New Inn New Inn 53.90194 -7.17694 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +2962267 New Inn New Inn 53.30028 -8.48389 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2962268 Newinn Newinn Loch Ceann,Newinn 52.44 -7.8825 P PPL IE M 40 0 95 Europe/Dublin 2010-11-04 +2962269 Newhall House Newhall House Newhall,Newhall House 52.80917 -9.01083 S EST IE IE M 03 0 126 Europe/Dublin 2010-08-14 +2962270 Newgrove House Newgrove House Newgrove,Newgrove House 52.87417 -8.81583 S EST IE IE M 03 0 59 Europe/Dublin 2010-08-14 +2962271 Newgrange House Newgrange House 53.69167 -6.47472 S BLDG IE L 21 0 20 Europe/Dublin 2010-08-14 +2962272 Newgrange Newgrange Newgrange,n'jugrejndzh,niu ge lai qi mu,Ньюгрейндж,纽格莱奇墓 53.68333 -6.46667 S ANS IE L 21 0 48 Europe/Dublin 2010-08-10 +2962273 Newfoundland Bay Newfoundland Bay 51.69861 -8.41667 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962274 Newfort Newfort 52.4275 -6.39639 S EST IE L 30 0 29 Europe/Dublin 2010-08-14 +2962275 Newforest House Newforest House New Forest,Newforest House 53.53333 -8.48333 S EST IE C 10 0 74 Europe/Dublin 2010-08-10 +2962276 Newcestown Newcestown Newcestown 51.78222 -8.87361 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2962277 Newcastle House Newcastle House Newcastle,Newcastle House 53.91667 -9.03639 S EST IE IE C 20 0 27 Europe/Dublin 2010-08-14 +2962278 Newcastle House Newcastle House 53.78278 -7.12333 S EST IE L 21 0 139 Europe/Dublin 2010-08-14 +2962279 Newcastle House Newcastle House 53.40417 -7.3575 S EST IE L 29 0 134 Europe/Dublin 2010-08-14 +2962280 Newcastle Newcastle 53.34083 -8.67833 P PPL IE C 10 0 60 Europe/Dublin 2010-08-14 +2962281 Newcastle Newcastle An Caislean Nua,An Caisleán Nua,Newcastle 53.30111 -6.50222 P PPL IE L 39 0 91 Europe/Dublin 2010-11-04 +2962282 Newcastle Newcastle An Caislean Nua,An Caisleán Nua,Newcastle 53.06833 -6.06583 P PPL IE L 31 0 12 Europe/Dublin 2010-08-14 +2962283 Newcastle West Newcastle West An Caislean Nua,An Caisleán Nua,Newcastle,Newcastle West 52.44917 -9.06111 P PPL IE M 16 4184 67 Europe/Dublin 2010-08-14 +2962284 Newcastle Newcastle 52.27278 -7.81111 P PPL IE M 26 0 74 Europe/Dublin 2010-08-14 +2962285 Newcastle Newcastle 53.71667 -7.36667 S EST IE L 29 0 76 Europe/Dublin 1993-12-27 +2962286 Newcastle Newcastle 53.55 -7.71667 S EST IE L 18 0 74 Europe/Dublin 1993-12-27 +2962287 Newbrook House Newbrook House Newbrook,Newbrook House 53.71667 -9.15 S RUIN IE C 20 0 56 Europe/Dublin 2010-08-10 +2962288 Newbridge House Newbridge House Newbridge,Newbridge House 53.49083 -6.17528 S EST IE IE L 07 0 1 Europe/Dublin 2010-11-04 +2962289 Newbridge Newbridge 53.5 -8.43333 P PPL IE C 10 0 70 Europe/Dublin 1993-12-27 +2962290 Droichead Nua Droichead Nua Droichead Nua,Droichead Nuadh,Newbridge 53.18194 -6.79667 P PPL IE L 12 18860 108 Europe/Dublin 2010-08-14 +2962291 Newbridge Newbridge 52.55361 -8.99139 P PPL IE M 16 0 20 Europe/Dublin 2010-08-14 +2962292 Newbliss House Newbliss House 54.15417 -7.14278 S EST IE U 22 0 107 Europe/Dublin 2010-08-14 +2962293 Newbliss Newbliss Cuil Darach,Cúil Darach,Newbliss 54.15639 -7.135 P PPL IE U 22 0 94 Europe/Dublin 2010-08-14 +2962294 New Birmingham New Birmingham 52.61583 -7.64028 P PPL IE M 26 0 158 Europe/Dublin 2010-08-14 +2962295 Newberry House Newberry House Newberry House,Newberry Manor 52.11667 -8.68333 S HSEC IE IE M 04 0 68 Europe/Dublin 2010-08-14 +2962296 Newberry Hall Newberry Hall 53.35528 -6.96056 S EST IE L 12 0 82 Europe/Dublin 2010-08-14 +2962297 Newberry Newberry 53.13361 -6.725 P PPL IE L 12 0 115 Europe/Dublin 2010-08-14 +2962298 Newbawn Newbawn 52.34028 -6.78444 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2962299 Netley House Netley House Netley,Netley House 54.14528 -9.28611 S HSEC IE IE C 20 0 42 Europe/Dublin 2010-08-14 +2962300 Nethertown Nethertown 52.18056 -6.35944 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2962301 Nephin Beg Nephin Beg 54.03333 -9.63333 T MT IE C 20 0 629 477 Europe/Dublin 2010-08-14 +2962302 Nephin Nephin Nephin 54.01667 -9.36667 T MT IE C 20 0 806 387 Europe/Dublin 2010-08-14 +2962303 Nenagh River Nenagh River 52.92639 -8.27278 H STM IE M 26 0 66 Europe/Dublin 2010-08-14 +2962304 Nenagh Nenagh An tAonach,Nenagh,The Meeting 52.86194 -8.19667 P PPL IE M 38 5500 71 Europe/Dublin 2010-11-04 +2962305 Nealstown Nealstown 52.99028 -7.70278 P PPL IE L 15 0 257 Europe/Dublin 2010-08-14 +2962306 Neale Neale 53.56667 -9.23333 P PPL IE C 20 0 39 Europe/Dublin 1993-12-27 +2962307 Navan Junction Navan Junction 53.65 -6.7 S RSTN IE L 21 0 46 Europe/Dublin 1993-12-27 +2962308 An Uaimh An Uaimh Navan 53.65278 -6.68139 P PPLA2 IE L 21 24545 42 Europe/Dublin 2010-09-05 +2962309 Lough Naulla Lough Naulla 53.2725 -9.34222 H LK IE C 10 0 71 Europe/Dublin 2010-08-14 +2962310 Naul Naul 53.58667 -6.28972 P PPL IE L 07 0 77 Europe/Dublin 2010-08-14 +2962311 Narraghmore Narraghmore 53.0475 -6.83444 P PPL IE L 12 0 141 Europe/Dublin 2010-08-14 +2962312 Naran Naran Naran,Narin 54.83944 -8.47333 P PPL IE IE U 06 0 13 Europe/Dublin 2010-08-14 +2962313 Nantinan House Nantinan House 52.56417 -8.95472 S EST IE M 16 0 23 Europe/Dublin 2010-08-14 +2962314 Lough Nanoge Lough Nanoge 53.85 -8.75 H LK IE C 20 0 68 Europe/Dublin 1993-12-27 +2962315 River Nanny River Nanny 53.66667 -6.23333 H STM IE L 21 0 -9999 Europe/Dublin 1993-12-27 +2962316 Lough Naminna Lough Naminna 52.78333 -9.2175 H LK IE M 03 0 153 Europe/Dublin 2010-08-14 +2962317 Lough Namanfin Lough Namanfin 54.70278 -8.31389 H LK IE U 06 0 200 Europe/Dublin 2010-08-14 +2962318 Lough Nalughraman Lough Nalughraman 54.74556 -8.53167 H LK IE U 06 0 160 Europe/Dublin 2010-08-14 +2962319 Lough Nahillion Lough Nahillion 53.41667 -9.51667 H LK IE C 10 0 82 Europe/Dublin 1993-12-27 +2962320 Lough Nahanagan Lough Nahanagan Loch na hOnchon,Lough Nahanagan 53.02806 -6.39306 H LK IE IE L 31 0 573 Europe/Dublin 2010-08-14 +2962321 Nags Head Nags Head 53.56056 -6.27167 P PPL IE L 07 0 150 Europe/Dublin 2010-08-14 +2962322 Nagles Mountains Nagles Mountains 52.11278 -8.47389 T MTS IE M 04 0 278 Europe/Dublin 2010-08-14 +2962323 Lough Nageltia Lough Nageltia 53.75 -9.35 H LK IE C 20 0 58 Europe/Dublin 1993-12-27 +2962324 Lough Nageage Lough Nageage 54.61278 -7.73667 H LK IE U 06 0 166 Europe/Dublin 2010-08-14 +2962325 Lough Nagarrivhan Lough Nagarrivhan 53.36778 -9.50639 H LK IE C 10 0 91 Europe/Dublin 2010-08-14 +2962326 Lough Nafooey Lough Nafooey 53.58333 -9.55 H LK IE C 10 0 132 Europe/Dublin 1993-12-27 +2962327 Nadreegeel Lough Nadreegeel Lough 53.88389 -7.17194 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +2962328 Lough Nadarragh Lough Nadarragh 54.58389 -7.99889 H LK IE U 06 0 143 Europe/Dublin 2010-08-14 +2962329 Nad Nad 52.06667 -8.83333 P PPL IE M 04 0 259 Europe/Dublin 1993-12-27 +2962330 Lough Nacung Upper Lough Nacung Upper 55.0325 -8.16917 H LK IE U 06 0 69 Europe/Dublin 2010-08-14 +2962331 Lough Nacung Lower Lough Nacung Lower 55.04583 -8.21139 H LK IE U 06 0 56 Europe/Dublin 2010-08-14 +2962332 Lough Nacorra Lough Nacorra 53.73333 -9.65 H LK IE C 20 0 194 Europe/Dublin 1993-12-27 +2962333 Lough Nablahy Lough Nablahy 53.85 -8.08333 H LK IE C 24 0 70 Europe/Dublin 1993-12-27 +2962334 An Nás An Nas Naas 53.21583 -6.66694 P PPLA2 IE L 12 20554 108 Europe/Dublin 2010-08-14 +2962335 Myshall Myshall Miseal,Myshall,Míseal 52.685 -6.77833 P PPL IE IE L 01 0 152 Europe/Dublin 2010-08-14 +2962336 Mylerstown Mylerstown 53.26667 -6.8 P PPL IE L 12 0 98 Europe/Dublin 1993-12-27 +2962337 Mweenish Island Mweenish Island 53.30444 -9.84722 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962338 Mweenish Bay Mweenish Bay 53.30583 -9.82306 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962339 Mweelrea Mweelrea Muilrea,Mweelrea 53.63333 -9.83333 T MT IE C 20 0 497 Europe/Dublin 2010-08-10 +2962340 Mweelaun Island Mweelaun Island 53.76111 -9.99833 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2962341 Mutton Island Mutton Island 53.25361 -9.05472 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962342 Mutton Island Mutton Island 52.81028 -9.52333 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2962343 Musheramore Musheramore 52.01667 -8.98333 T MT IE M 04 0 457 Europe/Dublin 1993-12-27 +2962344 Murroogh Murroogh Murroogh,Murrough 53.13139 -9.27444 P PPL IE M 03 0 104 Europe/Dublin 2010-08-14 +2962345 Murrisk Murrisk Murrisk 53.78333 -9.65 P PPL IE C 20 0 71 Europe/Dublin 2010-08-10 +2962346 Murragh Murragh 51.74306 -8.91417 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2962347 Murntown Murntown 52.28111 -6.52 P PPL IE L 30 0 60 Europe/Dublin 2010-08-14 +2962348 Muntervary Muntervary Muntervary,Sheep Head,Sheep's Head,Sheep’s Head 51.53333 -9.85 T CAPE IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962349 Munster River Munster River 52.55 -7.41667 H STM IE L 13 0 74 Europe/Dublin 2010-08-14 +2962350 Munster Munster Cuige Mumhan,Cúige Mumhan,Mumha,Munster,Province of Munster 52.25 -8.58333 L RGN IE M 04 0 92 Europe/Dublin 2010-08-10 +2962351 Munnilly House Munnilly House Munilly,Munnilly House 54.16167 -7.25306 S EST IE IE U 22 0 78 Europe/Dublin 2010-08-14 +2962352 Munhin River Munhin River 54.14 -9.81 H STM IE C 20 0 64 Europe/Dublin 2010-08-14 +2962353 Mungret Mungret Mungairit,Mungret 52.63583 -8.69667 P PPL IE M 16 0 5 Europe/Dublin 2010-08-14 +2962354 Multyfarnham Multyfarnham Muilte Farannain,Muilte Farannáin,Multyfarnham 53.61667 -7.38333 P PPL IE IE L 29 0 85 Europe/Dublin 2010-08-14 +2962355 Multeen River Multeen River 52.51667 -8.01667 H STM IE M 26 0 71 Europe/Dublin 2010-08-14 +2962356 Multeen River Multeen River 52.50806 -7.98861 H STM IE M 26 0 69 Europe/Dublin 2010-08-14 +2962357 Mulroy Bay Mulroy Bay 55.155 -7.685 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962358 Mulmosog Mountain Mulmosog Mountain 54.72722 -8.39833 T MT IE U 06 0 204 Europe/Dublin 2010-08-14 +2962359 Mulmosog House Mulmosog House 54.71667 -8.4 S BLDG IE U 06 0 181 Europe/Dublin 2010-08-14 +2962360 Mullycagh Mullycagh 53.04444 -6.61194 P PPL IE L 12 0 288 Europe/Dublin 2010-08-14 +2962361 An Muileann gCearr An Muileann gCearr An Muileann gCearr,Mullingar 53.53333 -7.35 P PPLA2 IE L 29 17262 101 112 Europe/Dublin 2010-09-05 +2962362 Mullinavat Mullinavat Muileann an Bhata,Mullinavat 52.36722 -7.16472 P PPL IE L 13 0 121 Europe/Dublin 2010-08-14 +2962363 Mullinahone Mullinahone Muileann na hUamhan,Mullinahone 52.51 -7.50417 P PPL IE M 40 0 81 Europe/Dublin 2010-11-04 +2962364 Mullet Peninsula Mullet Peninsula Mullet,Mullet Island,Mullet Peninsula 54.2 -10.05 T PEN IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2962365 Mullawornia Mullawornia 53.58333 -7.8 P PPL IE L 18 0 69 Europe/Dublin 1993-12-27 +2962366 Mullanalaghta Mullanalaghta 53.83333 -7.51667 P PPL IE L 18 0 98 Europe/Dublin 1993-12-27 +2962367 Mullaghoran Mullaghoran 53.85 -7.45 P PPL IE U 02 0 116 Europe/Dublin 1993-12-27 +2962368 Mullaghmore Mullaghmore 54.46639 -8.44861 P PPL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2962369 Mullaghgarve Mullaghgarve 54.08056 -7.93611 P PPL IE C 14 0 187 Europe/Dublin 2010-08-14 +2962370 Mullaghderg Lough Mullaghderg Lough 55.025 -8.37056 H LK IE U 06 0 23 Europe/Dublin 2010-08-14 +2962371 Mullaghcleevaun Mullaghcleevaun Mullach Cliabhain,Mullach Cliabháin,Mullaghcleevaun 53.10139 -6.40833 T MT IE L 31 0 849 594 Europe/Dublin 2010-08-14 +2962372 Mullaghareirk Mountains Mullaghareirk Mountains Mullaghareirk Mountains 52.33333 -9.13333 T MTS IE M 04 0 304 Europe/Dublin 2010-08-10 +2962373 Mullaghareirk Mullaghareirk 52.31667 -9.08333 T MT IE M 04 0 303 Europe/Dublin 1993-12-27 +2962374 Mullaghanoe River Mullaghanoe River 53.98972 -8.90917 H STM IE C 20 0 51 Europe/Dublin 1998-09-01 +2962375 Mullaghanattin Mullaghanattin 51.93611 -9.83389 T MT IE M 11 0 392 Europe/Dublin 2010-08-14 +2962376 Mullagh Mullagh An Mullach,Mullagh 53.81306 -6.95139 P PPL IE U 02 0 144 Europe/Dublin 2010-08-14 +2962377 Mullagh Mullagh 53.75 -9.73333 P PPL IE C 20 0 72 Europe/Dublin 1993-12-27 +2962378 Mullagh Mullagh 53.45667 -6.63167 P PPL IE L 21 0 80 Europe/Dublin 2010-08-14 +2962379 Mullagh Mullagh Mullach,Mullagh 52.80083 -9.41194 P PPL IE M 03 0 80 Europe/Dublin 2010-08-14 +2962380 Mullafin Mullafin 54.90028 -7.59028 T HLL IE U 06 0 209 155 Europe/Dublin 2010-08-14 +2962381 Mullacrew Mullacrew 53.93611 -6.54028 P PPL IE L 19 0 37 Europe/Dublin 2010-08-14 +2962382 Mullabryan Mullabryan 54.36667 -6.96667 P PPL IE 00 0 49 Europe/Dublin 1993-12-27 +2962383 Mulkeir River Mulkeir River Mulkear River,Mulkeir River 52.71917 -8.4 H STM IE IE M 26 0 76 Europe/Dublin 2010-11-04 +2962384 Mulkear River Mulkear River 52.67833 -8.54389 H STM IE M 16 0 37 Europe/Dublin 2010-08-14 +2962385 Muingwee Muingwee 52.35 -9.41667 P PPL IE M 11 0 214 Europe/Dublin 1993-12-27 +2962386 Muingvautia Muingvautia 52.3 -9.45 P PPL IE M 11 0 292 Europe/Dublin 1993-12-27 +2962387 Muingnabo River Muingnabo River 54.26 -9.73333 H STM IE C 20 0 33 Europe/Dublin 2010-08-14 +2962388 Muggorts Bay Muggorts Bay 52.035 -7.55889 H BAY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2962389 Muff Muff Magh,Muff 55.06667 -7.26667 P PPL IE IE U 06 0 1 Europe/Dublin 2010-08-14 +2962390 Mucksna Mountain Mucksna Mountain 51.85 -9.58333 T MT IE M 11 0 232 Europe/Dublin 2010-08-14 +2962391 Muckross Lake Muckross Lake Middle Lake,Muckross Lake 52 -9.51667 H LK IE M 11 0 189 Europe/Dublin 2010-08-10 +2962392 Muckross Abbey Muckross Abbey 52.01667 -9.5 S EST IE M 11 0 64 Europe/Dublin 1993-12-27 +2962393 Muckros Head Muckros Head 54.60861 -8.59167 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962394 Muckno Lake Muckno Lake Muckno Lake,Muckno Lough 54.11056 -6.69167 H LK IE IE U 22 0 127 Europe/Dublin 2010-08-14 +2962395 Muckloon House Muckloon House Muckloon,Muckloon House 53.46667 -8.28333 S EST IE IE 00 0 67 Europe/Dublin 2010-08-10 +2962396 Muckish Mountain Muckish Mountain Muckish Mountain 55.10528 -7.99417 T MT IE U 06 0 669 310 Europe/Dublin 2011-02-08 +2962397 Muckish Gap Muckish Gap 55.08639 -8.00056 T GAP IE U 06 0 293 Europe/Dublin 2010-08-14 +2962398 Muckanaght Muckanaght Muckanacht,Muckanaght 53.52194 -9.85694 T MT IE C 10 0 659 322 Europe/Dublin 2010-08-14 +2962399 Muckanagh Lough Muckanagh Lough 52.98333 -8.93472 H LK IE M 03 0 49 Europe/Dublin 2010-08-14 +2962400 Lough Muck Lough Muck 54.92278 -8.06611 H LK IE U 06 0 246 Europe/Dublin 2010-08-14 +2962401 Lough Muck Lough Muck 54.85333 -8.12389 H LK IE U 06 0 185 Europe/Dublin 2010-08-14 +2962402 Lough Muck Lough Muck 53.6 -9.85 H LK IE C 10 0 144 Europe/Dublin 1993-12-27 +2962403 Muccurragh Muccurragh 51.71667 -9.56667 P PPL IE M 04 0 67 Europe/Dublin 1993-12-27 +2962404 Moyvoughly Moyvoughly Moyvoughly 53.43333 -7.7 P PPL IE L 29 0 78 Europe/Dublin 2010-08-10 +2962405 Moyvore Moyvore 53.53333 -7.61667 P PPL IE L 29 0 80 Europe/Dublin 1993-12-27 +2962406 Moyview Moyview 54.17528 -9.13222 S EST IE C 25 0 1 Europe/Dublin 2010-08-14 +2962407 Moyvally Moyvally Moyvalley,Moyvally 53.42861 -6.91889 P PPL IE IE L 12 0 84 Europe/Dublin 2010-08-14 +2962408 Moyteoge Head Moyteoge Head 53.96 -10.19111 T CAPE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2962409 Moystown House Moystown House Moystown,Moystown House 53.23611 -7.93694 S EST IE IE L 23 0 57 Europe/Dublin 2010-08-14 +2962410 Moyriesk House Moyriesk House Moyriesk,Moyriesk House 52.84472 -8.87778 S EST IE IE M 03 0 97 Europe/Dublin 2010-08-14 +2962411 Moyree River Moyree River 52.94167 -8.95333 H STM IE M 03 0 38 Europe/Dublin 2010-08-14 +2962412 Moyrahan Point Moyrahan Point Moyraghan Point,Moyrahan Point 54.12306 -10.06639 T PT IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2962413 Moyrahan Bay Moyrahan Bay Moyrahan Bay,Moyrahan Creek 54.23333 -9.96667 H BAY IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2962414 Moyra Moyra 55.13333 -8.06667 P PPL IE U 06 0 59 Europe/Dublin 1993-12-27 +2962415 Moyour Bridge Moyour Bridge Moyour,Moyour Bridge 53.81667 -9.56667 P PPL IE C 20 0 3 Europe/Dublin 2010-08-10 +2962416 Moyode Castle Moyode Castle 53.25528 -8.70167 S HSEC IE C 10 0 41 Europe/Dublin 2010-08-14 +2962417 Moyny Moyny 54.3 -9.31667 P PPL IE C 20 0 98 Europe/Dublin 1993-12-27 +2962418 Moyny Moyny 51.6825 -9.2975 P PPL IE M 04 0 129 Europe/Dublin 2010-08-14 +2962419 Moyne Lodge Moyne Lodge 53.48333 -9.13333 S BLDG IE C 20 0 32 Europe/Dublin 1993-12-27 +2962420 Moyne House Moyne House 53.45 -8.71667 S EST IE C 10 0 54 Europe/Dublin 1993-12-27 +2962421 Moynehall Moynehall Moynehall,Moynehall House 53.96667 -7.35028 S EST IE IE U 02 0 129 Europe/Dublin 2010-08-14 +2962422 Moyne Cross Roads Moyne Cross Roads 53.91667 -7.63333 P PPL IE L 18 0 90 Europe/Dublin 1993-12-27 +2962423 Moyne Abbey Moyne Abbey 54.20139 -9.18306 S RUIN IE C 20 0 1 Europe/Dublin 2010-08-14 +2962424 Moyne Moyne 53.9 -7.63333 P PPL IE L 18 0 152 Europe/Dublin 1993-12-27 +2962425 Moyne Moyne 53.85 -8.53333 P PPL IE C 24 0 77 Europe/Dublin 1993-12-27 +2962426 Moyne Moyne 52.73222 -7.71278 P PPL IE M 26 0 125 Europe/Dublin 2010-08-14 +2962427 Moynalty Moynalty Moynalty 53.78861 -6.88278 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +2962428 Moylough Moylough Moylough,Newtown Bellew 53.48333 -8.56667 P PPL IE C 10 0 76 Europe/Dublin 2010-08-10 +2962429 River Moyle River Moyle 52.40056 -7.63528 H STM IE M 26 0 71 Europe/Dublin 2010-08-14 +2962430 Moyle Moyle 52.79833 -6.84778 S EST IE L 01 0 90 Europe/Dublin 2010-08-14 +2962431 Moylaw Moylaw 54.09389 -9.37778 P PPL IE C 20 0 53 Europe/Dublin 2010-08-14 +2962432 Moy House Moy House 52.92194 -9.34944 S HSEC IE M 03 0 38 Europe/Dublin 2010-08-14 +2962433 Moyhora House Moyhora House 52.84056 -7.21778 S HSE IE L 13 0 144 Europe/Dublin 2010-08-14 +2962434 Moyhora Moyhora 52.84861 -7.23444 P PPL IE L 13 0 159 Europe/Dublin 2010-08-14 +2962435 Moyglass House Moyglass House 52.78333 -9.36667 S BLDG IE M 03 0 76 Europe/Dublin 1993-12-27 +2962436 Moyglare House Moyglare House Moyglare,Moyglare House 53.41333 -6.60861 S EST IE IE L 21 0 74 Europe/Dublin 2010-08-14 +2962437 Moygara Castle Moygara Castle 53.96667 -8.46667 S BLDG IE C 25 0 79 Europe/Dublin 1993-12-27 +2962438 Moydrum Castle Moydrum Castle 53.41667 -7.86667 S EST IE L 29 0 124 Europe/Dublin 2010-08-14 +2962439 Moydow Moydow Moydow 53.66667 -7.76667 P PPL IE L 18 0 83 Europe/Dublin 2010-08-10 +2962440 Moycullen Moycullen Maigh Cuilinn 53.33783 -9.18002 P PPL IE IE C 10 1402 66 Europe/Dublin 2010-08-14 +2962441 Moy Bridge Moy Bridge Moy,Moy Bridge 54.40056 -6.97556 P PPL IE IE U 22 0 51 Europe/Dublin 2010-08-14 +2962442 Moyasta Junction Moyasta Junction 52.66667 -9.53333 S RSTN IE M 03 0 1 Europe/Dublin 2010-08-14 +2962443 Moyasta Moyasta 52.67139 -9.53833 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2962444 Moyascragh Moyascragh 53.38333 -9.2 P PPL IE C 10 0 39 Europe/Dublin 1993-12-27 +2962445 Moyard Moyard 53.54417 -10.00306 P PPL IE C 10 0 2 Europe/Dublin 2010-08-14 +2962446 Moyaliff House Moyaliff House 52.65222 -7.93083 S EST IE M 26 0 77 Europe/Dublin 2010-08-14 +2962447 Moyagher House Moyagher House Moyagher,Moyagher House 53.65 -6.85 S BLDG IE L 21 0 79 Europe/Dublin 2010-08-10 +2962448 River Moy River Moy 54.18333 -9.15 H STM IE C 20 0 1 Europe/Dublin 1993-12-27 +2962449 Moy Moy 53.12056 -8.96056 P PPL IE C 10 0 22 Europe/Dublin 2010-08-14 +2962450 Moville Moville Bun an Phobail,Moville 55.18333 -7.05 P PPL IE U 06 1402 -9999 Europe/Dublin 2010-08-14 +2962451 Movilla House Movilla House Movilla,Movilla House 52.42222 -6.40222 S BLDG IE IE L 30 0 25 Europe/Dublin 2010-08-14 +2962452 Moveen Moveen 52.64861 -9.70083 P PPL IE M 03 0 68 Europe/Dublin 2010-08-14 +2962453 Lough Mourne Lough Mourne 54.75417 -7.89583 H LK IE U 06 0 203 Europe/Dublin 2010-08-14 +2962454 Mount Uniacke Mount Uniacke 51.97917 -8.00361 P PPL IE M 04 0 110 Europe/Dublin 2010-08-14 +2962455 Mount Uniacke Mount Uniacke 51.96667 -7.98333 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +2962456 Mount Trenchard Mount Trenchard 52.60667 -9.14667 S EST IE M 16 0 59 Europe/Dublin 2010-08-14 +2962457 Mount Talbot Mount Talbot 53.53333 -8.28333 P PPL IE 00 0 69 Europe/Dublin 1993-12-27 +2962458 Mount Silk Mount Silk 53.5 -8.61667 S EST IE C 10 0 79 Europe/Dublin 1993-12-27 +2962459 Mountshannon Mountshannon Baile Ui Bheolain,Baile Uí Bheoláin,Mountshannon 52.93056 -8.42583 P PPL IE M 03 0 55 Europe/Dublin 2011-03-06 +2962460 Mount Shannon Mount Shannon 54.3 -8.48333 S EST IE C 25 0 10 Europe/Dublin 1993-12-27 +2962461 Mount Shannon Mount Shannon 52.68278 -8.52778 S EST IE M 16 0 42 Europe/Dublin 2010-08-14 +2962462 Mount Salem Mount Salem 52.98333 -7.56667 S EST IE L 15 0 116 Europe/Dublin 2010-08-14 +2962463 Mountrussell House Mountrussell House 52.33333 -8.56667 S RUIN IE M 16 0 147 Europe/Dublin 1993-12-27 +2962464 Mountrath and Castletown Station Mountrath and Castletown Station Mountrath and Castletown,Mountrath and Castletown Station 52.96667 -7.46667 S RSTN IE IE L 15 0 103 Europe/Dublin 2010-08-14 +2962465 Mountrath Mountrath Maighean Ratha,Maighean Rátha,Mountrath 52.99889 -7.47278 P PPL IE L 15 1597 114 Europe/Dublin 2010-08-14 +2962466 Mount Prospect Mount Prospect 53.63333 -8.25 S BLDG IE C 24 0 76 Europe/Dublin 1993-12-27 +2962467 Mount Pleasant Mount Pleasant 52.79778 -7.58306 P PPL IE L 13 0 158 Europe/Dublin 2010-08-14 +2962468 Mount Pleasant Mount Pleasant 54.03556 -6.37333 S EST IE L 19 0 33 Europe/Dublin 2010-08-14 +2962469 Mount Pleasant Mount Pleasant 53.75 -9.18333 S EST IE C 20 0 50 Europe/Dublin 1993-12-27 +2962470 Mount Pleasant Mount Pleasant 51.79194 -8.80056 S EST IE M 04 0 139 Europe/Dublin 2010-08-14 +2962471 Mount Pallas Mount Pallas 53.80528 -7.23778 S EST IE U 02 0 83 Europe/Dublin 2010-08-14 +2962472 Mount Nugent Mount Nugent 53.81667 -7.25 P PPL IE U 02 0 76 Europe/Dublin 1993-12-27 +2962473 Mountneill Wood Mountneill Wood Mountneill Wood,Mountniell Wood 52.3375 -7.75694 V FRST IE IE M 27 0 63 Europe/Dublin 2010-08-14 +2962474 Mount Neill Mount Neill 52.9 -6.66667 P PPL IE 00 0 145 Europe/Dublin 1993-12-27 +2962475 Mount Murray Mount Murray 53.58333 -7.43333 S EST IE L 29 0 133 Europe/Dublin 1993-12-27 +2962476 Mountmellick Mountmellick Mointeach Milic,Mountmellick,Móinteach Mílic 53.11361 -7.32 P PPL IE L 15 3547 109 Europe/Dublin 2010-08-14 +2962477 Mount Melleray Monastery Mount Melleray Monastery Mount Melleray,Mount Melleray Monastery 52.18472 -7.86194 S MSTY IE IE M 27 0 219 Europe/Dublin 2010-08-14 +2962478 Mount Lucas House Mount Lucas House Mount Lucas,Mount Lucas House 53.29944 -7.22861 S EST IE IE L 23 0 83 Europe/Dublin 2010-08-14 +2962479 Mont Louise Mont Louise Mont Louise,Mount Louise 54.24694 -7.09667 S EST IE IE U 22 0 108 Europe/Dublin 2010-08-14 +2962480 Mount Loftus Mount Loftus 52.60278 -6.98222 S EST IE L 13 0 58 Europe/Dublin 2010-08-14 +2962481 Mount Leinster Lodge Mount Leinster Lodge 52.625 -6.81528 S BLDG IE L 01 0 248 Europe/Dublin 2010-08-14 +2962482 Mount Leader Mount Leader 52.05 -9.06667 S EST IE M 04 0 160 Europe/Dublin 1993-12-27 +2962483 Mount Kennedy Mount Kennedy 52.76083 -8.10194 S BLDG IE M 26 0 220 Europe/Dublin 2010-08-14 +2962484 Mount Keeffe Mount Keeffe Mount Keefe,Mount Keeffe 52.23333 -8.98333 P PPL IE M 04 0 167 Europe/Dublin 2010-08-10 +2962485 Mount Juliet Mount Juliet 52.53083 -7.19 S EST IE L 13 0 46 Europe/Dublin 2010-08-14 +2962486 Mountjoy Mountjoy Mountjoy Ward 53.35 -6.25 P PPLX IE IE L 07 0 1 Europe/Dublin 2010-08-14 +2962487 Mount Jennings Mount Jennings 53.61667 -9.05 S EST IE C 20 0 88 Europe/Dublin 1993-12-27 +2962488 Mount Henry Mount Henry 53.12667 -7.15 S EST IE L 15 0 89 Europe/Dublin 2010-08-14 +2962489 Mount Heaton Lodge Mount Heaton Lodge Mount Heaton,Mount Heaton Lodge 52.96667 -7.85 S BLDG IE IE L 23 0 75 Europe/Dublin 2010-08-14 +2962490 Mount Hazel Mount Hazel 53.40056 -8.53 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2962491 Mount George Mount George 52.57611 -6.42333 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2962492 Mount Frisco Mount Frisco 52.86333 -7.86889 S EST IE M 26 0 168 Europe/Dublin 2010-08-14 +2962493 Mount Falcon Mount Falcon 54.05556 -9.16972 S EST IE C 20 0 23 Europe/Dublin 2010-08-14 +2962494 Mount Falcon Mount Falcon 52.9675 -8.12889 S EST IE M 38 0 76 Europe/Dublin 2010-08-14 +2962495 Mount Equity Mount Equity 53.31667 -8.1 S EST IE C 24 0 79 Europe/Dublin 2010-08-14 +2962496 Mounteagle Mounteagle 52.95 -7.33333 S EST IE L 15 0 146 Europe/Dublin 2010-08-14 +2962497 Mount Eagle Mount Eagle 52.26667 -9.3 S EST IE M 11 0 282 Europe/Dublin 1993-12-27 +2962498 Mount Druid House Mount Druid House 53.81667 -8.38333 S EST IE C 24 0 105 Europe/Dublin 1993-12-27 +2962499 Mount Druid Mount Druid 52.22889 -7.04028 P PPL IE M 27 0 33 Europe/Dublin 2010-08-14 +2962500 Mount Davys House Mount Davys House Mount Davis,Mount Davis House,Mount Davys House 53.68333 -7.95 S BLDG IE L 18 0 77 Europe/Dublin 2010-08-10 +2962501 Mount Dalton Lough Mount Dalton Lough Mount Dalton,Mount Dalton Lough 53.51667 -7.51667 H LK IE IE L 29 0 154 Europe/Dublin 2010-08-14 +2962502 Mount Coote Mount Coote 52.39667 -8.55528 S EST IE M 16 0 86 Europe/Dublin 2010-08-14 +2962503 Mount Congreve Mount Congreve 52.23639 -7.21278 S EST IE M 27 0 26 Europe/Dublin 2010-08-14 +2962504 Mountcollins Mountcollins Mountcollins 52.31667 -9.23333 P PPL IE M 16 0 145 Europe/Dublin 2010-08-10 +2962505 Mountcharles Mountcharles Moin Searlas,Moin Séarlas,Mountcharles 54.64639 -8.19556 P PPL IE U 06 0 58 Europe/Dublin 2010-08-14 +2962506 Mountcampbell House Mountcampbell House 53.93333 -8.01667 S HSEC IE C 14 0 69 Europe/Dublin 2010-08-14 +2962507 Mountbolus Mountbolus Mountbolus 53.18778 -7.625 P PPL IE L 23 0 87 Europe/Dublin 2010-08-14 +2962508 Mount Bolton Mount Bolton 52.31944 -7.32417 P PPL IE M 27 0 14 Europe/Dublin 2010-08-14 +2962509 Mount Bellew Bridge Mount Bellew Bridge An Creagan,An Creagán,Mount Bellew,Mount Bellew Bridge 53.46667 -8.5 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +2962510 Mount Bellew Mount Bellew 53.46667 -8.5 S EST IE C 10 0 75 Europe/Dublin 1993-12-27 +2962511 Mountain Water Mountain Water 54.33333 -6.86667 H STM IE 00 0 64 Europe/Dublin 1993-12-27 +2962512 Mountainstown House Mountainstown House Mountainstown,Mountainstown House 53.75361 -6.74361 S EST IE IE L 21 0 71 Europe/Dublin 2010-08-14 +2962513 Mountain Stage Station Mountain Stage Station 52.03333 -10 S RSTN IE M 11 0 112 Europe/Dublin 2010-08-14 +2962514 Mountain Lodge Mountain Lodge Mountain House,Mountain Lodge 53.98 -7.10861 P PPL IE IE U 02 0 166 Europe/Dublin 2010-08-14 +2962515 Mountain Castle Mountain Castle 52.16667 -7.73333 S BLDG IE M 27 0 132 Europe/Dublin 1993-12-27 +2962516 Mouldy Hill Mouldy Hill Mouldy Hill,Mouldy Mountain 55.10333 -7.44389 T HLL IE IE U 06 0 269 Europe/Dublin 2010-08-14 +2962517 Mothel Mothel 52.29944 -7.42028 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +2962518 Mote Park Mote Park 53.6 -8.15 S EST IE C 24 0 76 Europe/Dublin 1993-12-27 +2962519 Mossvale Mossvale 53.75 -7.51667 S EST IE L 18 0 92 Europe/Dublin 1993-12-27 +2962520 Mosstown House Mosstown House 53.61667 -7.83333 S EST IE L 18 0 76 Europe/Dublin 1993-12-27 +2962521 Mosney House Mosney House 53.65 -6.23333 S EST IE L 21 0 1 Europe/Dublin 1993-12-27 +2962522 Moroe Moroe 52.65111 -8.39611 P PPL IE M 16 0 91 Europe/Dublin 2010-08-14 +2962523 Mornington Mornington Mornington 53.72333 -6.2825 P PPL IE L 21 0 1 Europe/Dublin 2010-08-14 +2962524 Monintown Monintown Monintown,Mornington 53.61667 -7.31667 S EST IE IE L 29 0 130 Europe/Dublin 2010-08-14 +2962525 Morningstar River Morningstar River 52.45028 -8.6825 H STM IE M 16 0 70 Europe/Dublin 2010-08-14 +2962526 Morleys Bridge Station Morleys Bridge Station Morley's Bridge,Morleys Bridge Station,Morley’s Bridge 51.91667 -9.38333 S RSTN IE M 11 0 157 Europe/Dublin 2010-08-10 +2962527 Lough More Lough More Lough More 54.36667 -7.08333 H LK IE 00 0 162 Europe/Dublin 1998-02-13 +2962528 Lough More Lough More 54.18972 -9.51889 H LK IE C 20 0 105 Europe/Dublin 2010-08-14 +2962529 Moorfield House Moorfield House 52.965 -7.51278 S EST IE L 15 0 108 Europe/Dublin 2010-08-14 +2962530 Mooretown Mooretown 53.93333 -6.38333 P PPL IE 00 0 -9999 Europe/Dublin 1993-12-27 +2962531 Mooresfort House Mooresfort House Mooresfort,Mooresfort House 52.45333 -8.29028 S EST IE IE M 26 0 152 Europe/Dublin 2010-11-04 +2962532 Moore Park House Moore Park House Moore Park,Moore Park House 52.16806 -8.22806 S EST IE IE M 04 0 56 Europe/Dublin 2010-08-14 +2962533 Moore Hall Moore Hall Moore Hall,Moore House 53.71667 -9.21667 S HSEC IE IE C 20 0 46 Europe/Dublin 2010-08-14 +2962534 Moore Bay Moore Bay Kilkee Bay,Moore Bay 52.68472 -9.65722 H BAY IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2962535 Mooreabbey House Mooreabbey House Moore Abbey,Mooreabbey House 53.13333 -7.06667 S EST IE IE L 12 0 76 Europe/Dublin 2010-08-14 +2962536 Moore Moore 53.33194 -8.06611 P PPL IE C 24 0 86 Europe/Dublin 2010-08-14 +2962537 Moor Moor 53.78333 -8.48333 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2962538 Mooneabbey House Mooneabbey House Moone Abbey,Mooneabbey House 52.96667 -6.81667 S EST IE IE L 12 0 127 Europe/Dublin 2010-08-14 +2962539 Moone Moone Maoin,Moone 52.97556 -6.815 P PPL IE IE L 12 0 138 Europe/Dublin 2010-08-14 +2962540 Mooncoin Mooncoin Moin Choinn,Mooncoin,Móin Choinn 52.28944 -7.24833 P PPL IE IE L 13 0 40 Europe/Dublin 2010-08-14 +2962541 Monroe Monroe 52.41667 -7.23333 P PPL IE L 13 0 153 Europe/Dublin 2010-08-14 +2962542 Monroe Monroe 52.87528 -8.30806 S EST IE M 26 0 80 Europe/Dublin 2010-08-14 +2962543 Monkstown Monkstown 53.29308 -6.15312 P PPL IE L 07 0 1 Europe/Dublin 2010-08-14 +2962544 Monkstown Monkstown 51.85056 -8.34139 P PPL IE M 04 0 5 Europe/Dublin 2010-08-14 +2962545 Monksfield Monksfield 53.18333 -8.73333 S EST IE C 10 0 90 Europe/Dublin 2010-08-14 +2962546 Monivea Castle Monivea Castle 53.36667 -8.68333 S HSEC IE C 10 0 67 Europe/Dublin 2010-08-14 +2962547 Monivea Monivea Monivea,Muine Mhea,Muine Mheá 53.36778 -8.69778 P PPL IE C 10 0 79 Europe/Dublin 2010-08-14 +2962548 Money House Money House Money,Money House 52.76472 -6.63472 S EST IE IE L 31 0 141 Europe/Dublin 2010-08-14 +2962549 Moneygall Moneygall Moneygall,Muine Gall 52.88028 -7.95861 P PPL IE IE L 23 0 148 Europe/Dublin 2010-08-14 +2962550 Moneyduff Moneyduff 51.95694 -10.21083 P PPL IE M 11 0 67 Europe/Dublin 2010-08-14 +2962551 Moneycashen Moneycashen 52.4825 -9.68056 P PPL IE M 11 0 28 Europe/Dublin 2010-08-14 +2962552 Monettia Bog Monettia Bog 53.18361 -7.47139 H BOG IE L 15 0 120 Europe/Dublin 2010-08-14 +2962553 Moneen Moneen 53.66667 -8.05 P PPL IE C 24 0 67 Europe/Dublin 1993-12-27 +2962554 Monavarnoge Monavarnoge 51.99778 -8.02194 P PPL IE M 04 0 150 Europe/Dublin 2010-08-14 +2962555 Monasteroris Monasteroris 53.34944 -7.08028 P PPL IE L 23 0 106 Europe/Dublin 2010-08-14 +2962556 Monasterevin Monasterevin Mainistir Eimhin,Mainistir Eimhín,Monasterevan,Monasterevin 53.14056 -7.06639 P PPL IE L 12 2704 76 Europe/Dublin 2010-08-14 +2962557 Monasterboice House Monasterboice House Monasterboice,Monasterboice House 53.76639 -6.4325 S EST IE IE L 19 0 116 Europe/Dublin 2010-08-14 +2962558 Monasteraden Monasteraden 54.95 -8.5 P PPL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2962559 Monaster Monaster 52.52083 -8.67194 P PPL IE M 16 0 40 Europe/Dublin 2010-08-14 +2962560 Monaseed Monaseed Monaseed 52.72167 -6.39167 P PPL IE L 30 0 205 Europe/Dublin 2010-08-14 +2962561 Monart House Monart House Monart,Monart House 52.52194 -6.61333 S EST IE IE L 30 0 68 Europe/Dublin 2010-08-14 +2962562 Monart Monart 52.5 -6.6 P PPL IE L 30 0 57 Europe/Dublin 2010-08-14 +2962563 Monaquill House Monaquill House Manaquill House,Monaquill House 52.8 -8.15 S BLDG IE IE M 26 0 129 Europe/Dublin 2010-11-04 +2962564 Monanveel Monanveel 52.06667 -8.83333 P PPL IE M 04 0 259 Europe/Dublin 1993-12-27 +2962565 Monamolin Monamolin Monamolin 52.55556 -6.34389 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2962566 Monaghan Road Station Monaghan Road Station Monaghan Road,Monaghan Road Station 54.15 -7 S RSTN IE IE 00 0 135 Europe/Dublin 2010-08-10 +2962567 County Monaghan County Monaghan Contae Mhuineachain,Contae Mhuineacháin,Monaghan,Muineachan,Muineachán 54.25 -7 A ADM2 IE U 22 53085 70 Europe/Dublin 2010-08-14 +2962568 Muineachán Muineachan Monaghan 54.25 -6.96667 P PPLA2 IE U 22 5937 72 Europe/Dublin 2010-08-14 +2962569 Molahiffe Molahiffe 52.18333 -9.58333 P PPL IE M 11 0 71 Europe/Dublin 1993-12-27 +2962570 Mohill Mohill Maothail,Mohill 53.91667 -7.86667 P PPL IE C 14 0 81 Europe/Dublin 2010-08-14 +2962571 Moher Lough Moher Lough 53.73333 -9.55 H LK IE C 20 0 195 Europe/Dublin 1993-12-27 +2962572 Cliffs of Moher Cliffs of Moher Acantilados de Moher,Aillte an Mhothair,Cliffs of Moher,Falaises de Moher,Klify Moher,Klippen van Moher,Scogliere di Moher 52.9666 -9.4333 T CLF IE M 03 0 215 144 Europe/Dublin 2010-08-14 +2962573 Mogeely Mogeely 51.93083 -8.05944 P PPL IE M 04 0 64 Europe/Dublin 2010-08-14 +2962574 Modreeny Modreeny 52.95472 -8.05806 P PPL IE M 26 0 125 Europe/Dublin 2010-08-14 +2962575 Modelligo Modelligo 52.14639 -7.74972 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +2962576 Modeligo House Modeligo House 52.12833 -8.1075 S EST IE M 04 0 75 Europe/Dublin 2010-08-14 +2962577 Mocollop House Mocollop House Mocollop Castle,Mocollop House 52.15056 -8.08889 S EST IE IE M 04 0 106 Europe/Dublin 2010-08-14 +2962578 Mocklershill Mocklershill 52.51139 -7.81083 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +2962579 Mobarnan House Mobarnan House Mobarnan House,Mobarnane,Mobarnane House 52.51194 -7.75917 S EST IE IE M 26 0 139 Europe/Dublin 2010-11-04 +2962580 Moate Moate 53.55 -7.71667 P PPL IE L 29 1504 74 Europe/Dublin 2010-08-14 +2962581 Moanmore Lough Moanmore Lough 52.69194 -9.50944 H LK IE M 03 0 1 Europe/Dublin 2010-08-14 +2962582 Moanaha Glen Moanaha Glen 52.77389 -8.05556 T VAL IE M 26 0 175 Europe/Dublin 2010-08-14 +2962583 Mizen Head Mizen Head 52.85639 -6.055 T CAPE IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2962584 Mizen Head Mizen Head 51.45222 -9.81889 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962585 Mitchelstown House Mitchelstown House 53.61139 -6.88944 S BLDG IE L 21 0 79 Europe/Dublin 2010-08-14 +2962586 Mitchelstown Caves Mitchelstown Caves 52.3 -8.11667 S CAVE IE 00 0 139 Europe/Dublin 1993-12-27 +2962587 Mitchelstown Mitchelstown Baile Mhisteala,Baile Mhistéala,Mitchelstown 52.26583 -8.26806 P PPL IE M 04 3357 135 Europe/Dublin 2010-08-14 +2962588 Mitchells Town Mitchells Town 55.09194 -7.23861 P PPL IE U 06 0 11 Europe/Dublin 2010-08-14 +2962589 Mintiaghs Lough Mintiaghs Lough 55.20833 -7.39944 H LK IE U 06 0 147 Europe/Dublin 2010-08-14 +2962590 Mine River Mine River 52.71806 -6.55194 H STM IE L 31 0 72 Europe/Dublin 1998-02-09 +2962591 Mine Head Mine Head 51.99194 -7.58722 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2962592 Minard Head Minard Head 52.11417 -10.14611 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962593 Minard Minard 52.12278 -10.14028 P PPL IE M 11 0 26 Europe/Dublin 2010-08-14 +2962594 Minane Bridge Minane Bridge 51.76444 -8.37417 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +2962595 Milverton Hall Milverton Hall Milverton,Milverton Hall,Milverton House 53.57222 -6.145 S HSEC IE IE L 07 0 23 Europe/Dublin 2010-11-04 +2962596 Milltownpass Milltownpass 53.43417 -7.24194 P PPL IE L 29 0 136 Europe/Dublin 2010-08-14 +2962597 Milltown Malbay Milltown Malbay Milltown Malbay,Miltown Malbay,Sraid na Cathrach,Sráid na Cathrach 52.85528 -9.39833 P PPL IE M 03 0 66 Europe/Dublin 2010-08-14 +2962598 Milltown House Milltown House Milltown,Milltown House 53.73333 -8.33333 S EST IE C 24 0 83 Europe/Dublin 2010-08-10 +2962599 Milltown House Milltown House 53.68083 -7.00056 S EST IE L 21 0 107 Europe/Dublin 2010-08-14 +2962600 Milltown Castle Milltown Castle 52.31667 -8.73333 S EST IE M 04 0 158 Europe/Dublin 1993-12-27 +2962601 Milltown Milltown 54.65306 -8.25861 P PPL IE U 06 0 9 Europe/Dublin 2010-08-14 +2962602 Milltown Milltown 54.25 -6.98333 P PPL IE 00 0 69 Europe/Dublin 1993-12-27 +2962603 Mill Town Mill Town 54.13667 -6.69139 P PPL IE U 22 0 144 Europe/Dublin 2010-08-14 +2962604 Milltown Milltown 54.065 -7.4775 P PPL IE U 02 0 80 Europe/Dublin 2010-08-14 +2962605 Milltown Milltown Milltown,Money 53.98194 -6.91306 P PPL IE IE U 02 0 150 Europe/Dublin 2010-08-14 +2962606 Milltown Milltown 53.61667 -8.9 P PPL IE C 10 0 47 Europe/Dublin 1993-12-27 +2962608 Milltown Milltown 52.83611 -6.63333 P PPL IE L 01 0 119 Europe/Dublin 2010-08-14 +2962609 Milltown Milltown 52.58667 -6.47389 P PPL IE L 30 0 69 Europe/Dublin 2010-08-14 +2962610 Milltown Milltown Baile an Mhuilinn,Milltown 52.14194 -10.28972 P PPL IE M 11 0 17 Europe/Dublin 2010-08-14 +2962611 Baile an Mhuilinn Baile an Mhuilinn Baile an Mhuilinn,Milltown 52.15 -9.71667 P PPL IE IE M 11 0 74 Europe/Dublin 2010-08-14 +2962612 Millstreet Millstreet 52.20222 -8.17167 P PPL IE M 04 0 122 Europe/Dublin 2010-08-14 +2962613 Millstreet Millstreet Millstreet,Sraid an Mhuilinn,Sráid an Mhuilinn 52.06667 -9.06667 P PPL IE M 04 0 130 Europe/Dublin 2010-08-14 +2962614 Millroad Millroad 52.18472 -6.55917 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2962615 Mill River Mill River 55.1275 -7.46278 H STM IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962616 Millmore House Millmore House 54.08333 -6.96667 S BLDG IE 00 0 150 Europe/Dublin 1993-12-27 +2962617 Millford Millford Baile na nGalloglach,Baile na nGallóglach,Milford,Millford 55.08806 -7.69889 P PPL IE U 06 0 69 Europe/Dublin 2010-08-14 +2962618 Millfield Millfield 51.91806 -8.47056 P PPLX IE M 04 0 70 Europe/Dublin 2010-08-14 +2962619 Mill Cove Mill Cove 51.55 -9.03333 H COVE IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2962620 Millbrook House Millbrook House 53.61667 -8.88333 S EST IE C 10 0 49 Europe/Dublin 1993-12-27 +2962621 Millbrook House Millbrook House Millbrook,Millbrook House 52.8125 -8.11417 S EST IE M 38 0 132 Europe/Dublin 2010-11-04 +2962622 Millbrook Millbrook 53.74806 -7.16389 P PPL IE L 21 0 134 Europe/Dublin 2010-08-14 +2962623 Milford Station Milford Station Milford,Milford Station 52.76667 -6.93333 S RSTN IE IE L 01 0 61 Europe/Dublin 2010-08-14 +2962624 Milford House Milford House Milford,Milford House 53.56667 -9.06667 S EST IE C 20 0 73 Europe/Dublin 2010-08-10 +2962625 Milford House Milford House 53.04111 -8.13222 S EST IE M 26 0 60 Europe/Dublin 2010-08-14 +2962626 Milford House Milford House Milford,Milford House 52.77889 -6.96667 S EST IE IE L 01 0 40 Europe/Dublin 2010-08-14 +2962627 Milford Milford Ath an Mhuilinn,Milford,Áth an Mhuilinn 52.33333 -8.85 P PPL IE M 04 0 132 Europe/Dublin 2010-08-14 +2962628 Milestone Milestone 52.67528 -8.08694 P PPL IE M 26 0 285 Europe/Dublin 2010-08-14 +2962629 Milemill Milemill 53.1175 -6.7325 P PPL IE L 12 0 134 Europe/Dublin 2010-08-14 +2962630 Mainister na Corann Mainister na Corann Middleton,Midleton 51.90944 -8.17361 P PPL IE M 04 8891 44 Europe/Dublin 2010-08-14 +2962631 Midfield Midfield 53.9 -8.91667 P PPL IE C 20 0 85 Europe/Dublin 1993-12-27 +2962632 Middleton House Middleton House Middleton,Middleton House 53.7 -7.91667 S EST IE L 18 0 73 Europe/Dublin 2010-08-10 +2962633 Middleton House Middleton House Middleton,Middleton House 53.43333 -7.46667 S EST IE L 29 0 99 Europe/Dublin 2010-08-10 +2962634 Middle Sister Middle Sister Beenmamagh Middle Sister,Middle Sister 52.2 -10.41667 T HLL IE IE M 11 0 30 Europe/Dublin 2010-08-14 +2962635 Middlemount House Middlemount House 52.85806 -7.53417 S EST IE L 15 0 116 Europe/Dublin 2010-08-14 +2962636 Merview Merview 53.28333 -9.01583 S EST IE C 10 0 1 Europe/Dublin 2010-08-14 +2962637 Merton Hall Merton Hall 52.95639 -8.09944 S EST IE M 26 0 104 Europe/Dublin 2010-08-14 +2962638 Mount Merrion Mount Merrion Cnoc Mhuirfean,Merrion 53.30008 -6.21504 P PPLX IE IE L 07 0 18 Europe/Dublin 2010-08-14 +2962639 Merlin Park Merlin Park 53.27806 -8.99611 S EST IE C 10 0 1 Europe/Dublin 2010-08-14 +2962640 Menlough Menlough 53.3025 -9.06917 P PPL IE C 10 0 6 Europe/Dublin 2010-08-14 +2962641 Menawn Cliffs Menawn Cliffs 53.94306 -10.04944 T CLF IE C 20 0 158 Europe/Dublin 2010-08-14 +2962642 Lough Melvin Lough Melvin Lough Melvin 54.43333 -8.16667 H LK IE C 14 0 62 Europe/Dublin 2010-08-10 +2962643 Melmore Head Melmore Head 55.25417 -7.78667 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962644 Mellifont Abbey Mellifont Abbey Abadia de Mellifont,Abadía de Mellifont,Abbaye de Mellifont,An Mhainistir Mhor,An Mhainistir Mhór,Melifont Abbey,Mellifont Abbey,Mellifonteko abadia,Mellifontskoe abbatstvo,Меллифонтское аббатство 53.74472 -6.45972 S RUIN IE IE L 19 0 77 Europe/Dublin 2010-08-14 +2962645 Melkagh Melkagh 53.83333 -7.75 P PPL IE L 18 0 100 Europe/Dublin 1993-12-27 +2962646 Meldrum House Meldrum House 52.52861 -7.83389 S BLDG IE M 26 0 152 Europe/Dublin 2010-08-14 +2962647 Meeting of the Waters Meeting of the Waters 52.8825 -6.23444 H CNFL IE L 31 0 69 Europe/Dublin 2010-08-14 +2962648 Meeshal House Meeshal House 51.93333 -8.75 S EST IE M 04 0 108 Europe/Dublin 2010-08-14 +2962649 Meenlaragh Meenlaragh Meenlaragh,Min Larach,Mín Lárach 55.14472 -8.18667 P PPL IE IE U 06 0 4 Europe/Dublin 2010-08-14 +2962650 Meenkeeragh Hill Meenkeeragh Hill Meenkeeragh,Meenkeeragh Hill,Meenkeragh Hill 55.13333 -7.38333 T HLL IE U 06 0 260 158 Europe/Dublin 2010-08-14 +2962651 Meenglass Station Meenglass Station Meen Glas Halt,Meenglass Halt,Meenglass Station 54.78333 -7.81667 S RSTN IE U 06 0 94 Europe/Dublin 2010-08-10 +2962652 Meenglass Meenglass 54.76639 -7.83861 S EST IE U 06 0 159 Europe/Dublin 2010-08-14 +2962653 Meenasrona Meenasrona 54.72972 -7.78833 P PPL IE U 06 0 142 Europe/Dublin 2010-08-14 +2962654 Meenadeeny Meenadeeny 54.81833 -8.25417 P PPL IE U 06 0 153 Europe/Dublin 2010-08-14 +2962655 Meelin Meelin 52.26667 -9.03333 P PPL IE M 04 0 273 Europe/Dublin 1993-12-27 +2962656 Meelick House Meelick House 52.93333 -8.36944 S EST IE M 03 0 55 Europe/Dublin 2010-08-14 +2962657 Meelick Meelick 53.7 -8.95 P PPL IE C 20 0 73 Europe/Dublin 1993-12-27 +2962658 Meelick Meelick 53.17306 -8.0875 P PPL IE C 10 0 55 Europe/Dublin 2010-08-14 +2962659 Lough Meelagh Lough Meelagh 54.05833 -8.16917 H LK IE C 24 0 69 Europe/Dublin 2010-08-14 +2962660 Lough Meela Lough Meela 54.96972 -8.40389 H LK IE U 06 0 4 Europe/Dublin 2010-08-14 +2962661 An Mhí An Mhi Contae na Mi,Contae na Mí,County Meath,Meath 53.66667 -6.66667 A ADM2 IE L 21 144185 44 Europe/Dublin 2010-08-14 +2962662 Mearscourt Mearscourt Meares Court,Mearscourt 53.55 -7.58333 S EST IE L 29 0 92 Europe/Dublin 2010-08-10 +2962663 Meanus Meanus 52.51111 -8.60972 P PPL IE M 16 0 58 Europe/Dublin 2010-08-14 +2962664 Mealagh River Mealagh River 51.7025 -9.44028 H STM IE M 04 0 19 Europe/Dublin 2010-08-14 +2962665 McSwynes Bay McSwynes Bay McSwyne Bay,McSwynes Bay 54.61667 -8.4 H BAY IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962666 Maigh Eo Maigh Eo Contae Mhaigh Eo,County Mayo,Mayo 53.9 -9.25 A ADM2 IE C 20 119089 53 Europe/Dublin 2010-08-14 +2962667 Mayo Mayo 53.75977 -9.11719 P PPL IE C 20 0 84 Europe/Dublin 2010-08-14 +2962668 Maynooth Maynooth Maigh Nuad,Maynooth 53.385 -6.59361 P PPL IE L 12 11318 71 Europe/Dublin 2010-08-14 +2962669 Mayne House Mayne House 52.41278 -8.93667 S EST IE M 16 0 78 Europe/Dublin 2010-08-14 +2962670 Mayglass Mayglass 52.24194 -6.50611 P PPL IE L 30 0 26 Europe/Dublin 2010-08-14 +2962671 Mayfield Mayfield 51.71667 -8.8 S EST IE M 04 0 74 Europe/Dublin 2010-08-14 +2962672 Mauricesmills Mauricesmills Mauricemills,Mauricesmills 52.89722 -9.14444 P PPL IE IE M 03 0 89 Europe/Dublin 2010-08-14 +2962673 Maum West Maum West 53.51667 -9.56667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2962674 Maumturk Mountains Maumturk Mountains Mamturk Mountains,Maumturk Mountains 53.51667 -9.7 T MTS IE C 10 0 302 Europe/Dublin 2010-08-10 +2962675 Maumtrasna Maumtrasna Maumtrasna 53.61667 -9.56667 T MT IE C 20 0 623 Europe/Dublin 2010-08-10 +2962676 Maum East Maum East 53.51667 -9.56667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2962677 Maumakeogh Maumakeogh 54.26972 -9.47889 T MT IE C 20 0 380 326 Europe/Dublin 2010-08-14 +2962678 Maum Maum 53.51667 -9.56667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2962679 Maulyneill Maulyneill 51.91667 -9.71667 P PPL IE M 11 0 497 Europe/Dublin 1993-12-27 +2962680 Mauherslieve Mauherslieve Mauherslieve,Mother Mountain 52.70833 -8.18722 T MT IE IE M 26 0 373 Europe/Dublin 2010-11-04 +2962681 Maugha Maugha 51.7975 -9.37639 P PPL IE M 04 0 241 Europe/Dublin 2010-08-14 +2962682 Mattock River Mattock River 53.7225 -6.43028 H STM IE 00 0 15 Europe/Dublin 1999-03-22 +2962683 Mattle Island Mattle Island Battle Island,Mattle Island 52.79056 -9.52306 T ISL IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2962684 Mastergeehy Mastergeehy 51.88583 -10.09611 P PPL IE M 11 0 80 Europe/Dublin 2010-08-14 +2962685 Massytown Massytown 51.9 -8.96667 P PPL IE M 04 0 91 Europe/Dublin 2010-08-14 +2962686 Massy Lodge Massy Lodge 52.34472 -8.28417 S EST IE M 16 0 209 Europe/Dublin 2010-08-14 +2962687 Mason Island Mason Island 53.30028 -9.88583 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962688 Masonbrook Masonbrook 53.18333 -8.52833 S EST IE C 10 0 118 Europe/Dublin 2010-08-14 +2962689 Lough Mask Lough Mask Lough Mask 53.61667 -9.35 H LK IE C 20 0 59 Europe/Dublin 2010-08-10 +2962690 Mary Ville Mary Ville Mary Villa,Mary Ville 52.83417 -8.43833 P PPL IE M 38 0 83 Europe/Dublin 2010-11-04 +2962691 Maryland Maryland 53.9 -9.63333 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +2962692 Mary Fort Mary Fort 52.87944 -8.71722 P PPL IE M 03 0 130 Europe/Dublin 2010-08-14 +2962693 Marlow House Marlow House 52.62417 -7.97028 S EST IE M 26 0 109 Europe/Dublin 2010-08-14 +2962694 Marlay Grange Marlay Grange Marlay Grange,Marley Grange,Marley House 53.27889 -6.28806 S EST IE IE L 07 0 89 Europe/Dublin 2010-11-04 +2962695 Markree Castle Markree Castle Markee Castle,Markree Castle 54.17528 -8.4575 S EST IE IE C 25 0 57 Europe/Dublin 2010-08-14 +2962696 Marino Marino 53.37022 -6.23646 P PPLX IE L 07 0 1 Europe/Dublin 2010-08-14 +2962697 The Marina The Marina Marina,The Marina 51.9 -8.43333 L PRK IE IE M 04 0 27 Europe/Dublin 2010-08-14 +2962698 Marble Hill Marble Hill 55.17417 -7.90278 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2962699 Marble Hill Marble Hill Marble Hall,Marble Hill 53.08333 -8.46667 S EST IE IE C 10 0 122 Europe/Dublin 2010-08-14 +2962700 Manulla Junction Manulla Junction Manulla Junction,Manulla Junction Station 53.81667 -9.18333 S RSTN IE C 20 0 63 Europe/Dublin 2010-08-10 +2962701 Manulla Manulla Manulla,Minola 53.83333 -9.18333 P PPL IE C 20 0 59 Europe/Dublin 2010-08-10 +2962702 Mantua House Mantua House Mantua,Mantua House 53.83333 -8.3 S EST IE C 24 0 89 Europe/Dublin 2010-08-10 +2962703 Mantlehill Mantlehill Mantlehill,Mantlehill House 52.50806 -7.975 S BLDG IE IE M 26 0 76 Europe/Dublin 2010-11-04 +2962704 Mansfieldstown Mansfieldstown 53.905 -6.49583 P PPL IE L 19 0 20 Europe/Dublin 2010-08-14 +2962705 Manseltown Manseltown 52.7025 -7.71556 P PPL IE M 26 0 122 Europe/Dublin 2010-08-14 +2962706 Manorhamilton Manorhamilton Cluainin,Cluainín,Manorhamilton 54.30639 -8.17611 P PPL IE C 14 0 65 Europe/Dublin 2010-08-14 +2962707 Manorcunningham Manorcunningham Mainear Ui Chuinneagain,Mainéar Uí Chuinneagáin,Manorcunningham 54.95 -7.61667 P PPL IE IE U 06 0 75 Europe/Dublin 2010-08-14 +2962708 Mannin Lake Mannin Lake Manin Lake,Mannin Lake,Mannin Lough 53.8 -8.81667 H LK IE C 20 0 49 Europe/Dublin 2010-08-10 +2962709 Manning Castle Manning Castle 52.16667 -8.33333 S BLDG IE M 04 0 39 Europe/Dublin 2010-08-14 +2962710 Manning Manning 52.18472 -8.33417 P PPL IE M 04 0 46 Europe/Dublin 2010-08-14 +2962711 Mannin Bay Mannin Bay 53.45917 -10.08639 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962712 Mangerton Mountain Mangerton Mountain Mangerton Mountain 51.96667 -9.5 T MT IE M 11 0 839 762 Europe/Dublin 2011-03-08 +2962713 Gap of Mamore Gap of Mamore 55.23333 -7.5 T GAP IE U 06 0 188 Europe/Dublin 1993-12-27 +2962714 Mallow Mallow Mala 52.13333 -8.63333 P PPL IE M 04 9495 74 Europe/Dublin 2010-08-14 +2962715 Mallaranny Mallaranny Mallaranny,Mulrany 53.90389 -9.78972 P PPL IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2962716 Malin More Head Malin More Head Malin More Head,Teelin Head 54.7 -8.8 T CAPE IE IE U 06 0 14 Europe/Dublin 2010-08-14 +2962717 Malin More Malin More 54.695 -8.77361 P PPL IE U 06 0 118 Europe/Dublin 2010-08-14 +2962718 Malin Head Malin Head Cionn Mhalanna,Cionn Mhálanna,Malin Head,Mhalanna Cionn,Mhálanna Cionn 55.37667 -7.3925 T HDLD IE U 06 0 -9999 Europe/Dublin 2011-03-06 +2962719 Malin Hall Malin Hall 55.3 -7.26667 S EST IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962720 Malin Beg Malin Beg 54.66861 -8.78472 P PPL IE U 06 0 32 Europe/Dublin 2010-08-14 +2962721 Malin Bay Malin Bay 54.68222 -8.79806 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962722 Malin Malin Malainn,Malin,Málainn 55.3 -7.26667 P PPL IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962723 Mal Bay Mal Bay 52.85444 -9.48833 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2962724 Malahide Inlet Malahide Inlet Broad Meadow Water Estuary,Malahide Inlet 53.45 -6.16667 H INLT IE IE 00 0 1 Europe/Dublin 2010-08-10 +2962725 Malahide Malahide Malahide,Mullach Ide,Mullach Íde 53.45083 -6.15444 P PPL IE L 07 14057 -9999 Europe/Dublin 2010-11-04 +2962726 River Maine River Maine 52.15 -9.75 H STM IE M 11 0 79 Europe/Dublin 2010-08-14 +2962727 Slieve Main Slieve Main 55.18111 -7.35944 T MT IE U 06 0 474 311 Europe/Dublin 2010-08-14 +2962728 River Maigue River Maigue 52.65667 -8.79778 H STM IE M 16 0 2 Europe/Dublin 2010-08-14 +2962729 Mahoonagh Mahoonagh 52.42972 -9.01167 P PPL IE M 16 0 62 Europe/Dublin 2010-08-14 +2962730 Mahonstown House Mahonstown House Mahonstown,Mahonstown House 53.45 -7.3 S EST IE L 29 0 128 Europe/Dublin 2010-08-10 +2962731 Mahonburgh Bridge Mahonburgh Bridge 52.81639 -9.05 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +2962732 River Mahon River Mahon 52.13806 -7.36278 H STM IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2962733 Lough Mahon Lough Mahon 51.88167 -8.35389 H BAY IE M 04 0 10 Europe/Dublin 2010-08-14 +2962734 Lough Magrath More Lough Magrath More Lough Magrath More,Magrath More 54.76667 -8.18333 H LK IE IE U 06 0 289 Europe/Dublin 2010-08-14 +2962735 Magrath Loughs Magrath Loughs 54.775 -8.17917 H LKS IE U 06 0 289 Europe/Dublin 2010-08-14 +2962736 Lough Magrath Beg Lough Magrath Beg Lough Magrath Beg,Magrath Beg 54.78333 -8.16667 H LK IE U 06 0 238 Europe/Dublin 2010-08-10 +2962737 Maginstown House Maginstown House 52.425 -7.7875 S EST IE M 26 0 121 Europe/Dublin 2010-08-14 +2962738 Maghery Bay Maghery Bay 54.91667 -8.45 H BAY IE U 06 0 70 Europe/Dublin 1993-12-27 +2962739 Maghery Maghery 54.92944 -8.44194 P PPL IE U 06 0 47 Europe/Dublin 2010-08-14 +2962740 Maghera Maghera 54.7625 -8.52528 P PPL IE U 06 0 61 Europe/Dublin 2010-08-14 +2962741 Magharee Sound Magharee Sound 52.31667 -10.03333 H SD IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962742 Maganey Maganey Maganey,Mageny 52.90667 -6.93083 P PPL IE IE L 12 0 53 Europe/Dublin 2010-08-14 +2962743 Madore Station Madore Station Madore,Madore Station 51.61667 -9.28333 S RSTN IE M 04 0 60 Europe/Dublin 2010-08-10 +2962744 Maddockstown Maddockstown 52.63194 -7.19194 P PPL IE L 13 0 59 Europe/Dublin 2010-08-14 +2962745 Macroom Macroom Maigh Chromtha 51.9 -8.95 P PPL IE M 04 3169 88 Europe/Dublin 2010-08-14 +2962746 Macreddin Macreddin 52.88194 -6.32972 P PPL IE L 31 0 231 Europe/Dublin 2010-08-14 +2962747 Mac Murrough House Mac Murrough House 52.41917 -6.92 S BLDG IE L 13 0 38 Europe/Dublin 2010-08-14 +2962748 Macmine Junction Station Macmine Junction Station Macmine Junction,Macmine Junction Station 52.41667 -6.56667 S RSTN IE IE L 30 0 47 Europe/Dublin 2010-08-14 +2962749 Macmine Castle Macmine Castle 52.43556 -6.56944 S EST IE L 30 0 48 Europe/Dublin 2010-08-14 +2962750 Macklaun Macklaun 51.99139 -9.95056 T MT IE M 11 0 387 Europe/Dublin 2010-08-14 +2962751 Mackans Mackans 53.45 -7.63333 P PPL IE L 29 0 154 Europe/Dublin 1993-12-27 +2962752 Mackan Mackan 54.03333 -7.56667 S RUIN IE U 02 0 84 Europe/Dublin 2010-08-14 +2962753 Lough Machugh Lough Machugh Lough Machugh,Lough Mackagh 54.79139 -8.37 H LK IE IE U 06 0 12 Europe/Dublin 2010-08-14 +2962754 Macgillycuddys Reeks Macgillycuddys Reeks 52 -9.7 T MTS IE M 11 0 645 Europe/Dublin 1993-12-27 +2962755 Mace Head Mace Head 53.32472 -9.90333 T CAPE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962756 Maas Upper Maas Upper 54.83333 -8.35 P PPL IE U 06 0 48 Europe/Dublin 2010-08-14 +2962757 Maas Lower Maas Lower 54.83333 -8.36667 P PPL IE U 06 0 7 Europe/Dublin 2010-08-14 +2962758 Maas Maas Maas 54.83194 -8.36111 P PPL IE IE U 06 0 12 Europe/Dublin 2010-08-14 +2962759 Maam Cross Maam Cross 53.45599 -9.54068 P PPL IE C 10 0 113 Europe/Dublin 2010-08-14 +2962760 Lyre Lyre 52.26667 -9.36667 P PPL IE M 11 0 270 Europe/Dublin 1993-12-27 +2962761 Lyre Lyre 52.05028 -8.02278 P PPL IE M 04 0 151 Europe/Dublin 2010-08-14 +2962762 Lyre Lyre 51.67528 -8.94139 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2962763 Lyrattin Lyrattin 52.18333 -7.75 P PPL IE M 27 0 112 Europe/Dublin 1993-12-27 +2962764 Lyrath House Lyrath House Lyrath,Lyrath House 52.64917 -7.20028 S EST IE IE L 13 0 64 Europe/Dublin 2010-08-14 +2962765 Lyracrumpane Lyracrumpane Lyracrompane,Lyracrumpane 52.35 -9.5 P PPL IE M 11 0 142 Europe/Dublin 2010-08-10 +2962766 Lyons House Lyons House 53.30556 -6.5575 S EST IE L 12 0 64 Europe/Dublin 2010-08-14 +2962767 Lynnbury Lynnbury 53.48333 -7.35 P PPL IE L 29 0 116 Europe/Dublin 1993-12-27 +2962768 Lydacan House Lydacan House 53.31667 -8.93333 S EST IE C 10 0 14 Europe/Dublin 1993-12-27 +2962769 Lusca Lusca Lusk 53.52743 -6.16423 P PPL IE L 07 2508 27 Europe/Dublin 2010-08-14 +2962770 Lurgy River Lurgy River 55.03583 -7.76556 H STM IE U 06 0 66 Europe/Dublin 2010-08-14 +2962771 Lurga Point Lurga Point Lurga Point,Seafield Point 52.80833 -9.48889 T PT IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2962772 Lurgangreen Lurgangreen 53.94333 -6.38389 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +2962773 Lurganboy Lurganboy 54.31472 -8.19639 P PPL IE C 14 0 80 Europe/Dublin 2010-08-14 +2962774 Lung River Lung River 53.91667 -8.48333 H STM IE C 24 0 71 Europe/Dublin 1993-12-27 +2962775 Lullymore Lodge Lullymore Lodge Lullymore,Lullymore Lodge 53.27944 -6.94556 S EST IE IE L 12 0 72 Europe/Dublin 2010-08-14 +2962776 Lukeswell Lukeswell 52.39917 -7.17833 P PPL IE L 13 0 141 Europe/Dublin 2010-08-14 +2962777 Lugnaquillia Mountain Lugnaquillia Mountain Log na Coille,Lugnaquillia Mountain 52.96306 -6.4675 T MT IE L 31 0 926 878 Europe/Dublin 2010-08-14 +2962778 Lugnadeffa Lugnadeffa 54.20222 -8.58556 P PPL IE C 25 0 64 Europe/Dublin 2010-08-14 +2962779 Lugnabrick Lugnabrick 53.53333 -9.56667 T MT IE C 10 0 188 Europe/Dublin 1993-12-27 +2962780 Lughinny Lughinny Loghinny,Lughinny 52.70194 -7.48806 P PPL IE IE L 13 0 152 Europe/Dublin 2010-08-14 +2962781 Lugglass Upper Lugglass Upper 53.06667 -6.53306 P PPL IE L 31 0 262 Europe/Dublin 2010-08-14 +2962782 Lugglass Lower Lugglass Lower 53.06583 -6.55528 P PPL IE L 31 0 298 Europe/Dublin 2010-08-14 +2962783 Luggacurren Luggacurren 52.94667 -7.12972 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +2962784 Lugboy House Lugboy House Lugboy,Lugboy House 53.7 -8.81667 S EST IE C 20 0 76 Europe/Dublin 2010-08-10 +2962785 Lucan Lucan Leamhcan,Leamhcán,Lucan 53.35917 -6.43889 P PPL IE IE L 07 0 42 Europe/Dublin 2010-11-04 +2962786 Lowville House Lowville House 53.38222 -8.34056 S EST IE C 10 0 70 Europe/Dublin 2010-08-14 +2962787 Lowtown House Lowtown House Lowtown,Lowtown House 53.26667 -6.83333 S HSE IE IE L 12 0 92 Europe/Dublin 2010-08-14 +2962788 Lowtown Lowtown Lowtown,Lowtown House 53.46806 -7.17833 S EST IE IE L 29 0 134 Europe/Dublin 2010-08-14 +2962789 Low Island Low Island 51.52056 -9.13 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962790 Lowerymore River Lowerymore River 54.68972 -8.03889 H STM IE U 06 0 65 Europe/Dublin 2010-08-14 +2962791 Lowertown Lowertown 51.52444 -9.60222 P PPL IE M 04 0 48 Europe/Dublin 2010-08-14 +2962792 Louth Hall Louth Hall 53.91278 -6.56167 S EST IE L 19 0 41 Europe/Dublin 2010-08-14 +2962793 Lú Lu Contae Lu,Contae Lú,County Louth,Louth 53.83333 -6.5 A ADM2 IE L 19 105295 124 Europe/Dublin 2010-08-14 +2962794 Louth Louth Louth,Lu,Lubhaidh,Lú 53.94861 -6.54139 P PPL IE L 19 0 38 Europe/Dublin 2010-08-14 +2962795 Louisburgh Louisburgh Cluain Cearban,Cluain Cearbán,Louisburgh 53.76667 -9.81667 P PPL IE C 20 0 3 Europe/Dublin 2010-08-14 +2962796 Loughsalt Mountain Loughsalt Mountain 55.08583 -7.79306 T MT IE U 06 0 471 340 Europe/Dublin 2010-08-14 +2962797 Loughros Point Loughros Point 54.78722 -8.55028 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962798 Loughros More Bay Loughros More Bay 54.80167 -8.52139 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962799 Loughros Beg Bay Loughros Beg Bay 54.7775 -8.55 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2962800 Loughrea Loughrea Baile Locha Riach,Loughrea 53.19694 -8.56694 P PPL IE C 10 4296 97 Europe/Dublin 2010-08-14 +2962801 Loughmoe Loughmoe 52.75556 -7.82667 P PPL IE M 26 0 104 Europe/Dublin 2010-08-14 +2962802 Loughmask Castle Loughmask Castle 53.58333 -9.3 S BLDG IE C 20 0 35 Europe/Dublin 1993-12-27 +2962803 Loughlohery House Loughlohery House Loughlohery,Loughlohery Castle,Loughlohery House 52.36806 -7.88833 S EST IE IE M 26 0 77 Europe/Dublin 2010-11-04 +2962804 Loughlinstown Loughlinstown Loughlinstown 53.24389 -6.13306 P PPL IE L 07 0 8 Europe/Dublin 2010-11-04 +2962805 Loughglinn House Loughglinn House 53.83333 -8.55 S EST IE C 24 0 75 Europe/Dublin 1993-12-27 +2962806 Loughglinn Loughglinn Loch Glinne,Loughglinn 53.81667 -8.55 P PPL IE C 24 0 75 Europe/Dublin 2010-08-14 +2962807 Lough Fea House Lough Fea House Lough Fea House,Loughfea 53.9625 -6.73778 S HSEC IE IE U 22 0 73 Europe/Dublin 2010-08-14 +2962808 Lough Eske Station Lough Eske Station 54.68333 -8.01667 S RSTN IE U 06 0 92 Europe/Dublin 1993-12-27 +2962809 Lough Eske Castle Lough Eske Castle Lough Eask Castle,Lough Eske Castle,Lougheask 54.68611 -8.06778 S EST IE IE U 06 0 54 Europe/Dublin 2010-08-14 +2962810 Lougherglass Lougherglass 54.275 -9.61639 H LK IE C 20 0 146 Europe/Dublin 2010-08-14 +2962811 Lougher Lougher 53.67167 -6.48167 P PPL IE L 21 0 44 Europe/Dublin 2010-08-14 +2962812 Loughcutra Castle Loughcutra Castle 53.02306 -8.80528 S HSEC IE C 10 0 38 Europe/Dublin 2010-08-14 +2962813 Loughcrew House Loughcrew House 53.72917 -7.13917 S EST IE L 21 0 153 Europe/Dublin 2010-08-14 +2962814 Loughane Loughane 51.87028 -8.04917 P PPL IE M 04 0 53 Europe/Dublin 2010-08-14 +2962815 Loughanavally Loughanavally Loughanavally,Loughanayally 53.48333 -7.53333 P PPL IE L 29 0 143 Europe/Dublin 2010-08-10 +2962816 Loughananna Loughananna 52.30917 -8.18556 S EST IE M 16 0 153 Europe/Dublin 2010-08-14 +2962817 Losset Losset 52.63889 -8.13778 P PPL IE M 26 0 301 Europe/Dublin 2010-08-14 +2962818 Loskeran Loskeran 52.01556 -7.62111 P PPL IE M 27 0 138 Europe/Dublin 2010-08-14 +2962819 Lorrha Lorrha 53.09056 -8.12111 P PPL IE M 26 0 56 Europe/Dublin 2010-08-14 +2962820 Lords Harbour Lords Harbour 53.46667 -7.93333 H HBR IE L 29 0 62 Europe/Dublin 1993-12-27 +2962821 Looscaun Looscaun 53.03333 -8.33333 P PPL IE C 10 0 60 Europe/Dublin 1993-12-27 +2962822 Loo River Loo River 51.98333 -9.33333 H STM IE M 11 0 152 Europe/Dublin 1993-12-27 +2962823 Loop Head Loop Head 52.56667 -9.935 T CAPE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2962824 Loo Bridge Station Loo Bridge Station Loo Bridge,Loo Bridge Station 51.98333 -9.33333 S RSTN IE M 11 0 152 Europe/Dublin 2010-08-10 +2962825 River Loobagh River Loobagh 52.39944 -8.67278 H STM IE M 16 0 64 Europe/Dublin 2010-08-14 +2962826 Lonsdale Lonsdale 52.39583 -6.53917 S EST IE L 30 0 38 Europe/Dublin 2010-08-14 +2962827 Longwood Longwood 53.45389 -6.92194 P PPL IE L 21 0 81 Europe/Dublin 2010-08-14 +2962828 Longueville Longueville 52.13333 -8.73333 P PPL IE M 04 0 68 Europe/Dublin 1993-12-27 +2962829 Longtown House Longtown House Longtown,Longtown House 53.27889 -6.72111 S EST IE IE L 12 0 92 Europe/Dublin 2010-08-14 +2962830 The Long Range The Long Range 52 -9.55 H STM IE M 11 0 125 Europe/Dublin 1993-12-27 +2962831 Longpavement Station Longpavement Station Long Pavement,Longpavement Station 52.68333 -8.63333 S RSTN IE IE 00 0 5 Europe/Dublin 2010-08-10 +2962832 Longorchard House Longorchard House 52.7825 -7.71667 S EST IE M 26 0 144 Europe/Dublin 2010-08-14 +2962833 Long Island Channel Long Island Channel Long Island Channel,Long Island Sound 51.50083 -9.57417 H CHN IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962834 Long Island Bay Long Island Bay 51.45 -9.56667 H BAY IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2962835 Long Island Long Island 53.3725 -7.9125 T ISL IE C 24 0 62 Europe/Dublin 2010-08-14 +2962836 Long Island Long Island 51.49778 -9.56472 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962837 Longford House Longford House 54.21778 -8.66778 S HSEC IE C 25 0 53 Europe/Dublin 2010-08-14 +2962838 Longford House Longford House 52.87194 -7.86472 S EST IE M 26 0 152 Europe/Dublin 2010-08-14 +2962839 An Longfort An Longfort Contae an Longfoirt,County Longford,Longford 53.66667 -7.75 A ADM2 IE L 18 31308 133 Europe/Dublin 2010-08-14 +2962840 An Longfort An Longfort Longford 53.73333 -7.8 P PPLA2 IE L 18 7787 72 Europe/Dublin 2010-08-14 +2962841 Longford Longford 53.06139 -7.74444 P PPL IE L 23 0 152 Europe/Dublin 2010-08-14 +2962842 Longfield House Longfield House 53.5 -7.73333 S EST IE L 29 0 76 Europe/Dublin 1993-12-27 +2962843 Longfield House Longfield House 52.57667 -7.92583 S EST IE M 26 0 73 Europe/Dublin 2010-08-14 +2962844 Long Bohur Long Bohur 52.13028 -6.54389 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2962845 Lombardstown Lombardstown 52.11667 -8.78333 P PPL IE M 04 0 75 Europe/Dublin 1993-12-27 +2962846 Lohort Castle Lohort Castle 52.15 -8.78333 S EST IE M 04 0 80 Europe/Dublin 1993-12-27 +2962847 Loghill Loghill 52.59444 -9.19472 P PPL IE M 11 0 15 Europe/Dublin 2010-08-14 +2962848 Lodgepark House Lodgepark House Lodge Park,Lodgepark House 52.75028 -7.40861 S EST IE IE L 13 0 141 Europe/Dublin 2010-08-14 +2962849 Lobinstown Lobinstown 53.78667 -6.64806 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +2962850 Lloydsborough House Lloydsborough House 52.80639 -7.86806 S EST IE M 26 0 111 Europe/Dublin 2010-08-14 +2962851 Lixnaw Lixnaw Leic Snamha,Leic Snámha,Lixnaw 52.40556 -9.61694 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +2962852 Littleton Littleton An Baile Beag,Littleton 52.63944 -7.73806 P PPL IE M 38 0 131 Europe/Dublin 2010-11-04 +2962853 Little Sugar Loaf Little Sugar Loaf Cnoc Gilapir,Little Sugar Loaf 53.1625 -6.11167 T MT IE L 31 0 342 145 Europe/Dublin 2010-08-14 +2962854 Little Slaney River Little Slaney River 52.97778 -6.61139 H STM IE L 31 0 193 Europe/Dublin 2010-08-14 +2962855 Little Skellig Little Skellig Little Skellig,Little Skelligs 51.78333 -10.5 T RK IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962856 Little Island Station Little Island Station Little Island,Little Island Station 51.9 -8.35 S RSTN IE IE M 04 0 10 Europe/Dublin 2010-08-14 +2962857 Little Island Little Island 52.24722 -7.04861 T ISL IE M 27 0 3 Europe/Dublin 2010-08-14 +2962858 Little Island Little Island 51.89639 -8.37889 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962859 The Little Furze The Little Furze 53.65 -6.66528 P PPL IE L 21 0 49 Europe/Dublin 2010-08-14 +2962860 Little Foze Rock Little Foze Rock 52.03333 -10.66667 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962861 Little Brosna River Little Brosna River 53.16556 -8.075 H STM IE 00 0 55 Europe/Dublin 1998-08-18 +2962862 Listry Bridge Listry Bridge Listry,Listry Bridge 52.11667 -9.66667 P PPL IE IE M 11 0 38 Europe/Dublin 2010-08-14 +2962863 Listrolin Listrolin 52.36333 -7.22028 P PPL IE L 13 0 139 Europe/Dublin 2010-08-14 +2962864 Lios Tuathail Lios Tuathail Listowel 52.44639 -9.485 P PPL IE M 11 4143 69 Europe/Dublin 2010-08-14 +2962865 Listerlin Listerlin 52.41528 -7.0525 P PPL IE L 13 0 148 Europe/Dublin 2010-08-14 +2962866 Listellick Listellick 52.3 -9.7 P PPL IE M 11 0 76 Europe/Dublin 1993-12-27 +2962867 Listellan Listellan 54.2 -7.11667 P PPL IE 00 0 76 Europe/Dublin 1993-12-27 +2962868 Auburn Auburn Auburn,Lishoy,Lissoy 53.5 -7.81667 P PPL IE IE L 29 0 77 Europe/Dublin 2010-08-14 +2962869 Lissoughter Lissoughter 53.48333 -9.71667 T MT IE C 10 0 185 Europe/Dublin 1993-12-27 +2962870 Lissofin Castle Lissofin Castle 52.85 -8.76667 S BLDG IE M 03 0 148 Europe/Dublin 1993-12-27 +2962871 Lissenhall House Lissenhall House Lissenhall,Lissenhall House 52.83556 -8.23889 S EST IE IE M 26 0 76 Europe/Dublin 2010-11-04 +2962872 Lisselton Lisselton Lisselton 52.49583 -9.57583 P PPL IE M 11 0 61 Europe/Dublin 2010-08-14 +2962873 Lissataggle Lissataggle 52.2 -9.58333 P PPL IE M 11 0 67 Europe/Dublin 1993-12-27 +2962874 Lissard House Lissard House Lissard,Lissard House 53.73333 -7.61667 S EST IE L 18 0 76 Europe/Dublin 2010-08-10 +2962875 Lissaphooca Cross Roads Lissaphooca Cross Roads Lissaphooca,Lissaphooca Cross Roads 51.7175 -8.7425 P PPL IE IE M 04 0 97 Europe/Dublin 2010-08-14 +2962876 Lissaniska Lissaniska 54.02278 -9.14028 P PPL IE C 20 0 41 Europe/Dublin 2010-08-14 +2962877 Lissadrone House Lissadrone House Lissadrone,Lissadrone House 54.26667 -9.28333 S EST IE C 20 0 80 Europe/Dublin 2010-08-10 +2962878 Lissadorn House Lissadorn House 53.86667 -8.16667 S EST IE C 24 0 76 Europe/Dublin 1993-12-27 +2962879 Lissadell House Lissadell House Lissadell House,Lissadil House,Lissadill,Lissadill House 54.34611 -8.58556 S HSEC IE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2962880 Lisryan Lisryan 53.73333 -7.5 P PPL IE L 18 0 94 Europe/Dublin 1993-12-27 +2962881 Lisronagh Lisronagh Lisronagh 52.41806 -7.70389 P PPL IE M 26 0 74 Europe/Dublin 2010-11-04 +2962882 Lisroe Lisroe 52.79583 -9.18861 P PPL IE M 03 0 150 Europe/Dublin 2010-08-14 +2962883 Lisrenny House Lisrenny House Lisrenny,Lisrenny House 53.905 -6.53806 S EST IE IE L 19 0 32 Europe/Dublin 2010-08-14 +2962884 Lispole Lispole Lios Poil,Lios Póil,Lispole 52.1425 -10.16028 P PPL IE IE M 11 0 64 Europe/Dublin 2010-08-14 +2962885 Lispatrick Lispatrick 51.63472 -8.56389 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962886 Lisnevagh House Lisnevagh House Lisnavagh,Lisnavagh House,Lisnevagh House 52.85639 -6.68194 S EST IE IE L 01 0 125 Europe/Dublin 2010-08-14 +2962887 Lisnaroe Lisnaroe 54.18361 -7.2475 S EST IE U 22 0 71 Europe/Dublin 2010-08-14 +2962888 Lisnalanniv Hill Lisnalanniv Hill 52.31167 -8.31028 T MT IE M 04 0 284 Europe/Dublin 2010-08-14 +2962889 Lisnakealwee Lisnakealwee 52.27167 -10.1725 P PPL IE M 11 0 69 Europe/Dublin 2010-08-14 +2962890 Lisnagry Station Lisnagry Station Lismagry Station,Lisnagry,Lisnagry Station 52.66667 -8.51667 S RSTN IE IE M 16 0 45 Europe/Dublin 2010-08-14 +2962891 Lisnagowan House Lisnagowan House 54.06667 -7.3 S BLDG IE U 02 0 76 Europe/Dublin 1993-12-27 +2962892 Lisnageer Lisnageer 54.07167 -7.16306 P PPL IE U 02 0 77 Europe/Dublin 2010-08-14 +2962893 Lisnagar Lisnagar 52.07333 -8.31361 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +2962894 Lismullin House Lismullin House Lismullen House,Lismullin House 53.59583 -6.59417 S EST IE IE L 21 0 80 Europe/Dublin 2010-08-14 +2962895 Lismoyny Lismoyny 53.34889 -7.55389 P PPL IE L 29 0 76 Europe/Dublin 2010-08-14 +2962896 Lismore House Lismore House 52.91944 -7.575 S RUIN IE L 15 0 148 Europe/Dublin 2010-08-14 +2962897 Lismore House Lismore House Lismore Castle,Lismore House 53.2 -8.08333 S EST IE IE C 10 0 57 Europe/Dublin 2010-08-14 +2962898 Lismore Lismore Lios Mor,Lios Mór,Lismore 52.13667 -7.93083 P PPL IE M 27 0 45 Europe/Dublin 2010-08-14 +2962899 Lismoher House Lismoher House Lismoher,Lismoher House 53 -9.16667 S BLDG IE M 03 0 76 Europe/Dublin 2010-08-10 +2962900 Lismanny House Lismanny House 53.26667 -8.18333 S EST IE C 10 0 68 Europe/Dublin 1993-12-27 +2962901 Lismacue House Lismacue House Lismacue,Lismacue House 52.45 -8.05 S EST IE IE M 26 0 74 Europe/Dublin 2010-11-04 +2962902 Lislevane Lislevane 51.60833 -8.77944 P PPL IE M 04 0 18 Europe/Dublin 2010-08-14 +2962903 Lislary Lislary 54.38333 -8.61667 P PPL IE C 25 0 1 Europe/Dublin 1993-12-27 +2962904 Liskelly House Liskelly House 53.27611 -8.29556 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2962905 Lisheen Castle Lisheen Castle 52.75611 -7.74333 S EST IE M 26 0 132 Europe/Dublin 2010-08-14 +2962906 Lisheenavalla Lisheenavalla 53.33028 -8.88528 P PPL IE C 10 0 20 Europe/Dublin 2010-08-14 +2962907 Lisheen Lisheen 53.41667 -8.48333 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2962908 Lisheen Lisheen 52.13333 -9.25 P PPL IE M 11 0 166 Europe/Dublin 1993-12-27 +2962909 Lisheen Lisheen 51.52222 -9.39417 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +2962910 Lisgrea Lisgrea 53.85 -7.08333 P PPL IE U 02 0 127 Europe/Dublin 1993-12-27 +2962911 Lisgoold Lisgoold 51.97333 -8.21917 P PPL IE M 04 0 102 Europe/Dublin 2010-08-14 +2962912 Lisglassock House Lisglassock House Lisglasick,Lisglassick House,Lisglassock House 53.6 -7.76667 S HSEC IE IE L 18 0 76 Europe/Dublin 2010-08-14 +2962913 Lisfinny House Lisfinny House Lisfinny,Lisfinny House 52.10444 -8.025 S EST IE IE M 27 0 34 Europe/Dublin 2010-08-14 +2962914 Lisduff Station Lisduff Station Lisduff,Lisduff Station 52.85 -7.71667 S RSTN IE IE L 15 0 152 Europe/Dublin 2010-08-14 +2962915 Lisduff House Lisduff House 52.84222 -7.70056 S EST IE L 15 0 147 Europe/Dublin 2010-08-14 +2962916 Lisduff Lisduff 53.79722 -7.02944 P PPL IE U 02 0 135 Europe/Dublin 2010-08-14 +2962917 Lisduff Lisduff 53.65 -8.75 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2962918 Lisdowney Lisdowney 52.78944 -7.38861 P PPL IE L 13 0 107 Europe/Dublin 2010-08-14 +2962919 Lisdoonvarna Lisdoonvarna Lios Duin Bhearna,Lios Dúin Bhearna,Lisdoonvarna 53.03278 -9.28833 P PPL IE IE M 03 0 77 Europe/Dublin 2010-08-14 +2962920 Lisdonagh House Lisdonagh House 53.48333 -9.05 S EST IE C 10 0 91 Europe/Dublin 1993-12-27 +2962921 Lisdeen Lisdeen 52.675 -9.60861 P PPL IE M 03 0 6 Europe/Dublin 2010-08-14 +2962922 Lisdargan Lisdargan 52.16028 -10.19333 P PPL IE M 11 0 149 Europe/Dublin 2010-08-14 +2962923 Liscooly Station Liscooly Station Liscooly,Liscooly Station 54.8 -7.63333 S RSTN IE U 06 0 47 Europe/Dublin 2010-08-10 +2962924 Lisconly Lisconly 53.58333 -8.85 P PPL IE C 10 0 55 Europe/Dublin 1993-12-27 +2962925 Liscasey Liscasey 52.75111 -9.19306 P PPL IE M 03 0 150 Europe/Dublin 2010-08-14 +2962926 Liscarton Castle Liscarton Castle Liscartan Castle,Liscarton Castle 53.66833 -6.73083 S CSTL IE IE L 21 0 51 Europe/Dublin 2010-08-14 +2962927 Liscarroll Liscarroll Lios Cearuill,Lios Cearúill,Liscarroll 52.25 -8.8 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2962928 Liscarney Liscarney 53.73333 -9.55 P PPL IE C 20 0 195 Europe/Dublin 1993-12-27 +2962929 Liscannor Bay Liscannor Bay Liscannor Bay,Liscanor Bay 52.92056 -9.42389 H BAY IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2962930 Liscannor Liscannor Lios Ceannuir,Lios Ceannúir,Liscannor,Liscanor 52.94167 -9.38583 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2962931 Liscananaun Liscananaun 53.36806 -8.96056 P PPL IE C 10 0 21 Europe/Dublin 2010-08-14 +2962932 Lisboduff Lisboduff 54.07167 -7.22194 P PPL IE U 02 0 75 Europe/Dublin 1998-04-30 +2962933 Lisbealadea Lisbealadea Lisbealad,Lisbealadea 51.7 -9.06667 P PPL IE M 04 0 80 Europe/Dublin 2010-08-10 +2962934 Lisacul Lisacul 53.85 -8.63333 P PPL IE C 24 0 65 Europe/Dublin 1993-12-27 +2962935 Linsfort Linsfort 55.17194 -7.49722 P PPL IE U 06 0 29 Europe/Dublin 2010-08-14 +2962936 Lingaun River Lingaun River Lingaun River,Linguan River 52.35 -7.36667 H STM IE L 13 0 15 Europe/Dublin 2010-08-10 +2962937 Linfield House Linfield House Linfield,Linfield House 52.57139 -8.36361 S EST IE IE M 16 0 85 Europe/Dublin 2010-08-14 +2962938 Limerick Junction Limerick Junction 52.49944 -8.2 P PPL IE M 26 0 133 Europe/Dublin 2010-08-14 +2962939 Limerick Harbour Limerick Harbour 52.66667 -8.63333 H HBR IE M 16 0 11 Europe/Dublin 2010-08-14 +2962940 Limerick Canal Limerick Canal 52.66667 -8.61667 H CNL IE M 16 0 17 Europe/Dublin 2010-08-14 +2962941 County Limerick County Limerick Contae Luimnigh,Limerick,Luimneach 52.5 -8.75 A ADM2 IE M 16 179071 63 Europe/Dublin 2010-08-14 +2962942 Limerick Limerick 52.73278 -6.29306 P PPL IE L 30 0 118 Europe/Dublin 2010-08-14 +2962943 Limerick Limerick Limereick,Limerick,Limerick - Luimneach,Limerick city,Limerik,Limerika,Limerikas,Luimneach,lymryq,rimurikku,Лимерик,לימריק,リムリック 52.66472 -8.62306 P PPLA2 IE M 16 90054 24 Europe/Dublin 2010-08-14 +2962944 Lilliput House Lilliput House 53.45 -7.43333 S EST IE L 29 0 100 Europe/Dublin 1993-12-27 +2962945 Leifear Leifear Leifear,Lifford 54.83194 -7.48361 P PPLA2 IE U 06 1617 14 Europe/Dublin 2010-09-05 +2962946 Liffey Junction Station Liffey Junction Station Liffey Junction 53.36667 -6.28333 S RSTN IE IE L 07 0 4 Europe/Dublin 2010-08-14 +2962947 River Liffey River Liffey An Life,River Liffey 53.34556 -6.21694 H STM IE IE 00 0 1 Europe/Dublin 2010-08-10 +2962948 Licky River Licky River 52.01139 -7.85389 H STM IE M 27 0 18 Europe/Dublin 2010-08-14 +2962949 Lickowen Lickowen 51.50083 -9.22972 P PPL IE M 04 0 32 Europe/Dublin 2010-08-14 +2962950 Licketstown Licketstown 52.24944 -7.21389 P PPL IE L 13 0 12 Europe/Dublin 2010-08-14 +2962951 Lickeen Lough Lickeen Lough 52.96667 -9.23 H LK IE M 03 0 101 Europe/Dublin 2010-08-14 +2962952 Lickeen House Lickeen House 52.01667 -9.88333 S EST IE M 11 0 60 Europe/Dublin 2010-08-14 +2962953 Leyny Station Leyny Station Leyny,Leyny Station 54.16667 -8.6 S RSTN IE C 25 0 75 Europe/Dublin 2010-08-10 +2962954 Levington Park Levington Park 53.55 -7.36667 S EST IE L 29 0 120 Europe/Dublin 1993-12-27 +2962955 Levally Lough Levally Lough 53.98083 -9.30389 H LK IE C 20 0 63 Europe/Dublin 2010-08-14 +2962956 Levally Lough Levally Lough 53.53333 -8.71667 H LK IE C 10 0 76 Europe/Dublin 1993-12-27 +2962957 Levally House Levally House Levally,Levally House 52.835 -7.56861 S EST IE IE L 15 0 137 Europe/Dublin 2010-08-14 +2962958 Leugh Leugh 52.61667 -8.18333 P PPL IE M 26 0 308 Europe/Dublin 2010-08-14 +2962959 Lettybrook House Lettybrook House Lettybrook,Lettybrook House 53.1 -7.68333 S EST IE IE L 23 0 158 Europe/Dublin 2010-08-14 +2962960 Lettermore Island Lettermore Island 53.30139 -9.67 T ISL IE C 10 0 20 Europe/Dublin 2010-08-14 +2962961 Letterkenny Letterkenny Leitir Ceanainn,Letterkenny 54.95 -7.73333 P PPL IE U 06 16901 53 Europe/Dublin 2010-08-14 +2962962 Letterfrack Letterfrack Leitir Fraic,Letterfrack 53.55 -9.95 P PPL IE IE C 10 0 82 Europe/Dublin 2010-08-14 +2962963 Letterfinish Letterfinish 51.86667 -9.81667 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +2962964 Letterdunane Letterdunane 51.82833 -9.57 P PPL IE M 11 0 293 Europe/Dublin 2010-08-14 +2962965 Lettercraffroe Lough Lettercraffroe Lough Lettercraffroe,Lettercraffroe Lough 53.38167 -9.41417 H LK IE IE C 10 0 163 Europe/Dublin 2010-08-14 +2962966 Letterbreckaun Letterbreckaun 53.53333 -9.73333 T MT IE C 10 0 261 Europe/Dublin 1993-12-27 +2962967 Lettera Lettera 53.6 -8.6 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2962968 Lerr River Lerr River Leer River,Lerr River 52.87917 -6.94056 H STM IE IE L 12 0 48 Europe/Dublin 2010-08-14 +2962969 Lerrig Lerrig 52.35 -9.75 P PPL IE M 11 0 67 Europe/Dublin 2010-08-14 +2962970 Lenstown Lenstown 54.28972 -9.01889 P PPL IE C 25 0 2 Europe/Dublin 2010-08-14 +2962971 Lough Lene Lough Lene Lough Lene 53.66028 -7.22833 H LK IE L 29 0 143 Europe/Dublin 2010-08-14 +2962972 Lenadoon Point Lenadoon Point Kinnasharragh Point,Lenadoon Point 54.2925 -9.05556 T PT IE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2962973 Lemon Rock Lemon Rock 51.8 -10.45 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962974 Leixlip Leixlip Leim an Bhradain,Leixlip,Léim an Bhradáin 53.36583 -6.49556 P PPL IE L 12 15729 48 Europe/Dublin 2010-08-14 +2962975 County Leitrim County Leitrim Contae Liatroma,Leitrim,Liatroim 54.11667 -8 A ADM2 IE C 14 25895 301 Europe/Dublin 2010-08-14 +2962976 Leitrim Leitrim Leitrim,Liatroim 53.99083 -8.06361 P PPL IE C 14 0 71 Europe/Dublin 2010-08-14 +2962977 Leitrim Leitrim 53.15722 -8.45417 P PPL IE C 10 0 72 Europe/Dublin 2010-08-14 +2962978 Mount Leinster Mount Leinster Mount Leinster 52.61833 -6.78 T MT IE L 01 0 796 629 Europe/Dublin 2011-03-08 +2962979 Leinster Leinster Cuige Laighean,Cúige Laighean,Leinster,Province of Leinster 53.08333 -7 L RGN IE L 12 0 72 Europe/Dublin 2010-08-10 +2962980 Leighlinbridge Leighlinbridge Leighlinbridge,Leithghlinn an Droichid 52.73639 -6.9725 P PPL IE L 01 0 39 Europe/Dublin 2010-08-14 +2962981 Lehinch Lehinch An Leacht,Lahinch,Lehinch 52.93667 -9.34528 P PPL IE M 03 0 30 Europe/Dublin 2010-08-14 +2962982 Leggah Leggah Legga,Leggah 53.9 -7.66667 P PPL IE IE L 18 0 80 Europe/Dublin 2010-08-14 +2962983 Legan Legan Legan,Lenamore 53.61667 -7.61667 P PPL IE IE L 18 0 76 Europe/Dublin 2010-08-14 +2962984 Leenaun Leenaun Leenane,Leenaun 53.6 -9.68333 P PPL IE C 10 0 116 Europe/Dublin 2010-08-10 +2962985 Leemount Leemount 51.9 -8.56667 S EST IE M 04 0 64 Europe/Dublin 2010-08-14 +2962986 Leekfield Leekfield Leekfield,Leekfield House 54.23333 -8.71667 S EST IE C 25 0 78 Europe/Dublin 2010-08-10 +2962987 River Lee River Lee 52.26667 -9.71667 H STM IE M 11 0 37 Europe/Dublin 1993-12-27 +2962988 River Lee River Lee 51.89778 -8.39778 H STM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2962989 Lecky Rocks Lecky Rocks Leahy Rocks,Lecky Rocks 53.61611 -10.11972 T RKS IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2962990 Leck Point Leck Point 52.54556 -9.67778 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2962991 Leckemy Leckemy Lecamy,Leckemy 55.23333 -7.08333 P PPL IE U 06 0 110 Europe/Dublin 2010-08-10 +2962992 Lecarrow Lecarrow 54.14472 -8.09917 P PPL IE C 14 0 58 Europe/Dublin 2010-08-14 +2962993 Lecarrow Lecarrow 53.55 -8.05 P PPL IE C 24 0 68 Europe/Dublin 1993-12-27 +2962994 Leatbeg Leatbeg 55.18333 -7.75 P PPL IE U 06 0 1 Europe/Dublin 1993-12-27 +2962995 Leap Castle Leap Castle 53.02694 -7.80833 S EST IE L 15 0 157 Europe/Dublin 2010-08-14 +2962996 The Leap The Leap 52.40861 -6.70083 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +2962997 Leap Leap An Leim,An Léim,Leap 51.5925 -9.13 P PPL IE M 04 0 88 Europe/Dublin 2011-03-06 +2962998 Leansaghane Leansaghane 52.54333 -9.65444 P PPL IE M 11 0 60 Europe/Dublin 2010-08-14 +2962999 Leannan River Leannan River Lannan River,Leannan River 55.05 -7.71667 H STM IE IE U 06 0 54 Europe/Dublin 2010-08-14 +2963000 Lough Leane Lough Leane Lough Leane,Lower Lake 52.03333 -9.55 H LK IE M 11 0 58 Europe/Dublin 2010-08-10 +2963001 Leanamore Leanamore 52.53083 -9.43444 P PPL IE M 11 0 56 Europe/Dublin 2010-08-14 +2963002 Leamslug Leamslug 54.09694 -10.235 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963003 Leamlara House Leamlara House Leamlara,Leamlara House 51.96194 -8.27222 S EST IE IE M 04 0 152 Europe/Dublin 2010-08-14 +2963004 Slieve League Slieve League Slieve League 54.65083 -8.69389 T MT IE U 06 0 89 Europe/Dublin 2010-08-14 +2963005 Leaghany River Leaghany River Leaghany River 54.63333 -7.85 H STM IE 00 0 132 Europe/Dublin 2010-08-10 +2963006 Leaffony River Leaffony River Leaffany River,Leaffony River 54.26667 -9.06667 H STM IE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2963007 Laytown Laytown An Inse,Laytown 53.68194 -6.23917 P PPL IE L 21 6342 -9999 Europe/Dublin 2010-08-14 +2963008 Lawrence Cove Lawrence Cove Lawrence Cove 51.63333 -9.81667 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-10 +2963009 Lawderdale House Lawderdale House 54.03167 -7.82306 S HSEC IE C 14 0 76 Europe/Dublin 2010-08-14 +2963010 Lavey Lavey 53.96972 -7.2425 P PPL IE U 02 0 146 Europe/Dublin 2010-08-14 +2963011 Lavally Lavally 53.24389 -8.81917 S EST IE C 10 0 16 Europe/Dublin 2010-08-14 +2963012 Laurencetown Laurencetown An Baile Mor,An Baile Mór,Laurencetown 53.23028 -8.18 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2963013 Lauragh Lauragh An Laithreach,An Láithreach,Lauragh 51.75 -9.76667 P PPL IE M 11 0 46 Europe/Dublin 2010-08-14 +2963014 River Laune River Laune 52.13333 -9.78333 H STM IE M 11 0 12 Europe/Dublin 2010-08-14 +2963015 Laughton House Laughton House Laughton,Laughton House 52.87528 -7.97361 S EST IE IE L 23 0 152 Europe/Dublin 2010-08-14 +2963016 Latton Latton 54.06972 -6.94806 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +2963017 Lattin Lattin 52.46694 -8.27528 P PPL IE M 26 0 159 Europe/Dublin 2010-08-14 +2963018 Larkfield House Larkfield House Larkfield,Larkfield House 53.48333 -7.28333 S EST IE L 29 0 124 Europe/Dublin 2010-08-10 +2963019 Larkfield Larkfield 54.26139 -8.15694 P PPL IE C 14 0 182 Europe/Dublin 2010-08-14 +2963020 Larkfield Larkfield 54.27833 -8.18806 S EST IE C 14 0 103 Europe/Dublin 2010-08-14 +2963021 Largydonnell Largydonnell 54.41111 -8.31944 P PPL IE C 14 0 64 Europe/Dublin 2010-08-14 +2963022 Largy Largy 54.62944 -8.51278 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963023 Largan Largan 53.91667 -7.33333 P PPL IE U 02 0 152 Europe/Dublin 1993-12-27 +2963024 Larch Hill Larch Hill 53.2 -6.58333 P PPL IE 00 0 187 Europe/Dublin 2007-05-30 +2963025 Strandhill Strandhill An Leathros,Larass,Strandhill 54.27194 -8.59333 P PPL IE C 25 0 24 Europe/Dublin 2010-08-14 +2963026 Larah River Larah River Larah River,River Laragh 54.05 -7.18861 H STM IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2963027 Larah Larah 53.99333 -7.21583 P PPL IE U 02 0 114 Europe/Dublin 2010-08-14 +2963028 Laragh Laragh An Laithreach,Lara,Laragh,Лара 53.00444 -6.29889 P PPL IE L 31 537 146 Europe/Dublin 2010-08-14 +2963029 Laracor Laracor 53.525 -6.78222 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +2963030 Laputa Laputa Laputa,Loputo 54.48333 -8.13333 P PPL IE U 06 0 73 Europe/Dublin 2010-08-10 +2963031 Laois Laois Contae Laoighise,Contae Laoise,County Laois,Laoighis,Laois,Leix,Queen's County 53 -7.4 A ADM2 IE L 15 60804 113 Europe/Dublin 2010-08-14 +2963032 Lannagh Lough Lannagh Lough Castlebar Lough,Lannagh Lough,Lough Lanach 53.85 -9.35 H LK IE C 20 0 62 Europe/Dublin 2010-08-10 +2963033 Langfords Lodge Langfords Lodge 52.3 -9 S EST IE 00 0 173 Europe/Dublin 1993-12-27 +2963034 River Laney River Laney 51.88333 -8.93333 H STM IE M 04 0 85 Europe/Dublin 2010-08-14 +2963035 Lanespark House Lanespark House Lanespark,Lanespark House 52.60417 -7.67306 S EST IE IE M 26 0 150 Europe/Dublin 2010-11-04 +2963036 Lanesborough Lanesborough Beal Atha Liag,Béal Átha Liag,Lanesborough 53.66667 -7.98333 P PPL IE L 18 0 72 Europe/Dublin 2010-08-14 +2963037 Lambs Head Lambs Head Lamb Head,Lambs Head 51.74528 -10.13278 T CAPE IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963038 Lambert Lodge Lambert Lodge 53.20361 -8.72167 S HSEC IE C 10 0 112 Europe/Dublin 2010-08-14 +2963039 Lambay Island Lambay Island Lambay Island,Reachrainn 53.49361 -6.02167 T ISL IE IE L 07 0 1 Europe/Dublin 2010-11-04 +2963040 Lakeville Lakeville 53.96667 -7.48333 S RUIN IE U 02 0 122 Europe/Dublin 1993-12-27 +2963041 Lake View Lake View 53.66667 -9.25 S EST IE C 20 0 49 Europe/Dublin 1993-12-27 +2963042 Lake View Lake View 53.8 -6.96667 S BLDG IE U 02 0 144 Europe/Dublin 1993-12-27 +2963043 Lakelands Lakelands 54.16028 -6.80639 S EST IE U 22 0 151 Europe/Dublin 2010-08-14 +2963044 Lakefield House Lakefield House Lakefield,Lakefield House 53.69333 -7.08861 S EST IE IE L 21 0 134 Europe/Dublin 2010-08-14 +2963045 Lakefield Lakefield 53.9 -7.83333 S EST IE C 14 0 70 Europe/Dublin 2010-08-14 +2963046 Lakefield Lakefield 52.44 -7.69222 S EST IE M 26 0 77 Europe/Dublin 2010-08-14 +2963047 Lahard Lahard 53.98333 -7.5 P PPL IE U 02 0 91 Europe/Dublin 2010-08-14 +2963048 Lagore House Lagore House Lagore,Lagore House 53.51583 -6.50361 S EST IE IE L 21 0 81 Europe/Dublin 2010-08-14 +2963049 Laghy Laghy An Lathaigh,Laghy 54.61667 -8.1 P PPL IE U 06 0 41 Europe/Dublin 2010-08-14 +2963050 Laghtgeorge Laghtgeorge 53.355 -8.92722 P PPL IE C 10 0 15 Europe/Dublin 2010-08-14 +2963051 Laghtdauhybaun Laghtdauhybaun Laghtdauhybaun,Slieve Car 54.06667 -9.65 T MT IE C 20 0 722 340 Europe/Dublin 2010-08-14 +2963052 Lough Lagha Lough Lagha 55.09778 -8.18778 H LK IE U 06 0 165 Europe/Dublin 2010-08-14 +2963053 Laffansbridge Laffansbridge 52.57528 -7.72028 P PPL IE M 26 0 151 Europe/Dublin 2010-08-14 +2963054 Lady’s Island Lake Lady's Island Lake 52.19111 -6.38806 H LK IE L 30 0 1 Europe/Dublin 2010-08-14 +2963055 Lady’s Island Lady's Island 52.21083 -6.37056 T ISL IE L 30 0 1 Europe/Dublin 2010-08-14 +2963056 Ladysbridge Ladysbridge Droichead na Scuab,Ladysbridge 51.89528 -8.04583 P PPL IE M 04 0 54 Europe/Dublin 2010-08-14 +2963057 Ladestown House Ladestown House 53.48333 -7.4 S EST IE L 29 0 108 Europe/Dublin 1993-12-27 +2963058 Lackenacoombe House Lackenacoombe House 52.59889 -8.11361 S EST IE M 26 0 202 Europe/Dublin 2010-08-14 +2963059 Lackan Bay Lackan Bay 54.28528 -9.23694 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963060 Lackan Lackan 53.14028 -6.49833 P PPL IE L 31 0 271 Europe/Dublin 2010-08-14 +2963061 Lackagh River Lackagh River Lackagh,Lackagh River 52.13333 -7.85 H STM IE IE M 27 0 28 Europe/Dublin 2010-08-14 +2963062 Lackagh Lackagh 53.36667 -8.86667 P PPL IE C 10 0 24 Europe/Dublin 1993-12-27 +2963063 Lacca Manor Lacca Manor Lacca Manor,Lacka House 53.0275 -7.55806 S EST IE IE L 15 0 146 Europe/Dublin 2010-08-14 +2963064 Labbadish Labbadish 54.93333 -7.61667 P PPL IE U 06 0 62 Europe/Dublin 1993-12-27 +2963065 Labasheeda Labasheeda Labasheeda,Labbasheeda,Leaba Shioda,Leaba Shíoda 52.62333 -9.24694 P PPL IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963066 Laban Laban 53.13917 -8.80611 P PPL IE C 10 0 28 Europe/Dublin 2010-08-14 +2963067 Kylesa Kylesa Kylesa,Kylesalia 53.35306 -9.70778 P PPL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +2963068 Kyle Park Kyle Park 53.0075 -8.17972 S EST IE M 26 0 58 Europe/Dublin 2010-08-14 +2963069 Kylemore Lough Kylemore Lough 53.56056 -9.8525 H LK IE C 10 0 65 Europe/Dublin 2010-08-14 +2963070 Kylemore Castle Kylemore Castle 53.56667 -9.9 S EST IE C 10 0 269 Europe/Dublin 2010-08-14 +2963071 Kylemore Kylemore 53.09972 -8.38194 P PPL IE C 10 0 71 Europe/Dublin 2010-08-14 +2963072 Kyle House Kyle House 52.81056 -7.63028 S EST IE L 15 0 149 Europe/Dublin 2010-08-14 +2963073 Kylebrack Kylebrack 53.13944 -8.46639 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +2963074 Kyleballyhue Kyleballyhue Kilballyhue,Kilballyhue House,Kyleballyhue 52.78028 -6.86389 S EST IE IE L 01 0 150 Europe/Dublin 2010-08-14 +2963075 Knuttery Knuttery 52.08 -8.54111 P PPL IE M 04 0 243 Europe/Dublin 1997-12-15 +2963076 Knockyhena Knockyhena 52.13333 -9.21667 P PPL IE M 04 0 163 Europe/Dublin 1993-12-27 +2963077 Knockwilliam Knockwilliam 52.45778 -7.18861 P PPL IE L 13 0 139 Europe/Dublin 2010-08-14 +2963078 Knockvicar Bridge Knockvicar Bridge Knockvicar,Knockvicar Bridge 54 -8.2 P PPL IE IE C 24 0 72 Europe/Dublin 2010-08-14 +2963079 Knocktopher Knocktopher Cnoc an Tochair,Cnoc an Tóchair,Knockstopher,Knocktopher 52.48361 -7.21194 P PPL IE L 13 0 63 Europe/Dublin 2010-08-14 +2963080 Knockroe Knockroe 51.93944 -10.03556 P PPL IE M 11 0 112 Europe/Dublin 2010-08-14 +2963081 Knockroe Knockroe 52.5925 -6.78778 T MT IE 00 0 439 Europe/Dublin 1998-02-09 +2963082 Knockrawer Knockrawer 54.83056 -8.19278 T MT IE U 06 0 281 Europe/Dublin 2010-08-14 +2963083 Knockranny House Knockranny House Knockranny,Knockranny House 54.05361 -8.16028 S HSEC IE IE C 24 0 83 Europe/Dublin 2010-08-14 +2963084 Knockraha Knockraha 51.95639 -8.34056 P PPL IE M 04 0 88 Europe/Dublin 2010-08-14 +2963085 Knockowen Knockowen 51.74667 -9.72583 T MT IE M 11 0 442 Europe/Dublin 1997-10-30 +2963086 Knocknaskagh Knocknaskagh 52.105 -8.43361 T MT IE M 04 0 343 Europe/Dublin 2010-08-14 +2963087 Knocknarea Knocknarea Knocknarea 54.26056 -8.57694 T MT IE C 25 0 330 204 Europe/Dublin 2011-01-04 +2963088 Knocknahilan Knocknahilan 51.84389 -8.74111 P PPL IE M 04 0 81 Europe/Dublin 2010-08-14 +2963089 Knocknagree Knocknagree Knocknagree 52.11667 -9.21667 P PPL IE 00 0 152 Europe/Dublin 2010-08-10 +2963090 Knocknagashel Knocknagashel 52.33333 -9.38333 P PPL IE M 11 0 152 Europe/Dublin 1993-12-27 +2963091 Knocknagarhoon Castle Knocknagarhoon Castle 52.63333 -9.75 S RUIN IE M 03 0 77 Europe/Dublin 1993-12-27 +2963092 Knocknadobar Knocknadobar Knocknadobar,Knocknadober 51.99444 -10.17417 T MT IE IE M 11 0 521 Europe/Dublin 2010-08-14 +2963093 Knockmoylan Knockmoylan 52.4 -7.2 P PPL IE L 13 0 134 Europe/Dublin 2010-08-14 +2963094 Knockmore Knockmore 54.01889 -9.17528 P PPL IE C 20 0 24 Europe/Dublin 2010-08-14 +2963095 Knockmealdown Mountains Knockmealdown Mountains Knockmealdown Mountains 52.22778 -7.91528 T MTS IE 00 0 472 Europe/Dublin 2010-08-10 +2963096 Knockmahon Knockmahon 52.14111 -7.35639 P PPL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2963097 Knocklong Knocklong 52.43583 -8.40639 P PPL IE M 16 0 86 Europe/Dublin 2010-08-14 +2963098 Knockloe House Knockloe House Knockloe,Knockloe House 52.80611 -6.68111 S EST IE IE L 31 0 112 Europe/Dublin 2010-08-14 +2963099 Knockhill and Drinagh Knockhill and Drinagh Drinagh,Knockhill and Drinagh 53.15417 -7.68167 P PPL IE IE L 23 0 90 Europe/Dublin 2010-08-14 +2963100 Knockglass House Knockglass House Knockglass,Knockglass House 54.12167 -9.30472 S HSEC IE IE C 20 0 36 Europe/Dublin 2010-08-14 +2963101 Knockferry Knockferry 53.41667 -9.15 P PPL IE C 10 0 20 Europe/Dublin 1993-12-27 +2963102 Knockdrin Castle Knockdrin Castle 53.56667 -7.3 S EST IE L 29 0 124 Europe/Dublin 1993-12-27 +2963103 Knockcroghery Knockcroghery Cnoc an Chrochaire,Knockcroghery 53.56667 -8.1 P PPL IE C 24 0 73 Europe/Dublin 2010-08-14 +2963104 Knockbue Station Knockbue Station 51.68333 -9.2 S RSTN IE M 04 0 152 Europe/Dublin 1993-12-27 +2963105 Knockbridge Knockbridge Knockbridge,Nok Bride,Нок Бриде 53.9732 -6.48597 P PPL IE L 19 1700 30 Europe/Dublin 2010-08-14 +2963106 Knockbrack Knockbrack 54.91333 -7.68306 P PPL IE U 06 0 122 Europe/Dublin 2010-08-14 +2963107 Knockbrack Knockbrack 51.95 -9.51667 T MT IE M 11 0 527 Europe/Dublin 2010-08-14 +2963108 Knockbrack Knockbrack 53.34333 -8.71194 S EST IE C 10 0 65 Europe/Dublin 2010-08-14 +2963109 Knockboy Knockboy Knockboy 51.81417 -9.44417 T MT IE 00 0 610 Europe/Dublin 2010-08-10 +2963110 Knockbeha Cottage Knockbeha Cottage Knockbeha,Knockbeha Cottage 52.97083 -8.63917 S HSEC IE IE M 03 0 77 Europe/Dublin 2010-08-14 +2963111 Knockbane House Knockbane House 53.36444 -9.21056 S HSEC IE C 10 0 62 Europe/Dublin 2010-08-14 +2963112 Knockavrogeen Knockavrogeen 52.1625 -10.31972 P PPL IE M 11 0 87 Europe/Dublin 2010-08-14 +2963113 Knockaunnaglashy Knockaunnaglashy 52.10833 -9.89417 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2963114 Knockatooan Knockatooan 52.28333 -9.21667 P PPL IE 00 0 227 Europe/Dublin 1993-12-27 +2963115 Knockatanvally Knockatanvally 52.46444 -9.25417 P PPL IE M 16 0 124 Europe/Dublin 2010-08-14 +2963116 Knockasturkeen House Knockasturkeen House Knockasturkeen,Knockasturkeen House 51.88333 -8.13333 S BLDG IE IE M 04 0 76 Europe/Dublin 2010-08-14 +2963117 Knockarradaun West Knockarradaun West 52.91667 -9.1 P PPL IE M 03 0 75 Europe/Dublin 1993-12-27 +2963118 Knockarradaun East Knockarradaun East 52.91667 -9.11667 P PPL IE M 03 0 77 Europe/Dublin 1993-12-27 +2963119 Knockanure Knockanure 52.46111 -9.37056 P PPL IE M 11 0 77 Europe/Dublin 2010-08-14 +2963120 Knockanore Mountain Knockanore Mountain Knockanore Mountain,Knockenore 52.52306 -9.60417 T HLL IE IE M 11 0 148 Europe/Dublin 2010-08-14 +2963121 Knockanore Knockanore Knockanore 52.05194 -7.88528 P PPL IE M 27 0 37 Europe/Dublin 2010-08-14 +2963122 Knockanira House Knockanira House 52.76667 -9.05 S EST IE M 03 0 49 Europe/Dublin 1993-12-27 +2963123 Knockanare Knockanare 51.96667 -8.73333 P PPL IE M 04 0 159 Europe/Dublin 2010-08-14 +2963124 Knockananna Knockananna 52.87 -6.49556 P PPL IE L 31 0 226 Europe/Dublin 2010-08-14 +2963125 Knockanaffrin Knockanaffrin 52.2875 -7.59444 T MT IE M 27 0 573 Europe/Dublin 2010-08-14 +2963126 Knockanade Knockanade 52.33333 -9.18333 T MT IE M 16 0 305 Europe/Dublin 1993-12-27 +2963127 Knockalough Knockalough 52.71028 -9.26056 P PPL IE M 03 0 47 Europe/Dublin 2010-08-14 +2963128 Knocka Lough Knocka Lough 52.7125 -9.2725 H LK IE M 03 0 44 Europe/Dublin 2010-08-14 +2963129 Knockalongy Knockalongy 54.19583 -8.75889 T MT IE C 25 0 544 486 Europe/Dublin 2010-08-14 +2963130 Knockalla Mountain Knockalla Mountain Devil's Backbone,Devil’s Backbone,Knockalla Mountain 55.16444 -7.61472 T MT IE IE U 06 0 210 Europe/Dublin 2010-08-14 +2963131 Knockainy Knockainy Cnoc Aine,Cnoc Áine,Knockainy 52.475 -8.46472 P PPL IE IE M 16 0 102 Europe/Dublin 2010-08-14 +2963132 Knockadoon Head Knockadoon Head 51.88 -7.86861 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963133 Knockadoo Knockadoo 53.95222 -8.35583 S EST IE C 24 0 75 Europe/Dublin 1998-09-01 +2963134 Knockaderry House Knockaderry House Knockaderry,Knockaderry House 52.46778 -8.99 S HSEC IE IE M 16 0 67 Europe/Dublin 2010-08-14 +2963135 Knockaderry Knockaderry 52.46556 -8.96528 P PPL IE M 16 0 79 Europe/Dublin 2010-08-14 +2963136 Knockaderry Knockaderry 52.45 -8.96667 P PPL IE M 16 0 75 Europe/Dublin 1993-12-27 +2963137 Knockadaff Knockadaff 54.31667 -9.76667 T HLL IE C 20 0 210 78 Europe/Dublin 2010-08-14 +2963138 Knockacappul Knockacappul 52.06667 -9.28333 P PPL IE M 11 0 150 Europe/Dublin 1993-12-27 +2963139 Knock Knock Cnoc Mhuire 53.79391 -8.91961 P PPL IE IE C 20 0 78 Europe/Dublin 2010-08-14 +2963140 Knock Knock 52.92028 -7.68444 P PPL IE M 26 0 149 Europe/Dublin 2010-08-14 +2963141 Knock Knock 52.62806 -9.33333 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963142 Knights Town Knights Town 51.92694 -10.28722 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963143 Knappagh Knappagh 53.75 -9.55 P PPL IE C 20 0 118 Europe/Dublin 1993-12-27 +2963144 Kishkeam Kishkeam Kishkeam,Kiskeam 52.16667 -9.16667 P PPL IE M 04 0 233 Europe/Dublin 2010-08-10 +2963145 Kish Bank Kish Bank Kish Bank 53.25 -5.91667 H BNK IE 00 0 -9999 Europe/Dublin 2010-08-10 +2963146 Kirkullen House Kirkullen House Kirkcullen House,Kirkullen House 53.31472 -9.15028 S HSEC IE IE C 10 0 49 Europe/Dublin 2010-08-14 +2963147 Kirikee Kirikee 52.94556 -6.32722 P PPL IE L 31 0 170 Europe/Dublin 2010-08-14 +2963148 Kippure House Kippure House 53.16528 -6.37861 S EST IE L 31 0 379 Europe/Dublin 2010-08-14 +2963149 Kippure Kippure Cipiure,Cipiúre,Kippure 53.17611 -6.33417 T MT IE L 31 0 754 622 Europe/Dublin 2010-08-10 +2963150 Kinvarra Bay Kinvarra Bay 53.16389 -8.95667 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963151 Kinvarra Kinvarra Cinn Mhara,Kinvara,Kinvarra 53.13944 -8.93361 P PPL IE C 10 0 6 Europe/Dublin 2010-08-14 +2963152 Kinsaley Kinsaley 53.42472 -6.17583 P PPL IE L 07 0 2 Europe/Dublin 2010-08-14 +2963153 Kinsale Junction Kinsale Junction Kinsale Junction,Kinsale Junction Station 51.8 -8.63333 S RSTN IE IE M 04 0 72 Europe/Dublin 2010-08-14 +2963154 Kinsale Harbour Kinsale Harbour 51.67028 -8.50639 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963155 Cionn tSáile Cionn tSaile Cionn tSaile,Cionn tSáile,Kinsale 51.7075 -8.53056 P PPL IE M 04 3843 1 Europe/Dublin 2010-08-14 +2963156 Kinnitty Kinnitty Cionn Eitigh,Kinitty,Kinnitty 53.09556 -7.72139 P PPL IE L 23 0 138 Europe/Dublin 2010-08-14 +2963157 Kinneigh Kinneigh 51.76667 -8.96667 P PPL IE M 04 0 153 Europe/Dublin 2010-08-14 +2963158 Kinnegad Kinnegad Cionn Atha Gad,Cionn Átha Gad,Kinnegad 53.45222 -7.09972 P PPL IE L 29 0 119 Europe/Dublin 2010-08-14 +2963159 Kinnagoe Bay Kinnagoe Bay Kinnagoe Bay 55.25 -7 H BAY IE U 06 0 199 Europe/Dublin 2010-08-10 +2963160 Kinnafad Castle Kinnafad Castle Kinnafad,Kinnafad Castle 53.36444 -7.07833 S RUIN IE IE L 12 0 108 Europe/Dublin 2010-08-14 +2963161 Kinnacorra Kinnacorra 53.8075 -9.94333 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963162 Kinlough Kinlough Cionn Locha,Kinlough 54.45 -8.28333 P PPL IE C 14 0 44 Europe/Dublin 2010-08-14 +2963163 Kingston House Kingston House 52.91667 -6.23333 S EST IE L 31 0 97 Europe/Dublin 2010-08-14 +2963164 Kings River Kings River 53.08639 -6.55056 H STM IE L 31 0 226 Europe/Dublin 2010-08-14 +2963165 Kings River Kings River 52.54694 -7.19333 H STM IE L 13 0 48 Europe/Dublin 2010-08-14 +2963166 Kings Mountain Kings Mountain 54.3475 -8.45417 T MT IE C 25 0 465 253 Europe/Dublin 2010-08-14 +2963167 Kingsland Kingsland Kingsland,Rinn a Rodain,Rinn a Rodáin 53.91667 -8.36667 P PPL IE C 24 0 73 Europe/Dublin 2010-08-10 +2963168 Kingsfort Kingsfort 53.77444 -6.90667 S EST IE L 21 0 80 Europe/Dublin 2010-08-14 +2963169 Kingscourt Kingscourt Dun An Ri,Dún An Ri,Kingscourt 53.90806 -6.80556 P PPL IE U 02 0 91 Europe/Dublin 2011-03-06 +2963170 Kingsbridge Station Kingsbridge Station Kingsbridge Terminal,Kingsbridge Terminus 53.35 -6.25 S RSTN IE IE L 07 0 1 Europe/Dublin 2010-08-14 +2963171 Kingsborough House Kingsborough House 54.08111 -8.33139 S HSEC IE C 25 0 70 Europe/Dublin 2010-08-14 +2963172 Kindrum Kindrum Kindrum,Kindrum More 55.22389 -7.69972 P PPL IE IE U 06 0 99 Europe/Dublin 2010-08-14 +2963173 Kincon Kincon 54.20694 -9.31806 P PPL IE C 20 0 56 Europe/Dublin 2010-08-14 +2963174 Kincaslough Kincaslough Cionn Caslach,Kincashla,Kincaslough,Kincasslagh 55.01667 -8.38333 P PPL IE U 06 0 13 Europe/Dublin 2010-08-14 +2963175 Kinard House Kinard House Kinard,Kinard House 53.85 -8.16667 S EST IE C 24 0 75 Europe/Dublin 2010-08-10 +2963176 Kinard Kinard 53.85 -8.18333 P PPL IE C 24 0 75 Europe/Dublin 1993-12-27 +2963177 Kinard Kinard 52.55278 -9.28139 P PPL IE M 16 0 103 Europe/Dublin 2010-08-14 +2963178 Kinard Kinard 52.13333 -10.2 P PPL IE M 11 0 42 Europe/Dublin 2010-08-14 +2963179 Lough Kinale Lough Kinale 53.76667 -7.4 H LK IE 00 0 72 Europe/Dublin 1993-12-27 +2963180 Kinaff Bridge Kinaff Bridge 53.88333 -8.98333 P PPL IE C 20 0 33 Europe/Dublin 1993-12-27 +2963181 Kilyon House Kilyon House 53.48861 -6.97139 S EST IE L 21 0 82 Europe/Dublin 2010-08-14 +2963182 Kilworth Mountains Kilworth Mountains 52.23694 -8.22694 T MTS IE M 04 0 151 Europe/Dublin 2010-08-14 +2963183 Kilworth Camp Kilworth Camp 52.21389 -8.27222 P PPL IE M 04 0 167 Europe/Dublin 2010-08-14 +2963184 Kilworth Kilworth Cill Uird,Kilworth 52.17639 -8.24417 P PPL IE M 04 0 68 Europe/Dublin 2010-08-14 +2963185 Kilvine Kilvine 53.66667 -8.83333 P PPL IE C 20 0 67 Europe/Dublin 1993-12-27 +2963186 Kiltyclogher Kiltyclogher Coillte Clochair,Kiltyclogher 54.35833 -8.03667 P PPL IE C 14 0 76 Europe/Dublin 2010-08-14 +2963187 Kiltumper Kiltumper 52.73333 -9.3 P PPL IE M 03 0 83 Europe/Dublin 1993-12-27 +2963188 Kiltullagh Kiltullagh Killtullagh,Kiltulla,Kiltullagh 53.30889 -8.95556 P PPL IE IE C 10 0 9 Europe/Dublin 2010-08-14 +2963189 Kiltullagh Kiltullagh Cill Tulach,Kiltullagh 53.27167 -8.63417 P PPL IE C 10 0 56 Europe/Dublin 2010-08-14 +2963190 Kiltubbrid Station Kiltubbrid Station Kiltubbrid,Kiltubbrid Station 54.03333 -7.96667 S RSTN IE C 14 0 72 Europe/Dublin 2010-08-10 +2963191 Kiltrellig Kiltrellig 52.56694 -9.85 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963192 Kiltormer Kiltormer Cill Tormoir,Cill Tormóir,Kiltormer 53.23556 -8.26833 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2963193 Kiltooris Lough Kiltooris Lough 54.82 -8.50083 H LK IE U 06 0 23 Europe/Dublin 2010-08-14 +2963194 Kiltoom Kiltoom 53.66667 -7.33333 P PPL IE L 29 0 76 Europe/Dublin 1993-12-27 +2963195 Kiltoom Kiltoom 53.46667 -8.01667 P PPL IE C 24 0 107 Europe/Dublin 1993-12-27 +2963196 Kiltoghert Kiltoghert 53.98 -8.03611 P PPL IE C 14 0 82 Europe/Dublin 2010-08-14 +2963197 Kiltinan Castle Kiltinan Castle 52.43972 -7.65722 S EST IE M 26 0 55 Europe/Dublin 2010-08-14 +2963198 Kiltiernan Kiltiernan Killiernan,Kiltiernan 53.18611 -8.84333 P PPL IE IE C 10 0 16 Europe/Dublin 2010-08-14 +2963199 Kiltegan Kiltegan Kiltegan 52.90111 -6.60722 P PPL IE L 31 0 153 Europe/Dublin 2010-08-14 +2963200 Kilteevan Cross Roads Kilteevan Cross Roads Kilteevan Cross Roads,Kilteeven 53.63333 -8.11667 P PPL IE C 24 0 71 Europe/Dublin 2010-08-10 +2963201 Kilteevan House Kilteevan House Kilteevan,Kilteevan House,Kilteeven 53.61667 -8.1 S HSEC IE IE C 24 0 69 Europe/Dublin 2010-08-14 +2963202 Kilteely Kilteely Cill Tile,Cill Tíle,Kilteely 52.52194 -8.39917 P PPL IE M 16 0 102 Europe/Dublin 2010-08-14 +2963203 Kilteel Kilteel 53.235 -6.52472 P PPL IE L 12 0 227 Europe/Dublin 2010-08-14 +2963204 Kilteean Kilteean Kilteean,Kilteen 52.46194 -9.60028 P PPL IE IE M 11 0 59 Europe/Dublin 2010-08-14 +2963205 Kiltealy Kiltealy Cill Teile,Cill Téile,Kiltealy 52.56611 -6.74556 P PPL IE L 30 0 157 Europe/Dublin 2010-08-14 +2963206 Kiltartan Kiltartan Kiltartan 53.09833 -8.81194 P PPL IE C 10 0 30 Europe/Dublin 2010-08-14 +2963207 Kiltanon Kiltanon Kiltanon,Kiltanon House 52.86667 -8.78333 S EST IE M 03 0 128 Europe/Dublin 2010-08-10 +2963208 Kiltamagh Kiltamagh Coillte Mach,Kiltamagh,Kiltimagh 53.85 -9 P PPL IE C 20 0 41 Europe/Dublin 2010-08-14 +2963209 Kiltale Kiltale Kiltale 53.52861 -6.65833 P PPL IE L 21 0 80 Europe/Dublin 2010-08-14 +2963210 Kilskeer Kilskeer 53.69222 -6.99361 P PPL IE L 21 0 127 Europe/Dublin 2010-08-14 +2963211 Kilshruley Manor Kilshruley Manor Kilshruley,Kilshruley House,Kilshruley Manor 53.78333 -7.63333 S EST IE IE L 18 0 73 Europe/Dublin 2010-08-14 +2963212 Kilsheelan Kilsheelan Kilsheelan 52.36028 -7.57667 P PPL IE M 27 0 18 Europe/Dublin 2010-08-14 +2963213 Kilshannig House Kilshannig House Kilshannig House,Kilshanning House 52.06111 -8.27639 S HSEC IE IE M 04 0 75 Europe/Dublin 2010-08-14 +2963214 Kilshannig Kilshannig 52.31167 -10.01694 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963215 Kilshanchoe Kilshanchoe Kilshanchoe,Kilshancoe 53.38556 -6.88972 P PPL IE IE L 12 0 86 Europe/Dublin 2010-08-14 +2963216 Kilseily Kilseily 52.8 -8.65 P PPL IE M 03 0 141 Europe/Dublin 1993-12-27 +2963217 Kilsaran Kilsaran 53.89056 -6.38889 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +2963218 Cill Rois Cill Rois Kilrush 52.63972 -9.48333 P PPL IE M 03 2712 1 Europe/Dublin 2010-08-14 +2963219 Kilruddery Kilruddery 53.18083 -6.10583 S EST IE L 31 0 73 Europe/Dublin 2010-08-14 +2963220 Kilronan Mountain Kilronan Mountain 54.07861 -8.14556 T MT IE C 24 0 329 272 Europe/Dublin 2010-08-14 +2963221 Kilronan Castle Kilronan Castle 54.06361 -8.18278 S EST IE C 24 0 77 Europe/Dublin 2010-08-14 +2963222 Kilronan Kilronan Cill Ronain,Cill Rónáin,Kilronan 53.12472 -9.66833 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963223 Kilroe Kilroe 53.43333 -9.01667 S RUIN IE C 10 0 70 Europe/Dublin 1993-12-27 +2963224 Kilreekill Kilreekill 53.22861 -8.44917 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2963225 Kilree House Kilree House 52.51667 -7.26667 S BLDG IE L 13 0 72 Europe/Dublin 2010-08-14 +2963226 Kilrane Kilrane 52.24111 -6.3525 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2963227 Kilquiggin Kilquiggin 52.78528 -6.58056 P PPL IE L 31 0 291 Europe/Dublin 2010-08-14 +2963228 Kilquane Kilquane 52.05 -8.66667 S BLDG IE M 04 0 173 Europe/Dublin 1993-12-27 +2963229 Kilpeacon House Kilpeacon House Kilpeacon,Kilpeacon House 52.57444 -8.64972 S EST IE IE M 16 0 43 Europe/Dublin 2010-08-14 +2963230 Kilpeacon Cross Roads Kilpeacon Cross Roads Kilpeacon,Kilpeacon Cross Roads 52.58278 -8.6175 P PPL IE IE M 16 0 54 Europe/Dublin 2010-08-14 +2963231 Kilpatrick Kilpatrick 51.78028 -8.72194 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +2963232 Kiln Point Kiln Point 53.48778 -6.00778 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2963233 Kilnarovanagh Kilnarovanagh 52.11667 -9.63333 P PPL IE M 11 0 57 Europe/Dublin 1993-12-27 +2963234 Kilnalag Kilnalag Kilnalag,Kilnalog 53.68333 -8.6 P PPL IE IE C 10 0 76 Europe/Dublin 2010-08-14 +2963235 Kilnaleck Kilnaleck Cill na Leice,Kilnaleck 53.86667 -7.31667 P PPL IE U 02 0 149 Europe/Dublin 2010-08-14 +2963236 Kilnagarnagh House Kilnagarnagh House Kilnagarnagh,Kilnagarnagh House 53.31583 -7.78222 S EST IE IE L 23 0 148 Europe/Dublin 2010-08-14 +2963237 Kilmurvy Kilmurvy Cill Mhuirbhigh,Kilmurvy 53.13722 -9.74972 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963238 Kilmurry McMahon Kilmurry McMahon 52.6525 -9.29361 P PPL IE M 03 0 5 Europe/Dublin 2010-08-14 +2963239 Kilmurry House Kilmurry House Kilmurry,Kilmurry House 52.54639 -7.11222 S EST IE IE L 13 0 73 Europe/Dublin 2010-08-14 +2963240 Kilmurry Kilmurry 52.80111 -9.45417 P PPL IE M 03 0 32 Europe/Dublin 2010-08-14 +2963241 Kilmurry Kilmurry Cill Mhuire,Kilmurry 52.77611 -8.78278 P PPL IE M 03 0 63 Europe/Dublin 2010-08-14 +2963242 Kilmurry Kilmurry 52.125 -10.115 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963243 Kilmurry Kilmurry 51.84667 -8.89111 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2963244 Kilmur House Kilmur House Kilmur,Kilmur House 53.49639 -6.96667 S EST IE IE L 21 0 82 Europe/Dublin 2010-08-14 +2963245 Kilmuckridge House Kilmuckridge House 52.5 -6.3 S BLDG IE L 30 0 19 Europe/Dublin 2010-08-14 +2963246 Kilmuckridge Kilmuckridge Cill Mhucraise,Kilmuckridge 52.50361 -6.28722 P PPL IE L 30 0 16 Europe/Dublin 2010-08-14 +2963247 Kilmoyler House Kilmoyler House Kilmoyler,Kilmoyler House 52.42111 -7.97528 S EST IE IE M 26 0 62 Europe/Dublin 2010-11-04 +2963248 Kilmovee Kilmovee 53.88333 -8.68333 P PPL IE C 20 0 57 Europe/Dublin 1993-12-27 +2963249 Kilmorony Kilmorony 52.94389 -6.98111 P PPL IE L 15 0 64 Europe/Dublin 2010-08-14 +2963250 Kilmorna House Kilmorna House 52.43167 -9.3975 S EST IE M 11 0 72 Europe/Dublin 2010-08-14 +2963251 Kilmorna Kilmorna 52.43111 -9.37583 P PPL IE M 11 0 74 Europe/Dublin 2010-08-14 +2963252 Kilmore Quay Kilmore Quay Ce na Cille Moire,Crossfarnogue,Cé na Cille Móire,Kilmore,Kilmore Quay 52.17194 -6.58611 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2963253 Kilmore Point Kilmore Point Kilmore Head,Kilmore Point 52.46667 -9.7 T PT IE M 11 0 16 Europe/Dublin 2010-08-10 +2963254 Kilmore See House Kilmore See House Kilmore,Kilmore Palace,Kilmore See House 53.98333 -7.41667 S HSEC IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2963255 Kilmore Kilmore Kilmore,Kilmore House 53.46528 -6.65167 S EST IE IE L 21 0 78 Europe/Dublin 2010-08-14 +2963256 Kilmore House Kilmore House Kilmore,Kilmore House 52.63278 -9.31472 S EST IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963257 Kilmore Kilmore 53.53333 -8.35 P PPL IE C 10 0 66 Europe/Dublin 1993-12-27 +2963258 Kilmore Kilmore 52.20139 -6.53778 P PPL IE L 30 0 7 Europe/Dublin 2010-08-14 +2963259 Kilmihil Kilmihil Cill Mhichil,Cill Mhichíl,Cill Mhicil,Cill Mhicíl,Kilmihil 52.72139 -9.31861 P PPL IE M 03 0 64 Europe/Dublin 2010-08-14 +2963260 Kilmichael Point Kilmichael Point 52.73389 -6.13694 T PT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2963261 Kilmessan Kilmessan 53.55917 -6.65667 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +2963262 Kilmeena Kilmeena Kilmeena 53.83333 -9.56667 P PPL IE C 20 0 5 Europe/Dublin 2010-08-10 +2963263 Kilmeedy Castle Kilmeedy Castle 52.03333 -9.06667 S BLDG IE M 04 0 177 Europe/Dublin 1993-12-27 +2963264 Kilmeedy Kilmeedy Cill Mide,Cill Míde,Kilmeedy 52.415 -8.9175 P PPL IE M 16 0 93 Europe/Dublin 2010-08-14 +2963265 Kilmeage Kilmeage Cill Maodhog,Cill Maodhóg,Kilmeage 53.25194 -6.84194 P PPL IE L 12 0 111 Europe/Dublin 2010-08-14 +2963266 Kilmeadan Kilmeadan 52.24333 -7.24167 P PPL IE M 27 0 32 Europe/Dublin 2010-08-14 +2963267 Kilmastulla River Kilmastulla River 52.7775 -8.44833 H STM IE M 26 0 51 Europe/Dublin 2010-08-14 +2963268 Kilmastulla House Kilmastulla House 52.78333 -8.38333 S BLDG IE M 26 0 87 Europe/Dublin 2010-08-14 +2963269 Kilmastulla Bridge Kilmastulla Bridge Kilmastulla,Kilmastulla Bridge 52.77722 -8.40417 P PPL IE IE M 26 0 61 Europe/Dublin 2010-11-04 +2963270 Kilmartin Kilmartin Kilmaran,Kilmartin 53.04639 -6.09972 P PPL IE IE L 31 0 74 Europe/Dublin 2010-08-14 +2963271 Kilmannock House Kilmannock House Kilmannock,Kilmannock House 52.28444 -6.96361 S EST IE IE L 30 0 22 Europe/Dublin 2010-08-14 +2963272 Kilmanahan Castle Kilmanahan Castle Kilmanahan,Kilmanahan Castle 52.32444 -7.78722 S EST IE IE M 27 0 61 Europe/Dublin 2010-08-14 +2963273 Kilmanagh Kilmanagh 52.62194 -7.42444 P PPL IE L 13 0 149 Europe/Dublin 2010-08-14 +2963274 Kilmaloda House Kilmaloda House Kilmaloda,Kilmaloda House 51.665 -8.80611 S EST IE IE M 04 0 48 Europe/Dublin 2010-08-14 +2963275 Kilmallock Kilmallock Cill Mocheallog,Cill Mocheallóg,Kilmailock,Kilmallock 52.4 -8.57722 P PPL IE M 16 1523 80 Europe/Dublin 2010-08-14 +2963276 Kilmalkedar Kilmalkedar 52.18528 -10.33806 P PPL IE M 11 0 128 Europe/Dublin 2010-08-14 +2963277 Kilmaley Kilmaley 52.82778 -9.11806 P PPL IE M 03 0 76 Europe/Dublin 2010-08-14 +2963278 Kilmakilloge Harbour Kilmakilloge Harbour 51.78 -9.82333 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963279 Kilmainham Wood Kilmainham Wood 53.85 -6.80917 P PPL IE L 21 0 93 Europe/Dublin 2010-08-14 +2963280 Kilmainham Kilmainham New Kilmainham 53.33333 -6.28333 P PPL IE IE L 07 0 23 Europe/Dublin 2010-08-14 +2963281 Kilmaine Kilmaine 53.58333 -9.11667 P PPL IE C 20 0 56 Europe/Dublin 1993-12-27 +2963282 Kilmaganny Kilmaganny Cill Mogeanna,Kilmaganny,Kilmoganny 52.46306 -7.32861 P PPL IE L 13 0 140 Europe/Dublin 2010-08-14 +2963283 Kilmacthomas Kilmacthomas Coill Mhic Thomaisin,Coill Mhic Thomáisín,Kilmacthomas 52.20972 -7.42583 P PPL IE M 27 0 64 Europe/Dublin 2010-08-14 +2963284 Kilmacrenan Kilmacrenan Cill Mhic Reanain,Cill Mhic Réanáin,Kilmacrenan,Kilmacrennan 55.03083 -7.77917 P PPL IE U 06 0 71 Europe/Dublin 2010-08-14 +2963285 Kilmacrea Pass Kilmacrea Pass 52.89694 -6.17444 T PASS IE L 31 0 117 Europe/Dublin 2010-08-14 +2963286 Kilmacow Kilmacow Cill Mhic Bhuith,Cill Mhic Bhúith,Kilmacow 52.30611 -7.17167 P PPL IE L 13 0 30 Europe/Dublin 2010-08-14 +2963287 Kilmacar Kilmacar 52.76667 -7.26667 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +2963288 Killyran Station Killyran Station Killyran,Killyran Station 54.08333 -7.7 S RSTN IE IE 00 0 75 Europe/Dublin 2010-08-10 +2963289 Killyon Killyon 53.10056 -7.80361 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +2963290 Killynan House Killynan House Killynan,Killynan House 53.56056 -7.21556 S EST IE IE L 29 0 146 Europe/Dublin 2010-08-14 +2963291 Killymard Station Killymard Station Killymard Halt,Killymard Station 54.65 -8.16667 S RSTN IE U 06 0 -9999 Europe/Dublin 2010-08-10 +2963292 Killygordon Killygordon Cuil na gCuirridin,Cúil na gCuirridín,Killygordon 54.8 -7.68333 P PPL IE U 06 0 44 Europe/Dublin 2010-08-14 +2963293 Killegar House Killegar House Killegar House,Killygar,Killygar House 54.00722 -7.60417 S HSEC IE IE C 14 0 76 Europe/Dublin 2010-08-14 +2963294 Killegar Killegar Killegar,Killygar 54.01667 -7.61667 P PPL IE IE C 14 0 76 Europe/Dublin 2010-08-14 +2963295 Killybegs Killybegs Killybegs,Na Ceala Beaga,Na Cealla Beaga 54.63333 -8.45 P PPL IE U 06 1725 -9999 Europe/Dublin 2010-08-14 +2963296 Killurney Killurney 52.4 -7.6 P PPL IE M 26 0 69 Europe/Dublin 2010-08-14 +2963297 Killurin Killurin Killurin 52.385 -6.575 P PPL IE L 30 0 45 Europe/Dublin 2010-08-14 +2963298 Killure Killure 53.33333 -8.23333 H STM IE C 10 0 65 Europe/Dublin 2010-08-14 +2963299 Killumney Killumney 51.86667 -8.65 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +2963300 Killucan Station Killucan Station Killucan,Killucan Station 53.48333 -7.15 S RSTN IE L 29 0 129 Europe/Dublin 2010-08-10 +2963301 Killucan Killucan Cill Liucainne,Cill Liúcainne,Killucan 53.51194 -7.1425 P PPL IE L 29 0 130 Europe/Dublin 2010-08-14 +2963302 Killua Castle Killua Castle 53.65556 -7 S EST IE L 29 0 106 Europe/Dublin 2010-08-14 +2963303 Killower Killower 53.51667 -8.95 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2963304 Killoughter Killoughter Killoughter,Killoughter House 53.02889 -6.07639 S EST IE IE L 31 0 21 Europe/Dublin 2010-08-14 +2963305 Killoughrum House Killoughrum House Killoughrum,Killoughrum House 52.5175 -6.66694 S EST IE IE L 30 0 76 Europe/Dublin 2010-08-14 +2963306 Killoughrum Forest Killoughrum Forest 52.52333 -6.67111 V FRST IE L 30 0 76 Europe/Dublin 2010-08-14 +2963307 Killough Castle Killough Castle 52.61778 -7.83861 S RUIN IE M 26 0 122 Europe/Dublin 2010-08-14 +2963308 Killoskehan Castle Killoskehan Castle 52.78056 -7.92528 S EST IE M 26 0 121 Europe/Dublin 2010-08-14 +2963309 Killoscully Killoscully 52.76722 -8.34583 P PPL IE M 26 0 150 Europe/Dublin 2010-08-14 +2963310 Killoscobe Killoscobe 53.45 -8.56667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2963311 Killorglin Killorglin Cill Orglan,Killorglin 52.1 -9.78333 P PPL IE M 11 1409 9 Europe/Dublin 2010-08-14 +2963312 Killoran House Killoran House Killoran,Killoran House 52.75194 -7.69917 S EST IE IE M 26 0 134 Europe/Dublin 2010-11-04 +2963313 Killongford House Killongford House 52.06667 -7.63333 S BLDG IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2963314 Killonan Station Killonan Station Killonan,Killonan Station 52.63333 -8.53333 S RSTN IE IE M 16 0 115 Europe/Dublin 2010-08-14 +2963315 Killola Cottage Killola Cottage 53.4 -9.26667 S BLDG IE C 10 0 54 Europe/Dublin 1993-12-27 +2963316 Killmacomma Killmacomma 52.31667 -7.71667 P PPL IE M 27 0 253 Europe/Dublin 1993-12-27 +2963317 Killiskey Killiskey 53.03583 -6.1125 P PPL IE L 31 0 107 Europe/Dublin 2010-08-14 +2963318 Killinure Lough Killinure Lough Killinure Lough,Lough Killinare 53.45 -7.9 H LK IE L 29 0 150 Europe/Dublin 2010-08-10 +2963319 Killinure House Killinure House Killinare House,Killinure,Killinure House 53.46667 -7.9 S EST IE L 29 0 62 Europe/Dublin 2010-08-10 +2963320 Killinure House Killinure House 52.79083 -6.62639 S EST IE L 31 0 108 Europe/Dublin 2010-08-14 +2963321 Killinny Killinny 53.09667 -8.9125 P PPL IE C 10 0 40 Europe/Dublin 2010-08-14 +2963322 Killinkere Killinkere Killinkere 53.88333 -7.05 P PPL IE U 02 0 147 Europe/Dublin 2010-08-10 +2963323 Killinick Killinick 52.25278 -6.45056 P PPL IE L 30 0 9 Europe/Dublin 2010-08-14 +2963324 Cill Iníon Léinín Cill Inion Leinin Killiney 53.26326 -6.1169 P PPL IE IE L 07 0 1 Europe/Dublin 2010-08-14 +2963325 Killiney Killiney 52.24944 -10.04278 P PPL IE M 11 0 98 Europe/Dublin 2010-08-14 +2963326 Killineer House Killineer House 53.745 -6.37528 S EST IE L 19 0 73 Europe/Dublin 2010-08-14 +2963327 Killinardrish House Killinardrish House Killinardresh House,Killinardrish House 51.9 -8.85 S EST IE IE M 04 0 77 Europe/Dublin 2010-08-14 +2963328 Killinardrish Killinardrish Killinardresh,Killinardrish 51.9 -8.85 P PPL IE IE M 04 0 77 Europe/Dublin 2010-08-14 +2963329 Killinaboy Killinaboy Cill Inine Baoith,Cill Iníne Baoith,Killinaboy,Kilnaboy 52.97194 -9.08139 P PPL IE M 03 0 57 Europe/Dublin 2010-08-14 +2963330 Killimor Castle Killimor Castle 53.30167 -8.59361 S HSEC IE C 10 0 72 Europe/Dublin 2010-08-14 +2963331 Killimor Killimor Cill Iomair,Cill Íomair,Killimor 53.16333 -8.28472 P PPL IE C 10 0 121 Europe/Dublin 2010-08-14 +2963332 Killimer Killimer 52.61083 -9.39389 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2963333 Killian River Killian River 53.48333 -8.38333 H STM IE C 10 0 69 Europe/Dublin 1993-12-27 +2963334 Kill House Kill House 53.86667 -7.35 S EST IE U 02 0 126 Europe/Dublin 1993-12-27 +2963335 Killeshin Killeshin 52.84444 -7.00306 P PPL IE L 15 0 165 Europe/Dublin 2010-08-14 +2963336 Killeroran Killeroran Killeronan,Killeroran 53.51667 -8.31667 P PPL IE C 10 0 67 Europe/Dublin 2010-08-10 +2963337 Killenny Killenny 53.95 -6.63333 P PPL IE 00 0 55 Europe/Dublin 1993-12-27 +2963338 Killenaule Killenaule Cill Naile,Cill Náile,Killenaule 52.56833 -7.67139 P PPL IE M 40 0 152 Europe/Dublin 2010-11-04 +2963339 Killenagh Killenagh 52.59 -6.27639 P PPL IE L 30 0 13 Europe/Dublin 2010-08-14 +2963340 Killelton Killelton 52.23083 -9.87333 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +2963341 Killeigh Killeigh Cill Aichidh,Killeigh 53.21333 -7.44944 P PPL IE L 23 0 107 Europe/Dublin 2010-08-14 +2963342 Killeglan Killeglan 53.41639 -8.18333 P PPL IE C 24 0 76 Europe/Dublin 2010-08-14 +2963343 Killeevan Killeevan 54.17333 -7.15111 P PPL IE U 22 0 77 Europe/Dublin 2010-08-14 +2963344 Killeenleagh Killeenleagh 51.63944 -9.31306 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +2963345 Killeen House Killeen House Killeen,Killeen House 53.31667 -8.98333 S EST IE C 10 0 7 Europe/Dublin 2010-08-10 +2963346 Killeen House Killeen House 52.59278 -7.67583 S EST IE M 26 0 151 Europe/Dublin 2010-08-14 +2963347 Killeen Castle Killeen Castle 53.53444 -6.58361 S EST IE L 21 0 105 Europe/Dublin 2010-08-14 +2963348 Killeenaran Killeenaran 53.19694 -8.92694 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2963349 Killeen Killeen 52.98972 -8.78972 P PPL IE C 10 0 63 Europe/Dublin 2010-08-14 +2963350 Killeen Killeen 52.06667 -8.95 P PPL IE M 04 0 192 Europe/Dublin 1993-12-27 +2963351 Killeelaun Killeelaun 53.5 -8.88333 P PPL IE C 10 0 37 Europe/Dublin 1993-12-27 +2963352 Killeedy Killeedy 52.38389 -9.07444 P PPL IE M 03 0 104 Europe/Dublin 2010-08-14 +2963353 Killedmond Killedmond 52.61083 -6.84417 P PPL IE L 01 0 120 Europe/Dublin 2010-08-14 +2963354 Killeany Bay Killeany Bay 53.11833 -9.65111 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963355 Killeany Killeany 53.11028 -9.66278 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963356 Killeagh Killeagh Cill Ia,Killeagh 51.94222 -7.99778 P PPL IE M 04 0 58 Europe/Dublin 2010-08-14 +2963357 Killea Killea 52.16417 -7.01444 P PPL IE M 27 0 39 Europe/Dublin 2010-08-14 +2963358 Killavullen Killavullen Cill an Mhuilinn,Killavullen,Killawillin 52.14583 -8.51389 P PPL IE M 04 0 54 Europe/Dublin 2010-08-14 +2963359 Killavally Killavally 53.88333 -7.4 P PPL IE U 02 0 100 Europe/Dublin 1993-12-27 +2963360 Killavally Killavally 53.75 -9.36667 P PPL IE C 20 0 83 Europe/Dublin 1993-12-27 +2963361 Killavackan Killavackan 53.71667 -8.05 P PPL IE C 24 0 86 Europe/Dublin 1993-12-27 +2963362 Killasser Killasser 53.98361 -8.95944 P PPL IE C 20 0 61 Europe/Dublin 2010-08-14 +2963363 Killaspug Point Killaspug Point Kilaspug Point,Killaspug Point 54.285 -8.61111 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +2963364 Killasona Killasona 53.73333 -7.48333 P PPL IE L 18 0 90 Europe/Dublin 1993-12-27 +2963365 Killashee House Killashee House 53.1925 -6.67583 S EST IE L 12 0 110 Europe/Dublin 2010-08-14 +2963366 Killashee Killashee 53.68333 -7.88333 P PPL IE L 18 0 78 Europe/Dublin 1993-12-27 +2963367 Killashandra Killashandra Cill na Seanratha,Cill na Seanrátha,Killashandra,Killeshandra 54.01667 -7.53333 P PPL IE U 02 0 118 Europe/Dublin 2010-08-14 +2963368 Killary Harbour Killary Harbour Killary Bay,Killary Fjord 53.60941 -9.80839 H FJD IE IE 00 0 -9999 Europe/Dublin 2009-02-16 +2963369 Killary Bay Little Killary Bay Little Killary Bay,Killary Bay Little,Little Killary Bay 53.61667 -9.86667 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-10 +2963370 Cill Airne Cill Airne Cill Airne,Killarney 52.05 -9.51667 P PPL IE IE M 11 7300 60 Europe/Dublin 2010-08-14 +2963371 Killarga Killarga 54.23 -8.2075 P PPL IE C 14 0 85 Europe/Dublin 2010-08-14 +2963372 Killard Point Killard Point 52.75 -9.55 T PT IE M 03 0 1 Europe/Dublin 1993-12-27 +2963373 Killann Killann Cill Anna,Killann 52.5225 -6.74083 P PPL IE L 30 0 144 Europe/Dublin 2010-08-14 +2963374 Killane Killane Killan,Killane 53.33556 -7.07194 P PPL IE IE L 23 0 102 Europe/Dublin 2010-08-14 +2963375 Killamery Killamery Killamery 52.47583 -7.44528 P PPL IE L 13 0 146 Europe/Dublin 2010-08-14 +2963376 Killaloe Killaloe Cill Dalua,Killaloe 52.80667 -8.44361 P PPL IE M 03 0 55 Europe/Dublin 2010-08-14 +2963377 Killala Bay Killala Bay Killala Bay 54.25 -9.13333 H BAY IE 00 0 -9999 Europe/Dublin 2010-08-10 +2963378 Cill Ala Cill Ala Cill Ala,Killala 54.2 -9.21667 P PPL IE C 20 0 9 Europe/Dublin 2010-08-10 +2963379 Killakee Killakee Killakee,Killakee House 53.23333 -6.31667 S EST IE IE L 07 0 381 Europe/Dublin 2010-11-04 +2963380 Killahy Castle Killahy Castle 52.68333 -7.48333 S RUIN IE L 13 0 153 Europe/Dublin 2010-08-14 +2963381 Killahy Killahy 52.4 -7.21667 P PPL IE L 13 0 133 Europe/Dublin 2010-08-14 +2963382 Killagoola Killagoola Killagoola 53.32028 -9.17917 P PPL IE C 10 0 71 Europe/Dublin 2010-08-14 +2963383 Killaghy Castle Killaghy Castle 52.51917 -7.51444 S EST IE M 26 0 90 Europe/Dublin 2010-08-14 +2963384 Killagh House Killagh House Killagh,Killagh House 53.30583 -8.44167 S EST IE IE C 10 0 76 Europe/Dublin 2010-08-14 +2963385 Killadysert Killadysert Cill an Disirt,Cill an Dísirt,Kildysart,Killadysert 52.67167 -9.10639 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2963386 Killadoon Killadoon 53.70417 -9.89444 P PPL IE C 20 0 90 Europe/Dublin 2010-08-14 +2963387 Kill Kill 54.03306 -7.11028 P PPL IE U 02 0 151 Europe/Dublin 2010-08-14 +2963388 Kill Kill 52.17611 -7.335 P PPL IE M 27 2304 76 Europe/Dublin 2010-08-14 +2963389 Kilkishen Kilkishen Cill Chisin,Cill Chisín,Kilkishen 52.80667 -8.74583 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +2963390 Kilkinnikin Kilkinnikin 51.60722 -10.04361 P PPL IE M 04 0 45 Europe/Dublin 2010-08-14 +2963391 Kilkinlea Kilkinlea 52.35 -9.33333 P PPL IE M 11 0 94 Europe/Dublin 1993-12-27 +2963392 Kilkieran Point Kilkieran Point 53.31417 -9.72889 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963393 Kilkieran Bay Kilkieran Bay 53.30333 -9.745 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963394 Kilkieran Kilkieran Cill Chiarain,Cill Chiaráin,Kilkieran 53.32583 -9.73528 P PPL IE C 10 0 29 Europe/Dublin 2010-08-14 +2963395 Kilkerin Point Kilkerin Point Kilkerin Point,Kilkerrin Point 52.59972 -9.3375 T PT IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963396 Kilkerin Kilkerin 52.6075 -9.31472 P PPL IE M 03 0 19 Europe/Dublin 2010-08-14 +2963397 Cill Chainnigh Cill Chainnigh Cantae Chill Chainnigh,County Kilkenny,Kilkenny 52.58333 -7.25 A ADM2 IE L 13 82284 67 Europe/Dublin 2010-08-14 +2963398 Cill Chainnigh Cill Chainnigh Cill Chainnigh,Kilkenni,Kilkenny,Kilkenny city,kirukeni,Килкенни,キルケニー 52.65417 -7.25222 P PPLA2 IE L 13 21589 61 Europe/Dublin 2011-02-15 +2963399 Kilkelly Kilkelly Cill Cheallaigh,Kilkelly 53.86667 -8.85 P PPL IE C 20 0 75 Europe/Dublin 2010-08-14 +2963400 Kilkee Kilkee Cill Chaoi,Kilkee 52.67917 -9.64417 P PPL IE M 03 0 14 Europe/Dublin 2010-08-14 +2963401 Kilkeasy Kilkeasy 52.44278 -7.21222 P PPL IE L 13 0 106 Europe/Dublin 2010-08-14 +2963402 Kilkea Castle Kilkea Castle 52.94167 -6.89222 S EST IE L 12 0 80 Europe/Dublin 2010-08-14 +2963403 Kilgory Lough Kilgory Lough Kilgory,Kilgory Lough 52.85167 -8.6825 H LK IE IE M 03 0 61 Europe/Dublin 2010-08-14 +2963404 Kilgory Kilgory 52.82944 -7.11583 S HSE IE L 15 0 226 Europe/Dublin 2010-08-14 +2963405 Kilgolagh Kilgolagh 53.78333 -7.4 P PPL IE U 02 0 72 Europe/Dublin 1993-12-27 +2963406 Kilgobnet Kilgobnet 52.06667 -9.71667 P PPL IE M 11 0 20 Europe/Dublin 1993-12-27 +2963407 Kilgobbin Castle Kilgobbin Castle 51.70611 -8.63028 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +2963408 Kilglass Lough Kilglass Lough 53.81667 -8.01667 H LK IE C 24 0 76 Europe/Dublin 1993-12-27 +2963409 Kilglass Kilglass 54.23917 -9.05611 P PPL IE C 25 0 15 Europe/Dublin 2010-08-14 +2963410 Kilglass Kilglass 53.41611 -8.34556 P PPL IE C 10 0 70 Europe/Dublin 2010-08-14 +2963411 Kilgarvan House Kilgarvan House Kilgarvan,Kilgarvan House 53 -8.25 S EST IE IE 00 0 73 Europe/Dublin 2010-08-10 +2963412 Kilgarvan Kilgarvan 54.09194 -9.03861 P PPL IE C 20 0 49 Europe/Dublin 2010-08-14 +2963413 Kilgarvan Kilgarvan Cill Garbhain,Cill Garbháin,Kilgarvan 51.9 -9.45 P PPL IE M 11 0 86 Europe/Dublin 2010-08-14 +2963414 Kilgarriff Kilgarriff 53.96667 -8.61667 P PPL IE C 20 0 101 Europe/Dublin 1993-12-27 +2963415 Kilfrush Kilfrush Kilfrush,Kilfrush House 52.45611 -8.42083 S EST IE IE M 16 0 84 Europe/Dublin 2010-08-14 +2963416 Kilfree Station Kilfree Station Kilfree,Kilfree Junction,Kilfree Junction Station,Kilfree Station 53.99222 -8.44028 S RSTN IE IE C 25 0 107 Europe/Dublin 2010-08-14 +2963417 Kilflynn Kilflynn Kilflyn,Kilflynn 52.35 -9.63333 P PPL IE M 11 0 85 Europe/Dublin 2010-08-10 +2963418 Kilfinny Kilfinny Kilfinney,Kilfinny 52.51167 -8.80667 P PPL IE IE M 16 0 32 Europe/Dublin 2010-08-14 +2963419 Cill Fhíonáin Cill Fhionain Kilfinane 52.36051 -8.47175 P PPL IE IE M 16 0 158 Europe/Dublin 2010-08-14 +2963420 Kilfenora Kilfenora Cill Fhionnurach,Cill Fhionnúrach,Kilfenora 52.99389 -9.21361 P PPL IE M 03 0 73 Europe/Dublin 2010-08-14 +2963421 Kilfenora Kilfenora 52.28083 -9.84139 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2963422 Kilfearagh Kilfearagh 52.65972 -9.65444 P PPL IE M 03 0 33 Europe/Dublin 2010-08-14 +2963423 Kilfane House Kilfane House Kilfane,Kilfane House 52.55083 -7.12333 S EST IE IE L 13 0 73 Europe/Dublin 2010-08-14 +2963424 Kilfane Kilfane 52.55639 -7.12417 P PPL IE L 13 0 73 Europe/Dublin 2010-08-14 +2963425 Kildrum Kildrum 54.96667 -7.41667 P PPL IE 00 0 1 Europe/Dublin 1993-12-27 +2963426 Kildorrery Kildorrery Cill Dairbhre,Kildorrery 52.24611 -8.42722 P PPL IE M 04 0 81 Europe/Dublin 2010-08-14 +2963427 Kildorragh Kildorragh Kildorough,Kildorragh 53.84194 -7.2125 P PPL IE IE U 02 0 99 Europe/Dublin 2010-08-14 +2963428 Kildoon Kildoon 53.08333 -6.9 P PPL IE L 12 0 95 Europe/Dublin 1993-12-27 +2963429 Kildoney Point Kildoney Point 54.52444 -8.2675 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963430 Kildoney Kildoney 54.52306 -8.25583 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2963431 Kildinan House Kildinan House Kildinan,Kildinan House 52.06389 -8.36639 S EST IE IE M 04 0 119 Europe/Dublin 2010-08-14 +2963432 Kildevin Kildevin 53.7 -7.46667 S EST IE L 29 0 74 Europe/Dublin 1993-12-27 +2963433 Kilderry House Kilderry House Kilderry,Kilderry House 55.0725 -7.2575 S HSEC IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963434 Kildavin Kildavin Kildavan,Kildavin 52.68139 -6.68667 P PPL IE IE L 01 0 73 Europe/Dublin 2010-08-14 +2963435 Cill Dara Cill Dara Contae Chill Dara,County Kildare,Kildare 53.16667 -6.75 A ADM2 IE L 12 177574 111 Europe/Dublin 2010-08-14 +2963436 Cill Dara Cill Dara Cill Dara,Kildare 53.15611 -6.91444 P PPL IE IE L 12 0 116 Europe/Dublin 2010-08-14 +2963437 Kildangan Castle Kildangan Castle Kildangan,Kildangan Castle 53.105 -6.99889 S EST IE IE L 12 0 76 Europe/Dublin 2010-08-14 +2963438 Kildalkey Kildalkey Kildalkey 53.57028 -6.90306 P PPL IE L 21 0 78 Europe/Dublin 2010-08-14 +2963439 Kilcurry Kilcurry 54.04167 -6.42361 P PPL IE L 19 0 57 Europe/Dublin 2010-08-14 +2963440 Kilcummin Farmhill Kilcummin Farmhill Kilcummin,Kilcummin Farmhill 52.1 -9.46667 P PPL IE M 11 0 150 Europe/Dublin 2010-08-10 +2963441 Kilcummin Kilcummin 54.27778 -9.21694 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +2963442 Kilcummin Kilcummin 52.23972 -10.11083 P PPL IE M 11 0 96 Europe/Dublin 2010-08-14 +2963443 Kilcully Kilcully 51.93361 -8.48167 P PPL IE M 04 0 91 Europe/Dublin 2010-08-14 +2963444 Kilcullen Kilcullen Cill Chuillinn,Kilcullen 53.13028 -6.74444 P PPL IE L 12 0 114 Europe/Dublin 2010-08-14 +2963445 Kilcrohane Kilcrohane Kilcrohane 51.58472 -9.70389 P PPL IE M 04 0 61 Europe/Dublin 2010-08-14 +2963446 Kilcroghery Kilcroghery 54.76667 -7.81667 P PPL IE U 06 0 144 Europe/Dublin 1993-12-27 +2963447 Kilcreen House Kilcreen House Kilcreen House,Kilcreene House 52.65333 -7.27611 S EST IE IE L 13 0 73 Europe/Dublin 2010-08-14 +2963448 Kilcredaun Point Kilcredaun Point Kilcradan Point,Kilcredan Point,Kilcredaun Point 52.58417 -9.69556 T PT IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963449 Kilcredan Kilcredan 51.88194 -7.98111 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +2963450 Kilcrea House Kilcrea House Kilcrea,Kilcrea House 51.85 -8.71667 S BLDG IE IE M 04 0 82 Europe/Dublin 2010-08-14 +2963451 Kilcrea Kilcrea 51.85 -8.71667 P PPL IE M 04 0 82 Europe/Dublin 2010-08-14 +2963452 Kilcotty Kilcotty Kilcolly,Kilcotty 52.48583 -6.47333 P PPL IE IE L 30 0 78 Europe/Dublin 2010-08-14 +2963453 Kilcotton Kilcotton Kilcotton,Kilkotton 52.92083 -7.53972 P PPL IE IE L 15 0 126 Europe/Dublin 2010-08-14 +2963454 Kilcorney Kilcorney 52.05 -8.95 P PPL IE M 04 0 286 Europe/Dublin 1993-12-27 +2963455 Kilcornan Kilcornan 52.61667 -8.88333 P PPL IE M 16 0 13 Europe/Dublin 1993-12-27 +2963456 Kilcornan Kilcornan 53.23028 -8.85806 S EST IE C 10 0 9 Europe/Dublin 2010-08-14 +2963457 Kilcoo River Kilcoo River County River,Kilcoo River 54.40861 -8.09694 H STM IE 00 0 65 Europe/Dublin 2010-08-10 +2963458 Kilcooly Abbey Kilcooly Abbey 52.66917 -7.55806 S EST IE M 26 0 153 Europe/Dublin 2010-08-14 +2963459 Kilcooly Kilcooly 52.38333 -9.73333 P PPL IE M 11 0 97 Europe/Dublin 1993-12-27 +2963460 Kilcoole Kilcoole Cill Chomhghaill,Kilcoole 53.10278 -6.065 P PPL IE L 31 2869 8 Europe/Dublin 2010-08-14 +2963461 Kilconny Kilconny 54.10194 -7.44889 P PPL IE U 02 0 72 Europe/Dublin 2010-08-14 +2963462 Kilconly Point Kilconly Point 52.56056 -9.66194 T PT IE M 11 0 10 Europe/Dublin 2010-08-14 +2963463 Kilcomin Kilcomin 52.96472 -7.98611 P PPL IE L 23 0 138 Europe/Dublin 2010-08-14 +2963464 Kilcolumb Kilcolumb Kilcolomb,Kilcolumb 53.51667 -7.08333 P PPL IE L 29 0 109 Europe/Dublin 2010-08-10 +2963465 Kilcolman House Kilcolman House 52.85444 -8.26528 S EST IE M 26 0 76 Europe/Dublin 2010-08-14 +2963466 Kilcolman Castle Kilcolman Castle 52.25 -8.61667 S RUIN IE M 04 0 100 Europe/Dublin 1993-12-27 +2963467 Kilcolman Abbey Kilcolman Abbey 52.15 -9.71667 S EST IE M 11 0 74 Europe/Dublin 1993-12-27 +2963468 Kilcolman Kilcolman 52.53222 -9.08472 P PPL IE M 16 0 121 Europe/Dublin 2010-08-14 +2963469 Kilcolgan River Kilcolgan River Duncellin River,Dunkellin River,Kilcolgan River 53.21667 -8.91667 H STM IE C 10 0 1 Europe/Dublin 2010-08-10 +2963470 Kilcolgan Kilcolgan Cill Cholgain,Cill Cholgáin,Kilcolgan 53.20639 -8.86583 P PPL IE C 10 0 9 Europe/Dublin 2010-08-14 +2963471 Kilcogy Kilcogy Kilcogy 53.83333 -7.41667 P PPL IE U 02 0 94 Europe/Dublin 2010-08-10 +2963472 Kilcock Kilcock Cill Choca,Kilcock 53.40222 -6.67083 P PPL IE L 12 3293 78 Europe/Dublin 2010-08-14 +2963473 Kilclooney Kilclooney 54.82417 -8.43444 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2963474 Kilclonfert Kilclonfert 53.33167 -7.35389 P PPL IE L 23 0 141 Europe/Dublin 2010-08-14 +2963475 Kilcloher Kilcloher 52.5675 -9.81472 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2963476 Kilchreest Kilchreest Cill Chrios,Cill Chriost,Cill Chríost,Kilchreest 53.17639 -8.65139 P PPL IE C 10 0 72 Europe/Dublin 2010-08-14 +2963477 Kilcatherine Point Kilcatherine Point 51.72278 -10.00861 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963478 Kilcaskan Castle Kilcaskan Castle 51.73139 -8.99722 S EST IE M 04 0 73 Europe/Dublin 2010-08-14 +2963479 Kilcash Kilcash 52.4075 -7.53639 P PPL IE M 40 0 166 Europe/Dublin 2010-08-14 +2963480 Kilcarra Kilcarra 52.81833 -6.21806 S EST IE L 31 0 36 Europe/Dublin 2010-08-14 +2963481 Kilcarn Kilcarn Kilcarn,Kilcarn Bridge 53.63306 -6.6675 P PPL IE IE L 21 0 45 Europe/Dublin 2010-08-14 +2963482 Kilcar Kilcar Cill Charthaigh,Kilcar 54.63389 -8.59333 P PPL IE U 06 0 75 Europe/Dublin 2010-08-14 +2963483 Kilbrittain Castle Kilbrittain Castle Kilbrittain,Kilbrittain Castle 51.6775 -8.68528 S EST IE IE M 04 0 78 Europe/Dublin 2010-08-14 +2963484 Kilbrittain Kilbrittain Cill Briotain,Cill Briotáin,Kilbrittain 51.67556 -8.69333 P PPL IE M 04 0 85 Europe/Dublin 2010-08-14 +2963485 Kilbrin Kilbrin 52.2 -8.83333 P PPL IE M 04 0 141 Europe/Dublin 1993-12-27 +2963486 Kilbrien Kilbrien Kilbrien,Kilbryan 52.18806 -7.6575 P PPL IE IE M 27 0 168 Europe/Dublin 2010-08-14 +2963487 Kilbride Cross Roads Kilbride Cross Roads Kilbride,Kilbride Cross Roads 53.45611 -6.39639 P PPL IE IE L 21 0 80 Europe/Dublin 2010-08-14 +2963488 Kilbride Cross Roads Kilbride Cross Roads Kilbride,Kilbride Cross Roads 52.72028 -6.72278 P PPL IE IE L 01 0 97 Europe/Dublin 2010-08-14 +2963489 Kilbride Kilbride 53.93333 -8.91667 P PPL IE C 20 0 77 Europe/Dublin 1993-12-27 +2963490 Kilbride Kilbride 53.20056 -6.46306 P PPL IE L 31 0 287 Europe/Dublin 2010-08-14 +2963491 Kilbride Kilbride 52.92194 -6.10722 P PPL IE L 31 0 76 Europe/Dublin 2010-08-14 +2963492 Kilbrickan Kilbrickan 53.36028 -9.62083 P PPL IE C 10 0 15 Europe/Dublin 2010-08-14 +2963493 Kilbrack House Kilbrack House Kilbrack,Kilbrack House 52.21667 -8.56667 S EST IE M 04 0 79 Europe/Dublin 2010-08-10 +2963494 Kilboy House Kilboy House Kilboy,Kilboy House 52.79889 -8.195 S EST IE IE M 26 0 135 Europe/Dublin 2010-11-04 +2963495 Kilberry Kilberry 53.70694 -6.6825 P PPL IE L 21 0 97 Europe/Dublin 2010-08-14 +2963496 Kilberry Kilberry 53.03946 -7.0188 P PPL IE L 12 0 66 Europe/Dublin 2010-08-14 +2963497 Kilbennan Kilbennan 53.53333 -8.88333 P PPL IE C 10 0 40 Europe/Dublin 1993-12-27 +2963498 Kilbeheny Kilbeheny 52.29417 -8.22583 P PPL IE M 16 0 120 Europe/Dublin 2010-08-14 +2963499 Kilbeggan Kilbeggan Cill Bheagain,Cill Bheagáin,Kilbeggan 53.36944 -7.50333 P PPL IE L 29 0 80 Europe/Dublin 2010-08-14 +2963500 Kilbeg Kilbeg 52.05778 -7.99 P PPL IE M 27 0 162 Europe/Dublin 2010-08-14 +2963501 Kilbeacanty Kilbeacanty 53.06528 -8.77444 P PPL IE C 10 0 54 Europe/Dublin 2010-08-14 +2963502 Kilbarry House Kilbarry House 51.85 -9.06667 S EST IE M 04 0 116 Europe/Dublin 1993-12-27 +2963503 Kilbarry Kilbarry 51.91667 -8.46667 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +2963504 Kilbarry Kilbarry 51.86667 -9.05 P PPL IE M 04 0 123 Europe/Dublin 2010-08-14 +2963505 Kilbane Kilbane 52.80222 -8.56472 P PPL IE M 03 0 91 Europe/Dublin 2010-08-14 +2963506 Kilballyowen House Kilballyowen House Kilballyowen,Kilballyowen House 52.4775 -8.50583 S EST IE IE M 16 0 134 Europe/Dublin 2010-08-14 +2963507 Kilbaha Bay Kilbaha Bay 52.55028 -9.85 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963508 Kilbaha Kilbaha Cill Bheathach,Kilbaha 52.55 -9.86722 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963509 Kiggaul Bay Kiggaul Bay 53.23333 -9.70806 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963510 Kid Island Kid Island 54.32667 -9.86389 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963511 Lough Key Lough Key Lough Key 54 -8.25 H LK IE C 24 0 74 Europe/Dublin 2010-08-14 +2963512 Castle Kevin Castle Kevin 53.02111 -6.24583 S BLDG IE L 31 0 299 Europe/Dublin 2010-08-14 +2963513 Keshcarrigan Keshcarrigan 54.01778 -7.94333 P PPL IE C 14 0 60 Europe/Dublin 2010-08-14 +2963514 Kesh Kesh 54.04778 -8.44806 P PPL IE C 25 0 146 Europe/Dublin 2010-08-14 +2963515 Kesh Kesh 53.78333 -8.03333 P PPL IE C 24 0 77 Europe/Dublin 1993-12-27 +2963516 Kerry Head Kerry Head 52.41639 -9.95139 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963517 Ciarraí Ciarrai Co Kerry,Contae Chiarrai,Contae Chiarraí,County Kerry,Kerry 52.16667 -9.75 A ADM2 IE M 11 134656 50 Europe/Dublin 2010-08-14 +2963518 Kerney Cross Roads Kerney Cross Roads Kerney Cross Roads,Kerneys Cross 53.86667 -6.43333 P PPL IE IE 00 0 5 Europe/Dublin 2010-08-10 +2963519 Kerloge Kerloge 52.31611 -6.47278 P PPL IE L 30 0 14 Europe/Dublin 2010-08-14 +2963520 Kenure Park Kenure Park 53.5375 -6.1025 S EST IE L 07 0 1 Europe/Dublin 2010-08-14 +2963521 Kenmare River Kenmare River Kenmare Bay,Kenmare River 51.7775 -9.9425 H BAY IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2963522 Kenmare Kenmare Kenmare,Kevmare,Neidin 51.88333 -9.58333 P PPL IE M 11 2023 -9999 Europe/Dublin 2010-08-14 +2963523 Kellys Quarter Kellys Quarter 52.64694 -6.73611 P PPL IE L 01 0 290 Europe/Dublin 2010-08-14 +2963524 Kellys Grove Kellys Grove 53.29361 -8.2425 P PPL IE C 10 0 72 Europe/Dublin 2010-08-14 +2963525 Kellybridge Halt Kellybridge Halt 54 -6.53333 S RSTP IE 00 0 63 Europe/Dublin 1993-12-27 +2963526 Kells Station Kells Station Kells,Kells Station 52 -10.11667 S RSTN IE IE M 11 0 149 Europe/Dublin 2010-08-14 +2963527 Kells Bay Kells Bay 52.01667 -10.1 H BAY IE M 11 0 97 Europe/Dublin 2010-08-14 +2963528 Ceanannas Ceanannas Ceanannus Mor,Ceanannus Mór,Kells 53.72639 -6.87917 P PPL IE L 21 4820 76 Europe/Dublin 2010-08-14 +2963529 Kells Kells Ceanannas,Kells 52.54111 -7.27306 P PPL IE IE L 13 0 60 Europe/Dublin 2010-08-14 +2963530 Kellavil Kellavil Kellavil,Kellyville,Kellyville House 52.99167 -7.08583 S EST IE IE L 15 0 105 Europe/Dublin 2010-08-14 +2963531 Keishcorran Keishcorran Keishcorran,Keishcorrin 54.06139 -8.43944 T MT IE C 25 0 362 254 Europe/Dublin 2010-08-14 +2963532 Pass of Keimaneigh Pass of Keimaneigh Keamaneigh Pass,Pass of Keimaneigh,Pass of the Deer 51.83528 -9.30139 T PASS IE IE M 04 0 170 Europe/Dublin 2010-08-14 +2963533 Keerglen River Keerglen River 54.23333 -9.36667 H STM IE C 20 0 61 Europe/Dublin 1993-12-27 +2963534 Keeran House Keeran House 53.815 -6.58278 S EST IE L 21 0 78 Europe/Dublin 2010-08-14 +2963535 Keeragh Islands Keeragh Islands Keeragh Islands,Keeroes,Keragh Islands 52.195 -6.73167 T ISLS IE L 30 0 -9999 Europe/Dublin 2010-08-10 +2963536 Keenagh Lodge Keenagh Lodge Keenagh,Keenagh Lodge 54.05028 -9.46972 S EST IE IE C 20 0 81 Europe/Dublin 2010-08-14 +2963537 Keenagh Keenagh Keenagh,Keenaghbeg 54.03472 -9.49861 P PPL IE IE C 20 0 125 Europe/Dublin 2010-08-14 +2963538 Keenagh Keenagh Caonach,Keenagh 53.61667 -7.8 P PPL IE L 18 0 75 Europe/Dublin 2010-08-14 +2963539 Keel Lough Keel Lough 53.98083 -10.06 H LK IE C 20 0 30 Europe/Dublin 2010-08-14 +2963540 Keel Bay Keel Bay 53.96667 -10.08333 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963541 Keelasmore Sound Keelasmore Sound 55.18444 -8.16861 H SD IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963542 Lough Keel Lough Keel Keele,Lough Keel 55.06111 -7.76167 H LK IE IE U 06 0 95 Europe/Dublin 2010-08-14 +2963543 Keel Keel An Caol,Keel 53.96667 -10.08333 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963544 Keekill Keekill 53.41667 -9.1 P PPL IE C 10 0 20 Europe/Dublin 1993-12-27 +2963545 Keeas Keeas 51.96667 -9.85 P PPL IE M 11 0 84 Europe/Dublin 2010-08-14 +2963546 Kedge Island Kedge Island 51.465 -9.345 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963547 Kealkill Kealkill 51.75722 -9.39917 P PPL IE M 04 0 64 Europe/Dublin 2010-08-14 +2963548 Keale House Keale House 52.08333 -9.01667 S EST IE M 04 0 136 Europe/Dublin 1993-12-27 +2963549 Keale Keale 52.11667 -9.03333 P PPL IE M 04 0 133 Europe/Dublin 1993-12-27 +2963550 Kealduff Kealduff 52.01472 -10.00139 P PPL IE M 11 0 170 Europe/Dublin 2010-08-14 +2963551 Lough Keagh Lough Keagh 52.87417 -9.33278 H LK IE M 03 0 162 Europe/Dublin 2010-08-14 +2963552 Keadew Keadew Ceideadh,Céideadh,Keadew 54.04944 -8.13444 P PPL IE C 24 0 71 Europe/Dublin 2010-08-14 +2963553 Keadeen Mountain Keadeen Mountain Ceidin,Céidin,Keadeen Mountain 52.94778 -6.58528 T MT IE L 31 0 654 421 Europe/Dublin 2010-08-14 +2963554 Lough Kay Lough Kay 51.94833 -10.28972 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963555 Kanturk Kanturk Ceann Toirc,Kanturk 52.16667 -8.9 P PPL IE M 04 1628 110 Europe/Dublin 2010-08-14 +2963556 Kanfinalta Kanfinalta Kanfinalta,Kanfinalta Point 54.10139 -9.99 T PT IE IE C 20 0 3 Europe/Dublin 2010-08-14 +2963557 Julianstown Julianstown Julianstown 53.67722 -6.31917 P PPL IE L 21 0 1 Europe/Dublin 2010-08-14 +2963558 Joyces River Joyces River 53.53333 -9.61667 H STM IE C 10 0 76 Europe/Dublin 1993-12-27 +2963559 Jonesborough House Jonesborough House 53.74389 -6.98361 S EST IE L 21 0 112 Europe/Dublin 2010-08-14 +2963560 Johnswell Johnswell Johnswell 52.70167 -7.16833 P PPL IE L 13 0 138 Europe/Dublin 2010-08-14 +2963561 Johnstown House Johnstown House 53.36556 -8.01194 S EST IE C 24 0 100 Europe/Dublin 2010-08-14 +2963562 Johnstown House Johnstown House 52.94472 -8.25639 S EST IE M 26 0 151 Europe/Dublin 2010-08-14 +2963563 Johnstown Castle Johnstown Castle 52.29167 -6.49722 S EST IE L 30 0 63 Europe/Dublin 2010-08-14 +2963564 Johnstown Johnstown 53.40722 -6.83889 P PPL IE L 21 0 86 Europe/Dublin 2010-08-14 +2963565 Johnstown Johnstown 53.23833 -6.62222 P PPL IE L 12 0 134 Europe/Dublin 2010-08-14 +2963566 Johnstown Johnstown 52.78139 -6.23389 P PPL IE L 30 0 80 Europe/Dublin 2010-08-14 +2963567 Johnstown Johnstown Baile Sheain,Baile Sheáin,Johnstown 52.74917 -7.55417 P PPL IE L 13 0 141 Europe/Dublin 2010-08-14 +2963568 Johnstownbridge Johnstownbridge Johnstons Bridge,Johnstownbridge 53.83333 -7.86667 P PPL IE IE C 14 0 66 Europe/Dublin 2010-08-14 +2963569 Johns River Johns River 52.26667 -7.1 H STM IE 00 0 46 Europe/Dublin 1993-12-27 +2963570 Johnsbrook House Johnsbrook House Johnsbrook,Johnsbrook House 53.66861 -6.95806 S EST IE IE L 21 0 96 Europe/Dublin 2010-08-14 +2963571 Jerpoint House Jerpoint House 52.51833 -7.16917 S EST IE L 13 0 44 Europe/Dublin 2010-08-14 +2963572 Jerpoint Abbey Jerpoint Abbey Jerpoint Abbey 52.51139 -7.1575 S RUIN IE L 13 0 57 Europe/Dublin 2010-08-14 +2963573 Jenkinstown House Jenkinstown House Jenkinstown,Jenkinstown House 52.73083 -7.28361 S EST IE IE L 13 0 76 Europe/Dublin 2010-08-14 +2963574 Jenkinstown Jenkinstown 52.71667 -7.28333 P PPL IE L 13 0 74 Europe/Dublin 2010-08-14 +2963575 Jamestown Canal Jamestown Canal 53.91667 -8.03333 H CNL IE 00 0 68 Europe/Dublin 1993-12-27 +2963576 Jamestown Jamestown 53.93333 -8.03333 P PPL IE 00 0 68 Europe/Dublin 1993-12-27 +2963577 Jamestown Jamestown 52.36667 -7.01667 P PPL IE L 13 0 64 Europe/Dublin 1993-12-27 +2963578 James Basin James Basin James Street Harbor 53.33333 -6.28333 H DCKB IE IE L 07 0 23 Europe/Dublin 2010-08-14 +2963579 Ivy Hall Ivy Hall 53.04583 -7.97528 S BLDG IE M 26 0 69 Europe/Dublin 2010-08-14 +2963580 Island Road Station Island Road Station Island Road,Island Road Station 53.95 -8.5 S RSTN IE C 25 0 88 Europe/Dublin 2010-08-10 +2963581 Island River Island River 53.7 -8.46667 H STM IE C 10 0 73 Europe/Dublin 1993-12-27 +2963582 Island More Island More Ilaanmore Island,Island More 53.83333 -9.66667 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-10 +2963583 Island Lake Island Lake 53.78333 -8.78333 H LK IE C 20 0 47 Europe/Dublin 1993-12-27 +2963584 Island House Island House 52.49944 -6.32694 S EST IE L 30 0 55 Europe/Dublin 2010-08-14 +2963585 Islandeady Lough Islandeady Lough 53.83333 -9.38333 H LK IE C 20 0 75 Europe/Dublin 1993-12-27 +2963586 Islandeady Islandeady 53.81667 -9.4 P PPL IE C 20 0 79 Europe/Dublin 1993-12-27 +2963587 Islandbridge Junction Islandbridge Junction 53.33333 -6.3 S RSTN IE L 07 0 30 Europe/Dublin 2010-08-14 +2963588 Islandbridge Islandbridge 53.34833 -6.30917 P PPLX IE L 07 0 11 Europe/Dublin 2010-08-14 +2963589 Islandbawn House Islandbawn House 52.86667 -8.15 S BLDG IE M 26 0 76 Europe/Dublin 2010-08-14 +2963590 Isknagahinny Lough Isknagahinny Lough Isknagahinny Lough,Isknagahiny Lough 51.83222 -10.06361 H LK IE IE M 11 0 87 Europe/Dublin 2010-08-14 +2963591 Iron Mountains Iron Mountains 54.16667 -7.86667 T MTS IE U 02 0 236 Europe/Dublin 1993-12-27 +2963592 Lough Iron Lough Iron 53.6 -7.46667 H LK IE L 29 0 74 Europe/Dublin 1993-12-27 +2963593 Irishtown House Irishtown House Irishtown,Irishtown House 53.11667 -7.33333 S EST IE IE L 15 0 106 Europe/Dublin 2010-08-14 +2963595 Irishford Irishford 53.75667 -6.67889 P PPL IE L 21 0 83 Europe/Dublin 2010-08-14 +2963596 Irelands Eye Irelands Eye Inis Mac Neasain,Inis Mac Neasáin,Irelands Eye 53.40667 -6.0625 T ISL IE IE L 07 0 -9999 Europe/Dublin 2010-11-04 +2963597 Ireland Ireland 'Aealani,Ai-len,Aialan,Airija,Ayrlaanda,Cong hoa Ireland,Cộng hòa Ireland,Demokratia tes Irlandias,Eire,Gweriniaeth Iwerddon,Ierlan,Ierland,Ierlân,Iiri,Iirimaa,Ireland,Ireland (Ai Nhi Lan),Ireland (Ái Nhĩ Lan),Irija,Irish Free State,Irish Republic,Irland,Irlanda,Irlanda - Eire,Irlanda - Éire,Irlande,Irlandia,Irlandija,Irlando,Irlandya,Irlandë,Irlanti,Irlánda,Irorszag,Irska,Irska lydveldid,Irska republika,Irsko,Irská republika,Iwerddon,Komara Irlanda,Komara Îrlanda,Lireyaen,Lireyän,Pobblaght Nerin,Poblachd na h-Eireann,Poblachd na h-Éireann,Poblacht na hEireann,Poblacht na hÉireann,Repoblek Iwerdhon,Repubblica d'Irlanda,Republic o Ireland,Republic of Ireland,Republica Irlanda,Republica d'Irlanda,Republica da Irlanda,Republica da l'Irlanda,Republica de Irlanda,Republiek van Ierland,Republik Ireland,Republik Irlandia,Republik Iwerzhon,Republika Irland,Republika Irlandija,Republika Irska,Republika han Irlandia,Republika ng Irlanda,Republikken Irland,Republyique d'Irlande,República d'Irlanda,República da Irlanda,República de Irlanda,Respublika Irlandia,Respublika Irlandya,Respubliko de Irlando,Républyique d'Irlande,Saorstat Eireann,Saorstát Eireann,ai er lan,ai er lan gong he guo,aillaendeu,airurando,ayaralainda,ayaralyanda,ayarlanda,ayarlantu,ayrlanda,ayrlnd,ayrlnda,irlandia,jmhwryt ayrlnda,Éire,Írland,Írország,Írska lýðveldið,Írsko,Īrija,İrlanda,ʻAealani,Δημοκρατία της Ιρλανδίας,Ιρλανδία,Ірландыя,Ірландія,Ирландия,Ирска,Република Ирландия,Република Ирска,Республіка Ірландія,Рэспубліка Ірляндыя,Ҷумҳӯрии Ирландия,Իռլանդիա,אירלנד,آئر لینڈ,أيرلاندا,ايرلندا,ایرلند,جمهورية إيرلندا,جمہوریہ آئرلینڈ,د آيرلېنډ جمهوريت,ܩܘܛܢܝܘܬܐ ܕܐܝܪܠܢܕ,आयरलैंड,आयरलैण्ड,आयरल्याण्ड,আয়ারল্যান্ড,আয়ার্লণ্ড,அயர்லாந்து,ഐയര്‍ലാന്‍റ്,สาธารณรัฐไอร์แลนด์,ไอร์แลนด์,ໄອແລນ,ཨ་ཡར་ལནཌ།,ཨའིརི་ལེནཌ,ირლანდია,አየርላንድ,አየርላንድ ሪፑብሊክ,អៀរឡង់,アイルランド,爱尔兰,爱尔兰共和国,아일랜드 53 -8 A PCLI IE 00 4622917 153 Europe/Dublin 2011-03-28 +2963599 Inver Bay Inver Bay 54.61667 -8.31667 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963600 Inveran Inveran Indreabhan,Indreabhán,Inveran,Inverin 53.24222 -9.42917 P PPL IE C 10 0 16 Europe/Dublin 2010-08-14 +2963601 Inver Inver Inbhear,Inver 54.65194 -8.28333 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2963602 Inver Inver 54.245 -9.86528 P PPL IE C 20 0 30 Europe/Dublin 2010-08-14 +2963603 Lough Inshagh Lough Inshagh Insagh,Lough Inshagh 55.02167 -7.94583 H LK IE IE U 06 0 152 Europe/Dublin 2010-08-14 +2963604 Inny River Inny River 53.53333 -7.88333 H STM IE L 29 0 66 Europe/Dublin 1993-12-27 +2963605 Inny Junction Inny Junction 53.65 -7.45 S RSTN IE L 29 0 73 Europe/Dublin 1993-12-27 +2963606 River Inny River Inny 51.85722 -10.18167 H STM IE M 11 0 14 Europe/Dublin 2010-08-14 +2963607 Inner Lough Inner Lough 54.10028 -7.05917 H LK IE U 22 0 93 Europe/Dublin 2010-08-14 +2963608 Lough Inn Lough Inn 55.18333 -7.18333 H LK IE U 06 0 158 Europe/Dublin 1993-12-27 +2963609 Inistioge Inistioge Inis Tiog,Inis Tíog,Inistioge 52.48889 -7.06278 P PPL IE IE L 13 0 33 Europe/Dublin 2010-08-14 +2963610 Inishvickillane Inishvickillane 52.045 -10.60444 T ISL IE M 11 0 72 Europe/Dublin 2010-08-14 +2963611 Inishturk Inishturk 53.70361 -10.11028 T ISL IE C 10 0 30 Europe/Dublin 2010-08-14 +2963612 Inishturk Inishturk 53.51222 -10.15222 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +2963613 Inishtravin Inishtravin 53.32278 -9.67611 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +2963614 Inishtrahull Sound Inishtrahull Sound 55.43333 -7.25 H SD IE U 06 0 -9999 Europe/Dublin 1998-03-13 +2963615 Inishtrahull Inishtrahull Inis Tra Tholl,Inis Trá Tholl,Inishtrahull 55.43333 -7.23333 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963616 Inishtooskert Inishtooskert 52.13111 -10.57806 T ISL IE M 11 0 76 Europe/Dublin 2010-08-14 +2963617 Inishskinny Inishskinny Inishskinny,Inishskinny More,Innishskinnymore 53.60528 -10.24639 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963618 Inishsirrer Inishsirrer 55.11667 -8.33333 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963619 Inishshark Inishshark 53.61167 -10.28167 T ISL IE C 10 0 50 Europe/Dublin 2010-08-14 +2963620 Inishowen Head Inishowen Head 55.23333 -6.91667 T CAPE IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2963621 Inishowen Inishowen Inis Eoghain,Inishowen 55.2 -7.33333 T PEN IE U 06 0 455 Europe/Dublin 2010-08-10 +2963622 Inishnee Inishnee Inishnee 53.4 -9.9 T ISLT IE C 10 0 1 Europe/Dublin 2010-08-14 +2963623 Inishnabro Inishnabro 52.05583 -10.61139 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963624 Inishmuskerry Inishmuskerry Inishmuskerry,Muskerry Island 53.27889 -9.82361 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963625 Inishmurray Inishmurray Inishmurray 54.43556 -8.66 T ISL IE C 25 0 1 Europe/Dublin 2010-08-14 +2963626 Inishmore Inishmore Aran-na-naomh,Aranmore,Inishmore 53.12889 -9.71111 T ISL IE IE C 10 0 74 Europe/Dublin 2010-08-14 +2963627 Inishmore Inishmore Deer Island,Inishmore,Innismore 52.71389 -9.03639 T ISL IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963628 Inishmicatreer Inishmicatreer 53.5 -9.25 T ISL IE C 10 0 21 Europe/Dublin 1993-12-27 +2963629 Inishmeane Inishmeane 55.10389 -8.33778 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963630 Inishmacowney Inishmacowney Horse Island,Inishmacowney,Inishnacowney 52.685 -9.04944 T ISL IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2963631 Inishmacnaghtan Inishmacnaghtan Inishmacnaghtan,McNaughton Island 52.70833 -8.95222 T ISL IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2963632 Inishmaan Inishmaan Inishmaan,Inishman 53.09167 -9.58556 T ISL IE IE C 10 0 11 Europe/Dublin 2010-08-14 +2963633 Inishlyre Inishlyre 53.81667 -9.65 T ISL IE C 20 0 -9999 Europe/Dublin 1993-12-27 +2963634 Inishlyon Inishlyon 53.61278 -10.16778 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963635 Inishloe Inishloe Inishloe,Low Island 52.67722 -9.01889 T ISL IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963636 Inishlackan Inishlackan Inishlackan,Lackan 53.37139 -9.92639 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963637 Inishkeeragh Inishkeeragh 54.95861 -8.49472 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963638 Inishkeeragh Inishkeeragh 54.20056 -10.13778 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963639 Inishkeeragh Inishkeeragh Inishkeeragh,Sheep Island 53.43472 -10.17278 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963640 Inniskeen Inniskeen Inis Caoin,Inishkeen,Iniskeen,Inniskeen 54 -6.58333 P PPL IE IE U 22 0 58 Europe/Dublin 2010-08-14 +2963641 Inishkea South Inishkea South 54.11333 -10.21917 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963642 Inishkea North Inishkea North 54.13417 -10.19667 T ISL IE C 20 0 136 Europe/Dublin 2010-08-14 +2963643 Inishinny Inishinny 55.07444 -8.33583 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963644 Inishinny Inishinny 55.00889 -8.45028 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963645 Inishgort Inishgort 53.59639 -10.26278 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963646 Inishglora Inishglora 54.20861 -10.12722 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963647 Inishfree Upper Inishfree Upper Inishfree,Inishfree Upper 54.95528 -8.44528 T ISL IE IE U 06 0 1 Europe/Dublin 2010-08-14 +2963648 Inishfree Lower Inishfree Lower Inishfree,Inishfree Lower 55.06278 -8.38056 T ISL IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963649 Inishfree Bay Inishfree Bay 55.05 -8.38333 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963650 Inishfarnard Inishfarnard 51.71639 -10.02 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963651 Inisheer Inisheer Inisheer 53.06056 -9.52833 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +2963652 Inishdugga Inishdugga 53.44472 -10.15667 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963653 Inishduff Inishduff 54.6 -8.55 T ISL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2963654 Inishdoorus Inishdoorus 53.48333 -9.36667 T ISL IE C 10 0 21 Europe/Dublin 1993-12-27 +2963655 Inishdooey Inishdooey 55.1925 -8.16444 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963656 Inishdegil More Inishdegil More 53.63917 -9.915 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963657 Inishdalla Inishdalla 53.68083 -10.07139 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963658 Inishcrone Inishcrone Inis Crabhann,Inishcrone 54.21667 -9.1 P PPL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2963659 Inishcorker Inishcorker 52.66806 -9.08917 T ISL IE M 03 0 1 Europe/Dublin 2010-08-14 +2963660 Inishcarra Inishcarra 51.88333 -8.63333 P PPL IE M 04 0 68 Europe/Dublin 2010-08-14 +2963661 Inishbroon Inishbroon 53.60889 -10.065 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963662 Inishbofin Inishbofin Inis Bo Finne,Inis Bó Finne,Inishbofin 55.17472 -8.1725 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963663 Inishbofin Inishbofin Inishbofin 53.62083 -10.20889 T ISL IE C 10 0 3 Europe/Dublin 2010-08-14 +2963664 Inishbiggle Inishbiggle Inishbiggle,Innish Biggle 53.99417 -9.90583 T ISL IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2963665 Inishbeg Inishbeg 55.20417 -8.16194 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963666 Inishbeg Inishbeg 51.52361 -9.35611 T ISL IE M 04 0 9 Europe/Dublin 2010-08-14 +2963667 Inishbee Inishbee 53.84861 -9.67194 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963668 Inishbarra Inishbarra 53.2825 -9.7125 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +2963669 Inishannon Inishannon Inis Eonain,Inis Eonáin,Inishannon,Innishannon 51.76806 -8.65917 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2963670 Inish Inish 52.18528 -6.38806 T ISL IE L 30 0 1 Europe/Dublin 2010-08-14 +2963671 India Bank India Bank 53.01667 -5.88333 H BNK IE L 31 0 -9999 Europe/Dublin 1993-12-27 +2963672 Inchturk Inchturk 53.51667 -7.93333 T ISL IE L 29 0 62 Europe/Dublin 1993-12-27 +2963673 Inch Road Station Inch Road Station Inch Road,Inch Road Station 55.06667 -7.45 S RSTN IE IE U 06 0 43 Europe/Dublin 2010-08-14 +2963674 Inch Point Inch Point 52.10583 -9.94444 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963675 Inchmore Inchmore 53.81667 -7.56667 T ISL IE L 18 0 76 Europe/Dublin 1993-12-27 +2963676 Inchmore Inchmore 53.5 -7.93333 T ISL IE L 29 0 62 Europe/Dublin 1993-12-27 +2963677 Inch Island Inch Island 55.06667 -7.5 T ISLT IE U 06 0 35 Europe/Dublin 2010-08-14 +2963678 Inchirourke More Inchirourke More Inchirourke House,Inchirourke More 52.59306 -8.955 S EST IE IE M 16 0 13 Europe/Dublin 2010-08-14 +2963679 Inchiquin Lough Inchiquin Lough 51.81778 -9.68667 H LK IE M 11 0 153 Europe/Dublin 2010-08-14 +2963680 Inchiquin Inchiquin Inchiquin,Inishiquin 53.46667 -9.25 T ISL IE C 10 0 21 Europe/Dublin 2010-08-10 +2963681 Inchiquin Lough Inchiquin Lough Inchiguin Lough,Inchiquin,Inchiquin Lough 52.95583 -9.085 H LK IE IE M 03 0 60 Europe/Dublin 2010-08-14 +2963682 Inchigeelagh Inchigeelagh Inchigeelagh,Inse Geimhleach 51.83333 -9.11667 P PPL IE M 04 0 150 Europe/Dublin 2010-08-14 +2963683 Inchicronan Lough Inchicronan Lough 52.92028 -8.90417 H LK IE M 03 0 74 Europe/Dublin 2010-08-14 +2963684 Inchicore House Inchicore House 53.33333 -6.31667 S HSE IE L 07 0 39 Europe/Dublin 2010-08-14 +2963685 Inchicore Inchicore 53.34087 -6.33091 P PPLX IE L 07 0 27 Europe/Dublin 2010-08-14 +2963686 Inchibeg Bridge Inchibeg Bridge Inchibeg,Inchibeg Bridge 52.08333 -9.18333 P PPL IE IE 00 0 141 Europe/Dublin 2010-08-10 +2963687 Inch House Inch House 52.72278 -7.91639 S EST IE M 26 0 92 Europe/Dublin 2010-08-14 +2963688 Inchcleraun Inchcleraun Inchcleraun,Quaker Island 53.58333 -8 T ISL IE L 18 0 62 Europe/Dublin 2010-08-10 +2963689 Inchaquire Inchaquire 53.0275 -6.79944 P PPL IE L 12 0 129 Europe/Dublin 2010-08-14 +2963690 Inchamay Inchamay 52.05 -8.88333 P PPL IE M 04 0 304 Europe/Dublin 1993-12-27 +2963691 Inchagoill Inchagoill 53.48333 -9.31667 T ISL IE C 10 0 21 Europe/Dublin 1993-12-27 +2963692 Lough Inch Lough Inch 53.27167 -9.16833 H LK IE C 10 0 58 Europe/Dublin 2010-08-14 +2963693 Inch Inch 52.73889 -6.23444 P PPL IE L 30 0 55 Europe/Dublin 2010-08-14 +2963694 Inch Inch 52.68806 -8.09639 P PPL IE M 26 0 297 Europe/Dublin 2010-08-14 +2963695 Inch Inch Inch,Inse 52.14972 -9.96806 P PPL IE IE M 11 0 52 Europe/Dublin 2010-08-14 +2963696 Inch Inch 51.98639 -7.97972 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +2963697 Inch Inch 51.80583 -8.1825 P PPL IE M 04 0 4 Europe/Dublin 2010-08-14 +2963698 Inch Inch 52.12444 -9.95417 T PEN IE M 11 0 1 Europe/Dublin 2010-08-14 +2963699 Inagh River Inagh River 52.94694 -9.35806 H STM IE M 03 0 11 Europe/Dublin 2010-08-14 +2963700 Lough Inagh Lough Inagh 53.51667 -9.75 H LK IE C 10 0 34 Europe/Dublin 1993-12-27 +2963701 Inagh Inagh Dysert,Inagh 52.875 -9.18167 P PPL IE IE M 03 0 69 Europe/Dublin 2010-08-14 +2963702 Glen of Imail Glen of Imail Glen of Imaal,Glen of Imail 52.98417 -6.58444 T VAL IE IE L 31 0 233 Europe/Dublin 2010-08-14 +2963703 Illaunmore Illaunmore 52.96306 -8.29972 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +2963704 Illauneeragh Illauneeragh Eragh,Illauneeragh 53.285 -9.73611 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963705 Illaunananima Illaunananima Illaunananima,Live Island 53.62333 -10.0525 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963706 Illaunamid Illaunamid Illaunamid,Illaunimmul 53.39972 -10.23056 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963707 Illaunaleama Illaunaleama 53.40889 -10.185 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963708 Illanmaster Illanmaster Illanmaster 54.32611 -9.64028 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963709 River Ilen River Ilen River Elen,River Ilen 51.55 -9.31917 H STM IE IE M 04 0 28 Europe/Dublin 2010-08-14 +2963710 Iar Connacht Iar Connacht Iar Connacht,Iar Connaught,Jar Connaught 53.36667 -9.35 L AREA IE C 10 0 151 Europe/Dublin 2010-08-10 +2963711 Lough Hyne Lough Hyne 51.50556 -9.30389 H LK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963712 Hydepark House Hydepark House Hydepark,Hydepark House 52.73111 -6.20611 S EST IE IE L 31 0 39 Europe/Dublin 2010-08-14 +2963713 Hyde Park Hyde Park 53.4925 -7.10528 S EST IE L 29 0 119 Europe/Dublin 2010-08-14 +2963714 Hurlers Cross Hurlers Cross Hurlers Cross 52.71556 -8.83028 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2963715 Huntingdon House Huntingdon House 53.52694 -7.18028 S EST IE L 29 0 134 Europe/Dublin 2010-08-14 +2963716 Hungry Hill Hungry Hill Hungry Hill 51.69306 -9.79417 T MT IE M 04 0 686 421 Europe/Dublin 2010-08-14 +2963717 Hughs Island Hughs Island Hugh Island,Hughs Island 54.48333 -8.45 T ISL IE C 25 0 -9999 Europe/Dublin 2010-08-10 +2963718 Hugginstown Hugginstown Hugginstown 52.4525 -7.24667 P PPL IE L 13 0 114 Europe/Dublin 2010-08-14 +2963719 Howth Junction Station Howth Junction Station 53.38333 -6.15 S RSTN IE L 07 0 1 Europe/Dublin 2010-08-14 +2963721 Ben of Howth Ben of Howth Ben of Howth,Hill of Howth,Shelmartin 53.375 -6.07389 T HLL IE IE L 07 0 35 Europe/Dublin 2010-11-04 +2963722 Howth Howth Binn Eadair,Binn Éadair,Howth 53.38778 -6.06528 P PPL IE L 35 0 1 Europe/Dublin 2010-11-04 +2963723 Howes Strand Howes Strand How Strand,Howes Strand 51.63917 -8.64806 T BCH IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963724 Houndswood House Houndswood House Houndswood,Houndswood House 53.51667 -9.18333 S EST IE C 20 0 41 Europe/Dublin 2010-08-10 +2963725 Hospital Hospital An tOspideal,An tOspidéal,Hospital 52.47306 -8.43056 P PPL IE M 16 0 78 Europe/Dublin 2010-08-14 +2963726 Hoskyn Bank Hoskyn Bank 53.46667 -6.03333 H BNK IE 00 0 -9999 Europe/Dublin 1993-12-27 +2963727 Hortland House Hortland House Hortland,Hortland House 53.37694 -6.77472 S EST IE IE L 12 0 88 Europe/Dublin 2010-08-14 +2963728 Horse Rock Horse Rock 52.66667 -8.9 T RK IE 00 0 -9999 Europe/Dublin 1993-12-27 +2963729 Horseleap Cross Roads Horseleap Cross Roads Horseleap,Horseleap Cross Roads 53.46667 -8.66667 P PPL IE C 10 0 117 Europe/Dublin 2010-08-10 +2963730 Horseleap Horseleap Horseleap,Horseleap Station 53.39417 -7.58 S RSTN IE IE L 29 0 75 Europe/Dublin 2010-08-14 +2963731 Horse Island Horse Island 54.32139 -9.5625 T ISL IE C 20 0 12 Europe/Dublin 2010-08-14 +2963732 Horse Island Horse Island 53.40194 -10.1375 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963733 Horse Island Horse Island 51.8 -10.26667 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963734 Horse Island Horse Island 51.51944 -9.47028 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +2963735 Horse Island Horse Island 51.5125 -9.18361 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963736 Horse and Jockey Horse and Jockey Horse and Jockey 52.61639 -7.77528 P PPL IE M 26 0 141 Europe/Dublin 2010-11-04 +2963737 Horn Head House Horn Head House Horn Head House 55.18861 -7.98667 S HSEC IE U 06 0 9 Europe/Dublin 2010-08-14 +2963738 Horn Head Horn Head Corran Binne,Corrán Binne,Horn Head 55.22444 -7.98222 T CAPE IE U 06 0 6 Europe/Dublin 2010-08-14 +2963739 Horetown House Horetown House 52.31361 -6.715 S EST IE L 30 0 32 Europe/Dublin 2010-08-14 +2963740 Hook Head Hook Head 52.12139 -6.92056 T CAPE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2963741 Holy Island Holy Island 52.91333 -8.44972 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +2963742 Holycross Holycross 52.63972 -7.86306 P PPL IE M 26 0 89 Europe/Dublin 2010-08-14 +2963743 Holycross Holycross 52.50583 -8.53806 P PPL IE M 16 0 85 Europe/Dublin 2010-08-14 +2963744 Holme Holme 55.15 -7.71667 P PPL IE U 06 0 88 Europe/Dublin 1993-12-27 +2963745 Hollywoodrath Hollywoodrath 53.43139 -6.37083 S EST IE L 07 0 79 Europe/Dublin 2010-08-14 +2963746 Hollywood House Hollywood House 54.06444 -9.15139 S HSEC IE C 20 0 10 Europe/Dublin 2010-08-14 +2963747 Hollywood House Hollywood House 52.56472 -8.85611 S EST IE M 16 0 29 Europe/Dublin 2010-08-14 +2963748 Hollywood Hollywood Cillin Chaoimhin,Cillín Chaoimhín,Hollywood 53.09333 -6.60806 P PPL IE L 31 0 257 Europe/Dublin 2010-08-14 +2963749 Hollymount House Hollymount House Hollymount,Hollymount House 53.66667 -9.11667 S EST IE C 20 0 56 Europe/Dublin 2010-08-10 +2963750 Hollymount Hollymount 53.65 -9.11667 P PPL IE C 20 0 56 Europe/Dublin 1993-12-27 +2963751 Hollyfort Hollyfort Hollyfort 52.715 -6.34417 P PPL IE L 30 0 119 Europe/Dublin 2010-08-14 +2963752 Hollyford Hollyford 52.63222 -8.10861 P PPL IE M 26 0 300 Europe/Dublin 2010-08-14 +2963753 Hollybrook House Hollybrook House Hollybrook,Hollybrook House 54.05972 -8.34333 S HSEC IE IE C 25 0 62 Europe/Dublin 2010-08-14 +2963754 Hollybrook House Hollybrook House Hollybrook,Hollybrook House,Holybrook House 53.7 -9.1 S EST IE C 20 0 59 Europe/Dublin 2010-08-10 +2963755 Hollybrook Hollybrook 51.57972 -9.25972 S EST IE M 04 0 95 Europe/Dublin 2010-08-14 +2963756 The Hollow The Hollow 53.87556 -6.92028 P PPL IE L 21 0 247 Europe/Dublin 2010-08-14 +2963757 Holeopen Bay West Holeopen Bay West Holeopen Bay West,West Holeopen Bay 51.61417 -8.55556 H BAY IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963758 Holeopen Bay East Holeopen Bay East East Holeopen Bay,Holeopen Bay,Holeopen Bay East 51.62222 -8.54333 H BAY IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963759 Hogs Head Hogs Head Hog Head,Hogs Head 51.79 -10.22833 T CAPE IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963760 Hog Island Hog Island 52.61972 -9.49806 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963761 Hoddersfield House Hoddersfield House Hoddersfield,Hoddersfield House 51.79472 -8.3425 S EST IE IE M 04 0 72 Europe/Dublin 2010-08-14 +2963762 Hilton Park Hilton Park Hilton,Hilton House,Hilton Park 54.13083 -7.24806 S EST IE IE U 22 0 69 Europe/Dublin 2010-08-14 +2963763 Hill Town Hill Town 54.68333 -8.33333 P PPL IE U 06 0 246 Europe/Dublin 1993-12-27 +2963764 Hilltown Hilltown 52.27472 -6.70639 P PPL IE L 30 0 18 Europe/Dublin 2010-08-14 +2963765 Hilltown Hilltown 52.1925 -6.41222 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2963766 Hilltown Hilltown 53.65306 -6.35028 S EST IE L 21 0 74 Europe/Dublin 2010-08-14 +2963767 Hill Street Hill Street 53.88333 -8.08333 P PPL IE C 24 0 71 Europe/Dublin 1993-12-27 +2963768 Hillside Hillside 52.18806 -6.81639 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2963769 Hillsbrook House Hillsbrook House 53.46667 -8.68333 S BLDG IE C 10 0 109 Europe/Dublin 1993-12-27 +2963770 Hill of Down Station Hill of Down Station Hill of Down,Hill of Down Station 53.46667 -7.01667 S RSTN IE L 21 0 97 Europe/Dublin 2010-08-10 +2963771 Hill Castle Hill Castle 52.23528 -6.39306 S EST IE L 30 0 1 Europe/Dublin 2010-08-14 +2963772 Hillburn House Hillburn House 52.32167 -6.68611 S BLDG IE L 30 0 47 Europe/Dublin 2010-08-14 +2963773 High Street High Street 53.03333 -8.06667 P PPL IE 00 0 76 Europe/Dublin 1993-12-27 +2963774 High Island High Island 53.54639 -10.25722 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963775 High Island High Island 51.51889 -9.12417 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963776 Highfort House Highfort House 52.25 -8.8 S EST IE M 04 0 152 Europe/Dublin 1993-12-27 +2963777 Heywood House Heywood House Haywood House,Heywood House 52.88333 -7.28333 S EST IE IE L 15 0 152 Europe/Dublin 2010-08-14 +2963778 Hermitage House Hermitage House Hermitage,Hermitage House 53.85 -8.38333 S EST IE C 24 0 76 Europe/Dublin 2010-08-10 +2963779 Hermitage Hermitage 52.3 -6.45 P PPL IE L 30 0 1 Europe/Dublin 1993-12-27 +2963780 Herbertstown House Herbertstown House 53.61083 -6.3025 S EST IE L 21 0 77 Europe/Dublin 2010-08-14 +2963781 Herbertstown Herbertstown Baile Hiobaird,Herbertstown 52.51861 -8.46556 P PPL IE M 16 0 74 Europe/Dublin 2010-08-14 +2963782 Hen Island Hen Island Hen Island,Hen Rock 53.38444 -10.10111 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963783 Helvick Head Helvick Head 52.05278 -7.53944 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2963784 Heirhill Heirhill 52.41861 -9.81222 P PPL IE M 11 0 49 Europe/Dublin 2010-08-14 +2963785 Heathview House Heathview House 53.34472 -8.34944 S BLDG IE C 10 0 74 Europe/Dublin 2010-08-14 +2963786 Heathlawn Heathlawn 53.15 -8.26667 S BLDG IE C 10 0 139 Europe/Dublin 2010-08-14 +2963787 Heathburn Hall Heathburn Hall 51.7775 -8.45111 S EST IE M 04 0 115 Europe/Dublin 2010-08-14 +2963788 Hearnesbrooke Hearnesbrooke 53.16444 -8.31528 S EST IE C 10 0 105 Europe/Dublin 2010-08-14 +2963789 Headfort House Headfort House 53.73333 -6.83778 S EST IE L 21 0 63 Europe/Dublin 2010-08-14 +2963790 Headford Junction Headford Junction 52.03333 -9.35 S RSTN IE M 11 0 136 Europe/Dublin 1993-12-27 +2963791 Headford Castle Headford Castle 53.46667 -9.1 S EST IE C 10 0 48 Europe/Dublin 1993-12-27 +2963792 Headford Headford Ath Cinn,Headford,Áth Cinn 53.46667 -9.1 P PPL IE C 10 0 48 Europe/Dublin 2010-08-14 +2963793 Headborough House Headborough House 52.07722 -7.89194 S EST IE M 27 0 18 Europe/Dublin 2010-08-14 +2963794 Hazelwood House Hazelwood House 54.25778 -8.43111 S HSEC IE C 25 0 37 Europe/Dublin 2010-08-14 +2963795 Hazelhatch House Hazelhatch House 53.32111 -6.51778 S BLDG IE L 07 0 68 Europe/Dublin 2010-08-14 +2963796 Hazelhatch and Celbridge Station Hazelhatch and Celbridge Station Hazelhatch Station,Hazelhatch and Celbridge Station 53.31667 -6.51667 S RSTN IE IE 00 0 68 Europe/Dublin 2010-08-10 +2963797 Haywood House Haywood House 52.36694 -7.71944 S EST IE M 26 0 70 Europe/Dublin 2010-08-14 +2963798 Hay’s Bridge Hay's Bridge Hay's Bridge,Hays,Hay’s Bridge 53.67667 -6.6125 P PPL IE L 21 0 51 Europe/Dublin 2010-08-14 +2963799 Hayes Bridge Hayes Bridge 51.66667 -8.75 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +2963800 Haulbowline Island Haulbowline Island Haulbowline Island,Hawlbowline 51.845 -8.30361 T ISL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963801 Hartstown Hartstown 52.96667 -6.73333 P PPL IE L 31 0 188 Europe/Dublin 1993-12-27 +2963802 Harrylock Harrylock 52.16278 -6.88722 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2963803 The Harrow The Harrow 52.56444 -6.43972 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2963804 Harristown Station Harristown Station Harristown,Harristown Station 53.13333 -6.68333 S RSTN IE L 12 0 123 Europe/Dublin 2010-08-10 +2963805 Harristown Harristown 52.83389 -7.61917 P PPL IE L 15 0 139 Europe/Dublin 2010-08-14 +2963806 Harperstown House Harperstown House 52.28333 -6.61667 S RUIN IE L 30 0 66 Europe/Dublin 1993-12-27 +2963807 Harlinstown Harlinstown 53.71778 -6.5775 P PPL IE L 21 0 59 Europe/Dublin 2010-08-14 +2963808 Harleypark House Harleypark House Harley Park,Harleypark House 52.56444 -7.46444 S EST IE IE M 26 0 83 Europe/Dublin 2010-11-04 +2963809 Haremount Haremount 52.15 -9.4 P PPL IE M 11 0 152 Europe/Dublin 1993-12-27 +2963810 Hare Island Hare Island Hare Island,Inishodriscol 53.48333 -9.43333 T ISL IE C 10 0 21 Europe/Dublin 2010-08-10 +2963811 Hare Island Hare Island 53.46667 -7.93333 T ISL IE L 29 0 62 Europe/Dublin 1993-12-27 +2963812 Hare Island Hare Island 53.25806 -9.02111 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963813 Harcourt Street Station Harcourt Street Station Harcourt Street Station,Harcourt Street Terminal,Harcourt Street Terminus 53.35 -6.25 S RSTN IE IE 00 0 1 Europe/Dublin 2010-08-10 +2963814 Hamlihstown Hamlihstown 53.70361 -7.04694 S EST IE L 21 0 120 Europe/Dublin 2010-08-14 +2963815 Halverstown House Halverstown House Halverstown,Halverstown House 53.085 -6.76111 S HSEC IE IE L 12 0 151 Europe/Dublin 2010-08-14 +2963816 Halfway House Halfway House 52.235 -7.71944 S BLDG IE M 27 0 169 Europe/Dublin 2010-08-14 +2963817 Hags Head Hags Head 52.95278 -9.46694 T CAPE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2963818 Hacketstown House Hacketstown House 53.56639 -6.11056 S EST IE L 07 0 3 Europe/Dublin 2010-08-14 +2963819 Hacketstown Hacketstown Baile Haiceid,Baile Haicéid,Hacketstown 52.86389 -6.55694 P PPL IE L 01 0 152 Europe/Dublin 2010-08-14 +2963820 Hackballs Cross Hackballs Cross 54.03167 -6.51472 P PPL IE L 19 0 59 Europe/Dublin 2010-08-14 +2963821 The Hand Cross Roads The Hand Cross Roads 52.82056 -9.26389 P PPL IE M 03 0 151 Europe/Dublin 2010-08-14 +2963822 Gyleen Gyleen 51.79778 -8.1875 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963823 Gweestin River Gweestin River 52.1 -9.7 H STM IE M 11 0 21 Europe/Dublin 1993-12-27 +2963824 Gweesalia Gweesalia 54.11083 -9.89889 P PPL IE C 20 0 2 Europe/Dublin 2010-08-14 +2963825 Gweedore River Gweedore River 55.04944 -8.32444 H STM IE U 06 0 16 Europe/Dublin 2010-08-14 +2963826 Gweedore Bay Gweedore Bay 55.07972 -8.33278 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963827 Gweedore Gweedore Gaoth Dobhair,Gweedore,Krokh'li,Крохьли 55.05028 -8.23194 P PPL IE U 06 4200 126 Europe/Dublin 2010-08-14 +2963828 Gweebarra River Gweebarra River 54.84111 -8.33861 H STM IE U 06 0 34 Europe/Dublin 2010-08-14 +2963829 Gweebarra Bay Gweebarra Bay 54.86667 -8.45 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963830 Gurteenulla Gurteenulla 51.58333 -9.43333 P PPL IE M 04 0 66 Europe/Dublin 1993-12-27 +2963831 Gurteen Le Poer Gurteen Le Poer Gurteen House,Gurteen Le Poer,Gurtren Le Poer 52.35917 -7.6025 S EST IE IE M 27 0 23 Europe/Dublin 2010-08-14 +2963832 Gurteen House Gurteen House 53.03333 -8 S EST IE 00 0 112 Europe/Dublin 1993-12-27 +2963833 Gurteen House Gurteen House 53.11639 -8.01389 S BLDG IE M 26 0 64 Europe/Dublin 2010-08-14 +2963834 Gurteenard House Gurteenard House 52.16667 -8.9 S BLDG IE M 04 0 110 Europe/Dublin 1993-12-27 +2963835 Lough Gur Lough Gur Lough Gur 52.51556 -8.5325 H LK IE M 16 0 87 Europe/Dublin 2010-08-14 +2963836 Gunsborough Gunsborough 52.49028 -9.52806 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +2963837 Gull Island Gull Island 54.77861 -8.60306 T ISL IE U 06 0 73 Europe/Dublin 2010-08-14 +2963838 Gull Island Gull Island Gull Island,Gulls Island 52.12139 -7.44611 T ISL IE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2963839 Lough Guitane Lough Guitane 52 -9.41667 H LK IE M 11 0 143 Europe/Dublin 1993-12-27 +2963840 Guilford House Guilford House 53.4 -7.38333 S EST IE L 29 0 128 Europe/Dublin 1993-12-27 +2963841 Gubnaveagh Gubnaveagh 54.10583 -7.905 P PPL IE C 14 0 240 Europe/Dublin 2010-08-14 +2963842 Gubbaun Point Gubbaun Point 53.87722 -9.81222 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2963843 Gubaveeny Gubaveeny 54.24444 -7.97056 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +2963844 Grove House Grove House 52.45583 -7.655 S EST IE M 26 0 63 Europe/Dublin 2010-08-14 +2963845 Grousehall Grousehall 53.95 -7.11667 P PPL IE U 02 0 165 Europe/Dublin 1993-12-27 +2963846 Grogan Grogan 53.32361 -7.69806 P PPL IE L 23 0 69 Europe/Dublin 2010-08-14 +2963847 Griffinstown Griffinstown 53.46417 -7.14833 S EST IE L 29 0 129 Europe/Dublin 2010-08-14 +2963848 Greystones Greystones Greystones,Na Clocha Liatha 53.14083 -6.06306 P PPL IE L 31 12260 80 1 Europe/Dublin 2010-08-14 +2963849 Greybrook Greybrook 51.85 -8.56667 S BLDG IE M 04 0 129 Europe/Dublin 2010-08-14 +2963850 Grenagh Grenagh 52.01526 -8.60882 P PPL IE M 04 0 148 Europe/Dublin 2010-08-14 +2963851 Gregory’s Sound Gregory's Sound Gregory Sound,Gregory's Sound,Gregory’s Sound 53.09889 -9.61694 H SD IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963852 River Greese River Greese 52.90194 -6.94083 H STM IE L 12 0 52 Europe/Dublin 2010-08-14 +2963853 Greenwood Greenwood 54.14639 -9.29889 S EST IE C 20 0 43 Europe/Dublin 2010-08-14 +2963854 Greenville House Greenville House 52.31667 -7.15 S EST IE L 13 0 44 Europe/Dublin 2010-08-14 +2963855 Greenpark House Greenpark House 52.44722 -8.57222 S EST IE M 16 0 75 Europe/Dublin 2010-08-14 +2963856 Greenore Point Greenore Point 52.23833 -6.30694 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2963857 Greenore Greenore An Grianfort,Greenore 54.03333 -6.13333 P PPL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2963858 Greenoge Greenoge 52.65944 -6.72194 T MT IE L 01 0 186 Europe/Dublin 2010-08-14 +2963859 Greenhills House Greenhills House Greenhill House,Greenhills House 53.37417 -7.17333 S EST IE IE L 23 0 125 Europe/Dublin 2010-08-14 +2963860 Greenfield House Greenfield House 52.56278 -8.16028 S EST IE M 26 0 106 Europe/Dublin 2010-08-14 +2963861 Greencastle Greencastle 55.2 -6.98333 P PPL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2963862 Greenan Mountain Greenan Mountain Greenan Mountain,Grianan of Aileach 55.01667 -7.41667 T HLL IE IE U 06 0 81 Europe/Dublin 2010-08-14 +2963863 Greenane House Greenane House Greenane,Greenane House 52.49944 -8.12889 S EST IE IE M 26 0 121 Europe/Dublin 2010-11-04 +2963864 Greenane Greenane 51.86667 -9.66667 P PPL IE M 11 0 7 Europe/Dublin 1993-12-27 +2963865 Greenane Greenane 52.3675 -8.10944 T MT IE M 26 0 609 Europe/Dublin 2010-08-14 +2963866 Lough Greenan Lough Greenan 55.08361 -7.81694 H LK IE U 06 0 252 Europe/Dublin 2010-08-14 +2963867 Greenan Greenan 52.91972 -6.29917 P PPL IE L 31 0 122 Europe/Dublin 2010-08-14 +2963868 Great Sugar Loaf Great Sugar Loaf Great Sugar Loaf,O Cualann,Ó Cualann 53.15194 -6.15139 T MT IE IE L 31 0 654 439 Europe/Dublin 2010-08-14 +2963869 Skellig Michael Skellig Michael Great Skellig,Great Skelligs 51.76667 -10.53333 T ISL IE IE M 11 0 -9999 Europe/Dublin 2010-11-27 +2963870 Greatmans Bay Greatmans Bay Greatman Bay,Greatmans Bay 53.23722 -9.63139 H BAY IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963871 Great Island Great Island Great Island 51.86861 -8.28 T ISL IE M 04 0 73 Europe/Dublin 2010-08-14 +2963872 Great Foze Rock Great Foze Rock 52.01667 -10.68333 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2963873 Greatconnell Greatconnell 53.17556 -6.77889 P PPL IE L 12 0 109 Europe/Dublin 2010-08-14 +2963874 Great Blasket Island Great Blasket Island Great Blasket Island 52.09583 -10.54083 T ISL IE M 11 0 49 Europe/Dublin 2010-08-14 +2963875 Greaghnageeragh Greaghnageeragh 54.08333 -8.18333 P PPL IE 00 0 188 Europe/Dublin 1993-12-27 +2963876 Great Newtown Head Great Newtown Head 52.13528 -7.16528 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2963877 Granny Granny 53.91667 -8.3 P PPL IE C 24 0 71 Europe/Dublin 1993-12-27 +2963878 Granny Granny 52.27861 -7.15972 P PPL IE L 13 0 10 Europe/Dublin 2010-08-14 +2963879 Grange More House Grange More House Grange More House,Grangemore 53.53361 -7.07667 S EST IE IE L 29 0 111 Europe/Dublin 2010-08-14 +2963880 Grangemockler Grangemockler 52.45639 -7.49417 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +2963881 Grangemellon House Grangemellon House Grangemellon,Grangemellon House 52.94944 -6.9525 S HSEC IE IE L 12 0 57 Europe/Dublin 2010-08-14 +2963882 Grange House Grange House 53.51833 -6.65833 S HSE IE L 21 0 80 Europe/Dublin 2010-08-14 +2963883 Grange House Grange House 52.76611 -7.34833 S EST IE L 13 0 73 Europe/Dublin 2010-08-14 +2963884 Grange House Grange House 52.61556 -7.33056 S EST IE L 13 0 92 Europe/Dublin 2010-08-14 +2963885 Grangegeeth Grangegeeth 53.76278 -6.54667 P PPL IE L 21 0 151 Europe/Dublin 2010-08-14 +2963886 Grangegeeth Cross Roads Grangegeeth Cross Roads Grange,Grange Cross Roads,Grangegeeth Cross Roads 53.75417 -6.55417 P PPL IE IE L 21 0 150 Europe/Dublin 2010-08-14 +2963887 Grange Castle Grange Castle 53.37833 -7.07111 S BLDG IE L 12 0 106 Europe/Dublin 2010-08-14 +2963888 Grangebellew Grangebellew 53.82056 -6.33472 P PPL IE L 19 0 72 Europe/Dublin 2010-08-14 +2963889 Grange Grange An Ghrainseach,An Ghráinseach,Grange 54.4 -8.51667 P PPL IE C 25 0 23 Europe/Dublin 2010-08-14 +2963890 Grange Grange 54.00889 -6.18194 P PPL IE L 19 0 49 Europe/Dublin 2010-08-14 +2963891 Grange Grange 53.81667 -8.05 P PPL IE C 24 0 68 Europe/Dublin 1993-12-27 +2963892 Grange Grange 53.41111 -9.02944 P PPL IE C 10 0 41 Europe/Dublin 2010-08-14 +2963893 Grange Grange 52.65778 -7.55056 P PPL IE M 26 0 159 Europe/Dublin 2010-08-14 +2963894 Grange Grange 52.30944 -7.26361 P PPL IE L 13 0 27 Europe/Dublin 2010-08-14 +2963895 Grange Grange 52.15 -8.3 P PPL IE M 04 0 35 Europe/Dublin 1993-12-27 +2963896 Grange Grange 51.98639 -7.75278 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2963897 River Graney River Graney 52.96417 -8.64028 H STM IE M 03 0 71 Europe/Dublin 2010-08-14 +2963898 Lough Graney Lough Graney 52.9825 -8.66056 H LK IE M 03 0 73 Europe/Dublin 2010-08-14 +2963899 Graney Graney 52.89778 -6.79056 P PPL IE L 12 0 146 Europe/Dublin 2010-08-14 +2963900 Grand Canal Harbour Grand Canal Harbour 53.34694 -6.23139 H HBR IE 00 0 1 Europe/Dublin 1999-02-24 +2963901 Grand Canal Grand Canal Grand Canal 53.31917 -8.19972 H CNL IE C 10 0 66 Europe/Dublin 2011-01-04 +2963902 Granard Granard Granard,Gránard,Гранард 53.76667 -7.5 P PPL IE L 18 1292 151 Europe/Dublin 2010-08-14 +2963903 Granabeg Granabeg 53.0625 -6.50139 P PPL IE L 31 0 277 Europe/Dublin 2010-08-14 +2963904 Graiguenoe House Graiguenoe House 52.63056 -7.8725 S EST IE M 26 0 89 Europe/Dublin 2010-08-14 +2963905 Graiguenamanagh Graiguenamanagh Graig na Manach,Graigue,Graiguenamanagh,Gráig na Manach 52.54028 -6.95472 P PPL IE IE L 13 0 30 Europe/Dublin 2010-08-14 +2963906 Graigue Little Graigue Little 52.17361 -6.88889 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2963907 Graigue Great Graigue Great 52.17028 -6.855 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2963908 Graiguealug Graiguealug Graiguealug,Graiguelug 52.75 -6.85 P PPL IE IE L 01 0 116 Europe/Dublin 2010-08-14 +2963909 Graigue Graigue Garigue,Graigue 53.11667 -8 P PPL IE IE 00 0 61 Europe/Dublin 2010-08-10 +2963910 Graigue Graigue 52.83472 -6.95833 P PPL IE L 15 0 39 Europe/Dublin 2010-08-14 +2963911 Graigue Graigue 52.6 -7.41667 P PPL IE L 13 0 112 Europe/Dublin 2010-08-14 +2963912 Graigue Graigue 52.05 -7.8 P PPL IE M 27 0 96 Europe/Dublin 2010-08-14 +2963913 Graignagower Graignagower 52.2625 -7.72528 P PPL IE M 27 0 139 Europe/Dublin 2010-08-14 +2963914 Graig Abbey Graig Abbey 53.31833 -8.69917 S EST IE C 10 0 52 Europe/Dublin 2010-08-14 +2963915 Graffy Graffy 54.06667 -9.05 P PPL IE C 20 0 55 Europe/Dublin 1993-12-27 +2963916 Graffy Graffy 53.98639 -8.99972 P PPL IE C 20 0 83 Europe/Dublin 2010-08-14 +2963917 Gracefield Gracefield Gracefield,Gracefield House 52.91944 -7.08194 S EST IE IE L 15 0 152 Europe/Dublin 2010-08-14 +2963918 Gowran Gowran Gabhran,Gabhrán,Gowran 52.62944 -7.07333 P PPL IE L 13 0 61 Europe/Dublin 2010-08-14 +2963919 Lough Gowna Lough Gowna 53.85 -7.56667 H LK IE L 18 0 71 Europe/Dublin 1993-12-27 +2963920 Gowlin Old Gowlin Old 52.53333 -6.85 P PPL IE L 01 0 189 Europe/Dublin 2010-08-14 +2963921 Gowlin New Gowlin New 52.53333 -6.86667 P PPL IE L 01 0 86 Europe/Dublin 2010-08-14 +2963922 Gowlin Gowlin 52.54222 -6.85806 P PPL IE L 01 0 87 Europe/Dublin 2010-08-14 +2963923 Gowlaun Gowlaun 53.59944 -9.91111 P PPL IE C 10 0 90 Europe/Dublin 2010-08-14 +2963924 Gowlaun Gowlaun 52.00972 -7.66611 P PPL IE M 27 0 161 Europe/Dublin 2010-08-14 +2963925 Gowlane Gowlane 51.91667 -9.56667 P PPL IE M 11 0 259 Europe/Dublin 1993-12-27 +2963926 Gowla Gowla 53.39611 -9.77806 P PPL IE C 10 0 35 Europe/Dublin 2010-08-14 +2963927 Gouldavoher Gouldavoher 52.63833 -8.65444 P PPL IE M 16 0 14 Europe/Dublin 2010-08-14 +2963928 River Goul River Goul 52.85111 -7.44389 H STM IE L 15 0 88 Europe/Dublin 2010-08-14 +2963929 Gouganebarra Lake Gouganebarra Lake 51.85139 -9.32639 H LK IE M 04 0 318 Europe/Dublin 2010-08-14 +2963930 Gorumna Island Gorumna Island 53.26222 -9.67778 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +2963931 Gortroche Gortroche 52.11399 -8.41021 P PPL IE M 04 0 221 Europe/Dublin 2010-08-14 +2963932 Gortrelig Gortrelig 52.03083 -9.84278 P PPL IE M 11 0 149 Europe/Dublin 2010-08-14 +2963933 Gortnasate Gortnasate 55.03333 -8.4 P PPL IE U 06 0 1 Europe/Dublin 1993-12-27 +2963934 Gortnaraby House Gortnaraby House 54.09556 -9.29806 S HSEC IE C 20 0 24 Europe/Dublin 2010-08-14 +2963935 Gortnamona Gortnamona 53.23333 -8.23333 S EST IE C 10 0 76 Europe/Dublin 1993-12-27 +2963936 Gortnakistin Gortnakistin 52.55 -8.25 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +2963937 Gortnahoo Gortnahoo Gortnahoo 52.67667 -7.59917 P PPL IE M 26 0 140 Europe/Dublin 2010-11-04 +2963938 Gortmore Gortmore 53.39167 -9.61556 P PPL IE C 10 0 89 Europe/Dublin 2010-08-14 +2963939 Gortmore Gortmore 53.38889 -9.15944 P PPL IE C 10 0 18 Europe/Dublin 2010-08-14 +2963940 Gortlee Gortlee 54.955 -7.72556 P PPL IE U 06 0 61 Europe/Dublin 2010-08-14 +2963941 Gortkelly Castle Gortkelly Castle Gortkelly Castle,Gortkelly House 52.69917 -7.97528 S BLDG IE IE M 26 0 203 Europe/Dublin 2010-11-04 +2963942 Gortfree Gortfree 53.48333 -8.08333 P PPL IE C 24 0 73 Europe/Dublin 1993-12-27 +2963943 Gorteeny Gorteeny 53.01556 -8.35972 P PPL IE C 10 0 60 Europe/Dublin 2010-08-14 +2963944 Gorteen Point Gorteen Point 53.36667 -9.95 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963945 Gorteen Bay Gorteen Bay 53.37667 -9.95111 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963946 Gorteen Gorteen 53.99278 -8.51083 P PPL IE C 25 0 79 Europe/Dublin 2010-08-14 +2963947 Gorteen Gorteen 53.36083 -8.60444 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2963948 Gortbaun Gortbaun 53.78333 -9.38333 P PPL IE C 20 0 97 Europe/Dublin 1993-12-27 +2963949 Gortatlea Junction Gortatlea Junction Gortatlea Junction,Gortatlea Station 52.21667 -9.56667 S RSTN IE M 11 0 60 Europe/Dublin 2010-08-10 +2963950 Gortatlea Gortatlea 51.91361 -10.03417 P PPL IE M 11 0 71 Europe/Dublin 2010-08-14 +2963951 Gortaroo Gortaroo 51.92722 -7.91806 P PPL IE M 04 0 37 Europe/Dublin 2010-08-14 +2963952 Gortahork Gortahork Gort an Choirce,Gortahork 55.11667 -8.13333 P PPL IE U 06 0 48 Europe/Dublin 2010-08-14 +2963953 Gortahill Gortahill 54.28472 -7.96444 P PPL IE U 02 0 72 Europe/Dublin 2010-08-14 +2963954 Gortahile Gortahile 52.81667 -7.07556 P PPL IE L 15 0 300 Europe/Dublin 2010-08-14 +2963955 Gortaglanna Gortaglanna 52.44972 -9.3925 P PPL IE M 11 0 73 Europe/Dublin 2010-08-14 +2963956 Gortagarry House Gortagarry House Gortagarry,Gortagarry House 52.81639 -7.97528 S BLDG IE IE M 26 0 210 Europe/Dublin 2010-11-04 +2963957 Gortacullin Gortacullin 52.27472 -7.91583 P PPL IE M 26 0 94 Europe/Dublin 2010-08-14 +2963958 Gort Gort An Gort,Gort 53.06639 -8.81667 P PPL IE C 10 2098 34 Europe/Dublin 2010-08-14 +2963959 Gormanston Gormanston Baile Mhic Gormain,Baile Mhic Gormáin,Germanstown,Gormanston,Gormanstown 53.64056 -6.23778 P PPL IE L 21 0 8 Europe/Dublin 2010-08-14 +2963960 Ben Gorm Ben Gorm Ben Gorm,Bengorm 53.61667 -9.71667 T MT IE C 20 0 439 Europe/Dublin 2010-08-10 +2963961 Gorey Gorey Cashel,Gorey 55.25 -7.2 P PPL IE U 06 0 113 Europe/Dublin 2010-08-10 +2963962 Gorey Gorey Gorey,Guaire 52.67472 -6.2925 P PPL IE L 30 6040 52 Europe/Dublin 2010-08-14 +2963963 Goresbridge Goresbridge An Droichead Nua,Goresbridge 52.63111 -6.99472 P PPL IE L 13 0 31 Europe/Dublin 2010-08-14 +2963964 Goolds Cross Goolds Cross 52.59 -7.95444 P PPL IE M 26 0 79 Europe/Dublin 2010-08-14 +2963965 Goleen Goleen Goleen 51.49389 -9.70917 P PPL IE M 04 0 4 Europe/Dublin 2010-08-14 +2963966 Gold Mine River Gold Mine River Gold Mine River,Gold Mines,Goldmine,Goldmines River 52.82861 -6.23028 H STM IE IE L 31 0 40 Europe/Dublin 2010-08-14 +2963967 Golden Vale Golden Vale 52.5 -8 T PLN IE M 26 0 68 Europe/Dublin 2010-08-14 +2963968 Golden Grove Golden Grove 52.97278 -7.82139 S EST IE L 23 0 100 Europe/Dublin 2010-08-14 +2963969 Golden Golden An Gabhailin,An Gabhailín,Golden 52.49778 -7.98028 P PPL IE M 40 0 76 Europe/Dublin 2010-11-04 +2963970 Golan Golan 54.33333 -7.05 P PPL IE 00 0 173 Europe/Dublin 1993-12-27 +2963971 Golam Head Golam Head 53.23528 -9.76722 T CAPE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2963972 Gola Island Gola Island Gabhla,Gabla,Gola Island 55.08333 -8.36667 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2963973 Lough Golagh Lough Golagh 54.54194 -8.05389 H LK IE U 06 0 367 Europe/Dublin 2010-08-14 +2963974 Lough Golagh Lough Golagh 54.61667 -7.96667 H LK IE U 06 0 153 Europe/Dublin 1993-12-27 +2963975 Gola Gola Gola,Gola House 54.27139 -7.095 S EST IE IE U 22 0 123 Europe/Dublin 2010-08-14 +2963976 Gokane Point Gokane Point 51.48833 -9.27139 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963977 Goish River Goish River 52.08028 -7.86 H STM IE M 27 0 67 Europe/Dublin 2010-08-14 +2963978 Goatstown Goatstown 53.00222 -8.14667 P PPL IE M 26 0 60 Europe/Dublin 2010-08-14 +2963979 Goat Islands Goat Islands 51.48944 -9.60389 T ISLS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963980 Goat Island Little Goat Island Little 51.48333 -9.6 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963981 Goat Island Goat Island 51.48333 -9.6 T ISL IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2963982 Gneevgullia Gneevgullia Gneeveguilla,Gneevgullia 52.11667 -9.26667 P PPL IE M 11 0 171 Europe/Dublin 2010-08-10 +2963983 Gneeves Gneeves 52.3 -9.3 P PPL IE M 11 0 225 Europe/Dublin 1993-12-27 +2963984 Gneeves Gneeves 52.15 -8.8 P PPL IE M 04 0 79 Europe/Dublin 1993-12-27 +2963985 Glynnwood House Glynnwood House 53.40083 -7.84528 S EST IE L 29 0 80 Europe/Dublin 2010-08-14 +2963986 Glynn Glynn 52.50333 -6.90417 P PPL IE L 01 0 70 Europe/Dublin 2010-08-14 +2963987 Glynn Glynn 52.37083 -6.57722 P PPL IE L 30 0 49 Europe/Dublin 2010-08-14 +2963988 River Glyde River Glyde 53.88306 -6.35 H STM IE 00 0 1 Europe/Dublin 1999-03-22 +2963989 Glounthaune Glounthaune 51.9 -8.33333 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2963990 Gloster Gloster 53.00167 -7.87333 S EST IE L 23 0 79 Europe/Dublin 2010-08-14 +2963991 Glore River Glore River 53.88333 -9 H STM IE C 20 0 31 Europe/Dublin 1993-12-27 +2963992 Lough Glore Lough Glore 53.68333 -7.25 H LK IE L 29 0 153 Europe/Dublin 1993-12-27 +2963993 Glinsk Glinsk 55.20861 -7.78194 P PPL IE U 06 0 50 Europe/Dublin 2010-08-14 +2963994 Glinsk Glinsk 53.65 -8.41667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2963995 Glinsk Glinsk Glinsce,Glinsk 53.37306 -9.82389 P PPL IE IE C 10 0 94 Europe/Dublin 2010-08-14 +2963996 Glinsk Glinsk 54.31583 -9.61556 T MT IE C 20 0 305 76 Europe/Dublin 2010-08-14 +2963997 Glin Castle Glin Castle 52.56611 -9.29639 S EST IE M 16 0 70 Europe/Dublin 2010-08-14 +2963998 Glin Glin An Gleann,Glin 52.57028 -9.28278 P PPL IE M 16 0 38 Europe/Dublin 2010-08-14 +2963999 Glin Glin 52.17944 -10.28694 P PPL IE M 11 0 84 Europe/Dublin 2010-08-14 +2964000 Glenville House Glenville House 52.9125 -9.33028 S HSEC IE M 03 0 72 Europe/Dublin 2010-08-14 +2964001 Glenville House Glenville House Glenville,Glenville House 52.5 -9.06667 S EST IE IE M 16 0 92 Europe/Dublin 2010-08-14 +2964002 Glenville Glenville Gleann an Phreachain,Gleann an Phréacháin,Glenville 52.04389 -8.42472 P PPL IE M 04 0 137 Europe/Dublin 2010-08-14 +2964003 Glenvar Glenvar 55.15611 -7.59917 P PPL IE U 06 0 108 Europe/Dublin 2010-08-14 +2964004 Glenummera River Glenummera River 53.63333 -9.75 H STM IE C 20 0 149 Europe/Dublin 1993-12-27 +2964005 Glenturk Lodge Glenturk Lodge 54.18944 -9.73056 S HSE IE C 20 0 61 Europe/Dublin 2010-08-14 +2964006 Glenties Glenties Glenties,Na Gleannta 54.7975 -8.2825 P PPL IE U 06 1500 87 87 Europe/Dublin 2010-08-14 +2964007 Glentavraun Glentavraun 53.88333 -8.8 P PPL IE C 20 0 87 Europe/Dublin 1993-12-27 +2964008 Glenstal Castle Glenstal Castle 52.66111 -8.38167 S EST IE M 16 0 148 Europe/Dublin 2010-08-14 +2964009 Glenroe Glenroe 53.00639 -9.02806 P PPL IE M 03 0 86 Europe/Dublin 2010-08-14 +2964010 Glen River Glen River 54.63333 -8.63333 H STM IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2964011 Glen River Glen River 52.13333 -8.88333 H STM IE M 04 0 105 Europe/Dublin 1993-12-27 +2964012 Glenree River Glenree River Glenree River,Owenmore River 54.11667 -9.15 H STM IE C 20 0 5 Europe/Dublin 2010-08-10 +2964013 Glenpipe Glenpipe 52.42194 -7.09222 P PPL IE L 13 0 151 Europe/Dublin 2010-08-14 +2964014 Glenpatrick Glenpatrick 52.32139 -7.58806 P PPL IE M 27 0 264 Europe/Dublin 2010-08-14 +2964015 Glenosheen Glenosheen 52.31667 -8.5 P PPL IE M 16 0 188 Europe/Dublin 2010-08-14 +2964016 Glen of the Downs Glen of the Downs 53.13333 -6.11889 T VAL IE L 31 0 151 Europe/Dublin 2010-08-14 +2964017 Glennaun Lough Glennaun Lough 53.35222 -9.78278 H LK IE C 10 0 77 Europe/Dublin 2010-08-14 +2964018 Glennan Glennan Glannan,Glennan 54.32667 -6.91583 P PPL IE IE U 22 0 64 Europe/Dublin 2010-08-14 +2964019 Glennamong Glennamong 53.98333 -9.65 T MT IE C 20 0 311 Europe/Dublin 1993-12-27 +2964020 Glennamaddy Glennamaddy Gleann na Madadh,Glenamaddy,Glennamaddy 53.6 -8.55 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2964021 Glennagoul Glennagoul 52.26667 -8.55 P PPL IE M 04 0 155 Europe/Dublin 1993-12-27 +2964022 Glennagannon River Glennagannon River Glennagannon River,Loughinn River 55.27861 -7.25306 H STM IE IE U 06 0 12 Europe/Dublin 2010-08-14 +2964023 Glennagalliagh Glennagalliagh Glennagalliagh,Moylussa 52.83278 -8.52278 T MT IE IE M 03 0 366 Europe/Dublin 2010-08-14 +2964024 Glenmullynaha Cross Roads Glenmullynaha Cross Roads Glenmullynaha,Glenmullynaha Cross Roads 53.91667 -8.75 P PPL IE C 20 0 150 Europe/Dublin 2010-08-10 +2964025 Glenmore Glenmore 52.76694 -9.265 P PPL IE M 03 0 158 Europe/Dublin 2010-08-14 +2964026 Glenmore Glenmore 54.80972 -7.86889 S EST IE U 06 0 68 Europe/Dublin 2010-08-14 +2964027 Glenmore Glenmore 54.14111 -9.36944 S EST IE C 20 0 62 Europe/Dublin 2010-08-14 +2964028 Glenmalur Glenmalur 52.98167 -6.4075 T VAL IE L 31 0 269 Europe/Dublin 2010-08-14 +2964029 Glenmacnass River Glenmacnass River 53.00361 -6.29694 H STM IE L 31 0 146 Europe/Dublin 2010-08-14 +2964030 Glen Lough Glen Lough 55.10889 -7.83972 H LK IE U 06 0 37 Europe/Dublin 2010-08-14 +2964031 Glen Lough Glen Lough 53.63333 -7.58333 H LK IE L 18 0 70 Europe/Dublin 1993-12-27 +2964032 Glen Lodge Glen Lodge 53.78333 -7.65 S BLDG IE L 18 0 72 Europe/Dublin 1993-12-27 +2964033 Glenlaur River Glenlaur River 53.68333 -9.58333 H STM IE C 20 0 113 Europe/Dublin 1993-12-27 +2964034 Glenlara River Glenlara River 52.2 -9.01667 H STM IE M 04 0 152 Europe/Dublin 1993-12-27 +2964035 Glenisland Glenisland 53.90083 -9.40639 P PPL IE C 20 0 96 Europe/Dublin 2010-08-14 +2964036 Gleninagh River Gleninagh River 53.51667 -9.76667 H STM IE C 10 0 39 Europe/Dublin 1993-12-27 +2964037 Glenieraragh Glenieraragh 55.1 -7.81667 P PPL IE U 06 0 188 Europe/Dublin 1993-12-27 +2964038 Glenicmurrin Lough Glenicmurrin Lough 53.32389 -9.50444 H LK IE C 10 0 78 Europe/Dublin 2010-08-14 +2964039 Glen Head Glen Head 54.72389 -8.75 T CAPE IE U 06 0 188 Europe/Dublin 2010-08-14 +2964040 Glengort Glengort 52.36667 -9.2 P PPL IE M 16 0 141 Europe/Dublin 1993-12-27 +2964041 Glengollan Glengollan Glengollan,Glengollan House 55.08333 -7.45 S EST IE IE U 06 0 70 Europe/Dublin 2010-08-14 +2964042 Glengesh River Glengesh River 54.75 -8.5 H STM IE U 06 0 251 Europe/Dublin 1993-12-27 +2964043 Glangevlin Glangevlin Glangavlen,Glangevlin,Glengavlen,Glengevlin 54.19472 -7.89 P PPL IE IE U 02 0 170 Europe/Dublin 2010-08-14 +2964044 Glengarriff Lodge Glengarriff Lodge Glengariff Lodge,Glengarriff Lodge 51.76861 -9.58278 S EST IE IE M 04 0 158 Europe/Dublin 2010-08-14 +2964045 Glengarriff Harbour Glengarriff Harbour Glengariff Harbour,Glengarriff Harbour 51.75111 -9.5375 H HBR IE IE M 04 0 55 Europe/Dublin 2010-08-14 +2964046 Glengarriff Castle Glengarriff Castle Glengariff Castle,Glengarriff Castle 51.71667 -9.51667 S EST IE M 04 0 -9999 Europe/Dublin 2010-08-10 +2964047 Glengarriff Glengarriff An Gleann Garbh,Glengariff,Glengarriff,Гленгарифф 51.75 -9.55 P PPL IE M 04 250 -9999 Europe/Dublin 2010-10-09 +2964048 Glengad Head Glengad Head 55.33333 -7.16667 T CAPE IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2964049 Glenfarne Glenfarne Glenfarn,Glenfarne 54.28694 -7.98722 P PPL IE IE C 14 0 79 Europe/Dublin 2010-08-14 +2964050 Gleneely Gleneely 55.23333 -7.15 P PPL IE U 06 0 58 Europe/Dublin 1993-12-27 +2964051 Gleneely Gleneely 54.76667 -7.68333 P PPL IE U 06 0 103 Europe/Dublin 2010-08-14 +2964052 Glenealy Glenealy Gleann Fhaidhle,Glenealy 52.96222 -6.14583 P PPL IE L 31 0 146 Europe/Dublin 2010-08-14 +2964053 Glenealo River Glenealo River 53 -6.30167 H STM IE L 31 0 138 Europe/Dublin 2010-08-14 +2964054 Glenduff Castle Glenduff Castle 52.33333 -9.01667 S EST IE M 16 0 191 Europe/Dublin 1993-12-27 +2964055 Glenduff Glenduff 52.25556 -8.16556 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2964056 Glendree Glendree 52.92028 -8.72333 P PPL IE M 03 0 161 Europe/Dublin 2010-08-14 +2964057 Glendowan Mountains Glendowan Mountains 54.96667 -8.03333 T MTS IE U 06 0 159 Europe/Dublin 2010-08-14 +2964058 Glendowan Glendowan 54.8 -7.96667 P PPL IE U 06 0 153 Europe/Dublin 1993-12-27 +2964059 Glendoo Mountain Glendoo Mountain Glendoo Mountain,Sliabh Ghleann Dubh 53.22194 -6.29083 T MT IE 00 0 587 443 Europe/Dublin 2010-08-10 +2964060 Glendine Bridge Glendine Bridge Glendine,Glendine Bridge 51.99472 -7.8975 P PPL IE IE M 27 0 24 Europe/Dublin 2010-08-14 +2964061 Glenderry Glenderry 52.4 -9.90028 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964062 Vale of Glendasan Vale of Glendasan Glendasan,Vale of Glendasan 53.0125 -6.35611 T VAL IE IE L 31 0 269 Europe/Dublin 2010-08-14 +2964063 Glendalough House Glendalough House 53.03556 -6.26944 S EST IE L 31 0 249 Europe/Dublin 2010-08-14 +2964064 Vale of Glendalough Vale of Glendalough Glendalough,Vale of Glendalough 52.99972 -6.38361 T VAL IE IE L 31 0 363 Europe/Dublin 2010-08-14 +2964065 Glencullen River Glencullen River 53.19111 -6.13667 H STM IE L 31 0 53 Europe/Dublin 1999-02-24 +2964066 Glencree River Glencree River 53.16944 -6.20111 H STM IE L 31 0 143 Europe/Dublin 2010-08-14 +2964067 Glencorrib Lodge Glencorrib Lodge Glencorrib House,Glencorrib Lodge 53.51667 -9.16667 S EST IE C 20 0 43 Europe/Dublin 2010-08-10 +2964068 Glencolumbkille House Glencolumbkille House Columbkille House,Glencolumbkille House 53.04306 -9.01556 S HSEC IE IE M 03 0 117 Europe/Dublin 2010-08-14 +2964069 Glencolumbkille Glencolumbkille Gleann Cholm Cille,Glencolumbkille 54.7 -8.71667 P PPL IE IE U 06 0 269 Europe/Dublin 2010-08-14 +2964070 Glencar Lough Glencar Lough Glen Clear Lake,Glencar Lough 54.34111 -8.38667 H LK IE IE 00 0 66 Europe/Dublin 2010-08-10 +2964071 Glencarry House Glencarry House Glencara House,Glencarry House 53.5 -7.56667 S HSEC IE IE L 29 0 108 Europe/Dublin 2010-08-14 +2964072 Glencairn Abbey Glencairn Abbey 52.14111 -8.00417 S EST IE M 27 0 42 Europe/Dublin 2010-08-14 +2964073 Glenbrook Glenbrook 51.865 -8.36278 P PPL IE M 04 0 78 Europe/Dublin 2010-08-14 +2964074 Glenbrien Glenbrien Glenbrien,Glenbryan 52.46111 -6.5 P PPL IE IE L 30 0 38 Europe/Dublin 2010-08-14 +2964075 Glenbreedy Glenbreedy 52.78583 -8.02222 P PPL IE M 26 0 163 Europe/Dublin 2010-08-14 +2964076 Glenboy Glenboy 54.295 -8.1125 S EST IE C 14 0 125 Europe/Dublin 2010-08-14 +2964077 Glenbeigh Glenbeigh Gleann Beithe,Glenbeigh 52.05806 -9.93778 P PPL IE IE M 11 0 90 Europe/Dublin 2010-08-14 +2964078 Glenbeg Lough Glenbeg Lough 51.72083 -9.87278 H LK IE M 04 0 188 Europe/Dublin 2010-08-14 +2964079 Glen Bay Glen Bay 54.71139 -8.75056 H BAY IE U 06 0 100 Europe/Dublin 2010-08-14 +2964080 Glenbaun Glenbaun 52.51667 -9.2 P PPL IE M 16 0 152 Europe/Dublin 1993-12-27 +2964081 Glenbane Glenbane 52.47972 -8.30972 P PPL IE M 26 0 116 Europe/Dublin 2010-08-14 +2964082 Lough Glenawough Lough Glenawough 53.65 -9.51667 H LK IE C 20 0 439 Europe/Dublin 1993-12-27 +2964083 Glenasrone House Glenasrone House Glenasorne House,Glenasrone House 52.36667 -9.3 S EST IE M 16 0 153 Europe/Dublin 2010-08-10 +2964084 Glenart Castle Glenart Castle 52.80667 -6.21806 S EST IE L 31 0 79 Europe/Dublin 2010-08-14 +2964085 Glenard Glenard 51.99167 -7.61639 P PPL IE M 27 0 65 Europe/Dublin 2010-08-14 +2964086 Glenaniff River Glenaniff River 54.40083 -8.12194 H STM IE C 14 0 53 Europe/Dublin 2010-08-14 +2964087 Glenamoy River Glenamoy River 54.25861 -9.73389 H STM IE C 20 0 28 Europe/Dublin 2010-08-14 +2964088 Glenamoy Glenamoy Glenamoy 54.24 -9.70083 P PPL IE C 20 0 55 Europe/Dublin 2010-08-14 +2964089 Glen Alla House Glen Alla House 55.09222 -7.61333 S HSEC IE U 06 0 186 Europe/Dublin 2010-08-14 +2964090 Glenade Lough Glenade Lough 54.36722 -8.27167 H LK IE C 14 0 170 Europe/Dublin 2010-08-14 +2964091 Glenade House Glenade House Glenade,Glenade House 54.36333 -8.25444 S HSEC IE IE C 14 0 157 Europe/Dublin 2010-08-14 +2964092 Glenade Glenade 54.38611 -8.29944 P PPL IE C 14 0 235 Europe/Dublin 2010-08-14 +2964093 Glenacurragh Castle Glenacurragh Castle 53.04111 -7.85361 S EST IE L 23 0 105 Europe/Dublin 2010-08-14 +2964094 Glenacappul Glenacappul Glen of the Horse,Glenacappul 51.96667 -9.46667 T GRGE IE M 11 0 529 Europe/Dublin 2010-08-10 +2964095 Glen Glen 55.12556 -7.81139 P PPL IE U 06 0 61 Europe/Dublin 2010-08-14 +2964096 Glen Glen 53.83333 -7.43333 P PPL IE U 02 0 101 Europe/Dublin 1993-12-27 +2964097 Gleensk River Gleensk River 52.03333 -10.06667 H STM IE M 11 0 149 Europe/Dublin 2010-08-14 +2964098 Glasshouse Glasshouse 52.96194 -7.93972 S EST IE L 23 0 100 Europe/Dublin 2010-08-14 +2964099 Glassgorman Banks Glassgorman Banks 52.705 -6.13167 H BNK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2964100 Glassely House Glassely House 53.02944 -6.87667 S EST IE L 12 0 109 Europe/Dublin 2010-08-14 +2964101 Glassan Glassan Glasan,Glassan,Glasson,Glasán 53.46667 -7.86667 P PPL IE L 29 0 145 Europe/Dublin 2010-08-14 +2964102 Glasnevin Glasnevin 53.38028 -6.26417 P PPL IE L 07 0 6 Europe/Dublin 2010-08-14 +2964103 Glaslough Glaslough Glasloch,Glaslough,Glasslough 54.31861 -6.895 P PPL IE U 22 0 65 Europe/Dublin 2010-08-14 +2964104 Glaskyle Glaskyle 52.73333 -7.96667 S BLDG IE M 26 0 126 Europe/Dublin 2010-08-14 +2964105 Glashedy Island Glashedy Island 55.31944 -7.40083 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964106 Glashare Castle Glashare Castle Clashare Castle,Glashare Castle 52.78778 -7.51389 S BLDG IE IE L 13 0 148 Europe/Dublin 2010-08-14 +2964107 Glashaboy River Glashaboy River 51.90167 -8.3975 H STM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964108 River Glasha River Glasha 52.61861 -6.60222 H STM IE L 30 0 59 Europe/Dublin 2010-08-14 +2964109 Glanworth Glanworth Glanworth,Gleannuir,Gleannúir 52.18667 -8.3575 P PPL IE IE M 04 0 46 Europe/Dublin 2010-08-14 +2964110 Glantane Glantane 52.1 -8.75 P PPL IE M 04 0 180 Europe/Dublin 1993-12-27 +2964111 Glanmore Lake Glanmore Lake 51.74361 -9.77583 H LK IE M 11 0 15 Europe/Dublin 2010-08-14 +2964112 Glanmore Castle Glanmore Castle Glanmore Castle,Glenmore Castle 53.0175 -6.14417 S EST IE IE L 31 0 134 Europe/Dublin 2010-08-14 +2964113 Glanmire Station Glanmire Station Glanmire,Glanmire Station,Glenmire,Granmire 51.9 -8.46667 S RSTN IE IE M 04 0 57 Europe/Dublin 2010-08-14 +2964114 Glanmire Glanmire Glanmire,Gleann Maghair 51.91583 -8.39972 P PPL IE M 04 0 28 Europe/Dublin 2010-08-14 +2964115 Glanlough Glanlough 51.63583 -9.60778 H LK IE M 04 0 58 Europe/Dublin 2010-08-14 +2964116 Glan Lodge Glan Lodge 54.16611 -7.80361 S BLDG IE U 02 0 263 Europe/Dublin 2010-08-14 +2964117 Glanleam Glanleam 51.91667 -10.31667 P PPL IE M 11 0 118 Europe/Dublin 2010-08-14 +2964118 Glandore Harbour Glandore Harbour 51.56639 -9.12083 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964119 Glandore Bay Glandore Bay Glandore Bay,Glandour Bay 51.53333 -9.01667 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-10 +2964120 Glandore Glandore Cuan Dor,Cúan Dor,Glandore 51.57306 -9.11889 P PPL IE M 04 0 68 Europe/Dublin 2011-03-06 +2964121 Glanaruddery Mountains Glanaruddery Mountains 52.31667 -9.46667 T MTS IE M 11 0 221 Europe/Dublin 1993-12-27 +2964122 Slieve Glah Slieve Glah 53.95361 -7.29556 T MT IE U 02 0 321 152 Europe/Dublin 2010-08-14 +2964123 Glackaunadarragh Glackaunadarragh Glackaunadarra,Glackaunadarragh 54.11667 -8.16667 P PPL IE C 14 0 273 Europe/Dublin 2010-08-10 +2964124 Lough Gill Lough Gill 54.25 -8.38333 H LK IE C 25 0 91 Europe/Dublin 1998-09-01 +2964125 Lough Gill Lough Gill 52.26194 -10.04444 H LK IE M 11 0 19 Europe/Dublin 2010-08-14 +2964126 Gibstown Station Gibstown Station Gibbstown,Gibbstown Station,Gibstown Station 53.69806 -6.70694 S RSTN IE IE L 21 0 65 Europe/Dublin 2010-08-14 +2964127 Gerrardstown Castle Gerrardstown Castle Gerrardstown Castle,Gerrardstown House 53.62694 -6.59083 S CSTL IE IE L 21 0 72 Europe/Dublin 2010-08-14 +2964128 Geraldine House Geraldine House 53.00722 -6.96083 S EST IE L 12 0 72 Europe/Dublin 2010-08-14 +2964129 Gerahies Gerahies 51.64778 -9.58778 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +2964130 Lough George Lough George George,Lough George 52.97 -8.98056 H LK IE IE M 03 0 59 Europe/Dublin 2010-08-14 +2964131 Geevagh Geevagh An Ghaobhach,Geevagh 54.1 -8.25 P PPL IE C 25 0 73 Europe/Dublin 2010-08-14 +2964132 Geashill Geashill Geashill,Geisill,Géisill 53.23528 -7.32 P PPL IE L 23 0 83 Europe/Dublin 2010-08-14 +2964133 Gearagh Gearagh 51.65 -8.96667 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2964134 Gazebo Gazebo 52.8375 -7.17306 P PPL IE L 13 0 147 Europe/Dublin 2010-08-14 +2964135 Gaybrook House Gaybrook House Gaybrook,Gaybrook House 53.46667 -7.28333 S EST IE L 29 0 125 Europe/Dublin 2010-08-10 +2964136 Gaugin Mountain Gaugin Mountain 54.80333 -8.02583 T MT IE U 06 0 568 421 Europe/Dublin 2010-08-14 +2964137 Gascanane Sound Gascanane Sound Gascanane Sound,Gaseanane Sound 51.45194 -9.44917 H SD IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964138 River Garvogue River Garvogue Garvogue River,River Garvogue 54.28333 -8.48333 H STM IE C 25 0 2 Europe/Dublin 2010-08-10 +2964139 Garvan Isles Garvan Isles 55.3875 -7.31194 T ISLS IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964140 Gartnamona House Gartnamona House 53.21694 -7.59917 S EST IE L 23 0 79 Europe/Dublin 2010-08-14 +2964141 Gartlandstown House Gartlandstown House 53.6 -7.26667 S BLDG IE L 29 0 118 Europe/Dublin 1993-12-27 +2964142 Gartan Lough Gartan Lough Gartan Lough,Loch Gartain,Loch Gartáin 54.98333 -7.91667 H LK IE U 06 0 148 Europe/Dublin 2010-08-14 +2964143 Garryvoe Garryvoe 51.87556 -8.00028 P PPL IE M 04 0 7 Europe/Dublin 2010-08-14 +2964144 Garryspillane Garryspillane Garryspellane,Garryspillane 52.41278 -8.37944 P PPL IE IE M 16 0 113 Europe/Dublin 2010-08-14 +2964145 Garryrickin House Garryrickin House 52.49222 -7.425 S EST IE L 13 0 133 Europe/Dublin 2010-08-14 +2964146 Garrylucas Garrylucas 51.64194 -8.57528 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +2964147 Garrykennedy House Garrykennedy House 52.89917 -8.35528 S EST IE M 26 0 71 Europe/Dublin 2010-08-14 +2964148 Garrykennedy Garrykennedy Garrykennedy,Garrykonnedy 52.90278 -8.34611 P PPL IE IE M 26 0 55 Europe/Dublin 2010-11-04 +2964149 Garryglass Garryglass 52.43333 -9.2 S EST IE M 16 0 278 Europe/Dublin 1993-12-27 +2964150 Garryfine Garryfine 52.41139 -8.73472 P PPL IE M 16 0 79 Europe/Dublin 2010-08-14 +2964151 Garryduff Garryduff 52.01667 -8.11667 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2964152 Garristown Garristown 53.56611 -6.38556 P PPL IE L 07 0 76 Europe/Dublin 2010-08-14 +2964153 Garrendenny Castle Garrendenny Castle Garrendenny,Garrendenny Castle 52.83972 -7.11028 S EST IE IE L 15 0 199 Europe/Dublin 2010-08-14 +2964154 Garrellstown House Garrellstown House 51.65611 -8.60361 S EST IE M 04 0 59 Europe/Dublin 2010-08-14 +2964155 Garraunnatooha Garraunnatooha 52.66667 -9.4 P PPL IE M 03 0 21 Europe/Dublin 1993-12-27 +2964156 Garraunbaun Point Garraunbaun Point Garraunbaun Point,Gurraun Point 52.6 -9.23333 T PT IE IE 00 0 1 Europe/Dublin 2010-08-10 +2964157 Garranty Garranty Carranty,Garranty 53.70667 -10.09028 P PPL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964158 Garranlea House Garranlea House Garranlea,Garranlea House 52.45333 -7.90972 S EST IE IE M 26 0 88 Europe/Dublin 2010-11-04 +2964159 Garranlahan Garranlahan 53.71667 -8.66667 P PPL IE C 24 0 93 Europe/Dublin 1993-12-27 +2964160 Garranes Lake Garranes Lake 51.66667 -9.18333 H LK IE M 04 0 154 Europe/Dublin 1993-12-27 +2964161 Garrane Garrane 51.91667 -9.03333 P PPL IE M 04 0 121 Europe/Dublin 1993-12-27 +2964162 Garrane Garrane 52.83333 -8.05 S BLDG IE M 26 0 178 Europe/Dublin 2010-08-14 +2964163 Garranard Garranard 54.17639 -9.35417 P PPL IE C 20 0 59 Europe/Dublin 2010-08-14 +2964164 Garrafrauns Garrafrauns Garrafranes,Garrafrauns 53.63333 -8.83333 P PPL IE C 10 0 66 Europe/Dublin 2010-08-10 +2964165 Garnavilla House Garnavilla House Garnavilla,Garnavilla House 52.34389 -7.90056 S EST IE IE M 26 0 64 Europe/Dublin 2010-11-04 +2964166 Garnavilla Garnavilla 52.34444 -7.89278 P PPL IE M 26 0 69 Europe/Dublin 2010-08-14 +2964167 Garnish Point Garnish Point Garinish Point,Garnish Point 51.61667 -10.15 T PT IE IE M 04 0 35 Europe/Dublin 2010-08-14 +2964168 Garnish Garnish Garinish,Garnish 51.6 -10.13333 P PPL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964169 Gardenmorris House Gardenmorris House 52.17472 -7.35444 S EST IE M 27 0 75 Europe/Dublin 2010-08-14 +2964170 Gardenfield House Gardenfield House 53.53333 -8.86667 S EST IE C 10 0 42 Europe/Dublin 1993-12-27 +2964171 Garbally Garbally Garbally,Garbally Court 53.32139 -8.24111 S EST IE IE C 10 0 67 Europe/Dublin 2010-08-14 +2964172 Garadice Lough Garadice Lough 54.0525 -7.71222 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +2964173 Garadice Garadice 53.44944 -6.70944 P PPL IE L 21 0 80 Europe/Dublin 2010-08-14 +2964174 Garadice House Garadice House Garadice,Garadice House 54.05583 -7.72556 S HSEC IE IE C 14 0 75 Europe/Dublin 2010-08-14 +2964175 Lough Gara Lough Gara 53.91667 -8.45 H LK IE C 24 0 71 Europe/Dublin 1993-12-27 +2964176 Slieve Gamph Slieve Gamph Slieve Gamph,The Ox Mountains 54.11667 -8.9 T MTS IE C 25 0 159 Europe/Dublin 2010-08-10 +2964177 Galway Harbour Galway Harbour 53.26667 -9.05 H HBR IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964178 Galway Bay Galway Bay Galway Bay 53.19972 -9.23028 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964179 County Galway County Galway Contae na Gaillimhe,County Galway,Gaillimh,Galway 53.33333 -9 A ADM2 IE C 10 216926 6 Europe/Dublin 2010-08-14 +2964180 Galway Galway Gaillimh,Galway,Galway - Gaillimh,Galway city,Goluehj,Goluej,Golveja,ge er wei,goruu~ei,Голуей,Голуэй,ゴールウェイ,戈尔韦 53.27194 -9.04889 P PPLA2 IE C 10 70686 -9999 Europe/Dublin 2010-08-14 +2964181 Galty Mountains Galty Mountains Galtee Mountains,Galty Mountains 52.36444 -8.14833 T MTS IE IE 00 0 563 Europe/Dublin 2010-08-10 +2964182 Galtymore Mountain Galtymore Mountain Galtymore,Galtymore Mountain 52.36611 -8.17389 T MT IE IE M 16 0 919 475 Europe/Dublin 2011-03-08 +2964183 Galtrim House Galtrim House Galtrim,Galtrim House 53.51306 -6.69972 S BLDG IE IE L 21 0 77 Europe/Dublin 2010-08-14 +2964184 Galmoy Galmoy 52.79194 -7.5675 P PPL IE L 13 0 153 Europe/Dublin 2010-08-14 +2964185 Gallstown House Gallstown House Gallstown House,Gallstown Park 53.43333 -7.26667 S EST IE L 29 0 134 Europe/Dublin 2010-08-10 +2964186 Galley Head Galley Head 51.52917 -8.96083 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964187 Gallarus Gallarus 52.17222 -10.34806 S ANS IE M 11 0 89 Europe/Dublin 2010-08-14 +2964188 Galey River Galey River 52.43889 -9.60667 H STM IE M 11 0 64 Europe/Dublin 2010-08-14 +2964189 Galbally Galbally An Gallbhaile,Galbally 52.40028 -8.29278 P PPL IE M 16 0 131 Europe/Dublin 2010-08-14 +2964190 Gaghta Island Gaghta Island Gaghta Island,Gaghty Island 54.08611 -10.13972 T ISL IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964191 Gaddagh River Gaddagh River Gadagh River,Gaddagh River 52.08333 -9.7 H STM IE M 11 0 22 Europe/Dublin 2010-08-10 +2964192 Gabys Cross Roads Gabys Cross Roads Gabys,Gabys Cross Roads 52.46667 -6.4 P PPL IE IE L 30 0 76 Europe/Dublin 2010-08-14 +2964193 Mount Gabriel Mount Gabriel Gabriel's Mount,Gabriel’s Mount,Mount Gabriel 51.56056 -9.54278 T MT IE IE M 04 0 217 Europe/Dublin 2010-08-14 +2964194 Slieve Fyagh Slieve Fyagh 54.19167 -9.65667 T MT IE C 20 0 332 299 Europe/Dublin 2010-08-14 +2964195 Furze Island Furze Island 51.5625 -9.66083 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964196 Furraleigh Furraleigh 52.20583 -7.49861 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +2964197 Furnought Furnought 54.14778 -9.49667 T HLL IE C 20 0 152 87 Europe/Dublin 2010-08-14 +2964198 Furness Furness Forenaghts,Furness 53.22444 -6.61056 P PPL IE IE L 12 0 150 Europe/Dublin 2010-08-14 +2964199 Furnace Lough Furnace Lough 53.91278 -9.57222 H LK IE C 20 0 12 Europe/Dublin 2010-08-14 +2964200 Furmina Furmina 53.05 -9.51667 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2964201 River Funshion River Funshion 52.15333 -8.23889 H STM IE M 04 0 33 Europe/Dublin 1997-12-15 +2964202 Lough Funshinagh Lough Funshinagh 53.51667 -8.1 H LK IE C 24 0 76 Europe/Dublin 1993-12-27 +2964203 Fuhiry Fuhiry 51.9 -9.25 P PPL IE M 04 0 304 Europe/Dublin 1993-12-27 +2964204 Fuerty Fuerty 53.61667 -8.26667 P PPL IE C 24 0 74 Europe/Dublin 1993-12-27 +2964205 Frower Point Frower Point 51.67611 -8.4825 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964206 Frosses Frosses 54.66667 -8.23333 P PPL IE U 06 0 60 Europe/Dublin 1993-12-27 +2964207 Friarstown Friarstown 54.23333 -8.31667 P PPL IE C 14 0 47 Europe/Dublin 2010-08-14 +2964208 Friar Island Friar Island 53.54972 -10.22917 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964209 Freshford Freshford Achadh Ur,Achadh Úr,Aghoura,Freshford 52.73417 -7.39889 P PPL IE L 13 0 98 Europe/Dublin 2010-08-14 +2964210 Freneystown Freneystown 52.6825 -7.11778 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +2964211 Frenchpark House Frenchpark House 53.88333 -8.41667 S EST IE C 24 0 76 Europe/Dublin 1993-12-27 +2964212 Frenchpark Frenchpark Dun Gar,Dún Gar,Frenchpark 53.86667 -8.4 P PPL IE IE C 24 0 76 Europe/Dublin 2010-08-14 +2964213 Frenchfort Frenchfort 53.28333 -8.9 P PPL IE C 10 0 14 Europe/Dublin 1993-12-27 +2964214 Frehill Island Frehill Island Frehil Island,Frehill Island 53.6625 -9.95611 T ISL IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964215 Freemount Freemount Cillin an Chronain,Cillín an Chrónáin,Freemount 52.26667 -8.88333 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2964216 Freaghillaun South Freaghillaun South 53.57778 -10.04278 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964217 Freaghillaun North Freaghillaun North Freaghillaun North,North Freaghillaun 53.61694 -10.01528 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964218 Freagh Castle Freagh Castle 52.87972 -9.425 S EST IE M 03 0 14 Europe/Dublin 2010-08-14 +2964219 Frazers Hall Frazers Hall Frazer Hall,Frazers Hall 52.28639 -7.07167 S BLDG IE IE L 13 0 76 Europe/Dublin 2010-08-14 +2964220 Frankford House Frankford House 53.81667 -7.56667 S EST IE L 18 0 76 Europe/Dublin 1993-12-27 +2964221 Frankford Frankford 53.16667 -7.73333 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +2964222 Franckfort Castle Franckfort Castle 52.91667 -7.90778 S EST IE L 23 0 128 Europe/Dublin 2010-08-14 +2964223 Foze Rocks Foze Rocks 52.02778 -10.68083 T RKS IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964224 Foynes Island Foynes Island 52.62194 -9.10861 T ISL IE M 16 0 3 Europe/Dublin 2010-08-14 +2964225 Foynes Foynes Faing,Foynes 52.61139 -9.11028 P PPL IE IE M 16 0 40 Europe/Dublin 2010-08-14 +2964226 Foyle House Foyle House 52.75972 -7.46222 S EST IE L 13 0 154 Europe/Dublin 2010-08-14 +2964227 Lough Foyle Lough Foyle Lough Foyle 55.1 -7.13333 H BAY IE 00 0 -9999 Europe/Dublin 1998-02-19 +2964228 Foygh Foygh 53.6 -7.83333 P PPL IE L 18 0 72 Europe/Dublin 1993-12-27 +2964229 Foxs Bridge Station Foxs Bridge Station Fox's Bridge,Foxs Bridge Station,Fox’s Bridge 51.95 -8.65 S RSTN IE IE M 04 0 103 Europe/Dublin 2010-08-14 +2964230 Fox Island Fox Island 53.4 -10.09333 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964231 Foxhall Foxhall 53.58704 -9.00129 P PPL IE C 10 0 116 Europe/Dublin 1993-12-27 +2964232 Fox Hall Fox Hall 54.94 -7.84167 S EST IE U 06 0 70 Europe/Dublin 2010-08-14 +2964233 Foxford Foxford Beal Easa,Béal Easa,Foxford 53.98333 -9.11667 P PPL IE C 20 0 22 Europe/Dublin 2010-08-14 +2964234 Four Mile House Four Mile House 53.7 -8.21667 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2964235 Fourcuil Fourcuil 51.65 -8.9 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +2964236 Fountainstown House Fountainstown House Fountainstown House 51.77972 -8.32556 S EST IE M 04 0 72 Europe/Dublin 2010-08-14 +2964237 Foul Sound Foul Sound 53.06833 -9.57389 H SD IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964238 Foulksrath Castle Foulksrath Castle 52.75 -7.32139 S EST IE L 13 0 81 Europe/Dublin 2010-08-14 +2964239 Foulkscourt House Foulkscourt House 52.75917 -7.57306 S EST IE L 13 0 149 Europe/Dublin 2010-08-14 +2964240 Foulkesmill Foulkesmill Faulkesmill,Foulkesmill,Foulkesmills 52.31083 -6.75056 P PPL IE IE L 30 0 43 Europe/Dublin 2010-08-14 +2964241 Fortwilliam House Fortwilliam House Fort William,Fortwilliam House 52.13806 -8.00194 S EST IE IE M 27 0 42 Europe/Dublin 2010-08-14 +2964242 Fort William Fort William 51.9 -8.41667 S HSEC IE M 04 0 28 Europe/Dublin 2010-08-14 +2964243 Fort William Fort William 52.94333 -8.09167 S EST IE M 26 0 117 Europe/Dublin 2010-08-14 +2964244 Fort Stewart Fort Stewart Fort Stewart,Fort Stewart House 55.01917 -7.59278 P PPL IE IE U 06 0 9 Europe/Dublin 2010-08-14 +2964245 Fort Singleton Fort Singleton Fort Singleton,Singleton Fort 54.36167 -6.97639 S EST IE IE U 22 0 63 Europe/Dublin 2010-08-14 +2964246 Fortland Fortland 54.28 -8.95333 S EST IE C 25 0 1 Europe/Dublin 2010-08-14 +2964247 Fortland Fortland 54.12472 -9.33528 S EST IE C 20 0 47 Europe/Dublin 2010-08-14 +2964248 Fortland Fortland 53.83333 -7.31667 S EST IE U 02 0 76 Europe/Dublin 1993-12-27 +2964249 Forth Mountain Forth Mountain Forth Hills,Forth Mountain 52.30694 -6.56556 T MT IE IE L 30 0 152 Europe/Dublin 2010-08-14 +2964250 Fort George Fort George 53.83333 -7.11667 S EST IE U 02 0 141 Europe/Dublin 1993-12-27 +2964251 Fort Frederick Fort Frederick 53.82667 -7.12222 S EST IE U 02 0 141 Europe/Dublin 2010-08-14 +2964252 Fort Fergus Fort Fergus 52.72833 -9.03889 S EST IE M 03 0 1 Europe/Dublin 2010-08-14 +2964253 Fort Etna Fort Etna 52.59194 -8.70111 S EST IE M 16 0 53 Europe/Dublin 2010-08-14 +2964254 Formoyle Lodge Formoyle Lodge 53.33333 -9.45 S BLDG IE 00 0 81 Europe/Dublin 1993-12-27 +2964255 Lough Formoyle Lough Formoyle 53.33611 -9.47861 H LK IE C 10 0 72 Europe/Dublin 2010-08-14 +2964256 Formoyle Formoyle 53.61667 -7.83333 P PPL IE L 18 0 76 Europe/Dublin 1993-12-27 +2964257 Forgney House Forgney House Forgney,Forgney House 53.55 -7.7 S RUIN IE L 18 0 76 Europe/Dublin 2010-08-10 +2964258 Forest House Forest House 53.38333 -7.41667 S EST IE L 29 0 104 Europe/Dublin 2010-08-14 +2964259 Forest House Forest House 51.88333 -8.8 S EST IE M 04 0 150 Europe/Dublin 2010-08-14 +2964260 Fore Fore 53.67694 -7.22361 P PPL IE L 29 0 149 Europe/Dublin 2010-08-14 +2964261 Ford Ford 52.51194 -6.28028 P PPL IE L 30 0 13 Europe/Dublin 2010-08-14 +2964262 Lough Forbes Lough Forbes 53.78333 -7.88333 H LK IE 00 0 67 Europe/Dublin 1993-12-27 +2964263 Foohagh Point Foohagh Point 52.67028 -9.69611 T PT IE M 03 0 55 Europe/Dublin 2010-08-14 +2964264 Fontstown Fontstown 53.05 -6.89278 P PPL IE L 12 0 94 Europe/Dublin 2010-08-14 +2964265 Foileye Foileye 52.03028 -10.13111 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964266 Foilclogh Foilclogh Foilclogh,Foilologh 51.90528 -10.16583 T MT IE IE M 11 0 363 Europe/Dublin 2010-08-14 +2964267 Foilakill Foilakill 51.63139 -9.65028 P PPL IE M 04 0 68 Europe/Dublin 2010-08-14 +2964268 Foherish River Foherish River 51.91667 -9.03333 H STM IE M 04 0 121 Europe/Dublin 1993-12-27 +2964269 Foghill Foghill 54.25972 -9.24917 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +2964270 Foaty Island Foaty Island 51.89611 -8.30139 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +2964271 Flowerhill House Flowerhill House 52.14972 -8.0075 S EST IE M 27 0 21 Europe/Dublin 2010-08-14 +2964272 Flood Hall Flood Hall 52.51333 -7.21722 S EST IE L 13 0 78 Europe/Dublin 2010-08-14 +2964273 Float Station Float Station Float,Float Station 53.7 -7.45 S RSTN IE L 29 0 72 Europe/Dublin 2010-08-10 +2964274 River Flesk River Flesk 52.03333 -9.51667 H STM IE M 11 0 58 Europe/Dublin 1993-12-27 +2964275 Flat Head Flat Head 51.71472 -8.35889 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964276 Flagmount Flagmount Flagmount 52.98583 -8.64389 P PPL IE M 03 0 82 Europe/Dublin 2010-08-14 +2964277 Fivemilebridge Fivemilebridge 51.81972 -8.49639 P PPL IE M 04 0 38 Europe/Dublin 2010-08-14 +2964278 Fivemilebourne Fivemilebourne 54.26917 -8.34028 P PPL IE C 14 0 59 Europe/Dublin 2010-08-14 +2964279 Fivealley Fivealley 53.15 -7.83583 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +2964280 Fishmoyne House Fishmoyne House Fishmoyne,Fishmoyne House 52.75528 -7.92278 S EST IE IE M 26 0 93 Europe/Dublin 2010-11-04 +2964281 Fisherstreet Fisherstreet 53.01722 -9.38611 P PPL IE M 03 0 27 Europe/Dublin 2010-08-14 +2964282 Firmount Firmount 51.98333 -8.7 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2964283 Finuge Finuge Finuge,Fionnuig,Fionnúig 52.42917 -9.54111 P PPL IE IE M 11 0 66 Europe/Dublin 2010-08-14 +2964284 Fintragh Bay Fintragh Bay Fintra Bay,Fintragh Bay 54.62583 -8.4925 H BAY IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964285 Fintown Fintown 54.87056 -8.11333 P PPL IE U 06 0 150 Europe/Dublin 2010-08-14 +2964286 Finny River Finny River 53.56667 -9.48333 H STM IE 00 0 59 Europe/Dublin 1993-12-27 +2964287 Finny Finny 53.56667 -9.48333 P PPL IE C 20 0 59 Europe/Dublin 1993-12-27 +2964288 River Finn River Finn River Finn 54.11667 -7.33333 H STM IE 00 0 105 Europe/Dublin 2010-08-10 +2964289 Finnow River Finnow River 52.06667 -9.05 H STM IE M 04 0 136 Europe/Dublin 1993-12-27 +2964290 Finnow River Finnow River 51.9 -9.01667 H STM IE M 04 0 105 Europe/Dublin 1993-12-27 +2964291 Finnoe House Finnoe House 52.98556 -8.16583 S EST IE M 26 0 63 Europe/Dublin 2010-08-14 +2964292 Finnihy River Finnihy River 51.86667 -9.6 H STM IE M 11 0 69 Europe/Dublin 1993-12-27 +2964293 Finnea Finnea Finea,Finnea,Fiodh an Atha,Fiodh an Átha 53.76667 -7.38333 P PPL IE L 29 0 72 Europe/Dublin 2010-08-14 +2964294 Finnararagh Finnararagh Finnaragh,Finnararagh 51.90361 -9.89194 T MT IE IE M 11 0 421 Europe/Dublin 2010-08-14 +2964295 River Finn River Finn River Finn 54.83333 -7.48333 H STM IE 00 0 13 Europe/Dublin 2010-08-10 +2964296 Lough Finn Lough Finn 54.86111 -8.13861 H LK IE U 06 0 152 Europe/Dublin 2010-08-14 +2964297 Fin Lough Fin Lough 53.75 -8.15 H LK IE C 24 0 72 Europe/Dublin 1993-12-27 +2964298 Fin Lough Fin Lough Fin,Fin Lough 53.61667 -9.75 H LK IE C 20 0 90 Europe/Dublin 2010-08-10 +2964299 Fin Lough Fin Lough Fen Lough,Fin,Fin Lough 53.31528 -7.94722 H LK IE IE L 23 0 67 Europe/Dublin 2010-08-14 +2964300 Fin Lough Fin Lough 52.77222 -8.84194 H LK IE M 03 0 11 Europe/Dublin 2010-08-14 +2964301 Finisk River Finisk River 52.12528 -7.84389 H STM IE M 27 0 28 Europe/Dublin 2010-08-14 +2964302 Finish Island Finish Island 53.30028 -9.81306 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964303 Finglas Finglas Finglas,Tinglas 53.38917 -6.29694 P PPL IE IE 00 0 19 Europe/Dublin 2010-08-10 +2964304 Finavarra Point Finavarra Point 53.15083 -9.13472 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2964305 Finavarra Finavarra 53.15139 -9.10056 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2964306 Figile River Figile River 53.14944 -7.07806 H STM IE 00 0 71 Europe/Dublin 1999-02-24 +2964307 Fieries Fieries 52.16667 -9.6 P PPL IE M 11 0 71 Europe/Dublin 1993-12-27 +2964308 Fiddown Fiddown Fiddown,Fiodh Duin,Fiodh Dúin 52.33 -7.31556 P PPL IE L 13 0 9 Europe/Dublin 2010-08-14 +2964309 Fews Fews 52.22222 -7.45556 P PPL IE M 27 0 100 Europe/Dublin 2010-08-14 +2964310 Fethard Fethard Fethard,Fiodh Ard 52.46722 -7.69111 P PPL IE IE M 26 0 69 Europe/Dublin 2010-11-04 +2964311 Fethard Fethard Fethard,Fiodh Ard 52.19167 -6.85167 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2964312 River Ferta River Ferta 51.96389 -10.18222 H STM IE M 11 0 53 Europe/Dublin 2010-08-14 +2964313 Ferrycarrig Ferrycarrig 52.35389 -6.50722 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2964314 Ferry Bridge Ferry Bridge 52.61833 -8.76472 P PPL IE M 16 0 11 Europe/Dublin 2010-08-14 +2964315 Ferrybank Ferrybank 52.26444 -7.10778 P PPL IE L 13 0 26 Europe/Dublin 2010-08-14 +2964316 Ferriters Cove Ferriters Cove 52.16667 -10.45 H COVE IE M 11 0 45 Europe/Dublin 2010-08-14 +2964317 Ferns Lock Station Ferns Lock Station Ferns Lock,Ferns Lock Station,Ferrans Lock 53.41861 -6.70556 S RSTN IE IE L 21 0 81 Europe/Dublin 2010-08-14 +2964318 Ferns Ferns Alder Trees,Fearna,Ferns 52.58833 -6.49972 P PPL IE L 30 0 64 Europe/Dublin 2010-08-14 +2964319 Lough Fern Lough Fern 55.05944 -7.71861 H LK IE U 06 0 55 Europe/Dublin 2010-08-14 +2964320 Mainistir Fhear Maí Mainistir Fhear Mai Fermoy 52.13583 -8.27583 P PPL IE M 04 4933 35 Europe/Dublin 2010-08-14 +2964321 River Fergus River Fergus 52.70111 -9.00167 H STM IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2964322 Ferbane Ferbane An Fear Ban,An Féar Bán,Ferbane 53.26944 -7.82694 P PPL IE L 23 0 65 Europe/Dublin 2010-08-14 +2964323 Feorish River Feorish River 54.03333 -8.08333 H STM IE 00 0 74 Europe/Dublin 1993-12-27 +2964324 Feohanagh River Feohanagh River 52.21556 -10.35972 H STM IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964325 Feohanagh Feohanagh 52.3825 -8.97167 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +2964326 Fennor Fennor 52.1575 -7.22639 P PPL IE M 27 0 37 Europe/Dublin 2010-08-14 +2964327 Fennagh Fennagh 52.71333 -6.84778 P PPL IE L 01 0 112 Europe/Dublin 2010-08-14 +2964328 Fenit Harbour Fenit Harbour Fenit Harbour 52.28333 -9.85 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964329 Fenit Fenit An Fhianait,Fenit 52.28083 -9.8675 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2964330 Fenagh Fenagh 54.02083 -7.83306 P PPL IE C 14 0 75 Europe/Dublin 2010-08-14 +2964331 Feevagh Feevagh 53.43333 -8.23333 P PPL IE C 24 0 72 Europe/Dublin 1993-12-27 +2964332 Feenagh Feenagh 52.38833 -8.87917 P PPL IE M 16 0 131 Europe/Dublin 2010-08-14 +2964333 Lough Feeagh Lough Feeagh 53.93889 -9.57583 H LK IE C 20 0 55 Europe/Dublin 2010-08-14 +2964334 Lough Fee Lough Fee 53.58333 -9.83333 H LK IE C 10 0 88 Europe/Dublin 1993-12-27 +2964335 Fedamore Fedamore Feadamair,Fedamore 52.54528 -8.6025 P PPL IE IE M 16 0 55 Europe/Dublin 2010-08-14 +2964336 Featherstone Lodge Featherstone Lodge 53.03556 -8.45556 S EST IE C 10 0 159 Europe/Dublin 2010-08-14 +2964337 Fearagha Fearagha 53.46667 -9 P PPL IE C 10 0 97 Europe/Dublin 1993-12-27 +2964338 River Feale River Feale 52.44444 -9.62389 H STM IE M 11 0 63 Europe/Dublin 2010-08-14 +2964339 Feakle Feakle An Fhiacail,Feakle 52.92472 -8.64528 P PPL IE M 03 0 79 Europe/Dublin 2010-08-14 +2964340 Feagarrid Feagarrid 52.18139 -7.98111 P PPL IE M 27 0 209 Europe/Dublin 2010-08-14 +2964341 Feacle House Feacle House 53.43333 -8.13333 S BLDG IE C 24 0 82 Europe/Dublin 1993-12-27 +2964342 Lough Fea Lough Fea 53.95444 -6.74694 H LK IE U 22 0 68 Europe/Dublin 2010-08-14 +2964343 Fawnaboy Upper Fawnaboy Upper Fawnaboy,Fawnaboy Upper 55.08333 -8.13333 P PPL IE U 06 0 161 Europe/Dublin 2010-08-10 +2964344 Fawnaboy Lower Fawnaboy Lower 55.08333 -8.13333 P PPL IE U 06 0 161 Europe/Dublin 1993-12-27 +2964345 Faughalstown Faughalstown 53.63333 -7.33333 P PPL IE L 29 0 80 Europe/Dublin 1993-12-27 +2964346 Fastnet Rock Fastnet Rock Fastnet Rock 51.38889 -9.60361 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964347 Farsid Farsid 51.84639 -8.20472 P PPL IE M 04 0 7 Europe/Dublin 2010-08-14 +2964348 Farrihy Bay Farrihy Bay 52.71639 -9.6225 H BAY IE M 03 0 1 Europe/Dublin 2010-08-14 +2964349 Farren Connell Farren Connell 53.78333 -7.26667 S EST IE U 02 0 93 Europe/Dublin 1993-12-27 +2964350 Farranville House Farranville House 52.88944 -7.54833 S EST IE L 15 0 128 Europe/Dublin 2010-08-14 +2964351 Farrangalway Farrangalway 51.73583 -8.55222 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2964352 Farranfore Farranfore An Fearann Fuar,Farranfore 52.16667 -9.55 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +2964353 Farran Farran 52.03333 -8.66667 P PPL IE M 04 0 185 Europe/Dublin 2010-08-14 +2964354 Farnham House Farnham House Farnham,Farnham House 54 -7.4 S EST IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2964355 Farney Castle Farney Castle 52.67139 -7.89917 S CSTL IE M 26 0 81 Europe/Dublin 2010-08-14 +2964356 Farnanes Cross Roads Farnanes Cross Roads Farnanes,Farnanes Cross Roads,Na Fearnain,Na Fearnáin 51.86472 -8.80611 P PPL IE IE M 04 0 73 Europe/Dublin 2010-08-14 +2964357 Farnaght Farnaght 53.86667 -7.81667 P PPL IE C 14 0 69 Europe/Dublin 1993-12-27 +2964358 Farmoyle House Farmoyle House 54.06417 -6.98556 S EST IE U 22 0 154 Europe/Dublin 2010-08-14 +2964359 Farmley House Farmley House 52.56556 -6.58194 S EST IE L 30 0 61 Europe/Dublin 2010-08-14 +2964360 Farmhill House Farmhill House Farmhill,Farmhill House 54.21861 -9.34139 S EST IE IE C 20 0 76 Europe/Dublin 2010-08-14 +2964361 Farmhill Farmhill 52.96583 -6.99389 P PPL IE L 15 0 65 Europe/Dublin 2010-08-14 +2964362 Farahy Farahy 52.24083 -8.44222 P PPL IE M 04 0 79 Europe/Dublin 2010-08-14 +2964363 Fanore Fanore Fanore,Fanore Bridge 53.11806 -9.29028 P PPL IE IE M 03 0 34 Europe/Dublin 2010-08-14 +2964364 Fanningstown House Fanningstown House 52.38333 -7.33333 S EST IE L 13 0 69 Europe/Dublin 1993-12-27 +2964365 Fane River Fane River Fane River 53.95 -6.36667 H STM IE 00 0 -9999 Europe/Dublin 2010-08-10 +2964366 Fanad Head Fanad Head Cionn Fhanada,Cionn Fhanaide,Cionn Fhánada,Cionn Fhánaide,Fanad Head 55.27639 -7.63444 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964367 Fanad Fanad 55.2 -7.7 T PEN IE U 06 0 14 Europe/Dublin 2010-08-14 +2964368 Faltia House Faltia House 53.31528 -8.09694 S EST IE C 24 0 74 Europe/Dublin 2010-08-14 +2964369 Fallan River Fallan River 53.73333 -7.86667 H STM IE L 18 0 68 Europe/Dublin 1993-12-27 +2964370 Faithlegg House Faithlegg House 52.255 -7.01833 S EST IE M 27 0 8 Europe/Dublin 2010-08-14 +2964371 Fairymount Fairymount 53.68333 -8.11667 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2964372 Fair Head Fair Head 51.61972 -9.93944 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964373 Fairfield Fairfield Fairfield,Fairfield House 54.10528 -7.04556 S EST IE IE U 22 0 98 Europe/Dublin 2010-08-14 +2964374 Fairfield Fairfield 53.11667 -8.21667 P PPL IE C 10 0 81 Europe/Dublin 1993-12-27 +2964375 Fahy Lough Fahy Lough 54.03583 -9.895 H LK IE C 20 0 8 Europe/Dublin 2010-08-14 +2964376 Fahan Fahan Fahan,Fathain 55.08861 -7.47417 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964377 Glanfahan Glanfahan Fahan,Glanfahan 52.10306 -10.43306 P PPL IE IE M 11 0 149 Europe/Dublin 2010-08-14 +2964378 Fahamore Fahamore Fahamore 52.30444 -10.04583 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964379 Faha Faha 52.1 -9.63333 P PPL IE M 11 0 66 Europe/Dublin 1993-12-27 +2964380 Lough Fad Lough Fad 55.23083 -7.37611 H LK IE U 06 0 157 Europe/Dublin 2010-08-14 +2964381 Eyreville Eyreville 53.23861 -8.27722 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2964382 Eyrecourt Eyrecourt Dun an Uchta,Dún an Uchta,Eyrecourt 53.1975 -8.1325 P PPL IE C 10 0 68 Europe/Dublin 2010-08-14 +2964383 Eyeries Eyeries Eyeries,Na hAorai,Na hAoraí 51.68333 -9.95 P PPL IE M 04 0 80 Europe/Dublin 2010-08-14 +2964384 Essexford Essexford 53.9725 -6.63806 P PPL IE L 19 0 71 Europe/Dublin 2010-08-14 +2964385 Eslin River Eslin River 53.88333 -7.93333 H STM IE C 14 0 104 Europe/Dublin 1993-12-27 +2964386 Esker South Esker South Esker,Esker South 53.78333 -7.71667 P PPL IE L 18 0 78 Europe/Dublin 2010-08-10 +2964387 Esker Bridge Esker Bridge Esker,Esker Bridge 53.29444 -7.16361 P PPLL IE IE L 23 0 87 Europe/Dublin 2010-08-14 +2964388 Eskerboy Eskerboy 53.20833 -8.32222 P PPL IE C 10 0 82 Europe/Dublin 2010-08-14 +2964389 River Eske River Eske Eask River,Lower Eske,River Eske,Upper Eske 54.65 -8.11667 H STM IE U 06 0 19 Europe/Dublin 2010-08-10 +2964390 Eskaheen Mountain Eskaheen Mountain 55.10306 -7.305 T MT IE U 06 0 419 302 Europe/Dublin 2010-08-14 +2964391 Errit Lough Errit Lough 53.81667 -8.7 H LK IE C 24 0 52 Europe/Dublin 1993-12-27 +2964392 Errislannan Point Errislannan Point 53.48333 -10.1 T PT IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2964393 Erris Head Erris Head 54.30806 -9.99722 T CAPE IE C 20 0 9 Europe/Dublin 2010-08-14 +2964394 Errisbeg Errisbeg Errisbeg,Mount Errisbeg 53.39639 -9.95611 T HLL IE C 10 0 300 80 Europe/Dublin 2010-08-14 +2964395 Errill Errill Errill 52.85889 -7.68528 P PPL IE L 15 0 141 Europe/Dublin 2010-08-14 +2964396 Errigal Mountain Errigal Mountain An Earagail,Errigal Mountain 55.03333 -8.11667 T MT IE U 06 0 751 269 Europe/Dublin 2010-08-14 +2964397 Erriff River Erriff River 53.61667 -9.66667 H STM IE C 20 0 74 Europe/Dublin 1993-12-27 +2964398 Erra Erra 53.71667 -7.96667 P PPL IE C 24 0 65 Europe/Dublin 1993-12-27 +2964399 Erne Head Erne Head 53.81667 -7.58333 S EST IE L 18 0 76 Europe/Dublin 1993-12-27 +2964400 Ennistimon Ennistimon Ennistimon,Ennistymon,Inis Diomain,Inis Díomáin 52.94472 -9.29222 P PPL IE M 03 0 38 Europe/Dublin 2010-08-14 +2964401 Enniskerry Enniskerry Ath na Sceire,Enniskerry,Áth na Sceire 53.1925 -6.16917 P PPL IE L 31 1990 104 Europe/Dublin 2010-08-14 +2964402 Enniskean Enniskean Enniskean,Enniskeen,Inis Cein,Inis Céin 51.74167 -8.93806 P PPL IE M 04 0 81 Europe/Dublin 2010-08-14 +2964403 Inis Córthaidh Inis Corthaidh Enniscorthy 52.50083 -6.55778 P PPL IE L 30 9709 57 Europe/Dublin 2010-08-14 +2964404 Enniscoe House Enniscoe House 54.07028 -9.31083 S HSEC IE C 20 0 24 Europe/Dublin 2010-08-14 +2964405 Inis Inis Enis,Ennis,Inis,Енис 52.84361 -8.98639 P PPLA2 IE M 03 24427 912 18 Europe/Dublin 2010-08-14 +2964406 Lough Ennell Lough Ennell Belvedere Lake,Lough Ennell 53.46667 -7.4 H LK IE L 29 0 108 Europe/Dublin 2010-08-10 +2964407 Innfield Innfield An Bothar Bui,An Bóthar Buí,Enfield,Innfield 53.41833 -6.83528 P PPL IE IE L 21 0 86 Europe/Dublin 2010-08-14 +2964408 Emyvale Emyvale Emyvale,Scairbh na gCaorach 54.34056 -6.95917 P PPL IE U 22 0 43 Europe/Dublin 2010-08-14 +2964409 Emo Emo Emo 53.09611 -7.21 P PPL IE L 15 0 127 Europe/Dublin 2010-08-14 +2964410 Emmel Castle Emmel Castle 52.90889 -8.03 S EST IE L 23 0 116 Europe/Dublin 2010-08-14 +2964411 Emly Emly Emly,Imleach 52.46389 -8.34917 P PPL IE M 40 0 105 Europe/Dublin 2010-11-04 +2964412 Emlaghyroyin Emlaghyroyin 53.63333 -8.35 P PPL IE C 24 0 73 Europe/Dublin 1993-12-27 +2964413 Emlagh Point Emlagh Point 53.75278 -9.90917 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964414 Emlagh Emlagh 53.75 -9.88333 P PPL IE C 20 0 10 Europe/Dublin 1993-12-27 +2964415 Emalough Station Emalough Station Emalough,Emalough Station 52.16667 -10 S RSTN IE IE M 11 0 152 Europe/Dublin 2010-08-14 +2964416 Ely House Ely House 52.35 -6.45 S BLDG IE L 30 0 -9999 Europe/Dublin 1993-12-27 +2964417 Slieve Elva Slieve Elva 53.08583 -9.26611 T MT IE M 03 0 282 Europe/Dublin 2010-08-14 +2964418 Elton House Elton House Elton,Elton House 52.43333 -8.43333 S EST IE IE M 16 0 99 Europe/Dublin 2010-08-14 +2964419 Elton Elton 52.42833 -8.46111 P PPL IE M 16 0 122 Europe/Dublin 2010-08-14 +2964420 Elphin Elphin Ail Finn,Elphin 53.85 -8.2 P PPL IE C 24 0 76 Europe/Dublin 2010-08-14 +2964421 Elm Park House Elm Park House 52.62444 -8.73667 S EST IE M 16 0 14 Europe/Dublin 2010-08-14 +2964422 Elm Grove Elm Grove 53.53556 -6.98222 S EST IE L 21 0 86 Europe/Dublin 2010-08-14 +2964423 Elly Harbour Elly Harbour 54.16556 -10.05861 H HBR IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964424 Elly Bay Elly Bay 54.15639 -10.08111 H BAY IE C 20 0 1 Europe/Dublin 2010-08-14 +2964425 Ellendale Ellendale 52.55 -6.28333 P PPL IE L 30 0 19 Europe/Dublin 2010-08-14 +2964426 Ellagh Ellagh Ellagh,Ellaghmore 54.07333 -9.04278 P PPL IE IE C 20 0 55 Europe/Dublin 2010-08-14 +2964427 Elfeet Bay Elfeet Bay 53.58333 -7.98333 H BAY IE L 18 0 62 Europe/Dublin 1993-12-27 +2964428 Eighter Eighter 53.81778 -7.13472 P PPL IE U 02 0 140 Europe/Dublin 2010-08-14 +2964429 Eglinton Canal Eglinton Canal 53.28333 -9.06667 H CNL IE C 10 0 1 Europe/Dublin 1993-12-27 +2964430 Lough Egish Lough Egish Lough Egish 54.06667 -6.8 H LK IE 00 0 152 Europe/Dublin 2010-08-10 +2964431 Eeshal Island Eeshal Island Eashal Island,Eeshal Island 53.5075 -10.17 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964432 Edmondstown Edmondstown Edmondstown,Edmondstown House 53.91667 -8.53333 S EST IE IE C 24 0 75 Europe/Dublin 2010-08-14 +2964433 Edmondstown Edmondstown Edmondstown,Edmondstown House 53.57972 -7.2125 S EST IE L 29 0 146 Europe/Dublin 2010-08-14 +2964434 Edgeworthstown Edgeworthstown Edgeworthstown,Meathas Troim,Meathas Truim,Meathus Truim,Mostrim 53.7 -7.61667 P PPL IE L 18 0 75 Europe/Dublin 2010-08-14 +2964435 Edermine House Edermine House 52.4525 -6.56056 S EST IE L 30 0 57 Europe/Dublin 2010-08-14 +2964436 Edenderry Edenderry Eaden Doire,Edenderry,Éaden Doire 53.34528 -7.04972 P PPL IE L 23 4890 99 Europe/Dublin 2010-08-14 +2964437 Edenburn House Edenburn House 52.25 -9.56667 S EST IE M 11 0 53 Europe/Dublin 1993-12-27 +2964438 Edenacarnan Edenacarnan 55 -7.76667 P PPL IE U 06 0 76 Europe/Dublin 1993-12-27 +2964439 Eddy Island Eddy Island 53.19528 -8.98028 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964440 Ebor Hall Ebor Hall 53.51667 -9.38333 S EST IE C 10 0 21 Europe/Dublin 1993-12-27 +2964441 Eastwood House Eastwood House Eastwood,Eastwood House 52.81056 -7.81583 S EST IE IE M 26 0 129 Europe/Dublin 2010-11-04 +2964442 East Tawin East Tawin 53.21667 -9.01667 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +2964443 East Sister East Sister Been-dermot East Sister,East Sister 52.21667 -10.4 T HLL IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964444 Easky River Easky River 54.29444 -8.95667 H STM IE C 25 0 1 Europe/Dublin 2010-08-14 +2964445 Easky Lough Easky Lough 54.15667 -8.84944 H LK IE C 25 0 269 Europe/Dublin 2010-08-14 +2964446 Easky Easky Easky,Iascaigh 54.28861 -8.96167 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +2964447 Lough Eske Lough Eske Lough Eask,Lough Eske 54.7 -8.03333 H LK IE IE U 06 0 70 Europe/Dublin 2010-08-14 +2964448 Eany Water Eany Water Eany Water,River Eany 54.6475 -8.28389 H STM IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964449 Eany More Water Eany More Water Eany More Water,Eanymore 54.68167 -8.245 H STM IE IE U 06 0 37 Europe/Dublin 2010-08-14 +2964450 Eany Beg Water Eany Beg Water Eany Beg Water,Eanybeg 54.68222 -8.245 H STM IE IE U 06 0 37 Europe/Dublin 2010-08-14 +2964451 Eagle Island Eagle Island 54.28222 -10.09056 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964452 Mount Eagle Mount Eagle 53.97667 -9.52 T MT IE C 20 0 420 300 Europe/Dublin 2010-08-14 +2964453 Mount Eagle Mount Eagle 52.23333 -9.33333 T MT IE M 11 0 304 Europe/Dublin 1993-12-27 +2964454 Mount Eagle Mount Eagle 52.1175 -10.43361 T MT IE M 11 0 267 Europe/Dublin 2010-08-14 +2964455 Lough Ea Lough Ea 54.80583 -8.13194 H LK IE U 06 0 216 Europe/Dublin 2010-08-14 +2964456 Lough Ea Lough Ea 52.94694 -8.74417 H LK IE M 03 0 241 Europe/Dublin 2010-08-14 +2964457 Dysart Dysart 53.46667 -7.45 P PPL IE L 29 0 107 Europe/Dublin 1993-12-27 +2964458 Dysaghy Rocks Dysaghy Rocks 53.94889 -10.17417 T RKS IE C 20 0 -9999 Europe/Dublin 1999-03-08 +2964459 Duvillaun More Duvillaun More Duvillaun Island,Duvillaun More 54.07278 -10.17306 T ISL IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964460 Duvillaun Beg Duvillaun Beg 54.07694 -10.15167 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964461 Dursey Island Dursey Island 51.60278 -10.19917 T ISL IE M 04 0 71 Europe/Dublin 2010-08-14 +2964462 Dursey Head Dursey Head 51.58333 -10.25 T CAPE IE 00 0 -9999 Europe/Dublin 1993-12-27 +2964463 Durrus Road Station Durrus Road Station Durrus Road,Durrus Road Station 51.65 -9.4 S RSTN IE M 04 0 152 Europe/Dublin 2010-08-10 +2964464 Durrus Court Durrus Court Durrus Court,Durrus Glebe 51.61667 -9.53333 S EST IE IE M 04 0 52 Europe/Dublin 2010-08-14 +2964465 Durrus Durrus Duras,Durrus,Dúras 51.61667 -9.53333 P PPL IE IE M 04 0 52 Europe/Dublin 2010-08-14 +2964466 Durrow Cross Roads Durrow Cross Roads Durrow,Durrow Cross Roads 52.14444 -7.51778 P PPL IE IE M 27 0 71 Europe/Dublin 2010-08-14 +2964467 Durrow Abbey Durrow Abbey 53.32722 -7.525 S EST IE L 23 0 75 Europe/Dublin 2010-08-14 +2964468 Durrow Durrow Daru,Darú,Durrow 52.84417 -7.3925 P PPL IE L 15 0 83 Europe/Dublin 2011-03-06 +2964469 Duveel Point Duveel Point Dunveel Point,Duveel Point 54.27306 -9.92306 T PT IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964470 Duntally River Duntally River 55.1325 -7.86333 H STM IE U 06 0 10 Europe/Dublin 2010-08-14 +2964471 Dunsink Dunsink 53.38333 -6.33333 P PPL IE 00 0 12 Europe/Dublin 1993-12-27 +2964472 Dunshaughlin Dunshaughlin Dun Seachlainn,Dunshaughlin,Dún Seachlainn 53.5125 -6.54 P PPL IE L 21 3567 86 Europe/Dublin 2010-08-14 +2964473 Dunsany Castle Dunsany Castle Dunsany,Dunsany Castle 53.53444 -6.61972 S EST IE IE L 21 0 106 Europe/Dublin 2010-08-14 +2964474 Dunsandle Station Dunsandle Station Dunsandle,Dunsandle Station 53.26194 -8.60278 S RSTN IE IE C 10 0 64 Europe/Dublin 2010-08-14 +2964475 Dunsandle Dunsandle 53.26667 -8.6 S EST IE C 10 0 67 Europe/Dublin 1993-12-27 +2964476 Dunree Head Dunree Head 55.19778 -7.5525 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964477 Dunran Castle Dunran Castle Dunran,Dunran Castle 53.04861 -6.11 S EST IE IE L 31 0 138 Europe/Dublin 2010-08-14 +2964478 Dunragh Middle Lough Dunragh Middle Lough 54.6 -7.91667 H LK IE U 06 0 141 Europe/Dublin 1993-12-27 +2964479 Dunragh Loughs Dunragh Loughs 54.6075 -7.93083 H LKS IE U 06 0 147 Europe/Dublin 2010-08-14 +2964480 Dunragh Lough Dunragh Lough 54.6 -7.93333 H LK IE U 06 0 139 Europe/Dublin 1993-12-27 +2964481 Dunragh Beg Lough Dunragh Beg Lough 54.61667 -7.93333 H LK IE U 06 0 152 Europe/Dublin 1993-12-27 +2964482 Dunquin Dunquin Dun Chaoin,Dunquin,Dún Chaoin 52.13139 -10.45722 P PPL IE M 11 0 70 Europe/Dublin 2010-08-14 +2964483 Dunowen Head Dunowen Head 51.54 -8.92833 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964484 Dunowen Dunowen 51.55 -8.91667 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +2964485 Dunnycove Bay Dunnycove Bay 51.56194 -8.89472 H BAY IE M 04 0 30 Europe/Dublin 2010-08-14 +2964486 Dunneill River Dunneill River 54.265 -8.85972 H STM IE C 25 0 1 Europe/Dublin 2010-08-14 +2964487 Dunnamaggan Dunnamaggan 52.50472 -7.29722 P PPL IE L 13 0 68 Europe/Dublin 2010-08-14 +2964488 Dunmore Park Dunmore Park Dunmore,Dunmore Park 52.6975 -7.24944 S EST IE IE L 13 0 82 Europe/Dublin 2010-08-14 +2964489 Dunmore Head Dunmore Head 55.28333 -7.11667 T CAPE IE U 06 0 69 Europe/Dublin 1993-12-27 +2964490 Dunmore Head Dunmore Head 54.845 -8.50194 T CAPE IE U 06 0 65 Europe/Dublin 2010-08-14 +2964491 Dunmore Head Dunmore Head 52.10861 -10.48194 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964492 Dunmore East Dunmore East Dun Mor,Dunmore,Dunmore East,Dún Mór 52.15139 -6.98611 P PPL IE M 27 1795 -9999 Europe/Dublin 2010-08-14 +2964493 Dunmore Cottage Dunmore Cottage Dunmore Cottage,Dunmore House 52.69917 -7.26806 S EST IE IE L 13 0 68 Europe/Dublin 2010-08-14 +2964494 Dunmore Dunmore Dun Mor,Dunmore,Dún Mór 53.61667 -8.73333 P PPL IE IE C 10 0 71 Europe/Dublin 2010-08-14 +2964495 Dunmore Dunmore 52.865 -7.3825 S EST IE L 15 0 87 Europe/Dublin 2010-08-14 +2964496 Dunmanway Dunmanway Dun Manmhai,Dunmanway,Dún Mánmhaí 51.71667 -9.11667 P PPL IE M 04 1566 76 Europe/Dublin 2010-08-14 +2964497 Dunmanus Bay Dunmanus Bay 51.55194 -9.72028 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964498 Dunmanus Dunmanus 51.53778 -9.67833 P PPL IE M 04 0 66 Europe/Dublin 2010-08-14 +2964499 Dunlough Bay Dunlough Bay 51.47333 -9.82528 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964500 Dunloe Castle Dunloe Castle 52.06667 -9.63333 S EST IE M 11 0 41 Europe/Dublin 1993-12-27 +2964501 Gap of Dunloe Gap of Dunloe 52.01667 -9.63333 T PASS IE M 11 0 340 Europe/Dublin 1993-12-27 +2964502 Dunlewy Lough Dunlewy Lough 55.0225 -8.13028 H LK IE U 06 0 94 Europe/Dublin 2010-08-14 +2964503 Dunlewy Dunlewy Dun Luiche,Dun Lukhe,Dunlewy,Dún Lúiche,Дун Лухе 55.01667 -8.1 P PPL IE IE U 06 3400 235 Europe/Dublin 2010-08-14 +2964504 Dunleer Dunleer Dun Leire,Dunleer,Dún Léire 53.835 -6.39611 P PPL IE IE L 19 0 32 Europe/Dublin 2010-08-14 +2964505 Dunleckny Manor Dunleckny Manor Dunleckny,Dunleckny Manor 52.71167 -6.935 S EST IE IE L 01 0 65 Europe/Dublin 2010-08-14 +2964506 Dún Laoghaire Dun Laoghaire Dan Liri,Dun Laoghaire,Dunleary,Dún Laoghaire,Kingstown,Дан Лири 53.29395 -6.13586 P PPL IE IE 00 185400 1 Europe/Dublin 2010-08-14 +2964507 Dunlavin Dunlavin Dun Luain,Dunlavin,Dún Luáin 53.05556 -6.70389 P PPL IE L 31 0 152 Europe/Dublin 2010-08-14 +2964508 Dunkitt Dunkitt 52.28889 -7.14361 P PPL IE L 13 0 19 Europe/Dublin 2010-08-14 +2964509 Dunkineely Dunkineely Dun Cionnaola,Dunkineely,Dún Cionnaola 54.63083 -8.37056 P PPL IE IE U 06 0 1 Europe/Dublin 2010-08-14 +2964510 Dunkettle Station Dunkettle Station Dunkettle,Dunkettle Station 51.9 -8.38333 S RSTN IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964511 Dunkerron Island West Dunkerron Island West 51.86667 -9.63333 T ISL IE M 11 0 30 Europe/Dublin 1993-12-27 +2964512 Dunkerron Islands Dunkerron Islands 51.86667 -9.63333 T ISLS IE M 11 0 30 Europe/Dublin 1993-12-27 +2964513 Dunkerron Island East Dunkerron Island East 51.86667 -9.61667 T ISL IE M 11 0 46 Europe/Dublin 1993-12-27 +2964514 Dunkerron Harbour Dunkerron Harbour 51.86667 -9.63333 H INLT IE M 11 0 30 Europe/Dublin 1993-12-27 +2964515 Dunkerron Castle Dunkerron Castle 51.88333 -9.61667 S EST IE M 11 0 61 Europe/Dublin 1993-12-27 +2964516 Dunkerrin Dunkerrin 52.91222 -7.90889 P PPL IE L 23 0 135 Europe/Dublin 2010-08-14 +2964517 Dunkellin River Dunkellin River 53.21306 -8.87028 H STM IE C 10 0 6 Europe/Dublin 2010-08-14 +2964518 Duniry River Duniry River 53.12833 -8.41417 H STM IE C 10 0 70 Europe/Dublin 2010-08-14 +2964519 Duniry Duniry 53.13167 -8.40417 P PPLL IE C 10 2 70 Europe/Dublin 2010-08-14 +2964520 Dunhill Lodge Dunhill Lodge 52.15444 -7.2575 S BLDG IE M 27 0 30 Europe/Dublin 2010-08-14 +2964521 Dunhill Dunhill 52.16972 -7.25694 P PPL IE M 27 0 74 Europe/Dublin 2010-08-14 +2964522 Dunheeda Dunheeda 53.88806 -6.74833 P PPL IE L 21 0 96 Europe/Dublin 2010-08-14 +2964523 Dungourney Dungourney 51.96833 -8.09722 P PPL IE M 04 0 104 Europe/Dublin 2010-08-14 +2964524 Dunglow Dunglow An Clochan Liath,An Clochán Liath,Dungloe,Dunglow 54.95111 -8.35917 P PPL IE U 06 0 99 Europe/Dublin 2010-08-14 +2964525 Dungeagan Dungeagan 51.83333 -10.25 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964526 Dungarvan Harbour Dungarvan Harbour Dungarvan Bay,Dungarvan Harbour 52.06806 -7.57806 H HBR IE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2964527 Dungarvan Dungarvan 52.58972 -7.08722 P PPL IE L 13 0 61 Europe/Dublin 2010-08-14 +2964528 Dungarvan Dungarvan Dun Garbhan,Dún Garbhán 52.08806 -7.62528 P PPL IE M 27 7551 1 Europe/Dublin 2010-08-14 +2964529 Dunganstown Dunganstown 52.34278 -6.97444 P PPL IE L 30 0 43 Europe/Dublin 2010-08-14 +2964530 Dunfanaghy Dunfanaghy Dun Fionnachaidh,Dunfanaghy,Dún Fionnachaidh 55.18333 -7.96667 P PPL IE U 06 0 9 Europe/Dublin 2010-08-14 +2964531 Dundrum House Dundrum House Dundrum,Dundrum House 52.55167 -8.02333 S EST IE IE M 26 0 83 Europe/Dublin 2010-11-04 +2964532 Dundrum Dundrum 53.29067 -6.25714 P PPL IE L 07 0 75 Europe/Dublin 2010-08-14 +2964533 Dundrum Dundrum 52.56056 -8.04222 P PPL IE M 26 0 100 Europe/Dublin 2010-08-14 +2964534 Dundonnell Dundonnell 53.38333 -8.16667 P PPL IE C 24 0 77 Europe/Dublin 2010-08-14 +2964535 Dunderry Dunderry 53.60583 -6.77417 P PPL IE L 21 0 74 Europe/Dublin 2010-08-14 +2964536 Dunderrow Dunderrow 51.72833 -8.61889 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +2964537 Dundareirke Castle Dundareirke Castle Dundareek,Dundareirke Castle 51.88333 -9 S RUIN IE M 04 0 96 Europe/Dublin 2010-08-10 +2964538 Dundalk Harbour Dundalk Harbour 54.01056 -6.37389 H HBR IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2964539 Dundalk Bay Dundalk Bay 53.95 -6.25 H BAY IE 00 0 -9999 Europe/Dublin 1993-12-27 +2964540 Dún Dealgan Dun Dealgan D"ndok,Dun Dealgan,Dundalk,Dún Dealgan,Дъндок 54 -6.41667 P PPLA2 IE L 19 33428 3 Europe/Dublin 2011-02-15 +2964541 Duncormick Station Duncormick Station Duncormick,Duncormick Station 52.23333 -6.65 S RSTN IE IE L 30 0 11 Europe/Dublin 2010-08-14 +2964542 Duncormick Duncormick 52.22528 -6.64583 P PPL IE L 30 0 11 Europe/Dublin 2010-08-14 +2964543 Duncannon Fort Duncannon Fort Duncannon Fort,Fort Duncannon 52.21667 -6.93333 S FT IE IE L 30 0 1 Europe/Dublin 2010-08-14 +2964544 Duncannon Duncannon Dun Canann,Duncannon,Dún Canann 52.22028 -6.91694 P PPL IE IE L 30 0 3 Europe/Dublin 2010-08-14 +2964545 Dunbulcaun Bay Dunbulcaun Bay 53.21667 -8.90694 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964546 Dunbrody Castle Dunbrody Castle 52.26667 -6.95 S CSTL IE L 30 0 29 Europe/Dublin 2010-08-14 +2964547 Dunboyne Dunboyne 53.4 -6.46667 P PPL IE L 21 6718 76 Europe/Dublin 2010-08-14 +2964548 Dunboy Castle Dunboy Castle 51.63861 -9.93 S EST IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964549 Dunboden Park Dunboden Park 53.45 -7.35 S EST IE L 29 0 122 Europe/Dublin 1993-12-27 +2964550 Dunbeacon Dunbeacon 51.58333 -9.56667 P PPL IE M 04 0 90 Europe/Dublin 1993-12-27 +2964551 Dunany Point Dunany Point 53.86417 -6.24139 T PT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2964552 Dunany House Dunany House Dunany,Dunany House 53.86389 -6.25306 S EST IE IE L 19 0 1 Europe/Dublin 2010-08-14 +2964553 Dunamon Station Dunamon Station 53.63333 -8.33333 S RSTN IE C 24 0 71 Europe/Dublin 1993-12-27 +2964554 Dunamon Castle Dunamon Castle 53.63333 -8.31667 S EST IE C 24 0 71 Europe/Dublin 1993-12-27 +2964555 Dunaff Head Dunaff Head 55.28083 -7.52333 T CAPE IE U 06 0 77 Europe/Dublin 2010-08-14 +2964556 Dunaff Dunaff Dun Damh,Dunaff,Dún Damh 55.26667 -7.5 P PPL IE IE U 06 0 11 Europe/Dublin 2010-08-14 +2964557 Dunabrattin Head Dunabrattin Head Brattin Head,Dunabrattin Head 52.13333 -7.30722 T CAPE IE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2964558 Duleek Duleek Damhliag,Duleek 53.65667 -6.41917 P PPL IE L 21 2376 34 Europe/Dublin 2010-08-14 +2964559 Duffur Rocks Duffur Rocks 54.19694 -10.155 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964560 Duffry Hall Duffry Hall 52.56278 -6.71639 S EST IE L 30 0 131 Europe/Dublin 2010-08-14 +2964561 Duff River Duff River 54.46778 -8.38083 H STM IE 00 0 -9999 Europe/Dublin 1998-09-01 +2964562 Duff Hill Duff Hill 53.1125 -6.36861 T MT IE L 31 0 720 626 Europe/Dublin 2010-08-14 +2964563 Duffcarrick Rocks Duffcarrick Rocks 52.66583 -6.20667 T RKS IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2964564 Duck Island Duck Island 53.4 -10.2 T ISL IE 00 0 -9999 Europe/Dublin 1993-12-27 +2964565 Duck Island Duck Island 53.28472 -9.84472 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964566 Ducketts Grove Ducketts Grove Ducket's Grove,Ducketts Grove,Ducket’s Grove 52.85889 -6.81417 S EST IE IE L 01 0 125 Europe/Dublin 2010-08-14 +2964567 Ducalla Head Ducalla Head 51.78333 -10.35 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964568 Ducalla Ducalla 51.78333 -10.33333 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964569 Dublin Harbour Dublin Harbour 53.35 -6.21667 H HBR IE L 07 0 1 Europe/Dublin 2010-08-14 +2964570 Dublin Castle Dublin Castle Castello di Dublino,Castillo de Dublin,Castillo de Dublín,Chateau de Dublin,Château de Dublin,Dublin Castle,Schloss Dublin,tyrt dblyn,טירת דבלין 53.33333 -6.25 S BLDG IE L 07 0 9 Europe/Dublin 2010-08-14 +2964571 Dublin Bay Dublin Bay Cuan Bhaile Atha Cliath,Cuan Bhaile Átha Cliath 53.33444 -6.11056 H BAY IE IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2964572 Dublin Bar Dublin Bar 53.35 -6.13333 T BAR IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2964573 Baile Átha Cliath Baile Atha Cliath Baile Atha Cliath,Baile Átha Cliath,Contae Bhaile Atha Cliath,Contae Bhaile Átha Cliath,County Dublin,Dublin 53.38046 -6.27113 A ADMD IE L 07 1146503 7 Europe/Dublin 2010-08-14 +2964574 Dublin Dublin Baile Atha Cliath,Baile Átha Cliath,Ciuda de Dublin,Ciudá de Dublín,Dablin,Doublino,Dublin,Dublin - Baile Atha Cliath,Dublin city,Dublina,Dublinas,Dublini,Dublino,Dublinu,Dublín,Dublín - Baile Átha Cliath,Dublîn,Dulenn,Dulyn,Dulynn,Dyflinn,Eblana,dablin,dablina,daburin,dbln,dblyn,deobeullin,dou bai lin,dublini,dwblyn,taplin,Δουβλίνο,Даблин,Дублин,Дублін,Дъблин,דבלין,دبلن,دوبلین,دۇبلىن,ڈبلن,ܕܒܠܢ,डब्लिन,டப்லின்,ดับลิน,დუბლინი,ደብሊን,ダブリン,都柏林,더블린 53.34399 -6.26719 P PPLC IE L 07 1024027 4 Europe/Dublin 2010-11-17 +2964575 Duarrigle Castle Duarrigle Castle 52.1 -9.1 S BLDG IE M 04 0 121 Europe/Dublin 1993-12-27 +2964576 Duagh Duagh Duagh,Dubhath,Dubháth 52.41278 -9.38944 P PPL IE IE M 11 0 78 Europe/Dublin 2010-08-14 +2964577 River Duag River Duag 52.28028 -7.9825 H STM IE M 26 0 55 Europe/Dublin 2010-08-14 +2964578 Dry Mills Dry Mills 53.66667 -8.88333 P PPL IE C 20 0 79 Europe/Dublin 1993-12-27 +2964579 Drung Hill Drung Hill 52.02667 -10.03639 T MT IE M 11 0 421 Europe/Dublin 2010-08-14 +2964580 Drunganagh Drunganagh 53.85389 -9.1525 P PPL IE C 20 0 82 Europe/Dublin 2010-08-14 +2964581 Drumsna Station Drumsna Station Drumsna,Drumsna Station 53.9 -8.01667 S RSTN IE C 24 0 68 Europe/Dublin 2010-08-10 +2964582 Drumsna Drumsna Droim ar Snamh,Droim ar Snámh,Drumsna 53.93333 -8 P PPL IE C 14 0 81 Europe/Dublin 2010-08-14 +2964583 Drumsillagh House Drumsillagh House 53.98611 -7.61667 S EST IE C 14 0 76 Europe/Dublin 2010-08-14 +2964584 Drumshanbo Drumshanbo Droim Seanbho,Droim Seanbhó,Drumshambo,Drumshanbo 54.05 -8.03333 P PPL IE C 14 0 76 Europe/Dublin 2010-08-14 +2964585 Drumscor Drumscor 54.30556 -7.07972 P PPL IE U 22 0 126 Europe/Dublin 2010-08-14 +2964586 Drumroragh Lodge Drumroragh Lodge 53.85 -7.26667 S EST IE U 02 0 94 Europe/Dublin 1993-12-27 +2964587 Drumree Station Drumree Station Drumree,Drumree Station 53.5 -6.58333 S RSTN IE L 21 0 85 Europe/Dublin 2010-08-10 +2964588 Drumone Drumone Drumone 53.71861 -7.15222 P PPL IE L 21 0 153 Europe/Dublin 2010-08-14 +2964589 Dromod Dromod Dromad,Dromod,Drumod 53.86667 -7.91667 P PPL IE C 14 0 94 Europe/Dublin 2010-08-14 +2964590 Drumnee Upper Drumnee Upper Drumnee,Drumnee Upper 53.56667 -7.88333 P PPL IE L 18 0 62 Europe/Dublin 2010-08-10 +2964591 Drumnee Lower Drumnee Lower 53.56667 -7.88333 P PPL IE L 18 0 62 Europe/Dublin 1993-12-27 +2964592 Drumnafinnila Drumnafinnila 54.15 -8 P PPL IE C 14 0 137 Europe/Dublin 1993-12-27 +2964593 Drummin House Drummin House Drummin House,Drummond House 53.32333 -6.93028 S HSEC IE IE L 12 0 74 Europe/Dublin 2010-08-14 +2964594 Drummenny River Drummenny River 54.64361 -8.11556 H STM IE U 06 0 24 Europe/Dublin 2010-08-14 +2964595 Drumman Drumman 53.53806 -7.22028 P PPL IE L 29 0 137 Europe/Dublin 2010-08-14 +2964596 Drumlish Drumlish Droim Lis,Drumlish 53.81667 -7.76667 P PPL IE IE L 18 0 76 Europe/Dublin 2010-08-14 +2964597 Drumlave Drumlave 51.68333 -9.7 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964598 Drumkeeran Drumkeeran Droim Caorthainn,Drumkeeran,Drumkeerin,Drumkeern 54.16667 -8.15 P PPL IE C 14 0 77 Europe/Dublin 2010-08-14 +2964599 Druming Druming 53.65 -7.7 P PPL IE L 18 0 118 Europe/Dublin 1993-12-27 +2964600 Drum Hills Drum Hills 52.05306 -7.70444 T HLL IE M 27 0 165 Europe/Dublin 2010-08-14 +2964601 Drumhillagh Drumhillagh 53.98333 -6.96667 P PPL IE U 02 0 152 Europe/Dublin 1993-12-27 +2964602 Drumhawnagh Station Drumhawnagh Station Drumhawnagh Station,Drumhowna,Drumhowna Station 53.86667 -7.45 S RSTN IE U 02 0 96 Europe/Dublin 2010-08-10 +2964603 Lough Drumharlow Lough Drumharlow 53.96444 -8.14167 H LK IE C 24 0 72 Europe/Dublin 1998-09-01 +2964604 Drumhallagh Lower Drumhallagh Lower 55.13333 -7.56667 P PPL IE U 06 0 76 Europe/Dublin 1993-12-27 +2964605 Drumgriffin Drumgriffin 53.38583 -8.99333 P PPL IE C 10 0 36 Europe/Dublin 2010-08-14 +2964606 Drumfree Drumfree Droim Fraoigh,Drumfree 55.19639 -7.39694 P PPL IE IE U 06 0 130 Europe/Dublin 2010-08-14 +2964607 Drumfin Drumfin 54.12917 -8.44194 P PPL IE C 25 0 93 Europe/Dublin 2010-08-14 +2964608 Drumellihy Drumellihy 52.71806 -9.45194 P PPL IE M 03 0 103 Europe/Dublin 2010-08-14 +2964609 Drumdoe Drumdoe 54.03194 -8.29556 S EST IE C 24 0 76 Europe/Dublin 2010-08-14 +2964610 Drumderg Drumderg 53.81667 -7.65 P PPL IE L 18 0 155 Europe/Dublin 1993-12-27 +2964611 Drumcullaun Lough Drumcullaun Lough 52.885 -9.20361 H LK IE M 03 0 62 Europe/Dublin 2010-08-14 +2964612 Drumcree House Drumcree House Drumcree,Drumcree House 53.63889 -7.17417 S EST IE IE L 29 0 129 Europe/Dublin 2010-08-14 +2964613 Drumcree Drumcree Drumcre,Drumcree 53.63333 -7.1625 P PPL IE IE L 29 0 128 Europe/Dublin 2010-08-14 +2964614 Drumcondra Drumcondra Drumcondra,Drumconrath 53.8525 -6.65306 P PPL IE L 21 0 61 Europe/Dublin 2010-08-14 +2964615 Drumcollop Drumcollop 54 -7.88333 P PPL IE C 14 0 61 Europe/Dublin 2010-08-14 +2964616 Drumcoggy Drumcoggy 53.66667 -9.33333 P PPL IE C 20 0 59 Europe/Dublin 1993-12-27 +2964617 Drumcliff Bay Drumcliff Bay 54.3325 -8.57583 H BAY IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2964618 Drumcliff Drumcliff Droim Chliabh,Drumcliff,Drumcliffe,Drumeliff 54.33333 -8.5 P PPL IE IE C 25 0 8 Europe/Dublin 2010-08-14 +2964619 Drumcarban Drumcarban 53.93333 -7.43333 P PPL IE U 02 0 76 Europe/Dublin 1993-12-27 +2964620 Drumcar Drumcar 53.86028 -6.37778 P PPL IE L 19 0 11 Europe/Dublin 2010-08-14 +2964621 Drumcar Drumcar 53.86667 -6.38333 S EST IE 00 0 4 Europe/Dublin 1993-12-27 +2964622 Drumbologe Drumbologe Drumbologe,Drumbologue 54.96583 -7.87111 P PPL IE IE U 06 0 81 Europe/Dublin 2010-08-14 +2964623 Drumboe Castle Drumboe Castle Drumboe,Drumboe Castle 54.8 -7.8 S EST IE U 06 0 58 Europe/Dublin 2010-08-10 +2964624 Drumboe Drumboe 54.8125 -7.77306 P PPL IE U 06 0 94 Europe/Dublin 2010-08-14 +2964625 Drumbilla Drumbilla 54.06667 -6.48333 P PPL IE L 19 0 78 Europe/Dublin 2010-08-14 +2964626 Drumbane Drumbane 52.65389 -7.96972 P PPL IE M 26 0 124 Europe/Dublin 2010-08-14 +2964627 Drumate Lodge Drumate Lodge Drumate,Drumate Lodge 54.15417 -7.08944 S BLDG IE IE U 22 0 127 Europe/Dublin 2010-08-14 +2964628 Drumard House Drumard House 53.88333 -7.88333 S RUIN IE C 14 0 78 Europe/Dublin 1993-12-27 +2964629 Drumanoo Head Drumanoo Head 54.60472 -8.4825 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964630 Drumandoora Drumandoora 52.99611 -8.73306 P PPL IE M 03 0 137 Europe/Dublin 2010-08-14 +2964631 Drumalure Drumalure Drumaloor,Drumalure 54.07056 -7.40611 P PPL IE IE U 02 0 122 Europe/Dublin 2010-08-14 +2964632 Dromahair Dromahair Dromahair,Drumahaire,Drumahayre 54.23333 -8.3 P PPL IE IE C 14 0 51 Europe/Dublin 2010-08-14 +2964633 Drumady Lough Drumady Lough 53.75 -9.06667 H LK IE C 20 0 97 Europe/Dublin 1993-12-27 +2964634 Drum Drum 54.10278 -7.14111 P PPL IE U 22 0 77 Europe/Dublin 2010-08-14 +2964635 Drowes River Drowes River 54.46667 -8.31667 H STM IE C 14 0 1 Europe/Dublin 1993-12-27 +2964636 Dromoland Castle Dromoland Castle 52.77861 -8.89639 S EST IE M 03 0 7 Europe/Dublin 2010-08-14 +2964637 Dromoghty Lough Dromoghty Lough Dromochty Lough,Dromoghty Lough 51.83333 -9.61667 H LK IE M 11 0 111 Europe/Dublin 2010-08-10 +2964638 Drommartin Drommartin 52.42806 -9.69972 P PPL IE M 11 0 79 Europe/Dublin 2010-08-14 +2964639 Dromleigh Dromleigh 51.83333 -9.03333 P PPL IE M 04 0 152 Europe/Dublin 1993-12-27 +2964640 Dromkeen Station Dromkeen Station Dromkeen,Dromkeen Station 52.58333 -8.38333 S RSTN IE IE M 16 0 75 Europe/Dublin 2010-08-14 +2964641 Dromkeen House Dromkeen House 52.57778 -8.40083 S BLDG IE M 16 0 76 Europe/Dublin 2010-08-14 +2964642 Dromiskin Dromiskin Dromiskin 53.9275 -6.41139 P PPL IE L 19 0 3 Europe/Dublin 2010-08-14 +2964643 Dromin Junction Station Dromin Junction Station Dromin,Dromin Junction,Dromin Junction Station 53.85 -6.41667 S RSTN IE IE 00 0 23 Europe/Dublin 2010-08-10 +2964644 Dromineer Castle Dromineer Castle 52.91667 -8.26667 S RUIN IE 00 0 54 Europe/Dublin 1993-12-27 +2964645 Dromineer Dromineer Dromineer 52.92306 -8.27667 P PPL IE M 26 0 49 Europe/Dublin 2010-11-04 +2964646 Drominagh House Drominagh House 53.035 -8.24972 S EST IE M 26 0 53 Europe/Dublin 2010-08-14 +2964647 Dromina Dromina Drom Aidhne,Dromina 52.3 -8.8 P PPL IE IE M 04 0 152 Europe/Dublin 2010-08-14 +2964648 Dromin Dromin Dromin,Drumin 53.84778 -6.43472 P PPL IE IE L 19 0 32 Europe/Dublin 2010-08-14 +2964649 Dromin Dromin 52.44167 -8.58361 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +2964650 Dromcolliher Dromcolliher Drom Collachair,Dromcolliher,Drumcolliher,Drumcollogher 52.33333 -8.91667 P PPL IE IE M 16 0 152 Europe/Dublin 2010-08-14 +2964651 Drombrow House Drombrow House 51.70944 -9.41306 S EST IE M 04 0 51 Europe/Dublin 2010-08-14 +2964652 Dromard House Dromard House Dromard,Dromard House 52.84556 -7.73556 S EST IE IE M 26 0 149 Europe/Dublin 2010-11-04 +2964653 Dromard Dromard 54.24 -8.67611 P PPL IE C 25 0 17 Europe/Dublin 2010-08-14 +2964654 Dromaneen House Dromaneen House Dromaneen,Dromaneen House 52.13333 -8.71667 S EST IE M 04 0 68 Europe/Dublin 2010-08-10 +2964655 Dromana House Dromana House Dromana,Dromana House 52.10722 -7.86472 S EST IE IE M 27 0 66 Europe/Dublin 2010-08-14 +2964656 Dromana Forest Dromana Forest 52.09833 -7.85389 V FRST IE M 27 0 76 Europe/Dublin 2010-08-14 +2964657 Dromagh Castle Dromagh Castle Dromagh,Dromagh Castle 52.13333 -8.96667 S EST IE M 04 0 121 Europe/Dublin 2010-08-10 +2964658 Dromagh Dromagh 52.11667 -8.98333 P PPL IE M 04 0 118 Europe/Dublin 1993-12-27 +2964659 Drom Drom 52.76889 -7.89306 P PPL IE M 26 0 90 Europe/Dublin 2010-08-14 +2964660 Drom Drom 52.03333 -9.98333 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +2964661 Drogheda Drogheda Drogheda,Drogheda - Droichead Atha,Drogheda - Droichead Átha,Droichead Atha,Droichead Átha,Droida,Дроида 53.71889 -6.34778 P PPL IE L 19 33441 1 Europe/Dublin 2010-08-14 +2964662 Drish River Drish River 52.66639 -7.80306 H STM IE M 26 0 100 Europe/Dublin 2010-08-14 +2964663 Drishane Castle Drishane Castle Drishane,Drishane Castle 52.06667 -9.05 S EST IE M 04 0 136 Europe/Dublin 2010-08-10 +2964664 Drishanebeg Drishanebeg Drishane,Drishanebeg 51.51972 -9.27194 P PPL IE IE M 04 0 141 Europe/Dublin 2010-08-14 +2964665 Drishaghaun Drishaghaun 53.55 -9.51667 P PPL IE C 10 0 145 Europe/Dublin 1993-12-27 +2964666 Dripsey Dripsey 51.91667 -8.75 P PPL IE M 04 0 88 Europe/Dublin 2010-08-14 +2964667 Drinagh Drinagh 53.73333 -7.98333 P PPL IE C 24 0 66 Europe/Dublin 1993-12-27 +2964668 Drinagh Drinagh 51.66 -9.15417 P PPL IE M 04 0 147 Europe/Dublin 2010-08-14 +2964669 Lough Drin Lough Drin Drin,Lough Drin 53.55 -7.3 H LK IE L 29 0 125 Europe/Dublin 2010-08-10 +2964670 Drin Drin 53.55 -9.5 P PPL IE C 10 0 142 Europe/Dublin 1993-12-27 +2964671 Drimoleague Drimoleague Drimoleague,Drom dha Liag,Drom dhá Liag 51.65 -9.26667 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +2964672 Drimmeen Drimmeen 53.48333 -10.08333 P PPL IE C 10 0 1 Europe/Dublin 1993-12-27 +2964673 Drewstown House Drewstown House 53.66306 -6.95306 S EST IE L 21 0 94 Europe/Dublin 2010-08-14 +2964674 Dreenagh Dreenagh 52.41694 -9.91694 P PPL IE M 11 0 134 Europe/Dublin 2010-08-14 +2964675 Drangan Drangan Drangan,Drongan,Drongán 52.51611 -7.58806 P PPL IE IE M 26 0 122 Europe/Dublin 2010-11-04 +2964676 Dowth Hall Dowth Hall Dowth,Dowth Hall,Dowth House 53.70667 -6.43972 S EST IE IE L 21 0 38 Europe/Dublin 2010-08-14 +2964677 Dowra Dowra Dowra 54.19111 -8.015 P PPL IE U 02 0 68 Europe/Dublin 2010-08-14 +2964678 The Downs The Downs 53.50472 -7.23972 P PPL IE L 29 0 130 Europe/Dublin 2010-08-14 +2964679 Downpatrick Head Downpatrick Head 54.32361 -9.34389 T CAPE IE C 20 0 2 Europe/Dublin 2010-08-14 +2964680 Downings Bay Downings Bay Downies Bay,Downings Bay 55.18333 -7.83333 H BAY IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964681 Castle Downeen Castle Downeen 51.57167 -9.02917 S BLDG IE M 04 0 3 Europe/Dublin 2010-08-14 +2964682 Dowdstown House Dowdstown House Douthstown,Dowdstown,Dowdstown House 53.6 -6.63333 S EST IE L 21 0 76 Europe/Dublin 2010-08-10 +2964683 Dovea Dovea 52.71889 -7.85639 P PPL IE M 26 0 103 Europe/Dublin 2010-08-14 +2964684 Dovea Dovea 52.72583 -7.87167 S EST IE M 26 0 102 Europe/Dublin 2010-08-14 +2964685 Doulus Head Doulus Head 51.95417 -10.31972 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964686 Douglas River Douglas River 52.86694 -6.61694 H STM IE L 01 0 126 Europe/Dublin 2010-08-14 +2964687 River Douglas River Douglas 52.88333 -6.95 H STM IE L 15 0 47 Europe/Dublin 2010-08-14 +2964688 River Douglas River Douglas 52.0775 -8.17167 H STM IE M 04 0 61 Europe/Dublin 2010-08-14 +2964689 River Douglas River Douglas 51.93333 -9.13333 H STM IE M 04 0 145 Europe/Dublin 1993-12-27 +2964690 Douglas Douglas 51.87444 -8.435 P PPL IE M 04 0 46 Europe/Dublin 2010-08-14 +2964691 Doughruagh Doughruagh Doaghrue,Doughruagh 53.56667 -9.88333 T MT IE C 10 0 294 Europe/Dublin 2010-08-10 +2964692 Dough Castle Dough Castle 52.93333 -9.35 S RUIN IE M 03 0 31 Europe/Dublin 2010-08-14 +2964693 Djouce Mountain Djouce Mountain Dioghais,Djouce Mountain,Douce Mountain 53.12861 -6.24083 T MT IE IE L 31 0 723 447 Europe/Dublin 2010-08-14 +2964694 Dorrington House Dorrington House 53.46667 -7.78333 S EST IE L 29 0 76 Europe/Dublin 1993-12-27 +2964695 Doory Hall Doory Hall 53.6 -7.73333 S EST IE L 18 0 76 Europe/Dublin 1993-12-27 +2964696 Doorus Strait Doorus Strait 53.18333 -9 H STRT IE 00 0 -9999 Europe/Dublin 1993-12-27 +2964697 Doorus Point Doorus Point 53.16667 -8.96667 T PT IE C 10 0 1 Europe/Dublin 2010-08-14 +2964698 Dooros Point Dooros Point Dooros Bluff,Dooros Point 55.17472 -8.03972 T PT IE IE U 06 0 35 Europe/Dublin 2010-08-14 +2964699 Dooroge Dooroge 53.5 -6.25 P PPL IE 00 0 16 Europe/Dublin 1993-12-27 +2964700 Doornane Doornane 52.27972 -7.25278 P PPL IE L 13 0 25 Europe/Dublin 2010-08-14 +2964701 Doorin Point Doorin Point Dooran Point,Doorin Point 54.60111 -8.29833 T PT IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964702 Doonvinalla Doonvinalla 54.34389 -9.78667 T PEN IE C 20 0 35 Europe/Dublin 2010-08-14 +2964703 Doon Lough Doon Lough 52.81667 -8.66833 H LK IE M 03 0 61 Europe/Dublin 2010-08-14 +2964704 Dooniskey Station Dooniskey Station Dooniskey,Dooniskey Station 51.86667 -8.88333 S RSTN IE IE M 04 0 111 Europe/Dublin 2010-08-14 +2964705 Doonguddle Doonguddle 53.25361 -9.98972 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964706 Doonecoy Doonecoy 54.24889 -8.82417 S EST IE C 25 0 40 Europe/Dublin 2010-08-14 +2964707 Doonbristy Doonbristy 54.32583 -9.34861 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964708 Doonbeg Station Doonbeg Station Doonbeg,Doonbeg Station 52.71667 -9.5 S RSTN IE M 03 0 9 Europe/Dublin 2010-08-10 +2964709 Doonbeg River Doonbeg River Cooraclare River,Doonbeg River 52.73361 -9.52556 H STM IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2964710 Doonbeg Doonbeg 52.73194 -9.52278 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2964711 Doonass House Doonass House Doonass,Doonass House 52.70722 -8.51611 S EST IE IE M 16 0 49 Europe/Dublin 2010-08-14 +2964712 Doonane Doonane 52.85583 -7.13167 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +2964713 Doonane Doonane 52.73333 -8.33333 P PPL IE M 16 0 242 Europe/Dublin 2010-08-14 +2964714 Doonamo Point Doonamo Point 54.26889 -10.08083 T PT IE C 20 0 11 Europe/Dublin 2010-08-14 +2964715 Doonaha Doonaha 52.6225 -9.64444 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2964716 The Doon The Doon Doon House,The Doon 53.33222 -7.8325 S EST IE IE L 29 0 138 Europe/Dublin 2010-08-14 +2964717 Doon Doon Doon,Dun,Dún 52.60361 -8.24444 P PPL IE M 16 0 112 Europe/Dublin 2010-08-14 +2964718 Doon Doon 52.52361 -9.66944 P PPL IE M 11 0 62 Europe/Dublin 2010-08-14 +2964719 Doolystown House Doolystown House Dollistown House,Dollystown House,Doolystown House 53.5125 -6.86528 S EST IE IE L 21 0 74 Europe/Dublin 2010-08-14 +2964720 Doolough Lodge Doolough Lodge Doolough,Doolough Lodge 54.14361 -9.92944 S HSE IE IE C 20 0 2 Europe/Dublin 2010-08-14 +2964721 Doo Lough Doo Lough 53.65 -9.76667 H LK IE C 20 0 286 Europe/Dublin 1993-12-27 +2964722 Doo Lough Doo Lough 52.79194 -9.30194 H LK IE M 03 0 112 Europe/Dublin 2010-08-14 +2964723 Doolin Point Doolin Point 53.01667 -9.4 T PT IE M 03 0 11 Europe/Dublin 2010-08-14 +2964724 Doolin Doolin Doolin 53.0225 -9.39333 P PPL IE M 03 0 11 Europe/Dublin 2010-08-14 +2964725 Doolic Rock Doolic Rock Dhulic,Doolic Rock,Doolie Rock 51.51667 -8.96667 T RK IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964726 Dooleeg More Dooleeg More Dooleeg,Dooleeg More 54.105 -9.49944 P PPL IE IE C 20 0 76 Europe/Dublin 2010-08-14 +2964727 Dooish Dooish 55.03667 -8.02806 T MT IE U 06 0 654 431 Europe/Dublin 2010-08-14 +2964728 Doohooma Doohooma 54.07194 -9.94056 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +2964729 Doohamlat Doohamlat Doohamlat,Doohamlet 54.12639 -6.82194 P PPL IE IE U 22 0 144 Europe/Dublin 2010-08-14 +2964730 Doogort Doogort Doogart,Doogort 54.01194 -10.00361 P PPL IE IE C 20 0 85 Europe/Dublin 2010-08-14 +2964731 Dooglasha River Dooglasha River 52.59194 -8.39083 H STM IE M 16 0 58 Europe/Dublin 2010-08-14 +2964732 Dooey Dooey 54.86667 -8.36667 P PPL IE U 06 0 1 Europe/Dublin 1993-12-27 +2964733 Dooega Head Dooega Head 53.9225 -10.05556 T CAPE IE C 20 0 66 Europe/Dublin 2010-08-14 +2964734 Dooega Dooega 53.91667 -10.03333 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964735 Doocharry Doocharry An Duchoraidh,An Dúchoraidh,Doocharry,Doochary 54.90639 -8.20944 P PPL IE U 06 0 45 Europe/Dublin 2010-08-14 +2964736 Doocastle Doocastle 54.02472 -8.65056 P PPL IE C 20 0 90 Europe/Dublin 2010-08-14 +2964737 Doobeg Point Doobeg Point 54.10778 -10.06722 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964738 Dooagh Dooagh 53.97278 -10.13083 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964739 Donoughmore Donoughmore 51.98333 -8.75 P PPL IE M 04 0 170 Europe/Dublin 2010-08-14 +2964740 Donore Donore Donore,Donore House 53.63333 -7.38333 S EST IE IE L 29 0 80 Europe/Dublin 2010-08-14 +2964741 Donore House Donore House 53.25 -6.75 S EST IE L 12 0 99 Europe/Dublin 2010-08-14 +2964742 Donore House Donore House Donore,Donore House 52.94167 -7.45028 S EST IE IE L 15 0 96 Europe/Dublin 2010-08-14 +2964743 Donore Donore 53.69306 -6.41972 P PPL IE L 21 0 70 Europe/Dublin 2010-08-14 +2964744 Donohill Donohill 52.54083 -8.14667 P PPL IE M 26 0 93 Europe/Dublin 2010-08-14 +2964745 Donnybrook Donnybrook 53.31375 -6.22274 P PPL IE L 07 2000 14 Europe/Dublin 2010-08-30 +2964746 Donnybrook Donnybrook 52.25 -8.53333 S EST IE M 04 0 83 Europe/Dublin 2010-08-14 +2964747 Doneraile Doneraile Donaraile,Doneraile,Dun ar Aill,Dún ar Aill 52.21667 -8.58333 P PPL IE M 04 0 82 Europe/Dublin 2010-08-14 +2964748 Donegal Point Donegal Point 52.72722 -9.63306 T PT IE M 03 0 1 Europe/Dublin 2010-08-14 +2964749 Donegal House Donegal House 52.41667 -7.81667 S HSEC IE M 26 0 156 Europe/Dublin 2010-08-14 +2964750 Donegal Bay Donegal Bay Donegal Bay 54.53333 -8.5 H BAY IE 00 0 -9999 Europe/Dublin 2010-08-10 +2964751 County Donegal County Donegal Contae Dhun na nGall,Contae Dhún na nGall,County Donegal,Donegal,Dun na nGall,Dún na nGall,Tirconaill 54.91667 -8 A ADM2 IE U 06 139838 296 Europe/Dublin 2010-12-01 +2964752 Donegal Donegal Donegal,Dun na nGall,Dún na nGall 54.65 -8.11667 P PPL IE U 06 2513 19 Europe/Dublin 2010-08-14 +2964753 Doneen Point Doneen Point Doneen Point,Dooneen Point 51.56667 -9.71667 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-10 +2964754 Donaskeagh Donaskeagh 52.52194 -8.08139 P PPL IE M 26 0 95 Europe/Dublin 2010-08-14 +2964755 Donard Donard Donard,Dun Ard,Dún Ard 53.01917 -6.61472 P PPL IE L 31 0 272 Europe/Dublin 2010-08-14 +2964756 Donagh River Donagh River 55.27806 -7.26667 H STM IE U 06 0 1 Europe/Dublin 2010-08-14 +2964757 Donaghmoyne Donaghmoyne 54 -6.7 P PPL IE 00 0 74 Europe/Dublin 1993-12-27 +2964758 Donaghmore House Donaghmore House 54.80361 -7.60944 S EST IE U 06 0 36 Europe/Dublin 2010-08-14 +2964759 Donaghmore Bridge Donaghmore Bridge Donaghmore,Donaghmore Bridge 53.65 -6.66667 P PPL IE L 21 0 46 Europe/Dublin 2010-08-10 +2964760 Donaghmore Donaghmore 53.49611 -6.36972 P PPL IE L 21 0 61 Europe/Dublin 2010-08-14 +2964761 Donaghmore Donaghmore 52.87361 -7.59694 P PPL IE L 15 0 130 Europe/Dublin 2010-08-14 +2964762 Donagh Donagh Donagh,Donaghintraine Point 54.26778 -8.85583 T PT IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2964763 Donadea Donadea 53.35028 -6.74583 P PPL IE L 12 0 90 Europe/Dublin 2010-08-14 +2964764 Donacarney Donacarney Donacarney 53.71333 -6.27917 P PPL IE L 21 0 1 Europe/Dublin 2010-08-14 +2964765 Donabate Donabate Domhnach Bat,Donabate 53.48722 -6.15194 P PPL IE L 07 3936 1 Europe/Dublin 2010-11-04 +2964766 Dollys Grove Dollys Grove 53.42167 -6.55028 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +2964767 Dollymount Dollymount 53.36489 -6.18032 P PPL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +2964768 Dogs Bay Dogs Bay Dog Bay,Dogs Bay 53.38111 -9.96972 H BAY IE IE C 10 0 7 Europe/Dublin 2010-08-14 +2964769 Doe Castle Doe Castle 55.1325 -7.88083 S RUIN IE U 06 0 15 Europe/Dublin 2010-08-14 +2964770 River Dodder River Dodder 53.345 -6.22944 H STM IE L 07 0 1 Europe/Dublin 2010-08-14 +2964771 Doagh Isle Doagh Isle 55.3 -7.35 T PEN IE U 06 0 97 Europe/Dublin 2010-08-14 +2964772 Doagh Beg Doagh Beg 55.25083 -7.62444 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964773 Doagh Doagh 55.22583 -7.85139 P PPL IE U 06 0 11 Europe/Dublin 2010-08-14 +2964774 D’Loughtane House D'Loughtane House 52.00167 -7.85639 S EST IE M 27 0 25 Europe/Dublin 2010-08-14 +2964775 Dirty River Dirty River 51.73 -9.10472 H STM IE M 04 0 76 Europe/Dublin 2010-08-14 +2964776 Dirk Bay Dirk Bay 51.53972 -8.94111 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964777 Dinin River Dinin River 52.77917 -7.21556 H STM IE L 13 0 120 Europe/Dublin 2010-08-14 +2964778 Dinin River Dinin River 52.70806 -7.30417 H STM IE L 13 0 66 Europe/Dublin 2010-08-14 +2964779 Dingle Peninsula Dingle Peninsula Corcaguiney Peninsula,Dingle Peninsula 52.18333 -10.16667 T PEN IE IE M 11 0 482 Europe/Dublin 2010-08-14 +2964780 Dingle Harbour Dingle Harbour 52.1325 -10.28611 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964781 Dingle Bay Dingle Bay Dingle Bay 52.07056 -10.17583 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964782 Dingle Dingle An Daingean,Dingle 52.14083 -10.26889 P PPL IE M 11 1971 18 Europe/Dublin 2010-08-14 +2964783 Diamond Hill Diamond Hill Bengooria,Diamond Hill,Diamond Mountain 53.55 -9.91667 T MT IE C 10 0 445 269 Europe/Dublin 2010-08-14 +2964784 Diamond Diamond 53.93333 -6.83333 P PPL IE 00 0 141 Europe/Dublin 1993-12-27 +2964785 Devonroad Station Devonroad Station Devon Road,Devonroad Station 52.4 -9.23333 S RSTN IE M 16 0 145 Europe/Dublin 2010-08-10 +2964786 Devlin River Devlin River Devlin River,Devlins River 53.72972 -6.48583 H STM IE IE L 21 0 62 Europe/Dublin 2010-08-14 +2964787 Devils Punch Bowl Devils Punch Bowl 51.98333 -9.48333 H LK IE M 11 0 492 Europe/Dublin 1993-12-27 +2964788 Devilsmother Devilsmother 53.60284 -9.63762 T MT IE 00 0 647 343 Europe/Dublin 1993-12-27 +2964789 The Devils Glen The Devils Glen 53.02472 -6.14722 T GRGE IE L 31 0 134 Europe/Dublin 2010-08-14 +2964790 Devilsbit Mountain Devilsbit Mountain 52.82083 -7.9125 T MT IE M 26 0 374 Europe/Dublin 2010-08-14 +2964791 Desert Station Desert Station Desert,Desert Station 51.73333 -8.9 S RSTN IE IE M 04 0 74 Europe/Dublin 2010-08-14 +2964792 Desart Court Desart Court 52.58722 -7.34444 S EST IE L 13 0 89 Europe/Dublin 2010-08-14 +2964793 Derry Water Derry Water 52.8475 -6.34194 H STM IE L 31 0 76 Europe/Dublin 2010-08-14 +2964794 Derryveagh Mountains Derryveagh Mountains Derryveagh Mountains 55.01667 -8.05 T MTS IE U 06 0 484 Europe/Dublin 2010-08-14 +2964795 Derryrush Derryrush 53.39028 -9.66639 P PPL IE C 10 0 3 Europe/Dublin 2010-08-14 +2964796 Derry River Derry River Derry River,Shillelagh River 52.68194 -6.66694 H STM IE IE L 30 0 75 Europe/Dublin 2010-08-14 +2964797 Derryquin Castle Derryquin Castle 51.82417 -9.86083 S EST IE M 11 0 57 Europe/Dublin 2010-08-14 +2964798 Derrynasaggart Mountains Derrynasaggart Mountains 51.98333 -9.23333 T MTS IE M 11 0 299 Europe/Dublin 1993-12-27 +2964799 Derrynacaheragh Derrynacaheragh 51.7625 -9.19 P PPL IE M 04 0 141 Europe/Dublin 2010-08-14 +2964800 Derrymullan Derrymullan 53.34222 -8.26639 P PPL IE C 10 0 66 Europe/Dublin 2010-08-14 +2964801 Derrymore Island Derrymore Island 52.25861 -9.83167 T PEN IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964802 Derrymore Derrymore 52.90944 -8.57333 P PPL IE M 03 0 64 Europe/Dublin 2010-08-14 +2964803 Derryluskan House Derryluskan House 52.48083 -7.74028 S EST IE M 26 0 84 Europe/Dublin 2010-08-14 +2964804 Derry Lough Derry Lough 53.76667 -8.93333 H LK IE C 20 0 81 Europe/Dublin 1993-12-27 +2964805 Derrylehan Derrylehan 54.4 -8.45 P PPL IE C 25 0 93 Europe/Dublin 1993-12-27 +2964806 Derry House Derry House 51.58889 -9.065 S EST IE M 04 0 82 Europe/Dublin 2010-08-14 +2964807 Derryhippoo River Derryhippoo River 53.61667 -8.31667 H STM IE C 24 0 71 Europe/Dublin 1993-12-27 +2964808 Derryfrench Derryfrench 53.16194 -8.38639 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2964809 Derrycoffey Derrycoffey 53.36111 -7.32667 P PPL IE L 23 0 137 Europe/Dublin 2010-08-14 +2964810 Derryclure Derryclure 53.23778 -7.47639 P PPL IE L 23 0 81 Europe/Dublin 2010-08-14 +2964811 Derryclare Lough Derryclare Lough Derryclare Lough,Derryelare Lough 53.46667 -9.76667 H LK IE IE C 10 0 18 Europe/Dublin 2010-08-14 +2964812 Derryclare Derryclare Binn Doire Chlair,Binn Doire Chláir 53.49665 -9.78599 T MT IE C 10 0 650 470 Europe/Dublin 2010-08-14 +2964813 Derry Castle Derry Castle 52.85278 -8.42778 S EST IE M 26 0 55 Europe/Dublin 2010-08-14 +2964814 Derrycassan House Derrycassan House 53.81667 -7.55 S EST IE L 18 0 76 Europe/Dublin 1993-12-27 +2964815 Derrycarne Derrycarne 53.86667 -7.96667 S EST IE 00 0 74 Europe/Dublin 1993-12-27 +2964816 Derrybrien Derrybrien 53.06417 -8.61222 P PPL IE C 10 0 162 Europe/Dublin 2010-08-14 +2964817 Derrybeg Derrybeg Derrybeg,Doiri Beaga,Doirí Beaga 55.08333 -8.28944 P PPL IE U 06 0 46 Europe/Dublin 2010-08-14 +2964818 Derrybawn House Derrybawn House Derrybawn,Derrybawn House 52.99861 -6.30417 S EST IE IE L 31 0 138 Europe/Dublin 2010-08-14 +2964819 Derryad Derryad 53.6 -7.86667 P PPL IE L 18 0 75 Europe/Dublin 1993-12-27 +2964820 Derry Derry 51.58666 -9.05026 P PPL IE M 04 10000 76 Europe/Dublin 2010-08-30 +2964821 Derrinvoney Derrinvoney 54.16667 -8.08333 P PPL IE C 14 0 70 Europe/Dublin 1993-12-27 +2964822 Derrinturn Derrinturn 53.34167 -6.94111 P PPL IE L 12 0 78 Europe/Dublin 2010-08-14 +2964823 Derrinkee Derrinkee 53.68333 -9.51667 P PPL IE C 20 0 122 Europe/Dublin 1993-12-27 +2964824 The Derries The Derries 53.09778 -7.14806 S EST IE L 15 0 102 Europe/Dublin 2010-08-14 +2964825 Derriana Lough Derriana Lough 51.89528 -10.01417 H LK IE M 11 0 128 Europe/Dublin 2010-08-14 +2964826 Derrew Derrew 53.19833 -8.3 P PPL IE C 10 0 93 Europe/Dublin 2010-08-14 +2964827 Derreen River Derreen River 52.76417 -6.73389 H STM IE L 01 0 80 Europe/Dublin 2010-08-14 +2964828 Derreen House Derreen House Derreen,Derreen House 51.77889 -9.77972 S EST IE IE M 11 0 111 Europe/Dublin 2010-08-14 +2964829 Derreenavoggy Derreenavoggy 54.06667 -8.11667 P PPL IE C 24 0 123 Europe/Dublin 1993-12-27 +2964830 Derreenavoggy Derreenavoggy 54.41667 -8.36667 S EST IE C 14 0 46 Europe/Dublin 2010-08-14 +2964831 Derreen Derreen 53.89917 -9.94194 P PPL IE C 20 0 36 Europe/Dublin 2010-08-14 +2964832 Derreen Derreen 53.08861 -9.31222 P PPL IE M 03 0 66 Europe/Dublin 2010-08-14 +2964833 Derreen Derreen 52.06667 -9.11667 P PPL IE M 04 0 130 Europe/Dublin 1993-12-27 +2964834 Lough Derravaragh Lough Derravaragh 53.65 -7.36667 H LK IE L 29 0 76 Europe/Dublin 1993-12-27 +2964835 Dernish Island Dernish Island 54.42528 -8.49694 T ISL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2964836 Dernahelty More Dernahelty More 54.1 -7.86667 P PPL IE C 14 0 225 Europe/Dublin 1993-12-27 +2964837 Dernahelty Beg Dernahelty Beg 54.08333 -7.85 P PPL IE C 14 0 118 Europe/Dublin 1993-12-27 +2964838 Dernagree Dernagree 52.11667 -9.03333 P PPL IE M 04 0 133 Europe/Dublin 1993-12-27 +2964839 Derkmore Point Derkmore Point 54.2725 -8.65667 T CAPE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2964840 Derk Derk 52.53028 -8.33806 S EST IE M 16 0 136 Europe/Dublin 2010-08-14 +2964841 Dergbridge Halt Dergbridge Halt 54.73333 -7.91667 S RSTP IE U 06 0 286 Europe/Dublin 1993-12-27 +2964842 Lough Derg Lough Derg 54.61944 -7.87139 H LK IE U 06 0 142 Europe/Dublin 2010-08-14 +2964843 Lough Derg Lough Derg Lough Derg 52.95583 -8.30694 H LK IE 00 0 55 Europe/Dublin 2010-08-10 +2964844 Deputys Pass Deputys Pass 52.94361 -6.16806 T PASS IE L 31 0 147 Europe/Dublin 2010-08-14 +2964845 Delvin River Delvin River 53.63333 -6.21667 H STM IE 00 0 3 Europe/Dublin 1993-12-27 +2964846 Delvin Delvin Dealbhna,Delvin 53.61056 -7.0925 P PPL IE IE L 29 0 119 Europe/Dublin 2010-08-14 +2964847 Delphi Delphi 53.63333 -9.75 S EST IE C 20 0 149 Europe/Dublin 1993-12-27 +2964848 Delgany Delgany Deilgne,Delgany 53.13083 -6.09139 P PPL IE IE L 31 0 52 Europe/Dublin 2010-08-14 +2964849 Deer Island Deer Island 53.18333 -9.07222 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2964850 Deenish Island Deenish Island 52.71667 -8.96361 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2964851 Deenagh River Deenagh River 52.05 -9.53333 H STM IE M 11 0 58 Europe/Dublin 1993-12-27 +2964852 Deel River Deel River 54.09444 -9.26694 H STM IE C 20 0 24 Europe/Dublin 2010-08-14 +2964853 River Deel River Deel River Deal,River Deel 52.61806 -8.98694 H STM IE IE M 16 0 2 Europe/Dublin 2010-08-14 +2964854 Deelis Deelis 52.21667 -9.95 P PPL IE M 11 0 82 Europe/Dublin 2010-08-14 +2964855 Deele River Deele River Dale,Deele River 54.84667 -7.46972 H STM IE IE U 06 0 16 Europe/Dublin 2010-08-14 +2964856 Lough Deele Lough Deele 54.9 -7.88333 H LK IE U 06 0 264 Europe/Dublin 2010-08-14 +2964857 River Deel River Deel River Dale,River Deel 53.49028 -6.95028 H STM IE L 21 0 79 Europe/Dublin 2010-08-10 +2964858 River Dee River Dee 53.8825 -6.34972 H STM IE 00 0 1 Europe/Dublin 1999-03-22 +2964859 Debsborough House Debsborough House 52.82556 -8.17111 S EST IE M 26 0 76 Europe/Dublin 2010-08-14 +2964860 Dealagh River Dealagh River 52.9525 -9.34861 H STM IE M 03 0 14 Europe/Dublin 2010-08-14 +2964861 Dead River Dead River 52.58167 -8.3475 H STM IE M 16 0 64 Europe/Dublin 2010-08-14 +2964862 Dawros River Dawros River 53.57167 -9.96167 H STM IE C 10 0 5 Europe/Dublin 2010-08-14 +2964863 Dawros Dawros Dawros,Dawros More 53.5625 -9.96278 P PPL IE IE C 10 0 7 Europe/Dublin 2010-08-14 +2964864 Dawros Head Dawros Head 54.82861 -8.56361 T CAPE IE U 06 0 1 Europe/Dublin 2010-08-14 +2964865 Dawros Bridge Dawros Bridge 51.86139 -9.63056 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2964866 Dawros Beg Dawros Beg 53.56667 -9.98333 P PPL IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2964867 Dawros Bay Dawros Bay 54.81944 -8.54333 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2964868 Davis’s Castle Davis's Castle Davis Castle,Davis's Castle,Davis’s Castle 52 -8.63333 S BLDG IE M 04 0 153 Europe/Dublin 2010-08-14 +2964869 Davillaun Davillaun 53.62778 -10.135 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964870 Davidstown House Davidstown House Davidstown,Davidstown House 52.945 -6.79222 S EST IE IE L 12 0 144 Europe/Dublin 2010-08-14 +2964871 Darver Castle Darver Castle Darver,Darver Castle 53.93139 -6.46667 S EST IE IE L 19 0 19 Europe/Dublin 2010-08-14 +2964872 Dartry Mountains Dartry Mountains Dartry Mountains 54.33333 -8.41667 T MTS IE C 25 0 94 Europe/Dublin 2010-08-10 +2964873 Dartrey House Dartrey House Dartrey,Dartrey House 54.10111 -7.06833 S HSEC IE IE U 22 0 90 Europe/Dublin 2010-08-14 +2964874 Dartfield Dartfield 53.22167 -8.47694 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2964875 Slieve Dart Slieve Dart 53.66667 -8.7 T HLL IE C 10 0 95 Europe/Dublin 1993-12-27 +2964876 Darrynane Harbour Darrynane Harbour Darrymane Harbor,Darrynane Harbour,Derrynane 51.76667 -10.15 H INLT IE IE M 11 0 91 Europe/Dublin 2010-08-14 +2964877 Darrynane Bay Darrynane Bay 51.75944 -10.13722 H BAY IE M 11 0 47 Europe/Dublin 2010-08-14 +2964878 Darrynane Abbey Darrynane Abbey 51.76722 -10.13028 S EST IE M 11 0 96 Europe/Dublin 2010-08-14 +2964879 Darragh House Darragh House Darragh,Darragh House 52.3 -8.4 S EST IE M 16 0 154 Europe/Dublin 2010-08-10 +2964880 Dargle River Dargle River 53.20861 -6.10056 H STM IE 00 0 -9999 Europe/Dublin 1999-02-24 +2964881 Dardistown Dardistown 53.65 -6.31667 P PPL IE L 21 0 90 Europe/Dublin 1993-12-27 +2964882 Dangan House Dangan House 52.82917 -8.81556 S EST IE M 03 0 78 Europe/Dublin 2010-08-14 +2964883 Dangan Castle Dangan Castle Dangan,Dangan Castle 53.50528 -6.75611 S RUIN IE IE L 21 0 76 Europe/Dublin 2010-08-14 +2964884 Dangan Dangan 51.97278 -8.02833 P PPL IE M 04 0 117 Europe/Dublin 2010-08-14 +2964885 Danesfort House Danesfort House Danesfort,Danesfort House 52.57639 -7.23361 S EST IE IE L 13 0 66 Europe/Dublin 2010-08-14 +2964886 Lough Dan Lough Dan Loch Dean,Loch Deán,Lough Dan 53.06778 -6.28194 H LK IE IE L 31 0 321 Europe/Dublin 2010-08-14 +2964887 Damph Damph 55.17806 -7.32528 T MT IE U 06 0 422 343 Europe/Dublin 2010-08-14 +2964888 Dalystown House Dalystown House 53.41667 -7.38333 S EST IE L 29 0 120 Europe/Dublin 1993-12-27 +2964889 Dalystown Dalystown 53.15 -8.5 S EST IE C 10 0 78 Europe/Dublin 1993-12-27 +2964890 River Dalua River Dalua 52.16667 -8.9 H STM IE M 04 0 110 Europe/Dublin 1993-12-27 +2964891 Dalligan River Dalligan River 52.10583 -7.51111 H STM IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2964892 Dalkey Dalkey Dalkey,Deilginis 53.27833 -6.10028 P PPL IE IE L 07 0 1 Europe/Dublin 2010-11-04 +2964893 Dalgin Dalgin Dalgin,Dolgin 53.63333 -8.86667 P PPL IE C 10 0 51 Europe/Dublin 2010-08-10 +2964894 Dalgan River Dalgan River 53.61667 -8.86667 H STM IE C 10 0 50 Europe/Dublin 1993-12-27 +2964895 Dalganpark Dalganpark 53.53333 -9.06667 S EST IE C 20 0 64 Europe/Dublin 1993-12-27 +2964896 Lough Dahybaun Lough Dahybaun 54.115 -9.52917 H LK IE C 20 0 76 Europe/Dublin 2010-08-14 +2964897 Slieve Daeane Slieve Daeane 54.21889 -8.4425 T HLL IE C 25 0 275 136 Europe/Dublin 2010-08-14 +2964898 Lough Cutra Lough Cutra 53.03556 -8.78167 H LK IE C 10 0 55 Europe/Dublin 2010-08-14 +2964899 Cushina River Cushina River 53.18917 -7.09667 H STM IE 00 0 75 Europe/Dublin 1999-02-24 +2964900 Cushina Cushina Cushina 53.19444 -7.16528 P PPL IE L 23 0 80 Europe/Dublin 2010-08-14 +2964901 Currygrane House Currygrane House Currygrane,Currygrane House 53.75 -7.65 S EST IE L 18 0 76 Europe/Dublin 2010-08-10 +2964902 Curryglass House Curryglass House 52.31667 -8.8 S EST IE M 04 0 148 Europe/Dublin 1993-12-27 +2964903 Curryglass Curryglass 51.66778 -9.82167 P PPL IE M 04 0 44 Europe/Dublin 2010-08-14 +2964904 Curry Curry 54.00333 -8.76944 P PPL IE C 25 0 69 Europe/Dublin 2010-08-14 +2964905 Curreeny Curreeny 52.72778 -8.15028 P PPL IE M 26 0 304 Europe/Dublin 2010-08-14 +2964906 Curranes Curranes Curranes,Currans 52.2 -9.55 P PPL IE IE M 11 0 67 Europe/Dublin 2010-08-14 +2964907 Lough Currane Lough Currane Lough Currane,Lough Leeagh 51.8375 -10.1325 H LK IE IE M 11 0 14 Europe/Dublin 2010-08-14 +2964908 Curramore House Curramore House Carramore House,Curramore House 53.61667 -9.28333 S EST IE C 20 0 41 Europe/Dublin 2010-08-10 +2964909 Curramore Curramore Carrowmore,Curramore 52.33333 -8.98333 S EST IE M 16 0 151 Europe/Dublin 2010-08-10 +2964910 Curraheen Curraheen 51.86667 -8.56667 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2964911 Currah Chase House Currah Chase House Curragh Chase,Curragh Chase House,Currah Chase House 52.59028 -8.88028 S EST IE IE M 16 0 30 Europe/Dublin 2010-08-14 +2964912 Curraglass Curraglass 52.09306 -8.04833 P PPL IE M 04 0 38 Europe/Dublin 2010-08-14 +2964913 Curragh West Curragh West 53.65 -8.65 P PPL IE C 10 0 80 Europe/Dublin 1993-12-27 +2964914 Curraghmore House Curraghmore House Curraghmore,Curraghmore House 52.29028 -7.36028 S EST IE IE M 27 0 49 Europe/Dublin 2010-08-14 +2964915 Curraghgorm Curraghgorm 52.27833 -8.36639 P PPL IE M 04 0 127 Europe/Dublin 2010-08-14 +2964916 Curraghalicky Lake Curraghalicky Lake 51.67667 -9.10972 H LK IE M 04 0 157 Europe/Dublin 2010-08-14 +2964917 Curraghaleen Curraghaleen 53.41333 -8.04889 P PPL IE C 24 0 166 Europe/Dublin 2010-08-14 +2964918 Curragha Curragha 53.53694 -6.44667 P PPL IE L 21 0 73 Europe/Dublin 2010-08-14 +2964919 The Curragh The Curragh Curragh,The Curragh 53.15278 -6.84694 L AREA IE IE L 12 0 141 Europe/Dublin 2010-08-14 +2964920 Curragh Curragh 53.11472 -8.44 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +2964921 Curragh Curragh 52.13972 -8.20361 P PPL IE M 04 0 79 Europe/Dublin 2010-08-14 +2964922 Curracloe House Curracloe House Curracloe,Curracloe House 52.38056 -6.36417 S HSEC IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2964923 Curlew Mountains Curlew Mountains Curlew Hills,Curlew Mountains 54 -8.33333 T HLLS IE IE 00 0 167 Europe/Dublin 2010-08-10 +2964924 Cur Cur 53.51667 -9.6 P PPL IE C 10 0 67 Europe/Dublin 1993-12-27 +2964925 Cummirk River Cummirk River 54.86361 -8.00861 H STM IE U 06 0 118 Europe/Dublin 2010-08-14 +2964926 Cummeragh River Cummeragh River 51.84556 -10.10806 H STM IE M 11 0 32 Europe/Dublin 2010-08-14 +2964927 Cummeen Strand Cummeen Strand 54.28333 -8.55 H FLTT IE C 25 0 1 Europe/Dublin 2010-08-14 +2964928 Cummeenduff Glen Cummeenduff Glen Cummeenduff Glen,Cummeeuduff Glen 51.96667 -9.7 T VAL IE M 11 0 170 Europe/Dublin 2010-08-10 +2964929 Cummeen Cummeen Cummeen,Cummeen House 54.26667 -8.51667 S EST IE C 25 0 10 Europe/Dublin 2010-08-10 +2964930 Culray Culray 53.81667 -7.56667 P PPL IE L 18 0 76 Europe/Dublin 1993-12-27 +2964931 Culmullin Cross Roads Culmullin Cross Roads Culmullin,Culmullin Cross Roads 53.48528 -6.61139 P PPL IE IE L 21 0 83 Europe/Dublin 2010-08-14 +2964932 Culmore Point Culmore Point 55.05 -7.25 T PT IE 00 0 -9999 Europe/Dublin 1993-12-27 +2964933 Cullumore Cullumore 54.37333 -8.64028 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +2964934 Lough Cullin Lough Cullin 53.96667 -9.16667 H LK IE C 20 0 22 Europe/Dublin 1999-03-08 +2964935 Cullies House Cullies House 54 -7.35 S EST IE U 02 0 120 Europe/Dublin 1993-12-27 +2964936 Cullentra Cullentra 52.55 -6.3 P PPL IE L 30 0 24 Europe/Dublin 2010-08-14 +2964937 Cullen Castle Cullen Castle 52.18556 -7.16667 S BLDG IE M 27 0 78 Europe/Dublin 2010-08-14 +2964938 Cullenagh River Cullenagh River 52.94167 -9.28889 H STM IE M 03 0 55 Europe/Dublin 2010-08-14 +2964939 Cullenagh Cullenagh 52.92889 -9.26111 P PPL IE M 03 0 65 Europe/Dublin 2010-08-14 +2964940 Cullen Cullen 52.51194 -8.27028 P PPL IE M 26 0 136 Europe/Dublin 2010-08-14 +2964941 Cullen Cullen 52.11667 -9.11667 P PPL IE M 04 0 152 Europe/Dublin 1993-12-27 +2964942 Culleens Culleens 54.21333 -8.99194 P PPL IE C 25 0 72 Europe/Dublin 2010-08-14 +2964943 Lough Cullaunyheeda Lough Cullaunyheeda 52.82056 -8.76667 H LK IE M 03 0 146 Europe/Dublin 2010-08-14 +2964944 Lough Cullaun Lough Cullaun Cullaun,Lough Cullaun 52.96389 -9.0225 H LK IE IE M 03 0 58 Europe/Dublin 2010-08-14 +2964945 Cullaun Cullaun Cullaun,Slieve Callan 52.66722 -8.26028 T MT IE IE M 16 0 335 Europe/Dublin 2010-08-14 +2964946 Cullahill Cullahill 52.87222 -7.73028 P PPL IE M 26 0 143 Europe/Dublin 2010-08-14 +2964947 Cullahill Cullahill 52.81806 -7.47111 P PPL IE L 15 0 123 Europe/Dublin 2010-08-14 +2964948 Culdaff River Culdaff River 55.28333 -7.16667 H STM IE U 06 0 1 Europe/Dublin 1993-12-27 +2964949 Culdaff House Culdaff House 55.28333 -7.15 S EST IE U 06 0 39 Europe/Dublin 1993-12-27 +2964950 Culdaff Bay Culdaff Bay 55.3 -7.13333 H BAY IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2964951 Culdaff Culdaff Cuil Dabhcha,Culdaff,Cúil Dabhcha 55.28333 -7.16667 P PPL IE IE U 06 0 1 Europe/Dublin 2010-08-14 +2964952 Cuilmullagh Cuilmullagh 53.96667 -9.3 P PPL IE C 20 0 100 Europe/Dublin 1993-12-27 +2964953 Cuilmore Cuilmore 53.95583 -8.87889 P PPL IE C 20 0 76 Europe/Dublin 2010-08-14 +2964954 Cuilleenirwan Lough Cuilleenirwan Lough 53.46667 -8.16667 H LK IE C 24 0 76 Europe/Dublin 1993-12-27 +2964955 Cuilcagh Cuilcagh Cuilcagh 54.20194 -7.81056 T MT IE 00 0 667 481 Europe/Dublin 1998-09-01 +2964956 Grange Grange Cuffes Grange,Grange 52.60278 -7.30194 P PPL IE IE L 13 0 77 Europe/Dublin 2010-08-14 +2964957 Cuddoo Rock Cuddoo Rock 53.56861 -10.20028 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964958 Crutt Crutt 52.86694 -7.20806 P PPL IE L 13 0 158 Europe/Dublin 2010-08-14 +2964959 Crusheen Crusheen Croisin,Croisín,Crusheen 52.93944 -8.89333 P PPL IE IE M 03 0 63 Europe/Dublin 2010-08-14 +2964960 Crump Island Crump Island 53.62361 -10 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964961 Crumpaun River Crumpaun River 53.93778 -9.40111 H STM IE C 20 0 42 Europe/Dublin 2010-08-14 +2964962 Crumpaun Crumpaun 53.28972 -9.565 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2964963 Crumlin Crumlin 53.32417 -6.32861 P PPL IE L 07 0 54 Europe/Dublin 2010-08-14 +2964964 Cruit Island Cruit Island An Chruit,Cruit Island 55.03056 -8.4175 T ISL IE U 06 0 1 Europe/Dublin 2010-08-14 +2964965 Cruagh Cruagh 53.525 -10.21694 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2964966 Croy Lodge Croy Lodge 54.06944 -9.87 S BLDG IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2964967 Crownarad Crownarad 54.64889 -8.50833 T MT IE U 06 0 166 Europe/Dublin 2010-08-14 +2964968 Crow Head Crow Head 51.58361 -10.1625 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2964969 Crowbane Crowbane 54.7 -8.5 P PPL IE U 06 0 439 Europe/Dublin 1993-12-27 +2964970 Crotta House Crotta House 52.36667 -9.61667 S EST IE M 11 0 72 Europe/Dublin 1993-12-27 +2964971 Crosswell Crosswell 53.6 -8.38333 P PPL IE C 10 0 73 Europe/Dublin 1993-12-27 +2964972 Cross Water Cross Water 53.76667 -7.03333 H STM IE L 21 0 100 Europe/Dublin 1993-12-27 +2964973 Falcarragh Falcarragh An Fal Carrach,An Fál Carrach,Crossroads,Falcaragh,Falcarragh 55.13333 -8.1 P PPL IE U 06 0 57 Europe/Dublin 2010-08-14 +2964974 Cross River Cross River 53.68333 -9.5 H STM IE C 20 0 170 Europe/Dublin 1993-12-27 +2964975 Cross Point Cross Point Cross Abbey Point,Cross Point 54.20806 -10.08278 T PT IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2964976 Crosspatrick Crosspatrick 52.77333 -7.61139 P PPL IE L 13 0 151 Europe/Dublin 2010-08-14 +2964977 Crosspatrick Crosspatrick 52.76056 -6.44583 P PPL IE L 31 0 154 Europe/Dublin 2010-08-14 +2964978 Crossna Crossna 54.01667 -8.18333 P PPL IE C 24 0 77 Europe/Dublin 1993-12-27 +2964979 Crossmount Crossmount 51.93333 -9.45 P PPL IE M 11 0 114 Europe/Dublin 1993-12-27 +2964980 Crossmolina Crossmolina Crois Mhaoiliona,Crois Mhaoilíona,Crossmolina 54.1 -9.31667 P PPL IE IE C 20 0 35 Europe/Dublin 2010-08-14 +2964981 Cross Lough Cross Lough 54.19667 -10.07444 H LK IE C 20 0 1 Europe/Dublin 2010-08-14 +2964982 Cross Keys Cross Keys 53.91667 -7.26667 P PPL IE U 02 0 149 Europe/Dublin 1993-12-27 +2964983 Cross Keys Cross Keys 53.51222 -6.61861 P PPL IE L 21 0 87 Europe/Dublin 2010-08-14 +2964984 Crosskeys Crosskeys 53.10361 -7.02 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +2964985 Crosshaven Crosshaven Bun an Tabhairne,Bun an Tábhairne,Crosshaven 51.79833 -8.30083 P PPL IE M 04 0 5 Europe/Dublin 2010-08-14 +2964986 The Cross Guns The Cross Guns 53.90056 -6.69528 P PPL IE L 21 0 61 Europe/Dublin 2010-08-14 +2964987 Cross Guns Cross Guns 53.79361 -6.73639 P PPL IE L 21 0 79 Europe/Dublin 2010-08-14 +2964988 Crossfarnoge Point Crossfarnoge Point Crossfarnoge,Crossfarnoge Point,Forlorn Point 52.16889 -6.58361 T PT IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2964989 Crosserlough Crosserlough 53.88333 -7.28333 P PPL IE U 02 0 152 Europe/Dublin 1993-12-27 +2964990 Crossea Crossea 53.66667 -7.63333 P PPL IE L 18 0 76 Europe/Dublin 1993-12-27 +2964991 Crossdoney Crossdoney Crossdoney 53.95278 -7.43333 P PPL IE U 02 0 78 Europe/Dublin 2010-08-14 +2964992 Crossboyne Crossboyne 53.68333 -9 P PPL IE C 20 0 78 Europe/Dublin 1993-12-27 +2964993 Cross Barry Cross Barry 51.80694 -8.65278 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2964994 Crossakeel Crossakeel Crossakeel,Crosskeel 53.71306 -7.01833 P PPL IE IE L 21 0 152 Europe/Dublin 2010-08-14 +2964995 Crossabeg Crossabeg 52.385 -6.49528 P PPL IE L 30 0 7 Europe/Dublin 2010-08-14 +2964996 Cross Cross 53.55 -9.21667 P PPL IE C 20 0 33 Europe/Dublin 1993-12-27 +2964997 Cross Cross 52.59806 -9.77167 P PPL IE M 03 0 26 Europe/Dublin 2010-08-14 +2964998 Cross Cross 52.02556 -7.80361 P PPL IE M 27 0 85 Europe/Dublin 2010-08-14 +2964999 Croom Croom Cromadh,Croom 52.51944 -8.71778 P PPL IE M 16 0 33 Europe/Dublin 2010-08-14 +2965000 Crookstown Crookstown 51.84778 -8.84194 P PPL IE M 04 0 88 Europe/Dublin 2010-08-14 +2965001 Crookhaven Crookhaven An Cruachan,An Cruachán,Crookhaven 51.46667 -9.71667 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965002 Crook Haven Crook Haven 51.47222 -9.72583 H BAY IE M 04 0 1 Europe/Dublin 2010-08-14 +2965003 Crookedwood Crookedwood Crookedwood 53.6 -7.28333 P PPL IE L 29 0 110 Europe/Dublin 2010-08-10 +2965004 Cronyhorn House Cronyhorn House 52.71889 -6.52306 S EST IE L 31 0 105 Europe/Dublin 2010-08-14 +2965005 Cronamuck River Cronamuck River 54.81472 -7.97167 H STM IE U 06 0 131 Europe/Dublin 2010-08-14 +2965006 Cromane Point Cromane Point 52.13861 -9.89889 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965007 Crolly Crolly Croithli,Croithlí,Crolly 55.025 -8.26083 P PPL IE U 06 0 44 Europe/Dublin 2010-08-14 +2965008 Croke Park Croke Park Croke Park,Pairc an Chrocaigh,Páirc an Chrócaigh,クローク・パーク 53.36667 -6.25 L PRK IE L 07 0 2 Europe/Dublin 2010-08-14 +2965009 Crohy Head Crohy Head 54.925 -8.45639 T CAPE IE U 06 0 39 Europe/Dublin 2010-08-14 +2965010 Crohery Lough Crohery Lough 53.75 -8.88333 H LK IE C 20 0 76 Europe/Dublin 1993-12-27 +2965011 Crohane Crohane 51.98333 -9.38333 T MT IE M 11 0 378 Europe/Dublin 1993-12-27 +2965012 Croghan Mountain Croghan Mountain Croaghan Hill,Croghan Hill,Croghan Mountain,Croghan Mountains 52.79444 -6.32361 T MT IE IE 00 0 421 Europe/Dublin 2010-08-10 +2965013 Croghan Croghan 53.9 -8.21667 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2965014 Croghan Croghan 53.34056 -7.27722 P PPL IE L 23 0 209 Europe/Dublin 2010-08-14 +2965015 Croghan Croghan 52.77778 -6.32361 P PPL IE L 30 0 291 Europe/Dublin 2010-08-14 +2965016 Crockglass Crockglass 55.13111 -7.25861 T MT IE U 06 0 398 301 Europe/Dublin 2010-08-14 +2965017 Crockfadda Crockfadda Crockfadda,Cruckfada 54.7 -8.38333 P PPL IE U 06 0 94 Europe/Dublin 2010-08-10 +2965018 Crockets Town Crockets Town 54.12583 -9.13972 P PPL IE C 20 0 6 Europe/Dublin 2010-08-14 +2965019 Crockavishane Crockavishane Crockavishane,Squire's Carn,Squires Cairn,Squire’s Carn 55.2 -7.1 T MT IE U 06 0 185 Europe/Dublin 2010-08-10 +2965020 Crockaun Crockaun 52.83 -6.97306 P PPL IE L 15 0 48 Europe/Dublin 2010-08-14 +2965021 Crockanaffrin Crockanaffrin 55.1 -7.61667 T MT IE U 06 0 346 139 Europe/Dublin 2010-08-14 +2965022 The Crockan The Crockan 53.51667 -6.43333 P PPLL IE L 21 0 73 Europe/Dublin 1998-02-13 +2965023 Lough Croan Lough Croan 53.5 -8.18333 H LK IE C 24 0 76 Europe/Dublin 1993-12-27 +2965024 Croaghskearda Croaghskearda 52.16806 -10.18056 T MT IE M 11 0 421 Europe/Dublin 2010-08-14 +2965025 Croagh Patrick Croagh Patrick Croagh Patrick 53.75 -9.65 T MT IE C 20 0 281 Europe/Dublin 2010-08-10 +2965026 Croaghnakeela Island Croaghnakeela Island Croaghnakeela Island,Deer Island 53.32611 -9.96944 T ISL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +2965027 Croaghmoyle Croaghmoyle 53.92389 -9.37472 T MT IE C 20 0 430 283 Europe/Dublin 2010-08-14 +2965028 Croaghaun Croaghaun 51.98333 -10.21667 T MT IE M 11 0 149 Europe/Dublin 2010-08-14 +2965029 Croaghan Hill Croaghan Hill 55.10639 -7.58611 T HLL IE U 06 0 307 171 Europe/Dublin 2010-08-14 +2965030 Croaghan Croaghan 54.01667 -7.55 P PPL IE U 02 0 124 Europe/Dublin 1993-12-27 +2965031 Croagh Croagh 52.53333 -8.87556 P PPL IE M 16 0 47 Europe/Dublin 2010-08-14 +2965032 Crissard Crissard 52.91056 -7.14278 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +2965033 Crinkill Crinkill Crinkill,Crinkle 53.07722 -7.89722 P PPL IE IE L 23 0 72 Europe/Dublin 2010-08-14 +2965034 Crettyard House Crettyard House Crettyard,Crettyard House 52.84333 -7.12833 S EST IE IE L 15 0 152 Europe/Dublin 2010-08-14 +2965035 Cremorne House Cremorne House 54.1 -6.91667 S BLDG IE 00 0 157 Europe/Dublin 1993-12-27 +2965036 Creggs Creggs Creggs 53.6 -8.35 P PPL IE C 24 0 74 Europe/Dublin 2010-08-10 +2965037 Cregg River Cregg River 53.35278 -9.05278 H STM IE C 10 0 21 Europe/Dublin 2010-08-14 +2965038 Cregg Point Cregg Point 53.04639 -8.28972 T PT IE C 10 0 55 Europe/Dublin 2010-08-14 +2965039 Cregg House Cregg House Cregg,Cregg House 52.3775 -7.39778 S EST IE IE M 26 0 44 Europe/Dublin 2010-11-04 +2965040 Cregg Castle Cregg Castle 53.38333 -8.95583 S HSEC IE C 10 0 28 Europe/Dublin 2010-08-14 +2965041 Creggaun Creggaun 52.6625 -8.755 P PPL IE M 16 0 1 Europe/Dublin 2010-08-14 +2965042 Creggan Lough Creggan Lough 53.51667 -7.88333 H LK IE L 29 0 77 Europe/Dublin 1993-12-27 +2965043 Creggane Castle Creggane Castle 52.38222 -8.69083 S BLDG IE M 16 0 76 Europe/Dublin 2010-08-14 +2965044 Cregganbaun Cregganbaun 53.7 -9.81667 P PPL IE C 20 0 71 Europe/Dublin 1993-12-27 +2965045 Cregg Cregg 53.13472 -9.20583 P PPL IE M 03 0 35 Europe/Dublin 2010-08-14 +2965046 Cregg Cregg 52.37083 -7.39722 P PPL IE M 26 0 32 Europe/Dublin 2010-08-14 +2965047 Cregg Cregg 51.5675 -9.07917 P PPL IE M 04 0 53 Europe/Dublin 2010-08-14 +2965048 Cregaclare Cregaclare Cregaclare,Cregaclare House 53.1575 -8.78472 S HSEC IE IE C 10 0 32 Europe/Dublin 2010-08-14 +2965049 Creevy Creevy 54.05 -9.38333 P PPL IE C 20 0 72 Europe/Dublin 1993-12-27 +2965050 Creeves Creeves 52.56167 -9.03222 P PPL IE M 16 0 30 Europe/Dublin 2010-08-14 +2965051 Creevelea Abbey Creevelea Abbey Creevelea,Creevelea Abbey 54.23333 -8.31667 S RUIN IE C 14 0 47 Europe/Dublin 2010-08-10 +2965052 Creevaghmore Creevaghmore 53.55 -7.7 S EST IE L 18 0 76 Europe/Dublin 1993-12-27 +2965053 Creevagh Head Creevagh Head 54.30806 -9.26361 T CAPE IE C 20 0 34 Europe/Dublin 2010-08-14 +2965054 Creevagh Creevagh 54.30306 -9.26722 P PPL IE C 20 0 60 Europe/Dublin 2010-08-14 +2965055 Creevagh Creevagh 53.3 -8 P PPL IE L 23 0 56 Europe/Dublin 1993-12-27 +2965056 Creeslough Creeslough An Craoslach,Creeslough 55.11667 -7.9 P PPL IE U 06 0 37 Europe/Dublin 2010-08-14 +2965057 Creeharmore Creeharmore 53.48333 -8.26667 P PPL IE 00 0 69 Europe/Dublin 1993-12-27 +2965058 Creegh River Creegh River 52.74806 -9.50694 H STM IE M 03 0 6 Europe/Dublin 2010-08-14 +2965059 Creegh Creegh 52.74556 -9.42806 P PPL IE M 03 0 102 Europe/Dublin 2010-08-14 +2965060 Creduff Creduff 53.25 -9.33333 P PPL IE C 10 0 3 Europe/Dublin 2010-08-14 +2965061 Creerin Creerin Crecrin,Creerin 52.81194 -6.61889 P PPL IE IE L 31 0 106 Europe/Dublin 2010-08-14 +2965062 Cream Point Cream Point 52.86778 -9.43722 T PT IE M 03 0 3 Europe/Dublin 2010-08-14 +2965063 Creagh House Creagh House 53.63333 -9.25 S EST IE C 20 0 43 Europe/Dublin 1993-12-27 +2965064 Creagh Castle Creagh Castle 52.21667 -8.55 S EST IE M 04 0 75 Europe/Dublin 1993-12-27 +2965065 Creaghanroe Creaghanroe 54.16667 -6.73333 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +2965066 Creagh Creagh 51.60139 -8.95889 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +2965067 Creagh Creagh 51.53028 -9.33194 P PPL IE M 04 0 38 Europe/Dublin 2010-08-14 +2965068 Creadan House Creadan House 52.1675 -6.97194 S BLDG IE M 27 0 1 Europe/Dublin 2010-08-14 +2965069 Creadan Head Creadan Head 52.17528 -6.94389 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2965070 Craughwell Craughwell Cranghwell,Craughwell,Creachmhaoil 53.22611 -8.73306 P PPL IE IE C 10 0 35 Europe/Dublin 2010-08-14 +2965071 Cratloe Wood Cratloe Wood 52.70194 -8.74 V FRST IE M 03 0 85 Europe/Dublin 2010-08-14 +2965072 Cratloekeel Castle Cratloekeel Castle Cratloe Kyle Castle,Cratloekeel Castle 52.68333 -8.71667 S BLDG IE IE 00 0 1 Europe/Dublin 2010-08-10 +2965073 Cratloe Cratloe 52.695 -8.75972 P PPL IE M 03 0 48 Europe/Dublin 2010-08-14 +2965074 Cranroe Cranroe 52.70944 -7.04639 P PPL IE L 13 0 159 Europe/Dublin 2010-08-14 +2965075 Cranna House Cranna House Cranna,Cranna House 52.80278 -8.31806 S EST IE IE M 26 0 68 Europe/Dublin 2010-11-04 +2965076 Crannagh Crannagh 53.4 -7.98333 P PPL IE C 24 0 94 Europe/Dublin 2010-08-14 +2965077 Cranford Cranford 55.14389 -7.69639 P PPL IE U 06 0 2 Europe/Dublin 2010-08-14 +2965078 Crana River Crana River 55.13611 -7.46417 H STM IE U 06 0 41 Europe/Dublin 2010-08-14 +2965079 Cranagh Castle Cranagh Castle Cranagh Castle,Cranagh House 52.77694 -7.75667 S HSEC IE IE M 26 0 139 Europe/Dublin 2010-11-04 +2965080 Cranagher House Cranagher House 52.86889 -8.88083 S EST IE M 03 0 143 Europe/Dublin 2010-08-14 +2965081 Craggaknock Station Craggaknock Station Craggaknock,Craggaknock Station 52.76667 -9.45 S RSTN IE M 03 0 59 Europe/Dublin 2010-08-10 +2965082 Cragbrien House Cragbrien House 52.77056 -9.03361 S EST IE M 03 0 33 Europe/Dublin 2010-08-14 +2965083 Cragan Castle Cragan Castle Cragan Castle,Cregan Castle 53.07861 -9.18139 S HSEC IE IE M 03 0 91 Europe/Dublin 2010-08-14 +2965084 Craddanstown Craddanstown 53.54778 -7.06611 P PPL IE L 29 0 108 Europe/Dublin 2010-08-14 +2965085 Crab Island Crab Island 53.02056 -9.40917 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965086 Craanford Craanford Craanford,Crannford 52.67917 -6.39167 P PPL IE IE L 30 0 77 Europe/Dublin 2010-08-14 +2965087 Coxtown Coxtown 54.59944 -8.1175 S EST IE U 06 0 19 Europe/Dublin 2010-08-14 +2965088 The Cow The Cow 51.58333 -10.26667 T ISL IE 00 0 -9999 Europe/Dublin 1993-12-27 +2965089 Cousane Cousane 51.76528 -9.29139 P PPL IE M 04 0 298 Europe/Dublin 2010-08-14 +2965090 Courtstown House Courtstown House 52.65306 -7.45556 S BLDG IE L 13 0 153 Europe/Dublin 2010-08-14 +2965091 Courtown House Courtown House 52.65194 -6.22583 S EST IE L 30 0 1 Europe/Dublin 2010-08-14 +2965092 Courtown Courtown Baile na Cuirte,Baile na Cúirte,Courtown,Courtown Harbour,Cuan Bhaile na Cuirte,Cuan Bhaile na Cúirte 52.64472 -6.22306 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2965093 Courtmatrix Courtmatrix 52.50694 -8.98056 P PPL IE M 16 0 34 Europe/Dublin 2010-08-14 +2965094 Courtmacsherry Bay Courtmacsherry Bay 51.61972 -8.6325 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965095 Courtmacsherry Courtmacsherry Courtmacsherry,Cuirt Mhic Sheafraidh,Cúirt Mhic Shéafraidh 51.63194 -8.71306 P PPL IE M 04 0 18 Europe/Dublin 2010-08-14 +2965096 Coumshingaun Lough Coumshingaun Lough 52.25028 -7.52472 H LK IE M 27 0 421 Europe/Dublin 2010-08-14 +2965097 Coumeenoole Bay Coumeenoole Bay Coumeenoole Bay,Coumeenoule Bay,Coumenoole Bay 52.10389 -10.47028 H BAY IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965098 Coumduff Coumduff Coumduff,Coumduffmore 52.16972 -10.07833 P PPL IE IE M 11 0 188 Europe/Dublin 2010-08-14 +2965099 Coulagh Bay Coulagh Bay Coulagh Bay,Quoylach Bay 51.70361 -10.00667 H BAY IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965100 Coulagh Coulagh 51.685 -9.97194 P PPL IE M 04 0 30 Europe/Dublin 2010-08-14 +2965101 Costelloe Lodge Costelloe Lodge 53.28333 -9.53333 S HSEC IE C 10 0 18 Europe/Dublin 1998-06-12 +2965102 Costelloe Costelloe Casla,Costelloe 53.29083 -9.54694 P PPL IE C 10 0 8 Europe/Dublin 2010-08-14 +2965103 Corville House Corville House Corville,Corville House 52.95 -7.76667 S EST IE IE M 26 0 124 Europe/Dublin 2010-11-04 +2965104 Cortown Castle Cortown Castle 53.68389 -6.85944 S EST IE L 21 0 74 Europe/Dublin 2010-08-14 +2965105 Cortown Cortown 53.68333 -6.86667 P PPL IE L 21 0 75 Europe/Dublin 1993-12-27 +2965106 Corryndoberleen Corryndoberleen 53.98694 -10.19556 T CLF IE C 20 0 573 Europe/Dublin 2010-08-14 +2965107 Lough Corry Lough Corry Lough Corry,Lough Curry 53.91667 -8.08333 H LK IE C 24 0 71 Europe/Dublin 2010-08-10 +2965108 Corroy Corroy Corroy,Corry 54.06556 -9.18167 P PPL IE IE C 20 0 21 Europe/Dublin 2010-08-14 +2965109 Corrofin Lodge Corrofin Lodge 53.43333 -8.86667 S HSEC IE C 10 0 29 Europe/Dublin 1998-06-12 +2965110 Corrofin Corrofin Correfin,Corrofin 53.43333 -8.85 P PPL IE C 10 0 33 Europe/Dublin 2010-08-10 +2965111 Corrofin Corrofin Cora Finne,Corofin,Corrofin 52.94778 -9.06306 P PPL IE M 03 0 53 Europe/Dublin 2010-08-14 +2965112 Corrigo Corrigo Corriga,Corrigo 53.93333 -7.68333 P PPL IE C 14 0 72 Europe/Dublin 2010-08-10 +2965113 Corrig Mountain Corrig Mountain An Charraig,Corrig Mountain 53.21472 -6.36861 T MT IE 00 0 620 573 Europe/Dublin 2010-08-10 +2965114 River Corrib River Corrib 53.2675 -9.04889 H STM IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965115 Lough Corrib Lough Corrib Lago Corrib,Loch Coirib,Loch Coiribe,Lohkoriba ezers,Lough Corrib 53.43333 -9.23333 H LK IE C 10 0 21 Europe/Dublin 2010-08-10 +2965116 Corrawaleen Corrawaleen Corrawaleen,Corrawalleen,Corrawallen 54.01139 -7.70778 P PPL IE C 14 0 78 Europe/Dublin 2010-08-14 +2965117 Corraun Point Corraun Point 54.19778 -10.09583 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2965118 Corraun Corraun 53.8725 -9.9275 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2965119 Corraun Corraun 53.71667 -8.76667 P PPL IE C 20 0 73 Europe/Dublin 1993-12-27 +2965120 Corra River Corra River 52.94833 -8.60167 H STM IE M 03 0 69 Europe/Dublin 2010-08-14 +2965121 Corran Lake Corran Lake 51.60806 -9.16444 H LK IE M 04 0 143 Europe/Dublin 2010-08-14 +2965122 Corradrishy Corradrishy Carrowdrisky,Corradrishy 54.01833 -9.08944 P PPL IE C 20 0 54 Europe/Dublin 2010-08-14 +2965123 Corrabut Gap Corrabut Gap 52.6575 -6.76556 T GAP IE L 01 0 378 Europe/Dublin 2010-08-14 +2965124 Corock River Corock River 52.25472 -6.75306 H STM IE L 30 0 3 Europe/Dublin 2010-08-14 +2965125 Cornfield House Cornfield House Corfield,Cornfield House 53.66667 -9.18333 S EST IE C 20 0 50 Europe/Dublin 2010-08-10 +2965126 Cornasaus Cornasaus 53.91694 -6.90694 T MT IE U 02 0 298 Europe/Dublin 2010-08-14 +2965127 Cornamona Cornamona Cornamona 53.51667 -9.45 P PPL IE C 10 0 80 Europe/Dublin 2010-08-10 +2965128 Cornaher Cornaher 53.36778 -7.4175 S EST IE L 29 0 103 Europe/Dublin 2010-08-14 +2965129 Cornagrow Lough Cornagrow Lough 53.885 -7.22139 H LK IE U 02 0 156 Europe/Dublin 2010-08-14 +2965130 Cornageeha Cornageeha 53.88333 -7.76667 P PPL IE C 14 0 72 Europe/Dublin 1993-12-27 +2965131 Cornafulla Cornafulla 53.37556 -8.00028 P PPL IE C 24 0 121 Europe/Dublin 2010-08-14 +2965132 Cornacullew Cornacullew 53.88333 -7.71667 P PPL IE L 18 0 76 Europe/Dublin 1993-12-27 +2965133 Corlough Corlough 54.11667 -7.78333 P PPL IE U 02 0 81 Europe/Dublin 1993-12-27 +2965134 Corlea Corlea 53.61667 -7.86667 P PPL IE L 18 0 84 Europe/Dublin 1993-12-27 +2965135 Cork Lough Cork Lough Cork Lough,Lough of Cork 51.88611 -8.48806 H LK IE IE M 04 0 55 Europe/Dublin 2010-08-14 +2965136 Corkip Lough Corkip Lough 53.45 -8.11667 H LK IE C 24 0 79 Europe/Dublin 1993-12-27 +2965137 Cork Harbour Cork Harbour Cork Bay,Cork Harbour 51.85222 -8.26 H HBR IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965138 Corker River Corker River 54.69111 -8.3725 H STM IE U 06 0 111 Europe/Dublin 2010-08-14 +2965139 County Cork County Cork Contae Chorcai,Contae Chorcaí,Corcaigh,Cork,Cork County,County Cork 51.96667 -8.58333 A ADM2 IE IE M 04 480909 112 Europe/Dublin 2010-08-14 +2965140 Cork Cork Corcaigh,Cork,Cork - Corcaigh,Cork city,Kork,Korka,Korkas,Korkig,ke ke,koku,kwrk,qwrq,Корк,קורק,كورك,コーク,科克 51.89797 -8.47061 P PPLA2 IE M 04 190384 57 Europe/Dublin 2011-02-15 +2965141 Corglass Corglass 54.11667 -8.08333 P PPL IE C 14 0 58 Europe/Dublin 1993-12-27 +2965142 Corgarve Corgarve 52.16667 -8 P PPL IE M 27 0 173 Europe/Dublin 1993-12-27 +2965143 Corduff House Corduff House Corduff,Corduff House 54.06556 -7.73056 S HSEC IE IE C 14 0 76 Europe/Dublin 2010-08-14 +2965144 Cordal Cordal 52.21667 -9.38333 P PPL IE M 11 0 108 Europe/Dublin 1993-12-27 +2965145 Corcreeghagh Corcreeghagh Corcreaghy,Corcreeghagh 53.95722 -6.62361 P PPL IE IE L 19 0 59 Europe/Dublin 2010-08-14 +2965146 Corcomroe Abbey Corcomroe Abbey 53.11667 -9.05 S RUIN IE M 03 0 89 Europe/Dublin 2010-08-14 +2965147 Corcogemore Corcogemore Corcogemore,Leckavrea Mountain 53.48333 -9.58333 T MT IE IE C 10 0 303 Europe/Dublin 2010-08-14 +2965148 Corbalton Hall Corbalton Hall 53.56889 -6.5325 S EST IE L 21 0 80 Europe/Dublin 2010-08-14 +2965149 Corbally Lough Corbally Lough 53.9 -8.15 H LK IE C 24 0 76 Europe/Dublin 1993-12-27 +2965150 Corbally Corbally 54.16583 -9.08167 P PPL IE C 25 0 32 Europe/Dublin 2010-08-14 +2965151 Corbally Cross Roads Corbally Cross Roads Corbally,Corbally Cross Roads,Corbaly 53.15556 -6.74056 P PPL IE IE L 12 0 113 Europe/Dublin 2010-08-14 +2965152 Corbally Corbally 52.14861 -7.06528 P PPL IE M 27 0 4 Europe/Dublin 2010-08-14 +2965153 Coralstown Coralstown 53.47861 -7.16778 P PPL IE L 29 0 132 Europe/Dublin 2010-08-14 +2965154 Copse House Copse House 52.93333 -6.23333 S EST IE L 31 0 109 Europe/Dublin 2010-08-14 +2965155 Cúirt Choipinéar Cuirt Choipinear Coppinger's Court,Coppinger’s Court,Cuirt Choipinear,Cúirt Choipinéar 51.57861 -9.07167 S RUIN IE IE M 04 0 57 Europe/Dublin 2010-08-14 +2965156 Copperalley Copperalley 53.58333 -7 P PPL IE 00 0 92 Europe/Dublin 1993-12-27 +2965157 Coppenagh House Coppenagh House 52.82111 -6.7275 S EST IE L 01 0 95 Europe/Dublin 2010-08-14 +2965158 Cootehill Cootehill Cootehill,Muinchille 54.0725 -7.08194 P PPL IE U 02 1713 82 Europe/Dublin 2010-08-14 +2965159 Cootehall Cootehall 53.9825 -8.15361 P PPL IE C 24 0 73 Europe/Dublin 2010-08-14 +2965160 Coosavuddig Coosavuddig 52.23333 -10.31667 P PPL IE M 11 0 69 Europe/Dublin 2010-08-14 +2965161 Cooraclare Cooraclare Cooraclare,Cuar an Chlair,Cuar an Chláir 52.70083 -9.42083 P PPL IE M 03 0 12 Europe/Dublin 2010-08-14 +2965162 Coopers Hill Coopers Hill Cooper Hill,Coopers Hill 52.89028 -7.24472 S EST IE IE L 15 0 153 Europe/Dublin 2010-08-14 +2965163 Cooperhill House Cooperhill House 54.13667 -8.4175 S HSEC IE C 25 0 72 Europe/Dublin 2010-08-14 +2965164 Cooperhill House Cooperhill House 52.65472 -8.72306 S EST IE M 16 0 2 Europe/Dublin 2010-08-14 +2965165 Coongar Harbour Coongar Harbour Coongar Bay,Coongar Harbour 51.8325 -9.82333 H HBR IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965166 Coonanna Harbour Coonanna Harbour 51.99583 -10.21528 H HBR IE M 11 0 62 Europe/Dublin 2010-08-14 +2965167 Coonagh Coonagh 52.66306 -8.68944 P PPL IE M 16 0 1 Europe/Dublin 2010-08-14 +2965168 Coomnahincha Coomnahincha 51.99139 -10.20889 P PPL IE M 11 0 77 Europe/Dublin 2010-08-14 +2965169 Coomhola River Coomhola River 51.74111 -9.45306 H STM IE M 04 0 25 Europe/Dublin 2010-08-14 +2965170 Coomcallee Coomcallee 51.85222 -9.99944 T MT IE M 11 0 650 443 Europe/Dublin 2010-08-14 +2965171 Coomasaharn Lake Coomasaharn Lake 51.99361 -9.99528 H LK IE M 11 0 322 Europe/Dublin 2010-08-14 +2965172 Coomacarrea Coomacarrea 51.97889 -10.02083 T MT IE M 11 0 588 Europe/Dublin 2010-08-14 +2965173 Coolvally Coolvally 52.55 -6.75 P PPL IE L 30 0 145 Europe/Dublin 2010-08-14 +2965174 Coolure Coolure 53.66667 -7.35 S EST IE L 29 0 76 Europe/Dublin 1993-12-27 +2965175 Coolrus House Coolrus House Coolrus House,Coolruss House 52.44083 -8.73528 S RUIN IE IE M 16 0 76 Europe/Dublin 2010-08-14 +2965176 Coolrain Coolrain 52.97972 -7.56861 P PPL IE L 15 0 116 Europe/Dublin 2010-08-14 +2965178 Coolnamuck Court Coolnamuck Court Coolnamuck,Coolnamuck Court 52.34889 -7.46361 S EST IE IE M 27 0 53 Europe/Dublin 2010-08-14 +2965179 Coolnahay Coolnahay 53.53333 -7.46667 L LCTY IE L 29 0 148 Europe/Dublin 1993-12-27 +2965180 Coolnagour House Coolnagour House 52.07417 -7.67444 S EST IE M 27 0 49 Europe/Dublin 2010-08-14 +2965181 Coolmountain House Coolmountain House 51.8 -9.18333 S BLDG IE M 04 0 171 Europe/Dublin 1993-12-27 +2965182 Coolmore House Coolmore House 52.50861 -7.69111 S EST IE M 26 0 136 Europe/Dublin 2010-08-14 +2965183 Coolmore House Coolmore House 52.50111 -7.11028 S EST IE L 13 0 38 Europe/Dublin 2010-08-14 +2965184 Coolmore Coolmore 54.54444 -8.20972 P PPL IE U 06 0 53 Europe/Dublin 2010-08-14 +2965185 Coolmore Coolmore 51.81333 -8.34028 S EST IE M 04 0 1 Europe/Dublin 2010-08-14 +2965186 Coolmelagh House Coolmelagh House Coolmelagh House,Prospect House 52.68361 -6.58806 S EST IE IE L 30 0 153 Europe/Dublin 2010-08-14 +2965187 Coolmela Coolmela Coolmela,Prospect 52.68333 -6.60472 P PPL IE IE L 30 0 219 Europe/Dublin 2010-08-14 +2965188 Coolmeen Coolmeen 52.65 -9.22056 P PPL IE M 03 0 27 Europe/Dublin 2010-08-14 +2965189 Coollick Coollick 52.11667 -9.48333 P PPL IE M 11 0 156 Europe/Dublin 1993-12-27 +2965190 Coollegreane Coollegreane 54.2 -8.03333 P PPL IE U 02 0 64 Europe/Dublin 1993-12-27 +2965191 Coolkenna Street Coolkenna Street Coolkenna Street,Coolkenno 52.7825 -6.59667 P PPL IE IE L 31 0 255 Europe/Dublin 2010-08-14 +2965192 Coolishal House Coolishal House 52.65 -6.31667 S BLDG IE L 30 0 45 Europe/Dublin 2010-08-14 +2965193 Coolin Lough Coolin Lough 53.53333 -9.41667 H LK IE C 10 0 147 Europe/Dublin 1993-12-27 +2965194 Coolgreany Coolgreany Coolgreany,Cuil Ghreine,Cúil Ghréine 52.76278 -6.23556 P PPL IE L 30 0 59 Europe/Dublin 2010-08-14 +2965195 Coolfinn House Coolfinn House 52.26667 -7.3 S BLDG IE M 27 0 74 Europe/Dublin 1993-12-27 +2965196 Cooley Point Cooley Point 53.98028 -6.14139 T PT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2965197 Coole West Coole West 51.96639 -8.47083 P PPL IE M 04 0 144 Europe/Dublin 2010-08-14 +2965198 Coole Lough Coole Lough 53.08667 -8.84806 H LK IE C 10 0 35 Europe/Dublin 2010-08-14 +2965199 Coole House Coole House 52.35 -7.8 S BLDG IE 00 0 59 Europe/Dublin 1993-12-27 +2965200 Cooleeny Cooleeny 52.73389 -7.68528 P PPL IE M 26 0 129 Europe/Dublin 2010-08-14 +2965201 Coole East Coole East 51.96111 -8.45944 P PPL IE M 04 0 144 Europe/Dublin 2010-08-14 +2965202 Coole Abbey Coole Abbey 52.10778 -8.20694 S EST IE M 04 0 77 Europe/Dublin 2010-08-14 +2965203 Coolea Coolea Coolea 51.91667 -9.21667 P PPL IE M 04 0 172 Europe/Dublin 2010-08-10 +2965204 Coole Coole An Chuil,An Chúil,Coole 53.7 -7.38333 P PPL IE L 29 0 77 Europe/Dublin 2010-08-14 +2965205 Coole Coole 53.09694 -8.83528 S EST IE C 10 0 32 Europe/Dublin 2010-08-14 +2965206 Coolderry House Coolderry House Coolderry,Coolderry House 53.9175 -6.68417 S EST IE IE U 22 0 60 Europe/Dublin 2010-08-14 +2965207 Coolcullen Coolcullen 52.75694 -7.12222 P PPL IE L 13 0 204 Europe/Dublin 2010-08-14 +2965208 Coolcour House Coolcour House 51.88333 -8.93333 S EST IE M 04 0 85 Europe/Dublin 2010-08-14 +2965209 Coolcashin House Coolcashin House Coolcashin,Coolcashin House 52.76667 -7.46667 S EST IE IE L 13 0 166 Europe/Dublin 2010-08-14 +2965210 Coolboy Coolboy 52.75944 -6.46028 P PPL IE L 31 0 161 Europe/Dublin 2010-08-14 +2965211 Coolbawn House Coolbawn House Coolbawn,Coolbawn House 52.48556 -6.77194 S EST IE IE L 30 0 119 Europe/Dublin 2010-08-14 +2965212 Coolbaun Coolbaun Coolbaun,Coolbawn 52.98111 -8.24917 P PPL IE IE M 26 0 85 Europe/Dublin 2010-11-04 +2965213 Coolavin Coolavin 53.93333 -8.5 S EST IE C 25 0 69 Europe/Dublin 1993-12-27 +2965214 Coolattin Coolattin 52.74778 -6.49972 P PPL IE L 31 0 147 Europe/Dublin 2010-08-14 +2965215 Coolatogher Coolatogher 52.57778 -7.02694 P PPL IE L 13 0 141 Europe/Dublin 2010-08-14 +2965216 Coolaney Coolaney Coolaney,Cuil Aine,Cúil Áine 54.17806 -8.59972 P PPL IE C 25 0 74 Europe/Dublin 2010-08-14 +2965217 Coolamoney Coolamoney 53.88333 -6.6 P PPL IE 00 0 62 Europe/Dublin 1993-12-27 +2965218 Coolagh Coolagh 53.29889 -9.05083 P PPL IE C 10 0 3 Europe/Dublin 2010-08-14 +2965219 Coolagarybeg Coolagarybeg 53.23333 -7.2 P PPL IE L 23 0 84 Europe/Dublin 1993-12-27 +2965220 Coolagarry Lough Coolagarry Lough 53.46667 -8.15 H LK IE C 24 0 76 Europe/Dublin 1993-12-27 +2965221 Coolacurn Coolacurn 53.21667 -8.05 P PPL IE C 10 0 57 Europe/Dublin 1993-12-27 +2965222 Coola Cross Roads Coola Cross Roads Coola,Coola Cross Roads 54.15861 -8.36944 P PPL IE IE C 25 0 78 Europe/Dublin 2010-08-14 +2965223 Cooanmore Point Cooanmore Point 54.29639 -8.94639 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +2965224 Cooanmore Bay Cooanmore Bay 54.29556 -8.9525 H BAY IE C 25 0 1 Europe/Dublin 2010-08-14 +2965225 Convoy House Convoy House 54.85694 -7.67111 S EST IE U 06 0 65 Europe/Dublin 2010-08-14 +2965226 Convoy Convoy Conmhaigh,Convoy 54.86083 -7.66556 P PPL IE IE U 06 0 62 Europe/Dublin 2010-08-14 +2965227 Convamore Convamore 52.14389 -8.42972 S EST IE M 04 0 48 Europe/Dublin 2010-08-14 +2965228 Conors Island Conors Island Connor's Island,Connor’s Island,Conors Island 54.42194 -8.52083 T PEN IE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2965229 Connonagh Connonagh 51.60361 -9.09222 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +2965230 Connolly Connolly 52.82944 -9.19306 P PPL IE M 03 0 102 Europe/Dublin 2010-08-14 +2965231 Conniberry Junction Conniberry Junction 53.03333 -7.31667 R RJCT IE L 15 0 141 Europe/Dublin 2010-08-14 +2965232 Connemara Connemara Connemara 53.5 -9.75 L AREA IE C 10 0 47 Europe/Dublin 2011-01-04 +2965233 Connaught Connaught Connacht,Connaught,Cuige Chonnacht,Cúige Chonnacht,Province of Connacht 53.66667 -9 L RGN IE C 20 0 88 Europe/Dublin 2011-03-06 +2965234 Conna Conna Conna 52.09083 -8.11056 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +2965235 Lough Conn Lough Conn Lough Conn 54 -9.25 H LK IE C 20 0 24 Europe/Dublin 2010-08-14 +2965236 Conlawn Hill Conlawn Hill 53.06139 -7.46583 T MT IE L 15 0 245 Europe/Dublin 2010-08-14 +2965237 Coningbeg Rock Coningbeg Rock Coninabeg Rock,Coningbeg Rock 52.06694 -6.635 T RK IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2965238 Congor House Congor House 52.95806 -8.12694 S EST IE M 26 0 92 Europe/Dublin 2010-08-14 +2965239 Cong Cong Cong,Conga 53.53333 -9.28333 P PPL IE IE C 20 0 21 Europe/Dublin 2010-08-14 +2965240 Coney Island Coney Island Coney Island,Inish Mulclohy 54.29861 -8.58778 T ISL IE IE C 25 0 1 Europe/Dublin 2010-08-14 +2965241 Coney Island Coney Island 52.71111 -9.00694 T ISL IE M 03 0 1 Europe/Dublin 2010-08-14 +2965242 The Cones The Cones 53.09 -7.55222 T MTS IE L 15 0 304 Europe/Dublin 2010-08-14 +2965243 Commons Commons 52.6275 -7.54139 P PPL IE M 26 0 169 Europe/Dublin 2010-08-14 +2965244 Comeragh Mountains Comeragh Mountains Comeragh Mountains 52.27972 -7.56639 T MTS IE M 27 0 391 Europe/Dublin 2010-08-14 +2965245 Colmanstown Colmanstown 53.38944 -8.61611 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2965246 Colly Colly 51.96528 -9.9625 T MT IE M 11 0 454 Europe/Dublin 2010-08-14 +2965247 Collorus Collorus 51.76667 -9.85 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2965248 Collooney Collooney Collooney,Cuil Mhuine,Cúil Mhuine 54.18333 -8.5 P PPL IE C 25 0 62 Europe/Dublin 2010-08-14 +2965249 Collon Collon Collann,Collon 53.78111 -6.48694 P PPL IE IE L 19 0 152 Europe/Dublin 2010-08-14 +2965250 Collinstown Collinstown Collinstown 53.64417 -7.20667 P PPL IE L 29 0 129 Europe/Dublin 2010-08-14 +2965251 Colbinstown Colbinstown Colbinstown,Collinstown 53.03167 -6.74806 P PPL IE IE L 12 0 144 Europe/Dublin 2010-08-14 +2965252 Colligan River Colligan River 52.10444 -7.63667 H STM IE M 27 0 20 Europe/Dublin 2010-08-14 +2965253 Collierstown Collierstown 53.65 -6.35 P PPL IE L 21 0 85 Europe/Dublin 1993-12-27 +2965254 Collegeland Collegeland 53.495 -6.68556 P PPL IE L 21 0 77 Europe/Dublin 2010-08-14 +2965255 Colgagh Colgagh 54.28611 -8.39139 P PPL IE C 25 0 139 Europe/Dublin 2010-08-14 +2965256 Coleraine House Coleraine House 53.30222 -7.54306 S EST IE L 23 0 72 Europe/Dublin 2010-08-14 +2965257 Cods Head Cods Head 51.66833 -10.10611 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965258 Codling Bank Codling Bank 53.11667 -5.85 H BNK IE L 31 0 -9999 Europe/Dublin 1993-12-27 +2965259 Cobh Road Cobh Road Cobh Road,Queenstown Harbor,Queenstown Road 51.85 -8.3 H RDST IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965260 Cobh Cobh An Cobh,An Cóbh,Cobh,Queenstown 51.85722 -8.29917 P PPL IE M 04 10501 47 Europe/Dublin 2010-08-14 +2965261 Cobduff Cobduff 51.75833 -9.49861 T MT IE M 04 0 253 Europe/Dublin 2010-08-14 +2965262 Owengarve River Owengarve River Coarse River,Owengarve River 54.01389 -8.86167 H STM IE C 25 0 55 Europe/Dublin 2010-08-10 +2965263 Coars Coars 51.95 -10.11667 P PPL IE M 11 0 165 Europe/Dublin 2010-08-14 +2965264 Coan Coan 52.78361 -7.11222 P PPL IE L 13 0 201 Europe/Dublin 2010-08-14 +2965265 Coalbrook House Coalbrook House 52.62306 -7.57917 S EST IE M 26 0 208 Europe/Dublin 2010-08-14 +2965266 Coalbrook Coalbrook Coalbrook 52.61361 -7.58278 P PPL IE M 26 0 227 Europe/Dublin 2010-11-04 +2965267 Coachford Coachford Ath an Choiste,Coachford,Áth an Chóiste 51.9 -8.78333 P PPL IE M 04 0 72 Europe/Dublin 2010-08-14 +2965268 Clynagh Island Clynagh Island 53.34861 -9.58611 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965269 Clynacartan Clynacartan 51.89333 -10.39639 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2965270 Clyda River Clyda River 52.13333 -8.66667 H STM IE M 04 0 65 Europe/Dublin 1993-12-27 +2965271 Clydagh River Clydagh River Clydagh River,River Cladagh 53.95 -9.18333 H STM IE C 20 0 22 Europe/Dublin 2010-08-10 +2965272 Clydagh River Clydagh River 52.33333 -9.26667 H STM IE M 16 0 130 Europe/Dublin 1993-12-27 +2965273 Clydagh River Clydagh River 52.03333 -9.38333 H STM IE M 11 0 97 Europe/Dublin 1993-12-27 +2965274 Clydagh House Clydagh House Clydach House,Clydagh House 53.43333 -9.16667 S HSEC IE C 10 0 21 Europe/Dublin 2010-08-10 +2965275 Clydagh Clydagh 53.75 -8.66667 P PPL IE C 24 0 104 Europe/Dublin 1993-12-27 +2965276 Cloyne Cloyne Cloyne,Cluain 51.86278 -8.12444 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2965277 Cloverhill House Cloverhill House 54.24528 -8.50611 S HSEC IE C 25 0 45 Europe/Dublin 2010-08-14 +2965278 Cloverhill Cloverhill 54.08056 -7.36778 P PPL IE U 02 0 116 Europe/Dublin 2010-08-14 +2965279 Clover Hill Clover Hill 54.07333 -7.79472 S EST IE C 14 0 76 Europe/Dublin 2010-08-14 +2965280 Cloonyquin House Cloonyquin House Cloonyquin,Cloonyquin House 53.8 -8.25 S EST IE C 24 0 75 Europe/Dublin 2010-08-10 +2965281 Cloonusker Cloonusker 52.94139 -8.57167 P PPL IE M 03 0 100 Europe/Dublin 2010-08-14 +2965282 Cloontuskert Cloontuskert 53.7 -8 P PPL IE C 24 0 62 Europe/Dublin 1993-12-27 +2965283 Cloonteen Cloonteen 52.62861 -8.29222 P PPL IE M 16 0 79 Europe/Dublin 2010-08-14 +2965284 Cloonslaun Cloonslaun 54.08806 -9.10917 P PPL IE C 20 0 34 Europe/Dublin 2010-08-14 +2965285 Cloonshannagh House Cloonshannagh House 53.7 -7.51667 S EST IE 00 0 84 Europe/Dublin 1993-12-27 +2965286 Cloon River Cloon River 52.64056 -9.2675 H STM IE M 03 0 1 Europe/Dublin 2010-08-14 +2965287 Cloonmore Cross Roads Cloonmore Cross Roads Cloonmore,Cloonmore Cross Roads 53.97528 -8.71722 P PPL IE IE C 20 0 77 Europe/Dublin 2010-08-14 +2965288 Cloonmore Cloonmore 53.61667 -8.05 P PPL IE C 24 0 62 Europe/Dublin 1993-12-27 +2965289 Cloon Lough Cloon Lough Clogh Lough,Cloon Lough 53.7 -9.3 H LK IE C 20 0 53 Europe/Dublin 2010-08-10 +2965290 Cloon Lough Cloon Lough 51.9425 -9.88472 H LK IE M 11 0 150 Europe/Dublin 2010-08-14 +2965291 Cloonlavis Cloonlavis 53.8 -8.96667 P PPL IE C 20 0 80 Europe/Dublin 1993-12-27 +2965292 Cloonlara Cloonlara Cloonlara,Cluain Lara,Cluain Lára 52.72222 -8.55389 P PPL IE IE M 03 0 34 Europe/Dublin 2010-08-14 +2965293 Cloonkeen Cloonkeen 53.41 -8.205 P PPL IE C 24 0 75 Europe/Dublin 2010-08-14 +2965294 Cloongowla Cloongowla 53.63333 -9.2 P PPL IE C 20 0 48 Europe/Dublin 1993-12-27 +2965295 Cloonfree House Cloonfree House 53.76667 -8.13333 S EST IE C 24 0 72 Europe/Dublin 1993-12-27 +2965296 Cloonfower Cloonfower 53.8 -8.6 P PPL IE C 24 0 70 Europe/Dublin 1993-12-27 +2965297 Cloonfin House Cloonfin House Cloonfin,Cloonfin House 53.76667 -7.58333 S EST IE L 18 0 75 Europe/Dublin 2010-08-10 +2965298 Cloonfad Cloonfad 53.68333 -8.73333 P PPL IE C 24 0 81 Europe/Dublin 1993-12-27 +2965299 Cloone River Cloone River 53.9 -7.83333 H STM IE C 14 0 70 Europe/Dublin 1993-12-27 +2965300 Clooneen River Clooneen River 54.07222 -8.53778 H STM IE C 25 0 75 Europe/Dublin 1998-09-01 +2965301 Clooneen House Clooneen House Clooneen,Clooneen House 53.16667 -7.87139 S EST IE IE L 23 0 72 Europe/Dublin 2010-08-14 +2965302 Clooneenagh House Clooneenagh House 52.75 -9.4 S EST IE M 03 0 73 Europe/Dublin 1993-12-27 +2965303 Clooneen Clooneen Clooneen,Clooneen Beg 53.56667 -8.23333 P PPL IE C 24 0 69 Europe/Dublin 2010-08-10 +2965304 Clooneen Clooneen Clooneen,Clooneon 53.45 -9.08333 P PPL IE C 10 0 32 Europe/Dublin 2010-08-10 +2965305 Cloonee Loughs Cloonee Loughs 51.82833 -9.72222 H LKS IE M 11 0 6 Europe/Dublin 2010-08-14 +2965306 Cloone Cloone An Chluaine,Cloone 53.95 -7.78333 P PPL IE C 14 0 73 Europe/Dublin 2010-08-14 +2965307 Cloondergan Cloondergan 53.65 -8.81667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2965308 Cloondara Canal Cloondara Canal 53.73333 -7.9 H CNL IE L 18 0 67 Europe/Dublin 1993-12-27 +2965309 Cloondara Cloondara 53.73333 -7.91667 P PPL IE 00 0 67 Europe/Dublin 1993-12-27 +2965310 Clooncorick Castle Clooncorick Castle 53.98667 -7.6375 S EST IE C 14 0 77 Europe/Dublin 2010-08-14 +2965311 Clooncoorha Clooncoorha Clooncoorha,Clooncorha 52.68139 -9.48167 P PPL IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2965312 Clooncogaile Clooncogaile 52.18333 -7.71667 P PPL IE M 27 0 151 Europe/Dublin 2010-08-14 +2965313 Clooncan Clooncan 53.78333 -8.66667 P PPL IE C 24 0 98 Europe/Dublin 1993-12-27 +2965314 Clooncahir Clooncahir 53.9 -7.85 S EST IE C 14 0 69 Europe/Dublin 1993-12-27 +2965315 Clooncah Clooncah 53.7 -8.1 P PPL IE C 24 0 90 Europe/Dublin 1993-12-27 +2965316 Clooncah Clooncah 53.32639 -8.55361 S BLDG IE C 10 0 76 Europe/Dublin 2010-08-14 +2965317 Cloonboo Cloonboo 53.37611 -9.01278 P PPL IE C 10 0 26 Europe/Dublin 2010-08-14 +2965318 Cloonbony House Cloonbony House Cloonbony,Cloonbony House 53.68333 -7.98333 S EST IE IE 00 0 69 Europe/Dublin 2010-08-10 +2965319 Cloonbarry House Cloonbarry House 54.05528 -8.87389 S HSEC IE C 25 0 73 Europe/Dublin 2010-08-14 +2965320 Cloonbarry House Cloonbarry House 53.57806 -6.89444 S BLDG IE L 21 0 78 Europe/Dublin 2010-08-14 +2965321 Cloonbannin Cloonbannin 52.13333 -9.01667 P PPL IE M 04 0 135 Europe/Dublin 1993-12-27 +2965322 Cloonart Cloonart 53.8 -7.88333 P PPL IE L 18 0 66 Europe/Dublin 1993-12-27 +2965323 Cloonard River Cloonard River 53.76667 -8.5 H STM IE C 24 0 75 Europe/Dublin 1993-12-27 +2965324 Cloonamahon House Cloonamahon House 54.15 -8.48333 S EST IE C 25 0 74 Europe/Dublin 1993-12-27 +2965325 Cloonakillina Lough Cloonakillina Lough 54.005 -8.625 H LK IE C 20 0 88 Europe/Dublin 2010-08-14 +2965326 Cloonakilleg Cloonakilleg 53.51667 -8.28333 P PPL IE 00 0 69 Europe/Dublin 1993-12-27 +2965327 Cloonahee House Cloonahee House 53.85 -8.1 S EST IE C 24 0 70 Europe/Dublin 1993-12-27 +2965328 Cloonaghmore River Cloonaghmore River 54.23333 -9.26667 H STM IE C 20 0 35 Europe/Dublin 1993-12-27 +2965329 Cloonagh Lough Cloonagh Lough 53.83333 -8.7 H LK IE C 24 0 52 Europe/Dublin 1993-12-27 +2965330 Cloonaghlin Lough Cloonaghlin Lough 51.87417 -10.01944 H LK IE M 11 0 167 Europe/Dublin 2010-08-14 +2965331 Cloonagh Cloonagh Cloonagh,Cloonagh House 53.51667 -8.65 S BLDG IE C 10 0 76 Europe/Dublin 2010-08-10 +2965332 Lough Cloonadoon Lough Cloonadoon 53.32694 -9.48528 H LK IE C 10 0 77 Europe/Dublin 2010-08-14 +2965333 Cloonacool Cloonacool 54.10194 -8.7775 P PPL IE C 25 0 67 Europe/Dublin 2010-08-14 +2965334 Cloonacolly Lough Cloonacolly Lough 53.83333 -8.66667 H LK IE C 24 0 57 Europe/Dublin 1993-12-27 +2965335 Cloonacleigha Lough Cloonacleigha Lough 54.08222 -8.59278 H LK IE C 25 0 75 Europe/Dublin 2010-08-14 +2965336 Clonyn House Clonyn House Clonyn,Clonyn Castle,Clonyn House 53.61278 -7.1 S RUIN IE IE L 29 0 119 Europe/Dublin 2010-08-14 +2965337 Clonygowan Clonygowan Clonygowan,Cluain na nGamhan 53.1875 -7.27889 P PPL IE IE L 23 0 91 Europe/Dublin 2010-08-14 +2965338 Clontibret Clontibret Clontibret 54.20361 -6.83833 P PPL IE U 22 0 111 Europe/Dublin 2010-08-14 +2965339 Clontarf Clontarf 53.36244 -6.20822 P PPL IE L 07 0 1 Europe/Dublin 2010-08-14 +2965340 Clonsilla Clonsilla Clonsilla 53.38333 -6.41667 P PPL IE L 07 0 43 Europe/Dublin 2010-11-04 +2965341 Clonshire House Clonshire House 52.55472 -8.83417 S EST IE M 16 0 25 Europe/Dublin 2010-08-14 +2965342 Clonsast Lower Clonsast Lower Clonsast,Clonsast Lower 53.21 -7.15 P PPL IE IE L 23 0 78 Europe/Dublin 2010-08-14 +2965343 Clonroche Clonroche Clonroche,Cluain an Roistigh,Cluain an Róistigh 52.44972 -6.7125 P PPL IE L 30 0 77 Europe/Dublin 2010-08-14 +2965344 Clonoulty Clonoulty 52.60194 -7.96028 P PPL IE M 26 0 90 Europe/Dublin 2010-08-14 +2965345 Clonony Clonony Clonona,Clonony 53.23528 -7.925 P PPL IE IE L 23 0 61 Europe/Dublin 2010-08-14 +2965346 Clonmult Clonmult 51.99361 -8.10722 P PPL IE M 04 0 133 Europe/Dublin 2010-08-14 +2965347 Clonmoyle House Clonmoyle House Clonmoyle,Clonmoyle House 53.48333 -7.31667 S EST IE L 29 0 119 Europe/Dublin 2010-08-10 +2965348 Clonmore Clonmore 53.26722 -7.3825 P PPL IE L 23 0 77 Europe/Dublin 2010-08-14 +2965349 Clonmore Clonmore 52.82778 -7.76472 P PPL IE M 26 0 146 Europe/Dublin 2010-08-14 +2965350 Clonmore Clonmore 52.82472 -6.56889 P PPL IE L 01 0 154 Europe/Dublin 2010-08-14 +2965351 Clonmines House Clonmines House Clonmines,Clonmines House 52.25528 -6.75944 S BLDG IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2965352 Clonmellon Clonmellon Clonmellon,Raistin,Ráistín 53.6625 -7.01056 P PPL IE L 29 0 109 Europe/Dublin 2010-08-14 +2965353 Clonmel Clonmel Cluain Meala 52.355 -7.70389 P PPLA2 IE M 26 17394 36 Europe/Dublin 2010-08-14 +2965354 Clonmass Bay Clonmass Bay 55.17056 -7.86556 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2965355 Clonmany River Clonmany River 55.27972 -7.435 H STM IE U 06 0 34 Europe/Dublin 2010-08-14 +2965356 Clonmany Clonmany Clonmany,Cluain Maine 55.26667 -7.41667 P PPL IE U 06 0 61 Europe/Dublin 2010-08-14 +2965357 Clonmannan House Clonmannan House Clonmannan,Clonmannan House 53.01583 -6.06111 S EST IE IE L 31 0 1 Europe/Dublin 2010-08-14 +2965358 Clonlyon Clonlyon 53.28333 -7.88333 P PPL IE L 23 0 61 Europe/Dublin 1993-12-27 +2965359 Clonlost House Clonlost House Clonlost,Clonlost House 53.54472 -7.17556 S EST IE IE L 29 0 140 Europe/Dublin 2010-08-14 +2965360 Clonleigh Clonleigh 54.86083 -7.47278 P PPL IE U 06 0 5 Europe/Dublin 2010-08-14 +2965361 Clonkeen Clonkeen Clonkeen,Clonkeen Cross Roads 53.33833 -6.99444 P PPL IE IE L 12 0 84 Europe/Dublin 2010-08-14 +2965362 Clonhugh Station Clonhugh Station Clanhugh Station,Clonhugh,Clonhugh Station 53.6 -7.4 S RSTN IE L 29 0 106 Europe/Dublin 2010-08-10 +2965363 Clongeen Clongeen 52.29444 -6.765 P PPL IE L 30 0 31 Europe/Dublin 2010-08-14 +2965364 Clongarret Clongarret 53.26667 -7.13333 P PPL IE L 23 0 79 Europe/Dublin 1993-12-27 +2965365 Clonfert Clonfert Clonfert,Cluain Fearta 53.23889 -8.05667 P PPL IE C 10 0 59 Europe/Dublin 2010-08-14 +2965366 Clonevin Cross Roads Clonevin Cross Roads Clonevan,Clonevin Cross Roads 52.55694 -6.23111 P PPL IE IE L 30 0 3 Europe/Dublin 2010-08-14 +2965367 Cluain Eois Cluain Eois Clones 54.18333 -7.23333 P PPL IE U 22 1834 74 Europe/Dublin 2010-08-14 +2965368 Clonervy Clonervy 54.00667 -7.28167 S EST IE U 02 0 152 Europe/Dublin 2010-08-14 +2965369 Clone House Clone House 52.75472 -7.37611 S EST IE L 13 0 76 Europe/Dublin 2010-08-14 +2965370 Clonegall Clonegall Clonegal,Clonegall,Cluain na nGall 52.69056 -6.64528 P PPL IE L 01 0 75 Europe/Dublin 2010-08-14 +2965371 Cloneen Cloneen 52.47556 -7.59583 P PPL IE M 26 0 80 Europe/Dublin 2010-08-14 +2965372 Clonee Clonee Clonee,Cluain Aodha 53.41167 -6.44417 P PPL IE IE L 21 0 71 Europe/Dublin 2010-08-14 +2965373 Clonearl House Clonearl House Clonearl,Clonearl House 53.31667 -7.29833 S RUIN IE IE L 23 0 162 Europe/Dublin 2010-08-14 +2965374 Clonea Castle Clonea Castle 52.09889 -7.53639 S EST IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2965375 Clonea Clonea 52.27833 -7.43778 P PPL IE M 27 0 73 Europe/Dublin 2010-08-14 +2965376 Clondulane Clondulane Clondulane 52.1425 -8.22333 P PPL IE M 04 0 40 Europe/Dublin 2010-08-14 +2965377 Clondrohid Lodge Clondrohid Lodge Clondrohid,Clondrohid Lodge 51.91667 -9 S EST IE M 04 0 145 Europe/Dublin 2010-08-10 +2965378 Clonderalaw House Clonderalaw House Clonderalaw,Clonderalaw House 52.64417 -9.26917 S EST IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2965379 Clonderalaw Bay Clonderalaw Bay Clonderalaw Bay,Cloonderlaw Bay 52.62111 -9.32306 H BAY IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965380 Clondeglass House Clondeglass House 53.03778 -7.56694 S EST IE L 15 0 174 Europe/Dublin 2010-08-14 +2965381 Clondalkin Clondalkin Clondalkin,Cluain Dolcain,Cluain Dolcáin 53.32444 -6.39722 P PPL IE IE L 07 0 70 Europe/Dublin 2010-11-04 +2965382 Clondagad House Clondagad House 52.73806 -9.0825 S EST IE M 03 0 61 Europe/Dublin 2010-08-14 +2965383 Cloncurry Cloncurry 53.41694 -6.79028 P PPL IE L 12 0 86 Europe/Dublin 2010-08-14 +2965384 Cloncourse Bridge Cloncourse Bridge 53 -7.38333 P PPL IE L 15 0 121 Europe/Dublin 1993-12-27 +2965385 Cloncoskraine Cloncoskraine Cloncoscoran,Cloncoskoran House,Cloncoskraine 52.11556 -7.58111 S EST IE IE M 27 0 44 Europe/Dublin 2010-08-14 +2965386 Cloncarneel House Cloncarneel House Cloncarneel,Cloncarneel House 53.53444 -6.89694 S EST IE IE L 21 0 75 Europe/Dublin 2010-08-14 +2965387 Cloncagh Cloncagh 52.45639 -8.92944 P PPL IE M 16 0 77 Europe/Dublin 2010-08-14 +2965388 Clonbur Clonbur 53.53333 -9.36667 P PPL IE C 10 0 21 Europe/Dublin 1993-12-27 +2965389 Clonbulloge Clonbulloge Clonbulloge,Cluain Bolg 53.26167 -7.08806 P PPL IE IE L 23 0 78 Europe/Dublin 2010-08-14 +2965390 Clonbrock River Clonbrock River 53.40972 -8.34778 H STM IE C 10 0 70 Europe/Dublin 2010-08-14 +2965391 Clonbrock Clonbrock 53.40194 -8.38472 S EST IE C 10 0 73 Europe/Dublin 2010-08-14 +2965392 Clonbern Park Clonbern Park 53.55 -8.65 S EST IE C 10 0 76 Europe/Dublin 1993-12-27 +2965393 Clonbern Clonbern 53.56667 -8.63333 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2965394 Clonbeale House Clonbeale House Clonbeale,Clonbeale House 53.11944 -7.83694 S EST IE IE L 23 0 76 Europe/Dublin 2010-08-14 +2965395 Clonavoe Clonavoe 53.25806 -7.15167 P PPL IE L 23 0 80 Europe/Dublin 2010-08-14 +2965396 Clonaslee Clonaslee Clonaslee,Cluain na Sli,Cluain na Slí 53.1475 -7.52444 P PPL IE IE L 15 0 130 Europe/Dublin 2010-08-14 +2965397 Clonard Clonard Clonard 53.44722 -7.02361 P PPL IE L 21 0 96 Europe/Dublin 2010-08-14 +2965398 Clonamully House Clonamully House Clonamully House,Clonomully House 54.25583 -7.06944 S HSEC IE IE U 22 0 110 Europe/Dublin 2010-08-14 +2965399 Clonamery Clonamery 52.4725 -7.02194 P PPL IE L 13 0 113 Europe/Dublin 2010-08-14 +2965400 Clonakilty Junction Clonakilty Junction Clonakilty Junction,Clonakilty Junction Station 51.73333 -8.81667 S RSTN IE IE M 04 0 77 Europe/Dublin 2010-08-14 +2965401 Clonakilty Bay Clonakilty Bay 51.58194 -8.83306 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965402 Clonakilty Clonakilty Cloich na Coillte 51.62306 -8.87056 P PPL IE M 04 4065 10 Europe/Dublin 2010-08-14 +2965403 Clonakenny Clonakenny 52.87472 -7.8325 P PPL IE M 26 0 146 Europe/Dublin 2010-08-14 +2965404 Clonabreany Clonabreany 53.71778 -7.05806 S EST IE L 21 0 126 Europe/Dublin 2010-08-14 +2965405 Clohamon Clohamon Cloch Amainn,Cloch Ámainn,Clohamon 52.63806 -6.61694 P PPL IE L 30 0 60 Europe/Dublin 2010-08-14 +2965406 Clogrenan House Clogrenan House Cloghrenan,Clogrenan House 52.80528 -6.96833 S EST IE IE L 01 0 41 Europe/Dublin 2010-08-14 +2965407 Cloghroe River Cloghroe River 54.85 -7.73333 H STM IE U 06 0 85 Europe/Dublin 1993-12-27 +2965408 Cloghran Cloghran 53.43389 -6.22639 P PPL IE L 07 0 16 Europe/Dublin 2010-08-14 +2965409 Cloghore Cloghore Cloghope,Cloghore 54.48333 -8.1 P PPL IE IE 00 0 56 Europe/Dublin 2010-08-10 +2965410 Cloghmoyle Castle Cloghmoyle Castle 53.30139 -8.88167 S BLDG IE C 10 0 21 Europe/Dublin 2010-08-14 +2965411 Cloghmore Point Cloghmore Point 53.21667 -9.51667 T PT IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2965412 Cloghmore Cloghmore 53.87444 -9.95111 P PPL IE C 20 0 69 Europe/Dublin 2010-08-14 +2965413 Cloghjordan Cloghjordan Cloch Shiurdain,Cloch Shiurdáin,Cloghjordan,Cloughjordan 52.94028 -8.03556 P PPL IE IE M 26 0 111 Europe/Dublin 2010-11-04 +2965414 Clogherstown Clogherstown 53.5925 -6.36333 P PPL IE L 21 0 91 Europe/Dublin 2010-08-14 +2965415 Clogher Head Clogher Head 53.79972 -6.21944 T CAPE IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2965416 Clogher Head Clogher Head 52.15083 -10.48083 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965417 Cloghereen Cloghereen 52.03333 -9.48333 P PPL IE M 11 0 65 Europe/Dublin 1993-12-27 +2965418 Clogher Clogher 54.12694 -10.08667 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2965419 Clogher Clogher 53.83333 -9.46667 P PPL IE C 20 0 63 Europe/Dublin 1993-12-27 +2965420 Clogherhead Clogherhead Ceann Chlochair,Clogher,Clogherhead 53.79361 -6.2375 P PPL IE IE L 19 0 1 Europe/Dublin 2010-08-14 +2965421 Clogher Clogher 53.75 -9.23333 P PPL IE C 20 0 49 Europe/Dublin 1993-12-27 +2965422 Clogher Clogher 52.15528 -10.45722 P PPL IE M 11 0 70 Europe/Dublin 2010-08-14 +2965423 Clogher Clogher 53.93333 -8.25 S EST IE C 24 0 76 Europe/Dublin 1993-12-27 +2965424 Clogheen Clogheen An Cloichin,An Cloichín,Clogheen 52.27583 -7.99222 P PPL IE M 40 0 60 Europe/Dublin 2010-11-04 +2965425 Cloghdonnell Cloghdonnell 51.60583 -9.37806 P PPL IE M 04 0 153 Europe/Dublin 2010-08-14 +2965426 Cloghaun Cloghaun 53.05 -9.31667 P PPL IE M 03 0 136 Europe/Dublin 1993-12-27 +2965427 Cloghanulk Cloghanulk 53.08861 -9.32556 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965428 Cloghanower Castle Cloghanower Castle 53.45 -9.08333 S BLDG IE C 10 0 32 Europe/Dublin 1993-12-27 +2965429 Cloghan Lodge Cloghan Lodge 54.83111 -7.9275 S BLDG IE U 06 0 75 Europe/Dublin 2010-08-14 +2965430 Cloghaneely Cloghaneely 55.1 -8.15 L AREA IE U 06 0 76 Europe/Dublin 2010-08-14 +2965431 Cloghane Cloghane 52.23583 -10.18556 P PPL IE M 11 0 49 Europe/Dublin 2010-08-14 +2965432 Cloghane Cloghane 51.45528 -9.81583 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +2965433 Cloghan Castle Cloghan Castle 53.15667 -8.04611 S EST IE L 23 0 56 Europe/Dublin 2010-08-14 +2965434 Cloghan Cloghan 54.8425 -7.93361 P PPL IE U 06 0 132 Europe/Dublin 2010-08-14 +2965435 Cloghan Cloghan 53.55028 -7.23889 P PPL IE L 29 0 143 Europe/Dublin 2010-08-14 +2965436 Cloghan Cloghan An Clochan,An Clochán,Cloghan 53.22167 -7.88417 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +2965437 Clogh Clogh An Chloch,Clogh 52.86 -7.16694 P PPL IE L 13 0 149 Europe/Dublin 2010-08-14 +2965438 Clogh Clogh 52.64139 -6.34139 P PPL IE L 30 0 58 Europe/Dublin 2010-08-14 +2965439 River Clody River Clody 52.65583 -6.64889 H STM IE 00 0 63 Europe/Dublin 1998-02-09 +2965440 Clodiagh River Clodiagh River 53.28333 -7.7 H STM IE L 23 0 69 Europe/Dublin 2010-08-14 +2965441 Clodiagh River Clodiagh River 52.60472 -7.90639 H STM IE M 26 0 76 Europe/Dublin 2010-08-14 +2965442 Clodiagh River Clodiagh River Clodiach River,Clodiagh River 52.29 -7.28583 H STM IE IE M 27 0 14 Europe/Dublin 2010-08-14 +2965443 Clobemon Hall Clobemon Hall 52.60389 -6.58833 S EST IE L 30 0 60 Europe/Dublin 2010-08-14 +2965444 Clifton Lodge Clifton Lodge 53.59333 -6.88083 S EST IE L 21 0 78 Europe/Dublin 2010-08-14 +2965445 Cliffort Cliffort 51.7575 -8.66694 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +2965446 Cliffony Cliffony Cliafuine,Cliffony 54.43389 -8.45417 P PPL IE IE C 25 0 1 Europe/Dublin 2010-08-14 +2965447 Clifden Castle Clifden Castle 53.49306 -10.05694 S EST IE C 10 0 83 Europe/Dublin 2010-08-14 +2965448 Clifden Bay Clifden Bay 53.48917 -10.07 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965449 Clifden Clifden An Clochan,An Clochán,Clifden,Klifden,Клифден 53.48333 -10.01667 P PPL IE C 10 1929 46 Europe/Dublin 2011-03-06 +2965450 Clew Bay Clew Bay Clew Bay 53.83333 -9.8 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-10 +2965451 Clermont Carn Clermont Carn Clermont Carn 54.07861 -6.32333 T MT IE L 19 0 510 444 Europe/Dublin 2010-08-14 +2965452 Cleraun Cleraun 53.55 -7.95 P PPL IE L 18 0 62 Europe/Dublin 1993-12-27 +2965453 Clements Town Clements Town 54.08056 -7.0975 P PPL IE U 02 0 78 Europe/Dublin 2010-08-14 +2965454 Cleggan Bay Cleggan Bay 53.56583 -10.12694 H BAY IE C 10 0 1 Europe/Dublin 2010-08-14 +2965455 Cleggan Cleggan An Cloigeann,Cleggan 53.55 -10.11667 P PPL IE C 10 0 79 Europe/Dublin 2010-08-14 +2965456 Clear Island Clear Island Cape Clear Island,Clear Island 51.44056 -9.49611 T ISL IE IE M 04 0 11 Europe/Dublin 2010-08-14 +2965457 Cape Clear Cape Clear Cape Clear 51.42556 -9.51889 T CAPE IE M 04 0 19 Europe/Dublin 2010-08-14 +2965458 Cleanagh Cleanagh 52.90833 -7.21417 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +2965459 Cleady Cleady 51.9 -9.53333 P PPL IE M 11 0 66 Europe/Dublin 1993-12-27 +2965460 Clawinch Clawinch 53.6 -8.01667 T ISL IE L 18 0 62 Europe/Dublin 1993-12-27 +2965461 Classybaun Harbour Classybaun Harbour 54.46667 -8.43333 H HBR IE C 25 0 -9999 Europe/Dublin 1993-12-27 +2965462 Clashnabrock Clashnabrock 52.16667 -8.58333 P PPL IE M 04 0 76 Europe/Dublin 1993-12-27 +2965463 Clashmore Clashmore Clais Mhor,Clais Mhór,Clashmore 52.00306 -7.81944 P PPL IE IE M 27 0 39 Europe/Dublin 2010-08-14 +2965464 Clashganna Bridge Clashganna Bridge Clashganna,Clashganna Bridge 52.55 -6.9 P PPL IE IE L 01 0 76 Europe/Dublin 2010-08-14 +2965465 Clarinbridge River Clarinbridge River Clarin River,Clarinbridge River 53.22639 -8.88306 H STM IE IE C 10 0 4 Europe/Dublin 2010-08-14 +2965466 Clarinbridge Clarinbridge Clarinbridge,Droichead an Chlairin,Droichead an Chláirín 53.22861 -8.8775 P PPL IE C 10 0 4 Europe/Dublin 2010-08-14 +2965467 Clarina Clarina 52.63222 -8.72889 P PPL IE M 16 0 6 Europe/Dublin 2010-08-14 +2965468 Clareville House Clareville House 53.11667 -9.13333 S HSEC IE M 03 0 34 Europe/Dublin 2010-08-14 +2965469 Clareville Clareville 53.11667 -9.13333 P PPL IE M 03 0 34 Europe/Dublin 2010-08-14 +2965470 Clare River Clare River 52.69389 -8.41028 H STM IE M 26 0 64 Europe/Dublin 2010-08-14 +2965471 Claremorris Claremorris Clar Chlainne Mhuiris,Claremorris,Clár Chlainne Mhuiris 53.71667 -9 P PPL IE C 20 2168 75 Europe/Dublin 2010-08-14 +2965472 Claremount House Claremount House Claremont House,Claremount House 53.46667 -8.26667 S EST IE IE C 24 0 68 Europe/Dublin 2010-08-14 +2965473 Clare Island Clare Island Clare Island 53.80472 -9.99194 T ISL IE C 20 0 90 Europe/Dublin 2010-08-14 +2965474 Claregalway Claregalway Baile Chlair,Baile Chláir,Claregalway 53.33861 -8.945 P PPL IE C 10 0 12 Europe/Dublin 2010-08-14 +2965475 Clareen Clareen 53.07056 -7.79556 P PPL IE L 23 0 114 Europe/Dublin 2010-08-14 +2965476 Clarecastle Clarecastle Clare,Clarecastle,Droichead an Chlair,Droíchead an Chláir 52.81556 -8.96667 P PPL IE M 03 0 13 Europe/Dublin 2010-08-14 +2965477 Clare Abbey Clare Abbey 52.82944 -8.97667 S RUIN IE M 03 0 18 Europe/Dublin 2010-08-14 +2965478 River Clare River Clare 53.32861 -9.04444 H STM IE C 10 0 6 Europe/Dublin 2010-08-14 +2965479 An Clár An Clar Clare,Contae an Chlair,Contae an Chláir,County Clare 52.83333 -9 A ADM2 IE M 03 106924 54 Europe/Dublin 2010-08-14 +2965480 Clar Bridge Station Clar Bridge Station Clar Bridge,Clar Bridge Station,Clar Halt 54.66667 -8.06667 S RSTN IE U 06 0 49 Europe/Dublin 2010-08-10 +2965481 Clara Bridge Clara Bridge 52.95 -6.25 P PPL IE L 31 0 109 Europe/Dublin 2010-08-14 +2965482 Clara Clara Clara,Cloirtheach,Clóirtheach 53.3425 -7.61389 P PPL IE L 23 2783 71 Europe/Dublin 2010-08-14 +2965483 Clara Clara 52.96889 -6.25556 P PPL IE L 31 0 160 Europe/Dublin 2010-08-14 +2965484 Clane Clane Clane,Claonadh 53.29139 -6.68917 P PPL IE L 12 5155 83 Europe/Dublin 2010-08-14 +2965485 Clamper Cross Clamper Cross 52.2 -9.18333 P PPL IE M 04 0 274 Europe/Dublin 1993-12-27 +2965486 Clahane Clahane 52.23333 -9.7 P PPL IE M 11 0 209 Europe/Dublin 1993-12-27 +2965487 Claggan Upper Claggan Upper 55.2 -8 P PPL IE U 06 0 90 Europe/Dublin 1993-12-27 +2965488 Claggan Mountain Claggan Mountain 53.93083 -9.77444 T MT IE C 20 0 382 160 Europe/Dublin 2010-08-14 +2965489 Claggan Lower Claggan Lower 55.2 -8 P PPL IE U 06 0 90 Europe/Dublin 1993-12-27 +2965490 Claggan Claggan 55.23333 -6.98333 P PPL IE U 06 0 210 Europe/Dublin 1993-12-27 +2965491 Claggan Claggan Claggan,Cleggan Lower,Cleggan Upper 55.2 -8 P PPL IE U 06 0 90 Europe/Dublin 2010-08-10 +2965492 Claggan Claggan 53.5 -9.5 P PPL IE C 10 0 63 Europe/Dublin 1993-12-27 +2965493 Clady River Clady River 55.05806 -8.31417 H STM IE U 06 0 1 Europe/Dublin 2010-08-14 +2965494 Clady Clady 54.78333 -7.55 S RSTN IE 00 0 61 Europe/Dublin 1993-12-27 +2965495 Claddagh Claddagh 53.26667 -9.06667 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2965496 Chute Hall Chute Hall 52.28333 -9.63333 S EST IE M 11 0 75 Europe/Dublin 1993-12-27 +2965497 Church Village Church Village 53.99722 -9.07278 P PPL IE C 20 0 75 Europe/Dublin 2010-08-14 +2965498 Church Town Church Town 54.96028 -7.47278 P PPL IE U 06 0 59 Europe/Dublin 2010-08-14 +2965499 Churchtown Churchtown 53.48333 -7.48333 P PPL IE L 29 0 129 Europe/Dublin 1993-12-27 +2965500 Churchtown Churchtown 52.45722 -9.06806 P PPL IE M 16 0 73 Europe/Dublin 2010-08-14 +2965501 Churchtown Churchtown Baile an Teampail,Churchtown 52.26667 -8.73333 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +2965502 Churchtown Churchtown 52.185 -6.35417 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2965503 Churchtown Churchtown 52.13139 -6.91972 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2965504 Churchtown Churchtown 52.06667 -9.68333 P PPL IE M 11 0 29 Europe/Dublin 1993-12-27 +2965505 Churchtown Churchtown 51.91361 -8.12806 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +2965506 Churchtown Churchtown 51.82806 -8.08083 P PPL IE M 04 0 16 Europe/Dublin 2010-08-14 +2965507 Church Hill Church Hill Church Hill,Min an Labain,Mín an Lábáin 54.98333 -7.86667 P PPL IE U 06 0 184 Europe/Dublin 2010-08-14 +2965508 Cherryville Junction Cherryville Junction Carlow Junction,Cherryville Junction 53.15 -6.96667 R RJCT IE IE L 12 0 96 Europe/Dublin 2010-08-14 +2965509 Cherryville Cherryville 53.15694 -6.96667 P PPL IE L 12 6380 105 Europe/Dublin 2010-08-14 +2965510 Cherrymount Cherrymount 53.77972 -6.91389 S EST IE L 21 0 86 Europe/Dublin 2010-08-14 +2965511 Cheekpoint Cheekpoint 52.27083 -6.99833 P PPL IE M 27 0 1 Europe/Dublin 2010-08-14 +2965512 Charleville Junction Charleville Junction 52.36667 -8.65 S RSTN IE M 16 0 76 Europe/Dublin 1993-12-27 +2965513 Charleville House Charleville House 53.88333 -9.18333 S EST IE C 20 0 39 Europe/Dublin 2010-08-14 +2965514 Charleville House Charleville House 52.95111 -7.67972 S EST IE L 15 0 138 Europe/Dublin 2010-08-14 +2965515 Charleville Castle Charleville Castle 53.25889 -7.51917 S EST IE L 23 0 73 Europe/Dublin 2010-08-14 +2965516 Ráth Luirc Rath Luirc Charleville,Rath Luirc,Ráth Luirc 52.35 -8.68333 P PPL IE M 04 2674 109 Europe/Dublin 2010-08-14 +2965517 Charleville Charleville 53.86361 -6.41528 S EST IE L 19 0 2 Europe/Dublin 2010-08-14 +2965518 Charlestown Charlestown Baile Chathail,Charlestown,Newtown-Dillon 53.96417 -8.79417 P PPL IE C 20 0 76 Europe/Dublin 2010-08-14 +2965519 Charlestown Charlestown 53.33972 -7.60306 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +2965520 Charlesfort House Charlesfort House Charlesfort,Charlesfort House 52.61694 -6.55 S EST IE IE L 30 0 76 Europe/Dublin 2010-08-14 +2965521 Charlesfort Charlesfort Charlesfort,Charlesfort House 53.68583 -6.83833 S EST IE IE L 21 0 71 Europe/Dublin 2010-08-14 +2965522 Chapeltown Chapeltown 52.28333 -9.83333 P PPL IE M 11 0 3 Europe/Dublin 2010-08-14 +2965523 Chapelmidway Chapelmidway 53.4575 -6.31028 P PPL IE L 07 0 52 Europe/Dublin 2010-08-14 +2965524 Chapelizod House Chapelizod House Chapelizod,Chapelizod House 52.51194 -7.27639 S EST IE IE L 13 0 71 Europe/Dublin 2010-08-14 +2965525 Chapelizod Chapelizod 53.34889 -6.34667 P PPL IE L 07 0 16 Europe/Dublin 2010-08-14 +2965526 Chapel Chapel 52.43639 -6.69917 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +2965527 Chaffpool House Chaffpool House Chaffpool,Chaffpool House 54.05056 -8.65694 S HSEC IE IE C 25 0 83 Europe/Dublin 2010-08-14 +2965528 Central Plain Central Plain Central Lowland,Central Plain,Great Plain 53.5 -8 L AREA IE C 24 0 62 Europe/Dublin 2010-08-10 +2965529 Celbridge Celbridge Celbridge,Cill Droichid 53.33861 -6.54361 P PPL IE L 12 18167 54 Europe/Dublin 2010-08-14 +2965530 Cecilstown Cecilstown 52.16667 -8.78333 P PPL IE M 04 0 102 Europe/Dublin 1993-12-27 +2965531 Cavetown Cavetown 53.93333 -8.25 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2965532 Cavanagarvan Cavanagarvan 54.19 -6.98889 P PPL IE U 22 0 153 Europe/Dublin 2010-08-14 +2965533 Cavanacor House Cavanacor House 54.84833 -7.51528 S HSEC IE U 06 0 7 Europe/Dublin 2010-08-14 +2965534 An Cabhán An Cabhan Cavan,Contae an Chabhain,Contae an Chabháin,County Cavan 53.91667 -7.25 A ADM2 IE U 02 57473 164 Europe/Dublin 2010-08-14 +2965535 An Cabhán An Cabhan Cavan 53.99083 -7.36056 P PPLA2 IE U 02 6388 101 Europe/Dublin 2010-08-14 +2965536 Causeway Causeway An Tochar,An Tóchar,Causeway 52.41333 -9.73194 P PPL IE M 11 0 117 Europe/Dublin 2010-08-14 +2965537 Cathedral Rocks Cathedral Rocks 53.95194 -10.05056 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2965538 Castle Wray Castle Wray 54.98139 -7.66861 S EST IE U 06 0 30 Europe/Dublin 2010-08-14 +2965539 Castle Willington Castle Willington 52.88417 -8.09667 S EST IE M 26 0 98 Europe/Dublin 2010-08-14 +2965540 Castle Widenham Castle Widenham 52.17 -8.46139 S EST IE M 04 0 58 Europe/Dublin 2010-08-14 +2965541 Castlewarren Castlewarren Castlewarren 52.6925 -7.10528 P PPL IE L 13 0 174 Europe/Dublin 2010-08-14 +2965542 Castle Waller Castle Waller 52.71417 -8.35583 S EST IE M 26 0 192 Europe/Dublin 2010-08-14 +2965543 Castle View Castle View 53.11667 -8.13333 S EST IE 00 0 60 Europe/Dublin 1993-12-27 +2965544 Castletownshend Castletownshend Baile an Chaisleain,Baile an Chaisleáin,Castletownsend,Castletownshend 51.52639 -9.18333 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965545 Castle Townsend Castle Townsend Castle Townsend,Castletownshend House 51.52972 -9.18278 S EST IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965546 Castletownroche Station Castletownroche Station Castletownroche,Castletownroche Station 52.15 -8.5 S RSTN IE IE M 04 0 53 Europe/Dublin 2010-08-14 +2965547 Castletownroche Castletownroche Baile Chaisleain an Roistigh,Baile Chaisleáin an Róistigh,Castletownroche 52.17333 -8.4625 P PPL IE M 04 0 58 Europe/Dublin 2010-08-14 +2965548 Castletown River Castletown River Castletown River 54 -6.4 H STM IE 00 0 1 Europe/Dublin 1998-02-13 +2965549 Castletown River Castletown River 53.985 -6.22056 H STM IE L 19 0 2 Europe/Dublin 2010-08-14 +2965550 Castletown Manor Castletown Manor Castletown House,Castletown Manor 54.17667 -9.08833 S EST IE IE C 25 0 21 Europe/Dublin 2010-08-14 +2965551 Castletown Manor Castletown Manor Castletown House,Castletown Manor 52.645 -8.89361 S EST IE IE M 16 0 3 Europe/Dublin 2010-08-14 +2965552 Castletown Conyers Castletown Conyers 52.42111 -8.82111 S EST IE M 16 0 146 Europe/Dublin 2010-08-14 +2965553 Castletown Castle Castletown Castle Castletown Castle,Castletown House 54.015 -6.42583 S EST IE IE L 19 0 7 Europe/Dublin 2010-08-14 +2965554 Castletown Bearhaven Castletown Bearhaven Baile Chaisleain Bhearra,Baile Chaisleáin Bhéarra,Castletown,Castletown Bearhaven,Castletown Berehaven 51.65 -9.91667 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965555 Castletown Gheoghegan Castletown Gheoghegan Castletown,Castletown Gheoghegan 53.45 -7.48333 P PPL IE IE L 29 0 108 Europe/Dublin 2010-08-14 +2965556 Castletown Castletown 53.35222 -6.52694 P PPL IE L 12 0 53 Europe/Dublin 2010-08-14 +2965557 Castletown Castletown 53.02806 -9.06861 P PPL IE M 03 0 152 Europe/Dublin 2010-08-14 +2965558 Castletown Castletown Baile an Chaisleain,Baile an Chaisleáin,Castletown 52.97639 -7.4925 P PPL IE L 15 0 105 Europe/Dublin 2010-08-14 +2965559 Castletown Castletown 52.42278 -8.81444 P PPL IE M 16 0 145 Europe/Dublin 2010-08-14 +2965560 Castletown Castletown Castletown,Castletown Kinneigh 51.77167 -8.96111 P PPL IE IE M 04 0 148 Europe/Dublin 2010-08-14 +2965561 Castletown Castletown Castle Cambie,Castletown 52.98083 -8.26611 S EST IE IE M 26 0 141 Europe/Dublin 2010-11-04 +2965562 Castle Taylor Castle Taylor 53.17278 -8.79333 S EST IE C 10 0 28 Europe/Dublin 2010-08-14 +2965563 Castlestrange Bridge Castlestrange Bridge 53.58333 -8.26667 P PPL IE C 24 0 69 Europe/Dublin 1993-12-27 +2965564 Castlestrange Castlestrange 53.58333 -8.26667 S EST IE C 24 0 69 Europe/Dublin 1993-12-27 +2965565 Castleshannon Castleshannon 52.43333 -9.79194 P PPL IE M 11 0 62 Europe/Dublin 2010-08-14 +2965566 Castleshane House Castleshane House Castleshane,Castleshane House 54.23167 -6.88194 S EST IE IE U 22 0 80 Europe/Dublin 2010-08-14 +2965567 Castle Saunderson Castle Saunderson 54.125 -7.36222 S EST IE U 02 0 141 Europe/Dublin 2010-08-14 +2965568 Castle Roche Cross Roads Castle Roche Cross Roads 54.04694 -6.49028 P PPL IE L 19 0 56 Europe/Dublin 2010-08-14 +2965569 Castlerickard House Castlerickard House Castlerickard,Castlerickard House 53.48944 -6.91361 S EST IE IE L 21 0 78 Europe/Dublin 2010-08-14 +2965570 Castlerea Castlerea An Caislean Riabhach,An Caisleán Riabhach,Castlerea,Castlereagh 53.76667 -8.5 P PPL IE C 24 1770 75 Europe/Dublin 2010-08-14 +2965571 Castlereagh Castlereagh 54.22139 -9.26556 S EST IE C 20 0 29 Europe/Dublin 2010-08-14 +2965572 Castlequin Castlequin 51.95861 -10.23778 P PPL IE M 11 0 91 Europe/Dublin 2010-08-14 +2965573 Castlepollard Castlepollard Baile na gCros,Castelpollard,Castlepollard 53.66667 -7.3 P PPL IE L 29 0 108 Europe/Dublin 2010-08-14 +2965574 Castle Point Castle Point 52.65806 -9.72111 T PT IE M 03 0 43 Europe/Dublin 2010-08-14 +2965575 Castleplunket Castleplunket Castleplunket 53.75 -8.33333 P PPL IE C 24 0 92 Europe/Dublin 2010-08-10 +2965576 Castle Park House Castle Park House Castle Park,Castle Park House 52.16667 -8.9 S EST IE M 04 0 110 Europe/Dublin 2010-08-10 +2965577 Castle Park Castle Park 53.35 -8.15 S RUIN IE C 24 0 79 Europe/Dublin 1993-12-27 +2965578 Castle Otway Castle Otway 52.77917 -8.0775 S EST IE M 26 0 145 Europe/Dublin 2010-08-14 +2965579 Castleore Castleore 54.2125 -8.38722 P PPL IE C 25 0 80 Europe/Dublin 2010-08-14 +2965580 Castleoliver Castleoliver 52.32333 -8.47611 S EST IE M 16 0 152 Europe/Dublin 2010-08-14 +2965581 Castle Nugent Castle Nugent 53.73333 -7.51667 S EST IE L 18 0 95 Europe/Dublin 1993-12-27 +2965582 Castlenode House Castlenode House Castlenode,Castlenode House 53.75 -8.08333 S BLDG IE C 24 0 86 Europe/Dublin 2010-08-10 +2965583 Castle Neynoe Castle Neynoe 54.17833 -8.38861 S EST IE C 25 0 76 Europe/Dublin 2010-08-14 +2965584 Castlemoyle Castlemoyle 53.5 -8.75 P PPL IE C 10 0 91 Europe/Dublin 1993-12-27 +2965585 Castle Morres Castle Morres Castle Morres,Castlemorris 52.46 -7.28056 S EST IE IE L 13 0 137 Europe/Dublin 2010-08-14 +2965586 Castlemore Castlemore 53.9 -8.61667 S EST IE C 24 0 77 Europe/Dublin 1993-12-27 +2965587 Castlemasters Castlemasters 51.85 -9.1 S EST IE M 04 0 131 Europe/Dublin 1993-12-27 +2965588 Castle Mary Castle Mary 51.86083 -8.1525 S EST IE M 04 0 75 Europe/Dublin 2010-08-14 +2965589 Castlemartyr House Castlemartyr House Castlemartyr,Castlemartyr House 51.9 -8.06667 S EST IE IE M 04 0 75 Europe/Dublin 2010-08-14 +2965590 Castlemartyr Castlemartyr Baile na Martra,Castlemartyr 51.91028 -8.05389 P PPL IE M 04 0 51 Europe/Dublin 2010-08-14 +2965591 Castlemartin Castlemartin 53.13389 -6.75417 S EST IE L 12 0 112 Europe/Dublin 2010-08-14 +2965592 Castlemaine Harbour Castlemaine Harbour 52.14333 -9.86778 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965593 Castlemaine Castlemaine Caislean na Mainge,Caisleán na Mainge,Castlemaine 52.16667 -9.7 P PPL IE M 11 0 61 Europe/Dublin 2010-08-14 +2965594 Castlemagarret Castlemagarret Castle MacGarret,Castlemagarret,Castlemagarret House 53.68333 -8.98333 S EST IE C 20 0 79 Europe/Dublin 2010-08-10 +2965595 Castlelyons Castlelyons Caislean O Liathain,Caisleán Ó Liatháin,Castlelyons 52.08694 -8.27889 P PPL IE M 04 0 71 Europe/Dublin 2010-08-14 +2965596 Castlelough Castlelough 52.89333 -8.38861 S EST IE M 26 0 58 Europe/Dublin 2010-08-14 +2965597 Castle Lambert Castle Lambert 53.30833 -8.81028 S EST IE C 10 0 38 Europe/Dublin 2010-08-14 +2965598 Castle Lacken Castle Lacken Castle Lacken,Castlelackan 54.26667 -9.26667 S EST IE IE C 20 0 51 Europe/Dublin 2010-08-14 +2965599 Castleknock Castleknock 53.37483 -6.36336 P PPL IE L 07 0 18 Europe/Dublin 2010-08-14 +2965600 Castlekevin Castlekevin 53.01639 -6.245 S EST IE L 31 0 301 Europe/Dublin 2010-08-14 +2965601 Castle Kevin Castle Kevin 52.16667 -8.55 S EST IE M 04 0 79 Europe/Dublin 1993-12-27 +2965602 Castlejordan Castlejordan 53.40028 -7.12611 P PPL IE L 21 0 118 Europe/Dublin 2010-08-14 +2965603 Bal Iver Bal Iver Bal Iver,Castle Iver 53.19861 -7.9275 S EST IE IE L 23 0 106 Europe/Dublin 2010-08-14 +2965604 Castleisland Castleisland Castleisland,Oilean Ciarrai,Oileán Ciarraí 52.23333 -9.46667 P PPL IE M 11 2122 29 Europe/Dublin 2010-08-14 +2965605 Castle Island Castle Island 51.51 -9.50583 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965606 Castle Ievers Castle Ievers Castle Ievers,Castle Tevers 52.47444 -8.65806 S EST IE IE M 16 0 156 Europe/Dublin 2010-08-14 +2965607 Castle Howard Castle Howard 52.88444 -6.21806 S EST IE L 31 0 136 Europe/Dublin 2010-08-14 +2965608 Castle House Castle House Cashel House,Castle House 53.23333 -9.48333 S HSEC IE C 10 0 -9999 Europe/Dublin 2010-08-10 +2965609 Castlehill House Castlehill House Castlehill,Castlehill House 54.045 -9.31694 S EST IE IE C 20 0 24 Europe/Dublin 2010-08-14 +2965610 Castle Haven Castle Haven 51.52472 -9.18222 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965611 Castle Harrison Castle Harrison 52.31667 -8.66667 S EST IE M 04 0 121 Europe/Dublin 1993-12-27 +2965612 Castle Hamilton Castle Hamilton 54.01667 -7.51667 S RUIN IE U 02 0 102 Europe/Dublin 2010-08-14 +2965613 Castle Hacket Castle Hacket 53.5 -8.96667 S EST IE C 10 0 76 Europe/Dublin 1993-12-27 +2965614 Castlegrove House Castlegrove House Castlegrove,Castlegrove House 53.56667 -8.93333 S EST IE C 10 0 56 Europe/Dublin 2010-08-10 +2965615 Castlegrove Castlegrove 54.98778 -7.65111 S EST IE U 06 0 20 Europe/Dublin 2010-08-14 +2965616 Castlegregory Castlegregory Caislean Ghriaire,Caisleán Ghriaire,Castlegregory 52.25806 -10.0225 P PPL IE M 11 0 31 Europe/Dublin 2010-08-14 +2965617 Castlegrace House Castlegrace House Castle Grace,Castlegrace House 52.28056 -7.955 S HSEC IE IE M 26 0 67 Europe/Dublin 2010-11-04 +2965618 Castle Garden House Castle Garden House 53.17472 -7.97472 S BLDG IE L 23 0 92 Europe/Dublin 2010-08-14 +2965619 Castle Garde Castle Garde 52.59833 -8.29917 S EST IE M 16 0 70 Europe/Dublin 2010-08-14 +2965620 Castlegar Castlegar 53.40111 -8.28528 S EST IE C 10 0 68 Europe/Dublin 2010-08-14 +2965621 Castle Freke Castle Freke 51.56667 -8.96667 S EST IE M 04 0 35 Europe/Dublin 2010-08-14 +2965622 Castleforward Castleforward 54.99917 -7.48444 P PPL IE U 06 0 52 Europe/Dublin 2010-08-14 +2965623 Castlefore Castlefore 54.0275 -7.90639 P PPL IE C 14 0 50 Europe/Dublin 2010-08-14 +2965624 Castle Forbes Castle Forbes 53.76667 -7.85 S EST IE L 18 0 72 Europe/Dublin 1993-12-27 +2965625 Castle Fogarty Castle Fogarty 52.68611 -7.91694 S EST IE M 26 0 82 Europe/Dublin 2010-08-14 +2965626 Castlefinn Castlefinn Caislean na Finne,Caisleán na Finne,Castlefinn 54.8 -7.58333 P PPL IE IE U 06 0 32 Europe/Dublin 2010-08-14 +2965627 Castle Ffrench Castle Ffrench 53.45 -8.35 S EST IE C 10 0 71 Europe/Dublin 1993-12-27 +2965628 Castle Ellen Castle Ellen 53.33472 -8.7625 S EST IE C 10 0 62 Europe/Dublin 2010-08-14 +2965629 Castle Durrow Castle Durrow 52.84417 -7.40111 S EST IE L 15 0 86 Europe/Dublin 2010-08-14 +2965630 Castle Donovan Castle Donovan 51.70083 -9.28417 S RUIN IE M 04 0 285 Europe/Dublin 2010-08-14 +2965631 Castledockrell Castledockrell 52.58278 -6.60417 P PPL IE L 30 0 69 Europe/Dublin 2010-08-14 +2965632 Castledermot Castledermot Castledermot,Diseart Diarmada,Díseart Diarmada 52.90889 -6.84222 P PPL IE L 12 0 152 Europe/Dublin 2010-08-14 +2965633 Castle Dargan House Castle Dargan House Castle Dargan,Castle Dargan House 54.1975 -8.43583 S EST IE IE C 25 0 63 Europe/Dublin 2010-08-14 +2965634 Castle Daly Castle Daly 53.38333 -7.8 S EST IE L 29 0 77 Europe/Dublin 2010-08-14 +2965635 Castle Daly Castle Daly 53.13139 -8.71278 S EST IE C 10 0 77 Europe/Dublin 2010-08-14 +2965636 Castle Crine Castle Crine 52.7575 -8.75667 S EST IE M 03 0 115 Europe/Dublin 2010-08-14 +2965637 Castlecor Castlecor 53.77417 -7.19528 P PPL IE L 21 0 100 Europe/Dublin 2010-08-14 +2965638 Castlecor Castlecor 52.2 -8.8 P PPL IE M 04 0 129 Europe/Dublin 1993-12-27 +2965639 Castlecoote Castlecoote 53.61667 -8.28333 P PPL IE C 24 0 73 Europe/Dublin 1993-12-27 +2965640 Castle Cooke Castle Cooke 52.18361 -8.175 S EST IE M 04 0 117 Europe/Dublin 2010-08-14 +2965641 Castleconor Castleconor 54.16278 -9.12944 P PPL IE C 25 0 3 Europe/Dublin 2010-08-14 +2965642 Castlecomer House Castlecomer House 52.80389 -7.20306 S EST IE L 13 0 150 Europe/Dublin 2010-08-14 +2965643 Castlecomer Castlecomer Caislean an Chomair,Caisleán an Chomair,Castlecomer 52.80611 -7.21056 P PPL IE L 13 1686 121 Europe/Dublin 2010-08-14 +2965644 Castle Cary Castle Cary 55.16667 -7.1 P PPL IE U 06 0 35 Europe/Dublin 1993-12-27 +2965645 Castlebridge Castlebridge Castlebridge,Droichead an Chaisleain,Droichead an Chaisleáin 52.38639 -6.44944 P PPL IE L 30 0 8 Europe/Dublin 2010-08-14 +2965646 Castleboy Castleboy 53.15083 -8.69889 S EST IE C 10 0 61 Europe/Dublin 2010-08-14 +2965647 Castleboro House Castleboro House Castleboro House,Castleborough 52.48028 -6.71889 S EST IE IE L 30 0 75 Europe/Dublin 2010-08-14 +2965648 Castle Blunden Castle Blunden 52.63806 -7.28917 S EST IE L 13 0 71 Europe/Dublin 2010-08-14 +2965649 Baile na Lorgan Baile na Lorgan Castleblayney 54.11667 -6.73333 P PPL IE U 22 3006 135 Europe/Dublin 2010-08-14 +2965650 Castleblakeney Castleblakeney Castleblakeney,Castleblakeny,Gallach 53.43333 -8.48333 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2965651 Castleblagh Castleblagh 52.11641 -8.40746 P PPL IE M 04 0 186 Europe/Dublin 2010-08-14 +2965652 Castle Bernard Castle Bernard 51.74306 -8.755 S EST IE M 04 0 69 Europe/Dublin 2010-08-14 +2965653 Castlebellingham Castlebellingham Baile an Ghearlanaigh,Baile an Ghearlánaigh,Castlebellingham 53.90083 -6.39028 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +2965654 Castlebar Castlebar Caislean an Bharraigh,Caisleán an Bharraigh 53.85 -9.3 P PPLA2 IE IE C 20 12874 48 49 Europe/Dublin 2010-08-14 +2965655 Castle Armstrong Castle Armstrong 53.31667 -7.73333 S EST IE L 23 0 98 Europe/Dublin 2010-08-14 +2965656 Cashlieve House Cashlieve House 53.76667 -8.6 S EST IE C 24 0 72 Europe/Dublin 1993-12-27 +2965657 Cashla Bay Cashla Bay 53.2425 -9.57028 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965658 Cashen River Cashen River 52.48 -9.65722 H STM IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965659 Casheltown Casheltown 54.67556 -8.29361 P PPL IE U 06 0 141 Europe/Dublin 2010-08-14 +2965660 Cashelmore Cashelmore 55.13889 -7.91556 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2965661 Cashel Bay Cashel Bay 53.41028 -9.82694 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965662 Rock of Cashel Rock of Cashel Cashel,Cashel kirkeruin,Castelo de Cashel,Castelo roqueiro,Rocca di Cashel,Rock of Cashel 52.52139 -7.88778 T HLL IE M 26 0 137 Europe/Dublin 2010-11-04 +2965663 Cashel Cashel 53.61667 -8.61667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2965664 Cashel Cashel Caiseal 52.51583 -7.88556 P PPL IE M 26 2798 135 Europe/Dublin 2010-08-14 +2965665 Cashel Cashel 51.61667 -9.08333 P PPL IE M 04 0 140 Europe/Dublin 1993-12-27 +2965666 Casheen Bay Casheen Bay 53.26861 -9.73278 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965667 Carton Carton 53.3925 -6.56361 P PPL IE L 12 0 66 Europe/Dublin 2010-08-14 +2965668 Carrowwilkin Carrowwilkin Carrowilkin,Carrowwilkin 54.01667 -8.76667 P PPL IE C 25 0 71 Europe/Dublin 2010-08-10 +2965669 Carrowroe Park Carrowroe Park Carrowroe House,Carrowroe Park 53.61667 -8.15 S EST IE C 24 0 70 Europe/Dublin 2010-08-10 +2965670 Carrowreagh Carrowreagh 54.26472 -8.6575 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +2965671 Carrowreagh Carrowreagh 53.38139 -8.19389 P PPL IE C 24 0 73 Europe/Dublin 2010-08-14 +2965672 Carrowntryla House Carrowntryla House Carrowntryla,Carrowntryla House 53.58333 -8.73333 S EST IE C 10 0 78 Europe/Dublin 2010-08-10 +2965673 Carrownrush Point Carrownrush Point 54.3 -9.01667 T PT IE C 25 0 1 Europe/Dublin 1993-12-27 +2965674 Carrownisky River Carrownisky River 53.7225 -9.89944 H STM IE C 20 0 31 Europe/Dublin 2010-08-14 +2965675 Carrownamaddy River Carrownamaddy River Carrowmaddy,Carrownamaddy,Carrownamaddy River 55.16667 -7.88333 H STM IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2965676 Carrownabinna Point Carrownabinna Point 54.28722 -8.91056 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +2965677 Carrowmore Point Carrowmore Point 52.76944 -9.49917 T PT IE M 03 0 4 Europe/Dublin 2010-08-14 +2965678 Carrowmore Lough Carrowmore Lough 53.83333 -9.16667 H LK IE C 20 0 65 Europe/Dublin 1993-12-27 +2965679 Carrowmore Lake Carrowmore Lake 54.19111 -9.78389 H LK IE C 20 0 74 Europe/Dublin 2010-08-14 +2965680 Carrowmore Carrowmore Carrowmore,Carrowmore House 54.08333 -9.2 S EST IE IE C 20 0 20 Europe/Dublin 2010-08-14 +2965681 Carrowmore Carrowmore 54.25 -9.28333 P PPL IE C 20 0 54 Europe/Dublin 1993-12-27 +2965682 Carrowmore Carrowmore 54.21111 -9.82639 P PPL IE C 20 0 74 Europe/Dublin 2010-08-14 +2965683 Carrowmore Carrowmore 54.12194 -8.69361 P PPL IE C 25 0 103 Europe/Dublin 2010-08-14 +2965684 Carrowmore Carrowmore Carrowmore,Garrowmore 53.61667 -9.15 P PPL IE C 20 0 55 Europe/Dublin 2010-08-10 +2965685 Carrowmore Carrowmore 53.21222 -8.97444 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965686 Carrowmenagh Carrowmenagh Carrowmena,Carrowmenagh 55.25 -7.06667 P PPL IE U 06 0 122 Europe/Dublin 2010-08-10 +2965687 Carrowkennedy Carrowkennedy 53.7 -9.55 P PPL IE C 20 0 83 Europe/Dublin 1993-12-27 +2965688 Carrowkeel River Carrowkeel River 52.96667 -9.3 H STM IE M 03 0 53 Europe/Dublin 1993-12-27 +2965689 Carrowkeel Carrowkeel An Cheathru Chaol,An Cheathrú Chaol,Carrowkeel,Kerrykeel 55.13333 -7.65 P PPL IE U 06 0 127 Europe/Dublin 2010-08-14 +2965690 Carrowkeel Carrowkeel 55.12767 -7.20428 P PPL IE 00 0 58 Europe/Dublin 2007-04-13 +2965691 Carrowen Carrowen 55.03056 -7.4975 P PPL IE U 06 0 11 Europe/Dublin 2010-08-14 +2965692 Carrowbane House Carrowbane House 52.73528 -8.92056 S EST IE M 03 0 4 Europe/Dublin 2010-08-14 +2965693 Carrolstown Carrolstown 53.57917 -6.77194 S EST IE L 21 0 70 Europe/Dublin 2010-08-14 +2965694 Carrigtohill Carrigtohill Carraig Thuathail,Carrigtohill,Carrigtwohill 51.90833 -8.26333 P PPL IE M 04 0 9 Europe/Dublin 2010-08-14 +2965695 Carrigshane Carrigshane 51.90778 -8.14722 P PPL IE M 04 0 60 Europe/Dublin 2010-08-14 +2965696 Carrigoran House Carrigoran House Carrigoran,Carrigoran House 52.75056 -8.91 S EST IE IE M 03 0 6 Europe/Dublin 2010-08-14 +2965697 Carrigogunnel Castle Carrigogunnel Castle Carrigogunnel Castle,Rock of Connel 52.64306 -8.74444 S RUIN IE IE M 16 0 3 Europe/Dublin 2010-08-14 +2965698 Carrignavar House Carrignavar House 51.98417 -8.46944 S EST IE M 04 0 131 Europe/Dublin 2010-08-14 +2965699 Carrignavar Carrignavar 51.98861 -8.47972 P PPL IE M 04 0 137 Europe/Dublin 2010-08-14 +2965700 Carrig Lodge Carrig Lodge 51.86667 -9.25 S BLDG IE M 04 0 205 Europe/Dublin 1993-12-27 +2965701 Carrigkerry Carrigkerry 52.495 -9.15139 P PPL IE M 11 0 151 Europe/Dublin 2010-08-14 +2965702 Carrig Island Carrig Island 52.57694 -9.49667 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965703 Carrigillihy Carrigillihy 51.53333 -9.11667 P PPL IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2965704 Carrigeen Carrigeen 53.21667 -8.76583 P PPL IE C 10 0 42 Europe/Dublin 2010-08-14 +2965705 Carrig East Carrig East Carrig,Carrig East 51.93333 -9.63333 P PPL IE M 11 0 263 Europe/Dublin 2010-08-10 +2965706 Carrigcastle Carrigcastle 52.16611 -7.40083 P PPL IE M 27 0 44 Europe/Dublin 2010-08-14 +2965707 Carrigatogher Carrigatogher 52.83556 -8.27806 P PPL IE M 26 0 82 Europe/Dublin 2010-08-14 +2965708 Carrigans Carrigans An Carraigin,An Carraigín,Carrigans 54.95 -7.43333 P PPL IE U 06 0 5 Europe/Dublin 2010-08-14 +2965709 Carriganimmy Carriganimmy Carriganimmy 51.96667 -9.03333 P PPL IE M 04 0 243 Europe/Dublin 2010-08-10 +2965710 Carrigan Head Carrigan Head 54.61944 -8.68 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2965711 Carrigane Carrigane 52.28472 -8.21528 P PPL IE M 04 0 124 Europe/Dublin 2010-08-14 +2965712 Carrigan Carrigan 53.88333 -7.4 P PPL IE U 02 0 100 Europe/Dublin 1993-12-27 +2965713 Carrigaloe Carrigaloe 51.86667 -8.33333 P PPL IE M 04 0 14 Europe/Dublin 2010-08-14 +2965714 Carrigallen Carrigallen Carraig Alainn,Carraig Álainn,Carrigallen 53.97722 -7.64583 P PPL IE C 14 0 78 Europe/Dublin 2010-08-14 +2965715 Carrigaline Carrigaline Carraig Ui Leighin,Carraig Uí Leighin,Carrigaline 51.81167 -8.39861 P PPL IE M 04 12902 17 Europe/Dublin 2010-08-14 +2965716 Carrigahorig Carrigahorig Carrigahorig 53.0625 -8.14389 P PPL IE M 26 0 57 Europe/Dublin 2010-11-04 +2965717 Carrigaholt Bay Carrigaholt Bay 52.6 -9.7 H BAY IE M 03 0 -9999 Europe/Dublin 1993-12-27 +2965718 Carrigaholt Carrigaholt Carraig an Chabhaltaigh,Carrigaholt 52.60333 -9.70806 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965719 Carrigafoyle House Carrigafoyle House 52.56833 -9.49444 S EST IE M 11 0 1 Europe/Dublin 2010-08-14 +2965720 Carrigadrohid Carrigadrohid 51.9 -8.85 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +2965721 Carrigadda Bay Carrigadda Bay 51.73 -8.33611 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965722 Carrig Carrig 53.06028 -7.97194 P PPL IE M 26 0 65 Europe/Dublin 2010-08-14 +2965723 Carrig Carrig 52.15 -8.56667 P PPL IE M 04 0 77 Europe/Dublin 1993-12-27 +2965724 Carrig Carrig 51.60583 -9.30167 P PPL IE M 04 0 52 Europe/Dublin 2010-08-14 +2965725 Carrickyvegraly Point Carrickyvegraly Point Carrickyvegraly Point,Roonagh Point,Roonah Head,Roonah Point 53.7625 -9.90389 T PT IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2965726 Carrick-on-Suir Carrick-on-Suir Carraig na Siuire,Carraig na Siúire 52.34917 -7.41306 P PPL IE M 26 5710 15 Europe/Dublin 2010-08-14 +2965727 Cora Droma Rúisc Cora Droma Ruisc Carrick on Shannon,Carrick-on-Shannon,Cora Droma Ruisc,Cora Droma Rúisc 53.94694 -8.09 P PPLA2 IE C 14 2389 75 Europe/Dublin 2011-02-15 +2965728 Carricknamackan Carricknamackan 53.24639 -9.83944 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965729 Carrickmore Upper Carrickmore Upper Carrickmore,Carrickmore Upper 54.88333 -7.46667 P PPL IE IE U 06 0 1 Europe/Dublin 2010-08-14 +2965730 Carrickmore Lower Carrickmore Lower Carrickmore,Carrickmore Lower 54.88333 -7.45 P PPL IE IE U 06 0 6 Europe/Dublin 2010-08-14 +2965731 Carrickmines Carrickmines Carrickmines 53.25194 -6.17111 P PPL IE 00 0 65 Europe/Dublin 2010-08-10 +2965732 Carrickmahoy Carrickmahoy Carrickmahoga,Carrickmahoy 53.60083 -10.15722 T RK IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965733 Carraig Mhachaire Rois Carraig Mhachaire Rois Carrickmacross,Magheross 53.97278 -6.71889 P PPL IE U 22 3995 79 Europe/Dublin 2010-08-14 +2965734 Carrick House Carrick House Carrick,Carrick House 53.45 -7.36667 S EST IE L 29 0 117 Europe/Dublin 2010-08-10 +2965735 Carrigglas Manor Carrigglas Manor Carrickglass,Carrickglass House,Carrigglas Manor 53.75 -7.75 S EST IE IE L 18 0 71 Europe/Dublin 2010-08-14 +2965736 Carrickgaddy Rocks Carrickgaddy Rocks 53.64167 -9.95667 T RKS IE C 20 0 -9999 Europe/Dublin 1999-03-04 +2965737 Carrick Castle Carrick Castle 53.36667 -7.03333 S RUIN IE L 12 0 99 Europe/Dublin 1993-12-27 +2965738 Carrickbyrne Lodge Carrickbyrne Lodge 52.36167 -6.745 S EST IE L 30 0 68 Europe/Dublin 2010-08-14 +2965739 Carrickboy Carrickboy 53.63333 -7.68333 P PPL IE L 18 0 94 Europe/Dublin 1993-12-27 +2965740 Carrickbeg Carrickbeg 52.34306 -7.41639 P PPL IE M 26 0 15 Europe/Dublin 2010-08-14 +2965741 Carrickart Carrickart Carraig Airt,Carrickart,Carrigart 55.17444 -7.79778 P PPL IE U 06 0 31 Europe/Dublin 2010-08-14 +2965742 Carrickadda Point Carrickadda Point 54.29694 -8.98694 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +2965743 Carrick Carrick An Charraig,Carrick 54.6575 -8.63167 P PPL IE U 06 0 48 Europe/Dublin 2010-08-14 +2965744 Carrick Carrick 52.23611 -6.72611 P PPL IE L 30 0 3 Europe/Dublin 2010-08-14 +2965745 Carrauntoohil Carrauntoohil Carrantuel,Carrantuohill,Carrauntoohil,Carrauntoohill,Carrauntuohill,Corran Tuathail,Corrán Tuathail 51.99889 -9.7429 T MT IE IE M 11 0 1038 573 Europe/Dublin 2011-03-08 +2965746 Carraroe Carraroe An Cheathru Rua,An Cheathrú Rua,Carraroe,Carrowroe 53.26556 -9.58361 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2965747 Carran Carran 52.61222 -7.14028 P PPL IE L 13 0 73 Europe/Dublin 2010-08-14 +2965748 Carragh Carragh 53.24028 -6.73556 P PPL IE L 12 0 98 Europe/Dublin 2010-08-14 +2965749 Carrachor House Carrachor House 54.28167 -7.07944 S HSEC IE U 22 0 109 Europe/Dublin 2010-08-14 +2965750 Carracastle Carracastle 53.95028 -8.6925 P PPL IE C 20 0 136 Europe/Dublin 2010-08-14 +2965751 Carrabaun Carrabaun 53.55 -9.01667 P PPL IE C 10 0 102 Europe/Dublin 1993-12-27 +2965752 Lough Carra Lough Carra Lough Carra 53.7 -9.25 H LK IE C 20 0 51 Europe/Dublin 2010-08-10 +2965753 Carnsore Point Carnsore Point Carnscore Point,Carnsore Point 52.17056 -6.35556 T CAPE IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2965754 Carn Seefin Carn Seefin 53.46667 -9.43333 S CARN IE C 10 0 134 Europe/Dublin 2010-08-14 +2965755 Carnowen Carnowen 54.83333 -7.63333 P PPL IE U 06 0 100 Europe/Dublin 1993-12-27 +2965756 Carnmalin Carnmalin 55.35 -7.33333 P PPL IE U 06 0 75 Europe/Dublin 1993-12-27 +2965757 Carnhill Carnhill 54.26667 -9.8 P PPL IE C 20 0 35 Europe/Dublin 1993-12-27 +2965758 Carney Castle Carney Castle 52.95778 -8.18639 S RUIN IE M 26 0 76 Europe/Dublin 2010-08-14 +2965759 Carney Carney 54.34056 -8.52722 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +2965760 Carnew Carnew Carn an Bhua,Carnew 52.70806 -6.49444 P PPL IE L 31 0 87 Europe/Dublin 2010-08-14 +2965761 Carndonagh Carndonagh Cardonagh,Carn Domhnach,Carndonagh 55.25 -7.26667 P PPL IE U 06 1581 59 Europe/Dublin 2010-08-14 +2965762 Carnaross Carnaross Carnaross 53.75111 -6.95417 P PPL IE L 21 0 83 Europe/Dublin 2010-08-14 +2965763 Carnagh House Carnagh House 52.34361 -6.85889 S EST IE L 30 0 67 Europe/Dublin 2010-08-14 +2965764 Carna Carna 53.33056 -9.82778 P PPL IE C 10 0 91 Europe/Dublin 2010-08-14 +2965765 Carn Carn 54.57417 -7.84056 P PPL IE U 06 0 99 Europe/Dublin 2010-08-14 +2965766 Carn Carn 54.23222 -9.29222 P PPL IE C 20 0 52 Europe/Dublin 2010-08-14 +2965767 County Carlow County Carlow Carlow,Ceatharlach,Contae Cheatharlach 52.66667 -6.83333 A ADM2 IE L 01 47393 117 Europe/Dublin 2010-08-14 +2965768 Ceatharlach Ceatharlach Carlow 52.84083 -6.92611 P PPLA2 IE L 01 20055 47 Europe/Dublin 2010-08-14 +2965769 Carlisle Fort Carlisle Fort Carlisle Fort,Fort Carlisle 51.81667 -8.26667 S FT IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965770 Carlingford Mountain Carlingford Mountain 54.05222 -6.23056 T MT IE L 19 0 340 Europe/Dublin 2010-08-14 +2965771 Carlingford Lough Carlingford Lough Carlingford Lough 54.05 -6.15 H INLT IE 00 0 -9999 Europe/Dublin 1998-04-30 +2965772 Carlingford Carlingford Cairlinn,Carlingford 54.04 -6.18833 P PPL IE IE L 19 0 33 Europe/Dublin 2010-08-14 +2965773 Carlanstown Carlanstown 53.75778 -6.83944 P PPL IE L 21 0 64 Europe/Dublin 2010-08-14 +2965774 Cark Mountain Cark Mountain 54.88694 -7.87111 T MT IE U 06 0 289 Europe/Dublin 2010-08-14 +2965775 Carhan River Carhan River 51.9525 -10.20333 H STM IE M 11 0 63 Europe/Dublin 2010-08-14 +2965776 Carha Carha 54.15 -9.03333 P PPL IE C 20 0 66 Europe/Dublin 1993-12-27 +2965777 Cargagh Cargagh 53.89889 -7.08639 P PPL IE U 02 0 130 Europe/Dublin 2010-08-14 +2965778 Careysville Careysville 52.14556 -8.215 S EST IE M 04 0 33 Europe/Dublin 2010-08-14 +2965779 Cardtown House Cardtown House 53.03306 -7.58889 S EST IE L 15 0 186 Europe/Dublin 2010-08-14 +2965780 Carbury Carbury Carbury 53.35861 -6.96583 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +2965781 Carbery Island Carbery Island 51.56556 -9.67444 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965782 Caragh Bridge Caragh Bridge 52.07 -9.90111 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2965783 River Caragh River Caragh 52.07111 -9.87028 H STM IE M 11 0 6 Europe/Dublin 2010-08-14 +2965784 Lough Caragh Lough Caragh 52.05083 -9.86333 H LK IE M 11 0 31 Europe/Dublin 2010-08-14 +2965785 Cappoquin House Cappoquin House 52.15 -7.83333 S EST IE M 27 0 70 Europe/Dublin 2010-08-14 +2965786 Cappoquin Cappoquin Cappoquin,Ceapach Choinn 52.14722 -7.85528 P PPL IE M 27 0 58 Europe/Dublin 2010-08-14 +2965787 Cappeen Cappeen 51.80778 -8.99056 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2965788 Cappataggle Cappataggle 53.27639 -8.40361 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2965789 Cappard House Cappard House 53.10556 -8.72528 S HSEC IE C 10 0 61 Europe/Dublin 2010-08-14 +2965790 Cappanoloha Cappanoloha 51.675 -9.47806 P PPL IE M 04 0 31 Europe/Dublin 2010-08-14 +2965791 Cappamore Cappamore An Cheapach Mhor,An Cheapach Mhór,Cappamore 52.61444 -8.33556 P PPL IE M 16 0 64 Europe/Dublin 2010-08-14 +2965792 Cappamore Cappamore 51.9 -9.61667 P PPL IE M 11 0 72 Europe/Dublin 1993-12-27 +2965793 Cappalusk Cappalusk 53.36722 -8.57083 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2965794 Cappalough House Cappalough House 53.18194 -7.38861 S BLDG IE L 15 0 110 Europe/Dublin 2010-08-14 +2965795 Cappagh White Cappagh White An Cheapach,Cappagh White 52.58194 -8.16361 P PPL IE M 40 0 140 Europe/Dublin 2010-11-04 +2965796 Cappagh Station Cappagh Station 52.63333 -9.5 S RSTN IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965797 Cappagh River Cappagh River 53.0775 -8.2975 H STM IE C 10 0 55 Europe/Dublin 2010-08-14 +2965798 Cappagh River Cappagh River Cappagh River,Coppagh River 52 -9.4 H STM IE M 11 0 335 Europe/Dublin 2010-08-10 +2965799 Cappagh House Cappagh House Cappagh,Cappagh House 52.12333 -7.735 S EST IE IE M 27 0 70 Europe/Dublin 2010-08-14 +2965800 Cappagh House Cappagh House Cappagh,Cappagh House 53.56667 -8.51667 S BLDG IE C 10 0 75 Europe/Dublin 2010-08-10 +2965801 Cappagh Cappagh 54.17028 -8.67139 P PPL IE C 25 0 149 Europe/Dublin 2010-08-14 +2965802 Cappagh Cappagh 53.63333 -8.75 P PPL IE C 10 0 67 Europe/Dublin 1993-12-27 +2965803 Cappagh Cappagh 53.07194 -8.38028 P PPL IE C 10 0 83 Europe/Dublin 2010-08-14 +2965804 Cappagh Cappagh 52.63333 -9.5 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965805 Cappagh Cappagh 52.58556 -7.47333 P PPL IE M 26 0 108 Europe/Dublin 2010-08-14 +2965806 Cappagh Cappagh Cappach,Cappagh 52.55639 -8.90694 P PPL IE IE M 16 0 43 Europe/Dublin 2010-08-14 +2965807 Capel Island Capel Island 51.88194 -7.85472 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965808 Bill of Cape Clear Bill of Cape Clear 51.42806 -9.52806 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965809 Capard House Capard House 53.10972 -7.425 S EST IE L 15 0 150 Europe/Dublin 2010-08-14 +2965810 Ridge of Capard Ridge of Capard 53.09917 -7.48333 T RDGE IE L 15 0 267 Europe/Dublin 2010-08-14 +2965811 Canon Island Canon Island Cannon Island,Canon Island 52.66833 -9.05056 T ISL IE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965812 Canningstown Canningstown 53.97944 -7.04611 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +2965813 Cangort Cangort 52.98889 -7.97028 P PPL IE L 23 0 121 Europe/Dublin 2010-08-14 +2965814 Canglass Point Canglass Point Canglass Point,Keownglas Head 51.99167 -10.25583 T PT IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965815 Canduff Canduff Black Head,Canduff 51.83333 -10.41667 T CAPE IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965816 Cancregga Cancregga Cancregga,Cliffs of Moher 52.93778 -9.47389 T CAPE IE M 03 0 7 Europe/Dublin 2010-09-03 +2965817 Canbo Lough Canbo Lough 53.9 -8.18333 H LK IE C 24 0 77 Europe/Dublin 1993-12-27 +2965818 Camusmore Bay Camusmore Bay 55.26 -8.22611 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2965819 Camus Hill Camus Hill 53.3725 -9.5775 T HLL IE C 10 0 100 Europe/Dublin 2010-08-14 +2965820 Camus Bay Camus Bay 53.335 -9.60111 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965821 Camross Camross 53.00361 -7.59056 P PPL IE L 15 0 133 Europe/Dublin 2010-08-14 +2965822 Camport Bay Camport Bay 53.915 -10.02583 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2965823 Camport Camport 53.91778 -10.01639 P PPL IE C 20 0 41 Europe/Dublin 2010-08-14 +2965824 Campile Campile Campile,Ceann Poill 52.28917 -6.94139 P PPL IE L 30 0 47 Europe/Dublin 2010-08-14 +2965825 Camphire House Camphire House 52.08917 -7.86778 S EST IE M 27 0 40 Europe/Dublin 2010-08-14 +2965826 Camp Camp 52.22528 -9.92222 P PPL IE M 11 0 18 Europe/Dublin 2010-08-14 +2965827 Camolin Park House Camolin Park House 52.63806 -6.43694 S EST IE L 30 0 69 Europe/Dublin 2010-08-14 +2965828 Camolin Camolin Cam Eolaing,Camolin 52.61556 -6.42056 P PPL IE IE L 30 0 72 Europe/Dublin 2010-08-14 +2965829 Camoge River Camoge River 52.50361 -8.70778 H STM IE M 16 0 36 Europe/Dublin 2010-08-14 +2965830 Camlin River Camlin River 53.75 -7.91667 H STM IE 00 0 66 Europe/Dublin 1993-12-27 +2965831 Camden Fort Camden Fort 51.8 -8.28333 S FT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965832 Camaross Camaross 52.36139 -6.71083 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2965833 Calverstown Calverstown 53.08279 -6.7977 P PPL IE L 12 0 152 Europe/Dublin 2010-08-14 +2965834 Caltragh Caltragh 53.6 -7.93333 P PPL IE L 18 0 135 Europe/Dublin 1993-12-27 +2965835 Caltragh Caltragh 53.48333 -8.13333 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2965836 Caltra Caltra Caltra 53.43333 -8.43333 P PPL IE C 10 0 75 Europe/Dublin 2010-08-10 +2965837 Callow Loughs Callow Loughs Callow,Callow Loughs 53.97306 -9.04361 H LKS IE IE C 20 0 75 Europe/Dublin 2010-08-14 +2965838 Callow Callow 53.97167 -9.03306 P PPL IE C 20 0 74 Europe/Dublin 2010-08-14 +2965839 Calliagherom Rock Calliagherom Rock Calliagherom Rock,Deace's Rock,Deace’s Rock 53.83528 -9.98194 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-10 +2965840 Slieve na Calliagh Slieve na Calliagh Hag's Hill,Hag’s Hill,Old Woman's Hill,Old Woman’s Hill,Slieve na Calliagh,Slieve-na-Calliagh 53.745 -7.11056 T HLLS IE IE L 21 0 145 Europe/Dublin 2010-08-14 +2965841 Callan Callan Callain,Callan 52.545 -7.39111 P PPL IE L 13 0 71 Europe/Dublin 2010-08-14 +2965842 Callaghane Bridge Callaghane Bridge Callaghane,Callaghane Bridge 52.21472 -7.03111 P PPL IE IE M 27 0 59 Europe/Dublin 2010-08-14 +2965843 Calf Island West Calf Island West 51.46667 -9.51667 T ISL IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2965844 Calf Islands Calf Islands 51.46667 -9.5 T ISLS IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2965845 Calf Island Middle Calf Island Middle 51.46667 -9.5 T ISL IE M 04 0 -9999 Europe/Dublin 1993-12-27 +2965846 Calf Island East Calf Island East 51.48139 -9.5075 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965847 The Calf The Calf Calf Island,The Calf 51.56667 -10.25 T ISL IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2965848 Calabber River Calabber River Calabbe River,Calabber River 55.07694 -7.90722 H STM IE IE U 06 0 72 Europe/Dublin 2010-08-14 +2965849 Cahore Point Cahore Point 52.56417 -6.19111 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2965850 Cahir Guillamore Cahir Guillamore 52.51333 -8.57556 P PPL IE M 16 0 71 Europe/Dublin 2010-08-14 +2965851 Cahiracon House Cahiracon House Cahiracon House,Cahircon 52.63333 -9.13333 S EST IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2965852 Cahersiveen Cahersiveen Cahersiveen,Cahersween,Cathair Saidhbhin,Cathair Saidhbhín 51.94861 -10.22222 P PPL IE M 11 1409 79 Europe/Dublin 2010-08-14 +2965853 Caherrush Point Caherrush Point 52.83194 -9.45194 T PT IE M 03 0 5 Europe/Dublin 2010-08-14 +2965854 Caher River Caher River 52.31667 -9.23333 H STM IE M 16 0 145 Europe/Dublin 1993-12-27 +2965855 Cahermore Cahermore 51.60861 -10.06194 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +2965856 Cahermacun Cahermacun 53.08333 -9.2 P PPL IE M 03 0 150 Europe/Dublin 1993-12-27 +2965857 Caherlistrane Caherlistrane Caherlisfrane,Caherlistrane 53.5 -9.01667 P PPL IE C 10 0 119 Europe/Dublin 2010-08-10 +2965858 Caherkeen Caherkeen 51.67611 -10.03278 P PPL IE M 04 0 6 Europe/Dublin 2010-08-14 +2965859 Caher Island Caher Island Caher Island 53.71778 -10.02889 T ISL IE C 20 0 1 Europe/Dublin 2010-08-14 +2965860 Caher House Caher House Caher,Caher House 52.96667 -8.66667 S HSEC IE IE M 03 0 103 Europe/Dublin 2010-08-14 +2965861 Caherelly Castle Caherelly Castle Caherelly,Caherelly Castle 52.545 -8.50417 S EST IE M 16 0 76 Europe/Dublin 2010-08-14 +2965862 Caherduggan House Caherduggan House 52.01222 -8.22722 S EST IE M 04 0 149 Europe/Dublin 2010-08-14 +2965863 Caherdaniel Caherdaniel Caherdaniel,Cathair Donall,Cathair Dónall,Cuherdaniel 51.76667 -10.1 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +2965864 Caherconree Caherconree Caherconree 52.20266 -9.85371 T MT IE M 11 0 835 634 Europe/Dublin 2011-03-08 +2965865 Caherconlish Caherconlish Caherconlish,Cathair Chinn Lis 52.59361 -8.47028 P PPL IE IE M 16 0 80 Europe/Dublin 2010-08-14 +2965866 Caherbarnagh Caherbarnagh 52.05 -9.2 P PPL IE M 04 0 389 Europe/Dublin 1993-12-27 +2965867 Caherbarnagh Caherbarnagh 52.03333 -9.18333 T MT IE M 04 0 538 Europe/Dublin 1993-12-27 +2965868 Caherass House Caherass House Caherass,Caherass House 52.53389 -8.73444 S EST IE IE M 16 0 29 Europe/Dublin 2010-08-14 +2965869 Caheracruttera Caheracruttera 52.15556 -9.93444 P PPL IE M 11 0 73 Europe/Dublin 2010-08-14 +2965870 Caher Abbey Caher Abbey Caher Abbey,Caherabbey House,Cahir Abbey 52.38194 -7.92639 S EST IE IE M 26 0 57 Europe/Dublin 2010-11-04 +2965871 Caher Caher 53.24944 -9.35 P PPL IE C 10 0 4 Europe/Dublin 2010-08-14 +2965872 Caher Caher 52.96472 -8.64528 P PPL IE M 03 0 81 Europe/Dublin 2010-08-14 +2965873 Caher Caher An Chathair,Caher,Cahir,Án Chathair 52.37694 -7.92167 P PPL IE M 26 3057 62 Europe/Dublin 2011-03-06 +2965874 Caher Caher 51.46861 -9.81 P PPL IE M 04 0 118 Europe/Dublin 2010-08-14 +2965875 Lough Caheer Lough Caheer Caheer,Lough Caheer 53.78333 -8.75 H LK IE C 20 0 70 Europe/Dublin 2010-08-10 +2965876 Caha Mountains Caha Mountains Caha Mountains 51.75111 -9.72472 T MTS IE M 11 0 320 Europe/Dublin 2010-08-14 +2965877 Cadamstown Cadamstown 53.12528 -7.65833 P PPL IE L 23 0 150 Europe/Dublin 2010-08-14 +2965878 Cabry Cabry 55.13333 -7.2 P PPL IE U 06 0 22 Europe/Dublin 1993-12-27 +2965879 Cabraghkeel Cabraghkeel 54.26583 -9.03056 P PPL IE C 25 0 12 Europe/Dublin 2010-08-14 +2965880 Cabragh Castle Cabragh Castle 52.65306 -7.82944 S EST IE M 26 0 94 Europe/Dublin 2010-08-14 +2965881 Cabra Castle Cabra Castle 53.91833 -6.76417 S EST IE U 02 0 61 Europe/Dublin 2010-08-14 +2965882 Cabinteely Cabinteely 53.26973 -6.16058 P PPL IE L 07 0 34 Europe/Dublin 2010-08-14 +2965883 Byrnesgrove Byrnesgrove 52.80214 -7.27252 P PPL IE L 13 0 205 Europe/Dublin 2010-11-05 +2965884 Buttevant Castle Buttevant Castle Buttevant Castle,Buttevant House 52.23333 -8.66667 S EST IE M 04 0 113 Europe/Dublin 2010-08-10 +2965885 Buttevant Buttevant Buttevant,Cill na Mallach 52.23333 -8.66667 P PPL IE IE M 04 0 113 Europe/Dublin 2010-08-14 +2965886 Butlerstown Castle Butlerstown Castle Butlerstown,Butlerstown Castle 52.22444 -7.17833 S EST IE IE M 27 0 75 Europe/Dublin 2010-08-14 +2965887 Butlerstown Butlerstown 51.59722 -8.72694 P PPL IE M 04 0 72 Europe/Dublin 2010-08-14 +2965888 Butlers Bridge Butlers Bridge Butlers Bridge,Droichead an Bhuitlearaigh,Droichead an Bhuitléaraigh 54.04278 -7.37639 P PPL IE U 02 0 71 Europe/Dublin 2010-08-14 +2965889 Bushypark House Bushypark House 52.05111 -8.33917 S EST IE M 04 0 75 Europe/Dublin 2010-08-14 +2965890 Bushville Bushville 52.25 -6.4 P PPL IE L 30 0 1 Europe/Dublin 1993-12-27 +2965891 Bushfield Bushfield 53.83333 -9.03333 P PPL IE C 20 0 41 Europe/Dublin 1993-12-27 +2965892 Bushfield Bushfield 52.79917 -8.35861 P PPL IE M 26 0 71 Europe/Dublin 2010-08-14 +2965893 Busherstown House Busherstown House Busherstown House,Rusherstown House 52.89417 -7.93472 S EST IE IE L 23 0 134 Europe/Dublin 2010-08-14 +2965894 The Bush The Bush 53.98333 -6.2 P PPL IE 00 0 -9999 Europe/Dublin 1993-12-27 +2965895 Burtown Cross Roads Burtown Cross Roads 52.99111 -6.89389 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +2965896 Burtonport Burtonport Ailt an Chorrain,Ailt an Chorráin,Barton Port,Burtan Port,Burton,Burtonport 54.98556 -8.43111 P PPL IE U 06 0 2 Europe/Dublin 2010-08-14 +2965897 Burton Park Burton Park 52.26667 -8.71667 S EST IE M 04 0 139 Europe/Dublin 1993-12-27 +2965898 Burton Hall Burton Hall 52.85833 -6.83667 S EST IE L 01 0 105 Europe/Dublin 2010-08-14 +2965899 Burrow Burrow 52.29028 -6.39111 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2965900 Burrishoole Bridge Burrishoole Bridge 53.9 -9.57472 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +2965901 Burren River Burren River 52.83444 -6.93667 H STM IE L 01 0 44 Europe/Dublin 2010-08-14 +2965902 Burren Burren Boirinn,Burren 53.14667 -9.07556 P PPL IE M 03 0 26 Europe/Dublin 2010-08-14 +2965903 Burnham Burnham 52.13333 -10.3 S EST IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2965904 Burnfort Burnfort 52.06667 -8.6 P PPL IE M 04 0 149 Europe/Dublin 1993-12-27 +2965905 Burnfoot Burnfoot Bun na hAbhann,Burnfoot 55.05 -7.4 P PPL IE U 06 0 33 Europe/Dublin 2010-08-14 +2965906 Burncourt Burncourt 52.31056 -8.07639 P PPL IE M 26 0 92 Europe/Dublin 2010-08-14 +2965907 Burkestown Cross Roads Burkestown Cross Roads Burkestown,Burkestown Cross Roads 52.2775 -6.85667 P PPL IE IE L 30 0 45 Europe/Dublin 2010-08-14 +2965908 Burford Bank Burford Bank 53.31889 -6.02389 H SHOL IE 00 0 -9999 Europe/Dublin 1999-02-24 +2965909 Bunree Bunree 54.11667 -9.14111 P PPL IE C 20 0 7 Europe/Dublin 2010-08-14 +2965910 Bunratty West Bunratty West 52.68333 -8.81667 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965911 Bunratty River Bunratty River 52.68972 -8.81167 H STM IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2965912 Bunratty East Bunratty East 52.7 -8.81667 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2965913 Bunratty Bunratty Bunratty 52.69667 -8.81556 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2965914 Bunowen River Bunowen River Bunowen River,Louisburgh River 53.76667 -9.81667 H STM IE C 20 0 3 Europe/Dublin 2010-08-10 +2965915 Bunowen River Bunowen River 53.34639 -8.24278 H STM IE C 10 0 65 Europe/Dublin 2010-08-14 +2965916 Bunowen Bay Bunowen Bay 53.40889 -10.11333 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2965917 Bunoke River Bunoke River 52.405 -9.00472 H STM IE M 03 0 65 Europe/Dublin 2010-08-14 +2965918 Bunnyconnellan Bunnyconnellan 54.10944 -9.0275 P PPL IE C 20 0 61 Europe/Dublin 2010-08-14 +2965919 Lough Bunny Lough Bunny 53.01806 -8.92944 H LK IE M 03 0 58 Europe/Dublin 2010-08-14 +2965920 Bunnanaddan Bunnanaddan 54.04861 -8.60222 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +2965921 Bunnahowen Bunnahowen Bunmahowen,Bunnahowen 54.19056 -9.905 P PPL IE IE C 20 0 49 Europe/Dublin 2010-08-14 +2965922 Bunmahon Bunmahon Bun Machan,Bunmahon 52.14028 -7.37444 P PPL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2965923 Bunlough Point Bunlough Point Bunlough Point,Devlin Point 53.6975 -9.91917 T PT IE IE C 20 0 10 Europe/Dublin 2010-08-14 +2965924 Bunlahy Bunlahy 53.8 -7.58333 P PPL IE L 18 0 76 Europe/Dublin 1993-12-27 +2965925 Bunlacken Bunlacken 52.80528 -7.46167 P PPL IE L 15 0 161 Europe/Dublin 2010-08-14 +2965926 Bunglass Bunglass 53.43417 -6.9875 P PPL IE L 12 0 89 Europe/Dublin 2010-08-14 +2965927 Bunglass Bunglass 54.63333 -8.68333 H BAY IE U 06 0 111 Europe/Dublin 2010-08-14 +2965928 Bundorragha Bundorragha 53.6 -9.75 P PPL IE 00 0 91 Europe/Dublin 1993-12-27 +2965929 Bun Dobhráin Bun Dobhrain Bundoran 54.46667 -8.28333 P PPL IE U 06 1865 1 Europe/Dublin 2010-08-14 +2965930 Buncrowey River Buncrowey River 54.23306 -8.91833 H STM IE C 25 0 62 Europe/Dublin 2010-08-14 +2965931 Buncraggy House Buncraggy House Buncraggy,Buncraggy House 52.78889 -8.99444 S EST IE IE M 03 0 54 Europe/Dublin 2010-08-14 +2965932 Bunclody Bunclody Bun Cloidi,Bun Clóidi,Bunclody,Newtonbarry,Newtownbarry 52.65528 -6.65611 P PPL IE L 30 0 64 Europe/Dublin 2010-08-14 +2965933 Bunbrosna Bunbrosna Bunbrosna,Bunbrusna 53.6 -7.43333 P PPL IE L 29 0 96 Europe/Dublin 2010-08-10 +2965934 Bunbeg Bunbeg An Bun Beag,Bunbeg 55.05972 -8.30028 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2965935 Bunaw Bunaw Bunaw,Bunnow 51.79 -9.81222 P PPL IE IE M 11 0 8 Europe/Dublin 2010-08-14 +2965936 Bunatrahir Bay Bunatrahir Bay Ballycastle Bay,Bunatrahir Bay 54.30222 -9.38139 H BAY IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2965937 Bullys Corner Bullys Corner 52.84722 -6.56639 P PPL IE L 01 0 149 Europe/Dublin 2010-08-14 +2965938 Bulls Head Bulls Head 52.11056 -10.19722 T CAPE IE M 11 0 32 Europe/Dublin 2010-08-14 +2965939 Bullaun Bullaun 53.24694 -8.55167 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +2965940 The Bull The Bull 51.58333 -10.3 T ISL IE 00 0 -9999 Europe/Dublin 1993-12-27 +2965941 Bulgaden Bulgaden 52.41778 -8.53111 P PPL IE M 16 0 90 Europe/Dublin 2010-08-14 +2965942 Bulbin Bulbin 55.22528 -7.43833 T MT IE U 06 0 286 Europe/Dublin 2010-08-14 +2965943 Brusna River Brusna River 54.11361 -9.09194 H STM IE C 20 0 23 Europe/Dublin 1999-03-08 +2965944 Bruree Bruree Bru Ri,Bruree,Brú Rí 52.42194 -8.66417 P PPL IE M 16 0 62 Europe/Dublin 2010-08-14 +2965945 Bruff Bruff An Bru,An Brú,Bruff 52.47417 -8.54583 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +2965946 Bruckless Bruckless 54.63639 -8.38333 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2965947 Brownswood Brownswood 52.46667 -6.55 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2965948 Brownstown House Brownstown House 52.73444 -7.79611 S EST IE M 26 0 115 Europe/Dublin 2010-08-14 +2965949 Brownstown Head Brownstown Head 52.12528 -7.10028 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2965950 Brownsmills Brownsmills 51.72528 -8.52111 P PPL IE M 04 0 58 Europe/Dublin 2010-08-14 +2965951 Brownsford House Brownsford House 52.46083 -7.04944 S EST IE L 13 0 30 Europe/Dublin 2010-08-14 +2965952 Brownsbarn House Brownsbarn House 52.49389 -7.095 S BLDG IE L 13 0 56 Europe/Dublin 2010-08-14 +2965953 Brownsbarn Bridge Brownsbarn Bridge 52.50139 -7.08667 P PPL IE L 13 0 36 Europe/Dublin 2010-08-14 +2965954 Brownhall Brownhall 54.57861 -8.09083 S EST IE U 06 0 84 Europe/Dublin 2010-08-14 +2965955 Brownhall Brownhall 53.78333 -9.16667 S EST IE C 20 0 54 Europe/Dublin 1993-12-27 +2965956 Brownes Hill House Brownes Hill House 52.82972 -6.88278 S EST IE L 01 0 76 Europe/Dublin 2010-08-14 +2965957 Brownes Grove Brownes Grove 53.56667 -8.8 S EST IE C 10 0 77 Europe/Dublin 1993-12-27 +2965958 Brown Bay Brown Bay Brown Bay,Brown's Bay,Brown’s Bay 54.33333 -8.66667 H BAY IE C 25 0 -9999 Europe/Dublin 2010-08-10 +2965959 Brow Head Brow Head 51.44917 -9.7725 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2965960 Broughal Castle Broughal Castle Broughal,Broughal Castle,Broughal House 53.18333 -7.7575 S EST IE IE L 23 0 70 Europe/Dublin 2010-08-14 +2965961 Broughal Broughal 53.19056 -7.77528 P PPL IE L 23 0 68 Europe/Dublin 2010-08-14 +2965962 River Brosna River Brosna 53.21722 -7.96694 H STM IE L 23 0 55 Europe/Dublin 2010-08-14 +2965963 Brosna Brosna Brosna 52.98944 -7.8875 P PPL IE L 23 0 75 Europe/Dublin 2010-08-14 +2965964 Brosna Brosna 52.31667 -9.26667 P PPL IE M 11 0 151 Europe/Dublin 1993-12-27 +2965965 Broomfield Broomfield 54.06667 -6.70028 P PPL IE U 22 0 155 Europe/Dublin 2010-08-14 +2965966 Brookville Brookville 52.45028 -8.18194 P PPL IE M 26 0 191 Europe/Dublin 2010-08-14 +2965967 Brook Lodge Brook Lodge 53.41667 -8.8 S RUIN IE C 10 0 51 Europe/Dublin 1993-12-27 +2965968 Brooklodge Brooklodge 51.93417 -8.37861 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +2965969 Brooklawn House Brooklawn House 53.20417 -8.41778 S BLDG IE C 10 0 76 Europe/Dublin 2010-08-14 +2965970 Brookhill Brookhill Brookhill,Brookhill House 53.7 -9.01667 S EST IE C 20 0 68 Europe/Dublin 2010-08-10 +2965971 Brookfield House Brookfield House 53.0025 -8.27556 S EST IE M 26 0 63 Europe/Dublin 2010-08-14 +2965972 Brogeen River Brogeen River 52.16667 -8.9 H STM IE M 04 0 110 Europe/Dublin 1993-12-27 +2965973 Brodagh House Brodagh House 52.93333 -8.88333 S BLDG IE M 03 0 65 Europe/Dublin 1993-12-27 +2965974 Brockley Park Brockley Park 53.02222 -7.13556 S EST IE L 15 0 138 Europe/Dublin 2010-08-14 +2965975 Brockagh Brockagh 53.85472 -9.49722 P PPL IE C 20 0 54 Europe/Dublin 2010-08-14 +2965976 Broadway Broadway 52.21778 -6.40333 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2965977 Broadstone Terminus Broadstone Terminus Broadstone Terminal,Broadstone Terminus 53.35 -6.25 S RSTN IE IE 00 0 1 Europe/Dublin 2010-08-10 +2965978 Broad Meadow Water Broad Meadow Water Broad Meadow,Broad Meadow Water 53.46667 -6.2 H STM IE IE 00 0 1 Europe/Dublin 2010-08-10 +2965979 Broad Haven Broad Haven Broad Haven,Broadhaven Bay 54.3 -9.9 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-10 +2965980 Broadford Broadford Ath Leathen,Broadford,Áth Leathen 52.80472 -8.63222 P PPL IE M 03 0 93 Europe/Dublin 2010-08-14 +2965981 Broadford Broadford Beal an Atha,Broadford,Béal an Átha 52.35 -8.96667 P PPL IE M 16 0 151 Europe/Dublin 2010-08-14 +2965982 Brittas Lough Brittas Lough Brittas,Brittas Lough 53.56667 -7.28333 H LK IE L 29 0 131 Europe/Dublin 2010-08-10 +2965983 Brittas House Brittas House Brittas,Brittas House 53.145 -7.53778 S EST IE IE L 15 0 132 Europe/Dublin 2010-08-14 +2965984 Brittas Bay Brittas Bay Brittas Bay 52.88 -6.04861 H BAY IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2965985 Brittas Brittas 52.61278 -8.42083 P PPL IE M 16 0 59 Europe/Dublin 2010-08-14 +2965986 Brittas Brittas 53.82222 -6.77528 S EST IE L 21 0 76 Europe/Dublin 2010-08-14 +2965987 Brittas Brittas Brittas,Brittas Castle 52.70583 -7.81444 S EST IE IE M 26 0 100 Europe/Dublin 2010-11-04 +2965989 Britfieldstown House Britfieldstown House 51.74583 -8.32056 S EST IE M 04 0 1 Europe/Dublin 2010-08-14 +2965990 Briskil Upper Briskil Upper 53.8 -7.8 P PPL IE L 18 0 76 Europe/Dublin 1993-12-27 +2965991 Briskil Lower Briskil Lower Briskil,Briskil Lower 53.78333 -7.81667 P PPL IE L 18 0 76 Europe/Dublin 2010-08-10 +2965992 Brinny River Brinny River 51.77139 -8.68528 H STM IE M 04 0 67 Europe/Dublin 2010-08-14 +2965993 Brinlack Brinlack Brinlack,Bun na Leaca 55.11667 -8.28333 P PPL IE IE U 06 0 83 Europe/Dublin 2010-08-14 +2965994 Lough Brin Lough Brin 51.93333 -9.76667 H LK IE M 11 0 276 Europe/Dublin 2010-08-14 +2965995 Bridgetown Bridgetown 54.59417 -8.11194 P PPL IE U 06 0 31 Europe/Dublin 2010-08-14 +2965996 Bridgetown Bridgetown 54.41667 -8.16667 P PPL IE C 14 0 88 Europe/Dublin 1993-12-27 +2965997 Bridgetown Bridgetown 53.75 -8.51667 P PPL IE C 24 0 75 Europe/Dublin 1993-12-27 +2965998 Bridgetown Bridgetown Baile an Droichid,Bridgetown 52.22806 -6.54417 P PPL IE L 30 0 15 Europe/Dublin 2010-08-14 +2965999 Bridget Lough Bridget Lough 52.87333 -8.64889 H LK IE M 03 0 61 Europe/Dublin 2010-08-14 +2966000 Bridgeland Bridgeland 52.81167 -6.49194 P PPL IE L 31 0 119 Europe/Dublin 2010-08-14 +2966001 Bridge End Bridge End 55.04083 -7.38222 P PPL IE U 06 0 9 Europe/Dublin 2010-08-14 +2966002 Brideswell Brideswell 53.45 -8.1 P PPL IE C 24 0 97 Europe/Dublin 1993-12-27 +2966003 Brides Head Brides Head 52.96806 -6.00889 T CAPE IE L 31 0 74 Europe/Dublin 2010-08-14 +2966004 Bridebridge Bridebridge 52.06667 -8.23333 P PPL IE M 04 0 75 Europe/Dublin 1993-12-27 +2966005 River Bride River Bride 52.07278 -7.87222 H STM IE M 27 0 55 Europe/Dublin 1997-12-15 +2966006 River Bride River Bride 51.88333 -8.63333 H STM IE M 04 0 68 Europe/Dublin 2010-08-14 +2966007 River Brickey River Brickey 52.06278 -7.64083 H STM IE M 27 0 28 Europe/Dublin 2010-08-14 +2966008 Bricketstown House Bricketstown House 52.34278 -6.64722 S EST IE L 30 0 56 Europe/Dublin 2010-08-14 +2966009 Brickeens Brickeens 53.71667 -8.88333 P PPL IE C 20 0 76 Europe/Dublin 1993-12-27 +2966010 River Brick River Brick 52.44444 -9.62556 H STM IE M 11 0 62 Europe/Dublin 2010-08-14 +2966011 Breenagh Breenagh 54.93139 -7.90722 P PPL IE U 06 0 111 Europe/Dublin 2010-08-14 +2966012 Breemount Breemount Breemount,Breemount House 53.51917 -6.76806 S EST IE IE L 21 0 79 Europe/Dublin 2010-08-14 +2966013 Breedoge River Breedoge River 53.91667 -8.41667 H STM IE C 24 0 74 Europe/Dublin 1993-12-27 +2966014 Breedoge Breedoge 53.9 -8.38333 P PPL IE C 24 0 75 Europe/Dublin 1993-12-27 +2966015 Bree Bree 52.43472 -6.60472 P PPL IE L 30 0 73 Europe/Dublin 2010-08-14 +2966016 Bredagh River Bredagh River 55.18333 -7.03333 H STM IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2966017 Breanagh River Breanagh River 52.28333 -9.21667 H STM IE 00 0 227 Europe/Dublin 1993-12-27 +2966018 Breaghwy Breaghwy 53.83333 -9.23333 P PPL IE C 20 0 43 Europe/Dublin 1993-12-27 +2966019 Bray Head Bray Head Bray Head,Ceann Bre,Ceann Bré 53.18778 -6.07611 T CAPE IE IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2966020 Bray Head Bray Head 51.88417 -10.42472 T CAPE IE M 11 0 65 Europe/Dublin 2010-08-14 +2966021 Bray Bank Bray Bank 53.16667 -5.9 H BNK IE L 31 0 -9999 Europe/Dublin 1993-12-27 +2966022 Bray Bray Bre,Brej,Bri Chualann,Bré,Брей 53.20278 -6.09833 P PPL IE L 31 32317 -9999 Europe/Dublin 2010-08-14 +2966023 Brannock Islands Brannock Islands 53.15111 -9.8375 T ISLS IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966024 Brandon Point Brandon Point 52.28917 -10.16222 T PT IE M 11 0 74 Europe/Dublin 2010-08-14 +2966025 Brandon Mountain Brandon Mountain Brandon Hill,Brandon Mountain,Mount Brandon 52.23556 -10.25639 T MT IE IE M 11 0 953 462 Europe/Dublin 2011-03-08 +2966026 Brandon Hill Brandon Hill Brandon Hill,Brandon Mountain 52.50917 -6.97111 T MT IE IE L 13 0 344 Europe/Dublin 2010-08-14 +2966027 Brandon Head Brandon Head 52.27417 -10.24972 T CAPE IE M 11 0 370 Europe/Dublin 2010-08-14 +2966028 Brandon Bay Brandon Bay Brandon Bay 52.27444 -10.11 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966029 Brandon Brandon 52.26694 -10.16417 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966030 Bradoge River Bradoge River Bradoge River 54.46667 -8.28333 H STM IE GB,IE 00 0 1 Europe/Dublin 2009-03-07 +2966031 Brade House Brade House 51.58389 -9.14528 S EST IE M 04 0 77 Europe/Dublin 2010-08-14 +2966032 Braddocks Braddocks Braddocks,Bradox 54.19833 -6.8875 P PPL IE IE U 22 0 148 Europe/Dublin 2010-08-14 +2966033 Bracknagh Bracknagh Brackagh,Bracknagh 53.21056 -7.10056 P PPL IE IE L 23 0 75 Europe/Dublin 2010-08-14 +2966034 Bracklyn House Bracklyn House Bracklin,Bracklin House,Bracklyn,Bracklyn House 53.56833 -7.08861 S HSEC IE IE L 29 0 116 Europe/Dublin 2010-08-14 +2966035 Brackley Lough Brackley Lough 54.13639 -7.70611 H LK IE U 02 0 86 Europe/Dublin 2010-08-14 +2966036 Brackley House Brackley House Brackley House,Brackley Lodge 54.14111 -7.69556 S HSEC IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2966037 Brackhill Brackhill 52.16667 -9.7 P PPL IE M 11 0 61 Europe/Dublin 1993-12-27 +2966038 Brackenstown House Brackenstown House 53.45694 -6.25667 S EST IE L 07 0 26 Europe/Dublin 2010-08-14 +2966039 Brabazon Park Brabazon Park 53.93333 -8.95 S EST IE C 20 0 73 Europe/Dublin 1993-12-27 +2966040 Boytonrath House Boytonrath House Boytonrath,Boytonrath House 52.46 -7.91806 S EST IE IE M 26 0 88 Europe/Dublin 2010-11-04 +2966041 Boystown Boystown Baltyboys,Baltyboys Lower,Boystown 53.13694 -6.52611 P PPL IE IE L 31 0 183 Europe/Dublin 2010-08-14 +2966042 River Boyne River Boyne River Boyne 53.71667 -6.25 H STM IE L 21 0 -9999 Europe/Dublin 2011-01-04 +2966043 Boyle River Boyle River 53.95889 -8.11167 H STM IE 00 0 73 Europe/Dublin 1998-09-01 +2966044 Boyle Boyle Boyle,Mainistir na Buille,Mainistir na Búille 53.96667 -8.3 P PPL IE C 24 2199 76 Europe/Dublin 2010-08-14 +2966045 Boylagh Bay Boylagh Bay 54.88333 -8.5 H BAY IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2966046 Bow River Bow River 52.91056 -8.47778 H STM IE M 03 0 55 Europe/Dublin 2010-08-14 +2966047 Bourney Bourney 52.9 -7.81667 P PPL IE 00 0 148 Europe/Dublin 1993-12-27 +2966048 Bourne Vincent Memorial Park Bourne Vincent Memorial Park Bourn Vincent Park,Bourne Vincent Memorial Park 52 -9.55 T PK IE M 11 0 125 Europe/Dublin 2010-08-10 +2966049 Boultypatrick Boultypatrick 54.83139 -8.04917 T MT IE U 06 0 276 Europe/Dublin 2010-08-14 +2966050 Boughil Boughil Boughil,Boughill 51.93333 -9.68333 T MT IE M 11 0 492 Europe/Dublin 2010-08-10 +2966051 Bottlehill Bottlehill 52.05 -8.56667 P PPL IE M 04 0 209 Europe/Dublin 1993-12-27 +2966052 Boston Boston 53.2 -8.46667 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2966053 Boston Boston Boston 53.03083 -8.93167 P PPL IE M 03 570 58 Europe/Dublin 2010-08-30 +2966054 Borrisoleigh Borrisoleigh Borrisoleigh 52.75222 -7.95306 P PPL IE M 26 0 119 Europe/Dublin 2010-11-04 +2966055 Borrisokane Borrisokane Borrisokane,Buirios Ui Chein,Buiríos Uí Chéin 52.99528 -8.12806 P PPL IE M 38 0 63 Europe/Dublin 2010-11-04 +2966056 Borris in Ossory Borris in Ossory Borris in Ossory,Buirios Mor Osrai,Buiríos Mór Osraí 52.93639 -7.63639 P PPL IE L 15 0 131 Europe/Dublin 2010-08-14 +2966057 Borris House Borris House Borris,Borris House,Borris-Idrone 52.59667 -6.92139 S EST IE IE L 01 0 42 Europe/Dublin 2010-08-14 +2966058 Borris Borris An Bhuirios,An Bhuiríos,Borris,Borris-Idrone 52.6 -6.9175 P PPL IE L 01 0 42 Europe/Dublin 2010-08-14 +2966059 Boro River Boro River 52.46778 -6.56111 H STM IE L 30 0 57 Europe/Dublin 2010-08-14 +2966060 Boro Bridge Boro Bridge 52.48333 -6.71667 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +2966061 Borim Borim 54.16667 -7.7 P PPL IE U 02 0 89 Europe/Dublin 1993-12-27 +2966063 Boora River Boora River Boora,Boora River 53.26694 -7.75306 H STM IE IE L 23 0 64 Europe/Dublin 2010-08-14 +2966064 Lough Boora Lough Boora 53.20972 -7.75861 H LK IE L 23 0 66 Europe/Dublin 2010-08-14 +2966065 Boolyglass Boolyglass 52.42556 -7.28167 P PPL IE L 13 0 155 Europe/Dublin 2010-08-14 +2966066 Boolteens Boolteens 52.18333 -9.75 P PPL IE M 11 0 55 Europe/Dublin 2010-08-14 +2966067 Boolakennedy Boolakennedy 52.335 -8.08194 P PPL IE M 26 0 170 Europe/Dublin 2010-08-14 +2966068 Bonnetstown Hall Bonnetstown Hall 52.66722 -7.30667 S EST IE L 13 0 93 Europe/Dublin 2010-08-14 +2966069 Bonet River Bonet River 54.2525 -8.34028 H STM IE 00 0 35 Europe/Dublin 1998-09-01 +2966070 Bolus Head Bolus Head 51.76667 -10.33333 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966071 Lough Bollard Lough Bollard 53.41667 -9.96667 H LK IE C 10 0 77 Europe/Dublin 2010-08-14 +2966072 Boliska Lough Boliska Lough 53.28833 -9.31583 H LK IE C 10 0 62 Europe/Dublin 2010-08-14 +2966073 Boleyvogue Boleyvogue 52.55306 -6.43139 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2966074 Lough Bola Lough Bola Lough Bola,Lough Bold 53.35222 -9.84472 H LK IE IE C 10 0 102 Europe/Dublin 2010-08-14 +2966075 Bohola Bohola Bohola,Both Chomhla 53.9 -9.05 P PPL IE IE C 20 0 56 Europe/Dublin 2010-08-14 +2966076 Bohernabreena House Bohernabreena House Bohernabreena,Bohernabreena House 53.26667 -6.35 S HSEC IE IE L 07 0 126 Europe/Dublin 2010-11-04 +2966077 Bohermeen Bohermeen 53.66278 -6.80194 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +2966078 Boherglass Boherglass 52.86667 -8.6 P PPL IE M 03 0 76 Europe/Dublin 1993-12-27 +2966079 Boherduff Boherduff 52.53333 -7.15 S EST IE L 13 0 42 Europe/Dublin 2010-08-14 +2966080 Boherboy Boherboy Boherboy,Boherbue 52.15 -9.06667 P PPL IE M 04 0 152 Europe/Dublin 2010-08-10 +2966081 Boheraphuca Boheraphuca 53.01917 -7.7575 P PPL IE L 23 0 173 Europe/Dublin 2010-08-14 +2966082 Boher Boher 52.62 -8.46111 P PPL IE M 16 0 59 Europe/Dublin 2010-08-14 +2966083 Bohaun Bohaun 53.7 -9.4 T MT IE C 20 0 301 Europe/Dublin 1993-12-27 +2966084 Boghadoon Boghadoon 54.00972 -9.42139 P PPLL IE C 20 0 134 Europe/Dublin 2010-08-14 +2966085 Boggeragh Mountains Boggeragh Mountains Boggeragh Mountains 52.01667 -8.91667 T MTS IE M 04 0 381 Europe/Dublin 2010-08-14 +2966086 Bofin Harbour Bofin Harbour 53.61222 -10.21889 H HBR IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966087 Lough Bofin Lough Bofin 53.85 -7.93333 H LK IE 00 0 74 Europe/Dublin 1993-12-27 +2966088 Lough Bofin Lough Bofin 53.43333 -9.45 H LK IE C 10 0 96 Europe/Dublin 1993-12-27 +2966089 Bodyke Bodyke Badyke,Bodyke 52.88389 -8.60111 P PPL IE IE M 03 0 62 Europe/Dublin 2010-08-14 +2966090 Lough Boderg Lough Boderg 53.86667 -7.98333 H LK IE 00 0 67 Europe/Dublin 1993-12-27 +2966091 Bobsville Bobsville 53.71667 -7.07056 P PPL IE L 21 0 133 Europe/Dublin 2010-08-14 +2966092 Blue Stack Mountains Blue Stack Mountains Blue Stack Mountains,Croaghgorm,Croaghgorm Mountains 54.75 -8.1 T MTS IE IE U 06 0 478 Europe/Dublin 2010-08-14 +2966093 Blue Stack Blue Stack 54.75 -8.1 T MT IE U 06 0 478 Europe/Dublin 1993-12-27 +2966094 Bluebell Bluebell 52.05361 -8.25778 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2966095 Blue Ball Blue Ball Blue Ball 53.22444 -7.61389 P PPL IE L 23 0 78 Europe/Dublin 2010-08-14 +2966096 Bloomfield House Bloomfield House Bloomfield,Bloomfield House 53.66667 -9.13333 S EST IE C 20 0 56 Europe/Dublin 2010-08-10 +2966097 Bloody Foreland Bloody Foreland Bloody Foreland,Cnoc Fola 55.15722 -8.28306 T CAPE IE U 06 0 3 Europe/Dublin 2010-08-14 +2966098 Blindwell House Blindwell House 53.58333 -9 S EST IE C 10 0 120 Europe/Dublin 1993-12-27 +2966099 Blind Harbour Blind Harbour 54.25778 -9.93111 H HBR IE C 20 0 1 Europe/Dublin 2010-08-14 +2966100 Blind Harbour Blind Harbour 51.53333 -9.15 H HBR IE M 04 0 1 Europe/Dublin 1993-12-27 +2966101 Blessington Blessington Baile Coimin,Baile Coimín,Blessington 53.17 -6.5325 P PPL IE L 31 2874 225 Europe/Dublin 2010-08-14 +2966102 Blennerville Blennerville 52.25 -9.73333 P PPL IE M 11 0 81 Europe/Dublin 1993-12-27 +2966103 Bleach River Bleach River 53.00222 -8.66028 H STM IE M 03 0 75 Europe/Dublin 2010-08-14 +2966104 Bleach Hill Bleach Hill 53.25 -7.96667 P PPL IE L 23 0 55 Europe/Dublin 1993-12-27 +2966105 Blasket Sound Blasket Sound 52.10833 -10.49694 H SD IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966106 Blasket Islands Blasket Islands Blasket Islands 52.08333 -10.61667 T ISLS IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966107 Blarney Blarney An Bhlarna,Blarney 51.93333 -8.56667 P PPL IE M 04 2215 70 Europe/Dublin 2010-08-14 +2966108 Blanket Nook Blanket Nook 55 -7.5 T PLDR IE U 06 0 46 Europe/Dublin 1993-12-27 +2966109 Blandsfort House Blandsfort House Blandsfort,Blandsfort House 52.9275 -7.28639 S EST IE IE L 15 0 152 Europe/Dublin 2010-08-14 +2966110 Blanchardstown Blanchardstown Baile Bhlainseir,Baile Bhlainséir,Blachardstown,Blanchardstown 53.38806 -6.37556 P PPL IE L 35 0 25 Europe/Dublin 2010-11-04 +2966111 Blairs Cove Blairs Cove 51.61278 -9.53944 P PPL IE M 04 0 65 Europe/Dublin 2010-08-14 +2966112 Blackwood Blackwood 53.28667 -6.80917 P PPL IE L 12 0 88 Europe/Dublin 2010-08-14 +2966113 Blackweir Station Blackweir Station Blackweir,Blackweir Station 52.66667 -9.58333 S RSTN IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2966114 Blackwater Harbour Blackwater Harbour Blackwater Harbour,Blackwater Head 52.42583 -6.31556 H HBR IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2966115 Blackwater Bridge Blackwater Bridge 51.85 -9.75 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966116 River Blackwater River Blackwater 54.1 -7.68333 H STM IE U 02 0 81 Europe/Dublin 1993-12-27 +2966117 River Blackwater River Blackwater 53.65556 -6.68194 H STM IE L 21 0 42 Europe/Dublin 1999-03-22 +2966118 River Blackwater River Blackwater 51.98333 -7.85 H STM IE M 04 0 13 Europe/Dublin 2010-08-14 +2966119 River Blackwater River Blackwater 51.85 -9.75 H STM IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966120 River Blackwater River Blackwater 51.74222 -8.99444 H STM IE M 04 0 87 Europe/Dublin 2010-08-14 +2966121 Black Water Black Water Black River,Black Water 52.2725 -7.13667 H STM IE IE L 13 0 10 Europe/Dublin 2010-08-14 +2966122 Blackwater Blackwater An Abhainn Dubh,Blackwater 52.44667 -6.34528 P PPL IE L 30 0 46 Europe/Dublin 2010-08-14 +2966123 Blackstairs Mountain Blackstairs Mountain 52.53333 -6.8 T MT IE L 30 0 340 Europe/Dublin 2010-08-14 +2966124 Blacksod Point Blacksod Point 54.09694 -10.06222 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966125 Blacksod Bay Blacksod Bay 54.08333 -10.01667 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966126 Blacksod Blacksod 54.10028 -10.07028 P PPLL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966127 Black Rock Mountain Black Rock Mountain Black Rock Mountain 52.61722 -6.72417 T MT IE L 30 0 345 Europe/Dublin 2010-08-14 +2966128 Black Rock Black Rock 54.06528 -10.3225 T RK IE 00 0 -9999 Europe/Dublin 1999-03-08 +2966129 Black Rock Black Rock 53.59472 -10.27556 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966130 Blackrock Blackrock 53.96405 -6.36514 P PPL IE L 19 3000 -9999 Europe/Dublin 2010-08-30 +2966131 Blackrock Blackrock Blackrock,Carraig Dubh 53.3015 -6.1778 P PPL IE L 07 20701 1 Europe/Dublin 2010-08-30 +2966132 Blackrock Blackrock Blackrock 51.89694 -8.41 P PPL IE M 04 0 23 Europe/Dublin 2010-08-14 +2966133 Black River Black River 54.21333 -7.98194 H STM IE U 02 0 88 Europe/Dublin 2010-08-14 +2966134 Black River Black River 53.47839 -9.21219 H STM IE 00 0 21 Europe/Dublin 1993-12-27 +2966135 Blackpool Blackpool 51.91028 -8.47139 P PPLX IE M 04 0 62 Europe/Dublin 2010-08-14 +2966136 Blackpool Blackpool 52.37806 -8.54278 P PPL IE M 16 0 95 Europe/Dublin 2010-08-14 +2966137 Black Point Black Point 51.84639 -8.3225 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966138 Blacklion Blacklion An Blaic,Blacklion 54.29278 -7.87528 P PPL IE U 02 0 73 Europe/Dublin 2010-08-14 +2966139 Blacklion Blacklion 52.75 -6.6675 P PPL IE L 01 0 136 Europe/Dublin 2010-08-14 +2966140 Black Islands Black Islands 53.53333 -7.96667 T ISLS IE L 18 0 62 Europe/Dublin 1993-12-27 +2966141 Blackhead Bay Blackhead Bay Ballyvaghan Bay,Ballyvaughan,Blackhead Bay 53.14639 -9.18 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2966142 Black Head Black Head 53.15395 -9.26485 T CAPE IE C 10 0 32 Europe/Dublin 2010-08-14 +2966143 Black Hall Black Hall 53.78417 -6.29528 S EST IE L 19 0 32 Europe/Dublin 2010-08-14 +2966144 Blackcastle House Blackcastle House Black Castle,Blackcastle House 53.66194 -6.67639 S EST IE IE L 21 0 42 Europe/Dublin 2010-08-14 +2966145 Black Castle Black Castle 52.98333 -6.03333 S BLDG IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2966146 The Black Bush The Black Bush 53.47806 -6.50222 P PPLL IE L 21 0 83 Europe/Dublin 2010-08-14 +2966147 Black Bull Black Bull 53.45083 -6.47889 P PPL IE L 21 0 79 Europe/Dublin 2010-08-14 +2966148 Black Ball Head Black Ball Head 51.59167 -10.04111 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966149 Bishops Village Bishops Village 51.64028 -9.29583 P PPL IE M 04 0 64 Europe/Dublin 2010-08-14 +2966150 Bishopshall Bishopshall 52.315 -7.12083 P PPL IE L 13 0 45 Europe/Dublin 2010-08-14 +2966151 Bishopscourt House Bishopscourt House Bishop's Court,Bishopscourt House,Bishop’s Court 53.26333 -6.57778 S EST IE IE L 12 0 123 Europe/Dublin 2010-08-14 +2966152 Birreencorragh Birreencorragh 53.98361 -9.48833 T MT IE C 20 0 699 456 Europe/Dublin 2010-08-14 +2966153 Birr Castle Birr Castle 53.1 -7.93333 S EST IE 00 0 67 Europe/Dublin 1993-12-27 +2966154 Birr Birr Biorra,Birr,Parsonstown,Бирр 53.09139 -7.91333 P PPL IE L 23 4549 69 Europe/Dublin 2010-08-14 +2966155 Birmore Island Birmore Island Bir Island,Birmore Island 53.27806 -9.79111 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966156 Birdhill Birdhill Birdhill 52.76556 -8.43583 P PPL IE M 26 0 74 Europe/Dublin 2010-11-04 +2966157 Birchfield House Birchfield House 52.94917 -9.40639 S HSEC IE M 03 0 15 Europe/Dublin 2010-08-14 +2966158 Birchfield House Birchfield House 52.63 -7.25278 S EST IE L 13 0 76 Europe/Dublin 2010-08-14 +2966159 Binroe Castle Binroe Castle 53.03333 -9.2 S RUIN IE M 03 0 151 Europe/Dublin 1993-12-27 +2966160 An Geata Mór An Geata Mor An Geata Mor,An Geata Mór,Binghamstown 54.20389 -10.03611 P PPL IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2966161 Bingham Castle Bingham Castle 54.15 -10.08333 S EST IE C 20 0 1 Europe/Dublin 2010-08-14 +2966162 Bingfield Bingfield 53.96056 -7.42917 S EST IE U 02 0 80 Europe/Dublin 2010-08-14 +2966163 Binbane Binbane 54.7325 -8.25083 T MT IE U 06 0 225 Europe/Dublin 2010-08-14 +2966164 Bills Rocks Bills Rocks Bills Rocks,The Bills 53.87028 -10.20667 T RKS IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2966165 Bilboa River Bilboa River 52.58222 -8.32972 H STM IE M 16 0 64 Europe/Dublin 2010-08-14 +2966166 Bilboa Bilboa 52.79667 -7.03806 P PPL IE L 01 0 309 Europe/Dublin 2010-08-14 +2966167 Big Sound Big Sound 53.33333 -9.93333 H SD IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2966168 Bettystown Bettystown Baile an Bhiataigh,Betaghstown,Bettystown 53.70139 -6.24611 P PPL IE L 21 0 -9999 Europe/Dublin 2010-08-14 +2966169 Bessborough House Bessborough House Bessborough,Bessborough House 52.35 -7.31667 S EST IE IE L 13 0 2 Europe/Dublin 2010-08-14 +2966170 Besborough Besborough 52.61083 -9.385 S EST IE M 03 0 -9999 Europe/Dublin 2010-08-14 +2966171 Bertraghboy Bay Bertraghboy Bay Bertraghboy Bay,Birterbuy Bay 53.38833 -9.85278 H BAY IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966172 Bert House Bert House 53.02389 -7.01861 S EST IE L 12 0 63 Europe/Dublin 2010-08-14 +2966173 Slieve Bernagh Slieve Bernagh 52.84222 -8.53139 T MTS IE M 03 0 389 Europe/Dublin 2010-08-14 +2966174 Bermingham House Bermingham House Bermingham House,Birmingham House 53.53333 -8.8 S EST IE C 10 0 66 Europe/Dublin 2010-08-10 +2966175 Benwee Head Benwee Head 54.33667 -9.81889 T CAPE IE C 20 0 20 Europe/Dublin 2010-08-14 +2966176 Benwee Geevraun Point Benwee Geevraun Point 54.3225 -9.57639 T PT IE C 20 0 57 Europe/Dublin 2010-08-14 +2966177 Benwee Benwee 53.58333 -9.58333 T MT IE C 10 0 79 Europe/Dublin 1993-12-27 +2966178 Benwee Benwee Benwee,Kilcummin Head 54.28611 -9.215 T CAPE IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2966179 Bennettsbridge Bennettsbridge Bennettsbridge,Droichead Bineid,Droichead Binéid 52.59194 -7.18 P PPL IE L 13 0 56 Europe/Dublin 2010-08-14 +2966180 Bennet Bank Bennet Bank 53.38333 -5.93333 H BNK IE 00 0 -9999 Europe/Dublin 1993-12-27 +2966181 Bennekerry House Bennekerry House 52.81639 -6.87972 S EST IE L 01 0 69 Europe/Dublin 2010-08-14 +2966182 Benmore Benmore 54.25 -9.55 T MT IE C 20 0 352 162 Europe/Dublin 2010-08-14 +2966183 Benhead Benhead 53.65583 -6.22306 T CAPE IE L 21 0 -9999 Europe/Dublin 2010-08-14 +2966184 Benduff Benduff 52.85 -7.91667 T MT IE M 26 0 285 Europe/Dublin 2010-08-14 +2966185 Bencroy Bencroy Bencroy,Gubnaveagh 54.12417 -7.92806 T MT IE C 14 0 520 424 Europe/Dublin 2010-08-14 +2966186 Bencorr Bencorr Binn Chorr 53.50722 -9.79195 T MT IE C 10 0 711 421 Europe/Dublin 2010-08-14 +2966187 Benbulbin Benbulbin Benbulben,Benbulbin,Benbulbin Range 54.36667 -8.47444 T MT IE C 25 0 527 187 Europe/Dublin 2010-08-14 +2966188 Benbrack Benbrack 54.14528 -7.84472 T MT IE U 02 0 503 439 Europe/Dublin 2010-08-14 +2966189 Benbrack Benbrack 53.53333 -9.86667 T MT IE C 10 0 585 306 Europe/Dublin 2010-08-14 +2966190 Benbo Benbo 54.29 -8.23333 T MT IE C 14 0 416 157 Europe/Dublin 2010-08-14 +2966191 Benbaun Benbaun Benbaun 53.51667 -9.83333 T MT IE C 10 0 457 Europe/Dublin 2011-02-08 +2966192 Benaderreen Benaderreen 54.31667 -9.45 H BAY IE C 20 0 -9999 Europe/Dublin 1993-12-27 +2966193 Belvoir House Belvoir House Belvoir,Belvoir House 52.78333 -8.73278 S RUIN IE IE M 03 0 76 Europe/Dublin 2010-08-14 +2966194 Belville Belville 54.16333 -9.34611 P PPL IE C 20 0 56 Europe/Dublin 2010-08-14 +2966195 Belview House Belview House 52.25972 -7.03917 S EST IE L 13 0 8 Europe/Dublin 2010-08-14 +2966196 Belview Belview 53.73389 -7.05444 S EST IE L 21 0 145 Europe/Dublin 2010-08-14 +2966197 Belview Belview 53.23056 -8.19639 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2966198 Belvidere Lodge Belvidere Lodge 53.48333 -7.36667 S EST IE L 29 0 112 Europe/Dublin 1993-12-27 +2966199 Belvidere Belvidere Belvedere,Belvidere 53.46667 -7.36667 S EST IE L 29 0 113 Europe/Dublin 2010-08-10 +2966200 Belvelly Belvelly 51.88306 -8.30306 P PPL IE M 04 0 55 Europe/Dublin 2010-08-14 +2966201 Belturbet Belturbet Beal Tairbirt,Belturbet,Béal Tairbirt,Белтурбет 54.1 -7.45 P PPL IE U 02 1277 75 Europe/Dublin 2010-08-14 +2966202 Beltra Lough Beltra Lough 53.92444 -9.41333 H LK IE C 20 0 66 Europe/Dublin 2010-08-14 +2966203 Beltra Beltra 54.21944 -8.6175 P PPL IE C 25 0 29 Europe/Dublin 2010-08-14 +2966204 Beltra Beltra 53.94361 -9.38472 P PPL IE C 20 0 64 Europe/Dublin 2010-08-14 +2966205 Beltany Upper Beltany Upper 55.1 -8.13333 P PPL IE U 06 0 94 Europe/Dublin 2010-08-14 +2966206 Beltany Lower Beltany Lower Beltany,Beltany Lower 55.1 -8.13333 P PPL IE IE U 06 0 94 Europe/Dublin 2010-08-14 +2966207 Lough Belshade Lough Belshade 54.75444 -8.03778 H LK IE U 06 0 385 Europe/Dublin 2010-08-14 +2966208 Belmullet Belmullet Beal an Mhuirthead,Belmuliet,Belmullet,Béal an Mhuirthead 54.225 -9.99083 P PPL IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2966209 Belmount House Belmount House 52.81222 -6.95222 S EST IE L 01 0 42 Europe/Dublin 2010-08-14 +2966210 Belmont House Belmont House 52.3375 -6.53167 S EST IE L 30 0 76 Europe/Dublin 2010-08-14 +2966211 Belmont Belmont 53.61667 -8.96667 P PPL IE C 10 0 145 Europe/Dublin 1993-12-27 +2966212 Bellurgan Station Bellurgan Station Bellurgan,Bellurgan Station 54 -6.31667 S RSTN IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2966213 Bellmount House Bellmount House Bellmount,Bellmount House 53.5 -7.4 S EST IE L 29 0 109 Europe/Dublin 2010-08-10 +2966214 Bellmount and Cloghan Station Bellmount and Cloghan Station Bellmount and Cloghan Station,Belmont Station,Belmont and Cloghan 53.23333 -7.88333 S RSTN IE L 23 0 74 Europe/Dublin 2010-08-10 +2966215 Belmont Belmont Bellmount,Belmont 53.255 -7.89361 P PPL IE IE L 23 0 60 Europe/Dublin 2010-08-14 +2966216 Bellmont House Bellmont House Bellmont House,Bellmount House 52.82417 -7.50028 S EST IE IE L 15 0 108 Europe/Dublin 2010-08-14 +2966217 Belline House Belline House 52.36389 -7.33583 S EST IE L 13 0 16 Europe/Dublin 2010-08-14 +2966218 Bellia Bellia Bellia,Bellina 52.6225 -9.73111 P PPL IE IE M 03 0 41 Europe/Dublin 2010-08-14 +2966219 Bealaclugga Bealaclugga Bealaclugga,Bell Harbour 53.12167 -9.06833 P PPL IE IE M 03 0 65 Europe/Dublin 2010-08-14 +2966220 Bellevue Bellevue 52.4 -6.55 S EST IE L 30 0 42 Europe/Dublin 2010-08-14 +2966221 Belleville Park Belleville Park 52.14444 -7.82583 S EST IE M 27 0 70 Europe/Dublin 2010-08-14 +2966222 Belleville Belleville 53.34667 -8.76667 S EST IE C 10 0 66 Europe/Dublin 2010-08-14 +2966223 Belle Isle Belle Isle 53.08 -8.18528 S EST IE M 26 0 55 Europe/Dublin 2010-08-14 +2966224 Belleek Manor Belleek Manor Belleck Castle,Belleek,Belleek Manor 54.13333 -9.15 S EST IE IE C 20 0 3 Europe/Dublin 2010-08-14 +2966226 Bellaveeny Lodge Bellaveeny Lodge Bellaveeny Lodge,Bellavenny Lodge 53.97417 -9.795 S HSE IE IE C 20 0 27 Europe/Dublin 2010-08-14 +2966227 Bellavary Bellavary Beal Atha Bhearaigh,Bellavary,Béal Átha Bhearaigh 53.89361 -9.14917 P PPL IE C 20 0 55 Europe/Dublin 2010-08-14 +2966228 Bellaugh Bellaugh 53.43333 -7.96667 P PPL IE C 24 0 65 Europe/Dublin 1993-12-27 +2966229 Bellatrain Bellatrain 54.04028 -6.86889 P PPL IE U 22 0 136 Europe/Dublin 2010-08-14 +2966230 Bellanode Bellanode 54.26694 -7.03417 P PPL IE U 22 0 74 Europe/Dublin 2010-08-14 +2966231 Bellananagh Bellananagh Ballinagh,Beal Atha na nEach,Bellananagh,Béal Átha na nEach 53.93333 -7.41667 P PPL IE IE U 02 0 79 Europe/Dublin 2010-08-14 +2966232 Bellanamullia Bellanamullia 53.42682 -8.01418 P PPL IE 00 0 137 Europe/Dublin 2007-08-20 +2966233 Bellanagare Bellanagare Beal Atha na gCarr,Bellanagare,Béal Átha na gCarr 53.83333 -8.38333 P PPL IE C 24 0 95 Europe/Dublin 2010-08-14 +2966234 Bellanacargy Bellanacargy 54.04167 -7.24917 P PPL IE U 02 0 76 Europe/Dublin 2010-08-14 +2966235 Bellanaboy Bridge Bellanaboy Bridge 54.22444 -9.75361 P PPL IE C 20 0 67 Europe/Dublin 2010-08-14 +2966236 Bellanaboy Bellanaboy 54.00917 -8.05917 P PPL IE C 14 0 67 Europe/Dublin 2010-08-14 +2966237 Bellamont House Bellamont House 54.08639 -7.06833 S HSEC IE U 02 0 89 Europe/Dublin 2010-08-14 +2966238 Bellakip River Bellakip River 53.75 -9.76667 H STM IE C 20 0 60 Europe/Dublin 1993-12-27 +2966239 Bellair Bellair Bellair,Bellair House 53.33667 -7.73222 S EST IE IE L 23 0 102 Europe/Dublin 2010-08-14 +2966240 Bellahy Bellahy 53.96889 -8.79528 P PPL IE C 25 0 74 Europe/Dublin 2010-08-14 +2966241 Bellaheady Bridge Bellaheady Bridge 54.08972 -7.61917 P PPL IE U 02 0 73 Europe/Dublin 2010-08-14 +2966242 Bellacragher Bay Bellacragher Bay Bellacrager Bay,Bellacragha Bay,Bellacragher Bay 53.92028 -9.80222 H BAY IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966243 Bellacorick Bellacorick Bellacorick,Bellacorick Bridge 54.11944 -9.57944 P PPL IE IE C 20 0 75 Europe/Dublin 2010-08-14 +2966244 Belhavel Lough Belhavel Lough 54.21083 -8.18639 H LK IE C 14 0 69 Europe/Dublin 2010-08-14 +2966245 Belgooly Belgooly Belgooly 51.73889 -8.49 P PPL IE M 04 0 82 Europe/Dublin 2010-08-14 +2966246 Belderg Harbour Belderg Harbour Belderg Bay,Belderg Harbour 54.31611 -9.55639 H HBR IE IE C 20 0 32 Europe/Dublin 2010-08-14 +2966247 Belderg Belderg Beal Deirg,Belderg,Béal Deirg 54.3 -9.55 P PPL IE IE C 20 0 93 Europe/Dublin 2010-08-14 +2966248 Belclare Belclare Belclare,Bohernasassanagh,Bohernasassonagh 53.48333 -8.93333 P PPL IE C 10 0 70 Europe/Dublin 2010-08-10 +2966249 Belan House Belan House Belan,Belan House 52.95 -6.85 S RUIN IE IE L 12 0 125 Europe/Dublin 2010-08-14 +2966250 Belalt Belalt 54.54333 -7.88972 P PPL IE U 06 0 75 Europe/Dublin 2010-08-14 +2966251 Bekan Station Bekan Station Bekan,Bekan Station 53.73333 -8.85 S RSTN IE C 20 0 79 Europe/Dublin 2010-08-10 +2966252 Bekan Lough Bekan Lough 53.75 -8.83333 H LK IE C 20 0 77 Europe/Dublin 1993-12-27 +2966253 Bekan Bekan 53.75 -8.85 P PPL IE C 20 0 77 Europe/Dublin 1993-12-27 +2966254 River Behy River Behy 52.06556 -9.95667 H STM IE M 11 0 12 Europe/Dublin 2010-08-14 +2966255 Behagh Behagh 53.13667 -9.06444 P PPL IE M 03 0 60 Europe/Dublin 2010-08-14 +2966256 Beginish Island Beginish Island Beginish Island,Beginnis 51.93861 -10.30333 T ISL IE IE M 11 0 16 Europe/Dublin 2010-08-14 +2966257 Beetle Head Beetle Head 53.78333 -10.05 T CAPE IE C 20 0 -9999 Europe/Dublin 1993-12-27 +2966258 Beenoskee Beenoskee 52.21556 -10.08028 T MT IE M 11 0 488 Europe/Dublin 2010-08-14 +2966259 Beennamweel Beennamweel 52.05 -8.71667 P PPL IE M 04 0 253 Europe/Dublin 1993-12-27 +2966260 Beennaman Beennaman 52.25361 -10.295 T MT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966261 Beehive Beehive 53.95833 -7.12611 S EST IE U 02 0 160 Europe/Dublin 2010-08-14 +2966262 Beechwood Park Beechwood Park Beechwood,Beechwood Park 52.90833 -8.13306 S EST IE IE M 26 0 139 Europe/Dublin 2010-11-04 +2966263 Beechwood Beechwood 53.65 -8.1 S EST IE C 24 0 70 Europe/Dublin 1993-12-27 +2966264 Beechmount House Beechmount House 52.52806 -7.75944 S EST IE M 26 0 152 Europe/Dublin 2010-08-14 +2966265 Beechmount House Beechmount House Beechmount,Beechmount House 52.52306 -8.91917 S EST IE IE M 16 0 48 Europe/Dublin 2010-08-14 +2966266 Bedlam Bedlam 55.11667 -8.15 P PPL IE U 06 0 25 Europe/Dublin 1993-12-27 +2966267 Bective House Bective House Bective,Bective House 53.59556 -6.67611 S EST IE IE L 21 0 51 Europe/Dublin 2010-08-14 +2966268 Bective Bective Bective,Bective Bridge 53.57972 -6.69722 P PPL IE L 21 0 61 Europe/Dublin 2010-08-14 +2966269 Beau Parc Beau Parc 53.6925 -6.58139 S EST IE L 21 0 47 Europe/Dublin 2010-08-14 +2966270 Beaulieu House Beaulieu House Beaulieu,Beaulieu House 53.7325 -6.29444 S EST IE IE L 19 0 1 Europe/Dublin 2010-08-14 +2966271 Beaufort House Beaufort House Beaufort,Beaufort House 52.06667 -9.63333 P PPL IE M 11 0 41 Europe/Dublin 2010-08-10 +2966272 Beaufort Beaufort 52.06667 -9.63333 P PPL IE 00 0 41 Europe/Dublin 1993-12-27 +2966273 Bear Island Bear Island Bear Island,Bere Island 51.63583 -9.88139 T ISL IE IE M 04 0 95 Europe/Dublin 2010-08-14 +2966274 Bear Haven Bear Haven Bear Haven,Bere Haven 51.65222 -9.85667 H HBR IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966275 Beara Peninsula Beara Peninsula Beara Peninsula,Berehaven Peninsula 51.68333 -9.7 T PEN IE M 04 0 -9999 Europe/Dublin 2010-08-10 +2966276 Beal Point Beal Point 52.58083 -9.61528 T PT IE M 11 0 9 Europe/Dublin 2010-08-14 +2966277 Bealock Bealock 51.82444 -9.12194 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2966278 Bealnablath Bealnablath Bealnabla,Bealnablath 51.82528 -8.85972 P PPL IE IE M 04 0 116 Europe/Dublin 2010-08-14 +2966279 Beal Lough Beal Lough 51.65 -9.85 H COVE IE M 04 0 15 Europe/Dublin 1993-12-27 +2966280 Bealin Bealin 53.41667 -7.85 P PPL IE L 29 0 89 Europe/Dublin 1993-12-27 +2966281 Bealanabrack River Bealanabrack River 53.5 -9.53333 H STM IE C 10 0 21 Europe/Dublin 1993-12-27 +2966282 Bealaha Bealaha 52.71694 -9.58667 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2966283 Bealadangan Bealadangan Beal an Daingin,Bealadangan,Béal an Daingin 53.31694 -9.61056 P PPL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +2966284 Lough Bealacooan Lough Bealacooan Bealacovan,Lough Bealacooan 53.29778 -9.37722 H LK IE IE C 10 0 100 Europe/Dublin 2010-08-14 +2966285 Beal Beal 52.56944 -9.61611 P PPL IE M 11 0 65 Europe/Dublin 2010-08-14 +2966286 Beagh Castle Beagh Castle 52.66028 -8.95083 S EST IE M 16 0 1 Europe/Dublin 2010-08-14 +2966287 Bay View Bay View 51.70694 -9.43028 P PPL IE M 04 0 23 Europe/Dublin 2010-08-14 +2966288 Bayswell House Bayswell House 52.77694 -7.61389 S EST IE L 13 0 154 Europe/Dublin 2010-08-14 +2966289 Bawnmore Bawnmore 51.95 -8.95 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +2966290 Bawn House Bawn House 53.66667 -7.76667 S EST IE L 18 0 83 Europe/Dublin 1993-12-27 +2966291 Bawn Cross Roads Bawn Cross Roads 53.66667 -7.76667 P PPL IE L 18 0 83 Europe/Dublin 1993-12-27 +2966292 Bawn Cross Roads Bawn Cross Roads 52.23333 -8.9 P PPL IE M 04 0 141 Europe/Dublin 1993-12-27 +2966293 Bawnboy Bawnboy Bawnboy 54.12139 -7.67556 P PPL IE U 02 0 77 Europe/Dublin 2010-08-14 +2966294 Bawn Bawn 52.82944 -8.21528 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +2966295 Bauteogue River Bauteogue River 53.02778 -7.085 H STM IE L 15 0 76 Europe/Dublin 2010-08-14 +2966296 Baurtregaun Baurtregaun Baurtregaum,Baurtregaun 52.20917 -9.83083 T MT IE IE M 11 0 851 660 Europe/Dublin 2011-03-08 +2966297 Baurscoob Baurscoob 52.5 -7.31667 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +2966298 Bauraneag Bauraneag 52.51583 -9.16889 P PPL IE M 11 0 154 Europe/Dublin 2010-08-14 +2966299 Battlefield House Battlefield House 54.01944 -8.46361 S HSEC IE C 25 0 98 Europe/Dublin 2010-08-14 +2966300 Battle Bridge Battle Bridge 54 -8.08333 P PPL IE 00 0 74 Europe/Dublin 1993-12-27 +2966301 Batterstown Batterstown 53.46972 -6.53639 P PPL IE L 21 0 82 Europe/Dublin 2010-08-14 +2966302 Bartraw Bartraw 53.8 -9.65 T ISL IE C 20 0 -9999 Europe/Dublin 1993-12-27 +2966303 Bartragh Island Bartragh Island Bartragh Island,Bartragh Sandhills 54.21444 -9.16472 T ISL IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966304 Bartlemy Bartlemy 52.04833 -8.26583 P PPL IE M 04 0 95 Europe/Dublin 2010-08-14 +2966305 Barrys Point Barrys Point Barry Point,Barrys Point 51.60778 -8.68583 T PT IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966306 Barrys Head Barrys Head Barry Head,Barrys Head 51.70306 -8.39583 T CAPE IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966307 Barrykilla Barrykilla 51.84417 -8.16833 P PPL IE M 04 0 56 Europe/Dublin 2010-08-14 +2966308 Barry Barry 53.6 -7.76667 P PPL IE L 18 0 76 Europe/Dublin 1993-12-27 +2966309 Barrow Harbour Barrow Harbour 52.2975 -9.85306 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966310 River Barrow River Barrow 52.23583 -6.96 H STM IE 00 0 -9999 Europe/Dublin 1998-01-09 +2966311 Barrow Barrow 52.30833 -9.84417 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2966312 Barronstown Barronstown 52.4 -6.73333 P PPL IE L 30 0 73 Europe/Dublin 2010-08-14 +2966313 Barringtonsbridge Barringtonsbridge 52.64444 -8.47028 P PPL IE M 16 0 55 Europe/Dublin 2010-08-14 +2966314 Barrigone Barrigone 52.6 -9.05 P PPL IE M 16 0 5 Europe/Dublin 2010-08-14 +2966315 Barratogher Barratogher 54.03333 -8.85 P PPL IE C 25 0 57 Europe/Dublin 1993-12-27 +2966316 Barranagh Island Barranagh Island 54.16222 -10.04194 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966317 Barraduff Barraduff 52.06667 -9.33333 P PPL IE M 11 0 135 Europe/Dublin 1993-12-27 +2966318 Barrack Village Barrack Village 52.47278 -6.85611 P PPL IE L 30 0 188 Europe/Dublin 2010-08-14 +2966319 Barrack Village Barrack Village 52.3175 -7.74667 P PPL IE M 27 0 97 Europe/Dublin 2010-08-14 +2966320 Barrack Point Barrack Point 51.46667 -9.38333 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966321 Barrabehy Barrabehy 52.34639 -7.26444 P PPL IE L 13 0 90 Europe/Dublin 2010-08-14 +2966322 River Barra River Barra 54.95889 -8.10194 H STM IE U 06 0 68 Europe/Dublin 2010-08-14 +2966323 Lough Barra Lough Barra 54.95583 -8.10472 H LK IE U 06 0 96 Europe/Dublin 2010-08-14 +2966324 Baronstown Baronstown Baronstown,Baronstown House 53.6 -7.5 S EST IE IE L 29 0 87 Europe/Dublin 2010-08-14 +2966325 Barnycarroll Barnycarroll 53.75 -8.95 P PPL IE C 20 0 80 Europe/Dublin 1993-12-27 +2966326 Barntick House Barntick House Barntick,Barntick House 52.79722 -8.99583 S EST IE IE M 03 0 73 Europe/Dublin 2010-08-14 +2966327 Barn Hill Barn Hill 54.96278 -7.69889 S EST IE U 06 0 58 Europe/Dublin 2010-08-14 +2966328 Barnesmore Station Barnesmore Station Barnesmore Halt,Barnesmore Station 54.7 -7.98333 S RSTN IE U 06 0 190 Europe/Dublin 2010-08-10 +2966329 Barnesmore Gap Barnesmore Gap 54.72556 -7.94444 T GAP IE U 06 0 298 Europe/Dublin 2010-08-14 +2966330 Barnesmore Barnesmore 54.69194 -7.99472 P PPL IE U 06 0 126 Europe/Dublin 2010-08-14 +2966331 Barnes Gap Barnes Gap Barnes Beg Gap,Barnes Gap 55.08444 -7.86194 T GAP IE IE U 06 0 103 Europe/Dublin 2010-08-14 +2966332 Barnane House Barnane House 52.79667 -7.90806 S EST IE M 26 0 133 Europe/Dublin 2010-08-14 +2966333 Barna House Barna House 53.25778 -9.12556 S HSEC IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966334 Barna House Barna House 52.72333 -8.41167 S EST IE M 26 0 68 Europe/Dublin 2010-08-14 +2966335 Barnagh Station Barnagh Station Barnagh,Barnagh Station 52.41667 -9.15 S RSTN IE IE M 03 0 207 Europe/Dublin 2010-08-14 +2966336 Barnagh Hill Barnagh Hill 52.42722 -9.14167 T HLL IE M 16 0 223 Europe/Dublin 2010-08-14 +2966337 Barnagh Hill Barnagh Hill 52.38083 -9.18611 T HLL IE M 16 0 152 Europe/Dublin 2010-08-14 +2966338 Barnaderg Barnaderg 53.48333 -8.71667 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2966339 Barnacurra Barnacurra 52.2 -9.06667 P PPL IE M 04 0 168 Europe/Dublin 1993-12-27 +2966340 Barnacahoge Barnacahoge 53.91667 -8.86667 P PPL IE C 20 0 125 Europe/Dublin 1993-12-27 +2966341 Barna Barna 53.25 -9.15 P PPL IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2966342 Bearna Bearna Barna,Bearna 53.25194 -9.14972 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +2966343 Barna Barna 52.53583 -8.33139 P PPL IE M 16 0 112 Europe/Dublin 2010-08-14 +2966344 Barmona Barmona 52.58333 -6.9 P PPL IE L 01 0 66 Europe/Dublin 2010-08-14 +2966345 Barmeath Castle Barmeath Castle Barmeath,Barmeath Castle 53.83 -6.34056 S CSTL IE IE L 19 0 64 Europe/Dublin 2010-08-14 +2966346 Barloge Barloge 51.49556 -9.315 P PPL IE M 04 0 45 Europe/Dublin 2010-08-14 +2966347 Barley Lake Barley Lake 51.75917 -9.62806 H LK IE M 04 0 200 Europe/Dublin 2010-08-14 +2966348 Barleyhill House Barleyhill House 53.9 -9.05 S EST IE C 20 0 56 Europe/Dublin 1993-12-27 +2966349 Barley Cove Barley Cove 51.46028 -9.77667 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966350 Bargy Castle Bargy Castle 52.22167 -6.49361 S BLDG IE L 30 0 9 Europe/Dublin 2010-08-14 +2966351 Bardinch River Bardinch River 51.95 -9.16667 H STM IE M 04 0 151 Europe/Dublin 1993-12-27 +2966352 Barbersfort House Barbersfort House Barbersfort,Barbersfort House 53.48333 -8.76667 S EST IE C 10 0 85 Europe/Dublin 2010-08-10 +2966353 Barbavilla House Barbavilla House Barbavilla,Barbavilla House 53.63167 -7.20833 S EST IE IE L 29 0 123 Europe/Dublin 2010-08-14 +2966354 Bantry House Bantry House Bantry House 51.68639 -9.45389 S EST IE M 04 0 43 Europe/Dublin 2010-08-14 +2966355 Bantry Bay Bantry Bay Bantry Bay 51.65 -9.71667 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966356 Bantry Bantry Bantry,Beanntrai,Beanntraí 51.68333 -9.45 P PPL IE M 04 3234 112 Europe/Dublin 2010-08-14 +2966357 Banteer Banteer Banteer,Bantir,Bántir 52.11667 -8.9 P PPL IE IE M 04 0 112 Europe/Dublin 2010-08-14 +2966358 Bansha Wood Bansha Wood 52.44611 -8.105 V FRST IE M 26 0 142 Europe/Dublin 2010-08-14 +2966359 Bansha Castle Bansha Castle 52.45 -8.06667 S EST IE M 26 0 80 Europe/Dublin 2010-08-14 +2966360 Bansha Bansha An Bhainseach,An Bháinseach,Bansha 52.44806 -8.0625 P PPL IE M 40 0 76 Europe/Dublin 2010-11-04 +2966361 Banse Banse 52.62639 -7.43667 S EST IE L 13 0 152 Europe/Dublin 2010-08-14 +2966362 Banoge Banoge 52.48278 -8.71194 P PPL IE M 16 0 53 Europe/Dublin 2010-08-14 +2966363 Bannow Island Bannow Island 52.21472 -6.79722 T ISL IE L 30 0 1 Europe/Dublin 2010-08-14 +2966364 Bannow Bay Bannow Bay 52.22583 -6.7975 H BAY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2966365 Banna Banna 52.36167 -9.82889 P PPL IE M 11 0 17 Europe/Dublin 2010-08-14 +2966366 River Bann River Bann 52.545 -6.54306 H STM IE L 30 0 56 Europe/Dublin 2010-08-14 +2966367 Baingear Baingear Baingear,Bangor,Bangor Erris,Beannchar Iorrais 54.14306 -9.74028 P PPL IE IE C 20 0 70 Europe/Dublin 2010-08-14 +2966368 Lough Bane Lough Bane 53.68722 -7.17028 H LK IE L 21 0 152 Europe/Dublin 2010-08-14 +2966369 Bandon River Bandon River 51.67306 -8.50333 H STM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966370 Bandon Bandon Bandon,Droichead na Bandon 51.74694 -8.7425 P PPL IE M 04 5492 70 Europe/Dublin 2010-08-14 +2966371 Banagher Banagher Banagher,Beannchar 53.18861 -7.98667 P PPL IE L 23 1586 89 Europe/Dublin 2010-08-14 +2966372 Banada Banada 54.0375 -8.81694 P PPL IE C 25 0 60 Europe/Dublin 2010-08-14 +2966373 Baltray Baltray Baile Tra,Baile Trá,Baltray 53.74056 -6.2675 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +2966374 Baltrasna House Baltrasna House 53.73917 -7.20611 S EST IE L 21 0 129 Europe/Dublin 2010-08-14 +2966375 Baltinglass Baltinglass Baltinglass,Bealach Conglais 52.93722 -6.70917 P PPL IE IE L 31 0 136 Europe/Dublin 2010-08-14 +2966376 Baltimore Harbour Baltimore Harbour Baltimore Bay,Baltimore Harbour 51.48333 -9.38333 H BAY IE IE M 04 0 1 Europe/Dublin 2010-08-14 +2966377 Baltimore Baltimore Baltimore,Dun na Sead,Dún na Séad 51.48333 -9.36667 P PPL IE M 04 0 21 Europe/Dublin 2010-08-14 +2966378 Balrothery Balrothery Balrothery 53.59556 -6.21639 P PPL IE L 07 0 40 Europe/Dublin 2010-11-04 +2966379 Balrath Balrath 53.70444 -6.92333 P PPL IE L 21 0 84 Europe/Dublin 2010-08-14 +2966380 Balrath Balrath 53.62472 -6.48806 P PPL IE L 21 0 49 Europe/Dublin 2010-08-14 +2966381 Balnacart Balnacart 53.75 -7.3 P PPL IE L 29 0 171 Europe/Dublin 1993-12-27 +2966382 Ballywillin Station Ballywillin Station Ballywillan Station,Ballywillin Station 53.78333 -7.41667 S RSTN IE IE 00 0 71 Europe/Dublin 2010-08-10 +2966383 Ballywilliam House Ballywilliam House 53.18333 -7.71667 S EST IE L 23 0 72 Europe/Dublin 2010-08-14 +2966384 Ballywilliam Ballywilliam 52.45306 -6.86528 P PPL IE L 30 0 93 Europe/Dublin 2010-08-14 +2966385 Ballywater House Ballywater House 52.53917 -6.23389 S BLDG IE L 30 0 2 Europe/Dublin 2010-08-14 +2966386 Ballyward House Ballyward House Ballyward,Ballyward House 53.18361 -6.46278 S EST IE IE L 31 0 277 Europe/Dublin 2010-08-14 +2966387 Ballywalter House Ballywalter House 52.63639 -6.29333 S EST IE L 30 0 8 Europe/Dublin 2010-08-14 +2966388 Ballywalter House Ballywalter House 52.19778 -8.46361 S EST IE M 04 0 69 Europe/Dublin 2010-08-14 +2966389 Ballyvoyle Head Ballyvoyle Head 52.10444 -7.49306 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +2966390 Baile Bhuirne Baile Bhuirne Ballyvourney 51.94606 -9.16689 P PPL IE IE M 04 0 151 Europe/Dublin 2010-08-14 +2966391 Ballyvourcher Ballyvourcher 52.73333 -8.56667 P PPL IE M 03 0 45 Europe/Dublin 1993-12-27 +2966392 Ballyvolane House Ballyvolane House Ballyvolane,Ballyvolane House 52.05528 -8.18833 S EST IE IE M 04 0 117 Europe/Dublin 2010-08-14 +2966393 Ballyvisteen Ballyvisteen 52.27222 -8.44611 P PPL IE M 04 0 135 Europe/Dublin 2010-08-14 +2966394 Ballyvally House Ballyvally House Ballyvally,Ballyvally House 52.81444 -8.45944 S EST IE IE M 03 0 55 Europe/Dublin 2010-08-14 +2966395 Ballyvaldon Ballyvaldon 52.46667 -6.30417 P PPL IE L 30 0 10 Europe/Dublin 2010-08-14 +2966396 Ballyvaghan Ballyvaghan Baile Ui Bheachain,Baile Uí Bheacháin,Ballyvaghan,Ballyvaughan 53.11806 -9.15028 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2966397 Ballyturin House Ballyturin House Ballyturin,Ballyturin House 53.04889 -8.75333 S HSEC IE C 10 0 66 Europe/Dublin 2010-08-14 +2966398 Ballytrent House Ballytrent House Ballytrent,Ballytrent House 52.21667 -6.33583 S EST IE IE L 30 0 1 Europe/Dublin 2010-08-14 +2966399 Ballytobin House Ballytobin House Ballytobin,Ballytobin House 52.51111 -7.34611 S EST IE IE L 13 0 73 Europe/Dublin 2010-08-14 +2966400 Ballyteige Bay Ballyteige Bay 52.18306 -6.64639 H BAY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2966401 Ballytarsna Ballytarsna 52.57639 -7.82583 P PPL IE M 26 0 155 Europe/Dublin 2010-08-14 +2966402 Ballystanley House Ballystanley House Ballystanley,Ballystanley House 52.92611 -7.86111 S EST IE IE L 23 0 143 Europe/Dublin 2010-08-14 +2966403 Ballyshoneen Ballyshoneen 51.95 -8.68333 P PPL IE M 04 0 133 Europe/Dublin 2010-08-14 +2966404 Ballysheehan House Ballysheehan House Ballysheehan House,Ballyshehan House 52.5575 -7.85917 S BLDG IE IE M 26 0 145 Europe/Dublin 2010-11-04 +2966405 Ballyshannon House Ballyshannon House Ballyshannon,Ballyshannon House 53.08444 -6.82139 S HSEC IE IE L 12 0 151 Europe/Dublin 2010-08-14 +2966406 Ballyshannon Ballyshannon Ballyshannon,Beal Atha Seanaidh,Béal Átha Seanaidh 54.5 -8.18333 P PPL IE U 06 2683 68 Europe/Dublin 2010-08-14 +2966407 Ballyseedy Ballyseedy 52.25 -9.65 S EST IE M 11 0 66 Europe/Dublin 1993-12-27 +2966408 Ballysax Manor Ballysax Manor Ballysax,Ballysax House,Ballysax Manor 53.11639 -6.81278 S EST IE IE L 12 0 153 Europe/Dublin 2010-08-14 +2966409 Ballysallagh House Ballysallagh House 52.84778 -6.5375 S BLDG IE L 01 0 153 Europe/Dublin 2010-08-14 +2966410 Ballysakeery Ballysakeery Balisakeery,Ballysakeery 54.18472 -9.18028 P PPL IE IE C 20 0 1 Europe/Dublin 2010-08-14 +2966411 Ballysaggartmore House Ballysaggartmore House Ballysaggartmore,Ballysaggartmore House 52.14694 -7.98944 S EST IE IE M 27 0 21 Europe/Dublin 2010-08-14 +2966412 Ballysadare River Ballysadare River Ballysadare,Ballysadare River 54.21833 -8.51333 H STM IE IE C 25 0 55 Europe/Dublin 2010-08-14 +2966413 Ballysadare Bay Ballysadare Bay 54.23528 -8.58889 H BAY IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2966414 Ballysadare Ballysadare Baile Easa Dara,Ballysadare 54.21167 -8.50944 P PPL IE C 25 0 52 Europe/Dublin 2010-08-14 +2966415 Ballyroon Ballyroon 51.56194 -9.78139 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +2966416 Ballyroan Ballyroan Baile Atha an Roine,Baile Átha an Róine,Ballyroan 52.94556 -7.30417 P PPL IE L 15 0 151 Europe/Dublin 2010-08-14 +2966417 Ballyrihy House Ballyrihy House 52.91667 -7.93333 S EST IE L 23 0 114 Europe/Dublin 1993-12-27 +2966418 Ballyre Ballyre 51.99528 -8.03639 P PPL IE M 04 0 153 Europe/Dublin 2010-08-14 +2966419 Ballyrankin House Ballyrankin House 52.62139 -6.60278 S EST IE L 30 0 59 Europe/Dublin 2010-08-14 +2966420 Ballyragget Ballyragget Ballyragget,Beal Atha Ragad,Béal Átha Ragad 52.78889 -7.33028 P PPL IE IE L 13 0 77 Europe/Dublin 2010-08-14 +2966421 Ballyrafter House Ballyrafter House 52.145 -7.92722 S EST IE M 27 0 19 Europe/Dublin 2010-08-14 +2966422 Ballyquin Ballyquin 52.36944 -7.12833 P PPL IE L 13 0 153 Europe/Dublin 2010-08-14 +2966423 Ballyquin Ballyquin 52.26 -10.16222 P PPL IE M 11 0 25 Europe/Dublin 2010-08-14 +2966424 Ballyquin Ballyquin Ballyquin,Ballyquin House 52.78333 -8.55 S EST IE M 03 0 99 Europe/Dublin 2010-08-10 +2966425 Ballyporeen Ballyporeen Ballyporeen,Beal Atha Poirin,Béal Átha Póirin 52.26917 -8.10028 P PPL IE M 40 0 101 Europe/Dublin 2010-11-04 +2966426 Ballyphilip House Ballyphilip House Ballyphilip,Ballyphilip House 52.59694 -7.60611 S EST IE IE M 26 0 236 Europe/Dublin 2010-11-04 +2966427 Ballypatrick Ballypatrick 52.39361 -7.54583 P PPL IE M 26 0 89 Europe/Dublin 2010-08-14 +2966428 Ballyorgan Ballyorgan 52.31472 -8.46778 P PPL IE M 16 0 156 Europe/Dublin 2010-08-14 +2966429 Ballynoran Ballynoran 52.31667 -8.7 P PPL IE M 04 0 126 Europe/Dublin 1993-12-27 +2966430 Ballynoe House Ballynoe House 52.43972 -8.83667 S EST IE M 16 0 152 Europe/Dublin 2010-08-14 +2966431 Ballynoe Ballynoe 52.15 -8.08333 P PPL IE M 27 0 26 Europe/Dublin 1993-12-27 +2966432 Ballynoe Ballynoe An Baile Nua,Ballynoe 52.05917 -8.09861 P PPL IE M 04 0 91 Europe/Dublin 2010-08-14 +2966433 Ballynew Ballynew 53.23333 -9.43333 P PPL IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2966434 Ballynestragh Ballynestragh 52.71833 -6.28417 P PPL IE L 30 0 89 Europe/Dublin 2010-08-14 +2966435 Ballyness Bay Ballyness Bay 55.14556 -8.14 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2966436 Ballyneill Ballyneill Ballyneil,Ballyneill 52.37333 -7.48944 P PPL IE IE M 26 0 19 Europe/Dublin 2010-11-04 +2966437 Ballyneety Ballyneety 52.59611 -8.54694 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +2966438 Ballynee Ballynee 53.80889 -6.75694 P PPL IE L 21 0 74 Europe/Dublin 2010-08-14 +2966439 Ballyneale House Ballyneale House 52.44444 -8.83306 S EST IE M 16 0 152 Europe/Dublin 2010-08-14 +2966440 Ballyneale Ballyneale 52.42639 -7.00611 P PPL IE L 13 0 21 Europe/Dublin 2010-08-14 +2966441 Ballynavin Castle Ballynavin Castle Ballynavin Castle,Ballynavin House 52.96889 -8.0775 S EST IE IE M 26 0 92 Europe/Dublin 2010-11-04 +2966442 Ballynatray House Ballynatray House Ballynatary House,Ballynatray,Ballynatray House 52.00111 -7.88694 S EST IE IE M 27 0 25 Europe/Dublin 2010-08-14 +2966443 Ballynastangford Ballynastangford Ballynastangford,Ballynastrangford 53.75 -9.03333 P PPL IE C 20 0 74 Europe/Dublin 2010-08-10 +2966444 Ballynashee Ballynashee 54.1 -8.2 P PPL IE C 25 0 290 Europe/Dublin 1993-12-27 +2966445 Ballynascarty Ballynascarty 51.93389 -8.09611 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2966446 Ballynasare Ballynasare 52.14111 -10.11806 P PPL IE M 11 0 54 Europe/Dublin 2010-08-14 +2966447 Ballynare Cross Roads Ballynare Cross Roads Ballynare,Ballynare Cross Roads 53.42306 -6.57472 P PPL IE IE L 21 0 76 Europe/Dublin 2010-08-14 +2966448 Ballynanty House Ballynanty House Ballynanty,Ballynanty House 52.50083 -8.5725 S EST IE IE M 16 0 76 Europe/Dublin 2010-08-14 +2966449 Ballynanty Ballynanty Ballynanty 52.48333 -8.56667 P PPL IE M 16 0 78 Europe/Dublin 2010-08-10 +2966450 Ballynamult Ballynamult Ballinamult,Ballynamult 52.21111 -7.73667 P PPL IE IE M 27 0 142 Europe/Dublin 2010-08-14 +2966451 Ballynamona Ballynamona 52.49861 -8.44861 P PPL IE M 16 0 73 Europe/Dublin 2010-08-14 +2966452 Ballynamona Ballynamona 52.08333 -8.63333 P PPL IE M 04 0 109 Europe/Dublin 1993-12-27 +2966453 Ballynamona Ballynamona Ballynamona,Ballynamona Castle 52.22722 -8.51639 S BLDG IE IE M 04 0 74 Europe/Dublin 2010-08-14 +2966454 Ballynameeltoge Ballynameeltoge Ballynameeltoge,Ballynameeltogue 54.11667 -7.91667 P PPL IE C 14 0 368 Europe/Dublin 2010-08-10 +2966455 Ballynameelagh Ballynameelagh 54.85 -7.93333 P PPL IE U 06 0 145 Europe/Dublin 1993-12-27 +2966456 Ballynalty Ballynalty 53.5 -9.2 P PPL IE C 20 0 27 Europe/Dublin 1993-12-27 +2966457 Ballynalackan House Ballynalackan House 53.05028 -9.33639 S HSEC IE M 03 0 84 Europe/Dublin 2010-08-14 +2966458 Ballynakill Lough Ballynakill Lough 53.55472 -10.04917 H LK IE C 10 0 56 Europe/Dublin 2010-08-14 +2966459 Ballynakill Harbour Ballynakill Harbour 53.56667 -10 H HBR IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966460 Ballynakilla Ballynakilla 51.64556 -9.85833 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966461 Ballynakill Ballynakill 53.36667 -7.93333 P PPL IE C 24 0 55 Europe/Dublin 2010-08-14 +2966462 Ballynahown Ballynahown 53.35111 -7.84611 P PPL IE L 29 0 127 Europe/Dublin 2010-08-14 +2966463 Ballynahinch Lake Ballynahinch Lake Ballynahinch Lake,Ballynahinch Lough 53.46667 -9.83333 H LK IE IE C 10 0 1 Europe/Dublin 2010-08-14 +2966464 Ballynahinch House Ballynahinch House 52.40944 -8.44111 S EST IE M 16 0 115 Europe/Dublin 2010-08-14 +2966465 Ballynahinch Castle Ballynahinch Castle Ballynahinch,Ballynahinch Castle 53.46667 -9.86667 S EST IE C 10 0 58 Europe/Dublin 2010-08-10 +2966466 Ballynahattina Ballynahattina Ballynahaftina,Ballynahattina 53.45 -8.51667 P PPL IE C 10 0 76 Europe/Dublin 2010-08-10 +2966467 Ballynagree Ballynagree 51.98333 -8.93333 P PPL IE M 04 0 232 Europe/Dublin 2010-08-14 +2966468 Ballynagrallagh Ballynagrallagh 52.37306 -6.78778 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2966469 Ballynagore Ballynagore 53.405 -7.46417 P PPL IE L 29 0 91 Europe/Dublin 2010-08-14 +2966470 Ballynaglogh Ballynaglogh 54.06667 -8.55 P PPL IE C 25 0 75 Europe/Dublin 1993-12-27 +2966471 Ballynagarde House Ballynagarde House 52.58278 -8.56833 S EST IE M 16 0 76 Europe/Dublin 2010-08-14 +2966472 Ballynagarbry Ballynagarbry 53.40139 -7.73556 P PPL IE L 29 0 108 Europe/Dublin 2010-08-14 +2966473 Ballynagall Ballynagall Ballydavid,Ballynagall 52.19056 -10.38 P PPL IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966474 Ballynagall Ballynagall 53.58333 -7.33333 S EST IE L 29 0 122 Europe/Dublin 1993-12-27 +2966475 Ballynadrumny Ballynadrumny 53.42472 -6.95694 P PPL IE L 12 0 87 Europe/Dublin 2010-08-14 +2966476 Ballynacourty House Ballynacourty House Ballynacourty,Ballynacourty House 52.41528 -8.21556 S EST IE IE M 26 0 108 Europe/Dublin 2010-11-04 +2966477 Ballynacourty Ballynacourty Ballinacourty,Ballynacourty 52.085 -7.56694 P PPL IE IE M 27 0 4 Europe/Dublin 2010-08-14 +2966478 Ballynacorra River Ballynacorra River Ballinacurra River,Ballynacorra River 51.88333 -8.2 H STM IE IE M 04 0 44 Europe/Dublin 2010-08-14 +2966479 Ballynacorra Ballynacorra Ballinacurra,Ballynacorra,Ballynacurrig 51.89611 -8.165 P PPL IE IE M 04 0 60 Europe/Dublin 2010-08-14 +2966480 Ballynaclogh Ballynaclogh 52.82722 -8.16111 P PPL IE M 26 0 75 Europe/Dublin 2010-08-14 +2966481 Ballynacarrow Ballynacarrow 54.135 -8.56139 P PPL IE C 25 0 73 Europe/Dublin 2010-08-14 +2966482 Ballynacarrigy Ballynacarrigy Baile na Carraige,Ballynacargy,Ballynacarrigy 53.58333 -7.53333 P PPL IE L 29 0 98 Europe/Dublin 2010-08-14 +2966483 Ballynacarriga House Ballynacarriga House Ballynacarriga House,Ballynacarrige House 52.17222 -8.26667 S EST IE IE M 04 0 34 Europe/Dublin 2010-08-14 +2966484 Ballynacarriga Ballynacarriga 51.71194 -9.04056 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +2966485 Ballynacally Ballynacally 52.71917 -9.06583 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +2966486 Ballynacallagh Ballynacallagh 51.60611 -10.175 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966487 Ballynabola Ballynabola 52.36667 -6.83333 P PPL IE L 30 0 73 Europe/Dublin 2010-08-14 +2966488 Ballymurray Station Ballymurray Station Ballymurray,Ballymurray Station,Ballymurry 53.6 -8.11667 S RSTN IE C 24 0 71 Europe/Dublin 2010-08-10 +2966489 Ballymurphy Ballymurphy 52.57306 -6.86167 P PPL IE L 01 0 73 Europe/Dublin 2010-08-14 +2966490 Ballymurn Ballymurn 52.44111 -6.47472 P PPL IE L 30 0 26 Europe/Dublin 2010-08-14 +2966491 Ballymoyle Ballymoyle 52.84667 -6.13778 P PPL IE L 31 0 113 Europe/Dublin 2010-08-14 +2966492 Ballymote Ballymote Baile an Mhota,Baile an Mhóta,Ballymote 54.08333 -8.51667 P PPL IE C 25 0 75 Europe/Dublin 2010-08-14 +2966493 Ballymorris Ballymorris 52.17722 -7.23083 P PPL IE M 27 0 63 Europe/Dublin 2010-08-14 +2966494 Ballymore House Ballymore House Ballymore,Ballymore House 52.59889 -6.37389 S EST IE IE L 30 0 78 Europe/Dublin 2010-08-14 +2966495 Ballymore House Ballymore House 52.57111 -7.96389 S EST IE M 26 0 82 Europe/Dublin 2010-08-14 +2966496 Ballymore Eustace Ballymore Eustace An Baile Mor,An Baile Mór,Ballymore Eustace 53.13333 -6.61667 P PPL IE L 12 0 148 Europe/Dublin 2010-08-14 +2966497 Ballymore Castle Ballymore Castle 53.23333 -8.18333 S EST IE C 10 0 76 Europe/Dublin 1993-12-27 +2966498 Ballymore Castle Ballymore Castle 52.56889 -7.96806 S EST IE M 26 0 84 Europe/Dublin 2010-08-14 +2966499 Ballymore Ballymore Ballymore,Ballymore Lower 55.16167 -7.92028 P PPL IE IE U 06 0 11 Europe/Dublin 2010-08-14 +2966500 Ballymore Ballymore An Baile Mor,An Baile Mór,Ballymore 53.48333 -7.66667 P PPL IE L 29 0 78 Europe/Dublin 2010-08-14 +2966501 Ballymore Ballymore 52.12694 -10.31361 P PPL IE M 11 0 44 Europe/Dublin 2010-08-14 +2966502 Ballymore Ballymore 53.93333 -8.33333 S EST IE C 24 0 70 Europe/Dublin 1993-12-27 +2966503 Ballymoon Ballymoon 52.70083 -6.92167 P PPL IE L 01 0 124 Europe/Dublin 2010-08-14 +2966504 Ballymoney House Ballymoney House 52.93111 -6.09083 S EST IE L 31 0 81 Europe/Dublin 2010-08-14 +2966505 Ballymoney Ballymoney 55.03778 -7.50694 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2966506 Ballymoe Station Ballymoe Station Ballymoe,Ballymoe Station 53.7 -8.41667 S RSTN IE C 24 0 74 Europe/Dublin 2010-08-10 +2966507 Ballymoe Ballymoe Ballymoe,Beal Atha Mo,Béal Átha Mó 53.7 -8.46667 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +2966508 Ballymastocker Bay Ballymastocker Bay 55.2 -7.6 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2966509 Ballymartle Station Ballymartle Station Ballymartle,Ballymartle Station 51.76667 -8.56667 S RSTN IE IE M 04 0 79 Europe/Dublin 2010-08-14 +2966510 Ballymartle House Ballymartle House 51.775 -8.525 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +2966511 Ballymartin Ballymartin 52.62917 -6.90917 P PPL IE L 01 0 76 Europe/Dublin 2010-08-14 +2966512 Ballymakenny Ballymakenny 53.76889 -6.34444 P PPL IE L 19 0 83 Europe/Dublin 2010-08-14 +2966513 Ballymakeery Ballymakeery Baile Mhic Ire,Baile Mhic Íre,Ballymakeera,Ballymakeery 51.93333 -9.13333 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +2966514 Ballymakee House Ballymakee House 52.27833 -7.78194 S EST IE M 27 0 56 Europe/Dublin 2010-08-14 +2966515 Ballymahon Ballymahon Baile Ui Mhathain,Baile Uí Mhatháin,Ballymahon 53.56667 -7.76667 P PPL IE L 18 0 68 Europe/Dublin 2010-08-14 +2966516 Ballymagooly Ballymagooly 52.13333 -8.6 P PPL IE M 04 0 98 Europe/Dublin 1993-12-27 +2966517 Ballymagan Ballymagan 55.15417 -7.42667 P PPL IE U 06 0 120 Europe/Dublin 2010-08-14 +2966518 Ballymacward Ballymacward 53.37944 -8.485 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2966519 Ballymacool Ballymacool 54.94528 -7.7725 S EST IE U 06 0 58 Europe/Dublin 2010-08-14 +2966520 Ballymacoda Ballymacoda 51.89 -7.9325 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +2966521 Ballymackney Ballymackney 53.9575 -6.66306 P PPL IE U 22 0 72 Europe/Dublin 2010-08-14 +2966522 Ballymackey Ballymackey 52.87806 -8.08639 P PPL IE M 26 0 104 Europe/Dublin 2010-08-14 +2966523 Ballymackeogh House Ballymackeogh House 52.70222 -8.43194 S EST IE M 26 0 62 Europe/Dublin 2010-08-14 +2966524 Ballymacgibbon House Ballymacgibbon House Ballymacgibbon,Ballymacgibbon House 53.53333 -9.23333 S EST IE C 20 0 28 Europe/Dublin 2010-08-10 +2966525 Ballymacelligott Ballymacelligott Bally M'Elligott,Bally M’Elligott,Ballymacelligott 52.25 -9.58333 P PPL IE M 11 0 58 Europe/Dublin 2010-08-10 +2966526 Ballymacegan House Ballymacegan House 53.13333 -8.13333 S EST IE 00 0 61 Europe/Dublin 1993-12-27 +2966527 Ballymacaw Ballymacaw 52.14194 -7.04639 P PPL IE M 27 0 8 Europe/Dublin 2010-08-14 +2966528 Ballymacarbry Ballymacarbry Ballymacarbery,Ballymacarbry 52.26444 -7.74472 P PPL IE IE M 27 0 140 Europe/Dublin 2010-08-14 +2966529 Ballylynan Ballylynan Baile Ui Laigheanain,Baile Uí Laigheanáin,Ballylynan 52.94361 -7.04222 P PPL IE L 15 0 105 Europe/Dublin 2010-08-14 +2966530 Ballylooby Ballylooby Ballylooby 52.32694 -7.97889 P PPL IE M 26 0 74 Europe/Dublin 2010-11-04 +2966531 Ballylongford Ballylongford Ballylongford,Beal Atha Longfoirt,Béal Átha Longfoirt 52.54583 -9.47417 P PPL IE IE M 11 0 27 Europe/Dublin 2010-08-14 +2966532 Ballylin House Ballylin House Ballylin,Ballylin House 53.2825 -7.80417 S EST IE IE L 23 0 90 Europe/Dublin 2010-08-14 +2966533 Ballylinchy Ballylinchy 51.48333 -9.35 P PPL IE M 04 0 45 Europe/Dublin 2010-08-14 +2966534 Ballylinch House Ballylinch House 52.53806 -7.17944 S RUIN IE L 13 0 61 Europe/Dublin 2010-08-14 +2966535 Ballyliffin Ballyliffin Baile Lifin,Baile Lifín,Ballyliffen,Ballyliffin 55.28333 -7.4 P PPL IE U 06 0 75 Europe/Dublin 2010-08-14 +2966536 Ballylicky House Ballylicky House 51.71667 -9.43333 S BLDG IE M 04 0 30 Europe/Dublin 2010-08-14 +2966537 Ballylehane Upper Ballylehane Upper 52.89528 -7.12167 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +2966538 Ballyleck House Ballyleck House Ballyleck,Ballyleck House 54.23722 -7.01056 S HSEC IE IE U 22 0 73 Europe/Dublin 2010-08-14 +2966539 Ballyleakin House Ballyleakin House Ballyleakin,Ballyleakin House 53.31722 -7.12111 S EST IE IE L 23 0 102 Europe/Dublin 2010-08-14 +2966540 Ballylassa Ballylassa 53.58333 -9.16667 P PPL IE C 20 0 49 Europe/Dublin 1993-12-27 +2966541 Ballylaneen Ballylaneen Ballylaneen 52.17472 -7.40389 P PPL IE M 27 0 34 Europe/Dublin 2010-08-14 +2966542 Ballylanders Ballylanders Baile an Londraigh,Ballylanders 52.3725 -8.34583 P PPL IE M 16 0 152 Europe/Dublin 2010-08-14 +2966543 Ballylaan Ballylaan Ballylaan,Ballylaun 52.94667 -9.45833 P PPL IE IE M 03 0 69 Europe/Dublin 2010-08-14 +2966544 Ballyknockan Ballyknockan 53.10111 -6.50111 P PPL IE L 31 0 272 Europe/Dublin 2010-08-14 +2966545 Ballykisteen House Ballykisteen House Ballykisteen,Ballykisteen House,Ballykisteen Lodge 52.49778 -8.21583 S EST IE IE M 26 0 120 Europe/Dublin 2010-11-04 +2966546 Ballykilcavan House Ballykilcavan House Ballykilcavan House,Ballykilcavin 53.01667 -7.11361 S EST IE IE L 15 0 111 Europe/Dublin 2010-08-14 +2966547 Ballykerin Ballykerin 52.15 -7.7 P PPL IE M 27 0 116 Europe/Dublin 1993-12-27 +2966548 Ballykeeran Ballykeeran Ballykeeran 53.45 -7.88333 P PPL IE L 29 0 159 Europe/Dublin 2010-08-10 +2966549 Ballykeel House Ballykeel House Ballykeel,Ballykeel House 52.99944 -9.2225 S HSEC IE IE M 03 0 74 Europe/Dublin 2010-08-14 +2966550 Ballyjamesduff Ballyjamesduff Baile Sheamais Dhuibh,Baile Shéamais Dhuibh,Ballyjamesduff 53.86528 -7.20278 P PPL IE U 02 0 139 Europe/Dublin 2010-08-14 +2966551 Ballyhugh Ballyhugh 54.085 -7.53278 P PPL IE U 02 0 81 Europe/Dublin 2010-08-14 +2966552 Ballyhowly House Ballyhowly House 53.78333 -8.93333 S EST IE C 20 0 80 Europe/Dublin 1993-12-27 +2966553 Ballyhoura Mountains Ballyhoura Mountains Ballyhoura Hills,Ballyhoura Mountains 52.30306 -8.53861 T MTS IE IE M 16 0 340 Europe/Dublin 2010-08-14 +2966554 Ballyhoorisky Ballyhoorisky 55.245 -7.7425 P PPL IE U 06 0 13 Europe/Dublin 2010-08-14 +2966555 Ballyhooly Ballyhooly An Baile Atha hUlla,An Baile Átha hÚlla,Ballyhooly 52.14944 -8.40056 P PPL IE M 04 0 49 Europe/Dublin 2010-08-14 +2966556 Ballyhoolahan Ballyhoolahan 52.15 -9.05 P PPL IE M 04 0 152 Europe/Dublin 1993-12-27 +2966557 Ballyhoe Lough Ballyhoe Lough 53.90583 -6.71667 H LK IE 00 0 57 Europe/Dublin 1999-03-22 +2966558 Ballyhire House Ballyhire House 52.23139 -6.3225 S EST IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2966559 Ballyhighland Ballyhighland 52.50889 -6.70306 S EST IE L 30 0 118 Europe/Dublin 2010-08-14 +2966560 Ballyhenry Ballyhenry 53.55 -9.11667 P PPL IE C 20 0 56 Europe/Dublin 1993-12-27 +2966561 Ballyheige Bay Ballyheige Bay Ballyheige Bay,Ballyheigue Bay 52.38361 -9.85 H BAY IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966562 Ballyheige Ballyheige Baile Ui Thaidhg,Baile Uí Thaidhg,Ballyheige,Ballyheigue 52.38333 -9.83361 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966563 Ballyheelan Ballyheelan Ballyheelan,Ballyheelna 53.83333 -7.35 P PPL IE U 02 0 76 Europe/Dublin 2010-08-10 +2966564 Ballyhean Ballyhean 53.78333 -9.31667 P PPL IE C 20 0 62 Europe/Dublin 1993-12-27 +2966565 Ballyhealy House Ballyhealy House 53.58917 -7.06694 S EST IE L 29 0 112 Europe/Dublin 2010-08-14 +2966566 Ballyhaunis Ballyhaunis Ballyhaunis,Beal Atha hAmhnais,Béal Átha hAmhnais 53.76667 -8.76667 P PPL IE C 20 1344 59 Europe/Dublin 2010-08-14 +2966567 Ballyhard Ballyhard Ballyhall,Ballyhard 53.6 -8.48333 P PPL IE C 10 0 75 Europe/Dublin 2010-08-10 +2966568 Ballyhar Ballyhar 52.11667 -9.56667 P PPL IE M 11 0 76 Europe/Dublin 1993-12-27 +2966569 Ballyhale Ballyhale Baile Heil,Baile Héil,Ballyhale 52.46806 -7.19639 P PPL IE L 13 0 72 Europe/Dublin 2010-08-14 +2966570 Ballyhaise Station Ballyhaise Station Ballyhaise,Ballyhaise Station 54.08333 -7.35 S RSTN IE U 02 0 88 Europe/Dublin 2010-08-10 +2966571 Ballyhaise House Ballyhaise House Ballyhaise,Ballyhaise House 54.05 -7.31667 S EST IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2966572 Ballyhaise Ballyhaise Ballyhaise,Beal Atha hEis,Béal Átha hÉis 54.05 -7.31667 P PPL IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2966573 Ballyhahill Ballyhahill 52.55917 -9.19278 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +2966574 Ballyhack Ballyhack 52.245 -6.95917 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +2966575 Ballygriffin Ballygriffin Ballygriffen,Ballygriffin 52.51444 -7.98778 P PPL IE IE M 26 0 69 Europe/Dublin 2010-11-04 +2966576 Ballygrady Ballygrady 52.21667 -8.81667 P PPL IE M 04 0 152 Europe/Dublin 1993-12-27 +2966577 Ballygorey Ballygorey 52.26583 -7.23056 P PPL IE L 13 0 66 Europe/Dublin 2010-08-14 +2966578 Ballyglunin Station Ballyglunin Station Ballyglunin,Ballyglunin Station 53.43333 -8.78333 S RSTN IE C 10 0 57 Europe/Dublin 2010-08-10 +2966579 Ballyglooneen House Ballyglooneen House Ballyglooneen House,Ballyglunin 53.36667 -8.8 S HSEC IE IE C 10 0 65 Europe/Dublin 2010-08-14 +2966580 Ballyglissane House Ballyglissane House 52.04917 -8.30194 S EST IE M 04 0 107 Europe/Dublin 2010-08-14 +2966581 Ballyglass House Ballyglass House 54.28028 -8.42583 S HSEC IE C 25 0 43 Europe/Dublin 2010-08-14 +2966582 Ballyglass Ballyglass 53.73333 -9.16667 P PPL IE C 20 0 53 Europe/Dublin 1993-12-27 +2966583 Ballygiblin House Ballygiblin House 52.18333 -8.78333 S EST IE M 04 0 112 Europe/Dublin 1993-12-27 +2966584 Ballygeale Ballygeale 52.56778 -8.72028 P PPL IE M 16 0 85 Europe/Dublin 2010-08-14 +2966585 Ballygarvan Ballygarvan 51.8275 -8.46389 P PPL IE M 04 0 28 Europe/Dublin 2010-08-14 +2966586 Ballygarth Castle Ballygarth Castle 53.67306 -6.26861 S EST IE L 21 0 12 Europe/Dublin 2010-08-14 +2966587 Ballygarries Ballygarries Ballygarries,Ballygarris 53.68333 -9.18333 P PPL IE C 20 0 50 Europe/Dublin 2010-08-10 +2966588 Ballygarrett Ballygarrett Ballygarett,Ballygarrett 52.5725 -6.22611 P PPL IE IE L 30 0 2 Europe/Dublin 2010-08-14 +2966589 Ballygar Ballygar Ballygar,Beal Atha Ghartha,Béal Átha Ghártha 53.51667 -8.31667 P PPL IE IE C 10 0 67 Europe/Dublin 2010-08-14 +2966590 Ballyfoyle Ballyfoyle 52.72361 -7.23028 P PPL IE L 13 0 142 Europe/Dublin 2010-08-14 +2966591 Ballyfin Ballyfin Ballyfin,Ballyfin House 53.05306 -7.42083 S EST IE IE L 15 0 149 Europe/Dublin 2010-08-14 +2966592 Ballyfinboy River Ballyfinboy River 53.0325 -8.25111 H STM IE M 26 0 54 Europe/Dublin 2010-08-14 +2966593 Ballyferriter Ballyferriter Baile an Fheirtearaigh,Baile an Fheirtéaraigh,Ballyferriter 52.16667 -10.41667 P PPL IE M 11 0 59 Europe/Dublin 2010-08-14 +2966594 Ballyfermot House Ballyfermot House 53.33333 -6.35 S HSE IE L 07 0 46 Europe/Dublin 2010-08-14 +2966595 Ballyfeard Ballyfeard 51.75528 -8.4375 P PPL IE M 04 0 69 Europe/Dublin 2010-08-14 +2966596 Ballyfarnan Ballyfarnan Ballyfarnan,Ballyfarnon,Beal Atha Fearnain,Béal Átha Fearnáin 54.06806 -8.19944 P PPL IE IE C 24 0 82 Europe/Dublin 2010-08-14 +2966597 Ballyfanoher Ballyfanoher 54.3 -9.4 P PPL IE C 20 0 26 Europe/Dublin 1993-12-27 +2966598 Ballyfad House Ballyfad House Ballyfad House,Ballyfadd 52.76889 -6.26833 S EST IE IE L 30 0 127 Europe/Dublin 2010-08-14 +2966599 Ballyfad Ballyfad Ballyfad,Ballyfadd 52.76556 -6.26722 P PPL IE IE L 30 0 99 Europe/Dublin 2010-08-14 +2966600 Ballyellis Cottage Ballyellis Cottage 52.13333 -8.63333 S BLDG IE M 04 0 74 Europe/Dublin 1993-12-27 +2966601 Ballyedmond House Ballyedmond House 51.93944 -8.19694 S EST IE M 04 0 63 Europe/Dublin 2010-08-14 +2966602 Ballyederlan Ballyederlan Ballyderlan,Ballyederlan 54.60417 -8.37917 P PPL IE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2966603 Ballydurn Cross Roads Ballydurn Cross Roads Ballydurn,Ballydurn Cross Roads 52.24833 -7.3975 P PPL IE IE M 27 0 152 Europe/Dublin 2010-08-14 +2966604 Ballyduff House Ballyduff House 52.48333 -7.1 S EST IE L 13 0 113 Europe/Dublin 2010-08-14 +2966605 Ballyduff Ballyduff An Baile Dubh,Ballyduff 52.45139 -9.6625 P PPL IE M 11 0 60 Europe/Dublin 2010-08-14 +2966606 Ballyduff Ballyduff 52.22972 -7.26083 P PPL IE M 27 0 64 Europe/Dublin 2010-08-14 +2966607 Ballyduff Ballyduff 52.22417 -10.13972 P PPL IE M 11 0 92 Europe/Dublin 2010-08-14 +2966608 Ballyduff Ballyduff An Baile Dubh,Ballyduff 52.14667 -8.05361 P PPL IE M 27 0 24 Europe/Dublin 2010-08-14 +2966609 Ballyduff House Ballyduff House Ballyduff,Ballyduff House 54.05 -7.85 S HSEC IE IE C 14 0 78 Europe/Dublin 2010-08-14 +2966610 Ballydooley Ballydooley 53.66667 -8.33333 P PPL IE C 24 0 77 Europe/Dublin 1993-12-27 +2966611 Ballydoogan House Ballydoogan House 53.20083 -8.48306 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2966612 Ballydonnellan Castle Ballydonnellan Castle Ballydonnellan,Ballydonnellan Castle 53.24944 -8.41139 S EST IE IE C 10 0 76 Europe/Dublin 2010-08-14 +2966613 Ballydonnell Ballydonnell Ballydonnell,Ballydonnell House 52.76667 -7.58333 S BLDG IE IE L 13 0 155 Europe/Dublin 2010-08-14 +2966614 Ballydonegan Bay Ballydonegan Bay 51.62611 -10.07917 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966615 Ballydonegan Ballydonegan 51.63556 -10.055 P PPL IE M 04 0 53 Europe/Dublin 2010-08-14 +2966616 Ballydine Cross Roads Ballydine Cross Roads Ballydine,Ballydine Cross Roads 52.36667 -7.50944 P PPL IE IE M 26 0 17 Europe/Dublin 2010-11-04 +2966617 Ballydesmond Ballydesmond Baile Deasumhan,Ballydesmond,Kingwilliamstown 52.18333 -9.23333 P PPL IE M 04 0 242 Europe/Dublin 2010-08-14 +2966618 Ballydehob Ballydehob Ballydehob,Beal an da Chab,Béal an dá Chab 51.55 -9.46667 P PPL IE IE M 04 0 1 Europe/Dublin 2010-08-14 +2966619 Ballydavid Head Ballydavid Head 52.22889 -10.37 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966620 Ballydavid Ballydavid 53.20139 -8.46722 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2966621 Ballydavid Ballydavid 52.22083 -10.36528 P PPL IE M 11 0 35 Europe/Dublin 2010-08-14 +2966622 Ballydangan Ballydangan Ballydagan,Ballydangan 53.345 -8.09 P PPL IE IE C 24 0 101 Europe/Dublin 2010-08-14 +2966623 Ballycurrin House Ballycurrin House Ballycurrin Castle,Ballycurrin House 53.48333 -9.2 S EST IE C 20 0 19 Europe/Dublin 2010-08-10 +2966624 Ballycunneen House Ballycunneen House Ballycuneen House,Ballycunneen House 52.72167 -8.84194 S EST IE IE M 03 0 1 Europe/Dublin 2010-08-14 +2966625 Ballycumber Ballycumber Ballycumber,Beal Atha Chomair,Béal Átha Chomair 53.32444 -7.68278 P PPL IE L 23 0 69 Europe/Dublin 2010-08-14 +2966626 Ballycullane Ballycullane 52.27444 -6.83028 P PPL IE L 30 0 26 Europe/Dublin 2010-08-14 +2966627 Ballycuirke Lough Ballycuirke Lough 53.32803 -9.1562 H LK IE C 10 0 31 Europe/Dublin 2010-08-14 +2966628 Ballycrovane Ballycrovane 51.71667 -9.95 P PPL IE 00 0 76 Europe/Dublin 1993-12-27 +2966629 Ballycross House Ballycross House 52.21972 -6.56917 S EST IE L 30 0 5 Europe/Dublin 2010-08-14 +2966630 Ballycrossaun Ballycrossaun Ballycrissan,Ballycrissane,Ballycrossaon,Ballycrossaun 53.14667 -8.19361 P PPL IE IE C 10 0 67 Europe/Dublin 2010-08-14 +2966631 Ballycotton Island Ballycotton Island Ballycottin Island,Ballycotton Island 51.82889 -7.98833 T ISL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966632 Ballycotton Bay Ballycotton Bay Ballycottin Bay,Ballycotton Bay 51.84528 -7.97778 H BAY IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966633 Ballycotton Ballycotton Baile Choitin,Baile Choitín,Ballycottin,Ballycotton 51.83333 -8.01611 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966634 Ballyconra House Ballyconra House Ballyconra,Ballyconra House 52.79694 -7.35167 S EST IE IE L 13 0 76 Europe/Dublin 2010-08-14 +2966635 Ballyconra Ballyconra 52.80389 -7.35361 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +2966636 Ballyconnell House Ballyconnell House Ballyconnel House,Ballyconnell,Ballyconnell House 55.14472 -8.08583 S HSEC IE IE U 06 0 25 Europe/Dublin 2010-08-14 +2966637 Ballyconnell Ballyconnell Ballyconnel,Ballyconnell 54.36306 -8.65167 P PPL IE IE C 25 0 1 Europe/Dublin 2010-08-14 +2966638 Ballyconnell Ballyconnell Ballyconnell,Beal Atha Conaill,Béal Átha Conaill 54.11667 -7.58333 P PPL IE U 02 0 73 Europe/Dublin 2010-08-14 +2966639 Ballyconneely Bay Ballyconneely Bay 53.41667 -10.06667 H BAY IE C 10 0 -9999 Europe/Dublin 1993-12-27 +2966640 Ballycommon Ballycommon Ballycommon 53.29361 -7.36333 P PPL IE L 23 0 111 Europe/Dublin 2010-08-14 +2966641 Ballycolla Ballycolla 52.88278 -7.44722 P PPL IE L 15 0 89 Europe/Dublin 2010-08-14 +2966642 Ballyclogh House Ballyclogh House 52.18806 -8.30639 S EST IE M 04 0 60 Europe/Dublin 2010-08-14 +2966643 Ballyclogh Ballyclogh Baile Cloch,Ballyclogh 52.16667 -8.73333 P PPL IE M 04 0 118 Europe/Dublin 2010-08-14 +2966644 Ballyclery Ballyclery 53.15528 -8.91 P PPL IE C 10 0 9 Europe/Dublin 2010-08-14 +2966645 Ballyclerahan Ballyclerahan 52.41472 -7.77028 P PPL IE M 26 0 88 Europe/Dublin 2010-08-14 +2966646 Ballycastle Ballycastle Baile an Chaisil,Ballycastle 54.28333 -9.36667 P PPL IE C 20 0 61 Europe/Dublin 2010-08-14 +2966647 Ballycar Station Ballycar Station Ballycar,Ballycar Station,Ballycar and Newmarket 52.76667 -8.86667 S RSTN IE M 03 0 8 Europe/Dublin 2010-08-10 +2966648 Ballycarron House Ballycarron House 52.45556 -7.99806 S EST IE M 26 0 65 Europe/Dublin 2010-08-14 +2966649 Ballycarra Ballycarra Ballycarra,Belcarra 53.8 -9.21667 P PPL IE IE C 20 0 46 Europe/Dublin 2010-08-14 +2966650 Ballycarney Ballycarney 52.58056 -6.56806 P PPL IE L 30 0 59 Europe/Dublin 2010-08-14 +2966651 Ballycar House Ballycar House Ballycar,Ballycar House 52.75944 -8.86611 S EST IE IE M 03 0 6 Europe/Dublin 2010-08-14 +2966652 Ballycapple House Ballycapple House Ballycaple House,Ballycapple House 52.91861 -8.08389 S EST IE IE M 26 0 140 Europe/Dublin 2010-11-04 +2966653 Ballycapple Ballycapple 52.9 -6.13333 P PPL IE L 31 0 76 Europe/Dublin 1993-12-27 +2966654 Ballycanew Ballycanew Baile Ui Chonnmhai,Baile Uí Chonnmhaí,Ballycanew 52.60889 -6.30306 P PPL IE L 30 0 12 Europe/Dublin 2010-08-14 +2966655 Ballycahill Ballycahill 52.68944 -7.90472 P PPL IE M 26 0 84 Europe/Dublin 2010-08-14 +2966656 Ballycahane House Ballycahane House Ballycahane,Ballycahane House 52.54972 -8.67056 S BLDG IE IE M 16 0 82 Europe/Dublin 2010-08-14 +2966657 Ballyburly House Ballyburly House Ballyburly,Ballyburly House 53.36583 -7.17472 S EST IE IE L 23 0 125 Europe/Dublin 2010-08-14 +2966658 Ballybunnion Ballybunnion Baile an Bhuinneanaigh,Baile an Bhuinneánaigh,Ballybunnion 52.50972 -9.67167 P PPL IE M 11 1626 50 Europe/Dublin 2010-08-14 +2966659 Ballybrophy Ballybrophy Ballybrophy,Ballybrophy Junction 52.89944 -7.6025 P PPL IE IE L 15 0 145 Europe/Dublin 2010-08-14 +2966660 Ballybroony House Ballybroony House 54.16889 -9.23833 S EST IE C 20 0 26 Europe/Dublin 2010-08-14 +2966661 Ballybrood Ballybrood 52.55972 -8.44639 P PPL IE M 16 0 65 Europe/Dublin 2010-08-14 +2966662 Ballybritt Castle Ballybritt Castle 53 -7.78333 S BLDG IE L 23 0 151 Europe/Dublin 1993-12-27 +2966663 Ballybrittas Ballybrittas Ballybrittas 53.10944 -7.1375 P PPL IE L 15 0 90 Europe/Dublin 2010-08-14 +2966664 Ballybrack Ballybrack 52.21306 -10.30861 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +2966665 Ballybrack Ballybrack 52.13333 -9.58333 P PPL IE M 11 0 72 Europe/Dublin 1993-12-27 +2966666 Ballyboy Ballyboy Ballyboy 53.17306 -7.69611 P PPL IE L 23 0 78 Europe/Dublin 2010-08-14 +2966667 Ballyboghil Ballyboghil Ballyboghil,Ballyboghill,Ballyboughal 53.52528 -6.2625 P PPL IE IE L 07 0 40 Europe/Dublin 2010-11-04 +2966668 Ballybofey Ballybofey Ballybofey,Bealach Feich,Bealach Féich 54.8 -7.78333 P PPL IE U 06 3848 54 Europe/Dublin 2010-08-14 +2966669 Ballyboe Mountain Ballyboe Mountain Ballyboe,Ballyboe Mountain 55.1 -8.01667 T HLL IE IE U 06 0 305 Europe/Dublin 2010-08-14 +2966670 Ballyboden Ballyboden 53.28056 -6.31639 P PPL IE L 07 0 103 Europe/Dublin 2010-08-14 +2966671 Ballybeg Island Ballybeg Island 53.71194 -10.04417 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966672 Ballybeg House Ballybeg House 53.68639 -6.83028 S EST IE L 21 0 70 Europe/Dublin 2010-08-14 +2966673 Ballybeg House Ballybeg House 52.82056 -6.43472 S EST IE L 31 0 151 Europe/Dublin 2010-08-14 +2966674 Ballybay House Ballybay House Ballybay,Ballybay House 54.12389 -6.88083 S EST IE IE U 22 0 137 Europe/Dublin 2010-08-14 +2966675 Ballybay Ballybay Ballybay,Beal Atha Beithe,Beal Atha na Beithe,Béal Átha Beithe,Béal Átha na Beithe 54.12611 -6.90056 P PPL IE U 22 0 131 Europe/Dublin 2010-08-14 +2966676 Ballybay Ballybay 53.46667 -8 P PPL IE C 24 0 62 Europe/Dublin 1993-12-27 +2966677 Ballybane House Ballybane House 51.61056 -9.41194 S EST IE M 04 0 143 Europe/Dublin 2010-08-14 +2966678 Ballyarr House Ballyarr House 55.03333 -7.68333 S BLDG IE U 06 0 54 Europe/Dublin 1993-12-27 +2966679 Ballyargus Ballyargus 55.16667 -7.16667 P PPL IE U 06 0 134 Europe/Dublin 1993-12-27 +2966680 Ballyanny House Ballyanny House Ballyanny House,Ballyganny House 52.89167 -8.21528 S EST IE IE M 26 0 67 Europe/Dublin 2010-11-04 +2966681 Ballyanne House Ballyanne House Ballyanne,Ballyanne House,Ballynane 52.42917 -6.895 S EST IE IE L 13 0 63 Europe/Dublin 2010-08-14 +2966682 Ballyallaban House Ballyallaban House 53.08861 -9.14972 S HSEC IE M 03 0 95 Europe/Dublin 2010-08-14 +2966683 Ballyagran Ballyagran 52.40139 -8.78583 P PPL IE M 16 0 107 Europe/Dublin 2010-08-14 +2966684 Ballyadams Ballyadams 52.96417 -7.08167 P PPL IE L 15 0 125 Europe/Dublin 2010-08-14 +2966685 Ballsbridge Ballsbridge 53.33028 -6.23056 P PPLX IE L 07 0 3 Europe/Dublin 2010-08-14 +2966686 Balloughter Balloughter 52.61667 -6.35778 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +2966687 Ballough Ballough 53.53528 -6.19639 P PPL IE L 07 0 51 Europe/Dublin 2010-08-14 +2966688 Balloor Balloor 55.26861 -7.6525 P PPL IE U 06 0 53 Europe/Dublin 2010-08-14 +2966689 Ballon Ballon Balana,Ballon 52.74056 -6.76778 P PPL IE L 01 0 93 Europe/Dublin 2010-08-14 +2966690 Ballivor Ballivor Baile Iomhair,Baile Íomhair,Ballivor 53.53167 -6.96111 P PPL IE L 21 0 82 Europe/Dublin 2010-08-14 +2966691 Ballitore Hill Ballitore Hill Ballitore,Ballitore Hill 53.00472 -6.7975 S EST IE IE L 12 0 155 Europe/Dublin 2010-08-14 +2966692 Ballitore Ballitore Ballitore,Beal Atha an Tuair,Béal Atha an Tuair 53.00694 -6.81944 P PPL IE L 12 0 124 Europe/Dublin 2010-08-14 +2966693 Ballisk Ballisk 53.49 -6.14889 P PPL IE L 07 0 1 Europe/Dublin 2010-08-14 +2966694 Ballinvonear House Ballinvonear House 52.26667 -8.61667 S EST IE M 04 0 129 Europe/Dublin 1993-12-27 +2966695 Ballinure Ballinure 52.56306 -7.76889 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +2966696 Ballinunty Ballinunty Ballinunty,Ballynonty,Four Cross Roads,The Four Roads 52.59028 -7.665 P PPL IE IE M 26 0 152 Europe/Dublin 2010-11-04 +2966697 Ballintubbert Ballintubbert 52.98139 -7.08944 P PPL IE L 15 0 122 Europe/Dublin 2010-08-14 +2966698 Ballintra Ballintra Baile an tSratha,Ballintra 54.57694 -8.11972 P PPL IE IE U 06 0 46 Europe/Dublin 2010-08-14 +2966699 Ballintombay Ballintombay Ballintombay,Ballintonbay 52.91667 -6.28333 P PPL IE L 31 0 128 Europe/Dublin 2010-08-10 +2966700 Ballintogher Ballintogher Baile an Tochair,Baile an Tóchair,Ballintogher 54.2 -8.36667 P PPL IE IE C 25 0 72 Europe/Dublin 2010-08-14 +2966701 Ballintober House Ballintober House 53.43333 -7.61667 S EST IE L 29 0 133 Europe/Dublin 1993-12-27 +2966702 Ballintober House Ballintober House 51.75444 -8.53667 S EST IE M 04 0 79 Europe/Dublin 2010-08-14 +2966703 Ballintober Ballintober Ballintober,Ballintubber 53.73333 -9.3 P PPL IE C 20 0 59 Europe/Dublin 2010-08-10 +2966704 Ballintober Ballintober 53.71667 -8.41667 P PPL IE C 24 0 76 Europe/Dublin 1993-12-27 +2966705 Ballinter House Ballinter House Ballinteer House,Ballinter House 53.59917 -6.66083 S EST IE IE L 21 0 51 Europe/Dublin 2010-08-14 +2966706 Ballintemple House Ballintemple House Ballintemple,Ballintemple House 52.73306 -6.68917 S EST IE IE L 01 0 85 Europe/Dublin 2010-08-14 +2966707 Ballintemple Ballintemple Ballintemple 51.89306 -8.43528 P PPL IE M 04 0 34 Europe/Dublin 2010-08-14 +2966708 Ballintaylor Lower Ballintaylor Lower Ballintaylor,Ballintaylor Lower 52.07917 -7.73917 P PPL IE IE M 27 0 98 Europe/Dublin 2010-08-14 +2966709 Ballinspittle Ballinspittle Ballinspittle,Beal Atha an Spideil,Béal Átha an Spidéil 51.66778 -8.60028 P PPL IE M 04 0 85 Europe/Dublin 2010-08-14 +2966710 Ballinskelligs Bay Ballinskelligs Bay 51.82583 -10.20778 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966711 Ballinskelligs Ballinskelligs Baile an Sceilg,Ballinskelligs 51.8 -10.28333 P PPL IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966712 Ballinruddery House Ballinruddery House Ballinruddery,Ballinruddery House 52.43944 -9.44528 S EST IE IE M 11 0 71 Europe/Dublin 2010-08-14 +2966713 Ballinruan Ballinruan 52.95306 -8.82611 P PPL IE M 03 0 79 Europe/Dublin 2010-08-14 +2966714 Ballinrostig Ballinrostig 51.82083 -8.18444 P PPL IE M 04 0 14 Europe/Dublin 2010-08-14 +2966715 Ballinrobe Ballinrobe Baile an Roba,Baile an Róba,Ballinrobe 53.63333 -9.23333 P PPL IE C 20 1707 45 Europe/Dublin 2010-08-14 +2966716 Ballin Prior Ballin Prior 52.35 -9.81667 P PPL IE M 11 0 22 Europe/Dublin 2010-08-14 +2966717 Ballinlough House Ballinlough House 53.78333 -7.58333 S EST IE L 18 0 75 Europe/Dublin 1993-12-27 +2966718 Ballinlough Castle Ballinlough Castle 53.63444 -7.02556 S EST IE L 29 0 109 Europe/Dublin 2010-08-14 +2966719 Ballinlough Ballinlough Baile an Locha,Ballinlough 53.73333 -8.63333 P PPL IE IE C 24 0 77 Europe/Dublin 2010-08-14 +2966720 Ballinlough Ballinlough 53.06667 -8.45 P PPL IE C 10 0 138 Europe/Dublin 1993-12-27 +2966721 Ballinlonty House Ballinlonty House Ballinlonty,Ballinlonty House 52.74194 -7.91139 S EST IE M 38 0 92 Europe/Dublin 2010-11-04 +2966722 Ballinleeny Ballinleeny 52.45361 -8.74306 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +2966723 Ballinlass House Ballinlass House 53.48333 -8.33333 S EST IE C 10 0 68 Europe/Dublin 1993-12-27 +2966724 Ballinkillin Ballinkillin 52.64917 -6.92722 P PPL IE L 01 0 91 Europe/Dublin 2010-08-14 +2966725 Ballinkeel House Ballinkeel House Ballinkeel House,Ballinkeele House 52.44444 -6.48472 S EST IE IE L 30 0 23 Europe/Dublin 2010-08-14 +2966726 Ballinhassig Ballinhassig Ballinhassig 51.81417 -8.53694 P PPL IE M 04 0 49 Europe/Dublin 2010-08-14 +2966727 Ballingurteen Ballingurteen 51.66667 -9.01667 P PPL IE M 04 0 100 Europe/Dublin 1993-12-27 +2966728 Ballinguile Ballinguile 52.92111 -6.51222 P PPL IE L 31 0 274 Europe/Dublin 2010-08-14 +2966729 Ballinglen Station Ballinglen Station Ballinglen,Ballinglen Station 52.81667 -6.4 S RSTN IE IE L 31 0 76 Europe/Dublin 2010-08-14 +2966730 Ballinglen River Ballinglen River 54.29528 -9.38167 H STM IE C 20 0 6 Europe/Dublin 2010-08-14 +2966731 Ballingeary Ballingeary Ballingeary,Beal Atha an Ghaorthaidh,Béal Átha an Ghaorthaidh 51.85 -9.23333 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +2966732 Ballingate House Lower Ballingate House Lower Ballingate,Ballingate House,Ballingate House Lower 52.69472 -6.54139 S EST IE IE L 31 0 81 Europe/Dublin 2010-08-14 +2966733 Ballingarry Ballingarry 53.01722 -8.02667 P PPL IE M 26 0 120 Europe/Dublin 2010-08-14 +2966734 Ballingarry Ballingarry Baile an Gharrai,Baile an Gharraí,Ballingarry 52.58722 -7.54 P PPL IE IE M 26 0 162 Europe/Dublin 2010-11-04 +2966735 Ballingarry Ballingarry Baile an Gharrai,Baile an Gharraí,Ballingarry,Ballingary 52.47278 -8.86389 P PPL IE IE M 16 0 107 Europe/Dublin 2010-08-14 +2966736 Ballingarrane Ballingarrane Ballingarrane,Ballingrane 52.54861 -8.93694 P PPL IE IE M 16 0 33 Europe/Dublin 2010-08-14 +2966737 Ballineen Ballineen Ballineen,Ballyneen,Beal Atha Fhinin,Béal Átha Fhínín 51.73694 -8.95694 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +2966738 Ballindrait Ballindrait Baile an Droichid,Ballindrait 54.84417 -7.52583 P PPL IE U 06 0 8 Europe/Dublin 2010-08-14 +2966739 Ballindooly Ballindooly 53.31222 -9.02194 P PPL IE C 10 0 4 Europe/Dublin 2010-08-14 +2966740 Ballindine Ballindine Baile an Daighin,Ballindangan,Ballindine 53.66667 -8.96667 P PPL IE C 20 0 89 Europe/Dublin 2010-08-14 +2966741 Ballinderry Park Ballinderry Park Ballinderry House,Ballinderry Park 52.96194 -8.15361 S EST IE IE M 26 0 74 Europe/Dublin 2010-11-04 +2966742 Ballinderry Ballinderry 53.02056 -8.22194 P PPL IE M 26 0 56 Europe/Dublin 2010-08-14 +2966743 Ballinderreen Ballinderreen Baile an Doirin,Baile an Doirín,Ballinderreen 53.18639 -8.90639 P PPL IE IE C 10 0 5 Europe/Dublin 2010-08-14 +2966744 Ballindangan Ballindangan 52.23444 -8.33167 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2966745 Ballindaggan Ballindaggan 52.565 -6.67417 P PPL IE L 30 0 121 Europe/Dublin 2010-08-14 +2966746 Ballincurry Ballincurry 52.58472 -7.60361 P PPL IE M 26 0 239 Europe/Dublin 2010-08-14 +2966747 Ballincurrig Ballincurrig 51.98722 -8.22778 P PPL IE M 04 0 123 Europe/Dublin 2010-08-14 +2966748 Ballincrea Ballincrea 52.31833 -7.08806 P PPL IE L 13 0 70 Europe/Dublin 2010-08-14 +2966749 Ballincollig Ballincollig Baile an Chollaigh,Ballincollig 51.88333 -8.58333 P PPL IE IE M 04 0 67 Europe/Dublin 2010-08-14 +2966750 Ballincloher Ballincloher Ballincloher,Ballincloher Cross Roads 52.38889 -9.685 P PPL IE IE M 11 0 86 Europe/Dublin 2010-08-14 +2966751 Ballinclea House Ballinclea House 52.99722 -6.57639 S EST IE L 31 0 236 Europe/Dublin 2010-08-14 +2966752 Ballinclashet Ballinclashet 51.71833 -8.45167 P PPL IE M 04 0 35 Europe/Dublin 2010-08-14 +2966753 Béal Átha na Sluaighe Beal Atha na Sluaighe Ballinasloe 53.3275 -8.21944 P PPL IE C 10 6388 65 Europe/Dublin 2010-08-14 +2966754 Ballinascarty Ballinascarty Ballinascarthy,Ballinascarty 51.67222 -8.90528 P PPL IE IE M 04 0 74 Europe/Dublin 2010-08-14 +2966755 Ballinapark Ballinapark 54.31083 -9.57056 P PPL IE C 20 0 91 Europe/Dublin 2010-08-14 +2966756 Ballinamuck Ballinamuck Ballinamuck 53.86667 -7.71667 P PPL IE L 18 0 76 Europe/Dublin 2010-08-10 +2966757 Ballinamore Park Ballinamore Park Ballinamore,Ballinamore Park 53.48333 -8.36667 S EST IE C 10 0 69 Europe/Dublin 2010-08-10 +2966758 Ballinamore House Ballinamore House Ballinamore,Ballinamore House 53.81667 -9.03333 S EST IE C 20 0 43 Europe/Dublin 2010-08-10 +2966759 Ballinamore Bridge Ballinamore Bridge Ballinamore,Ballinamore Bridge 53.48333 -8.36667 P PPL IE C 10 0 69 Europe/Dublin 2010-08-10 +2966760 Ballinamore Ballinamore Ballinamore,Beal an Atha Moir,Béal an Átha Móir 54.05 -7.8 P PPL IE C 14 0 75 Europe/Dublin 2010-08-14 +2966761 Ballinamona House Ballinamona House Ballinamona,Ballinamona House 52.21056 -7.10083 S EST IE IE M 27 0 43 Europe/Dublin 2010-08-14 +2966762 Ballinameen Ballinameen 53.9 -8.3 P PPL IE C 24 0 72 Europe/Dublin 1993-12-27 +2966763 Ballinalee Ballinalee Ballinalee,Beal Atha na Lao,Béal Átha na Lao 53.76667 -7.63333 P PPL IE L 18 0 74 Europe/Dublin 2010-08-14 +2966764 Ballinaleama Bay Ballinaleama Bay 53.75 -10.15 H BAY IE 00 0 -9999 Europe/Dublin 1993-12-27 +2966765 Ballinalea Ballinalea 53.00306 -6.10889 P PPL IE L 31 0 56 Europe/Dublin 2010-08-14 +2966766 Ballinalack Ballinalack 53.61667 -7.46667 P PPL IE L 29 0 74 Europe/Dublin 1993-12-27 +2966767 Ballinakill Ballinakill Baile na Coille,Ballinakill 52.87389 -7.30806 P PPL IE IE L 15 0 129 Europe/Dublin 2010-08-14 +2966768 Ballinagore Ballinagore 52.80528 -6.29694 P PPL IE L 31 0 291 Europe/Dublin 2010-08-14 +2966769 Ballinagleragh Ballinagleragh Ballinaglera,Ballinagleragh 54.15694 -8.005 P PPL IE IE C 14 0 94 Europe/Dublin 2010-08-14 +2966770 Ballinagar Ballinagar Ballinagar 53.26444 -7.335 P PPL IE L 23 0 84 Europe/Dublin 2010-08-14 +2966771 Ballinafad House Ballinafad House Ballinafad,Ballinafad House 53.78333 -9.16667 S EST IE C 20 0 54 Europe/Dublin 2010-08-10 +2966772 Ballinafad Ballinafad Ballinafad,Beal an Atha Fada,Béal an Átha Fada 54.0275 -8.33722 P PPL IE C 25 0 74 Europe/Dublin 2010-08-14 +2966773 Ballinafad Ballinafad 53.73333 -8.08333 P PPL IE C 24 0 151 Europe/Dublin 1993-12-27 +2966774 Ballinadee Ballinadee Ballinadee 51.71278 -8.63444 P PPL IE M 04 0 71 Europe/Dublin 2010-08-14 +2966775 Ballinaclash Ballinaclash Ballinaclash 52.89972 -6.26139 P PPL IE L 31 0 112 Europe/Dublin 2010-08-14 +2966776 Ballinaboy Ballinaboy 53.46667 -10.01667 P PPL IE C 10 0 28 Europe/Dublin 2010-08-14 +2966777 Ballinabarney House Ballinabarney House 52.46194 -6.99472 S EST IE L 13 0 97 Europe/Dublin 2010-08-14 +2966778 Béal An Átha Beal An Atha Ballina 54.11667 -9.16667 P PPL IE C 20 10087 9 Europe/Dublin 2010-08-14 +2966779 Ballina Ballina 52.80778 -8.43556 P PPL IE M 26 0 55 Europe/Dublin 2010-08-14 +2966780 Ballickmoyler Ballickmoyler Ballickmoyler 52.87694 -7.01083 P PPL IE L 15 0 93 Europe/Dublin 2010-08-14 +2966781 Balleven House Balleven House 52.6325 -7.36611 S BLDG IE L 13 0 141 Europe/Dublin 2010-08-14 +2966782 Ballaghmore Ballaghmore Ballaghmore 52.95917 -7.72639 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +2966783 Ballaghkeen Ballaghkeen 52.47972 -6.42 P PPL IE L 30 0 78 Europe/Dublin 2010-08-14 +2966784 Ballaghaderreen Ballaghaderreen Ballaghaderreen,Bealach an Doirin,Bealach an Doirín 53.9 -8.58333 P PPL IE C 24 1389 70 Europe/Dublin 2010-08-14 +2966785 Ballagh Ballagh 53.29639 -9.11 P PPL IE C 10 0 14 Europe/Dublin 2010-08-14 +2966786 Ballagh Ballagh 52.58944 -7.98639 P PPL IE M 26 0 94 Europe/Dublin 2010-08-14 +2966787 Ballagan Point Ballagan Point 54.00028 -6.10556 T PT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2966788 Balla Balla 53.8 -9.13333 P PPL IE C 20 0 118 Europe/Dublin 1993-12-27 +2966789 Balheary House Balheary House 53.47667 -6.21944 S EST IE L 07 0 5 Europe/Dublin 2010-08-14 +2966790 Baldwinstown Baldwinstown 53.56472 -6.35528 P PPL IE L 07 0 81 Europe/Dublin 2010-08-14 +2966791 Baldwinstown Baldwinstown 52.23333 -6.58333 P PPL IE L 30 0 6 Europe/Dublin 1993-12-27 +2966792 Castle Baldwin Castle Baldwin 54.08 -8.37278 S CSTL IE C 25 0 80 Europe/Dublin 2010-08-14 +2966793 Baldoyle Baldoyle Baile Duill,Baile Dúill,Baldoyle 53.39972 -6.12583 P PPL IE L 35 0 1 Europe/Dublin 2010-11-04 +2966794 Balbriggan Balbriggan Baile Brigin,Baile Brigín,Balbriggan 53.61278 -6.18194 P PPL IE L 07 11293 -9999 Europe/Dublin 2010-11-04 +2966795 Bailieborough Castle Bailieborough Castle 53.93 -6.98444 S EST IE U 02 0 151 Europe/Dublin 2010-08-14 +2966796 Bailieborough Bailieborough Baileborough,Bailieborough,Coill an Chollaigh 53.91667 -6.96667 P PPL IE U 02 1703 269 Europe/Dublin 2010-08-14 +2966797 Baginbun Head Baginbun Head 52.16944 -6.82417 T CAPE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2966798 Baggotstown House Baggotstown House 52.46917 -8.50194 S BLDG IE M 16 0 138 Europe/Dublin 2010-08-14 +2966799 Baggotstown Baggotstown 52.45 -8.5 P PPL IE M 16 0 133 Europe/Dublin 2010-08-14 +2966800 Muine Bheag Muine Bheag Bagenalstown,Muine Bheag 52.70614 -6.95984 P PPL IE L 01 3033 45 Europe/Dublin 2010-08-27 +2966801 Aylwardstown House Aylwardstown House 52.33333 -7.01667 S EST IE L 13 0 72 Europe/Dublin 2010-08-14 +2966802 Aylevarroo Bay Aylevarroo Bay 52.61667 -9.48333 H BAY IE M 03 0 -9999 Europe/Dublin 1993-12-27 +2966803 Ayle House Ayle House 52.90528 -8.68778 S HSEC IE M 03 0 57 Europe/Dublin 2010-08-14 +2966804 Lough Awee Lough Awee Lough Awee,Lough Awheela 53.3775 -9.73917 H LK IE IE C 10 0 182 Europe/Dublin 2010-08-14 +2966805 Awbeg River Awbeg River Awbeg River,Awinbeg 52.15056 -8.44889 H STM IE IE M 04 0 56 Europe/Dublin 2010-08-14 +2966806 Avonmore River Avonmore River 52.88333 -6.23333 H STM IE L 31 0 75 Europe/Dublin 1993-12-27 +2966807 Avondale Avondale 52.9 -6.23333 S EST IE L 31 0 92 Europe/Dublin 2010-08-14 +2966808 Avonbeg River Avonbeg River 52.88333 -6.23333 H STM IE L 31 0 75 Europe/Dublin 1993-12-27 +2966809 Lough Avehy Lough Avehy 54.54833 -7.94556 H LK IE U 06 0 374 Europe/Dublin 2010-08-14 +2966810 Lough Avaghon Lough Avaghon Avaghon,Avean,Lough Avaghon 54.06333 -6.95 H LK IE IE U 22 0 153 Europe/Dublin 2010-08-14 +2966811 Aughrus Point Aughrus Point 53.54528 -10.19889 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966812 Aughris Head Aughris Head 54.28028 -8.75444 T CAPE IE C 25 0 -9999 Europe/Dublin 2010-08-14 +2966813 Aughris Aughris 54.27306 -8.76944 P PPL IE C 25 0 3 Europe/Dublin 2010-08-14 +2966814 Aughrim River Aughrim River 52.82917 -6.23417 H STM IE L 31 0 43 Europe/Dublin 2010-08-14 +2966815 Aughrim Aughrim Aughrim,Eachroim 53.30222 -8.3125 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +2966816 Aughrim Aughrim 53.01028 -8.94444 P PPL IE M 03 0 62 Europe/Dublin 2010-08-14 +2966817 Aughrim Aughrim Aughrim,Eachroim 52.85333 -6.3275 P PPL IE L 31 0 71 Europe/Dublin 2010-08-14 +2966818 Aughrane Castle Aughrane Castle 53.55 -8.33333 S EST IE C 10 0 67 Europe/Dublin 1993-12-27 +2966819 Aughnasheelan Aughnasheelan 54.06944 -7.86111 P PPL IE C 14 0 123 Europe/Dublin 2010-08-14 +2966820 Aughnanure Castle Aughnanure Castle Aughnanure Castle 53.41667 -9.26667 S RUIN IE C 10 0 21 Europe/Dublin 2010-08-10 +2966821 Aughinish Point Aughinish Point 53.15 -9.08333 T PT IE M 03 0 26 Europe/Dublin 2010-08-14 +2966822 Aughinish Point Aughinish Point 52.89417 -8.42472 T PT IE M 03 0 55 Europe/Dublin 2010-08-14 +2966823 Aughinish Island Aughinish Island 52.62111 -9.06611 T ISL IE M 16 0 1 Europe/Dublin 2010-08-14 +2966824 Aughinish Bay Aughinish Bay Aughinish Bay,Aughinish Inlet 53.15667 -9.03472 H INLT IE IE 00 0 -9999 Europe/Dublin 2010-08-10 +2966825 Aughils Aughils Aughill,Aughils 52.16167 -9.87722 P PPL IE IE M 11 0 73 Europe/Dublin 2010-08-14 +2966826 Aughclare Aughclare 52.32722 -6.92528 P PPL IE L 30 0 138 Europe/Dublin 2010-08-14 +2966827 Aughboy Aughboy 52.73917 -8.54028 P PPL IE M 03 0 39 Europe/Dublin 2010-08-14 +2966828 Aughagault Little Aughagault Little 54.86667 -7.71667 P PPL IE U 06 0 94 Europe/Dublin 2010-08-14 +2966829 Aughagault Big Aughagault Big 54.86667 -7.73333 P PPL IE U 06 0 105 Europe/Dublin 2010-08-14 +2966830 Aughagault Aughagault 54.86556 -7.73167 P PPL IE U 06 0 76 Europe/Dublin 2010-08-14 +2966831 Attymon Junction Attymon Junction Attymon,Attymon Junction 53.31667 -8.61667 S RSTN IE IE C 10 0 76 Europe/Dublin 2010-08-14 +2966832 Attymon Attymon Ath Tiomain,Attymon,Áth Tíomáin 53.31861 -8.60639 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +2966833 Attimachugh Attimachugh 54.00639 -9.02806 P PPL IE C 20 0 127 Europe/Dublin 2010-08-14 +2966834 Attanagh Attanagh 52.83611 -7.37139 P PPL IE L 15 0 79 Europe/Dublin 2010-08-14 +2966835 Lough Atorick Lough Atorick 53.01611 -8.54639 H LK IE M 03 0 152 Europe/Dublin 2010-08-14 +2966836 Athy Canal Athy Canal 53.28333 -6.83333 H CNL IE L 12 0 85 Europe/Dublin 1993-12-27 +2966837 Baile Átha Í Baile Atha I Athy 52.99139 -6.98028 P PPL IE L 12 6382 63 Europe/Dublin 2010-08-14 +2966838 Athnid Athnid 52.72444 -7.76722 P PPL IE M 26 0 116 Europe/Dublin 2010-08-14 +2966839 Baile Átha Luain Baile Atha Luain Athlone 53.43333 -7.95 P PPL IE L 29 15951 57 Europe/Dublin 2010-08-14 +2966840 Athleague Athleague Ath Liag,Athleague,Áth Liag 53.56667 -8.25 P PPL IE IE C 24 0 69 Europe/Dublin 2010-08-14 +2966841 Athlacca Athlacca Athlacca 52.45694 -8.64861 P PPL IE M 16 0 138 Europe/Dublin 2010-08-14 +2966842 Athgarvan Athgarvan Athgarvan 53.15389 -6.805 P PPL IE L 12 0 139 Europe/Dublin 2010-08-14 +2966843 Athenry Athenry Athenry,Baile Atha an Ri,Baile Átha an Rí 53.29639 -8.74306 P PPL IE C 10 2419 40 Europe/Dublin 2010-08-14 +2966844 Athea Athea Ath an tSleibhe,Athea,Áth an tSléibhe 52.45972 -9.28944 P PPL IE IE M 16 0 96 Europe/Dublin 2010-08-14 +2966845 Athclare Castle Athclare Castle 53.8175 -6.39833 S BLDG IE L 19 0 59 Europe/Dublin 2010-08-14 +2966846 Athcarne Castle Athcarne Castle 53.62139 -6.44611 S EST IE L 21 0 49 Europe/Dublin 2010-08-14 +2966847 Athboy River Athboy River 53.59611 -6.88472 H STM IE L 21 0 78 Europe/Dublin 2010-08-14 +2966848 Athboy Athboy Athboy,Baile Atha Bui,Baile Átha Buí 53.61861 -6.92056 P PPL IE L 21 1656 84 Europe/Dublin 2010-08-14 +2966849 Athavallie Athavallie 53.8 -9.15 S EST IE C 20 0 91 Europe/Dublin 1993-12-27 +2966850 Athassel House Athassel House Athassel,Athassel House 52.49444 -7.98806 S EST IE IE M 26 0 71 Europe/Dublin 2010-11-04 +2966851 Athasselabbey House Athasselabbey House 52.47944 -7.98972 S BLDG IE M 26 0 73 Europe/Dublin 2010-08-14 +2966852 Athabatteen Athabatteen 51.96667 -8.78333 P PPL IE M 04 0 156 Europe/Dublin 2010-08-14 +2966853 Lough Atedaun Lough Atedaun 52.94472 -9.04556 H LK IE M 03 0 50 Europe/Dublin 2010-08-14 +2966854 Astee Astee 52.55083 -9.56056 P PPL IE M 11 0 48 Europe/Dublin 2010-08-14 +2966855 Askintinny Askintinny 52.76417 -6.15167 P PPL IE L 31 0 4 Europe/Dublin 2010-08-14 +2966856 Askill Askill 54.43333 -8.18333 P PPL IE C 14 0 70 Europe/Dublin 1993-12-27 +2966857 Askeaton Askeaton Askeaton,Eas Geitine,Eas Géitine 52.59972 -8.97556 P PPL IE M 16 0 9 Europe/Dublin 2010-08-14 +2966858 Askamore Askamore 52.67139 -6.47583 P PPL IE L 30 0 206 Europe/Dublin 2010-08-14 +2966859 Ashroe Ashroe 52.68194 -8.4075 S EST IE M 16 0 87 Europe/Dublin 2010-08-14 +2966860 Ash Park Ash Park 52.82556 -7.86306 S EST IE M 26 0 145 Europe/Dublin 2010-08-14 +2966861 Ashleypark House Ashleypark House Ashley Park,Ashleypark House 52.92389 -8.18167 S EST IE IE M 26 0 77 Europe/Dublin 2010-11-04 +2966862 Ash Hill Towers Ash Hill Towers Ash Hill Tower,Ash Hill Towers 52.39333 -8.60167 S EST IE IE M 16 0 76 Europe/Dublin 2010-08-14 +2966863 Ashgrove House Ashgrove House Ashgrove,Ashgrove House 51.9 -9.03333 S EST IE M 04 0 116 Europe/Dublin 2010-08-10 +2966864 Ashfort House Ashfort House 53.88333 -8.06667 S EST IE C 24 0 70 Europe/Dublin 1993-12-27 +2966865 Ashford Castle Ashford Castle Ashford,Ashford Castle,Ashford House 53.53333 -9.28333 S EST IE IE 00 0 21 Europe/Dublin 2010-08-10 +2966866 Ashford Ashford 52.36667 -9.06667 P PPL IE M 16 0 155 Europe/Dublin 1993-12-27 +2966867 Ashfield Lodge Ashfield Lodge Ashfield House,Ashfield Lodge 54.06833 -7.1225 S HSEC IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2966868 Ashfield Hall Ashfield Hall Ashfield Hall,Ashfield House 52.88361 -7.0375 S EST IE IE L 15 0 145 Europe/Dublin 2010-08-14 +2966869 Ash Field Ash Field 53.85917 -6.87306 P PPL IE L 21 0 150 Europe/Dublin 2010-08-14 +2966870 Ashbourne Ashbourne Ashbourne,Cill Dheaglain,Cill Dhéagláin 53.51083 -6.42722 P PPL IE L 21 7001 72 Europe/Dublin 2010-08-14 +2966871 Ashakiltubbrid Ashakiltubbrid 53.93333 -7.75 P PPL IE C 14 0 118 Europe/Dublin 1993-12-27 +2966872 Arva Road Station Arva Road Station Arva Road,Arva Road Station 53.95 -7.48333 S RSTN IE U 02 0 77 Europe/Dublin 2010-08-10 +2966873 Arvagh Arvagh Armhach,Arva,Arvagh,Ármhach 53.91667 -7.58333 P PPL IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2966874 Arthurstown Arthurstown 52.24056 -6.95639 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2966875 Lough Arrow Lough Arrow 54.06389 -8.325 H LK IE C 25 0 55 Europe/Dublin 1998-09-01 +2966876 Arrigle River Arrigle River 52.49694 -7.10111 H STM IE L 13 0 55 Europe/Dublin 2010-08-14 +2966877 Arra Mountains Arra Mountains 52.83472 -8.37333 T MTS IE M 26 0 319 Europe/Dublin 2010-08-14 +2966878 Arnagragh Arnagragh 52.21667 -9.38333 P PPL IE M 11 0 108 Europe/Dublin 1993-12-27 +2966879 Arley Arley Arley,Arley Cottage 53.83333 -7.3 S EST IE IE U 02 0 76 Europe/Dublin 2010-08-14 +2966880 Arless Arless 52.9 -7.03333 P PPL IE L 15 0 134 Europe/Dublin 1993-12-27 +2966881 Arklow Head Arklow Head 52.77333 -6.13944 T CAPE IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2966882 Arklow Bank Arklow Bank 52.8 -5.93333 H BNK IE L 31 0 -9999 Europe/Dublin 1993-12-27 +2966883 Arklow Arklow An tInbhear Mor,An tInbhear Mór 52.79306 -6.14139 P PPL IE L 31 10622 -9999 Europe/Dublin 2010-08-14 +2966884 Arigna River Arigna River 54.05 -8.05 H STM IE C 14 0 68 Europe/Dublin 1993-12-27 +2966885 Arigna Arigna 54.07778 -8.10556 P PPL IE C 24 0 78 Europe/Dublin 2010-08-14 +2966886 Argideen River Argideen River 51.64556 -8.76778 H STM IE M 04 0 25 Europe/Dublin 2010-08-14 +2966887 Ardy Ardy 55.11667 -7.51667 P PPL IE U 06 0 -9999 Europe/Dublin 1993-12-27 +2966888 Ardtully House Ardtully House 51.9 -9.46667 S EST IE M 11 0 73 Europe/Dublin 1993-12-27 +2966889 Ardsollus Bridge Ardsollus Bridge Ardsollus,Ardsollus Bridge 52.7975 -8.88889 P PPL IE IE M 03 0 9 Europe/Dublin 2010-08-14 +2966890 Ards House Ards House 55.1575 -7.86583 S HSEC IE U 06 0 -9999 Europe/Dublin 2010-08-14 +2966891 Ardsbeg Ardsbeg 55.11667 -8.15 P PPL IE U 06 0 25 Europe/Dublin 1993-12-27 +2966892 Ardsallagh House Ardsallagh House 53.61222 -6.65083 S EST IE L 21 0 46 Europe/Dublin 2010-08-14 +2966893 Ardsallagh House Ardsallagh House 52.49139 -7.75472 S EST IE M 26 0 109 Europe/Dublin 2010-08-14 +2966894 Ards Ards 53.63333 -7.83333 P PPL IE L 18 0 77 Europe/Dublin 1993-12-27 +2966895 Ardrumman House Ardrumman House 55.00444 -7.62778 S HSEC IE U 06 0 36 Europe/Dublin 2010-08-14 +2966896 Ardrum House Ardrum House Ardrum,Ardrum House 51.91667 -8.65 S EST IE IE M 04 0 73 Europe/Dublin 2010-08-14 +2966897 Ardristan House Ardristan House 52.78 -6.74556 S BLDG IE L 01 0 82 Europe/Dublin 2010-08-14 +2966898 Ardranny Ardranny 53.25 -8.3 P PPL IE C 10 0 76 Europe/Dublin 1993-12-27 +2966899 Ardrahan Ardrahan Ard Raithin,Ardrahan 53.1575 -8.80583 P PPL IE IE C 10 0 27 Europe/Dublin 2010-08-14 +2966900 Ardpatrick Ardpatrick Ardpatrick 52.34222 -8.52667 P PPL IE M 16 0 154 Europe/Dublin 2010-08-14 +2966901 Ardoginna House Ardoginna House Ardogena,Ardoginna House 51.94139 -7.74444 S EST IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966902 Ardoginna Head Ardoginna Head 51.94194 -7.76028 T CAPE IE M 04 0 4 Europe/Dublin 2010-08-14 +2966903 Ardnaree Ardnaree 55.05917 -7.62861 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +2966904 Ardnaree Ardnaree 54.10889 -9.15111 P PPL IE C 20 0 6 Europe/Dublin 2010-08-14 +2966905 Ardnamona Ardnamona 54.71694 -8.05 S EST IE U 06 0 62 Europe/Dublin 2010-08-14 +2966906 Ardnacrusha Ardnacrusha 52.68333 -8.61667 P PPL IE 00 0 9 Europe/Dublin 1993-12-27 +2966907 Ardmore Point Ardmore Point 52.92056 -6.0225 T PT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +2966908 Ardmore Point Ardmore Point 52.58389 -9.43111 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2966909 Ardmore Head Ardmore Head 51.93333 -7.7 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966910 Ardmore Bay Ardmore Bay 51.95 -7.68333 H BAY IE M 27 0 -9999 Europe/Dublin 1993-12-27 +2966911 Ardmore Ardmore Aird Mhor,Aird Mhór,Ardmore 51.94917 -7.72528 P PPL IE IE M 27 0 1 Europe/Dublin 2010-08-14 +2966912 Ardmayle House Ardmayle House Ardmayle,Ardmayle House 52.55917 -7.91667 S EST IE IE M 26 0 77 Europe/Dublin 2010-11-04 +2966913 Ardlougher Ardlougher 54.06194 -7.57556 P PPL IE U 02 0 77 Europe/Dublin 2010-08-14 +2966914 Ardinode Ardinode 53.11667 -6.63333 P PPL IE L 12 0 152 Europe/Dublin 1993-12-27 +2966915 Ardgroom Harbour Ardgroom Harbour 51.75972 -9.87361 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2966916 Ardgroom Ardgroom 51.74056 -9.89556 P PPL IE M 04 0 65 Europe/Dublin 2010-08-14 +2966917 Ardgillan Castle Ardgillan Castle 53.59111 -6.16333 S EST IE L 07 0 2 Europe/Dublin 2010-08-14 +2966918 Ardfry Point Ardfry Point 53.2325 -9.00028 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966919 Ardfinnan Ardfinnan Ard Fhionain,Ard Fhíonáin,Ardfinnan 52.31167 -7.875 P PPL IE IE M 26 0 64 Europe/Dublin 2010-11-04 +2966920 Ardfield Ardfield Ardfield 51.56667 -8.91444 P PPL IE M 04 0 32 Europe/Dublin 2010-08-14 +2966921 Ardfert Abbey Ardfert Abbey 52.33333 -9.76667 S EST IE M 11 0 78 Europe/Dublin 2010-08-14 +2966922 Ardfert Ardfert Ard Fhearta,Ardfert 52.33333 -9.78333 P PPL IE IE M 11 0 76 Europe/Dublin 2010-08-14 +2966923 Arderin Arderin 53.03778 -7.65361 T MT IE L 15 0 384 Europe/Dublin 2010-08-14 +2966924 Ardelly Point Ardelly Point 54.14333 -10.05611 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966925 Ardee Ardee Ardee,Baile Atha Fhirdhia,Baile Átha Fhirdhia 53.85972 -6.54056 P PPL IE L 19 4008 31 Europe/Dublin 2010-08-14 +2966926 Ardea Ardea 51.81444 -9.75778 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +2966927 Ardderry Lough Ardderry Lough 53.45 -9.51667 H LK IE C 10 0 147 Europe/Dublin 1993-12-27 +2966928 Ardcrony Ardcrony Ardcrony 52.93222 -8.15722 P PPL IE M 26 0 94 Europe/Dublin 2010-11-04 +2966929 Ardcath Ardcath Ardcath 53.60806 -6.39139 P PPL IE L 21 0 71 Europe/Dublin 2010-08-14 +2966930 Ard Castle Ard Castle 53.31667 -9.86667 S RUIN IE C 10 0 1 Europe/Dublin 2010-08-14 +2966931 Ardcarn House Ardcarn House Ardcarn,Ardcarn House 53.96722 -8.2075 S HSEC IE IE C 24 0 74 Europe/Dublin 2010-08-14 +2966932 Ardbraccan House Ardbraccan House Ardbraccan,Ardbraccan House 53.65778 -6.75056 S EST IE IE L 21 0 65 Europe/Dublin 2010-08-14 +2966933 Ardbear Bay Ardbear Bay 53.47417 -10.03778 H BAY IE C 10 0 1 Europe/Dublin 2010-08-14 +2966934 Ardara Road Station Ardara Road Station Ardara Road,Ardara Road Station 54.65 -8.41667 S RSTN IE U 06 0 6 Europe/Dublin 2010-08-10 +2966935 Ardara Ardara Ard an Ratha,Ard an Rátha,Ardara,Ardarn 54.76444 -8.4075 P PPL IE IE U 06 2000 46 Europe/Dublin 2010-08-14 +2966936 Ardamore Ardamore 52.20306 -10.36583 P PPL IE M 11 0 16 Europe/Dublin 2010-08-14 +2966937 Ardamine House Ardamine House Ardamine,Ardamine House 52.62167 -6.22944 S EST IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2966938 Ardakillin Lough Ardakillin Lough Ardakillen Lough,Ardakillin Lough 53.75 -8.18333 H LK IE C 24 0 73 Europe/Dublin 2010-08-10 +2966939 Ardagh House Ardagh House Ardagh,Ardagh House 53.66667 -7.68333 S EST IE L 18 0 98 Europe/Dublin 2010-08-10 +2966940 Ardagh Ardagh 53.89778 -6.74306 P PPL IE L 21 0 77 Europe/Dublin 2010-08-14 +2966941 Ardagh Ardagh Ardach,Ardagh 53.66667 -7.7 P PPL IE IE L 18 0 116 Europe/Dublin 2010-08-14 +2966942 Ardagh Ardagh Ardach,Ardagh 52.49444 -9.06306 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +2966943 Ard Ard 53.31611 -9.87833 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966944 Arch Hall Arch Hall 53.72167 -6.72583 S EST IE L 21 0 69 Europe/Dublin 2010-08-14 +2966945 Archerstown House Archerstown House Archerstown,Archerstown House 53.65611 -7.10083 S EST IE IE L 29 0 129 Europe/Dublin 2010-08-14 +2966946 Archerstown House Archerstown House 52.66222 -7.77722 S BLDG IE M 26 0 110 Europe/Dublin 2010-08-14 +2966947 Aran Islands Aran Islands Aran,Aran Islands,Araneilanden,Aranoearna,Aransaaret,Arany,Aranöarna,Iles d'Aran,Islas Aran,Isole Aran,Oileain Arann,Oileáin Árann,South Aran,aran zhu dao,Îles d'Aran,アラン諸島 53.09806 -9.62861 T ISLS IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +2966948 Aran Island Aran Island Arainn Mhor,Aran Island,Árainn Mhór 54.99556 -8.53111 T ISL IE U 06 0 148 Europe/Dublin 2011-03-06 +2966949 Araglin River Araglin River 52.15639 -8.22722 H STM IE M 04 0 33 Europe/Dublin 2010-08-14 +2966950 Araglin Araglin 52.20833 -8.11611 P PPL IE M 04 0 131 Europe/Dublin 2010-08-14 +2966951 River Ara River Ara 52.40556 -7.9475 H STM IE M 26 0 60 Europe/Dublin 2010-08-14 +2966952 Lough Aphreaghaun Lough Aphreaghaun Lough Aphreagan,Lough Aphreaghaun,Loughapreaghan 53.43333 -9.5 H LK IE C 10 0 82 Europe/Dublin 2010-08-10 +2966953 Lough Anure Lough Anure 54.99361 -8.28333 H LK IE U 06 0 20 Europe/Dublin 2010-08-14 +2966954 Anns Fort Anns Fort 54.03333 -6.98333 P PPL IE U 02 0 110 Europe/Dublin 1993-12-27 +2966955 Anneville House Anneville House Anneville,Anneville House 53.46667 -7.33333 S EST IE L 29 0 119 Europe/Dublin 2010-08-10 +2966956 Annestown Annestown 52.13806 -7.30444 P PPL IE M 27 0 1 Europe/Dublin 2010-08-14 +2966957 Annes Grove Annes Grove 52.19472 -8.46639 S EST IE M 04 0 69 Europe/Dublin 2010-08-14 +2966958 Annesbrook Annesbrook 53.83056 -6.93083 P PPL IE L 21 0 114 Europe/Dublin 2010-08-14 +2966959 Anner River Anner River 52.36667 -7.63333 H STM IE 00 0 30 Europe/Dublin 1993-12-27 +2966960 Annegrove Abbey Annegrove Abbey 52.9325 -7.44306 S EST IE L 15 0 94 Europe/Dublin 2010-08-14 +2966961 Annefield House Annefield House Annefield,Annefield House 53.61667 -9.05 S EST IE C 20 0 88 Europe/Dublin 2010-08-10 +2966962 Annamult House Annamult House 52.55278 -7.19556 S EST IE L 13 0 49 Europe/Dublin 2010-08-14 +2966963 Annamoe River Annamoe River Annamoe River,Cloghoge River 53.00278 -6.29667 H STM IE IE L 31 0 146 Europe/Dublin 2010-08-14 +2966964 Annamoe Annamoe 53.02889 -6.25194 P PPL IE L 31 0 278 Europe/Dublin 2010-08-14 +2966965 Annalee River Annalee River 54.04 -7.4075 H STM IE U 02 0 71 Europe/Dublin 1998-04-30 +2966966 Annakisha Annakisha Annakisha,Annaskisha House 52.18333 -8.58333 S EST IE M 04 0 79 Europe/Dublin 2010-08-10 +2966967 Annaghs House Annaghs House Annaghs Castle,Annaghs House 52.37361 -6.96528 S EST IE IE L 13 0 37 Europe/Dublin 2010-08-14 +2966968 Annagh River Annagh River 54.05 -7.15 H STM IE U 02 0 76 Europe/Dublin 1993-12-27 +2966969 Annagh River Annagh River 52.83667 -9.42944 H STM IE M 03 0 34 Europe/Dublin 2010-08-14 +2966970 Annaghmore Lough Annaghmore Lough 53.8 -8.15 H LK IE C 24 0 74 Europe/Dublin 1993-12-27 +2966971 Annaghmore Lough Annaghmore Lough 53.17917 -7.53917 H LK IE 00 0 103 Europe/Dublin 1998-08-18 +2966972 Annaghmore House Annaghmore House Annaghmore,Annaghmore House 53.19583 -7.545 S EST IE IE L 23 0 95 Europe/Dublin 2010-08-14 +2966973 Annaghmore Annaghmore 53.9 -7.8 P PPL IE C 14 0 74 Europe/Dublin 1993-12-27 +2966974 Annaghmore Annaghmore 54.16556 -8.5325 S EST IE C 25 0 71 Europe/Dublin 2010-08-14 +2966975 Annaghmakerig House Annaghmakerig House Anaghmakerig,Anaghmakerig House,Annaghmakerig House 54.13222 -7.11472 S HSEC IE IE U 22 0 77 Europe/Dublin 2010-08-14 +2966976 Annagh Island Annagh Island 54.06722 -9.24083 T ISL IE C 20 0 24 Europe/Dublin 2010-08-14 +2966977 Annagh Island Annagh Island 53.98083 -9.86194 T ISL IE C 20 0 1 Europe/Dublin 2010-08-14 +2966978 Annagh Island Annagh Island 52.25 -9.76667 T ISL IE M 11 0 35 Europe/Dublin 2010-08-14 +2966979 Annagh Hill Annagh Hill 52.75167 -6.37167 T MT IE L 30 0 179 Europe/Dublin 2010-08-14 +2966980 Annagh Head Annagh Head 54.24139 -10.10806 T CAPE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2966981 Annaghdown Annaghdown 53.3925 -9.06639 P PPL IE C 10 0 11 Europe/Dublin 2010-08-14 +2966982 Annagh Castle Annagh Castle 52.95833 -8.25944 S EST IE M 26 0 143 Europe/Dublin 2010-08-14 +2966983 Annagh Bog Annagh Bog 52.11667 -9.35 H BOG IE M 11 0 164 Europe/Dublin 1993-12-27 +2966984 Annaghbeg House Annaghbeg House 52.91056 -8.25806 S EST IE M 26 0 57 Europe/Dublin 2010-08-14 +2966985 Annagh Annagh 53.38583 -8.44722 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +2966986 Annagh Annagh Annagh,Annagh Lodge 52.96806 -8.24972 S EST IE IE M 26 0 119 Europe/Dublin 2010-11-04 +2966987 Annageeragh River Annageeragh River 52.78083 -9.47361 H STM IE M 03 0 26 Europe/Dublin 2010-08-14 +2966988 Annagassan Annagassan 53.88611 -6.34444 P PPL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +2966989 Annagary Annagary 55.02194 -8.31778 P PPL IE U 06 0 108 Europe/Dublin 2010-08-14 +2966990 Annacurragh Annacurragh 52.83889 -6.35861 P PPL IE L 31 0 75 Europe/Dublin 2010-08-14 +2966991 Annacarty Annacarty 52.56444 -8.11028 P PPL IE M 26 0 143 Europe/Dublin 2010-08-14 +2966992 Annacarriga Annacarriga 52.85111 -8.50389 P PPL IE M 03 0 188 Europe/Dublin 2010-08-14 +2966993 Anketell Grove Anketell Grove Ancketill's Grove,Ancketill’s Grove,Anketell Grove 54.31639 -6.96583 S EST IE IE U 22 0 80 Europe/Dublin 2010-08-14 +2966994 Slieve Anierin Slieve Anierin 54.09278 -7.97111 T MT IE C 14 0 587 467 Europe/Dublin 2010-08-14 +2966995 Anglesborough Anglesborough 52.34 -8.31861 P PPL IE M 16 0 172 Europe/Dublin 2010-08-14 +2966996 Lough Anaserd Lough Anaserd 53.43222 -10.09528 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +2966997 Anascaul Anascaul Abhainn an Scail,Abhainn an Scáil,Anascaul 52.15167 -10.05667 P PPL IE M 11 0 65 Europe/Dublin 2010-08-14 +2966998 Anaglog Cross Anaglog Cross Anaglog Cross,Anaglog Cross Roads 53.82417 -6.53111 P PPL IE IE L 19 0 135 Europe/Dublin 2010-08-14 +2966999 Anablaha Anablaha 52.11667 -9.38333 P PPL IE M 11 0 171 Europe/Dublin 1993-12-27 +2967000 Amiens Street Station Amiens Street Station Amiens Street,Amiens Street Station,Amiens Street Terminal,Amiens Street Terminus 53.35 -6.25 S RSTN IE IE 00 0 1 Europe/Dublin 2010-08-10 +2967001 Lough Aluirg Lough Aluirg 55.07333 -8.0425 H LK IE U 06 0 304 Europe/Dublin 2010-08-14 +2967002 Alt Upper Alt Upper Alt,Alt Upper 54.765 -7.59139 P PPL IE IE U 06 0 118 Europe/Dublin 2010-08-14 +2967003 Altnapaste Altnapaste 54.81472 -7.89917 P PPL IE U 06 0 82 Europe/Dublin 2010-08-14 +2967004 Alt Lower Alt Lower 54.76667 -7.58333 P PPL IE U 06 0 80 Europe/Dublin 2010-08-14 +2967005 Altderg River Altderg River 54.21806 -9.5175 H STM IE C 20 0 130 Europe/Dublin 2010-08-14 +2967006 Altan Lough Altan Lough 55.05694 -8.09222 H LK IE U 06 0 193 Europe/Dublin 2010-08-14 +2967007 Altamira House Altamira House 52.26667 -8.78333 S EST IE M 04 0 152 Europe/Dublin 1993-12-27 +2967008 Altadush Altadush 54.93139 -7.94944 P PPL IE U 06 0 153 Europe/Dublin 2010-08-14 +2967009 Slieve Alp Slieve Alp 54.05 -9.73333 T MT IE C 20 0 330 188 Europe/Dublin 2010-08-14 +2967010 Lough Allua Lough Allua Allua,Lough Allua 51.85111 -9.17278 H LK IE IE M 04 0 153 Europe/Dublin 2010-08-14 +2967011 River Allow River Allow 52.13333 -8.9 H STM IE M 04 0 99 Europe/Dublin 1993-12-27 +2967012 Allihies Allihies Allihies,Na hAilichi,Na hAilichí 51.63333 -10.03333 P PPL IE M 04 0 134 Europe/Dublin 2010-08-14 +2967013 Allenwood Allenwood 53.28694 -6.89444 P PPL IE L 12 0 78 Europe/Dublin 2010-08-14 +2967014 Allenstown House Allenstown House 53.67778 -6.81917 S EST IE L 21 0 72 Europe/Dublin 2010-08-14 +2967015 Lough Allen Lough Allen Lough Allen 54.11667 -8.05 H LK IE C 14 0 58 Europe/Dublin 2010-08-10 +2967016 Allaghaun River Allaghaun River 52.38944 -9.30278 H STM IE M 16 0 100 Europe/Dublin 2010-08-14 +2967017 Lough Alick Lough Alick 54.07028 -9.20361 H LK IE C 20 0 21 Europe/Dublin 2010-08-14 +2967018 Alexandra Basin Alexandra Basin 53.35 -6.21667 H HBR IE L 07 0 1 Europe/Dublin 2010-08-14 +2967019 Lough Alewnaghta Lough Alewnaghta Alewaaghta,Lough Alewnaghta 52.96889 -8.35833 H LK IE IE 00 0 55 Europe/Dublin 2010-08-10 +2967020 Lough Aleck More Lough Aleck More Lough Aleck More,Lough Alickmore 54.91917 -8.3675 H LK IE IE U 06 0 50 Europe/Dublin 2010-08-14 +2967021 Albert Quay Station Albert Quay Station Albert Quay,Albert Quay Station,Albert Street Station 51.9 -8.46667 S RSTN IE IE M 04 0 57 Europe/Dublin 2010-08-14 +2967022 Akinkeen Akinkeen 51.81667 -9.43333 T MT IE M 04 0 573 Europe/Dublin 1993-12-27 +2967023 Lough Akibbon Lough Akibbon 55 -7.88333 H LK IE U 06 0 336 Europe/Dublin 1993-12-27 +2967024 Akeragh Lough Akeragh Lough 52.37556 -9.82222 H LK IE M 11 0 33 Europe/Dublin 2010-08-14 +2967025 Aille River Aille River 53.71667 -9.3 H STM IE C 20 0 58 Europe/Dublin 1993-12-27 +2967026 Aille Aille 53.76667 -9.4 P PPL IE C 20 0 137 Europe/Dublin 1993-12-27 +2967027 Ahimma Ahimma 52.49028 -9.64611 P PPL IE M 11 0 53 Europe/Dublin 2010-08-14 +2967028 River Aherlow River Aherlow 52.41889 -7.995 H STM IE M 26 0 63 Europe/Dublin 2010-08-14 +2967029 Glen of Aherlow Glen of Aherlow 52.41694 -8.14444 T VAL IE M 26 0 76 Europe/Dublin 2010-08-14 +2967030 Aherla Aherla 51.85722 -8.73889 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +2967031 Ahenny Ahenny 52.41528 -7.39722 P PPL IE M 26 0 84 Europe/Dublin 2010-08-14 +2967032 Ahascragh Ahascragh Ahascragh,Ath Eascrach,Áth Eascrach 53.39556 -8.32944 P PPL IE IE C 10 0 69 Europe/Dublin 2010-08-14 +2967033 Ahare House Ahare House Abare House,Ahare House 52.7 -6.18333 S BLDG IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +2967034 Ahakista Ahakista Ahakista 51.60556 -9.63583 P PPL IE M 04 0 41 Europe/Dublin 2010-08-14 +2967035 Ahafona Ahafona 52.50444 -9.65861 P PPL IE M 11 0 54 Europe/Dublin 2010-08-14 +2967036 Ahacrinduff River Ahacrinduff River 51.58 -9.27611 H STM IE M 04 0 51 Europe/Dublin 2010-08-14 +2967037 Lough Agraffard Lough Agraffard 53.4 -9.41667 H LK IE C 10 0 163 Europe/Dublin 1993-12-27 +2967038 Aglish Aglish 52.98444 -9.0025 P PPL IE M 03 0 91 Europe/Dublin 2010-08-14 +2967039 Aglish Aglish 52.06889 -7.8275 P PPL IE M 27 0 77 Europe/Dublin 2010-08-14 +2967040 Aghlem Bridge Aghlem Bridge 54.65667 -8.01917 P PPL IE U 06 0 130 Europe/Dublin 2010-08-14 +2967041 Aghleam Aghleam 54.11583 -10.10222 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +2967042 Aghla Mountain Aghla Mountain 54.83861 -8.16139 T MT IE U 06 0 466 Europe/Dublin 2010-08-14 +2967043 Aghern Aghern 52.0825 -8.15222 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +2967044 Agher Agher Agher,Agher House 53.45111 -6.75389 S EST IE IE L 21 0 81 Europe/Dublin 2010-08-14 +2967045 Agheralane House Agheralane House 54.11222 -6.88889 S EST IE U 22 0 143 Europe/Dublin 2010-08-14 +2967046 Aghaweel Hill Aghaweel Hill 55.19333 -7.47222 T HLL IE U 06 0 247 Europe/Dublin 2010-08-14 +2967047 Aghaville Cross Roads Aghaville Cross Roads Aghaville,Aghaville Cross Roads,Aughaville 51.65889 -9.34333 P PPL IE IE M 04 0 105 Europe/Dublin 2010-08-14 +2967048 Aghavas Aghavas 53.95389 -7.71611 P PPL IE C 14 0 144 Europe/Dublin 2010-08-14 +2967049 Aghavannagh Aghavannagh Aghavannagh,Aghavannah 52.91417 -6.41694 P PPL IE IE L 31 0 274 Europe/Dublin 2010-08-14 +2967050 Aghatubrid Bridge Aghatubrid Bridge Aghatubrid,Aghatubrid Bridge 51.88111 -10.19639 P PPL IE IE M 11 0 53 Europe/Dublin 2010-08-14 +2967051 Aghanvilla Aghanvilla 53.2 -7.31667 P PPL IE L 23 0 92 Europe/Dublin 1993-12-27 +2967052 Aghancon Aghancon 53.03222 -7.78833 P PPL IE L 15 0 151 Europe/Dublin 2010-08-14 +2967053 Aghamore House Aghamore House 53.81667 -7.91667 S EST IE 00 0 67 Europe/Dublin 1993-12-27 +2967054 Aghamore Aghamore 53.9 -7.95 P PPL IE C 14 0 125 Europe/Dublin 1993-12-27 +2967055 Aghamore Aghamore 53.81667 -8.81667 P PPL IE C 20 0 73 Europe/Dublin 1993-12-27 +2967056 Aghamarta Castle Aghamarta Castle 51.80139 -8.31056 S EST IE M 04 0 10 Europe/Dublin 2010-08-14 +2967057 Aghagower Aghagower 53.75 -9.46667 P PPL IE C 20 0 147 Europe/Dublin 1993-12-27 +2967058 Aghagadda House Aghagadda House Aghagadda,Aghagadda House 51.88333 -10.31667 S EST IE IE M 11 0 286 Europe/Dublin 2010-08-14 +2967059 Aghadoe House Aghadoe House Aghadoe,Aghadoe House 52.06667 -9.58333 S EST IE M 11 0 58 Europe/Dublin 2010-08-10 +2967060 Aghadoe House Aghadoe House Aghadoe House,Aghadoo House 51.9525 -8.00194 S EST IE IE M 04 0 76 Europe/Dublin 2010-08-14 +2967061 Aghada Aghada 51.83917 -8.21222 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +2967062 Aghacashel River Aghacashel River 54.0525 -7.92583 H STM IE C 14 0 72 Europe/Dublin 2010-08-14 +2967063 Aghacashel House Aghacashel House 54.07389 -7.93444 S HSEC IE C 14 0 135 Europe/Dublin 2010-08-14 +2967064 Aghabullogue Aghabullogue Aghabulloge,Aghabullogue 51.93333 -8.8 P PPL IE IE M 04 0 101 Europe/Dublin 2010-08-14 +2967065 Aghabog Aghabog 54.14972 -7.08944 P PPL IE U 22 0 114 Europe/Dublin 2010-08-14 +2967066 Aghaboe Aghaboe Aghaboe 52.91889 -7.51194 P PPL IE L 15 0 112 Europe/Dublin 2010-08-14 +2967067 Lough Afoor Lough Afoor 53.38306 -9.02222 H LK IE C 10 0 25 Europe/Dublin 2010-08-14 +2967068 Affane House Affane House Affane,Affane House 52.1225 -7.83722 S EST IE IE M 27 0 28 Europe/Dublin 2010-08-14 +2967069 Adrigole Harbour Adrigole Harbour 51.68972 -9.72694 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +2967070 Eadargóil Eadargoil Adrigole 51.69405 -9.72136 P PPL IE IE M 04 0 45 Europe/Dublin 2010-08-14 +2967071 Adoon Station Adoon Station Adoon,Adoon Station 53.98333 -7.85 S RSTN IE C 14 0 76 Europe/Dublin 2010-08-10 +2967072 Lough Adoon Lough Adoon 52.19861 -10.15306 H LK IE M 11 0 264 Europe/Dublin 2010-08-14 +2967073 Lough Aderry Lough Aderry 54.81083 -8.39667 H LK IE U 06 0 5 Europe/Dublin 2010-08-14 +2967074 Addergoole River Addergoole River 54.03528 -9.29917 H STM IE C 20 0 24 Europe/Dublin 2010-08-14 +2967075 Adare Manor House Adare Manor House Adare Manor,Adare Manor House,Manor House 52.56306 -8.77889 S EST IE IE M 16 0 19 Europe/Dublin 2010-08-14 +2967076 Adare Adare Adare,Ath Dara,Áth Dara 52.56194 -8.79556 P PPL IE IE M 16 0 18 Europe/Dublin 2010-08-14 +2967077 Adamstown Adamstown Adamstown 52.39417 -6.71694 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +2967078 Lough Acoose Lough Acoose 52.00722 -9.81167 H LK IE M 11 0 333 Europe/Dublin 2010-08-14 +2967079 Aclare House Aclare House 53.83222 -6.65472 S EST IE L 21 0 55 Europe/Dublin 2010-08-14 +2967080 Aclare Aclare Aclare,Ath an Chlair,Áth an Chláir 54.03333 -8.9 P PPL IE IE C 25 0 53 Europe/Dublin 2010-08-14 +2967081 Achill Sound Achill Sound 53.91667 -9.91667 H SD IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2967082 Achill Island Achill Island Acaill,Achill,Achill - Acaill,Achill Island,Ile d'Achill,Wyspa Achill,Île d'Achill 53.9625 -9.99028 T ISL IE C 20 0 77 Europe/Dublin 2010-08-14 +2967083 Achill Head Achill Head 53.97278 -10.25722 T CAPE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2967084 Achillbeg Island Achillbeg Island Achillbeg Island 53.86444 -9.95194 T ISL IE C 20 0 125 Europe/Dublin 2010-08-14 +2967085 Achill Achill 53.93111 -9.915 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +2967086 Abington Abington 52.63556 -8.41472 P PPL IE M 16 0 61 Europe/Dublin 2010-08-14 +2967087 Abbeyville Abbeyville 54.06083 -8.50361 P PPL IE C 25 0 74 Europe/Dublin 2010-08-14 +2967088 Abbeytown Abbeytown 54.17167 -9.16111 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +2967089 Abbeyside Abbeyside 52.09389 -7.61139 P PPL IE M 27 0 2 Europe/Dublin 2010-08-14 +2967090 Abbeyshrule Abbeyshrule Abbeyshrule 53.58333 -7.65 P PPL IE L 18 0 72 Europe/Dublin 2010-08-10 +2967091 Abbey River Abbey River 52.66667 -8.61667 H STMA IE M 16 0 17 Europe/Dublin 2010-08-14 +2967092 Abbeyleix Abbeyleix Abbeyleix,Mainistir Laoise 52.89917 -7.3575 P PPL IE L 15 1711 130 Europe/Dublin 2010-08-14 +2967093 Abbeylara Abbeylara Abbeylara,Mainistir Leathratha,Mainistir Leathrátha 53.76667 -7.45 P PPL IE L 18 0 85 Europe/Dublin 2010-08-14 +2967094 Abbey Island Abbey Island 51.76167 -10.14972 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +2967095 Abbeyfeale Abbeyfeale Abbeyfeale,Mainistir na Feile,Mainistir na Féile 52.38139 -9.3025 P PPL IE M 16 1734 94 Europe/Dublin 2010-08-14 +2967096 Abbeydorney Abbeydorney Abbeydorney,Mainistir O d'Torna,Mainistir Ó d’Torna,Montnagee 52.35 -9.68333 P PPL IE M 11 0 73 Europe/Dublin 2010-08-14 +2967097 Abbey Abbey 53.10306 -8.39222 P PPL IE C 10 0 66 Europe/Dublin 2010-08-14 +2967098 Abbeville House Abbeville House Abbeville House,Abbeyville House 53.08056 -8.06278 S EST IE IE M 26 0 70 Europe/Dublin 2010-11-04 +2967099 Abbeville Abbeville Abbevill,Abbeville 51.96667 -8.58333 P PPL IE IE M 04 0 112 Europe/Dublin 2010-08-14 +2967100 Abbert River Abbert River 53.41667 -8.88333 H STM IE C 10 0 28 Europe/Dublin 1993-12-27 +2967101 Abbert Abbert 53.43333 -8.68333 S EST IE C 10 0 62 Europe/Dublin 1993-12-27 +2967102 Aasleagh Aasleagh 53.61667 -9.66667 P PPL IE C 20 0 74 Europe/Dublin 1993-12-27 +3210649 South Rock South Rock 52.19167 -6.20833 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3210650 Collough Rock Collough Rock 52.18917 -6.32389 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3210651 Barrels Rocks Barrels Rocks 52.14722 -6.37889 T RKS IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3210656 Brandies Brandies 52.09694 -6.57222 T RKS IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3210682 Black Rock Black Rock 52.15 -6.40389 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3210683 Kilturk Bank Kilturk Bank 52.15833 -6.5 H BNK IE L 30 0 -9999 Europe/Dublin 1998-03-13 +3210684 Murroch’s Rock Murroch's Rock 52.14167 -6.59167 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3210685 Coningmore Rocks Coningmore Rocks 52.0825 -6.61472 T RKS IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3225979 Conaghra Point Conaghra Point 54.31667 -8.5 T PT IE C 25 0 9 Europe/Dublin 2010-08-14 +3226008 The Ledge The Ledge 54.31667 -8.71667 H SHOL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3226010 Sligo Harbour Sligo Harbour 54.28333 -8.5 H HBR IE C 25 0 1 Europe/Dublin 2010-08-14 +3226034 Ballyconnell Point Ballyconnell Point 54.35 -8.65 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +3226039 Aroo Aroo 54.41667 -8.25 T MT IE C 14 0 269 Europe/Dublin 2010-08-14 +3226041 Bomore Bomore 54.46417 -8.67667 T RK IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3226042 Mullaghmore Head Mullaghmore Head 54.45 -8.46667 T CAPE IE C 25 0 1 Europe/Dublin 2010-08-14 +3226043 Finner Point Finner Point 54.5 -8.28333 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226044 Donegal Harbour Donegal Harbour 54.63333 -8.18333 H HBR IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226047 Killybegs Harbour Killybegs Harbour 54.63333 -8.43333 H HBR IE U 06 0 1 Europe/Dublin 2010-08-14 +3226052 Malin Beg Head Malin Beg Head 54.66667 -8.78333 T CAPE IE U 06 0 98 Europe/Dublin 2010-08-14 +3226096 Roaninish Roaninish 54.87139 -8.53472 T RKS IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226097 Croaghleheen Croaghleheen 54.88333 -8.2 T MT IE U 06 0 161 Europe/Dublin 2010-08-14 +3226098 Black Rock Point Black Rock Point 54.98333 -8.58333 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226099 Bullogconnell Shoals Bullogconnell Shoals 55.1 -8.41667 H SHOL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226100 Gweedore Harbour Gweedore Harbour 55.05 -8.33333 H HBR IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226101 Ballyness Harbour Ballyness Harbour 55.15 -8.16667 H HBR IE U 06 0 1 Europe/Dublin 2010-08-14 +3226102 Frenchman’s Rock Frenchman's Rock 55.25 -7.83333 T RK IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226103 Broad Water Broad Water 55.17111 -7.69556 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226122 Limeburner Rock Limeburner Rock 55.21667 -7.58333 T RK IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3226221 Falskirt Rock Falskirt Rock 52.15 -7.025 T RK IE M 27 0 10 Europe/Dublin 2010-08-14 +3226223 Swede Rock Swede Rock 52.12917 -7.08333 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3226226 Back Strand Back Strand 52.15833 -7.09083 H COVE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3226227 Pollack Rock Pollack Rock 52.13333 -7.11667 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3226228 Rinnashark Harbour Rinnashark Harbour 52.14028 -7.0925 H HBR IE M 27 0 1 Europe/Dublin 2010-08-14 +3226238 Carrigaderragh Carrigaderragh 52.18333 -7.01667 T HLL IE M 27 0 76 Europe/Dublin 2010-08-14 +3226239 Loftus Hall Loftus Hall 52.14611 -6.90389 S EST IE L 30 0 1 Europe/Dublin 2010-08-14 +3226277 Bannow Bannow 52.21528 -6.76611 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3226278 Ballyteige Lough Ballyteige Lough 52.21667 -6.7 H INLT IE L 30 0 1 Europe/Dublin 2010-08-14 +3226279 Bar of Lough Bar of Lough 52.21667 -6.7 T BAR IE L 30 0 1 Europe/Dublin 2010-08-14 +3226280 Ingard Point Ingard Point 52.19167 -6.81667 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226281 Selskar Rock Selskar Rock 52.19806 -6.78306 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226291 George Rock George Rock 52.2 -6.73333 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226292 Red Bank Red Bank 52.08194 -6.65556 H SHOL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226294 The Bore The Bore 52.1 -6.53333 H SHOL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226336 Carrickbyrne Hill Carrickbyrne Hill Carrickbyrne,Carrickbyrne Hill 52.365 -6.78028 T HLL IE IE L 30 0 76 Europe/Dublin 2010-08-14 +3226337 Tory Hill Tory Hill 52.34694 -7.12806 T HLL IE L 13 0 144 Europe/Dublin 2010-08-14 +3226338 Slievecoiltia Slievecoiltia 52.33583 -6.92806 T HLL IE L 30 0 159 Europe/Dublin 2010-08-14 +3226347 Splaugh Rock Splaugh Rock 52.26667 -6.31667 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226349 Wexford Bay Wexford Bay North Bay,Wexford Bay 52.39556 -6.32556 H BAY IE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226350 Blackwater Bank Blackwater Bank 52.43556 -6.18944 H SHOL IE L 30 0 -9999 Europe/Dublin 1998-02-09 +3226351 Ballynamona Hill Ballynamona Hill 52.48333 -6.31667 T HLL IE L 30 0 50 Europe/Dublin 2010-08-14 +3226353 Rusk Channel Rusk Channel 52.515 -6.18056 H CHNM IE L 30 0 -9999 Europe/Dublin 1998-02-09 +3226354 Money-weights Bank Money-weights Bank 52.49972 -6.16972 H SHOL IE L 30 0 -9999 Europe/Dublin 1998-02-09 +3226355 Rusk Bank Rusk Bank 52.52167 -6.19667 H SHOL IE L 30 0 -9999 Europe/Dublin 1998-02-09 +3226357 Carrigroe Hill Carrigroe Hill 52.58667 -6.39361 T HLL IE L 30 0 74 Europe/Dublin 2010-08-14 +3226366 Polduff Polduff 52.56667 -6.2 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226372 Roney Point Roney Point 52.60167 -6.20556 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226374 Roney Rock Roney Rock 52.61667 -6.21389 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3226381 Ballydane Ballydane 52.65 -6.25 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3226385 Ballyminaun Hill Ballyminaun Hill 52.64528 -6.30528 T HLL IE L 30 0 19 Europe/Dublin 2010-08-14 +3226389 Castletown Castletown 52.72306 -6.18944 P PPL IE L 30 0 11 Europe/Dublin 2010-08-14 +3226390 Collon Top Collon Top 52.91667 -6.06667 T HLL IE L 31 0 71 Europe/Dublin 2010-08-14 +3226391 Wolf Rock Wolf Rock 52.91333 -6.01667 T RK IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3226392 Carrick Mountain Carrick Mountain 52.98056 -6.16639 T MT IE L 31 0 382 269 Europe/Dublin 2010-08-14 +3226393 Arklow Rock Arklow Rock 52.76806 -6.14944 T HLL IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3229969 Straw Island Straw Island 53.12056 -9.6275 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3229972 Rock Island Rock Island 53.15528 -9.855 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3229976 Brocklinmore Bank Brocklinmore Bank 53.15833 -9.71667 H BNK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3229990 Killeen Point Killeen Point 53.23333 -9.58889 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3229992 Cleggan Point Cleggan Point 53.56667 -10.125 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230048 Ardnakinna Point Ardnakinna Point 51.625 -9.91667 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230085 Black Rock Black Rock 53.23806 -9.10417 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230093 North Bay North Bay 53.23333 -9.03333 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230098 Fardurris Point Fardurris Point 53.04944 -9.52361 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230099 Tarbert Island Tarbert Island 52.58833 -9.36361 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230119 Kerry Head Shoal Kerry Head Shoal 52.45 -10.05 H SHOL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230120 Monavullagh Mountains Monavullagh Mountains 52.21944 -7.59972 T MTS IE M 27 0 587 Europe/Dublin 2010-08-14 +3230130 Black Head Black Head 51.62861 -8.53639 T CAPE IE M 04 0 86 Europe/Dublin 2010-08-14 +3230131 Hake Head Hake Head 51.65806 -8.53722 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230137 Preghane Point Preghane Point 51.675 -8.49167 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230138 Ferry Point Ferry Point 51.69167 -8.45 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230141 Kinure Point Kinure Point 51.6875 -8.44722 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230143 Blinknure Point Blinknure Point 51.70278 -8.44722 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230144 Daunt Rock Daunt Rock 51.725 -8.29167 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230145 The Smiths The Smiths 51.71667 -8.23333 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230146 Cork Head Cork Head 51.74306 -8.3 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230147 Morris Head Morris Head 51.75417 -8.29722 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230149 Myrtleville Bay Myrtleville Bay 51.78472 -8.29667 H BAY IE M 04 0 1 Europe/Dublin 2010-08-14 +3230150 Carrigabrochell Carrigabrochell 51.78472 -8.28333 H RF IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230151 Rams Head Rams Head 51.81139 -8.27722 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230152 The Sound The Sound 51.79583 -8.26667 H SD IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230153 Brohogue Rock Brohogue Rock 51.79167 -8.19167 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230155 Hawk Rock Hawk Rock 51.78333 -8.175 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230156 Quarry Rock Quarry Rock 51.78333 -8.16667 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230157 Pollock Rock Pollock Rock 51.775 -8.13333 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230159 Ballycroneen Bay Ballycroneen Bay 51.8 -8.11667 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230163 Bullens Bay Bullens Bay 51.64361 -8.55528 H BAY IE M 04 0 6 Europe/Dublin 2010-08-14 +3230174 Saint Patricks Bridge Saint Patricks Bridge 52.15833 -8.58333 H SHOL IE M 04 0 63 Europe/Dublin 2010-08-14 +3230200 Kilcredaun Head Kilcredaun Head 52.5875 -9.71667 T CAPE IE M 11 0 1 Europe/Dublin 2010-08-14 +3230206 Big Sovereign Big Sovereign 51.675 -8.45 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230213 Kinsale Head Gas Field Kinsale Head Gas Field 51.36667 -8 L GASF IE 00 0 -9999 Europe/Dublin 1996-05-21 +3230293 Portmurvy Portmurvy 53.14222 -9.745 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230294 Kinereigh Kinereigh Kinereigh,Kinereigh Point 53.14639 -9.6975 T PT IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230295 Curran Banks Curran Banks 53.13333 -9.575 H BNK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230296 Rossaveel Rossaveel Ros an Mhil,Ros an Mhíl,Rossaveel 53.27083 -9.55111 P PPL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +3230297 Trabaan Point Trabaan Point 53.23056 -9.65 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230299 Lettermullan Lettermullan Leitir Meallain,Leitir Mealláin,Lettermullan 53.245 -9.73861 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3230301 Skerd Rocks Skerd Rocks 53.25 -10 T RKS IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230304 Knock Point Knock Point 53.25833 -9.71667 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230306 Loughs Ahalia Loughs Ahalia Lough Ahalia,Loughs Ahalia 53.39667 -9.565 H LKS IE IE C 10 0 77 Europe/Dublin 2010-08-14 +3230308 Knockmorden Knockmorden 53.37917 -9.70833 T MT IE C 10 0 180 Europe/Dublin 2010-08-14 +3230311 Illaunnacroagh Illaunnacroagh Illauncroagh More,Illaunnacroagh 53.34583 -9.96139 T ISL IE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230314 Cashel Hill Cashel Hill 53.42917 -9.80417 T HLL IE C 10 0 125 Europe/Dublin 2010-08-14 +3230315 Thanymore Shoals Thanymore Shoals 53.35 -10.13333 H SHOL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230317 Bunowen Castle Bunowen Castle Bunowen 53.41672 -10.11038 S CSTL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +3230318 Ballyconneely Ballyconneely Baile Conaola,Ballyconneely 53.43333 -10.06667 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3230319 Doonloughan Doonloughan 53.43917 -10.14167 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3230320 Knock Knock Knock,Knock Point 53.45667 -10.13056 T PT IE IE C 10 0 1 Europe/Dublin 2010-08-14 +3230329 Garraun Garraun 53.58444 -9.86056 T MT IE C 10 0 601 320 Europe/Dublin 2010-08-14 +3230333 Ben Creggan Ben Creggan 53.63611 -9.725 T MT IE C 20 0 421 Europe/Dublin 2010-08-14 +3230334 Sheeffry Hills Sheeffry Hills 53.66667 -9.7 T MTS IE C 20 0 474 Europe/Dublin 2010-08-14 +3230336 Mullaghglass Mullaghglass 53.59639 -9.9275 P PPL IE C 10 0 60 Europe/Dublin 2010-08-14 +3230337 Tully Mountain Tully Mountain 53.58417 -10.005 T MT IE C 10 0 357 167 Europe/Dublin 2010-08-14 +3230340 Tonakeera Point Tonakeera Point 53.65278 -9.90833 T PT IE C 20 0 1 Europe/Dublin 2010-08-14 +3230343 Kinnadoohy Kinnadoohy Kinnadooh,Kinnadoohy 53.68333 -9.9 P PPL IE IE C 20 0 67 Europe/Dublin 2010-08-14 +3230345 Devlin Hill Devlin Hill 53.69583 -9.88333 T HLL IE C 20 0 143 Europe/Dublin 2010-08-14 +3230347 Claddaghduff Claddaghduff Claddaghduff 53.54444 -10.14167 P PPL IE C 10 0 14 Europe/Dublin 2010-08-14 +3230348 Cashleen Cashleen 53.6 -10.03333 P PPL IE C 10 0 142 Europe/Dublin 2010-08-14 +3230354 Roonah Quay Roonah Quay 53.76056 -9.89611 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +3230357 Leckanvy Leckanvy 53.775 -9.6875 P PPL IE C 20 0 167 Europe/Dublin 2010-08-14 +3230358 Bengorm Bengorm 53.95 -9.63333 T MT IE C 20 0 293 Europe/Dublin 2010-08-14 +3230360 Buckoogh Buckoogh 53.95 -9.53333 T MT IE C 20 0 589 269 Europe/Dublin 2010-08-14 +3230361 Bolinglanna Bolinglanna 53.86583 -9.90194 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230376 Dooghbeg Dooghbeg 53.88 -9.81472 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230377 Cushlecka Cushlecka Cushlecka,Cushleeka 53.89611 -9.79417 P PPL IE IE C 20 0 1 Europe/Dublin 2010-08-14 +3230378 Corraun Hill Corraun Hill 53.89667 -9.89417 T MT IE C 20 0 522 319 Europe/Dublin 2010-08-14 +3230379 Cashel Cashel 53.95833 -9.96667 P PPL IE C 20 0 69 Europe/Dublin 2010-08-14 +3230380 Bunacurry Bunacurry 53.975 -9.975 P PPL IE C 20 0 32 Europe/Dublin 2010-08-14 +3230384 Inishgalloon Inishgalloon 53.95611 -10.09944 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230386 Croaghaun Croaghaun Croaghaun 53.97861 -10.19333 T MT IE C 20 0 289 Europe/Dublin 2010-08-14 +3230388 Nephin Beg Range Nephin Beg Range 54 -9.66667 T MTS IE C 20 0 269 Europe/Dublin 2010-08-14 +3230389 Corslieve Corslieve 54.04722 -9.65 T MT IE C 20 0 544 319 Europe/Dublin 2010-08-14 +3230393 Tullaghanbaun Tullaghanbaun 54.06667 -9.91667 P PPL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230395 Kinrovar Kinrovar 54.06056 -9.97 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230398 Rath Hill Rath Hill 54.07972 -9.93667 T HLL IE C 20 0 63 1 Europe/Dublin 2010-08-14 +3230402 Dooyork Dooyork 54.10556 -9.94361 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +3230405 Fallmore Fallmore 54.09583 -10.1 P PPL IE C 20 0 2 Europe/Dublin 2010-08-14 +3230411 Doolough Point Doolough Point 54.15333 -9.95556 T PT IE C 20 0 1 Europe/Dublin 2010-08-14 +3230412 Claggan Point Claggan Point 54.18194 -9.975 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230413 Gortmellia Gortmellia 54.23333 -9.85833 P PPL IE C 20 0 48 Europe/Dublin 2010-08-14 +3230415 Knocknalower Knocknalower 54.24167 -9.81667 P PPL IE C 20 612 115 Europe/Dublin 2010-08-14 +3230422 Tawnaghmore Tawnaghmore 54.29389 -9.59861 T MT IE C 20 0 340 84 Europe/Dublin 2010-08-14 +3230425 Tower Hill Tower Hill 54.25694 -9.95972 T HLL IE C 20 0 132 1 Europe/Dublin 2010-08-14 +3230426 Glendorragh Point Glendorragh Point 54.28333 -10.04861 T PT IE C 20 0 93 Europe/Dublin 2010-08-14 +3230427 Corclogh Corclogh 54.25361 -10.04083 P PPL IE C 20 0 68 Europe/Dublin 2010-08-14 +3230428 Ardmore Point Ardmore Point 54.18111 -10.01167 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230429 Bunnaclassy Point Bunnaclassy Point 54.175 -10.04167 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3230437 Dunmore Head Dunmore Head 52.55389 -9.88917 T CAPE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230440 Ross Point Ross Point 52.5875 -9.875 T PT IE M 03 0 1 Europe/Dublin 2010-08-14 +3230441 Kilcloher Head Kilcloher Head 52.56667 -9.81667 T CAPE IE M 11 0 1 Europe/Dublin 2010-08-14 +3230442 Turbot Bank Turbot Bank 52.55833 -9.78333 H BNK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230443 Rehy Hill Rehy Hill 52.57333 -9.76861 T HLL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230444 Remarkable Cliff Remarkable Cliff 52.59583 -9.82917 T CLF IE M 03 0 1 Europe/Dublin 2010-08-14 +3230445 Goleen Bay Goleen Bay 52.64472 -9.74 H BAY IE M 03 0 42 Europe/Dublin 2010-08-14 +3230487 Ferrybank Ferrybank 52.79944 -6.14278 P PPL IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230488 Ballinakill Ballinakill 52.83611 -6.18222 T HLL IE L 31 0 215 133 Europe/Dublin 2010-08-14 +3230489 The Castle The Castle 52.89722 -6.03889 T PT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230490 Jack’s Hole Jack's Hole 52.89889 -6.03778 H COVE IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230491 Magherabeg Magherabeg 52.925 -6.04222 L LCTY IE L 31 0 1 Europe/Dublin 2010-08-14 +3230492 Three Mile Water Three Mile Water 52.91556 -6.03278 H STM IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230493 Long Rock Long Rock 52.94889 -6.00972 T RK IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230494 Horse Shoe Horse Shoe 52.95 -5.99722 H SHOL IE L 31 0 -9999 Europe/Dublin 1999-02-24 +3230495 Broad Lough Broad Lough 52.9975 -6.05472 H LK IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230496 Dunran Hill Dunran Hill 53.05278 -6.11889 T HLL IE L 31 0 339 202 Europe/Dublin 2010-08-14 +3230497 Six Mile Point Six Mile Point 53.06611 -6.03333 T PT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230498 South Ridge South Ridge 53.04583 -5.88333 H SHOL IE L 31 0 -9999 Europe/Dublin 1996-05-20 +3230499 The Breaches The Breaches 53.08333 -6.03333 H INLT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230500 Periwinkle Rocks Periwinkle Rocks 53.18333 -6.08333 T RKS IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230501 Crab Rock Crab Rock 53.18333 -6.08333 T RK IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230502 Cable Rock Cable Rock 53.16667 -6.06667 T RK IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3230503 Breaches Shoal Breaches Shoal 53.08333 -6 H SHOL IE L 31 0 -9999 Europe/Dublin 1996-05-20 +3230504 Moulditch Bank Moulditch Bank 53.13333 -6.03333 H SHOL IE L 31 0 -9999 Europe/Dublin 1996-05-20 +3230505 Carrickgollogan Carrickgollogan 53.21667 -6.15 T HLL IE L 34 0 83 90 Europe/Dublin 2010-08-14 +3230506 Killiney Bay Killiney Bay Cuan Chill Inion Leinin,Cuan Chill Inion Léinin,Killiney Bay 53.26028 -6.0925 H BAY IE IE L 07 0 -9999 Europe/Dublin 2010-11-05 +3230507 Frazer Bank Frazer Bank 53.25528 -6.07611 H SHOL IE 00 0 -9999 Europe/Dublin 1999-02-24 +3230508 Killiney Hill Killiney Hill 53.265 -6.11056 T HLL IE L 07 0 152 -9999 Europe/Dublin 2010-08-14 +3230509 Dalkey Hill Dalkey Hill 53.26944 -6.10556 T HLL IE L 34 0 42 1 Europe/Dublin 2010-08-14 +3230510 Dalkey Island Dalkey Island Dalkey Island,Oilean Dheilginse,Oileán Dheilginse 53.27028 -6.08194 T ISL IE IE L 07 0 -9999 Europe/Dublin 2010-11-05 +3230511 Dalkey Sound Dalkey Sound 53.26667 -6.08333 H CHNM IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230512 Lamb Island Lamb Island 53.275 -6.08694 T RK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230513 Sorrento Point Sorrento Point 53.26889 -6.09083 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230514 Coliemore Harbour Coliemore Harbour 53.275 -6.09222 H COVE IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230515 Muglins Sound Muglins Sound 53.27389 -6.07833 H CHNM IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230516 Muglins Muglins 53.27417 -6.07889 T RK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230517 Leac Buidhe Leac Buidhe 53.27667 -6.08528 T RK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230518 Clare Rock Clare Rock 53.27667 -6.08778 T RK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230519 Maiden Rock Maiden Rock 53.2775 -6.09028 T RK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230520 Bullock Harbour Bullock Harbour 53.28333 -6.10694 H COVE IE L 07 0 1 Europe/Dublin 2010-08-14 +3230521 Sandycove Point Sandycove Point 53.28333 -6.1 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230522 Sandycove Harbour Sandycove Harbour 53.28833 -6.11389 H COVE IE L 07 0 1 Europe/Dublin 2010-08-14 +3230523 Scotsmans Bay Scotsmans Bay 53.2925 -6.1075 H BAY IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230524 Dún Laoghaire Harbour Dun Laoghaire Harbour 53.2969 -6.13235 H HBR IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230525 Merrion Strand Merrion Strand 53.31694 -6.19444 T BCH IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230526 South Bull South Bull 53.31667 -6.16667 H FLTT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230527 Sandymount Strand Sandymount Strand 53.33222 -6.2 T BCH IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230528 Moveen Bay Moveen Bay 52.66667 -9.71667 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230530 Georges Head Georges Head 52.69194 -9.65611 T CAPE IE M 03 0 3 Europe/Dublin 2010-08-14 +3230533 Ballard Bay Ballard Bay 52.73667 -9.61417 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230535 Magrath’s Point Magrath's Point 52.74583 -9.52528 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230538 Corlis Point Corlis Point 52.61806 -9.60278 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230553 Poulnasherry Bay Poulnasherry Bay 52.65778 -9.55639 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230556 Ballylongford Bay Ballylongford Bay 52.57556 -9.47472 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230558 Money Point Money Point 52.60306 -9.39833 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230559 Rinealon Point Rinealon Point 52.61806 -9.16778 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230560 Ballysteen Ballysteen 52.64556 -8.955 P PPL IE M 16 0 1 Europe/Dublin 2010-08-14 +3230561 Doughmore Bay Doughmore Bay 52.76667 -9.51667 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230562 Bealaclugga Bay Bealaclugga Bay 52.84167 -9.45 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230571 Knocknalarabana Knocknalarabana Knocknaiarabana,Knocknalarabana 52.99861 -9.36806 T HLL IE IE M 03 0 145 Europe/Dublin 2010-08-14 +3230572 Aille River Aille River 53.01444 -9.39028 H STM IE M 03 0 35 Europe/Dublin 2010-08-14 +3230573 Trawkeera Point Trawkeera Point 53.06111 -9.49917 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230574 Tonefeehney Point Tonefeehney Point 53.05 -9.55 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230575 Dogs Head Dogs Head 53.11361 -9.62806 T CAPE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230576 Castle Point Castle Point 53.22778 -9.63333 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230577 Lough Nagravin Lough Nagravin 53.23694 -9.51139 H LK IE C 10 0 4 Europe/Dublin 2010-08-14 +3230578 Knockduff Knockduff 53.28167 -9.46778 P PPL IE C 10 0 78 Europe/Dublin 2010-08-14 +3230579 Bovroughaun Hill Bovroughaun Hill 53.30056 -9.47556 T HLL IE C 10 0 101 Europe/Dublin 2010-08-14 +3230582 Shannawona Shannawona Shanaroona,Shannawona 53.4 -9.48278 T HLL IE IE C 10 0 178 Europe/Dublin 2010-08-14 +3230584 Knocknalee Hill Knocknalee Hill 53.37667 -9.3225 T HLL IE C 10 0 163 Europe/Dublin 2010-08-14 +3230585 Fanore Bay Fanore Bay 53.11944 -9.3 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3230586 Gleninagh Mountain Gleninagh Mountain 53.13167 -9.225 T MT IE M 03 0 148 Europe/Dublin 2010-08-14 +3230587 Cappanawalla Cappanawalla 53.12278 -9.19639 T MT IE M 03 0 204 Europe/Dublin 2010-08-14 +3230588 Moneen Mountain Moneen Mountain 53.11694 -9.09861 T HLL IE M 03 0 115 Europe/Dublin 2010-08-14 +3230590 Owenboliskey River Owenboliskey River 53.24472 -9.30556 H STM IE C 10 0 1 Europe/Dublin 2010-08-14 +3230591 Kilcaimin Kilcaimin 53.23889 -8.94167 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3230592 Kilcolgan Point Kilcolgan Point 53.21944 -9.04611 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3230593 Aughinish Aughinish 53.165 -9.07944 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +3230596 Inshaboy Point Inshaboy Point 52.44444 -9.79444 T PT IE M 11 0 5 Europe/Dublin 2010-08-14 +3230598 Bird Island Bird Island 52.45278 -9.76444 T ISL IE M 11 0 32 Europe/Dublin 2010-08-14 +3230599 Tiduff Tiduff 52.40944 -9.93444 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3230600 Triskmore Mountain Triskmore Mountain 52.41639 -9.89861 T MT IE M 11 0 213 151 Europe/Dublin 2010-08-14 +3230601 Maulin Mountain Maulin Mountain 52.41667 -9.875 T MT IE M 11 0 140 Europe/Dublin 2010-08-14 +3230602 Tiershanaghan Tiershanaghan 52.42083 -9.85278 P PPL IE M 11 0 106 Europe/Dublin 2010-08-14 +3230608 Ballymacquin Ballymacquin 52.36944 -9.81611 P PPL IE M 11 0 35 Europe/Dublin 2010-08-14 +3230611 Black Rock Black Rock 52.36222 -9.84361 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230613 Illaunnabarnagh Illaunnabarnagh 52.34194 -9.91306 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230614 Mucklaghmore Mucklaghmore 52.34139 -9.93278 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230615 Fenit Island Fenit Island Fenit Island 52.29167 -9.86667 T ISL IE M 11 0 1 Europe/Dublin 2010-08-14 +3230617 Church Hill Church Hill 52.29306 -9.83694 T HLL IE M 11 0 3 Europe/Dublin 2010-08-14 +3230619 Inishtooskert Inishtooskert 52.33778 -10.05861 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230621 Gurrig Island Gurrig Island 52.32778 -10.075 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230622 Caher Point Caher Point 52.26278 -10.14972 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230623 Masatiompan Masatiompan 52.2625 -10.25278 T MT IE M 11 0 413 Europe/Dublin 2010-08-14 +3230624 Cottoners River Cottoners River 52.09583 -9.77083 H STM IE M 11 0 8 Europe/Dublin 2010-08-14 +3230625 Seefin Seefin 52.04889 -9.91472 T MT IE M 11 0 352 Europe/Dublin 2010-08-14 +3230626 Ross Behy Ross Behy 52.05417 -9.9775 P PPL IE M 11 0 63 Europe/Dublin 2010-08-14 +3230631 Brickany Brickany 52.15778 -10.00028 T MT IE M 11 0 132 Europe/Dublin 2010-08-14 +3230632 Moanlaur Moanlaur 52.17833 -9.91778 T MT IE M 11 0 568 319 Europe/Dublin 2010-08-14 +3230633 Emlagh River Emlagh River 52.145 -9.95833 H STM IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230636 Beenmore Beenmore 52.01778 -10.04417 T MT IE M 11 0 420 Europe/Dublin 2010-08-14 +3230637 Kilkeehagh Kilkeehagh 52.03583 -10.02278 P PPL IE M 11 0 100 Europe/Dublin 2010-08-14 +3230640 Kings Head Kings Head 52.03361 -10.09194 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230642 Breaker Rock Breaker Rock 51.99444 -10.25 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230644 Killelan Mountain Killelan Mountain 51.95806 -10.30417 T MT IE M 11 0 38 Europe/Dublin 2010-08-14 +3230646 Doulus Bay Doulus Bay Doulus Bay,Dowlas Bay 51.94806 -10.31083 H BAY IE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230652 Reenard Point Reenard Point 51.93194 -10.27361 T PT IE M 11 0 1 Europe/Dublin 2010-08-14 +3230653 Reenadrolaun Point Reenadrolaun Point 51.93611 -10.34972 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230654 Beennakryraka Head Beennakryraka Head 51.91083 -10.40583 T CAPE IE M 11 0 1 Europe/Dublin 2010-08-14 +3230655 Aghnagar Bridge Aghnagar Bridge 51.89944 -10.24861 P PPL IE M 11 0 14 Europe/Dublin 2010-08-14 +3230656 Acres Point Acres Point 52.12444 -10.09611 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230657 Knocknanacree Knocknanacree 52.13472 -10.08361 T HLL IE M 11 0 286 80 Europe/Dublin 2010-08-14 +3230658 Knockmulanane Knockmulanane 52.17861 -10.09556 T MT IE M 11 0 595 363 Europe/Dublin 2010-08-14 +3230659 Brandon Peak Brandon Peak 52.21722 -10.23806 T PK IE M 11 0 842 365 Europe/Dublin 2010-08-14 +3230660 Ballysitteragh Ballysitteragh 52.18306 -10.25389 T MT IE M 11 0 624 515 Europe/Dublin 2010-08-14 +3230661 Reenbeg Point Reenbeg Point 52.11611 -10.26667 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230662 Milltown River Milltown River 52.14056 -10.28806 H STM IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230664 Sybil Head Sybil Head 52.19167 -10.44889 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230665 Croaghmarhin Croaghmarhin 52.14944 -10.43306 T MT IE M 11 0 167 Europe/Dublin 2010-08-14 +3230668 Bolus Bolus 51.8 -10.31667 T MT IE M 11 0 35 Europe/Dublin 2010-08-14 +3230669 Deenish Island Deenish Island 51.74083 -10.22167 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230670 Mullaghbeg Mullaghbeg 51.81528 -10.09056 T MT IE M 11 0 269 Europe/Dublin 2010-08-14 +3230671 Eagles Hill Eagles Hill 51.81167 -10.05722 T MT IE M 11 0 544 174 Europe/Dublin 2010-08-14 +3230672 Cahernageeha Mountain Cahernageeha Mountain 51.79444 -10.11694 T MT IE M 11 0 499 322 Europe/Dublin 2010-08-14 +3230673 Illaundrane Illaundrane 51.78972 -9.98833 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3230674 Bunnow Harbour Bunnow Harbour 51.79611 -9.97944 H HBR IE M 11 0 5 Europe/Dublin 2010-08-14 +3230675 Knockatee Knockatee 51.79222 -9.77694 T MT IE M 11 0 111 Europe/Dublin 2010-08-14 +3230676 Coomacloghane Coomacloghane 51.73333 -9.83333 T MT IE M 11 0 600 404 Europe/Dublin 2006-01-16 +3230677 Maulin Maulin 51.69889 -9.865 T MT IE M 04 0 464 Europe/Dublin 2010-08-14 +3230678 Ballycrovane Harbour Ballycrovane Harbour 51.71528 -9.96667 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230679 Lackacroghan Lackacroghan 51.61528 -10.10667 T HLL IE M 04 0 259 116 Europe/Dublin 2010-08-14 +3230680 Knocknagallaun Knocknagallaun 51.66417 -10.04972 T MT IE M 04 0 378 286 Europe/Dublin 2010-08-14 +3230681 Knockgour Knockgour 51.64417 -10.00417 T HLL IE M 04 0 610 340 Europe/Dublin 2010-08-14 +3230682 Dinish Island Dinish Island 51.65194 -9.90417 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230683 Doonbeg Head Doonbeg Head 51.61611 -9.88806 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230690 Doolieve Doolieve 51.79139 -8.45972 T HLL IE M 04 0 104 Europe/Dublin 2010-08-14 +3230691 Fish Point Fish Point 51.76667 -8.3 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230694 Wood Point Wood Point 51.63667 -8.68972 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230695 Dunworly Point Dunworly Point Dunworly Head,Dunworly Point 51.57083 -8.75639 T CAPE IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230697 Inchydoney Island Inchydoney Island 51.60194 -8.87556 T PEN IE M 04 0 1 Europe/Dublin 2010-08-14 +3230698 Sheela Point Sheela Point 51.5375 -9.11667 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230699 The Stags The Stags 51.47111 -9.22556 T ISLS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230701 Knockmoyle Knockmoyle 51.91361 -9.93917 T MT IE M 11 0 421 Europe/Dublin 2010-08-14 +3230702 Knocklomena Knocklomena 51.92917 -9.75 T MT IE M 11 0 427 Europe/Dublin 2010-08-14 +3230708 Templenoe Templenoe Templenoe 51.86667 -9.68333 P PPL IE M 04 0 27 Europe/Dublin 2010-08-14 +3230709 Peakeen Mountain Peakeen Mountain 51.925 -9.6 T MT IE M 04 0 269 Europe/Dublin 2010-08-14 +3230710 Dromderalough Dromderalough 51.95 -9.51667 T MT IE M 04 0 527 Europe/Dublin 2010-08-14 +3230712 Killaha Mountain Killaha Mountain 51.85694 -9.58861 T MT IE M 11 0 165 Europe/Dublin 2010-08-14 +3230715 Knocknagorraveela Knocknagorraveela 51.81278 -9.63917 T MT IE M 04 0 385 Europe/Dublin 2010-08-14 +3230716 Knockreagh Knockreagh 51.80194 -9.70167 T MT IE M 04 0 253 Europe/Dublin 2010-08-14 +3230717 Coomnadiha Coomnadiha 51.79028 -9.67222 T MT IE M 04 0 318 Europe/Dublin 2010-08-14 +3230726 Conigar Conigar 51.83167 -9.35611 T MT IE M 04 0 451 Europe/Dublin 2010-08-14 +3230727 Knockboolteenagh Knockboolteenagh 51.65722 -9.51139 T HLL IE M 04 0 82 Europe/Dublin 2010-08-14 +3230731 Gouladane Gouladane 51.6275 -9.64361 P PPL IE M 04 0 100 Europe/Dublin 2010-08-14 +3230733 Seefin Seefin 51.60333 -9.69861 T MT IE M 04 0 346 283 Europe/Dublin 2010-08-14 +3230734 Mount Kid Mount Kid 51.61556 -9.38833 T MT IE M 04 0 168 Europe/Dublin 2010-08-14 +3230735 Mount Corin Mount Corin 51.59861 -9.52667 T MT IE M 04 0 141 Europe/Dublin 2010-08-14 +3230736 Drishane Point Drishane Point 51.57667 -9.61667 T PT IE M 04 0 37 Europe/Dublin 2010-08-14 +3230737 Dunmanus Point Dunmanus Point 51.54167 -9.66667 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230738 Knockaughna Knockaughna 51.57583 -9.59722 T MT IE M 04 0 270 89 Europe/Dublin 2010-08-14 +3230739 Knockaphuca Knockaphuca 51.52 -9.69778 T HLL IE M 04 0 232 115 Europe/Dublin 2010-08-14 +3230740 Knocknamaddree Knocknamaddree 51.51056 -9.74611 T MT IE M 04 0 315 286 Europe/Dublin 2010-08-14 +3230741 Toorane Rocks Toorane Rocks 51.48333 -9.45833 T RKS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230742 Hare Island Hare Island Hare Island,Inishdriscol 51.49583 -9.43333 T ISL IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230753 Ballycroneen Ballycroneen 51.80833 -8.10833 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230755 Lahard Lahard 51.79694 -8.16889 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3230758 Lough Rhue Lough Rhue 51.81556 -8.21417 H LK IE M 04 0 1 Europe/Dublin 2010-08-14 +3230759 Powerhead Bay Powerhead Bay 51.79389 -8.18389 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230760 Cotter’s Point Cotter's Point 51.79528 -8.23417 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3230761 White Bay White Bay 51.80417 -8.25417 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230762 Weaver’s Point Weaver's Point Weaver Point,Weaver's Point,Weaver’s Point 51.80111 -8.27778 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230763 Myrtleville Myrtleville Myrtleville 51.78056 -8.29444 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230774 Killeen Killeen 51.74722 -8.34028 P PPL IE M 04 0 24 Europe/Dublin 2010-08-14 +3230775 Ballyfoyle Ballyfoyle 51.74167 -8.36444 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3230776 Long Rock Long Rock 51.72778 -8.32917 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230777 Nohaval Cove Nohaval Cove 51.7125 -8.38333 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230778 Oysterhaven Oysterhaven 51.69167 -8.44306 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230779 Ballymacus Point Ballymacus Point 51.68333 -8.45833 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230780 Charles’s Fort Charles's Fort 51.69611 -8.50417 S RUIN IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230782 Lower Cove Lower Cove 51.68667 -8.49667 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230784 Money Point Money Point 51.68611 -8.50278 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230786 Shronecan Point Shronecan Point 51.67917 -8.50833 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3230791 Clammers Point Clammers Point 52.20222 -6.78167 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3230793 Seefin Seefin 52.21333 -7.6 T MT IE M 27 0 727 568 Europe/Dublin 2010-08-14 +3230794 Farbreaga Farbreaga 52.18222 -7.5875 T MT IE M 27 0 432 Europe/Dublin 2010-08-14 +3230795 Crohaun Crohaun 52.15722 -7.60056 T MT IE M 27 0 484 325 Europe/Dublin 2010-08-14 +3230798 Clonea Bay Clonea Bay 52.09278 -7.54389 H BAY IE M 27 0 1 Europe/Dublin 2010-08-14 +3230799 Ballynacourty Point Ballynacourty Point 52.07806 -7.555 T PT IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3230803 Ballynagaul Ballynagaul 52.04972 -7.56722 P PPL IE M 27 0 26 Europe/Dublin 2010-08-14 +3230815 Curragh Curragh 51.96222 -7.7175 P PPL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3230816 Kinsalebeg Kinsalebeg 51.97222 -7.81306 P PPL IE M 27 0 26 Europe/Dublin 2010-08-14 +3230817 Blackball Head Blackball Head 51.93778 -7.81722 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3230818 Drumleck Point Drumleck Point 53.36111 -6.075 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230819 Sutton Strand Sutton Strand 53.38806 -6.11861 T BCH IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230820 Sutton Creek Sutton Creek 53.36667 -6.1 H STM IE L 07 0 53 Europe/Dublin 2010-08-14 +3230821 Rosbeg Bank Rosbeg Bank 53.34861 -6.07194 H BNK IE 00 0 -9999 Europe/Dublin 1999-02-24 +3230822 Doldrum Bay Doldrum Bay 53.36111 -6.06667 H BAY IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230823 Freshwater Bay Freshwater Bay 53.36528 -6.05 H BAY IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230824 Balscadden Bay Balscadden Bay Balscaddan Bay,Balscadden Bay 53.38667 -6.05833 H COVE IE IE L 07 0 1 Europe/Dublin 2010-11-05 +3230826 Howth Harbour Howth Harbour 53.39167 -6.07167 H HBR IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230827 Howth Sound Howth Sound 53.40139 -6.07083 H SD IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230829 Baldoyle Creek Baldoyle Creek 53.40611 -6.10056 H STM IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230830 Cush Point Cush Point 53.39667 -6.1125 T PT IE L 07 0 1 Europe/Dublin 2010-08-14 +3230831 Portmarnock Point Portmarnock Point 53.40056 -6.11667 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230832 Velvet Strand Velvet Strand 53.42139 -6.12056 T BCH IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230838 Malahide Point Malahide Point 53.45667 -6.14444 T PT IE L 07 0 1 Europe/Dublin 2010-08-14 +3230840 Portraine Portraine 53.49667 -6.11111 P PPL IE L 07 1763 1 Europe/Dublin 2010-08-14 +3230843 Lidoville Lidoville 53.5 -6.11667 P PPL IE L 07 0 1 Europe/Dublin 2010-08-14 +3230846 Talbots Bay Talbots Bay 53.48472 -6.03333 H BAY IE L 07 0 1 Europe/Dublin 2010-08-14 +3230847 Burren Rocks Burren Rocks 53.49 -6.04611 T RKS IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230848 Burge Bar Burge Bar 53.49444 -6.05833 T BAR IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230849 The Nose The Nose 53.49722 -5.99806 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230851 Knockbane Knockbane 53.49583 -6.01833 T HLL IE L 07 0 1 Europe/Dublin 2010-08-14 +3230854 Scotch Point Scotch Point 53.5 -6.02667 T PT IE L 07 0 1 Europe/Dublin 2010-08-14 +3230857 Saltpan Bay Saltpan Bay 53.49722 -6.01667 H BAY IE L 07 0 1 Europe/Dublin 2010-08-14 +3230859 Frazer Bank Frazer Bank 53.51667 -6.03333 H BNK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230860 Loughshinny Loughshinny 53.54917 -6.08278 P PPL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230861 Colt Island Colt Island 53.58778 -6.08944 T ISL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230862 Red Island Red Island 53.58806 -6.10306 T ISLT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230865 Rockabill Rockabill Rockabill 53.60056 -6.0025 T ISL IE L 07 0 -9999 Europe/Dublin 2010-11-05 +3230870 Braymore Point Braymore Point 53.63 -6.19028 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3230902 Fieldstown Hill Fieldstown Hill 53.775 -6.375 T HLL IE L 19 0 187 129 Europe/Dublin 2010-08-14 +3230905 Dunany Shoals Dunany Shoals 53.8875 -6.22778 H SHOL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3232449 Inishbofin Bay Inishbofin Bay 55.15 -8.16667 H BAY IE U 06 0 1 Europe/Dublin 1996-07-05 +3232450 Peninsula Point Peninsula Point 55.15833 -8.14167 T PT IE U 06 0 1 Europe/Dublin 2010-08-14 +3232451 Rinboy Point Rinboy Point 55.16667 -8.05 T PT IE U 06 0 20 Europe/Dublin 2010-08-14 +3232452 Templebreaga Head Templebreaga Head 55.2125 -8.00833 T CAPE IE U 06 0 115 Europe/Dublin 2010-08-14 +3232453 Ard Point Ard Point 55.16667 -7.85833 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3232454 Ballyhoorisky Point Ballyhoorisky Point 55.25639 -7.75472 T PT IE U 06 0 1 Europe/Dublin 2010-08-14 +3232455 Crabbin Point Crabbin Point 55.225 -7.60833 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3232456 Saldanha Head Saldanha Head 55.18333 -7.58333 T CAPE IE U 06 0 29 Europe/Dublin 2010-08-14 +3232457 Lambs Head Lambs Head 55.14167 -7.53333 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3232458 Stragill Point Stragill Point 55.15972 -7.49167 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3232459 Lenan Head Lenan Head 55.24722 -7.52917 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3232460 Binnion Binnion 55.28556 -7.41944 T HLL IE U 06 0 252 66 Europe/Dublin 2010-08-14 +3232461 Carrickabraghy Point Carrickabraghy Point 55.31389 -7.38056 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3232463 Carrickaveol Carrickaveol Carrickaveol,Carrickaveol Head 55.35889 -7.24333 T CAPE IE IE U 06 0 1 Europe/Dublin 2010-08-14 +3232465 Dunagree Point Dunagree Point 55.2 -6.93333 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3232466 Crocknasmug Crocknasmug 55.23333 -6.96667 T MT IE U 06 0 234 Europe/Dublin 2010-08-14 +3286417 Horse Horse 51.75833 -8.29694 H RF IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286418 Mare Mare 51.75861 -8.29667 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286419 Foal Foal 51.75861 -8.29667 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286420 Ringabella House Ringabella House 51.76972 -8.31444 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3286421 Ringabella Point Ringabella Point 51.77028 -8.305 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286422 Ringabella Creek Ringabella Creek 51.76667 -8.3 H STM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286423 Poulnacallee Bay Poulnacallee Bay 51.79361 -8.27806 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286424 Grab-all Bay Grab-all Bay 51.805 -8.275 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286425 Rams Head Bank Rams Head Bank 51.80417 -8.27 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286427 Turbot Bank Turbot Bank 51.80417 -8.2675 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286429 Fort Meagher Fort Meagher 51.80833 -8.27722 S FT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286430 Scotchman’s Point Scotchman's Point 51.80833 -8.28778 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3286431 The Point The Point 51.80556 -8.29167 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3286432 Drake’s Pool Drake's Pool 51.80444 -8.33333 H POOL IE M 04 0 26 Europe/Dublin 2010-08-14 +3286433 Curraghbinny Wood Curraghbinny Wood 51.81 -8.3 V FRST IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286434 Curraghbinny Curraghbinny 51.80833 -8.29389 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3286435 Lough Beg Lough Beg 51.82222 -8.31556 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286436 Loughbeg Loughbeg 51.82639 -8.31833 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3286437 Lough More Lough More 51.82333 -8.30417 H PND IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286438 Golden Rock Golden Rock 51.82833 -8.29833 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286439 Curlane Bank Curlane Bank 51.81667 -8.28333 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286440 West Channel West Channel 51.83 -8.29472 H CHNM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286441 Paddy’s Point Paddy's Point 51.83528 -8.29778 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286442 Fort Mitchell Fort Mitchell 51.83333 -8.28333 S FT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286443 Oyster Bank Oyster Bank 51.83333 -8.3 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286444 Ballybricken House Ballybricken House 51.83333 -8.3 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286445 Ballybricken Point Ballybricken Point 51.83667 -8.33333 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286446 Monkstown Creek Monkstown Creek 51.83333 -8.33333 H STM IE M 04 0 1 Europe/Dublin 2010-08-14 +3286447 West Passage West Passage 51.85 -8.31667 H CHNM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286448 Summer Point Summer Point 51.85417 -8.32694 T CAPE IE M 04 0 12 Europe/Dublin 2010-08-14 +3286449 Cuskinny House Cuskinny House 51.85639 -8.26639 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286450 Cuskinny Bay Cuskinny Bay 51.85639 -8.26278 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286451 Ballymore House Ballymore House 51.86361 -8.26556 S HSEC IE M 04 0 22 Europe/Dublin 2010-08-14 +3286669 Spit Bank Spit Bank 51.83333 -8.28333 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286670 The Bar The Bar 51.84583 -8.26667 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286671 East Channel East Channel 51.84167 -8.24583 H CHNM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286672 Fair Rock Fair Rock 51.84944 -8.23528 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286673 Ballymore Ballymore 51.86222 -8.25444 P PPL IE M 04 0 32 Europe/Dublin 2010-08-14 +3286674 Corkbeg Island Corkbeg Island 51.8275 -8.24917 T ISLT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286675 Whitegate Marine Terminal Whitegate Marine Terminal 51.83194 -8.25972 S TRMO IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286676 Aghada Power Station Aghada Power Station 51.83417 -8.23556 S PS IE M 04 0 1 Europe/Dublin 2010-08-14 +3286677 Whitegate Bay Whitegate Bay 51.81667 -8.23333 H BAY IE M 04 0 1 Europe/Dublin 2010-08-14 +3286678 Black Rock Black Rock 51.81889 -8.25667 T RK IE M 04 0 1 Europe/Dublin 2010-08-14 +3286679 Dogsnose Bank Dogsnose Bank 51.81667 -8.26667 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286680 Whitegate Oil Refinery Whitegate Oil Refinery 51.81667 -8.23333 S OILR IE M 04 0 1 Europe/Dublin 2010-08-14 +3286681 Dogsnose Dogsnose 51.81444 -8.26361 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3286682 Fort Davis Fort Davis 51.8 -8.25 S FT IE M 04 0 1 Europe/Dublin 2010-08-14 +3286683 Chicago Knoll Chicago Knoll 51.79528 -8.25639 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286684 Harbour Rock Harbour Rock 51.79444 -8.26333 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286685 Canavan Point Canavan Point 51.79722 -8.25194 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286686 Cow Rock Cow Rock 51.79111 -8.25444 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286687 Calf Calf 51.79111 -8.255 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286688 Jamesbrook Hall Jamesbrook Hall 51.86111 -8.17806 S HSEC IE M 04 0 74 Europe/Dublin 2010-08-14 +3286689 Poulnabibe Poulnabibe 51.85 -8.18333 H STM IE M 04 0 51 Europe/Dublin 2010-08-14 +3286690 Gold Point Gold Point 51.85778 -8.20667 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286691 East Passage East Passage 51.86667 -8.2 H NRWS IE M 04 0 70 Europe/Dublin 2010-08-14 +3286692 Rathcoursey House Rathcoursey House 51.87194 -8.20083 S HSEC IE M 04 0 35 Europe/Dublin 2010-08-14 +3286693 Bagwell’s Hill Bagwell's Hill 51.86667 -8.2 T HLL IE M 04 0 70 Europe/Dublin 2010-08-14 +3286694 East Grove East Grove 51.87083 -8.20694 P PPLL IE M 04 0 35 Europe/Dublin 2010-08-14 +3286695 Belgrove Belgrove 51.86667 -8.2 P PPLL IE M 04 0 70 Europe/Dublin 2010-08-14 +3286696 Marloag Point Marloag Point 51.85694 -8.21444 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286697 Brick Island Brick Island 51.88333 -8.25583 T ISLT IE M 04 0 40 Europe/Dublin 2010-08-14 +3286698 Brown Island Brown Island 51.88278 -8.22389 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +3286699 Ballintubbrid House Ballintubbrid House 51.88611 -8.22972 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286700 Ballyvodock Ballyvodock 51.89028 -8.21306 P PPLL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286701 Ahanesk House Ahanesk House 51.88556 -8.20944 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286702 Blackrock Castle Blackrock Castle 51.89972 -8.40139 S CSTL IE M 04 0 1 Europe/Dublin 2010-08-14 +3286703 Ballinure Ballinure 51.88889 -8.40417 P PPLX IE M 04 0 1 Europe/Dublin 2010-08-14 +3286704 Ring Mahon Point Ring Mahon Point 51.89028 -8.38861 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286705 Ring Mahon Strand Ring Mahon Strand 51.88333 -8.38333 T BCH IE M 04 0 19 Europe/Dublin 2010-08-14 +3286706 Lakeland Strand Lakeland Strand 51.88333 -8.38333 T BCH IE M 04 0 19 Europe/Dublin 2010-08-14 +3286707 Dunkettle Dunkettle 51.9 -8.38333 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286708 Inchera House Inchera House 51.90139 -8.38167 S HSEC IE M 04 0 24 Europe/Dublin 2010-08-14 +3286709 Barry Point Barry Point 51.89139 -8.36861 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286710 Flaxfort Flaxfort 51.895 -8.36056 P PPLL IE M 04 0 2 Europe/Dublin 2010-08-14 +3286711 Clashavodig Clashavodig 51.89222 -8.34083 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +3286712 Carrigrenan Point Carrigrenan Point 51.88417 -8.34 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286713 Fota Castle Fota Castle 51.89583 -8.32139 S CSTL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286714 Marino Point Marino Point 51.87861 -8.33083 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3286715 Horsehead Horsehead 51.87556 -8.34444 P PPLL IE M 04 0 2 Europe/Dublin 2010-08-14 +3286716 Rockenham Rockenham 51.87778 -8.34861 P PPLL IE M 04 0 2 Europe/Dublin 2010-08-14 +3286717 Ardmore House Ardmore House Ardmore,Ardmore House 51.87667 -8.355 S HSEC IE IE M 04 0 10 Europe/Dublin 2010-08-14 +3286718 Raffeen House Raffeen House Raffeen,Raffeen House 51.83722 -8.36056 S HSEC IE IE M 04 0 50 Europe/Dublin 2010-08-14 +3286719 Hop Island Hop Island 51.87917 -8.38333 T ISLT IE M 04 0 19 Europe/Dublin 2010-08-14 +3286720 Meelagh Bank Meelagh Bank 51.88778 -8.38028 H SHOL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286721 Cork Dockyard Cork Dockyard Cork Dockyard,Verolme Cork Dockyard 51.84889 -8.32361 S DCKY IE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3286722 Foaty Channel Foaty Channel 51.88333 -8.31667 H CHNM IE M 04 0 14 Europe/Dublin 2010-08-14 +3286723 Woodville Woodville 51.87472 -8.39056 P PPLL IE M 04 0 49 Europe/Dublin 2010-08-14 +3286724 Douglas River Douglas River 51.88167 -8.38361 H STM IE M 04 0 5 Europe/Dublin 2010-08-14 +3289058 Great South Wall Great South Wall 53.34083 -6.16528 S BRKW IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3289059 Ringsend Power Station Ringsend Power Station 53.33889 -6.20444 S PS IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3289060 Ringsend Park Ringsend Park 53.34222 -6.22083 L PRK IE L 07 0 1 Europe/Dublin 2010-08-14 +3289061 Grand Canal Dock Grand Canal Dock Grand Central Dock 53.3425 -6.23611 H DCKB IE IE L 07 0 1 Europe/Dublin 2010-08-14 +3289062 Royal Canal Dock Royal Canal Dock 53.34861 -6.23944 H DCK IE L 07 0 1 Europe/Dublin 2010-08-14 +3289063 Spencer Dock Spencer Dock 53.35167 -6.23944 H DCK IE L 07 0 1 Europe/Dublin 2010-08-14 +3289064 Alexandra Basin East Alexandra Basin East 53.34333 -6.20833 H DCKB IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3289065 Bull Wall Bull Wall 53.3525 -6.16972 S BRKW IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3289066 East Pier East Pier 53.29722 -6.12417 S BRKW IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3289067 West Pier West Pier 53.30083 -6.13972 S BRKW IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3290226 Doon Doon 51.85333 -9.78583 V FRST IE M 11 0 170 Europe/Dublin 2010-08-14 +3290227 Knocknagullion Knocknagullion 51.865 -9.79806 T MT IE M 11 0 414 336 Europe/Dublin 2010-08-14 +3290228 Old Dromore House Old Dromore House 51.87167 -9.75222 S HSEC IE M 11 0 67 Europe/Dublin 2010-08-14 +3290229 Dromore Castle Dromore Castle 51.85639 -9.72 S CSTL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3290230 Greenane Islands Greenane Islands 51.8625 -9.66778 T ISLS IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3290231 Liberty Hall Liberty Hall 51.87139 -9.67889 P PPLL IE M 11 0 27 Europe/Dublin 2010-08-14 +3290232 Rossacoosane Rossacoosane 51.88167 -9.66528 P PPLL IE M 11 0 63 Europe/Dublin 2010-08-14 +3290233 Knockanaskill Knockanaskill 51.88639 -9.69278 T MT IE M 11 0 1170 439 Europe/Dublin 2010-08-14 +3290234 Letter South Letter South 51.90306 -9.65528 T MT IE M 11 0 361 261 Europe/Dublin 2010-08-14 +3290339 Derreendarragh Derreendarragh 51.89333 -9.75056 P PPLL IE M 11 0 74 Europe/Dublin 2010-08-14 +3290340 Gearha Gearha 51.9 -9.77972 P PPLL IE M 11 0 79 Europe/Dublin 2010-08-14 +3290341 Killaha Killaha 51.85583 -9.61917 P PPL IE M 11 0 50 Europe/Dublin 2010-08-14 +3290342 Dromquinna House Dromquinna House 51.87028 -9.63528 S HSEC IE M 11 0 12 Europe/Dublin 2010-08-14 +3290343 Reen Reen 51.87972 -9.64306 P PPL IE M 11 0 42 Europe/Dublin 2010-08-14 +3290344 Gortamullin Gortamullin 51.8925 -9.61444 T HLL IE M 11 0 199 73 Europe/Dublin 2010-08-14 +3290345 Dromanassig Bridge Dromanassig Bridge 51.85389 -9.52028 P PPLL IE M 11 0 88 Europe/Dublin 2010-08-14 +3290346 Curranmore Curranmore 51.86806 -9.53167 P PPL IE M 11 0 102 Europe/Dublin 2010-08-14 +3290347 Knockbrack Knockbrack 51.87139 -9.47306 T MT IE M 11 0 442 316 Europe/Dublin 2010-08-14 +3290348 Gearha Bridge Gearha Bridge 51.88806 -9.77167 P PPLL IE M 11 0 61 Europe/Dublin 2010-08-14 +3290349 Killowen Killowen 51.88639 -9.56167 P PPLL IE M 11 0 61 Europe/Dublin 2010-08-14 +3290350 Sheen Bridge Sheen Bridge 51.87444 -9.55917 P PPLL IE M 11 0 62 Europe/Dublin 2010-08-14 +3290351 Dromatouk Dromatouk 51.88361 -9.53056 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3290352 Gullaba Hill Gullaba Hill 51.85694 -9.44472 T MT IE M 11 0 605 421 Europe/Dublin 2010-08-14 +3290353 Bird Hill Bird Hill 51.86139 -9.42944 T HLL IE M 11 0 202 Europe/Dublin 2010-08-14 +3290354 Glanlough Glanlough 51.8775 -9.43889 P PPL IE M 11 0 133 Europe/Dublin 2010-08-14 +3290355 Slaheny Slaheny 51.885 -9.45389 P PPL IE M 11 0 129 Europe/Dublin 2010-08-14 +3290356 Letter Letter 51.89083 -9.48611 P PPLL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290357 Rice Mount Rice Mount 51.8775 -9.49972 L LCTY IE M 11 0 208 Europe/Dublin 2010-08-14 +3290358 Derrylicka Derrylicka 51.91722 -9.76639 P PPL IE M 11 0 326 Europe/Dublin 2010-08-14 +3290359 Lough Fadda Lough Fadda 51.92833 -9.73694 H LK IE M 11 0 462 Europe/Dublin 2010-08-14 +3290360 Lough Barfinnihy Lough Barfinnihy 51.93222 -9.67444 H LK IE M 11 0 444 Europe/Dublin 2010-08-14 +3290361 Bouglul Rock Bouglul Rock 51.91972 -9.67889 T RK IE M 11 0 444 Europe/Dublin 2010-08-14 +3290362 Lough Beg Lough Beg 51.92278 -9.73333 H LK IE M 11 0 421 Europe/Dublin 2010-08-14 +3290363 Derreeny Derreeny 51.93667 -9.78944 P PPL IE M 11 0 170 Europe/Dublin 2010-08-14 +3290364 Inchinglanna Inchinglanna 51.93917 -9.76361 P PPL IE M 11 0 421 Europe/Dublin 2010-08-14 +3290365 Lough Namweela Lough Namweela 51.95556 -9.78194 H LK IE M 11 0 344 Europe/Dublin 2010-08-14 +3290366 Lough Duff Lough Duff 51.95667 -9.75694 H LK IE M 11 0 303 Europe/Dublin 2010-08-14 +3290367 Knockaunanatan Knockaunanatan 51.95028 -9.79028 T MT IE M 11 0 568 278 Europe/Dublin 2010-08-14 +3290368 Knocknalreeda Knocknalreeda 51.95861 -9.71306 T MT IE M 11 0 551 210 Europe/Dublin 2010-08-14 +3290369 Crossderry Crossderry 51.95 -9.68361 P PPL IE M 11 0 189 Europe/Dublin 2010-08-14 +3290370 Gearhasallagh Gearhasallagh 51.94139 -9.69917 P PPL IE M 11 0 569 Europe/Dublin 2010-08-14 +3290371 Knocknasallagh Knocknasallagh 51.94583 -9.68028 T HLL IE M 11 0 459 185 Europe/Dublin 2010-08-14 +3290372 Derrylea Derrylea 51.95194 -9.65417 P PPL IE M 11 0 133 Europe/Dublin 2010-08-14 +3290373 Derrygarriff Derrygarriff 51.93694 -9.64194 T MT IE M 11 0 492 345 Europe/Dublin 2010-08-14 +3290374 Foardal Foardal 51.9475 -9.61778 T MT IE M 11 0 398 347 Europe/Dublin 2010-08-14 +3290375 Looscaunagh Hill Looscaunagh Hill 51.96417 -9.62333 T HLL IE M 11 0 223 Europe/Dublin 2010-08-14 +3290376 Lough Looscaunagh Lough Looscaunagh 51.95667 -9.61722 H LK IE M 11 0 297 Europe/Dublin 2010-08-14 +3290377 Moll’s Gap Moll's Gap 51.94056 -9.65333 T GAP IE M 11 0 297 Europe/Dublin 2010-08-14 +3290378 Windy Gap Windy Gap 51.94194 -9.59583 T GAP IE M 11 0 314 Europe/Dublin 2010-08-14 +3290379 Glas Loughs Glas Loughs 51.94306 -9.60583 H LKS IE M 11 0 345 Europe/Dublin 2010-08-14 +3290380 Eagles Nest Eagles Nest 51.95306 -9.59056 T HLL IE M 11 0 239 Europe/Dublin 2010-08-14 +3290381 Galways Bridge Galways Bridge 51.96361 -9.57944 S BDG IE M 11 0 171 Europe/Dublin 2010-08-14 +3290382 Kockanaguish Kockanaguish 51.93111 -9.57444 T MT IE M 11 0 501 358 Europe/Dublin 2010-08-14 +3290383 Dromneavine Dromneavine 51.89056 -9.59028 L LCTY IE M 11 0 62 Europe/Dublin 2010-08-14 +3290384 Strickeen Strickeen 51.89889 -9.58611 T HLL IE M 11 0 218 76 Europe/Dublin 2010-08-14 +3290385 Inchimore Inchimore 51.90528 -9.56528 T HLL IE M 11 0 256 80 Europe/Dublin 2010-08-14 +3290386 Carhoomeengar Carhoomeengar 51.90889 -9.60806 P PPLL IE M 11 0 157 Europe/Dublin 2010-08-14 +3290387 Clendy River Clendy River 51.88972 -9.53417 H STM IE M 11 0 67 Europe/Dublin 2010-08-14 +3290388 Knockeens Knockeens 51.91306 -9.48222 P PPL IE M 11 0 102 Europe/Dublin 2010-08-14 +3290389 Mangertonbeg Mangertonbeg 51.92611 -9.50083 T MT IE M 11 0 389 304 Europe/Dublin 2010-08-14 +3290390 Coombane Coombane 51.93194 -9.54111 L LCTY IE M 11 0 348 Europe/Dublin 2010-08-14 +3290391 Cummeenslaun Lake Cummeenslaun Lake 51.93861 -9.56444 H LK IE M 11 0 315 Europe/Dublin 2010-08-14 +3290392 Knockrower Knockrower 51.94778 -9.54639 T MT IE M 11 0 552 424 Europe/Dublin 2010-08-14 +3290393 Triangle Lake Triangle Lake 51.9525 -9.51889 H LK IE M 11 0 591 Europe/Dublin 2010-08-14 +3290394 Lough Keal Lough Keal 51.955 -9.51361 H LK IE M 11 0 439 Europe/Dublin 2010-08-14 +3290395 Shaking Rock Shaking Rock 51.96139 -9.57222 T RK IE M 11 0 216 Europe/Dublin 2010-08-14 +3290396 Keamnabricka Lake Keamnabricka Lake 51.95611 -9.50528 H LK IE M 11 0 537 Europe/Dublin 2010-08-14 +3290397 Cummeenduvasig Cummeenduvasig 51.93972 -9.50083 L LCTY IE M 11 0 322 Europe/Dublin 2010-08-14 +3290398 Owbaun River Owbaun River 51.92306 -9.45528 H STM IE M 11 0 85 Europe/Dublin 2010-08-14 +3290399 Owbeg River Owbeg River 51.89917 -9.47167 H STM IE M 11 0 73 Europe/Dublin 2010-08-14 +3290400 Lough Aclearig Lough Aclearig 51.95667 -9.42444 H LK IE M 11 0 303 Europe/Dublin 2010-08-14 +3290401 Mangerton Mangerton 51.93556 -9.4575 P PPL IE M 11 0 125 Europe/Dublin 2010-08-14 +3290402 Canrour Canrour 51.92694 -9.4375 P PPL IE M 11 0 160 Europe/Dublin 2010-08-14 +3290403 Derrincullig Derrincullig 51.93778 -9.41583 T MT IE M 11 0 408 306 Europe/Dublin 2010-08-14 +3290404 Aghnanus Bridge Aghnanus Bridge 51.95389 -9.39083 P PPLL IE M 11 0 145 Europe/Dublin 2010-08-14 +3290405 Esknabrock Esknabrock 51.92944 -9.39778 T MT IE M 11 0 326 156 Europe/Dublin 2010-08-14 +3290406 Morley’s Bridge Morley's Bridge 51.92111 -9.38611 P PPLL IE M 11 0 138 Europe/Dublin 2010-08-14 +3290407 Coolanassig Coolanassig 51.90917 -9.44944 L LCTY IE M 11 0 76 Europe/Dublin 2010-08-14 +3290408 Coolvard Bridge Coolvard Bridge 51.89694 -9.44389 P PPLL IE M 11 0 86 Europe/Dublin 2010-08-14 +3290409 Slaheny Bridge Slaheny Bridge 51.89306 -9.44111 P PPLL IE M 11 0 80 Europe/Dublin 2010-08-14 +3290410 Crumagloun Crumagloun 51.89389 -9.41444 T RDGE IE M 11 0 145 Europe/Dublin 2010-08-14 +3290411 Kilfaddamore House Kilfaddamore House 51.91056 -9.38889 S HSEC IE M 11 0 167 Europe/Dublin 2010-08-14 +3290412 Barrastooka Barrastooka 51.89278 -9.40333 L LCTY IE M 11 0 184 Europe/Dublin 2010-08-14 +3290413 Lomanagh Lomanagh 51.88278 -9.42167 P PPLL IE M 11 0 141 Europe/Dublin 2010-08-14 +3290414 Cummeen Cummeen 51.8725 -9.40222 P PPL IE M 11 0 193 Europe/Dublin 2010-08-14 +3290415 Gortnaskeagh Gortnaskeagh 51.85583 -9.40583 L LCTY IE M 11 0 269 Europe/Dublin 2010-08-14 +3290416 Carran Carran 51.855 -9.37611 T MT IE M 11 0 606 454 Europe/Dublin 2010-08-14 +3290417 Knockanruddig Knockanruddig 51.88194 -9.32722 L LCTY IE M 11 0 307 Europe/Dublin 2010-08-14 +3290418 Lackabaun Lackabaun 51.88139 -9.31833 P PPL IE M 11 0 310 Europe/Dublin 2010-08-14 +3290419 Coolnagoppage Coolnagoppage 51.88972 -9.35417 L LCTY IE M 11 0 322 Europe/Dublin 2010-08-14 +3290420 Lough Nabuddoga Lough Nabuddoga 51.90833 -9.35417 H LK IE M 11 0 262 Europe/Dublin 2010-08-14 +3290421 Garrigery Garrigery 51.89444 -9.31333 T MT IE M 11 0 413 309 Europe/Dublin 2010-08-14 +3290422 Sillahertane Sillahertane 51.90083 -9.30944 L LCTY IE M 11 0 304 Europe/Dublin 2010-08-14 +3290423 Inchec Bridge Inchec Bridge 51.91056 -9.33917 P PPLL IE M 11 0 265 Europe/Dublin 2010-08-14 +3290424 Foilgreana Foilgreana 51.91639 -9.32861 T MT IE M 11 0 356 286 Europe/Dublin 2010-08-14 +3290425 Rosseightvagh Rosseightvagh 51.92111 -9.37444 L LCTY IE M 11 0 183 Europe/Dublin 2010-08-14 +3290426 Inchee Inchee 51.92278 -9.31972 L LCTY IE M 11 0 304 Europe/Dublin 2010-08-14 +3290427 Coomagearlahy Coomagearlahy 51.93861 -9.32111 L LCTY IE M 11 0 311 Europe/Dublin 2010-08-14 +3290428 Lough Nabirria Lough Nabirria 51.94222 -9.34583 H LK IE M 11 0 285 Europe/Dublin 2010-08-14 +3290554 Doo Loughs Doo Loughs 51.94389 -9.35722 H LKS IE M 11 0 248 Europe/Dublin 2010-08-14 +3290555 Freaghanagh Freaghanagh 51.94972 -9.35861 T MT IE M 11 0 362 200 Europe/Dublin 2010-08-14 +3290556 Rossacroonaloo Wood Rossacroonaloo Wood 51.95306 -9.37278 V FRST IE M 11 0 152 Europe/Dublin 2010-08-14 +3290557 Crohane Wood Crohane Wood 51.95972 -9.38194 V FRST IE M 11 0 176 Europe/Dublin 2010-08-14 +3290558 Gortnakilla Gortnakilla 51.95778 -9.32028 L LCTY IE M 11 0 288 Europe/Dublin 2010-08-14 +3290559 Coomataggart Coomataggart 51.86417 -9.30139 T MT IE M 04 0 541 320 Europe/Dublin 2006-01-16 +3290560 Foilahumera Foilahumera 51.89917 -9.28 L LCTY IE 00 0 307 Europe/Dublin 1997-10-15 +3290561 Coom Wood Coom Wood 51.91167 -9.29139 V FRST IE 00 0 304 Europe/Dublin 1997-10-15 +3290562 Coumaclavane Coumaclavane 51.92778 -9.30333 L LCTY IE 00 0 306 Europe/Dublin 1997-10-15 +3290563 Lough Reagh Lough Reagh 51.96722 -9.71667 H LK IE M 11 0 170 Europe/Dublin 2010-08-14 +3290564 Lough Cummeenduff Lough Cummeenduff 51.96917 -9.69861 H LK IE M 11 0 170 Europe/Dublin 2010-08-14 +3290565 Maghanlawaun Maghanlawaun 51.97139 -9.7775 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +3290566 Curraghmore Curraghmore 51.9875 -9.76472 T MT IE M 11 0 821 492 Europe/Dublin 2010-08-14 +3290567 Broaghnabinnia Broaghnabinnia 51.97111 -9.74417 T MT IE M 11 0 743 490 Europe/Dublin 2010-08-14 +3290568 Cockow Cockow 51.96278 -9.72 P PPLL IE M 11 0 198 Europe/Dublin 2010-08-14 +3290569 Curraghmore Lake Curraghmore Lake 51.98556 -9.74139 H LK IE M 11 0 433 Europe/Dublin 2010-08-14 +3290570 Brassel Mountain Brassel Mountain 51.97944 -9.7025 T MT IE M 11 0 575 286 Europe/Dublin 2010-08-14 +3290571 Caher Caher 51.99444 -9.76306 T MT IE M 11 0 975 774 Europe/Dublin 2010-08-14 +3290572 Lough Callee Lough Callee 52.00111 -9.71972 H LK IE M 11 0 494 Europe/Dublin 2010-08-14 +3290573 Lough Coomloughra Lough Coomloughra 52.00444 -9.76639 H LK IE M 11 0 1002 Europe/Dublin 2010-08-14 +3290574 Lough Eagher Lough Eagher 52.00167 -9.75917 H LK IE M 11 0 1002 Europe/Dublin 2010-08-14 +3290575 Lough Gouragh Lough Gouragh 52.00194 -9.72778 H LK IE M 11 0 492 Europe/Dublin 2010-08-14 +3290576 Lough Cummeennapeasta Lough Cummeennapeasta 52.00194 -9.69528 H LK IE M 11 0 612 Europe/Dublin 2010-08-14 +3290577 Lough Acoose Lough Acoose 52.00861 -9.80639 H LK IE M 11 0 286 Europe/Dublin 2010-08-14 +3290578 Lough Googh Lough Googh 51.99333 -9.68417 H LK IE M 11 0 591 Europe/Dublin 2010-08-14 +3290579 Derrylooscaunagh Derrylooscaunagh 51.96833 -9.66139 L LCTY IE M 11 0 121 Europe/Dublin 2010-08-14 +3290580 Feabrahy Feabrahy 51.9875 -9.68111 T MT IE M 11 0 577 286 Europe/Dublin 2010-08-14 +3290581 Beenkeragh Beenkeragh 52.00556 -9.74639 T MT IE M 11 0 1010 565 Europe/Dublin 2010-08-14 +3290582 Slievanore Slievanore 52.00278 -9.79833 T MT IE M 11 0 306 328 Europe/Dublin 2010-08-14 +3290583 Skregmore Skregmore 52.0125 -9.76 T MT IE M 11 0 850 762 Europe/Dublin 2010-08-14 +3290584 Knockbrinnea Knockbrinnea 52.01028 -9.73333 T MT IE M 11 0 847 418 Europe/Dublin 2010-08-14 +3290585 Skregbeg Skregbeg 52.02528 -9.76639 T MT IE M 11 0 573 324 Europe/Dublin 2010-08-14 +3290586 Knockroe Knockroe 52.02611 -9.72806 T SPUR IE M 11 0 272 Europe/Dublin 2010-08-14 +3290587 Knockbrack Knockbrack 52.03167 -9.74583 T MT IE M 11 0 421 293 Europe/Dublin 2010-08-14 +3290588 Cloghfaunaglibbaun Cloghfaunaglibbaun 52.0375 -9.73028 T HLL IE M 11 0 275 189 Europe/Dublin 2010-08-14 +3290589 Gearhameen River Gearhameen River 51.97833 -9.63333 H STM IE M 11 0 79 Europe/Dublin 2010-08-14 +3290590 Gentleman’s Rock Gentleman's Rock 51.98889 -9.64556 T RK IE M 11 0 116 Europe/Dublin 2010-08-14 +3290591 Madman’s Seat Madman's Seat 51.99278 -9.63389 L LCTY IE M 11 0 269 Europe/Dublin 2010-08-14 +3290592 Drishana Drishana 51.99389 -9.6525 T MT IE M 11 0 454 275 Europe/Dublin 2010-08-14 +3290593 Gap Cottage Gap Cottage 51.99778 -9.65056 S HSE IE M 11 0 275 Europe/Dublin 2010-08-14 +3290594 Upper Lake Upper Lake 51.9775 -9.60139 H LK IE M 11 0 86 Europe/Dublin 2010-08-14 +3290595 Gallavally Gallavally 51.97306 -9.62361 L LCTY IE M 11 0 132 Europe/Dublin 2010-08-14 +3290596 Queen’s Cottage Queen's Cottage 51.97111 -9.59889 S HSE IE M 11 0 94 Europe/Dublin 2010-08-14 +3290597 Auger Lake Auger Lake 52.01111 -9.6375 H LK IE M 11 0 340 Europe/Dublin 2010-08-14 +3290598 Cushvally Lake Cushvally Lake 52.0175 -9.63889 H LK IE M 11 0 274 Europe/Dublin 2010-08-14 +3290599 Ballagh Pass Ballagh Pass 52.01194 -9.67444 T PASS IE M 11 0 473 Europe/Dublin 2010-08-14 +3290600 Black Lake Black Lake 52.02639 -9.63667 H LK IE M 11 0 188 Europe/Dublin 2010-08-14 +3290601 Tomies Rock Tomies Rock 52.03028 -9.63611 T RK IE M 11 0 188 Europe/Dublin 2010-08-14 +3290602 Cloghbaun Rock Cloghbaun Rock 52.0475 -9.72778 T RK IE M 11 0 115 Europe/Dublin 2010-08-14 +3290603 Kill Kill 52.045 -9.71861 P PPL IE M 11 0 89 Europe/Dublin 2010-08-14 +3290604 Knocknafreaghaun Knocknafreaghaun 52.03167 -9.71194 P PPL IE M 11 0 178 Europe/Dublin 2010-08-14 +3290605 Kate Kearney’s Cottage Kate Kearney's Cottage 52.03722 -9.62056 S HSE IE M 11 0 269 Europe/Dublin 2010-08-14 +3290606 Tomies Wood Tomies Wood 52.03806 -9.59361 V FRST IE M 11 0 58 Europe/Dublin 2010-08-14 +3290607 Shehy Mountain Shehy Mountain 52.01778 -9.60111 T MT IE M 11 0 464 Europe/Dublin 2010-08-14 +3290608 Brown Island Brown Island 52.04944 -9.56694 T ISL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290609 Ross Island Ross Island 52.04056 -9.5425 T ISL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290610 Ross Castle Ross Castle Ross Castle 52.04139 -9.52778 S CSTL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290611 Alexander’s Rock Alexander's Rock 52.03667 -9.51556 T RK IE M 11 0 58 Europe/Dublin 2010-08-14 +3290612 Lamb Island Lamb Island 52.05333 -9.54583 T ISL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290613 O’Donhohoe’s Prison O'Donhohoe's Prison 52.04806 -9.54028 S PRN IE M 11 0 58 Europe/Dublin 2010-08-14 +3290614 Innisfallen Innisfallen Innisfallen 52.04528 -9.55472 T ISL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290615 Cow Island Cow Island 52.02944 -9.52194 T ISL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290616 Castlelough Bay Castlelough Bay 52.03 -9.50556 H BAY IE M 11 0 58 Europe/Dublin 2010-08-14 +3290617 O’Donohoe’s Spy Glass O'Donohoe's Spy Glass 52.02333 -9.51361 T PT IE M 11 0 58 Europe/Dublin 2010-08-14 +3290618 Prince of Wales Rock Prince of Wales Rock 52.01639 -9.54444 T RK IE M 11 0 82 Europe/Dublin 2010-08-14 +3290619 Doo Lough Doo Lough 52.01722 -9.52611 H LK IE M 11 0 58 Europe/Dublin 2010-08-14 +3290620 Muckross House Muckross House 52.01722 -9.50361 S HSEC IE M 11 0 72 Europe/Dublin 2010-08-14 +3290621 Dinish Island Dinish Island 52.00972 -9.54944 T ISL IE M 11 0 82 Europe/Dublin 2010-08-14 +3290622 O’Sullivan’s Punch Bowl O'Sullivan's Punch Bowl 52.00722 -9.55444 H MRSH IE M 11 0 105 Europe/Dublin 2010-08-14 +3290623 Meetings of the Waters Meetings of the Waters 52.00722 -9.54861 H CNFL IE M 11 0 88 Europe/Dublin 2010-08-14 +3290624 Cullinagh Cullinagh 52.02778 -9.57167 L LCTY IE M 11 0 58 Europe/Dublin 2010-08-14 +3290625 Eagle’s Nest Eagle's Nest 51.99667 -9.57139 T HLL IE M 11 0 132 Europe/Dublin 2010-08-14 +3290626 Flesk Priory Flesk Priory 52.04889 -9.52 S MSTY IE M 11 0 60 Europe/Dublin 2010-08-14 +3290627 Flesk Castle Flesk Castle 52.05056 -9.47556 S CSTL IE M 11 0 67 Europe/Dublin 2010-08-14 +3290628 Danesfort Danesfort 52.04 -9.47444 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +3290629 Ardagh Lough Ardagh Lough 52.03528 -9.48028 H LK IE M 11 0 66 Europe/Dublin 2010-08-14 +3290630 Queen’s Drive Queen's Drive 52.01389 -9.48694 R RD IE M 11 0 91 Europe/Dublin 2010-08-14 +3290631 File Mile Bridge File Mile Bridge 51.995 -9.55083 S BDG IE M 11 0 88 Europe/Dublin 2010-08-14 +3290632 Man of War Rock Man of War Rock 51.98806 -9.56333 T RK IE M 11 0 106 Europe/Dublin 2010-08-14 +3290633 Cromaglan Mountain Cromaglan Mountain 51.97333 -9.56056 T MT IE M 11 0 373 195 Europe/Dublin 2010-08-14 +3290634 Esknamucky Glen Esknamucky Glen 51.97083 -9.54944 T VAL IE M 11 0 276 Europe/Dublin 2010-08-14 +3290635 Cores Cascade Cores Cascade 51.97472 -9.5425 H FLLS IE M 11 0 276 Europe/Dublin 2010-08-14 +3290636 Stumpacommeen Stumpacommeen 51.96333 -9.54222 T MT IE M 11 0 358 340 Europe/Dublin 2010-08-14 +3290637 Lough Managh Lough Managh 51.97806 -9.45667 H LK IE M 11 0 492 Europe/Dublin 2010-08-14 +3290638 Lough Garagarry Lough Garagarry 51.99111 -9.46 H LK IE M 11 0 322 Europe/Dublin 2010-08-14 +3290639 Lough Erhogh Lough Erhogh 51.97389 -9.46972 H LK IE M 11 0 529 Europe/Dublin 2010-08-14 +3290640 Lough Nabrean Lough Nabrean 51.99278 -9.41278 H LK IE M 11 0 132 Europe/Dublin 2010-08-14 +3290641 Stoompa Stoompa 51.98111 -9.44556 T MT IE M 11 0 695 543 Europe/Dublin 2010-08-14 +3290642 Eskduff Mountain Eskduff Mountain 51.98806 -9.42917 T MT IE M 11 0 324 Europe/Dublin 2010-08-14 +3290643 Owgarrif Bridge Owgarrif Bridge 52.01556 -9.45111 P PPLL IE M 11 0 131 Europe/Dublin 2010-08-14 +3290644 Fustane Lower Fustane Lower 51.91 -9.52056 P PPL IE M 11 0 162 Europe/Dublin 2010-08-14 +3290645 Lough Fineen Lough Fineen 51.9675 -9.43 H LK IE M 11 0 453 Europe/Dublin 2010-08-14 +3290646 Crohane Lake Crohane Lake 51.97222 -9.39722 H LK IE M 11 0 269 Europe/Dublin 2010-08-14 +3290647 Bennaummore Bennaummore 51.98028 -9.405 T MT IE M 11 0 454 283 Europe/Dublin 2010-08-14 +3290648 Carrigawaddra Carrigawaddra 51.98167 -9.37028 T MT IE M 11 0 426 278 Europe/Dublin 2010-08-14 +3290649 Derreenacullig Derreenacullig 51.97306 -9.36667 L LCTY IE M 11 0 213 Europe/Dublin 2010-08-14 +3290650 Garries Bridge Garries Bridge 51.99639 -9.34083 S BDG IE M 11 0 145 Europe/Dublin 2010-08-14 +3290651 Lough Athooynastooka Lough Athooynastooka 51.99944 -9.36528 H LK IE M 11 0 269 Europe/Dublin 2010-08-14 +3290652 Shronaboy Shronaboy 52.005 -9.39833 T SPUR IE M 11 0 240 Europe/Dublin 2010-08-14 +3290653 Gortalicka Gortalicka 51.97333 -9.32611 L LCTY IE M 11 0 177 Europe/Dublin 2010-08-14 +3290654 Loo Bridge Loo Bridge 51.97778 -9.32694 S BDG IE M 11 0 152 Europe/Dublin 2010-08-14 +3290655 Annagh Annagh 52.00889 -9.32611 P PPLL IE M 11 0 207 Europe/Dublin 2010-08-14 +3290656 Glenfleak Glenfleak 52.01333 -9.35722 P PPL IE M 11 0 127 Europe/Dublin 2010-08-14 +3290657 Doo Loughs Doo Loughs 52.01694 -9.41889 H LKS IE M 11 0 80 Europe/Dublin 2010-08-14 +3290658 Dromdiralough Dromdiralough 52.01528 -9.43111 L LCTY IE M 11 0 81 Europe/Dublin 2010-08-14 +3290659 Finow Bridge Finow Bridge 52.01306 -9.44028 S BDG IE M 11 0 87 Europe/Dublin 2010-08-14 +3290660 Killaha House Killaha House 52.02167 -9.39389 S HSEC IE M 11 0 135 Europe/Dublin 2010-08-14 +3290661 Brewsterfield House Brewsterfield House 52.02861 -9.39333 S HSEC IE M 11 0 90 Europe/Dublin 2010-08-14 +3290662 Tullaha Tullaha 52.02944 -9.44444 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +3290663 Flesk Bridge Flesk Bridge 52.03056 -9.40528 P PPLL IE M 11 0 88 Europe/Dublin 2010-08-14 +3290664 Knockane Knockane 52.02972 -9.35472 P PPL IE M 11 0 118 Europe/Dublin 2010-08-14 +3290665 Owneykeagh River Owneykeagh River 52.02528 -9.37722 H STM IE M 11 0 97 Europe/Dublin 2010-08-14 +3290666 Shronedarragh Shronedarragh 52.04639 -9.3625 L LCTY IE M 11 0 118 Europe/Dublin 2010-08-14 +3290667 Knockanimrish Knockanimrish 52.05583 -9.38639 P PPL IE M 11 0 151 Europe/Dublin 2010-08-14 +3290668 Ballahacommane Ballahacommane 52.05611 -9.42028 T HLL IE M 11 0 259 150 Europe/Dublin 2010-08-14 +3290669 Kilquane Kilquane 52.05417 -9.32361 P PPL IE M 11 0 132 Europe/Dublin 2010-08-14 +3290670 Gortacareen Gortacareen 52.03 -9.29167 P PPL IE M 11 0 298 Europe/Dublin 2010-08-14 +3290671 Killeen Mountain Killeen Mountain 52.0175 -9.31417 T MT IE M 11 0 305 Europe/Dublin 2010-08-14 +3290672 Drom Drom 52.04 -9.33194 P PPL IE M 11 0 147 Europe/Dublin 2010-08-14 +3290673 Gortacareen Gortacareen 52.0275 -9.305 L LCTY IE M 11 0 270 Europe/Dublin 2010-08-14 +3290674 Beheenagh River Beheenagh River 52.02167 -9.24778 H STM IE M 11 0 340 Europe/Dublin 2010-08-14 +3290675 Lough Nageeha Lough Nageeha 52.02111 -9.27306 H LK IE M 11 0 446 Europe/Dublin 2010-08-14 +3290676 Lough Glannatreaghaun Lough Glannatreaghaun 52.02 -9.24861 H LK IE M 11 0 340 Europe/Dublin 2010-08-14 +3290677 Gortnagane Gortnagane 52.0425 -9.25528 P PPL IE M 11 0 224 Europe/Dublin 2010-08-14 +3290678 Rodger’s Rock Rodger's Rock 52.00333 -9.27333 T RK IE M 11 0 251 Europe/Dublin 2010-08-14 +3290679 Raheen Raheen 52.05472 -9.24417 P PPL IE M 11 0 195 Europe/Dublin 2010-08-14 +3290680 Clydagh Bridge Clydagh Bridge 51.98972 -9.29528 P PPLL IE M 11 0 217 Europe/Dublin 2010-08-14 +3290681 Cloonkeen Cloonkeen 51.98361 -9.30056 P PPLL IE M 11 0 201 Europe/Dublin 2010-08-14 +3290682 Poulgorm Bridge Poulgorm Bridge 51.98056 -9.31139 P PPLL IE M 11 0 189 Europe/Dublin 2010-08-14 +3290683 Derryreig Derryreig 51.9775 -9.27722 L LCTY IE M 11 0 283 Europe/Dublin 2010-08-14 +3290684 Cammeenavrick Cammeenavrick 51.98167 -9.25194 P PPL IE M 11 0 304 Europe/Dublin 2010-08-14 +3290685 Lough Duff Lough Duff 51.98778 -9.24139 H LK IE M 11 0 287 Europe/Dublin 2010-08-14 +3290686 Clydagh Lodge Clydagh Lodge 51.99667 -9.24806 S HSEC IE M 11 0 297 Europe/Dublin 2010-08-14 +3290687 Knocknabro Knocknabro 52.00167 -9.22472 L LCTY IE M 11 0 301 Europe/Dublin 2010-08-14 +3290688 Knocknabro Knocknabro 52.015 -9.21417 T MT IE M 11 0 530 368 Europe/Dublin 2010-08-14 +3290689 Knocknagowan Knocknagowan 52.01056 -9.18667 T MT IE M 11 0 580 445 Europe/Dublin 2010-08-14 +3290690 Lough Gal Lough Gal 51.98333 -9.18 H LK IE M 11 0 340 Europe/Dublin 2010-08-14 +3290691 Lough Carrignamork Lough Carrignamork 51.98361 -9.21889 H LK IE M 11 0 302 Europe/Dublin 2010-08-14 +3290692 Knocknamork Knocknamork 51.97917 -9.20083 T MT IE 00 0 426 309 Europe/Dublin 2006-01-16 +3290693 Knockacommeen Knockacommeen 51.97139 -9.23389 T MT IE 00 0 429 304 Europe/Dublin 2006-01-16 +3290694 Beheenagh Beheenagh 52.05861 -9.30556 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290695 Courteene Hall Courteene Hall 52.05917 -9.47722 S HSEC IE M 11 0 76 Europe/Dublin 2010-08-14 +3290696 Kenmore House Kenmore House 52.05861 -9.53083 S HSEC IE M 11 0 68 Europe/Dublin 2010-08-14 +3290697 Mahony’s Point Mahony's Point 52.06028 -9.56083 T PT IE M 11 0 58 Europe/Dublin 2010-08-14 +3290698 Cullenagh House Cullenagh House 52.05417 -9.65722 S HSEC IE M 11 0 58 Europe/Dublin 2010-08-14 +3290699 Laune Bridge Laune Bridge 52.06194 -9.61333 P PPLL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290700 Lakeview Lakeview 52.06306 -9.59889 P PPLL IE M 11 0 58 Europe/Dublin 2010-08-14 +3290701 Mill Bridge Mill Bridge 52.06667 -9.53722 P PPLL IE M 11 0 76 Europe/Dublin 2010-08-14 +3290702 Gaddagh Bridge Gaddagh Bridge 52.06361 -9.69944 P PPLL IE M 11 0 28 Europe/Dublin 2010-08-14 +3290703 Shannera Lower Shannera Lower 52.05889 -9.74694 P PPL IE M 11 0 45 Europe/Dublin 2010-08-14 +3290704 Lough Nafanida Lough Nafanida 52.06417 -9.80333 H LK IE M 11 0 82 Europe/Dublin 2010-08-14 +3290705 Lough Nagat Lough Nagat 52.08444 -9.79417 H LK IE M 11 0 37 Europe/Dublin 2010-08-14 +3290706 Kilcoolaght Kilcoolaght 52.075 -9.76583 P PPL IE M 11 0 30 Europe/Dublin 2010-08-14 +3290707 Brookhill Brookhill 52.07139 -9.73389 L LCTY IE M 11 0 26 Europe/Dublin 2010-08-14 +3290708 Gortnaskarry Bridge Gortnaskarry Bridge 52.07889 -9.69778 P PPLL IE M 11 0 22 Europe/Dublin 2010-08-14 +3290709 Ownagarry Bridge Ownagarry Bridge 52.08222 -9.76889 P PPLL IE M 11 0 24 Europe/Dublin 2010-08-14 +3290710 Mount Rivers Mount Rivers 52.08611 -9.7675 P PPL IE M 11 0 15 Europe/Dublin 2010-08-14 +3290711 Meanus Meanus 52.08639 -9.74833 P PPL IE M 11 0 13 Europe/Dublin 2010-08-14 +3290712 Lough Ykeel Lough Ykeel 52.08833 -9.78944 H LK IE M 11 0 28 Europe/Dublin 2010-08-14 +3290713 Farrantureen Lough Farrantureen Lough 52.09833 -9.79361 H LK IE M 11 0 19 Europe/Dublin 2010-08-14 +3290714 Reen Reen 52.11778 -9.8 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3290715 Ballymacprior Ballymacprior 52.12167 -9.7725 P PPL IE M 11 0 44 Europe/Dublin 2010-08-14 +3290716 Hillville Hillville 52.11056 -9.77361 P PPL IE M 11 0 40 Europe/Dublin 2010-08-14 +3290717 Dromin Hill Dromin Hill 52.11528 -9.75194 T HLL IE M 11 0 106 77 Europe/Dublin 2010-08-14 +3290718 Gortnaskarry House Gortnaskarry House 52.09694 -9.71778 S HSEC IE M 11 0 15 Europe/Dublin 2010-08-14 +3290719 Ardraw House Ardraw House 52.08806 -9.71972 S HSEC IE M 11 0 14 Europe/Dublin 2010-08-14 +3290720 Baunclune Baunclune 52.08417 -9.69611 P PPL IE M 11 0 21 Europe/Dublin 2010-08-14 +3290721 Ferry House Ferry House 52.10111 -9.71444 S HSEC IE M 11 0 18 Europe/Dublin 2010-08-14 +3290722 Dromin Dromin 52.11333 -9.74333 P PPL IE M 11 0 84 Europe/Dublin 2010-08-14 +3290723 Corbally Corbally 52.11222 -9.72611 P PPL IE M 11 0 36 Europe/Dublin 2010-08-14 +3290724 Tinnabally Cross Roads Tinnabally Cross Roads 52.13389 -9.77 P PPLL IE M 11 0 39 Europe/Dublin 2010-08-14 +3290725 Callanafersy Callanafersy 52.13306 -9.77139 L LCTY IE M 11 0 44 Europe/Dublin 2010-08-14 +3290726 Kilderry Kilderry 52.13722 -9.74889 P PPL IE M 11 0 106 Europe/Dublin 2010-08-14 +3290727 Ballyvirrane Ballyvirrane 52.12528 -9.71056 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +3290728 Ballymalis Bridge Ballymalis Bridge 52.09972 -9.68028 P PPLL IE M 11 0 27 Europe/Dublin 2010-08-14 +3290729 Gweestin Bridge Gweestin Bridge 52.09444 -9.69444 P PPLL IE M 11 0 21 Europe/Dublin 2010-08-14 +3290730 Culleeny Culleeny 52.09056 -9.66944 L LCTY IE M 11 0 29 Europe/Dublin 2010-08-14 +3290731 Margillycuddy’s Tomb Margillycuddy's Tomb 52.07056 -9.68417 S TMB IE M 11 0 25 Europe/Dublin 2010-08-14 +3290732 Cullenagh Tower Cullenagh Tower 52.06806 -9.66 S TOWR IE M 11 0 32 Europe/Dublin 2010-08-14 +3290733 Beaufort Bridge Beaufort Bridge 52.075 -9.62944 P PPLL IE M 11 0 41 Europe/Dublin 2010-08-14 +3290734 Douglasha Stream Douglasha Stream 52.07972 -9.61667 H STM IE M 11 0 56 Europe/Dublin 2010-08-14 +3290735 Kilclogherane Kilclogherane 52.08861 -9.63583 P PPLL IE M 11 0 50 Europe/Dublin 2010-08-14 +3290736 Pallis Farm Pallis Farm 52.08111 -9.62944 S FRM IE M 11 0 49 Europe/Dublin 2010-08-14 +3290737 Kibranagh Kibranagh 52.13667 -9.67583 P PPL IE M 11 0 83 Europe/Dublin 2010-08-14 +3290738 Knocknaman Knocknaman 52.12306 -9.66944 P PPL IE M 11 0 38 Europe/Dublin 2010-08-14 +3290739 Rockfield House Rockfield House 52.12667 -9.61194 S HSEC IE M 11 0 63 Europe/Dublin 2010-08-14 +3290740 Leamnaguila Leamnaguila 52.13806 -9.53583 P PPL IE M 11 0 133 Europe/Dublin 2010-08-14 +3290741 Caherdean House Caherdean House 52.13194 -9.56139 S HSEC IE M 11 0 76 Europe/Dublin 2010-08-14 +3290742 Gweestin Bridge Gweestin Bridge 52.12528 -9.57194 S BDG IE M 11 0 74 Europe/Dublin 2010-08-14 +3290743 Barry’s Glyn Barry's Glyn 52.125 -9.52306 P PPL IE M 11 0 79 Europe/Dublin 2010-08-14 +3290744 Dooneen Bridge Dooneen Bridge 52.12083 -9.50528 S BDG IE M 11 0 94 Europe/Dublin 2010-08-14 +3290745 Ardagh House Ardagh House 52.11333 -9.53444 S HSEC IE M 11 0 79 Europe/Dublin 2010-08-14 +3290746 Sheans Sheans 52.10278 -9.55889 L LCTY IE M 11 0 94 Europe/Dublin 2010-08-14 +3290747 Barleymount Barleymount 52.09222 -9.58611 L LCTY IE M 11 0 148 Europe/Dublin 2010-08-14 +3290748 Aghacurreen Aghacurreen 52.08972 -9.56528 P PPL IE M 11 0 92 Europe/Dublin 2010-08-14 +3290749 Dooneen Dooneen 52.11194 -9.49639 L LCTY IE M 11 0 106 Europe/Dublin 2010-08-14 +3290750 Rockfield Bridge Rockfield Bridge 52.10361 -9.51361 P PPLL IE M 11 0 78 Europe/Dublin 2010-08-14 +3290751 Coolgarriv House Coolgarriv House 52.08028 -9.52028 S HSEC IE M 11 0 76 Europe/Dublin 2010-08-14 +3290752 Mount Prospect House Mount Prospect House 52.08917 -9.48306 S HSEC IE M 11 0 116 Europe/Dublin 2010-08-14 +3290753 Deer Park House Deer Park House 52.07722 -9.49472 S HSEC IE M 11 0 76 Europe/Dublin 2010-08-14 +3290754 Coolcorcoran Bridge Coolcorcoran Bridge 52.07333 -9.50111 P PPLL IE M 11 0 73 Europe/Dublin 2010-08-14 +3290907 Kilbrean Lake Kilbrean Lake 52.08389 -9.45278 H LK IE M 11 0 167 Europe/Dublin 2010-08-14 +3290908 Lockagh Lake Lockagh Lake 52.08778 -9.44722 H LK IE M 11 0 176 Europe/Dublin 2010-08-14 +3290909 Knockmanagh Knockmanagh 52.07944 -9.43472 P PPL IE M 11 0 162 Europe/Dublin 2010-08-14 +3290910 Teernaboul Teernaboul 52.07222 -9.45 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290911 Knockacullig Knockacullig 52.11667 -9.45833 L LCTY IE M 11 0 228 Europe/Dublin 2010-08-14 +3290912 Inchicorrigane Inchicorrigane 52.12028 -9.39389 P PPL IE M 11 0 192 Europe/Dublin 2010-08-14 +3290913 Maulyarkane House Maulyarkane House 52.11139 -9.40972 S HSEC IE M 11 0 230 Europe/Dublin 2010-08-14 +3290914 Lough Dooling Lough Dooling 52.09917 -9.39444 H LK IE M 11 0 173 Europe/Dublin 2010-08-14 +3290915 Raheen Raheen 52.08611 -9.37611 P PPL IE M 11 0 155 Europe/Dublin 2010-08-14 +3290916 Maulykeavane Maulykeavane 52.10667 -9.35139 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290917 Lisbabe Lisbabe 52.07861 -9.34694 P PPL IE M 11 0 137 Europe/Dublin 2010-08-14 +3290918 Knockdoorah Knockdoorah 52.07694 -9.33194 L LCTY IE M 11 0 141 Europe/Dublin 2010-08-14 +3290919 Scrahanaveal Scrahanaveal 52.10889 -9.32889 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290920 Scrahanfadda Scrahanfadda 52.12833 -9.31667 P PPL IE M 11 0 172 Europe/Dublin 2010-08-14 +3290921 Staginount Staginount 52.07333 -9.29417 T HLL IE M 11 0 194 150 Europe/Dublin 2010-08-14 +3290922 Banard Banard 52.08972 -9.29611 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290923 Gortnaprocess Gortnaprocess 52.09722 -9.285 P PPL IE M 11 0 154 Europe/Dublin 2010-08-14 +3290924 Gullaun Gullaun 52.10472 -9.29361 P PPL IE M 11 0 157 Europe/Dublin 2010-08-14 +3290925 Quarry Lodge Quarry Lodge 52.13056 -9.29194 S HSEC IE M 11 0 181 Europe/Dublin 2010-08-14 +3290926 Coom Coom 52.10806 -9.25944 P PPL IE M 11 0 158 Europe/Dublin 2010-08-14 +3290927 Glangristeen Glangristeen 52.08972 -9.24611 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290928 Cullavaw Stream Cullavaw Stream 52.08722 -9.20417 H STM IE M 11 0 146 Europe/Dublin 2010-08-14 +3290929 Glanooragh River Glanooragh River 52.12361 -9.59944 H STM IE M 11 0 75 Europe/Dublin 2010-08-14 +3290930 Knocknaseed House Knocknaseed House 52.11472 -9.22722 S HSEC IE M 11 0 152 Europe/Dublin 2010-08-14 +3290931 Lissyconnor Lissyconnor 52.10111 -9.22056 P PPLL IE M 11 0 150 Europe/Dublin 2010-08-14 +3290932 Rathbeg Rathbeg 52.07139 -9.22194 L LCTY IE M 11 0 158 Europe/Dublin 2010-08-14 +3290933 Awnaskutaun River Awnaskutaun River 52.08194 -9.18417 H STM IE 00 0 143 Europe/Dublin 1997-10-15 +3290934 Roscullen Point Roscullen Point 52.14583 -9.79722 T PT IE M 11 0 1 Europe/Dublin 2010-08-14 +3290935 White Gate Cross Roads White Gate Cross Roads 52.17139 -9.77861 P PPLL IE M 11 0 18 Europe/Dublin 2010-08-14 +3290936 Ardcanaght Ardcanaght 52.16389 -9.73889 P PPL IE M 11 0 55 Europe/Dublin 2010-08-14 +3290937 Killaclohane Wood Killaclohane Wood 52.15194 -9.68778 V FRST IE M 11 0 73 Europe/Dublin 2010-08-14 +3290938 Glen Ellen Glen Ellen 52.14611 -9.70139 P PPL IE M 11 0 73 Europe/Dublin 2010-08-14 +3290939 Annagh Annagh 52.17194 -9.72611 R RD IE M 11 0 56 Europe/Dublin 2010-08-14 +3290940 Shanahill Shanahill 52.17917 -9.80389 T HLL IE M 11 0 64 Europe/Dublin 2010-08-14 +3290941 Glanbrack Mountain Glanbrack Mountain 52.20806 -9.79667 T MT IE M 11 0 661 427 Europe/Dublin 2010-08-14 +3290942 Knockauncorragh Knockauncorragh 52.2175 -9.77222 T MT IE M 11 0 567 405 Europe/Dublin 2010-08-14 +3290943 Curraheen River Curraheen River 52.24944 -9.77389 H STM IE M 11 0 35 Europe/Dublin 2010-08-14 +3290944 Quarry Hill Quarry Hill 52.19833 -9.72944 T HLL IE M 11 0 146 Europe/Dublin 2010-08-14 +3290945 Knockmoyle Knockmoyle 52.21278 -9.71583 T MT IE M 11 0 427 280 Europe/Dublin 2010-08-14 +3290946 Knockmichael Mountain Knockmichael Mountain 52.22917 -9.71694 T HLL IE M 11 0 256 229 Europe/Dublin 2010-08-14 +3290947 Scotta’s Grave Scotta's Grave 52.2275 -9.705 S TMB IE M 11 0 188 Europe/Dublin 2010-08-14 +3290948 Knockawaddra Knockawaddra 52.215 -9.67861 T MT IE M 11 0 342 198 Europe/Dublin 2010-08-14 +3290949 Laharan House Laharan House 52.18833 -9.70306 S HSEC IE M 11 0 65 Europe/Dublin 2010-08-14 +3290950 Ballynaymeen House Ballynaymeen House 52.18222 -9.66667 S HSEC IE M 11 0 63 Europe/Dublin 2010-08-14 +3290951 Ardywanig Ardywanig 52.14778 -9.66278 P PPL IE M 11 0 84 Europe/Dublin 2010-08-14 +3290952 Rusheen Rusheen 52.15833 -9.66028 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3290953 Keelties Keelties 52.1425 -9.63139 P PPL IE M 11 0 146 Europe/Dublin 2010-08-14 +3290954 Gortormerillagh Gortormerillagh 52.15167 -9.6 P PPL IE M 11 0 75 Europe/Dublin 2010-08-14 +3290955 Kilnanare Kilnanare 52.16417 -9.62833 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3290956 Tralia River Tralia River 52.17472 -9.65028 H STM IE M 11 0 66 Europe/Dublin 2010-08-14 +3290957 Maine Bridge Maine Bridge 52.18361 -9.62194 S BDG IE M 11 0 66 Europe/Dublin 2010-08-14 +3290958 Ballygamboore Upper Ballygamboore Upper 52.20028 -9.67139 P PPL IE M 11 0 114 Europe/Dublin 2010-08-14 +3290959 Garraun Garraun 52.21028 -9.63972 P PPL IE M 11 0 77 Europe/Dublin 2010-08-14 +3290960 Gortbrack Gortbrack 52.23056 -9.65 P PPL IE M 11 0 99 Europe/Dublin 2010-08-14 +3290961 Mountnicholas Mountnicholas 52.22167 -9.62472 T HLL IE M 11 0 156 78 Europe/Dublin 2010-08-14 +3290962 Roverville Cross Roads Roverville Cross Roads 52.20444 -9.55528 P PPLL IE M 11 0 65 Europe/Dublin 2010-08-14 +3290963 Maine Bridge Maine Bridge 52.19722 -9.57167 P PPLL IE M 11 0 67 Europe/Dublin 2010-08-14 +3290964 Molahiffe Castle Molahiffe Castle 52.18194 -9.59333 S CSTL IE M 11 0 70 Europe/Dublin 2010-08-14 +3290965 Fieries Cross Roads Fieries Cross Roads 52.165 -9.60583 P PPLL IE M 11 0 72 Europe/Dublin 2010-08-14 +3290966 Ballybane Ballybane 52.15833 -9.57889 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3290967 Boolacullane Boolacullane 52.15194 -9.55361 P PPL IE M 11 0 105 Europe/Dublin 2010-08-14 +3290968 Rossanean Rossanean 52.14889 -9.50639 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290969 Beenateevaun Beenateevaun 52.14444 -9.48194 L LCTY IE M 11 0 152 Europe/Dublin 2010-08-14 +3290970 Curracitty Curracitty 52.15917 -9.50111 P PPL IE M 11 0 120 Europe/Dublin 2010-08-14 +3290971 Currow Hill Currow Hill 52.16167 -9.49111 T HLL IE M 11 0 242 127 Europe/Dublin 2010-08-14 +3290972 Dicksgrove Dicksgrove 52.1775 -9.50028 L LCTY IE M 11 0 75 Europe/Dublin 2010-08-14 +3290973 The Brown Flesk River The Brown Flesk River 52.19667 -9.56417 H STM IE M 11 0 67 Europe/Dublin 2010-08-14 +3290974 Currow Currow 52.18667 -9.50722 L LCTY IE M 11 0 68 Europe/Dublin 2010-08-14 +3290975 Flesk Bridge Flesk Bridge 52.18194 -9.49889 P PPLL IE M 11 0 68 Europe/Dublin 2010-08-14 +3290976 O’Connell Bridge O'Connell Bridge 52.18278 -9.53528 P PPLL IE M 11 0 72 Europe/Dublin 2010-08-14 +3290977 Cliddaun Cliddaun 52.20333 -9.50639 P PPLL IE M 11 0 60 Europe/Dublin 2010-08-14 +3290978 Ballymacdonnell House Ballymacdonnell House 52.20583 -9.51639 S HSEC IE M 11 0 61 Europe/Dublin 2010-08-14 +3290979 Dysert Dysert 52.21361 -9.49444 L LCTY IE M 11 0 48 Europe/Dublin 2010-08-14 +3290980 Kilcow Kilcow 52.21806 -9.49139 P PPL IE M 11 0 37 Europe/Dublin 2010-08-14 +3290981 Little River Maine Little River Maine 52.22111 -9.53806 H STM IE M 11 0 49 Europe/Dublin 2010-08-14 +3290982 Camp Lodge Camp Lodge 52.22722 -9.50111 S HSEC IE M 11 0 34 Europe/Dublin 2010-08-14 +3290983 Flemby Flemby 52.22944 -9.59944 P PPL IE M 11 0 69 Europe/Dublin 2010-08-14 +3290984 Herbert Bridge Herbert Bridge 52.22722 -9.46972 S BDG IE M 11 0 29 Europe/Dublin 2010-08-14 +3290985 Clashgannir House Clashgannir House 52.21583 -9.4725 S HSEC IE M 11 0 41 Europe/Dublin 2010-08-14 +3290986 Annamore House Annamore House 52.20083 -9.4575 S HSEC IE M 11 0 52 Europe/Dublin 2010-08-14 +3290987 Ballybeg House Ballybeg House 52.18 -9.46778 S HSEC IE M 11 0 69 Europe/Dublin 2010-08-14 +3290988 Kilsarkan Kilsarkan 52.15083 -9.43056 P PPL IE M 11 0 156 Europe/Dublin 2010-08-14 +3290989 Knocknaharan Knocknaharan 52.14889 -9.4225 P PPL IE M 11 0 196 Europe/Dublin 2010-08-14 +3290990 Ballahantouragh Ballahantouragh 52.14611 -9.37556 P PPL IE M 11 0 163 Europe/Dublin 2010-08-14 +3290991 Carker Carker 52.15556 -9.3825 P PPL IE M 11 0 158 Europe/Dublin 2010-08-14 +3290992 Canguillia Canguillia 52.16528 -9.41528 P PPL IE M 11 0 126 Europe/Dublin 2010-08-14 +3290993 Carker House Carker House 52.15472 -9.39306 S HSEC IE M 11 0 143 Europe/Dublin 2010-08-14 +3290994 Dogue River Dogue River 52.16444 -9.43194 H STM IE M 11 0 119 Europe/Dublin 2010-08-14 +3290995 Twiss Bridge Twiss Bridge 52.17333 -9.40444 P PPLL IE M 11 0 120 Europe/Dublin 2010-08-14 +3290996 Rice Bridge Rice Bridge 52.17083 -9.37306 P PPLL IE M 11 0 152 Europe/Dublin 2010-08-14 +3290997 Knockrower East Knockrower East 52.15167 -9.35778 P PPL IE M 11 0 173 Europe/Dublin 2010-08-14 +3290998 Knockeennahone Knockeennahone 52.16972 -9.34472 P PPL IE M 11 0 171 Europe/Dublin 2010-08-14 +3290999 Leaha Bridge Leaha Bridge 52.18778 -9.35806 P PPLL IE M 11 0 190 Europe/Dublin 2010-08-14 +3291000 Slievebrickan Slievebrickan 52.1875 -9.39 T HLL IE M 11 0 243 151 Europe/Dublin 2010-08-14 +3291001 Coolnageragh Coolnageragh 52.19167 -9.43583 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +3291002 Gortglass Gortglass 52.19667 -9.42361 P PPL IE M 11 0 89 Europe/Dublin 2010-08-14 +3291003 Breahigh Cottage Breahigh Cottage 52.20611 -9.405 S HSE IE M 11 0 104 Europe/Dublin 2010-08-14 +3291004 Fieries Fieries 52.20833 -9.42889 P PPL IE M 11 0 64 Europe/Dublin 2010-08-14 +3291005 Ballynahallia Ballynahallia 52.21889 -9.41667 P PPL IE M 11 0 50 Europe/Dublin 2010-08-14 +3291006 Fairfield Bridge Fairfield Bridge 52.2225 -9.41 P PPLL IE M 11 0 53 Europe/Dublin 2010-08-14 +3291007 Kilnurry House Kilnurry House 52.22944 -9.38389 S HSEC IE M 11 0 67 Europe/Dublin 2010-08-14 +3291008 Shanowen River Shanowen River 52.22889 -9.45306 H STM IE M 11 0 30 Europe/Dublin 2010-08-14 +3291009 Coom Coom 52.23083 -9.35 L AREA IE M 11 0 262 Europe/Dublin 2010-08-14 +3291010 Knockanefane Knockanefane 52.22861 -9.28528 T MT IE M 11 0 439 304 Europe/Dublin 2010-08-14 +3291011 Knockfeha Knockfeha 52.22083 -9.31667 T MT IE M 11 0 423 304 Europe/Dublin 2010-08-14 +3291012 Baraveha Baraveha 52.215 -9.29667 T MT IE M 11 0 414 298 Europe/Dublin 2010-08-14 +3291013 Doctor’s Hill Doctor's Hill 52.20861 -9.27056 T HLL IE M 11 0 289 292 Europe/Dublin 2010-08-14 +3291014 Clountane Clountane 52.20361 -9.33056 P PPL IE M 11 0 281 Europe/Dublin 2010-08-14 +3291015 Glanawaddra Glanawaddra 52.20333 -9.30083 P PPL IE M 11 0 280 Europe/Dublin 2010-08-14 +3291016 Newmarket Cross Roads Newmarket Cross Roads 52.20056 -9.32278 P PPLL IE M 11 0 270 Europe/Dublin 2010-08-14 +3291017 Knocknaboul Cross Knocknaboul Cross 52.18333 -9.27944 P PPLL IE M 11 0 256 Europe/Dublin 2010-08-14 +3291018 Ballynahulla Ballynahulla 52.17389 -9.26278 P PPL IE M 11 0 227 Europe/Dublin 2010-08-14 +3291019 Leanevglissane Leanevglissane 52.14528 -9.31556 P PPL IE M 11 0 194 Europe/Dublin 2010-08-14 +3291020 Curraheen Curraheen 52.23889 -9.8025 P PPL IE M 11 0 149 Europe/Dublin 2010-08-14 +3291021 Mount Saint Annagh Mount Saint Annagh 52.24278 -9.7525 P PPL IE M 11 0 56 Europe/Dublin 2010-08-14 +3291022 Black Rock Black Rock 52.26944 -9.81361 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3291023 Tonevane Cross Roads Tonevane Cross Roads 52.24722 -9.73333 P PPLL IE M 11 0 81 Europe/Dublin 2010-08-14 +3291024 Lohercannan Lohercannan 52.26667 -9.73056 P PPL IE M 11 0 31 Europe/Dublin 2010-08-14 +3291025 Frogmore Frogmore 52.27583 -9.77333 P PPL IE M 11 0 61 Europe/Dublin 2010-08-14 +3291026 Ballygarran House Ballygarran House 52.28806 -9.81194 S HSEC IE M 11 0 20 Europe/Dublin 2010-08-14 +3291027 Scrahan Scrahan 52.29056 -9.78083 P PPL IE M 11 0 90 Europe/Dublin 2010-08-14 +3291028 Ballyenaghey Ballyenaghey 52.2775 -9.73722 P PPL IE M 11 0 41 Europe/Dublin 2010-08-14 +3291029 Ballymasare Ballymasare 52.29694 -9.75861 P PPL IE M 11 0 118 Europe/Dublin 2010-08-14 +3291030 Drehidasillagh Drehidasillagh 52.30278 -9.80167 P PPL IE M 11 0 57 Europe/Dublin 2010-08-14 +3291031 Knocknahaha Knocknahaha 52.30917 -9.73889 L LCTY IE M 11 0 76 Europe/Dublin 2010-08-14 +3291032 Doon House Doon House 52.30556 -9.71389 S HSEC IE M 11 0 78 Europe/Dublin 2010-08-14 +3291033 Rahoneen Castle Rahoneen Castle 52.31944 -9.82 S CSTL IE M 11 0 28 Europe/Dublin 2010-08-14 +3291034 Commons West Commons West 52.31833 -9.78528 P PPL IE M 11 0 84 Europe/Dublin 2010-08-14 +3291035 Ballybroman Ballybroman 52.33571 -9.72367 L LCTY IE M 11 0 75 Europe/Dublin 2010-08-14 +3291036 Banna Banna 52.34778 -9.81556 L LCTY IE M 11 0 30 Europe/Dublin 2010-08-14 +3291037 Ballymacquin Upper Ballymacquin Upper 52.36472 -9.82056 P PPL IE M 11 0 24 Europe/Dublin 2010-08-14 +3291038 Ardconnell Ardconnell 52.3475 -9.78222 L LCTY IE M 11 0 54 Europe/Dublin 2010-08-14 +3291039 Ardrahan Ardrahan 52.35361 -9.75611 P PPL IE M 11 0 64 Europe/Dublin 2010-08-14 +3291040 Kilmoyly South Kilmoyly South 52.36806 -9.77083 P PPL IE M 11 0 69 Europe/Dublin 2010-08-14 +3291041 Baltovin Baltovin 52.36361 -9.73361 P PPL IE M 11 0 80 Europe/Dublin 2010-08-14 +3291042 Rathkenny House Rathkenny House 52.33333 -9.71 S HSEC IE M 11 0 75 Europe/Dublin 2010-08-14 +3291043 Ballysheen Ballysheen 52.35833 -9.71056 P PPL IE M 11 0 78 Europe/Dublin 2010-08-14 +3291044 Rathscannel Rathscannel 52.36611 -9.68722 P PPL IE M 11 0 74 Europe/Dublin 2010-08-14 +3291045 Lissireen Lissireen 52.36 -9.66694 L LCTY IE M 11 0 71 Europe/Dublin 2010-08-14 +3291046 Garryhagore Garryhagore 52.36444 -9.64833 P PPL IE M 11 0 71 Europe/Dublin 2010-08-14 +3291047 Knockbrack Knockbrack 52.33361 -9.63167 P PPL IE M 11 0 90 Europe/Dublin 2010-08-14 +3291048 Dromcunnig Dromcunnig 52.32667 -9.68833 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3291049 Lackamore Lackamore 52.33111 -9.66444 P PPL IE M 11 0 94 Europe/Dublin 2010-08-14 +3291050 Leath Leath 52.3175 -9.63472 L LCTY IE M 11 0 164 Europe/Dublin 2010-08-14 +3291051 Tooreen Tooreen 52.32361 -9.61417 L LCTY IE M 11 0 174 Europe/Dublin 2010-08-14 +3291052 Crusline Crusline 52.31028 -9.61806 T MT IE M 11 0 356 167 Europe/Dublin 2010-08-14 +3291053 Lismore House Lismore House 52.30028 -9.66611 S HSEC IE M 11 0 96 Europe/Dublin 2010-08-14 +3291054 Tursillagh House Tursillagh House 52.30306 -9.62444 S HSEC IE M 11 0 151 Europe/Dublin 2010-08-14 +3291055 Knockawaddra Knockawaddra 52.28972 -9.65583 P PPL IE M 11 0 75 Europe/Dublin 2010-08-14 +3291056 Glendiff Glendiff 52.29028 -9.61944 P PPL IE M 11 0 89 Europe/Dublin 2010-08-14 +3291057 Muing Muing 52.28167 -9.68083 P PPL IE M 11 0 61 Europe/Dublin 2010-08-14 +3291058 Ballybeggan Castle Ballybeggan Castle 52.27917 -9.66472 S CSTL IE M 11 0 64 Europe/Dublin 2010-08-14 +3291059 Ballinorig Ballinorig 52.2725 -9.66194 P PPL IE M 11 0 61 Europe/Dublin 2010-08-14 +3291060 Belmont Belmont 52.26 -9.70806 P PPL IE M 11 0 43 Europe/Dublin 2010-08-14 +3291061 Clashlehane Bridge Clashlehane Bridge 52.26472 -9.67472 P PPLL IE M 11 0 56 Europe/Dublin 2010-08-14 +3291062 Potaley Potaley 52.26694 -9.62083 L LCTY IE M 11 0 67 Europe/Dublin 2010-08-14 +3291063 Ballybeg Cross Roads Ballybeg Cross Roads 52.2575 -9.62083 P PPLL IE M 11 0 68 Europe/Dublin 2010-08-14 +3291064 Farmer’s Bridge Farmer's Bridge 52.24167 -9.65694 P PPLL IE M 11 0 65 Europe/Dublin 2010-08-14 +3291065 Big River Big River 52.26528 -9.71222 H STM IE M 11 0 38 Europe/Dublin 2010-08-14 +3291066 Caherbreagh Caherbreagh 52.26028 -9.65861 P PPL IE M 11 0 60 Europe/Dublin 2010-08-14 +3291305 Tullig Tullig 52.36694 -9.5975 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3291306 Glanoe Glanoe 52.36917 -9.56361 P PPL IE M 11 0 144 Europe/Dublin 2010-08-14 +3291307 Glanballima Glanballima 52.35667 -9.60556 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3291308 Cappagh Cappagh 52.33583 -9.605 P PPL IE M 11 0 129 Europe/Dublin 2010-08-14 +3291309 Stack’s Mountain Stack's Mountain 52.3475 -9.56056 T HLL IE M 11 0 208 Europe/Dublin 2010-08-14 +3291310 Beennageeha Mountain Beennageeha Mountain 52.3325 -9.59167 T MT IE M 11 0 323 197 Europe/Dublin 2010-08-14 +3291311 Cloghanenagleragh Cloghanenagleragh 52.35194 -9.55222 L LCTY IE M 11 0 189 Europe/Dublin 2010-08-14 +3291312 Light House Light House 52.36278 -9.48833 S HSEC IE M 11 0 130 Europe/Dublin 2010-08-14 +3291313 Carrigcannon Carrigcannon 52.33278 -9.5025 P PPL IE M 11 0 153 Europe/Dublin 2010-08-14 +3291314 Maingailaunlush Maingailaunlush 52.32139 -9.55222 P PPL IE M 11 0 260 Europe/Dublin 2010-08-14 +3291315 Stack’s Mountain Stack's Mountain 52.31833 -9.58167 T MT IE M 11 0 340 286 Europe/Dublin 2010-08-14 +3291316 Ballincollig Hill Ballincollig Hill 52.30417 -9.59944 T MT IE M 11 0 356 272 Europe/Dublin 2010-08-14 +3291317 Maghanknockane Maghanknockane 52.315 -9.57944 P PPL IE M 11 0 304 Europe/Dublin 2010-08-14 +3291318 Kilmore Kilmore 52.2975 -9.58194 T MT IE M 11 0 329 269 Europe/Dublin 2010-08-14 +3291319 Glashoreag River Glashoreag River 52.31917 -9.49833 H STM IE M 11 0 174 Europe/Dublin 2010-08-14 +3291320 Reanagowan Cross Roads Reanagowan Cross Roads 52.31472 -9.50722 P PPLL IE M 11 0 172 Europe/Dublin 2010-08-14 +3291321 Muingnaminnane Muingnaminnane 52.2975 -9.53111 L LCTY IE M 11 0 222 Europe/Dublin 2010-08-14 +3291322 Gortnaleaha Gortnaleaha 52.27944 -9.60917 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +3291323 O’Brennan House O'Brennan House 52.27639 -9.58111 S HSE IE M 11 0 116 Europe/Dublin 2010-08-14 +3291324 Broughane Cross Roads Broughane Cross Roads 52.27917 -9.505 P PPLL IE M 11 0 239 Europe/Dublin 2010-08-14 +3291325 Knight’s Mountain Knight's Mountain 52.27778 -9.48611 T MT IE M 11 0 331 257 Europe/Dublin 2010-08-14 +3291326 Doolaig North Doolaig North 52.27389 -9.4925 L LCTY IE M 11 0 211 Europe/Dublin 2010-08-14 +3291327 Rathanny Rathanny 52.26667 -9.5825 P PPL IE M 11 0 94 Europe/Dublin 2010-08-14 +3291328 Clogher Clogher 52.25889 -9.57722 P PPL IE M 11 0 75 Europe/Dublin 2010-08-14 +3291329 Arabela House Arabela House 52.24889 -9.59722 S HSEC IE M 11 0 67 Europe/Dublin 2010-08-14 +3291330 Maglass House Maglass House 52.2525 -9.5475 S HSEC IE M 11 0 67 Europe/Dublin 2010-08-14 +3291331 Desmond’s Grave Desmond's Grave 52.26667 -9.54667 S TMB IE M 11 0 144 Europe/Dublin 2010-08-14 +3291332 Mweennalaa Mweennalaa 52.25667 -9.53972 P PPL IE M 11 0 81 Europe/Dublin 2010-08-14 +3291333 Doonimlaghbeg Doonimlaghbeg 52.24278 -9.61083 P PPL IE M 11 0 71 Europe/Dublin 2010-08-14 +3291334 Woodville Woodville 52.24194 -9.54306 P PPL IE M 11 0 50 Europe/Dublin 2010-08-14 +3291335 Knockeen Cross Roads Knockeen Cross Roads 52.24222 -9.51444 P PPLL IE M 11 0 52 Europe/Dublin 2010-08-14 +3291336 Glanageenty River Glanageenty River 52.22806 -9.56 H STM IE M 11 0 52 Europe/Dublin 2010-08-14 +3291337 Cloonagh Bridge Cloonagh Bridge 52.24139 -9.46472 P PPLL IE M 11 0 33 Europe/Dublin 2010-08-14 +3291338 Scart Scart 52.23528 -9.55639 L LCTY IE M 11 0 45 Europe/Dublin 2010-08-14 +3291339 Glanshearoon River Glanshearoon River 52.22972 -9.46333 H STM IE M 11 0 29 Europe/Dublin 2010-08-14 +3291340 Glebe House Glebe House 52.23778 -9.43889 S HSEC IE M 11 0 56 Europe/Dublin 2010-08-14 +3291341 Crag House Crag House 52.24389 -9.43889 S HSEC IE M 11 0 79 Europe/Dublin 2010-08-14 +3291342 Barna Wood Barna Wood 52.25 -9.42889 V FRST IE M 11 0 107 Europe/Dublin 2010-08-14 +3291343 Tonbaun Wood Tonbaun Wood 52.25444 -9.43167 V FRST IE M 11 0 145 Europe/Dublin 2010-08-14 +3291344 Dooneen Wood Dooneen Wood 52.26 -9.45528 V FRST IE M 11 0 120 Europe/Dublin 2010-08-14 +3291345 Kilcusnaun Kilcusnaun 52.24028 -9.40028 P PPL IE M 11 0 83 Europe/Dublin 2010-08-14 +3291346 Glanlarehan Glanlarehan 52.24111 -9.38611 P PPL IE M 11 0 89 Europe/Dublin 2010-08-14 +3291347 Crinny Mountain Crinny Mountain 52.26306 -9.40972 T HLL IE M 11 0 295 247 Europe/Dublin 2010-08-14 +3291348 Knockachur Knockachur 52.26444 -9.38278 T MT IE M 11 0 318 277 Europe/Dublin 2010-08-14 +3291349 Knockakin Knockakin 52.26889 -9.43167 T HLL IE M 11 0 288 243 Europe/Dublin 2010-08-14 +3291350 Fahaduff Fahaduff 52.27139 -9.46167 P PPL IE M 11 0 165 Europe/Dublin 2010-08-14 +3291351 Muinganear Muinganear 52.28694 -9.4625 T MT IE M 11 0 328 292 Europe/Dublin 2010-08-14 +3291352 Knockatee Knockatee 52.24306 -9.34972 P PPL IE M 11 0 302 Europe/Dublin 2010-08-14 +3291353 Lackbrooder Lackbrooder 52.28861 -9.35944 P PPL IE M 11 0 199 Europe/Dublin 2010-08-14 +3291354 Knockeencreen Knockeencreen 52.30639 -9.35306 P PPL IE M 11 0 156 Europe/Dublin 2010-08-14 +3291355 Knockafreaghaun Knockafreaghaun 52.31083 -9.34806 P PPL IE M 11 0 180 Europe/Dublin 2010-08-14 +3291356 Ballyduff Ballyduff 52.30444 -9.40444 P PPL IE M 11 0 189 Europe/Dublin 2010-08-14 +3291357 Headley Bridge Headley Bridge 52.31944 -9.35944 P PPLL IE M 11 0 148 Europe/Dublin 2010-08-14 +3291358 Kilmaniheen Kilmaniheen 52.32806 -9.34667 L LCTY IE M 11 0 160 Europe/Dublin 2010-08-14 +3291359 Glashacooncore River Glashacooncore River 52.3375 -9.30528 H STM IE M 11 0 110 Europe/Dublin 2010-08-14 +3291360 Tullaleague River Tullaleague River 52.32694 -9.36306 H STM IE M 11 0 148 Europe/Dublin 2010-08-14 +3291361 Talbot’s Bridge Talbot's Bridge 52.31833 -9.3825 P PPLL IE M 11 0 152 Europe/Dublin 2010-08-14 +3291362 Meenbannivane Meenbannivane 52.31667 -9.43611 L LCTY IE M 11 0 282 Europe/Dublin 2010-08-14 +3291363 Boolavore Boolavore 52.32917 -9.42694 L LCTY IE M 11 0 264 Europe/Dublin 2010-08-14 +3291364 Cloghboola Cloghboola 52.33639 -9.43611 T MT IE M 11 0 308 294 Europe/Dublin 2010-08-14 +3291365 Glena Bridge Glena Bridge 52.34472 -9.365 P PPLL IE M 11 0 127 Europe/Dublin 2010-08-14 +3291366 Feale House Feale House 52.35028 -9.32889 S HSEC IE M 11 0 83 Europe/Dublin 2010-08-14 +3291367 Inchinalyra Inchinalyra 52.35889 -9.33222 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3291368 Knockaunbrack Knockaunbrack 52.37306 -9.44444 P PPL IE M 11 0 121 Europe/Dublin 2010-08-14 +3291369 Meennahorna Meennahorna 52.37389 -9.37 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3291370 Knockalougha Knockalougha 52.3625 -9.41917 L LCTY IE M 11 0 174 Europe/Dublin 2010-08-14 +3291371 Glashananoon Glashananoon 52.35778 -9.44944 L LCTY IE M 11 0 171 Europe/Dublin 2010-08-14 +3291372 Knockalougha Knockalougha 52.36 -9.37944 L LCTY IE M 11 0 152 Europe/Dublin 2010-08-14 +3291373 Bateman’s Bridge Bateman's Bridge 52.35472 -9.34417 P PPLL IE M 11 0 75 Europe/Dublin 2010-08-14 +3291374 Inchinapoagh Inchinapoagh 52.32889 -9.30694 L LCTY IE M 11 0 126 Europe/Dublin 2010-08-14 +3291375 Clydagh Bridge Clydagh Bridge 52.32444 -9.26944 P PPLL IE M 11 0 151 Europe/Dublin 2010-08-14 +3291376 Knoppoge Knoppoge 52.30417 -9.29 P PPL IE M 11 0 198 Europe/Dublin 2010-08-14 +3291377 Ahaun Ahaun 52.295 -9.25472 L LCTY IE M 11 0 214 Europe/Dublin 2010-08-14 +3291378 Reacaslagh Reacaslagh 52.27917 -9.28111 P PPL IE M 11 0 259 Europe/Dublin 2010-08-14 +3291379 Scalp Bridge Scalp Bridge 52.27444 -9.29056 P PPLL IE M 11 0 276 Europe/Dublin 2010-08-14 +3291380 Coollegrean Hill Coollegrean Hill 52.25944 -9.27111 T MT IE M 11 0 373 304 Europe/Dublin 2010-08-14 +3291381 Deane’s Lodge Deane's Lodge 52.28528 -9.21611 S HSEC IE M 11 0 202 Europe/Dublin 2010-08-14 +3291382 Caherlane Caherlane 52.34472 -9.3075 P PPL IE M 16 0 120 Europe/Dublin 2010-08-14 +3291383 Meenkilly Meenkilly 52.34111 -9.26444 P PPL IE M 16 0 147 Europe/Dublin 2010-08-14 +3291384 Caher Hill Caher Hill 52.34333 -9.26028 T HLL IE M 16 0 233 160 Europe/Dublin 2010-08-14 +3291385 Grogeen Grogeen 52.35389 -9.27222 L LCTY IE M 16 0 168 Europe/Dublin 2010-08-14 +3291386 Dromtrasna Dromtrasna 52.36417 -9.27861 P PPL IE M 16 0 170 Europe/Dublin 2010-08-14 +3291387 Knockcoolkeare Knockcoolkeare 52.31 -9.22667 P PPL IE M 16 0 152 Europe/Dublin 2010-08-14 +3291388 Cloghvoula Cloghvoula 52.26889 -9.23083 L LCTY IE M 04 0 257 Europe/Dublin 2010-08-14 +3291389 Torehane Torehane 52.23361 -9.25278 T MT IE M 04 0 391 308 Europe/Dublin 2010-08-14 +3291390 Garraunbaun Garraunbaun 52.22111 -9.23639 T MT IE M 04 0 246 306 Europe/Dublin 2010-08-14 +3291391 Meendurragha Meendurragha 52.21083 -9.22278 V FRST IE M 04 0 308 Europe/Dublin 2010-08-14 +3291392 Carriganes Carriganes 52.19861 -9.2425 P PPL IE M 04 0 261 Europe/Dublin 2010-08-14 +3291393 Glencollins Glencollins 52.17333 -9.22389 P PPL IE M 04 0 231 Europe/Dublin 2010-08-14 +3291394 Lackanastooka Lackanastooka 52.155 -9.2325 P PPL IE M 04 0 194 Europe/Dublin 2010-08-14 +3291395 Lisheen Bridge Lisheen Bridge 52.12389 -9.22583 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3291396 Dromresna Bridge Dromresna Bridge 52.3575 -9.20972 P PPLL IE M 16 0 176 Europe/Dublin 2010-08-14 +3291397 Knockawarriga Knockawarriga 52.33722 -9.22417 P PPL IE M 16 0 169 Europe/Dublin 2010-08-14 +3291398 Caherlevoy Caherlevoy 52.33417 -9.21 P PPL IE M 16 0 191 Europe/Dublin 2010-08-14 +3291399 Portaghard Portaghard 52.34972 -9.18222 L LCTY IE M 16 0 293 Europe/Dublin 2010-08-14 +3291400 Tour Bridge Tour Bridge 52.36833 -9.14417 P PPLL IE M 16 0 153 Europe/Dublin 2010-08-14 +3291401 Toornafulla Toornafulla 52.36444 -9.14361 L LCTY IE M 16 0 183 Europe/Dublin 2010-08-14 +3291402 Ballagh Ballagh 52.37389 -9.07806 P PPL IE M 16 0 160 Europe/Dublin 2010-08-14 +3291403 Ballagh Mountain Ballagh Mountain 52.36528 -9.07972 T HLL IE M 16 0 282 208 Europe/Dublin 2010-08-14 +3291404 Tooreennagreana Tooreennagreana 52.33944 -9.08833 L LCTY IE M 16 0 297 Europe/Dublin 2010-08-14 +3291405 Mullaghanuish Mullaghanuish 52.34944 -9.06389 T MT IE M 16 0 362 305 Europe/Dublin 2010-08-14 +3291406 Raheenagh Raheenagh 52.37528 -9.04222 P PPL IE M 16 0 84 Europe/Dublin 2010-08-14 +3291407 Hernsbrook Hernsbrook 52.35194 -9.02667 L LCTY IE M 16 0 124 Europe/Dublin 2010-08-14 +3291408 Coolygorman Coolygorman 52.36389 -8.99611 P PPL IE M 16 0 94 Europe/Dublin 2010-08-14 +3291409 Mount Plummer Mount Plummer 52.34 -8.99611 T MT IE M 16 0 149 Europe/Dublin 2010-08-14 +3291410 Rathpalatine Rathpalatine 52.36778 -8.96806 L LCTY IE M 16 0 92 Europe/Dublin 2010-08-14 +3291411 Boola Boola 52.32667 -8.97583 L LCTY IE M 16 0 151 Europe/Dublin 2010-08-14 +3291412 Prospect Lodge Prospect Lodge 52.33389 -8.95389 S HSEC IE M 16 0 152 Europe/Dublin 2010-08-14 +3291413 Ballynaluckeen Ballynaluckeen 52.33556 -8.9275 T HLL IE M 16 0 185 152 Europe/Dublin 2010-08-14 +3291414 Cloonmore Cloonmore 52.36472 -8.94333 P PPL IE M 16 0 116 Europe/Dublin 2010-08-14 +3291415 Accrour Bridge Accrour Bridge 52.37444 -8.90667 P PPLL IE M 16 0 113 Europe/Dublin 2010-08-14 +3291416 Kells Kells 52.34889 -8.9 P PPL IE M 16 0 143 Europe/Dublin 2010-08-14 +3291417 Gardenfield House Gardenfield House 52.35833 -8.89278 S HSE IE M 16 0 133 Europe/Dublin 2010-08-14 +3291418 Highmount House Highmount House 52.37278 -8.84194 S HSEC IE M 16 0 115 Europe/Dublin 2010-08-14 +3291419 Moanabricka Moanabricka 52.37806 -8.81389 P PPL IE M 16 0 99 Europe/Dublin 2010-08-14 +3291420 Garrynderk Garrynderk 52.36361 -8.66667 L LCTY IE 00 0 86 Europe/Dublin 1997-10-15 +3291421 Thomastown Thomastown 52.37611 -8.63361 L LCTY IE M 16 0 72 Europe/Dublin 2010-08-14 +3291422 Tobernea Tobernea 52.3675 -8.60194 L LCTY IE M 16 0 89 Europe/Dublin 2010-08-14 +3291423 Balyshalikin Balyshalikin 52.34639 -8.63028 P PPL IE M 16 0 123 Europe/Dublin 2010-08-14 +3291424 Ballingaddy South Ballingaddy South 52.37944 -8.56139 P PPL IE M 16 0 91 Europe/Dublin 2010-08-14 +3291425 Kilmihil Kilmihil 52.36889 -8.56667 P PPL IE M 16 0 96 Europe/Dublin 2010-08-14 +3291426 Ballyvoodane Ballyvoodane 52.35139 -8.5775 P PPL IE M 16 0 116 Europe/Dublin 2010-08-14 +3291427 Graigue Cross Roads Graigue Cross Roads 52.33778 -8.55361 P PPLL IE M 16 0 154 Europe/Dublin 2010-08-14 +3291428 Bailyhaght Bailyhaght 52.32889 -8.58167 L LCTY IE M 16 0 170 Europe/Dublin 2010-08-14 +3291429 Caher Hill Caher Hill 52.32722 -8.58917 T HLL IE M 16 0 245 170 Europe/Dublin 2010-08-14 +3291430 Carron Mountain Carron Mountain Carron Mountain 52.30972 -8.58472 T MT IE 00 0 453 303 Europe/Dublin 2010-08-10 +3291431 Gortnaloughra Gortnaloughra 51.85917 -9.29194 P PPLL IE M 04 0 319 Europe/Dublin 2010-08-14 +3291432 Lyrenageeha Lyrenageeha 51.87361 -9.28083 P PPL IE M 04 0 278 Europe/Dublin 2010-08-14 +3291433 Cahernaeaha Cahernaeaha 51.88056 -9.24611 P PPL IE M 04 0 263 Europe/Dublin 2010-08-14 +3291434 Mweelin Mweelin 51.89139 -9.26389 T MT IE M 04 0 488 308 Europe/Dublin 2010-08-14 +3291435 Ballyfinnane Bridge Ballyfinnane Bridge 51.91722 -9.24861 P PPLL IE M 04 0 246 Europe/Dublin 2010-08-14 +3291436 Bard Inch Bard Inch 51.92556 -9.25167 P PPL IE M 04 0 241 Europe/Dublin 2010-08-14 +3291437 Carrignaspirroge Carrignaspirroge 51.93361 -9.26806 T MT IE M 04 0 323 269 Europe/Dublin 2010-08-14 +3291438 Milleeny Milleeny 51.94056 -9.25417 P PPL IE M 04 0 260 Europe/Dublin 2010-08-14 +3291439 Derreenaelling Derreenaelling 51.91722 -9.23333 T HLL IE M 04 0 303 210 Europe/Dublin 2010-08-14 +3291440 Colthurst Bridge Colthurst Bridge 51.95806 -9.19556 P PPLL IE M 04 0 236 Europe/Dublin 2010-08-14 +3291441 Glas Loughs Glas Loughs 51.8575 -9.17278 H LKS IE M 04 0 153 Europe/Dublin 2010-08-14 +3291442 Milmorane Milmorane 51.86111 -9.18944 P PPL IE M 04 0 197 Europe/Dublin 2010-08-14 +3291443 Rathgaslig Rathgaslig 51.87083 -9.19528 L LCTY IE M 04 0 252 Europe/Dublin 2010-08-14 +3291444 Cleaneath Lough Cleaneath Lough 51.86833 -9.13722 H LK IE M 04 0 152 Europe/Dublin 2010-08-14 +3291445 Derrineanig Derrineanig 51.87861 -9.16806 P PPL IE M 04 0 172 Europe/Dublin 2010-08-14 +3291446 Derryfineen Derryfineen 51.89694 -9.20556 P PPL IE M 04 0 261 Europe/Dublin 2010-08-14 +3291447 Gortaveer Gortaveer 51.85861 -9.09806 P PPL IE M 04 0 138 Europe/Dublin 2010-08-14 +3291448 Cleentvearthy Cleentvearthy 51.89083 -9.13361 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3291449 Gortammill House Gortammill House 51.91417 -9.12583 S HSE IE M 04 0 145 Europe/Dublin 2010-08-14 +3291450 Gortnascarty Gortnascarty 51.91611 -9.19139 L LCTY IE M 04 0 204 Europe/Dublin 2010-08-14 +3291451 Gortnagross Gortnagross 51.92278 -9.17528 L LCTY IE M 04 0 181 Europe/Dublin 2010-08-14 +3291452 Murnaghbeg Murnaghbeg 51.93139 -9.19028 P PPL IE M 04 0 161 Europe/Dublin 2010-08-14 +3291453 St. Abbati’s Grave St. Abbati's Grave 51.93361 -9.16667 S TMB IE M 04 0 146 Europe/Dublin 2010-08-14 +3291454 Gortnatubbred Gortnatubbred 51.935 -9.18028 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3291455 The Chalet The Chalet 51.94167 -9.14833 S HTL IE M 04 0 175 Europe/Dublin 2010-08-14 +3291456 Aghacunna Aghacunna 51.87444 -9.09194 P PPL IE M 04 0 151 Europe/Dublin 2010-08-14 +3291457 Derrintogher Derrintogher 51.89028 -9.09 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3291458 Clonebud Clonebud 51.87833 -9.05944 P PPL IE M 04 0 153 Europe/Dublin 2010-08-14 +3291459 Toon Bridge Toon Bridge 51.88194 -9.02444 P PPLL IE M 04 0 104 Europe/Dublin 2010-08-14 +3291460 Dromcarra Bridge Dromcarra Bridge 51.85889 -9.02361 P PPLL IE M 04 0 121 Europe/Dublin 2010-08-14 +3291461 Inchisine Inchisine 51.86972 -9.02389 P PPL IE M 04 0 111 Europe/Dublin 2010-08-14 +3291462 Ballyvoge Ballyvoge 51.8975 -9.06972 T HLL IE M 04 0 227 153 Europe/Dublin 2010-08-14 +3291463 Shanvallyshane Shanvallyshane 51.89528 -9.05083 L LCTY IE M 04 0 135 Europe/Dublin 2010-08-14 +3291464 Sullane Beg River Sullane Beg River 51.91194 -9.08167 H STM IE M 04 0 134 Europe/Dublin 2010-08-14 +3291465 Candroma Candroma 51.91056 -9.09694 L LCTY IE M 04 0 131 Europe/Dublin 2010-08-14 +3291466 Carrigaphooea Bridge Carrigaphooea Bridge 51.91028 -9.02278 P PPLL IE M 04 0 111 Europe/Dublin 2010-08-14 +3291467 Sullane Bridge Sullane Bridge 51.91361 -9.05389 P PPLL IE M 04 0 118 Europe/Dublin 2010-08-14 +3291468 Lissacresig Lissacresig 51.91611 -9.05889 P PPL IE M 04 0 122 Europe/Dublin 2010-08-14 +3291469 Coolavokig Coolavokig 51.91889 -9.08583 P PPL IE M 04 0 129 Europe/Dublin 2010-08-14 +3291470 Scronagare Scronagare 51.93222 -9.06917 P PPL IE M 04 0 150 Europe/Dublin 2010-08-14 +3291471 Ardeen Ardeen 51.93667 -9.0875 P PPL IE M 04 0 184 Europe/Dublin 2010-08-14 +3291472 Danoansallagh River Danoansallagh River 51.93889 -9.0725 H STM IE M 04 0 182 Europe/Dublin 2010-08-14 +3291473 Uallanes Uallanes 51.95083 -9.12083 L LCTY IE M 04 0 273 Europe/Dublin 2010-08-14 +3291474 Bawnatanaknock Bawnatanaknock 51.94694 -9.07278 L LCTY IE M 04 0 220 Europe/Dublin 2010-08-14 +3291475 Liscarrigane Liscarrigane 51.96139 -9.08028 P PPL IE M 04 0 292 Europe/Dublin 2010-08-14 +3291476 Killmountain Killmountain 51.95417 -9.03278 L LCTY IE M 04 0 201 Europe/Dublin 2010-08-14 +3291477 Lacklity Lacklity 51.945 -9.04111 L LCTY IE M 04 0 167 Europe/Dublin 2010-08-14 +3291478 Carriganeigh Carriganeigh 51.94083 -9.03139 L LCTY IE M 04 0 145 Europe/Dublin 2010-08-14 +3291479 Gortavranner Gortavranner 51.94722 -9.01278 L LCTY IE M 04 0 194 Europe/Dublin 2010-08-14 +3291480 Bridgemount Bridgemount 51.93389 -9.02917 L LCTY IE M 04 0 145 Europe/Dublin 2010-08-14 +3291481 Fairy Land Fairy Land 51.90667 -9.01917 L LCTY IE M 04 0 105 Europe/Dublin 2010-08-14 +3291482 Linnamilla Bridge Linnamilla Bridge 51.90194 -9.0025 P PPLL IE M 04 0 99 Europe/Dublin 2010-08-14 +3291483 Raleigh House Raleigh House 51.89833 -9.00528 S HSEC IE M 04 0 98 Europe/Dublin 2010-08-14 +3291484 Toames Toames 51.86583 -8.98278 P PPL IE M 04 0 150 Europe/Dublin 2010-08-14 +3291485 Dromkeen Dromkeen 51.86833 -8.985 L LCTY IE M 04 0 115 Europe/Dublin 2010-08-14 +3291486 Annahatn Annahatn 51.87778 -9 P PPLL IE M 04 0 96 Europe/Dublin 2010-08-14 +3291487 Tooms East Tooms East 51.86556 -8.94111 L LCTY IE M 04 0 129 Europe/Dublin 2010-08-14 +3291488 Knockaunnarrony Knockaunnarrony 51.86528 -8.91583 L LCTY IE M 04 0 110 Europe/Dublin 2010-08-14 +3291489 Sleveen East Sleveen East 51.89444 -8.96 L LCTY IE M 04 0 89 Europe/Dublin 2010-08-14 +3291490 Codrum House Codrum House 51.90861 -8.98583 S HSEC IE M 04 0 117 Europe/Dublin 2010-08-14 +3291491 Ashton Ashton 51.8925 -8.90611 L LCTY IE M 04 0 116 Europe/Dublin 2010-08-14 +3291492 Lehanagh Lehanagh 51.87528 -8.88833 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3291493 Curragh Curragh 51.86806 -8.87333 P PPL IE M 04 0 125 Europe/Dublin 2010-08-14 +3291494 Knockagreenan Knockagreenan 51.91333 -8.87056 T HLL IE M 04 0 263 135 Europe/Dublin 2010-08-14 +3291495 Carrigaclodig Cross Roads Carrigaclodig Cross Roads 51.92222 -8.89722 P PPLL IE M 04 0 151 Europe/Dublin 2010-08-14 +3291496 Lough Gal Lough Gal 51.92722 -8.87139 H LK IE M 04 0 150 Europe/Dublin 2010-08-14 +3291497 Leades House Leades House 51.93278 -8.88667 S HSEC IE M 04 0 149 Europe/Dublin 2010-08-14 +3291498 Kill Kill 51.9175 -8.94 P PPL IE M 04 0 123 Europe/Dublin 2010-08-14 +3291499 Mount Massy Mount Massy 51.91639 -8.98444 P PPL IE M 04 0 117 Europe/Dublin 2010-08-14 +3291500 Ardnacrushy Ardnacrushy 51.92639 -9.00917 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3291501 Cackanode Cackanode 51.95 -8.98972 L LCTY IE M 04 0 187 Europe/Dublin 2010-08-14 +3291502 Bawnmore Bawnmore 51.95667 -8.96111 P PPL IE M 04 0 154 Europe/Dublin 2010-08-14 +3291503 Cooper’s Rock Cooper's Rock 51.94889 -8.91556 T RK IE M 04 0 221 Europe/Dublin 2010-08-14 +3291504 Lacknahaghny Lacknahaghny 51.9625 -8.91028 P PPL IE M 04 0 299 Europe/Dublin 2010-08-14 +3291505 Carrigthomas Carrigthomas 51.965 -8.93667 P PPL IE M 04 0 195 Europe/Dublin 2010-08-14 +3291506 Leadawittin Leadawittin 51.94833 -8.88694 L LCTY IE M 04 0 185 Europe/Dublin 2010-08-14 +3291507 Moanflugh Moanflugh 51.96778 -8.9825 P PPLL IE M 04 0 236 Europe/Dublin 2010-08-14 +3291508 Lyravouig Lyravouig 51.96694 -8.88306 L LCTY IE M 04 0 251 Europe/Dublin 2010-08-14 +3291509 Warren’s Grove Warren's Grove 51.86083 -8.84139 S EST IE M 04 0 135 Europe/Dublin 2010-08-14 +3291510 Shanadungan Cross Roads Shanadungan Cross Roads 51.86583 -8.85139 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3291511 Larehill Cross Roads Larehill Cross Roads 51.87917 -8.85806 P PPLL IE M 04 0 127 Europe/Dublin 2010-08-14 +3291512 Kame River Kame River 51.89056 -8.79611 H STM IE M 04 0 92 Europe/Dublin 2010-08-14 +3291513 Rooves Beg Rooves Beg 51.88889 -8.80778 P PPL IE M 04 0 94 Europe/Dublin 2010-08-14 +3291514 Leary’s Cross Roads Leary's Cross Roads 51.87778 -8.79806 P PPLL IE M 04 0 150 Europe/Dublin 2010-08-14 +3291515 Carrahaly Carrahaly 51.86583 -8.78722 P PPL IE M 04 0 72 Europe/Dublin 2010-08-14 +3291516 Aglish Aglish 51.88694 -8.76417 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3291517 Classas Classas 51.90056 -8.79306 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3291518 Carhoo Carhoo 51.91222 -8.81722 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3291519 Farran Farran 51.87444 -8.73778 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +3291520 Saint Olan’s Saint Olan's 51.92806 -8.81361 L LCTY IE M 04 0 108 Europe/Dublin 2010-08-14 +3291521 Peake Peake 51.92944 -8.77917 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3291522 Hayfield Hayfield 51.93222 -8.75472 L LCTY IE M 04 0 107 Europe/Dublin 2010-08-14 +3291523 Aghavrin Cross Roads Aghavrin Cross Roads 51.93222 -8.81139 P PPLL IE M 04 0 108 Europe/Dublin 2010-08-14 +3291524 Luskin’s Bridge Luskin's Bridge 51.93639 -8.77 P PPLL IE M 04 0 119 Europe/Dublin 2010-08-14 +3291525 Bedlnamorive Bedlnamorive 51.93222 -8.85722 P PPL IE M 04 0 136 Europe/Dublin 2010-08-14 +3291526 Glashagarriff River Glashagarriff River 51.91333 -8.82556 H STM IE M 04 0 74 Europe/Dublin 2010-08-14 +3291527 Fergus Fergus 51.90194 -8.75389 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3291528 Fergus Cross Roads Fergus Cross Roads 51.90417 -8.74111 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3291529 Knockane Knockane 51.94333 -8.73083 L LCTY IE M 04 0 135 Europe/Dublin 2010-08-14 +3291530 Dripsey River Dripsey River 51.91556 -8.745 H STM IE M 04 0 76 Europe/Dublin 2010-08-14 +3291531 Tullig More Tullig More 51.95278 -8.76528 L LCTY IE M 04 0 146 Europe/Dublin 2010-08-14 +3291532 Athnanangle Bridge Athnanangle Bridge 51.95833 -8.78194 P PPLL IE M 04 0 143 Europe/Dublin 2010-08-14 +3291533 Killeenleigh Killeenleigh 51.96722 -8.77139 L LCTY IE M 04 0 156 Europe/Dublin 2010-08-14 +3291534 Mount Rivers Mount Rivers 51.97 -8.83472 P PPL IE M 04 0 182 Europe/Dublin 2010-08-14 +3291535 Delehinagh River Delehinagh River 51.93056 -8.76833 H STM IE M 04 0 102 Europe/Dublin 2010-08-14 +3291536 Knockrour House Knockrour House 51.96417 -8.84694 S HSE IE M 04 0 181 Europe/Dublin 2010-08-14 +3291537 Reagrellagh Reagrellagh 51.96056 -8.72611 L LCTY IE M 11 0 152 Europe/Dublin 2010-08-14 +3291538 Crean’s Cross Roads Crean's Cross Roads 51.97167 -8.7575 P PPLL IE M 11 0 154 Europe/Dublin 2010-08-14 +3291991 Monavanshere Monavanshere 51.96889 -8.70722 P PPL IE M 04 0 154 Europe/Dublin 2010-08-14 +3291992 Kilclogh Kilclogh 51.96 -8.69 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3291993 Matehy Matehy 51.95278 -8.65722 P PPL IE M 04 0 125 Europe/Dublin 2010-08-14 +3291994 Berrings Berrings 51.93694 -8.69861 P PPL IE M 04 0 108 Europe/Dublin 2010-08-14 +3291995 Owennagearogh River Owennagearogh River 51.92167 -8.65333 H STM IE M 04 0 76 Europe/Dublin 2010-08-14 +3291996 Dromgownagh Dromgownagh 51.92083 -8.72333 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3291997 Killeen Killeen 51.93444 -8.63 P PPL IE M 04 0 83 Europe/Dublin 2010-08-14 +3291998 Loughane East Loughane East 51.95028 -8.61417 P PPL IE M 04 0 105 Europe/Dublin 2010-08-14 +3291999 Cloghroe Cloghroe 51.92472 -8.64889 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +3292000 Golflugh Golflugh 51.925 -8.62611 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3292001 Tower Bridge Tower Bridge 51.92333 -8.60556 P PPLL IE M 04 0 68 Europe/Dublin 2010-08-14 +3292002 Ballineadig Ballineadig 51.88556 -8.70972 P PPL IE M 04 0 109 Europe/Dublin 2010-08-14 +3292003 Clashanure House Clashanure House 51.89472 -8.70306 S HSEC IE M 04 0 90 Europe/Dublin 2010-08-14 +3292004 Farranavarra Farranavarra 51.87278 -8.71972 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +3292005 Knockanemore Knockanemore 51.87583 -8.66667 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +3292006 Grange Hill Grange Hill 51.86389 -8.64306 P PPL IE M 04 0 91 Europe/Dublin 2010-08-14 +3292007 Srelane Cross Srelane Cross 51.88361 -8.67722 P PPLL IE M 04 0 73 Europe/Dublin 2010-08-14 +3292008 Kilnaglory Kilnaglory 51.86861 -8.61556 P PPL IE M 04 0 72 Europe/Dublin 2010-08-14 +3292009 Maglin Maglin 51.87417 -8.585 S HSE IE M 04 0 68 Europe/Dublin 2010-08-14 +3292010 Ballynora Ballynora 51.86306 -8.58 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +3292011 Inishcarra Bridge Inishcarra Bridge 51.89028 -8.62278 P PPLL IE M 04 0 67 Europe/Dublin 2010-08-14 +3292012 Carriganarra Carriganarra 51.88972 -8.55639 L LCTY IE M 04 0 66 Europe/Dublin 2010-08-14 +3292013 Mackey’s Cross Mackey's Cross 51.90611 -8.54556 P PPLL IE M 04 0 63 Europe/Dublin 2010-08-14 +3292014 Templehill Templehill 51.90194 -8.59778 T HLL IE M 04 0 157 86 Europe/Dublin 2010-08-14 +3292015 Henley’s Bridge Henley's Bridge 51.90889 -8.57806 P PPLL IE M 04 0 66 Europe/Dublin 2010-08-14 +3292016 Ponnd Cross Roads Ponnd Cross Roads 51.90889 -8.60194 P PPLL IE M 04 0 90 Europe/Dublin 2010-08-14 +3292017 Gurteen Gurteen 51.91 -8.67111 L LCTY IE M 04 0 69 Europe/Dublin 2010-08-14 +3292018 Faha Faha 51.90306 -8.68028 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3292019 Inishleena Inishleena 51.90722 -8.68917 L LCTY IE M 04 0 70 Europe/Dublin 2010-08-14 +3292020 Killard Killard 51.92278 -8.55444 P PPL IE M 04 0 66 Europe/Dublin 2010-08-14 +3292021 Blarney Lake Blarney Lake 51.92167 -8.57389 H LK IE M 04 0 67 Europe/Dublin 2010-08-14 +3292022 Gothic Bridge Gothic Bridge 51.92667 -8.55722 P PPLL IE M 04 0 68 Europe/Dublin 2010-08-14 +3292023 Blarney Castle Blarney Castle 51.92915 -8.57062 S CSTL IE M 04 0 70 Europe/Dublin 2010-08-14 +3292024 Blarney River Blarney River 51.92611 -8.59083 H STM IE M 04 0 69 Europe/Dublin 2010-08-14 +3292025 Shournagh River Shournagh River 51.89833 -8.57111 H STM IE M 04 0 64 Europe/Dublin 2010-08-14 +3292026 Curraghnalaght Cross Roads Curraghnalaght Cross Roads 51.94889 -8.55028 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3292027 Waterloo Waterloo 51.95556 -8.57639 H STM IE M 04 0 87 Europe/Dublin 2010-08-14 +3292028 Sluggary Cross Roads Sluggary Cross Roads 51.97333 -8.55528 P PPLL IE M 04 0 133 Europe/Dublin 2010-08-14 +3292029 Garrycloyne House Garrycloyne House 51.97361 -8.59306 S HSEC IE M 04 0 121 Europe/Dublin 2010-08-14 +3292030 Newcastle House Newcastle House 51.97389 -8.61194 S HSEC IE M 04 0 138 Europe/Dublin 2010-08-14 +3292031 Knockane House Knockane House 51.9725 -8.67083 S HSEC IE M 04 0 149 Europe/Dublin 2010-08-14 +3292032 Lyradane Stream Lyradane Stream 51.96306 -8.64889 H STM IE M 04 0 130 Europe/Dublin 2010-08-14 +3292033 Greenfort Greenfort 51.98278 -8.61306 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292034 Kilmona Kilmona 51.99278 -8.57083 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +3292035 Gurteenastooka Gurteenastooka 51.98111 -8.57083 P PPL IE M 04 0 130 Europe/Dublin 2010-08-14 +3292036 Monalahy Monalahy 51.99028 -8.63472 L LCTY IE M 04 0 150 Europe/Dublin 2010-08-14 +3292037 Ballyvaloore Ballyvaloore 51.99833 -8.62861 P PPL IE M 04 0 153 Europe/Dublin 2010-08-14 +3292038 Lisheenowen Lisheenowen 52.00417 -8.55889 L LCTY IE M 04 0 150 Europe/Dublin 2010-08-14 +3292039 Sixmilewater Sixmilewater 52.01139 -8.56389 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292040 Garraun North Garraun North 51.99333 -8.67 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292041 Slievedotia Slievedotia 52.02306 -8.56889 L LCTY IE M 04 0 158 Europe/Dublin 2010-08-14 +3292042 Lydradane Lydradane 52.02139 -8.64083 L LCTY IE M 04 0 150 Europe/Dublin 2010-08-14 +3292043 Rich Hill House Rich Hill House 52.02194 -8.67194 S HSEC IE M 04 0 185 Europe/Dublin 2010-08-14 +3292044 Ballyvodane Bridge Ballyvodane Bridge 51.97917 -8.6875 P PPLL IE M 04 0 150 Europe/Dublin 2010-08-14 +3292045 Fornaght Fornaght 51.98222 -8.69444 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292046 Curragh House Curragh House 51.99194 -8.71194 S HSEC IE M 04 0 160 Europe/Dublin 2010-08-14 +3292047 Pluckanes Pluckanes 51.99861 -8.69444 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292048 Ahadallane Ahadallane 52.02222 -8.69972 P PPL IE M 04 0 208 Europe/Dublin 2010-08-14 +3292049 Lyradane Mountain Lyradane Mountain 52.02889 -8.64167 T MT IE M 04 0 156 Europe/Dublin 2010-08-14 +3292050 Ahadallane Cross Roads Ahadallane Cross Roads 52.03 -8.6925 P PPLL IE M 04 0 216 Europe/Dublin 2010-08-14 +3292051 Lissavourd Lissavourd 52.03111 -8.59417 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292052 Prostestant Hill Prostestant Hill 52.03778 -8.58028 T HLL IE M 04 0 227 173 Europe/Dublin 2010-08-14 +3292053 Daly’s Cross Roads Daly's Cross Roads 52.04222 -8.56556 P PPLL IE M 04 0 239 Europe/Dublin 2010-08-14 +3292054 Barrack Barrack 52.05028 -8.5975 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292055 Ballyhilloge Ballyhilloge 52.04806 -8.64167 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3292056 Lahakinneen Lahakinneen 52.04222 -8.67167 L LCTY IE M 04 0 173 Europe/Dublin 2010-08-14 +3292057 Carrigdeena Carrigdeena 52.05944 -8.71444 P PPL IE M 04 0 223 Europe/Dublin 2010-08-14 +3292058 Leapford Stream Leapford Stream 52.06417 -8.60972 H STM IE M 04 0 147 Europe/Dublin 2010-08-14 +3292059 Barnard Cross Roads Barnard Cross Roads 52.00111 -8.73194 P PPLL IE M 04 0 196 Europe/Dublin 2010-08-14 +3292060 Rathcoola River Rathcoola River 52.00444 -8.71139 H STM IE M 04 0 175 Europe/Dublin 2010-08-14 +3292061 Sheskinny Cross Sheskinny Cross 51.97778 -8.83583 P PPLL IE M 04 0 208 Europe/Dublin 2010-08-14 +3292062 Kilcullen House Kilcullen House 51.98361 -8.79583 S HSE IE M 04 0 191 Europe/Dublin 2010-08-14 +3292063 Kilmartin Upper Kilmartin Upper 51.99528 -8.78944 P PPL IE M 04 0 230 Europe/Dublin 2010-08-14 +3292064 Barrahaurin Barrahaurin 52.00444 -8.83 P PPL IE M 04 0 284 Europe/Dublin 2010-08-14 +3292065 Uctough Uctough 52.00667 -8.79278 T MT IE M 04 0 355 274 Europe/Dublin 2010-08-14 +3292066 Gowlane South Gowlane South 52.00611 -8.74944 P PPL IE M 04 0 221 Europe/Dublin 2010-08-14 +3292067 Toureen Toureen 52.01667 -8.84694 L LCTY IE M 04 0 312 Europe/Dublin 2010-08-14 +3292068 Knockabrocka Knockabrocka 52.02 -8.86083 L LCTY IE M 04 0 312 Europe/Dublin 2010-08-14 +3292069 Meendhony Meendhony 52.01694 -8.77972 L LCTY IE M 04 0 298 Europe/Dublin 2010-08-14 +3292070 Gowlane North Gowlane North 52.03111 -8.76889 P PPL IE M 04 0 299 Europe/Dublin 2010-08-14 +3292071 Beenalaght Beenalaght 52.02889 -8.74611 P PPL IE M 04 0 272 Europe/Dublin 2010-08-14 +3292072 Boola Boola 52.03528 -8.73222 P PPL IE M 04 0 262 Europe/Dublin 2010-08-14 +3292073 Glenaknockane Glenaknockane 52.03472 -8.83639 P PPL IE M 04 0 304 Europe/Dublin 2010-08-14 +3292074 Bweeng Bweeng 52.04667 -8.73972 L LCTY IE M 04 0 279 Europe/Dublin 2010-08-14 +3292075 Glandine Glandine 52.04278 -8.75917 L LCTY IE M 04 0 304 Europe/Dublin 2010-08-14 +3292076 Glannaharee Glannaharee 52.05472 -8.80667 L LCTY IE M 04 0 304 Europe/Dublin 2010-08-14 +3292077 French’s Road French's Road 52.05028 -8.78806 R RD IE M 04 0 306 Europe/Dublin 2010-08-14 +3292078 Nadanuller Beg Nadanuller Beg 52.05444 -8.85361 P PPL IE M 04 0 301 Europe/Dublin 2010-08-14 +3292079 Eagles Nest Eagles Nest 52.05722 -8.84417 T MT IE M 04 0 327 291 Europe/Dublin 2010-08-14 +3292080 Glenaglogh North Glenaglogh North 51.99 -8.87306 L LCTY IE M 04 0 277 Europe/Dublin 2010-08-14 +3292081 Cusloura River Cusloura River 51.97167 -8.97611 H STM IE M 04 0 236 Europe/Dublin 2010-08-14 +3292082 Awboy River Awboy River 51.96167 -8.94806 H STM IE M 04 0 182 Europe/Dublin 2010-08-14 +3292083 Rahalisk Rahalisk 51.97944 -8.96694 L LCTY IE M 04 0 251 Europe/Dublin 2010-08-14 +3292084 Knocknagappul Knocknagappul 51.99167 -8.93917 L LCTY IE M 04 0 301 Europe/Dublin 2010-08-14 +3292085 Carrigagulla Bridge Carrigagulla Bridge 51.99528 -8.89056 P PPLL IE M 04 0 280 Europe/Dublin 2010-08-14 +3292086 Carrigagulla Carrigagulla 52.01028 -8.91417 L LCTY IE M 04 0 331 Europe/Dublin 2010-08-14 +3292087 Mushera Mushera 52.01972 -8.95167 T MT IE M 04 0 501 380 Europe/Dublin 2010-08-14 +3292088 Musherabeg Musherabeg 51.99639 -9.00528 T MT IE M 04 0 482 306 Europe/Dublin 2010-08-14 +3292089 Finnanfield Finnanfield 52.03556 -8.96139 P PPL IE M 04 0 327 Europe/Dublin 2010-08-14 +3292090 Knockarnad Knockarnad 52.04972 -8.90139 L LCTY IE M 04 0 321 Europe/Dublin 2010-08-14 +3292091 Knockboy Knockboy 52.05611 -8.88194 L LCTY IE M 04 0 305 Europe/Dublin 2010-08-14 +3292092 Ginnaloo Ginnaloo 52.05861 -8.91361 L LCTY IE M 04 0 258 Europe/Dublin 2010-08-14 +3292093 Glucknanuff Glucknanuff 52.04972 -8.92861 L LCTY IE M 04 0 301 Europe/Dublin 2010-08-14 +3292094 Baunreagh Baunreagh 52.05361 -8.96889 L LCTY IE M 04 0 229 Europe/Dublin 2010-08-14 +3292095 Seefin Seefin 52.02694 -8.93333 T MT IE M 04 0 493 349 Europe/Dublin 2010-08-14 +3292096 Owenbaum River Owenbaum River 52.09111 -8.97 H STM IE M 04 0 149 Europe/Dublin 2010-08-14 +3292097 Ivale River Ivale River 52.07 -8.94861 H STM IE M 04 0 192 Europe/Dublin 2010-08-14 +3292098 Carraleigh Carraleigh 51.97111 -9.08056 L LCTY IE M 04 0 304 Europe/Dublin 2010-08-14 +3292099 Carrigonirtane Carrigonirtane 51.96833 -9.05278 L LCTY IE M 04 0 252 Europe/Dublin 2010-08-14 +3292100 Glenday Glenday 51.97778 -9.11417 L LCTY IE M 04 0 384 Europe/Dublin 2010-08-14 +3292101 Garraneycarney Garraneycarney 51.98694 -9.095 L LCTY IE M 04 0 304 Europe/Dublin 2010-08-14 +3292102 Glantane Glantane 51.99972 -9.06139 P PPL IE M 04 0 258 Europe/Dublin 2010-08-14 +3292103 Keel River Keel River 51.96528 -9.03222 H STM IE M 04 0 221 Europe/Dublin 2010-08-14 +3292104 Foherish River Foherish River 51.92639 -9.03417 H STM IE M 04 0 139 Europe/Dublin 2010-08-14 +3292105 Caherdowney Caherdowney 52.00167 -9.09583 L LCTY IE M 04 0 304 Europe/Dublin 2010-08-14 +3292106 Knocknakilla Knocknakilla 52.01611 -9.02278 L LCTY IE M 04 0 304 Europe/Dublin 2010-08-14 +3292107 Carrigacooleen Carrigacooleen 52.01444 -9.05583 L LCTY IE M 04 0 246 Europe/Dublin 2010-08-14 +3292108 Lough Comeenatrush Lough Comeenatrush 52.01778 -9.10472 H LK IE M 04 0 304 Europe/Dublin 2010-08-14 +3292109 Cloghboold Cloghboold 52.02806 -9.04722 L LCTY IE M 04 0 231 Europe/Dublin 2010-08-14 +3292110 Lackdotia House Lackdotia House 52.03611 -9.02222 S HSEC IE M 04 0 290 Europe/Dublin 2010-08-14 +3292111 Liscahane House Liscahane House 52.04611 -9.05139 S HSEC IE M 04 0 156 Europe/Dublin 2010-08-14 +3292112 Dromascoolane Bridge Dromascoolane Bridge 52.04444 -9.06056 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292113 Adrivale Adrivale 52.03444 -9.11056 P PPL IE M 04 0 304 Europe/Dublin 2010-08-14 +3292114 Kippagh Kippagh 52.04139 -9.13417 P PPL IE M 04 0 302 Europe/Dublin 2010-08-14 +3292115 Lough Gortavehy Lough Gortavehy 52.04056 -9.15528 H LK IE M 04 0 366 Europe/Dublin 2010-08-14 +3292116 Claragh Mountain Claragh Mountain 52.04861 -9.09306 T MT IE M 04 0 452 294 Europe/Dublin 2010-08-14 +3292117 Toorboney Toorboney 52.04917 -9.16583 P PPL IE M 04 0 327 Europe/Dublin 2010-08-14 +3292118 Lough Murtagh Lough Murtagh 52.0425 -9.18361 H LK IE M 04 0 340 Europe/Dublin 2010-08-14 +3292119 Goomnaclohy Goomnaclohy 51.97028 -9.17222 L LCTY IE M 04 0 298 Europe/Dublin 2010-08-14 +3292120 Lough Carrignafurark Lough Carrignafurark 51.97639 -9.20833 H LK IE 00 0 309 Europe/Dublin 1997-10-15 +3292121 Lackabaun Lackabaun 51.98278 -9.16861 T MT IE 00 0 493 380 Europe/Dublin 2006-01-16 +3292122 Mullaghanish Mullaghanish Mullaghanish 51.9825 -9.13806 T MT IE 00 0 650 460 Europe/Dublin 2011-02-08 +3292123 Bohill River Bohill River 51.99528 -9.19722 H STM IE M 11 0 317 Europe/Dublin 1997-10-15 +3292124 Owengarve River Owengarve River 51.95611 -9.18917 H STM IE M 04 0 214 Europe/Dublin 1997-10-15 +3292125 Auahboy River Auahboy River 51.93306 -9.20528 H STM IE M 04 0 152 Europe/Dublin 2010-08-14 +3292126 Knocknaloman Knocknaloman 52.06528 -9.19639 L LCTY IE M 04 0 189 Europe/Dublin 2010-08-14 +3292127 Rathduane Rathduane 52.07028 -9.16028 L LCTY IE M 04 0 140 Europe/Dublin 2010-08-14 +3292128 Inches Inches 52.07944 -9.17556 P PPL IE M 04 0 141 Europe/Dublin 2010-08-14 +3292129 Rathduane House Rathduane House 52.07944 -9.15167 S HSEC IE M 04 0 136 Europe/Dublin 2010-08-14 +3292130 Duncannon Bridge Duncannon Bridge 52.08528 -9.19333 P PPLL IE M 04 0 145 Europe/Dublin 2010-08-14 +3292131 Shamrock Bridge Shamrock Bridge 52.08722 -9.16139 P PPLL IE M 04 0 136 Europe/Dublin 2010-08-14 +3292132 Nohaval Bridge Nohaval Bridge 52.09361 -9.20694 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292133 Nohavaldaly Nohavaldaly 52.09583 -9.18056 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292134 Lyredaowen Lyredaowen 52.09139 -9.16167 P PPL IE M 04 0 136 Europe/Dublin 2010-08-14 +3292135 Knockeenadallane Knockeenadallane 52.12222 -9.16972 L LCTY IE M 04 0 172 Europe/Dublin 2010-08-14 +3292136 Ummeraboy Ummeraboy 52.13639 -9.16972 L LCTY IE M 04 0 189 Europe/Dublin 2010-08-14 +3292137 Lisnaboy Lisnaboy 52.10889 -9.15444 P PPL IE M 04 0 156 Europe/Dublin 2010-08-14 +3292138 Knockduff Knockduff 52.12889 -9.13278 L LCTY IE M 04 0 150 Europe/Dublin 2010-08-14 +3292139 Derragh Derragh 52.12472 -9.11194 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292140 Loumanagh Loumanagh 52.14528 -9.09889 P PPL IE M 04 0 169 Europe/Dublin 2010-08-14 +3292141 Mount Zephyr Mount Zephyr 52.12972 -9.0925 T MT IE M 04 0 157 Europe/Dublin 2010-08-14 +3292142 Stakehill Stakehill 52.13889 -9.06611 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292143 Knockane Knockane 52.11222 -9.11139 L LCTY IE M 04 0 154 Europe/Dublin 2010-08-14 +3292144 Charless Bridge Charless Bridge 52.09861 -9.09833 P PPLL IE M 04 0 121 Europe/Dublin 2010-08-14 +3292145 Meeskeha Meeskeha 52.11778 -9.05778 L LCTY IE M 04 0 147 Europe/Dublin 2010-08-14 +3292146 Knockagarrane Knockagarrane 52.11028 -9.08472 L LCTY IE M 04 0 146 Europe/Dublin 2010-08-14 +3292147 Rathroe House Rathroe House 52.1 -9.05083 S HSE IE M 04 0 123 Europe/Dublin 2010-08-14 +3292148 Garrane House Garrane House 52.10556 -9.02167 S HSEC IE M 04 0 115 Europe/Dublin 2010-08-14 +3292149 Drominagh Drominagh 52.14 -9.02167 L LCTY IE M 04 0 140 Europe/Dublin 2010-08-14 +3292150 Keale Bridge Keale Bridge 52.09111 -9.02806 P PPLL IE M 04 0 112 Europe/Dublin 2010-08-14 +3292151 Keale House Keale House 52.09361 -9.01889 S HSEC IE M 04 0 111 Europe/Dublin 2010-08-14 +3292152 Flintfield House Flintfield House 52.08639 -9.04194 S HSEC IE M 04 0 114 Europe/Dublin 2010-08-14 +3292153 Dromsicane Dromsicane 52.08667 -9.06722 L LCTY IE M 04 0 118 Europe/Dublin 2010-08-14 +3292154 Dooneens Dooneens 52.08361 -9.08778 L LCTY IE M 04 0 119 Europe/Dublin 2010-08-14 +3292155 Coolanarney Coolanarney 52.08222 -9.11917 L LCTY IE M 04 0 124 Europe/Dublin 2010-08-14 +3292156 Shanaknock Shanaknock 52.07778 -9.11333 L LCTY IE M 04 0 124 Europe/Dublin 2010-08-14 +3292157 Finnow Bridge Finnow Bridge 52.07667 -9.07194 P PPLL IE M 04 0 123 Europe/Dublin 2010-08-14 +3292158 Tober Tober 52.06778 -9.12611 P PPL IE M 04 0 132 Europe/Dublin 2010-08-14 +3292159 Spa Mount Spa Mount 52.07111 -9.05528 L LCTY IE M 04 0 128 Europe/Dublin 2010-08-14 +3292160 Coomlogane Coomlogane 52.06361 -9.07694 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3292161 Inchileigh Bridge Inchileigh Bridge 52.05944 -9.07278 P PPLL IE M 04 0 140 Europe/Dublin 2010-08-14 +3292162 Coolnagillagh Coolnagillagh 52.06861 -9.02667 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292163 Laharan Laharan 52.06333 -9.00111 P PPL IE M 04 0 187 Europe/Dublin 2010-08-14 +3292164 Clashatrake Bridge Clashatrake Bridge 52.07306 -8.99694 P PPLL IE M 04 0 165 Europe/Dublin 2010-08-14 +3292165 Killowen Killowen 52.07806 -9.015 L LCTY IE M 04 0 149 Europe/Dublin 2010-08-14 +3292166 Kilcorney Kilcorney 52.08111 -8.97167 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292167 Stonefield House Stonefield House 52.07833 -8.94944 S HSEC IE M 04 0 172 Europe/Dublin 2010-08-14 +3292168 Rathcool River Rathcool River 52.10833 -8.97806 H STM IE M 04 0 121 Europe/Dublin 2010-08-14 +3292169 Boolymore Wood Boolymore Wood 52.09361 -8.95472 V FRST IE M 04 0 143 Europe/Dublin 2010-08-14 +3292170 Boolymore Boolymore 52.105 -8.96778 L LCTY IE M 04 0 124 Europe/Dublin 2010-08-14 +3292171 Minehill House Minehill House 52.105 -9.01306 S HSEC IE M 04 0 113 Europe/Dublin 2010-08-14 +3292172 Colthurst Bridge Colthurst Bridge 52.10778 -8.98194 P PPLL IE M 04 0 121 Europe/Dublin 2010-08-14 +3292173 Dromahoe Dromahoe 52.11194 -8.98389 P PPL IE M 04 0 108 Europe/Dublin 2010-08-14 +3292174 Muingyroogeen Muingyroogeen 52.08222 -8.91667 L LCTY IE M 04 0 214 Europe/Dublin 2010-08-14 +3292175 Knockbrack Knockbrack 52.10056 -8.92361 L LCTY IE M 04 0 179 Europe/Dublin 2010-08-14 +3292176 Redgate Redgate 52.10389 -8.90583 P PPL IE M 04 0 192 Europe/Dublin 2010-08-14 +3292177 Shronebeha Shronebeha 52.11333 -8.91583 P PPL IE M 04 0 154 Europe/Dublin 2010-08-14 +3292178 Knockaun Knockaun 52.12222 -8.90944 L LCTY IE M 04 0 127 Europe/Dublin 2010-08-14 +3292179 Kippagh Kippagh 52.12139 -8.95694 P PPL IE M 04 0 100 Europe/Dublin 2010-08-14 +3292180 Garrane Garrane 52.11917 -8.93 P PPL IE M 04 0 119 Europe/Dublin 2010-08-14 +3292181 Coolclogh Coolclogh 52.13639 -8.95694 P PPL IE M 04 0 119 Europe/Dublin 2010-08-14 +3292182 Killinane Killinane 52.14639 -8.99583 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292183 Knockardrahan Knockardrahan 52.14889 -8.96639 P PPL IE M 04 0 141 Europe/Dublin 2010-08-14 +3292184 Leader’s Bridge Leader's Bridge 52.13917 -8.89917 P PPLL IE M 04 0 87 Europe/Dublin 2010-08-14 +3292185 Ballymaquirk Bridge Ballymaquirk Bridge 52.13528 -8.87556 P PPLL IE M 04 0 81 Europe/Dublin 2010-08-14 +3292186 Carrigeen Carrigeen 52.0925 -8.87833 L LCTY IE M 04 0 163 Europe/Dublin 2010-08-14 +3292187 Carrigcannon Carrigcannon 52.06667 -8.885 T MT IE M 04 0 374 302 Europe/Dublin 2010-08-14 +3292188 Father Murphy’s Bridge Father Murphy's Bridge 52.11167 -8.88889 P PPLL IE M 04 0 121 Europe/Dublin 2010-08-14 +3292189 Hill Wood Hill Wood 52.11722 -8.86333 V FRST IE M 04 0 161 Europe/Dublin 2010-08-14 +3292190 Mount Hillary Mount Hillary 52.10972 -8.84056 T MT IE M 04 0 392 255 Europe/Dublin 2010-08-14 +3292191 Lyre Lyre 52.08306 -8.85778 L LCTY IE M 04 0 263 Europe/Dublin 2010-08-14 +3292192 Nadanuller More Nadanuller More 52.07028 -8.85139 L LCTY IE M 04 0 298 Europe/Dublin 2010-08-14 +3292193 Nad River Nad River 52.07083 -8.83667 H STM IE M 04 0 253 Europe/Dublin 2010-08-14 +3292194 Esk Esk 52.0625 -8.81028 P PPL IE M 04 0 296 Europe/Dublin 2010-08-14 +3292195 Bweeng Mountain Bweeng Mountain 52.0675 -8.78028 T MT IE M 04 0 418 304 Europe/Dublin 2010-08-14 +3292196 Garrane Garrane 52.06667 -8.76306 L LCTY IE M 04 0 293 Europe/Dublin 2010-08-14 +3292197 Laharan Cross Roads Laharan Cross Roads 52.08444 -8.79056 P PPLL IE M 04 0 204 Europe/Dublin 2010-08-14 +3292198 Duvglasha River Duvglasha River 52.12056 -8.78583 H STM IE M 04 0 72 Europe/Dublin 2010-08-14 +3292199 Skarragh Skarragh 52.09528 -8.74611 L LCTY IE M 04 0 180 Europe/Dublin 2010-08-14 +3292200 Buggaeen Cross Roads Buggaeen Cross Roads 52.09278 -8.81889 P PPLL IE M 04 0 230 Europe/Dublin 2010-08-14 +3292201 Creggane Creggane 52.10722 -8.81361 L LCTY IE M 04 0 193 Europe/Dublin 2010-08-14 +3292202 Gortroe Gortroe 52.11056 -8.7825 P PPL IE M 04 0 95 Europe/Dublin 2010-08-14 +3292203 Gortmore House Gortmore House 52.13333 -8.84167 S HSEC IE M 04 0 96 Europe/Dublin 2010-08-14 +3292204 Gortmore Gortmore 52.12083 -8.82861 L LCTY IE M 04 0 150 Europe/Dublin 2010-08-14 +3292205 Clonmeen House Clonmeen House 52.13667 -8.85806 S HSE IE M 04 0 72 Europe/Dublin 2010-08-14 +3292206 Carraghrour Carraghrour 52.1275 -8.83806 L LCTY IE M 04 0 93 Europe/Dublin 2010-08-14 +3292207 Dromcummer More Dromcummer More 52.14639 -8.88083 P PPL IE M 04 0 80 Europe/Dublin 2010-08-14 +3292208 Roskeen Bridge Roskeen Bridge 52.14139 -8.81222 P PPLL IE M 04 0 73 Europe/Dublin 2010-08-14 +3292209 Rock View Rock View 52.13861 -8.79833 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3292210 Carrigane Carrigane 52.12972 -8.79417 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3292211 Kilroe Kilroe 52.14167 -8.77278 P PPL IE M 04 0 80 Europe/Dublin 2010-08-14 +3292212 Awbeg River Awbeg River 52.14167 -8.81944 H STM IE M 04 0 74 Europe/Dublin 2010-08-14 +3292527 Knockdrislagh Knockdrislagh 52.06639 -8.72667 L LCTY IE M 04 0 258 Europe/Dublin 2010-08-14 +3292528 Knocknastooka Knocknastooka 52.06889 -8.67833 T HLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292529 Athnaleenta Athnaleenta 52.07167 -8.64 P PPL IE M 04 0 127 Europe/Dublin 2010-08-14 +3292530 Ballysimon Cross Roads Ballysimon Cross Roads 52.08028 -8.7175 P PPLL IE M 04 0 207 Europe/Dublin 2010-08-14 +3292531 Lyre River Lyre River 52.0825 -8.68389 H STM IE M 04 0 152 Europe/Dublin 2010-08-14 +3292532 Clashmorgan Clashmorgan 52.08139 -8.67806 P PPL IE M 04 0 151 Europe/Dublin 2010-08-14 +3292533 Jordan’s Bridge Jordan's Bridge 52.07972 -8.62639 P PPLL IE M 04 0 109 Europe/Dublin 2010-08-14 +3292534 Gortaneelig Gortaneelig 52.07361 -8.56806 L LCTY IE M 04 0 204 Europe/Dublin 2010-08-14 +3292535 Knockbrack Knockbrack 52.09306 -8.55083 P PPLL IE M 04 0 221 Europe/Dublin 2010-08-14 +3292536 Monee Cross Roads Monee Cross Roads 52.09583 -8.58889 P PPLL IE M 04 0 173 Europe/Dublin 2010-08-14 +3292537 Knockananning Knockananning 52.10528 -8.5675 L LCTY IE M 04 0 200 Europe/Dublin 2010-08-14 +3292538 Fiddane Fiddane 52.11278 -8.58222 L LCTY IE M 04 0 187 Europe/Dublin 2010-08-14 +3292539 Ballinvuskig Ballinvuskig 52.10194 -8.60194 P PPL IE M 04 0 167 Europe/Dublin 2010-08-14 +3292540 Pendy’s Cross Roads Pendy's Cross Roads 52.095 -8.69056 P PPLL IE M 04 0 149 Europe/Dublin 2010-08-14 +3292541 Drommahane Drommahane 52.10472 -8.69139 P PPL IE M 04 0 119 Europe/Dublin 2010-08-14 +3292542 Danesfort Danesfort 52.09944 -8.72361 P PPL IE M 04 0 151 Europe/Dublin 2010-08-14 +3292543 Knockansweeny Knockansweeny 52.10833 -8.73139 P PPL IE M 04 0 118 Europe/Dublin 2010-08-14 +3292544 Nazareth House Nazareth House 52.11083 -8.69056 S HSEC IE M 04 0 90 Europe/Dublin 2010-08-14 +3292545 Quartertown Upper Quartertown Upper 52.10806 -8.64972 L LCTY IE M 04 0 102 Europe/Dublin 2010-08-14 +3292546 Knockaroura Knockaroura 52.11472 -8.62556 T HLL IE M 04 0 261 131 Europe/Dublin 2010-08-14 +3292547 Knoppoye Knoppoye 52.12083 -8.60472 L LCTY IE M 04 0 141 Europe/Dublin 2010-08-14 +3292548 Moynass Mountain Moynass Mountain 52.13139 -8.55194 T HLL IE M 04 0 280 167 Europe/Dublin 2010-08-14 +3292549 Summer Hill Summer Hill 52.12722 -8.63778 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +3292550 Avondhu Avondhu 52.13167 -8.62833 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +3292551 The Castles The Castles 52.13444 -8.63944 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +3292552 The Garrison The Garrison 52.13694 -8.59972 S HSEC IE M 04 0 73 Europe/Dublin 2010-08-14 +3292553 Lackanamona Lackanamona 52.14833 -8.60056 L LCTY IE M 04 0 61 Europe/Dublin 2010-08-14 +3292554 Gortnagross Gortnagross 52.14639 -8.72083 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3292555 Fairy Hill Fairy Hill 52.13778 -8.66639 S EST IE M 04 0 75 Europe/Dublin 2010-08-14 +3292556 Killetra House Killetra House 52.13389 -8.67833 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3292557 Darling Hill Darling Hill 52.12472 -8.73139 L LCTY IE M 04 0 71 Europe/Dublin 2010-08-14 +3292558 Carrig House Carrig House 52.15139 -8.56389 S HSEC IE M 04 0 58 Europe/Dublin 2010-08-14 +3292559 Ballyviniter Lower Ballyviniter Lower 52.15361 -8.61972 L LCTY IE M 04 0 79 Europe/Dublin 2010-08-14 +3292560 Mountnagle Mountnagle 52.1625 -8.61306 L LCTY IE M 04 0 83 Europe/Dublin 2010-08-14 +3292561 Carrig River Carrig River 52.15139 -8.55861 H STM IE M 04 0 58 Europe/Dublin 2010-08-14 +3292562 Torpys Cross Roads Torpys Cross Roads 52.18139 -8.55667 P PPLL IE M 04 0 78 Europe/Dublin 2010-08-14 +3292563 Sunnyside Sunnyside 52.1575 -8.65083 P PPL IE M 04 0 87 Europe/Dublin 2010-08-14 +3292564 Cloghlucas Cloghlucas 52.16472 -8.65528 L LCTY IE M 04 0 97 Europe/Dublin 2010-08-14 +3292565 Ballyviniter Upper Ballyviniter Upper 52.17333 -8.64083 L LCTY IE M 04 0 92 Europe/Dublin 2010-08-14 +3292566 Pencil Hill Pencil Hill 52.18028 -8.64639 T HLL IE M 04 0 154 103 Europe/Dublin 2010-08-14 +3292567 Hazelwood House Hazelwood House 52.19083 -8.65056 S HSEC IE M 04 0 114 Europe/Dublin 2010-08-14 +3292568 Copsetown Cross Roads Copsetown Cross Roads 52.18111 -8.69833 P PPLL IE M 04 0 156 Europe/Dublin 2010-08-14 +3292569 Beechmount Beechmount 52.15333 -8.69028 L LCTY IE M 04 0 110 Europe/Dublin 2010-08-14 +3292570 Groin Groin 52.19028 -8.73 L LCTY IE M 04 0 139 Europe/Dublin 2010-08-14 +3292571 Rathnee House Rathnee House 52.15389 -8.73361 S HSEC IE M 04 0 86 Europe/Dublin 2010-08-14 +3292572 Kilmaclenine Cross Roads Kilmaclenine Cross Roads 52.19528 -8.71972 P PPLL IE M 04 0 149 Europe/Dublin 2010-08-14 +3292573 Dromdowney Dromdowney 52.17444 -8.72528 P PPL IE M 04 0 118 Europe/Dublin 2010-08-14 +3292574 Grannahulla Grannahulla 52.19667 -8.57222 L LCTY IE M 04 0 79 Europe/Dublin 2010-08-14 +3292575 Ballydineen Ballydineen 52.2025 -8.58444 L LCTY IE M 04 0 84 Europe/Dublin 2010-08-14 +3292576 Fort William Fort William 52.20111 -8.60694 P PPL IE M 04 0 90 Europe/Dublin 2010-08-14 +3292577 Promore Promore 52.20806 -8.55611 P PPLL IE M 04 0 77 Europe/Dublin 2010-08-14 +3292578 Cornahinch Cross Roads Cornahinch Cross Roads 52.21111 -8.60389 P PPLL IE M 04 0 90 Europe/Dublin 2010-08-14 +3292579 Clogheen House Clogheen House 52.21278 -8.63611 S HSEC IE M 04 0 103 Europe/Dublin 2010-08-14 +3292580 Turnpike Cross Turnpike Cross 52.22333 -8.58194 P PPLL IE M 04 0 82 Europe/Dublin 2010-08-14 +3292581 Brough Cross Roads Brough Cross Roads 52.23472 -8.58444 P PPLL IE M 04 0 89 Europe/Dublin 2010-08-14 +3292582 Bregoge River Bregoge River 52.22139 -8.59167 H STM IE M 04 0 88 Europe/Dublin 2010-08-14 +3292583 Old Court Old Court 52.22806 -8.59556 S EST IE M 04 0 89 Europe/Dublin 2010-08-14 +3292584 Boherbay Cross Roads Boherbay Cross Roads 52.23667 -8.63111 P PPLL IE M 04 0 101 Europe/Dublin 2010-08-14 +3292585 Kilcloosha Kilcloosha 52.205 -8.66722 L LCTY IE M 04 0 130 Europe/Dublin 2010-08-14 +3292586 Grange Grange 52.21167 -8.69222 P PPL IE M 04 0 144 Europe/Dublin 2010-08-14 +3292587 Tinnascart Tinnascart 52.22194 -8.71722 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3292588 Kilpatrick House Kilpatrick House 52.15222 -8.75444 S HSEC IE M 04 0 86 Europe/Dublin 2010-08-14 +3292589 Holy’s Cross Roads Holy's Cross Roads 52.17611 -8.77278 P PPLL IE M 04 0 114 Europe/Dublin 2010-08-14 +3292590 Garryduff Garryduff 52.19083 -8.76972 P PPL IE M 04 0 124 Europe/Dublin 2010-08-14 +3292591 Ardskeagh Ardskeagh 52.20556 -8.75944 L LCTY IE M 04 0 143 Europe/Dublin 2010-08-14 +3292592 Bannagh Cross Roads Bannagh Cross Roads 52.15417 -8.84639 P PPLL IE M 04 0 86 Europe/Dublin 2010-08-14 +3292593 Kilcaskan House Kilcaskan House 52.15972 -8.87444 S HSEC IE M 04 0 100 Europe/Dublin 2010-08-14 +3292594 Castlemagner Castlemagner 52.16611 -8.84694 P PPL IE M 04 0 95 Europe/Dublin 2010-08-14 +3292595 Assolas House Assolas House 52.17444 -8.84028 S HSEC IE M 04 0 101 Europe/Dublin 2010-08-14 +3292596 Subulter Subulter 52.18333 -8.81306 P PPL IE M 04 0 103 Europe/Dublin 2010-08-14 +3292597 Subulter House Subulter House 52.19 -8.82167 S HSEC IE M 04 0 121 Europe/Dublin 2010-08-14 +3292598 Ballyrusheen Ballyrusheen 52.19306 -8.825 S HSE IE M 04 0 136 Europe/Dublin 2010-08-14 +3292599 Ballysheen Ballysheen 52.18861 -8.84611 S HSEC IE M 04 0 135 Europe/Dublin 2010-08-14 +3292600 Spring Ville Spring Ville 52.185 -8.86583 S EST IE M 04 0 141 Europe/Dublin 2010-08-14 +3292601 Ballynoe Ballynoe 52.2025 -8.85556 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292602 Castlecor House Castlecor House 52.20944 -8.80833 S HSEC IE M 04 0 147 Europe/Dublin 2010-08-14 +3292603 Greenhall Greenhall 52.21333 -8.80333 P PPL IE M 04 0 147 Europe/Dublin 2010-08-14 +3292604 Curraglass Curraglass 52.21556 -8.75361 L LCTY IE M 04 0 149 Europe/Dublin 2010-08-14 +3292605 Templemary House Templemary House 52.22694 -8.74028 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292606 Lackeel House Lackeel House 52.23056 -8.80194 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292607 Garrison Garrison 52.21722 -8.87639 P PPL IE M 04 0 139 Europe/Dublin 2010-08-14 +3292608 Barry’s Cross Roads Barry's Cross Roads 52.23 -8.85528 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292609 John’s Bridge John's Bridge 52.23639 -8.88722 P PPLL IE M 04 0 137 Europe/Dublin 2010-08-14 +3292610 Betty Ville Betty Ville 52.17111 -8.87778 L LCTY IE M 04 0 113 Europe/Dublin 2010-08-14 +3292611 Garraveasoge Garraveasoge 52.15444 -8.92083 L LCTY IE M 04 0 121 Europe/Dublin 2010-08-14 +3292612 Killeenleagh House Killeenleagh House 52.16222 -8.94667 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292613 Derrygalun Derrygalun 52.16667 -8.97389 L LCTY IE M 04 0 146 Europe/Dublin 2010-08-14 +3292614 Mill View Mill View 52.17528 -8.935 L LCTY IE M 04 0 131 Europe/Dublin 2010-08-14 +3292615 Knocknacolan Knocknacolan 52.18944 -8.87889 L LCTY IE M 04 0 133 Europe/Dublin 2010-08-14 +3292616 Clonrobin House Clonrobin House 52.19722 -8.88944 S HSEC IE M 04 0 130 Europe/Dublin 2010-08-14 +3292617 Curragh Curragh 52.19167 -8.91972 L LCTY IE M 04 0 126 Europe/Dublin 2010-08-14 +3292618 Gortknockaneroe Gortknockaneroe 52.18333 -8.94944 L LCTY IE M 04 0 133 Europe/Dublin 2010-08-14 +3292619 Allen’s Bridge Allen's Bridge 52.1875 -8.96611 P PPLL IE M 04 0 130 Europe/Dublin 2010-08-14 +3292620 Liscongill House Liscongill House 52.19111 -8.97944 S HSEC IE M 04 0 135 Europe/Dublin 2010-08-14 +3292621 Rossline House Rossline House 52.21167 -8.94611 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292622 Coolageela Cross Roads Coolageela Cross Roads 52.20694 -8.90278 P PPLL IE M 04 0 123 Europe/Dublin 2010-08-14 +3292623 Meelaherragh Meelaherragh 52.2025 -8.93083 L LCTY IE M 04 0 141 Europe/Dublin 2010-08-14 +3292624 Deerishal Deerishal 52.15417 -9.0125 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292625 Cloontycommade Cloontycommade 52.18167 -8.99778 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292626 Owenanare River Owenanare River 52.18889 -8.92972 H STM IE M 04 0 119 Europe/Dublin 2010-08-14 +3292627 Aldworth’s Bridge Aldworth's Bridge 52.21778 -9.02139 P PPLL IE M 04 0 171 Europe/Dublin 2010-08-14 +3292628 Anne’s Bridge Anne's Bridge 52.20944 -9.02611 P PPLL IE M 04 0 172 Europe/Dublin 2010-08-14 +3292629 Gortearagh Gortearagh 52.17917 -9.03583 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292630 Maulyclickeen Maulyclickeen 52.15167 -9.05556 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292631 Dromskarragh Dromskarragh 52.15722 -9.12583 L LCTY IE M 04 0 190 Europe/Dublin 2010-08-14 +3292632 Urraghil Urraghil 52.16111 -9.11556 P PPL IE M 04 0 204 Europe/Dublin 2010-08-14 +3292633 Islanday Islanday 52.16472 -9.09139 L LCTY IE M 04 0 177 Europe/Dublin 2010-08-14 +3292634 Tooreenavuscaun Tooreenavuscaun 52.17083 -9.11722 P PPL IE M 04 0 224 Europe/Dublin 2010-08-14 +3292635 Keel Keel 52.17444 -9.08278 P PPL IE M 04 0 170 Europe/Dublin 2010-08-14 +3292636 Bawananee Bawananee 52.17944 -9.08056 P PPL IE M 04 0 174 Europe/Dublin 2010-08-14 +3292637 Knockmanagh Knockmanagh 52.18667 -9.07222 P PPL IE M 04 0 167 Europe/Dublin 2010-08-14 +3292638 Meens Meens 52.19389 -9.10083 P PPL IE M 04 0 216 Europe/Dublin 2010-08-14 +3292639 Knocknamucklagh Knocknamucklagh 52.18056 -9.12861 L LCTY IE M 04 0 241 Europe/Dublin 2010-08-14 +3292640 Knockeenadallane Knockeenadallane 52.16167 -9.18694 L LCTY IE M 04 0 228 Europe/Dublin 2010-08-14 +3292641 Doonasleen Doonasleen 52.15111 -9.16361 P PPL IE M 04 0 202 Europe/Dublin 2010-08-14 +3292642 Tooreenclassagh Tooreenclassagh 52.14611 -9.20861 L LCTY IE M 04 0 193 Europe/Dublin 2010-08-14 +3292643 Glenreagh Glenreagh 52.17722 -9.19556 L LCTY IE M 04 0 251 Europe/Dublin 2010-08-14 +3292644 Rascalstreet Rascalstreet 52.19694 -9.16806 P PPL IE M 04 0 277 Europe/Dublin 2010-08-14 +3292645 Knocknanagh Knocknanagh 52.19972 -9.14111 L LCTY IE M 04 0 267 Europe/Dublin 2010-08-14 +3292646 Shanavoher Shanavoher 52.19944 -9.20528 P PPL IE M 04 0 280 Europe/Dublin 2010-08-14 +3292647 Glentanedowney Glentanedowney 52.20833 -9.17667 L LCTY IE M 04 0 287 Europe/Dublin 2010-08-14 +3292648 Garrison School Garrison School 52.21444 -9.19333 S SCH IE M 04 0 294 Europe/Dublin 2010-08-14 +3292649 Foilard Foilard 52.2175 -9.16083 T MT IE M 04 0 349 304 Europe/Dublin 2010-08-14 +3292650 Bllueford Bllueford 52.20806 -9.1025 L LCTY IE M 04 0 215 Europe/Dublin 2010-08-14 +3292651 Glenlara Glenlara 52.22472 -9.09778 T HLL IE M 04 0 270 234 Europe/Dublin 2010-08-14 +3292652 Ballyduane Ballyduane 52.20833 -9.06278 L LCTY IE M 04 0 175 Europe/Dublin 2010-08-14 +3292653 Meens Meens 52.23417 -9.05111 L LCTY IE M 04 0 239 Europe/Dublin 2010-08-14 +3292654 Inchantatane Inchantatane 52.23417 -9.10083 P PPL IE M 04 0 276 Europe/Dublin 2010-08-14 +3292655 Groanrea Groanrea 52.22861 -9.18333 L LCTY IE M 04 0 304 Europe/Dublin 2010-08-14 +3292656 Lismire Lismire 52.22694 -8.94556 P PPL IE M 04 0 171 Europe/Dublin 2010-08-14 +3292657 Castlemacauliffe Long Bridge Castlemacauliffe Long Bridge 52.19167 -9.02778 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292658 Streamhill House Streamhill House 52.25361 -8.58056 S HSEC IE M 04 0 103 Europe/Dublin 2010-08-14 +3292659 Skahinagh House Skahinagh House 52.25111 -8.5525 S HSEC IE M 04 0 98 Europe/Dublin 2010-08-14 +3292660 Kilcolman Kilcolman 52.24694 -8.62778 L LCTY IE M 04 0 104 Europe/Dublin 2010-08-14 +3292661 Bantigeen Cross Roads Bantigeen Cross Roads 52.25389 -8.60694 P PPLL IE M 04 0 103 Europe/Dublin 2010-08-14 +3292662 Spital Spital 52.25083 -8.65472 P PPL IE M 04 0 121 Europe/Dublin 2010-08-14 +3292663 Ballyhoura Ballyhoura 52.27528 -8.64778 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292664 Woodville Woodville 52.275 -8.65833 L LCTY IE M 04 0 141 Europe/Dublin 2010-08-14 +3292665 Bregage Cross Roads Bregage Cross Roads 52.24278 -8.70333 P PPLL IE M 04 0 133 Europe/Dublin 2010-08-14 +3292666 Ballinguil Ballinguil 52.26139 -8.67972 L LCTY IE M 04 0 114 Europe/Dublin 2010-08-14 +3292667 Currymount House Currymount House 52.24 -8.73222 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292668 Mountbridget Mountbridget 52.245 -8.73583 T MT IE M 04 0 151 Europe/Dublin 2010-08-14 +3292669 Egmont Cottage Egmont Cottage 52.25861 -8.7325 S HSE IE M 04 0 146 Europe/Dublin 2010-08-14 +3292670 Ballindillanig Ballindillanig 52.27611 -8.7175 P PPL IE M 04 0 138 Europe/Dublin 2010-08-14 +3292671 Ballynageragh Ballynageragh 52.28472 -8.715 P PPL IE M 04 0 128 Europe/Dublin 2010-08-14 +3292672 Gubleagh House Gubleagh House 52.29306 -8.72639 S HSEC IE M 04 0 147 Europe/Dublin 2010-08-14 +3292673 Tooreen Tooreen 52.29167 -8.55556 P PPL IE M 04 0 312 Europe/Dublin 2010-08-14 +3292674 Knockafutera Knockafutera 52.30222 -8.5975 T MT IE M 04 0 362 304 Europe/Dublin 1997-10-15 +3292675 Knightsgrove Knightsgrove 52.31889 -8.61111 L LCTY IE M 04 0 188 Europe/Dublin 1997-10-15 +3292676 Ardskeagh Cross Roads Ardskeagh Cross Roads 52.33389 -8.62806 P PPLL IE M 04 0 123 Europe/Dublin 2010-08-14 +3292677 Garrane River Garrane River 52.32083 -8.66083 H STM IE M 04 0 121 Europe/Dublin 2010-08-14 +3292678 Rathmorgan Rathmorgan 52.34056 -8.65444 P PPL IE M 04 0 122 Europe/Dublin 2010-08-14 +3292679 Charter House Charter House 52.34167 -8.66306 S HSEC IE M 04 0 112 Europe/Dublin 2010-08-14 +3292680 Garrane Cross Roads Garrane Cross Roads 52.32028 -8.61861 P PPLL IE M 04 0 168 Europe/Dublin 2010-08-14 +3292681 Glanmore Glanmore 52.31583 -8.63667 S EST IE M 04 0 155 Europe/Dublin 2010-08-14 +3292682 Newtown Newtown 52.3075 -8.6575 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292683 Castle Wrixon Castle Wrixon 52.30083 -8.64306 P PPLL IE M 04 0 164 Europe/Dublin 2010-08-14 +3292684 Turnpike Turnpike 52.32694 -8.68694 L LCTY IE M 04 0 121 Europe/Dublin 2010-08-14 +3292685 Cooliney House Cooliney House 52.31889 -8.71611 S HSEC IE M 04 0 143 Europe/Dublin 2010-08-14 +3292686 Ballynatrideen Ballynatrideen 52.31111 -8.70444 P PPL IE M 04 0 130 Europe/Dublin 2010-08-14 +3292687 Rathnacally Rathnacally 52.32722 -8.71861 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292688 Fortlands House Fortlands House 52.34972 -8.70083 S HSEC IE M 04 0 117 Europe/Dublin 2010-08-14 +3292689 Killare Killare 52.33833 -8.73861 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +3292690 Milltown Cross Roads Milltown Cross Roads 52.33167 -8.73306 P PPLL IE M 04 0 157 Europe/Dublin 2010-08-14 +3292691 Charleville Park Charleville Park 52.36611 -8.69139 L PRK IE M 04 0 89 Europe/Dublin 2010-08-14 +3292692 Gortskagh House Gortskagh House 52.36333 -8.71583 S HSEC IE M 04 0 87 Europe/Dublin 2010-08-14 +3292693 Oakfront House Oakfront House 52.33111 -8.75278 S HSEC IE M 04 0 148 Europe/Dublin 2010-08-14 +3292694 Ballynakilla Ballynakilla 52.36 -8.79056 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3292695 Laragh Laragh 52.355 -8.83306 P PPL IE M 04 0 115 Europe/Dublin 2010-08-14 +3292696 Kilbolane Castle Kilbolane Castle 52.33861 -8.85056 S CSTL IE M 04 0 138 Europe/Dublin 2010-08-14 +3292697 Boolard Boolard 52.32472 -8.76528 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3292698 Ardglass Ardglass 52.31472 -8.75861 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3292699 Killabraher Killabraher 52.30417 -8.77917 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292700 Woodmore Hill Woodmore Hill 52.28167 -8.74667 T HLL IE M 04 0 151 Europe/Dublin 2010-08-14 +3292701 Rath Rath 52.27833 -8.73611 P PPL IE M 04 0 149 Europe/Dublin 2010-08-14 +3292702 Teeveeny House Teeveeny House 52.29417 -8.80806 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292703 Aughrim House Aughrim House 52.28694 -8.82667 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292704 Knockardbane Knockardbane 52.26611 -8.8025 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292705 Cregane House Cregane House 52.25694 -8.77028 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3292706 Gurteenroe Gurteenroe 52.24694 -8.77694 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292707 Knockagolig Knockagolig 52.245 -8.86139 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292708 Kilberrihert Kilberrihert 52.26222 -8.87833 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292709 Tarrant’s Cross Roads Tarrant's Cross Roads 52.28583 -8.87389 P PPLL IE M 04 0 148 Europe/Dublin 2010-08-14 +3292710 Ballinla Ballinla 52.29222 -8.85556 P PPL IE M 04 0 140 Europe/Dublin 2010-08-14 +3292711 Barrack Cross Roads Barrack Cross Roads 52.30472 -8.85778 P PPLL IE M 04 0 137 Europe/Dublin 2010-08-14 +3292712 Bowenford Cross Roads Bowenford Cross Roads 52.31972 -8.85139 P PPLL IE M 04 0 140 Europe/Dublin 2010-08-14 +3292713 Farthingville Farthingville 52.31944 -8.83833 L LCTY IE M 04 0 130 Europe/Dublin 2010-08-14 +3292714 Deel River Deel River 52.32306 -8.85028 H STM IE M 04 0 140 Europe/Dublin 1997-10-15 +3292715 Mullaheera River Mullaheera River 52.32333 -8.83194 H STM IE M 04 0 131 Europe/Dublin 2010-08-14 +3292716 Lishen Castle Lishen Castle 52.3225 -8.87806 S CSTL IE M 04 0 150 Europe/Dublin 2010-08-14 +3292717 Cooles Cooles 52.30694 -8.90528 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3292718 Tullylease House Tullylease House 52.31722 -8.92833 S HSEC IE M 04 0 154 Europe/Dublin 2010-08-14 +3292719 Knocktoosh Knocktoosh 52.30833 -9.00444 L LCTY IE M 16 0 177 Europe/Dublin 2010-08-14 +3292720 Glashawee River Glashawee River 52.29194 -8.98861 S HSE IE 00 0 167 Europe/Dublin 1997-10-15 +3292721 Ballynaguilla Ballynaguilla 52.28944 -8.9725 L LCTY IE M 04 0 168 Europe/Dublin 2010-08-14 +3292722 Raheen Bridge Raheen Bridge 52.28833 -8.93194 P PPLL IE M 04 0 154 Europe/Dublin 2010-08-14 +3292723 Knocksavane Knocksavane 52.28444 -9.00361 L LCTY IE M 04 0 205 Europe/Dublin 2010-08-14 +3292724 Knockeel Knockeel 52.26972 -8.93639 L LCTY IE M 04 0 170 Europe/Dublin 2010-08-14 +3292725 Rowls Noonan Rowls Noonan 52.28111 -9.02472 L LCTY IE M 04 0 258 Europe/Dublin 2010-08-14 +3292726 Gooseberryhill Gooseberryhill 52.26472 -9.00306 L LCTY IE M 04 0 231 Europe/Dublin 2010-08-14 +3292727 The Rodney The Rodney 52.26 -8.92583 P PPL IE M 04 0 168 Europe/Dublin 2010-08-14 +3292728 Tobernaclougha Cross Roads Tobernaclougha Cross Roads 52.25194 -9.02528 P PPLL IE M 04 0 249 Europe/Dublin 2010-08-14 +3292729 Carrigcastle House Carrigcastle House 52.24222 -8.96 S HSEC IE M 04 0 191 Europe/Dublin 2010-08-14 +3292730 Barleyhill Barleyhill 52.24111 -8.98694 P PPL IE M 04 0 175 Europe/Dublin 2010-08-14 +3292731 Kilknockare Kilknockare 52.25389 -8.91944 L LCTY IE M 04 0 162 Europe/Dublin 2010-08-14 +3292732 Rowls Allen Rowls Allen 52.29194 -9.03917 P PPL IE M 04 0 288 Europe/Dublin 2010-08-14 +3292733 Rock Hill Rock Hill 52.31667 -9.11861 T MT IE M 04 0 391 307 Europe/Dublin 2010-08-14 +3292734 Brosneen Brosneen 52.31056 -9.07917 T MT IE M 04 0 366 304 Europe/Dublin 2010-08-14 +3292735 Banane Banane 52.30889 -9.04556 T MT IE M 04 0 317 306 Europe/Dublin 2010-08-14 +3292736 Milleen Milleen 52.32222 -9.16417 L LCTY IE M 04 0 308 Europe/Dublin 2010-08-14 +3292737 Meennaraheeny Meennaraheeny 52.30139 -9.20028 L LCTY IE M 04 0 218 Europe/Dublin 2010-08-14 +3292738 Knockanebane Knockanebane 52.29139 -9.10611 L LCTY IE M 04 0 306 Europe/Dublin 2010-08-14 +3292739 Cummery Connell Cummery Connell 52.28806 -9.07056 L LCTY IE M 04 0 305 Europe/Dublin 2010-08-14 +3292740 Meentinny Meentinny 52.28139 -9.09889 L LCTY IE M 04 0 307 Europe/Dublin 2010-08-14 +3292741 Tooreennagrena Tooreennagrena 52.27694 -9.13806 L LCTY IE M 04 0 294 Europe/Dublin 2010-08-14 +3292742 Glenacarney Glenacarney 52.275 -9.17833 L LCTY IE M 04 0 261 Europe/Dublin 2010-08-14 +3292743 Glennaknockane Glennaknockane 52.26722 -9.1675 L LCTY IE M 04 0 267 Europe/Dublin 2010-08-14 +3292744 Knockacummer Knockacummer 52.26806 -9.09222 T MT IE M 04 0 409 306 Europe/Dublin 2010-08-14 +3292745 Meelin Hill Meelin Hill 52.26917 -9.03694 T MT IE M 04 0 284 Europe/Dublin 2010-08-14 +3292746 Knockaunararrig Knockaunararrig 52.25444 -9.07 T MT IE M 04 0 309 285 Europe/Dublin 2010-08-14 +3292747 Knockacluggin Knockacluggin 52.25917 -9.10583 T MT IE M 04 0 381 306 Europe/Dublin 2010-08-14 +3292748 Meengorman Meengorman 52.24861 -9.07139 L LCTY IE M 04 0 270 Europe/Dublin 2010-08-14 +3292749 Tooreendermot Tooreendermot 52.24333 -9.10194 P PPL IE M 04 0 295 Europe/Dublin 2010-08-14 +3292750 Glasheenanargid Glasheenanargid 52.25028 -9.14889 P PPL IE M 04 0 304 Europe/Dublin 2010-08-14 +3292751 Foiladaun Foiladaun 52.25944 -9.15944 P PPL IE M 04 0 292 Europe/Dublin 2010-08-14 +3292752 Glenawaddra Glenawaddra 52.24361 -9.16972 T MT IE M 04 0 376 309 Europe/Dublin 2010-08-14 +3292753 Torreenfineen Torreenfineen 52.25056 -9.20639 T MT IE M 04 0 310 289 Europe/Dublin 2010-08-14 +3292754 Knockaclarig Knockaclarig 52.27444 -9.20389 T HLL IE M 04 0 286 246 Europe/Dublin 2010-08-14 +3292755 Taur Taur 52.23778 -9.12722 T MT IE M 04 0 411 308 Europe/Dublin 2010-08-14 +3293262 Cappanagoul Cappanagoul 52.27139 -8.84778 P PPL IE M 11 0 150 Europe/Dublin 2010-08-14 +3293263 Kealduff River Kealduff River 51.89389 -9.78222 H STM IE M 11 0 79 Europe/Dublin 2010-08-14 +3293264 Bunsheelin River Bunsheelin River 51.83333 -9.11667 H STM IE M 04 0 150 Europe/Dublin 2010-08-14 +3293265 River Martin River Martin 51.92944 -8.57167 H STM IE M 04 0 70 Europe/Dublin 2010-08-14 +3293485 Keameen Point Keameen Point 51.54639 -8.90694 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293486 Ringlea Point Ringlea Point 51.55139 -8.89778 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293487 Ballynoe Ballynoe 51.55333 -8.91222 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3293488 Donoure Donoure 51.55444 -8.95778 P PPLL IE M 04 0 12 Europe/Dublin 2010-08-14 +3293489 Greenfield House Greenfield House 51.57028 -8.93 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3293490 Duneen Duneen 51.5775 -8.88167 P PPLL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293491 Duneen Bay Duneen Bay 51.58028 -8.87778 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293492 Dundeady Island Dundeady Island 51.53167 -8.95611 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293493 Pallas Pallas 51.59222 -8.90861 P PPL IE M 04 0 66 Europe/Dublin 2010-08-14 +3293494 Hayes Cross Roads Hayes Cross Roads 51.59056 -8.94778 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293495 Muckruss House Muckruss House 51.58722 -8.89056 S HSEC IE M 04 0 55 Europe/Dublin 2010-08-14 +3293496 Muckruss Head Muckruss Head 51.58972 -8.87361 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293497 Ring Head Ring Head 51.59278 -8.85472 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293498 Virgin Mary’s Rock Virgin Mary's Rock 51.59333 -8.87333 T RK IE M 04 0 1 Europe/Dublin 2010-08-14 +3293499 Carhoo Carhoo 51.60917 -8.93083 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293500 Ballyduvane Ballyduvane 51.61694 -8.94028 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293501 Youghals House Youghals House 51.61583 -8.88861 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3293502 South Ring South Ring 51.60611 -8.85361 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293503 Ballymacwilliam Ballymacwilliam 51.61222 -8.85583 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293504 Garralacka Garralacka 51.62194 -8.96278 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293505 Leganagh Point Leganagh Point 51.57 -8.72 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293506 Bird Island Bird Island 51.57139 -8.78389 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293507 Cow Rock Cow Rock 51.57778 -8.78611 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293508 Dunworty Bay Dunworty Bay 51.58083 -8.77417 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293509 Lion’s Cove Lion's Cove 51.58806 -8.79333 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293510 Ballymacredmond Ballymacredmond 51.57778 -8.74944 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +3293511 Carrigeen Carrigeen 51.59 -8.73722 L LCTY IE M 04 0 41 Europe/Dublin 2010-08-14 +3293512 Ballylangy House Ballylangy House 51.59306 -8.72111 S HSEC IE M 04 0 70 Europe/Dublin 2010-08-14 +3293513 Rock Cottage Rock Cottage 51.59361 -8.76944 S HSE IE M 04 0 1 Europe/Dublin 2010-08-14 +3293514 Lehenagh Lehenagh 51.59528 -8.77528 P PPL IE M 04 0 8 Europe/Dublin 2010-08-14 +3293515 Butlerstown House Butlerstown House 51.60361 -8.74139 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293516 Illaunbaun Illaunbaun 51.57833 -8.70583 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293517 Barryroe Barryroe 51.60972 -8.75083 L LCTY IE M 04 0 65 Europe/Dublin 2010-08-14 +3293518 Agha Agha 51.60972 -8.72833 L LCTY IE M 04 0 80 Europe/Dublin 2010-08-14 +3293519 Coolbaun Coolbaun 51.6125 -8.70222 L LCTY IE M 04 0 34 Europe/Dublin 2010-08-14 +3293520 Horse Rock Horse Rock 51.60972 -8.67278 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293521 Ardgehane Ardgehane 51.60333 -8.82972 P PPL IE M 04 0 66 Europe/Dublin 2010-08-14 +3293522 Ballinglanna Ballinglanna 51.59917 -8.83417 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293523 Aghafore Aghafore 51.61583 -8.81333 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293524 Currahevern Currahevern 51.6175 -8.77111 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3293525 Darrary Darrary 51.6275 -8.86583 L LCTY IE M 04 0 69 Europe/Dublin 2010-08-14 +3293526 Tawnies Tawnies 51.62833 -8.91139 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3293527 Sleveen Sleveen 51.64694 -8.96389 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293528 Cashelisky Cashelisky 51.64167 -8.94278 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293529 Kilgarriff House Kilgarriff House 51.63778 -8.91306 S HSEC IE M 04 0 79 Europe/Dublin 2010-08-14 +3293530 Gallanes Gallanes 51.63639 -8.87806 L LCTY IE M 04 0 62 Europe/Dublin 2010-08-14 +3293531 Shannonvale Shannonvale 51.64889 -8.91444 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293532 Ballaghhammer Bridge Ballaghhammer Bridge 51.65944 -8.92944 P PPLL IE M 04 0 71 Europe/Dublin 2010-08-14 +3293533 Letter Letter 51.65389 -8.94528 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293534 Garraneishal Garraneishal 51.66167 -8.91944 L LCTY IE M 04 0 70 Europe/Dublin 2010-08-14 +3293535 Lisselan Lisselan 51.65444 -8.87389 P PPL IE M 04 0 61 Europe/Dublin 2010-08-14 +3293536 Knockskagh Knockskagh 51.66694 -8.93028 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293537 Croppys Cross Roads Croppys Cross Roads 51.6625 -8.86111 P PPLL IE M 04 0 69 Europe/Dublin 2010-08-14 +3293538 Bateman’s Lake Bateman's Lake 51.66583 -8.86944 H LK IE M 04 0 75 Europe/Dublin 2010-08-14 +3293539 Carrig Carrig 51.65917 -8.85194 T CLF IE M 04 0 68 Europe/Dublin 2010-08-14 +3293540 Knock Knock 51.68833 -8.95306 P PPLL IE M 04 0 75 Europe/Dublin 2010-08-14 +3293541 Ballinard Ballinard 51.70528 -8.95222 T HLL IE M 04 0 216 76 Europe/Dublin 2010-08-14 +3293542 Kilmoylerane South Kilmoylerane South 51.685 -8.90139 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +3293543 Ahqunboy Ahqunboy 51.69361 -8.89 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293544 Clashflugh Cross Roads Clashflugh Cross Roads 51.63528 -8.82667 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293545 Fort Prospect Fort Prospect 51.63889 -8.83972 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293546 Ballinoroher Ballinoroher 51.64667 -8.83472 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +3293547 Killavarrig Killavarrig 51.65556 -8.81556 L LCTY IE M 04 0 62 Europe/Dublin 2010-08-14 +3293548 Ummera House Ummera House 51.65528 -8.77806 S HSEC IE M 04 0 62 Europe/Dublin 2010-08-14 +3293549 Maryborough House Maryborough House 51.65083 -8.7575 S HSEC IE M 04 0 9 Europe/Dublin 2010-08-14 +3293550 Ballycatteen House Ballycatteen House 51.66167 -8.75639 S HSEC IE M 04 0 42 Europe/Dublin 2010-08-14 +3293551 Spital Bridge Spital Bridge 51.635 -8.77611 P PPLL IE M 04 0 50 Europe/Dublin 2010-08-14 +3293552 Barryshall House Barryshall House 51.63306 -8.78528 S HSEC IE M 04 0 67 Europe/Dublin 2010-08-14 +3293553 Barryshall Barryshall 51.62833 -8.79667 L LCTY IE M 04 0 74 Europe/Dublin 2010-08-14 +3293554 Abbeymahon Abbeymahon 51.63306 -8.77528 P PPL IE M 04 0 34 Europe/Dublin 2010-08-14 +3293555 Ballincurrig Ballincurrig 51.62028 -8.73111 L LCTY IE M 04 0 74 Europe/Dublin 2010-08-14 +3293556 Clogagh Clogagh 51.67528 -8.81333 L LCTY IE M 04 0 81 Europe/Dublin 2010-08-14 +3293557 Curranvellikeen Cross Roads Curranvellikeen Cross Roads 51.68778 -8.845 P PPLL IE M 04 0 78 Europe/Dublin 2010-08-14 +3293558 Owenkeagh River Owenkeagh River 51.66444 -8.79972 H STM IE M 04 0 56 Europe/Dublin 2010-08-14 +3293559 Knockbrown Knockbrown 51.69639 -8.785 T HLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293560 Kilshinahan Kilshinahan 51.67639 -8.76694 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3293561 Barleyfield Barleyfield 51.67833 -8.74694 L LCTY IE M 04 0 87 Europe/Dublin 2010-08-14 +3293562 Maulmane Bridge Maulmane Bridge 51.69194 -8.72194 P PPLL IE M 04 0 91 Europe/Dublin 2010-08-14 +3293563 Gortnahorna House Gortnahorna House 51.68444 -8.72194 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293564 Cloonderreen Cloonderreen 51.66417 -8.74222 P PPL IE M 04 0 41 Europe/Dublin 2010-08-14 +3293565 Burren House Burren House 51.64528 -8.71722 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293566 Burren Rock Burren Rock 51.64056 -8.71472 T RK IE M 04 0 1 Europe/Dublin 2010-08-14 +3293567 Barryareigh Cross Roads Barryareigh Cross Roads 51.67167 -8.71472 P PPL IE M 04 0 79 Europe/Dublin 2010-08-14 +3293568 Flaxfort Head Flaxfort Head 51.65444 -8.70278 T CAPE IE M 04 0 46 Europe/Dublin 2010-08-14 +3293569 Harbour View Harbour View 51.64667 -8.68972 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293570 Coolmain Point Coolmain Point 51.63556 -8.665 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293571 Coolmain Castle Coolmain Castle 51.64972 -8.67167 S CSTL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293572 Garranereagh House Garranereagh House 51.66444 -8.67528 S HSEC IE M 04 0 39 Europe/Dublin 2010-08-14 +3293573 Clonbouig Clonbouig 51.68667 -8.67722 L LCTY IE M 04 0 80 Europe/Dublin 2010-08-14 +3293574 Crushnalanmy Cross Roads Crushnalanmy Cross Roads 51.69556 -8.66472 P PPLL IE M 04 0 89 Europe/Dublin 2010-08-14 +3293575 Ramsey Hill Ramsey Hill 51.62861 -8.69694 T HLL IE M 04 0 1 Europe/Dublin 2010-08-14 +3293576 Broadstrand Bay Broadstrand Bay 51.61722 -8.70667 H BAY IE M 04 0 9 Europe/Dublin 2010-08-14 +3293577 Barrel Rock Barrel Rock 51.61722 -8.62778 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293578 Ringalurisky Point Ringalurisky Point 51.625 -8.56722 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293579 Carrigbroigoill Carrigbroigoill 51.63667 -8.63333 T CLF IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293580 Laherne Laherne 51.64528 -8.59556 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +3293581 Ballymagaragh Ballymagaragh 51.64778 -8.62472 L LCTY IE M 04 0 15 Europe/Dublin 2010-08-14 +3293582 Clashreagh Clashreagh 51.65667 -8.63722 P PPL IE M 04 0 57 Europe/Dublin 2010-08-14 +3293583 Sea View Sea View 51.65083 -8.645 P PPLL IE M 04 0 48 Europe/Dublin 2010-08-14 +3293584 Artiteige Artiteige 51.6725 -8.64639 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3293585 Ballinvronig Ballinvronig 51.6825 -8.64889 P PPL IE M 04 0 129 Europe/Dublin 2010-08-14 +3293586 Kilkerran Kilkerran 51.67917 -8.60806 L LCTY IE M 04 0 86 Europe/Dublin 2010-08-14 +3293587 Ballincurrig Ballincurrig 51.65944 -8.5975 L LCTY IE M 04 0 65 Europe/Dublin 2010-08-14 +3293588 Ballyrub Ballyrub 51.66139 -8.57167 L LCTY IE M 04 0 73 Europe/Dublin 2010-08-14 +3293589 Oldcourt Oldcourt 51.67056 -8.57083 P PPL IE M 04 0 80 Europe/Dublin 2010-08-14 +3293590 Fort Arthur Fort Arthur 51.675 -8.57639 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293591 Ballyhander Ballyhander 51.69083 -8.60167 P PPLL IE M 04 410 82 Europe/Dublin 2010-08-14 +3293592 Currahoo Currahoo 51.6925 -8.59306 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293790 Curlaun Rock Curlaun Rock 51.64139 -8.58222 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293791 Kilcolman Kilcolman 51.64833 -8.58056 L LCTY IE M 04 0 2 Europe/Dublin 2010-08-14 +3293792 Sandy Cove Island Sandy Cove Island 51.67617 -8.51921 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293793 Ardkilly Ardkilly 51.68333 -8.54167 L LCTY IE M 04 0 72 Europe/Dublin 2010-08-14 +3293794 Barrel Cross Roads Barrel Cross Roads 51.68444 -8.57278 P PPLL IE M 04 0 75 Europe/Dublin 2010-08-14 +3293795 Knockroe Knockroe 51.69028 -8.52333 T HLL IE M 04 0 74 1 Europe/Dublin 2010-08-14 +3293796 Castle Park Castle Park 51.69889 -8.51806 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3293797 Sally Port Sally Port 51.69222 -8.49972 P PPLL IE M 04 0 37 Europe/Dublin 2010-08-14 +3293798 Preghane Preghane 51.68389 -8.49194 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293799 Rathmore House Rathmore House 51.70139 -8.47083 S HSE IE M 04 0 49 Europe/Dublin 2010-08-14 +3293800 Ballywilliam Ballywilliam 51.70167 -8.59056 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3293801 Walton Court Walton Court 51.70222 -8.43917 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3293802 Big Doon Big Doon 51.69361 -8.42722 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +3293803 Kill House Kill House 51.705 -8.9025 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293804 Balllyvoige Balllyvoige 51.71083 -8.93389 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293805 Garranelahan Cross Roads Garranelahan Cross Roads 51.70722 -8.85417 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293806 Caskelmore House Caskelmore House 51.70889 -8.83528 S HSEC IE M 04 0 87 Europe/Dublin 2010-08-14 +3293807 Breaghna Breaghna 51.72056 -8.90778 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293808 Shanaway East Shanaway East 51.72167 -8.96417 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293809 The Hatters Cross Roads The Hatters Cross Roads 51.73222 -8.95389 P PPLL IE M 04 0 74 Europe/Dublin 2010-08-14 +3293810 Pike Cross Roads Pike Cross Roads 51.72472 -8.8625 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293811 Kilcoman Kilcoman 51.73111 -8.87694 L LCTY IE M 04 0 73 Europe/Dublin 2010-08-14 +3293812 Kilcolman Park Kilcolman Park 51.735 -8.87667 L PRK IE M 04 0 72 Europe/Dublin 2010-08-14 +3293813 Clonomara Clonomara 51.76139 -8.94889 L LCTY IE M 04 0 112 Europe/Dublin 2010-08-14 +3293814 Belrose Belrose 51.7675 -8.95583 L LCTY IE M 04 0 142 Europe/Dublin 2010-08-14 +3293815 Killaneer House Killaneer House 51.765 -8.90306 S HSEC IE M 04 0 92 Europe/Dublin 2010-08-14 +3293816 Crossaphreaghaun Crossaphreaghaun 51.75528 -8.92139 L LCTY IE M 04 0 79 Europe/Dublin 2010-08-14 +3293817 Palace Anne Palace Anne 51.74833 -8.89583 S HSEC IE M 04 0 74 Europe/Dublin 2010-08-14 +3293818 Gardeville Gardeville 51.74389 -8.93861 L LCTY IE M 04 0 81 Europe/Dublin 2010-08-14 +3293819 Bromavane House Bromavane House 51.74833 -8.86889 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293820 Scrahane Cross Roads Scrahane Cross Roads 51.76556 -8.885 P PPLL IE M 04 0 101 Europe/Dublin 2010-08-14 +3293821 Wallbrook House Wallbrook House 51.75139 -8.83778 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293822 Mawmore House Mawmore House 51.74806 -8.83028 S HSEC IE M 04 0 71 Europe/Dublin 2010-08-14 +3293823 Lissarourke Lissarourke 51.78472 -8.92417 P PPL IE M 04 0 147 Europe/Dublin 2010-08-14 +3293824 Cross Sheelavarra Cross Sheelavarra 51.78444 -8.87444 P PPL IE M 04 0 155 Europe/Dublin 2010-08-14 +3293825 Killaneer Cross Roads Killaneer Cross Roads 51.77889 -8.90417 P PPLL IE M 04 0 132 Europe/Dublin 2010-08-14 +3293826 Farranthomas Farranthomas 51.77667 -8.89306 P PPL IE M 04 0 136 Europe/Dublin 2010-08-14 +3293827 Parkbane Parkbane 51.79111 -8.86528 P PPL IE M 04 0 155 Europe/Dublin 2010-08-14 +3293828 Tanyara Bridge Tanyara Bridge 51.7925 -8.83778 P PPLL IE M 04 0 153 Europe/Dublin 2010-08-14 +3293829 Farranhavane House Farranhavane House 51.78611 -8.81222 S HSEC IE M 04 0 133 Europe/Dublin 2010-08-14 +3293830 Bandon Water Works Bandon Water Works 51.77417 -8.82861 S WTRW IE M 04 0 114 Europe/Dublin 2010-08-14 +3293831 Ballagheloghane Cross Roads Ballagheloghane Cross Roads 51.76583 -8.81889 P PPLL IE M 04 0 90 Europe/Dublin 2010-08-14 +3293832 Killowen Glen Killowen Glen 51.73917 -8.86028 T VAL IE M 04 0 71 Europe/Dublin 2010-08-14 +3293833 Roughgrove House Roughgrove House 51.77056 -8.805 S HSEC IE M 04 0 92 Europe/Dublin 2010-08-14 +3293834 Mount Bernard Mount Bernard 51.74944 -8.82389 S EST IE M 04 0 71 Europe/Dublin 2010-08-14 +3293835 Garteen Cross Roads Garteen Cross Roads 51.74028 -8.81583 P PPLL IE M 04 0 74 Europe/Dublin 2010-08-14 +3293836 Old Port House Old Port House 51.79278 -8.78833 P PPL IE M 04 0 118 Europe/Dublin 2010-08-14 +3293837 Finnis Finnis 51.78167 -8.77667 L LCTY IE M 04 0 80 Europe/Dublin 2010-08-14 +3293838 Tinker’s Cross Roads Tinker's Cross Roads 51.76 -8.79611 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293839 Curteen House Curteen House 51.76306 -8.76278 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293840 Shinagh House Shinagh House 51.75028 -8.79389 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293841 Mishells House Mishells House 51.77194 -8.75028 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293842 Gallatrim Gallatrim 51.76472 -8.75417 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +3293843 Castlenalact Lake Castlenalact Lake 51.79417 -8.75583 H LK IE M 04 0 83 Europe/Dublin 2010-08-14 +3293844 Sall River Sall River 51.78222 -8.74167 H STM IE M 04 0 75 Europe/Dublin 2010-08-14 +3293845 Castlenalact Castlenalact 51.78639 -8.74361 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293846 Kilbrona Cross Roads Kilbrona Cross Roads 51.75639 -8.74194 P PPLL IE M 04 0 69 Europe/Dublin 2010-08-14 +3293847 Ballymahane River Ballymahane River 51.78694 -8.71083 H STM IE M 04 0 70 Europe/Dublin 2010-08-14 +3293848 Killountain Killountain 51.73944 -8.7925 L LCTY IE M 04 0 73 Europe/Dublin 2010-08-14 +3293849 The Farm The Farm 51.73528 -8.80639 S EST IE M 04 0 73 Europe/Dublin 2010-08-14 +3293850 Cross Mahon Cross Mahon 51.7275 -8.78 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293851 Milton House Milton House 51.72722 -8.76861 S HSE IE M 04 0 76 Europe/Dublin 2010-08-14 +3293852 Hoe Lodge Hoe Lodge 51.72056 -8.79278 S HSEC IE M 04 0 74 Europe/Dublin 2010-08-14 +3293853 Hare Hill Hare Hill 51.72167 -8.81083 S EST IE M 04 0 80 Europe/Dublin 2010-08-14 +3293854 Kilhessen Lodge Kilhessen Lodge 51.71389 -8.79611 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3293855 Bridewell River Bridewell River 51.73778 -8.765 H STM IE M 04 0 72 Europe/Dublin 2010-08-14 +3293856 Bullinacurra House Bullinacurra House 51.79417 -8.71806 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3293857 Saint Patrick’s Saint Patrick's 51.78944 -8.67083 S CH IE M 04 0 75 Europe/Dublin 2010-08-14 +3293858 Spread’s Cross Roads Spread's Cross Roads 51.78194 -8.66528 P PPLL IE M 04 0 77 Europe/Dublin 2010-08-14 +3293859 Brinny Brinny 51.78944 -8.70389 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +3293860 Cor Castle Cor Castle 51.76667 -8.67778 S CSTL IE M 04 0 67 Europe/Dublin 2010-08-14 +3293861 Ballylangley Ballylangley 51.75861 -8.70944 P PPL IE M 04 0 68 Europe/Dublin 2010-08-14 +3293862 Killountane Killountane 51.78 -8.64583 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293863 Barna Cross Roads Barna Cross Roads 51.78861 -8.64083 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293864 Ray Bridge Ray Bridge 51.785 -8.61028 P PPLL IE M 04 0 74 Europe/Dublin 2010-08-14 +3293865 Hawthorn Hill Hawthorn Hill 51.77111 -8.615 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293866 Clouracaun Clouracaun 51.76361 -8.63 L LCTY IE M 04 0 73 Europe/Dublin 2010-08-14 +3293867 Skeugh Cross Roads Skeugh Cross Roads 51.76278 -8.60333 P PPLL IE M 04 0 78 Europe/Dublin 2010-08-14 +3293868 Knockroe Knockroe 51.75 -8.67 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3293869 Rock Castle Rock Castle 51.74111 -8.63667 S CSTL IE M 04 0 70 Europe/Dublin 2010-08-14 +3293870 Kilmoesimon House Kilmoesimon House 51.73306 -8.63917 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3293871 Horse Hill Horse Hill 51.72528 -8.63806 T HLL IE M 04 0 72 Europe/Dublin 2010-08-14 +3293872 Cloghane Lake Cloghane Lake 51.72694 -8.66361 H LK IE M 04 0 74 Europe/Dublin 2010-08-14 +3293873 Tullyland House Tullyland House 51.72917 -8.70389 S HSEC IE M 04 0 79 Europe/Dublin 2010-08-14 +3293874 Knockacurra Knockacurra 51.74222 -8.68667 T HLL IE M 04 0 134 76 Europe/Dublin 2010-08-14 +3293875 Brookfield Brookfield 51.73722 -8.71278 L LCTY IE M 04 0 66 Europe/Dublin 2010-08-14 +3293876 Spring Park Spring Park 51.73139 -8.71972 S EST IE M 04 0 79 Europe/Dublin 2010-08-14 +3293877 Knocknagappul House Knocknagappul House 51.71806 -8.63944 S HSEC IE M 04 0 73 Europe/Dublin 2010-08-14 +3293878 Ballydonaghy Cross Roads Ballydonaghy Cross Roads 51.74444 -8.61028 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3293879 Doon Doon 51.7225 -8.60556 L LCTY IE M 04 0 74 Europe/Dublin 2010-08-14 +3293880 Hollyhill House Hollyhill House 51.71222 -8.60028 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3293881 Knoppoge Bridge Knoppoge Bridge 51.70639 -8.67778 P PPLL IE M 04 0 107 Europe/Dublin 2010-08-14 +3293882 Killanamaul Killanamaul 51.70861 -8.735 L LCTY IE M 04 0 134 Europe/Dublin 2010-08-14 +3293883 Ballynamaul Cross Roads Ballynamaul Cross Roads 51.76722 -8.56139 P PPLL IE M 04 0 80 Europe/Dublin 2010-08-14 +3293884 Ballyregon Ballyregon 51.74778 -8.58639 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3293885 Ballythomas Ballythomas 51.72556 -8.58778 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3293886 Tisaxon Tisaxon 51.70833 -8.58556 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3294057 Skehanagh House Skehanagh House 51.79278 -8.56972 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3294058 Coolkirky House Coolkirky House 51.79056 -8.51111 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3294059 Casino Casino 51.78222 -8.53667 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3294060 Arlinstown House Arlinstown House 51.77667 -8.53917 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3294061 Heathfield Heathfield 51.76278 -8.545 L LCTY IE M 04 0 79 Europe/Dublin 2010-08-14 +3294062 Ballymartle Ballymartle 51.77472 -8.52694 P PPL IE M 04 0 77 Europe/Dublin 2010-08-14 +3294063 Coolcarron Coolcarron 51.75444 -8.52 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3294064 Gunny House Gunny House 51.78472 -8.48889 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3294065 Ballynacourty Ballynacourty 51.76722 -8.49972 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3294066 Fartha Fartha 51.76528 -8.45333 P PPL IE M 04 0 89 Europe/Dublin 2010-08-14 +3294067 Ballady Ballady 51.75361 -8.48389 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3294068 Cramer’s Court Cramer's Court 51.73694 -8.48583 S EST IE M 04 0 82 Europe/Dublin 2010-08-14 +3294069 Scart House Scart House 51.74139 -8.51528 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3294070 Pallastown House Pallastown House 51.73083 -8.49667 S HSEC IE M 04 0 85 Europe/Dublin 2010-08-14 +3294071 Oatlands Oatlands 51.73222 -8.47417 S EST IE M 04 0 77 Europe/Dublin 2010-08-14 +3294072 Knocknanav House Knocknanav House 51.72583 -8.45389 S HSEC IE M 04 0 52 Europe/Dublin 2010-08-14 +3294073 Ringnamean Wood Ringnamean Wood 51.725 -8.49 V FRST IE M 04 0 87 Europe/Dublin 2010-08-14 +3294074 Eastern Bridge Eastern Bridge 51.71917 -8.50194 P PPLL IE M 04 0 79 Europe/Dublin 2010-08-14 +3294075 Kilcawha Kilcawha 51.71583 -8.51444 L LCTY IE M 04 0 50 Europe/Dublin 2010-08-14 +3294076 Mount Long Castle Mount Long Castle 51.71722 -8.48167 S CSTL IE M 04 0 85 Europe/Dublin 2010-08-14 +3294077 Newborough House Newborough House 51.7125 -8.45472 S HSEC IE M 04 0 14 Europe/Dublin 2010-08-14 +3294078 Harbour Hill Harbour Hill 51.70667 -8.49278 T HLL IE M 04 0 68 Europe/Dublin 2010-08-14 +3294079 Ringville Ringville 51.70583 -8.46194 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294080 Roberstown Roberstown 51.78333 -8.43944 L LCTY IE M 04 0 125 Europe/Dublin 2010-08-14 +3294081 Boardee Boardee 51.78528 -8.41028 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3294082 Ballingarry Ballingarry 51.74556 -8.43972 P PPL IE M 04 0 64 Europe/Dublin 2010-08-14 +3294083 Ballinbug Ballinbug 51.75833 -8.43694 L LCTY IE M 04 0 69 Europe/Dublin 2010-08-14 +3294084 Farranbren Farranbren 51.74806 -8.39278 T HLL IE M 04 0 97 76 Europe/Dublin 2010-08-14 +3294085 Ballyvorane Ballyvorane 51.74194 -8.42056 L LCTY IE M 04 0 70 Europe/Dublin 2010-08-14 +3294086 Rosehill House Rosehill House 51.78972 -8.39139 S HSEC IE M 04 0 132 Europe/Dublin 2010-08-14 +3294087 Fahalea House Fahalea House 51.79417 -8.36667 S HSEC IE M 04 0 87 Europe/Dublin 2010-08-14 +3294088 Willowhill House Willowhill House 51.78278 -8.38028 S HSEC IE M 04 0 98 Europe/Dublin 2010-08-14 +3294089 Springhill House Springhill House 51.77 -8.36556 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3294090 Knocknamanagh Knocknamanagh 51.75417 -8.37583 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3294091 Ballindeasig House Ballindeasig House 51.73556 -8.38611 S HSEC IE M 04 0 77 Europe/Dublin 2010-08-14 +3294092 Ballybogey Ballybogey 51.71583 -8.43194 L LCTY IE M 04 0 4 Europe/Dublin 2010-08-14 +3294093 Nohaval Turrets Nohaval Turrets 51.71556 -8.40556 L LCTY IE M 04 0 6 Europe/Dublin 2010-08-14 +3294094 Reanies Cottage Reanies Cottage 51.72139 -8.3525 S HSE IE M 04 0 13 Europe/Dublin 2010-08-14 +3294095 Man of War Cove Man of War Cove 51.72111 -8.34111 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294096 Killowen Killowen 51.72722 -8.35667 L LCTY IE M 04 0 53 Europe/Dublin 2010-08-14 +3294097 Reagrove Reagrove 51.735 -8.35556 P PPL IE M 04 0 71 Europe/Dublin 2010-08-14 +3294098 Doonavanig Doonavanig 51.75556 -8.33333 L LCTY IE M 04 0 23 Europe/Dublin 2010-08-14 +3294099 Kilbeg Kilbeg 51.76333 -8.32833 P PPL IE M 04 0 34 Europe/Dublin 2010-08-14 +3294100 Myrtleville House Myrtleville House 51.785 -8.30806 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3294101 Ballinluska Ballinluska 51.78972 -8.29417 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3294102 Moneynacroha Cross Roads Moneynacroha Cross Roads 51.79611 -8.95056 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3294103 Ballinvoher Ballinvoher 51.79583 -8.92 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3294104 Green Hill Green Hill 51.80194 -8.91528 T HLL IE M 04 0 235 153 Europe/Dublin 2010-08-14 +3294105 Woodlands Woodlands 51.80722 -8.92111 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3294106 Garrenereagh Garrenereagh 51.8125 -8.96167 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3294107 Reen Reen 51.81 -8.88917 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3294108 Ballynamuck Ballynamuck 51.79861 -8.8875 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3294109 Curraclogh Curraclogh 51.82917 -8.91361 L LCTY IE M 04 0 156 Europe/Dublin 2010-08-14 +3294110 Knockacareigh Knockacareigh 51.83556 -8.93333 T HLL IE M 04 0 288 156 Europe/Dublin 2010-08-14 +3294111 Lackareagh Lackareagh 51.82889 -8.95778 T HLL IE M 04 0 276 152 Europe/Dublin 2010-08-14 +3294112 Greenville Greenville 51.84222 -8.95556 S EST IE M 04 0 152 Europe/Dublin 2010-08-14 +3294113 Poulanargid Poulanargid 51.84222 -8.93528 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3294114 Currabeha Cross Roads Currabeha Cross Roads 51.83444 -8.87722 P PPLL IE M 04 0 139 Europe/Dublin 2010-08-14 +3294115 Commons Commons 51.815 -8.84028 T HLL IE M 04 0 190 152 Europe/Dublin 2010-08-14 +3294116 Kilcondy House Kilcondy House 51.86167 -8.85333 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3294117 Lissardagh Lissardagh 51.86 -8.88 P PPL IE M 04 0 131 Europe/Dublin 2010-08-14 +3294118 Crookstown House Crookstown House 51.85639 -8.84778 S HSEC IE M 04 0 113 Europe/Dublin 2010-08-14 +3294119 Bellmount Bellmount 51.84222 -8.83333 S EST IE M 04 0 79 Europe/Dublin 2010-08-14 +3294120 Browen River Browen River 51.86139 -8.80944 H STM IE M 04 0 74 Europe/Dublin 2010-08-14 +3294121 Carrigeen Carrigeen 51.82917 -8.82944 L LCTY IE M 04 0 112 Europe/Dublin 2010-08-14 +3294122 Rye Court Rye Court 51.85917 -8.79806 S EST IE M 04 0 72 Europe/Dublin 2010-08-14 +3294123 Stickstown Stickstown 51.85472 -8.78944 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3294124 Ahaunduff Cross Roads Ahaunduff Cross Roads 51.85139 -8.79417 P PPLL IE M 04 0 74 Europe/Dublin 2010-08-14 +3294125 Ballinguilly House Ballinguilly House 51.84306 -8.79778 S HSEC IE M 04 0 78 Europe/Dublin 2010-08-14 +3294126 Rathculleen House Rathculleen House 51.83861 -8.76944 S HSEC IE M 04 0 113 Europe/Dublin 2010-08-14 +3294127 Garranes House Garranes House 51.83139 -8.76778 S HSEC IE M 04 0 129 Europe/Dublin 2010-08-14 +3294128 Strawhall Cross Roads Strawhall Cross Roads 51.82472 -8.80778 P PPLL IE M 04 0 158 Europe/Dublin 2010-08-14 +3294129 Carrigafloca Carrigafloca 51.81528 -8.81472 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3294130 Aghnamarroge Cross Roads Aghnamarroge Cross Roads 51.83639 -8.74833 P PPLL IE M 04 0 89 Europe/Dublin 2010-08-14 +3294131 Templemartin Templemartin 51.82167 -8.77972 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +3294132 Moskeagh Cross Roads Moskeagh Cross Roads 51.81944 -8.78806 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3294133 Quarry Cross Roads Quarry Cross Roads 51.8075 -8.83611 P PPLL IE M 04 0 155 Europe/Dublin 2010-08-14 +3294134 Moskeagh Moskeagh 51.81167 -8.8 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3294135 Moneen House Moneen House 51.82389 -8.74083 S HSEC IE M 04 0 99 Europe/Dublin 2010-08-14 +3294136 Scartnamuck House Scartnamuck House 51.80583 -8.76806 S HSEC IE M 04 0 111 Europe/Dublin 2010-08-14 +3294137 Mossgrove Cross Roads Mossgrove Cross Roads 51.79861 -8.85167 P PPLL IE M 04 0 153 Europe/Dublin 2010-08-14 +3294139 Aherlabeg Aherlabeg 51.86056 -8.76611 L LCTY IE M 04 0 71 Europe/Dublin 2010-08-14 +3294140 Abbey View Abbey View 51.85889 -8.71917 L LCTY IE M 04 0 71 Europe/Dublin 2010-08-14 +3294141 Black Cross Roads Black Cross Roads 51.845 -8.70111 P PPLL IE M 04 0 80 Europe/Dublin 2010-08-14 +3294142 Raheen Raheen 51.82917 -8.69694 T HLL IE M 04 0 185 89 Europe/Dublin 2010-08-14 +3294143 Tuocusheen Tuocusheen 51.81306 -8.73556 L LCTY IE M 04 0 96 Europe/Dublin 2010-08-14 +3294144 Desertmore House Desertmore House 51.85639 -8.68361 S HSEC IE M 04 0 83 Europe/Dublin 2010-08-14 +3294145 Ballymountain House Ballymountain House 51.83667 -8.70028 S HSEC IE M 04 0 86 Europe/Dublin 2010-08-14 +3294146 Ballyhandle Ballyhandle 51.81556 -8.6825 L LCTY IE M 04 0 92 Europe/Dublin 2010-08-14 +3294147 Tuough Bridge Tuough Bridge 51.81306 -8.71028 P PPLL IE M 04 0 123 Europe/Dublin 2010-08-14 +3294148 Cashel Fort Cashel Fort 51.80667 -8.71472 S FT IE M 04 0 115 Europe/Dublin 2010-08-14 +3294149 Old Chapel Cross Roads Old Chapel Cross Roads 51.80639 -8.69444 P PPLL IE M 04 0 114 Europe/Dublin 2010-08-14 +3294150 Mylane Hall Mylane Hall 51.86028 -8.67694 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3294151 Knockburden Knockburden 51.86167 -8.64722 P PPL IE M 04 0 91 Europe/Dublin 2010-08-14 +3294152 Mylane Cross Roads Mylane Cross Roads 51.84972 -8.645 P PPLL IE M 04 0 161 Europe/Dublin 2010-08-14 +3294153 Ballyhank Ballyhank 51.84417 -8.62556 L LCTY IE M 04 0 161 Europe/Dublin 2010-08-14 +3294154 Ballinhellic House Ballinhellic House 51.82444 -8.63 S HSEC IE M 04 0 103 Europe/Dublin 2010-08-14 +3294155 Fort William Fort William 51.82472 -8.65611 P PPLL IE M 04 0 101 Europe/Dublin 2010-08-14 +3294156 Ballincollig Water Works Ballincollig Water Works 51.86083 -8.60417 S WTRW IE M 04 0 86 Europe/Dublin 2010-08-14 +3294157 Corbally House Corbally House 51.85139 -8.5925 S HSEC IE M 04 0 113 Europe/Dublin 2010-08-14 +3294158 Ballyleigh Ballyleigh 51.83389 -8.59667 L LCTY IE M 04 0 159 Europe/Dublin 2010-08-14 +3294159 Warner’s Cross Roads Warner's Cross Roads 51.83056 -8.58528 P PPLL IE M 04 0 157 Europe/Dublin 2010-08-14 +3294160 Sraleigh Sraleigh 51.85 -8.58278 P PPL IE M 04 0 130 Europe/Dublin 2010-08-14 +3294161 Corran Cross Roads Corran Cross Roads 51.82028 -8.60806 P PPLL IE M 04 0 128 Europe/Dublin 2010-08-14 +3294162 Killeady Cross Roads Killeady Cross Roads 51.80722 -8.63361 P PPLL IE M 04 0 71 Europe/Dublin 2010-08-14 +3294163 Annaghmore House Annaghmore House 51.79694 -8.63528 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3294164 Aughnaboy River Aughnaboy River 51.80167 -8.64667 H STM IE M 04 0 73 Europe/Dublin 2010-08-14 +3294165 Abbey View Abbey View 51.84528 -8.56444 L LCTY IE M 04 0 132 Europe/Dublin 2010-08-14 +3294166 Ballynagrumoolia Ballynagrumoolia 51.83278 -8.56917 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3294167 Halfway Halfway 51.80556 -8.57861 L LCTY IE M 04 0 59 Europe/Dublin 2010-08-14 +3294168 Rigsdale Rigsdale 51.7975 -8.59444 L LCTY IE M 04 0 67 Europe/Dublin 2010-08-14 +3294169 Tullig Tullig 51.82639 -8.53083 T HLL IE M 04 0 162 130 Europe/Dublin 2010-08-14 +3294170 Ballynoe Ballynoe 51.83917 -8.52583 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3294171 Knockalisheen Knockalisheen 51.84889 -8.53194 L LCTY IE M 04 0 134 Europe/Dublin 2010-08-14 +3294172 Ballinsvrinsig Ballinsvrinsig 51.85472 -8.53472 L LCTY IE M 04 0 109 Europe/Dublin 2010-08-14 +3294173 Crossnacroha Crossnacroha 51.85833 -8.51556 T HLL IE M 04 0 155 129 Europe/Dublin 2010-08-14 +3294174 Chetwynd Viaduct Chetwynd Viaduct 51.86333 -8.53139 S BDG IE M 04 0 77 Europe/Dublin 2010-08-14 +3294175 Ballinaboy Ballinaboy 51.79944 -8.53167 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3294176 Sligga Bridge Sligga Bridge 51.80111 -8.49361 P PPLL IE M 04 0 75 Europe/Dublin 2010-08-14 +3294177 Meadstown Meadstown 51.81139 -8.46306 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +3294178 Ballygarvan House Ballygarvan House 51.82694 -8.48833 S HSEC IE M 04 0 67 Europe/Dublin 2010-08-14 +3294179 Fort Cross Roads Fort Cross Roads 51.83528 -8.49333 P PPLL IE M 04 0 101 Europe/Dublin 2010-08-14 +3294180 Rathmacullig Rathmacullig 51.8475 -8.49028 L LCTY IE M 04 0 111 Europe/Dublin 2010-08-14 +3294181 Cruiskeen Lodge Cruiskeen Lodge 51.86278 -8.49694 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3294182 Belvidere Belvidere 51.865 -8.48056 L LCTY IE M 04 0 84 Europe/Dublin 2010-08-14 +3294183 Willsfort House Willsfort House 51.85972 -8.4525 S HSEC IE M 04 0 89 Europe/Dublin 2010-08-14 +3294184 Bealahareagh Bridge Bealahareagh Bridge 51.82389 -8.46278 P PPLL IE M 04 0 39 Europe/Dublin 2010-08-14 +3294185 Ballea Castle Ballea Castle 51.82472 -8.42639 S CSTL IE M 04 0 15 Europe/Dublin 2010-08-14 +3294186 Ballinreeshig Ballinreeshig 51.84028 -8.45917 L LCTY IE M 04 0 85 Europe/Dublin 2010-08-14 +3294187 Rose Hill Rose Hill 51.85528 -8.44583 S HSEC IE M 04 0 109 Europe/Dublin 2010-08-14 +3294188 Killanully Killanully 51.83306 -8.45778 L LCTY IE M 04 0 26 Europe/Dublin 2010-08-14 +3294189 Johnstown Johnstown 51.86139 -8.41306 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +3294190 Mount Emla Mount Emla 51.85556 -8.42861 L LCTY IE M 04 0 93 Europe/Dublin 2010-08-14 +3294191 Hilltown House Hilltown House 51.83806 -8.39972 S HSEC IE M 04 0 64 Europe/Dublin 2010-08-14 +3294192 Balliarea Cross Balliarea Cross 51.83333 -8.41194 P PPLL IE M 04 0 38 Europe/Dublin 2010-08-14 +3294193 Ravenswood Ravenswood 51.8225 -8.41917 P PPL IE M 04 0 12 Europe/Dublin 2010-08-14 +3294194 Sarsfield’s Screens Sarsfield's Screens 51.80583 -8.43611 L LCTY IE M 04 0 66 Europe/Dublin 2010-08-14 +3294195 Coolsarlagh Coolsarlagh 51.79778 -8.4475 L LCTY IE M 04 0 104 Europe/Dublin 2010-08-14 +3294196 Stonehill House Stonehill House 51.80361 -8.39917 S HSEC IE M 04 0 67 Europe/Dublin 2010-08-14 +3294197 Mount Rivers Mount Rivers 51.81222 -8.37694 S EST IE M 04 0 7 Europe/Dublin 2010-08-14 +3294198 Dromgurriky Dromgurriky 51.85111 -8.39389 L LCTY IE M 04 0 83 Europe/Dublin 2010-08-14 +3294199 Knocknamullagh Knocknamullagh 51.86222 -8.38278 L LCTY IE M 04 0 85 Europe/Dublin 2010-08-14 +3294200 Barnahel Barnahel 51.82889 -8.35667 L LCTY IE M 04 0 11 Europe/Dublin 2010-08-14 +3294201 Frenchrurze Frenchrurze 51.80583 -8.38 L LCTY IE M 04 0 63 Europe/Dublin 2010-08-14 +3294202 Commeen Commeen 51.80139 -8.37917 L LCTY IE M 04 0 63 Europe/Dublin 2010-08-14 +3294203 The Priory The Priory 51.85861 -8.26167 L LCTY IE M 04 0 22 Europe/Dublin 2010-08-14 +3294204 Ballywilliams Ballywilliams 51.86472 -8.29528 L LCTY IE M 04 0 65 Europe/Dublin 2010-08-14 +3294205 Curraghbinny Point Curraghbinny Point 51.815 -8.29667 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294206 Long Point Long Point 51.83833 -8.24583 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294207 Hadwell Lodge Hadwell Lodge 51.84083 -8.22778 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3294208 Redington Redington 51.86472 -8.23444 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3294209 East Ferry East Ferry 51.865 -8.21028 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294210 Ardnabourkey Ardnabourkey 51.82083 -8.22778 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3294211 Buckstown Buckstown 51.83306 -8.20083 L LCTY IE M 04 0 6 Europe/Dublin 2010-08-14 +3294212 Rostellan Castle Rostellan Castle 51.855 -8.17111 S CSTL IE M 04 0 67 Europe/Dublin 2010-08-14 +3294213 Jamesbrook Hall Jamesbrook Hall 51.86556 -8.15694 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3294214 Whitewell Whitewell 51.85194 -8.16722 P PPL IE M 04 0 67 Europe/Dublin 2010-08-14 +3294215 Lurrig Lurrig 51.85278 -8.15222 P PPL IE M 04 0 71 Europe/Dublin 2010-08-14 +3294216 Rockview Rockview 51.84889 -8.15278 S EST IE M 04 0 63 Europe/Dublin 2010-08-14 +3294217 Ardra Ardra 51.82472 -8.1675 L LCTY IE M 04 0 20 Europe/Dublin 2010-08-14 +3294218 Ballybranagan Ballybranagan 51.81167 -8.14667 P PPL IE M 04 0 5 Europe/Dublin 2010-08-14 +3294219 Coolbea House Coolbea House 51.82083 -8.15 S HSEC IE M 04 0 19 Europe/Dublin 2010-08-14 +3294220 Shanahee Shanahee 51.81806 -8.13472 P PPL IE M 04 0 16 Europe/Dublin 2010-08-14 +3294221 Ballymacandrick Ballymacandrick 51.83056 -8.14333 P PPL IE M 04 0 36 Europe/Dublin 2010-08-14 +3294222 Ballyrobin South Ballyrobin South 51.81417 -8.13417 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3294223 Tullagh Tullagh 51.8275 -8.11722 L LCTY IE M 04 0 33 Europe/Dublin 2010-08-14 +3294224 Ballydavid Ballydavid 51.83694 -8.12083 L LCTY IE M 04 0 52 Europe/Dublin 2010-08-14 +3294225 Ballymaloe Ballymaloe 51.86194 -8.08861 L LCTY IE M 04 0 66 Europe/Dublin 2010-08-14 +3294226 Ballybranagh Ballybranagh 51.8575 -8.10889 L LCTY IE M 04 0 68 Europe/Dublin 2010-08-14 +3294227 Kilcrone House Kilcrone House 51.85389 -8.11833 S HSEC IE M 04 0 74 Europe/Dublin 2010-08-14 +3294228 Kilmacahill Kilmacahill 51.84944 -8.1025 L LCTY IE M 04 0 52 Europe/Dublin 2010-08-14 +3294229 Kilderrig Kilderrig 51.83583 -8.08861 L LCTY IE M 04 0 31 Europe/Dublin 2010-08-14 +3294230 Ballylanders Ballylanders 51.81639 -8.08278 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3294231 Ballyandreen Ballyandreen 51.82167 -8.05222 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3294232 Ballybraher Ballybraher 51.83528 -8.03611 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3294233 Sunville Sunville 51.84278 -8.06167 L LCTY IE M 04 0 31 Europe/Dublin 2010-08-14 +3294234 Monagurra Monagurra 51.84389 -8.03667 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3294235 Kinoith Kinoith 51.8625 -8.04972 L LCTY IE M 04 0 39 Europe/Dublin 2010-08-14 +3294236 Ballylongane Ballylongane 51.86444 -8.02833 L LCTY IE M 04 0 12 Europe/Dublin 2010-08-14 +3294237 Old Head Old Head 51.63944 -8.55167 T CAPE IE M 04 0 2 Europe/Dublin 2010-08-14 +3294451 Downdaniel Downdaniel 51.77278 -8.68139 P PPLL IE M 04 0 67 Europe/Dublin 2010-08-14 +3294452 Cummer River Cummer River 51.86694 -8.90167 H STM IE M 04 0 78 Europe/Dublin 2010-08-14 +3294453 Illaunnacaheragh Illaunnacaheragh 51.46056 -9.82278 T RK IE M 04 0 37 Europe/Dublin 2010-08-14 +3294454 Rock of the Devils Rock of the Devils 51.45583 -9.77583 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294455 Dough Dough 51.47278 -9.76889 P PPLL IE M 04 0 17 Europe/Dublin 2010-08-14 +3294456 Mallavoye Mallavoye 51.455 -9.76444 T HLL IE M 04 0 380 -9999 Europe/Dublin 2010-08-14 +3294457 Galley Cove Galley Cove 51.46056 -9.74139 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294458 Ballyvoye Ballyvoye 51.48194 -9.76222 P PPLL IE M 04 0 61 Europe/Dublin 2010-08-14 +3294459 Callaros Fighter Callaros Fighter 51.48639 -9.72472 P PPLL IE M 04 0 5 Europe/Dublin 2010-08-14 +3294460 Spanish Point Spanish Point 51.48472 -9.70417 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294461 Alderman’s Rocks Alderman's Rocks 51.47333 -9.69611 T RKS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294462 Lissagraffin Lissagraffin 51.48361 -9.78306 P PPLL IE M 04 0 62 Europe/Dublin 2010-08-14 +3294463 Dun Lough Dun Lough 51.48389 -9.83 H LK IE M 04 0 2 Europe/Dublin 2010-08-14 +3294464 Balteen Balteen 51.49889 -9.78861 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3294465 Cloghanaculleen Cloghanaculleen 51.49528 -9.73306 T HLL IE M 04 0 159 64 Europe/Dublin 2010-08-14 +3294466 Balteen Balteen 51.51139 -9.77306 T HLL IE M 04 0 113 60 Europe/Dublin 2010-08-14 +3294467 Ballydivin Ballydivin 51.50083 -9.70861 P PPL IE M 04 0 39 Europe/Dublin 2010-08-14 +3294468 Illaunricmonia Illaunricmonia 51.48472 -9.61944 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294469 Duharrig Duharrig 51.48806 -9.64222 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294470 Castle Point Castle Point 51.49361 -9.63389 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294471 Ballyrisode Point Ballyrisode Point 51.50111 -9.66806 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294472 Derryleary Derryleary 51.50833 -9.63639 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294473 Ballybrack Ballybrack 51.49917 -9.61306 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294474 Leamean House Leamean House 51.50278 -9.61778 S HSEC IE M 04 0 14 Europe/Dublin 2010-08-14 +3294475 Cove House Cove House 51.51278 -9.63861 S HSEC IE M 04 0 14 Europe/Dublin 2010-08-14 +3294476 Croagh Bay Croagh Bay 51.50639 -9.58028 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294477 Seafort Seafort 51.51139 -9.585 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +3294478 Bird Island Bird Island 51.51444 -9.77472 T ISL IE M 04 0 60 Europe/Dublin 2010-08-14 +3294479 Foilaloughaun Foilaloughaun 51.52083 -9.75139 T HLL IE M 04 0 145 106 Europe/Dublin 2010-08-14 +3294480 Dooneen Coos Dooneen Coos 51.52861 -9.72806 H COVE IE M 04 0 14 Europe/Dublin 2010-08-14 +3294481 Dunkelly Dunkelly 51.52583 -9.71111 L LCTY IE M 04 0 50 Europe/Dublin 2010-08-14 +3294482 Ballyrisode House Ballyrisode House 51.51611 -9.67222 S HSEC IE M 04 0 4 Europe/Dublin 2010-08-14 +3294483 Maulawaddra Maulawaddra 51.53861 -9.63722 P PPL IE M 04 0 50 Europe/Dublin 2010-08-14 +3294484 Lissacaha Lough Lissacaha Lough 51.53528 -9.60472 H LK IE M 04 0 77 Europe/Dublin 2010-08-14 +3294485 Ratooragh Ratooragh 51.55667 -9.60972 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3294486 Knocknageeha Knocknageeha 51.54111 -9.57639 T HLL IE M 04 0 215 78 Europe/Dublin 2010-08-14 +3294487 Mauladinna Mauladinna 51.57222 -9.59111 L LCTY IE M 04 0 146 Europe/Dublin 2010-08-14 +3294488 Cold Island Cold Island 51.56833 -9.65972 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294489 Lusk Island Lusk Island 51.56972 -9.64611 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294490 Lough Akeen Lough Akeen 51.54611 -9.84278 H LK IE M 04 0 44 Europe/Dublin 2010-08-14 +3294491 Doo Lough Doo Lough 51.55083 -9.82 H LK IE M 04 0 105 Europe/Dublin 2010-08-14 +3294492 Coolturtaun Lough Coolturtaun Lough 51.55944 -9.80083 H LK IE M 04 0 69 Europe/Dublin 2010-08-14 +3294493 Foilbeg Foilbeg 51.55472 -9.79194 L LCTY IE M 04 0 50 Europe/Dublin 2010-08-14 +3294494 Ballyroonmountain Ballyroonmountain 51.55833 -9.81694 L LCTY IE M 04 0 105 Europe/Dublin 2010-08-14 +3294495 Caher Caher 51.57139 -9.74389 P PPL IE M 04 0 85 Europe/Dublin 2010-08-14 +3294496 Letter Letter 51.57222 -9.76472 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3294497 Cahergal Cahergal 51.58361 -9.77167 L LCTY IE M 04 0 47 Europe/Dublin 2010-08-14 +3294498 Cahermountain Cahermountain 51.58528 -9.74333 T MT IE M 04 0 344 158 Europe/Dublin 2010-08-14 +3294499 Carrignacappul Carrignacappul 51.56361 -9.73056 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294500 Gortnaclasha Gortnaclasha 51.5775 -9.69861 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294501 Pointabulloge Pointabulloge 51.58528 -9.66222 T PT IE M 04 0 18 Europe/Dublin 2010-08-14 +3294502 Owen’s Island Owen's Island 51.59833 -9.63222 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294503 Golden Strand Golden Strand 51.59139 -9.65111 T BCH IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294504 Dromnear Dromnear 51.59 -9.68833 L LCTY IE M 04 0 28 Europe/Dublin 2010-08-14 +3294505 Collack Collack 51.6175 -9.70333 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294506 Glanroon Glanroon 51.59472 -9.75444 L LCTY IE M 04 0 58 Europe/Dublin 2010-08-14 +3294507 Glanalin Glanalin 51.6025 -9.72667 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294508 Gortnakilly Gortnakilly 51.61417 -9.69472 P PPL IE M 04 0 149 Europe/Dublin 2010-08-14 +3294509 Gouladoo Gouladoo 51.62056 -9.68083 P PPL IE M 04 0 90 Europe/Dublin 2010-08-14 +3294510 Rossnacaheragh Rossnacaheragh 51.61583 -9.64806 L LCTY IE M 04 0 102 Europe/Dublin 2010-08-14 +3294511 Glanrooncoosh Glanrooncoosh 51.59917 -9.74417 H COVE IE M 04 0 88 Europe/Dublin 2010-08-14 +3294512 Glanalincoosh Glanalincoosh 51.60556 -9.72028 H COVE IE M 04 0 67 Europe/Dublin 2010-08-14 +3294513 Goat’s Path Goat's Path 51.62944 -9.665 T PASS IE M 04 0 35 Europe/Dublin 2010-08-14 +3294514 Reen Point Reen Point 51.60639 -9.60722 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294515 Drishane Bridge Drishane Bridge 51.59139 -9.58333 P PPLL IE M 04 0 55 Europe/Dublin 2010-08-14 +3294516 Fort Lodge Fort Lodge 51.61389 -9.61 S HSE IE M 04 0 18 Europe/Dublin 2010-08-14 +3294517 Brahalish Brahalish 51.625 -9.58778 L LCTY IE M 04 0 63 Europe/Dublin 2010-08-14 +3294518 Dunbeacon House Dunbeacon House 51.61056 -9.56194 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294519 Indigo Rock Indigo Rock 51.64611 -9.60806 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294520 Kilmichael Kilmichael 51.59917 -10.18611 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294521 Illanebeg Illanebeg 51.60389 -10.16278 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294522 Dursey Strand Dursey Strand 51.61333 -10.16194 T BCH IE M 04 0 116 Europe/Dublin 2010-08-14 +3294523 Garnish Bay Garnish Bay 51.62194 -10.12889 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294524 White Strand White Strand 51.61583 -10.12556 T BCH IE M 04 0 26 Europe/Dublin 2010-08-14 +3294525 Knocknahulla Knocknahulla 51.61722 -10.08722 T HLL IE M 04 0 222 73 Europe/Dublin 2010-08-14 +3294526 Foher Foher 51.62278 -10.09444 L LCTY IE M 04 0 91 Europe/Dublin 2010-08-14 +3294527 Knockanerough Knockanerough 51.61694 -10.06278 T HLL IE M 04 0 202 76 Europe/Dublin 2010-08-14 +3294528 Canalough Canalough 51.59889 -10.03583 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294529 Cloghane River Cloghane River 51.60444 -10.04444 H STM IE M 04 0 45 Europe/Dublin 2010-08-14 +3294530 Matthew’s Rock Matthew's Rock 51.605 -10.00472 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294531 Caheraphuca Caheraphuca 51.61944 -10.01639 P PPL IE M 04 0 129 Europe/Dublin 2010-08-14 +3294532 Kealoge Kealoge 51.64028 -10.03278 L LCTY IE M 04 0 111 Europe/Dublin 2010-08-14 +3294533 Gour Gour 51.62972 -9.98028 L LCTY IE M 04 0 65 Europe/Dublin 2010-08-14 +3294534 Blue Islands Blue Islands 51.65444 -10.06972 T ISLS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294535 Cummeen Cummeen 51.66 -10.06861 P PPL IE M 04 0 19 Europe/Dublin 2010-08-14 +3294536 Eagle Hill Eagle Hill 51.66972 -10.07889 T HLL IE M 04 0 220 1 Europe/Dublin 2010-08-14 +3294537 Gortaghig Gortaghig 51.67306 -10.07056 T HLL IE M 04 0 1 Europe/Dublin 2010-08-14 +3294538 Reenmore Point Reenmore Point 51.68028 -10.07528 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294541 Rahis Point Rahis Point 51.68333 -10.03278 T PT IE M 04 0 6 Europe/Dublin 2010-08-14 +3294542 Carrigeel Carrigeel 51.68944 -10.02944 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294543 Ardacluggin Point Ardacluggin Point 51.69056 -9.99694 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3294544 Arch Arch 51.68889 -10.00167 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294545 Ardachuggin Ardachuggin 51.68194 -9.99806 L LCTY IE M 04 0 31 Europe/Dublin 2010-08-14 +3294546 Travara Bridge Travara Bridge 51.67778 -10.00056 P PPLL IE M 04 0 15 Europe/Dublin 2010-08-14 +3294547 Aughabrack Aughabrack 51.67556 -9.99 P PPL IE M 04 0 44 Europe/Dublin 2010-08-14 +3294548 Miskish Mountain Miskish Mountain 51.67083 -9.965 T MT IE M 04 0 269 Europe/Dublin 2010-08-14 +3294549 Teernahillane Teernahillane 51.65889 -9.98139 L LCTY IE M 04 0 139 Europe/Dublin 2010-08-14 +3294550 Knockoura Knockoura 51.64667 -9.98111 P PPL IE M 04 0 137 Europe/Dublin 2010-08-14 +3294552 Gour Bridge Gour Bridge 51.63944 -9.96361 P PPLL IE M 04 0 63 Europe/Dublin 2010-08-14 +3294553 Cahergarriff Cahergarriff 51.63083 -9.96889 L LCTY IE M 04 0 55 Europe/Dublin 2010-08-14 +3294554 Pulleen Harbor Pulleen Harbor 51.62056 -9.96944 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294555 Disert Disert 51.62222 -9.94889 L LCTY IE M 04 0 44 Europe/Dublin 2010-08-14 +3294556 Knocknaud Knocknaud 51.64333 -9.95194 P PPL IE M 04 0 87 Europe/Dublin 2010-08-14 +3294779 Shee Head Shee Head 51.61861 -9.91111 T CAPE IE M 04 0 44 Europe/Dublin 2010-08-14 +3294780 Knockanallig Knockanallig 51.63056 -9.885 L LCTY IE M 04 0 116 Europe/Dublin 2010-08-14 +3294781 Coomastooka Coomastooka 51.63389 -9.88528 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3294783 Derrycreaveen Derrycreaveen 51.63833 -9.90528 L LCTY IE M 04 0 34 Europe/Dublin 2010-08-14 +3294784 Donegan’s Point Donegan's Point 51.64889 -9.83806 T PT IE M 04 0 3 Europe/Dublin 2010-08-14 +3294785 Leahern’s Point Leahern's Point 51.63583 -9.80417 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294786 Cloonaghlin Cloonaghlin 51.63056 -9.82167 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294787 Carrigbreedia Carrigbreedia 51.62472 -9.83583 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294788 Lanehort Point Lanehort Point 51.65167 -9.78556 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294789 Coarrid Point Coarrid Point 51.65944 -9.81528 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3294791 Bank Harbor Bank Harbor 51.665 -9.79222 H HBR IE M 04 0 28 Europe/Dublin 2010-08-14 +3294792 Hill Cove Hill Cove 51.66139 -9.86278 H COVE IE M 04 0 64 Europe/Dublin 2010-08-14 +3294793 Miranekeal Miranekeal 51.65444 -9.8825 T CAPE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294794 Doucallia Doucallia 51.66139 -9.73278 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294795 Loughure Island Loughure Island 51.67222 -9.75222 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294797 Knockane Knockane 51.67056 -9.78611 L LCTY IE M 04 0 147 Europe/Dublin 2010-08-14 +3294798 Derreeny Derreeny 51.6775 -9.77083 L LCTY IE M 04 0 127 Europe/Dublin 2010-08-14 +3294799 Holly Hill Holly Hill 51.67361 -9.83611 T HLL IE M 04 0 141 Europe/Dublin 2010-08-14 +3294800 Tooreen Beg Tooreen Beg 51.68611 -9.8475 P PPL IE M 04 0 340 Europe/Dublin 2010-08-14 +3294801 Coomarkane Lake Coomarkane Lake 51.68861 -9.78472 H LK IE M 04 0 421 Europe/Dublin 2010-08-14 +3294802 Coomadavallig Lake Coomadavallig Lake 51.69889 -9.78389 H LK IE M 04 0 450 Europe/Dublin 2010-08-14 +3294803 Knocknagree Knocknagree 51.69917 -9.84444 T MT IE M 04 0 587 421 Europe/Dublin 2010-08-14 +3294805 Adrigole Mountain Adrigole Mountain 51.7075 -9.73889 T MT IE M 04 0 356 102 Europe/Dublin 2010-08-14 +3294806 Derryclancy Derryclancy 51.7075 -9.78389 T MT IE M 11 0 556 345 Europe/Dublin 2006-01-16 +3294808 Cloontreem Cloontreem 51.67528 -9.90972 L LCTY IE M 04 0 130 Europe/Dublin 2010-08-14 +3294810 Eagle Hill Eagle Hill 51.68167 -9.9075 T HLL IE M 04 0 257 153 Europe/Dublin 2010-08-14 +3294811 Kilmackowen Kilmackowen 51.69083 -9.9125 L LCTY IE M 04 0 143 Europe/Dublin 2010-08-14 +3294812 Kealincha Bridge Kealincha Bridge 51.68917 -9.93278 P PPLL IE M 04 0 90 Europe/Dublin 2010-08-14 +3294814 Kealincha River Kealincha River 51.69278 -9.97528 H STM IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294815 Crumpane Crumpane 51.69361 -9.94 P PPL IE M 04 0 92 Europe/Dublin 2010-08-14 +3294816 Gowlane Gowlane 51.69917 -9.90222 L LCTY IE M 04 0 227 Europe/Dublin 2010-08-14 +3294817 Lackawee Lackawee 51.70972 -9.8775 T MT IE M 04 0 573 222 Europe/Dublin 2010-08-14 +3294819 Eyeriesbegga Eyeriesbegga 51.69139 -9.98278 T RK IE M 04 0 18 Europe/Dublin 2010-08-14 +3294820 Eyeries Island Eyeries Island 51.70917 -9.97778 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294821 Bofickil Bofickil 51.70778 -9.95417 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +3294823 Gullamore Gullamore 51.7275 -9.99083 T HLL IE M 04 0 99 23 Europe/Dublin 2010-08-14 +3294824 Gortgarriff Gortgarriff 51.72528 -9.96889 P PPL IE M 04 0 93 Europe/Dublin 2010-08-14 +3294825 Bridaun Bridaun 51.7125 -10.03556 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294840 Barrees Barrees 51.72028 -9.91694 P PPL IE M 04 0 90 Europe/Dublin 2010-08-14 +3294841 Bunskellig Bunskellig 51.72444 -9.8925 P PPL IE M 04 0 149 Europe/Dublin 2010-08-14 +3294842 Skellig Skellig 51.72889 -9.89 T HLL IE M 04 0 217 99 Europe/Dublin 2010-08-14 +3294843 Lough Fadda Lough Fadda 51.7325 -9.93833 H LK IE M 04 0 76 Europe/Dublin 2010-08-14 +3294844 Cappul Bridge Cappul Bridge 51.74611 -9.90083 P PPLL IE M 04 0 69 Europe/Dublin 2010-08-14 +3294845 Cleanderry Cleanderry 51.74028 -9.9475 P PPL IE M 04 0 67 Europe/Dublin 2010-08-14 +3294846 Derreenacush Derreenacush 51.73667 -9.97389 P PPL IE M 04 0 33 Europe/Dublin 2010-08-14 +3294847 Derryvogal Derryvogal 51.74028 -9.97583 T HLL IE M 04 0 50 11 Europe/Dublin 2010-08-14 +3294848 Illaunbweeheen Illaunbweeheen 51.75083 -9.93778 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294849 Foilatluggig Foilatluggig 51.7575 -9.91722 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294850 Barrakilly Barrakilly 51.74583 -9.86361 P PPL IE M 04 0 43 Europe/Dublin 2010-08-14 +3294851 Gorteen Gorteen 51.75167 -9.86667 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294852 Lackareagh Lackareagh 51.76472 -9.89417 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3294853 Dog’s Point Dog's Point 51.77083 -9.88556 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294854 Curravaniheen Island Curravaniheen Island 51.775 -9.89472 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3294855 Eskatarriff Eskatarriff 51.72528 -9.83167 T MT IE M 11 0 601 404 Europe/Dublin 2010-08-14 +3294856 Esknamaggy Esknamaggy 51.71306 -9.80917 T HLL IE M 11 0 267 144 Europe/Dublin 2010-08-14 +3294857 Lackabane Lackabane 51.72944 -9.81056 T MT IE M 11 0 604 234 Europe/Dublin 2010-08-14 +3294858 Glanmore Bridge Glanmore Bridge 51.72722 -9.78056 P PPLL IE M 11 0 47 Europe/Dublin 2010-08-14 +3294859 Ballaghscart Ballaghscart 51.72833 -9.76028 T MT IE M 11 0 330 111 Europe/Dublin 1997-10-30 +3294863 Coombane Coombane 51.71583 -9.76889 T MT IE M 11 0 512 311 Europe/Dublin 2010-08-14 +3294864 Glanmore River Glanmore River 51.73667 -9.77222 H STM IE M 11 0 42 Europe/Dublin 2010-08-14 +3294866 Atadav Bridge Atadav Bridge 51.75444 -9.77639 P PPLL IE M 11 0 24 Europe/Dublin 2010-08-14 +3294868 Knockastumpa Knockastumpa 51.7575 -9.75472 T MT IE M 11 0 400 269 Europe/Dublin 2010-08-14 +3294869 Tooth Mountain Tooth Mountain 51.745 -9.82972 T MT IE M 11 0 439 Europe/Dublin 2010-08-14 +3294870 Drunminboy River Drunminboy River 51.75222 -9.78722 H STM IE M 11 0 9 Europe/Dublin 2010-08-14 +3294872 Glashananinnaun Bridge Glashananinnaun Bridge 51.75694 -9.855 P PPLL IE M 11 0 34 Europe/Dublin 2010-08-14 +3294875 Two Headed Island Two Headed Island 51.74361 -10.15472 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294876 Moylaun Island Moylaun Island 51.74472 -10.175 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294877 Eagle Hill Eagle Hill 51.75778 -10.11667 T HLL IE M 11 0 157 1 Europe/Dublin 2010-08-14 +3294878 Illaunnaweelaun Illaunnaweelaun 51.75361 -10.10472 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294880 Bathfield Bathfield 51.76944 -10.09667 L LCTY IE M 11 0 72 Europe/Dublin 2010-08-14 +3294881 Sheehan’s Point Sheehan's Point 51.7725 -10.18028 T PT IE M 11 0 73 Europe/Dublin 2010-08-14 +3294882 Lamb’s Island Lamb's Island 51.7675 -10.15278 T ISL IE M 11 0 75 Europe/Dublin 2010-08-14 +3294883 Coomatloukane Coomatloukane 51.77694 -10.18417 L LCTY IE M 11 0 181 Europe/Dublin 2010-08-14 +3294884 Cahernageeha Cahernageeha 51.78361 -10.15 L LCTY IE M 11 0 272 Europe/Dublin 2010-08-14 +3294886 Beenarourke Beenarourke 51.78389 -10.17389 T MT IE M 11 0 309 111 Europe/Dublin 2010-08-14 +3294887 Knockstooka Knockstooka 51.78611 -10.19 T HLL IE M 11 0 300 87 Europe/Dublin 2010-08-14 +3294888 Reenearagh Reenearagh 51.78667 -10.22139 T HLL IE M 11 0 543 -9999 Europe/Dublin 2010-08-14 +3294890 Loher Loher 51.79694 -10.18083 L LCTY IE M 11 0 24 Europe/Dublin 2010-08-14 +3294892 Farraniaragh Mountain Farraniaragh Mountain 51.79056 -10.14778 T MT IE M 11 0 472 272 Europe/Dublin 2010-08-14 +3294895 Ardkearagh Ardkearagh 51.80944 -10.16944 L LCTY IE M 11 0 37 Europe/Dublin 2010-08-14 +3294897 Finglas River Finglas River 51.8275 -10.175 H STM IE M 11 0 14 Europe/Dublin 2010-08-14 +3294898 Bucslikane Bridge Bucslikane Bridge 51.81583 -10.15833 P PPLL IE M 11 0 65 Europe/Dublin 2010-08-14 +3294899 Eightercua Eightercua 51.82083 -10.14917 L LCTY IE M 11 0 14 Europe/Dublin 2010-08-14 +3294900 Ballybrack Ballybrack 51.82639 -10.16528 L LCTY IE M 11 0 14 Europe/Dublin 2010-08-14 +3294902 Beenrour Beenrour 51.81778 -10.11194 L LCTY IE M 11 0 416 14 Europe/Dublin 2010-08-14 +3294920 Termons Termons 51.84972 -10.1575 L LCTY IE M 11 0 14 Europe/Dublin 2010-08-14 +3294921 Spunkane Spunkane 51.8475 -10.19083 L LCTY IE M 11 0 6 Europe/Dublin 2010-08-14 +3294922 Cloghvoola Cloghvoola 51.84361 -10.08611 L LCTY IE M 11 0 73 Europe/Dublin 2010-08-14 +3294923 Cappamore Cappamore 51.82389 -10.09889 L LCTY IE M 11 0 105 Europe/Dublin 2010-08-14 +3294924 Coomrooania Lough Coomrooania Lough 51.81361 -10.07583 H LK IE M 11 0 188 Europe/Dublin 2010-08-14 +3294925 Tooreenyduneen Tooreenyduneen 51.82417 -10.04444 P PPL IE M 11 0 105 Europe/Dublin 2010-08-14 +3294926 Windy Gap Windy Gap 51.80972 -10.04083 T GAP IE M 11 0 269 Europe/Dublin 2010-08-14 +3294927 Staigue Staigue 51.80611 -10.04167 L LCTY IE M 11 0 269 Europe/Dublin 2010-08-14 +3294928 Coad Mountain Coad Mountain 51.79389 -10.07333 T MT IE M 11 0 333 319 Europe/Dublin 2010-08-14 +3294929 Carrough Carrough 51.78722 -10.09111 L LCTY IE M 11 0 189 Europe/Dublin 2010-08-14 +3294930 Knocknasulog Knocknasulog 51.76694 -10.08083 L LCTY IE M 11 0 87 Europe/Dublin 2010-08-14 +3294931 Leaghillaun Leaghillaun 51.76972 -10.05444 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294932 Carriganglee Carriganglee 51.77167 -10.04417 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294933 Daniels Island Daniels Island 51.77556 -10.01694 T ISL IE M 11 0 17 Europe/Dublin 2010-08-14 +3294934 Illaunsillagh Illaunsillagh 51.78194 -10.00361 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294935 Nedanoie Nedanoie 51.78556 -10.01667 T HLL IE M 11 0 100 57 Europe/Dublin 2010-08-14 +3294936 Skenanagh Skenanagh 51.79056 -10.02278 L LCTY IE M 11 0 57 Europe/Dublin 2010-08-14 +3294937 Casttercose Casttercose 51.78861 -10.05194 P PPL IE M 11 0 137 Europe/Dublin 2010-08-14 +3294938 Coad Coad 51.78556 -10.06278 P PPL IE M 11 0 220 Europe/Dublin 2010-08-14 +3294939 Glanlough Glanlough 51.8025 -9.99111 P PPL IE M 11 0 74 Europe/Dublin 2010-08-14 +3294940 Glan Lough Glan Lough 51.80389 -10.00056 H LK IE M 11 0 183 Europe/Dublin 2010-08-14 +3294941 Ardmore Ardmore 51.80694 -9.99056 P PPL IE M 11 0 74 Europe/Dublin 2010-08-14 +3294942 Bohacogram Bohacogram 51.82056 -10.01083 L LCTY IE M 11 0 270 Europe/Dublin 2010-08-14 +3294943 Derreenauliff Derreenauliff 51.81389 -9.98389 L LCTY IE M 11 0 98 Europe/Dublin 2010-08-14 +3294944 Reenrone Reenrone 51.80194 -9.98361 P PPL IE M 11 0 74 Europe/Dublin 2010-08-14 +3294945 Esknaloughoge Esknaloughoge 51.83444 -10.00083 T MT IE M 11 0 418 264 Europe/Dublin 2010-08-14 +3294946 Gortdromagh Gortdromagh 51.83889 -9.98056 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +3294947 Coomnahorna Coomnahorna 51.84972 -9.96667 T HLL IE M 11 0 756 383 Europe/Dublin 2010-08-14 +3294948 Illaunleagh Illaunleagh 51.80333 -9.94417 T ISL IE M 11 0 30 Europe/Dublin 2010-08-14 +3294949 Inishikeelaghmore Inishikeelaghmore 51.80694 -9.90722 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294950 Illaunamadan Illaunamadan 51.80194 -9.89528 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294951 Inishkeragh Inishkeragh 51.80639 -9.89333 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294952 Garinish Garinish 51.81361 -9.90083 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3294953 Illaunslea Illaunslea 51.81972 -9.88833 T ISL IE M 11 0 4 Europe/Dublin 2010-08-14 +3294954 Parknasilla House Parknasilla House 51.82333 -9.89889 S HSEC IE M 11 0 1 Europe/Dublin 2010-08-14 +3294955 Gleesk Gleesk 51.81528 -9.94389 L LCTY IE M 11 0 104 Europe/Dublin 2010-08-14 +3294956 Drongown Lough Drongown Lough 51.82417 -9.84278 H LK IE M 11 0 27 Europe/Dublin 2010-08-14 +3294957 Hollywood Hollywood 51.82972 -9.89556 P PPL IE M 11 0 25 Europe/Dublin 2010-08-14 +3294958 Derrylough Derrylough 51.83778 -9.89361 L LCTY IE M 11 0 47 Europe/Dublin 2010-08-14 +3294959 Knockanamadane Knockanamadane 51.84639 -9.86056 T HLL IE M 11 0 272 82 Europe/Dublin 2010-08-14 +3294960 Owreagh River Owreagh River 51.84306 -9.91 H STM IE M 11 0 56 Europe/Dublin 2010-08-14 +3294961 Cowlane’s East Cowlane's East 51.85222 -9.94667 L LCTY IE M 11 0 119 Europe/Dublin 2010-08-14 +3294962 Scraliannagaur Scraliannagaur 51.85389 -9.91194 L LCTY IE M 11 0 61 Europe/Dublin 2010-08-14 +3294963 Brackloon Brackloon 51.85583 -9.84778 P PPL IE M 11 0 94 Europe/Dublin 2010-08-14 +3295226 Lough Fadda Lough Fadda 51.84528 -9.80528 H LK IE M 11 0 118 Europe/Dublin 2010-08-14 +3295227 Derreennamackan Derreennamackan 51.85222 -9.7675 T CAPE IE M 11 0 61 Europe/Dublin 2010-08-14 +3295228 Lackeen Point Lackeen Point 51.85944 -9.74222 T PT IE M 11 0 49 Europe/Dublin 2010-08-14 +3295229 Ormond’s Island Ormond's Island 51.83528 -9.75444 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3295230 Lehid Harbour Lehid Harbour 51.81 -9.785 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3295232 Ardea Bridge Ardea Bridge 51.82667 -9.7425 P PPLL IE M 11 0 1 Europe/Dublin 2010-08-14 +3295233 Dinish Island Dinish Island 51.85833 -9.6575 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3295234 Brennel Island Brennel Island 51.85667 -9.68417 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3295235 Feoramore Feoramore 51.84556 -9.70556 L LCTY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3295236 Muckera Muckera 51.84222 -9.67778 L LCTY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3295237 Coornagillagh Coornagillagh 51.83861 -9.74083 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3295238 Cummer Lough Cummer Lough 51.82778 -9.62667 H LK IE M 11 0 166 Europe/Dublin 2010-08-14 +3295239 Lough Napeasta Lough Napeasta 51.80972 -9.70556 H LK IE M 11 0 60 Europe/Dublin 2010-08-14 +3295240 Unugh Wood Unugh Wood 51.81444 -9.69528 V FRST IE M 11 0 77 Europe/Dublin 2010-08-14 +3295241 Cummeenanma Cummeenanma 51.80472 -9.70806 L LCTY IE M 11 0 253 Europe/Dublin 2010-08-14 +3295243 Cummeenadillure Lough Cummeenadillure Lough 51.80222 -9.6675 H LK IE M 11 0 161 Europe/Dublin 2010-08-14 +3295244 Inishfoyle Inishfoyle 51.81028 -9.62389 L LCTY IE M 11 0 345 Europe/Dublin 2010-08-14 +3295246 Knockanoughanish Knockanoughanish 51.78833 -9.73972 T MT IE M 11 0 384 158 Europe/Dublin 2010-08-14 +3295247 Tuosist Tuosist 51.81222 -9.75639 L LCTY IE M 11 0 1 Europe/Dublin 2010-08-14 +3295249 Lauragh Bridge Lauragh Bridge 51.77611 -9.77056 P PPLL IE M 11 0 165 Europe/Dublin 2010-08-14 +3295250 Croanshagh Bridge Croanshagh Bridge 51.76306 -9.78111 P PPLL IE M 11 0 30 Europe/Dublin 2010-08-14 +3295252 Owenshagh River Owenshagh River 51.77444 -9.77806 H STM IE M 11 0 49 Europe/Dublin 2010-08-14 +3295253 Glantrasna River Glantrasna River 51.77306 -9.75472 H STM IE M 11 0 88 Europe/Dublin 2010-08-14 +3295254 Glanrastel River Glanrastel River 51.7725 -9.72972 H STM IE M 11 0 110 Europe/Dublin 2010-08-14 +3295259 Fehanagh Fehanagh 51.76806 -9.74833 L LCTY IE M 11 0 111 Europe/Dublin 2010-08-14 +3295260 Pookeen Pookeen 51.76528 -9.72139 T MT IE M 11 0 334 237 Europe/Dublin 2010-08-14 +3295261 Droppa Droppa 51.77361 -9.69556 T MT IE M 11 0 526 421 Europe/Dublin 2010-08-14 +3295262 Eagle’s Nest Eagle's Nest 51.77694 -9.66861 T MT IE M 11 0 602 475 Europe/Dublin 2010-08-14 +3295263 Caha Caha 51.7775 -9.66222 T MT IE M 11 0 610 475 Europe/Dublin 2010-08-14 +3295264 Baurearagh Mountain Baurearagh Mountain 51.79722 -9.61722 T MT IE M 11 0 489 215 Europe/Dublin 2010-08-14 +3295265 Killane Mountain Killane Mountain 51.79056 -9.62639 T MT IE M 04 0 523 300 Europe/Dublin 2010-08-14 +3295266 Ram’s Hill Ram's Hill 51.76167 -9.66722 T MT IE M 11 0 526 483 Europe/Dublin 2010-08-14 +3295267 Cushnaficulla Cushnaficulla 51.75278 -9.70444 T MT IE M 11 0 591 323 Europe/Dublin 2006-01-16 +3295268 Claddaghgarriff Claddaghgarriff 51.73722 -9.74056 T MT IE M 11 0 494 462 Europe/Dublin 2006-01-16 +3295269 Knockeirky Knockeirky 51.75083 -9.69083 T MT IE M 11 0 580 405 Europe/Dublin 2006-01-16 +3295277 Lough Shanoge Lough Shanoge 51.74972 -9.67611 H LK IE M 04 0 447 Europe/Dublin 2010-08-14 +3295278 Glenlough Mountain Glenlough Mountain 51.74361 -9.66028 T MT IE M 04 0 439 Europe/Dublin 2010-08-14 +3295279 Lough Moredoolig Lough Moredoolig 51.74056 -9.6775 H LK IE M 04 0 384 Europe/Dublin 2010-08-14 +3295280 Glenkeel Lough Glenkeel Lough 51.73833 -9.68944 H LK IE M 04 0 439 Europe/Dublin 2010-08-14 +3295281 Glen Lough Glen Lough 51.72472 -9.68417 H LK IE M 04 0 188 Europe/Dublin 2010-08-14 +3295282 Adrigole River Adrigole River 51.71222 -9.71528 H STM IE M 04 0 94 Europe/Dublin 2010-08-14 +3295283 Clashduff River Clashduff River 51.70083 -9.7225 H STM IE M 04 0 69 Europe/Dublin 2010-08-14 +3295284 Mass Mount Mass Mount 51.70583 -9.69778 T HLL IE M 04 0 127 Europe/Dublin 2010-08-14 +3295285 Inchintaglin Bridge Inchintaglin Bridge 51.71333 -9.72 P PPLL IE M 04 0 83 Europe/Dublin 2010-08-14 +3295289 Lough Derreenadavodia Lough Derreenadavodia 51.74278 -9.64528 H LK IE M 04 0 303 Europe/Dublin 2010-08-14 +3295290 Lough Eekenohoolikeaghaun Lough Eekenohoolikeaghaun 51.73833 -9.64722 H LK IE M 04 0 300 Europe/Dublin 2010-08-14 +3295291 Curraduff Curraduff 51.71361 -9.67556 L LCTY IE M 04 0 170 Europe/Dublin 2010-08-14 +3295292 Curragh Curragh 51.70194 -9.65222 P PPL IE M 04 0 149 Europe/Dublin 2010-08-14 +3295294 Trafrask Bridge Trafrask Bridge 51.69417 -9.66194 P PPLL IE M 04 0 87 Europe/Dublin 2010-08-14 +3295295 Trafrask Trafrask 51.69167 -9.67056 P PPL IE M 04 0 86 Europe/Dublin 2010-08-14 +3295296 Faha Faha 51.69083 -9.69056 L LCTY IE M 04 0 38 Europe/Dublin 2010-08-14 +3295297 Roosk Roosk 51.6825 -9.65194 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3295298 Mehal Head Mehal Head 51.68167 -9.65083 T CAPE IE M 04 0 1 Europe/Dublin 2010-08-14 +3295299 Derrylough Derrylough 51.68972 -9.63889 P PPL IE M 04 0 19 Europe/Dublin 2010-08-14 +3295300 Knockacarrin Knockacarrin 51.70306 -9.61611 T HLL IE M 04 0 181 127 Europe/Dublin 2010-08-14 +3295301 Sheelane Island Sheelane Island 51.69667 -9.59167 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3295302 Garinish West Garinish West 51.70278 -9.59333 T ISL IE M 04 0 26 Europe/Dublin 2010-08-14 +3295303 Derreenacarrin Derreenacarrin 51.70944 -9.61139 P PPL IE M 04 0 210 Europe/Dublin 2010-08-14 +3295304 Gowlbeg Mountain Gowlbeg Mountain 51.72472 -9.60722 T MT IE M 04 0 359 207 Europe/Dublin 2010-08-14 +3295305 Coolieragh Coolieragh 51.71889 -9.59722 L LCTY IE M 04 0 129 Europe/Dublin 2010-08-14 +3295306 Magannagan Stream Magannagan Stream 51.74333 -9.55889 H STM IE M 04 0 34 Europe/Dublin 2010-08-14 +3295307 Avaul Lough Avaul Lough 51.72944 -9.57861 H LK IE M 04 0 82 Europe/Dublin 2010-08-14 +3295322 Derryeonnery Derryeonnery 51.74139 -9.59194 L LCTY IE M 04 0 131 Europe/Dublin 2010-08-14 +3295328 Coomarkane Coomarkane 51.75306 -9.64389 L LCTY IE M 04 0 315 Europe/Dublin 2010-08-14 +3295329 Crossterry Mountain Crossterry Mountain 51.76556 -9.62833 T MT IE M 04 0 344 200 Europe/Dublin 2010-08-14 +3295330 Glengarrin River Glengarrin River 51.75778 -9.55694 H STM IE M 04 0 17 Europe/Dublin 2010-08-14 +3295331 Rossnagrena Rossnagrena 51.78444 -9.60583 L LCTY IE M 04 0 278 Europe/Dublin 2010-08-14 +3295332 Knockduff Knockduff 51.82333 -9.6 T SLP IE M 04 0 269 Europe/Dublin 2010-08-14 +3295333 Barraduff Mountain Barraduff Mountain 51.84417 -9.58556 T MT IE M 11 0 401 221 Europe/Dublin 2010-08-14 +3296014 League Point League Point 51.65944 -9.56917 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296015 Baurearagh River Baurearagh River 51.82056 -9.54111 H STM IE M 11 0 151 Europe/Dublin 2010-08-14 +3296024 Ballyeragh Ballyeragh 51.43111 -9.52667 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296025 South Harbour South Harbour 51.42528 -9.50583 H HBR IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296026 North Harbour North Harbour 51.445 -9.50417 H HBR IE M 04 0 49 Europe/Dublin 2010-08-14 +3296027 Lissarnona Lissarnona 51.445 -9.47944 P PPL IE M 04 0 30 Europe/Dublin 2010-08-14 +3296028 Cooslahan Point Cooslahan Point 51.44972 -9.46278 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296029 Illauneana Illauneana 51.45556 -9.48778 T RK IE M 04 0 4 Europe/Dublin 2010-08-14 +3296030 Carrigmore Carrigmore 51.45667 -9.45806 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296031 Sherkin Point Sherkin Point 51.46361 -9.44028 T PT IE M 04 0 15 Europe/Dublin 2010-08-14 +3296032 Carrigcleamore Carrigcleamore 51.45667 -9.42472 T CLF IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296033 Slievemore Slievemore 51.46222 -9.43361 P PPLL IE M 04 0 15 Europe/Dublin 2010-08-14 +3296034 Kilmoon Kilmoon 51.47 -9.41639 P PPL IE M 04 0 3 Europe/Dublin 2010-08-14 +3296035 Kinish Harbour Kinish Harbour 51.47694 -9.415 H HBR IE M 04 0 1 Europe/Dublin 2010-08-14 +3296036 The Catalogues The Catalogues 51.49472 -9.41639 T ISLS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296037 Spanish Island Spanish Island 51.49556 -9.39278 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +3296039 Church Strand Bay Church Strand Bay 51.49417 -9.36333 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296041 Ardnagrena Ardnagrena 51.49806 -9.3825 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3296044 Inishleigh Inishleigh 51.50611 -9.3975 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296049 Donegall Donegall 51.51361 -9.37 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3296050 Poulnacidlee Poulnacidlee 51.51361 -9.3975 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3296051 Fasagh Fasagh 51.51361 -9.41361 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3296052 Ardegh Ardegh 51.50667 -9.40944 T HLL IE M 04 0 43 1 Europe/Dublin 2010-08-14 +3296054 Skeam East Skeam East 51.50833 -9.44667 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296055 Skeam West Skeam West 51.50556 -9.46194 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296056 Illaunranhee Illaunranhee 51.51861 -9.4275 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296057 White Hall White Hall 51.52111 -9.41278 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3296059 Carthy’s Islands Carthy's Islands 51.4975 -9.50778 T ISLS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296079 Coosnagappul Coosnagappul 51.50806 -9.50278 H COVE IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296080 Coosheen Point Coosheen Point 51.51667 -9.52833 T PT IE M 04 0 1 Europe/Dublin 2010-08-14 +3296081 Bull Rock Bull Rock 51.51556 -9.5375 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296082 Fastnet View Fastnet View 51.51528 -9.54611 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296084 Derreennatra Derreennatra 51.52278 -9.5025 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296086 Cappaghglass Cappaghglass 51.53667 -9.46056 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3296087 Foilnamack Foilnamack 51.54417 -9.46194 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3296089 Mannin Island Mannin Island 51.54139 -9.41944 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296090 Kilkilleen Kilkilleen 51.53194 -9.41278 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296091 Laheratanvally Laheratanvally 51.54472 -9.41611 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296092 Greenmount House Greenmount House 51.55472 -9.45694 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3296093 Stouke Stouke 51.54917 -9.475 T HLL IE M 04 0 1 Europe/Dublin 2010-08-14 +3296094 Sealaclare Bridge Sealaclare Bridge 51.55778 -9.4125 P PPLL IE M 04 0 20 Europe/Dublin 2010-08-14 +3296095 Crooked Bridge Crooked Bridge 51.56389 -9.41361 P PPLL IE M 04 0 36 Europe/Dublin 2010-08-14 +3296096 Kilcoe Kilcoe 51.56639 -9.40861 L LCTY IE M 04 0 36 Europe/Dublin 2010-08-14 +3296098 Killeena Killeena 51.52306 -9.335 L LCTY IE M 04 0 43 Europe/Dublin 2010-08-14 +3296100 Highfield Highfield 51.51861 -9.33611 L LCTY IE M 04 0 43 Europe/Dublin 2010-08-14 +3296101 Pookween Pookween 51.50806 -9.32861 L LCTY IE M 04 0 65 Europe/Dublin 2010-08-14 +3296102 Rathmore Rathmore 51.50583 -9.35083 P PPL IE M 04 0 45 Europe/Dublin 2010-08-14 +3296103 Ballymacrown Ballymacrown 51.48778 -9.34806 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +3296105 Carrigatrough Carrigatrough 51.46944 -9.34667 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296117 Ballyoughiera Ballyoughiera 51.51333 -9.30556 P PPLL IE M 04 0 46 Europe/Dublin 2010-08-14 +3296118 Ballyally Lough Ballyally Lough 51.5075 -9.28722 H LK IE M 04 0 22 Europe/Dublin 2010-08-14 +3296119 Bullock Island Bullock Island 51.49694 -9.29306 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296120 Bawnlahan Bawnlahan 51.50556 -9.26222 L LCTY IE M 04 0 53 Europe/Dublin 2010-08-14 +3296121 Dooneen Dooneen 51.51361 -9.23306 P PPL IE M 04 0 72 Europe/Dublin 2010-08-14 +3296122 Scobaun Scobaun 51.50778 -9.22528 L LCTY IE M 04 0 32 Europe/Dublin 2010-08-14 +3296123 The Battery The Battery 51.51889 -9.18083 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296124 Skiddy Island Skiddy Island 51.51833 -9.17139 T ISL IE M 04 0 1 Europe/Dublin 2010-08-14 +3296125 Donoure Castle Donoure Castle 51.55028 -8.95667 S CSTL IE M 04 0 12 Europe/Dublin 2010-08-14 +3296126 Lough Rahavarrig Lough Rahavarrig 51.57028 -8.97639 H LK IE M 04 0 26 Europe/Dublin 2010-08-14 +3296127 Rathberry Castle Rathberry Castle 51.57417 -8.95639 S CSTL IE M 04 0 54 Europe/Dublin 2010-08-14 +3296128 Castle Bay Castle Bay 51.56278 -9.02361 H BAY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296129 Ownahincha Ownahincha 51.56704 -8.99368 H COVE IE M 04 0 15 Europe/Dublin 2010-08-14 +3296130 Creggane House Creggane House 51.57444 -9.0125 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3296131 Ballyvireen Bridge Ballyvireen Bridge 51.57333 -9.0625 P PPLL IE M 04 0 41 Europe/Dublin 2010-08-14 +3296132 Ballinaclog Ballinaclog 51.56444 -9.06972 L LCTY IE M 04 0 39 Europe/Dublin 2010-08-14 +3296133 Temple Bridge Temple Bridge 51.58361 -9.00222 P PPLL IE M 04 0 52 Europe/Dublin 2010-08-14 +3296134 Kilruane Bridge Kilruane Bridge 51.60361 -8.97389 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296135 Pike Cross Roads Pike Cross Roads 51.61028 -8.97806 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296136 Westwood Westwood 51.60222 -9.07083 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3296137 Ballynavar Bridge Ballynavar Bridge 51.61639 -8.97861 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296138 Roury River Roury River 51.56889 -9.05583 H STM IE M 04 0 54 Europe/Dublin 2010-08-14 +3296139 Roury Bridge Roury Bridge 51.58361 -9.06972 P PPLL IE M 04 0 86 Europe/Dublin 2010-08-14 +3296143 Adam’s Island Adam's Island 51.54583 -9.10139 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296144 Eve Island Eve Island 51.555 -9.11056 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296145 Skahanagh Skahanagh 51.55194 -9.13222 P PPL IE M 04 0 44 Europe/Dublin 2010-08-14 +3296146 Keenogrena Keenogrena 51.55722 -9.09444 L LCTY IE M 04 0 32 Europe/Dublin 2010-08-14 +3296147 Kilfinnan Castle Kilfinnan Castle 51.56833 -9.11222 S CSTL IE M 04 0 90 Europe/Dublin 2010-08-14 +3296406 Myross Myross 51.53194 -9.14667 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3296407 Reen Reen 51.52583 -9.16333 L LCTY IE M 04 0 21 Europe/Dublin 2010-08-14 +3296408 Dromillihy Wood Dromillihy Wood 51.59861 -9.09417 V FRST IE M 04 0 62 Europe/Dublin 2010-08-14 +3296409 Gortroe Cross Roads Gortroe Cross Roads 51.60806 -9.10333 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296410 Abbey Mount Abbey Mount 51.60083 -9.13778 P PPLL IE M 04 0 129 Europe/Dublin 2010-08-14 +3296411 Ballyhilloe Ballyhilloe 51.59139 -9.12694 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3296412 Cloonties Lake Cloonties Lake 51.58389 -9.11 H LK IE M 04 0 76 Europe/Dublin 2010-08-14 +3296413 Glandore Bridge Glandore Bridge 51.57167 -9.13889 P PPLL IE M 04 0 77 Europe/Dublin 2010-08-14 +3296414 Ballin Lough Ballin Lough 51.60444 -9.15778 H LK IE M 04 0 141 Europe/Dublin 2010-08-14 +3296415 Lough Clubir Lough Clubir 51.54417 -9.15083 H LK IE M 04 0 91 Europe/Dublin 2010-08-14 +3296416 Smithville Smithville 51.54056 -9.20806 P PPL IE M 04 0 80 Europe/Dublin 2010-08-14 +3296417 Rinneen Rinneen 51.55389 -9.19472 L LCTY IE M 04 0 112 Europe/Dublin 2010-08-14 +3296418 Aghills Lake Aghills Lake 51.56417 -9.20889 H LK IE M 04 0 127 Europe/Dublin 2010-08-14 +3296419 Aghills Aghills 51.56806 -9.19306 T HLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296420 Shepparton Park Shepparton Park 51.57389 -9.17694 S EST IE M 04 0 104 Europe/Dublin 2010-08-14 +3296421 Shreelane Lakes Shreelane Lakes 51.57528 -9.1925 H LKS IE M 04 0 70 Europe/Dublin 2010-08-14 +3296422 Milleen Bridge Milleen Bridge 51.585 -9.18667 P PPLL IE M 04 0 80 Europe/Dublin 2010-08-14 +3296423 Cloonheen Cloonheen 51.59306 -9.19556 L LCTY IE M 04 0 89 Europe/Dublin 2010-08-14 +3296424 Maulatrahane Maulatrahane 51.59861 -9.205 L LCTY IE M 04 0 79 Europe/Dublin 2010-08-14 +3296425 Coornishal Coornishal 51.61139 -9.21333 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3296426 Derrylugga Derrylugga 51.60583 -9.24028 T HLL IE M 04 0 120 Europe/Dublin 2010-08-14 +3296427 Kilnaelasba Kilnaelasba 51.58444 -9.25028 L LCTY IE M 04 0 120 Europe/Dublin 2010-08-14 +3296428 Runalunn Runalunn 51.5875 -9.26556 P PPL IE M 04 0 98 Europe/Dublin 2010-08-14 +3296429 Bauravilla Bauravilla 51.605 -9.27139 P PPL IE M 04 0 69 Europe/Dublin 2010-08-14 +3296430 Coolnaelehy Coolnaelehy 51.59472 -9.28444 L LCTY IE M 04 0 50 Europe/Dublin 2010-08-14 +3296431 Liss Ard Liss Ard 51.53056 -9.25667 S EST IE M 04 0 105 Europe/Dublin 2010-08-14 +3296432 Lough Abisdedly Lough Abisdedly 51.53306 -9.24722 H LK IE M 04 0 92 Europe/Dublin 2010-08-14 +3296433 Castlelands Castlelands 51.54667 -9.2575 L LCTY IE M 04 0 111 Europe/Dublin 2010-08-14 +3296434 Lightford Lightford 51.54056 -9.2875 L LCTY IE M 04 0 110 Europe/Dublin 2010-08-14 +3296435 Glencarragh Glencarragh 51.56333 -9.295 L LCTY IE M 04 0 39 Europe/Dublin 2010-08-14 +3296436 Lisheennapingina Lisheennapingina 51.57556 -9.31611 L LCTY IE M 04 0 69 Europe/Dublin 2010-08-14 +3296437 Betsborough Betsborough 51.58528 -9.28917 S EST IE M 04 0 48 Europe/Dublin 2010-08-14 +3296438 Shanavalla Shanavalla 51.59528 -9.31333 L LCTY IE M 04 0 62 Europe/Dublin 2010-08-14 +3296439 Lick Hill Lick Hill 51.52667 -9.27583 T HLL IE M 04 0 140 Europe/Dublin 2010-08-14 +3296440 Red Cross Roads Red Cross Roads 51.61111 -9.32806 P PPLL IE M 04 0 62 Europe/Dublin 2010-08-14 +3296441 Milleennahorna Milleennahorna 51.60417 -9.35111 L LCTY IE M 04 0 102 Europe/Dublin 2010-08-14 +3296442 Knockonna Knockonna 51.56611 -9.32833 T HLL IE M 04 0 61 Europe/Dublin 2010-08-14 +3296443 Foherlagh Foherlagh 51.57194 -9.35806 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296444 Meen Bridge Meen Bridge 51.56444 -9.39 P PPLL IE M 04 0 110 Europe/Dublin 2010-08-14 +3296445 Hollyhill Hollyhill 51.55778 -9.37472 T HLL IE M 04 0 110 Europe/Dublin 2010-08-14 +3296446 Munnane Munnane 51.55583 -9.37111 L LCTY IE M 04 0 110 Europe/Dublin 2010-08-14 +3296447 New Bridge New Bridge 51.55528 -9.27333 P PPLL IE M 04 0 78 Europe/Dublin 2010-08-14 +3296448 Newcourt Newcourt 51.54889 -9.32972 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296449 Church Cross Church Cross 51.54389 -9.3475 P PPLL IE M 04 0 23 Europe/Dublin 2010-08-14 +3296450 Lissaclarig Lissaclarig 51.5775 -9.40167 L LCTY IE M 04 0 65 Europe/Dublin 2010-08-14 +3296451 Aghadown Aghadown 51.55944 -9.40528 L LCTY IE M 04 0 56 Europe/Dublin 2010-08-14 +3296452 Leamawaddro River Leamawaddro River 51.55611 -9.41528 H STM IE M 04 0 20 Europe/Dublin 2010-08-14 +3296453 Ardura Ardura 51.5725 -9.43667 L LCTY IE M 04 0 41 Europe/Dublin 2010-08-14 +3296454 Knockroe Knockroe 51.57722 -9.44694 L LCTY IE M 04 0 56 Europe/Dublin 2010-08-14 +3296455 Fort View Fort View 51.58861 -9.44528 L LCTY IE M 04 0 81 Europe/Dublin 2010-08-14 +3296456 Knockaphukeen Knockaphukeen 51.59333 -9.43528 T HLL IE M 04 0 111 Europe/Dublin 2010-08-14 +3296457 Derreenard Derreenard 51.59778 -9.4225 L LCTY IE M 04 0 82 Europe/Dublin 2010-08-14 +3296458 Dawnaknoelane River Dawnaknoelane River 51.57194 -9.45889 H STM IE M 04 0 13 Europe/Dublin 2010-08-14 +3296459 Rathrnane Bridge Rathrnane Bridge 51.57278 -9.48083 P PPLL IE M 04 0 32 Europe/Dublin 2010-08-14 +3296460 Rathruane River Rathruane River 51.56944 -9.45861 H STM IE M 04 0 13 Europe/Dublin 2010-08-14 +3296461 Letter Letter 51.56972 -9.51083 P PPL IE M 04 0 72 Europe/Dublin 2010-08-14 +3296462 Ratheenroe Ratheenroe 51.57806 -9.535 L LCTY IE M 04 0 149 Europe/Dublin 2010-08-14 +3296463 Rathruane Rathruane 51.58056 -9.49972 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +3296464 Lisheennacreagh Lisheennacreagh 51.59361 -9.49833 L LCTY IE M 04 0 118 Europe/Dublin 2010-08-14 +3296465 Barytes Mine Barytes Mine 51.59583 -9.50556 S MN IE M 04 0 147 Europe/Dublin 2010-08-14 +3296466 Shantullig North Shantullig North 51.58389 -9.54139 P PPL IE M 04 0 144 Europe/Dublin 2010-08-14 +3296467 Coosane Coosane 51.60639 -9.46917 P PPL IE M 04 0 127 Europe/Dublin 2010-08-14 +3296468 Glan Glan 51.55 -9.58861 P PPL IE M 04 0 85 Europe/Dublin 2010-08-14 +3296773 Sam’s Cross Roads Sam's Cross Roads 51.62167 -8.97528 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296774 Woodfield Woodfield 51.62917 -8.97583 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +3296775 The Counsellors Cross Roads The Counsellors Cross Roads 51.62278 -9.03833 P PPLL IE M 04 0 164 Europe/Dublin 2010-08-14 +3296776 Castleventry Castleventry 51.63611 -9.02028 L LCTY IE M 04 0 138 Europe/Dublin 2010-08-14 +3296777 Carrigagrenane Cross Roads Carrigagrenane Cross Roads 51.64472 -9.06556 P PPLL IE M 04 0 132 Europe/Dublin 2010-08-14 +3296778 Froe Froe 51.61444 -9.05083 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296779 Bealad Cross Roads Bealad Cross Roads 51.64889 -8.99139 P PPLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296780 Knocks Knocks 51.66139 -9.00944 T HLL IE M 04 0 84 Europe/Dublin 2010-08-14 +3296781 Argideen Bridge Argideen Bridge 51.66111 -8.995 P PPLL IE M 04 0 75 Europe/Dublin 2010-08-14 +3296782 Mall Cross Roads Mall Cross Roads 51.61722 -9.09778 P PPLL IE M 04 0 133 Europe/Dublin 2010-08-14 +3296783 Carrigfadda Carrigfadda 51.64444 -9.09444 T MT IE M 04 0 223 Europe/Dublin 2010-08-14 +3296784 Knockarohe Knockarohe 51.63361 -9.12333 T HLL IE M 04 0 153 Europe/Dublin 2010-08-14 +3296785 Killinga Killinga 51.62278 -9.15556 L LCTY IE M 04 0 144 Europe/Dublin 2010-08-14 +3296786 Corran North Corran North 51.645 -9.15361 L LCTY IE M 04 0 128 Europe/Dublin 2010-08-14 +3296787 Knockmore Knockmore 51.64917 -9.12389 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296788 Maulatanrally Maulatanrally 51.65361 -9.09472 L LCTY IE M 04 0 181 Europe/Dublin 2010-08-14 +3296789 Coomatallin Coomatallin 51.65556 -9.12 L LCTY IE M 04 0 149 Europe/Dublin 2010-08-14 +3296790 Carrigbaun Cross Roads Carrigbaun Cross Roads 51.63583 -9.17806 P PPLL IE M 04 0 99 Europe/Dublin 2010-08-14 +3296791 Kippagh Bridge Kippagh Bridge 51.66306 -9.07444 P PPLL IE M 04 0 128 Europe/Dublin 2010-08-14 +3296792 Lough Atarriff Lough Atarriff 51.67194 -9.07 H LK IE M 04 0 148 Europe/Dublin 2010-08-14 +3296793 Milleennagun Milleennagun 51.68167 -9.06167 L LCTY IE M 04 0 144 Europe/Dublin 2010-08-14 +3296794 Curraghalicky Curraghalicky 51.67111 -9.13472 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296795 Maulagow Maulagow 51.6675 -9.17 L LCTY IE M 04 0 154 Europe/Dublin 2010-08-14 +3296796 Floraville Floraville 51.67722 -9.16472 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3296797 Reavouler Bridge Reavouler Bridge 51.65222 -9.15556 P PPLL IE M 04 0 128 Europe/Dublin 2010-08-14 +3296798 Glashagloragh River Glashagloragh River 51.65611 -9.02194 H STM IE M 04 0 89 Europe/Dublin 2010-08-14 +3296799 Coolnaronarty Coolnaronarty 51.67611 -9.02611 L LCTY IE M 04 0 105 Europe/Dublin 2010-08-14 +3296800 Rossmore Rossmore 51.67944 -8.99056 P PPL IE M 04 0 102 Europe/Dublin 2010-08-14 +3296801 Kilmeen Cross Roads Kilmeen Cross Roads 51.68778 -8.98333 P PPLL IE M 04 0 113 Europe/Dublin 2010-08-14 +3296802 Knockane Knockane 51.69722 -9.05472 L LCTY IE M 04 0 87 Europe/Dublin 2010-08-14 +3296803 Cloonkirgeen Cloonkirgeen 51.70167 -9.02556 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296804 Drinagh East Drinagh East 51.6875 -9.10028 L LCTY IE M 04 0 148 Europe/Dublin 2010-08-14 +3296805 Drinagh West Drinagh West 51.68694 -9.12944 L LCTY IE M 04 0 157 Europe/Dublin 2010-08-14 +3296806 Maulanimirish Maulanimirish 51.70083 -9.12944 P PPL IE M 04 0 111 Europe/Dublin 2010-08-14 +3296807 Clubhouse Cross Roads Clubhouse Cross Roads 51.70556 -9.06806 P PPL IE M 04 0 81 Europe/Dublin 2010-08-14 +3296808 Kilronane Kilronane 51.70861 -9.08139 P PPL IE M 04 0 75 Europe/Dublin 2010-08-14 +3296809 Bealanascartane Bealanascartane 51.70194 -9.06333 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3296810 Kilvirra Kilvirra 51.705 -8.99694 L LCTY IE M 04 0 137 Europe/Dublin 2010-08-14 +3296811 Rearahinagh Rearahinagh 51.62111 -9.21917 L LCTY IE M 04 0 70 Europe/Dublin 2010-08-14 +3296812 Driminidy Driminidy 51.63417 -9.22417 P PPL IE M 04 0 83 Europe/Dublin 2010-08-14 +3296813 Bredagh Cross Roads Bredagh Cross Roads 51.63278 -9.23056 P PPLL IE M 04 0 64 Europe/Dublin 2010-08-14 +3296814 Derryclogh Derryclogh 51.64639 -9.22194 P PPL IE M 04 0 130 Europe/Dublin 2010-08-14 +3296815 Tonatora Tonatora 51.64806 -9.24472 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3296816 Lahanaght House Lahanaght House 51.65972 -9.20056 S HSEC IE M 04 0 154 Europe/Dublin 2010-08-14 +3296817 Lahana House Lahana House 51.66917 -9.22167 S HSEC IE M 04 0 148 Europe/Dublin 2010-08-14 +3296818 Kilnahera East Kilnahera East 51.68056 -9.20861 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296819 Shronacarton Cross Roads Shronacarton Cross Roads 51.68194 -9.23278 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3296820 Kilmore House Kilmore House 51.64917 -9.27111 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3296821 Clashduff Clashduff 51.65389 -9.25583 T HLL IE M 04 0 76 Europe/Dublin 2010-08-14 +3296822 Ceancullig Ceancullig 51.68833 -9.26806 L LCTY IE M 04 0 148 Europe/Dublin 2010-08-14 +3296823 Moyny Bridge Moyny Bridge 51.67444 -9.28083 P PPLL IE M 04 0 82 Europe/Dublin 2010-08-14 +3296824 Madore Madore 51.62639 -9.29472 L LCTY IE M 04 0 59 Europe/Dublin 2010-08-14 +3296825 Mutton Bridge Mutton Bridge 51.65667 -9.2725 P PPLL IE M 04 0 73 Europe/Dublin 2010-08-14 +3296826 Knockane Knockane 51.65833 -9.30056 L LCTY IE M 04 0 64 Europe/Dublin 2010-08-14 +3296827 Hen Lodge Hen Lodge 51.66389 -9.30806 S HSEC IE M 04 0 68 Europe/Dublin 2010-08-14 +3296828 Clodagh Clodagh 51.69556 -9.22111 T HLL IE M 04 0 227 Europe/Dublin 2010-08-14 +3296829 Deelish Deelish 51.69333 -9.30111 T HLL IE M 04 0 270 Europe/Dublin 2010-08-14 +3296830 Milane Hill Milane Hill 51.70528 -9.20417 T MT IE M 04 0 202 Europe/Dublin 2010-08-14 +3296831 Lake View Lake View 51.69556 -9.18083 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296832 Derreeny Bridge Derreeny Bridge 51.61306 -9.26611 P PPLL IE M 04 0 58 Europe/Dublin 2010-08-14 +3296833 Lissangle Lissangle 51.61806 -9.31472 L LCTY IE M 04 0 57 Europe/Dublin 2010-08-14 +3296834 Glananhuca River Glananhuca River 51.62694 -9.29583 H STM IE M 04 0 59 Europe/Dublin 2010-08-14 +3296835 Ballyourane Ballyourane 51.62444 -9.34389 L LCTY IE M 04 0 97 Europe/Dublin 2010-08-14 +3296836 Barna Cross Roads Barna Cross Roads 51.63139 -9.32861 P PPLL IE M 04 0 82 Europe/Dublin 2010-08-14 +3296837 Bawnboy Bawnboy 51.67361 -9.33139 S EST IE M 04 0 150 Europe/Dublin 2010-08-14 +3296838 Cullomane Cross Roads Cullomane Cross Roads 51.65778 -9.38222 P PPLL IE M 04 0 140 Europe/Dublin 2010-08-14 +3296839 Derrcennacno Derrcennacno 51.64944 -9.38583 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296840 Glanaphuca Bridge Glanaphuca Bridge 51.62306 -9.35639 P PPLL IE M 04 0 120 Europe/Dublin 2010-08-14 +3296841 Dromore Dromore 51.66861 -9.38111 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3296842 Bull Rock Bull Rock 51.68472 -9.33889 T RK IE M 04 0 271 Europe/Dublin 2010-08-14 +3296843 Leitry Bridge Leitry Bridge 51.70472 -9.26611 P PPLL IE M 04 0 286 Europe/Dublin 2010-08-14 +3296844 Glandart Glandart 51.69583 -9.34528 P PPL IE M 04 0 270 Europe/Dublin 2010-08-14 +3296845 Maunvough Maunvough 51.68361 -9.37472 P PPLL IE M 04 0 162 Europe/Dublin 2010-08-14 +3296846 Glanbannoo Upper Glanbannoo Upper 51.70611 -9.365 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +3296847 Lough Bofinna Lough Bofinna 51.69222 -9.3875 H LK IE M 04 0 120 Europe/Dublin 2010-08-14 +3296848 Trawlebane Trawlebane 51.68389 -9.40389 L LCTY IE M 04 0 111 Europe/Dublin 2010-08-14 +3296849 Sprat Hill Sprat Hill 51.66333 -9.41028 T HLL IE M 04 0 156 Europe/Dublin 2010-08-14 +3296850 Knocknaveagh Knocknaveagh 51.68111 -9.44389 T HLL IE M 04 0 112 Europe/Dublin 2010-08-14 +3296851 Ardrah Ardrah 51.6625 -9.44806 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296852 Durras River Durras River 51.6475 -9.44861 H STM IE M 04 0 128 Europe/Dublin 2010-08-14 +3296853 Corestable Lake Corestable Lake 51.63389 -9.38806 H LK IE M 04 0 159 Europe/Dublin 2010-08-14 +3296854 Chapel Island Chapel Island 51.69861 -9.47528 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296855 Reenrour Point Reenrour Point 51.69667 -9.46056 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296856 Kilmore Lakes Kilmore Lakes 51.69083 -9.50583 H LKS IE M 04 0 1 Europe/Dublin 2010-08-14 +3296857 Gerane West Gerane West 51.68306 -9.54944 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296858 Beach House Beach House 51.68278 -9.47944 S HSEC IE M 04 0 2 Europe/Dublin 2010-08-14 +3296859 Lady’s Odell Lady's Odell 51.6775 -9.49222 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3296860 Hollyhill Hollyhill 51.66833 -9.45778 S EST IE M 04 0 131 Europe/Dublin 2010-08-14 +3296861 Tedagh Tedagh 51.66611 -9.50472 L LCTY IE M 04 0 48 Europe/Dublin 2010-08-14 +3296862 Letterlicky Bridge Letterlicky Bridge 51.64667 -9.45444 P PPLL IE M 04 0 120 Europe/Dublin 2010-08-14 +3296863 Coonkeen Coonkeen 51.64472 -9.55083 L LCTY IE M 04 0 132 Europe/Dublin 2010-08-14 +3296864 Clashadoo Clashadoo 51.63722 -9.54861 L LCTY IE M 04 0 111 Europe/Dublin 2010-08-14 +3296865 Killoveenoge Killoveenoge 51.65472 -9.5675 P PPL IE M 04 0 26 Europe/Dublin 2010-08-14 +3296866 Ballycomanane Ballycomanane 51.6325 -9.50139 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3296867 Barnaghgeehy Barnaghgeehy 51.62528 -9.47611 L LCTY IE M 04 0 142 Europe/Dublin 2010-08-14 +3296868 Coolcoulagata Coolcoulagata 51.61028 -9.515 P PPL IE M 04 0 101 Europe/Dublin 2010-08-14 +3296869 Mannion’s Island Mannion's Island 51.61472 -9.53861 T ISL IE M 04 0 65 Europe/Dublin 2010-08-14 +3296870 Five Mile Water Five Mile Water 51.62444 -9.53361 H STM IE M 04 0 45 Europe/Dublin 2010-08-14 +3296871 Friendly Cove Friendly Cove 51.62361 -9.54083 H COVE IE M 04 0 45 Europe/Dublin 2010-08-14 +3296872 Kilbreagh Kilbreagh 51.62361 -9.50472 T HLL IE M 04 0 98 Europe/Dublin 2010-08-14 +3296873 Currabeg Currabeg 51.715 -8.99528 L LCTY IE M 04 0 85 Europe/Dublin 2010-08-14 +3296874 Shanaway Shanaway 51.72194 -8.97611 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3296875 Phale Court Phale Court 51.73861 -8.97722 S EST IE M 04 0 73 Europe/Dublin 2010-08-14 +3296876 Manch Bridge Manch Bridge 51.72778 -9.02472 P PPLL IE M 04 0 75 Europe/Dublin 2010-08-14 +3296877 Ballynacarriga Ballynacarriga 51.71806 -9.02333 L LCTY IE M 04 0 73 Europe/Dublin 2010-08-14 +3296878 Fort Robert Fort Robert 51.74639 -8.97611 S HSEC IE M 04 0 134 Europe/Dublin 2010-08-14 +3296879 Carrigmore House Carrigmore House 51.74083 -8.99389 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3296880 Manch House Manch House 51.73917 -9.00056 S HSEC IE M 04 0 73 Europe/Dublin 2010-08-14 +3296881 Lissacroneen Cross Roads Lissacroneen Cross Roads 51.75667 -8.98778 P PPLL IE M 04 0 130 Europe/Dublin 2010-08-14 +3296882 Caher Caher 51.75528 -9.01306 L LCTY IE M 04 0 86 Europe/Dublin 2010-08-14 +3296883 Balteenbrack Balteenbrack 51.74389 -9.04139 L LCTY IE M 04 0 113 Europe/Dublin 2010-08-14 +3296884 Toom Toom 51.76028 -9.03944 P PPL IE M 04 0 131 Europe/Dublin 2010-08-14 +3296885 Behagh Behagh 51.75639 -9.05472 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3296886 Nedinagh Nedinagh 51.73111 -9.07361 P PPL IE M 04 0 113 Europe/Dublin 2010-08-14 +3296887 Moreagh Moreagh 51.71778 -9.07167 L LCTY IE M 04 0 86 Europe/Dublin 2010-08-14 +3296888 Rock Cottage Rock Cottage 51.73028 -9.08389 S HSE IE M 04 0 94 Europe/Dublin 2010-08-14 +3296889 Sleenoge Sleenoge 51.77944 -8.97222 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3296890 Ballyvelone Ballyvelone 51.785 -8.99778 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296891 Araharlick Araharlick 51.79917 -9.01722 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3296892 Geara Bridge Geara Bridge 51.79306 -9.02389 P PPLL IE M 04 0 153 Europe/Dublin 2010-08-14 +3296893 O’Crowley’s Castle O'Crowley's Castle 51.79 -9.04389 S RUIN IE M 04 0 152 Europe/Dublin 2010-08-14 +3296895 Cooleenagow Cross Roads Cooleenagow Cross Roads 51.77 -9.03917 P PPLL IE M 04 0 144 Europe/Dublin 2010-08-14 +3296896 Behagullane Behagullane 51.77806 -9.05389 T HLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3296897 Aultagh Wood Aultagh Wood 51.78167 -9.08889 V FRST IE M 04 0 152 Europe/Dublin 2010-08-14 +3296898 Neaskin Neaskin 51.78028 -9.11667 L LCTY IE M 04 0 141 Europe/Dublin 2010-08-14 +3296899 Inchicahan Cross Roads Inchicahan Cross Roads 51.76222 -9.095 L LCTY IE M 04 0 134 Europe/Dublin 2010-08-14 +3296900 Ardcahan Bridge Ardcahan Bridge 51.76056 -9.09694 P PPLL IE M 04 0 134 Europe/Dublin 2010-08-14 +3296901 Lover’s Leap Lover's Leap 51.75028 -9.09611 T CLF IE M 04 0 125 Europe/Dublin 2010-08-14 +3296902 Mount Gunner Mount Gunner 51.755 -9.115 T MT IE M 04 0 106 Europe/Dublin 2010-08-14 +3296903 Beaghaooha Wood Beaghaooha Wood 51.76167 -9.14528 V FRST IE M 04 0 123 Europe/Dublin 2010-08-14 +3296904 Dromdeeny Dromdeeny 51.79028 -9.145 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3296905 Caha River Caha River 51.76139 -9.09806 H STM IE M 04 0 134 Europe/Dublin 2010-08-14 +3296906 Cummernamart Cross Roads Cummernamart Cross Roads 51.79056 -9.13889 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3296907 Poulnaherry Bridge Poulnaherry Bridge 51.79278 -9.1325 P PPLL IE M 04 0 153 Europe/Dublin 2010-08-14 +3296908 Mohona House Mohona House 51.71 -9.11556 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3296909 Prospect Hill Prospect Hill 51.72417 -9.11472 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +3296910 Cloondes House Cloondes House 51.715 -9.14028 S HSEC IE M 04 0 109 Europe/Dublin 2010-08-14 +3296911 Manor House Manor House 51.72 -9.13222 S HSEC IE M 04 0 89 Europe/Dublin 2010-08-14 +3296912 Brewery River Brewery River 51.72833 -9.1 H STM IE M 04 0 77 Europe/Dublin 2010-08-14 +3297217 Togher Bridge Togher Bridge 51.77694 -9.17083 P PPLL IE M 04 0 148 Europe/Dublin 2010-08-14 +3297218 Keenrath House Keenrath House 51.76889 -9.18306 S HSEC IE M 04 0 143 Europe/Dublin 2010-08-14 +3297219 Farnanes Farnanes 51.75583 -9.22722 L LCTY IE M 04 0 178 Europe/Dublin 2010-08-14 +3297220 Dromdrasdil Dromdrasdil 51.74861 -9.20583 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3297221 Coollallure Coollallure 51.75028 -9.165 L LCTY IE M 04 0 140 Europe/Dublin 2010-08-14 +3297222 Derrynasafagh Derrynasafagh 51.7425 -9.17 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3297223 Coollelture House Coollelture House 51.73528 -9.19167 S HSE IE M 04 0 159 Europe/Dublin 2010-08-14 +3297224 Derryduff Derryduff 51.72889 -9.19889 L LCTY IE M 04 0 198 Europe/Dublin 2010-08-14 +3297225 Sillahertane Sillahertane 51.71889 -9.21667 L LCTY IE M 04 0 263 Europe/Dublin 2010-08-14 +3297226 Cullenagh Lake Cullenagh Lake 51.73806 -9.22472 H LK IE M 04 0 205 Europe/Dublin 2010-08-14 +3297227 Barrboy Barrboy 51.74722 -9.26806 L LCTY IE M 04 0 296 Europe/Dublin 2010-08-14 +3297228 Shanacrane Shanacrane 51.78611 -9.21694 P PPL IE M 04 0 274 Europe/Dublin 2010-08-14 +3297229 Coonclogh Coonclogh 51.78167 -9.26833 L LCTY IE M 04 0 307 Europe/Dublin 2010-08-14 +3297230 Cousane Gap Cousane Gap 51.77139 -9.25944 T GAP IE M 04 0 375 Europe/Dublin 2010-08-14 +3297231 Gortloughra Bridge Gortloughra Bridge 51.7975 -9.27389 P PPLL IE M 04 0 391 Europe/Dublin 2010-08-14 +3297232 Gortloughra Gortloughra 51.79222 -9.28667 L LCTY IE M 04 0 322 Europe/Dublin 2010-08-14 +3297233 Derreenacrinnig Derreenacrinnig 51.72028 -9.28778 T MT IE M 04 0 286 Europe/Dublin 2010-08-14 +3297234 Clodagh River Clodagh River 51.68361 -9.25056 H STM IE M 04 0 155 Europe/Dublin 2010-08-14 +3297235 Coomanore Lough Coomanore Lough 51.7075 -9.32528 H LK IE M 04 0 318 Europe/Dublin 2010-08-14 +3297236 Mullaghmesha Mullaghmesha 51.7175 -9.31722 T MT IE M 04 0 221 Europe/Dublin 2010-08-14 +3297237 Coomanore North Coomanore North 51.72194 -9.34833 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3297238 Barnagowlane Barnagowlane 51.73306 -9.29139 P PPL IE M 04 0 247 Europe/Dublin 2010-08-14 +3297239 Coomleagh Coomleagh 51.74361 -9.30583 P PPL IE M 04 0 310 Europe/Dublin 2010-08-14 +3297240 Maughanaclea Hills Maughanaclea Hills 51.7525 -9.30056 T MT IE M 04 0 282 Europe/Dublin 2010-08-14 +3297241 Ardrah Ardrah 51.74333 -9.34833 P PPL IE M 04 0 169 Europe/Dublin 2010-08-14 +3297242 Cahermucker Cahermucker 51.78361 -9.32222 P PPL IE M 04 0 144 Europe/Dublin 2010-08-14 +3297243 Ballynamought Ballynamought 51.77639 -9.31028 P PPL IE M 04 0 150 Europe/Dublin 2010-08-14 +3297244 Cahermoanteen Bridge Cahermoanteen Bridge 51.76528 -9.35528 P PPLL IE M 04 0 94 Europe/Dublin 2010-08-14 +3297245 Owngar River Owngar River 51.76833 -9.35833 H STM IE M 04 0 118 Europe/Dublin 2010-08-14 +3297246 Maulavanig Maulavanig 51.78194 -9.35417 L LCTY IE M 04 0 154 Europe/Dublin 2010-08-14 +3297247 Lough Atooreen Lough Atooreen 51.77833 -9.38889 H LK IE M 04 0 97 Europe/Dublin 2010-08-14 +3297248 Ahildoua Ahildoua 51.77417 -9.38333 L LCTY IE M 04 0 92 Europe/Dublin 2010-08-14 +3297249 Carriganas House Carriganas House 51.76639 -9.37583 S HSE IE M 04 0 74 Europe/Dublin 2010-08-14 +3297250 Breeny More Breeny More 51.74778 -9.37694 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3297251 Cappanahoul Lough Cappanahoul Lough 51.73583 -9.40028 H LK IE M 04 0 66 Europe/Dublin 2010-08-14 +3297252 Lisheen House Lisheen House 51.74917 -9.40139 S HSE IE M 04 0 62 Europe/Dublin 2010-08-14 +3297253 Illane Illane 51.79 -9.385 L LCTY IE M 04 0 123 Europe/Dublin 2010-08-14 +3297254 Bull’s Pocket Bull's Pocket 51.77111 -9.39806 T HLL IE M 04 0 78 Europe/Dublin 2010-08-14 +3297255 Skahanagh Skahanagh 51.72333 -9.40917 L LCTY IE M 04 0 55 Europe/Dublin 2010-08-14 +3297256 Gortagarry Gortagarry 51.72694 -9.43944 L LCTY IE M 04 0 25 Europe/Dublin 2010-08-14 +3297257 Shandrum Shandrum 51.72972 -9.4275 L LCTY IE M 04 0 34 Europe/Dublin 2010-08-14 +3297258 Piersons Bridge Piersons Bridge 51.74417 -9.41556 P PPLL IE M 04 0 51 Europe/Dublin 2010-08-14 +3297259 Coorloum Coorloum 51.76639 -9.43361 L LCTY IE M 04 0 88 Europe/Dublin 2010-08-14 +3297260 Cloonygorman Cloonygorman 51.71778 -9.39222 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3297261 Reenadisert Court Reenadisert Court 51.73194 -9.44056 S EST IE M 04 0 25 Europe/Dublin 2010-08-14 +3297262 Reenydonagan Lough Reenydonagan Lough 51.71333 -9.45 H LK IE M 04 0 12 Europe/Dublin 2010-08-14 +3297263 Horse Island Horse Island 51.70917 -9.47083 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3297264 Whiddy Point East Whiddy Point East 51.71417 -9.48167 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3297265 Ardnamanagh Point Ardnamanagh Point 51.72306 -9.49056 T PT IE M 04 0 8 Europe/Dublin 2010-08-14 +3297266 Four Heads Point Four Heads Point 51.72194 -9.55139 T PT IE M 04 0 25 Europe/Dublin 2010-08-14 +3297267 Big Point Big Point 51.73278 -9.54528 T PT IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3297268 Ardnagaskel House Ardnagaskel House 51.73028 -9.47722 S HSE IE M 04 0 39 Europe/Dublin 2010-08-14 +3297269 Snave Snave 51.74222 -9.46722 L LCTY IE M 04 0 71 Europe/Dublin 2010-08-14 +3297270 Lough More Lough More 51.7425 -9.48778 H LK IE M 04 0 139 Europe/Dublin 2010-08-14 +3297271 Coomhola Bridge Coomhola Bridge 51.75389 -9.45889 P PPLL IE M 04 0 79 Europe/Dublin 2010-08-14 +3297272 Barony Bridge Barony Bridge 51.76139 -9.525 P PPLL IE M 04 0 149 Europe/Dublin 2010-08-14 +3297273 Crossterry Bridge Crossterry Bridge 51.78139 -9.55583 P PPLL IE M 04 0 188 Europe/Dublin 2010-08-14 +3297274 Derroograne Derroograne 51.76917 -9.51694 L LCTY IE M 04 0 180 Europe/Dublin 2010-08-14 +3297275 Carran Carran 51.7725 -9.45111 P PPL IE M 04 0 269 Europe/Dublin 2010-08-14 +3297276 Furkeal Bridge Furkeal Bridge 51.74139 -9.55917 P PPLL IE M 04 0 38 Europe/Dublin 2010-08-14 +3297277 Cromwella Bridge Cromwella Bridge 51.75917 -9.55306 P PPLL IE M 04 0 65 Europe/Dublin 2010-08-14 +3297278 Shrone Hill Shrone Hill 51.74944 -9.57444 T HLL IE M 04 0 52 Europe/Dublin 2010-08-14 +3297279 Barony River Barony River 51.7625 -9.52694 H STM IE M 04 0 120 Europe/Dublin 2010-08-14 +3297280 Skehil Skehil 51.77639 -9.58833 L LCTY IE M 04 0 207 Europe/Dublin 2010-08-14 +3297281 Coomhola Mountain Coomhola Mountain 51.78889 -9.45778 T MT IE M 04 0 425 Europe/Dublin 2010-08-14 +3297282 Barraboy Mountain Barraboy Mountain 51.80111 -9.54111 T MT IE M 11 0 269 Europe/Dublin 1997-10-30 +3297283 Nagarriva Nagarriva 51.79917 -9.51278 T MT IE M 11 0 322 Europe/Dublin 1997-10-30 +3297284 Banane Bridge Banane Bridge 51.82361 -9.5375 P PPLL IE M 11 0 151 Europe/Dublin 2010-08-14 +3297285 Deelis Deelis 51.81694 -9.52167 T MT IE M 11 0 115 Europe/Dublin 2010-08-14 +3297286 Drehideighteragh Bridge Drehideighteragh Bridge 51.8325 -9.49722 P PPLL IE M 11 0 190 Europe/Dublin 2010-08-14 +3297287 Curragraigue Curragraigue 51.83806 -9.51056 L LCTY IE M 11 0 82 Europe/Dublin 2010-08-14 +3297288 Barrerneen Barrerneen 51.84194 -9.49194 T MT IE M 11 0 188 Europe/Dublin 2010-08-14 +3297289 Castlegoat Rock Castlegoat Rock 51.83833 -9.58472 T RK IE M 11 0 257 Europe/Dublin 2010-08-14 +3297290 Derrynacaheragh Derrynacaheragh 51.83361 -9.56972 T MT IE M 11 0 293 Europe/Dublin 2010-08-14 +3297291 Priests Leap Priests Leap 51.81056 -9.46306 T MT IE M 11 0 492 Europe/Dublin 1997-10-30 +3297292 Knockeirka Knockeirka 51.85444 -9.55361 T MT IE M 11 0 118 Europe/Dublin 2010-08-14 +3297293 Coolnagoppoge Coolnagoppoge 51.85611 -9.50528 P PPL IE M 11 0 139 Europe/Dublin 2010-08-14 +3297294 Esk Mountain Esk Mountain 51.79972 -9.56444 T MT IE M 11 0 273 Europe/Dublin 1997-10-30 +3297295 Lough Boy Lough Boy 51.80833 -9.46167 H LK IE M 04 0 686 Europe/Dublin 2010-08-14 +3297296 Knocknamanagh Knocknamanagh 51.85 -9.43278 T MT IE M 11 0 325 Europe/Dublin 2010-08-14 +3297297 Lough Akinkeen Lough Akinkeen 51.8425 -9.43056 H LK IE M 11 0 325 Europe/Dublin 2010-08-14 +3297298 Coolnkeen Coolnkeen 51.83917 -9.43556 T SLP IE M 11 0 450 Europe/Dublin 1997-10-30 +3297299 Knockantooreen Knockantooreen 51.86028 -9.39694 T MT IE M 11 0 258 Europe/Dublin 2010-08-14 +3297300 Lough Nambrackderg Lough Nambrackderg 51.83389 -9.39944 H LK IE M 04 0 325 Europe/Dublin 2010-08-14 +3297301 Borbin Valley Borbin Valley 51.82667 -9.39306 T VAL IE M 04 0 301 Europe/Dublin 2010-08-14 +3297302 Curramore Lough Curramore Lough 51.80444 -9.44278 H LK IE M 04 0 606 Europe/Dublin 2010-08-14 +3297303 Curramore Curramore 51.80194 -9.42333 L LCTY IE M 04 0 421 Europe/Dublin 2010-08-14 +3297304 Lough Fadda Lough Fadda 51.83389 -9.34806 H LK IE M 04 0 340 Europe/Dublin 2010-08-14 +3297305 Gouganeharra Forest Park Gouganeharra Forest Park 51.845 -9.33917 L PRK IE M 04 0 340 Europe/Dublin 2010-08-14 +3297306 Cappaboy Beg Cappaboy Beg 51.80806 -9.33083 P PPL IE M 04 0 282 Europe/Dublin 2010-08-14 +3297307 Lackavane Lackavane 51.81778 -9.33833 L LCTY IE M 04 0 439 Europe/Dublin 2010-08-14 +3297308 Curraglass Curraglass 51.82111 -9.32778 L LCTY IE M 04 0 384 Europe/Dublin 2010-08-14 +3297309 Foilastookeen Foilastookeen 51.83444 -9.32639 T MT IE M 04 0 340 Europe/Dublin 2010-08-14 +3297310 Bealick Bealick 51.85556 -9.34444 T MT IE M 04 0 398 Europe/Dublin 2010-08-14 +3297311 Gortafludig Gortafludig 51.85556 -9.28389 P PPL IE M 04 0 238 Europe/Dublin 2010-08-14 +3297312 Doughill Mountain Doughill Mountain 51.82694 -9.28861 T MT IE M 04 0 188 Europe/Dublin 2010-08-14 +3297313 Douce Mountain Douce Mountain 51.81083 -9.2725 T MT IE M 04 0 340 Europe/Dublin 2010-08-14 +3297314 Cullenagh Bridge Cullenagh Bridge 51.81528 -9.29833 P PPLL IE M 04 0 278 Europe/Dublin 2010-08-14 +3297315 Lough Nambrackderg Lough Nambrackderg 51.80972 -9.225 H LK IE M 04 0 188 Europe/Dublin 2010-08-14 +3297316 Derryriordane Derryriordane 51.8175 -9.26556 L LCTY IE M 04 0 269 Europe/Dublin 2010-08-14 +3297317 Cloghburn Cloghburn 51.84167 -9.27833 P PPL IE M 04 0 155 Europe/Dublin 2010-08-14 +3297318 Bargarriff Bargarriff 51.84889 -9.26056 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3297319 Inchinossig Bridge Inchinossig Bridge 51.85833 -9.24 P PPLL IE M 04 0 150 Europe/Dublin 2010-08-14 +3297320 Calaiste Calaiste 51.86722 -9.22333 L LCTY IE M 04 0 229 Europe/Dublin 2010-08-14 +3297321 Keabraugh Keabraugh 51.84417 -9.2275 L LCTY IE M 04 0 145 Europe/Dublin 2010-08-14 +3297322 Drohidaspaunig Bridge Drohidaspaunig Bridge 51.82944 -9.19778 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3297323 Carriganine Carriganine 51.82361 -9.20528 T HLL IE M 04 0 185 Europe/Dublin 2010-08-14 +3297324 Cloghboola Bridge Cloghboola Bridge 51.815 -9.23333 P PPLL IE M 04 0 163 Europe/Dublin 2010-08-14 +3297325 Carrigmount Carrigmount 51.80333 -9.2025 T MT IE M 04 0 282 Europe/Dublin 2010-08-14 +3297326 Knockrour Knockrour 51.81083 -9.21139 T MT IE M 04 0 221 Europe/Dublin 2010-08-14 +3297327 Currahy Bridge Currahy Bridge 51.85667 -9.17528 P PPLL IE M 04 0 153 Europe/Dublin 2010-08-14 +3297328 Graigue Bridge Graigue Bridge 51.85694 -9.16611 P PPLL IE M 04 0 151 Europe/Dublin 2010-08-14 +3297329 Turnaspidary Turnaspidary 51.86667 -9.18111 P PPL IE M 04 0 211 Europe/Dublin 2010-08-14 +3297330 Coornahahilty Coornahahilty 51.84028 -9.18139 T HLL IE M 04 0 143 Europe/Dublin 2010-08-14 +3297331 Mount Prospect Mount Prospect 51.825 -9.18917 T MT IE M 04 0 186 Europe/Dublin 2010-08-14 +3297332 Mullaghmearogafin Mullaghmearogafin 51.81944 -9.16667 T MT IE M 04 0 161 Europe/Dublin 2010-08-14 +3297333 Gortnahoughtee Gortnahoughtee 51.83083 -9.16972 L LCTY IE M 04 0 147 Europe/Dublin 2010-08-14 +3297334 Tullagh Tullagh 51.805 -9.16389 L LCTY IE M 04 0 185 Europe/Dublin 2010-08-14 +3297335 Carrigarierk Carrigarierk 51.81778 -9.14417 T MT IE M 04 0 152 Europe/Dublin 2010-08-14 +3297336 Derryvane Derryvane 51.86944 -9.14111 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3297337 Gortnalour Gortnalour 51.8375 -9.10056 T HLL IE M 04 0 151 Europe/Dublin 2010-08-14 +3297338 Carrigdangan Carrigdangan 51.81861 -9.10528 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3297339 Cross Cross 51.80556 -9.10417 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3297340 Bohane’s Cross Roads Bohane's Cross Roads 51.84667 -9.10806 P PPLL IE M 04 0 135 Europe/Dublin 2010-08-14 +3297341 Killhanna Cross Roads Killhanna Cross Roads 51.82694 -9.07444 P PPLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3297342 Johnstown Johnstown 51.81917 -9.08944 P PPL IE M 04 0 154 Europe/Dublin 2010-08-14 +3297343 Haremount Haremount 51.8325 -9.09 L LCTY IE M 04 0 156 Europe/Dublin 2010-08-14 +3297344 Carrignacurra Castle Carrignacurra Castle 51.86028 -9.10472 S CSTL IE M 04 0 147 Europe/Dublin 2010-08-14 +3297345 Rassmore Rassmore 51.87083 -9.08306 P PPL IE M 04 0 155 Europe/Dublin 2010-08-14 +3297346 Clonmoyle House Clonmoyle House 51.85528 -9.0575 S HSE IE M 04 0 127 Europe/Dublin 2010-08-14 +3297347 Glan Cross Roads Glan Cross Roads 51.8075 -9.05444 P PPLL IE M 04 0 153 Europe/Dublin 2010-08-14 +3297348 Knockaunnagorp Knockaunnagorp 51.83361 -9.03111 T HLL IE M 04 0 148 Europe/Dublin 2010-08-14 +3297349 Baulbrack Baulbrack 51.83611 -9.02056 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3297350 Slieveowen Slieveowen 51.82056 -9.00056 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3297351 Knockane Knockane 51.84194 -8.97722 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3297352 Moneyeusker Moneyeusker 51.86583 -9.02361 L LCTY IE M 04 0 121 Europe/Dublin 2010-08-14 +3297353 Mullaghroe Mullaghroe 51.87083 -8.98222 L LCTY IE M 04 0 122 Europe/Dublin 2010-08-14 +3297354 Deshure Deshure 51.84611 -8.99694 P PPL IE M 04 0 153 Europe/Dublin 2010-08-14 +3297355 Kilmichael Kilmichael 51.84806 -9.03556 P PPL IE M 04 0 132 Europe/Dublin 2010-08-14 +3297356 Carrigboy Castle Carrigboy Castle 51.84167 -9.02417 S CSTL IE M 04 0 144 Europe/Dublin 2010-08-14 +3297357 Boylegrove Boylegrove 51.86944 -9.02694 P PPL IE M 04 0 109 Europe/Dublin 2010-08-14 +3297358 Kilbarry Hill Kilbarry Hill 51.86889 -9.05917 T HLL IE M 04 0 151 Europe/Dublin 2010-08-14 +3297686 Dromgour Dromgour 51.865 -10.38778 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297687 Glanearagh Glanearagh 51.84944 -10.38917 L LCTY IE M 11 0 35 Europe/Dublin 2010-08-14 +3297688 Ballynahow Ballynahow 51.85472 -10.36222 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +3297689 Lateeve Lateeve 51.87556 -10.34722 P PPL IE M 11 0 181 Europe/Dublin 2010-08-14 +3297690 Kilkeaveragh Kilkeaveragh 51.86972 -10.33194 T MT IE M 11 0 372 188 Europe/Dublin 2010-08-14 +3297691 Killabounia Killabounia 51.85944 -10.33028 L LCTY IE M 11 0 135 Europe/Dublin 2010-08-14 +3297692 Keel Keel 51.85083 -10.32722 L LCTY IE M 11 0 107 Europe/Dublin 2010-08-14 +3297693 Garrane Garrane 51.88083 -10.31278 P PPL IE M 11 0 235 Europe/Dublin 2010-08-14 +3297694 Killbarly Killbarly 51.84556 -10.29667 P PPL IE M 11 0 273 Europe/Dublin 2010-08-14 +3297695 Cools Cools 51.85778 -10.29722 P PPL IE M 11 0 250 Europe/Dublin 2010-08-14 +3297696 Emlaghmore River Emlaghmore River 51.84611 -10.24056 H STM IE M 11 0 2 Europe/Dublin 2010-08-14 +3297697 Muingydowda Muingydowda 51.86861 -10.22778 L LCTY IE M 11 0 18 Europe/Dublin 2010-08-14 +3297698 Emlaghdreenagh Emlaghdreenagh 51.85583 -10.22306 L LCTY IE M 11 0 9 Europe/Dublin 2010-08-14 +3297699 Killobuaig Killobuaig 51.88778 -10.26806 L LCTY IE M 11 0 212 Europe/Dublin 2010-08-14 +3297700 Long Island Long Island 51.88 -10.40278 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297701 Horse Island Horse Island 51.88389 -10.39694 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297702 Beenaniller Head Beenaniller Head 51.89806 -10.42056 T CAPE IE M 11 0 78 Europe/Dublin 2010-08-14 +3297703 Fogher Cliff Fogher Cliff 51.92361 -10.35556 T CLF IE M 11 0 96 Europe/Dublin 2010-08-14 +3297704 Geokaun Geokaun 51.92444 -10.34556 T HLL IE M 11 0 95 Europe/Dublin 2010-08-14 +3297705 Dohilla Dohilla 51.92806 -10.35028 L LCTY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297706 Kilbeg Mountain Kilbeg Mountain 51.92028 -10.31417 T HLL IE M 11 0 150 Europe/Dublin 2010-08-14 +3297707 Chapeltown Chapeltown 51.90889 -10.32833 P PPL IE M 11 0 121 Europe/Dublin 2010-08-14 +3297708 Revenue House Revenue House 51.91194 -10.2975 S HSEC IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297709 Ardcost Ardcost 51.90444 -10.27806 P PPLL IE M 11 0 56 Europe/Dublin 2010-08-14 +3297710 Lamanagh Lamanagh 51.8675 -10.37361 P PPL IE M 11 0 257 Europe/Dublin 2010-08-14 +3297711 Minanes Minanes 51.65056 -9.17972 P PPLL IE M 04 0 125 Europe/Dublin 2010-08-14 +3297712 Lamb Island Lamb Island 51.94361 -10.29722 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297713 Fort Point Fort Point 51.93389 -10.31944 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297714 Lught Point Lught Point 51.94083 -10.27417 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297715 Reenard Cross Reenard Cross 51.93472 -10.24111 P PPL IE M 11 0 51 Europe/Dublin 2010-08-14 +3297716 Foughil Island Foughil Island 51.94611 -10.25 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297717 Killelan Killelan 51.95611 -10.2875 P PPL IE M 11 0 66 Europe/Dublin 2010-08-14 +3297718 Cashel River Cashel River 51.60306 -9.09444 H STM IE M 04 0 75 Europe/Dublin 2010-08-14 +3297719 Emlagh Emlagh 51.965 -10.26639 P PPL IE M 11 0 33 Europe/Dublin 2010-08-14 +3297720 Cooncrome Harbour Cooncrome Harbour 51.96889 -10.27083 H HBR IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3297721 Bentee Bentee 51.93583 -10.21472 T MT IE M 11 0 379 144 Europe/Dublin 2010-08-14 +3297722 Killoe Killoe 51.92278 -10.2075 L LCTY IE M 11 0 137 Europe/Dublin 2010-08-14 +3297723 Oghermong Oghermong 51.91417 -10.24917 L LCTY IE M 11 0 11 Europe/Dublin 2010-08-14 +3297724 Derreen Derreen 51.89806 -10.24278 P PPL IE M 11 0 14 Europe/Dublin 2010-08-14 +3297725 Derreen River Derreen River 51.90083 -10.24861 H STM IE M 11 0 6 Europe/Dublin 2010-08-14 +3297726 Kilpeaean Cross Roads Kilpeaean Cross Roads 51.89167 -10.21778 P PPL IE M 11 0 49 Europe/Dublin 2010-08-14 +3297727 Laharan South Laharan South 51.90861 -10.22306 L LCTY IE M 11 0 65 Europe/Dublin 2010-08-14 +3297728 Aghatubrid Aghatubrid 51.90417 -10.18333 T MT IE M 11 0 433 297 Europe/Dublin 2010-08-14 +3297729 Tooreennamna Tooreennamna 51.73056 -9.86278 T MT IE M 04 0 525 439 Europe/Dublin 2010-08-14 +3297730 Kineigh House Kineigh House 51.86528 -10.18361 S HSEC IE M 11 0 26 Europe/Dublin 2010-08-14 +3297731 Inchiclogh Inchiclogh 51.94833 -10.19361 L LCTY IE M 11 0 78 Europe/Dublin 2010-08-14 +3297732 New Chapel Cross New Chapel Cross 51.85139 -10.16667 P PPL IE M 11 0 18 Europe/Dublin 2010-08-14 +3297733 Caherbarnagh Caherbarnagh 51.85083 -10.12472 P PPL IE M 11 0 23 Europe/Dublin 2010-08-14 +3297734 Dromkeare Bridge Dromkeare Bridge 51.85333 -10.11 P PPL IE M 11 0 18 Europe/Dublin 2010-08-14 +3297735 Scarriff Scarriff 51.85833 -10.16806 P PPL IE M 11 0 18 Europe/Dublin 2010-08-14 +3297736 Knag Knag 51.85528 -10.13611 T HLL IE M 11 0 210 63 Europe/Dublin 2010-08-14 +3297737 Sallihig Sallihig 51.86639 -10.13194 L LCTY IE M 11 0 74 Europe/Dublin 2010-08-14 +3297738 Dromod Dromod 51.86611 -10.11 L LCTY IE M 11 0 26 Europe/Dublin 2010-08-14 +3297739 Coomduff Coomduff 51.87056 -10.10472 T HLL IE M 11 0 247 62 Europe/Dublin 2010-08-14 +3297740 Derrineden Derrineden 51.88167 -10.08667 L LCTY IE M 11 0 134 Europe/Dublin 2010-08-14 +3297741 Dromaragh Dromaragh 51.89778 -10.12861 P PPL IE M 11 0 111 Europe/Dublin 2010-08-14 +3297742 Maulin Maulin 51.90583 -10.1325 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +3297743 Bawnduff Bawnduff 51.91139 -10.14694 T MT IE M 11 0 415 269 Europe/Dublin 2010-08-14 +3297744 Canuig Canuig 51.91278 -10.10472 L LCTY IE M 11 0 137 Europe/Dublin 2010-08-14 +3297745 Knockavohaun Knockavohaun 51.92472 -10.11444 T MT IE M 11 0 376 232 Europe/Dublin 2010-08-14 +3297746 Derrymore Derrymore 51.93278 -10.13333 L LCTY IE M 11 0 188 Europe/Dublin 2010-08-14 +3297747 Glanbeg Glanbeg 51.84806 -10.07306 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +3297748 Oughtiv Oughtiv 51.8625 -10.06917 P PPL IE M 11 0 81 Europe/Dublin 2010-08-14 +3297749 Lough Namona Lough Namona 51.87833 -10.03861 H LK IE M 11 0 88 Europe/Dublin 2010-08-14 +3297750 Derrlana Lodge Derrlana Lodge 51.89306 -10.03333 S HSE IE M 11 0 99 Europe/Dublin 2010-08-14 +3297751 Killeenleagh Bridge Killeenleagh Bridge 51.90833 -10.06444 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +3297752 Knockaneden Cross Knockaneden Cross 51.94222 -10.09444 P PPL IE M 11 0 132 Europe/Dublin 2010-08-14 +3297753 Caunoge Caunoge 51.95389 -10.06306 T MT IE M 11 0 497 337 Europe/Dublin 2010-08-14 +3297754 Keelnagore Keelnagore 51.93833 -10.11222 T HLL IE M 11 0 177 Europe/Dublin 2010-08-14 +3297755 Srugreana Abbey Srugreana Abbey 51.95361 -10.13778 S MSTY IE M 11 0 105 Europe/Dublin 2010-08-14 +3297756 Cooduff Cooduff 51.9625 -10.13417 T HLL IE M 11 0 238 91 Europe/Dublin 2010-08-14 +3297757 Terrnahila Terrnahila 51.96167 -10.095 L LCTY IE M 11 0 100 Europe/Dublin 2010-08-14 +3297758 Derreenmoria Derreenmoria 51.97306 -10.14472 P PPL IE M 11 0 75 Europe/Dublin 2010-08-14 +3297759 Foilmore Bridge Foilmore Bridge 51.97556 -10.15028 P PPL IE M 11 0 61 Europe/Dublin 2010-08-14 +3297760 Dooneen Dooneen 51.97722 -10.16778 L LCTY IE M 11 0 57 Europe/Dublin 2010-08-14 +3297761 Limateerha Limateerha 51.99111 -10.12056 L LCTY IE M 11 0 79 Europe/Dublin 2010-08-14 +3298054 Coosfadda Coosfadda 51.98278 -10.26333 H COVE IE M 11 0 41 Europe/Dublin 2010-08-14 +3298055 Slievagh Slievagh 51.98528 -10.24972 T HLL IE M 11 0 210 63 Europe/Dublin 2010-08-14 +3298056 Castlequin Castlequin 51.98111 -10.23194 L LCTY IE M 11 0 188 Europe/Dublin 2010-08-14 +3298057 Killurly Commons Killurly Commons 52.00194 -10.18278 T MT IE M 11 0 607 421 Europe/Dublin 2010-08-14 +3298058 Glendalough Lakes Glendalough Lakes 52.00306 -10.16306 H LKS IE M 11 0 421 Europe/Dublin 2010-08-14 +3298059 Gull Rocks Gull Rocks 52.02083 -10.1575 T RKS IE M 11 0 54 Europe/Dublin 2010-08-14 +3298060 Roads Roads 52.01917 -10.14556 P PPL IE M 11 0 102 Europe/Dublin 2010-08-14 +3298061 Roads Lough Roads Lough 52.01667 -10.13167 H LK IE M 11 0 149 Europe/Dublin 2010-08-14 +3298062 Kells Lough Kells Lough 52.02222 -10.11583 H LK IE M 11 0 137 Europe/Dublin 2010-08-14 +3298063 Kells Kells 52.01889 -10.105 P PPL IE M 11 0 94 Europe/Dublin 2010-08-14 +3298064 Darby’s Bridge Darby's Bridge 52.01417 -10.10139 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +3298065 Reacaslagh Reacaslagh 52.01028 -10.10333 P PPL IE M 11 0 188 Europe/Dublin 2010-08-14 +3298066 Mount Foley Mount Foley 52.015 -10.08778 T HLL IE M 11 0 250 172 Europe/Dublin 2010-08-14 +3298067 Gleensir Viaduct Gleensir Viaduct 52.03139 -10.08111 L LCTY IE M 11 0 286 Europe/Dublin 2010-08-14 +3298068 Coomnacronia Lake Coomnacronia Lake 52.00833 -10.03694 H LK IE M 11 0 492 Europe/Dublin 2010-08-14 +3298069 Been Hill Been Hill 52.00389 -10.06417 T MT IE M 11 0 628 345 Europe/Dublin 2010-08-14 +3298070 Mullaghnarakill Mullaghnarakill 52.00222 -10.03778 T MT IE M 11 0 665 492 Europe/Dublin 2010-08-14 +3298071 Teermoyle Mountain Teermoyle Mountain 51.98583 -10.03528 T MT IE M 11 0 744 602 Europe/Dublin 2010-08-14 +3298072 Coomaglaslaw Lake Coomaglaslaw Lake 52.00361 -10.02083 H LK IE M 11 0 260 Europe/Dublin 2010-08-14 +3298073 Coomreagh Coomreagh 51.99944 -10.00722 T MT IE M 11 0 512 304 Europe/Dublin 2010-08-14 +3298074 Feaklecally Feaklecally 52.04194 -10.05528 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298075 Knockboy Knockboy 52.04167 -10.01778 T HLL IE M 11 0 496 -9999 Europe/Dublin 2010-08-14 +3298076 Knockatinna Knockatinna 52.04639 -9.99639 T HLL IE M 11 0 207 70 Europe/Dublin 2010-08-14 +3298077 Mountain Stage Mountain Stage 52.04167 -9.99972 T HLL IE M 11 0 70 Europe/Dublin 2010-08-14 +3298078 Coolnaharragil Coolnaharragil 52.035 -10.01417 L LCTY IE M 11 0 99 Europe/Dublin 2010-08-14 +3298079 Letter East Letter East 52.02917 -10.01028 L LCTY IE M 11 0 156 Europe/Dublin 2010-08-14 +3298080 Ballynakilly Upper Ballynakilly Upper 52.02722 -9.97472 P PPL IE M 11 0 77 Europe/Dublin 2010-08-14 +3298081 Baliynakilly Baliynakilly 52.01222 -9.96083 P PPL IE M 11 0 210 Europe/Dublin 2010-08-14 +3298082 Knocknaman Knocknaman 51.99361 -9.98167 T MT IE M 11 0 559 322 Europe/Dublin 2010-08-14 +3298083 Coomnagrossaun Lake Coomnagrossaun Lake 51.99417 -9.9725 H LK IE M 11 0 319 Europe/Dublin 2010-08-14 +3298084 Coomeeneragh Lake Coomeeneragh Lake 51.98583 -9.9775 H LK IE M 11 0 424 Europe/Dublin 2010-08-14 +3298085 Meenteog Meenteog 51.98083 -9.99028 T MT IE M 11 0 716 480 Europe/Dublin 2010-08-14 +3298086 Cummernabarnadarriga Glen Cummernabarnadarriga Glen 51.98 -9.96833 T GAP IE M 11 0 469 Europe/Dublin 2010-08-14 +3298087 Lough Nellinane Lough Nellinane 51.88583 -10.01389 H LK IE M 11 0 147 Europe/Dublin 2010-08-14 +3298088 Tooreenboy Lough Tooreenboy Lough 51.90556 -9.9775 H LK IE M 11 0 177 Europe/Dublin 2010-08-14 +3298089 Adoolig Lough Adoolig Lough 51.90333 -9.96361 H LK IE M 11 0 274 Europe/Dublin 2010-08-14 +3298090 Lough Coomavanniha Lough Coomavanniha 51.88528 -9.96806 H LK IE M 11 0 363 Europe/Dublin 2010-08-14 +3298091 Lough Coomeathcun Lough Coomeathcun 51.86861 -9.98944 H LK IE M 11 0 340 Europe/Dublin 2010-08-14 +3298092 Lough Iskanamacteery Lough Iskanamacteery 51.86222 -10.02583 H LK IE M 11 0 188 Europe/Dublin 2010-08-14 +3298093 Lough Nambrackdarrig Lough Nambrackdarrig 51.85806 -10.00972 H LK IE M 11 0 370 Europe/Dublin 2010-08-14 +3298094 Lough Slievenushaska Lough Slievenushaska 51.86056 -9.96694 H LK IE M 11 0 340 Europe/Dublin 2010-08-14 +3298095 Lomanagh Lomanagh 51.85333 -9.93833 T HLL IE M 11 0 83 Europe/Dublin 2010-08-14 +3298096 Lough Dromtine Lough Dromtine 51.86722 -9.93389 H LK IE M 11 0 113 Europe/Dublin 2010-08-14 +3298097 Dughile and Coomavanniha Dughile and Coomavanniha 51.89167 -9.98333 L LCTY IE M 11 0 286 Europe/Dublin 2010-08-14 +3298098 Knocknagantee Knocknagantee 51.89556 -9.93417 T MT IE M 11 0 676 447 Europe/Dublin 2010-08-14 +3298099 Derreen Derreen 51.91528 -10.01056 L LCTY IE M 11 0 136 Europe/Dublin 2010-08-14 +3298100 Lissatinnig Bridge Lissatinnig Bridge 51.92944 -9.99528 P PPL IE M 11 0 144 Europe/Dublin 2010-08-14 +3298101 Owroe Bridge Owroe Bridge 51.93361 -10.01833 P PPL IE M 11 0 94 Europe/Dublin 2010-08-14 +3298102 Owroe River Owroe River 51.93083 -10.01639 H STM IE M 11 0 99 Europe/Dublin 2010-08-14 +3298103 Coomaspeara Coomaspeara 51.96389 -9.98778 L LCTY IE M 11 0 243 Europe/Dublin 2010-08-14 +3298104 Thunder Rock Thunder Rock 52.03722 -10.60583 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298105 Fohish Rock Fohish Rock 52.03472 -10.6075 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298106 Canduff Canduff 52.07222 -10.57972 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298107 Croughmore Croughmore 52.08583 -10.56111 T HLL IE M 11 0 35 Europe/Dublin 2010-08-14 +3298108 Fatal Cliff Fatal Cliff 52.08806 -10.55306 T CLF IE M 11 0 48 Europe/Dublin 2010-08-14 +3298109 Barrack Rock Barrack Rock 52.01694 -10.54528 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298110 Wild Bank Wild Bank 52.06 -10.48139 H SHOL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298493 Slievedonagh Slievedonagh 52.09278 -10.54306 T HLL IE M 11 0 285 16 Europe/Dublin 2010-08-14 +3298494 Garraun Point Garraun Point 52.10333 -10.51111 T PT IE M 11 0 98 Europe/Dublin 2010-08-14 +3298495 Beginish Beginish 52.11528 -10.50944 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298496 Young Island Young Island 52.11917 -10.50694 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298497 Carrigfadda Carrigfadda 52.11361 -10.52694 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298498 Edye Rocks Edye Rocks 52.12528 -10.5275 T RKS IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298500 Beenacouma Beenacouma 52.10833 -10.44361 T MT IE M 11 0 425 111 Europe/Dublin 2010-08-14 +3298501 Kilvickadownig Kilvickadownig 52.10944 -10.39833 P PPL IE M 11 0 52 Europe/Dublin 2010-08-14 +3298502 Caherbullig Caherbullig 52.1175 -10.40333 P PPL IE M 11 0 90 Europe/Dublin 2010-08-14 +3298503 Mount Eagle Lough Mount Eagle Lough 52.12472 -10.42639 H LK IE M 11 0 284 Europe/Dublin 2010-08-14 +3298504 Kildurrih Kildurrih 52.12944 -10.4075 P PPL IE M 11 0 90 Europe/Dublin 2010-08-14 +3298505 Coumaleague Hill Coumaleague Hill 52.13583 -10.42583 T HLL IE M 11 0 169 Europe/Dublin 2010-08-14 +3298506 Carhoo Carhoo 52.13833 -10.46194 P PPL IE M 11 0 48 Europe/Dublin 2010-08-14 +3298507 Vinnaunmore Rock Vinnaunmore Rock 52.14639 -10.46306 T RK IE M 11 0 66 Europe/Dublin 2010-08-14 +3298508 Graigue Graigue 52.15 -10.46167 P PPL IE M 11 0 66 Europe/Dublin 2010-08-14 +3298509 Rahtnnane Rahtnnane 52.14167 -10.38556 P PPL IE M 11 0 78 Europe/Dublin 2010-08-14 +3298510 Teeravane Teeravane 52.1575 -10.4425 P PPL IE M 11 0 97 Europe/Dublin 2010-08-14 +3298511 Lateevebeg Lateevebeg 52.15167 -10.39333 L LCTY IE M 11 0 79 Europe/Dublin 2010-08-14 +3298512 Ballyoughteragh Ballyoughteragh 52.17861 -10.44861 P PPL IE M 11 0 49 Europe/Dublin 2010-08-14 +3298513 Ballinrannig Ballinrannig 52.175 -10.40917 P PPL IE M 11 0 57 Europe/Dublin 2010-08-14 +3298514 Emlagh Emlagh 52.16611 -10.37278 L LCTY IE M 11 0 41 Europe/Dublin 2010-08-14 +3298515 Farran Farran 52.19056 -10.42972 P PPL IE M 11 0 55 Europe/Dublin 2010-08-14 +3298516 Ballinrolla Ballinrolla 52.16861 -10.44528 P PPL IE M 11 0 45 Europe/Dublin 2010-08-14 +3298517 Ballineanig Ballineanig 52.1625 -10.39361 P PPL IE M 11 0 71 Europe/Dublin 2010-08-14 +3298518 Gaeltachia Gaeltachia 52.19528 -10.37694 L LCTY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298519 Carrigbrean Carrigbrean 52.2075 -10.41222 T PT IE M 11 0 71 Europe/Dublin 2010-08-14 +3298520 Caherard Caherard 52.14083 -10.35361 T HLL IE M 11 0 170 61 Europe/Dublin 2010-08-14 +3298521 Monaree Monaree 52.13278 -10.33722 T HLL IE M 11 0 129 27 Europe/Dublin 2010-08-14 +3298522 Saint Manchan’s Grave Saint Manchan's Grave 52.15444 -10.33389 S GRVE IE M 11 0 155 Europe/Dublin 2010-08-14 +3298523 Pointanskoh Pointanskoh 52.115 -10.36472 T PT IE M 11 0 1 Europe/Dublin 2010-08-14 +3298524 Saint’s Road Saint's Road 52.15722 -10.35306 P PPLL IE M 11 0 96 Europe/Dublin 2010-08-14 +3298525 Lateevemore Lateevemore 52.16056 -10.34056 T MT IE M 11 0 319 201 Europe/Dublin 2010-08-14 +3298526 Murreagh Murreagh An Mhuirioch,Murreagh 52.18694 -10.36389 P PPL IE M 11 0 19 Europe/Dublin 2010-08-14 +3298527 Ballylusky Ballylusky 52.19417 -10.35917 P PPL IE M 11 0 22 Europe/Dublin 2010-08-14 +3298528 Ballynana Ballynana 52.17 -10.34167 P PPL IE M 11 0 89 Europe/Dublin 2010-08-14 +3298529 Ballyeightragh Ballyeightragh 52.15583 -10.33694 L LCTY IE M 11 0 155 Europe/Dublin 2010-08-14 +3298530 Caherboshina Caherboshina 52.14528 -10.33778 P PPL IE M 11 0 109 Europe/Dublin 2010-08-14 +3298531 Reenconnell Reenconnell 52.19139 -10.325 T HLL IE M 11 0 294 147 Europe/Dublin 2010-08-14 +3298532 Pointagare Pointagare 52.23611 -10.36139 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298533 Beenmore Beenmore 52.23583 -10.34306 T HLL IE M 11 0 796 -9999 Europe/Dublin 2010-08-14 +3298534 Graffee Graffee 52.23167 -10.33278 P PPL IE M 11 0 99 Europe/Dublin 2010-08-14 +3298535 Dunacapple Island Dunacapple Island 52.21972 -10.38639 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298536 Glashbeg Glashbeg 52.21028 -10.38056 L LCTY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298537 Ballyroe Ballyroe 52.22694 -10.33694 L LCTY IE M 11 0 124 Europe/Dublin 2010-08-14 +3298538 Moorestown Moorestown 52.21917 -10.34111 P PPL IE M 11 0 115 Europe/Dublin 2010-08-14 +3298539 Feohanagh Feohanagh An Fheothanach,Feohanagh 52.21611 -10.35556 P PPL IE M 11 0 54 Europe/Dublin 2010-08-14 +3298540 Caherscullibeen Caherscullibeen 52.20083 -10.33444 P PPL IE M 11 0 86 Europe/Dublin 2010-08-14 +3298542 Reenconnell Reenconnell 52.18472 -10.31583 P PPL IE M 11 0 121 Europe/Dublin 2010-08-14 +3298543 Ballyhegbought Ballyhegbought 52.16694 -10.28972 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +3298544 Knocknahoran Knocknahoran 52.15417 -10.28222 P PPL IE M 11 0 65 Europe/Dublin 2010-08-14 +3298545 Sugarloaf Sugarloaf 52.15583 -10.24278 T HLL IE M 11 0 218 130 Europe/Dublin 2010-08-14 +3298546 Ballyhowler Ballyhowler 52.1625 -10.24083 L LCTY IE M 11 0 160 Europe/Dublin 2010-08-14 +3298547 Glin North Glin North 52.19 -10.27889 L LCTY IE M 11 0 188 Europe/Dublin 2010-08-14 +3298548 Knockmoylemore Knockmoylemore 52.17167 -10.21 T MT IE M 11 0 487 245 Europe/Dublin 2010-08-14 +3298549 Beennabrack Beennabrack 52.18139 -10.23722 T MT IE M 11 0 597 421 Europe/Dublin 2010-08-14 +3298550 Beenduff Beenduff 52.18222 -10.22056 T MT IE M 11 0 481 293 Europe/Dublin 2010-08-14 +3298551 Lough Coumeenoughter Lough Coumeenoughter 52.18611 -10.22333 H LK IE M 11 0 289 Europe/Dublin 2010-08-14 +3298552 Lough Gal Lough Gal 52.19111 -10.22917 H LK IE M 11 0 388 Europe/Dublin 2010-08-14 +3298553 Lough Duff Lough Duff 52.18889 -10.24111 H LK IE M 11 0 363 Europe/Dublin 2010-08-14 +3298554 Clogharee Lough Clogharee Lough 52.19 -10.21306 H LK IE M 11 0 244 Europe/Dublin 2010-08-14 +3298555 Lough Atlea Lough Atlea 52.19639 -10.20861 H LK IE M 11 0 149 Europe/Dublin 2010-08-14 +3298556 Lough Namna Lough Namna 52.19944 -10.25278 H LK IE M 11 0 279 Europe/Dublin 2010-08-14 +3298557 Kilquane Kilquane 52.21083 -10.32111 P PPL IE M 11 0 75 Europe/Dublin 2010-08-14 +3298558 Ballinloghig Ballinloghig 52.20222 -10.3075 P PPL IE M 11 0 77 Europe/Dublin 2010-08-14 +3298559 Gearhane Gearhane 52.20972 -10.26056 L LCTY IE M 11 0 308 Europe/Dublin 2010-08-14 +3298560 Lough Avoonane Lough Avoonane 52.21083 -10.22583 H LK IE M 11 0 311 Europe/Dublin 2010-08-14 +3298561 Lough Cruttia Lough Cruttia 52.22167 -10.22306 H LK IE M 11 0 280 Europe/Dublin 2010-08-14 +3298562 Lough Nalacken Lough Nalacken 52.22972 -10.23444 H LK IE M 11 0 407 Europe/Dublin 2010-08-14 +3298563 Ballynavenooragh Ballynavenooragh 52.22528 -10.30111 P PPL IE M 11 0 65 Europe/Dublin 2010-08-14 +3298564 Clash Clash 52.22139 -10.30361 L LCTY IE M 11 0 85 Europe/Dublin 2010-08-14 +3298565 Ballinknockane Ballinknockane 52.23528 -10.30056 P PPL IE M 11 0 41 Europe/Dublin 2010-08-14 +3298566 Ballycatrane Ballycatrane 52.23111 -10.32389 L LCTY IE M 11 0 69 Europe/Dublin 2010-08-14 +3298567 Brandon Creek Brandon Creek 52.24056 -10.31611 H COVE IE M 11 0 29 Europe/Dublin 2010-08-14 +3298568 Tiduff Tiduff 52.23972 -10.29944 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +3298569 Faha Faha 52.23972 -10.20806 P PPL IE M 11 0 176 Europe/Dublin 2010-08-14 +3298570 Cloonsharragh Cloonsharragh 52.2475 -10.17806 P PPL IE M 11 0 47 Europe/Dublin 2010-08-14 +3298571 Owennafeana River Owennafeana River 52.26583 -10.16278 H STM IE M 11 0 25 Europe/Dublin 2010-08-14 +3298572 Lough Duff Lough Duff 52.24722 -10.25611 H LK IE M 11 0 456 Europe/Dublin 2010-08-14 +3298573 Sauce Creek Sauce Creek 52.27611 -10.21583 H COVE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298574 Ballymore Point Ballymore Point 52.27778 -10.15806 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298575 Murirrigane Murirrigane 52.27694 -10.16861 P PPL IE M 11 0 96 Europe/Dublin 2010-08-14 +3298576 Bookeen Bookeen 52.28639 -10.17861 T HLL IE M 11 0 252 69 Europe/Dublin 2010-08-14 +3298577 Knockdeelea Knockdeelea 52.28167 -10.19222 T MT IE M 11 0 157 Europe/Dublin 2010-08-14 +3298578 Deelick Point Deelick Point 52.29139 -10.18083 T PT IE M 11 0 69 Europe/Dublin 2010-08-14 +3298579 Teer Teer 52.26028 -10.18167 P PPL IE M 11 0 105 Europe/Dublin 2010-08-14 +3298580 Cappagh Cappagh 52.25056 -10.16417 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298581 Boherboy Boherboy 52.22917 -10.17972 P PPL IE M 11 0 4 Europe/Dublin 2010-08-14 +3298582 Drom Drom 52.23361 -10.16722 L LCTY IE M 11 0 18 Europe/Dublin 2010-08-14 +3298583 Fermoyle House Fermoyle House 52.24194 -10.13 S HSEC IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298584 Kilmore Lodge Kilmore Lodge 52.21444 -10.16806 S HSE IE M 11 0 95 Europe/Dublin 2010-08-14 +3298585 Scoria River Scoria River 52.23611 -10.14361 H STM IE M 11 0 8 Europe/Dublin 2010-08-14 +3298586 Glennahoo River Glennahoo River 52.23528 -10.14111 H STM IE M 11 0 52 Europe/Dublin 2010-08-14 +3298587 Lough Doon Lough Doon 52.18694 -10.18972 H LK IE M 11 0 395 Europe/Dublin 2010-08-14 +3298588 Lough Camclaun Lough Camclaun 52.19722 -10.16694 H LK IE M 11 0 310 Europe/Dublin 2010-08-14 +3298589 Shevanea Shevanea 52.18389 -10.19083 T MT IE M 11 0 617 395 Europe/Dublin 2010-08-14 +3298590 Slievenalecka Slievenalecka 52.19139 -10.15472 T MT IE M 11 0 461 359 Europe/Dublin 2010-08-14 +3298591 Slievenagower Slievenagower 52.19917 -10.13944 T MT IE M 11 0 488 324 Europe/Dublin 2010-08-14 +3298592 Beenbo Beenbo 52.20167 -10.13028 T MT IE M 11 0 477 276 Europe/Dublin 2010-08-14 +3298593 Coumanare Lakes Coumanare Lakes 52.18306 -10.16139 H LKS IE M 11 0 465 Europe/Dublin 2010-08-14 +3298594 Lough Barnanageeha Lough Barnanageeha 52.17222 -10.14139 H LK IE M 11 0 302 Europe/Dublin 2010-08-14 +3298843 Ballymacadoyle Hill Ballymacadoyle Hill 52.11611 -10.29889 T HLL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298844 Crow Rock Crow Rock 52.10778 -10.27806 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298845 Ensk Ensk 52.11583 -10.28278 T HLL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298846 Lough Lough 52.13 -10.25889 L LCTY IE M 11 0 6 Europe/Dublin 2010-08-14 +3298847 Doonsheane Doonsheane 52.12611 -10.22639 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3298848 Trabeg Trabeg 52.11972 -10.22167 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298849 Emlagh East Emlagh East 52.13333 -10.23028 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3298850 Coon Coon 52.11028 -10.375 L LCTY IE M 11 0 1 Europe/Dublin 2010-08-14 +3298851 Garfinny River Garfinny River 52.13694 -10.21806 H STM IE M 11 0 12 Europe/Dublin 2010-08-14 +3298852 Sea Hill Sea Hill 52.11583 -10.18361 T HLL IE M 11 0 15 Europe/Dublin 2010-08-14 +3298853 Doonmanagh Doonmanagh 52.12611 -10.17722 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3298854 Tobernamoodane Tobernamoodane 52.13222 -10.19833 P PPL IE M 11 0 42 Europe/Dublin 2010-08-14 +3298855 Lisnarahardia Lisnarahardia 52.1525 -10.20167 L LCTY IE M 11 0 70 Europe/Dublin 2010-08-14 +3298856 Glan Mountain Glan Mountain 52.12111 -10.12333 T HLL IE M 11 0 308 -9999 Europe/Dublin 2010-08-14 +3298857 Aglish Aglish 52.13389 -10.14361 P PPL IE M 11 0 78 Europe/Dublin 2010-08-14 +3298858 Gubranna Gubranna 52.11556 -10.12917 T CAPE IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298859 Garrynadia Garrynadia 52.14306 -10.14583 L LCTY IE M 11 0 75 Europe/Dublin 2010-08-14 +3298860 Banage South Banage South 52.15278 -10.125 P PPL IE M 11 0 116 Europe/Dublin 2010-08-14 +3298861 Gowlin Gowlin 52.15056 -10.17722 P PPL IE M 11 0 111 Europe/Dublin 2010-08-14 +3298862 Owenalondrig River Owenalondrig River 52.13694 -10.20528 H STM IE M 11 0 23 Europe/Dublin 2010-08-14 +3298863 Windy Gap Windy Gap 52.17583 -10.13556 T GAP IE M 11 0 423 Europe/Dublin 2010-08-14 +3298864 Bunaneer Cottage Bunaneer Cottage 52.13806 -10.05361 S HSE IE M 11 0 56 Europe/Dublin 2010-08-14 +3298865 Owenasclul River Owenasclul River 52.13778 -10.05083 H STM IE M 11 0 56 Europe/Dublin 2010-08-14 +3298866 Carrigblagher Cliffs Carrigblagher Cliffs 52.17667 -10.07333 T CLF IE M 11 0 180 Europe/Dublin 2010-08-14 +3298867 Lough Anscaul Lough Anscaul 52.18194 -10.07167 H LK IE M 11 0 180 Europe/Dublin 2010-08-14 +3298868 Annagap Annagap 52.15694 -10.08333 L LCTY IE M 11 0 97 Europe/Dublin 2010-08-14 +3298869 Beenatoor Beenatoor 52.21472 -10.11194 T MT IE M 11 0 592 316 Europe/Dublin 2010-08-14 +3298870 Coumbann Coumbann 52.21778 -10.09889 T MT IE M 11 0 614 591 Europe/Dublin 2010-08-14 +3298871 Stradrally Mountain Stradrally Mountain 52.21778 -10.07 T MT IE M 11 0 800 455 Europe/Dublin 2010-08-14 +3298872 Lough Acummeen Lough Acummeen 52.21972 -10.07778 H LK IE M 11 0 466 Europe/Dublin 2010-08-14 +3298873 Lough Caum Lough Caum 52.2075 -10.05333 H LK IE M 11 0 361 Europe/Dublin 2010-08-14 +3298874 Lough Slat Lough Slat 52.20694 -10.03472 H LK IE M 11 0 269 Europe/Dublin 2010-08-14 +3298875 Doon Doon 52.20528 -10.02556 T MT IE M 11 0 365 245 Europe/Dublin 2010-08-14 +3298876 Red Cliff Red Cliff 52.14139 -10.03167 T CLF IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298877 Knockafeehane Knockafeehane 52.14972 -10.02306 T HLL IE M 11 0 302 65 Europe/Dublin 2010-08-14 +3298878 Mall Mall 52.16056 -10.03028 P PPL IE M 11 0 81 Europe/Dublin 2010-08-14 +3298879 Flemingstown Flemingstown 52.17667 -10.00667 T HLL IE M 11 0 252 174 Europe/Dublin 2010-08-14 +3298880 Knocknakilton Knocknakilton 52.19333 -9.99361 T MT IE M 11 0 426 292 Europe/Dublin 2010-08-14 +3298881 Lougher Lougher 52.1825 -9.99139 P PPL IE M 11 0 160 Europe/Dublin 2010-08-14 +3298882 Cummeen Cummeen 52.20639 -10.00556 T MT IE M 11 0 480 322 Europe/Dublin 2010-08-14 +3298883 Lough Acummeen Lough Acummeen 52.21278 -10.00111 H LK IE M 11 0 247 Europe/Dublin 2010-08-14 +3298884 Knockbeg Knockbeg 52.19667 -9.96528 T MT IE M 11 0 381 159 Europe/Dublin 2010-08-14 +3298885 Glanlough Glanlough 52.20583 -9.97917 P PPL IE M 11 0 227 Europe/Dublin 2010-08-14 +3298886 Beenaconroe Beenaconroe 52.22417 -10.04389 L LCTY IE M 11 0 338 Europe/Dublin 2010-08-14 +3298887 Carrigaday Carrigaday 52.225 -10.01306 T HLL IE M 11 0 243 148 Europe/Dublin 2010-08-14 +3298888 Tullaree Tullaree 52.24972 -10.01194 L LCTY IE M 11 0 46 Europe/Dublin 2010-08-14 +3298889 Augharasla Augharasla 52.23972 -9.97861 L LCTY IE M 11 0 6 Europe/Dublin 2010-08-14 +3298890 Lough Naparka Lough Naparka 52.29028 -10.01972 H LK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298891 Trench Bridge Trench Bridge 52.27056 -10.02944 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3298892 Illauntannig Illauntannig 52.32833 -10.02611 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298893 Illaunimmil Illaunimmil 52.33472 -10.05167 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298894 Reennafardarrig Reennafardarrig 52.33222 -10.02222 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298895 Mucklaghbeg Mucklaghbeg 52.32889 -10.0025 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298896 Scraggane Bay Scraggane Bay Scraggane Bay 52.30972 -10.02944 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3298897 Candiha Candiha 52.30472 -10.02889 L LCTY IE M 11 0 1 Europe/Dublin 2010-08-14 +3298898 Inch House Inch House 52.14472 -9.98167 S HSE IE M 11 0 64 Europe/Dublin 2010-08-14 +3298899 Maulagallane Maulagallane 51.85639 -9.91944 L LCTY IE M 11 0 63 Europe/Dublin 2010-08-14 +3298900 Gearha Gearha 51.85667 -9.88806 L LCTY IE M 11 0 64 Europe/Dublin 2010-08-14 +3298901 Letternadarriv Letternadarriv 51.865 -9.85167 L LCTY IE M 11 0 87 Europe/Dublin 2010-08-14 +3298902 Ardeen Ardeen 51.87417 -9.86361 L LCTY IE M 11 0 68 Europe/Dublin 2010-08-14 +3298903 Knocknafreaghane Knocknafreaghane 51.87444 -9.82639 T MT IE M 11 0 319 307 Europe/Dublin 2010-08-14 +3298904 Gortagowan Gortagowan 51.85306 -9.8275 P PPL IE M 11 0 113 Europe/Dublin 2010-08-14 +3298905 Bogare Bogare 51.88444 -9.83444 P PPL IE M 11 0 421 Europe/Dublin 2010-08-14 +3298906 Kealariddig Kealariddig 51.88722 -9.85806 L LCTY IE M 11 0 110 Europe/Dublin 2010-08-14 +3298907 Tullakeel Tullakeel 51.87667 -9.88694 P PPL IE M 11 0 170 Europe/Dublin 2010-08-14 +3298908 Eskine Eskine 51.8925 -9.82778 T MT IE M 11 0 320 188 Europe/Dublin 2010-08-14 +3298909 Knockarig Knockarig 51.90222 -9.83944 T MT IE M 11 0 330 188 Europe/Dublin 2010-08-14 +3298910 Faher Mountain Faher Mountain 51.90861 -9.85444 T MT IE M 11 0 393 343 Europe/Dublin 2010-08-14 +3298911 River Hill River Hill 51.89694 -9.87611 T MT IE M 11 0 346 286 Europe/Dublin 2010-08-14 +3298912 Lough Coomnacronia Lough Coomnacronia 51.89694 -9.90556 H LK IE M 11 0 373 Europe/Dublin 2010-08-14 +3298913 Lough Coomeen Lough Coomeen 51.90111 -9.88139 H LK IE M 11 0 334 Europe/Dublin 2010-08-14 +3298914 Lough Coomalougha Lough Coomalougha 51.91333 -9.90611 H LK IE M 11 0 340 Europe/Dublin 2010-08-14 +3298915 The Pocket The Pocket 51.92639 -9.85389 T MT IE M 11 0 752 442 Europe/Dublin 2010-08-14 +3298916 Ballytrusk Ballytrusk 51.93389 -9.91806 T MT IE M 11 0 324 245 Europe/Dublin 2010-08-14 +3298917 Coombaha Coombaha 51.92833 -9.95139 P PPL IE M 11 0 180 Europe/Dublin 2010-08-14 +3298918 Lettergarriv Lettergarriv 51.94028 -9.90056 P PPL IE M 11 0 154 Europe/Dublin 2010-08-14 +3298919 Knocknacusha Knocknacusha 51.94333 -9.92583 T MT IE M 11 0 549 363 Europe/Dublin 2010-08-14 +3299193 Ballaghbeama Gap Ballaghbeama Gap 51.94694 -9.82278 T GAP IE M 11 0 288 Europe/Dublin 2010-08-14 +3299194 Canknoogheda Canknoogheda 51.95472 -9.89778 L LCTY IE M 11 0 155 Europe/Dublin 2010-08-14 +3299195 Derreennageeha Derreennageeha 51.94639 -9.95417 L LCTY IE M 11 0 188 Europe/Dublin 2010-08-14 +3299196 Knocknagapple Knocknagapple 51.95722 -9.93278 T MT IE M 11 0 468 329 Europe/Dublin 2010-08-14 +3299197 Shronahiree Shronahiree 51.96333 -9.84111 L LCTY IE M 11 0 71 Europe/Dublin 2010-08-14 +3299198 Coomnacarrig Bridge Coomnacarrig Bridge 51.96556 -9.90972 P PPLL IE M 11 0 232 Europe/Dublin 2010-08-14 +3299199 Boheeskil Boheeskil 51.97583 -9.86111 P PPL IE M 11 0 86 Europe/Dublin 2010-08-14 +3299200 Beendarrig Beendarrig 51.97361 -9.82056 T HLL IE M 11 0 290 188 Europe/Dublin 2010-08-14 +3299201 Beenbane Beenbane 51.98167 -9.85722 P PPL IE M 11 0 124 Europe/Dublin 2010-08-14 +3299202 Gortmatoon West Gortmatoon West 51.99556 -9.85417 L LCTY IE M 11 0 136 Europe/Dublin 2010-08-14 +3299203 Bealtalaw Bridge Bealtalaw Bridge 51.98833 -9.87139 P PPL IE M 11 0 82 Europe/Dublin 2010-08-14 +3299204 Dromalonhurt Bridge Dromalonhurt Bridge 51.97528 -9.89556 P PPL IE M 11 0 150 Europe/Dublin 2010-08-14 +3299205 Dreenagh Dreenagh 51.9675 -9.92528 T MT IE M 11 0 361 269 Europe/Dublin 2010-08-14 +3299206 William Scott’s Well William Scott's Well 51.96667 -9.94194 H WLL IE M 11 0 359 Europe/Dublin 2010-08-14 +3299207 Ivy Rock Ivy Rock 51.97583 -9.92806 T RK IE M 11 0 201 Europe/Dublin 2010-08-14 +3299208 Neesha Neesha 51.98722 -9.93722 P PPL IE M 11 0 269 Europe/Dublin 2010-08-14 +3299209 Creeveen Creeveen 52.00194 -9.93639 P PPL IE M 11 0 322 Europe/Dublin 2010-08-14 +3299210 Beenreagh Beenreagh 52.00639 -9.95056 T MT IE M 11 0 496 340 Europe/Dublin 2010-08-14 +3299211 Meelagh River Meelagh River 52.01889 -9.88278 H STM IE M 11 0 60 Europe/Dublin 2010-08-14 +3299212 Corrawoolia Corrawoolia 52.00556 -9.88917 T HLL IE M 11 0 131 63 Europe/Dublin 2010-08-14 +3299213 Drom East Drom East 52.01806 -9.90028 L LCTY IE M 11 0 72 Europe/Dublin 2010-08-14 +3299214 Blackstomes Bridge Blackstomes Bridge 52.01722 -9.88 P PPL IE M 11 0 60 Europe/Dublin 2010-08-14 +3299215 Keel Keel 52.01722 -9.915 L LCTY IE M 11 0 96 Europe/Dublin 2010-08-14 +3299216 Shanacashel Shanacashel 52.0175 -9.85472 L LCTY IE M 11 0 103 Europe/Dublin 2010-08-14 +3299217 Coolroe Coolroe 52.03111 -9.93917 T MT IE M 11 0 414 290 Europe/Dublin 2010-08-14 +3299218 Bunglasha Bunglasha 52.02889 -9.90444 L LCTY IE M 11 0 103 Europe/Dublin 2010-08-14 +3299219 Glanbeny Bridge Glanbeny Bridge 52.03833 -9.95389 P PPLL IE M 11 0 111 Europe/Dublin 2010-08-14 +3299220 Cummergorm Glen Cummergorm Glen 52.03833 -9.93611 T GAP IE M 11 0 269 Europe/Dublin 2010-08-14 +3299221 Gortdirragh Gortdirragh 52.03333 -9.92056 L LCTY IE M 11 0 188 Europe/Dublin 2010-08-14 +3299222 Treangarra Treangarra 52.03944 -9.90472 L LCTY IE M 11 0 188 Europe/Dublin 2010-08-14 +3299223 Gortnagan Gortnagan 52.03417 -9.87722 L LCTY IE M 11 0 64 Europe/Dublin 2010-08-14 +3299224 Lough Nambrackdarrig Lough Nambrackdarrig 52.03861 -9.85139 H LK IE M 11 0 148 Europe/Dublin 2010-08-14 +3299225 Lough Nakirka Lough Nakirka 52.03861 -9.83111 H LK IE M 11 0 164 Europe/Dublin 2010-08-14 +3299226 Lough Cappanalea Lough Cappanalea 52.04611 -9.85444 H LK IE M 11 0 115 Europe/Dublin 2010-08-14 +3299227 Lough Cummernamuck Lough Cummernamuck 52.04889 -9.82778 H LK IE M 11 0 152 Europe/Dublin 2010-08-14 +3299228 Golagh Golagh 52.04861 -9.8575 P PPL IE M 11 0 115 Europe/Dublin 2010-08-14 +3299229 Derryfanga Derryfanga 52.02278 -9.81139 T MT IE M 11 0 356 324 Europe/Dublin 2010-08-14 +3299230 Lough Beg Lough Beg 52.05167 -9.87583 H LK IE M 11 0 71 Europe/Dublin 2010-08-14 +3299231 Coomcloghaun Lake Coomcloghaun Lake 52.05806 -9.81556 H LK IE M 11 0 103 Europe/Dublin 2010-08-14 +3299232 Lough Licka Lough Licka 52.06194 -9.81611 H LK IE M 11 0 89 Europe/Dublin 2010-08-14 +3299233 Lake Field Lake Field 52.07139 -9.84639 P PPL IE M 11 0 51 Europe/Dublin 2010-08-14 +3299234 Commaun Commaun 52.06083 -9.89833 L LCTY IE M 11 0 94 Europe/Dublin 2010-08-14 +3299235 Curraheen Curraheen 52.06222 -9.9225 P PPL IE M 11 0 97 Europe/Dublin 2010-08-14 +3299236 Caragh Cliff Caragh Cliff 52.07667 -9.85333 T CLF IE M 11 0 17 Europe/Dublin 2010-08-14 +3299237 Behy Bridge Behy Bridge 52.05694 -9.95056 P PPL IE M 11 0 47 Europe/Dublin 2010-08-14 +3299238 Doolahag Doolahag 52.07611 -9.91583 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3299239 Glendalough House Glendalough House 52.07694 -9.85944 S HSE IE M 11 0 10 Europe/Dublin 2010-08-14 +3299240 Lough Nambrackdarrig Lough Nambrackdarrig 52.08361 -9.8975 H LK IE M 11 0 1 Europe/Dublin 2010-08-14 +3299241 Knockaunroe Knockaunroe 52.08167 -9.92028 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3299242 Muingaphuca Muingaphuca 52.08389 -9.84194 L LCTY IE M 11 0 26 Europe/Dublin 2010-08-14 +3299243 Lough Yganavan Lough Yganavan 52.09861 -9.88778 H LK IE M 11 0 2 Europe/Dublin 2010-08-14 +3299244 Illaunstookagh Illaunstookagh 52.09944 -9.92833 L LCTY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299245 Cromane Cromane An Croman,An Cromán,Cromane 52.11611 -9.90278 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3299246 Keal Stream Keal Stream 52.11528 -9.84833 H STM IE M 11 0 9 Europe/Dublin 2010-08-14 +3299247 Garrane Garrane 52.11611 -9.82806 P PPL IE M 11 0 6 Europe/Dublin 2010-08-14 +3299248 Knockmore Knockmore 52.17694 -9.92472 T MT IE M 11 0 566 319 Europe/Dublin 2010-08-14 +3299249 Lack Mountain Lack Mountain 52.17889 -9.89111 T MT IE M 11 0 284 Europe/Dublin 2010-08-14 +3299250 Knockbrack Knockbrack 52.18444 -9.89806 T MT IE M 11 0 459 312 Europe/Dublin 2010-08-14 +3299251 Caherbla Caherbla 52.18556 -9.86778 T MT IE M 11 0 587 340 Europe/Dublin 2010-08-14 +3299252 Knockbrack Knockbrack 52.19722 -9.92 L LCTY IE M 11 0 255 Europe/Dublin 2010-08-14 +3299253 Beheenagh Beheenagh 52.19528 -9.88111 L LCTY IE M 11 0 332 Europe/Dublin 2010-08-14 +3299254 Corrin Corrin 52.20667 -9.925 T MT IE M 11 0 334 204 Europe/Dublin 2010-08-14 +3299255 Gortaleen Mountain Gortaleen Mountain 52.18111 -9.84444 T HLL IE M 11 0 280 221 Europe/Dublin 2010-08-14 +3299256 Black Rock Black Rock 52.17972 -9.84028 L LCTY IE M 11 0 186 Europe/Dublin 2010-08-14 +3299257 Castle Hill Castle Hill 52.19694 -9.82111 T MT IE M 11 0 602 515 Europe/Dublin 2010-08-14 +3299258 Faisi’s Grave Faisi's Grave 52.21639 -9.90833 S GRVE IE M 11 0 133 Europe/Dublin 2010-08-14 +3299259 Gearhane Gearhane 52.21889 -9.85722 T MT IE M 11 0 738 458 Europe/Dublin 2010-08-14 +3299260 Louglas River Louglas River 52.23083 -9.90333 H STM IE M 11 0 10 Europe/Dublin 2010-08-14 +3299261 Capparlogh Capparlogh 52.22639 -9.94556 L LCTY IE M 11 0 36 Europe/Dublin 2010-08-14 +3299262 Carrigagharoe Point Carrigagharoe Point 52.23806 -9.92528 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299263 Derrymore Derrymore 52.24028 -9.8425 P PPL IE M 11 0 110 Europe/Dublin 2010-08-14 +3299264 Illaunnacusha Illaunnacusha 52.30861 -9.90056 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299265 Little Samphire Island Little Samphire Island 52.27306 -9.885 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299266 Tawlaght Tawlaght 52.28722 -9.85778 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3299267 Carrahane Strand Carrahane Strand 52.32278 -9.83917 T BCH IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299268 Banna Strand Banna Strand 52.34111 -9.84028 T BCH IE M 11 0 5 Europe/Dublin 2010-08-14 +3299269 Fybagh Fybagh 52.16944 -9.82917 P PPL IE M 11 0 60 Europe/Dublin 2010-08-14 +3299270 Lough Eightragh Lough Eightragh 52.22972 -10.28139 H LK IE M 11 0 305 Europe/Dublin 2010-08-14 +3299409 Chetwynd House Chetwynd House 51.86222 -8.52611 S HSEC IE M 04 0 77 Europe/Dublin 2010-08-14 +3299410 Philippine House Philippine House 51.865 -8.50694 S HSEC IE M 04 0 79 Europe/Dublin 2010-08-14 +3299411 Lehenagh House Lehenagh House 51.8625 -8.4925 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3299412 Frankfield Frankfield 51.86972 -8.4625 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +3299413 Doughcloyne House Doughcloyne House 51.86917 -8.49972 S HSEC IE M 04 0 61 Europe/Dublin 2010-08-14 +3299414 Ballinaspig Ballinaspig 51.87722 -8.53528 P PPL IE M 04 0 69 Europe/Dublin 2010-08-14 +3299415 Musheen Musheen 51.88611 -8.51389 P PPL IE M 04 0 60 Europe/Dublin 2010-08-14 +3299416 Tramore River Tramore River 51.87861 -8.43472 H STM IE M 04 0 22 Europe/Dublin 2010-08-14 +3299417 Tramore Tramore 51.87722 -8.445 P PPL IE M 04 0 36 Europe/Dublin 2010-08-14 +3299418 Mount Desert House Mount Desert House 51.89861 -8.53444 S HSEC IE M 04 0 62 Europe/Dublin 2010-08-14 +3299419 Clogheen Clogheen 51.90139 -8.52139 P PPL IE M 04 0 62 Europe/Dublin 2010-08-14 +3299420 Killeens House Killeens House 51.91806 -8.51167 S HSEC IE M 04 0 66 Europe/Dublin 2010-08-14 +3299421 Garronabpaher Garronabpaher 51.91167 -8.51639 L LCTY IE M 04 0 62 Europe/Dublin 2010-08-14 +3299422 Elmgrove Elmgrove 51.91361 -8.45417 L LCTY IE M 04 0 66 Europe/Dublin 2010-08-14 +3299423 Ardfallen Ardfallen 51.88306 -8.44778 P PPL IE M 04 0 36 Europe/Dublin 2010-08-14 +3299424 Killeens Cross Killeens Cross 51.92472 -8.51639 P PPL IE M 04 0 66 Europe/Dublin 2010-08-14 +3299425 Clogheenmilton Clogheenmilton 51.93333 -8.54028 L LCTY IE M 04 0 70 Europe/Dublin 2010-08-14 +3299426 Dublin Pike Dublin Pike 51.93028 -8.46417 P PPL IE M 04 0 79 Europe/Dublin 2010-08-14 +3299427 Lahardane Lahardane 51.92778 -8.45333 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299428 Monard Monard 51.94333 -8.51472 L LCTY IE M 04 0 91 Europe/Dublin 2010-08-14 +3299429 Killeendaniel Killeendaniel 51.9425 -8.4875 L LCTY IE M 04 0 109 Europe/Dublin 2010-08-14 +3299430 White’s Cross White's Cross 51.9375 -8.44917 P PPL IE M 04 0 90 Europe/Dublin 2010-08-14 +3299431 Monared House Monared House 51.94917 -8.50361 S HSEC IE M 04 0 101 Europe/Dublin 2010-08-14 +3299432 Ballynanina House Ballynanina House 51.94944 -8.45444 S HSEC IE M 04 0 107 Europe/Dublin 2010-08-14 +3299433 Piercetown Piercetown 51.95389 -8.47194 L LCTY IE M 04 0 130 Europe/Dublin 2010-08-14 +3299434 Ballynahina Ballynahina 51.95861 -8.49667 L LCTY IE M 04 0 143 Europe/Dublin 2010-08-14 +3299435 Kilcronan Kilcronan 51.95944 -8.525 P PPL IE M 04 0 137 Europe/Dublin 2010-08-14 +3299436 Lisduff Lisduff 51.96778 -8.53111 P PPL IE M 04 0 144 Europe/Dublin 2010-08-14 +3299437 Ballinvarrig Ballinvarrig 51.96639 -8.51194 L LCTY IE M 04 0 149 Europe/Dublin 2010-08-14 +3299438 Killavarrig Killavarrig 51.97 -8.49389 L LCTY IE M 04 0 150 Europe/Dublin 2010-08-14 +3299439 Ballyhoe Ballyhoe 51.94611 -8.44861 L LCTY IE M 04 0 103 Europe/Dublin 2010-08-14 +3299440 Templemichael Bridge Templemichael Bridge 51.96972 -8.43917 P PPL IE M 04 0 119 Europe/Dublin 2010-08-14 +3299441 Templeusque Templeusque 51.96917 -8.42194 L LCTY IE M 04 0 117 Europe/Dublin 2010-08-14 +3299442 Buck Leary’s Cross Roads Buck Leary's Cross Roads 51.96306 -8.40917 P PPL IE M 04 0 104 Europe/Dublin 2010-08-14 +3299443 Upper Glanmire Bridge Upper Glanmire Bridge 51.95528 -8.4175 P PPL IE M 04 0 97 Europe/Dublin 2010-08-14 +3299444 Upper Glanmire Upper Glanmire 51.95028 -8.42833 L LCTY IE M 04 0 101 Europe/Dublin 2010-08-14 +3299445 Ballyphilip House Ballyphilip House 51.94389 -8.42611 S HSEC IE M 04 0 95 Europe/Dublin 2010-08-14 +3299446 Ballinvinny South Ballinvinny South 51.96333 -8.38167 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299447 Woodride Woodride 51.96556 -8.35778 L LCTY IE M 04 0 85 Europe/Dublin 2010-08-14 +3299448 Kilquane Bridge Kilquane Bridge 51.96389 -8.34222 P PPL IE M 04 0 94 Europe/Dublin 2010-08-14 +3299449 Ashtongrove Ashtongrove 51.95861 -8.37139 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299450 Butlerstown Butlerstown 51.95056 -8.37611 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +3299451 Brookhill Farm Brookhill Farm 51.94444 -8.375 S FRM IE M 04 0 76 Europe/Dublin 2010-08-14 +3299452 Ballynagaul Ballynagaul 51.94556 -8.35444 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3299453 Glenmore House Glenmore House 51.93917 -8.33222 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3299454 Brookville Brookville 51.93583 -8.35972 S EST IE M 04 0 76 Europe/Dublin 2010-08-14 +3299455 Ballynagarbragh Ballynagarbragh 51.92861 -8.34694 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299456 Lauriston Lauriston 51.91972 -8.41833 S EST IE M 04 0 65 Europe/Dublin 2010-08-14 +3299457 New Inn New Inn 51.92111 -8.41 L LCTY IE M 04 0 48 Europe/Dublin 2010-08-14 +3299458 Mayfield Mayfield 51.91306 -8.42889 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299459 Woodville Woodville 51.91139 -8.39278 S EST IE M 04 0 28 Europe/Dublin 2010-08-14 +3299460 Lot House Lot House 51.90667 -8.40056 S HSE IE M 04 0 10 Europe/Dublin 2010-08-14 +3299461 Dunkcastle House Dunkcastle House 51.90667 -8.38806 S HSE IE M 04 0 13 Europe/Dublin 2010-08-14 +3299462 Sprangmount Sprangmount 51.92944 -8.40889 S EST IE M 04 0 67 Europe/Dublin 2010-08-14 +3299463 Loumore Loumore 51.90556 -8.4225 P PPL IE M 04 0 62 Europe/Dublin 2010-08-14 +3299464 Ballinglanna Ballinglanna 51.91611 -8.38667 P PPL IE M 04 0 40 Europe/Dublin 2010-08-14 +3299465 Caherlag Caherlag 51.91444 -8.36333 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +3299466 Ballyregan Ballyregan 51.92972 -8.31306 L LCTY IE M 04 0 97 Europe/Dublin 2010-08-14 +3299467 Ballinbrittig Ballinbrittig 51.93917 -8.31528 L LCTY IE M 04 0 113 Europe/Dublin 2010-08-14 +3299468 Killeena Killeena 51.94722 -8.32583 P PPL IE M 04 0 78 Europe/Dublin 2010-08-14 +3299469 Reanasallagh Reanasallagh 51.95028 -8.31972 L LCTY IE M 04 0 117 Europe/Dublin 2010-08-14 +3299470 Dunsland Dunsland 51.9075 -8.37972 P PPL IE M 04 0 24 Europe/Dublin 2010-08-14 +3299471 Glounthaune Glounthaune 51.91111 -8.36111 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +3299472 Piedmont Piedmont 51.89 -8.42972 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3299473 Little Island Roads Little Island Roads 51.90083 -8.3525 P PPL IE M 04 0 42 Europe/Dublin 2010-08-14 +3299474 Lakeland Lakeland 51.88389 -8.39889 L LCTY IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299475 Derrybrook Derrybrook 51.86806 -8.43861 P PPL IE M 04 0 46 Europe/Dublin 2010-08-14 +3299476 Maryborought Maryborought 51.87278 -8.42944 S EST IE M 04 0 40 Europe/Dublin 2010-08-14 +3299477 Broadale Broadale 51.86611 -8.41361 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299478 Old Courth Old Courth 51.86167 -8.38833 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299479 Charlesmont Charlesmont 51.87361 -8.41 L LCTY IE M 04 0 44 Europe/Dublin 2010-08-14 +3299480 Monfield’s Town Monfield's Town 51.87194 -8.395 L LCTY IE M 04 0 47 Europe/Dublin 2010-08-14 +3299481 Rochestown Rochestown 51.87 -8.38306 P PPL IE M 04 0 65 Europe/Dublin 2010-08-14 +3299482 Pembroke Pembroke 51.87194 -8.35083 S EST IE M 04 0 54 Europe/Dublin 2010-08-14 +3299483 Glenbrook Glenbrook 51.86556 -8.35111 L LCTY IE M 04 0 49 Europe/Dublin 2010-08-14 +3299484 Carrigrenan House Carrigrenan House 51.88611 -8.33806 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299485 Courtstown House Courtstown House 51.9 -8.32556 S HSEC IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299486 Fota House Fota House 51.88861 -8.30806 S HSEC IE M 04 0 7 Europe/Dublin 2010-08-14 +3299487 Harper’s Island Harper's Island 51.905 -8.31472 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299488 Brown Island Brown Island 51.90417 -8.30806 T ISL IE M 04 0 18 Europe/Dublin 2010-08-14 +3299489 Ballynacrusha Cross Roads Ballynacrusha Cross Roads 51.86306 -8.29778 P PPL IE M 04 0 65 Europe/Dublin 2010-08-14 +3299490 Ballyleary Ballyleary 51.86306 -8.31944 P PPL IE M 04 0 38 Europe/Dublin 2010-08-14 +3299491 Ballydulea House Ballydulea House 51.86528 -8.27556 S HSE IE M 04 0 22 Europe/Dublin 2010-08-14 +3299492 Windsor House Windsor House 51.91694 -8.30639 S HSE IE M 04 0 76 Europe/Dublin 2010-08-14 +3299493 Carhuegarriffe Carhuegarriffe 51.91806 -8.30333 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299494 Butlerstown River Butlerstown River 51.92639 -8.39167 H STM IE M 04 0 74 Europe/Dublin 2010-08-14 +3299495 Black Brook Black Brook 51.96167 -8.42778 H STM IE M 04 0 107 Europe/Dublin 2010-08-14 +3299496 Pigeonhill Cross Roads Pigeonhill Cross Roads 51.96139 -8.29444 P PPL IE M 04 0 156 Europe/Dublin 2010-08-14 +3299497 Ballynakilla Ballynakilla 51.95278 -8.2925 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3299498 Tattans Glen Tattans Glen 51.95833 -8.26 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3299499 Knockakeen Knockakeen 51.95806 -8.24611 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3299500 Birch Hill Birch Hill 51.94722 -8.25167 T HLL IE M 04 0 152 Europe/Dublin 2010-08-14 +3299501 Garranes Garranes 51.94417 -8.27028 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3299502 Tibbotstown Tibbotstown 51.93861 -8.27083 L LCTY IE M 04 0 138 Europe/Dublin 2010-08-14 +3299503 Woodstock Woodstock 51.93 -8.24944 L LCTY IE M 04 0 97 Europe/Dublin 2010-08-14 +3299504 Glenview Glenview 51.94472 -8.22917 L LCTY IE M 04 0 111 Europe/Dublin 2010-08-14 +3299505 Leamlara River Leamlara River 51.94361 -8.20833 H STM IE M 04 0 70 Europe/Dublin 2010-08-14 +3299506 Ballyleary Ballyleary 51.94222 -8.25361 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3299507 Stud Farm Stud Farm 51.93722 -8.24278 S FRM IE M 04 0 141 Europe/Dublin 2010-08-14 +3299508 Heamount Heamount 51.92917 -8.22972 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3299509 Anngrove House Anngrove House 51.92028 -8.27694 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3299510 Greenville Greenville 51.91972 -8.26056 P PPL IE M 04 0 62 Europe/Dublin 2010-08-14 +3299511 Tullagreen House Tullagreen House 51.90444 -8.26722 S HSEC IE M 04 0 10 Europe/Dublin 2010-08-14 +3299512 Barry’s Court Barry's Court 51.9025 -8.25778 S EST IE M 04 0 11 Europe/Dublin 2010-08-14 +3299513 Weir Island Weir Island 51.89083 -8.27306 T ISL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299514 Rosslague House Rosslague House 51.87972 -8.27667 S HSEC IE M 04 0 46 Europe/Dublin 2010-08-14 +3299515 Rossmore Cottage Rossmore Cottage 51.88722 -8.25306 S HSE IE M 04 0 2 Europe/Dublin 2010-08-14 +3299516 Ashgrove House Ashgrove House 51.875 -8.23806 S HSEC IE M 04 0 17 Europe/Dublin 2010-08-14 +3299517 Belgrove Belgrove 51.86667 -8.22889 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3299518 Walterstown Walterstown 51.86333 -8.23333 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3299519 Ballintubbrid Ballintubbrid 51.89333 -8.24889 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3299520 Belvedere Belvedere 51.89778 -8.235 L LCTY IE M 04 0 4 Europe/Dublin 2010-08-14 +3299521 Baneshane Baneshane 51.89944 -8.21111 L LCTY IE M 04 0 2 Europe/Dublin 2010-08-14 +3299522 Glebe House Glebe House 51.91333 -8.22278 S HSEC IE M 04 0 34 Europe/Dublin 2010-08-14 +3299523 Ballyadam Ballyadam 51.91917 -8.23583 L LCTY IE M 04 0 62 Europe/Dublin 2010-08-14 +3299524 Water Rock House Water Rock House 51.91889 -8.2025 S HSEC IE M 04 0 44 Europe/Dublin 2010-08-14 +3299525 Knockgriffin Knockgriffin 51.91528 -8.20222 L LCTY IE M 04 0 27 Europe/Dublin 2010-08-14 +3299526 Ballynacorra House Ballynacorra House 51.89583 -8.17417 S HSEC IE M 04 0 54 Europe/Dublin 2010-08-14 +3299527 Lochcarrig Lochcarrig 51.88389 -8.17667 L LCTY IE M 04 0 58 Europe/Dublin 2010-08-14 +3299528 Bawnard Bawnard 51.88139 -8.16889 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3299529 Innygraga Innygraga 51.88611 -8.16167 L LCTY IE M 04 0 69 Europe/Dublin 2010-08-14 +3299530 Kilva Kilva 51.87583 -8.15444 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299531 Statty Bridge Statty Bridge 51.90028 -8.28306 P PPL IE M 04 0 12 Europe/Dublin 2010-08-14 +3299532 Avoncore Avoncore 51.92194 -8.1825 P PPL IE M 04 0 43 Europe/Dublin 2010-08-14 +3299533 Killeagh House Killeagh House 51.92528 -8.15083 S HSEC IE M 04 0 52 Europe/Dublin 2010-08-14 +3299534 Carrigogna Bridge Carrigogna Bridge 51.92944 -8.18556 P PPL IE M 04 0 51 Europe/Dublin 2010-08-14 +3299535 Gortnacrue Gortnacrue 51.94111 -8.17889 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +3299536 Ballyedmond Little Ballyedmond Little 51.95361 -8.19944 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3299537 Rathgire Rathgire 51.96 -8.19556 L LCTY IE M 04 0 90 Europe/Dublin 2010-08-14 +3299538 Killeendooling Killeendooling 51.96 -8.1725 L LCTY IE M 04 0 113 Europe/Dublin 2010-08-14 +3299539 Ballyspillane Ballyspillane 51.94444 -8.16167 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299540 Elfordstown Elfordstown 51.95083 -8.16389 L LCTY IE M 04 0 98 Europe/Dublin 2010-08-14 +3299541 Glenathonacash Glenathonacash 51.96472 -8.15083 P PPL IE M 04 0 132 Europe/Dublin 2010-08-14 +3299542 Ballytrasna House Ballytrasna House 51.96972 -8.17889 S HSEC IE M 04 0 122 Europe/Dublin 2010-08-14 +3299543 Owennacurra River Owennacurra River 51.90722 -8.17778 H STM IE M 04 0 38 Europe/Dublin 2010-08-14 +3299739 Cloyne House Cloyne House 51.86306 -8.11667 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3299740 Ballymaloe House Ballymaloe House 51.86333 -8.0775 S HSEC IE M 04 0 65 Europe/Dublin 2010-08-14 +3299741 Canuig Mountain Canuig Mountain 51.8 -10.31667 T MT IE M 11 0 384 35 Europe/Dublin 2010-08-14 +3299742 Boolakeel Boolakeel 51.8 -10.28333 P PPL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299743 Washerwoman Rock Washerwoman Rock 51.75 -10.56667 T RK IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299744 Kinard Kinard 51.81667 -10.28333 P PPL IE M 11 0 1 Europe/Dublin 2010-08-14 +3299745 Killonecaha Killonecaha 51.83333 -10.31667 T HLL IE M 11 0 334 111 Europe/Dublin 2010-08-14 +3299746 Sneem River Sneem River 51.81667 -9.9 H STM IE M 11 0 1 Europe/Dublin 2010-08-14 +3299747 Ardsheelhane River Ardsheelhane River 51.83333 -9.9 H STM IE M 11 0 25 Europe/Dublin 2010-08-14 +3299748 Coon Coon 52.1 -10.35 S EST IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299749 Saint Brendan’s Oratory Saint Brendan's Oratory 52.11667 -10.58333 S CH IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3299750 Barnabrow House Barnabrow House 51.86944 -8.09472 S HSEC IE M 04 0 73 Europe/Dublin 2010-08-14 +3299751 Knockacrump Knockacrump 51.87389 -8.1175 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299752 Ardaviling Ardaviling 51.87778 -8.13111 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299753 Sheanliss Sheanliss 51.8825 -8.11194 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299754 Meelshane Meelshane 51.88028 -8.09028 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299755 Gortstoke Gortstoke 51.88667 -8.06667 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3299756 Bohillane Bohillane 51.88111 -8.06083 L LCTY IE M 04 0 79 Europe/Dublin 2010-08-14 +3299757 Glennageare Glennageare 51.89056 -8.09722 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299758 Kilbree House Kilbree House 51.89 -8.10361 S HSEC IE M 04 0 75 Europe/Dublin 2010-08-14 +3299759 Kilorga House Kilorga House 51.89861 -8.09417 S HSEC IE M 04 0 73 Europe/Dublin 2010-08-14 +3299760 Coppingerstown Coppingerstown 51.89944 -8.13833 L LCTY IE M 04 0 68 Europe/Dublin 2010-08-14 +3299761 Thade’s Cross Roads Thade's Cross Roads 51.90056 -8.11917 P PPL IE M 04 0 67 Europe/Dublin 2010-08-14 +3299762 Ballintotes Ballintotes 51.9075 -8.09917 P PPL IE M 04 0 69 Europe/Dublin 2010-08-14 +3299763 Ballyedekin House Ballyedekin House 51.90972 -8.11806 S HSEC IE M 04 0 64 Europe/Dublin 2010-08-14 +3299764 Lough Aderry Lough Aderry 51.91278 -8.09278 H LK IE M 04 0 65 Europe/Dublin 2010-08-14 +3299765 Carragrine House Carragrine House 51.91722 -8.07056 S HSEC IE M 04 0 60 Europe/Dublin 2010-08-14 +3299766 Knockglass House Knockglass House 51.89056 -8.04639 S HSEC IE M 04 0 61 Europe/Dublin 2010-08-14 +3299767 Ballincourlea Ballincourlea 51.88222 -8.02056 P PPL IE M 04 0 22 Europe/Dublin 2010-08-14 +3299768 Rooskagh Rooskagh 51.86861 -8.03972 L LCTY IE M 04 0 38 Europe/Dublin 2010-08-14 +3299769 Ballyhimilan Ballyhimilan 51.86611 -8.03528 L LCTY IE M 04 0 24 Europe/Dublin 2010-08-14 +3299770 Ightermurragh Ightermurragh 51.89611 -8.01833 P PPL IE M 04 0 28 Europe/Dublin 2010-08-14 +3299771 Carew’s Wood Carew's Wood 51.9025 -8.04306 V FRST IE M 04 0 45 Europe/Dublin 2010-08-14 +3299772 Knockane House Knockane House 51.91861 -8.02778 S HSEC IE M 04 0 42 Europe/Dublin 2010-08-14 +3299773 Clasharinka Clasharinka 51.91389 -8.04167 L LCTY IE M 04 0 47 Europe/Dublin 2010-08-14 +3299774 Ballyhonock Lough Ballyhonock Lough 51.91278 -8.01111 H LK IE M 04 0 19 Europe/Dublin 2010-08-14 +3299775 Garrymore Garrymore 51.91139 -8.00361 L LCTY IE M 04 0 11 Europe/Dublin 2010-08-14 +3299776 Lissacrue Lissacrue 51.92111 -8.01889 L LCTY IE M 04 0 34 Europe/Dublin 2010-08-14 +3299777 Knocknaskagh Knocknaskagh 51.92583 -8.04278 L LCTY IE M 04 0 59 Europe/Dublin 2010-08-14 +3299778 Glebe House Glebe House 51.92028 -8.05472 S HSEC IE M 04 0 56 Europe/Dublin 2010-08-14 +3299779 Kibmountain Cross Roads Kibmountain Cross Roads 51.92194 -8.08694 P PPL IE M 04 0 65 Europe/Dublin 2010-08-14 +3299780 Stump Hill Stump Hill 51.92139 -8.11806 T HLL IE M 04 0 66 Europe/Dublin 2010-08-14 +3299781 Bilberry Bilberry 51.92917 -8.12806 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3299782 Ballynona House Ballynona House 51.93611 -8.10361 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3299783 Brookdale House Brookdale House 51.93722 -8.09611 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3299784 Young Grove Young Grove 51.94722 -8.1325 S EST IE M 04 0 129 Europe/Dublin 2010-08-14 +3299785 Ballynacole Ballynacole 51.94611 -8.11167 P PPL IE M 04 0 116 Europe/Dublin 2010-08-14 +3299786 Annistown Annistown 51.94306 -8.04028 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299787 Drominane Drominane 51.94889 -8.03778 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299788 Springfield Springfield 51.95139 -8.05722 S EST IE M 04 0 84 Europe/Dublin 2010-08-14 +3299789 Crowbally Crowbally 51.95167 -8.07806 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3299790 Glenane More Glenane More 51.95889 -8.03611 L LCTY IE M 04 0 101 Europe/Dublin 2010-08-14 +3299791 Glenbower Wood Glenbower Wood 51.95889 -8.01528 V FRST IE M 04 0 90 Europe/Dublin 2010-08-14 +3299792 Gortnagappul Gortnagappul 51.96389 -7.98528 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3299793 Ballygibbon Ballygibbon 51.96222 -8.05833 L LCTY IE M 04 0 107 Europe/Dublin 2010-08-14 +3299794 Castletown House Castletown House 51.96944 -8.02167 S HSEC IE M 04 0 111 Europe/Dublin 2010-08-14 +3299795 Dungourney House Dungourney House 51.96194 -8.10833 S HSEC IE M 04 0 122 Europe/Dublin 2010-08-14 +3299796 Glenbeg Glenbeg 51.96583 -8.13028 L LCTY IE M 04 0 156 Europe/Dublin 2010-08-14 +3299797 Dringourney River Dringourney River 51.90944 -8.17694 H STM IE M 04 0 39 Europe/Dublin 2010-08-14 +3299798 Kiltha River Kiltha River 51.89917 -8.05139 H STM IE M 04 0 59 Europe/Dublin 2010-08-14 +3299799 Ballymareagh Ballymareagh 51.87333 -7.94833 P PPL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299800 Ballypherode Ballypherode 51.87944 -7.93667 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3299801 Glenawilling Glenawilling 51.88278 -7.91528 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3299802 Greenland Greenland 51.89083 -7.90528 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3299803 Ballykinealy Ballykinealy 51.88806 -7.92944 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3299804 Lisquinlan House Lisquinlan House 51.89222 -7.98194 S HSEC IE M 04 0 5 Europe/Dublin 2010-08-14 +3299805 Gortavadda Bridge Gortavadda Bridge 51.89556 -7.94667 P PPL IE M 04 0 1 Europe/Dublin 2010-08-14 +3299806 Lisquinlan Cross Lisquinlan Cross 51.90083 -7.98278 L LCTY IE M 04 0 6 Europe/Dublin 2010-08-14 +3299807 Aghavine House Aghavine House 51.90694 -7.94278 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3299808 Clonpriest Clonpriest 51.90833 -7.92778 L LCTY IE M 04 0 1 Europe/Dublin 2010-08-14 +3299809 Cromponn Bridge Cromponn Bridge 51.90917 -7.93278 P PPL IE M 04 0 2 Europe/Dublin 2010-08-14 +3299810 Shanakill Shanakill 51.91583 -7.94833 L LCTY IE M 04 0 2 Europe/Dublin 2010-08-14 +3299811 Gortcorcoran Gortcorcoran 51.9125 -7.98222 L LCTY IE M 04 0 7 Europe/Dublin 2010-08-14 +3299812 Womanagh River Womanagh River 51.92444 -7.97056 H STM IE M 04 0 6 Europe/Dublin 2010-08-14 +3299813 Yellowford Yellowford 51.9225 -7.95778 L LCTY IE M 04 0 3 Europe/Dublin 2010-08-14 +3299814 Inchiquin House Inchiquin House 51.9275 -7.94861 S HSEC IE M 04 0 25 Europe/Dublin 2010-08-14 +3299815 Clearies Cross Roads Clearies Cross Roads 51.93833 -7.92806 P PPL IE M 04 0 58 Europe/Dublin 2010-08-14 +3299816 Burges House Burges House 51.93722 -7.95806 S HSEC IE M 04 0 39 Europe/Dublin 2010-08-14 +3299817 Ballyglassin House Ballyglassin House 51.94417 -7.95806 S HSEC IE M 04 0 73 Europe/Dublin 2010-08-14 +3299818 Knockmonalea Knockmonalea 51.94778 -7.95556 L LCTY IE M 04 0 73 Europe/Dublin 2010-08-14 +3299819 Ballyhobert Ballyhobert 51.94583 -7.92667 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3299820 Ballyvergan West Ballyvergan West 51.94194 -7.90778 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3299821 Ballyvergan East Ballyvergan East 51.93806 -7.88611 L LCTY IE M 04 0 28 Europe/Dublin 2010-08-14 +3299822 Mary Ville Mary Ville 51.95194 -7.91 L LCTY IE M 04 0 80 Europe/Dublin 2010-08-14 +3299823 Ballykilty Ballykilty 51.95278 -7.9625 L LCTY IE M 04 0 82 Europe/Dublin 2010-08-14 +3299824 Drishane More Drishane More 51.96583 -7.97889 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3299825 Ballinvarrig Upper Ballinvarrig Upper 51.96278 -7.9325 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299826 Curraghboy Curraghboy 51.96806 -7.91889 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3299827 Muckridge House Muckridge House 51.96722 -7.87806 S HSEC IE M 04 0 9 Europe/Dublin 2010-08-14 +3299828 Ballymacask Ballymacask 51.95917 -7.89694 P PPL IE M 04 0 68 Europe/Dublin 2010-08-14 +3299829 Glenally Glenally 51.96222 -7.87833 P PPL IE M 04 0 20 Europe/Dublin 2010-08-14 +3299830 Seafield House Seafield House 51.94278 -7.85833 S HSEC IE M 04 0 1 Europe/Dublin 2010-08-14 +3299831 Clonard Clonard 51.92167 -7.89417 L LCTY IE M 04 0 8 Europe/Dublin 2010-08-14 +3299832 Pillmore Pillmore 51.91667 -7.89444 L LCTY IE M 04 0 8 Europe/Dublin 2010-08-14 +3299833 Bog Rock Bog Rock 51.91806 -7.87167 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299834 Clonard Rock Clonard Rock 51.91583 -7.87167 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299835 Barrel Rocks Barrel Rocks 51.90611 -7.87389 T RKS IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299836 Black Rock Black Rock 51.90306 -7.87778 T RK IE M 04 0 -9999 Europe/Dublin 2010-08-14 +3299837 Dissour River Dissour River 51.90306 -7.92889 H STM IE M 04 0 1 Europe/Dublin 2010-08-14 +3299838 Ballymadog Ballymadog 51.92111 -7.91333 P PPL IE M 04 0 14 Europe/Dublin 2010-08-14 +3299839 Dunbulloge Bridge Dunbulloge Bridge 51.97472 -8.46306 P PPL IE M 04 0 150 Europe/Dublin 2010-08-14 +3299840 Knockaneag Knockaneag 51.97806 -8.48833 L LCTY IE M 04 0 147 Europe/Dublin 2010-08-14 +3299841 Templemichael Templemichael 51.97583 -8.45694 L LCTY IE M 04 0 122 Europe/Dublin 2010-08-14 +3299842 Dromgarriff Dromgarriff 51.99056 -8.54056 P PPL IE M 04 0 155 Europe/Dublin 2010-08-14 +3299843 Cloghfada House Cloghfada House 51.99333 -8.52611 S HSEC IE M 04 0 153 Europe/Dublin 2010-08-14 +3299844 Knockanroe House Knockanroe House 52 -8.52917 S HSEC IE M 04 0 153 Europe/Dublin 2010-08-14 +3299845 Ardalaghta Ardalaghta 52.00222 -8.50778 L LCTY IE M 04 0 147 Europe/Dublin 2010-08-14 +3299846 Dromboy South Dromboy South 52.00722 -8.53806 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3299847 Crossernagannee Crossernagannee 52.00722 -8.52139 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3299848 Killeagh Cross Roads Killeagh Cross Roads 51.99889 -8.45222 P PPL IE M 04 0 145 Europe/Dublin 2010-08-14 +3299849 Ballynabortagh Ballynabortagh 52.00528 -8.46361 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3299996 Lyrenamon Lyrenamon 52.02417 -8.53472 L LCTY IE M 04 0 154 Europe/Dublin 2010-08-14 +3299997 Ballyvorisheen Ballyvorisheen 52.02306 -8.49 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3299998 Ballynaglogh West Ballynaglogh West 52.02167 -8.45694 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3299999 Glashaboy East Glashaboy East 52.02972 -8.51 L LCTY IE M 04 0 160 Europe/Dublin 2010-08-14 +3300000 Glashaboy North Glashaboy North 52.04278 -8.54139 L LCTY IE M 04 0 218 Europe/Dublin 2010-08-14 +3300001 Lyre Lyre 52.01194 -8.47 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300002 Knocknacaheragh Knocknacaheragh 52.05639 -8.495 L LCTY IE M 04 0 176 Europe/Dublin 2010-08-14 +3300003 The Manor The Manor 52.04361 -8.43389 S EST IE M 04 0 152 Europe/Dublin 2010-08-14 +3300004 Graigue Graigue 52.03806 -8.44111 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300005 Toor River Toor River 52.05194 -8.4975 H STM IE M 04 0 176 Europe/Dublin 2010-08-14 +3300006 Crom River Crom River 52.06139 -8.46278 H STM IE M 04 0 155 Europe/Dublin 2010-08-14 +3300007 Glashanabrack River Glashanabrack River 52.04889 -8.41083 H STM IE M 04 0 132 Europe/Dublin 2010-08-14 +3300008 Coolgreen Coolgreen 51.98333 -8.42833 L LCTY IE M 04 0 130 Europe/Dublin 2010-08-14 +3300009 Coolgreen Glen Coolgreen Glen 51.9925 -8.42361 T VAL IE M 04 0 150 Europe/Dublin 2010-08-14 +3300010 Coneybeg Coneybeg 51.98444 -8.40222 L LCTY IE M 04 0 143 Europe/Dublin 2010-08-14 +3300011 Ballindeenisk House Ballindeenisk House 51.98944 -8.405 S HSE IE M 04 0 143 Europe/Dublin 2010-08-14 +3300012 Trantstown House Trantstown House 51.98389 -8.37417 S HSE IE M 04 0 144 Europe/Dublin 2010-08-14 +3300013 Ballinvinny North Ballinvinny North 51.98056 -8.37583 P PPL IE M 04 0 127 Europe/Dublin 2010-08-14 +3300014 Rathfilode Rathfilode 51.98139 -8.35556 L LCTY IE M 04 0 123 Europe/Dublin 2010-08-14 +3300015 Ballindeenisk Cross Roads Ballindeenisk Cross Roads 51.99361 -8.39472 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3300016 Ballinlegane Cross Roads Ballinlegane Cross Roads 51.98722 -8.36222 P PPL IE M 04 0 141 Europe/Dublin 2010-08-14 +3300017 Scrahane Cross Roads Scrahane Cross Roads 52.00722 -8.40528 P PPL IE M 04 0 156 Europe/Dublin 2010-08-14 +3300018 Pouladown Pouladown 52.00889 -8.40222 L LCTY IE M 04 0 157 Europe/Dublin 2010-08-14 +3300019 Ballinlegane Ballinlegane 52.00472 -8.37778 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3300020 Fellsfort Fellsfort 51.99722 -8.35806 S FT IE M 04 0 150 Europe/Dublin 2010-08-14 +3300021 Meeleen Meeleen 51.97194 -8.32389 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300022 Ballyvatta Ballyvatta 51.97694 -8.30167 P PPL IE M 04 0 166 Europe/Dublin 2010-08-14 +3300023 Shanballyreagh Shanballyreagh 51.98111 -8.32611 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3300024 Monatooreen Monatooreen 51.98972 -8.32417 L LCTY IE M 04 0 166 Europe/Dublin 2010-08-14 +3300025 Kearney’s Cross Roads Kearney's Cross Roads 52.00222 -8.31528 P PPL IE M 04 0 169 Europe/Dublin 2010-08-14 +3300026 Barnetstown Barnetstown 51.99167 -8.34194 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3300027 Moonbaun Moonbaun 51.98861 -8.29917 P PPL IE M 04 0 165 Europe/Dublin 2010-08-14 +3300028 Skahanagh South Skahanagh South 52.01056 -8.3225 L LCTY IE M 04 0 164 Europe/Dublin 2010-08-14 +3300029 Coolquane Coolquane 52.02139 -8.31889 L LCTY IE M 04 0 159 Europe/Dublin 2010-08-14 +3300030 Skahanagh North Skahanagh North 52.02778 -8.32778 L LCTY IE M 04 0 144 Europe/Dublin 2010-08-14 +3300031 Condonstown House Condonstown House 52.02444 -8.33639 S HSE IE M 04 0 152 Europe/Dublin 2010-08-14 +3300032 Tinageragh Tinageragh 52.01889 -8.36028 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300033 Ardnageeny East Ardnageeny East 52.02389 -8.3875 L LCTY IE M 04 0 156 Europe/Dublin 2010-08-14 +3300034 Ballyonack Ballyonack 52.02 -8.415 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300035 Mountcatherine Mountcatherine 52.03944 -8.36083 L LCTY IE M 04 0 125 Europe/Dublin 2010-08-14 +3300036 Coosane Coosane 52.045 -8.36139 L LCTY IE M 04 0 106 Europe/Dublin 2010-08-14 +3300037 Scartbarry House Scartbarry House 52.03833 -8.30972 S HSEC IE M 04 0 129 Europe/Dublin 2010-08-14 +3300038 Ballyready House Ballyready House 52.03556 -8.29528 S HSEC IE M 04 0 132 Europe/Dublin 2010-08-14 +3300039 Lackendarragh South Lackendarragh South 52.03917 -8.40972 L LCTY IE M 04 0 139 Europe/Dublin 2010-08-14 +3300040 Kean Bridge Kean Bridge 52.0475 -8.40833 P PPL IE M 04 0 129 Europe/Dublin 2010-08-14 +3300041 Old Bride Bridge Old Bride Bridge 52.05611 -8.41583 P PPL IE M 04 0 132 Europe/Dublin 2010-08-14 +3300042 Bridestown Bridestown 52.05333 -8.38333 S EST IE M 04 0 108 Europe/Dublin 2010-08-14 +3300043 Shanbally House Shanbally House 52.05611 -8.35417 S HSEC IE M 04 0 85 Europe/Dublin 2010-08-14 +3300044 Curraghprevin Curraghprevin 52.05472 -8.32028 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300045 Leamlara Leamlara 51.97166 -8.26498 P PPL IE M 04 0 153 Europe/Dublin 2010-10-16 +3300046 Ballynaskeha Ballynaskeha 51.97778 -8.26556 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300047 Corbally House Corbally House 51.98306 -8.23167 S HSEC IE M 04 0 116 Europe/Dublin 2010-08-14 +3300048 Dundullerick House Dundullerick House 51.99306 -8.25889 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3300049 Knockeennagroagh Knockeennagroagh 52.005 -8.29028 L LCTY IE M 04 0 159 Europe/Dublin 2010-08-14 +3300050 Ogham Stone Ogham Stone 52.0075 -8.25833 T RK IE M 04 0 152 Europe/Dublin 2010-08-14 +3300051 Monananig Monananig 52.01528 -8.28778 L LCTY IE M 04 0 156 Europe/Dublin 2010-08-14 +3300052 Kean Cross Roads Kean Cross Roads 52.01722 -8.25111 P PPL IE M 04 0 151 Europe/Dublin 2010-08-14 +3300053 Ballysheen Ballysheen 52.01694 -8.2425 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300054 Killamlurren Killamlurren 52.02361 -8.26417 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300055 Templebodan River Templebodan River 51.98028 -8.21583 H STM IE M 04 0 111 Europe/Dublin 2010-08-14 +3300056 Ballygaha West Ballygaha West 52.02333 -8.21667 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300057 Peafield Peafield 52.00972 -8.20167 P PPL IE M 04 0 149 Europe/Dublin 2010-08-14 +3300058 Monaleen Bridge Monaleen Bridge 52.00694 -8.19139 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3300059 Riesk Riesk 51.99417 -8.20417 L LCTY IE M 04 0 138 Europe/Dublin 2010-08-14 +3300060 Shanavougha Shanavougha 51.98056 -8.18111 L LCTY IE M 04 0 139 Europe/Dublin 2010-08-14 +3300061 Rathorgan Rathorgan 51.98917 -8.14806 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300062 Slievecorran Slievecorran 51.97722 -8.15056 T HLL IE M 04 0 154 Europe/Dublin 2010-08-14 +3300063 Glendine Bridge Glendine Bridge 52.00472 -8.14972 P PPL IE M 04 0 155 Europe/Dublin 2010-08-14 +3300064 Ardglass Ardglass 52.01444 -8.1575 L LCTY IE M 04 0 159 Europe/Dublin 2010-08-14 +3300065 Ballyard Cross Roads Ballyard Cross Roads 52.03278 -8.19861 P PPL IE M 04 0 156 Europe/Dublin 2010-08-14 +3300066 Curraghdermot Cross Roads Curraghdermot Cross Roads 52.04222 -8.19889 P PPL IE M 04 0 143 Europe/Dublin 2010-08-14 +3300067 Firmount Firmount 52.04639 -8.19472 S EST IE M 04 0 143 Europe/Dublin 2010-08-14 +3300068 Glentrasna Glentrasna 52.04028 -8.16778 P PPL IE M 04 0 140 Europe/Dublin 2010-08-14 +3300069 Barrafahona Barrafahona 52.02778 -8.16778 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300070 Britway Britway 52.04806 -8.17528 P PPL IE M 04 0 131 Europe/Dublin 2010-08-14 +3300071 Hightown Hightown 52.03306 -8.27972 P PPL IE M 04 0 151 Europe/Dublin 2010-08-14 +3300072 Cronavan Cronavan 52.03528 -8.26278 P PPL IE M 04 0 121 Europe/Dublin 2010-08-14 +3300073 Ballinwillin Ballinwillin 52.0375 -8.25694 P PPL IE M 04 0 121 Europe/Dublin 2010-08-14 +3300074 Ballynakilla Ballynakilla 52.04611 -8.26472 P PPL IE M 04 0 95 Europe/Dublin 2010-08-14 +3300075 River Flesk River Flesk 52.07083 -8.25806 H STM IE M 04 0 66 Europe/Dublin 2010-08-14 +3300076 Owenageeragh River Owenageeragh River 52.05861 -8.26583 H STM IE M 04 0 76 Europe/Dublin 2010-08-14 +3300077 Ballynagaul Ballynagaul 51.97444 -8.13639 P PPL IE M 04 0 154 Europe/Dublin 2010-08-14 +3300078 Glendonagh House Glendonagh House 51.97694 -8.09667 S HSEC IE M 04 0 116 Europe/Dublin 2010-08-14 +3300079 Donickmore House Donickmore House 51.98444 -8.08944 S HSEC IE M 04 0 142 Europe/Dublin 2010-08-14 +3300080 Knockanenakirka Knockanenakirka 51.97972 -8.07889 L LCTY IE M 04 0 150 Europe/Dublin 2010-08-14 +3300081 Pound Cross Roads Pound Cross Roads 52.01417 -8.11056 P PPL IE M 04 0 144 Europe/Dublin 2010-08-14 +3300082 Clonmult House Clonmult House 52.00611 -8.105 S HSEC IE M 04 0 143 Europe/Dublin 2010-08-14 +3300083 Ballyeightragh Ballyeightragh 51.99917 -8.10361 L LCTY IE M 04 0 133 Europe/Dublin 2010-08-14 +3300084 Barradaw Barradaw 51.99444 -8.0725 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300085 Ballyknack Ballyknack 52.02806 -8.07472 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300086 Murtey’s Cross Roads Murtey's Cross Roads 52.02056 -8.065 P PPL IE M 04 0 153 Europe/Dublin 2010-08-14 +3300087 Garraneribbeen Garraneribbeen 52.02694 -8.10972 T HLL IE M 04 0 161 147 Europe/Dublin 2010-08-14 +3300088 Glentane Glentane 52.03167 -8.12556 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300089 Garrycaheragh Garrycaheragh 52.05528 -8.15194 L LCTY IE M 04 0 89 Europe/Dublin 2010-08-14 +3300090 Killasseragh Killasseragh 52.04139 -8.13528 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300091 Kilphillibeen Kilphillibeen 52.04778 -8.11944 P PPL IE M 04 0 114 Europe/Dublin 2010-08-14 +3300092 Togher River Togher River 52.06889 -8.125 H STM IE M 04 0 76 Europe/Dublin 2010-08-14 +3300093 Ballycullane Ballycullane 52.06056 -8.08 L LCTY IE M 04 0 105 Europe/Dublin 2010-08-14 +3300094 Kilcronat Kilcronat 52.04861 -8.06556 L LCTY IE M 04 0 145 Europe/Dublin 2010-08-14 +3300095 Ballyknockane Ballyknockane 52.03917 -8.04139 T HLL IE M 04 0 155 Europe/Dublin 2010-08-14 +3300096 Ballyanthony Ballyanthony 52.03833 -8.03306 L LCTY IE M 04 0 154 Europe/Dublin 2010-08-14 +3300097 Kilcronatmountain Kilcronatmountain 52.03083 -8.06139 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300098 Caher Hill Caher Hill 52.02389 -8.035 T HLL IE M 04 0 235 153 Europe/Dublin 2010-08-14 +3300099 Glenacrogher Glenacrogher 52.03167 -8.02944 L LCTY IE M 04 0 154 Europe/Dublin 2010-08-14 +3300100 Sandy Hill House Sandy Hill House 52.02528 -8.00583 S HSEC IE M 04 0 152 Europe/Dublin 2010-08-14 +3300101 Reanduff Reanduff 52.01389 -8.04306 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300102 Kilcounty Kilcounty 51.98694 -8.0475 L LCTY IE M 04 0 156 Europe/Dublin 2010-08-14 +3300103 Ballyre Ballyre 51.97917 -8.02722 S EST IE M 04 0 135 Europe/Dublin 2010-08-14 +3300104 Dongan Bridge Dongan Bridge 51.97639 -8.02583 P PPL IE M 04 0 135 Europe/Dublin 2010-08-14 +3300105 Ballycolman Ballycolman 52.01 -8.00972 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3300106 Monaloo House Monaloo House 52.02222 -7.9925 S HSEC IE M 04 0 151 Europe/Dublin 2010-08-14 +3300107 Glenaboy River Glenaboy River 52.09972 -8.00722 H STM IE M 04 0 44 Europe/Dublin 2010-08-14 +3300108 Ballynaheila House Ballynaheila House 51.99361 -7.98889 S HSEC IE M 04 0 110 Europe/Dublin 2010-08-14 +3300109 Ballyneague Ballyneague 51.98639 -7.96056 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3300110 Park House Park House 51.97333 -7.94639 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3300111 Corraveigh Corraveigh 51.97611 -7.93611 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300112 Lombard’s Cross Roads Lombard's Cross Roads 51.98083 -7.9 P PPL IE M 27 0 60 Europe/Dublin 2010-08-14 +3300113 Barnaviddane Barnaviddane 51.99444 -7.96917 P PPL IE M 04 0 116 Europe/Dublin 2010-08-14 +3300114 Knocknagappagh Knocknagappagh 51.99806 -7.98083 L LCTY IE M 04 0 105 Europe/Dublin 2010-08-14 +3300115 Ballycondon Ballycondon 52.00306 -7.94167 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300116 Breeda Breeda 52.01972 -7.9775 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300117 Garryduff House Garryduff House 51.98694 -7.90889 S HSEC IE M 27 0 87 Europe/Dublin 2010-08-14 +3300118 Cherrymount House Cherrymount House 51.99222 -7.90028 S HSEC IE M 27 0 61 Europe/Dublin 2010-08-14 +3300119 D’Loughtane Cross Roads D'Loughtane Cross Roads 51.99167 -7.85306 P PPL IE M 27 0 54 Europe/Dublin 2010-08-14 +3300120 Glendine River Glendine River 51.99389 -7.88778 H STM IE M 27 0 22 Europe/Dublin 2010-08-14 +3300121 Carncrow Carncrow 52.01583 -7.95056 T HLL IE M 27 0 205 157 Europe/Dublin 2010-08-14 +3300122 Carrigeen Carrigeen 52.01833 -7.90306 L LCTY IE M 27 0 91 Europe/Dublin 2010-08-14 +3300123 Boula Boula 52.01278 -7.91806 L LCTY IE M 27 0 133 Europe/Dublin 2010-08-14 +3300124 Newport Newport 52.015 -7.87833 L LCTY IE M 27 0 33 Europe/Dublin 2010-08-14 +3300125 Ballybrack Ballybrack 52.02167 -7.87889 L LCTY IE M 27 0 58 Europe/Dublin 2010-08-14 +3300126 Browns Cross Roads Browns Cross Roads 52.0275 -7.92306 P PPL IE M 27 0 131 Europe/Dublin 2010-08-14 +3300127 Ballynatray Commons Ballynatray Commons 52.02722 -7.94389 P PPL IE M 27 0 152 Europe/Dublin 2010-08-14 +3300128 Coolbeggan Coolbeggan 52.04194 -7.93694 L LCTY IE M 27 0 152 Europe/Dublin 2010-08-14 +3300129 Corrandromaun Cross Roads Corrandromaun Cross Roads 52.04889 -7.935 P PPL IE M 27 0 152 Europe/Dublin 2010-08-14 +3300130 Kilcockan Kilcockan 52.0375 -7.89639 L LCTY IE M 27 0 73 Europe/Dublin 2010-08-14 +3300131 Carnglass Carnglass 52.03806 -7.87722 L LCTY IE M 27 0 35 Europe/Dublin 2010-08-14 +3300132 Sprangmount Sprangmount 51.98694 -7.89583 P PPL IE M 27 0 34 Europe/Dublin 2010-08-14 +3300133 Rincrew Rincrew 51.9775 -7.87917 P PPL IE M 27 0 1 Europe/Dublin 2010-08-14 +3300134 Tourig House Tourig House 51.97611 -7.88667 S HSEC IE M 27 0 18 Europe/Dublin 2010-08-14 +3300135 Ardsallagh Ardsallagh 51.99028 -7.87556 L LCTY IE M 27 0 13 Europe/Dublin 2010-08-14 +3300136 The Pike The Pike 52.04028 -7.96722 P PPLL IE M 27 0 160 Europe/Dublin 2010-08-14 +3300137 Dunmoon Dunmoon 52.05889 -7.94556 L LCTY IE M 27 0 122 Europe/Dublin 2010-08-14 +3300138 Knockaunalora Knockaunalora 52.06778 -8.49667 T HLL IE M 04 0 248 179 Europe/Dublin 2010-08-14 +3300139 Mullenaboree Mullenaboree 52.07667 -8.51861 L LCTY IE M 04 0 219 Europe/Dublin 2010-08-14 +3300140 Chimneyfield Chimneyfield 52.06472 -8.46556 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3300141 Knoppoge Knoppoge 52.09417 -8.48472 L LCTY IE M 04 0 268 Europe/Dublin 2010-08-14 +3300142 Toorgarriff Toorgarriff 52.07528 -8.4575 L LCTY IE M 04 0 233 Europe/Dublin 2010-08-14 +3300143 Glannasack House Glannasack House 52.08833 -8.45361 S HSEC IE M 04 0 308 Europe/Dublin 2010-08-14 +3300144 Seefin Seefin 52.09889 -8.46889 T MT IE M 04 0 424 308 Europe/Dublin 2010-08-14 +3300145 Power’s Bridge Power's Bridge 52.09528 -8.43306 P PPL IE M 04 0 295 Europe/Dublin 2010-08-14 +3300146 Moneygorm Moneygorm 52.07222 -8.44528 L LCTY IE M 04 0 427 171 Europe/Dublin 2010-08-14 +3300147 Knockacullata Knockacullata 52.09417 -8.52639 T MT IE M 04 0 287 213 Europe/Dublin 2010-08-14 +3300148 Prap Prap 52.06722 -8.39111 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3300149 Glannagaul Glannagaul 52.0775 -8.36694 P PPL IE M 04 0 168 Europe/Dublin 2010-08-14 +3300150 Aunamihoonagh Aunamihoonagh 52.08333 -8.39278 L LCTY IE M 04 0 193 Europe/Dublin 2010-08-14 +3300151 Coolea Coolea 52.07917 -8.40528 L LCTY IE M 04 0 205 Europe/Dublin 2010-08-14 +3300152 Bunnaglanna River Bunnaglanna River 52.05806 -8.425 H STM IE M 04 0 138 Europe/Dublin 2010-08-14 +3300153 Lackendarragh North Lackendarragh North 52.09111 -8.43028 L LCTY IE M 04 0 262 Europe/Dublin 2010-08-14 +3300154 Maulahe Maulahe 52.06417 -8.33167 L LCTY IE M 04 0 74 Europe/Dublin 2010-08-14 +3300155 Ballybrowney Mountain Ballybrowney Mountain 52.07889 -8.34056 P PPLL IE M 04 0 149 Europe/Dublin 2010-08-14 +3300156 Kilbrien Kilbrien 52.08806 -8.31139 L LCTY IE M 04 0 106 Europe/Dublin 2010-08-14 +3300157 Toberaneague Toberaneague 52.09222 -8.33472 L LCTY IE M 04 0 176 Europe/Dublin 2010-08-14 +3300158 Shanowen River Shanowen River 52.0725 -8.26417 H STM IE M 04 0 67 Europe/Dublin 2010-08-14 +3300159 Clykeel Leary’s Cross Clykeel Leary's Cross 52.07 -8.21806 P PPL IE M 04 0 62 Europe/Dublin 2010-08-14 +3300160 Killawillin Killawillin 52.06694 -8.23083 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3300161 Kilcor Kilcor 52.06278 -8.20833 P PPL IE M 04 0 94 Europe/Dublin 2010-08-14 +3300162 Kilcor Castle Kilcor Castle 52.07083 -8.1975 S CSTL IE M 04 0 76 Europe/Dublin 2010-08-14 +3300163 Ballyrobert Castle Ballyrobert Castle 52.08472 -8.17889 S CSTL IE M 04 0 56 Europe/Dublin 2010-08-14 +3300164 Bedlacoon Ford Bedlacoon Ford 52.08 -8.20889 T FORD IE M 04 0 60 Europe/Dublin 2010-08-14 +3300165 Aghern House Aghern House 52.08861 -8.15528 S HSEC IE M 04 0 53 Europe/Dublin 2010-08-14 +3300166 Ballyvolane Wood Ballyvolane Wood 52.06583 -8.17417 V FRST IE M 04 0 67 Europe/Dublin 2010-08-14 +3300167 Farran Farran 52.0975 -8.27333 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +3300168 Kenny’s Cross Roads Kenny's Cross Roads 52.10528 -8.24472 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3300169 Spurree Cross Roads Spurree Cross Roads 52.09417 -8.24056 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +3300170 Shanowennadrumina Stream Shanowennadrumina Stream 52.07361 -8.22972 H STM IE M 04 0 75 Europe/Dublin 2010-08-14 +3300171 Ballynahina House Ballynahina House 52.10333 -8.2725 S HSE IE M 04 0 72 Europe/Dublin 2010-08-14 +3300172 Edgar’s Cross Roads Edgar's Cross Roads 52.09806 -8.20194 P PPL IE M 04 0 65 Europe/Dublin 2010-08-14 +3300173 Grange Grange 52.09278 -8.17361 P PPL IE M 04 0 64 Europe/Dublin 2010-08-14 +3300174 Knockmourne Knockmourne 52.09472 -8.12417 P PPL IE M 04 0 49 Europe/Dublin 2010-08-14 +3300175 Carrigmore House Carrigmore House 52.1 -8.1075 S HSEC IE M 04 0 47 Europe/Dublin 2010-08-14 +3300176 Monagoun Monagoun 52.07667 -8.11472 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300177 Killavarilly Killavarilly 52.07556 -8.14361 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3300178 Knocknagapple Knocknagapple 52.08 -8.16333 L LCTY IE M 04 0 58 Europe/Dublin 2010-08-14 +3300179 Carrigeen House Carrigeen House 52.10222 -8.0725 S HSEC IE M 04 0 41 Europe/Dublin 2010-08-14 +3300180 Lisnabria Lodge Lisnabria Lodge 52.085 -8.05528 S HSE IE M 04 0 73 Europe/Dublin 2010-08-14 +3300181 Mountprospect House Mountprospect House 52.08361 -8.03333 S HSEC IE M 04 0 67 Europe/Dublin 2010-08-14 +3300182 Glengoura Glengoura 52.06722 -8.06167 L LCTY IE M 04 0 102 Europe/Dublin 2010-08-14 +3300183 Ballyverein Ballyverein 52.07278 -8.03556 L LCTY IE M 04 0 109 Europe/Dublin 2010-08-14 +3300184 Ballybride Ballybride 52.10444 -8.14444 L LCTY IE M 04 0 60 Europe/Dublin 2010-08-14 +3300329 Kilwatermoy Kilwatermoy 52.06306 -7.96833 L LCTY IE M 27 0 151 Europe/Dublin 2010-08-14 +3300330 Five Cross Roads Five Cross Roads 52.07083 -7.92722 P PPL IE M 27 0 95 Europe/Dublin 2010-08-14 +3300331 Ballyhamlet House Ballyhamlet House 52.07083 -7.97222 S HSEC IE M 27 0 117 Europe/Dublin 2010-08-14 +3300332 Ballymoat House Ballymoat House 52.07528 -7.96028 S HSEC IE M 27 0 77 Europe/Dublin 2010-08-14 +3300333 Kilmore House Kilmore House 52.08028 -7.98722 S HSEC IE M 27 0 84 Europe/Dublin 2010-08-14 +3300334 Joneville House Joneville House 52.08722 -7.96583 S HSEC IE M 27 0 51 Europe/Dublin 2010-08-14 +3300335 Moorehill House Moorehill House 52.08472 -7.93833 S HSEC IE M 27 0 40 Europe/Dublin 2010-08-14 +3300336 Sapperton House Sapperton House 52.08778 -7.93056 S HSEC IE M 27 0 30 Europe/Dublin 2010-08-14 +3300337 Snugborough Snugborough 52.085 -7.91028 L LCTY IE M 27 0 21 Europe/Dublin 2010-08-14 +3300338 Okvle House Okvle House 52.08889 -7.89861 S HSEC IE M 27 0 44 Europe/Dublin 2010-08-14 +3300339 Kilnacarriga Kilnacarriga 52.1 -7.93722 L LCTY IE M 27 0 24 Europe/Dublin 2010-08-14 +3300340 Curraheen South Curraheen South 52.10278 -7.96944 L LCTY IE M 27 0 68 Europe/Dublin 2010-08-14 +3300341 Ballyphilip Ballyphilip 52.05444 -7.875 P PPL IE M 27 0 16 Europe/Dublin 2010-08-14 +3300342 Scart Scart 52.04361 -7.86833 L LCTY IE M 27 0 16 Europe/Dublin 2010-08-14 +3300343 Ballinwillin Ballinwillin 52.12111 -7.89528 L LCTY IE M 27 0 52 Europe/Dublin 2010-08-14 +3300344 Killahaly Killahaly 52.10583 -7.89083 L LCTY IE M 27 0 58 Europe/Dublin 2010-08-14 +3300345 Owbeg River Owbeg River 52.10861 -7.87111 H STM IE M 27 0 19 Europe/Dublin 2010-08-14 +3300346 Drianroe Drianroe 52.13278 -7.87472 L LCTY IE M 27 0 17 Europe/Dublin 2010-08-14 +3300347 Ballysaggaartbeghill Ballysaggaartbeghill 52.11444 -7.93139 L LCTY IE M 27 0 157 Europe/Dublin 2010-08-14 +3300348 Ballinaspick Ballinaspick 52.10611 -7.96722 L LCTY IE M 27 0 68 Europe/Dublin 2010-08-14 +3300349 Curraheen North Curraheen North 52.11667 -7.96722 L LCTY IE M 27 0 69 Europe/Dublin 2010-08-14 +3300350 Tallow Hill Tallow Hill 52.10972 -7.99139 T HLL IE M 27 0 180 89 Europe/Dublin 2010-08-14 +3300351 Toortane House Toortane House 52.12444 -7.96583 S HSEC IE M 27 0 70 Europe/Dublin 2010-08-14 +3300352 Castlerichard Castlerichard 52.13111 -7.98278 P PPLL IE M 27 0 57 Europe/Dublin 2010-08-14 +3300353 Roseville Roseville 52.13472 -7.96083 L LCTY IE M 27 0 36 Europe/Dublin 2010-08-14 +3300354 Glen Farm Glen Farm 52.14028 -7.96278 S FRM IE M 27 0 36 Europe/Dublin 2010-08-14 +3300355 Salterbridge House Salterbridge House 52.14722 -7.905 S HSEC IE M 27 0 18 Europe/Dublin 2010-08-14 +3300356 Monamin Monamin 52.15222 -7.90389 L LCTY IE M 27 0 134 Europe/Dublin 2010-08-14 +3300357 Ahaunboy Ahaunboy 52.12139 -8.015 L LCTY IE M 27 0 79 Europe/Dublin 2010-08-14 +3300358 Coolowen Coolowen 52.11806 -8.0275 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3300359 Coolydoody Coolydoody 52.11639 -8.04806 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3300360 Coolydoody North Coolydoody North 52.12861 -8.05194 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3300361 Garrycloyne Garrycloyne 52.12861 -8.00722 P PPL IE M 27 0 67 Europe/Dublin 2010-08-14 +3300362 Glenbeg House Glenbeg House 52.13917 -8.03528 S HSEC IE M 27 0 48 Europe/Dublin 2010-08-14 +3300363 Glenmore House Glenmore House 52.13611 -8.00889 S HSEC IE M 27 0 43 Europe/Dublin 2010-08-14 +3300364 Ballygally House Ballygally House 52.14111 -8.00972 S HSEC IE M 27 0 43 Europe/Dublin 2010-08-14 +3300365 Belvidere House Belvidere House 52.10583 -8.04833 S HSEC IE M 04 0 63 Europe/Dublin 2010-08-14 +3300366 Lyon’s Cross Roads Lyon's Cross Roads 52.13528 -8.04278 P PPL IE M 27 0 48 Europe/Dublin 2010-08-14 +3300367 Daly’s Cross Roads Daly's Cross Roads 52.11361 -8.09083 P PPL IE M 04 0 74 Europe/Dublin 2010-08-14 +3300368 Marston Marston 52.13972 -8.08472 P PPL IE M 27 0 61 Europe/Dublin 2010-08-14 +3300369 Kilcoran Kilcoran 52.12306 -8.08611 P PPL IE M 04 0 82 Europe/Dublin 2010-08-14 +3300370 Currabeha Currabeha 52.1225 -8.13306 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3300371 Movdilliga Movdilliga 52.12083 -8.11694 L LCTY IE M 04 0 81 Europe/Dublin 2010-08-14 +3300372 Coolbaun Coolbaun 52.12917 -8.12944 P PPL IE M 04 0 79 Europe/Dublin 2010-08-14 +3300373 Rossnabrone Rossnabrone 52.13861 -8.14 L LCTY IE M 04 0 67 Europe/Dublin 2010-08-14 +3300374 Ballydorgan Ballydorgan 52.13361 -8.15 L LCTY IE M 04 0 69 Europe/Dublin 2010-08-14 +3300375 Raspberry hill Raspberry hill 52.14694 -8.13861 T HLL IE M 27 0 29 Europe/Dublin 2010-08-14 +3300376 Ballyclough House Ballyclough House 52.12194 -8.15667 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3300377 Kilbarry House Kilbarry House 52.1325 -8.17389 S HSEC IE M 04 0 78 Europe/Dublin 2010-08-14 +3300378 Towermore House Towermore House 52.10944 -8.18222 S HSEC IE M 04 0 80 Europe/Dublin 2010-08-14 +3300379 Ballytrasna Ballytrasna 52.10778 -8.17944 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300380 Knockdromaclogh Knockdromaclogh 52.12472 -8.21444 L LCTY IE M 04 0 142 Europe/Dublin 2010-08-14 +3300381 Kilmurry House Kilmurry House 52.14583 -8.17472 S HSEC IE M 04 0 31 Europe/Dublin 2010-08-14 +3300382 Curraghmore House Curraghmore House 52.12722 -8.25222 S HSEC IE M 04 0 82 Europe/Dublin 2010-08-14 +3300383 Bellevue House Bellevue House 52.13639 -8.23833 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3300384 Strayhall Wood Strayhall Wood 52.12333 -8.25083 V FRST IE M 04 0 83 Europe/Dublin 2010-08-14 +3300385 Ballybrack Wood Ballybrack Wood 52.11972 -8.26806 V FRST IE M 04 0 76 Europe/Dublin 2010-08-14 +3300386 Woodsule House Woodsule House 52.12417 -8.27583 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3300387 Ballynamona Ballynamona 52.15028 -8.27667 L LCTY IE M 04 0 34 Europe/Dublin 2010-08-14 +3300388 Mount Rivers Mount Rivers 52.15139 -8.24306 P PPLL IE M 04 0 34 Europe/Dublin 2010-08-14 +3300389 Ileclash Ileclash 52.14889 -8.25222 L LCTY IE M 04 0 52 Europe/Dublin 2010-08-14 +3300390 Hollymount Hollymount 52.11889 -8.30111 L LCTY IE M 04 0 138 Europe/Dublin 2010-08-14 +3300391 Coolmucky Wood Coolmucky Wood 52.12667 -8.30833 V FRST IE M 04 0 82 Europe/Dublin 2010-08-14 +3300392 Castle Hyde Castle Hyde 52.13444 -8.30278 S CSTL IE M 04 0 36 Europe/Dublin 2010-08-14 +3300393 Ashfield House Ashfield House 52.14194 -8.30833 S HSEC IE M 04 0 36 Europe/Dublin 2010-08-14 +3300394 Stand House Stand House 52.14964 -8.31611 S HSEC IE M 04 6 37 Europe/Dublin 2010-08-14 +3300395 Millquarter Cottage Millquarter Cottage 52.13083 -8.32583 S HSE IE M 04 0 87 Europe/Dublin 2010-08-14 +3300396 Knockananig Knockananig 52.11722 -8.345 P PPL IE M 04 0 138 Europe/Dublin 2010-08-14 +3300397 Cregg Castle Cregg Castle 52.13944 -8.33306 S CSTL IE M 04 0 39 Europe/Dublin 2010-08-14 +3300398 Cregg North Cregg North 52.14806 -8.35083 L LCTY IE M 04 0 42 Europe/Dublin 2010-08-14 +3300399 Creggolympry Creggolympry 52.13583 -8.36194 P PPL IE M 04 0 42 Europe/Dublin 2010-08-14 +3300400 Ballyhamuadagh Ballyhamuadagh 52.12611 -8.37611 L LCTY IE M 04 0 82 Europe/Dublin 2010-08-14 +3300401 Gurteen House Gurteen House 52.13667 -8.3775 S HSEC IE M 04 0 44 Europe/Dublin 2010-08-14 +3300402 Cappagh Cappagh 52.11222 -8.36806 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300403 Ballymacphilip Ballymacphilip 52.12111 -8.39778 L LCTY IE M 04 0 132 Europe/Dublin 2010-08-14 +3300404 Coolinny Coolinny 52.10833 -8.39833 L LCTY IE M 04 0 177 Europe/Dublin 2010-08-14 +3300405 Killathy Killathy 52.14444 -8.38139 L LCTY IE M 04 0 40 Europe/Dublin 2010-08-14 +3300406 Inchinapallas Inchinapallas 52.15222 -8.38778 L LCTY IE M 04 0 50 Europe/Dublin 2010-08-14 +3300407 Bloomfield Cross Roads Bloomfield Cross Roads 52.13833 -8.39667 P PPL IE M 04 0 45 Europe/Dublin 2010-08-14 +3300408 Ballydague Ballydague 52.13749 -8.42772 P PPL IE M 04 0 70 Europe/Dublin 2010-08-14 +3300409 Wood Cottage Wood Cottage 52.13611 -8.43222 S HSE IE M 04 0 70 Europe/Dublin 2010-08-14 +3300410 Springhill Springhill 52.14 -8.45528 P PPL IE M 04 0 82 Europe/Dublin 2010-08-14 +3300411 Woodville Woodville 52.14583 -8.45417 L LCTY IE M 04 0 50 Europe/Dublin 2010-08-14 +3300412 Clifford House Clifford House 52.14639 -8.46389 S HSEC IE M 04 0 51 Europe/Dublin 2010-08-14 +3300454 Corran Corran 52.11 -8.5 T MT IE M 04 0 409 308 Europe/Dublin 2010-08-14 +3300455 Beennaskehy Beennaskehy 52.11083 -8.53306 P PPLL IE M 04 0 207 Europe/Dublin 2010-08-14 +3300456 Ballynageehy Ballynageehy 52.12361 -8.53917 L LCTY IE M 04 0 183 Europe/Dublin 2010-08-14 +3300457 Ballymacmoy Ballymacmoy 52.14167 -8.5425 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3300458 Carrigacunna Castle Carrigacunna Castle 52.14194 -8.50306 S CSTL IE M 04 0 54 Europe/Dublin 2010-08-14 +3300459 Ballyduff Lodge Ballyduff Lodge 52.13611 -8.48361 S HSE IE M 04 0 90 Europe/Dublin 2010-08-14 +3300460 Castletownroche Castletownroche 52.15194 -8.50389 P PPL IE M 04 0 59 Europe/Dublin 2010-08-14 +3300461 Ballygriffin Ballygriffin 52.15556 -8.5125 P PPL IE M 04 0 58 Europe/Dublin 2010-08-14 +3300462 The Glen The Glen 52.16361 -8.52972 P PPL IE M 04 0 65 Europe/Dublin 2010-08-14 +3300463 Killigragh Killigragh 52.16667 -8.5325 L LCTY IE M 04 0 72 Europe/Dublin 2010-08-14 +3300464 Ballyveelick Ballyveelick 52.18056 -8.51167 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300465 Skenakilla Skenakilla 52.18806 -8.51278 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3300466 Hunting Hill Hunting Hill 52.19056 -8.50361 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3300467 Ballygown Ballygown 52.19639 -8.53972 L LCTY IE M 04 0 77 Europe/Dublin 2010-08-14 +3300468 Ballydaheen Ballydaheen 52.20028 -8.52389 L LCTY IE M 04 0 75 Europe/Dublin 2010-08-14 +3300469 Dromdeer House Dromdeer House 52.20194 -8.54167 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3300470 Knockacappul Knockacappul 52.20194 -8.50528 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300471 Doonawanly Doonawanly 52.21139 -8.50778 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300472 Shanballymore House Shanballymore House 52.21083 -8.4725 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3300473 Kisnagoorneen House Kisnagoorneen House 52.19694 -8.4175 S HSEC IE M 04 0 79 Europe/Dublin 2010-08-14 +3300474 Ballydoyle Ballydoyle 52.19472 -8.45028 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3300475 Bridgetown Upper Bridgetown Upper 52.15972 -8.47972 L LCTY IE M 04 0 61 Europe/Dublin 2010-08-14 +3300476 Clogher House Clogher House 52.21694 -8.49028 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3300477 Landscape Landscape 52.21528 -8.53722 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300478 Ballywalter Ballywalter 52.20583 -8.45194 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300479 Ballygrillihan Ballygrillihan 52.18111 -8.46028 L LCTY IE M 04 0 63 Europe/Dublin 2010-08-14 +3300480 Ballyadeen Ballyadeen 52.17639 -8.44389 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300481 Glenanore Glenanore 52.17333 -8.45139 L LCTY IE M 04 0 64 Europe/Dublin 2010-08-14 +3300482 Kilcummer Bridge Kilcummer Bridge 52.15556 -8.45167 P PPL IE M 04 0 51 Europe/Dublin 2010-08-14 +3300483 Kilcummer House Kilcummer House 52.15833 -8.42 S HSEC IE M 04 0 56 Europe/Dublin 2010-08-14 +3300484 Kilcummer Upper Kilcummer Upper 52.16361 -8.4475 L LCTY IE M 04 0 63 Europe/Dublin 2010-08-14 +3300485 Park House Park House 52.22583 -8.52972 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3300486 Carker House Carker House 52.23056 -8.54278 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3300487 Goolaway Cross Roads Goolaway Cross Roads 52.23917 -8.54278 P PPL IE M 04 0 78 Europe/Dublin 2010-08-14 +3300488 Craig House Craig House 52.23806 -8.49722 S HSEC IE M 04 0 78 Europe/Dublin 2010-08-14 +3300489 Kilconnor Kilconnor 52.23889 -8.52056 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3300490 Waterdyke Waterdyke 52.23472 -8.4975 S EST IE M 04 0 78 Europe/Dublin 2010-08-14 +3300491 Shanagh Shanagh 52.23194 -8.50972 L LCTY IE M 04 0 74 Europe/Dublin 2010-08-14 +3300492 Poulleagh Poulleagh 52.22639 -8.46639 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3300493 Meadstown House Meadstown House 52.23333 -8.42639 S HSEC IE M 04 0 76 Europe/Dublin 2010-08-14 +3300494 Rockmill Lodge Rockmill Lodge 52.22111 -8.38806 S HSE IE M 04 0 57 Europe/Dublin 2010-08-14 +3300495 Ballydeloughy Ballydeloughy 52.23139 -8.38444 L LCTY IE M 04 0 58 Europe/Dublin 2010-08-14 +3300496 Derryvillane Derryvillane 52.21972 -8.38556 P PPL IE M 04 0 57 Europe/Dublin 2010-08-14 +3300497 Newgrown House Newgrown House 52.21444 -8.36444 S HSEC IE M 04 0 53 Europe/Dublin 2010-08-14 +3300498 Carrigdownane Carrigdownane 52.21139 -8.41528 P PPL IE M 04 0 71 Europe/Dublin 2010-08-14 +3300499 Togher Cross Roads Togher Cross Roads 52.19889 -8.40778 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3300500 Ballylegan Ballylegan 52.20556 -8.38333 L LCTY IE M 04 0 58 Europe/Dublin 2010-08-14 +3300501 Ballykeating Ballykeating 52.20278 -8.39444 L LCTY IE M 04 0 66 Europe/Dublin 2010-08-14 +3300502 Air Hill Air Hill 52.2 -8.36583 L LCTY IE M 04 0 49 Europe/Dublin 2010-08-14 +3300503 Ballintantassig Ballintantassig 52.21611 -8.35639 L LCTY IE M 04 0 61 Europe/Dublin 2010-08-14 +3300504 Ballykenly Bridge Ballykenly Bridge 52.21194 -8.35194 P PPL IE M 04 0 61 Europe/Dublin 2010-08-14 +3300505 Curraghoo More Curraghoo More 52.20361 -8.34583 L LCTY IE M 04 0 63 Europe/Dublin 2010-08-14 +3300507 Dunmahon Dunmahon 52.19889 -8.33722 L LCTY IE M 04 0 58 Europe/Dublin 2010-08-14 +3300508 Ballyadack Ballyadack 52.22944 -8.31833 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300509 Gortnahown Gortnahown 52.23444 -8.29472 L LCTY IE M 04 0 130 Europe/Dublin 2010-08-14 +3300510 Knockeenadara Knockeenadara 52.22944 -8.29111 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300511 Ballynachaeragh Ballynachaeragh 52.21944 -8.32083 L LCTY IE M 04 0 84 Europe/Dublin 2010-08-14 +3300512 Killeenemer Killeenemer 52.20917 -8.32111 P PPL IE M 04 0 88 Europe/Dublin 2010-08-14 +3300513 Curraghagalla Curraghagalla 52.20556 -8.31778 L LCTY IE M 04 0 85 Europe/Dublin 2010-08-14 +3300514 Killeagh Killeagh 52.19889 -8.31417 L LCTY IE M 04 0 83 Europe/Dublin 2010-08-14 +3300515 Caherdrinny Caherdrinny 52.21917 -8.29167 P PPL IE M 04 0 151 Europe/Dublin 2010-08-14 +3300516 Flagstaff Hill Flagstaff Hill 52.22194 -8.26972 T HLL IE M 04 0 168 Europe/Dublin 2010-08-14 +3300517 Lismore House Lismore House 52.19917 -8.28361 S HSEC IE M 04 0 136 Europe/Dublin 2010-08-14 +3300518 Corrabrien Cross Roads Corrabrien Cross Roads 52.17611 -8.40278 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +3300519 Brawnroe Cross Roads Brawnroe Cross Roads 52.17167 -8.37278 P PPL IE M 04 0 51 Europe/Dublin 2010-08-14 +3300520 Scrarour Scrarour 52.18222 -8.42306 L LCTY IE M 04 0 76 Europe/Dublin 2010-08-14 +3300521 Parkacunna Parkacunna 52.17444 -8.41972 L LCTY IE M 04 0 71 Europe/Dublin 2010-08-14 +3300522 Johnstown House Johnstown House 52.16806 -8.35778 S HSEC IE M 04 0 44 Europe/Dublin 2010-08-14 +3300523 Upper Convamore Upper Convamore 52.15861 -8.41111 P PPL IE M 04 0 61 Europe/Dublin 2010-08-14 +3300524 Labbacallee Labbacallee 52.17028 -8.34 L LCTY IE M 04 0 40 Europe/Dublin 2010-08-14 +3300525 Moneen Moneen 52.18167 -8.3775 L LCTY IE M 04 0 58 Europe/Dublin 2010-08-14 +3300526 Downing Downing 52.19167 -8.3 L LCTY IE M 04 0 113 Europe/Dublin 2010-08-14 +3300527 Ballyvolock Ballyvolock 52.18472 -8.29972 L LCTY IE M 04 0 71 Europe/Dublin 2010-08-14 +3300528 Glenwood House Glenwood House 52.18028 -8.2775 S HSEC IE M 04 0 58 Europe/Dublin 2010-08-14 +3300529 Ballynahon Ballynahon 52.17528 -8.30028 L LCTY IE M 04 0 36 Europe/Dublin 2010-08-14 +3300530 Boherderroye Boherderroye 52.16833 -8.28917 P PPL IE M 04 0 34 Europe/Dublin 2010-08-14 +3300531 Bounbawn Cross Roads Bounbawn Cross Roads 52.16111 -8.31889 P PPL IE M 04 0 38 Europe/Dublin 2010-08-14 +3300532 Gurrane Gurrane 52.15889 -8.30472 L LCTY IE M 04 0 35 Europe/Dublin 2010-08-14 +3300533 Gurraunigerinagh Gurraunigerinagh 52.15278 -8.31222 L LCTY IE M 04 0 37 Europe/Dublin 2010-08-14 +3300534 Insnasallagh Insnasallagh 52.1575 -8.27611 P PPL IE M 04 0 34 Europe/Dublin 2010-08-14 +3300535 Glebe House Glebe House 52.16083 -8.23139 S HSEC IE M 04 0 44 Europe/Dublin 2010-08-14 +3300536 Leitrim House Leitrim House 52.16028 -8.20389 S HSEC IE M 04 0 72 Europe/Dublin 2010-08-14 +3300537 Agraglin Bridge Agraglin Bridge 52.16667 -8.21972 P PPL IE M 04 0 63 Europe/Dublin 2010-08-14 +3300538 Glansheskin House Glansheskin House 52.18167 -8.23222 S HSEC IE M 04 0 70 Europe/Dublin 2010-08-14 +3300539 Molly Barry Cross Roads Molly Barry Cross Roads 52.17722 -8.26056 P PPL IE M 04 0 60 Europe/Dublin 2010-08-14 +3300540 Rushmount Rushmount 52.18444 -8.26222 P PPL IE M 04 0 89 Europe/Dublin 2010-08-14 +3300541 Ballynalacken Ballynalacken 52.15361 -8.19722 L LCTY IE M 04 0 65 Europe/Dublin 2010-08-14 +3300542 Kilmurry Kilmurry 52.15472 -8.17278 L LCTY IE M 04 0 66 Europe/Dublin 2010-08-14 +3300543 Knockaskehane Knockaskehane 52.15972 -8.19278 P PPL IE M 04 0 83 Europe/Dublin 2010-08-14 +3300544 Glenfinish Bridge Glenfinish Bridge 52.16944 -8.18306 P PPL IE M 04 0 105 Europe/Dublin 2010-08-14 +3300545 Knockatrasnane Knockatrasnane 52.17694 -8.17667 L LCTY IE M 04 0 109 Europe/Dublin 2010-08-14 +3300546 Cronohill Cronohill 52.17028 -8.1725 L LCTY IE M 04 0 117 Europe/Dublin 2010-08-14 +3300547 Macroney Macroney 52.18139 -8.20889 L LCTY IE M 04 0 101 Europe/Dublin 2010-08-14 +3300548 Propage Propage 52.18889 -8.16861 L LCTY IE M 04 0 117 Europe/Dublin 2010-08-14 +3300549 Castlecooke Castlecooke 52.19 -8.19361 L LCTY IE M 04 0 115 Europe/Dublin 2010-08-14 +3300550 Douglas River Douglas River 52.16833 -8.22083 H STM IE M 04 0 63 Europe/Dublin 2010-08-14 +3300551 Ballinrash Ballinrash 52.20306 -8.26278 L LCTY IE M 04 0 162 Europe/Dublin 2010-08-14 +3300552 Jeffrys Wood Jeffrys Wood 52.20194 -8.23444 V FRST IE M 04 0 159 Europe/Dublin 2010-08-14 +3300553 Ballinvoher Ballinvoher 52.20444 -8.225 L LCTY IE M 04 0 153 Europe/Dublin 2010-08-14 +3300554 Coolaneague Coolaneague 52.20472 -8.19444 L LCTY IE M 04 0 159 Europe/Dublin 2010-08-14 +3300555 Ballard Ballard 52.21583 -8.18861 P PPL IE M 04 0 160 Europe/Dublin 2010-08-14 +3300556 Glenatlucky Mountain Glenatlucky Mountain 52.23056 -8.24583 T HLL IE M 04 0 283 159 Europe/Dublin 2010-08-14 +3300557 Glenatlucky Glenatlucky 52.23944 -8.26833 P PPL IE M 04 0 157 Europe/Dublin 2010-08-14 +3300558 Skeheen Mountain Skeheen Mountain 52.24111 -8.20306 T HLL IE M 04 0 298 155 Europe/Dublin 2010-08-14 +3300559 Ballynamuddagh Ballynamuddagh 52.19694 -8.1475 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3300560 Crinnaghtane Crinnaghtane 52.20639 -8.13917 P PPL IE M 04 0 121 Europe/Dublin 2010-08-14 +3300561 Lyre Lyre 52.22167 -8.14417 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300562 Gortnaskeny Gortnaskeny 52.21639 -8.12361 L LCTY IE M 04 0 149 Europe/Dublin 2010-08-14 +3300640 Farbreaga Farbreaga 52.23472 -8.04778 T MT IE M 26 0 519 430 Europe/Dublin 2010-08-14 +3300641 Carran Hill Carran Hill 52.22861 -8.09222 T MT IE M 40 0 362 215 Europe/Dublin 2010-08-14 +3300642 Barnahown Barnahown 52.21611 -8.09694 L LCTY IE M 26 0 159 Europe/Dublin 2010-08-14 +3300643 Doon Doon 52.21861 -8.06 L LCTY IE M 26 0 286 Europe/Dublin 2010-08-14 +3300644 Foildarrig Foildarrig 52.20639 -8.01278 L LCTY IE M 26 0 201 Europe/Dublin 2010-08-14 +3300645 Kingston Bridge Kingston Bridge 52.20611 -8.08111 P PPL IE M 27 0 154 Europe/Dublin 2010-08-14 +3300646 Ballinaleucra Ballinaleucra 52.20278 -8.10806 P PPL IE M 27 0 134 Europe/Dublin 2010-08-14 +3300647 Ballyeat Ballyeat 52.20167 -8.07 L LCTY IE M 27 0 152 Europe/Dublin 2010-08-14 +3300648 Knocknalough Knocknalough 52.18361 -8.10889 T MT IE M 27 0 313 269 Europe/Dublin 2010-08-14 +3300649 Glencullen Glencullen 52.19056 -8.09861 L LCTY IE M 27 0 250 Europe/Dublin 2010-08-14 +3300650 Labbanacallee Labbanacallee 52.17972 -8.10306 P PPL IE M 27 0 264 Europe/Dublin 2010-08-14 +3300651 Knockcorragh Knockcorragh 52.18361 -8.0625 L LCTY IE M 27 0 231 Europe/Dublin 2010-08-14 +3300652 Knocknaboul Knocknaboul 52.195 -8.02194 T MT IE M 27 0 317 269 Europe/Dublin 2010-08-14 +3300653 Knockadullaun Knockadullaun 52.18833 -8.04528 T MT IE M 27 0 354 231 Europe/Dublin 2010-08-14 +3300654 Tooradoo Tooradoo 52.17639 -8.04972 L LCTY IE M 27 0 215 Europe/Dublin 2010-08-14 +3300655 Gortnapeaky Gortnapeaky 52.1675 -8.07667 L LCTY IE M 27 0 247 Europe/Dublin 2010-08-14 +3300656 Black Black 52.15667 -8.11222 L LCTY IE M 27 0 109 Europe/Dublin 2010-08-14 +3300657 Lyrenaglogle Lyrenaglogle 52.16361 -8.11722 L LCTY IE M 27 0 208 Europe/Dublin 2010-08-14 +3300658 Knockaunroe Knockaunroe 52.15778 -8.155 L LCTY IE M 27 0 65 Europe/Dublin 2010-08-14 +3300659 Countygate Countygate 52.15222 -8.15361 L LCTY IE M 27 0 65 Europe/Dublin 2010-08-14 +3300660 Curraghacna Curraghacna 52.16556 -8.04278 L LCTY IE M 27 0 154 Europe/Dublin 2010-08-14 +3300661 Glenmore River Glenmore River 52.14306 -8.00833 H STM IE M 27 0 21 Europe/Dublin 2010-08-14 +3300662 Cool Cool 52.1625 -7.9975 L LCTY IE M 27 0 144 Europe/Dublin 2010-08-14 +3300663 Logleagh Logleagh 52.17944 -8.00556 L LCTY IE M 27 0 185 Europe/Dublin 2010-08-14 +3300664 Ballysaggart Ballysaggart 52.17639 -7.99111 L AREA IE M 27 0 203 Europe/Dublin 2010-08-14 +3300665 Knockaunarast Knockaunarast 52.19278 -7.99361 L LCTY IE M 27 0 220 Europe/Dublin 2010-08-14 +3300666 Ballyin Ballyin 52.1525 -7.95333 L LCTY IE M 27 0 96 Europe/Dublin 2010-08-14 +3300667 Cooldrishoge Cooldrishoge 52.15583 -7.93028 L LCTY IE M 27 0 59 Europe/Dublin 2010-08-14 +3300668 Sruh Sruh 52.15972 -7.92778 P PPL IE M 27 0 98 Europe/Dublin 2010-08-14 +3300669 Shanavoota Shanavoota 52.15806 -7.97083 L LCTY IE M 27 0 94 Europe/Dublin 2010-08-14 +3300670 Monatarriv Monatarriv 52.1675 -7.96694 L LCTY IE M 27 0 181 Europe/Dublin 2010-08-14 +3300671 Glenshask Glenshask 52.17194 -7.9575 L LCTY IE M 27 0 156 Europe/Dublin 2010-08-14 +3300672 Lyrenacatlee Lyrenacatlee 52.16806 -7.89722 L LCTY IE M 27 0 185 Europe/Dublin 2010-08-14 +3300673 Monalour Monalour 52.17917 -7.90528 P PPL IE M 27 0 194 Europe/Dublin 2010-08-14 +3300674 Carrigninnower Carrigninnower 52.17306 -7.93194 L LCTY IE M 27 0 125 Europe/Dublin 2010-08-14 +3300675 Glenakeelfe River Glenakeelfe River 52.16722 -7.92694 H STM IE M 27 0 125 Europe/Dublin 2010-08-14 +3300676 Castle Dodard Castle Dodard 52.19833 -7.9225 S CSTL IE M 27 0 185 Europe/Dublin 2010-08-14 +3300677 Glengarra Glengarra 52.18167 -7.95778 L LCTY IE M 27 0 170 Europe/Dublin 2010-08-14 +3300678 Monard Monard 52.20861 -7.96861 L LCTY IE M 27 0 310 Europe/Dublin 2010-08-14 +3300679 The Three Doons The Three Doons 52.21361 -7.98472 L LCTY IE M 27 0 293 Europe/Dublin 2010-08-14 +3300680 Glenaknockaun Glenaknockaun 52.21389 -7.93472 L LCTY IE M 27 0 230 Europe/Dublin 2010-08-14 +3300681 Knockaunabulloga Knockaunabulloga 52.2275 -7.98222 L LCTY IE M 27 0 459 Europe/Dublin 2010-08-14 +3300682 Knockmealdown Knockmealdown 52.22972 -7.93694 L LCTY IE M 27 0 607 Europe/Dublin 2010-08-14 +3300683 Dyrick Dyrick 52.20361 -7.89083 T MT IE M 27 0 364 321 Europe/Dublin 2010-08-14 +3300684 Owennashad River Owennashad River 52.14389 -7.93194 H STM IE M 27 0 19 Europe/Dublin 2010-08-14 +3300685 Boherboyrea Boherboyrea 52.17028 -7.88278 L LCTY IE M 27 0 170 Europe/Dublin 2010-08-14 +3300686 Knocknagnauv Knocknagnauv 52.22778 -7.88139 T MT IE 00 0 655 511 Europe/Dublin 2006-01-16 +3300687 Knocknafallia Knocknafallia 52.21972 -7.86306 T MT IE M 27 0 670 492 Europe/Dublin 2010-08-14 +3300688 Glennafallia Glennafallia 52.21222 -7.86833 L LCTY IE M 27 0 476 Europe/Dublin 2010-08-14 +3300689 Knockboy Knockboy 52.19944 -7.86583 L LCTY IE M 27 0 266 Europe/Dublin 2010-08-14 +3300690 Monavuaga River Monavuaga River 52.17194 -7.84861 H STM IE M 27 0 129 Europe/Dublin 2010-08-14 +3300691 Ballynoe East Ballynoe East 52.16417 -7.86528 L LCTY IE M 27 0 117 Europe/Dublin 2010-08-14 +3300692 Skahanagh More Skahanagh More 52.25167 -8.54139 P PPL IE M 04 0 96 Europe/Dublin 2010-08-14 +3300693 Ballintlea Bridge Ballintlea Bridge 52.26722 -8.51 P PPL IE M 04 0 156 Europe/Dublin 2010-08-14 +3300694 Ballyguyroe North Ballyguyroe North 52.26889 -8.50194 L LCTY IE M 04 0 158 Europe/Dublin 2010-08-14 +3300695 Graig Upper Graig Upper 52.26 -8.49806 P PPL IE M 04 0 120 Europe/Dublin 2010-08-14 +3300696 Bowen’s Court Bowen's Court 52.245 -8.46139 S EST IE M 04 0 88 Europe/Dublin 2010-08-14 +3300697 Farahy River Farahy River 52.22722 -8.41167 H STM IE M 04 0 61 Europe/Dublin 2010-08-14 +3300698 Ballyshanock Ballyshanock 52.25611 -8.47167 P PPL IE M 04 0 101 Europe/Dublin 2010-08-14 +3300699 Tankardstown Tankardstown 52.25806 -8.45722 L LCTY IE M 04 0 101 Europe/Dublin 2010-08-14 +3300700 Springvale Springvale 52.26861 -8.45639 S EST IE M 04 0 138 Europe/Dublin 2010-08-14 +3300701 Quitrentmountain Quitrentmountain 52.27639 -8.4875 L LCTY IE M 04 0 226 Europe/Dublin 2010-08-14 +3300702 Oldcastletown Oldcastletown 52.25917 -8.42861 P PPL IE M 04 0 116 Europe/Dublin 2010-08-14 +3300703 Boleynahouliagh Boleynahouliagh 52.28194 -8.44722 L LCTY IE M 04 0 147 Europe/Dublin 2010-08-14 +3300762 Glenavuddig Bridge Glenavuddig Bridge 52.24889 -8.40417 P PPL IE M 04 0 62 Europe/Dublin 2010-08-14 +3300763 Mounteagle Mounteagle 52.25389 -8.38194 S EST IE M 04 0 67 Europe/Dublin 2010-08-14 +3300764 Glennahulla Cross Glennahulla Cross 52.25306 -8.36361 P PPL IE M 04 0 76 Europe/Dublin 2010-08-14 +3300765 Kilgullane Kilgullane 52.24639 -8.33306 L LCTY IE M 04 0 78 Europe/Dublin 2010-08-14 +3300766 Killee House Killee House 52.26611 -8.33528 S HSEC IE M 04 0 79 Europe/Dublin 2010-08-14 +3300767 Flemingstown Flemingstown 52.24306 -8.31444 P PPL IE M 04 0 93 Europe/Dublin 2010-08-14 +3300768 Ballykearney Ballykearney 52.25278 -8.31444 L LCTY IE M 04 0 92 Europe/Dublin 2010-08-14 +3300769 Killee Bridge Killee Bridge 52.26472 -8.32361 P PPL IE M 04 0 85 Europe/Dublin 2010-08-14 +3300770 Broomkill Cottage Broomkill Cottage 52.2625 -8.32694 S HSE IE M 04 0 82 Europe/Dublin 2010-08-14 +3300771 Marshalstown Marshalstown 52.26194 -8.35611 P PPL IE M 04 0 73 Europe/Dublin 2010-08-14 +3300772 Cullenagh Cullenagh 52.26806 -8.41167 P PPL IE M 04 0 129 Europe/Dublin 2010-08-14 +3300773 Knockagarry Knockagarry 52.28833 -8.35861 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300774 Sheep River Sheep River 52.25639 -8.38417 H STM IE M 04 0 65 Europe/Dublin 2010-08-14 +3300775 Cloonlough Cloonlough 52.25111 -8.29389 L LCTY IE M 04 0 117 Europe/Dublin 2010-08-14 +3300776 Mitchelstown Castle Mitchelstown Castle 52.26889 -8.29694 S CSTL IE M 04 0 106 Europe/Dublin 2010-08-14 +3300777 Killaclug Killaclug 52.28167 -8.32028 L LCTY IE M 04 0 100 Europe/Dublin 2010-08-14 +3300778 Ballyarthur Ballyarthur 52.2875 -8.30528 L LCTY IE M 04 0 113 Europe/Dublin 2010-08-14 +3300803 Glenanair Glenanair 52.2875 -8.52167 T VAL IE M 16 0 267 Europe/Dublin 2010-08-14 +3300804 Moanmore Moanmore 52.2875 -8.49639 L LCTY IE M 16 0 279 Europe/Dublin 2010-08-14 +3300805 Redchair Cross Roads Redchair Cross Roads 52.28889 -8.4525 P PPL IE M 16 0 165 Europe/Dublin 2010-08-14 +3300806 Coolfree Mountain Coolfree Mountain 52.29639 -8.48 T MT IE M 16 0 304 Europe/Dublin 2010-08-14 +3300807 Long Mountain Long Mountain 52.29889 -8.50861 T MT IE M 16 0 330 Europe/Dublin 2010-08-14 +3300809 Seefin Mountain Seefin Mountain Seefin Mountain 52.3125 -8.50861 T MT IE M 16 0 417 Europe/Dublin 2010-08-14 +3300814 Carriigeenamronety Carriigeenamronety 52.29583 -8.43833 T MT IE M 16 0 152 Europe/Dublin 2010-08-14 +3300815 Kilcruaig Kilcruaig 52.29944 -8.44444 L LCTY IE M 16 0 151 Europe/Dublin 2010-08-14 +3300816 Coolavehy Coolavehy 52.29806 -8.46167 L LCTY IE M 16 0 201 Europe/Dublin 2010-08-14 +3300817 Garryarthur Garryarthur 52.30222 -8.43639 L LCTY IE M 16 0 152 Europe/Dublin 2010-08-14 +3300822 Fanningstown Fanningstown 52.32417 -8.53361 L LCTY IE M 16 0 370 Europe/Dublin 2010-08-14 +3300823 Black Rock Black Rock 52.3175 -8.51917 T RK IE M 16 0 340 Europe/Dublin 2010-08-14 +3300824 Green Wood Green Wood 52.31833 -8.50944 V FRST IE M 16 0 315 Europe/Dublin 2010-08-14 +3300825 Clonatfoy Clonatfoy 52.32722 -8.48444 S EST IE M 16 0 145 Europe/Dublin 2010-08-14 +3300826 Keale Keale 52.31917 -8.45056 L LCTY IE M 16 0 172 Europe/Dublin 2010-08-14 +3300827 Moneen Moneen 52.33944 -8.50056 L LCTY IE M 16 0 154 Europe/Dublin 2010-08-14 +3300828 Mortlestown Mortlestown 52.35056 -8.51889 L LCTY IE M 16 0 134 Europe/Dublin 2010-08-14 +3300829 Murrins Cross Roads Murrins Cross Roads 52.355 -8.48472 P PPL IE M 16 0 152 Europe/Dublin 2010-08-14 +3300830 Carrigeen Cross Roads Carrigeen Cross Roads 52.34778 -8.47694 P PPL IE M 16 0 185 Europe/Dublin 2010-08-14 +3300831 Benyvoughella Hill Benyvoughella Hill 52.34083 -8.46028 T MT IE M 16 0 350 257 Europe/Dublin 2010-08-14 +3300832 Ballinlyna House Ballinlyna House 52.33583 -8.46611 S HSE IE M 16 0 257 Europe/Dublin 2010-08-14 +3300833 Thomastown Thomastown 52.34639 -8.45444 L LCTY IE M 16 0 261 Europe/Dublin 2010-08-14 +3300834 Ballinanima Ballinanima 52.37611 -8.51556 L LCTY IE M 16 0 104 Europe/Dublin 2010-08-14 +3300835 Rosnetstown Rosnetstown 52.37806 -8.48778 L LCTY IE M 16 0 113 Europe/Dublin 2010-08-14 +3300836 Loobagh River Loobagh River 52.37278 -8.49556 H STM IE M 16 0 123 Europe/Dublin 2010-08-14 +3300837 Baunmore Baunmore 52.35083 -8.54389 L LCTY IE M 16 0 122 Europe/Dublin 2010-08-14 +3300838 Moorestown Moorestown 52.375 -8.45417 L LCTY IE M 16 0 147 Europe/Dublin 2010-08-14 +3300839 Keale River Keale River 52.30944 -8.39361 H STM IE M 16 0 151 Europe/Dublin 2010-08-14 +3300840 Ahaphuca River Ahaphuca River 52.305 -8.38056 H STM IE M 16 0 152 Europe/Dublin 2010-08-14 +3300841 Darragh Bridge Darragh Bridge 52.30861 -8.40583 P PPL IE M 16 0 151 Europe/Dublin 2010-08-14 +3300842 Carrighenry Carrighenry 52.295 -8.40861 T MT IE M 16 0 157 Europe/Dublin 2010-08-14 +3300843 Spittle Spittle 52.32389 -8.42083 L LCTY IE M 16 0 152 Europe/Dublin 2010-08-14 +3300844 Tulla Tulla 52.31833 -8.39278 L LCTY IE M 16 0 151 Europe/Dublin 2010-08-14 +3300845 Stark’s Wood Stark's Wood 52.33639 -8.43306 V FRST IE M 16 0 185 Europe/Dublin 2010-08-14 +3300846 Ruppulagh Ruppulagh 52.33944 -8.42306 L LCTY IE M 16 0 178 Europe/Dublin 2010-08-14 +3300847 Ballyriggin Ballyriggin 52.36222 -8.44889 L LCTY IE M 16 0 168 Europe/Dublin 2010-08-14 +3300848 Palatin Rock Palatin Rock 52.35833 -8.43194 T RK IE M 16 0 206 Europe/Dublin 2010-08-14 +3300849 Parlour Rock Parlour Rock 52.36167 -8.41556 T RK IE M 16 0 265 Europe/Dublin 2010-08-14 +3300850 Slievereagh Slievereagh 52.37972 -8.42806 L LCTY IE M 16 0 286 Europe/Dublin 2010-08-14 +3300851 Ballynalacken Ballynalacken 52.37278 -8.39306 L LCTY IE M 16 0 277 Europe/Dublin 2010-08-14 +3300852 Ballyingarry Ballyingarry 52.38167 -8.39111 L LCTY IE M 16 0 228 Europe/Dublin 2010-08-14 +3300853 Ballyfeerode Ballyfeerode 52.33222 -8.39528 L LCTY IE M 16 0 152 Europe/Dublin 2010-08-14 +3300854 Griston Griston 52.35944 -8.36611 T HLL IE M 16 0 152 Europe/Dublin 2010-08-14 +3300855 Cullane Cullane 52.34528 -8.35694 L LCTY IE M 16 0 155 Europe/Dublin 2010-08-14 +3300856 Ballyduff Ballyduff 52.34861 -8.32639 L LCTY IE M 16 0 165 Europe/Dublin 2010-08-14 +3300857 Curraghturk Curraghturk 52.35972 -8.33056 L LCTY IE M 16 0 155 Europe/Dublin 2010-08-14 +3300858 Fahanasoodry Fahanasoodry 52.33417 -8.33667 L LCTY IE M 16 0 176 Europe/Dublin 2010-08-14 +3300859 Ballyfauskeen Cross Roads Ballyfauskeen Cross Roads 52.36167 -8.30917 P PPL IE M 16 0 145 Europe/Dublin 2010-08-14 +3300860 Labbamolaga Labbamolaga 52.31917 -8.35917 L LCTY IE M 04 0 152 Europe/Dublin 2010-08-14 +3300861 Lisnalanniv Lisnalanniv 52.32028 -8.31806 L LCTY IE M 04 0 246 Europe/Dublin 2010-08-14 +3300862 Tooraleagan Tooraleagan 52.31111 -8.37194 L LCTY IE M 16 0 150 Europe/Dublin 2010-08-14 +3300863 Ahaphuca Bridge Ahaphuca Bridge 52.30056 -8.38222 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3300864 Knockanevin Knockanevin 52.29472 -8.38222 P PPL IE M 04 0 152 Europe/Dublin 2010-08-14 +3300865 Gortroe Gortroe 52.295 -8.33167 L LCTY IE M 04 0 160 Europe/Dublin 2010-08-14 +3300866 Ballaghaderg Bridge Ballaghaderg Bridge 52.28583 -8.28111 P PPL IE M 04 0 105 Europe/Dublin 2010-08-14 +3300868 Ballynamona Ballynamona 52.25694 -8.25056 L LCTY IE M 04 0 147 Europe/Dublin 2010-08-14 +3300869 Pollardstown Pollardstown 52.25028 -8.23306 L LCTY IE M 04 0 143 Europe/Dublin 2010-08-14 +3300870 Skeheen Skeheen 52.25417 -8.21639 L LCTY IE M 04 0 151 Europe/Dublin 2010-08-14 +3300871 Corracunna Corracunna 52.2775 -8.245 L LCTY IE M 04 0 125 Europe/Dublin 2010-08-14 +3300872 Knocknamuck Knocknamuck 52.275 -8.22556 L LCTY IE M 04 0 130 Europe/Dublin 2010-08-14 +3300873 Curraghavoe Curraghavoe 52.24917 -8.20083 L LCTY IE M 04 0 155 Europe/Dublin 2010-08-14 +3300874 Ballygiblin Ballygiblin 52.25972 -8.19444 L LCTY IE M 04 0 141 Europe/Dublin 2010-08-14 +3300875 Curragh More Curragh More 52.26806 -8.19083 L LCTY IE M 04 0 129 Europe/Dublin 2010-08-14 +3300876 Furrow Furrow 52.27944 -8.18806 L LCTY IE M 04 0 128 Europe/Dublin 2010-08-14 +3300877 Collyregan Collyregan 52.28722 -8.23917 P PPL IE M 04 0 121 Europe/Dublin 2010-08-14 +3300878 Kilglass Kilglass 52.29917 -8.28889 L LCTY IE M 16 0 124 Europe/Dublin 2010-08-14 +3300879 Geeragh Bridge Geeragh Bridge 52.30028 -8.255 P PPL IE M 16 0 160 Europe/Dublin 2010-08-14 +3300880 Castlequarter Castlequarter 52.2975 -8.24389 L LCTY IE M 16 0 116 Europe/Dublin 2010-08-14 +3300881 Glenacurrane Glenacurrane 52.30917 -8.28139 T GAP IE M 16 0 155 Europe/Dublin 2010-08-14 +3300882 Coolnamohoge Coolnamohoge 52.31361 -8.29278 L LCTY IE M 16 0 166 Europe/Dublin 2010-08-14 +3300883 Carrow Carrow 52.31222 -8.25889 L LCTY IE M 16 0 207 Europe/Dublin 2010-08-14 +3300884 Knockaceol Knockaceol 52.31944 -8.27639 T MT IE M 16 0 183 Europe/Dublin 2010-08-14 +3300885 Lackendarragh Lackendarragh 52.32528 -8.28972 L LCTY IE M 16 0 185 Europe/Dublin 2010-08-14 +3300886 Coolboy Coolboy 52.31361 -8.23528 L LCTY IE M 16 0 269 Europe/Dublin 2010-08-14 +3300887 Knocknascrow Knocknascrow 52.33111 -8.245 L LCTY IE M 16 0 409 Europe/Dublin 2010-08-14 +3300888 Benard Benard 52.33194 -8.26194 T MT IE M 16 0 315 Europe/Dublin 2010-08-14 +3300889 Scrowmore Scrowmore 52.30806 -8.20972 L LCTY IE M 16 0 143 Europe/Dublin 2010-08-14 +3300890 Behanagh River Behanagh River 52.29556 -8.20972 H STM IE M 16 0 124 Europe/Dublin 2010-08-14 +3300891 Brackbaun Bridge Brackbaun Bridge 52.30361 -8.1625 P PPL IE M 16 0 155 Europe/Dublin 2010-08-14 +3300892 Carrigeen Carrigeen 52.32028 -8.18583 L LCTY IE M 16 0 192 Europe/Dublin 2010-08-14 +3300893 Allychraun River Allychraun River 52.28611 -8.19611 H STM IE M 16 0 129 Europe/Dublin 2010-08-14 +3300894 Monabrack Monabrack 52.34056 -8.20417 L LCTY IE M 16 0 364 Europe/Dublin 2010-08-14 +3300895 Knockaterriff Knockaterriff 52.34694 -8.2225 T MT IE M 16 0 492 Europe/Dublin 2010-08-14 +3300896 Temple Hill Temple Hill 52.34917 -8.25111 T HLL IE M 16 0 428 Europe/Dublin 2010-08-14 +3300897 Paradise Hill Paradise Hill 52.34722 -8.275 T MT IE M 16 0 323 Europe/Dublin 2010-08-14 +3300898 Baurnagurrahy Baurnagurrahy 52.35278 -8.27667 P PPL IE M 16 0 269 Europe/Dublin 2010-08-14 +3300899 Boolanlisheen Boolanlisheen 52.36167 -8.27111 P PPL IE M 16 0 226 Europe/Dublin 2010-08-14 +3300900 Carrignabinnia Carrignabinnia 52.36611 -8.22 T GAP IE M 16 0 599 Europe/Dublin 2010-08-14 +3300901 Lyre Lyre 52.37056 -8.28944 L LCTY IE M 16 0 148 Europe/Dublin 2010-08-14 +3300902 Barna Barna 52.37583 -8.25667 L LCTY IE M 16 0 209 Europe/Dublin 2010-08-14 +3300903 Slievecushnabinnia Slievecushnabinnia 52.36583 -8.21444 T MT IE M 16 0 609 Europe/Dublin 2010-08-14 +3300904 Lyracappul Lyracappul 52.36028 -8.22611 T MT IE M 16 0 583 Europe/Dublin 2010-08-14 +3300905 Keeloges Keeloges 52.38194 -8.29139 L LCTY IE M 16 0 142 Europe/Dublin 2010-08-14 +3300906 Ballygeana Ballygeana 52.38111 -8.23861 L LCTY IE M 16 0 293 Europe/Dublin 2010-08-14 +3300907 Knockavadeen Knockavadeen 52.24611 -8.14611 L LCTY IE M 26 0 153 Europe/Dublin 2010-08-14 +3300908 Lyrefune Hill Lyrefune Hill 52.24806 -8.11528 T HLL IE M 26 0 183 Europe/Dublin 2010-08-14 +3300909 Curraleigh Curraleigh 52.26 -8.15083 P PPL IE M 26 0 145 Europe/Dublin 2010-08-14 +3300910 Glenacunna Glenacunna 52.2475 -8.10028 L LCTY IE M 26 0 198 Europe/Dublin 2010-08-14 +3300911 Knocknabrona Knocknabrona 52.24333 -8.08278 L LCTY IE M 26 0 255 Europe/Dublin 2010-08-14 +3300912 Kilnamona Kilnamona 52.27083 -8.13528 L LCTY IE M 26 0 112 Europe/Dublin 2010-08-14 +3300913 Dangan House Dangan House 52.27306 -8.10694 S HSEC IE M 26 0 101 Europe/Dublin 2010-08-14 +3300914 Kilcarroon Kilcarroon 52.27306 -8.0825 L LCTY IE M 26 0 87 Europe/Dublin 2010-08-14 +3300915 Killcatin Killcatin 52.26361 -8.06194 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3300916 Monaminane Monaminane 52.24833 -8.02972 L LCTY IE M 26 0 388 Europe/Dublin 2010-08-14 +3300917 Shanrahan Wood Shanrahan Wood 52.2575 -8.02472 V FRST IE M 26 0 302 Europe/Dublin 2010-08-14 +3300918 Flemingtown Flemingtown 52.27167 -8.02972 P PPL IE M 26 0 70 Europe/Dublin 2010-08-14 +3300919 Carrigmore Cross Roads Carrigmore Cross Roads 52.2825 -8.05111 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3300920 Shanrahan Shanrahan 52.27611 -8.03639 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3300921 Lisfunshion Lisfunshion 52.28056 -8.07694 L LCTY IE M 26 0 89 Europe/Dublin 2010-08-14 +3300922 Carriganroe Carriganroe 52.29194 -8.08306 L LCTY IE M 26 0 87 Europe/Dublin 2010-08-14 +3300923 Garrymore Bridge Garrymore Bridge 52.2925 -8.02167 P PPL IE M 26 0 68 Europe/Dublin 2010-08-14 +3300924 Glencallaghan Glencallaghan 52.29778 -8.05861 T VAL IE M 26 0 77 Europe/Dublin 2010-08-14 +3300925 Coolagarranoe Bridge Coolagarranoe Bridge 52.30639 -8.10222 P PPL IE M 26 0 118 Europe/Dublin 2010-08-14 +3300926 Gorteenacousha Wood Gorteenacousha Wood 52.29667 -8.10083 V FRST IE M 26 0 117 Europe/Dublin 2010-08-14 +3300927 Cooladerry Cooladerry 52.28194 -8.16056 L LCTY IE M 26 0 133 Europe/Dublin 2010-08-14 +3300928 Almaseed Bridge Almaseed Bridge 52.29389 -8.16639 P PPL IE M 26 0 153 Europe/Dublin 2010-08-14 +3300929 Skeheenaranky Skeheenaranky 52.30889 -8.15806 L LCTY IE M 26 0 158 Europe/Dublin 2010-08-14 +3300930 Coolagarranroe Wood Coolagarranroe Wood 52.32444 -8.1425 V FRST IE M 26 0 188 Europe/Dublin 2010-08-14 +3300931 Galty Castle Galty Castle 52.32361 -8.16667 S CSTL IE M 26 0 198 Europe/Dublin 2010-08-14 +3300932 Seefin Seefin 52.32944 -8.16056 T MT IE M 26 0 274 Europe/Dublin 2010-08-14 +3300933 Glengarra Bridge Glengarra Bridge 52.32111 -8.09917 P PPL IE M 26 0 126 Europe/Dublin 2010-08-14 +3300934 Burncourt River Burncourt River 52.31278 -8.03778 H STM IE M 26 0 73 Europe/Dublin 2010-08-14 +3300935 Rehill Wood Rehill Wood 52.31694 -8.05306 V FRST IE M 26 0 79 Europe/Dublin 2010-08-14 +3300936 Inchnamuck Inchnamuck 52.30917 -8.05111 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3300937 Kilbeg Kilbeg 52.30778 -8.02667 L LCTY IE M 26 0 72 Europe/Dublin 2010-08-14 +3300938 Kilroe House Kilroe House 52.315 -8.01667 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3300939 Kilroe House Kilroe House 52.30944 -8.00861 S HSEC IE M 26 0 77 Europe/Dublin 2010-08-14 +3300940 Monroe Monroe 52.325 -8.02333 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3300941 Glengarra Wood Glengarra Wood 52.33389 -8.10417 V FRST IE M 26 0 213 Europe/Dublin 2010-08-14 +3300942 Lough Curra Lough Curra 52.36861 -8.19472 H LK IE M 26 0 727 Europe/Dublin 2010-08-14 +3300943 Borheen Lough Borheen Lough 52.37222 -8.15222 H LK IE M 26 0 596 Europe/Dublin 2010-08-14 +3300944 Lough Muskry Lough Muskry 52.37278 -8.11917 H LK IE M 26 0 603 Europe/Dublin 2010-08-14 +3300945 Dawson’s Table Dawson's Table 52.36667 -8.20139 L LCTY IE M 16 0 618 Europe/Dublin 2010-08-14 +3300946 Galtybeg Galtybeg 52.36667 -8.16556 L LCTY IE M 26 0 594 Europe/Dublin 2010-08-14 +3300947 Knockeenatoung Knockeenatoung 52.34889 -8.15472 T MT IE M 26 0 447 Europe/Dublin 2010-08-14 +3300948 Loughnan’s Castle Loughnan's Castle 52.36778 -8.12306 S CSTL IE M 40 0 603 Europe/Dublin 2010-08-14 +3300949 Cooper’s Wood Cooper's Wood 52.33944 -8.17333 V FRST IE M 40 0 318 Europe/Dublin 2010-08-14 +3300950 Mountain Lodge Mountain Lodge 52.34111 -8.11611 S HSE IE M 26 0 212 Europe/Dublin 2010-08-14 +3300951 Drumleagh Drumleagh 52.3825 -8.19333 L LCTY IE M 26 0 398 Europe/Dublin 2010-08-14 +3300952 Head Well Head Well 52.38167 -8.115 H WLL IE M 26 0 545 Europe/Dublin 2010-08-14 +3300953 Lagghishanaquilla Lagghishanaquilla 52.38167 -8.08806 L LCTY IE M 26 0 522 Europe/Dublin 2010-08-14 +3300954 Scartnaglorane Scartnaglorane 52.35861 -8.03111 L LCTY IE M 26 0 218 Europe/Dublin 2010-08-14 +3300955 Bohernarnane Bohernarnane 52.34806 -8.04333 L LCTY IE M 26 0 165 Europe/Dublin 2010-08-14 +3300956 Kilcoran Lodge Kilcoran Lodge 52.34417 -8.02972 S HSEC IE M 26 0 123 Europe/Dublin 2010-08-14 +3300957 Poulavala Poulavala 52.33528 -8.04833 L LCTY IE M 26 0 120 Europe/Dublin 2010-08-14 +3300958 Monalean Lough Monalean Lough 52.33389 -8.035 H LK IE M 26 0 104 Europe/Dublin 2010-08-14 +3300959 Kilcoran Kilcoran 52.34167 -8.01 L LCTY IE M 26 0 96 Europe/Dublin 2010-08-14 +3300960 Curraghmore Bridge Curraghmore Bridge 52.33333 -8.00833 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3300961 Knockshanahullion Knockshanahullion 52.24611 -8 T MT IE M 26 0 543 Europe/Dublin 2010-08-14 +3300962 Bay Lough Bay Lough 52.25056 -7.96222 H LK IE M 26 0 286 Europe/Dublin 2010-08-14 +3300963 Sugarloaf Hill Sugarloaf Hill Sugarloaf Hill 52.24806 -7.94333 T MT IE M 26 0 516 Europe/Dublin 2010-11-05 +3300964 The Gap The Gap 52.23972 -7.94944 T GAP IE M 27 0 469 Europe/Dublin 2010-08-14 +3300965 Lough Moylan Lough Moylan 52.24167 -7.93222 H LK IE M 26 0 453 Europe/Dublin 2010-08-14 +3300966 Roches Hill Roches Hill 52.25306 -7.90278 T HLL IE M 26 0 250 Europe/Dublin 2010-08-14 +3300967 Kildanoge Kildanoge 52.26583 -7.90917 L LCTY IE M 26 0 178 Europe/Dublin 2010-08-14 +3300968 Bohernagore Wood Bohernagore Wood 52.2625 -7.95028 V FRST IE M 26 0 188 Europe/Dublin 2010-08-14 +3300969 Kilballyboy Wood Kilballyboy Wood 52.265 -7.97111 V FRST IE M 26 0 188 Europe/Dublin 2010-08-14 +3300970 Bohernagore Bohernagore 52.26944 -7.955 L LCTY IE M 26 0 93 Europe/Dublin 2010-08-14 +3300971 Graigue Graigue 52.27417 -7.93861 P PPL IE M 26 0 91 Europe/Dublin 2010-08-14 +3300972 Tullow Tullow 52.28083 -7.89972 L LCTY IE M 26 0 51 Europe/Dublin 2010-08-14 +3300973 Glengalla River Glengalla River 52.275 -7.89694 H STM IE M 26 0 98 Europe/Dublin 2010-08-14 +3300974 Parsons Green Parsons Green 52.28056 -7.98611 V MDW IE M 26 0 55 Europe/Dublin 2010-08-14 +3300975 Ballyboy Ballyboy 52.29 -7.99 L LCTY IE M 26 0 58 Europe/Dublin 2010-08-14 +3300976 Garrymore Cross Roads Garrymore Cross Roads 52.29694 -7.99583 P PPL IE M 26 0 66 Europe/Dublin 2010-08-14 +3300977 Knockballiniry Knockballiniry 52.27056 -7.88306 P PPL IE M 26 0 84 Europe/Dublin 2010-08-14 +3300978 Ballyknockane Ballyknockane 52.29139 -7.92361 L LCTY IE M 26 0 54 Europe/Dublin 2010-08-14 +3300979 Ballinhalla Ballinhalla 52.28583 -7.94167 L LCTY IE M 26 0 54 Europe/Dublin 2010-08-14 +3300980 Castlegrace Castlegrace 52.28972 -7.95056 L LCTY IE M 26 0 54 Europe/Dublin 2010-08-14 +3300981 Gormanstown Gormanstown 52.29417 -7.91222 L LCTY IE M 26 0 54 Europe/Dublin 2010-08-14 +3300982 Ballyrehy Ballyrehy 52.30139 -7.94333 L LCTY IE M 26 0 60 Europe/Dublin 2010-08-14 +3300983 Killaidamee Killaidamee 52.29611 -7.89583 L LCTY IE M 26 0 52 Europe/Dublin 2010-08-14 +3300984 Lacken House Lacken House 52.30306 -7.87333 S HSEC IE M 26 0 53 Europe/Dublin 2010-08-14 +3300985 Laght Cross Roads Laght Cross Roads 52.32111 -7.99194 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3300986 Burged Bridge Burged Bridge 52.31694 -7.96667 P PPL IE M 26 0 71 Europe/Dublin 2010-08-14 +3300987 Tubbrid Tubbrid 52.31306 -7.94417 L LCTY IE M 26 0 63 Europe/Dublin 2010-08-14 +3300988 Thonoge River Thonoge River 52.33472 -7.90278 H STM IE M 26 0 58 Europe/Dublin 2010-08-14 +3300989 Ballylaffin Ballylaffin 52.31417 -7.91861 L LCTY IE M 26 0 56 Europe/Dublin 2010-08-14 +3300990 Rochestown House Rochestown House 52.33111 -7.9 S HSEC IE M 26 0 57 Europe/Dublin 2010-08-14 +3300991 Ballybrada House Ballybrada House 52.33694 -7.90583 S HSEC IE M 26 0 58 Europe/Dublin 2010-08-14 +3300992 Peahill Peahill 52.33611 -7.98528 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3300993 Loughacutteen Loughacutteen 52.33833 -7.965 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3300999 Bengarragh Bengarragh 52.38139 -7.95806 L LCTY IE M 26 0 102 Europe/Dublin 2010-08-14 +3301000 Scaragh Wood Scaragh Wood 52.37556 -7.98778 V FRST IE M 26 0 269 Europe/Dublin 2010-08-14 +3301001 Lissava House Lissava House 52.37417 -7.94917 S HSEC IE M 26 0 78 Europe/Dublin 2010-08-14 +3301002 Raheen Raheen 52.37083 -7.96833 L LCTY IE M 26 0 116 Europe/Dublin 2010-08-14 +3301003 Whitechurch Whitechurch 52.35694 -7.98778 L LCTY IE M 26 0 94 Europe/Dublin 2010-08-14 +3301004 Tincurry House Tincurry House 52.35278 -7.98083 S HSEC IE M 26 0 85 Europe/Dublin 2010-08-14 +3301005 Kilcommon Kilcommon 52.35 -7.95417 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3301006 Duneske Duneske 52.37111 -7.92139 S EST IE M 26 0 60 Europe/Dublin 2010-08-14 +3301007 Ballymacadam Ballymacadam 52.3625 -7.91722 L LCTY IE M 26 0 59 Europe/Dublin 2010-08-14 +3301008 Caher Park Caher Park 52.35917 -7.92417 L PRK IE M 26 0 59 Europe/Dublin 2010-08-14 +3301009 Lady’s Abbey Lady's Abbey 52.3075 -7.88556 S MSTY IE M 40 0 51 Europe/Dublin 2010-08-14 +3301010 Ardfinan House Ardfinan House 52.32139 -7.88083 S HSEC IE M 26 0 61 Europe/Dublin 2010-08-14 +3301011 Goats Bridge Goats Bridge 52.27611 -7.87194 P PPL IE M 26 0 50 Europe/Dublin 2010-08-14 +3301012 Ballyveera Ballyveera 52.28917 -7.85278 P PPL IE M 26 0 49 Europe/Dublin 2010-08-14 +3301013 Rochestown Rochestown 52.33333 -7.88861 P PPL IE M 26 0 60 Europe/Dublin 2010-08-14 +3301014 Ballindoney Ballindoney 52.34694 -7.86583 L LCTY IE M 26 0 77 Europe/Dublin 2010-08-14 +3301015 Newtownadam Newtownadam 52.35944 -7.88333 L LCTY IE M 26 0 78 Europe/Dublin 2010-08-14 +3301016 Knockmorris Knockmorris 52.37778 -7.88806 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3301017 Crohan West Crohan West 52.24389 -7.85944 T MT IE M 26 0 439 Europe/Dublin 2010-08-14 +3301026 East Point East Point 51.94056 -7.83111 T PT IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301027 Monatray House Monatray House 51.94861 -7.83111 S HSEC IE M 27 0 1 Europe/Dublin 2010-08-14 +3301028 Cabin Point Cabin Point 51.94083 -7.79778 T PT IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301029 Newtown House Newtown House 51.95833 -7.82583 S HSEC IE M 27 0 1 Europe/Dublin 2010-08-14 +3301030 Moord Moord 51.96194 -7.8075 P PPL IE M 27 0 18 Europe/Dublin 2010-08-14 +3301031 Clashanahy Clashanahy 51.95694 -7.79222 L LCTY IE M 27 0 1 Europe/Dublin 2010-08-14 +3301032 Grange House Grange House 51.95194 -7.7725 S HSEC IE M 27 0 13 Europe/Dublin 2010-08-14 +3301033 Sluggera Cross Roads Sluggera Cross Roads 51.95528 -7.74722 P PPL IE M 27 0 6 Europe/Dublin 2010-08-14 +3301034 Black Rock Black Rock 51.9575 -7.70778 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301035 Ardmore Bay Ardmore Bay 51.9525 -7.71278 H BAY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301036 Ardmore Head Ardmore Head 51.94667 -7.71056 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301037 Ram Head Ram Head 51.94111 -7.71167 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301038 Cleary’s Cross Roads Cleary's Cross Roads 51.97417 -7.78111 P PPL IE M 27 0 56 Europe/Dublin 2010-08-14 +3301039 Ballynameranagh Ballynameranagh 51.97111 -7.74889 L LCTY IE M 27 0 41 Europe/Dublin 2010-08-14 +3301040 Bawnagarrane Bawnagarrane 51.9775 -7.75694 L LCTY IE M 27 0 68 Europe/Dublin 2010-08-14 +3301041 Ballybrusa Ballybrusa 51.98 -7.74944 L LCTY IE M 27 0 62 Europe/Dublin 2010-08-14 +3301042 Crushea Crushea 51.97139 -7.71389 L LCTY IE M 27 0 7 Europe/Dublin 2010-08-14 +3301043 Lackendarra House Lackendarra House 51.98972 -7.79833 S HSEC IE M 27 0 75 Europe/Dublin 2010-08-14 +3301044 Kilmaloo Kilmaloo 51.98944 -7.82194 L LCTY IE M 27 0 32 Europe/Dublin 2010-08-14 +3301045 Licky Bridge Licky Bridge 51.99806 -7.82056 P PPL IE M 27 0 36 Europe/Dublin 2010-08-14 +3301046 Tiknock Tiknock 51.98417 -7.84056 L LCTY IE M 27 0 23 Europe/Dublin 2010-08-14 +3301047 Dyleallagh House Dyleallagh House 51.98639 -7.85333 S HSEC IE M 27 0 62 Europe/Dublin 2010-08-14 +3301048 Clashganny House Clashganny House 51.99694 -7.79444 S HSEC IE M 27 0 70 Europe/Dublin 2010-08-14 +3301049 Drumgullane Drumgullane 51.995 -7.78028 L LCTY IE M 27 0 77 Europe/Dublin 2010-08-14 +3301050 Kilgabriel Kilgabriel 52.00694 -7.81278 L LCTY IE M 27 0 49 Europe/Dublin 2010-08-14 +3301051 Ballycurrane Cross Roads Ballycurrane Cross Roads 52.00806 -7.77417 P PPL IE M 27 0 75 Europe/Dublin 2010-08-14 +3301052 Ballycurrane Ballycurrane 52.01333 -7.78 P PPL IE M 27 0 134 Europe/Dublin 2010-08-14 +3301053 Ballynamultina House Ballynamultina House 52.01639 -7.80778 S HSEC IE M 27 0 75 Europe/Dublin 2010-08-14 +3301054 Grallagh Bridge Grallagh Bridge 52.00806 -7.75556 P PPL IE M 27 0 74 Europe/Dublin 2010-08-14 +3301055 Newtown Newtown 51.99778 -7.73806 L LCTY IE M 27 0 82 Europe/Dublin 2010-08-14 +3301056 Knockanearis Knockanearis 52.02889 -7.83139 L LCTY IE M 27 0 83 Europe/Dublin 2010-08-14 +3301057 Ballindrumma Ballindrumma 52.0325 -7.80417 L LCTY IE M 27 0 85 Europe/Dublin 2010-08-14 +3301058 Reanaboola Reanaboola 52.03667 -7.79 L LCTY IE M 27 0 131 Europe/Dublin 2010-08-14 +3301059 Lickybeg Lickybeg 52.02889 -7.755 L LCTY IE M 27 0 158 Europe/Dublin 2010-08-14 +3301060 Toor South Toor South 52.02194 -7.74389 L LCTY IE M 27 0 138 Europe/Dublin 2010-08-14 +3301061 Clashmore House Clashmore House 52.01278 -7.82306 S HSEC IE M 27 0 54 Europe/Dublin 2010-08-14 +3301062 Ballyeelinan Ballyeelinan 51.97944 -7.69111 L LCTY IE M 27 0 18 Europe/Dublin 2010-08-14 +3301063 Crobally Lower Crobally Lower 51.97917 -7.66333 L LCTY IE M 27 0 40 Europe/Dublin 2010-08-14 +3301064 Lisscrow Lisscrow 51.98528 -7.71583 L LCTY IE M 27 0 86 Europe/Dublin 2010-08-14 +3301065 Kilcolman Kilcolman 51.99111 -7.69111 L LCTY IE M 27 0 72 Europe/Dublin 2010-08-14 +3301066 Reanadogheen Reanadogheen 51.99694 -7.66694 L LCTY IE M 27 0 123 Europe/Dublin 2010-08-14 +3301067 Ballymacart Bridge Ballymacart Bridge 51.99139 -7.635 P PPL IE M 27 0 67 Europe/Dublin 2010-08-14 +3301068 Glenwilliam Glenwilliam 51.99889 -7.69861 L LCTY IE M 27 0 119 Europe/Dublin 2010-08-14 +3301069 Liskeety Liskeety 51.9975 -7.71861 L LCTY IE M 27 0 95 Europe/Dublin 2010-08-14 +3301070 Scrahans Scrahans 52.005 -7.68056 L LCTY IE M 27 0 152 Europe/Dublin 2010-08-14 +3301071 Ionaneea Lake Ionaneea Lake 52.01111 -7.685 H LK IE M 27 0 152 Europe/Dublin 2010-08-14 +3301072 Kielys Cross Roads Kielys Cross Roads 52.01083 -7.70361 P PPL IE M 27 0 127 Europe/Dublin 2010-08-14 +3301073 Glenlicky Glenlicky 52.01889 -7.72472 L LCTY IE M 27 0 134 Europe/Dublin 2010-08-14 +3301074 Monameean Monameean 52.01583 -7.69194 L LCTY IE M 27 0 143 Europe/Dublin 2010-08-14 +3301075 Ahaun Ahaun 52.01917 -7.67472 L LCTY IE M 27 0 162 Europe/Dublin 2010-08-14 +3301076 Reeragullee Reeragullee 52.025 -7.67722 L LCTY IE M 27 0 160 Europe/Dublin 2010-08-14 +3301077 Barranastook Barranastook 52.01722 -7.66056 L LCTY IE M 27 0 157 Europe/Dublin 2010-08-14 +3301078 Drumslig Drumslig 52.03167 -7.72194 P PPL IE M 27 0 158 Europe/Dublin 2010-08-14 +3301079 Carrigeen Carrigeen 52.03083 -7.69583 L LCTY IE M 27 0 112 Europe/Dublin 2010-08-14 +3301080 Carronadavderg Carronadavderg 52.03444 -7.74778 T HLL IE M 27 0 173 Europe/Dublin 2010-08-14 +3301081 Khakitown Khakitown 52.00861 -7.84722 L LCTY IE M 27 0 41 Europe/Dublin 2010-08-14 +3301082 Coolbagh Coolbagh 52.02917 -7.85361 L LCTY IE M 27 0 48 Europe/Dublin 2010-08-14 +3301083 Ballynaclash Ballynaclash 52.01778 -7.8525 P PPL IE M 27 0 47 Europe/Dublin 2010-08-14 +3301084 Monagally Monagally 52.04667 -7.79111 L LCTY IE M 27 0 120 Europe/Dublin 2010-08-14 +3301085 Mountstuart Mountstuart 52.05556 -7.77472 L LCTY IE M 27 0 144 Europe/Dublin 2010-08-14 +3301086 Toor Cross Roads Toor Cross Roads 52.04944 -7.75333 P PPL IE M 27 0 159 Europe/Dublin 2010-08-14 +3301087 Slievegrin Hill Slievegrin Hill 52.04639 -7.7225 T HLL IE M 27 0 179 Europe/Dublin 2010-08-14 +3301088 Monacullee Monacullee 52.05583 -7.715 P PPL IE M 27 0 170 Europe/Dublin 2010-08-14 +3301089 Knocknahoola Knocknahoola 52.04861 -7.70278 P PPL IE M 27 0 162 Europe/Dublin 2010-08-14 +3301090 Windgap Windgap 52.0575 -7.67639 L LCTY IE M 27 0 143 Europe/Dublin 2010-08-14 +3301091 Ballyharrahan Ballyharrahan 52.05694 -7.64694 L LCTY IE M 27 0 87 Europe/Dublin 2010-08-14 +3301092 Robert’s Cross Roads Robert's Cross Roads 52.05139 -7.60722 P PPL IE M 27 0 17 Europe/Dublin 2010-08-14 +3301093 Faha Faha 52.04111 -7.63583 P PPL IE M 27 0 162 Europe/Dublin 2010-08-14 +3301094 Gorteen Gorteen 52.04139 -7.65667 P PPL IE M 27 0 138 Europe/Dublin 2010-08-14 +3301095 Monamraher Monamraher 52.025 -7.65194 L LCTY IE M 27 0 154 Europe/Dublin 2010-08-14 +3301096 Lagnagoushee Lagnagoushee 52.03444 -7.62472 L LCTY IE M 27 0 156 Europe/Dublin 2010-08-14 +3301097 Moanbrack Moanbrack 52.03639 -7.60611 L LCTY IE M 27 0 98 Europe/Dublin 2010-08-14 +3301098 Keane’s Cross Roads Keane's Cross Roads 52.03 -7.61028 L LCTY IE M 27 0 145 Europe/Dublin 2010-08-14 +3301099 Ballycurreen South Ballycurreen South 52.01389 -7.595 P PPL IE M 27 0 37 Europe/Dublin 2010-08-14 +3301100 Mweelahorna Mweelahorna 52.05472 -7.60222 L LCTY IE M 27 0 17 Europe/Dublin 2010-08-14 +3301101 Calaiste Calaiste 52.05194 -7.59583 P PPL IE M 27 0 14 Europe/Dublin 2010-08-14 +3301102 Rathnameneenagh Rathnameneenagh 52.02889 -7.58583 P PPL IE M 27 0 6 Europe/Dublin 2010-08-14 +3301103 Carrickbrean Carrickbrean 52.02667 -7.57306 L LCTY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301104 Ballynaharda Ballynaharda 51.98694 -7.63083 L LCTY IE M 27 0 53 Europe/Dublin 2010-08-14 +3301105 Monagoush Monagoush 51.99278 -7.61111 L LCTY IE M 27 0 65 Europe/Dublin 2010-08-14 +3301106 Ballynamona Ballynamona 52.00222 -7.60417 L LCTY IE M 27 0 71 Europe/Dublin 2010-08-14 +3301107 Gates Gates 52.0075 -7.62333 P PPL IE M 27 0 113 Europe/Dublin 2010-08-14 +3301108 Ferry Point Ferry Point 51.95389 -7.83917 T PT IE M 27 0 1 Europe/Dublin 2010-08-14 +3301109 Dromore Dromore 52.0625 -7.85722 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3301110 Coolroe Coolroe 52.06167 -7.83889 L LCTY IE M 27 0 76 Europe/Dublin 2010-08-14 +3301111 Ballycullane House Ballycullane House 52.065 -7.81306 S HSEC IE M 27 0 75 Europe/Dublin 2010-08-14 +3301112 Ballynaparka House Ballynaparka House 52.07722 -7.8225 S HSEC IE M 27 0 77 Europe/Dublin 2010-08-14 +3301113 Woodhouse Cross Roads Woodhouse Cross Roads 52.07972 -7.79917 P PPL IE M 27 0 78 Europe/Dublin 2010-08-14 +3301114 Knocknamona Knocknamona 52.07306 -7.78389 T HLL IE M 27 0 90 Europe/Dublin 2010-08-14 +3301115 Knockaunabouchala Knockaunabouchala 52.06917 -7.75722 T HLL IE M 27 0 143 Europe/Dublin 2010-08-14 +3301116 Kilnafarna Hill Kilnafarna Hill 52.06444 -7.725 T HLL IE M 27 0 156 Europe/Dublin 2010-08-14 +3301117 Ballyguiry Ballyguiry 52.07083 -7.71222 L LCTY IE M 27 0 116 Europe/Dublin 2010-08-14 +3301118 Ballycullane Ballycullane 52.065 -7.69861 P PPL IE M 27 0 137 Europe/Dublin 2010-08-14 +3301119 Glenbeg House Glenbeg House 52.06833 -7.67917 S HSE IE M 27 0 63 Europe/Dublin 2010-08-14 +3301120 Lisfennel House Lisfennel House 52.07917 -7.65972 S HSE IE M 27 0 20 Europe/Dublin 2010-08-14 +3301121 Twomile Bridge Twomile Bridge 52.07278 -7.67222 P PPL IE M 27 0 49 Europe/Dublin 2010-08-14 +3301122 Kilmarry Kilmarry 52.0825 -7.67806 P PPL IE M 27 0 42 Europe/Dublin 2010-08-14 +3301123 Springmount Springmount 52.08667 -7.66861 L LCTY IE M 27 0 25 Europe/Dublin 2010-08-14 +3301124 Newtown Newtown 52.06833 -7.64333 P PPL IE M 27 0 10 Europe/Dublin 2010-08-14 +3301125 Killangford Bridge Killangford Bridge 52.06417 -7.64667 P PPL IE M 27 0 39 Europe/Dublin 2010-08-14 +3301126 Whitehouse Bank Whitehouse Bank 52.06417 -7.59667 H BNK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301127 Cunnigar Point Cunnigar Point 52.08389 -7.61056 T PT IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301128 Carrickapane Carrickapane 52.06833 -7.53528 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301129 Carricknamoan Carricknamoan 52.07806 -7.54056 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301130 Carricknagaddy Carricknagaddy 52.07972 -7.54667 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301131 Deadman Sand Deadman Sand 52.08083 -7.57583 H SHOL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301132 Johnstown House Johnstown House 52.08556 -7.76083 S HSEC IE M 27 0 76 Europe/Dublin 2010-08-14 +3301133 Dreludatogher Dreludatogher 52.0875 -7.75333 P PPL IE M 27 0 75 Europe/Dublin 2010-08-14 +3301134 Keereen Keereen 52.08889 -7.79611 L LCTY IE M 27 0 76 Europe/Dublin 2010-08-14 +3301135 Carriglea Convent Carriglea Convent 52.09056 -7.69472 S MSTY IE M 27 0 48 Europe/Dublin 2010-08-14 +3301136 Spit Bank Spit Bank 52.08722 -7.59556 H SHOL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301137 Lydiard House Lydiard House 52.09 -7.57278 S HSEC IE M 27 0 4 Europe/Dublin 2010-08-14 +3301138 Kilgrovan Kilgrovan 52.09 -7.5575 L LCTY IE M 27 0 1 Europe/Dublin 2010-08-14 +3301139 Carrigard Cross Roads Carrigard Cross Roads 52.09583 -7.7175 P PPL IE M 27 0 58 Europe/Dublin 2010-08-14 +3301140 Canty Canty 52.09778 -7.74 L LCTY IE M 27 0 61 Europe/Dublin 2010-08-14 +3301141 Ballyduff Ballyduff 52.09472 -7.67917 L LCTY IE M 27 0 33 Europe/Dublin 2010-08-14 +3301142 Whitechurch House Whitechurch House 52.11083 -7.77306 S HSEC IE M 27 0 57 Europe/Dublin 2010-08-14 +3301143 Ballynacourty Ballynacourty 52.10778 -7.73278 L LCTY IE M 27 0 61 Europe/Dublin 2010-08-14 +3301144 Ballymacmague Ballymacmague 52.10417 -7.69694 L LCTY IE M 27 0 49 Europe/Dublin 2010-08-14 +3301145 Clashnalochan Clashnalochan 52.10111 -7.61556 L LCTY IE M 27 0 13 Europe/Dublin 2010-08-14 +3301146 Kilminain Kilminain 52.10389 -7.59722 L LCTY IE M 27 0 2 Europe/Dublin 2010-08-14 +3301147 Garrynageragh Garrynageragh 52.10417 -7.57139 P PPL IE M 27 0 25 Europe/Dublin 2010-08-14 +3301148 Ballyneety Ballyneety 52.10806 -7.63861 L LCTY IE M 27 0 20 Europe/Dublin 2010-08-14 +3301149 Kilrush Kilrush 52.09417 -7.63778 L LCTY IE M 27 0 4 Europe/Dublin 2010-08-14 +3301150 Killadangan Killadangan 52.11111 -7.66111 P PPL IE M 27 0 45 Europe/Dublin 2010-08-14 +3301151 Ballycoe House Ballycoe House 52.11167 -7.61333 S HSEC IE M 27 0 39 Europe/Dublin 2010-08-14 +3301152 Old Pike Bridge Old Pike Bridge 52.11278 -7.59278 P PPL IE M 27 0 33 Europe/Dublin 2010-08-14 +3301153 Knockvoolahan Knockvoolahan 52.11083 -7.54222 L LCTY IE M 27 0 56 Europe/Dublin 2010-08-14 +3301154 Garranbaun Garranbaun 52.11583 -7.56667 L LCTY IE M 27 0 47 Europe/Dublin 2010-08-14 +3301155 Lacken Lodge Lacken Lodge 52.11833 -7.6025 S HSE IE M 27 0 78 Europe/Dublin 2010-08-14 +3301156 Deelish Deelish 52.12444 -7.5875 L LCTY IE M 27 0 82 Europe/Dublin 2010-08-14 +3301157 Monarud Monarud 52.12778 -7.59639 L LCTY IE M 27 0 142 Europe/Dublin 2010-08-14 +3301158 Carrigmoorna House Carrigmoorna House 52.14806 -7.55083 S HSEC IE M 27 0 118 Europe/Dublin 2010-08-14 +3301159 Ballynevoga Ballynevoga 52.13972 -7.54056 L LCTY IE M 27 0 80 Europe/Dublin 2010-08-14 +3301160 Durrow House Durrow House 52.14111 -7.50722 S HSEC IE M 27 0 78 Europe/Dublin 2010-08-14 +3301161 Kilminnin Kilminnin 52.13861 -7.50417 L LCTY IE M 27 0 78 Europe/Dublin 2010-08-14 +3301162 Shanbally Shanbally 52.13056 -7.54444 L LCTY IE M 27 0 86 Europe/Dublin 2010-08-14 +3301163 Ballykeroge Ballykeroge 52.12694 -7.53639 L LCTY IE M 27 0 83 Europe/Dublin 2010-08-14 +3301164 The Pike The Pike 52.12639 -7.56111 P PPLL IE M 27 0 103 Europe/Dublin 2010-08-14 +3301165 Ballyvoyle Cross Roads Ballyvoyle Cross Roads 52.11694 -7.50472 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301166 Island Island 52.11333 -7.48694 P PPL IE M 27 0 13 Europe/Dublin 2010-08-14 +3301167 Carrickahilla Cross Roads Carrickahilla Cross Roads 52.14417 -7.47361 P PPL IE M 27 0 71 Europe/Dublin 2010-08-14 +3301168 Williamstown Cross Roads Williamstown Cross Roads 52.15167 -7.45056 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301169 Stradbally Bridge Stradbally Bridge 52.12667 -7.46028 P PPL IE M 27 0 17 Europe/Dublin 2010-08-14 +3301170 Ladys Cove Ladys Cove 52.12944 -7.42611 H COVE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301171 Ballydowane Bay Ballydowane Bay 52.12944 -7.41139 H BAY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301172 Killelton Killelton 52.13611 -7.43917 L LCTY IE M 27 0 29 Europe/Dublin 2010-08-14 +3301173 Ballygarran Ballygarran 52.14389 -7.43444 L LCTY IE M 27 0 56 Europe/Dublin 2010-08-14 +3301174 Ballydowane Ballydowane 52.13583 -7.40806 L LCTY IE M 27 0 23 Europe/Dublin 2010-08-14 +3301175 Lisnageragh Lisnageragh 52.1475 -7.40111 L LCTY IE M 27 0 45 Europe/Dublin 2010-08-14 +3301176 Slippery Island Slippery Island 52.12917 -7.38222 T ISL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301177 Bunmahon Bay Bunmahon Bay 52.13583 -7.36639 H BAY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301178 Drumroe Rock Drumroe Rock 52.13778 -7.3525 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301179 Kilmurrin Cove Kilmurrin Cove 52.13639 -7.32583 H COVE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301180 Boat Strand Boat Strand 52.13833 -7.31333 T BCH IE M 27 0 1 Europe/Dublin 2010-08-14 +3301181 Bohernamuck Cross Roads Bohernamuck Cross Roads 52.14722 -7.34278 P PPL IE M 27 0 17 Europe/Dublin 2010-08-14 +3301182 Kilmarrin Kilmarrin 52.14417 -7.34 L LCTY IE M 27 0 17 Europe/Dublin 2010-08-14 +3301183 Kilduane Kilduane 52.15028 -7.36083 L LCTY IE M 27 0 33 Europe/Dublin 2010-08-14 +3301184 Carrickbarrahane House Carrickbarrahane House 52.15111 -7.47306 S HSEC IE M 27 0 76 Europe/Dublin 2010-08-14 +3301185 Knockaunagloon Knockaunagloon 52.14361 -7.64333 L LCTY IE M 27 0 146 Europe/Dublin 2010-08-14 +3301188 Kilnafrehan Kilnafrehan 52.13389 -7.63944 L LCTY IE M 27 0 153 Europe/Dublin 2010-08-14 +3301189 Kilgobnet Kilgobnet 52.12111 -7.64222 L LCTY IE M 27 0 81 Europe/Dublin 2010-08-14 +3301190 Ballyknock Ballyknock 52.12611 -7.65222 L LCTY IE M 27 0 111 Europe/Dublin 2010-08-14 +3301191 Coolnasmear Coolnasmear 52.14306 -7.67 L LCTY IE M 27 0 109 Europe/Dublin 2010-08-14 +3301192 Currabaha Currabaha 52.13556 -7.67528 L LCTY IE M 27 0 96 Europe/Dublin 2010-08-14 +3301193 Colligan Bridge Colligan Bridge 52.13306 -7.67778 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301194 Inchindrisla Inchindrisla 52.11889 -7.67111 L LCTY IE M 27 0 67 Europe/Dublin 2010-08-14 +3301195 Inchindrisla Wood Inchindrisla Wood 52.12444 -7.67472 V FRST IE M 27 0 67 Europe/Dublin 2010-08-14 +3301196 Colligan Wood Colligan Wood 52.12389 -7.6975 V FRST IE M 27 0 66 Europe/Dublin 2010-08-14 +3301197 Garryclone Garryclone 52.14611 -7.69417 L LCTY IE M 27 0 116 Europe/Dublin 2010-08-14 +3301198 Glenavaddra Glenavaddra 52.12806 -7.72889 L LCTY IE M 27 0 76 Europe/Dublin 2010-08-14 +3301199 Carrowgarriff Carrowgarriff 52.14083 -7.71417 P PPL IE M 27 0 99 Europe/Dublin 2010-08-14 +3301200 Ballylemon Lodge Ballylemon Lodge 52.11944 -7.71028 S HSE IE M 27 0 76 Europe/Dublin 2010-08-14 +3301201 Budveannery Budveannery 52.12917 -7.68611 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3301202 Knockroe Knockroe 52.15194 -7.69056 L LCTY IE M 27 0 122 Europe/Dublin 2010-08-14 +3301203 Soldiers Cross Roads Soldiers Cross Roads 52.15056 -7.72083 P PPL IE M 27 0 124 Europe/Dublin 2010-08-14 +3301204 Graigue More Graigue More 52.15167 -7.77583 P PPL IE M 27 0 101 Europe/Dublin 2010-08-14 +3301205 Poulbautia Poulbautia 52.14972 -7.79306 P PPL IE M 27 0 83 Europe/Dublin 2010-08-14 +3301206 Cappagh Cappagh 52.12333 -7.76 L LCTY IE M 27 0 59 Europe/Dublin 2010-08-14 +3301207 Clashnugoneen Clashnugoneen 52.13194 -7.79944 L LCTY IE M 27 0 52 Europe/Dublin 2010-08-14 +3301208 Boheravaghera Cross Roads Boheravaghera Cross Roads 52.13611 -7.82472 P PPL IE M 27 0 55 Europe/Dublin 2010-08-14 +3301209 Coolanheen Coolanheen 52.12861 -7.82 L LCTY IE M 27 0 41 Europe/Dublin 2010-08-14 +3301210 Knockalahara Knockalahara 52.11556 -7.81444 L LCTY IE M 27 0 40 Europe/Dublin 2010-08-14 +3301211 Clashnadarriv Clashnadarriv 52.10833 -7.80944 P PPL IE M 27 0 40 Europe/Dublin 2010-08-14 +3301212 Knocknaskagh Cross Roads Knocknaskagh Cross Roads 52.10194 -7.78361 P PPL IE M 27 0 60 Europe/Dublin 2010-08-14 +3301213 Woodstock House Woodstock House 52.09778 -7.80639 S HSEC IE M 27 0 59 Europe/Dublin 2010-08-14 +3301214 Ballinggowan Ballinggowan 52.09361 -7.83556 L LCTY IE M 27 0 76 Europe/Dublin 2010-08-14 +3301215 Rockfield House Rockfield House 52.11806 -7.77056 S HSEC IE M 27 0 56 Europe/Dublin 2010-08-14 +3301216 Richmons House Richmons House 52.13833 -7.84583 S HSEC IE M 27 0 47 Europe/Dublin 2010-08-14 +3301217 Mount Rivers Mount Rivers 52.12778 -7.84694 P PPL IE M 27 0 28 Europe/Dublin 2010-08-14 +3301218 Monyvroe Monyvroe 52.11389 -7.84167 L LCTY IE M 27 0 48 Europe/Dublin 2010-08-14 +3301219 Tourin Castle Tourin Castle 52.12 -7.86472 S CSTL IE M 27 0 21 Europe/Dublin 2010-08-14 +3301220 Glenshebane River Glenshebane River 52.16139 -7.8325 H STM IE M 27 0 121 Europe/Dublin 2010-08-14 +3301221 Glennafallid River Glennafallid River 52.14694 -7.85194 H STM IE M 27 0 58 Europe/Dublin 2010-08-14 +3301222 Glenshebane Glenshebane 52.16389 -7.83167 L LCTY IE M 27 0 121 Europe/Dublin 2010-08-14 +3301223 Crow Hill Crow Hill 52.18833 -7.83167 T MT IE M 27 0 219 Europe/Dublin 2010-08-14 +3301224 Coolagarthov Coolagarthov 52.18611 -7.80667 L LCTY IE M 27 0 266 Europe/Dublin 2010-08-14 +3301225 Ardagunna Ardagunna 52.17861 -7.80056 L LCTY IE M 27 0 222 Europe/Dublin 2010-08-14 +3301226 Redgate Cross Roads Redgate Cross Roads 52.16278 -7.77611 P PPL IE M 27 0 128 Europe/Dublin 2010-08-14 +3301227 Graigue Beg Graigue Beg 52.15806 -7.77222 P PPL IE M 27 0 90 Europe/Dublin 2010-08-14 +3301228 Millstreet Millstreet 52.16361 -7.75 P PPL IE M 27 0 93 Europe/Dublin 2010-08-14 +3301229 Sleady Lodge Sleady Lodge 52.16806 -7.725 S HSE IE M 27 0 146 Europe/Dublin 2010-08-14 +3301230 Farnane Farnane 52.17056 -7.76111 L LCTY IE M 27 0 114 Europe/Dublin 2010-08-14 +3301231 Woodhouse Woodhouse 52.17917 -7.73778 P PPL IE M 27 0 123 Europe/Dublin 2010-08-14 +3301232 Droidhedeens Droidhedeens 52.17667 -7.755 L LCTY IE M 27 0 125 Europe/Dublin 2010-08-14 +3301233 Lickoran Lickoran 52.18472 -7.75889 L LCTY IE M 27 0 163 Europe/Dublin 2010-08-14 +3301234 Ballynaguillee Ballynaguillee 52.19472 -7.76389 L LCTY IE M 27 0 166 Europe/Dublin 2010-08-14 +3301235 Knocknanask Knocknanask 52.21444 -7.8375 L LCTY IE M 27 0 369 Europe/Dublin 2010-08-14 +3301236 Tooranarahean Tooranarahean 52.20639 -7.83722 L LCTY IE M 27 0 311 Europe/Dublin 2010-08-14 +3301237 Dyrick Dyrick 52.1975 -7.77278 L LCTY IE M 27 0 185 Europe/Dublin 2010-08-14 +3301238 Bleantasour Bleantasour 52.20833 -7.65667 L LCTY IE M 27 0 219 Europe/Dublin 2010-08-14 +3301239 Scart Upper Scart Upper 52.20056 -7.655 L LCTY IE M 27 0 219 Europe/Dublin 2010-08-14 +3301240 Scart Bridge Scart Bridge 52.19556 -7.66556 P PPL IE M 27 0 171 Europe/Dublin 2010-08-14 +3301241 Lackandarra Upper Lackandarra Upper 52.18194 -7.69333 L LCTY IE M 27 0 154 Europe/Dublin 2010-08-14 +3301242 Lackandarra Lackandarra 52.17278 -7.69583 L LCTY IE M 27 0 152 Europe/Dublin 2010-08-14 +3301243 Curraghnamaddree Curraghnamaddree 52.15889 -7.69917 L LCTY IE M 27 0 151 Europe/Dublin 2010-08-14 +3301244 Cool Cool 52.16278 -7.67333 L LCTY IE M 27 0 122 Europe/Dublin 2010-08-14 +3301245 Ballynakill Ballynakill 52.17806 -7.6625 L LCTY IE M 27 0 149 Europe/Dublin 2010-08-14 +3301246 Knockboy Knockboy 52.1975 -7.67861 P PPL IE M 27 0 166 Europe/Dublin 2010-08-14 +3301247 Lackandarra Lodge Lackandarra Lodge 52.18889 -7.67333 S HSE IE M 27 0 148 Europe/Dublin 2010-08-14 +3301248 Bohadoon North Bohadoon North 52.16972 -7.65972 S EST IE M 27 0 137 Europe/Dublin 2010-08-14 +3301249 Knockmeal Knockmeal 52.2275 -7.85083 T MT IE 00 0 455 Europe/Dublin 1997-12-15 +3301250 Knocknasculloge Knocknasculloge 52.22278 -7.81306 T MT IE M 26 0 310 Europe/Dublin 2010-08-14 +3301251 Knockardbounce Knockardbounce 52.22972 -7.82694 L LCTY IE M 26 0 317 Europe/Dublin 2010-08-14 +3301252 Middlequarter Middlequarter 52.24194 -7.81694 P PPL IE M 26 0 212 Europe/Dublin 2010-08-14 +3301253 Knockatullane Knockatullane 52.23306 -7.80139 L LCTY IE M 26 0 218 Europe/Dublin 2010-08-14 +3301254 Priest Town Priest Town 52.22111 -7.77194 L LCTY IE M 26 0 161 Europe/Dublin 2010-08-14 +3301255 Aughaunlomaun Aughaunlomaun 52.2375 -7.7775 L LCTY IE M 26 0 146 Europe/Dublin 2010-08-14 +3301256 Knockmeal Knockmeal 52.22472 -7.73889 L LCTY IE M 27 0 152 Europe/Dublin 2010-08-14 +3301257 Coolnabeasoon Coolnabeasoon 52.24028 -7.74167 L LCTY IE M 27 0 159 Europe/Dublin 2010-08-14 +3301258 Boolavonteen Boolavonteen 52.21889 -7.72167 L LCTY IE M 27 0 159 Europe/Dublin 2010-08-14 +3301259 Knockgow Knockgow 52.24028 -7.7025 T HLL IE M 27 0 189 Europe/Dublin 2010-08-14 +3301260 Reanadampaun Commons Reanadampaun Commons 52.23361 -7.69306 L LCTY IE M 27 0 205 Europe/Dublin 2010-08-14 +3301261 Araglin River Araglin River 52.17361 -7.66167 H STM IE M 27 0 137 Europe/Dublin 2010-08-14 +3301262 Bohadoon South Bohadoon South 52.155 -7.66306 S EST IE M 27 0 122 Europe/Dublin 2010-08-14 +3301263 Carrickataggle Carrickataggle 52.165 -7.62389 L LCTY IE M 27 0 284 Europe/Dublin 2010-08-14 +3301264 Glendalligan Wood Glendalligan Wood 52.16056 -7.58389 V FRST IE M 27 0 334 Europe/Dublin 2010-08-14 +3301265 Carricknannnoge Carricknannnoge 52.155 -7.60722 L LCTY IE M 27 0 325 Europe/Dublin 2010-08-14 +3301266 Knockacomortish Knockacomortish 52.15278 -7.62028 L LCTY IE M 27 0 256 Europe/Dublin 2010-08-14 +3301267 Dalligan Bridge Dalligan Bridge 52.17056 -7.58806 P PPL IE M 27 0 381 Europe/Dublin 2010-08-14 +3301268 Boolattin Boolattin 52.17528 -7.57861 L LCTY IE M 27 0 361 Europe/Dublin 2010-08-14 +3301269 Ballintied Ballintied 52.16361 -7.57639 L LCTY IE M 27 0 302 Europe/Dublin 2010-08-14 +3301270 Barnanmaddra Gap Barnanmaddra Gap 52.19778 -7.59528 T GAP IE M 27 0 594 Europe/Dublin 2010-08-14 +3301271 Coumaraglinmountain Coumaraglinmountain 52.18472 -7.61861 L LCTY IE M 27 0 283 Europe/Dublin 2010-08-14 +3301272 Lough Coumfea Lough Coumfea 52.24056 -7.59361 H LK IE M 27 0 551 Europe/Dublin 2010-08-14 +3301273 Coumfea Coumfea 52.23528 -7.58833 T MT IE M 27 0 592 Europe/Dublin 2010-08-14 +3301274 Coumtay Coumtay 52.22833 -7.58222 T RDGE IE M 27 0 573 Europe/Dublin 2010-08-14 +3301275 Coumalocha Coumalocha 52.23778 -7.57806 L LCTY IE M 27 0 610 Europe/Dublin 2010-08-14 +3301276 Comeraghmountain Comeraghmountain 52.22333 -7.57861 L LCTY IE M 27 0 430 Europe/Dublin 2010-08-14 +3301277 Cutteen House Cutteen House 52.19806 -7.565 S HSEC IE M 27 0 223 Europe/Dublin 2010-08-14 +3301278 Ballykilmurry Bridge Ballykilmurry Bridge 52.19667 -7.54944 P PPL IE M 27 0 167 Europe/Dublin 2010-08-14 +3301279 Knockaunapeebra Knockaunapeebra 52.23833 -7.54333 T MT IE M 27 0 637 Europe/Dublin 2010-08-14 +3301280 Kilclooney Kilclooney 52.23694 -7.52083 L LCTY IE M 27 0 573 Europe/Dublin 2010-08-14 +3301281 Foilanprisoon Foilanprisoon 52.235 -7.54722 L LCTY IE M 27 0 637 Europe/Dublin 2010-08-14 +3301282 Graiguearush Graiguearush 52.22167 -7.52528 L LCTY IE M 27 0 320 Europe/Dublin 2010-08-14 +3301283 Davmore Davmore 52.2175 -7.53833 L LCTY IE M 27 0 322 Europe/Dublin 2010-08-14 +3301284 Knockanacullin Knockanacullin 52.20472 -7.54056 P PPL IE M 27 0 211 Europe/Dublin 2010-08-14 +3301285 Briska Briska 52.19111 -7.53417 L LCTY IE M 27 0 126 Europe/Dublin 2010-08-14 +3301286 Kilrossanty Kilrossanty 52.17778 -7.54278 L LCTY IE M 27 0 137 Europe/Dublin 2010-08-14 +3301287 Mount Kennedy Mount Kennedy 52.1625 -7.55444 P PPL IE M 27 0 163 Europe/Dublin 2010-08-14 +3301288 Downey’s Cross Roads Downey's Cross Roads 52.15556 -7.53417 P PPL IE M 27 0 77 Europe/Dublin 2010-08-14 +3301289 Fox’s Castle Bridge Fox's Castle Bridge 52.15528 -7.50389 P PPL IE M 27 0 74 Europe/Dublin 2010-08-14 +3301290 Lemybrien Lemybrien Lemybrien 52.16806 -7.52222 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301291 Ballylinch Ballylinch 52.17306 -7.50611 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3301292 Gortnalaght Gortnalaght 52.18111 -7.51722 L LCTY IE M 27 0 80 Europe/Dublin 2010-08-14 +3301293 Garranmillion Garranmillion 52.18833 -7.50611 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3301294 Comeragh House Comeragh House 52.19528 -7.51222 S HSEC IE M 27 0 82 Europe/Dublin 2010-08-14 +3301295 Mahon Bridge Mahon Bridge Mahon Bridge 52.20472 -7.49972 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301296 McGrath’s Cross Roads McGrath's Cross Roads 52.18917 -7.46917 P PPL IE M 27 0 77 Europe/Dublin 2010-08-14 +3301297 Lyre Lyre 52.19944 -7.48861 L LCTY IE M 27 0 76 Europe/Dublin 2010-08-14 +3301298 Drumlohan Cross Roads Drumlohan Cross Roads 52.15611 -7.46556 P PPL IE M 27 0 79 Europe/Dublin 2010-08-14 +3301299 Boheraval Cross Roads Boheraval Cross Roads 52.16 -7.47528 P PPL IE M 27 0 77 Europe/Dublin 2010-08-14 +3301300 Brenan Cross Roads Brenan Cross Roads 52.15528 -7.42028 P PPL IE M 27 0 83 Europe/Dublin 2010-08-14 +3301301 Glen Glen 52.17167 -7.46472 L LCTY IE M 27 0 78 Europe/Dublin 2010-08-14 +3301302 Seafield House Seafield House 52.15333 -7.39556 S HSEC IE M 27 0 33 Europe/Dublin 2010-08-14 +3301303 Garranturton Garranturton 52.17222 -7.43861 L LCTY IE M 27 0 77 Europe/Dublin 2010-08-14 +3301304 Grouse Lodge Grouse Lodge 52.1775 -7.43861 S HSEC IE M 27 0 76 Europe/Dublin 2010-08-14 +3301305 Ballynabanoge South Ballynabanoge South 52.18 -7.43833 L LCTY IE M 27 0 76 Europe/Dublin 2010-08-14 +3301306 Faha Faha 52.18222 -7.46417 L LCTY IE M 27 0 77 Europe/Dublin 2010-08-14 +3301307 Fahafeelagh Fahafeelagh 52.18333 -7.45111 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301308 Ballyogarty Ballyogarty 52.19139 -7.43139 L LCTY IE M 27 0 58 Europe/Dublin 2010-08-14 +3301309 Stonebrook Lodge Stonebrook Lodge 52.19306 -7.45278 S HSE IE M 27 0 75 Europe/Dublin 2010-08-14 +3301310 Ballyboy Ballyboy 52.20639 -7.46972 L LCTY IE M 27 0 69 Europe/Dublin 2010-08-14 +3301311 Ashtown Ashtown 52.23194 -7.48889 L LCTY IE M 27 0 138 Europe/Dublin 2010-08-14 +3301312 Kealfoun Kealfoun 52.21861 -7.48472 L LCTY IE M 27 0 112 Europe/Dublin 2010-08-14 +3301313 Rathmaiden Rathmaiden 52.23333 -7.43806 L LCTY IE M 27 0 116 Europe/Dublin 2010-08-14 +3301314 Kilnagrange Bridge Kilnagrange Bridge 52.21 -7.42361 P PPL IE M 27 0 73 Europe/Dublin 2010-08-14 +3301315 Fallagh Fallagh 52.24056 -7.41556 L LCTY IE M 27 0 140 Europe/Dublin 2010-08-14 +3301316 Carrigeen Carrigeen 52.23306 -7.40944 L LCTY IE M 27 0 120 Europe/Dublin 2010-08-14 +3301317 Scrahan Scrahan 52.20806 -7.40278 L LCTY IE M 27 0 74 Europe/Dublin 2010-08-14 +3301318 Shanakill House Shanakill House 52.18472 -7.38917 S HSEC IE M 27 0 74 Europe/Dublin 2010-08-14 +3301319 Mountpatrick Mountpatrick 52.18028 -7.39083 L LCTY IE M 27 0 60 Europe/Dublin 2010-08-14 +3301320 Kilmoylin Kilmoylin 52.19639 -7.3975 L LCTY IE M 27 0 73 Europe/Dublin 2010-08-14 +3301321 Whitestown House Whitestown House 52.19861 -7.37417 S HSEC IE M 27 0 92 Europe/Dublin 2010-08-14 +3301322 Georgestown Georgestown 52.19139 -7.38361 L LCTY IE M 27 0 74 Europe/Dublin 2010-08-14 +3301323 Aughshemus Bridge Aughshemus Bridge 52.17444 -7.39306 P PPL IE M 27 0 27 Europe/Dublin 2010-08-14 +3301324 Ballyvadden Ballyvadden 52.17028 -7.39111 L LCTY IE M 27 0 41 Europe/Dublin 2010-08-14 +3301325 Ballyristeen Ballyristeen 52.16278 -7.37639 L LCTY IE M 27 0 38 Europe/Dublin 2010-08-14 +3301326 Slievenamona Slievenamona 52.20333 -7.36917 L LCTY IE M 27 0 111 Europe/Dublin 2010-08-14 +3301327 Buck’s Cross Roads Buck's Cross Roads 52.19833 -7.32889 P PPL IE M 27 0 111 Europe/Dublin 2010-08-14 +3301328 Ballybrack Ballybrack 52.21417 -7.37889 L LCTY IE M 27 0 116 Europe/Dublin 2010-08-14 +3301329 Greenan Hill Greenan Hill 52.22194 -7.34111 T HLL IE M 27 0 154 Europe/Dublin 2010-08-14 +3301330 Ballygarran Ballygarran 52.21667 -7.32361 L LCTY IE M 27 0 121 Europe/Dublin 2010-08-14 +3301331 Ballingarry House Ballingarry House 52.1625 -7.3475 S HSEC IE M 27 0 54 Europe/Dublin 2010-08-14 +3301332 Monacaum Cross Roads Monacaum Cross Roads 52.17056 -7.33361 P PPL IE M 27 0 64 Europe/Dublin 2010-08-14 +3301333 Kilbeg Kilbeg 52.16389 -7.32417 P PPL IE M 27 0 57 Europe/Dublin 2010-08-14 +3301334 Ballin Lough Ballin Lough 52.18167 -7.34583 H LK IE M 27 0 77 Europe/Dublin 2010-08-14 +3301335 Rathguage Rathguage 52.15361 -7.32583 P PPL IE M 27 0 36 Europe/Dublin 2010-08-14 +3301336 Knockane Knockane 52.155 -7.32917 L LCTY IE M 27 0 36 Europe/Dublin 2010-08-14 +3301337 Knocknagat Cross Roads Knocknagat Cross Roads 52.16444 -7.30667 P PPL IE M 27 0 75 Europe/Dublin 2010-08-14 +3301338 Ballyleen Ballyleen 52.17917 -7.3125 P PPL IE M 27 0 82 Europe/Dublin 2010-08-14 +3301339 Savagetown Cross Roads Savagetown Cross Roads 52.18222 -7.30083 P PPL IE M 27 0 87 Europe/Dublin 2010-08-14 +3301340 Ballyrobin Ballyrobin 52.18861 -7.30444 L LCTY IE M 27 0 89 Europe/Dublin 2010-08-14 +3301341 Knockaderry Reservoir Knockaderry Reservoir 52.20528 -7.27694 H RSV IE M 27 0 76 Europe/Dublin 2010-08-14 +3301342 Carrickphilip Carrickphilip 52.20083 -7.3 P PPL IE M 27 0 86 Europe/Dublin 2010-08-14 +3301343 Knockaderry House Knockaderry House 52.215 -7.29583 S HSEC IE M 27 0 83 Europe/Dublin 2010-08-14 +3301344 Carroll’s Cross Roads Carroll's Cross Roads 52.22667 -7.34278 P PPL IE M 27 0 165 Europe/Dublin 2010-08-14 +3301345 Ross Ross 52.22944 -7.33306 L LCTY IE M 27 0 143 Europe/Dublin 2010-08-14 +3301346 Kildermody Kildermody 52.2375 -7.32194 L LCTY IE M 27 0 131 Europe/Dublin 2010-08-14 +3301347 Ballysheadon Ballysheadon 52.15167 -7.29889 L LCTY IE M 27 0 51 Europe/Dublin 2010-08-14 +3301348 Dawn River Dawn River 52.2275 -7.3325 H STM IE M 27 0 143 Europe/Dublin 2010-08-14 +3301349 Boolahallagh River Boolahallagh River 52.21611 -7.74694 H STM IE 00 0 141 Europe/Dublin 1997-12-15 +3301350 Knocknagearagh Knocknagearagh 52.25083 -7.815 T HLL IE M 26 0 146 Europe/Dublin 2010-08-14 +3301351 Barranacullia Barranacullia 52.25306 -7.81194 L LCTY IE M 26 0 146 Europe/Dublin 2010-08-14 +3301352 Clashganny Clashganny 52.25694 -7.80694 P PPL IE M 26 0 142 Europe/Dublin 2010-08-14 +3301353 Bohernagaul Bohernagaul 52.26139 -7.82194 L LCTY IE M 26 0 102 Europe/Dublin 2010-08-14 +3301354 Knockperry South Knockperry South 52.25083 -7.77694 T HLL IE M 26 0 100 Europe/Dublin 2010-08-14 +3301355 Curragheloney Curragheloney 52.24694 -7.78194 L LCTY IE M 26 0 123 Europe/Dublin 2010-08-14 +3301356 Skeaghatooreen Skeaghatooreen 52.26083 -7.85167 L LCTY IE M 26 0 148 Europe/Dublin 2010-08-14 +3301357 Knockroe Knockroe 52.25083 -7.83528 T MT IE M 26 0 174 Europe/Dublin 2010-08-14 +3301358 Newcastle House Newcastle House 52.27389 -7.805 S HSEC IE M 26 0 69 Europe/Dublin 2010-08-14 +3301359 Bannard House Bannard House 52.26972 -7.785 S HSEC IE M 26 0 56 Europe/Dublin 2010-08-14 +3301360 Tar Bridge Tar Bridge 52.27778 -7.83417 P PPL IE M 26 0 49 Europe/Dublin 2010-08-14 +3301361 Kilmaneen Kilmaneen 52.285 -7.84528 P PPL IE M 26 0 49 Europe/Dublin 2010-08-14 +3301362 Clocully Clocully 52.29167 -7.84833 P PPL IE M 26 0 58 Europe/Dublin 2010-08-14 +3301363 Ballymakee Cross Roads Ballymakee Cross Roads 52.28278 -7.77056 P PPL IE M 27 0 65 Europe/Dublin 2010-08-14 +3301364 Garrancasey Garrancasey 52.28694 -7.80222 L LCTY IE M 26 0 47 Europe/Dublin 2010-08-14 +3301372 Hacketstown Hacketstown 52.24389 -7.33111 P PPL IE M 27 0 156 Europe/Dublin 2010-08-14 +3301373 Ballyvadd Ballyvadd 52.24194 -7.35528 L LCTY IE M 27 0 168 Europe/Dublin 2010-08-14 +3301374 Kilmovee Kilmovee 52.25417 -7.36528 L LCTY IE M 27 0 152 Europe/Dublin 2010-08-14 +3301375 Guilcagh Cross Roads Guilcagh Cross Roads 52.25444 -7.33472 P PPL IE M 27 0 161 Europe/Dublin 2010-08-14 +3301376 Robertstown Robertstown 52.24306 -7.38222 P PPL IE M 27 0 157 Europe/Dublin 2010-08-14 +3301377 Glenhouse Wood Glenhouse Wood 52.26389 -7.31444 V FRST IE M 27 0 150 Europe/Dublin 2010-08-14 +3301378 Beallough Beallough 52.2675 -7.34528 L LCTY IE M 27 0 150 Europe/Dublin 2010-08-14 +3301379 Kilbunny Wood Kilbunny Wood 52.27306 -7.31194 V FRST IE M 27 0 110 Europe/Dublin 2010-08-14 +3301380 Portlaw Wood Portlaw Wood 52.28028 -7.32639 V FRST IE M 27 0 92 Europe/Dublin 2010-08-14 +3301381 Clodiagh Bridge Clodiagh Bridge 52.28639 -7.29889 P PPL IE M 27 0 18 Europe/Dublin 2010-08-14 +3301382 Glen House Glen House 52.2675 -7.2975 S HSEC IE M 27 0 74 Europe/Dublin 2010-08-14 +3301383 Pollrone House Pollrone House 52.28861 -7.27861 S HSEC IE M 27 0 15 Europe/Dublin 2010-08-14 +3301384 Glennaphuca Cross Roads Glennaphuca Cross Roads 52.26889 -7.39778 P PPL IE M 27 0 95 Europe/Dublin 2010-08-14 +3301385 Knocknacrohy Knocknacrohy 52.27861 -7.38944 L LCTY IE M 27 0 59 Europe/Dublin 2010-08-14 +3301386 Guilcagh House Guilcagh House 52.28806 -7.35722 S HSEC IE M 27 0 46 Europe/Dublin 2010-08-14 +3301387 Lowry’s Bridge Lowry's Bridge 52.28528 -7.38417 P PPL IE M 27 0 54 Europe/Dublin 2010-08-14 +3301388 Milford House Milford House 52.29472 -7.33194 S HSEC IE M 27 0 71 Europe/Dublin 2010-08-14 +3301389 Woodlock House Woodlock House 52.29472 -7.30972 S HSEC IE M 27 0 35 Europe/Dublin 2010-08-14 +3301390 Knockane Knockane 52.29167 -7.29778 P PPL IE M 27 0 14 Europe/Dublin 2010-08-14 +3301391 Clonmore House Clonmore House 52.30278 -7.28722 S HSEC IE M 27 0 16 Europe/Dublin 2010-08-14 +3301392 Whitestown Cross Roads Whitestown Cross Roads 52.28 -7.39083 P PPL IE M 27 0 59 Europe/Dublin 2010-08-14 +3301393 Kilcanavee Kilcanavee 52.24583 -7.42472 L LCTY IE M 27 0 151 Europe/Dublin 2010-08-14 +3301394 Croughaun Hill Croughaun Hill 52.25028 -7.44611 T MT IE M 27 0 162 Europe/Dublin 2010-08-14 +3301395 Knockaturnory Knockaturnory 52.24667 -7.46861 L LCTY IE M 27 0 157 Europe/Dublin 2010-08-14 +3301396 Killerguile Killerguile 52.26167 -7.44139 L LCTY IE M 27 0 138 Europe/Dublin 2010-08-14 +3301397 Ballyneal House Ballyneal House 52.29167 -7.44722 S HSEC IE M 27 0 77 Europe/Dublin 2010-08-14 +3301398 Clashroe Clashroe 52.30917 -7.33806 L LCTY IE M 27 0 145 Europe/Dublin 2010-08-14 +3301399 Tower Hill Tower Hill 52.30778 -7.35194 T HLL IE M 27 0 135 Europe/Dublin 2010-08-14 +3301400 Ballyquin Ballyquin 52.3125 -7.3775 L LCTY IE M 27 0 94 Europe/Dublin 2010-08-14 +3301401 Ballynevin Ballynevin 52.30444 -7.41111 L LCTY IE M 27 0 80 Europe/Dublin 2010-08-14 +3301402 Piquet’s Cross Roads Piquet's Cross Roads 52.3225 -7.38306 P PPL IE M 27 0 106 Europe/Dublin 2010-08-14 +3301403 Brownswood Brownswood 52.32806 -7.35333 V FRST IE M 27 0 134 Europe/Dublin 2010-08-14 +3301404 Fiddow Bridge Fiddow Bridge 52.325 -7.32167 P PPL IE M 27 0 14 Europe/Dublin 2010-08-14 +3301405 Curraghballintlea Curraghballintlea 52.32278 -7.36972 L LCTY IE M 27 0 129 Europe/Dublin 2010-08-14 +3301406 Graigavine Graigavine 52.32667 -7.29583 L LCTY IE M 27 0 13 Europe/Dublin 2010-08-14 +3301407 Riverquarter Riverquarter 52.31167 -7.29611 L LCTY IE M 27 0 15 Europe/Dublin 2010-08-14 +3301408 Farm Yard Farm Yard 52.29889 -7.35889 S FRM IE M 27 0 77 Europe/Dublin 2010-08-14 +3301409 Garravoone Garravoone 52.3275 -7.41722 L LCTY IE M 27 0 59 Europe/Dublin 2010-08-14 +3301410 Curraghduff Curraghduff 52.31194 -7.4375 L LCTY IE M 27 0 72 Europe/Dublin 2010-08-14 +3301411 Joanstown Joanstown 52.32778 -7.44306 L LCTY IE M 27 0 70 Europe/Dublin 2010-08-14 +3301412 Ballyknock Ballyknock 52.32389 -7.4525 L LCTY IE M 27 0 79 Europe/Dublin 2010-08-14 +3301413 Ballunacurra Ballunacurra 52.315 -7.46917 L LCTY IE M 27 0 103 Europe/Dublin 2010-08-14 +3301414 Ballygarret Ballygarret 52.30056 -7.46111 L LCTY IE M 27 0 91 Europe/Dublin 2010-08-14 +3301415 Feddans Cross Roads Feddans Cross Roads 52.29611 -7.47194 P PPL IE M 27 0 98 Europe/Dublin 2010-08-14 +3301416 Ballyhest Cross Roads Ballyhest Cross Roads 52.28917 -7.46083 P PPL IE M 27 0 87 Europe/Dublin 2010-08-14 +3301417 Ross Bridge Ross Bridge 52.28667 -7.48917 P PPLL IE M 27 0 108 Europe/Dublin 2010-08-14 +3301418 Shanakill House Shanakill House 52.29444 -7.5 S HSEC IE M 27 0 120 Europe/Dublin 2010-08-14 +3301419 Sheskin Cross Sheskin Cross 52.32972 -7.47722 L LCTY IE M 27 0 131 Europe/Dublin 2010-08-14 +3301420 Ballingarra Ballingarra 52.32694 -7.49694 L LCTY IE M 27 0 168 Europe/Dublin 2010-08-14 +3301421 Kilballyquilty Kilballyquilty 52.32111 -7.50028 L LCTY IE M 27 0 152 Europe/Dublin 2010-08-14 +3301422 Knockalafalla Knockalafalla 52.32528 -7.53861 L LCTY IE M 27 0 154 Europe/Dublin 2010-08-14 +3301423 Park Park 52.325 -7.55944 L LCTY IE M 27 0 154 Europe/Dublin 2010-08-14 +3301424 Kilbrack Kilbrack 52.30194 -7.54111 L LCTY IE M 27 0 151 Europe/Dublin 2010-08-14 +3301425 Ballycullane Ballycullane 52.29722 -7.55444 L LCTY IE M 27 0 241 Europe/Dublin 2010-08-14 +3301426 Clondonnell Clondonnell 52.30778 -7.57056 L LCTY IE M 27 0 196 Europe/Dublin 2010-08-14 +3301427 Curraheen Curraheen 52.29056 -7.55306 P PPL IE M 27 0 278 Europe/Dublin 2010-08-14 +3301428 Lough Mohra Lough Mohra 52.29694 -7.58222 H LK IE M 27 0 471 Europe/Dublin 2010-08-14 +3301429 Coumduala Lough Coumduala Lough 52.28083 -7.57111 H LK IE M 27 0 449 Europe/Dublin 2010-08-14 +3301430 The Gap The Gap 52.26861 -7.55417 T GAP IE M 27 0 497 Europe/Dublin 2010-08-14 +3301431 Coolnalingady Coolnalingady 52.26944 -7.52889 L LCTY IE M 27 0 322 Europe/Dublin 2010-08-14 +3301432 Crotty’s Rock Crotty's Rock 52.26028 -7.52083 T RK IE M 27 0 362 Europe/Dublin 2010-08-14 +3301433 Fauscoum Fauscoum 52.24306 -7.52917 T RDGE IE M 27 0 492 Europe/Dublin 2010-08-14 +3301434 Sgilloge Loughs Sgilloge Loughs 52.25472 -7.56583 H LKS IE M 27 0 608 Europe/Dublin 2010-08-14 +3301435 Knockanaffrin Knockanaffrin 52.27083 -7.61389 L LCTY IE M 27 0 286 Europe/Dublin 2010-08-14 +3301436 Tooreen Tooreen 52.26333 -7.64444 L LCTY IE M 27 0 288 Europe/Dublin 2010-08-14 +3301437 Glennanore Glennanore 52.28222 -7.61833 P PPL IE M 27 0 301 Europe/Dublin 2010-08-14 +3301438 Knocknaree Knocknaree 52.29333 -7.62889 L LCTY IE M 27 0 308 Europe/Dublin 2010-08-14 +3301439 Knockavannia Knockavannia 52.25417 -7.65056 L LCTY IE M 27 0 300 Europe/Dublin 2010-08-14 +3301440 Milk Hill Milk Hill 52.24417 -7.65167 T MT IE M 27 0 314 Europe/Dublin 2010-08-14 +3301441 Lyre Lyre 52.26 -7.62056 L LCTY IE M 27 0 291 Europe/Dublin 2010-08-14 +3301442 Knockeen Knockeen 52.2475 -7.66639 T MT IE M 27 0 299 Europe/Dublin 2010-08-14 +3301443 Glendalough Glendalough 52.29639 -7.67278 L LCTY IE M 27 0 263 Europe/Dublin 2010-08-14 +3301444 Shanballyanne Shanballyanne 52.26944 -7.68972 L LCTY IE M 27 0 142 Europe/Dublin 2010-08-14 +3301445 Moanyarha Moanyarha 52.30583 -7.62694 L LCTY IE M 27 0 329 Europe/Dublin 2010-08-14 +3301446 The Punchbowl The Punchbowl 52.31917 -7.66667 L LCTY IE M 27 0 328 Europe/Dublin 2010-08-14 +3301447 Laghtnafrankee Laghtnafrankee 52.31528 -7.65528 T MT IE M 27 0 305 Europe/Dublin 2010-08-14 +3301448 Shauneenabreaga Shauneenabreaga 52.3125 -7.62222 L LCTY IE M 27 0 370 Europe/Dublin 2010-08-14 +3301449 Barravakeen Barravakeen 52.33 -7.63972 L LCTY IE M 27 0 301 Europe/Dublin 2010-08-14 +3301450 Long Hill Long Hill 52.33028 -7.67639 T MT IE M 27 0 314 Europe/Dublin 2010-08-14 +3301451 Glinary Glinary 52.325 -7.69333 L LCTY IE M 27 0 309 Europe/Dublin 2010-08-14 +3301452 Boolabrien Boolabrien 52.29389 -7.72111 L LCTY IE M 27 0 236 Europe/Dublin 2010-08-14 +3301453 Carran Wood Carran Wood 52.33139 -7.72083 V FRST IE M 27 0 205 Europe/Dublin 2010-08-14 +3301454 Russellstown New Russellstown New 52.315 -7.73 P PPL IE M 27 0 244 Europe/Dublin 2010-08-14 +3301455 Caherbaun Caherbaun 52.32694 -7.73722 L LCTY IE M 27 0 92 Europe/Dublin 2010-08-14 +3301456 Russellstown Russellstown 52.31417 -7.76472 L LCTY IE M 27 0 138 Europe/Dublin 2010-08-14 +3301457 Curraheenavoher Hill Curraheenavoher Hill 52.30222 -7.72722 T HLL IE M 27 0 269 Europe/Dublin 2010-08-14 +3301458 Bawnfune Bawnfune 52.29806 -7.77722 P PPL IE M 27 0 98 Europe/Dublin 2010-08-14 +3301459 Ballydonagh Cross Roads Ballydonagh Cross Roads 52.29278 -7.77389 P PPL IE M 27 0 132 Europe/Dublin 2010-08-14 +3301460 Clogheen Clogheen 52.28417 -7.74028 L LCTY IE M 27 0 105 Europe/Dublin 2010-08-14 +3301461 Glenahiry Lodge Glenahiry Lodge 52.27611 -7.7225 S HSE IE M 27 0 139 Europe/Dublin 2010-08-14 +3301462 Deerpark Bridge Deerpark Bridge 52.27167 -7.72944 P PPL IE M 27 0 96 Europe/Dublin 2010-08-14 +3301463 Castlequarter Castlequarter 52.27778 -7.74806 L LCTY IE M 27 0 74 Europe/Dublin 2010-08-14 +3301464 Four Mile Water Bridge Four Mile Water Bridge 52.27361 -7.75889 P PPL IE M 27 0 82 Europe/Dublin 2010-08-14 +3301465 Toorala Toorala 52.28111 -7.71944 L LCTY IE M 27 0 139 Europe/Dublin 2010-08-14 +3301466 Tooracurragh Tooracurragh 52.2675 -7.75167 L LCTY IE M 27 0 84 Europe/Dublin 2010-08-14 +3301467 Barranashingaun Barranashingaun 52.255 -7.74722 L LCTY IE M 27 0 163 Europe/Dublin 2010-08-14 +3301468 Ballyrohan Ballyrohan 52.25111 -7.73694 L LCTY IE M 27 0 162 Europe/Dublin 2010-08-14 +3301469 Curraghateskin Curraghateskin 52.24639 -7.72361 L LCTY IE M 27 0 165 Europe/Dublin 2010-08-14 +3301470 Glenary River Glenary River 52.31556 -7.79111 L LCTY IE M 27 0 74 Europe/Dublin 2010-08-14 +3301471 Kilmanalian Bridge Kilmanalian Bridge 52.31694 -7.77861 P PPL IE M 27 0 70 Europe/Dublin 2010-08-14 +3301472 Cloghanacody Cloghanacody 52.32944 -7.85389 L LCTY IE M 26 0 78 Europe/Dublin 2010-08-14 +3301473 Grange Cross Roads Grange Cross Roads 52.32833 -7.825 P PPL IE M 26 0 72 Europe/Dublin 2010-08-14 +3301474 Knocklofty House Knocklofty House 52.33056 -7.79611 S HSEC IE M 26 0 49 Europe/Dublin 2010-08-14 +3301475 Oldgrange Oldgrange 52.32222 -7.8375 L LCTY IE M 26 0 82 Europe/Dublin 2010-08-14 +3301476 Ballyneety Ballyneety 52.31889 -7.85417 P PPL IE M 26 0 80 Europe/Dublin 2010-08-14 +3301477 Ballybeg Ballybeg 52.31028 -7.81056 L LCTY IE M 26 0 58 Europe/Dublin 2010-08-14 +3301478 Knockeen Knockeen 52.30694 -7.82111 L LCTY IE M 26 0 71 Europe/Dublin 2010-08-14 +3301479 Neddans House Neddans House 52.30222 -7.85722 P PPL IE M 26 0 66 Europe/Dublin 2010-08-14 +3301480 Flemingstown Flemingstown 52.30111 -7.80861 L LCTY IE M 26 0 47 Europe/Dublin 2010-08-14 +3301481 Rossmore Rossmore 52.26222 -7.76528 L LCTY IE M 26 0 130 Europe/Dublin 2010-08-14 +3301482 Grange Grange 52.33889 -7.84028 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3301483 Knocklofty Knocklofty 52.33972 -7.82083 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3301484 Markhamstown Markhamstown 52.35139 -7.83306 P PPL IE M 26 0 80 Europe/Dublin 2010-08-14 +3301485 Garryroe House Garryroe House 52.35639 -7.82639 S HSEC IE M 26 0 80 Europe/Dublin 2010-08-14 +3301486 Monksgrange Monksgrange 52.345 -7.82333 L LCTY IE M 26 0 78 Europe/Dublin 2010-08-14 +3301487 Lisnamuck Lisnamuck 52.35861 -7.855 L LCTY IE M 26 0 86 Europe/Dublin 2010-08-14 +3301488 Derrygrath Derrygrath 52.36944 -7.83222 L LCTY IE M 26 0 101 Europe/Dublin 2010-08-14 +3301489 Rathkeevin Rathkeevin 52.37278 -7.79778 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3301490 Garryntemple Garryntemple 52.35583 -7.8125 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3301491 New Abbey New Abbey 52.34917 -7.78889 L LCTY IE M 26 0 44 Europe/Dublin 2010-08-14 +3301492 Loughtally Loughtally 52.35306 -7.78333 P PPL IE M 26 0 58 Europe/Dublin 2010-08-14 +3301493 Oaklands Oaklands 52.35583 -7.76833 L LCTY IE M 26 0 58 Europe/Dublin 2010-08-14 +3301494 Barne Park Barne Park 52.3725 -7.76417 L PRK IE M 26 0 79 Europe/Dublin 2010-08-14 +3301495 Knocklofty Bridge Knocklofty Bridge 52.33778 -7.78889 P PPL IE M 26 0 46 Europe/Dublin 2010-08-14 +3301496 Salisbury Salisbury 52.35083 -7.76278 L LCTY IE M 26 0 54 Europe/Dublin 2010-08-14 +3301497 Martfield Martfield 52.34778 -7.74889 P PPL IE M 26 0 67 Europe/Dublin 2010-08-14 +3301498 Ballingarrane Ballingarrane 52.36583 -7.7725 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3301499 Ballingarrane House Ballingarrane House 52.36417 -7.74556 S HSEC IE M 26 0 57 Europe/Dublin 2010-08-14 +3301500 Glenconnor Glenconnor 52.36083 -7.75083 L LCTY IE M 26 0 65 Europe/Dublin 2010-08-14 +3301501 Toberaheena Toberaheena 52.35333 -7.74694 L LCTY IE M 26 0 41 Europe/Dublin 2010-08-14 +3301502 Innislonagh Innislonagh 52.34722 -7.74333 L LCTY IE M 26 0 67 Europe/Dublin 2010-08-14 +3301503 Martfield House Martfield House 52.34361 -7.75889 S HSEC IE M 26 0 43 Europe/Dublin 2010-08-14 +3301504 Kilnamack Kilnamack 52.335 -7.77528 L LCTY IE M 26 0 48 Europe/Dublin 2010-08-14 +3301505 Glenboy River Glenboy River 52.2775 -7.83389 H STM IE M 26 0 49 Europe/Dublin 2010-08-14 +3301506 Clashaniska Mile Tree Clashaniska Mile Tree 52.37611 -7.71639 L LCTY IE M 26 0 67 Europe/Dublin 2010-08-14 +3301507 Serothea Serothea 52.34556 -7.70944 P PPL IE M 27 0 109 Europe/Dublin 2010-08-14 +3301508 Spaville Spaville 52.34722 -7.69361 P PPL IE M 27 0 132 Europe/Dublin 2010-08-14 +3301509 Tannersrath Tannersrath 52.37806 -7.68806 P PPL IE M 26 0 47 Europe/Dublin 2010-08-14 +3301510 Glenam House Glenam House 52.35111 -7.68333 S HSEC IE M 27 0 86 Europe/Dublin 2010-08-14 +3301511 Powerstown House Powerstown House 52.36444 -7.67972 S HSEC IE M 26 0 33 Europe/Dublin 2010-08-14 +3301512 Twomilebridge Twomilebridge 52.36222 -7.64417 P PPL IE M 26 0 29 Europe/Dublin 2010-08-14 +3301513 Saint Joseph School Saint Joseph School 52.35861 -7.65278 S SCH IE M 26 0 30 Europe/Dublin 2010-08-14 +3301514 Tikincor Tikincor 52.35472 -7.65056 P PPL IE M 27 0 79 Europe/Dublin 2010-08-14 +3301515 Poulnagunoge Poulnagunoge 52.34528 -7.68 L LCTY IE M 27 0 149 Europe/Dublin 2010-08-14 +3301516 Tikincor Wood Tikincor Wood 52.3475 -7.64333 V FRST IE M 27 0 162 Europe/Dublin 2010-08-14 +3301517 Ballynevin Ballynevin 52.37917 -7.61583 L LCTY IE M 26 0 37 Europe/Dublin 2010-08-14 +3301518 Seskin Seskin 52.37556 -7.58722 L LCTY IE M 26 0 19 Europe/Dublin 2010-08-14 +3301519 Priorstown Priorstown 52.36944 -7.60417 L LCTY IE M 26 0 29 Europe/Dublin 2010-08-14 +3301520 Killaloan Killaloan 52.36167 -7.63028 L LCTY IE M 26 0 27 Europe/Dublin 2010-08-14 +3301521 Derrinlaur Derrinlaur 52.35806 -7.64111 L LCTY IE M 27 0 88 Europe/Dublin 2010-08-14 +3301522 Raven’s Rock Raven's Rock 52.34056 -7.62194 T MT IE M 27 0 329 Europe/Dublin 2010-08-14 +3301523 Gurteen Wood Gurteen Wood 52.34556 -7.59806 V FRST IE M 27 0 226 Europe/Dublin 2010-08-14 +3301524 Harney’s Cross Roads Harney's Cross Roads 52.33444 -7.61806 P PPL IE M 27 0 329 Europe/Dublin 2010-08-14 +3301525 Le Poer Le Poer 52.34583 -7.58639 T MT IE M 27 0 173 Europe/Dublin 2010-08-14 +3301526 Coolishal Coolishal 52.33667 -7.58667 L LCTY IE M 27 0 211 Europe/Dublin 2010-08-14 +3301527 Glasha River Glasha River 52.36056 -7.56194 H STM IE M 27 0 15 Europe/Dublin 2010-08-14 +3301528 Landscape House Landscape House 52.35667 -7.56722 S HSEC IE M 27 0 96 Europe/Dublin 2010-08-14 +3301529 Glen Castle Glen Castle 52.35917 -7.52917 S CSTL IE M 27 0 15 Europe/Dublin 2010-08-14 +3301530 Glen Poer Wood Glen Poer Wood 52.34833 -7.54361 V FRST IE M 27 0 142 Europe/Dublin 2010-08-14 +3301531 Glen Poer Glen Poer 52.34944 -7.51861 L LCTY IE M 27 0 70 Europe/Dublin 2010-08-14 +3301532 Glynn Cottage Glynn Cottage 52.35444 -7.52139 S HSEC IE M 27 0 15 Europe/Dublin 2010-08-14 +3301533 Ballynaraha Ballynaraha 52.3675 -7.55722 L LCTY IE M 26 0 16 Europe/Dublin 2010-08-14 +3301534 Minorstown Minorstown 52.37556 -7.56028 L LCTY IE M 26 0 17 Europe/Dublin 2010-08-14 +3301535 Ballynoran House Ballynoran House 52.35778 -7.49556 S HSEC IE M 26 0 15 Europe/Dublin 2010-08-14 +3301536 Butlerstown Butlerstown 52.37528 -7.50722 L LCTY IE M 26 0 26 Europe/Dublin 2010-08-14 +3301537 Kilmurry Lodge Kilmurry Lodge 52.37917 -7.48583 S HSE IE M 26 0 25 Europe/Dublin 2010-08-14 +3301538 Ballycurkeen House Ballycurkeen House 52.36944 -7.48167 S HSEC IE M 26 0 20 Europe/Dublin 2010-08-14 +3301539 Churchtown House Churchtown House 52.34972 -7.46944 S HSEC IE M 27 0 64 Europe/Dublin 2010-08-14 +3301540 Ballinderry Ballinderry 52.35583 -7.47472 L LCTY IE M 26 0 15 Europe/Dublin 2010-08-14 +3301541 Mulllagh Mulllagh 52.36528 -7.46083 L LCTY IE M 26 0 18 Europe/Dublin 2010-08-14 +3301542 Coolnamuck Wood Coolnamuck Wood 52.34417 -7.46944 V FRST IE M 27 0 64 Europe/Dublin 2010-08-14 +3301543 Ballindysert Ballindysert 52.33722 -7.48333 L LCTY IE M 27 0 132 Europe/Dublin 2010-08-14 +3301544 Sheskin House Sheskin House 52.33583 -7.43556 S HSEC IE M 27 0 41 Europe/Dublin 2010-08-14 +3301545 Deerpark Lodge Deerpark Lodge 52.35472 -7.42722 S HSEC IE M 26 0 17 Europe/Dublin 2010-08-14 +3301546 Figlash Figlash 52.37444 -7.44917 P PPL IE M 26 0 27 Europe/Dublin 2010-08-14 +3301547 Cregg Bridge Cregg Bridge 52.37333 -7.39139 P PPL IE M 26 0 35 Europe/Dublin 2010-08-14 +3301548 Mount Richard Mount Richard 52.36 -7.40972 S EST IE M 26 0 26 Europe/Dublin 2010-08-14 +3301549 Tinhalla House Tinhalla House 52.34 -7.37694 S HSEC IE M 26 0 58 Europe/Dublin 2010-08-14 +3301550 Crehanagh Crehanagh 52.33472 -7.3975 L LCTY IE M 26 0 66 Europe/Dublin 2010-08-14 +3301551 Baungarriff Baungarriff 52.36556 -7.37806 L LCTY IE L 13 0 26 Europe/Dublin 2010-08-14 +3301552 Ballyhenebery Ballyhenebery 52.37611 -7.36083 P PPL IE L 13 0 49 Europe/Dublin 2010-08-14 +3301553 The Sweep The Sweep 52.37194 -7.33444 P PPL IE L 13 0 34 Europe/Dublin 2010-08-14 +3301554 Sandpits Cross Roads Sandpits Cross Roads 52.36583 -7.32389 P PPL IE L 13 0 21 Europe/Dublin 2010-08-14 +3301555 Knockroe Knockroe 52.35583 -7.36972 P PPL IE L 13 0 16 Europe/Dublin 2010-08-14 +3301556 The Three Bridges The Three Bridges 52.35306 -7.37861 P PPL IE L 13 0 20 Europe/Dublin 2010-08-14 +3301557 Tibberagany Tibberagany 52.34639 -7.3525 L LCTY IE L 13 0 3 Europe/Dublin 2010-08-14 +3301558 Pil River Pil River Dil River,Pil River 52.33361 -7.335 H STM IE L 13 0 2 Europe/Dublin 2010-12-03 +3301559 Jamestown Jamestown 52.3775 -7.30889 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3301560 Raheen Raheen 52.375 -7.29194 L LCTY IE L 13 0 65 Europe/Dublin 2010-08-14 +3301561 Ballygown Ballygown 52.3625 -7.30028 L LCTY IE L 13 0 29 Europe/Dublin 2010-08-14 +3301562 Dowling Dowling 52.35944 -7.28611 L LCTY IE L 13 0 65 Europe/Dublin 2010-08-14 +3301563 Ardclone Ardclone 52.34222 -7.32917 L LCTY IE L 13 0 1 Europe/Dublin 2010-08-14 +3301564 Tennislee Cross Roads Tennislee Cross Roads 52.33556 -7.30444 P PPL IE L 13 0 8 Europe/Dublin 2010-08-14 +3301565 Portnagge Portnagge 52.33306 -7.35806 P PPL IE M 27 0 134 Europe/Dublin 2010-08-14 +3301567 Ballyhussa Ballyhussa 52.2325 -7.38389 L LCTY IE M 27 0 137 Europe/Dublin 2010-08-14 +3301571 Rathmore Rathmore 52.37917 -7.85861 P PPLL IE M 26 0 92 Europe/Dublin 2010-08-14 +3301578 Lissanisky Lissanisky 51.87111 -8.30528 P PPLL IE M 04 0 71 Europe/Dublin 2010-08-14 +3301579 Rosslague Rosslague 51.87111 -8.27583 P PPLL IE M 04 0 73 Europe/Dublin 2010-08-14 +3301580 Desert Desert 52.03778 -8.22917 L LCTY IE M 04 0 136 Europe/Dublin 2010-08-14 +3301581 Castle View Castle View 52.10528 -8.06139 S EST IE M 04 0 40 Europe/Dublin 2010-08-14 +3301582 Weirs Castle Weirs Castle 52.14056 -7.93306 S CSTL IE M 27 0 45 Europe/Dublin 2010-08-14 +3301583 Oragagh River Oragagh River 52.00833 -7.82 H STM IE M 27 0 39 Europe/Dublin 2010-08-14 +3301584 River Ogeen River Ogeen 52.21833 -8.53444 H STM IE M 04 0 74 Europe/Dublin 2010-08-14 +3301585 Shanbally River Shanbally River 52.27806 -7.995 H STM IE M 26 0 60 Europe/Dublin 2010-08-14 +3301586 Black Rock Black Rock 52.13222 -7.26556 T RK IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301587 Kilfarrasy Kilfarrasy 52.13417 -7.24861 L LCTY IE M 27 0 1 Europe/Dublin 2010-08-14 +3301588 Woodstown Woodstown 52.14111 -7.25694 P PPL IE M 27 0 2 Europe/Dublin 2010-08-14 +3301589 Sheep Island Sheep Island 52.12639 -7.21167 T ISL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301590 Islandikane Islandikane 52.13917 -7.22722 L LCTY IE M 27 0 5 Europe/Dublin 2010-08-14 +3301591 Garrarus Cross Roads Garrarus Cross Roads 52.14111 -7.18694 P PPL IE M 27 0 1 Europe/Dublin 2010-08-14 +3301592 Westtown Westtown 52.13944 -7.17444 P PPL IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301593 Islandtarsney Islandtarsney 52.155 -7.20667 P PPL IE M 27 0 54 Europe/Dublin 2010-08-14 +3301594 Ballyadam Cross Roads Ballyadam Cross Roads 52.15667 -7.23528 P PPL IE M 27 0 26 Europe/Dublin 2010-08-14 +3301595 Ballyscanlan Hills Ballyscanlan Hills 52.16944 -7.20972 T HLLS IE M 27 0 76 Europe/Dublin 2010-08-14 +3301596 Ballyscanlan Lough Ballyscanlan Lough 52.17389 -7.20417 H LK IE M 27 0 78 Europe/Dublin 2010-08-14 +3301604 Carrickavrantry Carrickavrantry 52.17083 -7.18833 L LCTY IE M 27 0 80 Europe/Dublin 2010-08-14 +3301605 Ogham Stone Ogham Stone 52.18083 -7.21917 T RK IE M 27 0 73 Europe/Dublin 2010-08-14 +3301606 Ballybrennock House Ballybrennock House 52.18528 -7.22833 S HSEC IE M 27 0 67 Europe/Dublin 2010-08-14 +3301607 Frankeen’s Cross Roads Frankeen's Cross Roads 52.18917 -7.25861 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301608 Ballycraddock Ballycraddock 52.19722 -7.2675 L LCTY IE M 27 0 78 Europe/Dublin 2010-08-14 +3301609 Glen House Glen House 52.19806 -7.22694 S HSEC IE M 27 0 70 Europe/Dublin 2010-08-14 +3301610 Ballynaclogh Ballynaclogh 52.18472 -7.19083 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301611 Ballynaclogh Cross Roads Ballynaclogh Cross Roads 52.19611 -7.1875 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301612 Pembrokestown House Pembrokestown House 52.20222 -7.19694 S HSEC IE M 27 0 76 Europe/Dublin 2010-08-14 +3301613 Sugar Loaf Rock Sugar Loaf Rock 52.20583 -7.17639 T RK IE M 27 0 76 Europe/Dublin 2010-08-14 +3301614 Lisnakill Cross Lisnakill Cross 52.20833 -7.1975 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301615 Lisnakill Lisnakill 52.21361 -7.21083 L LCTY IE M 27 0 71 Europe/Dublin 2010-08-14 +3301616 Raheens Raheens 52.2075 -7.2575 P PPL IE M 27 0 76 Europe/Dublin 2010-08-14 +3301617 Knockeen Knockeen 52.20778 -7.16111 L LCTY IE M 27 0 72 Europe/Dublin 2010-08-14 +3301618 Kilbride House Kilbride House 52.19167 -7.14889 S HSEC IE M 27 0 65 Europe/Dublin 2010-08-14 +3301619 Pickardstown House Pickardstown House 52.17472 -7.13361 S HSEC IE M 27 0 13 Europe/Dublin 2010-08-14 +3301620 Towergare Towergare 52.20167 -7.145 L LCTY IE M 27 0 63 Europe/Dublin 2010-08-14 +3301621 Powersknock Powersknock 52.22139 -7.23194 P PPL IE M 27 0 49 Europe/Dublin 2010-08-14 +3301622 Adamstown Adamstown 52.22806 -7.23417 P PPL IE M 27 0 35 Europe/Dublin 2010-08-14 +3301623 Whelan’s Bridge Whelan's Bridge 52.23722 -7.23111 P PPL IE M 27 0 23 Europe/Dublin 2010-08-14 +3301624 Cullenagh Cullenagh 52.24194 -7.26639 L LCTY IE M 27 0 75 Europe/Dublin 2010-08-14 +3301625 Bawnfune Bawnfune 52.23222 -7.19222 L LCTY IE M 27 0 74 Europe/Dublin 2010-08-14 +3301626 Killoteran House Killoteran House 52.24361 -7.18306 S HSEC IE M 27 0 49 Europe/Dublin 2010-08-14 +3301627 Ballycashin Ballycashin 52.22389 -7.16583 P PPL IE M 27 0 58 Europe/Dublin 2010-08-14 +3301628 Ballyhoo Ballyhoo 52.22 -7.14167 L LCTY IE M 27 0 50 Europe/Dublin 2010-08-14 +3301629 Kilbarry Kilbarry 52.23472 -7.13028 L LCTY IE M 27 0 29 Europe/Dublin 2010-08-14 +3301630 Drumcannon Drumcannon 52.18111 -7.1225 L LCTY IE M 27 0 12 Europe/Dublin 2010-08-14 +3301636 The Pines The Pines 52.26083 -7.26278 V FRST IE M 27 0 14 Europe/Dublin 2010-08-14 +3301637 Stonehouse Stonehouse 52.25306 -7.24639 L LCTY IE M 27 0 13 Europe/Dublin 2010-08-14 +3301643 Ballynaneashagh Ballynaneashagh 52.2425 -7.17056 P PPL IE M 27 0 47 Europe/Dublin 2010-08-14 +3301644 Carrignanore House Carrignanore House 52.25028 -7.18083 S HSEC IE M 27 0 35 Europe/Dublin 2010-08-14 +3301645 Crobally House Crobally House 52.16056 -7.1325 S HSEC IE M 27 0 1 Europe/Dublin 2010-08-14 +3301646 Ballinattin Ballinattin 52.16944 -7.125 L LCTY IE M 27 0 1 Europe/Dublin 2010-08-14 +3301647 Tramore Strand Tramore Strand 52.15306 -7.12417 T BCH IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301648 Knockaunriark Knockaunriark 52.14917 -7.10944 L LCTY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301649 Brazen Head Brazen Head 52.12528 -7.09 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301650 Brownstown Brownstown 52.13333 -7.08528 L LCTY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301651 Corbally More Corbally More 52.15111 -7.07194 S EST IE M 27 0 7 Europe/Dublin 2010-08-14 +3301652 Rathmoylan Rathmoylan 52.13611 -7.03833 P PPL IE M 27 0 2 Europe/Dublin 2010-08-14 +3301653 Portally Portally 52.13472 -7.025 L LCTY IE M 27 0 1 Europe/Dublin 2010-08-14 +3301654 Kilmaguague Kilmaguague 52.15 -7.04 L LCTY IE M 27 0 11 Europe/Dublin 2010-08-14 +3301655 Kilmacleague Bridge Kilmacleague Bridge 52.1575 -7.05389 P PPL IE M 27 0 16 Europe/Dublin 2010-08-14 +3301656 Leperstown Leperstown 52.16306 -7.04 L LCTY IE M 27 0 41 Europe/Dublin 2010-08-14 +3301657 Clohernagh Clohernagh 52.16806 -7.08444 L LCTY IE M 27 0 10 Europe/Dublin 2010-08-14 +3301658 Lisselan Lisselan 52.17278 -7.10194 L LCTY IE M 27 0 1 Europe/Dublin 2010-08-14 +3301659 Balcynamoyntragh Cross Roads Balcynamoyntragh Cross Roads 52.17 -7.03972 P PPL IE M 27 0 57 Europe/Dublin 2010-08-14 +3301660 Kilmacomb Cross Roads Kilmacomb Cross Roads 52.1725 -7.02639 P PPL IE M 27 0 62 Europe/Dublin 2010-08-14 +3301661 Ballyshoneen Ballyshoneen 52.17889 -7.07861 L LCTY IE M 27 0 29 Europe/Dublin 2010-08-14 +3301662 Fairybush Cross Roads Fairybush Cross Roads 52.17556 -7.00611 P PPL IE M 27 0 63 Europe/Dublin 2010-08-14 +3301663 Harristown Harristown 52.17806 -7.00556 L LCTY IE M 27 0 63 Europe/Dublin 2010-08-14 +3301664 Black Knob Black Knob 52.1425 -6.98278 T PT IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301665 Foilakippeen Hill Foilakippeen Hill 52.15972 -6.98278 T HLL IE M 27 0 1 Europe/Dublin 2010-08-14 +3301666 Ardnamult Head Ardnamult Head 52.16 -6.96889 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301667 Knockavelish Head Knockavelish Head 52.18111 -6.96639 T CAPE IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301678 Belle Lake Belle Lake 52.18806 -7.02306 H LK IE M 27 0 76 Europe/Dublin 2010-08-14 +3301679 Woodstown House Woodstown House 52.19639 -6.98 S HSEC IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301681 Ballylough Ballylough 52.18722 -7.04472 L LCTY IE M 27 0 68 Europe/Dublin 2010-08-14 +3301682 Ballydavid House Ballydavid House 52.20472 -7 S HSEC IE M 27 0 27 Europe/Dublin 2010-08-14 +3301683 Mount Beresford Mount Beresford 52.20417 -7.0425 L LCTY IE M 27 0 69 Europe/Dublin 2010-08-14 +3301684 Keiloge River Keiloge River 52.16222 -7.06833 H STM IE M 27 0 14 Europe/Dublin 2010-08-14 +3301685 Ballykinsella Ballykinsella 52.19139 -7.11306 L LCTY IE M 27 0 22 Europe/Dublin 2010-08-14 +3301686 Monamintra Monamintra 52.19806 -7.09778 L LCTY IE M 27 0 39 Europe/Dublin 2010-08-14 +3301704 Monamintra Cross Roads Monamintra Cross Roads 52.20583 -7.08194 P PPL IE M 27 0 65 Europe/Dublin 2010-08-14 +3301705 Ballygarran Ballygarran 52.18278 -7.08222 L LCTY IE M 27 0 29 Europe/Dublin 2010-08-14 +3301706 Kilearagh Cross Roads Kilearagh Cross Roads 52.21639 -7.06583 P PPL IE M 27 0 69 Europe/Dublin 2010-08-14 +3301707 Grace Dieu Grace Dieu 52.21278 -7.1175 S EST IE M 27 0 43 Europe/Dublin 2010-08-14 +3301708 Kill Saint Lawrence Kill Saint Lawrence 52.22361 -7.10861 L LCTY IE M 27 0 38 Europe/Dublin 2010-08-14 +3301709 Kilcohan Kilcohan 52.23056 -7.1075 L LCTY IE M 27 0 31 Europe/Dublin 2010-08-14 +3301710 Knockboy Knockboy 52.23111 -7.06306 L LCTY IE M 27 0 26 Europe/Dublin 2010-08-14 +3301711 Halfway House Halfway House 52.22722 -7.02528 S HSEC IE M 27 0 34 Europe/Dublin 2010-08-14 +3301738 Geneva Barracks Geneva Barracks 52.21444 -6.97611 S RUIN IE M 27 0 1 Europe/Dublin 2010-08-14 +3301739 Crooke Crooke 52.22389 -6.96611 L LCTY IE M 27 0 -9999 Europe/Dublin 2010-08-14 +3301740 Blenheim House Blenheim House 52.23972 -7.03861 S HSEC IE M 27 0 21 Europe/Dublin 2010-08-14 +3301741 Stronghow’s Bridge Stronghow's Bridge 52.24028 -7.01528 P PPL IE M 27 0 16 Europe/Dublin 2010-08-14 +3301742 Woodland House Woodland House 52.24917 -7.02333 S HSEC IE M 27 0 13 Europe/Dublin 2010-08-14 +3301743 Grantstown House Grantstown House 52.23972 -7.07083 S HSEC IE M 27 0 9 Europe/Dublin 2010-08-14 +3301744 Ballynakill House Ballynakill House 52.24194 -7.06583 S HSEC IE M 27 0 4 Europe/Dublin 2010-08-14 +3301745 May Park May Park 52.24944 -7.0675 L PRK IE M 27 0 5 Europe/Dublin 2010-08-14 +3301746 Annmount House Annmount House 52.25722 -7.07306 S HSEC IE L 13 0 14 Europe/Dublin 2010-08-14 +3301747 Newpark House Newpark House 52.26139 -7.07694 S HSEC IE M 27 0 28 Europe/Dublin 2010-08-14 +3301748 Moonveen Moonveen 52.24389 -7.21917 L LCTY IE L 13 0 13 Europe/Dublin 2010-08-14 +3301749 Corluddy Corluddy 52.25917 -7.21333 T HLL IE L 13 0 49 Europe/Dublin 2010-08-14 +3301750 Carrigeen Carrigeen 52.26917 -7.20806 P PPL IE L 13 0 45 Europe/Dublin 2010-08-14 +3301751 Portnascully Portnascully 52.27167 -7.25972 L LCTY IE L 13 0 14 Europe/Dublin 2010-08-14 +3301752 Curraghmartin Curraghmartin 52.27306 -7.20722 L LCTY IE L 13 0 45 Europe/Dublin 2010-08-14 +3301753 Aglish Aglish 52.27833 -7.21083 L LCTY IE L 13 0 61 Europe/Dublin 2010-08-14 +3301754 Dungooly Dungooly 52.28806 -7.21389 L LCTY IE L 13 0 59 Europe/Dublin 2010-08-14 +3301755 Ballincurra Ballincurra 52.3 -7.22833 P PPL IE L 13 0 55 Europe/Dublin 2010-08-14 +3301756 Ballynearla Ballynearla 52.29806 -7.18917 L LCTY IE L 13 0 37 Europe/Dublin 2010-08-14 +3301757 Arderra Arderra 52.31111 -7.22194 P PPL IE L 13 0 51 Europe/Dublin 2010-08-14 +3301758 Ullid Ullid 52.31444 -7.20861 L LCTY IE L 13 0 51 Europe/Dublin 2010-08-14 +3301759 Silverspring House Silverspring House 52.315 -7.25111 S HSEC IE L 13 0 33 Europe/Dublin 2010-08-14 +3301760 Clogga Clogga 52.32083 -7.25278 L LCTY IE L 13 0 38 Europe/Dublin 2010-08-14 +3301761 Ballynaboley Wood Ballynaboley Wood 52.3225 -7.21639 V FRST IE L 13 0 56 Europe/Dublin 2010-08-14 +3301762 Dangan Bridge Dangan Bridge 52.32667 -7.16 P PPL IE L 13 0 62 Europe/Dublin 2010-08-14 +3301763 Dangan Dangan 52.32222 -7.1725 L LCTY IE L 13 0 49 Europe/Dublin 2010-08-14 +3301765 Kilcronagh Kilcronagh 52.3075 -7.16667 P PPL IE L 13 0 30 Europe/Dublin 2010-08-14 +3301766 Ballykillaboy Ballykillaboy 52.32389 -7.13139 L LCTY IE L 13 0 49 Europe/Dublin 2010-08-14 +3301767 Lough Cullin Lough Cullin 52.31222 -7.09722 H LK IE L 13 0 56 Europe/Dublin 2010-08-14 +3301768 Smartscastle Smartscastle 52.2925 -7.12028 L LCTY IE L 13 0 47 Europe/Dublin 2010-08-14 +3301770 Nicholastown Nicholastown 52.30472 -7.08833 L LCTY IE L 13 0 66 Europe/Dublin 2010-08-14 +3301771 Davidstown Davidstown 52.31611 -7.06167 L LCTY IE L 13 0 85 Europe/Dublin 2010-08-14 +3301772 Carriganurra Carriganurra 52.30861 -7.07028 L LCTY IE L 13 0 85 Europe/Dublin 2010-08-14 +3301773 Rathpatrick Cross Roads Rathpatrick Cross Roads 52.28056 -7.06361 P PPL IE L 13 0 61 Europe/Dublin 2010-08-14 +3301774 Milepost Village Milepost Village 52.27333 -7.07083 L LCTY IE L 13 0 46 Europe/Dublin 2010-08-14 +3301776 Mullinabro House Mullinabro House 52.28167 -7.12861 S HSEC IE L 13 0 29 Europe/Dublin 2010-08-14 +3301779 Gorteens Gorteens 52.26861 -7.055 L LCTY IE L 13 0 36 Europe/Dublin 2010-08-14 +3301781 Glass House Glass House 52.26583 -7.025 S HSEC IE L 13 0 4 Europe/Dublin 2010-08-14 +3301782 Drumdowney Drumdowney 52.27944 -7.035 P PPL IE L 13 0 24 Europe/Dublin 2010-08-14 +3301783 Mount Ida Mount Ida 52.32167 -7.00278 P PPL IE L 13 0 5 Europe/Dublin 2010-08-14 +3301784 Fisherstown Fisherstown 52.305 -6.98194 P PPL IE L 30 0 18 Europe/Dublin 2010-08-14 +3301796 Greatisland Greatisland 52.28833 -6.99444 L LCTY IE L 30 0 3 Europe/Dublin 2010-08-14 +3301797 Dunbrody Castle Dunbrody Castle 52.27833 -6.95722 S CSTL IE L 30 0 26 Europe/Dublin 2010-08-14 +3301798 Priesthaggard Priesthaggard 52.30306 -6.96389 P PPL IE L 30 0 31 Europe/Dublin 2010-08-14 +3301799 Burnt School Cross Roads Burnt School Cross Roads 52.30722 -6.95194 P PPL IE L 30 0 39 Europe/Dublin 2010-08-14 +3301800 Doornoge Bay Doornoge Bay 52.12306 -6.92611 H BAY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301802 Patrick’s Bay Patrick's Bay 52.1425 -6.89056 H BAY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301803 Lumsdin’s Bay Lumsdin's Bay 52.15361 -6.89722 H BAY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301804 Templetown Templetown 52.17889 -6.88528 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301805 Stonewall Bay Stonewall Bay 52.17806 -6.89889 H BAY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301806 Kilcloggan Kilcloggan 52.18167 -6.88444 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301808 Haggard Haggard 52.18472 -6.88417 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301809 Ralph Cross Roads Ralph Cross Roads 52.18472 -6.85028 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3301811 Ramstown Ramstown 52.18194 -6.84889 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301812 Connagh Connagh 52.19139 -6.87111 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301813 Lewistown Lewistown 52.19361 -6.88556 L LCTY IE L 30 0 2 Europe/Dublin 2010-08-14 +3301814 Connagh Cross Roads Connagh Cross Roads 52.19861 -6.85222 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3301815 Knockanduff Knockanduff 52.20222 -6.88 L LCTY IE L 30 0 3 Europe/Dublin 2010-08-14 +3301816 Wood Village Wood Village 52.19972 -6.82083 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301817 Booley Bay Booley Bay 52.19778 -6.90056 H BAY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301818 Ballygow Ballygow 52.20778 -6.87194 P PPL IE L 30 0 3 Europe/Dublin 2010-08-14 +3301820 Ballinruan Cross Roads Ballinruan Cross Roads 52.20694 -6.89083 P PPL IE L 30 0 4 Europe/Dublin 2010-08-14 +3301821 Broomhill Point Broomhill Point 52.18861 -6.90556 T PT IE L 30 0 1 Europe/Dublin 2010-08-14 +3301822 Newtown Newtown 52.20361 -6.82111 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301823 Dungulph Castle Dungulph Castle 52.21222 -6.85333 S CSTL IE L 30 0 2 Europe/Dublin 2010-08-14 +3301825 Kilbride Cross Roads Kilbride Cross Roads 52.21611 -6.89556 P PPL IE L 30 0 6 Europe/Dublin 2010-08-14 +3301828 Gorteens Gorteens 52.21694 -6.83694 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3301829 Haggard Bridge Haggard Bridge 52.23833 -6.88056 P PPL IE L 30 0 21 Europe/Dublin 2010-08-14 +3301831 Ballyvdroge Ballyvdroge 52.23778 -6.85639 L LCTY IE L 30 0 13 Europe/Dublin 2010-08-14 +3301832 New Bridge New Bridge 52.24639 -6.84556 P PPL IE L 30 0 16 Europe/Dublin 2010-08-14 +3301849 Poundtown Cross Roads Poundtown Cross Roads 52.24361 -6.85528 P PPL IE L 30 0 20 Europe/Dublin 2010-08-14 +3301850 Hagansgate Cross Roads Hagansgate Cross Roads 52.25278 -6.90056 P PPL IE L 30 0 43 Europe/Dublin 2010-08-14 +3301851 Rathroe Cross Roads Rathroe Cross Roads 52.25556 -6.87083 P PPL IE L 30 0 34 Europe/Dublin 2010-08-14 +3301852 Curraghmore Curraghmore 52.2525 -6.84917 L LCTY IE L 30 0 23 Europe/Dublin 2010-08-14 +3301853 Monacahee Monacahee 52.26361 -6.91111 L LCTY IE L 30 0 53 Europe/Dublin 2010-08-14 +3301854 Kinnagh Kinnagh 52.26417 -6.84417 L LCTY IE L 30 0 30 Europe/Dublin 2010-08-14 +3301855 Boderan Cross Roads Boderan Cross Roads 52.26472 -6.91639 P PPL IE L 30 0 53 Europe/Dublin 2010-08-14 +3301856 Grange Grange 52.26722 -6.94972 P PPL IE L 30 0 29 Europe/Dublin 2010-08-14 +3301857 Dunbrody Dunbrody 52.23528 -6.9525 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301858 Buttermilk Castle Buttermilk Castle 52.25361 -6.97917 S CSTL IE L 30 0 1 Europe/Dublin 2010-08-14 +3301859 J. F. Kennedy Memorial Park J. F. Kennedy Memorial Park 52.32056 -6.9075 L PRK IE L 30 0 66 Europe/Dublin 2010-08-14 +3301860 Thistletown Thistletown 52.3125 -6.89889 L LCTY IE L 30 0 69 Europe/Dublin 2010-08-14 +3301861 Knockea Knockea 52.29722 -6.90611 L LCTY IE L 30 0 77 Europe/Dublin 2010-08-14 +3301862 Dunmain Cross Roads Dunmain Cross Roads 52.30361 -6.87528 P PPL IE L 30 0 66 Europe/Dublin 2010-08-14 +3301863 Ballykeerogebeg Ballykeerogebeg 52.29556 -6.92861 L LCTY IE L 30 0 57 Europe/Dublin 2010-08-14 +3301864 Killesk Cross Roads Killesk Cross Roads 52.28306 -6.90111 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3301865 Cloonagh Cloonagh 52.31417 -6.88083 L LCTY IE L 30 0 66 Europe/Dublin 2010-08-14 +3301866 Gusserane Gusserane 52.30556 -6.8775 L LCTY IE L 30 0 66 Europe/Dublin 2010-08-14 +3301867 Nash Nash 52.32389 -6.87139 L LCTY IE L 30 0 62 Europe/Dublin 2010-08-14 +3301868 Nash Bridge Nash Bridge 52.31833 -6.855 P PPL IE L 30 0 54 Europe/Dublin 2010-08-14 +3301869 Ballygarvan Bridge Ballygarvan Bridge 52.31333 -6.83194 P PPL IE L 30 0 46 Europe/Dublin 2010-08-14 +3301870 Rathumney Rathumney 52.29222 -6.85889 L LCTY IE L 30 0 56 Europe/Dublin 2010-08-14 +3301871 Aughboy Bridge Aughboy Bridge 52.32472 -6.88556 P PPL IE L 30 0 67 Europe/Dublin 2010-08-14 +3301872 Kilbraney Kilbraney 52.32444 -6.83472 P PPL IE L 30 0 52 Europe/Dublin 2010-08-14 +3301873 Taylorstown Cross Roads Taylorstown Cross Roads 52.26667 -6.79944 P PPL IE L 30 0 9 Europe/Dublin 2010-08-14 +3301874 Taylorstown Bridge Taylorstown Bridge 52.275 -6.79167 P PPL IE L 30 0 9 Europe/Dublin 2010-08-14 +3301875 Mullinderry Bridge Mullinderry Bridge 52.29222 -6.80778 P PPL IE L 30 0 34 Europe/Dublin 2010-08-14 +3301876 Yoletown Yoletown 52.29278 -6.82722 L LCTY IE L 30 0 35 Europe/Dublin 2010-08-14 +3301877 Five Cross Roads Five Cross Roads 52.28417 -6.78583 P PPL IE L 30 0 23 Europe/Dublin 2010-08-14 +3301878 Loughnageer Loughnageer 52.2825 -6.78889 L LCTY IE L 30 0 14 Europe/Dublin 2010-08-14 +3301879 Rochestown Rochestown 52.28417 -6.76444 P PPL IE L 30 0 22 Europe/Dublin 2010-08-14 +3301880 Tianarath Cross Roads Tianarath Cross Roads 52.30028 -6.80306 P PPL IE L 30 0 45 Europe/Dublin 2010-08-14 +3301881 Hores Mead Bridge Hores Mead Bridge 52.30278 -6.73667 P PPL IE L 30 0 21 Europe/Dublin 2010-08-14 +3301882 Bryanstown House Bryanstown House 52.30583 -6.78778 S HSEC IE L 30 0 45 Europe/Dublin 2010-08-14 +3301883 Louggraigue House Louggraigue House 52.30861 -6.75944 P PPL IE L 30 0 49 Europe/Dublin 2010-08-14 +3301884 Stoneenrath Cross Roads Stoneenrath Cross Roads 52.30917 -6.72861 P PPL IE L 30 0 26 Europe/Dublin 2010-08-14 +3301885 Ballyowen Ballyowen 52.27 -6.75778 P PPL IE L 30 0 7 Europe/Dublin 2010-08-14 +3301886 Garrycullen Garrycullen 52.24556 -6.8125 P PPL IE L 30 0 3 Europe/Dublin 2010-08-14 +3301887 Nelson Bridge Nelson Bridge 52.26472 -6.76694 P PPL IE L 30 0 5 Europe/Dublin 2010-08-14 +3301888 Ballylannan Ballylannan 52.26944 -6.78444 L LCTY IE L 30 0 5 Europe/Dublin 2010-08-14 +3301889 Kiltra House Kiltra House 52.23972 -6.74667 S HSEC IE L 30 0 2 Europe/Dublin 2010-08-14 +3301890 Newtown Newtown 52.23 -6.76 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301891 Blackhall Blackhall 52.21361 -6.74611 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301892 Lady’s Well Lady's Well 52.21167 -6.74639 H WLL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3301893 Bannow House Bannow House 52.22639 -6.74056 S HSEC IE L 30 0 1 Europe/Dublin 2010-08-14 +3301894 Cullenstown Cullenstown 52.21694 -6.72861 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301895 Coolseskin Coolseskin 52.22111 -6.70194 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3301896 Coolishal Coolishal 52.23694 -6.70111 L LCTY IE L 30 0 4 Europe/Dublin 2010-08-14 +3301897 Johnstown Johnstown 52.23583 -6.68139 L LCTY IE L 30 0 8 Europe/Dublin 2010-08-14 +3301898 Dane’s Castle Dane's Castle 52.24694 -6.72694 S CSTL IE L 30 0 6 Europe/Dublin 2010-08-14 +3301899 Balloughton House Balloughton House 52.2475 -6.71167 S HSEC IE L 30 0 7 Europe/Dublin 2010-08-14 +3301900 Busherstown Busherstown 52.24556 -6.69722 L LCTY IE L 30 0 9 Europe/Dublin 2010-08-14 +3301901 Sheastown Cross Roads Sheastown Cross Roads 52.25694 -6.72444 P PPL IE L 30 0 9 Europe/Dublin 2010-08-14 +3301902 Quitchery Cross Roads Quitchery Cross Roads 52.25694 -6.69139 P PPL IE L 30 0 16 Europe/Dublin 2010-08-14 +3301903 Rath Rath 52.22111 -6.66111 L LCTY IE L 30 0 3 Europe/Dublin 2010-08-14 +3301904 Ambrosetown Ambrosetown 52.24944 -6.67167 L LCTY IE L 30 0 16 Europe/Dublin 2010-08-14 +3301905 Coolboy Coolboy 52.31972 -6.81611 L LCTY IE L 30 0 64 Europe/Dublin 2010-08-14 +3301906 Ballynamona Ballynamona 52.31778 -6.79583 P PPL IE L 30 0 67 Europe/Dublin 2010-08-14 +3301907 Koyle Koyle 52.30806 -6.81167 P PPL IE L 30 0 42 Europe/Dublin 2010-08-14 +3301908 Newcastle Newcastle 52.32111 -6.76972 L LCTY IE L 30 0 62 Europe/Dublin 2010-08-14 +3301909 Kilcavan Kilcavan 52.26667 -6.72056 L LCTY IE L 30 0 14 Europe/Dublin 2010-08-14 +3301910 Raheenduff House Raheenduff House 52.31778 -6.73083 S HSEC IE L 30 0 33 Europe/Dublin 2010-08-14 +3301911 Rosspile Rosspile 52.2975 -6.74528 L LCTY IE L 30 0 18 Europe/Dublin 2010-08-14 +3301912 Coolcliffe House Coolcliffe House 52.29278 -6.72778 S HSEC IE L 30 0 21 Europe/Dublin 2010-08-14 +3301913 Slevoy Castle Slevoy Castle 52.29972 -6.70806 S CSTL IE L 30 0 30 Europe/Dublin 2010-08-14 +3301914 Eakin’s Cross Roads Eakin's Cross Roads 52.30694 -6.7125 P PPL IE L 30 0 30 Europe/Dublin 2010-08-14 +3301915 White Cross Roads White Cross Roads 52.27083 -6.70472 P PPL IE L 30 0 18 Europe/Dublin 2010-08-14 +3301916 Doyle’s Cross Roads Doyle's Cross Roads 52.27917 -6.69111 P PPL IE L 30 0 31 Europe/Dublin 2010-08-14 +3301917 Hawkshaws Bridge Hawkshaws Bridge 52.32056 -6.70222 P PPL IE L 30 0 37 Europe/Dublin 2010-08-14 +3301918 Goff’s Bridge Goff's Bridge 52.30917 -6.71694 P PPL IE L 30 0 29 Europe/Dublin 2010-08-14 +3301919 Ardenagh Ardenagh 52.29639 -6.6925 L LCTY IE L 30 0 35 Europe/Dublin 2010-08-14 +3301925 Waddingtown Waddingtown 52.28306 -6.65556 L LCTY IE L 30 0 51 Europe/Dublin 2010-08-14 +3301926 Edwardstown Edwardstown 52.26611 -6.64389 L LCTY IE L 30 0 41 Europe/Dublin 2010-08-14 +3301927 Scurloge Cross Roads Scurloge Cross Roads 52.25639 -6.63194 P PPL IE L 30 0 41 Europe/Dublin 2010-08-14 +3301928 Bellgrove Bellgrove 52.24139 -6.6425 L LCTY IE L 30 0 18 Europe/Dublin 2010-08-14 +3301929 Ballynagale House Ballynagale House 52.29694 -6.65472 S HSEC IE L 30 0 64 Europe/Dublin 2010-08-14 +3301930 Aughfaa Aughfaa 52.30444 -6.64056 L LCTY IE L 30 0 72 Europe/Dublin 2010-08-14 +3301931 Howlan’s Cross Roads Howlan's Cross Roads 52.30667 -6.6725 P PPL IE L 30 0 60 Europe/Dublin 2010-08-14 +3301932 Coolcull Coolcull 52.30583 -6.67806 L LCTY IE L 30 0 53 Europe/Dublin 2010-08-14 +3301933 Aughnagroagh Bridge Aughnagroagh Bridge 52.32639 -6.64056 P PPL IE L 30 0 54 Europe/Dublin 2010-08-14 +3301934 Brownscastle Bridge Brownscastle Bridge 52.33833 -6.65333 P PPL IE L 30 0 72 Europe/Dublin 2010-08-14 +3301935 Mulmontry Bridge Mulmontry Bridge 52.33417 -6.67667 P PPL IE L 30 0 46 Europe/Dublin 2010-08-14 +3301936 Deerpark Deerpark 52.33139 -6.70972 L LCTY IE L 30 0 39 Europe/Dublin 2010-08-14 +3301937 Cullenstown Cullenstown 52.33861 -6.71972 P PPL IE L 30 0 44 Europe/Dublin 2010-08-14 +3301938 Wattle Cross Roads Wattle Cross Roads 52.35194 -6.7 P PPL IE L 30 0 61 Europe/Dublin 2010-08-14 +3301939 Shanowle Shanowle 52.34361 -6.7075 L LCTY IE L 30 0 51 Europe/Dublin 2010-08-14 +3301940 Kilgarvan Kilgarvan 52.34389 -6.68583 L LCTY IE L 30 0 53 Europe/Dublin 2010-08-14 +3301941 Barry’s Cross Roads Barry's Cross Roads 52.35361 -6.64917 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +3301942 Harristown Harristown 52.35222 -6.64028 P PPL IE L 30 0 71 Europe/Dublin 2010-08-14 +3301943 Wilkinstown Cross Roads Wilkinstown Cross Roads 52.35972 -6.65 P PPL IE L 30 0 77 Europe/Dublin 2010-08-14 +3301944 Poulpeasly Poulpeasly 52.35917 -6.685 L LCTY IE L 30 0 69 Europe/Dublin 2010-08-14 +3301945 Castlehaystown Castlehaystown 52.37194 -6.67833 L LCTY IE L 30 0 73 Europe/Dublin 2010-08-14 +3301946 Ballyvergin Ballyvergin 52.36861 -6.70861 L LCTY IE L 30 0 97 Europe/Dublin 2010-08-14 +3301947 Ballyclemock Ballyclemock 52.34472 -6.75861 L LCTY IE L 30 0 72 Europe/Dublin 2010-08-14 +3301948 Assagart Assagart 52.35306 -6.73194 L LCTY IE L 30 0 58 Europe/Dublin 2010-08-14 +3301949 Fary House Fary House 52.33306 -6.74667 S HSEC IE L 30 0 51 Europe/Dublin 2010-08-14 +3301950 Rathnageeragh Rathnageeragh 52.33417 -6.83944 P PPL IE L 30 0 70 Europe/Dublin 2010-08-14 +3301951 Bridge Quarter Bridge Quarter 52.35444 -6.81361 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301952 Kilscanlan Kilscanlan 52.35472 -6.84 L LCTY IE L 30 0 67 Europe/Dublin 2010-08-14 +3301953 Cushenstown Cushenstown 52.36639 -6.85944 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301954 Cassagh Cassagh 52.33917 -6.86694 L LCTY IE L 30 0 68 Europe/Dublin 2010-08-14 +3301955 Millquarter Millquarter 52.38139 -6.84028 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301956 Raheevarrren Raheevarrren 52.35556 -6.79528 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301957 Ballyshannon Ballyshannon 52.36944 -6.76472 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301958 Mylerspark Mylerspark 52.35083 -6.88222 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301959 Courthoyle Courthoyle 52.36944 -6.81361 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3301960 Tinnacarrick Philip Tinnacarrick Philip 52.34611 -6.82528 L LCTY IE L 30 0 79 Europe/Dublin 2010-08-14 +3301961 Tellarought Tellarought 52.33472 -6.8875 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301962 Lookout Lookout 52.34417 -6.90417 L LCTY IE L 30 0 91 Europe/Dublin 2010-08-14 +3301963 Ballylane House Ballylane House 52.36111 -6.91583 S HSEC IE L 30 0 103 Europe/Dublin 2010-08-14 +3301964 Arnestown House Arnestown House 52.37 -6.91306 S HSEC IE L 30 0 92 Europe/Dublin 2010-08-14 +3301965 Finshoge Finshoge 52.36639 -6.89333 L LCTY IE L 30 0 82 Europe/Dublin 2010-08-14 +3301966 Rochestown Rochestown 52.37056 -6.87861 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3301967 Camlin Hill Camlin Hill 52.36722 -6.94917 T HLL IE L 30 0 75 Europe/Dublin 2010-08-14 +3301968 The Pink Point The Pink Point 52.35333 -6.99028 T PT IE L 30 0 18 Europe/Dublin 2010-08-14 +3301969 Killowen House Killowen House 52.33194 -6.97889 S HSEC IE L 30 0 28 Europe/Dublin 2010-08-14 +3301970 Ballyholuck Ballyholuck 52.32861 -7.04556 L LCTY IE L 13 0 88 Europe/Dublin 2010-08-14 +3301971 Ballinclare Ballinclare 52.33056 -7.07667 L LCTY IE L 13 0 128 Europe/Dublin 2010-08-14 +3301972 Robinstown Robinstown 52.34444 -7.06333 L LCTY IE L 13 0 135 Europe/Dublin 2010-08-14 +3301973 Carrickcloney Carrickcloney 52.34167 -7.02306 L LCTY IE L 13 0 70 Europe/Dublin 2010-08-14 +3301974 Halfway House Halfway House 52.33861 -7.02778 S HSEC IE L 13 0 86 Europe/Dublin 2010-08-14 +3301975 Knockbrack Knockbrack 52.3475 -7.09583 P PPL IE L 13 0 147 Europe/Dublin 2010-08-14 +3301976 Haggard Haggard 52.3525 -7.07861 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3301977 Kilbride Kilbride 52.36583 -7.06889 L LCTY IE L 13 0 150 Europe/Dublin 2010-08-14 +3301978 Flemingstown Flemingstown 52.36278 -7.06472 L LCTY IE L 13 0 145 Europe/Dublin 2010-08-14 +3301979 Forestalstown Forestalstown 52.36472 -7.01889 L LCTY IE L 13 0 53 Europe/Dublin 2010-08-14 +3301980 Stokestown House Stokestown House 52.36139 -6.9725 S HSEC IE L 30 0 35 Europe/Dublin 2010-08-14 +3301981 Busherstown Busherstown 52.37611 -7.02167 P PPL IE L 13 0 85 Europe/Dublin 2010-08-14 +3301982 Ballytosy Ballytosy 52.37389 -7.08583 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3301983 Glenmore Glenmore An Gleann Mor,Glenmore 52.35167 -7.025 P PPL IE IE L 13 0 57 Europe/Dublin 2010-08-14 +3301984 Rathnasmolagh Rathnasmolagh 52.33639 -7.10917 L LCTY IE L 13 0 126 Europe/Dublin 2010-08-14 +3301985 Ballyhomuck Ballyhomuck 52.335 -7.14389 L LCTY IE L 13 0 79 Europe/Dublin 2010-08-14 +3301986 Ballynakill Ballynakill 52.36083 -7.13778 L LCTY IE L 13 0 150 Europe/Dublin 2010-08-14 +3301987 Farnoge Farnoge 52.35222 -7.11 L LCTY IE L 13 0 160 Europe/Dublin 2010-08-14 +3301988 Deerpark Deerpark 52.355 -7.16556 L LCTY IE L 13 0 93 Europe/Dublin 2010-08-14 +3301989 Molum Molum 52.3325 -7.19472 L LCTY IE L 13 0 63 Europe/Dublin 2010-08-14 +3301990 Clonassy Wood Clonassy Wood 52.34667 -7.17667 V FRST IE L 13 0 70 Europe/Dublin 2010-08-14 +3301991 Carrigatubbria Wood Carrigatubbria Wood 52.34861 -7.21583 V FRST IE L 13 0 138 Europe/Dublin 2010-08-14 +3301992 Killinaspick Killinaspick 52.34083 -7.24889 L LCTY IE L 13 0 84 Europe/Dublin 2010-08-14 +3301993 Rochestown Rochestown 52.35306 -7.22194 L LCTY IE L 13 0 156 Europe/Dublin 2010-08-14 +3301994 Tobernabrone Tobernabrone 52.35222 -7.26306 L LCTY IE L 13 0 133 Europe/Dublin 2010-08-14 +3301995 Corbally Wood Corbally Wood 52.37167 -7.26194 V FRST IE L 13 0 162 Europe/Dublin 2010-08-14 +3301996 Ballyknockbeg Ballyknockbeg 52.37417 -7.19611 L LCTY IE L 13 0 93 Europe/Dublin 2010-08-14 +3301997 Ballynacooly Ballynacooly 52.37194 -7.20944 L LCTY IE L 13 0 99 Europe/Dublin 2010-08-14 +3301998 Pollanassa River Pollanassa River 52.35806 -7.17333 H STM IE L 13 0 77 Europe/Dublin 2010-08-14 +3301999 Cull Island Cull Island 52.20361 -6.63444 T ISL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302000 Seven Heads Seven Heads 52.10667 -6.61167 T CAPE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302001 Sebber Bridge Sebber Bridge 52.11889 -6.59472 T SPIT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302002 The Goose Rock The Goose Rock 52.13167 -6.58611 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302003 Short Bohur Short Bohur 52.12333 -6.53861 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302004 Saint Patrick’s Bridge Saint Patrick's Bridge 52.13972 -6.57194 T SPIT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302005 Saint Patrick’s Bridge Saint Patrick's Bridge 52.16694 -6.56833 T SPIT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302006 Tercheen Tercheen 52.15278 -6.405 T RK IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302007 Ballyteige Castle Ballyteige Castle 52.18083 -6.57917 S CSTL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302008 Inish Inish 52.19056 -6.60361 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302009 Ballyteige Burrow Ballyteige Burrow 52.1975 -6.62111 H INLT IE L 30 0 1 Europe/Dublin 2010-08-14 +3302010 Newtown Newtown 52.18944 -6.595 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302011 Ballygrangans Ballygrangans 52.18333 -6.55444 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302012 Bastardstown Bastardstown 52.1875 -6.54333 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302013 Grange Grange 52.19306 -6.57194 L LCTY IE L 30 0 3 Europe/Dublin 2010-08-14 +3302014 Killiag Killiag 52.20083 -6.58417 L LCTY IE L 30 0 3 Europe/Dublin 2010-08-14 +3302015 Ballyharty House Ballyharty House 52.21167 -6.56639 S HSEC IE L 30 0 6 Europe/Dublin 2010-08-14 +3302016 Park Park 52.20833 -6.62194 P PPL IE L 30 0 2 Europe/Dublin 2010-08-14 +3302017 Pembrokestown Pembrokestown 52.21889 -6.60528 L LCTY IE L 30 0 4 Europe/Dublin 2010-08-14 +3302018 Rathangan Cross Roads Rathangan Cross Roads 52.22806 -6.60889 P PPL IE L 30 0 12 Europe/Dublin 2010-08-14 +3302019 Robinstown Robinstown 52.23722 -6.60722 L LCTY IE L 30 0 21 Europe/Dublin 2010-08-14 +3302020 Newtown House Newtown House 52.24194 -6.57972 S HSEC IE L 30 0 22 Europe/Dublin 2010-08-14 +3302021 Star Bridge Star Bridge 52.24972 -6.60222 P PPL IE L 30 0 32 Europe/Dublin 2010-08-14 +3302022 Knocktown Cross Roads Knocktown Cross Roads 52.24722 -6.61056 P PPL IE L 30 0 34 Europe/Dublin 2010-08-14 +3302023 Croase Croase 52.2575 -6.59944 L LCTY IE L 30 0 40 Europe/Dublin 2010-08-14 +3302024 Heavenstown Heavenstown 52.25861 -6.58056 L LCTY IE L 30 0 39 Europe/Dublin 2010-08-14 +3302025 Ballycappoge Ballycappoge 52.25528 -6.545 L LCTY IE L 30 0 29 Europe/Dublin 2010-08-14 +3302026 Newcastle Cross Roads Newcastle Cross Roads 52.26194 -6.55083 P PPL IE L 30 0 36 Europe/Dublin 2010-08-14 +3302027 Cohunon Cohunon 52.24167 -6.54167 P PPL IE L 30 0 22 Europe/Dublin 2010-08-14 +3302028 Sleedagh House Sleedagh House 52.27139 -6.53556 S HSEC IE L 30 0 55 Europe/Dublin 2010-08-14 +3302029 Mulrankin Mulrankin 52.23611 -6.53472 L LCTY IE L 30 0 20 Europe/Dublin 2010-08-14 +3302030 Ballyconnick House Ballyconnick House 52.26583 -6.60889 S HSEC IE L 30 0 54 Europe/Dublin 2010-08-14 +3302031 Cleristown Cleristown 52.27306 -6.58583 P PPL IE L 30 0 54 Europe/Dublin 2010-08-14 +3302032 Kilmanman Cross Roads Kilmanman Cross Roads 52.27889 -6.57278 P PPL IE L 30 0 54 Europe/Dublin 2010-08-14 +3302033 Newbridge Newbridge 52.28056 -6.55611 P PPL IE L 30 0 59 Europe/Dublin 2010-08-14 +3302034 Kate’s Cross Roads Kate's Cross Roads 52.28028 -6.53167 P PPL IE L 30 0 62 Europe/Dublin 2010-08-14 +3302035 Bargy Commons Bargy Commons 52.29111 -6.56806 L LCTY IE L 30 0 83 Europe/Dublin 2010-08-14 +3302036 Forth Commons Forth Commons 52.3 -6.54778 L LCTY IE L 30 0 102 Europe/Dublin 2010-08-14 +3302037 Ballyshelin Ballyshelin 52.29611 -6.59528 L LCTY IE L 30 0 109 Europe/Dublin 2010-08-14 +3302038 Mullanour Mullanour 52.30694 -6.53667 L LCTY IE L 30 0 109 Europe/Dublin 2010-08-14 +3302039 Tracystown East Tracystown East 52.28444 -6.60917 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302040 Turner’s Cross Roads Turner's Cross Roads 52.30972 -6.61111 P PPL IE L 30 0 94 Europe/Dublin 2010-08-14 +3302041 Coolstuff Cross Roads Coolstuff Cross Roads 52.31833 -6.60528 P PPL IE L 30 0 96 Europe/Dublin 2010-08-14 +3302042 Boley’s Cross Roads Boley's Cross Roads 52.20528 -6.51417 P PPL IE L 30 0 5 Europe/Dublin 2010-08-14 +3302043 Ballyhealy Ballyhealy 52.19111 -6.52111 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302044 Ballyhealy House Ballyhealy House 52.1875 -6.51722 S HSEC IE L 30 0 1 Europe/Dublin 2010-08-14 +3302045 Genstown House Genstown House 52.19806 -6.49889 S HSEC IE L 30 0 1 Europe/Dublin 2010-08-14 +3302046 Tilladavin Tilladavin 52.19472 -6.50806 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302047 Cross Scales House Cross Scales House 52.20722 -6.48389 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302048 Ballyboy Ballyboy 52.20889 -6.46722 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302049 Butlerstown Castle Butlerstown Castle 52.21861 -6.46417 S CSTL IE L 30 0 4 Europe/Dublin 2010-08-14 +3302050 Silverspring House Silverspring House 52.22833 -6.48778 S HSEC IE L 30 0 11 Europe/Dublin 2010-08-14 +3302051 Tenacre Cross Roads Tenacre Cross Roads 52.21778 -6.50306 P PPL IE L 30 0 11 Europe/Dublin 2010-08-14 +3302052 Tullabards Tullabards 52.21667 -6.5325 L LCTY IE L 30 0 15 Europe/Dublin 2010-08-14 +3302053 Sigginstown Islands Sigginstown Islands 52.18917 -6.45111 T ISLS IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302054 Cousinstown Cousinstown 52.22444 -6.52333 L LCTY IE L 30 0 15 Europe/Dublin 2010-08-14 +3302055 Hilltown Hilltown 52.23028 -6.46222 P PPL IE L 30 0 6 Europe/Dublin 2010-08-14 +3302056 Greenfield Cross Roads Greenfield Cross Roads 52.22444 -6.43306 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302057 Cotts Cotts 52.2125 -6.42528 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302058 Churchtown Churchtown 52.20083 -6.42778 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302059 Ballymurry Ballymurry 52.19194 -6.43167 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302060 Furziestown Furziestown 52.1975 -6.41722 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302061 Ballytory Ballytory 52.21139 -6.41389 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302062 Tacuanshane Tacuanshane 52.20556 -6.41028 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302063 Barnawheel Barnawheel 52.17861 -6.39639 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302064 Saint Dogue’s Well Saint Dogue's Well 52.17333 -6.34917 H WLL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302065 Carna Carna 52.1925 -6.35222 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302066 Ballytra Ballytra 52.19722 -6.35972 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302067 Ballare Ballare 52.20556 -6.35806 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302068 Crosstintan Point Crosstintan Point 52.18639 -6.33639 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302069 Ring Ring 52.19056 -6.37056 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302070 Ballysheen Ballysheen 52.19611 -6.3675 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302071 Ballyhitt Ballyhitt 52.21722 -6.36139 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302072 Saint Helens Saint Helens 52.22556 -6.33556 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302073 Barracks Cross Roads Barracks Cross Roads 52.22694 -6.34583 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302074 Twelveacre Cross Roads Twelveacre Cross Roads 52.23222 -6.40472 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302075 Ballyell Ballyell 52.23222 -6.36833 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302076 Ballygerry Ballygerry 52.24583 -6.34722 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302077 Bing Bing 52.23889 -6.31778 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302078 Ballygarvey Ballygarvey 52.24889 -6.40111 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302079 Churchtown Churchtown 52.2525 -6.40306 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302080 Ballybro Ballybro 52.25972 -6.39639 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302081 Rathdowney Rathdowney 52.26 -6.42444 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302082 Horetown Horetown 52.2425 -6.44333 L LCTY IE L 30 0 6 Europe/Dublin 2010-08-14 +3302083 Yoletown Yoletown 52.23806 -6.46278 L LCTY IE L 30 0 9 Europe/Dublin 2010-08-14 +3302084 Ballyeogly House Ballyeogly House 52.24 -6.47444 S HSEC IE L 30 0 11 Europe/Dublin 2010-08-14 +3302085 Mountpleasant House Mountpleasant House 52.25472 -6.49417 S HSEC IE L 30 0 30 Europe/Dublin 2010-08-14 +3302086 Ballytinoge House Ballytinoge House 52.26889 -6.46361 S HSEC IE L 30 0 15 Europe/Dublin 2010-08-14 +3302087 The Bailies The Bailies 52.18889 -6.27028 H SHOL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302088 South Channel South Channel 52.255 -6.30972 H CHN IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302089 Holdens Bed Holdens Bed 52.26194 -6.30556 H SHOL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302090 Long Bank Long Bank 52.28444 -6.29 H SHOL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302091 New Ground New Ground 52.28833 -6.22694 H SHOL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302092 Lucifer Shoals Lucifer Shoals 52.33333 -6.21472 H SHOL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302093 Walsheslough Walsheslough 52.26833 -6.38194 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302094 Mervyn Mervyn 52.27861 -6.40083 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302095 Ballykelly House Ballykelly House 52.27694 -6.45056 S HSEC IE L 30 0 8 Europe/Dublin 2010-08-14 +3302096 Woodtown Woodtown 52.28556 -6.41083 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302097 Walshestown Walshestown 52.25639 -6.47778 P PPL IE L 30 0 22 Europe/Dublin 2010-08-14 +3302098 Aspealy Bridge Aspealy Bridge 52.25944 -6.45528 P PPL IE L 30 0 10 Europe/Dublin 2010-08-14 +3302099 Orristown Cross Roads Orristown Cross Roads 52.25889 -6.45333 P PPL IE L 30 0 10 Europe/Dublin 2010-08-14 +3302100 Piercetown Piercetown 52.28333 -6.4825 P PPL IE L 30 0 32 Europe/Dublin 2010-08-14 +3302101 Ballykilliane Ballykilliane 52.28861 -6.48083 P PPL IE L 30 0 35 Europe/Dublin 2010-08-14 +3302102 Redmondstown Redmondstown 52.29833 -6.525 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302103 Rowesmount House Rowesmount House 52.29222 -6.45333 S HSEC IE L 30 0 3 Europe/Dublin 2010-08-14 +3302104 Rathaspick House Rathaspick House 52.30333 -6.49194 S HSEC IE L 30 0 69 Europe/Dublin 2010-08-14 +3302105 Drinagh Drinagh 52.30667 -6.47083 P PPL IE L 30 0 19 Europe/Dublin 2010-08-14 +3302106 Coal Channel Coal Channel 52.31778 -6.40833 H CHN IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302107 Rockland House Rockland House 52.32417 -6.44361 S HSEC IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302108 Clonard Great Clonard Great 52.31639 -6.49389 S EST IE L 30 0 75 Europe/Dublin 2010-08-14 +3302109 Clonard Little Clonard Little 52.32583 -6.49417 P PPL IE L 30 0 49 Europe/Dublin 2010-08-14 +3302110 Ballyboggan Ballyboggan 52.34167 -6.5 L LCTY IE L 30 0 18 Europe/Dublin 2010-08-14 +3302111 Barntown Castle Barntown Castle 52.335 -6.52278 S CSTL IE L 30 0 74 Europe/Dublin 2010-08-14 +3302112 Colestown Colestown 52.32389 -6.54056 L LCTY IE L 30 0 129 Europe/Dublin 2010-08-14 +3302113 Shelmaliere Common Shelmaliere Common 52.31556 -6.55972 L LCTY IE L 30 0 170 Europe/Dublin 2010-08-14 +3302114 Ballintlea Ballintlea 52.31722 -6.6 P PPL IE L 30 0 111 Europe/Dublin 2010-08-14 +3302115 Growtown Growtown 52.33139 -6.6075 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3302116 Larkins Cross Roads Larkins Cross Roads 52.33639 -6.55972 P PPL IE L 30 0 77 Europe/Dublin 2010-08-14 +3302117 Davidstown Davidstown 52.33778 -6.55694 P PPL IE L 30 0 84 Europe/Dublin 2010-08-14 +3302118 Holmestown Holmestown 52.3475 -6.57833 P PPL IE L 30 0 55 Europe/Dublin 2010-08-14 +3302119 Cullentra House Cullentra House 52.34167 -6.51667 S HSEC IE L 30 0 55 Europe/Dublin 2010-08-14 +3302120 Beggarin Island Beggarin Island 52.36556 -6.40639 T ISL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302121 Ballyla Ballyla 52.36778 -6.42778 P PPL IE L 30 0 3 Europe/Dublin 2010-08-14 +3302122 Knottown Knottown 52.36167 -6.45139 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3302123 Crosstown Crosstown 52.35278 -6.47 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302124 Curracloe Channel Curracloe Channel 52.34944 -6.37194 H CHN IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3302125 Newcastle Newcastle 52.36611 -6.52806 P PPL IE L 30 0 35 Europe/Dublin 2010-08-14 +3302126 Tykillen House Tykillen House 52.365 -6.53639 S HSEC IE L 30 0 39 Europe/Dublin 2010-08-14 +3302127 Healthfield House Healthfield House 52.36583 -6.55861 S HSEC IE L 30 0 45 Europe/Dublin 2010-08-14 +3302128 Polehore House Polehore House 52.35972 -6.54972 S HSEC IE L 30 0 42 Europe/Dublin 2010-08-14 +3302129 Muchwood Cross Roads Muchwood Cross Roads 52.35806 -6.55778 P PPL IE L 30 0 48 Europe/Dublin 2010-08-14 +3302130 Tomcool Cross Roads Tomcool Cross Roads 52.34583 -6.61389 P PPL IE L 30 0 56 Europe/Dublin 2010-08-14 +3302131 Ballyhennigan Ballyhennigan 52.33694 -6.62389 L LCTY IE L 30 0 56 Europe/Dublin 2010-08-14 +3302132 Davidstown Davidstown 52.35583 -6.6275 L LCTY IE L 30 0 69 Europe/Dublin 2010-08-14 +3302133 Blackhall Blackhall 52.36528 -6.62139 L LCTY IE L 30 0 72 Europe/Dublin 2010-08-14 +3302134 King Channel King Channel 52.23917 -7.04972 H CHN IE M 27 0 16 Europe/Dublin 2010-08-14 +3302135 Owenduff River Owenduff River 52.25889 -6.75472 H STM IE L 30 0 5 Europe/Dublin 2010-08-14 +3302136 Lough Lough 52.22528 -6.39056 P PPLL IE L 30 0 1 Europe/Dublin 2010-08-14 +3302137 Gardamus Well Gardamus Well 52.25056 -6.52028 H WLL IE L 30 0 35 Europe/Dublin 2010-08-14 +3302138 Bearstown Bearstown 52.35639 -7.00556 P PPLL IE L 13 0 6 Europe/Dublin 2010-08-14 +3302140 Ballytarsney Ballytarsney 52.2975 -7.24667 P PPL IE L 13 0 39 Europe/Dublin 2010-08-14 +3302141 Harbour View Harbour View 52.20222 -7.0025 S EST IE M 27 0 49 Europe/Dublin 2010-08-14 +3302247 Milltown Milltown 52.38583 -7.245 P PPL IE L 13 0 139 Europe/Dublin 2010-08-14 +3302248 Ballyhimmin Ballyhimmin 52.38861 -7.2275 P PPL IE L 13 0 125 Europe/Dublin 2010-08-14 +3302249 Harristown Harristown 52.40611 -7.24444 P PPL IE L 13 0 140 Europe/Dublin 2010-08-14 +3302250 Condonstown Condonstown 52.42361 -7.26361 P PPL IE L 13 0 153 Europe/Dublin 2010-08-14 +3302251 Catstown Catstown 52.43861 -7.26333 P PPL IE L 13 0 156 Europe/Dublin 2010-08-14 +3302252 Ballylusky Ballylusky 52.38444 -7.16611 P PPL IE L 13 0 146 Europe/Dublin 2010-08-14 +3302253 Derrylacky River Derrylacky River 52.39306 -7.18417 H STM IE L 13 0 137 Europe/Dublin 2010-08-14 +3302254 Ballynoony Ballynoony 52.39333 -7.16389 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302255 Smithstown Smithstown 52.4 -7.10417 L LCTY IE L 13 0 151 Europe/Dublin 2010-08-14 +3302256 Darbystown Darbystown 52.39583 -7.085 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302257 Ballywairy Ballywairy 52.38639 -7.085 L LCTY IE L 13 0 151 Europe/Dublin 2010-08-14 +3302258 Ballymartin Ballymartin 52.3925 -7.10667 P PPL IE L 13 0 151 Europe/Dublin 2010-08-14 +3302259 Ballallog Ballallog 52.40167 -7.05694 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3302260 Ballycrony Ballycrony 52.38917 -7.03417 L LCTY IE L 13 0 158 Europe/Dublin 2010-08-14 +3302261 Ballycurrin Ballycurrin 52.39611 -7.0425 P PPL IE L 13 0 159 Europe/Dublin 2010-08-14 +3302262 Ballyconnaught Ballyconnaught 52.42111 -7.075 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302263 Ballytarsna Ballytarsna 52.42361 -7.16306 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302264 Mullennakill Mullennakill 52.43 -7.10778 P PPL IE L 13 0 147 Europe/Dublin 2010-08-14 +3302265 Shunbagh Shunbagh 52.38472 -7.00083 P PPL IE L 13 0 82 Europe/Dublin 2010-08-14 +3302266 Slievecarragh Slievecarragh 52.39694 -7.01 L LCTY IE L 13 0 91 Europe/Dublin 2010-08-14 +3302267 Ballyreddy Ballyreddy 52.40611 -7.01556 P PPL IE L 13 0 77 Europe/Dublin 2010-08-14 +3302268 Ballyknock Ballyknock 52.41778 -7.00333 P PPL IE L 13 0 21 Europe/Dublin 2010-08-14 +3302269 Hoodsgrove Hoodsgrove 52.40722 -7.00472 L LCTY IE L 13 0 64 Europe/Dublin 2010-08-14 +3302270 Tinnaranny Tinnaranny 52.41972 -6.98278 L LCTY IE L 13 0 15 Europe/Dublin 2010-08-14 +3302271 Chilcomb Park Chilcomb Park 52.39333 -6.97 L PRK IE L 13 0 10 Europe/Dublin 2010-08-14 +3302272 Bawnjames House Bawnjames House 52.40611 -6.95083 S HSEC IE L 13 0 10 Europe/Dublin 2010-08-14 +3302273 Rosemount House Rosemount House 52.42056 -6.93972 S HSEC IE L 30 0 14 Europe/Dublin 2010-08-14 +3302274 Ballilogue Ballilogue 52.43194 -6.98639 L LCTY IE L 13 0 18 Europe/Dublin 2010-08-14 +3302275 Tinnaslaty Tinnaslaty 52.43167 -6.94389 L LCTY IE L 13 0 8 Europe/Dublin 2010-08-14 +3302276 Garranvabby Garranvabby 52.44472 -6.95472 L LCTY IE L 13 0 67 Europe/Dublin 2010-08-14 +3302277 Mount Garrett Bridge Mount Garrett Bridge 52.42417 -6.92833 P PPL IE L 13 0 26 Europe/Dublin 2010-08-14 +3302278 Kiltown Cross Roads Kiltown Cross Roads 52.45194 -6.97889 P PPL IE L 13 0 93 Europe/Dublin 2010-08-14 +3302279 The Rower The Rower The Rower 52.45556 -6.95694 P PPL IE L 13 0 93 Europe/Dublin 2010-08-14 +3302280 Tinnascolly Tinnascolly 52.45028 -6.93972 P PPL IE L 13 0 52 Europe/Dublin 2010-08-14 +3302285 Cullentragh Cullentragh 52.47556 -6.975 L LCTY IE L 13 0 212 Europe/Dublin 2010-08-14 +3302286 Clediagh River Clediagh River 52.45667 -7.01472 H STM IE L 13 0 51 Europe/Dublin 2010-08-14 +3302287 Ballygub Ballygub 52.47944 -6.9975 P PPL IE L 13 0 188 Europe/Dublin 2010-08-14 +3302288 Oldcourt Oldcourt 52.4825 -7.03111 L LCTY IE L 13 0 129 Europe/Dublin 2010-08-14 +3302289 Ballinvarry Ballinvarry 52.49194 -6.96472 L LCTY IE L 13 0 238 Europe/Dublin 2010-08-14 +3302290 Monasilloge Monasilloge 52.50389 -7.00639 L LCTY IE L 13 0 287 Europe/Dublin 2010-08-14 +3302291 Cappagh Cappagh 52.50528 -7.06972 P PPL IE L 13 0 54 Europe/Dublin 2010-08-14 +3302292 Rockview Rockview 52.49861 -7.05694 P PPL IE L 13 0 75 Europe/Dublin 2010-08-14 +3302293 Kilcross Kilcross 52.49167 -7.0525 L LCTY IE L 13 0 75 Europe/Dublin 2010-08-14 +3302294 Killeen Killeen 52.46028 -7.06611 L LCTY IE L 13 0 125 Europe/Dublin 2010-08-14 +3302295 Mount Alto Mount Alto 52.46472 -7.07028 T HLL IE L 13 0 152 Europe/Dublin 2010-08-14 +3302296 Dysertmore Dysertmore 52.45194 -7.01667 P PPL IE L 13 0 27 Europe/Dublin 2010-08-14 +3302297 Curraghmore Curraghmore 52.44694 -7.08722 L LCTY IE L 13 0 159 Europe/Dublin 2010-08-14 +3302298 Ballyvool Ballyvool 52.455 -7.09917 L LCTY IE L 13 0 149 Europe/Dublin 2010-08-14 +3302299 Coolroebeg Coolroebeg 52.46194 -7.12111 L LCTY IE L 13 0 83 Europe/Dublin 2010-08-14 +3302300 Ballycocksoos Ballycocksoos 52.47556 -7.10667 L LCTY IE L 13 0 79 Europe/Dublin 2010-08-14 +3302301 Powerswood Powerswood 52.47361 -7.13472 L LCTY IE L 13 0 148 Europe/Dublin 2010-08-14 +3302302 Kilvinoge Kilvinoge 52.45306 -7.13333 L LCTY IE L 13 0 141 Europe/Dublin 2010-08-14 +3302303 Ballykenna Ballykenna 52.43556 -7.08444 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302304 Glenballyvally Glenballyvally 52.44 -7.03028 P PPL IE L 13 0 80 Europe/Dublin 2010-08-14 +3302305 Ballyfoile Ballyfoile 52.435 -7.02889 L LCTY IE L 13 0 80 Europe/Dublin 2010-08-14 +3302306 Pleberstown Pleberstown 52.49333 -7.145 L LCTY IE L 13 0 87 Europe/Dublin 2010-08-14 +3302307 Baunskeha Baunskeha 52.4875 -7.14222 L LCTY IE L 13 0 107 Europe/Dublin 2010-08-14 +3302308 Castlecosker Castlecosker 52.46611 -7.16472 L LCTY IE L 13 0 168 Europe/Dublin 2010-08-14 +3302309 Ballylowra Ballylowra 52.49583 -7.17444 L LCTY IE L 13 0 80 Europe/Dublin 2010-08-14 +3302310 Castlebanny Castlebanny 52.44222 -7.16861 L LCTY IE L 13 0 166 Europe/Dublin 2010-08-14 +3302311 Coolmore Coolmore 52.45722 -7.22639 L LCTY IE L 13 0 88 Europe/Dublin 2010-08-14 +3302312 Agbandler Castle Agbandler Castle 52.46639 -7.25667 S CSTL IE L 13 0 100 Europe/Dublin 2010-08-14 +3302313 Croan Cross Roads Croan Cross Roads 52.48194 -7.26167 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +3302314 Kiltarcan House Kiltarcan House 52.47333 -7.1875 S HSEC IE L 13 0 97 Europe/Dublin 2010-08-14 +3302315 Baysrath Baysrath 52.49417 -7.26222 L LCTY IE L 13 0 77 Europe/Dublin 2010-08-14 +3302316 Barrettstown Barrettstown 52.49889 -7.24 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3302317 Tinvaun Tinvaun 52.50806 -7.24306 P PPL IE L 13 0 77 Europe/Dublin 2010-08-14 +3302318 Ballynamona Ballynamona 52.50778 -7.1825 P PPL IE L 13 0 70 Europe/Dublin 2010-08-14 +3302319 Oldtown Oldtown 52.52 -7.21056 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +3302320 Stonecarthy Stonecarthy 52.52222 -7.24333 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3302321 Rathduff Rathduff 52.53667 -7.25333 L LCTY IE L 13 0 63 Europe/Dublin 2010-08-14 +3302322 Baunreagh Baunreagh 52.51667 -7.25 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3302323 Dangan House Dangan House 52.51556 -7.12778 S HSEC IE L 13 0 40 Europe/Dublin 2010-08-14 +3302324 Norelands House Norelands House 52.53917 -7.19556 S HSEC IE L 13 0 47 Europe/Dublin 2010-08-14 +3302325 Ballylinch Bridge Ballylinch Bridge 52.54333 -7.19333 P PPL IE L 13 0 48 Europe/Dublin 2010-08-14 +3302326 Rathduff Rathduff 52.54889 -7.17222 L LCTY IE L 13 0 81 Europe/Dublin 2010-08-14 +3302327 Legan Legan 52.54111 -7.14639 L LCTY IE L 13 0 64 Europe/Dublin 2010-08-14 +3302328 Little Arrigle River Little Arrigle River 52.51556 -7.15472 H STM IE L 13 0 57 Europe/Dublin 2010-08-14 +3302329 Priory Priory 52.53444 -7.26139 P PPL IE L 13 0 62 Europe/Dublin 2010-08-14 +3302330 Kellsgrange Kellsgrange 52.55389 -7.25306 L LCTY IE L 13 0 60 Europe/Dublin 2010-08-14 +3302331 Crohana House Crohana House 52.56139 -7.19472 S HSEC IE L 13 0 50 Europe/Dublin 2010-08-14 +3302332 Cotterellsrath Cotterellsrath 52.56944 -7.2425 S EST IE L 13 0 64 Europe/Dublin 2010-08-14 +3302333 Annamult Annamult 52.565 -7.21444 L LCTY IE L 13 0 53 Europe/Dublin 2010-08-14 +3302334 Killarney Killarney 52.55722 -7.17667 L LCTY IE L 13 0 70 Europe/Dublin 2010-08-14 +3302335 Woolengrange Woolengrange 52.56861 -7.1825 L LCTY IE L 13 0 59 Europe/Dublin 2010-08-14 +3302336 Maiden Hall Maiden Hall 52.58111 -7.18444 S EST IE L 13 0 52 Europe/Dublin 2010-08-14 +3302337 Burnchurch House Burnchurch House 52.58333 -7.19806 S HSEC IE L 13 0 53 Europe/Dublin 2010-08-14 +3302338 Dansefort Cross Roads Dansefort Cross Roads 52.58306 -7.235 P PPL IE L 13 0 66 Europe/Dublin 2010-08-14 +3302339 Dundaryark Dundaryark 52.58722 -7.26 L LCTY IE L 13 0 72 Europe/Dublin 2010-08-14 +3302340 Loughboreen Loughboreen 52.58472 -7.15972 L LCTY IE L 13 0 65 Europe/Dublin 2010-08-14 +3302341 Kilbline Castle Kilbline Castle 52.57611 -7.14639 S CSTL IE L 13 0 74 Europe/Dublin 2010-08-14 +3302342 Summerhill House Summerhill House 52.56139 -7.13944 S HSEC IE L 13 0 77 Europe/Dublin 2010-08-14 +3302343 Lady’s Well Lady's Well 52.5675 -7.24583 H WLL IE L 13 0 64 Europe/Dublin 2010-08-14 +3302344 Kitree House Kitree House 52.60028 -7.20972 S HSEC IE L 13 0 73 Europe/Dublin 2010-08-14 +3302345 Rathclogh Rathclogh 52.59111 -7.22444 L LCTY IE L 13 0 68 Europe/Dublin 2010-08-14 +3302346 Wallslough Wallslough 52.61139 -7.22972 P PPL IE L 13 0 78 Europe/Dublin 2010-08-14 +3302347 Grevine Grevine 52.60111 -7.23722 L LCTY IE L 13 0 75 Europe/Dublin 2010-08-14 +3302348 Bishopslough Newtown Bishopslough Newtown 52.59556 -7.14306 P PPL IE L 13 0 71 Europe/Dublin 2010-08-14 +3302349 Castlefield House Castlefield House 52.58722 -7.11917 S HSEC IE L 13 0 68 Europe/Dublin 2010-08-14 +3302350 Tullaherin Tullaherin 52.57944 -7.12417 P PPL IE L 13 0 70 Europe/Dublin 2010-08-14 +3302351 Sugarstown House Sugarstown House 52.56667 -7.11611 S HSEC IE L 13 0 68 Europe/Dublin 2010-08-14 +3302352 Carrickmorne Carrickmorne 52.5175 -7.10917 L LCTY IE L 13 0 75 Europe/Dublin 2010-08-14 +3302353 Kilcullen Kilcullen 52.51417 -7.08417 S HSEC IE L 13 0 53 Europe/Dublin 2010-08-14 +3302354 Kiljames Kiljames 52.535 -7.1 L LCTY IE L 13 0 77 Europe/Dublin 2010-08-14 +3302355 Munginacody Munginacody 52.53 -7.09472 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3302356 Kilkieran Kilkieran 52.51444 -7.04667 L LCTY IE L 13 0 120 Europe/Dublin 2010-08-14 +3302357 Fiddaun Bridge Fiddaun Bridge 52.51222 -7.03083 P PPL IE L 13 0 148 Europe/Dublin 2010-08-14 +3302358 Saddle Hill Saddle Hill 52.52194 -7.04778 T HLL IE L 13 0 147 Europe/Dublin 2010-08-14 +3302359 Blessington Blessington 52.53139 -7.04556 L LCTY IE L 13 0 162 Europe/Dublin 2010-08-14 +3302360 Raheendonore Raheendonore 52.52222 -7.01889 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302361 Cappanagh Cappanagh 52.53778 -7.05028 P PPL IE L 13 0 166 Europe/Dublin 2010-08-14 +3302362 Cappanagh Gap Cappanagh Gap 52.54583 -7.02806 T GAP IE L 13 0 170 Europe/Dublin 2010-08-14 +3302363 Ballynakill Ballynakill 52.52639 -6.97111 L LCTY IE L 13 0 136 Europe/Dublin 2010-08-14 +3302364 Gorlnigh Wood Gorlnigh Wood 52.51639 -6.97972 V FRST IE L 13 0 345 Europe/Dublin 2010-08-14 +3302365 Coolroe House Coolroe House 52.54 -6.97306 S HSEC IE L 13 0 58 Europe/Dublin 2010-08-14 +3302366 Tikerlemin Tikerlemin 52.54806 -7.01083 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302367 Oldgrange Oldgrange 52.55667 -7.00361 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302368 Glencoum Wood Glencoum Wood 52.56222 -6.99861 V FRST IE L 13 0 152 Europe/Dublin 2010-08-14 +3302369 Freagh Hill Freagh Hill 52.56306 -7.03417 T HLL IE L 13 0 182 Europe/Dublin 2010-08-14 +3302370 Raheenroche Raheenroche 52.56972 -7.06083 L LCTY IE L 13 0 167 Europe/Dublin 2010-08-14 +3302371 Stakally Stakally 52.57306 -6.97306 L LCTY IE L 13 0 112 Europe/Dublin 2010-08-14 +3302372 Curraghlane Curraghlane 52.58417 -7.01528 P PPL IE L 13 0 101 Europe/Dublin 2010-08-14 +3302373 Annaleck Annaleck 52.58611 -7.02333 P PPL IE L 13 0 96 Europe/Dublin 2010-08-14 +3302374 Skeaghvasteen Skeaghvasteen 52.59361 -6.98139 P PPL IE L 13 0 86 Europe/Dublin 2010-08-14 +3302375 Newtown Newtown 52.55667 -6.96694 L LCTY IE L 13 0 88 Europe/Dublin 2010-08-14 +3302376 Kilmanaheen Kilmanaheen 52.57278 -7.08639 P PPL IE L 13 0 95 Europe/Dublin 2010-08-14 +3302377 Bramblestown Bramblestown 52.59472 -7.06139 L LCTY IE L 13 0 58 Europe/Dublin 2010-08-14 +3302378 Cloghala Cross Roads Cloghala Cross Roads 52.59639 -7.10083 P PPL IE L 13 0 59 Europe/Dublin 2010-08-14 +3302379 The Grove The Grove 52.59694 -7.01694 P PPL IE L 13 0 74 Europe/Dublin 2010-08-14 +3302380 Scart Scart 52.58556 -7.06806 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3302381 Stoneen Stoneen 52.55694 -7.09806 P PPL IE L 13 0 87 Europe/Dublin 2010-08-14 +3302382 Shamrock Lodge Shamrock Lodge 52.5475 -7.06222 S HSE IE L 13 0 173 Europe/Dublin 2010-08-14 +3302383 Pollagh Pollagh 52.59833 -6.98333 L LCTY IE L 13 0 86 Europe/Dublin 2010-08-14 +3302384 Powerstown River Powerstown River 52.61806 -6.98361 H STM IE L 13 0 31 Europe/Dublin 2010-08-14 +3302385 Neigham Neigham 52.60028 -7.05972 L LCTY IE L 13 0 47 Europe/Dublin 2010-08-14 +3302386 Upper Grange Cross Roads Upper Grange Cross Roads 52.61417 -7.03 P PPL IE L 13 0 42 Europe/Dublin 2010-08-14 +3302387 Nicholls Cross Roads Nicholls Cross Roads 52.61083 -7.07917 P PPL IE L 13 0 51 Europe/Dublin 2010-08-14 +3302388 Milltown Cross Roads Milltown Cross Roads 52.59694 -6.95361 P PPL IE L 13 0 39 Europe/Dublin 2010-08-14 +3302389 Knockbarron South Knockbarron South 52.565 -6.94194 P PPL IE L 13 0 41 Europe/Dublin 2010-08-14 +3302390 Knockbodaly Knockbodaly 52.55167 -6.94639 P PPL IE L 13 0 25 Europe/Dublin 2010-08-14 +3302391 Ballynaboley Cross Roads Ballynaboley Cross Roads 52.60972 -7.11389 P PPL IE L 13 0 68 Europe/Dublin 2010-08-14 +3302392 Gowran Castle Gowran Castle 52.62806 -7.05028 S CSTL IE L 13 0 45 Europe/Dublin 2010-08-14 +3302393 Bodalmore Bodalmore 52.60556 -7.25722 L LCTY IE L 13 0 74 Europe/Dublin 2010-08-14 +3302394 Foulkstown Foulkstown 52.62083 -7.25944 L LCTY IE L 13 0 74 Europe/Dublin 2010-08-14 +3302395 Prospect House Prospect House 52.62389 -7.24528 S HSEC IE L 13 0 78 Europe/Dublin 2010-08-14 +3302396 Sheestown House Sheestown House 52.61444 -7.19444 S HSEC IE L 13 0 58 Europe/Dublin 2010-08-14 +3302397 Prospect Prospect 52.62333 -7.17667 L LCTY IE L 13 0 61 Europe/Dublin 2010-08-14 +3302398 Kilferagh House Kilferagh House 52.62722 -7.19833 S HSEC IE L 13 0 59 Europe/Dublin 2010-08-14 +3302399 Warrington Warrington 52.63417 -7.22056 L LCTY IE L 13 0 63 Europe/Dublin 2010-08-14 +3302400 Highrath Highrath 52.63694 -7.18111 L LCTY IE L 13 0 67 Europe/Dublin 2010-08-14 +3302401 Dunbell Dunbell 52.62278 -7.145 L LCTY IE L 13 0 74 Europe/Dublin 2010-08-14 +3302402 Inch House Inch House 52.64361 -7.21222 S HSEC IE L 13 0 61 Europe/Dublin 2010-08-14 +3302403 Newtown House Newtown House 52.6675 -7.24417 S HSEC IE L 13 0 67 Europe/Dublin 2010-08-14 +3302404 Bonnetsrath Bonnetsrath 52.67722 -7.245 L LCTY IE L 13 0 71 Europe/Dublin 2010-08-14 +3302405 Brownstown Brownstown 52.67583 -7.22139 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3302406 Higginstown Higginstown 52.66861 -7.19167 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3302407 Clara Castle Clara Castle 52.66972 -7.15056 S CSTL IE L 13 0 103 Europe/Dublin 2010-08-14 +3302408 Cellarstown Cellarstown 52.66361 -7.21389 P PPL IE L 13 0 70 Europe/Dublin 2010-08-14 +3302409 Sandfordscourt Sandfordscourt 52.68556 -7.21278 L LCTY IE L 13 0 72 Europe/Dublin 2010-08-14 +3302410 Kilderry Kilderry 52.68306 -7.17389 P PPL IE L 13 0 86 Europe/Dublin 2010-08-14 +3302411 Feathallagh House Feathallagh House 52.68278 -7.15528 S HSEC IE L 13 0 116 Europe/Dublin 2010-08-14 +3302412 Clashwilliam Clashwilliam 52.62028 -7.11306 L LCTY IE L 13 0 72 Europe/Dublin 2010-08-14 +3302413 Blanchville House Blanchville House 52.62972 -7.12833 S HSEC IE L 13 0 79 Europe/Dublin 2010-08-14 +3302414 Sheafield Sheafield 52.63333 -7.09694 L LCTY IE L 13 0 69 Europe/Dublin 2010-08-14 +3302415 Brickana Brickana 52.64722 -7.10028 P PPL IE L 13 0 89 Europe/Dublin 2010-08-14 +3302416 Rathcash Rathcash 52.63667 -7.135 L LCTY IE L 13 0 83 Europe/Dublin 2010-08-14 +3302417 Rathgarvan Rathgarvan Clifden,Rathgarvan 52.64472 -7.14972 P PPL IE IE L 13 0 85 Europe/Dublin 2010-08-14 +3302418 Clarabricken Clarabricken 52.65833 -7.14694 L LCTY IE L 13 0 93 Europe/Dublin 2010-08-14 +3302419 Coolgrange Coolgrange 52.65 -7.13278 L LCTY IE L 13 0 92 Europe/Dublin 2010-08-14 +3302420 Freestone Hill Freestone Hill 52.65444 -7.12917 T HLL IE L 13 0 104 Europe/Dublin 2010-08-14 +3302421 Ballyquirk Ballyquirk 52.65639 -7.09389 L LCTY IE L 13 0 105 Europe/Dublin 2010-08-14 +3302422 Flagmount Flagmount 52.66056 -7.08861 L LCTY IE L 13 0 125 Europe/Dublin 2010-08-14 +3302423 Grangehill Grangehill 52.66667 -7.135 L LCTY IE L 13 0 129 Europe/Dublin 2010-08-14 +3302424 Kilmagar Kilmagar 52.67389 -7.14028 L LCTY IE L 13 0 129 Europe/Dublin 2010-08-14 +3302425 Ballyvalden Ballyvalden 52.68111 -7.0975 L LCTY IE L 13 0 157 Europe/Dublin 2010-08-14 +3302426 Jordanstown House Jordanstown House 52.67861 -7.04306 S HSEC IE L 13 0 77 Europe/Dublin 2010-08-14 +3302427 Garryduff Cross Roads Garryduff Cross Roads 52.66806 -7.04611 P PPL IE L 13 0 61 Europe/Dublin 2010-08-14 +3302428 Mountrothe House Mountrothe House 52.67083 -7.01111 S HSEC IE L 13 0 43 Europe/Dublin 2010-08-14 +3302429 View Mount View Mount 52.66833 -7.01083 S EST IE L 13 0 43 Europe/Dublin 2010-08-14 +3302430 Duninga House Duninga House 52.66722 -6.98444 S HSEC IE L 13 0 34 Europe/Dublin 2010-08-14 +3302431 Barraghcore House Barraghcore House 52.65083 -6.99194 S HSEC IE L 13 0 33 Europe/Dublin 2010-08-14 +3302432 Castlekelly Cross Roads Castlekelly Cross Roads 52.64278 -7.01556 P PPL IE L 13 0 35 Europe/Dublin 2010-08-14 +3302433 Redbog Redbog 52.63917 -7.04667 P PPL IE L 13 0 41 Europe/Dublin 2010-08-14 +3302434 Grange Lower Grange Lower 52.63111 -7.03583 L LCTY IE L 13 0 35 Europe/Dublin 2010-08-14 +3302435 Barrowmount Barrowmount 52.61944 -6.98556 S HSEC IE L 13 0 31 Europe/Dublin 2010-08-14 +3302436 Ballytarsha Ballytarsha 52.67583 -7.00583 L LCTY IE L 13 0 41 Europe/Dublin 2010-08-14 +3302437 Shankill Shankill 52.69472 -7.02333 L LCTY IE L 13 0 65 Europe/Dublin 2010-08-14 +3302438 Coorleagh Coorleagh 52.7 -7.05167 P PPL IE L 13 0 148 Europe/Dublin 2010-08-14 +3302439 Coolcuttia Coolcuttia 52.69556 -7.07417 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302440 Kellymount Kellymount 52.68944 -7.06056 L LCTY IE L 13 0 125 Europe/Dublin 2010-08-14 +3302441 Ballygorteen Ballygorteen 52.71389 -7.08806 P PPL IE L 13 0 164 Europe/Dublin 2010-08-14 +3302442 Baurnafea Baurnafea 52.71 -7.09694 L LCTY IE L 13 0 175 Europe/Dublin 2010-08-14 +3302443 Coolgreany Coolgreany 52.71222 -7.12167 L LCTY IE L 13 0 238 Europe/Dublin 2010-08-14 +3302444 Ossoryhill Ossoryhill 52.69778 -7.13528 L LCTY IE L 13 0 198 Europe/Dublin 2010-08-14 +3302445 Mount Rose Mount Rose 52.70944 -7.17389 S HSEC IE L 13 0 173 Europe/Dublin 2010-08-14 +3302446 Ballysallagh House Ballysallagh House 52.68944 -7.16028 L LCTY IE L 13 0 112 Europe/Dublin 2010-08-14 +3302447 Carrigeen Carrigeen 52.69889 -7.19056 L LCTY IE L 13 0 93 Europe/Dublin 2010-08-14 +3302448 Kilkieran Cross Roads Kilkieran Cross Roads 52.69833 -7.19917 P PPL IE L 13 0 84 Europe/Dublin 2010-08-14 +3302449 Cantwell’s Court Cantwell's Court 52.68972 -7.205 S EST IE L 13 0 72 Europe/Dublin 2010-08-14 +3302450 Radestown Radestown 52.69194 -7.24278 L LCTY IE L 13 0 82 Europe/Dublin 2010-08-14 +3302451 Knocknew Knocknew 52.71083 -7.23417 L LCTY IE L 13 0 115 Europe/Dublin 2010-08-14 +3302452 Bullockhill House Bullockhill House 52.71667 -7.25278 S HSEC IE L 13 0 96 Europe/Dublin 2010-08-14 +3302453 Ruthstown Ruthstown 52.72889 -7.245 L LCTY IE L 13 0 118 Europe/Dublin 2010-08-14 +3302454 Mohil Mohil 52.73167 -7.26194 L LCTY IE L 13 0 85 Europe/Dublin 2010-08-14 +3302455 Cave of Dunmore Cave of Dunmore 52.73444 -7.24667 S CAVE IE L 13 0 118 Europe/Dublin 2010-08-14 +3302456 Corbetstown Corbetstown 52.74 -7.235 L LCTY IE L 13 0 135 Europe/Dublin 2010-08-14 +3302457 Tullowbrin Tullowbrin 52.72111 -7.18111 L LCTY IE L 13 0 193 Europe/Dublin 2010-08-14 +3302458 Knockshanbally Knockshanbally 52.72889 -7.16944 L LCTY IE L 13 0 257 Europe/Dublin 2010-08-14 +3302459 Cloghpook Cloghpook 52.73333 -7.19139 P PPL IE L 13 0 193 Europe/Dublin 2010-08-14 +3302460 Drumerhin House Drumerhin House 52.73139 -7.20694 S HSEC IE L 13 0 153 Europe/Dublin 2010-08-14 +3302461 Muckalee River Muckalee River 52.74722 -7.24722 H STM IE L 13 0 108 Europe/Dublin 2010-08-14 +3302462 Muckalee Muckalee 52.75389 -7.20444 L LCTY IE L 13 0 166 Europe/Dublin 2010-08-14 +3302463 Somerton House Somerton House 52.755 -7.24333 S HSEC IE L 13 0 97 Europe/Dublin 2010-08-14 +3302464 Kilcollin Kilcollin 52.75778 -7.26139 L LCTY IE L 13 0 107 Europe/Dublin 2010-08-14 +3302465 Esker Esker 52.74778 -7.26111 L LCTY IE L 13 0 88 Europe/Dublin 2010-08-14 +3302466 Rockbrook House Rockbrook House 52.74472 -7.17806 S HSEC IE L 13 0 226 Europe/Dublin 2010-08-14 +3302467 Cloghnagh River Cloghnagh River 52.75028 -7.24472 H STM IE L 13 0 97 Europe/Dublin 2010-08-14 +3302468 Knockmajor Knockmajor 52.74944 -7.16 L LCTY IE L 13 0 266 Europe/Dublin 2010-08-14 +3302469 Coolraheen South Coolraheen South 52.745 -7.14667 L LCTY IE L 13 0 276 Europe/Dublin 2010-08-14 +3302470 Maudlin Maudlin 52.77222 -7.25417 L LCTY IE L 13 0 146 Europe/Dublin 2010-08-14 +3302471 Damerstown Damerstown 52.76722 -7.21833 L LCTY IE L 13 0 115 Europe/Dublin 2010-08-14 +3302472 Dysart Bridge Dysart Bridge 52.77667 -7.21417 P PPL IE L 13 0 120 Europe/Dublin 2010-08-14 +3302473 Clogbarinka Castle Clogbarinka Castle 52.76056 -7.17667 S CSTL IE L 13 0 186 Europe/Dublin 2010-08-14 +3302474 Ballycomy Ballycomy 52.78361 -7.23222 L LCTY IE L 13 0 140 Europe/Dublin 2010-08-14 +3302475 Knockanuddoge Knockanuddoge 52.78139 -7.18833 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3302476 Lisnarinshin Lisnarinshin 52.76333 -7.23861 L LCTY IE L 13 0 102 Europe/Dublin 2010-08-14 +3302477 Clashduff Clashduff 52.78944 -7.24722 L LCTY IE L 13 0 160 Europe/Dublin 2010-08-14 +3302478 Ballyhimmin Ballyhimmin 52.79583 -7.23833 L LCTY IE L 13 0 161 Europe/Dublin 2010-08-14 +3302479 Smithstown Smithstown 52.795 -7.17806 L LCTY IE L 13 0 173 Europe/Dublin 2010-08-14 +3302480 Smithstown House Smithstown House 52.79194 -7.20222 S HSEC IE L 13 0 148 Europe/Dublin 2010-08-14 +3302481 Cruckaun Cruckaun 52.78111 -7.20778 L LCTY IE L 13 0 135 Europe/Dublin 2010-08-14 +3302482 Ryan’s Cross Roads Ryan's Cross Roads 52.80611 -7.16306 P PPL IE L 13 0 197 Europe/Dublin 2010-08-14 +3302483 Uskerty Uskerty 52.78222 -7.15833 L LCTY IE L 13 0 161 Europe/Dublin 2010-08-14 +3302484 Coolraheen North Coolraheen North 52.765 -7.15667 L LCTY IE L 13 0 199 Europe/Dublin 2010-08-14 +3302485 Glebe House Glebe House 52.77194 -7.12056 S HSEC IE L 13 0 171 Europe/Dublin 2010-08-14 +3302486 Reevanagh Reevanagh 52.72944 -7.12694 P PPL IE L 13 0 279 Europe/Dublin 2010-08-14 +3302487 Kane’s Bridge Kane's Bridge 52.74194 -7.12056 P PPL IE L 13 0 221 Europe/Dublin 2010-08-14 +3302488 Griffin’s Bridge Griffin's Bridge 52.74694 -7.12611 P PPL IE L 13 0 246 Europe/Dublin 2010-08-14 +3302489 Millfall House Millfall House 52.76778 -7.08361 S HSEC IE L 13 0 167 Europe/Dublin 2010-08-14 +3302490 Kelly’s Bridge Kelly's Bridge 52.80222 -7.10944 P PPL IE L 13 0 256 Europe/Dublin 2010-08-14 +3302491 Croghtenclogh Croghtenclogh 52.80667 -7.11167 L LCTY IE L 13 0 256 Europe/Dublin 2010-08-14 +3302492 Dunn’s Cross Roads Dunn's Cross Roads 52.81306 -7.12278 P PPL IE L 13 0 245 Europe/Dublin 2010-08-14 +3302493 Barry’s Cross Roads Barry's Cross Roads 52.80833 -7.13361 P PPL IE L 13 0 227 Europe/Dublin 2010-08-14 +3302494 Aghamurky Aghamurky 52.80778 -7.18222 L LCTY IE L 13 0 178 Europe/Dublin 2010-08-14 +3302495 Colliery Colliery 52.81722 -7.14528 L LCTY IE L 13 0 186 Europe/Dublin 2010-08-14 +3302496 Collieries Collieries 52.82389 -7.13778 L LCTY IE L 13 0 199 Europe/Dublin 2010-08-14 +3302497 Gorteen Gorteen 52.82639 -7.15444 L LCTY IE L 13 0 163 Europe/Dublin 2010-08-14 +3302498 Coolbaun Coolbaun 52.8175 -7.17722 P PPL IE L 13 0 164 Europe/Dublin 2010-08-14 +3302499 Colliery Colliery 52.82583 -7.18889 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302500 Moneenroe Moneenroe 52.83444 -7.18972 L LCTY IE L 13 0 140 Europe/Dublin 2010-08-14 +3302501 Massford Bridge Massford Bridge 52.84222 -7.17222 P PPL IE L 13 0 146 Europe/Dublin 2010-08-14 +3302502 Cloneen Cloneen 52.84083 -7.14833 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302503 Railyard Railyard 52.83444 -7.14639 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3302504 Glenmagoo Glenmagoo Firoda Lower,Glenmagoo 52.8175 -7.25139 P PPL IE IE L 13 0 198 Europe/Dublin 2010-08-14 +3302505 Castle of Ardra Castle of Ardra 52.81972 -7.2075 S CSTL IE L 13 0 150 Europe/Dublin 2010-08-14 +3302506 Colliery Colliery 52.82722 -7.22889 P PPL IE L 13 0 145 Europe/Dublin 2010-08-14 +3302507 Ballylinnen Ballylinnen 52.83306 -7.22861 L LCTY IE L 13 0 145 Europe/Dublin 2010-08-14 +3302508 Skehana Skehana Skehana 52.8425 -7.25722 P PPL IE L 13 0 179 Europe/Dublin 2010-08-14 +3302509 Rathgarry Rathgarry 52.85194 -7.255 L LCTY IE L 13 0 167 Europe/Dublin 2010-08-14 +3302510 Aughatubbrid Aughatubbrid Aughatubbrid,Chatsworth 52.87861 -7.18222 P PPL IE IE L 13 0 154 Europe/Dublin 2010-08-14 +3302511 Coolnaleen Coolnaleen 52.86556 -7.18972 L LCTY IE L 13 0 155 Europe/Dublin 2010-08-14 +3302512 Kill Kill 52.86917 -7.1575 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3302513 Toortane Toortane 52.85944 -7.15111 P PPL IE L 13 0 150 Europe/Dublin 2010-08-14 +3302514 Clogh River Clogh River 52.8475 -7.16833 H STM IE L 13 0 146 Europe/Dublin 2010-08-14 +3302515 Loan Loan 52.84389 -7.20528 L LCTY IE L 13 0 156 Europe/Dublin 2010-08-14 +3302516 Glenavurder Bridge Glenavurder Bridge 52.86528 -7.25611 P PPL IE L 15 0 159 Europe/Dublin 2010-08-14 +3302517 Knock Ardagur Knock Ardagur 52.88056 -7.24667 T MT IE 00 0 153 Europe/Dublin 1998-02-09 +3302518 Graiguenahown Graiguenahown 52.88917 -7.235 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3302519 Moyadd Bridge Moyadd Bridge 52.88806 -7.17056 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +3302520 Slatt Bridge Slatt Bridge 52.87361 -7.16278 P PPL IE L 15 0 151 Europe/Dublin 2010-08-14 +3302521 Slat Lower Slat Lower 52.89222 -7.15 L LCTY IE L 15 0 153 Europe/Dublin 2010-08-14 +3302522 Slatt Upper Slatt Upper 52.88056 -7.14083 L LCTY IE L 15 0 153 Europe/Dublin 2010-08-14 +3302523 Hacketts Hill Hacketts Hill 52.87361 -7.12639 L LCTY IE L 15 0 153 Europe/Dublin 2010-08-14 +3302524 Farrans Farrans 52.89667 -7.08778 P PPL IE L 15 0 151 Europe/Dublin 2010-08-14 +3302525 Rushes Rushes 52.87833 -7.08444 L LCTY IE L 15 0 152 Europe/Dublin 2010-08-14 +3302526 Holly Park Holly Park 52.86778 -7.09583 L LCTY IE L 15 0 152 Europe/Dublin 2010-08-14 +3302527 Fairy Mount Fairy Mount 52.86722 -7.12389 L LCTY IE L 15 0 152 Europe/Dublin 2010-08-14 +3302528 Moscow Moscow 52.86389 -7.10194 L LCTY IE L 15 0 152 Europe/Dublin 2010-08-14 +3302529 Turra Turra 52.85944 -7.08528 L LCTY IE L 15 0 169 Europe/Dublin 2010-08-14 +3302530 Aghreena Aghreena 52.85417 -7.11 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3302531 Drumagh Drumagh 52.85167 -7.09278 P PPL IE L 15 0 177 Europe/Dublin 2010-08-14 +3302532 Moore’s Cross Roads Moore's Cross Roads 52.84889 -7.07194 P PPL IE L 15 0 238 Europe/Dublin 2010-08-14 +3302533 Towlerton House Towlerton House 52.8575 -7.06472 S HSEC IE L 15 0 204 Europe/Dublin 2010-08-14 +3302534 Aghaterry Aghaterry 52.86917 -7.06944 P PPL IE L 15 0 162 Europe/Dublin 2010-08-14 +3302535 Aghcross Aghcross 52.87361 -7.06 L LCTY IE L 15 0 159 Europe/Dublin 2010-08-14 +3302536 New Castle New Castle 52.8975 -7.06972 S CSTL IE L 15 0 152 Europe/Dublin 2010-08-14 +3302537 Knockvorlagh Knockvorlagh 52.88889 -7.07306 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +3302538 Gales Hill Gales Hill 52.8925 -7.05556 T HLL IE L 15 0 154 Europe/Dublin 2010-08-14 +3302539 Ashfield Ashfield 52.88972 -7.04417 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3302540 Oldleagh Oldleagh 52.87806 -7.02222 P PPL IE L 15 0 108 Europe/Dublin 2010-08-14 +3302541 Ballynakill Ballynakill 52.88056 -7.07333 P PPL IE L 15 0 155 Europe/Dublin 2010-08-14 +3302542 Coornariska Coornariska 52.8475 -7.04306 P PPL IE L 15 0 237 Europe/Dublin 2010-08-14 +3302543 Strand House Strand House 52.86833 -7.02778 S HSEC IE L 15 0 122 Europe/Dublin 2010-08-14 +3302544 Jake’s Hill Jake's Hill 52.83222 -7.10111 T HLL IE L 15 0 242 Europe/Dublin 2010-08-14 +3302545 Mayo Mayo 52.83667 -7.09778 L LCTY IE L 15 0 231 Europe/Dublin 2010-08-14 +3302546 Monavea Monavea 52.83361 -7.07111 L LCTY IE L 15 0 270 Europe/Dublin 2010-08-14 +3302547 Ardateggle Ardateggle 52.83083 -7.05722 L LCTY IE L 15 0 304 Europe/Dublin 2010-08-14 +3302548 Coorlaghan Coorlaghan 52.83833 -7.02639 P PPL IE L 15 0 292 Europe/Dublin 2010-08-14 +3302549 Ardough House Ardough House 52.79528 -7.05722 S HSEC IE L 15 0 294 Europe/Dublin 2010-08-14 +3302550 Rossmore Bog Rossmore Bog 52.81611 -7.02417 L LCTY IE L 15 0 319 Europe/Dublin 2010-08-14 +3302551 Springhill House Springhill House 52.82972 -6.98528 S HSEC IE L 15 0 124 Europe/Dublin 2010-08-14 +3302552 Springhill Springhill 52.83556 -6.99778 L LCTY IE L 15 0 158 Europe/Dublin 2010-08-14 +3302553 Ballyhid Ballyhid 52.82056 -6.96472 L LCTY IE L 15 0 41 Europe/Dublin 2010-08-14 +3302554 Clonmore Clonmore 52.84194 -6.97444 L LCTY IE L 15 0 39 Europe/Dublin 2010-08-14 +3302555 Curragh House Curragh House 52.85139 -6.97861 S HSEC IE L 15 0 44 Europe/Dublin 2010-08-14 +3302556 Herondale House Herondale House 52.86389 -6.98667 S HSEC IE L 15 0 52 Europe/Dublin 2010-08-14 +3302557 Leagh Leagh 52.86361 -6.95833 L LCTY IE L 15 0 41 Europe/Dublin 2010-08-14 +3302558 Slealy Slealy 52.85222 -6.94833 L LCTY IE L 15 0 42 Europe/Dublin 2010-08-14 +3302559 Knockbeg College Knockbeg College 52.86583 -6.9375 S SCH IE L 15 0 44 Europe/Dublin 2010-08-14 +3302560 Ballytiniska Cross Roads Ballytiniska Cross Roads 52.87417 -6.9625 P PPL IE L 15 0 44 Europe/Dublin 2010-08-14 +3302561 Bohernasear House Bohernasear House 52.87417 -6.97194 S HSEC IE L 15 0 44 Europe/Dublin 2010-08-14 +3302562 Hollymount House Hollymount House 52.88 -6.96361 S HSEC IE L 15 0 48 Europe/Dublin 2010-08-14 +3302563 Grange Castle Grange Castle 52.89472 -6.95 S CSTL IE L 15 0 50 Europe/Dublin 2010-08-14 +3302564 Clonagh House Clonagh House 52.8925 -6.9725 S HSEC IE L 15 0 58 Europe/Dublin 2010-08-14 +3302565 Coolanagh Cross Roads Coolanagh Cross Roads 52.8975 -6.98306 P PPL IE L 15 0 63 Europe/Dublin 2010-08-14 +3302566 Fushoge River Fushoge River 52.81361 -6.95611 H STM IE L 15 0 42 Europe/Dublin 2010-08-14 +3302567 Arless Arless 52.89472 -7.02111 L LCTY IE L 15 0 114 Europe/Dublin 2010-08-14 +3302568 Ballymacar Ballymacar 52.38194 -6.90667 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302569 Begerin Begerin 52.38972 -6.86028 L LCTY IE L 30 0 80 Europe/Dublin 2010-08-14 +3302570 Lacken Lacken 52.40333 -6.86611 L LCTY IE L 30 0 82 Europe/Dublin 2010-08-14 +3302571 Newtown House Newtown House 52.40167 -6.89444 S HSEC IE L 30 0 113 Europe/Dublin 2010-08-14 +3302572 Bawnmore House Bawnmore House 52.40556 -6.92361 S HSEC IE L 30 0 68 Europe/Dublin 2010-08-14 +3302573 Mountgarrett Castle Mountgarrett Castle 52.41389 -6.93028 S CSTL IE L 30 0 46 Europe/Dublin 2010-08-14 +3302574 Scark House Scark House 52.41639 -6.88778 S HSEC IE L 30 0 77 Europe/Dublin 2010-08-14 +3302575 Berkeley Forest House Berkeley Forest House 52.41556 -6.87861 S HSEC IE L 30 0 78 Europe/Dublin 2010-08-14 +3302576 Robinstown House Robinstown House 52.41556 -6.82139 S HSEC IE L 30 0 94 Europe/Dublin 2010-08-14 +3302577 Corcoran’s Cross Roads Corcoran's Cross Roads 52.42083 -6.86056 P PPL IE L 30 0 77 Europe/Dublin 2010-08-14 +3302578 Ballyanne Ballyanne 52.42528 -6.91556 P PPL IE L 30 0 41 Europe/Dublin 2010-08-14 +3302579 Rathgarogue Rathgarogue 52.42889 -6.85889 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3302580 Ballynabanoge Ballynabanoge 52.43861 -6.89944 L LCTY IE L 30 0 70 Europe/Dublin 2010-08-14 +3302581 Coolback Coolback 52.43861 -6.9175 L LCTY IE L 30 0 29 Europe/Dublin 2010-08-14 +3302582 Ballyleigh Ballyleigh 52.45333 -6.89778 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3302583 Ballynacoolagh Ballynacoolagh 52.45694 -6.91833 L LCTY IE L 30 0 33 Europe/Dublin 2010-08-14 +3302584 Coolhill Coolhill 52.4625 -6.93167 L LCTY IE L 15 0 58 Europe/Dublin 2010-08-14 +3302585 Mungan Mungan 52.46639 -6.95139 L LCTY IE L 15 0 115 Europe/Dublin 2010-08-14 +3302586 Clogghill Clogghill 52.47222 -6.94694 L LCTY IE L 13 0 98 Europe/Dublin 2010-08-14 +3302587 Pollmounty Bridge Pollmounty Bridge 52.46778 -6.89917 P PPL IE L 15 0 76 Europe/Dublin 2010-08-14 +3302588 Drummin Drummin 52.47556 -6.91083 L LCTY IE L 15 0 68 Europe/Dublin 2010-08-14 +3302589 Kilconne Kilconne 52.47722 -6.93167 L LCTY IE L 15 0 20 Europe/Dublin 2010-08-14 +3302590 Curraun Curraun 52.46361 -6.88056 L LCTY IE L 30 0 79 Europe/Dublin 2010-08-14 +3302591 Templeludigan Templeludigan 52.46556 -6.86806 L LCTY IE L 30 0 101 Europe/Dublin 2010-08-14 +3302592 Raheen Raheen Raheen 52.395 -6.7975 P PPL IE L 30 0 82 Europe/Dublin 2010-08-14 +3302593 Raheenaclonagh Raheenaclonagh 52.38694 -6.79778 L LCTY IE L 30 0 78 Europe/Dublin 2010-08-14 +3302594 Courthoyle Courthoyle 52.38389 -6.80056 P PPL IE L 30 0 79 Europe/Dublin 2010-08-14 +3302595 Rochestown Rochestown 52.39417 -6.77694 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302596 Ballinvegga Ballinvegga 52.43556 -6.83611 L LCTY IE L 30 0 93 Europe/Dublin 2010-08-14 +3302597 Palace East Palace East 52.4275 -6.79333 L LCTY IE L 30 0 127 Europe/Dublin 2010-08-14 +3302598 Palace Palace 52.41806 -6.81528 L LCTY IE L 30 0 106 Europe/Dublin 2010-08-14 +3302599 Forestwood Forestwood 52.4375 -6.7875 L LCTY IE L 30 0 142 Europe/Dublin 2010-08-14 +3302600 Knockstown Knockstown 52.44222 -6.77861 P PPL IE L 30 0 150 Europe/Dublin 2010-08-14 +3302601 Pollpensty Pollpensty 52.45444 -6.78722 L LCTY IE L 30 0 147 Europe/Dublin 2010-08-14 +3302602 Donard Donard 52.44861 -6.8075 L LCTY IE L 30 0 139 Europe/Dublin 2010-08-14 +3302603 Ballygalvert Ballygalvert 52.4575 -6.82639 L LCTY IE L 30 0 127 Europe/Dublin 2010-08-14 +3302604 Meelgarrow Meelgarrow 52.45917 -6.79972 L LCTY IE L 30 0 146 Europe/Dublin 2010-08-14 +3302605 Rathphaulin Rathphaulin 52.46611 -6.78472 L LCTY IE L 30 0 143 Europe/Dublin 2010-08-14 +3302606 Ballindoney Ballindoney 52.47556 -6.81944 L LCTY IE L 30 0 189 Europe/Dublin 2010-08-14 +3302607 Coolbawn Cottage Coolbawn Cottage 52.48278 -6.77389 S HSE IE L 30 0 122 Europe/Dublin 2010-08-14 +3302608 Monamolin Monamolin 52.49194 -6.82694 L LCTY IE L 30 0 298 Europe/Dublin 2010-08-14 +3302610 Crooked Bridge Crooked Bridge 52.50167 -6.78611 P PPL IE L 30 0 163 Europe/Dublin 2010-08-14 +3302611 Ballybaun Ballybaun 52.50778 -6.81861 L LCTY IE L 30 0 283 Europe/Dublin 2010-08-14 +3302612 Ballycrinnigan Rock Ballycrinnigan Rock 52.50056 -6.83528 T RK IE L 30 0 300 Europe/Dublin 2010-08-14 +3302613 Carrigvahanagh Carrigvahanagh 52.48417 -6.86056 T HLL IE L 30 0 284 Europe/Dublin 2010-08-14 +3302614 Tomgarrow Tomgarrow 52.38611 -6.74083 L LCTY IE L 30 0 72 Europe/Dublin 2010-08-14 +3302615 Barracks Village Barracks Village 52.38917 -6.72028 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +3302616 Oldcourt Oldcourt 52.40222 -6.74694 L LCTY IE L 30 0 97 Europe/Dublin 2010-08-14 +3302617 Carrickmastia Hill Carrickmastia Hill 52.41389 -6.74556 T HLL IE L 30 0 116 Europe/Dublin 2010-08-14 +3302618 Ballagh Ballagh 52.40972 -6.76778 L LCTY IE L 30 0 107 Europe/Dublin 2010-08-14 +3302619 Coolnacon Coolnacon 52.42528 -6.74722 P PPL IE L 30 0 121 Europe/Dublin 2010-08-14 +3302620 Tomfarney Tomfarney 52.435 -6.73889 P PPL IE L 30 0 100 Europe/Dublin 2010-08-14 +3302621 Raheenduff Raheenduff 52.42167 -6.71611 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302622 Borsiloge Cross Roads Borsiloge Cross Roads 52.38806 -6.68806 P PPL IE L 30 0 95 Europe/Dublin 2010-08-14 +3302623 Camaross Hill Camaross Hill 52.38222 -6.69667 T HLL IE L 30 0 125 Europe/Dublin 2010-08-14 +3302624 Newtown Newtown 52.4025 -6.69333 L LCTY IE L 30 0 80 Europe/Dublin 2010-08-14 +3302625 Coolnagree Coolnagree 52.39583 -6.67111 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302626 Galbally Galbally 52.40306 -6.64167 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3302627 Spring Bridge Spring Bridge 52.39694 -6.64056 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3302628 Tomfarney Upper Tomfarney Upper 52.41083 -6.68389 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302629 Kellystown Kellystown 52.41917 -6.69083 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3302630 Raheen Raheen 52.43944 -6.67722 L LCTY IE L 30 0 69 Europe/Dublin 2010-08-14 +3302631 Ballybrennan House Ballybrennan House 52.43333 -6.65139 S HSEC IE L 30 0 68 Europe/Dublin 2010-08-14 +3302632 Raheennahoon Hill Raheennahoon Hill 52.41833 -6.65361 T HLL IE L 30 0 71 Europe/Dublin 2010-08-14 +3302633 Ballyeden Bridge Ballyeden Bridge 52.44361 -6.67389 P PPL IE L 30 0 68 Europe/Dublin 2010-08-14 +3302634 Carrigunane Carrigunane 52.42333 -6.64611 L LCTY IE L 30 0 70 Europe/Dublin 2010-08-14 +3302635 Barinoney Cross Roads Barinoney Cross Roads 52.37833 -6.6525 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3302636 Ballinclay Ballinclay 52.38167 -6.63472 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302637 Tourincarly Tourincarly 52.45417 -6.73472 L LCTY IE L 30 0 99 Europe/Dublin 2010-08-14 +3302638 Cloghbaun Bridge Cloghbaun Bridge 52.46194 -6.71028 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +3302639 Ballyboro Ballyboro 52.46833 -6.72556 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302640 Anghnagappall Bridge Anghnagappall Bridge 52.47194 -6.70667 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3302641 Ballymackesy House Ballymackesy House 52.45861 -6.68278 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +3302642 Moneytucker Moneytucker 52.47583 -6.68722 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302643 Courtnaenddy Cross Roads Courtnaenddy Cross Roads 52.48111 -6.68639 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3302644 Askintarney Askintarney 52.47583 -6.7775 P PPL IE L 30 0 128 Europe/Dublin 2010-08-14 +3302645 White House White House 52.48972 -6.73583 S HSEC IE L 30 0 86 Europe/Dublin 2010-08-14 +3302646 Garraun Garraun 52.49806 -6.73583 L LCTY IE L 30 0 101 Europe/Dublin 2010-08-14 +3302647 River View River View 52.5025 -6.7525 L LCTY IE L 30 0 126 Europe/Dublin 2010-08-14 +3302648 Rathylane Rathylane 52.49 -6.70722 L LCTY IE L 30 0 78 Europe/Dublin 2010-08-14 +3302649 Knockmore Knockmore 52.50111 -6.71167 P PPL IE L 30 0 115 Europe/Dublin 2010-08-14 +3302650 Cloheden Cloheden 52.49972 -6.685 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +3302651 Templescoby Templescoby 52.49861 -6.64972 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302652 The Leap The Leap 52.48694 -6.66111 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3302653 Aughnacrow Bridge Aughnacrow Bridge 52.48806 -6.63944 P PPL IE L 30 0 71 Europe/Dublin 2010-08-14 +3302654 Davidstown Davidstown 52.47806 -6.65361 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3302655 Kereight Kereight 52.40694 -6.62361 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3302656 Garranstackle Garranstackle 52.42028 -6.61861 L LCTY IE L 30 0 82 Europe/Dublin 2010-08-14 +3302657 Clonmore Clonmore 52.43111 -6.62167 L LCTY IE L 30 0 94 Europe/Dublin 2010-08-14 +3302658 Ballybuckley Ballybuckley 52.44556 -6.60139 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302659 Ballinvary Ballinvary 52.44944 -6.64028 L LCTY IE L 30 0 63 Europe/Dublin 2010-08-14 +3302660 Bree Hill Bree Hill 52.44056 -6.62222 T HLL IE L 30 0 112 Europe/Dublin 2010-08-14 +3302661 Ballyeland Ballyeland 52.45833 -6.65 L LCTY IE L 30 0 64 Europe/Dublin 2010-08-14 +3302662 Rossderit House Rossderit House 52.47583 -6.65833 S HSEC IE L 30 0 74 Europe/Dublin 2010-08-14 +3302663 Garry Bridge Garry Bridge 52.46694 -6.60833 P PPL IE L 30 0 56 Europe/Dublin 2010-08-14 +3302664 Ballynapierce Bridge Ballynapierce Bridge 52.47194 -6.58806 P PPL IE L 30 0 53 Europe/Dublin 2010-08-14 +3302665 Ballygillistown Ballygillistown 52.47639 -6.61806 P PPL IE L 30 0 62 Europe/Dublin 2010-08-14 +3302666 Verona House Verona House 52.50306 -6.60528 S HSEC IE L 30 0 60 Europe/Dublin 2010-08-14 +3302667 Aughananagh River Aughananagh River 52.46861 -6.89889 H STM IE L 01 0 76 Europe/Dublin 2010-08-14 +3302668 Dranagh Mountain Dranagh Mountain 52.49278 -6.86861 T MT IE L 01 0 188 Europe/Dublin 2010-08-14 +3302669 Ballycrinnigan Ballycrinnigan 52.50528 -6.87611 P PPL IE L 01 0 127 Europe/Dublin 2010-08-14 +3302670 Augharana River Augharana River 52.48861 -6.92306 H STM IE L 01 0 40 Europe/Dublin 2010-08-14 +3302671 Bran Scultair Bran Scultair 52.50806 -6.84528 T RDGE IE L 01 0 269 Europe/Dublin 2010-08-14 +3302672 Bahana Wood Bahana Wood 52.50139 -6.93 V FRST IE L 01 0 37 Europe/Dublin 2010-08-14 +3302673 Marley Marley Knockduff,Marley 52.52583 -6.89861 L LCTY IE IE L 01 0 76 Europe/Dublin 2010-08-14 +3302674 Ballybeg Ballybeg 52.53083 -6.88222 L LCTY IE L 01 0 79 Europe/Dublin 2010-08-14 +3302675 Ballyglisheen Ballyglisheen 52.54778 -6.8675 L LCTY IE L 01 0 73 Europe/Dublin 2010-08-14 +3302676 Ballykeenan Ballykeenan 52.55389 -6.90722 L LCTY IE L 01 0 69 Europe/Dublin 2010-08-14 +3302677 Carrigalachan Carrigalachan 52.53111 -6.83528 T MT IE L 01 0 269 Europe/Dublin 2010-08-14 +3302678 Mullannagaun Mullannagaun 52.55806 -6.85139 L LCTY IE L 01 0 77 Europe/Dublin 2010-08-14 +3302679 Coolnamara Cross Roads Coolnamara Cross Roads 52.55111 -6.9075 P PPL IE L 01 0 69 Europe/Dublin 2010-08-14 +3302680 Tinnacarrig Tinnacarrig 52.565 -6.88861 P PPL IE L 01 0 74 Europe/Dublin 2010-08-14 +3302681 Ballyine House Ballyine House 52.57722 -6.89056 S HSEC IE L 01 0 74 Europe/Dublin 2010-08-14 +3302682 Kyle Cross Roads Kyle Cross Roads 52.57833 -6.86889 P PPL IE L 01 0 74 Europe/Dublin 2010-08-14 +3302683 Walshstown Walshstown Ballynabranagh,Walshstown 52.56417 -6.82444 P PPL IE IE L 01 0 188 Europe/Dublin 2010-08-14 +3302684 Coonogue Coonogue 52.5775 -6.81583 L LCTY IE L 01 0 168 Europe/Dublin 2010-08-14 +3302685 Aughnabrisky River Aughnabrisky River 52.59056 -6.83194 H STM IE L 01 0 132 Europe/Dublin 2010-08-14 +3302686 Knockmore Knockmore 52.59083 -6.84639 L LCTY IE L 01 0 104 Europe/Dublin 2010-08-14 +3302687 Lissalican Lissalican 52.58917 -6.87778 P PPL IE L 01 0 77 Europe/Dublin 2010-08-14 +3302688 Kilcoltrim Kilcoltrim 52.58917 -6.89944 L LCTY IE L 01 0 67 Europe/Dublin 2010-08-14 +3302689 Dho Bran Dho Bran 52.51222 -6.83 T SLP IE L 30 0 302 Europe/Dublin 2010-08-14 +3302690 Carrigroe Carrigroe 52.51972 -6.82389 T MT IE L 30 0 300 Europe/Dublin 2010-08-14 +3302691 Caher Roe’s Den Caher Roe's Den 52.54528 -6.80861 S CAVE IE L 30 0 424 Europe/Dublin 2010-08-14 +3302692 Grange Lower Grange Lower 52.51417 -6.76389 P PPL IE L 30 0 141 Europe/Dublin 2010-08-14 +3302693 Monksgrange House Monksgrange House 52.51889 -6.77972 S HSEC IE L 30 0 180 Europe/Dublin 2010-08-14 +3302694 Old Town Old Town 52.53278 -6.75944 P PPL IE L 30 0 152 Europe/Dublin 2010-08-14 +3302695 Askinvillar Askinvillar 52.55333 -6.78111 L LCTY IE L 30 0 322 Europe/Dublin 2010-08-14 +3302696 Ballining Ballining 52.5375 -6.72889 L LCTY IE L 30 0 118 Europe/Dublin 2010-08-14 +3302697 Aughathlappa Aughathlappa 52.51917 -6.71472 L LCTY IE L 30 0 134 Europe/Dublin 2010-08-14 +3302698 Buck’s Bridge Buck's Bridge 52.54167 -6.71389 P PPL IE L 30 0 100 Europe/Dublin 2010-08-14 +3302699 Blackers Bridge Blackers Bridge 52.54889 -6.72278 P PPL IE L 30 0 106 Europe/Dublin 2010-08-14 +3302700 Mocurry Cross Roads Mocurry Cross Roads 52.55639 -6.70667 P PPL IE L 30 0 115 Europe/Dublin 2010-08-14 +3302701 Mocurry Bridge Mocurry Bridge 52.56194 -6.72333 P PPL IE L 30 0 128 Europe/Dublin 2010-08-14 +3302702 Duffry Lodge Duffry Lodge 52.54639 -6.70194 S HSE IE L 30 0 97 Europe/Dublin 2010-08-14 +3302703 Curraghgraigue Curraghgraigue 52.54278 -6.68806 L LCTY IE L 30 0 78 Europe/Dublin 2010-08-14 +3302704 Doran’s Cross Roads Doran's Cross Roads 52.575 -6.72056 P PPL IE L 30 0 138 Europe/Dublin 2010-08-14 +3302705 Coolyearney Coolyearney 52.55889 -6.68667 L LCTY IE L 30 0 125 Europe/Dublin 2010-08-14 +3302706 Templeshanbo Templeshanbo 52.57944 -6.705 L LCTY IE L 30 0 153 Europe/Dublin 2010-08-14 +3302707 Cullentragh Cullentragh 52.56389 -6.77972 L LCTY IE L 30 0 295 Europe/Dublin 2010-08-14 +3302708 Clovoge Clovoge 52.58833 -6.75167 L LCTY IE L 30 0 297 Europe/Dublin 2010-08-14 +3302709 Ballycrystal House Ballycrystal House 52.585 -6.72056 S HSEC IE L 30 0 169 Europe/Dublin 2010-08-14 +3302710 Ballylusk Ballylusk 52.585 -6.68972 L LCTY IE L 30 0 150 Europe/Dublin 2010-08-14 +3302712 Marley Bridge Marley Bridge 52.53333 -6.62333 P PPL IE L 30 0 71 Europe/Dublin 2010-08-14 +3302713 Woodlands Woodlands 52.54222 -6.65611 L LCTY IE L 30 0 87 Europe/Dublin 2010-08-14 +3302714 Clonjordan Clonjordan 52.55778 -6.63917 L LCTY IE L 30 0 101 Europe/Dublin 2010-08-14 +3302715 Ballynakill Ballynakill 52.565 -6.62611 L LCTY IE L 30 0 123 Europe/Dublin 2010-08-14 +3302716 Ballyhamilton House Ballyhamilton House 52.57306 -6.63639 S HSEC IE L 30 0 150 Europe/Dublin 2010-08-14 +3302717 Marshalstown Marshalstown 52.55083 -6.58944 L LCTY IE L 30 0 71 Europe/Dublin 2010-08-14 +3302718 Coolnahorna Coolnahorna 52.54611 -6.55472 P PPL IE L 30 0 55 Europe/Dublin 2010-08-14 +3302720 Kiltrea Bridge Kiltrea Bridge 52.51222 -6.64167 P PPL IE L 30 0 70 Europe/Dublin 2010-08-14 +3302722 Kiltrea House Kiltrea House 52.50917 -6.64361 S HSEC IE L 30 0 70 Europe/Dublin 2010-08-14 +3302724 Bola Beg Bola Beg 52.58694 -6.67028 L LCTY IE L 30 0 151 Europe/Dublin 2010-08-14 +3302725 Tombrick Wood Tombrick Wood 52.60056 -6.60417 V FRST IE L 30 0 74 Europe/Dublin 2010-08-14 +3302726 Ballynelahillan Ballynelahillan 52.59917 -6.65028 L LCTY IE L 30 0 138 Europe/Dublin 2010-08-14 +3302727 Ashgrove House Ashgrove House 52.60222 -6.65194 S HSEC IE L 30 0 115 Europe/Dublin 2010-08-14 +3302728 Gorteen Gorteen 52.5975 -6.67528 L LCTY IE L 30 0 146 Europe/Dublin 2010-08-14 +3302729 Boladurragh Boladurragh 52.59611 -6.71389 L LCTY IE L 30 0 192 Europe/Dublin 2010-08-14 +3302730 Rossard Rossard 52.60611 -6.70278 L LCTY IE L 30 0 188 Europe/Dublin 2010-08-14 +3302731 Kyle Kyle 52.615 -6.70056 L LCTY IE L 30 0 214 Europe/Dublin 2010-08-14 +3302732 Ballyeryslat Ballyeryslat 52.605 -6.745 L LCTY IE L 30 0 288 Europe/Dublin 2010-08-14 +3302735 Blackstair’s Mountain Blackstair's Mountain 52.5875 -6.77472 T MT IE 00 0 303 Europe/Dublin 1998-02-09 +3302736 Crannagh Crannagh 52.60972 -6.81611 L LCTY IE L 01 0 211 Europe/Dublin 2010-08-14 +3302747 Newtown Newtown 52.59972 -6.88639 L LCTY IE L 01 0 69 Europe/Dublin 2010-08-14 +3302803 Mountain River Mountain River 52.58806 -6.9225 H STM IE L 01 0 36 Europe/Dublin 2010-08-14 +3302811 Spahill House Spahill House 52.6125 -6.88361 S HSEC IE L 01 0 72 Europe/Dublin 2010-08-14 +3302812 Dinin River Dinin River Black River,Dinin River 52.59611 -6.91889 H STM IE IE L 01 0 42 Europe/Dublin 2010-08-14 +3302813 Tomduff Tomduff 52.61889 -6.85028 L LCTY IE L 01 0 143 Europe/Dublin 2010-08-14 +3302814 Ballynasillage Ballynasillage 52.6175 -6.9075 L LCTY IE L 01 0 76 Europe/Dublin 2010-08-14 +3302815 Cashel Cashel 52.62111 -6.8725 L LCTY IE L 01 0 99 Europe/Dublin 2010-08-14 +3302816 Knocksquire Knocksquire Knockscur,Knocksquire 52.62444 -6.86528 P PPL IE IE L 01 0 119 Europe/Dublin 2010-08-14 +3302817 Dunroe Dunroe 52.63194 -6.88806 L LCTY IE L 01 0 82 Europe/Dublin 2010-08-14 +3302818 Tomduff Hill Tomduff Hill 52.62833 -6.82833 T MT IE L 01 0 278 Europe/Dublin 2010-08-14 +3302819 Killoughternane Killoughternane 52.63639 -6.87472 L LCTY IE L 01 0 111 Europe/Dublin 2010-08-14 +3302820 Knockullard Knockullard 52.64306 -6.89778 L LCTY IE L 01 0 76 Europe/Dublin 2010-08-14 +3302821 Slievebawn Slievebawn 52.63889 -6.80639 T MT IE L 01 0 421 Europe/Dublin 2010-08-14 +3302822 Knockendrane Knockendrane 52.64694 -6.83083 L LCTY IE L 01 0 233 Europe/Dublin 2010-08-14 +3302823 Rathnageeragh Rathnageeragh 52.65139 -6.81889 L LCTY IE L 01 0 212 Europe/Dublin 2010-08-14 +3302824 Ballyellin Cross Roads Ballyellin Cross Roads 52.62972 -6.98194 P PPL IE L 01 0 49 Europe/Dublin 2010-08-14 +3302825 Ballyellin House Ballyellin House 52.62444 -6.97111 S HSEC IE L 01 0 57 Europe/Dublin 2010-08-14 +3302827 Knockmanus House Knockmanus House 52.6275 -6.925 S HSEC IE L 01 0 74 Europe/Dublin 2010-08-14 +3302828 Clowater House Clowater House 52.64111 -6.94083 S HSEC IE L 01 0 83 Europe/Dublin 2010-08-14 +3302829 Kilgraney House Kilgraney House 52.65333 -6.955 S HSEC IE L 01 0 76 Europe/Dublin 2010-08-14 +3302830 Corries Cross Roads Corries Cross Roads 52.65778 -6.89972 P PPL IE L 01 0 76 Europe/Dublin 2010-08-14 +3302839 Flander’s Cross Roads Flander's Cross Roads 52.655 -6.86361 P PPL IE L 01 0 106 Europe/Dublin 2010-08-14 +3302840 Drumfea Drumfea 52.65944 -6.8525 L LCTY IE L 01 0 113 Europe/Dublin 2010-08-14 +3302841 Aghabeg Aghabeg 52.66417 -6.88417 L LCTY IE L 01 0 76 Europe/Dublin 2010-08-14 +3302847 The Black Banks The Black Banks 52.63167 -6.77778 T SPUR IE L 01 0 573 Europe/Dublin 2010-08-14 +3302848 The Nine Stones The Nine Stones 52.63611 -6.77222 T RKS IE L 01 0 457 Europe/Dublin 2010-08-14 +3302849 Burren Bridge Burren Bridge 52.65722 -6.78889 P PPL IE L 01 0 242 Europe/Dublin 2010-08-14 +3302850 Bennett’s Quarter Bennett's Quarter 52.66 -6.78278 S HSE IE L 01 0 242 Europe/Dublin 2010-08-14 +3302851 Knockdramagh Bridge Knockdramagh Bridge 52.66722 -6.81222 P PPL IE L 01 0 119 Europe/Dublin 2010-08-14 +3302852 Hollybrook House Hollybrook House 52.67194 -6.78889 S HSE IE L 01 0 166 Europe/Dublin 2010-08-14 +3302853 Croaghaun Croaghaun 52.66361 -6.76722 T MT IE L 01 0 305 Europe/Dublin 2010-08-14 +3302855 Lorum Lorum 52.66611 -6.93694 L LCTY IE L 01 0 100 Europe/Dublin 2010-08-14 +3302857 Glannahary House Glannahary House 52.67333 -6.94556 S HSE IE L 01 0 81 Europe/Dublin 2010-08-14 +3302858 Donore Donore 52.68611 -6.94083 L LCTY IE L 01 0 78 Europe/Dublin 2010-08-14 +3302859 Ballynakill Ballynakill 52.68028 -6.85333 P PPL IE L 01 0 111 Europe/Dublin 2010-08-14 +3302865 Knockclonagad Knockclonagad 52.66639 -6.87167 L LCTY IE L 01 0 90 Europe/Dublin 2010-08-14 +3302867 Milltown Milltown 52.66972 -6.84417 L LCTY IE L 01 0 119 Europe/Dublin 2010-08-14 +3302869 Garryhill House Garryhill House 52.67778 -6.84333 S HSEC IE L 01 0 113 Europe/Dublin 2010-08-14 +3302871 Sheean Sheean 52.67889 -6.83222 P PPL IE L 01 0 114 Europe/Dublin 2010-08-14 +3302872 Straduff Straduff 52.68472 -6.82222 L LCTY IE L 01 0 112 Europe/Dublin 2010-08-14 +3302873 Ballinrush House Ballinrush House 52.67806 -6.80306 S HSEC IE L 01 0 119 Europe/Dublin 2010-08-14 +3302874 Scratoe Scratoe 52.68167 -6.76139 T HLL IE L 01 0 276 Europe/Dublin 2010-08-14 +3302875 Cranemore House Cranemore House 52.68278 -6.71667 S HSEC IE L 01 0 147 Europe/Dublin 2010-08-14 +3302876 Cranemore Cranemore 52.67194 -6.73389 P PPL IE L 01 0 237 Europe/Dublin 2010-08-14 +3302877 Kilbrannish Hill Kilbrannish Hill 52.66139 -6.74972 T MT IE L 01 0 313 Europe/Dublin 2010-08-14 +3302878 John’s Hill John's Hill 52.65389 -6.70361 T HLL IE L 01 0 175 Europe/Dublin 2010-08-14 +3302879 Ravenswood House Ravenswood House 52.66639 -6.68639 S HSE IE L 01 0 99 Europe/Dublin 2010-08-14 +3302884 Craan Craan 52.63361 -6.7325 L LCTY IE L 30 0 286 Europe/Dublin 2010-08-14 +3302885 Killanure Killanure 52.63417 -6.70417 L LCTY IE L 30 0 194 Europe/Dublin 2010-08-14 +3302886 Glasacken Glasacken 52.63028 -6.67417 P PPL IE L 30 0 110 Europe/Dublin 2010-08-14 +3302887 Ballyprecas Ballyprecas 52.63694 -6.66083 L LCTY IE L 30 0 108 Europe/Dublin 2010-08-14 +3302888 Kilmyshall Kilmyshall 52.62389 -6.64611 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302889 Ballyphilip Ballyphilip 52.61861 -6.65417 L LCTY IE L 30 0 96 Europe/Dublin 2010-08-14 +3302890 Coolattin Coolattin 52.61833 -6.62278 L LCTY IE L 30 0 60 Europe/Dublin 2010-08-14 +3302891 Graigue Beg Graigue Beg 52.655 -6.61444 T RDGE IE L 30 0 81 Europe/Dublin 2010-08-14 +3302892 Clohamon House Clohamon House 52.64639 -6.64389 S HSEC IE L 30 0 74 Europe/Dublin 2010-08-14 +3302893 Ballynastraw Cottage Ballynastraw Cottage 52.67806 -6.63972 S HSE IE L 30 0 88 Europe/Dublin 2010-08-14 +3302894 Johnstown Johnstown 52.685 -6.64056 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3302940 Reddy’s Cross Roads Reddy's Cross Roads 52.70917 -7.02194 P PPL IE L 01 0 100 Europe/Dublin 2010-08-14 +3302941 Fenniscourt Fenniscourt 52.67889 -6.98694 L LCTY IE L 01 0 35 Europe/Dublin 2010-08-14 +3302942 Closutton Closutton 52.71556 -7.00028 L LCTY IE L 01 0 58 Europe/Dublin 2010-08-14 +3302943 Killinane House Killinane House 52.71583 -6.9775 S HSEC IE L 01 0 37 Europe/Dublin 2010-08-14 +3302944 Bannagagole Bannagagole 52.72194 -7.02778 L LCTY IE L 01 0 148 Europe/Dublin 2010-08-14 +3302945 Milebush Cross Roads Milebush Cross Roads 52.71611 -7.04 S HSEC IE L 01 0 151 Europe/Dublin 2010-08-14 +3302947 Lackan Lackan 52.71889 -7.05111 T MT IE L 01 0 158 Europe/Dublin 2010-08-14 +3302948 Tomnasock Tomnasock 52.72556 -7.04472 P PPL IE L 01 0 152 Europe/Dublin 2010-08-14 +3302949 Farranatreney Farranatreney 52.72694 -6.98306 P PPL IE L 01 0 39 Europe/Dublin 2010-08-14 +3302950 Burgage House Burgage House 52.72417 -6.97778 S HSEC IE L 01 0 37 Europe/Dublin 2010-08-14 +3302951 Baunreagh Baunreagh 52.72833 -7.08417 T MT IE L 01 0 165 Europe/Dublin 2010-08-14 +3302952 Knocknabranagh Knocknabranagh Knockbaun,Knocknabranagh 52.74611 -7.08556 T MT IE IE L 01 0 165 Europe/Dublin 2010-08-14 +3302968 Ridge Ridge 52.75694 -7.07 L LCTY IE L 01 0 166 Europe/Dublin 2010-08-14 +3302969 Raheen Raheen 52.74 -7.05972 L LCTY IE L 01 0 156 Europe/Dublin 2010-08-14 +3302970 Parknakyle Parknakyle 52.74722 -7.04556 L LCTY IE L 01 0 158 Europe/Dublin 2010-08-14 +3302971 Johnduffswood Johnduffswood 52.75056 -7.03417 L LCTY IE L 01 0 163 Europe/Dublin 2010-08-14 +3302972 Seskin Upper Seskin Upper 52.76222 -7.03444 L LCTY IE L 01 0 177 Europe/Dublin 2010-08-14 +3302973 Cranaronane Cranaronane 52.77194 -7.02333 L LCTY IE L 01 0 160 Europe/Dublin 2010-08-14 +3302974 Seskin Lower Seskin Lower 52.74722 -7.00722 L LCTY IE L 01 0 63 Europe/Dublin 2010-08-14 +3302975 The Butts The Butts 52.77111 -7.075 L LCTY IE L 01 0 191 Europe/Dublin 2010-08-14 +3302976 Rathvinden Rathvinden 52.74028 -6.9975 L LCTY IE L 01 0 50 Europe/Dublin 2010-08-14 +3302977 Coolnakisha House Coolnakisha House 52.75389 -6.99389 S HSEC IE L 01 0 62 Europe/Dublin 2010-08-14 +3302978 Rathernan Bridge Rathernan Bridge 52.75639 -6.97278 P PPL IE L 01 0 39 Europe/Dublin 2010-08-14 +3302979 Black Bridge Black Bridge 52.77694 -7.08333 P PPL IE L 01 0 200 Europe/Dublin 2010-08-14 +3302980 Gallows Hill Gallows Hill 52.78 -7.04167 T HLL IE L 01 0 249 Europe/Dublin 2010-08-14 +3302981 Agharue Agharue 52.77833 -7.06444 L LCTY IE L 01 0 231 Europe/Dublin 2010-08-14 +3302982 Tomara Tomara 52.78417 -7.02028 L LCTY IE L 01 0 258 Europe/Dublin 2010-08-14 +3302983 Cramlusky Cramlusky 52.78611 -7.00833 L LCTY IE L 01 0 192 Europe/Dublin 2010-08-14 +3302984 Boolyvannanan Boolyvannanan 52.79 -7.05639 L LCTY IE L 01 0 271 Europe/Dublin 2010-08-14 +3302985 Red Bog Red Bog 52.78472 -7.04194 H MRSH IE L 01 0 281 Europe/Dublin 2010-08-14 +3302986 High Park House High Park House 52.79222 -6.99444 S HSEC IE L 01 0 191 Europe/Dublin 2010-08-14 +3302987 Ballinabranagh Ballinabranagh 52.78611 -6.98333 L LCTY IE L 01 0 91 Europe/Dublin 2010-08-14 +3302988 Craan House Craan House 52.77667 -6.96972 S HSEC IE L 01 0 40 Europe/Dublin 2010-08-14 +3302989 Baunrce Wood Baunrce Wood 52.76889 -6.96222 V FRST IE L 01 0 38 Europe/Dublin 2010-08-14 +3302990 Orchard Bridge Orchard Bridge 52.75528 -6.95639 P PPL IE L 01 0 43 Europe/Dublin 2010-08-14 +3302991 Powerstown Powerstown 52.76028 -6.95139 L LCTY IE L 01 0 42 Europe/Dublin 2010-08-14 +3302992 Oldtown House Oldtown House 52.75389 -6.92972 S HSEC IE L 01 0 62 Europe/Dublin 2010-08-14 +3302993 Rathwade House Rathwade House 52.7425 -6.92833 S HSEC IE L 01 0 66 Europe/Dublin 2010-08-14 +3302994 The Harrow The Harrow 52.74639 -6.935 P PPL IE L 01 0 55 Europe/Dublin 2010-08-14 +3302995 Rathellin Rathellin 52.72917 -6.95806 L LCTY IE L 01 0 42 Europe/Dublin 2010-08-14 +3302996 Philip Street Philip Street 52.69306 -6.95694 P PPL IE L 01 0 62 Europe/Dublin 2010-08-14 +3302997 Carrig Beg Carrig Beg 52.68944 -6.8775 T RK IE L 01 0 119 Europe/Dublin 2010-08-14 +3302998 Swinn Cross Roads Swinn Cross Roads 52.695 -6.89417 P PPL IE L 01 0 145 Europe/Dublin 2010-08-14 +3302999 Ballaghaderren Ballaghaderren 52.69528 -6.86917 P PPL IE L 01 0 121 Europe/Dublin 2010-08-14 +3303000 Fenagh House Fenagh House 52.69722 -6.85583 S HSEC IE L 01 0 108 Europe/Dublin 2010-08-14 +3303001 Eastwood Eastwood 52.69944 -6.97389 L LCTY IE L 01 0 40 Europe/Dublin 2010-08-14 +3303003 Rathedan Cross Roads Rathedan Cross Roads 52.72167 -6.92194 P PPL IE L 01 0 108 Europe/Dublin 2010-08-14 +3303004 Kildreenagh Kildreenagh 52.71389 -6.89694 L LCTY IE L 01 0 152 Europe/Dublin 2010-08-14 +3303096 Clonburren House Clonburren House 52.68917 -6.84722 S HSEC IE L 01 0 110 Europe/Dublin 2010-08-14 +3303097 Upton House Upton House 52.70444 -6.85944 S HSEC IE L 01 0 121 Europe/Dublin 2010-08-14 +3303098 Ullard Bridge Ullard Bridge 52.71111 -6.82611 P PPL IE L 01 0 104 Europe/Dublin 2010-08-14 +3303099 Tailor’s Cross Roads Tailor's Cross Roads 52.70583 -6.80778 P PPL IE L 01 0 101 Europe/Dublin 2010-08-14 +3303100 Kilconner Kilconner 52.71889 -6.83167 L LCTY IE L 01 0 100 Europe/Dublin 2010-08-14 +3303101 Kilconner House Kilconner House 52.72278 -6.83444 S HSEC IE L 01 0 109 Europe/Dublin 2010-08-14 +3303102 Shangarry Cross Roads Shangarry Cross Roads 52.69611 -6.79194 P PPL IE L 01 0 106 Europe/Dublin 2010-08-14 +3303103 Ballaghmore Cross Roads Ballaghmore Cross Roads 52.71 -6.79167 P PPL IE L 01 0 97 Europe/Dublin 2010-08-14 +3303104 Cappagh House Cappagh House 52.71972 -6.77333 P PPL IE L 01 0 101 Europe/Dublin 2010-08-14 +3303105 Cappagh Cross Roads Cappagh Cross Roads 52.72361 -6.77 P PPL IE L 01 0 101 Europe/Dublin 2010-08-14 +3303106 Newtown Newtown 52.72083 -6.87583 L LCTY IE L 01 0 147 Europe/Dublin 2010-08-14 +3303107 Hooper’s Cross Roads Hooper's Cross Roads 52.73306 -6.90194 P PPL IE L 01 0 151 Europe/Dublin 2010-08-14 +3303108 Newtown Newtown 52.73611 -6.88861 L LCTY IE L 01 0 153 Europe/Dublin 2010-08-14 +3303109 Jane Ville Jane Ville 52.73167 -6.86306 S EST IE L 01 0 139 Europe/Dublin 2010-08-14 +3303110 Clonegah Clonegah 52.72694 -6.86389 L LCTY IE L 01 0 139 Europe/Dublin 2010-08-14 +3303111 Ballybrommell Ballybrommell 52.73861 -6.875 L LCTY IE L 01 0 148 Europe/Dublin 2010-08-14 +3303112 Cloneen Bridge Cloneen Bridge 52.74361 -6.87806 P PPL IE L 01 0 152 Europe/Dublin 2010-08-14 +3303113 Ballytarsha Cross Roads Ballytarsha Cross Roads 52.74917 -6.87472 P PPL IE L 01 0 150 Europe/Dublin 2010-08-14 +3303115 Knockthomas House Knockthomas House 52.75556 -6.89222 S HSEC IE L 01 0 148 Europe/Dublin 2010-08-14 +3303116 Ballyrvan Ballyrvan 52.76056 -6.90694 P PPL IE L 01 0 126 Europe/Dublin 2010-08-14 +3303117 Fighting Cooks Cross Roads Fighting Cooks Cross Roads 52.75917 -6.85 P PPL IE L 01 0 108 Europe/Dublin 2010-08-14 +3303118 Tomard Tomard 52.76639 -6.97222 L LCTY IE L 01 0 40 Europe/Dublin 2010-08-14 +3303119 Cloghrustick Cloghrustick 52.77167 -6.95778 L LCTY IE L 01 0 42 Europe/Dublin 2010-08-14 +3303120 Milford Mills Milford Mills 52.77583 -6.96028 S EST IE L 01 0 38 Europe/Dublin 2010-08-14 +3303121 Ballybannon Ballybannon 52.78389 -6.96111 L LCTY IE L 01 0 41 Europe/Dublin 2010-08-14 +3303122 Fonthill House Fonthill House 52.79194 -6.97639 S HSEC IE L 01 0 99 Europe/Dublin 2010-08-14 +3303123 Raheendoran Raheendoran 52.79306 -6.97528 L LCTY IE L 01 0 99 Europe/Dublin 2010-08-14 +3303124 Cloghna Cloghna 52.79694 -6.94528 L LCTY IE L 01 0 44 Europe/Dublin 2010-08-14 +3303125 Clonmelsh House Clonmelsh House 52.77528 -6.92583 S HSEC IE L 01 0 57 Europe/Dublin 2010-08-14 +3303127 Garryhundon House Garryhundon House 52.76611 -6.91944 S HSEC IE L 01 0 76 Europe/Dublin 2010-08-14 +3303128 Ballylog Castle Ballylog Castle 52.77389 -6.8975 S CSTL IE L 01 0 137 Europe/Dublin 2010-08-14 +3303129 Ballybolger House Ballybolger House 52.76528 -6.88556 S HSEC IE L 01 0 157 Europe/Dublin 2010-08-14 +3303130 Ballybar House Ballybar House 52.78306 -6.91361 S HSEC IE L 01 0 77 Europe/Dublin 2010-08-14 +3303131 Linkardstown House Linkardstown House 52.78556 -6.89861 S HSEC IE L 01 0 91 Europe/Dublin 2010-08-14 +3303132 Graigue Hill Graigue Hill 52.76944 -6.84667 T HLL IE L 01 0 108 Europe/Dublin 2010-08-14 +3303163 Moanmore Moanmore 52.73528 -6.83389 L LCTY IE L 01 0 107 Europe/Dublin 2010-08-14 +3303164 Kilbrickan House Kilbrickan House 52.74417 -6.83056 S HSEC IE L 01 0 94 Europe/Dublin 2010-08-14 +3303165 Killan Bridge Killan Bridge 52.73083 -6.81167 P PPL IE L 01 0 95 Europe/Dublin 2010-08-14 +3303166 Raheenkillane Raheenkillane 52.72778 -6.81528 L LCTY IE L 01 0 95 Europe/Dublin 2010-08-14 +3303167 Ballyveal Ballyveal 52.74889 -6.81139 L LCTY IE L 01 0 92 Europe/Dublin 2010-08-14 +3303168 Kilknock House Kilknock House 52.75528 -6.80444 S HSEC IE L 01 0 92 Europe/Dublin 2010-08-14 +3303169 Tinnaclash House Tinnaclash House 52.7575 -6.82722 S HSEC IE L 01 0 89 Europe/Dublin 2010-08-14 +3303226 Kellistown Cross Roads Kellistown Cross Roads 52.78306 -6.81444 S HSEC IE L 01 0 82 Europe/Dublin 2010-08-14 +3303227 Graiguenaspiddoge Graiguenaspiddoge 52.77361 -6.85361 L LCTY IE L 01 0 133 Europe/Dublin 2010-08-14 +3303228 Gilbertstown House Gilbertstown House 52.76806 -6.82778 S HSEC IE L 01 0 83 Europe/Dublin 2010-08-14 +3303230 Rathrash House Rathrash House 52.77278 -6.80083 S HSEC IE L 01 0 87 Europe/Dublin 2010-08-14 +3303231 Castletown Castle Castletown Castle 52.78972 -6.87917 S CSTL IE L 01 0 109 Europe/Dublin 2010-08-14 +3303232 Tinriland House Tinriland House 52.79583 -6.87333 S HSEC IE L 01 0 92 Europe/Dublin 2010-08-14 +3303233 Bagenal’s Arms Cross Roads Bagenal's Arms Cross Roads 52.80333 -6.88667 L LCTY IE L 01 0 67 Europe/Dublin 2010-08-14 +3303234 Tinnepark House Tinnepark House 52.80667 -6.90278 S HSEC IE L 01 0 61 Europe/Dublin 2010-08-14 +3303235 Ratherogue House Ratherogue House 52.80278 -6.87861 S HSEC IE L 01 0 70 Europe/Dublin 2010-08-14 +3303236 Kilmeany House Kilmeany House 52.81 -6.885 S HSEC IE L 01 0 65 Europe/Dublin 2010-08-14 +3303238 Ballycarney Ballycarney 52.80722 -6.93556 L LCTY IE L 01 0 46 Europe/Dublin 2010-08-14 +3303239 Quinagh Quinagh 52.81528 -6.93556 L LCTY IE L 01 0 46 Europe/Dublin 2010-08-14 +3303240 Erindale Erindale 52.81833 -6.94194 L LCTY IE L 01 0 43 Europe/Dublin 2010-08-14 +3303241 Ballinacarrig Ballinacarrig 52.81722 -6.91861 L LCTY IE L 01 0 50 Europe/Dublin 2010-08-14 +3303242 Ballinacarrig Bridge Ballinacarrig Bridge 52.82306 -6.91861 L LCTY IE L 01 0 50 Europe/Dublin 2010-08-14 +3303243 Springfield House Springfield House 52.82667 -6.92139 S HSEC IE L 01 0 50 Europe/Dublin 2010-08-14 +3303244 Kellistown House Kellistown House 52.80083 -6.83278 S HSEC IE L 01 0 73 Europe/Dublin 2010-08-14 +3303245 Fairlylawn House Fairlylawn House 52.80278 -6.82083 S HSEC IE L 01 0 74 Europe/Dublin 2010-08-14 +3303247 Aghwater House Aghwater House 52.81306 -6.81472 S HSEC IE L 01 0 76 Europe/Dublin 2010-08-14 +3303248 Bennekerry Lodge Bennekerry Lodge 52.81667 -6.85444 S HSEC IE L 01 0 76 Europe/Dublin 2010-08-14 +3303249 Busherstown House Busherstown House 52.82361 -6.84944 S HSEC IE L 01 0 76 Europe/Dublin 2010-08-14 +3303252 Sion Cottage Sion Cottage 52.82361 -6.87417 S HSE IE L 01 0 66 Europe/Dublin 2010-08-14 +3303253 Moanamanagh Moanamanagh 52.81806 -6.83556 L LCTY IE L 01 0 76 Europe/Dublin 2010-08-14 +3303254 Knockbrack Knockbrack 52.695 -6.7575 T MT IE L 01 0 148 Europe/Dublin 2010-08-14 +3303255 Clashavey River Clashavey River 52.705 -6.67806 H STM IE L 01 0 71 Europe/Dublin 2010-08-14 +3303256 Ballykeenan House Ballykeenan House 52.7075 -6.74417 S HSEC IE L 01 0 140 Europe/Dublin 2010-08-14 +3303257 Sherwood Sherwood Dukespark,Sherwood 52.70444 -6.72278 L LCTY IE IE L 01 0 144 Europe/Dublin 2010-08-14 +3303258 Raheenbawn Raheenbawn 52.69333 -6.71639 L LCTY IE L 01 0 147 Europe/Dublin 2010-08-14 +3303259 Milltown Cross Roads Milltown Cross Roads 52.71417 -6.74111 P PPL IE L 01 0 134 Europe/Dublin 2010-08-14 +3303277 Ballon Hill Ballon Hill 52.73889 -6.77389 T HLL IE L 01 0 93 Europe/Dublin 2010-08-14 +3303278 Larah House Larah House 52.73083 -6.76917 S HSEC IE L 01 0 96 Europe/Dublin 2010-08-14 +3303279 Ballykealey House Ballykealey House 52.74417 -6.77694 S HSEC IE L 01 0 92 Europe/Dublin 2010-08-14 +3303280 Douglas River Douglas River 52.76028 -6.73194 H STM IE L 01 0 80 Europe/Dublin 2010-08-14 +3303285 Closh Cross Roads Closh Cross Roads 52.73444 -6.74417 P PPL IE L 01 0 93 Europe/Dublin 2010-08-14 +3303287 Sherwood Park Sherwood Park 52.72722 -6.72056 S EST IE L 01 0 88 Europe/Dublin 2010-08-14 +3303288 Altamont House Altamont House 52.73389 -6.72194 S HSEC IE L 01 0 80 Europe/Dublin 2010-08-14 +3303289 Larchville Commons Larchville Commons 52.73944 -6.73472 L LCTY IE L 01 0 91 Europe/Dublin 2010-08-14 +3303290 Kilbride House Kilbride House 52.7225 -6.70417 S HSEC IE L 01 0 76 Europe/Dublin 2010-08-14 +3303291 Cunaberry Cunaberry 52.74944 -6.75778 P PPL IE L 01 0 89 Europe/Dublin 2010-08-14 +3303292 Bang Up Corner Bang Up Corner 52.75611 -6.7425 L LCTY IE L 01 0 83 Europe/Dublin 2010-08-14 +3303293 Sandybrook House Sandybrook House 52.75722 -6.7575 S HSEC IE L 01 0 86 Europe/Dublin 2010-08-14 +3303294 Ballinadrum Ballinadrum 52.75194 -6.7825 L LCTY IE L 01 0 91 Europe/Dublin 2010-08-14 +3303295 The Grove The Grove 52.76333 -6.78056 P PPLL IE L 01 0 90 Europe/Dublin 2010-08-14 +3303296 Rathrush House Rathrush House 52.77139 -6.77667 S HSEC IE L 01 0 88 Europe/Dublin 2010-08-14 +3303297 Aghade Aghade 52.76639 -6.75722 L LCTY IE L 01 0 84 Europe/Dublin 2010-08-14 +3303298 Ratheeragh Ratheeragh 52.76833 -6.7275 L LCTY IE L 01 0 83 Europe/Dublin 2010-08-14 +3303299 Aghade Bridge Aghade Bridge 52.7575 -6.72556 P PPL IE L 01 0 78 Europe/Dublin 2010-08-14 +3303300 Ardattin Ardattin 52.7525 -6.70389 P PPL IE L 01 0 85 Europe/Dublin 2010-08-14 +3303301 Newtown House Newtown House 52.75139 -6.72167 S HSEC IE L 01 0 79 Europe/Dublin 2010-08-14 +3303302 Carrickslaney Carrickslaney 52.74583 -6.72917 L LCTY IE L 01 0 80 Europe/Dublin 2010-08-14 +3303303 Caledon House Caledon House 52.75639 -6.68639 S HSEC IE L 01 0 106 Europe/Dublin 2010-08-14 +3303304 Broomville House Broomville House 52.7475 -6.68472 S HSEC IE L 01 0 102 Europe/Dublin 2010-08-14 +3303305 Newtown House Newtown House 52.76417 -6.68194 S HSEC IE L 01 0 120 Europe/Dublin 2010-08-14 +3303306 Coolroe Coolroe 52.73194 -6.67306 L LCTY IE L 01 0 120 Europe/Dublin 2010-08-14 +3303307 Monaughrim Monaughrim 52.71806 -6.66389 T HLL IE L 01 0 117 Europe/Dublin 2010-08-14 +3303309 Kilcurry Bridge Kilcurry Bridge 52.70583 -6.68028 P PPL IE L 01 0 71 Europe/Dublin 2010-08-14 +3303596 Kilcarry Kilcarry 52.69972 -6.66861 P PPL IE L 01 0 74 Europe/Dublin 2010-08-14 +3303597 Clongarran Clongarran 52.70889 -6.66028 L LCTY IE L 01 0 97 Europe/Dublin 2010-08-14 +3303598 Sandhill House Sandhill House 52.70806 -6.62833 S HSEC IE L 01 0 70 Europe/Dublin 2010-08-14 +3303600 Monaughrun Cross Roads Monaughrun Cross Roads 52.72639 -6.6625 P PPL IE L 01 0 137 Europe/Dublin 2010-08-14 +3303601 Moylisha Lodge Moylisha Lodge 52.73306 -6.63444 S HSE IE L 01 0 151 Europe/Dublin 2010-08-14 +3303602 Urelands House Urelands House 52.73556 -6.6225 S HSEC IE L 30 0 157 Europe/Dublin 2010-08-14 +3303603 Moylisha Moylisha 52.74333 -6.62833 L LCTY IE L 30 0 154 Europe/Dublin 2010-08-14 +3303604 Thornhill House Thornhill House 52.76944 -6.67278 S HSEC IE L 01 0 126 Europe/Dublin 2010-08-14 +3303605 Glebe House Glebe House 52.77111 -6.69333 S HSEC IE L 01 0 100 Europe/Dublin 2010-08-14 +3303607 Johnstown House Johnstown House 52.83306 -6.84944 S HSEC IE L 01 0 81 Europe/Dublin 2010-08-14 +3303609 Ashlane Cross Roads Ashlane Cross Roads 52.83944 -6.85972 P PPL IE L 01 0 81 Europe/Dublin 2010-08-14 +3303610 Urgllin Glebe Urgllin Glebe 52.8325 -6.86778 S EST IE L 01 0 76 Europe/Dublin 2010-08-14 +3303612 Ruthland House Ruthland House 52.84389 -6.86333 S HSEC IE L 01 0 81 Europe/Dublin 2010-08-14 +3303613 Ballylennon Cross Roads Ballylennon Cross Roads 52.85222 -6.87444 P PPL IE L 01 0 79 Europe/Dublin 2010-08-14 +3303614 Friarstown House Friarstown House 52.84222 -6.8175 S HSEC IE L 01 0 107 Europe/Dublin 2010-08-14 +3303615 Pollerton Pollerton 52.84667 -6.90694 L LCTY IE L 01 0 67 Europe/Dublin 2010-08-14 +3303616 Chapelstown Chapelstown 52.83361 -6.90167 L LCTY IE L 01 0 64 Europe/Dublin 2010-08-14 +3303619 Russellstown Russellstown 52.85583 -6.86306 L LCTY IE L 01 0 81 Europe/Dublin 2010-08-14 +3303632 Knocknagee Cross Roads Knocknagee Cross Roads 52.86833 -6.88722 P PPL IE L 12 0 74 Europe/Dublin 2010-08-14 +3303634 Aghanure Aghanure 52.87528 -6.92972 P PPL IE L 01 0 52 Europe/Dublin 2010-08-14 +3303636 Gotham Bridge Gotham Bridge 52.88444 -6.92139 P PPL IE L 12 0 59 Europe/Dublin 2010-08-14 +3303637 Dunmanoge Dunmanoge 52.89083 -6.91972 P PPL IE L 12 0 59 Europe/Dublin 2010-08-14 +3303638 Newtown Bridge Newtown Bridge 52.89556 -6.92306 P PPL IE L 12 0 61 Europe/Dublin 2010-08-14 +3303640 Crooket House Crooket House 52.89472 -6.91111 S HSEC IE L 12 0 66 Europe/Dublin 2010-08-14 +3303642 Newtownallen Newtownallen 52.88639 -6.90722 L LCTY IE L 12 0 68 Europe/Dublin 2010-08-14 +3303643 Ballaghmoon Ballaghmoon 52.875 -6.90139 L LCTY IE L 12 0 67 Europe/Dublin 2010-08-14 +3303645 Johnstown South Johnstown South 52.89583 -6.88167 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3303648 Prumplestown House Prumplestown House 52.89222 -6.86667 S HSEC IE L 12 0 83 Europe/Dublin 2010-08-14 +3303649 Gorteen Bridge Gorteen Bridge 52.87917 -6.87333 P PPL IE L 12 0 73 Europe/Dublin 2010-08-14 +3303652 Parsonsbridge Parsonsbridge 52.88333 -6.87722 L LCTY IE L 12 0 73 Europe/Dublin 2010-08-14 +3303655 Barnhill House Barnhill House 52.89583 -6.84972 S HSEC IE L 12 0 134 Europe/Dublin 2010-08-14 +3303656 Ballyburn Ballyburn 52.88306 -6.84944 L LCTY IE L 12 0 112 Europe/Dublin 2010-08-14 +3303659 Ballyhade Ballyhade 52.8725 -6.85083 L LCTY IE L 12 0 90 Europe/Dublin 2010-08-14 +3303660 Knocknacree Cross Roads Knocknacree Cross Roads 52.87917 -6.81556 P PPL IE L 12 0 137 Europe/Dublin 2010-08-14 +3303661 Knockbane Knockbane 52.86944 -6.8675 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3303662 Bigbog Bigbog 52.89472 -6.82778 L LCTY IE L 12 0 153 Europe/Dublin 2010-08-14 +3303665 Newtown Newtown 52.87833 -6.79972 L LCTY IE L 12 0 127 Europe/Dublin 2010-08-14 +3303666 Coltstown House Coltstown House 52.89 -6.80139 S HSEC IE L 12 0 137 Europe/Dublin 2010-08-14 +3303668 Knockfield House Knockfield House 52.89333 -6.78056 S HSEC IE L 12 0 150 Europe/Dublin 2010-08-14 +3303669 Knockshannagh Knockshannagh 52.88556 -6.78667 L LCTY IE L 12 0 131 Europe/Dublin 2010-08-14 +3303670 Sunday Well Sunday Well 52.87278 -6.77472 H WLL IE L 01 0 109 Europe/Dublin 2010-08-14 +3303671 Phillipstown Manor Phillipstown Manor 52.88056 -6.74972 S HSEC IE L 01 0 114 Europe/Dublin 2010-08-14 +3303673 Kineagh Kineagh 52.87111 -6.78417 L LCTY IE L 01 0 117 Europe/Dublin 2010-08-14 +3303674 Ballyhacket Ballyhacket 52.86389 -6.75278 P PPL IE L 01 0 99 Europe/Dublin 2010-08-14 +3303675 Ballyhacket Cross Roads Ballyhacket Cross Roads 52.85528 -6.74139 P PPL IE L 01 0 99 Europe/Dublin 2010-08-14 +3303744 Straboe Straboe 52.85528 -6.79028 L LCTY IE L 01 0 103 Europe/Dublin 2010-08-14 +3303746 Kilcrrig Cross Roads Kilcrrig Cross Roads 52.8425 -6.78778 P PPL IE L 01 0 97 Europe/Dublin 2010-08-14 +3303747 Friarstown Bridge Friarstown Bridge 52.83889 -6.80556 P PPL IE L 01 0 99 Europe/Dublin 2010-08-14 +3303748 Rathmore Rathmore 52.86278 -6.735 L LCTY IE L 01 0 102 Europe/Dublin 2010-08-14 +3303751 Raheenadav Raheenadav 52.86639 -6.72917 L LCTY IE L 01 0 104 Europe/Dublin 2010-08-14 +3303752 Cromwellsford House Cromwellsford House 52.87444 -6.70194 S HSEC IE L 01 0 119 Europe/Dublin 2010-08-14 +3303753 Garrettstown House Garrettstown House 52.89361 -6.72417 S HSEC IE L 01 0 125 Europe/Dublin 2010-08-14 +3303754 Beechy Park Beechy Park 52.88667 -6.7325 L PRK IE L 01 0 119 Europe/Dublin 2010-08-14 +3303756 Cuckoo Corner Cuckoo Corner 52.88611 -6.71472 L LCTY IE L 01 0 119 Europe/Dublin 2010-08-14 +3303757 Moatabower Bridge Moatabower Bridge 52.84278 -6.76389 P PPL IE L 01 0 91 Europe/Dublin 2010-08-14 +3303758 Tuckamine Tuckamine 52.8475 -6.74 L LCTY IE L 01 0 97 Europe/Dublin 2010-08-14 +3303759 Laurel Lodge Laurel Lodge 52.84083 -6.75861 S HSE IE L 01 0 90 Europe/Dublin 2010-08-14 +3303760 Kill House Kill House 52.84083 -6.72806 S HSEC IE L 01 0 99 Europe/Dublin 2010-08-14 +3303763 Ballybit Cross Roads Ballybit Cross Roads 52.84833 -6.70944 P PPL IE L 01 0 107 Europe/Dublin 2010-08-14 +3303765 Ballyoliver Ballyoliver 52.86778 -6.70056 P PPL IE L 01 0 119 Europe/Dublin 2010-08-14 +3303766 Knocknagann House Knocknagann House 52.845 -6.69028 S HSEC IE L 01 0 117 Europe/Dublin 2010-08-14 +3303771 Waterstown House Waterstown House 52.89417 -6.67472 S HSEC IE L 01 0 145 Europe/Dublin 2010-08-14 +3303774 Knocklishen Beg Knocklishen Beg 52.88944 -6.6475 L LCTY IE L 01 0 146 Europe/Dublin 2010-08-14 +3303775 Knockevagh Knockevagh 52.88056 -6.66972 T HLL IE L 01 0 152 Europe/Dublin 2010-08-14 +3303777 Coole Coole 52.86917 -6.66111 L LCTY IE L 01 0 141 Europe/Dublin 2010-08-14 +3303779 Barnhill Barnhill 52.87944 -6.63194 L LCTY IE L 01 0 132 Europe/Dublin 2010-08-14 +3303780 Knocklishen More Knocklishen More 52.87306 -6.63583 L LCTY IE L 01 0 121 Europe/Dublin 2010-08-14 +3303782 Williamstown Williamstown 52.8625 -6.65889 L LCTY IE L 01 0 128 Europe/Dublin 2010-08-14 +3303829 Saulsford Bridge Saulsford Bridge 52.86361 -6.59611 P PPL IE L 01 0 136 Europe/Dublin 2010-08-14 +3303831 Brownbog Brownbog 52.87194 -6.59556 L LCTY IE L 01 0 137 Europe/Dublin 2010-08-14 +3303832 Raheen Raheen 52.84611 -6.62944 L LCTY IE L 01 0 120 Europe/Dublin 2010-08-14 +3303835 Haroldstown Haroldstown 52.84667 -6.65833 L LCTY IE L 01 0 118 Europe/Dublin 2010-08-14 +3303836 Aeaun Bridge Aeaun Bridge 52.84333 -6.66333 P PPL IE L 01 0 115 Europe/Dublin 2010-08-14 +3303839 Ballyduff Ballyduff 52.83417 -6.61806 L LCTY IE L 01 0 117 Europe/Dublin 2010-08-14 +3303840 Vermount Vermount 52.84472 -6.59083 L LCTY IE L 01 0 137 Europe/Dublin 2010-08-14 +3303842 Constable Hill Constable Hill 52.85 -6.58028 T HLL IE L 01 0 146 Europe/Dublin 2010-08-14 +3303849 Duffery Duffery 52.84111 -6.60333 L LCTY IE L 01 0 118 Europe/Dublin 2010-08-14 +3303851 Tombeagh Tombeagh 52.86806 -6.62167 L LCTY IE L 01 0 126 Europe/Dublin 2010-08-14 +3303854 Tiknock Tiknock 52.89194 -6.63556 P PPL IE L 01 0 144 Europe/Dublin 2010-08-14 +3303858 Baunogephlure Baunogephlure 52.83278 -6.80361 L LCTY IE L 01 0 92 Europe/Dublin 2010-08-14 +3303880 Rathtoe House Rathtoe House 52.77472 -6.78611 S HSEC IE L 01 0 89 Europe/Dublin 2010-08-14 +3303882 Parochial House Parochial House 52.77861 -6.795 S HSEC IE L 01 0 86 Europe/Dublin 2010-08-14 +3303884 Rathtoe Rathtoe 52.78528 -6.79444 L LCTY IE L 01 0 82 Europe/Dublin 2010-08-14 +3303885 Moatalusha House Moatalusha House 52.79778 -6.79833 S HSEC IE L 01 0 79 Europe/Dublin 2010-08-14 +3303886 Rathnashannagh Rathnashannagh 52.80306 -6.79611 L LCTY IE L 01 0 79 Europe/Dublin 2010-08-14 +3303887 Cannonsquarter Cannonsquarter 52.81333 -6.775 L LCTY IE L 01 0 86 Europe/Dublin 2010-08-14 +3303888 Grangeford Grangeford 52.81528 -6.80639 P PPL IE L 01 0 78 Europe/Dublin 2010-08-14 +3303889 Roscat Roscat 52.78917 -6.77306 L LCTY IE L 01 0 85 Europe/Dublin 2010-08-14 +3303891 Rathbaun Rathbaun 52.81917 -6.78278 P PPL IE L 01 0 88 Europe/Dublin 2010-08-14 +3303892 Aghalona River Aghalona River 52.80139 -6.82278 H STM IE L 01 0 74 Europe/Dublin 2010-08-14 +3303893 Burnsgrove House Burnsgrove House 52.82722 -6.81417 S HSEC IE L 01 0 91 Europe/Dublin 2010-08-14 +3303895 Ballymurphy House Ballymurphy House 52.82556 -6.7525 S HSEC IE L 01 0 90 Europe/Dublin 2010-08-14 +3303896 Beaumont House Beaumont House 52.78889 -6.7475 S HSEC IE L 01 0 83 Europe/Dublin 2010-08-14 +3303897 Mountwolseley House Mountwolseley House 52.79083 -6.72639 S HSEC IE L 01 0 87 Europe/Dublin 2010-08-14 +3303900 Saint Austins Abbey Saint Austins Abbey 52.79806 -6.73556 S MSTY IE L 01 0 84 Europe/Dublin 2010-08-14 +3303902 Tullowphelim Tullowphelim 52.81139 -6.74417 L LCTY IE L 01 0 87 Europe/Dublin 2010-08-14 +3303903 Tullow Hill Tullow Hill 52.80194 -6.71361 T HLL IE L 01 0 95 Europe/Dublin 2010-08-14 +3303904 Grange Park Grange Park 52.80611 -6.70167 S EST IE L 01 0 97 Europe/Dublin 2010-08-14 +3303906 Mountwalseley Mountwalseley Crosslow,Mountwalseley 52.78972 -6.71306 S EST IE IE L 01 0 93 Europe/Dublin 2010-08-14 +3303909 The Grange The Grange 52.81722 -6.70111 S EST IE L 01 0 101 Europe/Dublin 2010-08-14 +3303910 Rathlyon Rathlyon 52.82528 -6.71278 P PPL IE L 01 0 102 Europe/Dublin 2010-08-14 +3303912 Tobinstown House Tobinstown House 52.84056 -6.67444 S HSEC IE L 01 0 113 Europe/Dublin 2010-08-14 +3303926 Paulville House Paulville House 52.83556 -6.69861 S HSEC IE L 01 0 110 Europe/Dublin 2010-08-14 +3303927 Tankardstown Cross Roads Tankardstown Cross Roads 52.82444 -6.68861 P PPL IE L 01 0 106 Europe/Dublin 2010-08-14 +3303929 Rathglass Bridge Rathglass Bridge 52.77556 -6.70861 P PPL IE L 01 0 92 Europe/Dublin 2010-08-14 +3303930 Ardoyne Lodge Ardoyne Lodge 52.78306 -6.68806 S HSE IE L 31 0 109 Europe/Dublin 2010-08-14 +3303932 Money Bridge Money Bridge 52.7775 -6.65 P PPL IE L 31 0 120 Europe/Dublin 2010-08-14 +3303933 Killinure House Killinure House 52.785 -6.64417 S HSEC IE L 31 0 116 Europe/Dublin 2010-08-14 +3303935 Darcy’s Cross Roads Darcy's Cross Roads 52.79472 -6.63361 P PPL IE L 31 0 110 Europe/Dublin 2010-08-14 +3303936 Knockloe Bridge Knockloe Bridge 52.80333 -6.70056 P PPL IE L 31 0 97 Europe/Dublin 2010-08-14 +3303939 Tulloweldy Tulloweldy 52.78083 -6.67167 L LCTY IE L 31 0 122 Europe/Dublin 2010-08-14 +3303940 Killinure Bridge Killinure Bridge 52.77583 -6.6275 P PPL IE L 31 0 115 Europe/Dublin 2010-08-14 +3304019 Crab Lane Cross Roads Crab Lane Cross Roads 52.7725 -6.61306 P PPL IE L 31 0 188 Europe/Dublin 2010-08-14 +3304020 The Hall The Hall 52.78 -6.60778 S EST IE L 31 0 212 Europe/Dublin 2010-08-14 +3304022 Aghow Aghow 52.75917 -6.61472 P PPL IE L 31 0 269 Europe/Dublin 2010-08-14 +3304023 Liscolman House Liscolman House 52.81722 -6.66417 S HSEC IE L 31 0 120 Europe/Dublin 2010-08-14 +3304024 Knockeen Knockeen 52.80944 -6.65972 L LCTY IE L 31 0 121 Europe/Dublin 2010-08-14 +3304025 Aghinree Bridge Aghinree Bridge 52.82778 -6.64639 P PPL IE L 31 0 123 Europe/Dublin 2010-08-14 +3304026 Ballyconnell Ballyconnell 52.80722 -6.63694 L LCTY IE L 31 0 113 Europe/Dublin 2010-08-14 +3304027 Lumecloon Lumecloon 52.79583 -6.61222 L LCTY IE L 31 0 115 Europe/Dublin 2010-08-14 +3304029 Gowle House Gowle House 52.79861 -6.59528 S HSEC IE L 31 0 169 Europe/Dublin 2010-08-14 +3304030 Ballyshane House Ballyshane House 52.80861 -6.58889 S HSEC IE L 01 0 142 Europe/Dublin 2010-08-14 +3304031 Ballynakill Ballynakill 52.8225 -6.62333 L LCTY IE L 01 0 110 Europe/Dublin 2010-08-14 +3304032 Rathgall Rathgall 52.80083 -6.66 T RK IE L 31 0 121 Europe/Dublin 2010-08-14 +3304033 Raheen Raheen 52.83056 -6.61556 T RK IE L 01 0 112 Europe/Dublin 2010-08-14 +3304034 Knockballystine Cross Roads Knockballystine Cross Roads 52.82944 -6.64222 P PPL IE L 01 0 123 Europe/Dublin 2010-08-14 +3304036 Rath Rath 52.85389 -6.60417 T RK IE L 01 0 127 Europe/Dublin 2010-08-14 +3304038 Mount Lucas Mount Lucas 52.88944 -6.67472 S HSEC IE L 01 0 153 Europe/Dublin 2010-08-14 +3304040 Gibbet Hill Gibbet Hill 52.67444 -6.5975 T MT IE L 30 0 150 Europe/Dublin 2010-08-14 +3304046 Graigue More Graigue More 52.665 -6.59417 P PPL IE L 30 0 106 Europe/Dublin 2010-08-14 +3304047 Pullinstown Big Pullinstown Big 52.5325 -6.60778 L LCTY IE L 30 0 72 Europe/Dublin 2010-08-14 +3304049 Lambstown Lambstown 52.38139 -6.60861 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304050 Corlican Corlican 52.39194 -6.59889 L LCTY IE L 30 0 62 Europe/Dublin 2010-08-14 +3304051 Ballyhoge Ballyhoge 52.41583 -6.58944 L LCTY IE L 30 0 58 Europe/Dublin 2010-08-14 +3304052 Tinnakilla Tinnakilla 52.40222 -6.58444 L LCTY IE L 30 0 57 Europe/Dublin 2010-08-14 +3304054 Brookhill House Brookhill House 52.405 -6.56111 S HSEC IE L 30 0 46 Europe/Dublin 2010-08-14 +3304055 The Deeps The Deeps 52.38083 -6.56139 P PPLL IE L 30 0 45 Europe/Dublin 2010-08-14 +3304056 Bellevue Bellevue 52.40972 -6.56667 L LCTY IE L 30 0 49 Europe/Dublin 2010-08-14 +3304057 Kings Island Kings Island 52.43167 -6.56139 T ISL IE L 30 0 50 Europe/Dublin 2010-08-14 +3304058 Tincoon Tincoon 52.43111 -6.54833 L LCTY IE L 30 0 54 Europe/Dublin 2010-08-14 +3304071 Kyle Cross Roads Kyle Cross Roads 52.38444 -6.52056 P PPL IE L 30 0 24 Europe/Dublin 2010-08-14 +3304073 Kereight Kereight 52.3775 -6.53056 L LCTY IE L 30 0 30 Europe/Dublin 2010-08-14 +3304074 Kyle House Kyle House 52.39222 -6.52778 S HSEC IE L 30 0 32 Europe/Dublin 2010-08-14 +3304076 Staney Lodge Staney Lodge 52.40222 -6.52194 S HSE IE L 30 0 27 Europe/Dublin 2010-08-14 +3304077 Ballynaslaney Ballynaslaney 52.41056 -6.52278 L LCTY IE L 30 0 31 Europe/Dublin 2010-08-14 +3304079 Coolnaboy Coolnaboy 52.4325 -6.52611 L LCTY IE L 30 0 48 Europe/Dublin 2010-08-14 +3304080 Garrycleary Garrycleary 52.395 -6.51361 L LCTY IE L 30 0 18 Europe/Dublin 2010-08-14 +3304084 Monmore Monmore 52.40306 -6.50528 L LCTY IE L 30 0 10 Europe/Dublin 2010-08-14 +3304086 Crory Crory 52.39917 -6.49583 L LCTY IE L 30 0 8 Europe/Dublin 2010-08-14 +3304087 Larken Larken 52.40889 -6.48444 L LCTY IE L 30 0 13 Europe/Dublin 2010-08-14 +3304094 Coolaknick Coolaknick 52.44278 -6.52361 L LCTY IE L 30 0 48 Europe/Dublin 2010-08-14 +3304096 Coolteige Hill Coolteige Hill 52.44861 -6.57972 T HLL IE L 30 0 50 Europe/Dublin 2010-08-14 +3304097 Ballyrannel Ballyrannel 52.45528 -6.5125 P PPL IE L 30 0 54 Europe/Dublin 2010-08-14 +3304098 Rochfort House Rochfort House 52.46222 -6.55194 S HSEC IE L 30 0 66 Europe/Dublin 2010-08-14 +3304100 Craunroe Craunroe 52.4575 -6.54889 L LCTY IE L 30 0 70 Europe/Dublin 2010-08-14 +3304101 Borrmount House Borrmount House 52.4625 -6.56167 S HSEC IE L 30 0 58 Europe/Dublin 2010-08-14 +3304105 Ballybanoge Ballybanoge 52.46583 -6.54528 L LCTY IE L 30 0 73 Europe/Dublin 2010-08-14 +3304106 Dunanore Dunanore 52.46528 -6.585 L LCTY IE L 30 0 56 Europe/Dublin 2010-08-14 +3304108 Sweettarm House Sweettarm House 52.48 -6.57278 S HSEC IE L 30 0 51 Europe/Dublin 2010-08-14 +3304109 Moufin Moufin 52.47583 -6.58083 L LCTY IE L 30 0 52 Europe/Dublin 2010-08-14 +3304110 Darby Gap Darby Gap 52.47167 -6.53639 T GAP IE L 30 0 77 Europe/Dublin 2010-08-14 +3304111 Mye Cross Roads Mye Cross Roads 52.47167 -6.5125 P PPL IE L 30 0 78 Europe/Dublin 2010-08-14 +3304113 Ballycourry Ballycourry 52.47861 -6.52833 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3304114 Cretoge Cretoge 52.47972 -6.54889 L LCTY IE L 30 0 73 Europe/Dublin 2010-08-14 +3304115 Knockinarshat Cross Roads Knockinarshat Cross Roads 52.49083 -6.58139 P PPL IE L 30 0 51 Europe/Dublin 2010-08-14 +3304116 Bloomfield Bloomfield 52.49583 -6.59167 S EST IE L 30 0 57 Europe/Dublin 2010-08-14 +3304118 Daphey Castle Daphey Castle 52.50083 -6.59972 S CSTL IE L 30 0 59 Europe/Dublin 2010-08-14 +3304119 Cherryorchard Bridge Cherryorchard Bridge 52.50694 -6.58472 P PPL IE L 30 0 57 Europe/Dublin 2010-08-14 +3304121 Milehouse Milehouse 52.51694 -6.59306 P PPL IE L 30 0 67 Europe/Dublin 2010-08-14 +3304122 Killagoley Killagoley 52.49333 -6.55917 L LCTY IE L 30 0 55 Europe/Dublin 2010-08-14 +3304123 Blackstoops House Blackstoops House 52.51333 -6.55778 S HSEC IE L 30 0 55 Europe/Dublin 2010-08-14 +3304124 Auglinagalley House Auglinagalley House 52.48861 -6.54278 S HSEC IE L 30 0 68 Europe/Dublin 2010-08-14 +3304125 Cooladine Cooladine 52.4925 -6.52361 L LCTY IE L 30 0 71 Europe/Dublin 2010-08-14 +3304126 Cooladine Cross Roads Cooladine Cross Roads 52.49167 -6.50111 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3304127 Clonhasten Cross Roads Clonhasten Cross Roads 52.50278 -6.52778 P PPL IE L 30 0 67 Europe/Dublin 2010-08-14 +3304129 Artramon House Artramon House 52.38083 -6.47528 S HSEC IE L 30 0 1 Europe/Dublin 2010-08-14 +3304130 Ballyhoggan Ballyhoggan 52.39 -6.45889 L LCTY IE L 30 0 5 Europe/Dublin 2010-08-14 +3304131 Ardcolm Ardcolm 52.37472 -6.44444 L LCTY IE L 30 0 2 Europe/Dublin 2010-08-14 +3304132 Galbally Galbally 52.38694 -6.43306 L LCTY IE L 30 0 9 Europe/Dublin 2010-08-14 +3304133 Garrygibbon Garrygibbon 52.37667 -6.40861 L LCTY IE L 30 0 5 Europe/Dublin 2010-08-14 +3304134 Ballinamorragh Ballinamorragh 52.38222 -6.40917 L LCTY IE L 30 0 5 Europe/Dublin 2010-08-14 +3304135 Ballina Ballina 52.39028 -6.41583 L LCTY IE L 30 0 8 Europe/Dublin 2010-08-14 +3304136 Ballymartin Cross Roads Ballymartin Cross Roads 52.39306 -6.43333 P PPL IE L 30 0 13 Europe/Dublin 2010-08-14 +3304137 Ballyhow Middle Ballyhow Middle 52.40083 -6.42639 L LCTY IE L 30 0 18 Europe/Dublin 2010-08-14 +3304138 Glenbough Glenbough 52.40444 -6.39917 P PPL IE L 30 0 10 Europe/Dublin 2010-08-14 +3304143 Coolrainey Coolrainey 52.3875 -6.36833 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3304144 Curracloe Curracloe 52.39306 -6.37639 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304146 Doo Lough Doo Lough 52.40722 -6.36083 H LK IE L 30 0 1 Europe/Dublin 2010-08-14 +3304148 Ballinrooaun Lodge Ballinrooaun Lodge 52.41667 -6.39694 S HSE IE L 30 0 21 Europe/Dublin 2010-08-14 +3304149 Ballyvallooo Ballyvallooo 52.41667 -6.37667 P PPL IE L 30 0 12 Europe/Dublin 2010-08-14 +3304150 Ballina Ballina 52.42389 -6.37222 L LCTY IE L 30 0 8 Europe/Dublin 2010-08-14 +3304151 Turkyle Turkyle 52.42528 -6.44611 P PPL IE L 30 0 31 Europe/Dublin 2010-08-14 +3304152 Conicar Hill Conicar Hill 52.41333 -6.43333 T HLL IE L 30 0 23 Europe/Dublin 2010-08-14 +3304153 Mullanagower Mullanagower 52.40472 -6.47389 L LCTY IE L 30 0 12 Europe/Dublin 2010-08-14 +3304154 Bentley Cottage Bentley Cottage 52.40167 -6.3525 S HSE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304155 Ballinesker Ballinesker 52.40361 -6.35722 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304157 Cooneys Cross Roads Cooneys Cross Roads 52.43139 -6.41556 P PPL IE L 30 0 35 Europe/Dublin 2010-08-14 +3304158 Kilmallock Kilmallock 52.43306 -6.47639 L LCTY IE L 30 0 20 Europe/Dublin 2010-08-14 +3304159 Garryvadden Garryvadden 52.43167 -6.36806 L LCTY IE L 30 0 18 Europe/Dublin 2010-08-14 +3304160 Blackwater River Blackwater River 52.42694 -6.32778 H STM IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304161 Ballynaclash Ballynaclash 52.42861 -6.33528 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304162 Crosslaghroe Cross Roads Crosslaghroe Cross Roads 52.44 -6.3525 P PPL IE L 30 0 27 Europe/Dublin 2010-08-14 +3304164 Ballyroe Ballyroe 52.43528 -6.39167 P PPL IE L 30 0 38 Europe/Dublin 2010-08-14 +3304165 Inch Inch 52.43639 -6.34667 L LCTY IE L 30 0 24 Europe/Dublin 2010-08-14 +3304166 Rockery Lodge Rockery Lodge 52.44917 -6.36278 S HSEC IE L 30 0 45 Europe/Dublin 2010-08-14 +3304167 Ballybaun Ballybaun 52.44139 -6.42306 P PPL IE L 30 0 44 Europe/Dublin 2010-08-14 +3304169 Garryntaulagh Garryntaulagh 52.43944 -6.43778 L LCTY IE L 30 0 40 Europe/Dublin 2010-08-14 +3304170 Curelogh Curelogh 52.4475 -6.42833 L LCTY IE L 30 0 50 Europe/Dublin 2010-08-14 +3304171 Ballynamona Ballynamona 52.45833 -6.42056 L LCTY IE L 30 0 60 Europe/Dublin 2010-08-14 +3304172 Knocknovey Knocknovey 52.46056 -6.43806 L LCTY IE L 30 0 56 Europe/Dublin 2010-08-14 +3304173 Ballina Ballina 52.44972 -6.44861 L LCTY IE L 30 0 41 Europe/Dublin 2010-08-14 +3304175 Ballykelly Ballykelly 52.44889 -6.47278 L LCTY IE L 30 0 28 Europe/Dublin 2010-08-14 +3304176 Ballylucas Ballylucas 52.43694 -6.46528 P PPL IE L 30 0 29 Europe/Dublin 2010-08-14 +3304178 Ballynastraw Ballynastraw 52.46444 -6.49278 L LCTY IE L 30 0 38 Europe/Dublin 2010-08-14 +3304180 Oulartleigh Oulartleigh 52.4725 -6.47472 L LCTY IE L 30 0 46 Europe/Dublin 2010-08-14 +3304251 Kilpierce Kilpierce 52.49833 -6.49083 P PPL IE L 30 0 77 Europe/Dublin 2010-08-14 +3304252 Granias Cross Roads Granias Cross Roads 52.49139 -6.43528 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +3304253 Derry Derry 52.50028 -6.45694 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304254 Glennagark Glennagark 52.4975 -6.4325 L LCTY IE L 30 0 66 Europe/Dublin 2010-08-14 +3304255 Slievenagorra Hill Slievenagorra Hill 52.4875 -6.42167 T HLL IE L 30 0 75 Europe/Dublin 2010-08-14 +3304256 Bolaboy Bolaboy 52.49139 -6.41611 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304257 Cush Gap Cush Gap 52.44083 -6.31056 T GAP IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304258 Ballyconnigar Upper Ballyconnigar Upper 52.44694 -6.31917 L LCTY IE L 30 0 4 Europe/Dublin 2010-08-14 +3304259 Castle Talbot Castle Talbot 52.45472 -6.34583 S CSTL IE L 30 0 67 Europe/Dublin 2010-08-14 +3304261 Knocknasilloge Knocknasilloge 52.45694 -6.31806 L LCTY IE L 30 0 31 Europe/Dublin 2010-08-14 +3304262 Ballycodrane Ballycodrane 52.47028 -6.335 L LCTY IE L 30 0 77 Europe/Dublin 2010-08-14 +3304263 Ballynellard Ballynellard 52.46833 -6.35361 L LCTY IE L 30 0 77 Europe/Dublin 2010-08-14 +3304264 Aughanall River Aughanall River 52.46361 -6.34111 H STM IE L 30 0 77 Europe/Dublin 2010-08-14 +3304265 Ballingowan Ballingowan 52.48139 -6.35472 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3304266 Kilnew Kilnew 52.48611 -6.31778 L LCTY IE L 30 0 49 Europe/Dublin 2010-08-14 +3304267 Killincooly Killincooly 52.49028 -6.29722 L LCTY IE L 30 0 14 Europe/Dublin 2010-08-14 +3304268 Ballynamona Ballynamona 52.47417 -6.285 L LCTY IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304269 Taberlomina Cross Roads Taberlomina Cross Roads 52.48639 -6.33694 P PPL IE L 30 0 66 Europe/Dublin 2010-08-14 +3304270 Courtclogh Courtclogh 52.47778 -6.395 L LCTY IE L 30 0 78 Europe/Dublin 2010-08-14 +3304271 Castleellis Castleellis 52.46972 -6.39417 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304272 Garrymore Garrymore 52.49056 -6.38722 L LCTY IE L 30 0 77 Europe/Dublin 2010-08-14 +3304273 Ballytarsna Cross Roads Ballytarsna Cross Roads 52.49639 -6.36556 P PPL IE L 30 0 65 Europe/Dublin 2010-08-14 +3304276 Ballyadam Ballyadam 52.49889 -6.31389 L LCTY IE L 30 0 38 Europe/Dublin 2010-08-14 +3304277 Killagawan Killagawan 52.50139 -6.35694 L LCTY IE L 30 0 58 Europe/Dublin 2010-08-14 +3304278 Moyne House Moyne House 52.52639 -6.56667 S HSEC IE L 30 0 68 Europe/Dublin 2010-08-14 +3304280 Kilcannon Kilcannon 52.52306 -6.55 L LCTY IE L 30 0 56 Europe/Dublin 2010-08-14 +3304281 Clolourish Clolourish 52.515 -6.50889 L LCTY IE L 30 0 70 Europe/Dublin 2010-08-14 +3304282 Corbally Corbally 52.50667 -6.50111 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3304287 Ballyovril Ballyovril 52.53444 -6.57778 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304288 Bunn Bridge Bunn Bridge 52.54639 -6.54028 P PPL IE L 30 0 58 Europe/Dublin 2010-08-14 +3304290 Killabeg House Killabeg House 52.54306 -6.53389 S HSEC IE L 30 0 58 Europe/Dublin 2010-08-14 +3304291 Crane Crane 52.53417 -6.51472 L LCTY IE L 30 0 67 Europe/Dublin 2010-08-14 +3304292 Tomsallagh House Tomsallagh House 52.55444 -6.49778 S HSEC IE L 30 0 74 Europe/Dublin 2010-08-14 +3304294 Tinnacross Cross Roads Tinnacross Cross Roads 52.54472 -6.4775 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304295 Ballysinon Ballysinon 52.52528 -6.48028 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3304296 Grange Grange 52.53778 -6.45694 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304297 Monagear Monagear 52.53083 -6.47333 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304299 Scarawalsh Bridge Scarawalsh Bridge 52.54889 -6.5475 P PPL IE L 30 0 56 Europe/Dublin 2010-08-14 +3304300 Oulartard Oulartard 52.53806 -6.50167 S EST IE L 30 0 71 Europe/Dublin 2010-08-14 +3304305 Clondaw Clondaw 52.525 -6.45083 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304307 Ballincash Ballincash 52.51778 -6.44333 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304308 Oulartwick Oulartwick 52.51417 -6.45944 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3304310 Garryduff House Garryduff House 52.53056 -6.44472 S HSEC IE L 30 0 76 Europe/Dublin 2010-08-14 +3304311 Kilcormick Kilcormick 52.5325 -6.43472 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304312 Garrybrit Garrybrit 52.53778 -6.4325 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304313 Ballinroad Ballinroad 52.51917 -6.41722 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3304314 Raheenduff Cross Roads Raheenduff Cross Roads 52.51972 -6.3825 P PPL IE L 30 0 78 Europe/Dublin 2010-08-14 +3304317 Ballyorley Ballyorley 52.54139 -6.4225 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304359 Glenranny Glenranny 52.535 -6.37556 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304360 Kilnamanagh Kilnamanagh 52.52083 -6.37333 L LCTY IE L 30 0 78 Europe/Dublin 2010-08-14 +3304361 Ballynahown Ballynahown 52.51472 -6.35861 L LCTY IE L 30 0 60 Europe/Dublin 2010-08-14 +3304362 Ballyhabbock Ballyhabbock 52.51139 -6.33361 L LCTY IE L 30 0 50 Europe/Dublin 2010-08-14 +3304363 Ballinlow Ballinlow 52.51083 -6.30083 L LCTY IE L 30 0 31 Europe/Dublin 2010-08-14 +3304365 Ballygortin Ballygortin 52.52833 -6.30944 P PPL IE L 30 0 33 Europe/Dublin 2010-08-14 +3304366 Crandaniel Crandaniel 52.53694 -6.30167 L LCTY IE L 30 0 28 Europe/Dublin 2010-08-14 +3304367 Ballyedmond Ballyedmond 52.54167 -6.33611 L LCTY IE L 30 0 59 Europe/Dublin 2010-08-14 +3304368 Upton House Upton House 52.5175 -6.27028 S HSEC IE L 30 0 11 Europe/Dublin 2010-08-14 +3304370 Litterberg House Litterberg House 52.51139 -6.27194 S HSEC IE L 30 0 8 Europe/Dublin 2010-08-14 +3304371 Coolroe Coolroe 52.52583 -6.27028 P PPL IE L 30 0 14 Europe/Dublin 2010-08-14 +3304373 Clone West Clone West 52.54306 -6.36917 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304374 Raheenlusk Raheenlusk 52.53861 -6.275 L LCTY IE L 30 0 15 Europe/Dublin 2010-08-14 +3304375 Tinnacree Tinnacree 52.52111 -6.24861 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304376 Ballinoulart Ballinoulart 52.52806 -6.25222 L LCTY IE L 30 0 5 Europe/Dublin 2010-08-14 +3304377 Ballylurkin Ballylurkin 52.50611 -6.26306 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304378 Greenhall Greenhall 52.5425 -6.30972 L LCTY IE L 30 0 27 Europe/Dublin 2010-08-14 +3304379 Ballyedmond River Ballyedmond River 52.56139 -6.28694 H STM IE L 30 0 17 Europe/Dublin 2010-08-14 +3304380 Merrion Lodge Merrion Lodge 52.55083 -6.27222 S HSE IE L 30 0 16 Europe/Dublin 2010-08-14 +3304381 Peppard’s Castle Peppard's Castle 52.54444 -6.2375 S CSTL IE L 30 0 4 Europe/Dublin 2010-08-14 +3304382 Clonganny House Clonganny House 52.55611 -6.25667 S HSEC IE L 30 0 10 Europe/Dublin 2010-08-14 +3304383 Ballinastraw House Ballinastraw House 52.56 -6.32472 S HSEC IE L 30 0 57 Europe/Dublin 2010-08-14 +3304384 Old Bawn Old Bawn 52.55556 -6.21472 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304385 Seaview House Seaview House 52.56222 -6.21111 S HSEC IE L 30 0 1 Europe/Dublin 2010-08-14 +3304386 Cahore House Cahore House 52.56417 -6.19611 S HSEC IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304387 Curratubbin Cross Roads Curratubbin Cross Roads 52.57556 -6.31167 P PPL IE L 30 0 50 Europe/Dublin 2010-08-14 +3304388 Ballyoughna Cross Roads Ballyoughna Cross Roads 52.56889 -6.27222 P PPL IE L 30 0 14 Europe/Dublin 2010-08-14 +3304389 Ballinagam Cross Roads Ballinagam Cross Roads 52.58361 -6.22694 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3304390 The Little Crosses The Little Crosses 52.58556 -6.24444 P PPL IE L 30 0 5 Europe/Dublin 2010-08-14 +3304391 Ballinadrummin Ballinadrummin 52.58556 -6.30139 L LCTY IE L 30 0 21 Europe/Dublin 2010-08-14 +3304392 Parknashoge Parknashoge 52.57639 -6.26222 L LCTY IE L 30 0 11 Europe/Dublin 2010-08-14 +3304393 Glascarrig Point Glascarrig Point 52.58111 -6.19833 T PT IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304394 Annagh Annagh 52.57111 -6.29583 L LCTY IE L 30 0 16 Europe/Dublin 2010-08-14 +3304395 Clone Cross Roads Clone Cross Roads 52.55111 -6.37333 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304396 Buffer’s Alley Cross Roads Buffer's Alley Cross Roads 52.56167 -6.37306 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3304397 Tomnaboley Tomnaboley 52.55111 -6.4075 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304398 Ballyorley House Ballyorley House 52.54278 -6.39194 S HSEC IE L 30 0 76 Europe/Dublin 2010-08-14 +3304399 Monagreany Monagreany 52.56194 -6.39944 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3304400 Mounthoward Cross Roads Mounthoward Cross Roads 52.57611 -6.36583 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304401 Kilcorkey Kilcorkey 52.58139 -6.34139 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304402 Boldereen Cross Roads Boldereen Cross Roads 52.58083 -6.40583 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3304403 Myaugh Myaugh 52.55583 -6.47583 P PPL IE L 30 0 77 Europe/Dublin 2010-08-14 +3304404 Glen Village Glen Village 52.56444 -6.47028 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304405 Barrack Village Barrack Village 52.56833 -6.47972 P PPL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304406 Clone Clone 52.56361 -6.51194 L LCTY IE L 30 0 66 Europe/Dublin 2010-08-14 +3304407 Coolatore Coolatore 52.57694 -6.46417 L LCTY IE L 30 0 73 Europe/Dublin 2010-08-14 +3304408 Ballyhaddock Ballyhaddock 52.58139 -6.45722 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3304409 Kilcasey Kilcasey 52.58611 -6.43222 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304410 Dornan’s Bridge Dornan's Bridge 52.57722 -6.48972 P PPL IE L 30 0 70 Europe/Dublin 2010-08-14 +3304411 Tincarry Cottage Tincarry Cottage 52.57444 -6.54167 S HSE IE L 30 0 60 Europe/Dublin 2010-08-14 +3304412 Ballylough Ballylough 52.56444 -6.5425 L LCTY IE L 30 0 58 Europe/Dublin 2010-08-14 +3304413 Tinkerstown Cross Roads Tinkerstown Cross Roads 52.58667 -6.54444 L LCTY IE L 30 0 65 Europe/Dublin 2010-08-14 +3304414 Mountfin House Mountfin House 52.58667 -6.58083 S HSEC IE L 30 0 58 Europe/Dublin 2010-08-14 +3304415 Ballyduff Ballyduff 52.59139 -6.6025 L LCTY IE L 30 0 75 Europe/Dublin 2010-08-14 +3304416 Corah Corah 52.59056 -6.55611 P PPL IE L 30 0 64 Europe/Dublin 2010-08-14 +3304498 Curraduff Cross Roads Curraduff Cross Roads 52.63167 -6.55139 P PPL IE L 30 0 77 Europe/Dublin 2010-08-14 +3304499 Ballyandrew Cross Roads Ballyandrew Cross Roads 52.62556 -6.52222 P PPL IE L 30 0 86 Europe/Dublin 2010-08-14 +3304500 Kilthomas Cross Roads Kilthomas Cross Roads 52.6175 -6.49556 P PPL IE L 30 0 99 Europe/Dublin 2010-08-14 +3304502 Kiltown Kiltown 52.60194 -6.5075 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304504 Broadford Bridge Broadford Bridge 52.59861 -6.46583 P PPL IE L 30 0 68 Europe/Dublin 2010-08-14 +3304505 Saint Edans Saint Edans 52.59278 -6.48472 L LCTY IE L 30 0 64 Europe/Dublin 2010-08-14 +3304506 Graun Graun 52.59972 -6.525 P PPL IE L 30 0 68 Europe/Dublin 2010-08-14 +3304507 Moneydurtlow Moneydurtlow 52.61417 -6.5425 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3304509 Oldtown Cross Roads Oldtown Cross Roads 52.64111 -6.53306 P PPL IE L 30 0 96 Europe/Dublin 2010-08-14 +3304510 Bull Ring Bull Ring 52.63472 -6.49861 P PPL IE L 30 0 168 Europe/Dublin 2010-08-14 +3304511 Bull Ring Cross Roads Bull Ring Cross Roads 52.6375 -6.50167 P PPL IE L 30 0 129 Europe/Dublin 2010-08-14 +3304514 Kilrush Kilrush 52.64278 -6.58583 L LCTY IE L 30 0 70 Europe/Dublin 2010-08-14 +3304515 Ballyroebuck Ballyroebuck 52.65083 -6.57528 L LCTY IE L 30 0 72 Europe/Dublin 2010-08-14 +3304516 Askinamoe Askinamoe 52.60972 -6.51583 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304577 Aiden’s Cross Roads Aiden's Cross Roads 52.65556 -6.55694 P PPL IE L 30 0 91 Europe/Dublin 2010-08-14 +3304579 Ballyduff Ballyduff 52.63556 -6.485 L LCTY IE L 30 0 191 Europe/Dublin 2010-08-14 +3304582 Boley Cross Roads Boley Cross Roads 52.65667 -6.42389 P PPL IE L 30 0 85 Europe/Dublin 2010-08-14 +3304583 White Wood White Wood 52.63278 -6.45806 V FRST IE L 30 0 84 Europe/Dublin 2010-08-14 +3304585 Ballinamona Ballinamona 52.64167 -6.38806 L LCTY IE L 30 0 78 Europe/Dublin 2010-08-14 +3304591 Ballinclay House Ballinclay House 52.63139 -6.37111 S HSEC IE L 30 0 76 Europe/Dublin 2010-08-14 +3304598 Coolnaleen Coolnaleen 52.65167 -6.45528 L LCTY IE L 30 0 146 Europe/Dublin 2010-08-14 +3304600 Bay Cottage Bay Cottage 52.60972 -6.44 S HSE IE L 30 0 67 Europe/Dublin 2010-08-14 +3304601 Kilcloran Kilcloran 52.61778 -6.45639 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304602 Bolinaspick Bolinaspick 52.61472 -6.46056 P PPL IE L 30 0 75 Europe/Dublin 2010-08-14 +3304603 Monasootagh Monasootagh 52.65806 -6.47306 L LCTY IE L 30 0 158 Europe/Dublin 2010-08-14 +3304606 Borris Castle Borris Castle 52.65806 -6.59167 S CSTL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304607 Bolinahaney Bolinahaney 52.66833 -6.58222 L LCTY IE L 30 0 144 Europe/Dublin 2010-08-14 +3304608 Knocknalour Cross Roads Knocknalour Cross Roads 52.67361 -6.545 P PPL IE L 30 0 144 Europe/Dublin 2010-08-14 +3304609 Bolinrush Bolinrush 52.66639 -6.5325 L LCTY IE L 30 0 150 Europe/Dublin 2010-08-14 +3304610 Strahart Strahart 52.61361 -6.58528 L LCTY IE L 30 0 63 Europe/Dublin 2010-08-14 +3304612 Ballytarsna Cross Roads Ballytarsna Cross Roads 52.66861 -6.49778 P PPL IE L 30 0 188 Europe/Dublin 2010-08-14 +3304614 Raheen Raheen 52.66417 -6.44972 L LCTY IE L 30 0 159 Europe/Dublin 2010-08-14 +3304615 Dunishal House Dunishal House 52.68083 -6.50111 S HSEC IE L 30 0 128 Europe/Dublin 2010-08-14 +3304616 Slievegower Slievegower 52.67222 -6.44889 T MT IE L 30 0 177 Europe/Dublin 2010-08-14 +3304618 Shrule Shrule 52.67722 -6.4425 L LCTY IE L 30 0 170 Europe/Dublin 2010-08-14 +3304619 Carrigbeg Carrigbeg 52.66778 -6.43389 P PPLL IE L 30 0 152 Europe/Dublin 2010-08-14 +3304621 Island Bridge Island Bridge 52.65944 -6.38139 P PPL IE L 30 0 74 Europe/Dublin 2010-08-14 +3304623 Ballinclare House Ballinclare House 52.62806 -6.38167 S HSEC IE L 30 0 76 Europe/Dublin 2010-08-14 +3304624 Ballinacoola Ballinacoola 52.67833 -6.37556 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304625 Clologe Clologe 52.59889 -6.43583 L LCTY IE L 30 0 73 Europe/Dublin 2010-08-14 +3304626 Norris Mount Norris Mount 52.60972 -6.39611 S EST IE L 30 0 76 Europe/Dublin 2010-08-14 +3304627 Kilnahue House Kilnahue House 52.67722 -6.34167 S HSEC IE L 30 0 115 Europe/Dublin 2010-08-14 +3304628 Glandoran House Glandoran House 52.66944 -6.35167 S HSEC IE L 30 0 107 Europe/Dublin 2010-08-14 +3304629 Killowen Killowen 52.66278 -6.35694 L LCTY IE L 30 0 127 Europe/Dublin 2010-08-14 +3304630 Moneylawn Cottage Moneylawn Cottage 52.65333 -6.33056 S HSE IE L 30 0 83 Europe/Dublin 2010-08-14 +3304632 Brackan River Brackan River 52.62889 -6.30056 H STM IE L 30 0 9 Europe/Dublin 2010-08-14 +3304633 Gorey Hill Gorey Hill 52.67028 -6.31139 T HLL IE L 30 0 75 Europe/Dublin 2010-08-14 +3304634 Farm Hill Farm Hill 52.65472 -6.31917 T HLL IE L 30 0 61 Europe/Dublin 2010-08-14 +3304635 Barnadown House Barnadown House 52.63472 -6.31333 S HSEC IE L 30 0 21 Europe/Dublin 2010-08-14 +3304667 Mountforest House Mountforest House 52.62083 -6.34056 S HSEC IE L 30 0 58 Europe/Dublin 2010-08-14 +3304668 Boley Hill Boley Hill 52.59944 -6.34639 T HLL IE L 30 0 76 Europe/Dublin 2010-08-14 +3304670 Ballytin Ballytin 52.59194 -6.35111 L LCTY IE L 30 0 80 Europe/Dublin 2010-08-14 +3304671 Tomduff House Tomduff House 52.59194 -6.28944 S HSEC IE L 30 0 14 Europe/Dublin 2010-08-14 +3304673 Coolook Beg Coolook Beg 52.60278 -6.28778 L LCTY IE L 30 0 13 Europe/Dublin 2010-08-14 +3304674 Ballywalter Ballywalter 52.6125 -6.285 L LCTY IE L 30 0 11 Europe/Dublin 2010-08-14 +3304675 Ashton Ashton 52.62389 -6.29444 L LCTY IE L 30 0 10 Europe/Dublin 2010-08-14 +3304676 Donaghmore House Donaghmore House 52.59056 -6.21167 S HSEC IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304677 Ballyduff House Ballyduff House 52.59833 -6.25722 S HSEC IE L 30 0 6 Europe/Dublin 2010-08-14 +3304678 Primrose Cottage Primrose Cottage 52.60389 -6.24833 S HSEC IE L 30 0 3 Europe/Dublin 2010-08-14 +3304679 Ballylusk House Ballylusk House 52.6175 -6.25944 S HSEC IE L 30 0 6 Europe/Dublin 2010-08-14 +3304694 Pollshane Cross Roads Pollshane Cross Roads 52.60972 -6.23222 P PPL IE L 30 0 1 Europe/Dublin 2010-08-14 +3304695 Askingarran Askingarran 52.60333 -6.22833 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304699 Aughboy River Aughboy River 52.64389 -6.22583 H STM IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304702 Pollshone Head Pollshone Head 52.61667 -6.21694 T CAPE IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304704 Boleany Cross Roads Boleany Cross Roads 52.6375 -6.26194 P PPL IE L 30 0 4 Europe/Dublin 2010-08-14 +3304711 Ballycomclone Ballycomclone 52.67028 -6.24278 L LCTY IE L 30 0 27 Europe/Dublin 2010-08-14 +3304712 Hartfield House Hartfield House 52.66778 -6.27194 S HSEC IE L 30 0 41 Europe/Dublin 2010-08-14 +3304713 Milmount House Milmount House 52.67111 -6.28722 S HSEC IE L 30 0 48 Europe/Dublin 2010-08-14 +3304716 Carriganeagh Rock Carriganeagh Rock 52.65167 -6.28861 T RK IE L 30 0 23 Europe/Dublin 2010-08-14 +3304718 Banoge River Banoge River 52.64417 -6.28417 H STM IE L 30 0 7 Europe/Dublin 2010-08-14 +3304719 Clonatin House Clonatin House 52.6775 -6.27056 S HSEC IE L 30 0 53 Europe/Dublin 2010-08-14 +3304781 Ballymoney Cross Roads Ballymoney Cross Roads 52.68111 -6.21889 P PPL IE L 30 0 12 Europe/Dublin 2010-08-14 +3304782 Kildermot Cross Roads Kildermot Cross Roads 52.69083 -6.21139 P PPL IE L 30 0 20 Europe/Dublin 2010-08-14 +3304783 Kilmurry Cross Roads Kilmurry Cross Roads 52.68639 -6.2575 P PPL IE L 30 0 78 Europe/Dublin 2010-08-14 +3304784 Ballinglin Ballinglin 52.69611 -6.24444 L LCTY IE L 30 0 95 Europe/Dublin 2010-08-14 +3304785 Cronellard Cronellard 52.70139 -6.19917 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304786 Ballywilliam Ballywilliam 52.71056 -6.24611 L LCTY IE L 30 0 81 Europe/Dublin 2010-08-14 +3304787 Tomnahealy Tomnahealy 52.71528 -6.21528 L LCTY IE L 30 0 65 Europe/Dublin 2010-08-14 +3304788 Ballylacy Ballylacy 52.71944 -6.23111 L LCTY IE L 30 0 67 Europe/Dublin 2010-08-14 +3304789 Cronecribbin Cronecribbin 52.72583 -6.22861 L LCTY IE L 30 0 59 Europe/Dublin 2010-08-14 +3304790 Rivulet House Rivulet House 52.71111 -6.18333 S HSEC IE L 30 0 1 Europe/Dublin 2010-08-14 +3304791 Larch Hill Larch Hill 52.725 -6.24917 T HLL IE L 30 0 69 Europe/Dublin 2010-08-14 +3304792 Clonough Bridge Clonough Bridge 52.73833 -6.20556 P PPL IE L 30 0 40 Europe/Dublin 2010-08-14 +3304793 Monagarrow Monagarrow 52.73444 -6.19972 L LCTY IE L 30 0 34 Europe/Dublin 2010-08-14 +3304794 Cloneranny Cloneranny 52.72722 -6.17056 L LCTY IE L 30 0 7 Europe/Dublin 2010-08-14 +3304795 Clones Clones 52.71806 -6.16889 L LCTY IE L 30 0 1 Europe/Dublin 2010-08-14 +3304796 Inch River Inch River 52.71083 -6.16639 H STM IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304797 Clonough River Clonough River 52.72722 -6.19972 H STM IE L 30 0 29 Europe/Dublin 2010-08-14 +3304798 Killowen House Killowen House 52.74222 -6.18722 S HSEC IE L 30 0 39 Europe/Dublin 2010-08-14 +3304799 Saint Walerans Saint Walerans 52.68639 -6.28278 L LCTY IE L 30 0 67 Europe/Dublin 2010-08-14 +3304800 Creagh Creagh 52.68139 -6.32528 L LCTY IE L 30 0 119 Europe/Dublin 2010-08-14 +3304801 Ballygarrett Ballygarrett 52.68444 -6.34694 L LCTY IE L 30 0 109 Europe/Dublin 2010-08-14 +3304802 Ballingarry House Ballingarry House 52.68694 -6.32167 L LCTY IE L 30 0 109 Europe/Dublin 2010-08-14 +3304803 Killynann Killynann 52.69778 -6.31028 L LCTY IE L 30 0 100 Europe/Dublin 2010-08-14 +3304804 Clonsilla Clonsilla 52.70694 -6.28806 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304805 Mount Saint Benedict Mount Saint Benedict 52.70333 -6.36056 T MT IE L 30 0 132 Europe/Dublin 2010-08-14 +3304806 Lyrane Lyrane 52.69972 -6.3875 L LCTY IE L 30 0 114 Europe/Dublin 2010-08-14 +3304807 Craan Craan 52.69444 -6.38917 L LCTY IE L 30 0 114 Europe/Dublin 2010-08-14 +3304808 Keys Cross Roads Keys Cross Roads 52.68611 -6.375 P PPL IE L 30 0 92 Europe/Dublin 2010-08-14 +3304809 Craanhill Craanhill 52.70583 -6.3975 L LCTY IE L 30 0 151 Europe/Dublin 2010-08-14 +3304810 Mountneha Wood Mountneha Wood 52.70889 -6.37056 V FRST IE L 30 0 167 Europe/Dublin 2010-08-14 +3304811 Ballylusk Ballylusk 52.72778 -6.38528 L LCTY IE L 30 0 233 Europe/Dublin 2010-08-14 +3304812 Blackwater Bridge Blackwater Bridge 52.72194 -6.34944 P PPL IE L 30 0 131 Europe/Dublin 2010-08-14 +3304813 Bannview Bannview 52.72722 -6.33222 L LCTY IE L 30 0 152 Europe/Dublin 2010-08-14 +3304814 Annagh Annagh 52.73667 -6.35417 L LCTY IE L 30 0 151 Europe/Dublin 2010-08-14 +3304815 Coolnagloose House Coolnagloose House 52.73389 -6.27028 S HSEC IE L 30 0 64 Europe/Dublin 2010-08-14 +3304816 Killimerin Killimerin 52.73167 -6.28222 L LCTY IE L 30 0 76 Europe/Dublin 2010-08-14 +3304817 Borleagh House Borleagh House 52.74083 -6.28611 S HSEC IE L 30 0 98 Europe/Dublin 2010-08-14 +3304818 Lackan Lackan 52.71111 -6.31583 L LCTY IE L 30 0 137 Europe/Dublin 2010-08-14 +3304819 Connahill Connahill 52.74083 -6.38861 L LCTY IE L 30 0 261 Europe/Dublin 2010-08-14 +3304820 Monbay Monbay 52.68333 -6.42333 L LCTY IE L 30 0 138 Europe/Dublin 2010-08-14 +3304821 Knockbrandon Knockbrandon 52.70889 -6.42444 T HLL IE L 30 0 148 Europe/Dublin 2010-08-14 +3304822 Ballyconran Ballyconran 52.70028 -6.44556 L LCTY IE L 30 0 149 Europe/Dublin 2010-08-14 +3304823 Castlewhite Castlewhite 52.69778 -6.45639 L LCTY IE L 30 0 145 Europe/Dublin 2010-08-14 +3304824 Brideswell Brideswell 52.68667 -6.44611 L LCTY IE L 30 0 152 Europe/Dublin 2010-08-14 +3304825 Clonamona Upper Clonamona Upper 52.69528 -6.42722 L LCTY IE L 30 0 155 Europe/Dublin 2010-08-14 +3304826 Lask River Lask River 52.67056 -6.36028 H STM IE L 30 0 82 Europe/Dublin 2010-08-14 +3304838 Raheenakit Raheenakit 52.74917 -6.59 L LCTY IE L 30 0 240 Europe/Dublin 2010-08-14 +3304839 Park Lodge Park Lodge 52.72944 -6.58111 S HSE IE L 31 0 107 Europe/Dublin 2010-08-14 +3304840 Park House Park House 52.72694 -6.57639 S HSEC IE L 31 0 107 Europe/Dublin 2010-08-14 +3304841 New Bridge New Bridge 52.74083 -6.60028 P PPL IE L 30 0 190 Europe/Dublin 2010-08-14 +3304842 Raheengraney House Raheengraney House 52.71917 -6.59917 S HSEC IE L 31 0 91 Europe/Dublin 2010-08-14 +3304843 Buoufield House Buoufield House 52.69167 -6.5875 S HSEC IE L 30 0 129 Europe/Dublin 2010-08-14 +3304844 Tombard Tombard 52.60833 -6.60167 L LCTY IE L 30 0 74 Europe/Dublin 2010-08-14 +3304845 Glennashouk Glennashouk 52.70694 -6.58944 L LCTY IE L 31 0 98 Europe/Dublin 2010-08-14 +3304846 Ballingate Ballingate 52.70889 -6.55111 L LCTY IE L 31 0 70 Europe/Dublin 2010-08-14 +3304847 Ballingate Bridge Ballingate Bridge 52.71667 -6.55167 P PPL IE L 31 0 72 Europe/Dublin 2010-08-14 +3304848 Rose Ville Rose Ville 52.72167 -6.54222 L LCTY IE L 31 0 67 Europe/Dublin 2010-08-14 +3304849 Beech Mount Beech Mount 52.71278 -6.51778 L LCTY IE L 31 0 78 Europe/Dublin 2010-08-14 +3304850 Yewtree House Yewtree House 52.72778 -6.55583 S HSEC IE L 31 0 76 Europe/Dublin 2010-08-14 +3304851 Balisland House Balisland House 52.72306 -6.56056 S HSEC IE L 31 0 76 Europe/Dublin 2010-08-14 +3304852 Curragh Curragh 52.73694 -6.56833 L LCTY IE L 31 0 144 Europe/Dublin 2010-08-14 +3304853 Ballard Cross Roads Ballard Cross Roads 52.74472 -6.56306 P PPL IE L 31 0 165 Europe/Dublin 2010-08-14 +3304854 Tomacork Tomacork 52.72639 -6.50722 L LCTY IE L 31 0 152 Europe/Dublin 2010-08-14 +3304855 Mine Bridge Mine Bridge 52.68917 -6.49194 P PPL IE L 30 0 87 Europe/Dublin 2010-08-14 +3304856 Ballyellis Cross Roads Ballyellis Cross Roads 52.71111 -6.47028 P PPL IE L 31 0 143 Europe/Dublin 2010-08-14 +3304857 Umrygar House Umrygar House 52.69806 -6.49361 S HSEC IE L 31 0 76 Europe/Dublin 2010-08-14 +3304858 Kennystown Kennystown 52.725 -6.46694 L LCTY IE L 31 0 152 Europe/Dublin 2010-08-14 +3304859 Tomacork Barrack Tomacork Barrack 52.7275 -6.48639 S BRKS IE L 31 0 149 Europe/Dublin 2010-08-14 +3304860 Paulbeg House Paulbeg House 52.74111 -6.46861 S HSEC IE L 31 0 155 Europe/Dublin 2010-08-14 +3304861 Kilcavan Gap Kilcavan Gap 52.73583 -6.46583 T GAP IE L 31 0 174 Europe/Dublin 2010-08-14 +3304862 Rock House Rock House 52.73639 -6.52278 S HSEC IE L 31 0 129 Europe/Dublin 2010-08-14 +3304863 Ballyfarrell Ballyfarrell 52.71722 -6.43056 L LCTY IE L 30 0 152 Europe/Dublin 2010-08-14 +3304864 Buckstown House Buckstown House 52.72472 -6.41889 S HSEC IE L 30 0 148 Europe/Dublin 2010-08-14 +3304865 Ballyloughlin House Ballyloughlin House 52.72972 -6.39444 S HSEC IE L 30 0 237 Europe/Dublin 2010-08-14 +3304866 Cummer Cummer 52.73528 -6.41528 L LCTY IE L 30 0 198 Europe/Dublin 2010-08-14 +3304867 Kiltillahan Kiltillahan 52.68306 -6.49028 L LCTY IE L 30 0 135 Europe/Dublin 2010-08-14 +3304868 Toberpatrick Toberpatrick 52.72389 -6.15639 P PPL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +3304869 Coolroe Coolroe 52.75556 -6.18806 L LCTY IE L 30 0 48 Europe/Dublin 2010-08-14 +3304870 Scarnagh Cross Roads Scarnagh Cross Roads 52.75444 -6.20833 P PPL IE L 30 0 46 Europe/Dublin 2010-08-14 +3304871 Ballylarkin Bridge Ballylarkin Bridge 52.74889 -6.21222 P PPL IE L 30 0 45 Europe/Dublin 2010-08-14 +3304872 Saint Austins House Saint Austins House 52.75111 -6.23611 S HSEC IE L 30 0 55 Europe/Dublin 2010-08-14 +3304873 Fortchester House Fortchester House 52.74611 -6.24583 S HSEC IE L 30 0 58 Europe/Dublin 2010-08-14 +3304874 Kilmurry House Kilmurry House 52.74583 -6.16556 S HSEC IE L 31 0 16 Europe/Dublin 2010-08-14 +3304875 Ballyduff House Ballyduff House 52.75 -6.15778 S HSEC IE L 31 0 1 Europe/Dublin 2010-08-14 +3304876 Clogga Clogga 52.75583 -6.14722 P PPL IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3304877 Ashwood House Ashwood House 52.76278 -6.18361 S HSEC IE L 30 0 57 Europe/Dublin 2010-08-14 +3304878 Bounds Bridge Bounds Bridge 52.76611 -6.18722 P PPL IE L 30 0 57 Europe/Dublin 2010-08-14 +3304879 Monale Monale 52.76833 -6.3275 P PPL IE L 30 0 208 Europe/Dublin 2010-08-14 +3304880 Croghan Bridge Croghan Bridge 52.76861 -6.30806 P PPL IE L 30 0 245 Europe/Dublin 2010-08-14 +3304881 Mullaun Mullaun 52.75722 -6.29361 L LCTY IE L 30 0 138 Europe/Dublin 2010-08-14 +3304882 Tinnabaun Tinnabaun 52.75806 -6.31306 T MT IE L 30 0 163 Europe/Dublin 2010-08-14 +3304883 Pallis Pallis 52.74722 -6.32861 L LCTY IE L 30 0 152 Europe/Dublin 2010-08-14 +3304884 Pallis Bridge Pallis Bridge 52.75194 -6.34611 P PPL IE L 30 0 159 Europe/Dublin 2010-08-14 +3304885 Clonroe Cross Roads Clonroe Cross Roads 52.75667 -6.35389 P PPL IE L 30 0 160 Europe/Dublin 2010-08-14 +3304886 Cummer Vale Cummer Vale 52.74333 -6.41306 T GAP IE L 30 0 201 Europe/Dublin 2010-08-14 +3304887 Hillview House Hillview House 52.75917 -6.40778 S HSEC IE L 30 0 169 Europe/Dublin 2010-08-14 +3304888 Hillbrook Hillbrook 52.74722 -6.45528 L LCTY IE L 31 0 162 Europe/Dublin 2010-08-14 +3304889 Drumingall Wood Drumingall Wood 52.75222 -6.47028 V FRST IE L 31 0 169 Europe/Dublin 2010-08-14 +3304892 Coolattin Park Coolattin Park 52.75194 -6.49194 L PRK IE L 31 0 123 Europe/Dublin 2010-08-14 +3304893 Mill Wood Mill Wood 52.75694 -6.50639 V FRST IE L 31 0 116 Europe/Dublin 2010-08-14 +3304894 Ballykelly House Ballykelly House 52.75944 -6.50028 S HSEC IE L 31 0 77 Europe/Dublin 2010-08-14 +3304895 Tomnafinnoge Wood Tomnafinnoge Wood 52.76417 -6.48639 V FRST IE L 31 0 124 Europe/Dublin 2010-08-14 +3304896 Quarry Street Quarry Street 52.75917 -6.55056 L LCTY IE L 31 0 175 Europe/Dublin 2010-08-14 +3304897 Ardeen Ardeen 52.75361 -6.52611 P PPL IE L 31 0 71 Europe/Dublin 2010-08-14 +3304898 Cronelea House Cronelea House 52.76528 -6.55306 S HSEC IE L 31 0 175 Europe/Dublin 2010-08-14 +3304899 Mungacullin Mungacullin 52.76167 -6.59194 L LCTY IE L 31 0 316 Europe/Dublin 2010-08-14 +3304900 Ballynultagh Ballynultagh 52.77083 -6.53528 L LCTY IE L 31 0 170 Europe/Dublin 2010-08-14 +3304901 Boley Boley 52.77278 -6.59056 L LCTY IE L 31 0 304 Europe/Dublin 2010-08-14 +3304902 Seskin Seskin 52.79833 -6.57389 T MT IE L 31 0 301 Europe/Dublin 2010-08-14 +3304903 Lakeen Lakeen 52.77444 -6.56583 S HSEC IE L 31 0 261 Europe/Dublin 2010-08-14 +3304904 Mullinacuff Mullinacuff 52.78944 -6.55056 L LCTY IE L 31 0 281 Europe/Dublin 2010-08-14 +3304905 Laragh House Laragh House 52.78722 -6.54917 S HSEC IE L 31 0 260 Europe/Dublin 2010-08-14 +3304906 Harris’s Hill Harris's Hill 52.78361 -6.5875 T HLL IE L 31 0 254 Europe/Dublin 2010-08-14 +3304908 Knockatomcoyle Knockatomcoyle 52.80389 -6.54944 T HLL IE L 31 0 232 Europe/Dublin 2010-08-14 +3304909 Newtown Newtown 52.78917 -6.51889 L LCTY IE L 31 0 154 Europe/Dublin 2010-08-14 +3304910 Muskeagh Muskeagh 52.79944 -6.51917 L LCTY IE L 31 0 154 Europe/Dublin 2010-08-14 +3304911 Ballyraheen House Ballyraheen House 52.77611 -6.50083 S HSEC IE L 31 0 134 Europe/Dublin 2010-08-14 +3304912 Forttown House Forttown House 52.78306 -6.49583 S HSEC IE L 31 0 78 Europe/Dublin 2010-08-14 +3304913 Woodside House Woodside House 52.85528 -6.56694 S HSEC IE L 31 0 152 Europe/Dublin 2010-08-14 +3304914 Ballykillane House Ballykillane House 52.86472 -6.58944 S HSEC IE L 31 0 142 Europe/Dublin 2010-08-14 +3304916 Killalongford Killalongford 52.81167 -6.57444 L LCTY IE L 01 0 188 Europe/Dublin 2010-08-14 +3304917 Redbog Redbog 52.82556 -6.53417 L LCTY IE L 31 0 137 Europe/Dublin 2010-08-14 +3304918 Ballinagilky House Ballinagilky House 52.83722 -6.53472 L LCTY IE L 01 0 144 Europe/Dublin 2010-08-14 +3304919 Croneskugh Croneskugh 52.84083 -6.57639 L LCTY IE L 01 0 143 Europe/Dublin 2010-08-14 +3304920 Carrick Carrick 52.8125 -6.52806 L LCTY IE L 31 0 165 Europe/Dublin 2010-08-14 +3304921 Portrushen Portrushen 52.88278 -6.60028 L LCTY IE L 01 0 139 Europe/Dublin 2010-08-14 +3304922 Kibuacart House Kibuacart House 52.86972 -6.55972 L LCTY IE L 01 0 152 Europe/Dublin 2010-08-14 +3304923 Borkill Borkill 52.88139 -6.57528 L LCTY IE L 31 0 152 Europe/Dublin 2010-08-14 +3304925 Ballybrack Ballybrack 52.88306 -6.55278 L LCTY IE L 31 0 163 Europe/Dublin 2010-08-14 +3304926 Ballykilmurry Ballykilmurry 52.89083 -6.53694 L LCTY IE L 31 0 185 Europe/Dublin 2010-08-14 +3304927 Ballyedmond Ballyedmond 52.8775 -6.53111 L LCTY IE L 01 0 187 Europe/Dublin 2010-08-14 +3304928 Rathnagrew Rathnagrew 52.87111 -6.53417 L LCTY IE L 01 0 172 Europe/Dublin 2010-08-14 +3304929 Rathbane Rathbane 52.86028 -6.51528 L LCTY IE L 31 0 196 Europe/Dublin 2010-08-14 +3304930 Rathduffmore Rathduffmore 52.88528 -6.51167 L LCTY IE L 31 0 212 Europe/Dublin 2010-08-14 +3304931 Ardnaboy Ardnaboy 52.86083 -6.49417 L LCTY IE L 31 0 228 Europe/Dublin 2010-08-14 +3304932 Knocknaboley Knocknaboley 52.85139 -6.52528 L LCTY IE L 31 0 167 Europe/Dublin 2010-08-14 +3304933 Springfield House Springfield House 52.83972 -6.51222 S HSEC IE L 31 0 157 Europe/Dublin 2010-08-14 +3304934 Whiterock House Whiterock House 52.82972 -6.5125 S HSEC IE L 31 0 136 Europe/Dublin 2010-08-14 +3304935 Knocknagilky Knocknagilky 52.88694 -6.48722 L LCTY IE L 31 0 248 Europe/Dublin 2010-08-14 +3304936 Knocknashamroge Knocknashamroge 52.88278 -6.48806 L LCTY IE L 31 0 243 Europe/Dublin 2010-08-14 +3304937 Ballymaghroe Ballymaghroe 52.87194 -6.48417 L LCTY IE L 31 0 243 Europe/Dublin 2010-08-14 +3304938 Rathshanmore Rathshanmore 52.84861 -6.48583 L LCTY IE L 31 0 266 Europe/Dublin 2010-08-14 +3304939 Ballycumber Ballycumber 52.83694 -6.47306 L LCTY IE L 31 0 304 Europe/Dublin 2010-08-14 +3304940 Broomfield House Broomfield House 52.83278 -6.48583 S HSEC IE L 31 0 269 Europe/Dublin 2010-08-14 +3304941 Ballynamanoge Ballynamanoge 52.82028 -6.51944 L LCTY IE L 31 0 129 Europe/Dublin 2010-08-14 +3304942 Saint Mullins Saint Mullins 52.82222 -6.47528 T MT IE L 31 0 269 Europe/Dublin 2010-08-14 +3304943 Coolafimshoge Coolafimshoge 52.8125 -6.48306 L LCTY IE L 31 0 172 Europe/Dublin 2010-08-14 +3304944 Curravanish Curravanish 52.80306 -6.49639 L LCTY IE L 31 0 124 Europe/Dublin 2010-08-14 +3304946 Rockingham House Rockingham House 52.80361 -6.44139 S HSEC IE L 31 0 152 Europe/Dublin 2010-08-14 +3304947 Garryhoe Garryhoe 52.81194 -6.45 L LCTY IE L 31 0 154 Europe/Dublin 2010-08-14 +3304948 Carrigroe Carrigroe 52.83833 -6.44139 L LCTY IE L 31 0 154 Europe/Dublin 2010-08-14 +3304949 Corndog Corndog 52.8475 -6.44056 L LCTY IE L 31 0 166 Europe/Dublin 2010-08-14 +3304950 Moyne Moyne 52.86 -6.4625 L LCTY IE L 31 0 284 Europe/Dublin 2010-08-14 +3304951 Slievemweel Slievemweel 52.86 -6.43639 T MT IE L 31 0 262 Europe/Dublin 2010-08-14 +3304952 Ballyteige Bridge Ballyteige Bridge 52.88861 -6.4075 P PPL IE L 31 0 220 Europe/Dublin 2010-08-14 +3304953 Ballycurragh Bridge Ballycurragh Bridge 52.88417 -6.40417 P PPL IE L 31 0 220 Europe/Dublin 2010-08-14 +3304954 Sheilstown Sheilstown 52.88056 -6.44694 L LCTY IE L 31 0 304 Europe/Dublin 2010-08-14 +3304955 Askanagap Askanagap 52.87028 -6.43306 L LCTY IE L 31 0 303 Europe/Dublin 2010-08-14 +3304956 Rosahane Rosahane 52.88778 -6.39333 L LCTY IE L 31 0 251 Europe/Dublin 2010-08-14 +3304958 Coolballintaggart Lodge Coolballintaggart Lodge 52.87778 -6.3975 S HSE IE L 31 0 197 Europe/Dublin 2010-08-14 +3304959 Sheeanabeg Sheeanabeg 52.87639 -6.35333 L LCTY IE L 31 0 195 Europe/Dublin 2010-08-14 +3304960 Cappagh Cappagh 52.87556 -6.37667 L LCTY IE L 31 0 180 Europe/Dublin 2010-08-14 +3304961 Cratfield Cratfield 52.86861 -6.36306 L LCTY IE L 31 0 150 Europe/Dublin 2010-08-14 +3304962 Ballymanus Ballymanus 52.86611 -6.38861 L LCTY IE L 31 0 172 Europe/Dublin 2010-08-14 +3304963 Preban Preban 52.8375 -6.40333 L LCTY IE L 31 0 153 Europe/Dublin 2010-08-14 +3304964 Tomcoyle Tomcoyle 52.83278 -6.39222 L LCTY IE L 31 0 104 Europe/Dublin 2010-08-14 +3304965 Askakeogh House Askakeogh House 52.84389 -6.42417 S HSEC IE L 31 0 176 Europe/Dublin 2010-08-14 +3304966 Roddenagh Roddenagh 52.8575 -6.36639 P PPL IE L 31 0 99 Europe/Dublin 2010-08-14 +3304967 Roddenagh Wood Roddenagh Wood 52.84472 -6.35472 V FRST IE L 31 0 76 Europe/Dublin 2010-08-14 +3304968 Ballinglen House Ballinglen House 52.82278 -6.41556 S HSEC IE L 31 0 98 Europe/Dublin 2010-08-14 +3304969 Ballinglen Ballinglen 52.81361 -6.425 L LCTY IE L 31 0 111 Europe/Dublin 2010-08-14 +3304970 Killicreny Bridge Killicreny Bridge 52.80611 -6.41611 P PPL IE L 31 0 106 Europe/Dublin 2010-08-14 +3304971 Mucklagh Mucklagh 52.81306 -6.39333 L LCTY IE L 31 0 104 Europe/Dublin 2010-08-14 +3304972 Tomnaskela River Tomnaskela River 52.82056 -6.38444 H STM IE L 31 0 79 Europe/Dublin 2010-08-14 +3304973 Kilpipe Kilpipe 52.82167 -6.36111 L LCTY IE L 31 0 115 Europe/Dublin 2010-08-14 +3304974 Coolalug House Coolalug House 52.80222 -6.40639 S HSEC IE L 31 0 112 Europe/Dublin 2010-08-14 +3304975 Coolalug Bridge Coolalug Bridge 52.79583 -6.40472 P PPL IE L 31 0 132 Europe/Dublin 2010-08-14 +3304976 Rosbane Rosbane 52.80333 -6.43694 L LCTY IE L 31 0 152 Europe/Dublin 2010-08-14 +3304977 Coolbawn House Coolbawn House 52.81722 -6.33583 S HSEC IE L 31 0 151 Europe/Dublin 2010-08-14 +3304978 Killaveny Killaveny 52.79083 -6.4275 L LCTY IE L 31 0 150 Europe/Dublin 2010-08-14 +3304979 Lugduff Lugduff 52.79194 -6.44861 L LCTY IE L 31 0 148 Europe/Dublin 2010-08-14 +3304980 Kilcommon Bridge Kilcommon Bridge 52.78639 -6.45611 P PPL IE L 31 0 143 Europe/Dublin 2010-08-14 +3304981 Greenhall Bridge Greenhall Bridge 52.77694 -6.48472 P PPL IE L 31 0 78 Europe/Dublin 2010-08-14 +3304982 Fairwood Fairwood 52.78278 -6.46806 L LCTY IE L 31 0 107 Europe/Dublin 2010-08-14 +3304983 Ballyshonog House Ballyshonog House 52.78778 -6.47972 S HSEC IE L 31 0 98 Europe/Dublin 2010-08-14 +3304984 Mount Pleasant Mount Pleasant 52.7825 -6.44778 T HLL IE L 31 0 154 Europe/Dublin 2010-08-14 +3304985 Coolroe Coolroe 52.77278 -6.455 L LCTY IE L 31 0 152 Europe/Dublin 2010-08-14 +3304986 Fairwood Fairwood 52.77111 -6.46667 P PPL IE L 31 0 122 Europe/Dublin 2010-08-14 +3304987 Rosnastraw Rosnastraw 52.78139 -6.42139 L LCTY IE L 31 0 145 Europe/Dublin 2010-08-14 +3304988 Barnatown House Barnatown House 52.78194 -6.39722 S HSEC IE L 30 0 147 Europe/Dublin 2010-08-14 +3304989 Ballythomashill Ballythomashill 52.77528 -6.35889 L LCTY IE L 30 0 269 Europe/Dublin 2010-08-14 +3304990 Toberpatrick House Toberpatrick House 52.78917 -6.3825 S HSEC IE L 30 0 158 Europe/Dublin 2010-08-14 +3304991 Barrackcroghan Barrackcroghan 52.77472 -6.28917 T MT IE L 30 0 202 Europe/Dublin 2010-08-14 +3304992 Slievefoore Slievefoore 52.79 -6.28611 T MT IE L 31 0 292 Europe/Dublin 2010-08-14 +3304993 Killahurler Killahurler 52.79361 -6.29861 L LCTY IE L 31 0 302 Europe/Dublin 2010-08-14 +3304994 Mooreshill Mooreshill 52.79972 -6.28583 L LCTY IE L 31 0 286 Europe/Dublin 2010-08-14 +3304995 Askinch Askinch 52.78 -6.26028 L LCTY IE L 30 0 129 Europe/Dublin 2010-08-14 +3304996 Shirsheen Wood Shirsheen Wood 52.77639 -6.24444 V FRST IE L 30 0 96 Europe/Dublin 2010-08-14 +3304998 Newtown Lodge Newtown Lodge 52.77083 -6.24333 S HSE IE L 30 0 75 Europe/Dublin 2010-08-14 +3304999 Ballykilty House Ballykilty House 52.76861 -6.21306 S HSEC IE L 30 0 56 Europe/Dublin 2010-08-14 +3305000 Palmtree Cottage Palmtree Cottage 52.77806 -6.20194 S HSE IE L 31 0 57 Europe/Dublin 2010-08-14 +3305001 Bella Byrnes Bridge Bella Byrnes Bridge 52.77722 -6.17139 P PPL IE L 31 0 53 Europe/Dublin 2010-08-14 +3305002 Ballintomboy Ballintomboy 52.7825 -6.18694 L LCTY IE L 31 0 55 Europe/Dublin 2010-08-14 +3305003 Cooladangan House Cooladangan House 52.77833 -6.18556 S HSEC IE L 31 0 55 Europe/Dublin 2010-08-14 +3305004 Ballyduff Bridge Ballyduff Bridge 52.79278 -6.1875 P PPL IE L 31 0 31 Europe/Dublin 2010-08-14 +3305005 Thomastown House Thomastown House 52.79194 -6.22194 S HSEC IE L 31 0 78 Europe/Dublin 2010-08-14 +3305050 Clone House Clone House 52.83472 -6.305 S HSEC IE L 31 0 174 Europe/Dublin 2010-08-14 +3305051 Knocknamohill House Knocknamohill House 52.845 -6.25278 S HSEC IE L 31 0 134 Europe/Dublin 2010-08-14 +3305052 Ballycoog House Ballycoog House 52.83556 -6.27083 S HSEC IE L 31 0 54 Europe/Dublin 2010-08-14 +3305053 Coats Bridge Coats Bridge 52.84528 -6.30111 P PPL IE L 31 0 94 Europe/Dublin 2010-08-14 +3305071 Black Bridge Black Bridge 52.85639 -6.2825 P PPL IE L 31 0 75 Europe/Dublin 2010-08-14 +3305072 Ballygahan House Ballygahan House 52.86083 -6.2275 S HSEC IE L 31 0 62 Europe/Dublin 2010-08-14 +3305078 Killacloran Killacloran 52.83944 -6.33667 L LCTY IE L 31 0 103 Europe/Dublin 2010-08-14 +3305080 Three Wells Three Wells 52.87 -6.30806 P PPL IE L 31 0 179 Europe/Dublin 2010-08-14 +3305082 Curraghlawn Curraghlawn 52.79472 -6.36639 L LCTY IE L 31 0 273 Europe/Dublin 2010-08-14 +3305084 Ballinasilloge Ballinasilloge 52.81139 -6.31194 L LCTY IE L 31 0 292 Europe/Dublin 2010-08-14 +3305085 Moneyteige Middle Moneyteige Middle 52.815 -6.32583 L LCTY IE L 31 0 188 Europe/Dublin 2010-08-14 +3305086 Ballykillaneer Ballykillaneer 52.82167 -6.27778 P PPL IE L 31 0 158 Europe/Dublin 2010-08-14 +3305087 Monaglogh Monaglogh 52.81333 -6.24361 L LCTY IE L 31 0 142 Europe/Dublin 2010-08-14 +3305088 Cushbawn Cushbawn 52.88333 -6.30528 T MT IE L 31 0 223 Europe/Dublin 2010-08-14 +3305089 Mongnacool Mongnacool 52.88139 -6.28139 T MT IE L 31 0 168 Europe/Dublin 2010-08-14 +3305090 Carty’s Corner Carty's Corner 52.87417 -6.27444 L LCTY IE L 31 0 146 Europe/Dublin 2010-08-14 +3305091 Cronesallagh House Cronesallagh House 52.86861 -6.27306 S HSEC IE L 31 0 146 Europe/Dublin 2010-08-14 +3305093 Fortfaulkner Fortfaulkner 52.85972 -6.27694 L LCTY IE L 31 0 115 Europe/Dublin 2010-08-14 +3305094 Raheenavine House Raheenavine House 52.87583 -6.25278 S HSEC IE L 31 0 146 Europe/Dublin 2010-08-14 +3305095 Cooper Sulphur Mines Cooper Sulphur Mines 52.86444 -6.22639 S MN IE L 31 0 62 Europe/Dublin 2010-08-14 +3305096 Ballymoneen Ballymoneen 52.85111 -6.25778 L LCTY IE L 31 0 163 Europe/Dublin 2010-08-14 +3305097 Castlemacadam Castlemacadam 52.84639 -6.24528 L LCTY IE L 31 0 116 Europe/Dublin 2010-08-14 +3305098 Parknashaw House Parknashaw House 52.84222 -6.23139 S HSEC IE L 31 0 64 Europe/Dublin 2010-08-14 +3305099 Sheepwalk House Sheepwalk House 52.82667 -6.18861 S HSEC IE L 31 0 128 Europe/Dublin 2010-08-14 +3305100 Ballyarthur House Ballyarthur House 52.83278 -6.22056 S HSEC IE L 31 0 62 Europe/Dublin 2010-08-14 +3305101 Tigroney House Tigroney House 52.86111 -6.20833 S HSEC IE L 31 0 87 Europe/Dublin 2010-08-14 +3305102 Knockanree Upper Knockanree Upper 52.86944 -6.19694 P PPL IE L 31 0 146 Europe/Dublin 2010-08-14 +3305103 Sporting Lodge Sporting Lodge 52.8575 -6.165 S HSE IE L 31 0 148 Europe/Dublin 2010-08-14 +3305104 Ballygriffing House Ballygriffing House 52.79583 -6.21722 S HSEC IE L 31 0 78 Europe/Dublin 2010-08-14 +3305105 Lamberton House Lamberton House 52.79583 -6.1725 S HSEC IE L 31 0 18 Europe/Dublin 2010-08-14 +3305106 Ballyraine House Ballyraine House 52.80056 -6.17556 S HSEC IE L 31 0 15 Europe/Dublin 2010-08-14 +3305108 Woodmount House Woodmount House 52.81222 -6.17889 S HSEC IE L 31 0 43 Europe/Dublin 2010-08-14 +3305110 Mine View Mine View 52.84167 -6.19083 L LCTY IE L 31 0 161 Europe/Dublin 2010-08-14 +3305111 Killinskyduff House Killinskyduff House 52.81167 -6.14056 S HSEC IE L 31 0 1 Europe/Dublin 2010-08-14 +3305112 Ballymoney House Ballymoney House 52.82 -6.13222 S HSEC IE L 31 0 1 Europe/Dublin 2010-08-14 +3305113 Templerainy House Templerainy House 52.82639 -6.14778 S HSEC IE L 31 0 45 Europe/Dublin 2010-08-14 +3305114 Lewis Ville Lewis Ville 52.82667 -6.15944 S HSE IE L 31 0 53 Europe/Dublin 2010-08-14 +3305116 Rock View Rock View 52.83694 -6.14389 L LCTY IE L 31 0 85 Europe/Dublin 2010-08-14 +3305118 Pennycomequick Bridge Pennycomequick Bridge 52.84 -6.10028 P PPL IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3305119 Johnstown Johnstown 52.83 -6.12917 L LCTY IE L 31 0 6 Europe/Dublin 2010-08-14 +3305120 Pollaphuca Pollaphuca 52.85139 -6.16972 L LCTY IE L 31 0 151 Europe/Dublin 2010-08-14 +3305122 Barranisky Cross Roads Barranisky Cross Roads 52.85361 -6.15028 P PPL IE L 31 0 159 Europe/Dublin 2010-08-14 +3305123 Snugborough House Snugborough House 52.84194 -6.15389 S HSEC IE L 31 0 131 Europe/Dublin 2010-08-14 +3305125 Kilpatrick House Kilpatrick House 52.86222 -6.125 S HSEC IE L 31 0 52 Europe/Dublin 2010-08-14 +3305126 Ballyrogan House Ballyrogan House 52.86611 -6.11944 S HSEC IE L 31 0 52 Europe/Dublin 2010-08-14 +3305127 Crone House Crone House 52.87333 -6.1325 S HSEC IE L 31 0 70 Europe/Dublin 2010-08-14 +3305128 Ballynamona House Ballynamona House 52.87778 -6.10944 S HSEC IE L 31 0 52 Europe/Dublin 2010-08-14 +3305130 Blindwood Blindwood 52.87222 -6.16889 L LCTY IE L 31 0 165 Europe/Dublin 2010-08-14 +3305131 Oghil Oghil 52.87944 -6.15694 L LCTY IE L 31 0 129 Europe/Dublin 2010-08-14 +3305134 Jack White’s Cross Roads Jack White's Cross Roads 52.88056 -6.09722 P PPL IE L 31 0 39 Europe/Dublin 2010-08-14 +3305135 Tonlegee Tonlegee 52.87861 -6.07389 L LCTY IE L 31 0 1 Europe/Dublin 2010-08-14 +3305137 Haughtons Bridge Haughtons Bridge 52.8675 -6.06472 P PPL IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3305138 Ardanairy Ardanairy 52.86278 -6.08167 L LCTY IE L 31 0 1 Europe/Dublin 2010-08-14 +3305140 Buckroney House Buckroney House 52.85583 -6.09028 S HSEC IE L 31 0 1 Europe/Dublin 2010-08-14 +3305267 Drummin Drummin 52.72028 -6.58167 P PPLL IE L 31 0 73 Europe/Dublin 2010-08-14 +3305268 Tombreen House Tombreen House 52.69333 -6.51 S HSEC IE L 31 0 76 Europe/Dublin 2010-08-14 +3305271 New Bridge New Bridge 52.68028 -6.66833 L LCTY IE 00 0 75 Europe/Dublin 1998-02-09 +3305273 Clonmullen Clonmullen 52.64833 -6.68167 P PPLL IE L 01 0 80 Europe/Dublin 2010-08-14 +3305275 Aughnaglaur River Aughnaglaur River 52.43972 -6.66111 H STM IE L 30 0 67 Europe/Dublin 2010-08-14 +3305278 Coolculley River Coolculley River 52.77583 -7.08917 H STM IE 00 0 182 Europe/Dublin 1998-02-09 +3305443 Pollanassa River Pollanassa River 52.43778 -7.28194 H STM IE L 13 0 157 Europe/Dublin 2010-08-14 +3305445 Riversfield House Riversfield House 52.3875 -8.53778 S HSEC IE M 16 0 93 Europe/Dublin 2010-08-14 +3305446 Ballincurra Bridge Ballincurra Bridge 52.39333 -8.50222 P PPL IE M 16 0 107 Europe/Dublin 2010-08-14 +3305447 Fairyfield House Fairyfield House 52.39694 -8.54389 S HSEC IE M 16 0 89 Europe/Dublin 2010-08-14 +3305448 Foley’s Cross Roads Foley's Cross Roads 52.40167 -8.52722 P PPL IE M 16 0 94 Europe/Dublin 2010-08-14 +3305449 Martinstown Martinstown 52.39889 -8.49722 L LCTY IE M 16 0 111 Europe/Dublin 2010-08-14 +3305450 Kilmurry Kilmurry 52.38472 -8.46306 P PPL IE M 16 0 130 Europe/Dublin 2010-08-14 +3305451 Cush Cross Roads Cush Cross Roads 52.38861 -8.44806 P PPL IE M 16 0 151 Europe/Dublin 2010-08-14 +3305452 Martinstown House Martinstown House 52.40778 -8.48472 S HSEC IE M 16 0 116 Europe/Dublin 2010-08-14 +3305453 Balline House Balline House 52.40667 -8.45667 S HSEC IE M 16 0 123 Europe/Dublin 2010-08-14 +3305454 Knocktoran House Knocktoran House 52.4175 -8.45722 S HSEC IE M 16 0 117 Europe/Dublin 2010-08-14 +3305455 Gibbonstown House Gibbonstown House 52.42111 -8.50056 S HSEC IE M 16 0 112 Europe/Dublin 2010-08-14 +3305459 Gormanstown Gormanstown 52.43778 -8.52167 L LCTY IE M 16 0 97 Europe/Dublin 2010-08-14 +3305460 Newtown Newtown 52.44194 -8.465 L LCTY IE M 16 0 122 Europe/Dublin 2010-08-14 +3305461 Ballybeg Ballybeg 52.4425 -8.54333 L LCTY IE M 16 0 74 Europe/Dublin 2010-08-14 +3305469 Grillagh Grillagh 52.49222 -8.53722 L LCTY IE M 16 0 86 Europe/Dublin 2010-08-14 +3305470 Miltown House Miltown House 52.46778 -8.51833 S HSEC IE M 16 0 108 Europe/Dublin 2010-08-14 +3305471 Dunmorrisheer Dunmorrisheer 52.45472 -8.53222 L LCTY IE M 16 0 87 Europe/Dublin 2010-08-14 +3305472 Knockderc Knockderc 52.49472 -8.50722 T HLL IE M 16 0 106 Europe/Dublin 2010-08-14 +3305473 Bottomstown Bottomstown 52.45167 -8.49278 L LCTY IE M 16 0 140 Europe/Dublin 2010-08-14 +3305474 Rathanny House Rathanny House 52.46278 -8.45722 S HSEC IE M 16 0 100 Europe/Dublin 2010-08-14 +3305475 Ballinvreena Ballinvreena 52.39611 -8.42556 P PPL IE M 16 0 171 Europe/Dublin 2010-08-14 +3305476 Glenlary Cottage Glenlary Cottage 52.39861 -8.40472 S HSE IE M 16 0 185 Europe/Dublin 2010-08-14 +3305477 Glenbrohane Glenbrohane 52.38417 -8.38694 P PPL IE M 16 0 195 Europe/Dublin 2010-08-14 +3305478 Ballingarry House Ballingarry House 52.38472 -8.36722 S HSEC IE M 16 0 151 Europe/Dublin 2010-08-14 +3305480 Pinker’s Cross Pinker's Cross 52.405 -8.37472 P PPL IE M 16 0 129 Europe/Dublin 2010-08-14 +3305481 Curraghrothe Curraghrothe 52.3975 -8.33944 L LCTY IE M 16 0 152 Europe/Dublin 2010-08-14 +3305482 Duntryleague Duntryleague 52.405 -8.35333 P PPL IE M 16 0 144 Europe/Dublin 2010-08-14 +3305483 Ardrahin Ardrahin 52.3925 -8.30056 L LCTY IE M 16 0 133 Europe/Dublin 2010-08-14 +3305485 Knockanebrask Hill Knockanebrask Hill 52.39333 -8.24222 T HLL IE M 16 0 142 Europe/Dublin 2010-08-14 +3305486 Janeville Janeville 52.40583 -8.23083 S EST IE M 16 0 114 Europe/Dublin 2010-08-14 +3305487 Galty Lodge Galty Lodge 52.40556 -8.25861 S HSE IE M 16 0 134 Europe/Dublin 2010-08-14 +3305488 Glenery Glenery 52.41222 -8.31139 S EST IE M 16 0 152 Europe/Dublin 2010-08-14 +3305489 Ballylooby Ballylooby 52.4325 -8.34861 L LCTY IE M 16 0 131 Europe/Dublin 2010-08-14 +3305490 Scarteen Scarteen 52.42889 -8.37833 S EST IE M 16 0 98 Europe/Dublin 2010-08-14 +3305491 Cross of the Tree Cross of the Tree 52.42417 -8.38444 P PPLL IE M 16 0 100 Europe/Dublin 2010-08-14 +3305492 Ballynaveen Bridge Ballynaveen Bridge 52.46806 -8.39778 P PPL IE M 16 0 82 Europe/Dublin 2010-08-14 +3305493 Kenmare Castle Kenmare Castle 52.47722 -8.42889 S CSTL IE M 16 0 76 Europe/Dublin 2010-08-14 +3305494 Riverville Riverville 52.49222 -8.4575 P PPL IE M 16 0 75 Europe/Dublin 2010-08-14 +3305495 New Bridge New Bridge 52.50028 -8.45306 P PPL IE M 16 0 73 Europe/Dublin 2010-08-14 +3305496 Kilcullane Kilcullane 52.50417 -8.48694 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3305497 Ballynamona House Ballynamona House 52.50417 -8.45472 S HSEC IE M 16 0 73 Europe/Dublin 2010-08-14 +3305498 Loughgur Cross Loughgur Cross 52.51389 -8.50806 P PPL IE M 16 0 86 Europe/Dublin 2010-08-14 +3305499 Giants Grave Giants Grave 52.51139 -8.52083 S TMB IE M 16 0 88 Europe/Dublin 2010-08-14 +3305500 Ballynagranagh Ballynagranagh 52.51611 -8.44806 L LCTY IE M 16 0 64 Europe/Dublin 2010-08-14 +3305501 Cloghansoun Bridge Cloghansoun Bridge 52.52194 -8.47639 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3305502 Cahercorner Cahercorner 52.52806 -8.51667 L LCTY IE M 16 0 79 Europe/Dublin 2010-08-14 +3305503 Manore River Manore River 52.5 -8.47556 H STM IE M 16 0 78 Europe/Dublin 2010-08-14 +3305504 Oldtown Oldtown 52.485 -8.40333 L LCTY IE M 16 0 81 Europe/Dublin 2010-08-14 +3305505 Cromwell Hill Cromwell Hill 52.50472 -8.3975 T HLL IE M 16 0 89 Europe/Dublin 2010-08-14 +3305506 Garrydootis Garrydootis 52.49222 -8.32889 L LCTY IE M 16 0 94 Europe/Dublin 2010-08-14 +3305507 Ballyneety House Ballyneety House 52.51444 -8.32472 S HSEC IE M 16 0 99 Europe/Dublin 2010-08-14 +3305508 Ballynagreanagh Ballynagreanagh 52.51389 -8.36694 L LCTY IE M 16 0 127 Europe/Dublin 2010-08-14 +3305509 Knockaunavoher Knockaunavoher 52.50472 -8.36361 L LCTY IE M 16 0 116 Europe/Dublin 2010-08-14 +3305510 Knockderk Knockderk 52.52667 -8.35278 T HLL IE M 16 0 155 Europe/Dublin 2010-08-14 +3305511 Palatine Street Palatine Street 52.5225 -8.32722 P PPL IE M 16 0 115 Europe/Dublin 2010-08-14 +3305512 Rathard Rathard 52.51694 -8.30778 L LCTY IE M 16 0 99 Europe/Dublin 2010-08-14 +3305513 Ballyfirreen House Ballyfirreen House 52.52556 -8.27778 S HSEC IE M 16 0 105 Europe/Dublin 2010-08-14 +3305514 Oola Hills Oola Hills 52.5325 -8.24944 T HLLS IE M 16 0 90 Europe/Dublin 2010-08-14 +3305515 Kilmacogue Kilmacogue 52.54028 -8.27833 L LCTY IE M 16 0 92 Europe/Dublin 2010-08-14 +3305516 Ballyvalode Ballyvalode 52.5525 -8.27194 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3305517 Longford Bridge Longford Bridge 52.56056 -8.23417 P PPL IE M 16 0 74 Europe/Dublin 2010-08-14 +3305518 Clonbrick Clonbrick 52.55194 -8.23278 L LCTY IE M 16 0 74 Europe/Dublin 2010-08-14 +3305519 Maelra Maelra 52.53778 -8.305 L LCTY IE M 16 0 83 Europe/Dublin 2010-08-14 +3305520 Newtown House Newtown House 52.52806 -8.30556 S HSEC IE M 16 0 92 Europe/Dublin 2010-08-14 +3305521 Knockballyfookeen Knockballyfookeen 52.54972 -8.33028 L LCTY IE M 16 0 100 Europe/Dublin 2010-08-14 +3305522 Knockseefin Knockseefin 52.56 -8.36194 T HLL IE M 16 0 134 Europe/Dublin 2010-08-14 +3305523 Crossalaght Crossalaght 52.53722 -8.40333 L LCTY IE M 16 0 101 Europe/Dublin 2010-08-14 +3305524 Wonderhill Wonderhill 52.53611 -8.43389 L LCTY IE M 16 0 57 Europe/Dublin 2010-08-14 +3305525 Rathjordan Rathjordan 52.54 -8.47 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3305526 Mountminnett House Mountminnett House 52.55083 -8.44389 S HSE IE M 16 0 64 Europe/Dublin 2010-08-14 +3305527 Boherroe Boherroe 52.55083 -8.41194 L LCTY IE M 16 0 90 Europe/Dublin 2010-08-14 +3305528 Longstone Longstone 52.56056 -8.41333 L LCTY IE M 16 0 88 Europe/Dublin 2010-08-14 +3305529 Caherline House Caherline House 52.56417 -8.46472 S HSEC IE M 16 0 76 Europe/Dublin 2010-08-14 +3305530 Baskethill Baskethill 52.56583 -8.42861 T HLL IE M 16 0 67 Europe/Dublin 2010-08-14 +3305531 Sixmile Bridge Sixmile Bridge 52.54083 -8.545 P PPL IE M 16 0 75 Europe/Dublin 2010-08-14 +3305532 Longford Bridge Longford Bridge 52.54139 -8.52111 P PPL IE M 16 0 75 Europe/Dublin 2010-08-14 +3305533 Friarstown Friarstown 52.55222 -8.54083 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3305534 Shelhan’s Cross Shelhan's Cross 52.56722 -8.53889 P PPL IE M 16 0 90 Europe/Dublin 2010-08-14 +3305558 Ballybricken Ballybricken 52.56444 -8.51667 L LCTY IE M 16 0 98 Europe/Dublin 2010-08-14 +3305559 Knockroe Knockroe 52.57861 -8.50194 T HLL IE M 16 0 146 Europe/Dublin 2010-08-14 +3305561 Lombardstown House Lombardstown House 52.57667 -8.43611 S HSEC IE M 16 0 71 Europe/Dublin 2010-08-14 +3305564 Stonepark Stonepark 52.57833 -8.54194 L LCTY IE M 16 0 81 Europe/Dublin 2010-08-14 +3305565 Caherconlish House Caherconlish House 52.58861 -8.47917 S HSEC IE M 16 0 80 Europe/Dublin 2010-08-14 +3305566 Inch Inch 52.59083 -8.50667 L LCTY IE M 16 0 138 Europe/Dublin 2010-08-14 +3305567 Saint Lawrence Saint Lawrence 52.59139 -8.49694 L LCTY IE M 16 0 135 Europe/Dublin 2010-08-14 +3305568 Luddenbeg Luddenbeg 52.59139 -8.53056 L LCTY IE M 16 0 91 Europe/Dublin 2010-08-14 +3305569 Clashbane Clashbane 52.57167 -8.42972 P PPL IE M 16 0 69 Europe/Dublin 2010-08-14 +3305570 Dromkeen Dromkeen 52.56694 -8.39361 L LCTY IE M 16 0 96 Europe/Dublin 2010-08-14 +3305571 Castle Lodge Castle Lodge 52.59583 -8.49361 S HSE IE M 16 0 90 Europe/Dublin 2010-08-14 +3305572 Kilmurry Kilmurry 52.58917 -8.43389 L LCTY IE M 16 0 77 Europe/Dublin 2010-08-14 +3305573 Pallasbeg House Pallasbeg House 52.59139 -8.37417 S HSEC IE M 16 0 60 Europe/Dublin 2010-08-14 +3305574 Tuogh Tuogh 52.6 -8.35667 P PPL IE M 16 0 62 Europe/Dublin 2010-08-14 +3305575 Towerhill House Towerhill House 52.59333 -8.345 S HSEC IE M 16 0 63 Europe/Dublin 2010-08-14 +3305576 Killuragh Killuragh 52.59111 -8.31722 P PPL IE M 16 0 65 Europe/Dublin 2010-08-14 +3305577 New Bridge New Bridge 52.59028 -8.31472 P PPL IE M 16 0 66 Europe/Dublin 2010-08-14 +3305578 Old Bridge Old Bridge 52.58 -8.32861 P PPL IE M 16 0 64 Europe/Dublin 2010-08-14 +3305579 Sun Ville Sun Ville 52.57778 -8.32639 L LCTY IE M 16 0 64 Europe/Dublin 2010-08-14 +3305580 Cross Cottage Cross Cottage 52.55667 -8.30028 S HSEC IE M 16 0 71 Europe/Dublin 2010-08-14 +3305581 Coolnapisha Coolnapisha 52.56806 -8.29639 L LCTY IE M 16 0 70 Europe/Dublin 2010-08-14 +3305583 Knockouragh Knockouragh 52.57611 -8.24389 T HLL IE M 16 0 76 Europe/Dublin 2010-08-14 +3305584 Cloonlusk Cloonlusk 52.58778 -8.26778 L LCTY IE M 16 0 70 Europe/Dublin 2010-08-14 +3305585 Gortavalla Gortavalla 52.59556 -8.28778 L LCTY IE M 16 0 72 Europe/Dublin 2010-08-14 +3305586 Derraun Bridge Derraun Bridge 52.56778 -8.25639 P PPL IE M 16 0 74 Europe/Dublin 2010-08-14 +3305587 Cooga Cooga 52.61 -8.27222 L LCTY IE M 16 0 89 Europe/Dublin 2010-08-14 +3305588 Blackboy Bridge Blackboy Bridge 52.61556 -8.29306 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3305589 Doone Glebe Doone Glebe 52.61056 -8.31028 S EST IE M 16 0 67 Europe/Dublin 2010-08-14 +3305590 Eyon Hill Eyon Hill 52.60417 -8.39028 T HLL IE M 16 0 57 Europe/Dublin 2010-08-14 +3305593 Downey’s Cross Roads Downey's Cross Roads 52.61056 -8.45583 P PPL IE M 16 0 65 Europe/Dublin 2010-08-14 +3305594 Boherger House Boherger House 52.61833 -8.44694 S HSEC IE M 16 0 58 Europe/Dublin 2010-08-14 +3305595 Tobermalug Tobermalug 52.61083 -8.49833 L LCTY IE M 16 0 61 Europe/Dublin 2010-08-14 +3305596 Bohermore Bohermore 52.60972 -8.54222 L LCTY IE M 16 0 112 Europe/Dublin 2010-08-14 +3305597 Ahabeg House Ahabeg House 52.62722 -8.51917 S HSEC IE M 16 0 89 Europe/Dublin 2010-08-14 +3305598 Millbank Lodge Millbank Lodge 52.62583 -8.41611 S HSEC IE M 16 0 59 Europe/Dublin 2010-08-14 +3305599 Lismullane Lismullane 52.63167 -8.47861 P PPL IE M 16 0 55 Europe/Dublin 2010-08-14 +3305600 Grange Grange 52.60333 -8.44889 L LCTY IE M 16 0 69 Europe/Dublin 2010-08-14 +3305601 Kishyquirk Kishyquirk 52.63139 -8.50972 L LCTY IE M 16 0 70 Europe/Dublin 2010-08-14 +3305602 Sandeville Sandeville 52.64972 -8.54583 L LCTY IE M 16 0 90 Europe/Dublin 2010-08-14 +3305603 Ballyclogh House Ballyclogh House 52.6525 -8.52611 S HSEC IE M 16 0 46 Europe/Dublin 2010-08-14 +3305604 Woodstown House Woodstown House 52.66639 -8.52278 S HSEC IE M 16 0 46 Europe/Dublin 2010-08-14 +3305605 Thornfield House Thornfield House 52.67 -8.49028 S HSEC IE M 16 0 54 Europe/Dublin 2010-08-14 +3305606 Ahnagh Bridge Ahnagh Bridge 52.67056 -8.46389 P PPL IE M 16 0 57 Europe/Dublin 2010-08-14 +3305607 Killeenagarriff Killeenagarriff 52.65472 -8.46444 L LCTY IE M 16 0 56 Europe/Dublin 2010-08-14 +3305608 Coolnahila Coolnahila 52.66056 -8.46222 L LCTY IE M 16 0 56 Europe/Dublin 2010-08-14 +3305609 Cappanahanagh Cappanahanagh 52.66806 -8.43972 L LCTY IE M 16 0 61 Europe/Dublin 2010-08-14 +3305610 Laghtane Laghtane 52.6675 -8.47806 L LCTY IE M 16 0 54 Europe/Dublin 2010-08-14 +3305611 Cappangue Cappangue 52.62639 -8.39028 L LCTY IE M 16 0 55 Europe/Dublin 2010-08-14 +3305612 Farnanefranletin Farnanefranletin 52.62889 -8.33639 L LCTY IE M 16 0 68 Europe/Dublin 2010-08-14 +3305613 Ballyvorheen Ballyvorheen 52.64667 -8.3575 L LCTY IE M 16 0 96 Europe/Dublin 2010-08-14 +3305614 Kilduffahoo Kilduffahoo 52.645 -8.32139 L LCTY IE M 16 0 182 Europe/Dublin 2010-08-14 +3305615 Kylegarve Kylegarve 52.63083 -8.2775 P PPL IE M 16 0 105 Europe/Dublin 2010-08-14 +3305616 Lacka Lacka 52.63972 -8.25611 L LCTY IE M 16 0 136 Europe/Dublin 2010-08-14 +3305617 Reenavanna Reenavanna 52.63611 -8.23667 L LCTY IE M 16 0 206 Europe/Dublin 2010-08-14 +3305618 Foilycleara Foilycleara 52.64472 -8.205 L LCTY IE M 16 0 309 Europe/Dublin 2010-08-14 +3305619 Knockastanna Knockastanna 52.65417 -8.20056 T MT IE M 16 0 305 Europe/Dublin 2010-08-14 +3305620 Gannavane Gannavane 52.655 -8.2575 L LCTY IE M 16 0 192 Europe/Dublin 2010-08-14 +3305621 Gurraghakimikeen Gurraghakimikeen 52.64611 -8.24556 L LCTY IE M 16 0 153 Europe/Dublin 2010-08-14 +3305622 Muingacree Muingacree 52.67667 -8.28139 L LCTY IE M 16 0 306 Europe/Dublin 2010-08-14 +3305624 Vauchluce Cottage Vauchluce Cottage 52.68611 -8.3325 S HSE IE M 16 0 302 Europe/Dublin 2010-08-14 +3305625 Glenstar Glenstar 52.66444 -8.35639 L LCTY IE M 16 0 160 Europe/Dublin 2010-08-14 +3305626 Gortnageragh River Gortnageragh River 52.625 -8.25611 H STM IE M 16 0 147 Europe/Dublin 2010-08-14 +3305627 Glashacloonaraveela River Glashacloonaraveela River 52.61889 -8.30194 H STM IE M 16 0 70 Europe/Dublin 2010-08-14 +3305628 Lisnagary Lisnagary 52.67833 -8.51472 S EST IE M 16 0 48 Europe/Dublin 2010-08-14 +3305629 Drominboy Drominboy 52.68556 -8.48167 L LCTY IE M 16 0 55 Europe/Dublin 2010-08-14 +3305630 Annagh River Annagh River 52.67139 -8.46667 H STM IE M 16 0 55 Europe/Dublin 2010-08-14 +3305631 Sliekanohera River Sliekanohera River 52.63556 -8.47417 H STM IE M 16 0 54 Europe/Dublin 2010-08-14 +3305632 Annagh Annagh 52.67722 -8.45167 P PPL IE M 16 0 58 Europe/Dublin 2010-08-14 +3305633 Ahane Ahane 52.6675 -8.50528 L LCTY IE M 16 0 50 Europe/Dublin 2010-08-14 +3305634 Annacotty Annacotty 52.66806 -8.54722 L LCTY IE M 16 0 45 Europe/Dublin 2010-08-14 +3305635 Ballynacounty House Ballynacounty House 52.6925 -8.50694 S HSEC IE M 16 0 51 Europe/Dublin 2010-08-14 +3305636 Hermitage Hermitage 52.70056 -8.52917 L LCTY IE M 16 0 43 Europe/Dublin 2010-08-14 +3305637 Gardenhill Gardenhill 52.70194 -8.49722 L LCTY IE M 16 0 54 Europe/Dublin 2010-08-14 +3305638 Woodpark House Woodpark House 52.70611 -8.4875 S HSEC IE M 16 0 56 Europe/Dublin 2010-08-14 +3305639 Leap of Doonass Leap of Doonass 52.70417 -8.51111 S WEIR IE M 16 0 49 Europe/Dublin 2010-08-14 +3305640 Castleconnell Castleconnell Caislean Ui Chonaill,Caisleáñ Ui Chonaill,Castleconnell 52.71389 -8.49944 P PPL IE M 16 0 55 Europe/Dublin 2010-08-14 +3305641 Gooig Gooig 52.725 -8.48583 L LCTY IE M 16 0 57 Europe/Dublin 2010-08-14 +3305643 Derrylusk Derrylusk 52.72944 -8.48833 L LCTY IE M 16 0 56 Europe/Dublin 2010-08-14 +3305644 Fairy Mount Fairy Mount 52.7475 -8.48472 S EST IE M 16 0 52 Europe/Dublin 2010-08-14 +3305645 Montpelic Montpelic 52.75056 -8.49389 P PPL IE M 16 0 46 Europe/Dublin 2010-08-14 +3305659 Belle Isle House Belle Isle House 52.70111 -8.54167 S HSEC IE M 16 0 37 Europe/Dublin 2010-08-14 +3305660 Park House Park House 52.71444 -8.53944 S HSEC IE M 16 0 40 Europe/Dublin 2010-08-14 +3305661 Coollisteige Coollisteige 52.72222 -8.54139 L LCTY IE M 16 0 40 Europe/Dublin 2010-08-14 +3305662 Waterpark House Waterpark House 52.71806 -8.50667 S HSEC IE M 03 0 52 Europe/Dublin 2010-08-14 +3305663 Ardataggle House Ardataggle House 52.75056 -8.51611 S HSEC IE M 03 0 43 Europe/Dublin 2010-08-14 +3305664 Bridgetown Bridgetown 52.76194 -8.52028 L LCTY IE M 03 0 69 Europe/Dublin 2010-08-14 +3305665 Elliss Bridge Elliss Bridge 52.76944 -8.52306 P PPL IE M 03 0 79 Europe/Dublin 2010-08-14 +3305666 Kiltroughil Kiltroughil 52.77833 -8.52861 L LCTY IE M 03 0 134 Europe/Dublin 2010-08-14 +3305667 Glebe House Glebe House 52.78167 -8.48806 S HSEC IE M 03 0 55 Europe/Dublin 2010-08-14 +3305668 Ardeloony River Ardeloony River 52.77056 -8.47778 H STM IE M 03 0 55 Europe/Dublin 2010-08-14 +3305669 Ballymoloney Wood Ballymoloney Wood 52.78778 -8.54139 V FRST IE M 03 0 160 Europe/Dublin 2010-08-14 +3305670 Garraunlay Garraunlay 52.8 -8.4925 L LCTY IE M 03 0 147 Europe/Dublin 2010-08-14 +3305671 Ballyvorney Ballyvorney 52.7875 -8.48278 P PPL IE M 03 0 70 Europe/Dublin 2010-08-14 +3305672 Clarisford House Clarisford House 52.79722 -8.44111 S HSEC IE M 03 0 55 Europe/Dublin 2010-08-14 +3305673 Aillemore Aillemore 52.80778 -8.50917 L LCTY IE M 03 0 153 Europe/Dublin 2010-08-14 +3305674 Glennagalliagh Mountain Glennagalliagh Mountain 52.81056 -8.53722 T MT IE M 03 0 327 Europe/Dublin 2010-08-14 +3305675 Cragnamurragh Cragnamurragh 52.82278 -8.54972 T MT IE M 03 0 369 Europe/Dublin 2010-08-14 +3305676 Crag Crag 52.82694 -8.51222 T SLP IE M 03 0 318 Europe/Dublin 2010-08-14 +3305677 Coumnagun River Coumnagun River 52.80306 -8.44056 H STM IE M 03 0 55 Europe/Dublin 2010-08-14 +3305678 Ballycuogaran Ballycuogaran 52.83556 -8.49139 L LCTY IE M 03 0 238 Europe/Dublin 2010-08-14 +3305679 Rinnaman Point Rinnaman Point 52.83611 -8.46111 T PT IE M 03 0 55 Europe/Dublin 2010-08-14 +3305680 Ballyheer Ballyheer 52.85806 -8.48083 L LCTY IE M 03 0 55 Europe/Dublin 2010-08-14 +3305681 Tinarana Bay Tinarana Bay 52.85806 -8.45472 H BAY IE M 03 0 55 Europe/Dublin 2010-08-14 +3305682 Carrowgar Bay Carrowgar Bay 52.87361 -8.42722 H BAY IE M 03 0 55 Europe/Dublin 2010-08-14 +3305683 Farran Point Farran Point 52.87889 -8.42694 T PT IE M 03 0 55 Europe/Dublin 2010-08-14 +3305684 Carrowgar Carrowgar 52.87139 -8.45167 L LCTY IE M 03 0 55 Europe/Dublin 2010-08-14 +3305685 Cornagnoe Valley Cornagnoe Valley 52.86417 -8.52472 T VAL IE M 03 0 263 Europe/Dublin 2010-08-14 +3305686 Ballylaghnan Ballylaghnan 52.86833 -8.5025 T MT IE M 03 0 186 Europe/Dublin 2010-08-14 +3305687 Garryweare Garryweare 52.88139 -8.45139 L LCTY IE M 03 0 67 Europe/Dublin 2010-08-14 +3305688 Ogonnelloe Ogonnelloe Ogonnelloe 52.88806 -8.4575 P PPL IE M 03 0 88 Europe/Dublin 2010-08-14 +3305689 Caher Mountain Caher Mountain 52.88139 -8.46556 T HLL IE M 03 0 79 Europe/Dublin 2010-08-14 +3305690 Ballymalone Ballymalone 52.87806 -8.5325 L LCTY IE M 03 0 155 Europe/Dublin 2010-08-14 +3305691 Knocknagower Knocknagower 52.88222 -8.52028 L LCTY IE M 03 0 163 Europe/Dublin 2010-08-14 +3305692 Raheen Bridge Raheen Bridge 52.88861 -8.51167 P PPL IE M 03 0 136 Europe/Dublin 2010-08-14 +3305693 Banglasha Banglasha 52.89278 -8.4575 L LCTY IE M 03 0 55 Europe/Dublin 2010-08-14 +3305694 Caher Island Caher Island 52.89944 -8.4675 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +3305695 Rahen House Rahen House 52.895 -8.495 S HSEC IE M 03 0 55 Europe/Dublin 2010-08-14 +3305696 Drewsborough House Drewsborough House 52.90056 -8.54 S HSEC IE M 03 0 57 Europe/Dublin 2010-08-14 +3305703 Longford Longford 52.39361 -8.21944 L LCTY IE M 26 0 155 Europe/Dublin 2010-08-14 +3305705 Glencoshabinnia Glencoshabinnia 52.3925 -8.17667 L LCTY IE M 26 0 222 Europe/Dublin 2010-08-14 +3305706 Knockmoyle Knockmoyle 52.39833 -8.16944 T MT IE M 26 0 246 Europe/Dublin 2010-08-14 +3305707 Stonepark Stonepark 52.40806 -8.1575 L LCTY IE M 26 0 188 Europe/Dublin 2010-08-14 +3305708 Knockastaheen Knockastaheen 52.39111 -8.12056 T MT IE M 26 0 421 Europe/Dublin 2010-08-14 +3305709 Rossbog Rossbog 52.41083 -8.1375 L LCTY IE M 26 0 110 Europe/Dublin 2010-08-14 +3305710 Woodville House Woodville House 52.41361 -8.18194 S HSEC IE M 26 0 124 Europe/Dublin 2010-08-14 +3305711 Newtown Newtown 52.41917 -8.17833 L LCTY IE M 26 0 94 Europe/Dublin 2010-08-14 +3305712 Riversdale Riversdale 52.40806 -8.22889 L LCTY IE M 26 0 114 Europe/Dublin 2010-08-14 +3305713 Stagdale Bridge Stagdale Bridge 52.41056 -8.22944 P PPL IE M 26 0 140 Europe/Dublin 2010-08-14 +3305728 Castlereagh Lodge Castlereagh Lodge 52.42 -8.19028 S HSE IE M 26 0 98 Europe/Dublin 2010-08-14 +3305729 Streamhill House Streamhill House 52.4275 -8.14806 S HSEC IE M 26 0 125 Europe/Dublin 2010-08-14 +3305733 Carrigeenina Carrigeenina 52.43556 -8.16194 T MT IE M 16 0 166 Europe/Dublin 2010-08-14 +3305734 Lisvarrinane Lisvarrinane 52.41389 -8.25028 L LCTY IE M 26 0 121 Europe/Dublin 2010-08-14 +3305735 The Steeple The Steeple 52.44056 -8.14056 T HLL IE M 26 0 136 Europe/Dublin 2010-08-14 +3305736 Ardloman Court Ardloman Court 52.43833 -8.20028 S HSEC IE M 16 0 151 Europe/Dublin 2010-08-14 +3305737 Ballynamrossagh Ballynamrossagh 52.43444 -8.25556 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3305738 Moorabbey Hill Moorabbey Hill 52.41611 -8.27611 T HLL IE M 26 0 143 Europe/Dublin 2010-08-14 +3305739 Ballywire House Ballywire House 52.43111 -8.30806 S HSEC IE M 26 0 151 Europe/Dublin 2010-08-14 +3305740 Kilross Kilross 52.4375 -8.27806 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3305741 Mount Bruis Mount Bruis 52.45 -8.23611 L LCTY IE M 26 0 149 Europe/Dublin 2010-08-14 +3305742 Rathkea Rathkea 52.44306 -8.22556 L LCTY IE M 26 0 148 Europe/Dublin 2010-08-14 +3305743 Knockardan Cross Roads Knockardan Cross Roads 52.45083 -8.24944 P PPL IE M 26 0 149 Europe/Dublin 2010-08-14 +3305744 Shronell House Shronell House 52.46806 -8.25472 S HSEC IE M 26 0 150 Europe/Dublin 2010-08-14 +3305745 Aughadareen Bridge Aughadareen Bridge 52.44167 -8.31611 P PPL IE M 16 0 137 Europe/Dublin 2010-08-14 +3305746 Moanmore Moanmore 52.44861 -8.34944 L LCTY IE M 16 0 115 Europe/Dublin 2010-08-14 +3305747 Drumcomoge River Drumcomoge River 52.45944 -8.44194 H STM IE M 16 0 91 Europe/Dublin 1998-03-23 +3305749 Ballyvistea Ballyvistea 52.48306 -8.38806 L LCTY IE M 26 0 83 Europe/Dublin 2010-08-14 +3305750 Ballyhane Ballyhane 52.46861 -8.37861 L LCTY IE M 26 0 86 Europe/Dublin 2010-08-14 +3305752 Rodus Bridge Rodus Bridge 52.48278 -8.33972 P PPL IE M 26 0 99 Europe/Dublin 2010-08-14 +3305753 Duncummin Duncummin 52.49306 -8.37278 L LCTY IE M 26 0 98 Europe/Dublin 2010-08-14 +3305755 Ballynacree House Ballynacree House 52.4825 -8.30694 S HSEC IE M 26 0 127 Europe/Dublin 2010-08-14 +3305756 Clashdrumsmith Clashdrumsmith 52.4725 -8.32444 L LCTY IE M 26 0 113 Europe/Dublin 2010-08-14 +3305757 Kilcornan Kilcornan 52.50111 -8.31667 L LCTY IE M 26 0 96 Europe/Dublin 2010-08-14 +3305759 Ballinard Cross Ballinard Cross 52.49056 -8.26861 P PPL IE M 26 0 159 Europe/Dublin 2010-08-14 +3305760 Ballinard Ballinard 52.48639 -8.25111 S EST IE M 26 0 144 Europe/Dublin 2010-08-14 +3305761 Ballygodboy Ballygodboy 52.50333 -8.23722 P PPL IE M 26 0 113 Europe/Dublin 2010-08-14 +3305762 Danerville Danerville 52.47194 -8.27556 L LCTY IE M 26 0 159 Europe/Dublin 2010-08-14 +3305763 Clonpet Clonpet 52.45944 -8.18778 P PPL IE M 26 0 180 Europe/Dublin 2010-08-14 +3305764 Peysborough House Peysborough House 52.49417 -8.16222 S HSEC IE M 26 0 141 Europe/Dublin 2010-08-14 +3305765 Kingswell House Kingswell House 52.48917 -8.155 S HSEC IE M 26 0 148 Europe/Dublin 2010-08-14 +3305766 Boheratreem Cross Roads Boheratreem Cross Roads 52.51 -8.17556 L LCTY IE M 26 0 117 Europe/Dublin 2010-08-14 +3305767 Monard Monard 52.5125 -8.21111 P PPL IE M 26 0 101 Europe/Dublin 2010-08-14 +3305768 Rossadrehid Rossadrehid 52.40778 -8.11694 L LCTY IE M 26 0 172 Europe/Dublin 2010-08-14 +3305769 Castle Mary Castle Mary 52.41694 -8.09306 L LCTY IE M 26 0 71 Europe/Dublin 2010-08-14 +3305770 Sturrakeen Sturrakeen 52.38917 -8.0525 T MT IE M 26 0 355 Europe/Dublin 2010-08-14 +3305822 Ardane Ardane 52.40917 -8.08639 L LCTY IE M 26 0 80 Europe/Dublin 2010-08-14 +3305823 Ballydavid Wood Ballydavid Wood 52.40472 -8.03722 V FRST IE M 26 0 149 Europe/Dublin 2010-08-14 +3305824 Clohernagh Clohernagh 52.41139 -8.06111 P PPL IE M 26 0 67 Europe/Dublin 2010-08-14 +3305825 Ballydavid House Ballydavid House 52.42306 -8.05111 S HSEC IE M 26 0 65 Europe/Dublin 2010-08-14 +3305826 Ashgrove House Ashgrove House 52.42 -8.06944 S HSEC IE M 26 0 68 Europe/Dublin 2010-08-14 +3305828 Ballyvirane Ballyvirane 52.43194 -8.07028 L LCTY IE M 26 0 71 Europe/Dublin 2010-08-14 +3305829 Toureen Wood Toureen Wood 52.40167 -7.98556 V FRST IE M 26 0 149 Europe/Dublin 2010-08-14 +3305830 Rathdermot Rathdermot 52.44139 -8.07806 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3305831 Carriganagh Carriganagh 52.44028 -8.02472 L LCTY IE M 26 0 69 Europe/Dublin 2010-08-14 +3305832 Slieveanard Slieveanard 52.38556 -8.00917 T MT IE M 26 0 440 314 Europe/Dublin 2010-08-14 +3305833 Aherlow Castle Aherlow Castle 52.4425 -8.09694 S CSTL IE M 26 0 109 Europe/Dublin 2010-08-14 +3305834 Ara Bridge Ara Bridge 52.43917 -8.03667 P PPL IE M 40 0 71 Europe/Dublin 2010-08-14 +3305835 Roheen Roheen 52.44917 -8.02806 L LCTY IE M 26 0 72 Europe/Dublin 2010-08-14 +3305836 Cappa Old Cappa Old 52.41694 -8.00417 S RUIN IE M 26 0 63 Europe/Dublin 2010-08-14 +3305837 Aughnagawer Cross Roads Aughnagawer Cross Roads 52.46556 -8.06194 P PPL IE M 26 0 83 Europe/Dublin 2010-08-14 +3305838 Kilshane Kilshane 52.4625 -8.10389 S EST IE M 26 0 138 Europe/Dublin 2010-08-14 +3305839 Fawnagowan Fawnagowan 52.46 -8.1375 L LCTY IE M 26 0 155 Europe/Dublin 2010-08-14 +3305840 Sandymount Sandymount 52.45389 -8.15972 L LCTY IE M 26 0 186 Europe/Dublin 2010-08-14 +3305841 Casdanagan Manor Casdanagan Manor 52.45194 -8.1375 S EST IE M 26 0 155 Europe/Dublin 2010-08-14 +3305842 Knockballynoe Knockballynoe 52.47833 -8.10028 L LCTY IE M 26 0 123 Europe/Dublin 2010-08-14 +3305843 Ballyhusty Ballyhusty 52.48417 -8.115 L LCTY IE M 26 0 121 Europe/Dublin 2010-08-14 +3305844 Ross Cottage Ross Cottage 52.45694 -8.02722 S HSE IE M 26 0 74 Europe/Dublin 2010-08-14 +3305845 Kilfeakle Kilfeakle 52.48778 -8.07833 L LCTY IE M 26 0 96 Europe/Dublin 2010-08-14 +3305846 Rathduff Cottage Rathduff Cottage 52.47833 -8.01944 S HSE IE M 26 0 79 Europe/Dublin 2010-08-14 +3305847 Bawnbrack Bawnbrack 52.46889 -8.02278 L LCTY IE M 26 0 79 Europe/Dublin 2010-08-14 +3305848 Rathcloneen House Rathcloneen House 52.48361 -8.01306 S HSEC IE M 40 0 75 Europe/Dublin 2010-08-14 +3305849 Grantstow Hall Grantstow Hall 52.50028 -8.0625 S HSEC IE M 26 0 82 Europe/Dublin 2010-08-14 +3305854 Golden Hills Golden Hills 52.51417 -8.00194 L LCTY IE M 26 0 70 Europe/Dublin 2010-08-14 +3305855 Ballinaclogh House Ballinaclogh House 52.51639 -8.02111 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3305856 Mogh Mogh 52.5225 -8.02444 P PPL IE M 26 0 71 Europe/Dublin 2010-08-14 +3305857 Mount William Mount William 52.50972 -8.07778 P PPL IE M 26 0 92 Europe/Dublin 2010-08-14 +3305858 Friarsfield Friarsfield 52.495 -8.1325 L LCTY IE M 26 0 121 Europe/Dublin 2010-08-14 +3305859 Cunningham’s Cross Roads Cunningham's Cross Roads 52.50833 -8.1525 P PPL IE M 40 0 126 Europe/Dublin 2010-08-14 +3305860 Stokaun Stokaun 52.50556 -8.12528 L LCTY IE M 26 0 112 Europe/Dublin 2010-08-14 +3305861 Shanaballymore Shanaballymore 52.51667 -8.14611 L LCTY IE M 26 0 103 Europe/Dublin 2010-08-14 +3305862 Moanmore Moanmore 52.53139 -8.21361 P PPL IE M 26 0 82 Europe/Dublin 2010-08-14 +3305863 Pope’s Bridge Pope's Bridge 52.545 -8.21111 P PPLL IE M 40 0 75 Europe/Dublin 2010-08-14 +3305864 Cauteen Bridge Cauteen Bridge 52.54333 -8.18222 P PPL IE M 26 0 81 Europe/Dublin 2010-08-14 +3305865 Bananalleen Bananalleen 52.53333 -8.19528 P PPL IE M 26 0 88 Europe/Dublin 2010-08-14 +3305867 Ballyhane Bridge Ballyhane Bridge 52.56889 -8.20806 P PPL IE M 26 0 80 Europe/Dublin 2010-08-14 +3305868 Ballyryan Ballyryan 52.51556 -8.20583 L LCTY IE M 26 0 104 Europe/Dublin 2010-08-14 +3305871 Cauteen River Cauteen River 52.54306 -8.205 H STM IE M 26 0 75 Europe/Dublin 2010-08-14 +3305884 Grange Grange 52.52528 -8.13528 P PPL IE M 26 0 97 Europe/Dublin 2010-08-14 +3305885 Morpeth Bridge Morpeth Bridge 52.52722 -8.08806 P PPL IE M 26 0 106 Europe/Dublin 2010-08-14 +3305886 Goldengarden Goldengarden 52.53667 -8.10556 L LCTY IE M 26 0 115 Europe/Dublin 2010-08-14 +3305887 Coolacussane Coolacussane 52.54194 -8.09111 L LCTY IE M 26 0 128 Europe/Dublin 2010-08-14 +3305888 Lacken House Lacken House 52.53083 -8.06556 S HSEC IE M 26 0 85 Europe/Dublin 2010-08-14 +3305889 Kilpatrick Kilpatrick 52.55278 -8.09583 L LCTY IE M 26 0 138 Europe/Dublin 2010-08-14 +3305890 Hawarden Bridge Hawarden Bridge 52.55611 -8.11556 P PPL IE M 26 0 132 Europe/Dublin 2010-08-14 +3305891 Black Bridge Black Bridge 52.55389 -8.02111 P PPL IE M 26 0 83 Europe/Dublin 2010-08-14 +3305892 Ballinamona Ballinamona 52.525 -8.01194 L LCTY IE M 26 0 71 Europe/Dublin 2010-08-14 +3305893 Lisheen House Lisheen House 52.52306 -7.97139 S HSEC IE M 26 0 70 Europe/Dublin 2010-08-14 +3305894 Kilmore House Kilmore House 52.53028 -8.01111 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3305895 Ballywalter House Ballywalter House 52.53806 -8.00389 S HSEC IE M 26 0 79 Europe/Dublin 2010-08-14 +3305896 Ballynchinch Ballynchinch 52.53278 -7.97306 L LCTY IE M 26 0 72 Europe/Dublin 2010-08-14 +3305898 Camus Bridge Camus Bridge 52.54028 -7.93194 P PPLL IE M 26 0 70 Europe/Dublin 2010-08-14 +3305899 Camus Park Camus Park 52.53472 -7.92833 S EST IE M 26 0 70 Europe/Dublin 2010-08-14 +3305901 Clonbonane House Clonbonane House 52.54583 -7.945 S HSEC IE M 26 0 71 Europe/Dublin 2010-08-14 +3305902 Shanballyduff House Shanballyduff House 52.48694 -7.91889 S HSEC IE M 26 0 92 Europe/Dublin 2010-08-14 +3305903 Rahcoun Hall Rahcoun Hall 52.49806 -7.93694 S EST IE M 26 0 82 Europe/Dublin 2010-08-14 +3305904 Ballinamona House Ballinamona House 52.51111 -7.92778 S HSEC IE M 26 0 79 Europe/Dublin 2010-08-14 +3305905 Castlelake Castlelake 52.51167 -7.96083 L LCTY IE M 26 0 73 Europe/Dublin 2010-08-14 +3305906 Kitlenure Castle Kitlenure Castle 52.5475 -7.99722 S CSTL IE M 26 0 82 Europe/Dublin 2010-08-14 +3305907 Garrane Garrane 52.53778 -7.99139 P PPL IE M 26 0 79 Europe/Dublin 2010-08-14 +3305908 Caherabbey Cottage Caherabbey Cottage 52.38972 -7.92028 S HSE IE M 26 0 64 Europe/Dublin 2010-08-14 +3305909 Killemby Lodge Killemby Lodge 52.39194 -7.91361 S HSE IE M 26 0 70 Europe/Dublin 2010-08-14 +3305910 Knockacolla Knockacolla 52.40333 -7.93778 P PPL IE M 26 0 65 Europe/Dublin 2010-08-14 +3305911 Kedrah Kedrah 52.40528 -7.8925 L LCTY IE M 26 0 73 Europe/Dublin 2010-08-14 +3305912 Kilmoyler Cross Roads Kilmoyler Cross Roads 52.40972 -7.96972 P PPL IE M 26 0 61 Europe/Dublin 2010-08-14 +3305913 Ballydrehid Ballydrehid 52.40056 -7.97556 L LCTY IE M 26 0 133 Europe/Dublin 2010-08-14 +3305914 Toureen House Toureen House 52.415 -7.985 S HSEC IE M 26 0 75 Europe/Dublin 2010-08-14 +3305915 Knockgaffon Knockgaffon 52.42194 -7.93861 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3305916 Drangan House Drangan House 52.42278 -7.95167 S HSEC IE M 26 0 61 Europe/Dublin 2010-08-14 +3305917 Derrycloney Derrycloney 52.43472 -7.9675 L LCTY IE M 26 0 64 Europe/Dublin 2010-08-14 +3305918 Kilnacask Bridge Kilnacask Bridge 52.43639 -7.98417 L LCTY IE M 26 0 63 Europe/Dublin 2010-08-14 +3305919 Masterstown Masterstown 52.43806 -7.94361 L LCTY IE M 26 0 75 Europe/Dublin 2010-08-14 +3305920 Hyinenstown Hyinenstown 52.44722 -7.94556 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3305921 Outeragh House Outeragh House 52.42472 -7.87917 S HSEC IE M 26 0 83 Europe/Dublin 2010-08-14 +3305922 Outeragh Outeragh 52.41722 -7.885 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3305923 Ballyslatteen House Ballyslatteen House 52.45278 -7.98083 S HSEC IE M 26 0 71 Europe/Dublin 2010-08-14 +3305924 Lagganstown Lagganstown 52.45806 -7.97 P PPL IE M 26 0 72 Europe/Dublin 2010-08-14 +3305925 Belle Vue Belle Vue 52.45528 -7.93667 S EST IE M 26 0 80 Europe/Dublin 2010-08-14 +3305926 Danganandargan Danganandargan 52.48167 -7.965 L LCTY IE M 26 0 77 Europe/Dublin 2010-08-14 +3305927 Killeenasteerna Killeenasteerna 52.47056 -7.93611 P PPL IE M 26 0 83 Europe/Dublin 2010-08-14 +3305929 Faheen Cross Roads Faheen Cross Roads 52.55167 -7.97028 P PPL IE M 26 0 82 Europe/Dublin 2010-08-14 +3305930 Grene Park Grene Park 52.5575 -8.00722 L PRK IE M 26 0 84 Europe/Dublin 2010-08-14 +3305931 Kilbreedy Kilbreedy 52.55611 -7.92833 P PPL IE M 26 0 74 Europe/Dublin 2010-08-14 +3305932 Forte Edward Forte Edward 52.56417 -7.91389 S FT IE M 26 0 80 Europe/Dublin 2010-08-14 +3305933 Cappanarragh Cappanarragh 52.57167 -7.99778 P PPL IE M 26 0 88 Europe/Dublin 2010-08-14 +3305934 Milltown Milltown 52.60222 -7.93444 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3305935 Clone Bridge Clone Bridge 52.59972 -8.00361 P PPL IE M 26 0 103 Europe/Dublin 2010-08-14 +3305936 Victoria Bridge Victoria Bridge 52.58639 -8.01472 P PPL IE M 26 0 95 Europe/Dublin 2010-08-14 +3305937 Carrow Carrow 52.59056 -8.05333 P PPL IE M 26 0 175 Europe/Dublin 2010-08-14 +3305938 Anghnaglanny River Anghnaglanny River 52.57556 -8.00806 H STM IE M 26 0 90 Europe/Dublin 2010-08-14 +3305939 Rossmore Bridge Rossmore Bridge 52.61194 -8.00833 P PPL IE M 26 0 124 Europe/Dublin 2010-08-14 +3305940 Maudemount Cross Roads Maudemount Cross Roads 52.55972 -8.07694 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3305941 Ballysheeda Ballysheeda 52.57556 -8.10667 P PPL IE M 26 0 158 Europe/Dublin 2010-08-14 +3305942 Gortussa Gortussa 52.565 -8.07639 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3305943 Scarrough Bridge Scarrough Bridge 52.58722 -8.08861 P PPL IE M 26 0 190 Europe/Dublin 2010-08-14 +3305944 Barraden Barraden 52.59639 -8.09222 P PPL IE M 26 0 232 Europe/Dublin 2010-08-14 +3305945 Newtown Newtown 52.56028 -8.14194 L LCTY IE M 26 0 119 Europe/Dublin 2010-08-14 +3305946 Bahyvira Bahyvira 52.57139 -8.14139 L LCTY IE M 26 0 134 Europe/Dublin 2010-08-14 +3305947 Moanvaun Moanvaun 52.58889 -8.15361 P PPL IE M 26 0 182 Europe/Dublin 2010-08-14 +3305948 Kilbeg House Kilbeg House 52.57583 -8.17722 S HSEC IE M 26 0 121 Europe/Dublin 2010-08-14 +3305949 Glashanailor Bridge Glashanailor Bridge 52.58722 -8.1875 P PPLL IE M 26 0 135 Europe/Dublin 2010-08-14 +3305950 Cahernahallia Cahernahallia 52.59167 -8.21528 P PPL IE M 26 0 124 Europe/Dublin 2010-08-14 +3305951 Knockanavar Knockanavar 52.59722 -8.21 L LCTY IE M 26 0 124 Europe/Dublin 2010-08-14 +3305953 Cahernahallia River Cahernahallia River 52.57306 -8.27139 H STM IE M 26 0 71 Europe/Dublin 2010-08-14 +3305954 Inchinsquillib Inchinsquillib 52.60389 -8.15694 L LCTY IE M 26 0 292 Europe/Dublin 2010-08-14 +3305955 Glengar House Glengar House 52.61611 -8.19944 S HSEC IE M 26 0 274 Europe/Dublin 2010-08-14 +3305956 Gortnageragh Gortnageragh 52.62056 -8.21 T MT IE 00 0 303 Europe/Dublin 1998-03-23 +3305957 Foildarg Foildarg 52.61556 -8.175 L LCTY IE M 26 0 305 Europe/Dublin 2010-08-14 +3305958 Curraheen Curraheen 52.63 -8.14278 L LCTY IE M 26 0 295 Europe/Dublin 2010-08-14 +3305960 Glenpaudeen Glenpaudeen 52.61222 -8.11306 L LCTY IE M 26 0 271 Europe/Dublin 2010-08-14 +3305962 Ring Hill Ring Hill 52.63861 -8.04361 T MT IE M 26 0 303 Europe/Dublin 2010-08-14 +3305964 Glenough Lower Glenough Lower 52.62167 -8.05778 P PPL IE M 26 0 271 Europe/Dublin 2010-08-14 +3305970 Glenough Upper Glenough Upper 52.63833 -8.0675 P PPL IE M 26 0 305 Europe/Dublin 2010-08-14 +3305971 Laghtseefin Laghtseefin 52.62333 -8.07778 T HLLS IE M 26 0 304 Europe/Dublin 2010-08-14 +3305972 Moanvaun Moanvaun 52.64472 -8.14389 P PPL IE M 26 0 328 Europe/Dublin 2010-08-14 +3305973 Curraglanarley Curraglanarley 52.63222 -8.21111 L LCTY IE M 26 0 304 Europe/Dublin 2010-08-14 +3305974 Tooreen Tooreen 52.65028 -8.13667 L LCTY IE M 26 0 425 Europe/Dublin 2010-08-14 +3305975 Nanny’s Cross Roads Nanny's Cross Roads 52.65222 -8.185 P PPL IE M 40 0 299 Europe/Dublin 2010-08-14 +3305977 Cummer Cummer 52.66778 -8.13944 L LCTY IE M 26 0 310 Europe/Dublin 2010-08-14 +3305979 Boolanunane Boolanunane 52.65611 -8.10278 T MT IE M 26 0 298 Europe/Dublin 2010-08-14 +3305986 Anglesry Bridge Anglesry Bridge 52.67944 -8.1625 P PPL IE M 26 0 283 Europe/Dublin 2010-08-14 +3305987 Laghile Laghile 52.69194 -8.17972 L LCTY IE M 26 0 296 Europe/Dublin 2010-08-14 +3305988 Knocknabansha Knocknabansha 52.69111 -8.12639 T MT IE M 26 0 303 Europe/Dublin 2010-08-14 +3305990 Kilcommon Kilcommon 52.69389 -8.14389 P PPL IE M 26 0 301 Europe/Dublin 2010-08-14 +3305991 Knockmaroe Knockmaroe 52.69972 -8.09694 T MT IE M 26 0 304 Europe/Dublin 2010-08-14 +3306012 Three Trees Three Trees 55.11361 -7.2125 P PPLL IE U 06 0 15 Europe/Dublin 2010-08-14 +3306014 Creehennan Creehennan 55.14139 -7.1875 P PPL IE U 06 0 41 Europe/Dublin 2010-08-14 +3306015 Roosky Roosky 55.14389 -7.16639 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3306017 Glencaw Glencaw 55.15056 -7.2025 P PPLL IE U 06 0 165 Europe/Dublin 2010-08-14 +3306018 Glencaw Hill Glencaw Hill 55.16583 -7.20528 T HLL IE U 06 0 342 167 Europe/Dublin 2010-08-14 +3306019 Vances Point Vances Point 55.14861 -7.15306 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3306020 Croaghmore Croaghmore 55.18472 -7.17889 T HLL IE U 06 0 302 161 Europe/Dublin 2010-08-14 +3306023 Pensylvania Pensylvania 55.17611 -7.16417 P PPLL IE U 06 0 156 Europe/Dublin 2010-08-14 +3306024 Tavash Hill Tavash Hill 55.19167 -7.14972 T HLL IE U 06 0 286 170 Europe/Dublin 2010-08-14 +3306025 Lake Fad Lake Fad 55.19722 -7.15361 H LK IE U 06 0 172 Europe/Dublin 2010-08-14 +3306026 Craigawaddykeagh Craigawaddykeagh 55.19333 -7.11528 T HLL IE U 06 0 300 251 Europe/Dublin 2010-08-14 +3306027 Glebe House Glebe House 55.18139 -7.06361 S HSEC IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3306028 Crockbrack Crockbrack 55.20833 -7.08333 T HLL IE U 06 0 234 134 Europe/Dublin 2010-08-14 +3306029 Crockroosky Crockroosky 55.225 -7.20778 T HLL IE U 06 0 283 168 Europe/Dublin 2010-08-14 +3306030 Drumnasade Drumnasade 55.22389 -7.14861 P PPLL IE U 06 0 110 Europe/Dublin 2010-08-14 +3306031 Milltown Milltown 55.23389 -7.15444 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3306032 Falmore House Falmore House 55.24556 -7.11194 S HSEC IE U 06 0 72 Europe/Dublin 2010-08-14 +3306033 Straruddan Straruddan 55.25056 -7.14972 P PPLL IE U 06 0 41 Europe/Dublin 2010-08-14 +3306034 Crockaughrim Crockaughrim 55.25556 -7.20222 T SPUR IE U 06 0 69 Europe/Dublin 2010-08-14 +3306035 Claggan Claggan 55.20306 -7.05333 P PPLL IE U 06 0 118 Europe/Dublin 2010-08-14 +3306036 Lag Lag 55.21972 -7.07167 L LCTY IE U 06 0 129 Europe/Dublin 2010-08-14 +3306037 Crockaulin Crockaulin 55.22167 -7.01833 T MT IE U 06 0 327 159 Europe/Dublin 2010-08-14 +3306038 Craignamaddy Craignamaddy 55.23417 -7.02444 T MT IE U 06 0 321 164 Europe/Dublin 2010-08-14 +3306039 Crocknabronla Crocknabronla 55.23 -6.96167 T SPUR IE U 06 0 277 156 Europe/Dublin 2010-08-14 +3306040 Ballybrack House Ballybrack House 55.19778 -7.00583 S HSEC IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3306041 Pound Town Pound Town 55.20722 -6.98611 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3306043 Crockalaghta Crockalaghta 55.23639 -6.93694 T HLL IE U 06 0 170 46 Europe/Dublin 2010-08-14 +3306044 Green Castle Green Castle 55.20528 -6.97472 S CSTL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3306045 Balbane Head Balbane Head 55.25333 -6.95694 T CAPE IE U 06 0 1 Europe/Dublin 2010-08-14 +3306046 Glenane Hill Glenane Hill 55.24944 -6.97444 T SPUR IE U 06 0 226 Europe/Dublin 2010-08-14 +3306047 Crocklummon Crocklummon 55.24056 -7.00111 T SPUR IE U 06 0 269 Europe/Dublin 2010-08-14 +3306048 Ballybane Ballybane 55.25 -7.00556 P PPL IE U 06 0 157 Europe/Dublin 2010-08-14 +3306049 Long Glen River Long Glen River 55.25861 -7.00972 H STM IE U 06 0 35 Europe/Dublin 2010-08-14 +3306052 Crocknamerragh Crocknamerragh 55.24056 -7.06861 T HLL IE U 06 0 189 125 Europe/Dublin 2010-08-14 +3306053 Falmore Falmore 55.24861 -7.08583 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3306054 Ballintroohan Ballintroohan 55.25639 -7.02556 P PPL IE U 06 0 151 Europe/Dublin 2010-08-14 +3306055 Crockbrack Crockbrack 55.25944 -7.04056 T HLL IE U 06 0 192 103 Europe/Dublin 2010-08-14 +3306057 Crockduff Crockduff 55.26333 -7.02278 T HLL IE U 06 0 185 80 Europe/Dublin 2010-08-14 +3306061 Ballymagaraghy Ballymagaraghy 55.2675 -7.05417 P PPLL IE U 06 0 52 Europe/Dublin 2010-08-14 +3306062 Croaghdoo Croaghdoo 55.27417 -7.04306 T CAPE IE U 06 0 43 Europe/Dublin 2010-08-14 +3306063 Drumaville Drumaville 55.2675 -7.08167 P PPL IE U 06 0 6 Europe/Dublin 2010-08-14 +3306064 Kindroghed Kindroghed 55.26278 -7.13389 P PPLL IE U 06 0 70 Europe/Dublin 2010-08-14 +3306065 Claggan Claggan 55.26917 -7.17333 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3306066 Clogherny Clogherny 55.26167 -7.19833 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3306067 Bishops Hill Bishops Hill 55.27861 -7.13556 T HLL IE U 06 0 112 59 Europe/Dublin 2010-08-14 +3306068 Crockbrack Crockbrack 55.28278 -7.1 T HLL IE U 06 0 85 43 Europe/Dublin 2010-08-14 +3306069 Rubonid Point Rubonid Point 55.28472 -7.09222 T PT IE U 06 0 1 Europe/Dublin 2010-08-14 +3306070 Templemoyle Templemoyle 55.28528 -7.2125 P PPLL IE U 06 0 38 Europe/Dublin 2010-08-14 +3306071 Carthage House Carthage House 55.29861 -7.17194 S HSEC IE U 06 0 25 Europe/Dublin 2010-08-14 +3306072 Carthage Mountain Carthage Mountain 55.30861 -7.18694 T HLL IE U 06 0 106 84 Europe/Dublin 2010-08-14 +3306073 Claggan Claggan 55.30667 -7.16389 P PPLL IE U 06 0 8 Europe/Dublin 2010-08-14 +3306075 Culkeeny Culkeeny 55.31667 -7.20028 P PPLL IE U 06 0 72 Europe/Dublin 2010-08-14 +3306076 Carricknadreelagh Carricknadreelagh 55.32556 -7.16861 T CLF IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3306077 Croaghglengad Croaghglengad 55.32556 -7.19444 T HLL IE U 06 0 260 39 Europe/Dublin 2010-08-14 +3306078 Glendooskert Glendooskert 55.33361 -7.1825 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3306079 Binnanea Binnanea 55.345 -7.20056 L LCTY IE U 06 0 14 Europe/Dublin 2010-08-14 +3306087 Rathkennan Rathkennan 52.62306 -7.92361 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306088 Hough Hough 52.62694 -7.92889 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306089 Rathkennan Bridge Rathkennan Bridge 52.62861 -7.92417 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3306090 Whitefort House Whitefort House 52.63861 -7.89806 S HSEC IE M 26 0 77 Europe/Dublin 2010-08-14 +3306092 Derrymore Bridge Derrymore Bridge 52.64111 -7.92639 P PPL IE M 26 0 77 Europe/Dublin 2010-08-14 +3306093 Cloonyross Cross Roads Cloonyross Cross Roads 52.64 -7.96833 P PPL IE M 26 0 118 Europe/Dublin 2010-08-14 +3306094 Ballyoughter Bridge Ballyoughter Bridge 52.65917 -7.94083 P PPL IE M 26 0 77 Europe/Dublin 2010-08-14 +3306095 Mulgrave Bridge Mulgrave Bridge 52.65917 -7.95278 P PPL IE M 26 0 79 Europe/Dublin 2010-08-14 +3306096 Ballynera House Ballynera House 52.665 -7.955 S HSEC IE M 26 0 79 Europe/Dublin 2010-08-14 +3306097 Coolkill Coolkill 52.67 -7.92806 P PPL IE M 26 0 78 Europe/Dublin 2010-08-14 +3306099 Beakstown Beakstown 52.65639 -7.87667 P PPL IE M 26 0 81 Europe/Dublin 2010-08-14 +3306100 Raheen Park Raheen Park 52.66194 -7.88222 L PRK IE M 26 0 82 Europe/Dublin 2010-08-14 +3306101 Glenreagh Glenreagh 52.65083 -7.89583 L LCTY IE M 26 0 78 Europe/Dublin 2010-08-14 +3306102 Garranmore Garranmore 52.62833 -7.94861 P PPL IE M 26 0 84 Europe/Dublin 2010-08-14 +3306103 Roskeen House Roskeen House 52.67444 -7.94583 S HSEC IE M 26 0 79 Europe/Dublin 2010-08-14 +3306104 Farneybridge River Farneybridge River 52.64028 -7.91944 H STM IE M 26 0 77 Europe/Dublin 2010-08-14 +3306106 Drum Wood Drum Wood 52.62472 -7.99028 V FRST IE M 26 0 127 Europe/Dublin 2010-08-14 +3306107 Gortaculrush Gortaculrush 52.63639 -7.99333 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3306136 Drumminnagleagh Bridge Drumminnagleagh Bridge 52.68972 -7.93222 P PPL IE M 26 0 80 Europe/Dublin 2010-08-14 +3306137 Grossage House Grossage House 52.67333 -7.91278 S HSEC IE M 26 0 79 Europe/Dublin 2010-08-14 +3306138 Aishanboe Aishanboe 52.67944 -7.98111 L LCTY IE M 26 0 163 Europe/Dublin 2010-08-14 +3306139 Shanaballyduff Shanaballyduff 52.67139 -8.00278 L LCTY IE M 26 0 280 Europe/Dublin 2010-08-14 +3306140 Knockalough Knockalough 52.67806 -8.025 T MT IE M 26 0 313 Europe/Dublin 2010-08-14 +3306141 Foilagoule Foilagoule 52.67444 -8.035 L LCTY IE M 26 0 279 Europe/Dublin 2010-08-14 +3306142 Falleennafinoga Falleennafinoga 52.66389 -8.06361 L LCTY IE M 26 0 269 Europe/Dublin 2010-08-14 +3306143 Knockacachanduff Commons Knockacachanduff Commons 52.665 -8.02972 L LCTY IE M 26 0 269 Europe/Dublin 2010-08-14 +3306144 Owenbeg Owenbeg 52.65972 -7.94389 H STM IE M 26 0 77 Europe/Dublin 2010-08-14 +3306145 Ballyboy Ballyboy 52.69056 -7.98222 L LCTY IE M 26 0 184 Europe/Dublin 2010-08-14 +3306147 Finnahy Finnahy 52.71194 -7.98056 P PPL IE M 26 0 181 Europe/Dublin 2010-08-14 +3306148 Gortnahalla Gortnahalla 52.72 -7.99194 L LCTY IE M 26 0 189 Europe/Dublin 2010-08-14 +3306149 Pallas House Pallas House 52.72694 -7.96333 S HSEC IE M 26 0 118 Europe/Dublin 2010-08-14 +3306151 Rathcardan Rathcardan 52.72639 -7.9875 L LCTY IE M 26 0 151 Europe/Dublin 2010-08-14 +3306152 Fort William Fort William 52.74222 -7.95889 S FT IE M 26 0 129 Europe/Dublin 2010-08-14 +3306153 Heigh Heigh 52.745 -7.9975 L LCTY IE M 26 0 144 Europe/Dublin 2010-08-14 +3306154 Drumgill Drumgill 52.73611 -8.0025 L LCTY IE M 26 0 151 Europe/Dublin 2010-08-14 +3306155 Monroe Bridge Monroe Bridge 52.71444 -7.92444 P PPL IE M 26 0 90 Europe/Dublin 2010-08-14 +3306156 Fishmoyne River Fishmoyne River 52.72722 -7.93583 H STM IE M 26 0 92 Europe/Dublin 2010-08-14 +3306205 Knockane Knockane 52.6925 -7.95806 T HLL IE M 26 0 136 Europe/Dublin 2010-08-14 +3306206 Clon Clon 52.70083 -7.93389 P PPL IE M 26 0 88 Europe/Dublin 2010-08-14 +3306208 Annfield Annfield 52.71 -7.93639 L LCTY IE M 26 0 89 Europe/Dublin 2010-08-14 +3306210 Kilfithmone Cross Roads Kilfithmone Cross Roads 52.76389 -7.93028 P PPL IE M 26 0 100 Europe/Dublin 2010-08-14 +3306212 Brookley House Brookley House 52.76389 -7.90694 S HSEC IE M 26 0 90 Europe/Dublin 2010-08-14 +3306213 Gortalough Gortalough 52.76917 -7.95889 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3306214 Glebe House Glebe House 52.76583 -7.97778 S HSEC IE M 26 0 149 Europe/Dublin 2010-08-14 +3306215 Garrangrena Lower Garrangrena Lower 52.77556 -7.99583 L LCTY IE M 26 0 239 Europe/Dublin 2010-08-14 +3306217 Currabaha Cross Currabaha Cross 52.7725 -8.02472 P PPL IE M 26 0 143 Europe/Dublin 2010-08-14 +3306218 Grange Lough Grange Lough 52.77444 -8.01194 H LK IE M 26 0 153 Europe/Dublin 2010-08-14 +3306219 Glentane Glentane 52.77111 -8.04528 L LCTY IE M 26 0 172 Europe/Dublin 2010-08-14 +3306220 Cooleen Cooleen 52.76139 -8.04083 L LCTY IE M 26 0 185 Europe/Dublin 2010-08-14 +3306221 Ballydaff Ballydaff 52.74944 -8.03472 L LCTY IE M 26 0 227 Europe/Dublin 2010-08-14 +3306222 Rusheen Rusheen 52.72417 -8.02278 T MT IE M 26 0 247 Europe/Dublin 2010-08-14 +3306231 Hunts Grove Hunts Grove 52.75833 -8.07806 P PPL IE M 26 0 269 Europe/Dublin 2010-08-14 +3306232 Riverfield House Riverfield House 52.77167 -8.07917 S HSEC IE M 26 0 149 Europe/Dublin 2010-08-14 +3306233 Ballylaine Cross Roads Ballylaine Cross Roads 52.76056 -8.09806 P PPL IE M 26 0 173 Europe/Dublin 2010-08-14 +3306235 Templederry Templederry 52.77528 -8.06167 P PPL IE M 26 0 143 Europe/Dublin 2010-08-14 +3306236 Gortnagowna Gortnagowna 52.74917 -8.08 P PPL IE M 26 0 264 Europe/Dublin 2010-08-14 +3306238 Granavone Granavone 52.74389 -8.03889 P PPL IE M 26 0 227 Europe/Dublin 2010-08-14 +3306240 Greenan Greenan 52.73833 -8.07194 L LCTY IE M 26 0 248 Europe/Dublin 2010-08-14 +3306241 Commaun Commaun 52.73861 -8.10583 L LCTY IE M 26 0 303 Europe/Dublin 2010-08-14 +3306242 Garryglass Garryglass 52.75139 -8.11556 L LCTY IE M 26 0 282 Europe/Dublin 2010-08-14 +3306243 Gaffanakilka Gaffanakilka 52.72667 -8.07556 L LCTY IE M 26 0 263 Europe/Dublin 2010-08-14 +3306244 Knockaviltoge Knockaviltoge 52.71222 -8.05 T MT IE M 26 0 312 Europe/Dublin 2010-08-14 +3306245 Cummer Cummer 52.72139 -8.0975 L LCTY IE M 26 0 286 Europe/Dublin 2010-08-14 +3306247 Gleninchinaveigh Gleninchinaveigh 52.69833 -8.06972 L LCTY IE M 26 0 294 Europe/Dublin 2010-08-14 +3306249 Foilhaman Foilhaman 52.70889 -8.10361 L LCTY IE M 26 0 304 Europe/Dublin 2010-08-14 +3306250 Knockfune Knockfune 52.71972 -8.13778 T MT IE M 26 0 305 Europe/Dublin 2010-08-14 +3306251 Knocknascreggan Knocknascreggan 52.72556 -8.12611 T MT IE M 26 0 304 Europe/Dublin 2010-08-14 +3306253 Curreeny Cross Curreeny Cross 52.73361 -8.14333 P PPL IE M 26 0 304 Europe/Dublin 2010-08-14 +3306254 Moher Hill Moher Hill 52.70333 -8.00333 T MT IE M 26 0 257 Europe/Dublin 2010-08-14 +3306255 Cooleenduff Bridge Cooleenduff Bridge 52.69806 -8.01444 P PPL IE M 26 0 291 Europe/Dublin 2010-08-14 +3306256 Anglesey Road Anglesey Road 52.69389 -8.03139 P PPL IE M 26 0 305 Europe/Dublin 2010-08-14 +3306305 Knockteige Knockteige 52.73139 -8.16278 T MT IE M 26 0 304 Europe/Dublin 2010-08-14 +3306306 Ballycarn Ballycarn 52.745 -8.16361 L LCTY IE M 26 0 304 Europe/Dublin 2010-08-14 +3306307 Curreeny Commons Curreeny Commons 52.74222 -8.21194 L LCTY IE M 26 0 283 Europe/Dublin 2010-08-14 +3306308 Knockaphortaderg Knockaphortaderg 52.75056 -8.21139 L LCTY IE M 26 0 271 Europe/Dublin 2010-08-14 +3306309 Knockane Knockane 52.75194 -8.22944 T MT IE M 26 0 269 Europe/Dublin 2010-08-14 +3306310 Cooneen Hill Cooneen Hill 52.76333 -8.14444 T MT IE M 26 0 372 Europe/Dublin 2010-08-14 +3306311 Bolingbrook Bolingbrook 52.76028 -8.17 T MT IE M 26 0 282 Europe/Dublin 2010-08-14 +3306312 Mucklin Mucklin 52.77306 -8.18722 L LCTY IE M 26 0 268 Europe/Dublin 2010-08-14 +3306313 Curryquin Curryquin 52.77722 -8.17833 L LCTY IE M 26 0 194 Europe/Dublin 2010-08-14 +3306314 Ballincurra Hill Ballincurra Hill 52.77889 -8.11111 T MT IE M 26 0 258 Europe/Dublin 2010-08-14 +3306315 Bennett’s Bridge Bennett's Bridge 52.77667 -8.13278 P PPL IE M 38 0 234 Europe/Dublin 2010-08-14 +3306316 Foilnamuck Foilnamuck 52.77 -8.15556 L LCTY IE M 26 0 293 Europe/Dublin 2010-08-14 +3306318 Foilduff Foilduff 52.71917 -8.23333 L LCTY IE M 26 0 304 Europe/Dublin 2010-08-14 +3306321 Bealaclave Bealaclave 52.70389 -8.2325 T MT IE M 26 0 304 Europe/Dublin 2010-08-14 +3306322 Knockfune Knockfune 52.72639 -8.25111 T MT IE M 26 0 296 Europe/Dublin 2010-08-14 +3306323 Knockacappul Knockacappul 52.715 -8.27389 T MT IE M 26 0 273 Europe/Dublin 2010-08-14 +3306325 Killeen Killeen 52.70667 -8.29972 L LCTY IE M 26 0 296 Europe/Dublin 2010-08-14 +3306326 Lackamore Lackamore 52.69611 -8.32889 L LCTY IE M 26 0 305 Europe/Dublin 2010-08-14 +3306333 Culley Rocks Culley Rocks 52.71722 -8.33111 T RKS IE M 26 0 271 Europe/Dublin 2010-08-14 +3306334 Derrygareen Derrygareen 52.69444 -8.35833 L LCTY IE M 38 0 197 Europe/Dublin 2010-08-14 +3306335 Toor Toor 52.72806 -8.29694 L LCTY IE M 26 0 293 Europe/Dublin 2010-08-14 +3306336 Seraggeen Seraggeen 52.69417 -8.38611 L LCTY IE M 26 0 99 Europe/Dublin 2010-08-14 +3306337 Clare Bridge Clare Bridge 52.69111 -8.38278 P PPL IE M 26 0 148 Europe/Dublin 2010-08-14 +3306338 Derryleigh House Derryleigh House 52.7025 -8.38833 S HSEC IE M 26 0 82 Europe/Dublin 2010-08-14 +3306339 Mackney Mackney 52.7175 -8.40472 L LCTY IE M 26 0 71 Europe/Dublin 2010-08-14 +3306340 Rockville House Rockville House 52.71861 -8.38333 S HSEC IE M 26 0 105 Europe/Dublin 2010-08-14 +3306341 Fiddane Fiddane 52.72667 -8.34 L LCTY IE M 26 0 197 Europe/Dublin 2010-08-14 +3306342 Rossaguile Bridge Rossaguile Bridge 52.73333 -8.34944 P PPL IE M 26 0 162 Europe/Dublin 2010-08-14 +3306343 Small River Small River 52.71111 -8.405 H STM IE M 26 0 69 Europe/Dublin 2010-08-14 +3306344 Doonane River Doonane River 52.73667 -8.34417 H STM IE M 26 0 147 Europe/Dublin 2010-08-14 +3306345 Shanballyedmond Shanballyedmond 52.67528 -8.25 L LCTY IE M 26 0 243 Europe/Dublin 2010-08-14 +3306346 Coonmore Coonmore 52.67694 -8.20417 L LCTY IE M 26 0 250 Europe/Dublin 2010-08-14 +3306348 Mount Philips Mount Philips 52.72722 -8.41194 S EST IE M 26 0 71 Europe/Dublin 2010-08-14 +3306349 Drumbaun Drumbaun 52.74944 -8.37444 L LCTY IE M 26 0 133 Europe/Dublin 2010-08-14 +3306350 Killeen Killeen 52.72139 -8.43472 L LCTY IE M 26 0 63 Europe/Dublin 2010-08-14 +3306369 Ballynahinch Ballynahinch 52.76583 -8.37861 L LCTY IE M 26 0 149 Europe/Dublin 2010-08-14 +3306370 Birdhill House Birdhill House 52.75861 -8.44139 S HSEC IE M 26 0 74 Europe/Dublin 2010-08-14 +3306372 Ballycahane Ballycahane 52.77944 -8.34806 S BLDG IE M 26 0 141 Europe/Dublin 2010-08-14 +3306373 Cragg Cragg 52.73556 -8.44083 P PPL IE M 26 0 69 Europe/Dublin 2010-08-14 +3306375 Crishangagh Crishangagh 52.77861 -8.31944 L LCTY IE M 26 0 149 Europe/Dublin 2010-08-14 +3306376 Ciamaltha House Ciamaltha House 52.75833 -8.32806 S HSEC IE M 26 0 157 Europe/Dublin 2010-08-14 +3306377 Ballyhourigan Wood Ballyhourigan Wood 52.74861 -8.30667 V FRST IE M 26 0 305 Europe/Dublin 2010-08-14 +3306379 Dromore House Dromore House 52.68556 -8.41639 S HSEC IE M 26 0 69 Europe/Dublin 2010-08-14 +3306380 Annaboty Annaboty 52.7375 -8.4575 P PPL IE M 26 0 64 Europe/Dublin 2010-08-14 +3306382 Cool Bridge Cool Bridge 52.77472 -8.42944 P PPL IE M 26 0 73 Europe/Dublin 2010-08-14 +3306385 Incha Beg Incha Beg 52.78611 -8.40833 T RK IE M 26 0 68 Europe/Dublin 2010-08-14 +3306386 Deanan’s Hill Deanan's Hill 52.79056 -8.35694 T HLL IE M 38 0 79 Europe/Dublin 2010-08-14 +3306388 Labbadiha Bridge Labbadiha Bridge 52.80194 -8.40222 P PPL IE M 26 0 100 Europe/Dublin 2010-08-14 +3306391 Ballymalone Ballymalone 52.81444 -8.40667 L LCTY IE M 26 0 142 Europe/Dublin 2010-08-14 +3306392 Ballyea North Ballyea North 52.80694 -8.38111 L LCTY IE M 26 0 121 Europe/Dublin 2010-08-14 +3306393 Caraghmore Caraghmore 52.81222 -8.36583 L LCTY IE M 26 0 162 Europe/Dublin 2010-08-14 +3306394 Grange Grange 52.82278 -8.4175 L LCTY IE M 26 0 114 Europe/Dublin 2010-08-14 +3306403 Coum Hill Coum Hill 52.84111 -8.35056 T HLL IE M 26 0 273 Europe/Dublin 2010-08-14 +3306405 Coumbeg Coumbeg 52.84639 -8.36306 L LCTY IE M 26 0 301 Europe/Dublin 2010-08-14 +3306406 Knockmore Knockmore 52.83917 -8.31556 L LCTY IE M 26 0 160 Europe/Dublin 2010-08-14 +3306407 Curriggal Curriggal 52.82222 -8.32389 L LCTY IE M 26 0 128 Europe/Dublin 2010-08-14 +3306409 Pallas More Pallas More 52.86056 -8.31778 L LCTY IE M 26 0 165 Europe/Dublin 2010-08-14 +3306410 Tountinna Tountinna 52.84528 -8.39056 T MT IE M 26 0 320 Europe/Dublin 2010-08-14 +3306413 Newtown Newtown 52.84306 -8.42583 L LCTY IE M 26 0 97 Europe/Dublin 2010-08-14 +3306415 Laghtea Hill Laghtea Hill 52.86389 -8.39417 T HLL IE M 26 0 188 Europe/Dublin 2010-08-14 +3306416 Cloneybrien House Cloneybrien House 52.86694 -8.37917 S HSEC IE M 26 0 179 Europe/Dublin 2010-08-14 +3306417 Curragh Curragh 52.86333 -8.35528 L LCTY IE M 26 0 174 Europe/Dublin 2010-08-14 +3306418 Lackamore Lackamore 52.86528 -8.33361 L LCTY IE M 26 0 178 Europe/Dublin 2010-08-14 +3306419 Youghal River Youghal River 52.89444 -8.29833 H STM IE M 26 0 52 Europe/Dublin 2010-08-14 +3306420 Newtown River Newtown River 52.89472 -8.295 H STM IE M 26 0 52 Europe/Dublin 2010-08-14 +3306421 Shannonville Shannonville 52.89472 -8.36722 L LCTY IE M 26 0 73 Europe/Dublin 2010-08-14 +3306422 Ballycarridoge Ballycarridoge 52.88694 -8.34167 L LCTY IE M 26 0 93 Europe/Dublin 2010-08-14 +3306424 Landsdown House Landsdown House 52.87889 -8.37083 S HSEC IE M 26 0 109 Europe/Dublin 2010-08-14 +3306426 Newtown Newtown 52.87861 -8.29361 L LCTY IE M 26 0 75 Europe/Dublin 2010-08-14 +3306429 Carrow Carrow 52.89667 -8.2775 L LCTY IE M 26 0 52 Europe/Dublin 2010-08-14 +3306430 Cronnagh House Cronnagh House 52.89 -8.27083 S HSEC IE M 26 0 56 Europe/Dublin 2010-08-14 +3306432 Hogans Pass Hogans Pass 52.87222 -8.25667 T PASS IE M 26 0 66 Europe/Dublin 2010-08-14 +3306433 Tullamore Tullamore 52.86556 -8.25194 S EST IE M 26 0 70 Europe/Dublin 2010-08-14 +3306434 Ballycommon Ballycommon 52.89389 -8.24639 L LCTY IE M 26 0 60 Europe/Dublin 2010-08-14 +3306435 Ballyartello Bridge Ballyartello Bridge 52.90111 -8.23611 P PPL IE M 26 0 63 Europe/Dublin 2010-08-14 +3306436 Monsea Monsea 52.885 -8.24778 L LCTY IE M 26 0 62 Europe/Dublin 2010-08-14 +3306437 Richmond House Richmond House 52.87833 -8.22917 S HSEC IE M 26 0 66 Europe/Dublin 2010-08-14 +3306438 Brook Watson House Brook Watson House 52.8775 -8.19667 S HSEC IE M 26 0 69 Europe/Dublin 2010-08-14 +3306439 Nenagh Bridge Nenagh Bridge 52.88167 -8.19583 P PPL IE M 26 6672 69 Europe/Dublin 2010-08-14 +3306441 Wellington House Wellington House 52.88 -8.19111 S HSEC IE M 26 0 72 Europe/Dublin 2010-08-14 +3306442 Gortlandroe Gortlandroe 52.86944 -8.24444 L LCTY IE M 26 0 67 Europe/Dublin 2010-08-14 +3306444 Solsborough House Solsborough House 52.86306 -8.23028 S HSEC IE M 26 0 72 Europe/Dublin 2010-08-14 +3306445 Gourdeen Bridge Gourdeen Bridge 52.8675 -8.1675 P PPL IE M 26 0 72 Europe/Dublin 2010-08-14 +3306447 Ballynwear House Ballynwear House 52.89944 -8.17 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3306448 South Hill House South Hill House 52.88778 -8.16333 S HSEC IE M 26 0 79 Europe/Dublin 2010-08-14 +3306449 Rapia Cross Roads Rapia Cross Roads 52.88694 -8.15917 P PPL IE M 26 0 79 Europe/Dublin 2010-08-14 +3306486 Gortnagowth Gortnagowth 52.64444 -7.86667 P PPL IE M 26 0 82 Europe/Dublin 2010-08-14 +3306487 The Hill Houses The Hill Houses 52.67028 -7.86944 S EST IE M 26 0 86 Europe/Dublin 2010-08-14 +3306488 Shallee Cross Roads Shallee Cross Roads 52.79417 -8.29028 P PPL IE M 26 0 94 Europe/Dublin 2010-08-14 +3306489 Garryard Garryard 52.78889 -8.27528 L LCTY IE M 26 0 217 Europe/Dublin 2010-08-14 +3306490 Capparoe Capparoe 52.82028 -8.255 P PPL IE M 26 0 74 Europe/Dublin 2010-08-14 +3306491 Carrow Cross Carrow Cross 52.82167 -8.25083 P PPL IE M 26 0 74 Europe/Dublin 2010-08-14 +3306492 Ballylusky Ballylusky 52.82556 -8.28972 P PPL IE M 26 0 82 Europe/Dublin 2010-08-14 +3306493 Kilmore Kilmore 52.80806 -8.22889 L LCTY IE M 26 0 89 Europe/Dublin 2010-08-14 +3306494 Happygrove House Happygrove House 52.79083 -8.19222 S HSEC IE M 26 0 181 Europe/Dublin 2010-08-14 +3306495 Dolla Dolla Dolla 52.79556 -8.18667 L LCTY IE M 26 0 125 Europe/Dublin 2010-11-05 +3306496 Brindleys Bridge Brindleys Bridge 52.78889 -8.18417 P PPL IE M 26 0 162 Europe/Dublin 2010-08-14 +3306497 Boolteen Boolteen 52.81139 -8.20611 L LCTY IE M 26 0 86 Europe/Dublin 2010-08-14 +3306498 Kilriffen Kilriffen 52.82167 -8.19333 P PPL IE M 26 0 78 Europe/Dublin 2010-08-14 +3306499 Knockbrack Knockbrack 52.78111 -8.20028 T RK IE M 26 0 274 Europe/Dublin 2010-08-14 +3306500 Crockraun Crockraun 52.78972 -8.16278 T RK IE M 26 0 150 Europe/Dublin 2010-08-14 +3306501 Fownlough Fownlough 52.84056 -8.20944 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306502 Balllintogher House Balllintogher House 52.84528 -8.21528 S HSEC IE M 26 0 75 Europe/Dublin 2010-08-14 +3306503 Five Alley Five Alley 52.84167 -8.25583 L LCTY IE M 26 0 73 Europe/Dublin 2010-08-14 +3306504 Tyrone Abbey Tyrone Abbey 52.85444 -8.18278 S HSEC IE M 26 0 74 Europe/Dublin 2010-08-14 +3306505 Lissatunny Lissatunny 52.84667 -8.17583 P PPL IE M 26 0 75 Europe/Dublin 2010-08-14 +3306506 Bayly Farm Bayly Farm 52.83472 -8.17333 S FRM IE M 26 0 76 Europe/Dublin 2010-08-14 +3306507 Gibbet Hill Gibbet Hill 52.83361 -8.15694 T HLL IE M 26 0 76 Europe/Dublin 2010-08-14 +3306508 Ballygarveen House Ballygarveen House 52.81528 -8.155 S HSEC IE M 26 0 93 Europe/Dublin 2010-08-14 +3306509 Ballycrenode House Ballycrenode House 52.81972 -8.10861 S HSEC IE M 26 0 93 Europe/Dublin 2010-08-14 +3306510 Ballinamona House Ballinamona House 52.82583 -8.0975 S HSE IE M 26 0 106 Europe/Dublin 2010-08-14 +3306511 Kilkeary Cross Roads Kilkeary Cross Roads 52.83417 -8.125 P PPL IE M 38 0 88 Europe/Dublin 2010-08-14 +3306512 Knockaunkennedy Knockaunkennedy 52.84972 -8.1525 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306513 Knockalton House Knockalton House 52.85556 -8.15444 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3306514 Knockbrack Knockbrack 52.83528 -8.1025 L LCTY IE M 26 0 100 Europe/Dublin 2010-08-14 +3306515 Knockcraheen Hill Knockcraheen Hill 52.80278 -8.08444 T HLL IE M 26 0 180 Europe/Dublin 2010-08-14 +3306516 Oatfield House Oatfield House 52.79028 -8.06611 S HSEC IE M 26 0 133 Europe/Dublin 2010-08-14 +3306517 Grenanstown House Grenanstown House 52.83444 -8.08111 S HSEC IE M 26 0 126 Europe/Dublin 2010-08-14 +3306518 Knockadigeen Knockadigeen 52.78833 -8.09444 T MT IE M 26 0 255 Europe/Dublin 2010-08-14 +3306519 Killeen Killeen 52.78694 -8.12778 L LCTY IE M 26 0 187 Europe/Dublin 2010-08-14 +3306520 Rathfalla Rathfalla 52.86056 -8.145 L LCTY IE M 26 0 75 Europe/Dublin 2010-08-14 +3306521 Ballintotty River Ballintotty River 52.86194 -8.15444 H STM IE M 26 0 74 Europe/Dublin 2010-08-14 +3306522 Norwood Norwood 52.8525 -8.10389 S EST IE M 26 0 98 Europe/Dublin 2010-08-14 +3306523 Lisgarode Lisgarode 52.89111 -8.13417 L LCTY IE M 26 0 95 Europe/Dublin 2010-08-14 +3306524 Mount Pleasant Mount Pleasant 52.89028 -8.11472 S EST IE M 26 0 92 Europe/Dublin 2010-08-14 +3306525 Lissanisky House Lissanisky House 52.86167 -8.09083 S HSEC IE M 26 0 108 Europe/Dublin 2010-08-14 +3306526 Ballinree Ballinree 52.87028 -8.10833 L LCTY IE M 26 0 96 Europe/Dublin 2010-08-14 +3306527 Hackstown Bridge Hackstown Bridge 52.89694 -8.1325 P PPL IE M 26 0 121 Europe/Dublin 2010-08-14 +3306528 Ballygibbon House Ballygibbon House 52.90194 -8.10222 S HSEC IE M 26 0 134 Europe/Dublin 2010-08-14 +3306529 Elmhill House Elmhill House 52.89556 -8.09722 S HSEC IE M 26 0 109 Europe/Dublin 2010-08-14 +3306531 Riverlawn House Riverlawn House 52.89 -8.07944 S HSEC IE M 26 0 104 Europe/Dublin 2010-08-14 +3306532 Knock Cross Roads Knock Cross Roads 52.89278 -8.07889 P PPL IE M 26 0 108 Europe/Dublin 2010-08-14 +3306533 Woodville House Woodville House 52.89028 -8.04361 S HSEC IE M 26 0 112 Europe/Dublin 2010-08-14 +3306534 Bessborough House Bessborough House 52.88583 -8.04333 S HSEC IE M 26 0 112 Europe/Dublin 2010-08-14 +3306535 Camira Camira 52.88194 -8.06889 L LCTY IE M 26 0 110 Europe/Dublin 2010-08-14 +3306536 Falleen House Falleen House 52.87778 -8.03333 S HSEC IE M 26 0 119 Europe/Dublin 2010-08-14 +3306537 Millgrove House Millgrove House 52.8825 -8.03111 S HSEC IE M 26 0 119 Europe/Dublin 2010-08-14 +3306538 Glebe House Glebe House 52.86472 -8.07278 S HSEC IE M 26 0 117 Europe/Dublin 2010-08-14 +3306539 Garrynafana Garrynafana 52.86083 -8.06167 P PPL IE M 26 0 120 Europe/Dublin 2010-08-14 +3306540 Clonalea Clonalea 52.84944 -8.0675 L LCTY IE M 26 0 128 Europe/Dublin 2010-08-14 +3306541 Clash Clash 52.87333 -8.03028 L LCTY IE M 26 0 130 Europe/Dublin 2010-08-14 +3306591 Kyleroe Wood Kyleroe Wood 52.85889 -8.01028 V FRST IE M 26 0 151 Europe/Dublin 2010-08-14 +3306592 Blean House Blean House 52.845 -8.01028 S HSEC IE M 26 0 176 Europe/Dublin 2010-08-14 +3306594 Monanore Monanore 52.83556 -8.02278 L LCTY IE M 26 0 202 Europe/Dublin 2010-08-14 +3306595 Poulakerry Poulakerry 52.82861 -8.02306 P PPL IE M 26 0 242 Europe/Dublin 2010-08-14 +3306596 Killanafinch Killanafinch 52.81833 -8.05389 L LCTY IE M 26 0 163 Europe/Dublin 2010-08-14 +3306597 Sallypark Sallypark 52.80389 -8.05722 L LCTY IE M 26 0 121 Europe/Dublin 2010-08-14 +3306598 Bigpark Bigpark 52.79889 -8.04778 L LCTY IE M 26 0 125 Europe/Dublin 2010-08-14 +3306599 Latteragh Latteragh 52.80806 -8.01944 T MT IE M 26 0 233 Europe/Dublin 2010-08-14 +3306600 Latteragh House Latteragh House 52.80417 -8.03167 S HSEC IE M 26 0 233 Europe/Dublin 2010-08-14 +3306601 Knocknabrogue Knocknabrogue 52.80167 -8.02139 L LCTY IE M 26 0 233 Europe/Dublin 2010-08-14 +3306607 Ballynakill Ballynakill 52.90111 -7.98806 L LCTY IE L 23 0 127 Europe/Dublin 2010-08-14 +3306608 Silver Hill Silver Hill 52.89194 -8.01028 S EST IE L 23 0 124 Europe/Dublin 2010-08-14 +3306609 Rath Rath 52.88889 -8.01056 L LCTY IE L 23 0 126 Europe/Dublin 2010-08-14 +3306610 Rosdrehia Rosdrehia 52.88417 -7.99861 L LCTY IE L 23 0 136 Europe/Dublin 2010-08-14 +3306611 Cullenwane Cross Roads Cullenwane Cross Roads 52.89694 -7.97083 P PPL IE L 23 0 132 Europe/Dublin 2010-08-14 +3306612 Laren Vale Laren Vale 52.87528 -7.96306 S EST IE L 23 0 148 Europe/Dublin 2010-08-14 +3306613 Thorn Vale Thorn Vale 52.86472 -7.98667 S EST IE L 23 0 152 Europe/Dublin 2010-08-14 +3306614 Barnagrotty House Barnagrotty House 52.85722 -7.96833 S EST IE L 23 0 171 Europe/Dublin 2010-08-14 +3306615 Aghnamealdle House Aghnamealdle House 52.84861 -7.98778 S HSEC IE M 26 0 157 Europe/Dublin 2010-08-14 +3306616 Knockanora Knockanora 52.79111 -7.98417 T MT IE M 26 0 224 Europe/Dublin 2010-08-14 +3306617 Curraheen Curraheen 52.79806 -7.98167 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3306618 Goldings Cross Goldings Cross 52.78611 -7.91361 P PPL IE M 26 0 119 Europe/Dublin 2010-08-14 +3306619 Knockagh Knockagh 52.78028 -7.88861 L LCTY IE M 26 0 91 Europe/Dublin 2010-08-14 +3306620 The Gap The Gap 52.81556 -7.93083 L LCTY IE M 26 0 328 Europe/Dublin 2010-08-14 +3306621 Balltroveny Balltroveny 52.82278 -7.95361 L LCTY IE M 26 0 330 Europe/Dublin 2010-08-14 +3306622 Garagoyle House Garagoyle House 52.81222 -7.98833 S HSEC IE M 26 0 166 Europe/Dublin 2010-08-14 +3306623 Ballinlough Ballinlough 52.8275 -8.00389 L LCTY IE M 26 0 190 Europe/Dublin 2010-08-14 +3306624 Coologe Coologe 52.8275 -7.97472 L LCTY IE M 26 0 232 Europe/Dublin 2010-08-14 +3306625 Knockahilligan Knockahilligan 52.83056 -7.99 T HLL IE M 26 0 163 Europe/Dublin 2010-08-14 +3306626 Ballybeg Ballybeg 52.83806 -7.97722 L LCTY IE M 26 0 160 Europe/Dublin 2010-08-14 +3306637 Borrisnafarney Borrisnafarney 52.83083 -7.945 L LCTY IE M 26 0 311 Europe/Dublin 2010-08-14 +3306639 Kilduff Mountain Kilduff Mountain 52.83444 -7.91056 T MT IE M 26 0 307 Europe/Dublin 2010-08-14 +3306669 Ahgmore Bridge Ahgmore Bridge 52.8475 -7.95528 P PPL IE M 26 0 234 Europe/Dublin 2010-08-14 +3306670 Cloncannon Cloncannon 52.85806 -7.95833 P PPL IE M 26 0 224 Europe/Dublin 2010-08-14 +3306671 Knockannoge Knockannoge 52.84694 -7.92833 L LCTY IE M 26 0 308 Europe/Dublin 2010-08-14 +3306672 Borrisnoe Mountain Borrisnoe Mountain 52.84528 -7.91778 T MT IE M 26 0 285 Europe/Dublin 2010-08-14 +3306673 Borrisnoe Borrisnoe 52.85333 -7.91333 L LCTY IE M 26 0 262 Europe/Dublin 2010-08-14 +3306674 Crumlin Crumlin 52.87167 -7.9175 L LCTY IE M 26 0 313 Europe/Dublin 2010-08-14 +3306675 Lisduff House Lisduff House 52.88056 -7.90389 S HSEC IE M 26 0 220 Europe/Dublin 2010-08-14 +3306676 Honeymount House Honeymount House 52.88778 -7.885 S HSEC IE M 26 0 157 Europe/Dublin 2010-08-14 +3306677 Loughan House Loughan House 52.90139 -7.92056 S HSEC IE L 23 0 141 Europe/Dublin 2010-08-14 +3306678 Castleroar Castleroar 52.89806 -7.90306 L LCTY IE L 23 0 171 Europe/Dublin 2010-08-14 +3306679 Ballypatrick Ballypatrick 52.73389 -7.90972 P PPL IE M 26 0 93 Europe/Dublin 2010-08-14 +3306680 Bouladuff Bouladuff 52.71667 -7.90667 P PPL IE M 26 0 93 Europe/Dublin 2010-08-14 +3306681 Barracurragh Barracurragh 52.70056 -7.90583 L LCTY IE M 26 0 90 Europe/Dublin 2010-08-14 +3306682 Nodstown House Nodstown House 52.58722 -7.89972 S HSEC IE M 26 0 80 Europe/Dublin 2010-08-14 +3306683 Boherlahan Boherlahan 52.56944 -7.90444 L LCTY IE M 26 0 84 Europe/Dublin 2010-08-14 +3306716 Ballylegan Ballylegan 52.38528 -7.86944 S BLDG IE M 26 0 86 Europe/Dublin 2010-08-14 +3306717 Mortlestown Mortlestown 52.40417 -7.86556 P PPL IE M 26 0 98 Europe/Dublin 2010-08-14 +3306718 Whiteland Cross Roads Whiteland Cross Roads 52.41722 -7.85889 P PPL IE M 26 0 104 Europe/Dublin 2010-08-14 +3306719 Barina Barina 52.39222 -7.80833 S EST IE M 26 0 145 Europe/Dublin 2010-08-14 +3306720 Westgrove House Westgrove House 52.40611 -7.81167 S HSEC IE M 26 0 159 Europe/Dublin 2010-08-14 +3306721 Levally Levally 52.40417 -7.785 L LCTY IE M 26 0 118 Europe/Dublin 2010-08-14 +3306722 Shanballyard House Shanballyard House 52.41778 -7.8075 S HSEC IE M 26 0 149 Europe/Dublin 2010-08-14 +3306723 Glennagat Glennagat 52.42389 -7.83639 L LCTY IE M 26 0 141 Europe/Dublin 2010-08-14 +3306724 Springfield House Springfield House 52.42778 -7.835 S HSEC IE M 26 0 142 Europe/Dublin 2010-08-14 +3306725 Loughkent House Loughkent House 52.43444 -7.865 L LCTY IE M 26 0 114 Europe/Dublin 2010-08-14 +3306726 Ballygerald East Ballygerald East 52.44389 -7.86278 L LCTY IE M 26 0 120 Europe/Dublin 2010-08-14 +3306727 Tooloone Tooloone 52.43583 -7.835 L LCTY IE M 26 0 142 Europe/Dublin 2010-08-14 +3306728 Ballinattin Ballinattin 52.43472 -7.81417 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3306729 Blackcastle Blackcastle 52.44972 -7.83722 L LCTY IE M 26 0 143 Europe/Dublin 2010-08-14 +3306730 Newchapel Newchapel 52.39056 -7.76611 L LCTY IE M 26 0 78 Europe/Dublin 2010-08-14 +3306731 Ballyveelish Ballyveelish 52.39583 -7.75222 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306732 Knockeevan House Knockeevan House 52.40667 -7.74806 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3306733 Ballybeg Ballybeg 52.42417 -7.76667 L LCTY IE M 26 0 88 Europe/Dublin 2010-08-14 +3306734 Castle Blake Castle Blake 52.44889 -7.80167 S CSTL IE M 26 0 147 Europe/Dublin 2010-08-14 +3306735 Graigue Graigue 52.43222 -7.89972 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306736 Marlhill House Marlhill House 52.45056 -7.88528 S HSEC IE M 26 0 104 Europe/Dublin 2010-08-14 +3306737 Rockwell College Rockwell College 52.45889 -7.89167 S SCHC IE M 26 0 104 Europe/Dublin 2010-08-14 +3306738 Attykit Attykit 52.46694 -7.86222 L LCTY IE M 26 0 136 Europe/Dublin 2010-08-14 +3306750 Rosegreen Rosegreen 52.46806 -7.82833 L LCTY IE M 26 0 149 Europe/Dublin 2010-08-14 +3306751 Rathsallagh Rathsallagh 52.46278 -7.81389 L LCTY IE M 26 0 150 Europe/Dublin 2010-08-14 +3306752 Lowesgreen House Lowesgreen House 52.47167 -7.81056 S HSEC IE M 26 0 151 Europe/Dublin 2010-08-14 +3306759 Prite’s Lot Prite's Lot 52.49167 -7.86694 L LCTY IE M 40 0 144 Europe/Dublin 2010-08-14 +3306765 Lyonstown House Lyonstown House 52.48222 -7.84306 S HSEC IE M 26 0 147 Europe/Dublin 2010-08-14 +3306766 Ballyduagh House Ballyduagh House 52.49528 -7.81667 S HSEC IE M 26 0 153 Europe/Dublin 2010-08-14 +3306767 Kilbragh Kilbragh 52.485 -7.81472 P PPL IE M 26 0 153 Europe/Dublin 2010-08-14 +3306768 Rathbrit Rathbrit 52.49028 -7.79306 L LCTY IE M 26 0 151 Europe/Dublin 2010-08-14 +3306769 Kilsallagh Kilsallagh 52.50028 -7.81167 P PPLL IE M 26 0 153 Europe/Dublin 2010-08-14 +3306770 Ballyfowloo Ballyfowloo 52.50333 -7.83833 P PPLL IE M 26 0 152 Europe/Dublin 2010-08-14 +3306771 Rathordan Rathordan 52.50861 -7.86194 L LCTY IE M 26 0 151 Europe/Dublin 2010-08-14 +3306772 Garraun House Garraun House 52.45806 -7.75667 S HSEC IE M 26 0 93 Europe/Dublin 2010-08-14 +3306773 Tullamain Castle Tullamain Castle 52.46917 -7.77639 S CSTL IE M 26 0 135 Europe/Dublin 2010-08-14 +3306774 Knockbrit Knockbrit 52.50417 -7.77333 L LCTY IE M 26 0 140 Europe/Dublin 2010-08-14 +3306775 Farranaleen Farranaleen 52.50917 -7.73972 L LCTY IE M 26 0 105 Europe/Dublin 2010-08-14 +3306776 Rocklow Hall Rocklow Hall 52.48167 -7.71139 S EST IE M 26 0 74 Europe/Dublin 2010-08-14 +3306777 Brodeen Brodeen 52.46917 -7.72889 L LCTY IE M 26 0 78 Europe/Dublin 2010-08-14 +3306778 Barrettstown Barrettstown 52.46056 -7.73139 P PPL IE M 26 0 79 Europe/Dublin 2010-08-14 +3306779 Colman Colman 52.44833 -7.74694 L LCTY IE M 26 0 82 Europe/Dublin 2010-08-14 +3306780 Clonacody House Clonacody House 52.43444 -7.70361 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3306781 Ballincoe Ballincoe 52.425 -7.72972 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306782 Giantsgrave Giantsgrave 52.38833 -7.74722 L LCTY IE M 26 0 76 Europe/Dublin 2010-08-14 +3306783 Rathconan Rathconan 52.38722 -7.71694 S EST IE M 26 0 75 Europe/Dublin 2010-08-14 +3306784 Orchardstown House Orchardstown House 52.39639 -7.71861 S HSEC IE M 26 0 74 Europe/Dublin 2010-08-14 +3306785 Fortwilliam House Fortwilliam House 52.39333 -7.68667 S HSEC IE M 26 0 58 Europe/Dublin 2010-08-14 +3306786 Shanbally Shanbally 52.41333 -7.69694 L LCTY IE M 26 0 70 Europe/Dublin 2010-08-14 +3306787 Annsfort Annsfort 52.41028 -7.67611 L LCTY IE M 26 0 63 Europe/Dublin 2010-08-14 +3306788 Kilmore Kilmore 52.39889 -7.67139 L LCTY IE M 26 0 50 Europe/Dublin 2010-08-14 +3306789 Mullenaranky Mullenaranky 52.39528 -7.64667 P PPL IE M 26 0 42 Europe/Dublin 2010-08-14 +3306790 Ballyvaughan Ballyvaughan 52.38639 -7.66333 P PPL IE M 26 0 42 Europe/Dublin 2010-08-14 +3306791 Milltownbritton Milltownbritton 52.41611 -7.65333 L LCTY IE M 26 0 51 Europe/Dublin 2010-08-14 +3306792 Grangebeg Grangebeg 52.42389 -7.66667 L LCTY IE M 26 0 63 Europe/Dublin 2010-08-14 +3306793 Grove Wood Grove Wood 52.45222 -7.67833 V FRST IE M 26 0 63 Europe/Dublin 2010-08-14 +3306794 Killavally Wood Killavally Wood 52.42333 -7.62944 V FRST IE M 26 0 158 Europe/Dublin 2010-08-14 +3306795 Bannistown House Bannistown House 52.46417 -7.63028 S HSEC IE M 26 0 58 Europe/Dublin 2010-08-14 +3306796 Loughcapple Bridge Loughcapple Bridge 52.43083 -7.64889 P PPL IE M 26 0 51 Europe/Dublin 2010-08-14 +3306797 Anner Castle Anner Castle 52.385 -7.62167 S CSTL IE M 26 0 52 Europe/Dublin 2010-08-14 +3306798 Templeetney Templeetney 52.39944 -7.61944 L LCTY IE M 26 0 77 Europe/Dublin 2010-08-14 +3306799 Lisnatubbrid Lisnatubbrid 52.41333 -7.63222 L LCTY IE M 26 0 111 Europe/Dublin 2010-08-14 +3306800 Killusty Killusty 52.45056 -7.62944 L LCTY IE M 26 0 56 Europe/Dublin 2010-08-14 +3306801 Killusty Castle Killusty Castle 52.44333 -7.63167 S CSTL IE M 26 0 72 Europe/Dublin 2010-08-14 +3306802 Melbourne Bridge Melbourne Bridge 52.46806 -7.60833 P PPL IE M 26 0 61 Europe/Dublin 2010-08-14 +3306803 Friarsgrange Friarsgrange 52.47472 -7.64667 L LCTY IE M 26 0 98 Europe/Dublin 2010-08-14 +3306804 Bennes Hill Bennes Hill 52.47694 -7.65194 T HLL IE M 26 0 135 Europe/Dublin 2010-08-14 +3306805 Saucestown Bridge Saucestown Bridge 52.47889 -7.67639 P PPL IE M 26 0 96 Europe/Dublin 2010-08-14 +3306806 Kilnockan Hill Kilnockan Hill 52.48278 -7.68583 T HLL IE M 26 0 77 Europe/Dublin 2010-08-14 +3306807 Knockkelly House Knockkelly House 52.48944 -7.66833 S HSEC IE M 26 0 136 Europe/Dublin 2010-08-14 +3306808 Peppardstown House Peppardstown House 52.50778 -7.65306 S HSEC IE M 26 0 151 Europe/Dublin 2010-08-14 +3306809 Ballyglasheen House Ballyglasheen House 52.38583 -7.575 S HSEC IE M 26 0 29 Europe/Dublin 2010-08-14 +3306810 Ballyknockine House Ballyknockine House 52.39778 -7.58028 S HSEC IE M 26 0 57 Europe/Dublin 2010-08-14 +3306811 Ballyknockine Lodge Ballyknockine Lodge 52.405 -7.59389 S HSE IE M 26 0 137 Europe/Dublin 2010-08-14 +3306812 Toor Toor 52.42056 -7.54139 L LCTY IE M 26 0 322 Europe/Dublin 2010-08-14 +3306813 Bawndunhill Bawndunhill 52.43417 -7.52917 P PPLL IE M 26 0 216 Europe/Dublin 2010-08-14 +3306814 Graigue Graigue 52.39833 -7.56778 L LCTY IE M 26 0 75 Europe/Dublin 2010-08-14 +3306815 Tullohed Tullohed 52.42111 -7.51056 L LCTY IE M 26 0 216 Europe/Dublin 2010-08-14 +3306816 Ballynacloon Ballynacloon 52.40361 -7.50806 L LCTY IE M 26 0 119 Europe/Dublin 2010-08-14 +3306817 South Lodge South Lodge 52.42361 -7.4775 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3306818 Kylanoreashy Kylanoreashy 52.38667 -7.51222 L LCTY IE M 26 0 45 Europe/Dublin 2010-08-14 +3306819 Lissadober Lissadober 52.3975 -7.47111 L LCTY IE M 26 0 63 Europe/Dublin 2010-08-14 +3306820 Garryduff Garryduff 52.41583 -7.46222 L LCTY IE M 26 0 145 Europe/Dublin 2010-08-14 +3306821 Ballynakill Castle Ballynakill Castle 52.38361 -7.46306 S CSTL IE M 26 0 52 Europe/Dublin 2010-08-14 +3306822 Ballinurra Ballinurra 52.39472 -7.43861 L LCTY IE M 26 0 89 Europe/Dublin 2010-08-14 +3306823 Cloghapistole Cloghapistole 52.38583 -7.4375 L LCTY IE M 26 0 65 Europe/Dublin 2010-08-14 +3306824 Templemichael Templemichael 52.43722 -7.46 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3306825 Brenormore House Brenormore House 52.43889 -7.48528 S HSEC IE M 40 0 163 Europe/Dublin 2010-08-14 +3306826 Mullennaglogh Mullennaglogh 52.44694 -7.46778 P PPL IE M 26 0 149 Europe/Dublin 2010-08-14 +3306827 Carrigadoon Hill Carrigadoon Hill 52.41194 -7.40611 T MT IE M 26 0 130 Europe/Dublin 2010-08-14 +3306828 Curraheen Curraheen 52.42083 -7.43056 L LCTY IE M 26 0 155 Europe/Dublin 2010-08-14 +3306829 Castle John Castle John 52.44083 -7.41833 S EST IE M 26 0 132 Europe/Dublin 2010-08-14 +3306830 Anghvaneen Anghvaneen 52.45194 -7.46139 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3306831 Newtown Lower Newtown Lower 52.39167 -7.41583 P PPL IE M 26 0 86 Europe/Dublin 2010-08-14 +3306832 Newtown Newtown 52.39917 -7.39667 P PPL IE M 26 0 67 Europe/Dublin 2010-08-14 +3306833 Glennaskagh Glennaskagh 52.44972 -7.53778 P PPL IE M 26 0 191 Europe/Dublin 2010-08-14 +3306834 Carrigmaclea Carrigmaclea 52.45972 -7.49778 T HLL IE M 26 0 148 Europe/Dublin 2010-08-14 +3306835 Carrignagapple Carrignagapple 52.45583 -7.52722 T MT IE M 26 0 152 Europe/Dublin 2010-08-14 +3306836 Carrickabrock Carrickabrock 52.43556 -7.57611 T MT IE M 26 0 602 Europe/Dublin 2010-08-14 +3306837 Knockalainna Knockalainna 52.44639 -7.55472 T MT IE M 26 0 280 Europe/Dublin 2010-08-14 +3306838 Cloran New Cloran New 52.45083 -7.59694 L LCTY IE M 26 0 129 Europe/Dublin 2010-08-14 +3306839 Gurtnapisha Gurtnapisha 52.46139 -7.56833 L LCTY IE M 26 0 92 Europe/Dublin 2010-08-14 +3306840 Kylatlea Kylatlea 52.46667 -7.51389 P PPL IE M 26 0 87 Europe/Dublin 2010-08-14 +3306841 Gurteen House Gurteen House 52.48167 -7.52944 S HSEC IE M 26 0 69 Europe/Dublin 2010-08-14 +3306842 Ballywalter Ballywalter 52.48472 -7.55639 P PPL IE M 26 0 97 Europe/Dublin 2010-08-14 +3306843 Cappaghmore Cappaghmore 52.47694 -7.57194 L LCTY IE M 26 0 79 Europe/Dublin 2010-08-14 +3306861 Ballinam Castle Ballinam Castle 52.47917 -7.62972 S CSTL IE M 26 0 77 Europe/Dublin 2010-08-14 +3306862 Cappaghnagarrane Cappaghnagarrane 52.49583 -7.56639 T HLL IE M 26 0 137 Europe/Dublin 2010-08-14 +3306863 Tullowcossaun Tullowcossaun 52.50028 -7.605 L LCTY IE M 26 0 111 Europe/Dublin 2010-08-14 +3306867 Gurteen Gurteen 52.51444 -7.47444 L LCTY IE M 26 0 93 Europe/Dublin 2010-08-14 +3306868 Hilton Hilton 52.50139 -7.48028 S BLDG IE M 26 0 92 Europe/Dublin 2010-08-14 +3306869 Mullinoly Mullinoly 52.50056 -7.50306 P PPL IE M 26 0 77 Europe/Dublin 2010-08-14 +3306870 Jamestown Jamestown 52.52917 -7.48306 L LCTY IE M 26 0 88 Europe/Dublin 2010-08-14 +3306871 Clashbeg Clashbeg 52.54139 -7.51222 L LCTY IE M 26 0 110 Europe/Dublin 2010-08-14 +3306872 Ballynonnan Ballynonnan 52.52917 -7.55 L LCTY IE M 26 0 125 Europe/Dublin 2010-08-14 +3306873 Kilvemnon Kilvemnon 52.48972 -7.51556 L LCTY IE M 26 0 72 Europe/Dublin 2010-08-14 +3306874 Ballydaggan Ballydaggan 52.48111 -7.46917 L LCTY IE M 26 0 128 Europe/Dublin 2010-08-14 +3306875 Castletown House Castletown House 52.38361 -7.37333 S HSEC IE L 13 0 67 Europe/Dublin 2010-08-14 +3306876 Owning Owning 52.38667 -7.34222 P PPL IE L 13 0 83 Europe/Dublin 2010-08-14 +3306877 Templearum Templearum 52.38472 -7.29694 P PPL IE L 13 0 146 Europe/Dublin 2010-08-14 +3306878 Ashtown Ashtown 52.39417 -7.29 P PPL IE L 13 0 199 Europe/Dublin 2010-08-14 +3306879 Mullenbeg Cross Roads Mullenbeg Cross Roads 52.40083 -7.30111 P PPL IE L 13 0 212 Europe/Dublin 2010-08-14 +3306880 Mullenbeg Mullenbeg 52.41 -7.3025 L LCTY IE L 13 0 223 Europe/Dublin 2010-08-14 +3306881 Carricktriss Gorse Carricktriss Gorse 52.41306 -7.29 T MT IE L 13 0 248 Europe/Dublin 2010-08-14 +3306882 Garryduff Garryduff 52.40167 -7.3325 L LCTY IE L 13 0 167 Europe/Dublin 2010-08-14 +3306883 Glenbower Glenbower 52.39611 -7.335 L LCTY IE L 13 0 137 Europe/Dublin 2010-08-14 +3306884 Kilmacaliver Hill Kilmacaliver Hill 52.40472 -7.36806 T HLL IE L 13 0 143 Europe/Dublin 2010-08-14 +3306885 Carriganog Hill Carriganog Hill 52.40583 -7.34306 T HLL IE L 13 0 169 Europe/Dublin 2010-08-14 +3306886 Annfield House Annfield House 52.3925 -7.3575 S HSEC IE L 13 0 116 Europe/Dublin 2010-08-14 +3306887 Annsborough House Annsborough House 52.39083 -7.38778 S HSEC IE L 13 0 68 Europe/Dublin 2010-08-14 +3306888 Pollrone Pollrone 52.41278 -7.3625 P PPL IE L 13 0 167 Europe/Dublin 2010-08-14 +3306889 Booly Bridge Booly Bridge 52.43222 -7.27833 P PPL IE L 13 0 155 Europe/Dublin 2010-08-14 +3306890 Raheenarran Raheenarran 52.43333 -7.32333 L LCTY IE L 13 0 167 Europe/Dublin 2010-08-14 +3306891 Tussan Cross Roads Tussan Cross Roads 52.43333 -7.345 P PPL IE L 13 0 302 Europe/Dublin 2010-08-14 +3306892 Inchanaglogh Inchanaglogh 52.43028 -7.38889 L LCTY IE L 13 0 108 Europe/Dublin 2010-08-14 +3306893 Barnadown Barnadown 52.44611 -7.30306 P PPL IE L 13 0 159 Europe/Dublin 2010-08-14 +3306894 Lanoge Lanoge 52.44611 -7.36639 P PPL IE L 13 0 172 Europe/Dublin 2010-08-14 +3306895 Meallaghmore Meallaghmore 52.4375 -7.405 L LCTY IE L 13 0 128 Europe/Dublin 2010-08-14 +3306896 Coolehill Coolehill 52.455 -7.38667 S EST IE L 13 0 155 Europe/Dublin 2010-08-14 +3306897 Frankfort Frankfort 52.4575 -7.42056 L LCTY IE L 13 0 158 Europe/Dublin 2010-08-14 +3306898 Croan Croan 52.4525 -7.43111 P PPL IE M 26 0 158 Europe/Dublin 2010-08-14 +3306923 Lemonstown Lemonstown 52.48528 -7.34583 L LCTY IE L 13 0 86 Europe/Dublin 2010-08-14 +3306924 Rogerstown Bridge Rogerstown Bridge 52.49056 -7.32222 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +3306925 Ballinva Ballinva 52.47333 -7.29389 L LCTY IE L 13 0 114 Europe/Dublin 2010-08-14 +3306926 Kyle Kyle 52.46806 -7.29444 P PPL IE L 13 0 114 Europe/Dublin 2010-08-14 +3306927 Dangamnore Dangamnore 52.49333 -7.29222 L LCTY IE L 13 0 67 Europe/Dublin 2010-08-14 +3306928 Puitestown Puitestown 52.48306 -7.28778 L LCTY IE L 13 0 78 Europe/Dublin 2010-08-14 +3306929 Clone Castle Clone Castle 52.48 -7.30306 S CSTL IE L 13 0 77 Europe/Dublin 2010-08-14 +3306930 Graigue Graigue 52.47972 -7.37361 L LCTY IE L 13 0 121 Europe/Dublin 2010-08-14 +3306931 Roscon Roscon 52.47583 -7.39778 L LCTY IE L 13 0 132 Europe/Dublin 2010-08-14 +3306932 Whitemount Whitemount 52.5125 -7.32611 L LCTY IE L 13 0 74 Europe/Dublin 2010-08-14 +3306933 Ballyhall Ballyhall 52.50667 -7.37139 L LCTY IE L 13 0 91 Europe/Dublin 2010-08-14 +3306934 Coolaghflags Coolaghflags 52.50083 -7.38361 P PPL IE L 13 0 99 Europe/Dublin 2010-08-14 +3306935 Knockbatton Knockbatton 52.49444 -7.39778 L LCTY IE L 13 0 122 Europe/Dublin 2010-08-14 +3306936 Caherbeske House Caherbeske House 52.51667 -7.33833 S HSEC IE L 13 0 71 Europe/Dublin 2010-08-14 +3306937 Monadubbaun Monadubbaun 52.51972 -7.30889 P PPL IE L 13 0 70 Europe/Dublin 2010-08-14 +3306938 Raheen Raheen 52.50972 -7.30083 L LCTY IE L 13 0 70 Europe/Dublin 2010-08-14 +3306939 Kyle Kyle 52.50583 -7.39583 L LCTY IE L 13 0 105 Europe/Dublin 2010-08-14 +3306940 Currahill Currahill 52.46167 -7.34444 P PPL IE L 13 0 141 Europe/Dublin 2010-08-14 +3306941 Carricknagappul Carricknagappul 52.46167 -7.38806 T HLL IE L 13 0 152 Europe/Dublin 2010-08-14 +3306942 Screhan Screhan 52.49167 -7.39944 T HLL IE L 13 0 122 Europe/Dublin 2010-08-14 +3306943 Trenchmore Trenchmore 52.51139 -7.40861 L LCTY IE L 13 0 92 Europe/Dublin 2010-08-14 +3306944 Kylefreaghane Kylefreaghane 52.51333 -7.4525 L LCTY IE L 13 0 99 Europe/Dublin 2010-08-14 +3306945 Mallardstown Mallardstown 52.53389 -7.345 L LCTY IE L 13 0 67 Europe/Dublin 2010-08-14 +3306946 Goodwinsgarden Goodwinsgarden 52.53611 -7.31611 L LCTY IE L 13 0 64 Europe/Dublin 2010-08-14 +3306947 Kilcoran House Kilcoran House 52.56389 -7.32556 S HSEC IE L 13 0 76 Europe/Dublin 2010-08-14 +3306948 Seven Houses Cross Roads Seven Houses Cross Roads 52.58306 -7.27028 P PPL IE L 13 0 72 Europe/Dublin 2010-08-14 +3306949 Burnchurch Burnchurch 52.57528 -7.29444 P PPL IE L 13 0 77 Europe/Dublin 2010-08-14 +3306950 Burnchurch Viper Burnchurch Viper 52.56611 -7.29583 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3306951 Ovenstown Ovenstown 52.55778 -7.30139 P PPL IE L 13 0 69 Europe/Dublin 2010-08-14 +3306952 Highrath Highrath 52.5525 -7.34944 L LCTY IE L 13 0 73 Europe/Dublin 2010-08-14 +3306953 Tullamaine Tullamaine 52.56694 -7.34694 P PPL IE L 13 0 78 Europe/Dublin 2010-08-14 +3306954 Kilbrickan Kilbrickan 52.54583 -7.36917 L LCTY IE L 13 0 69 Europe/Dublin 2010-08-14 +3306955 Ballymack Ballymack 52.57639 -7.31139 S EST IE L 13 0 80 Europe/Dublin 2010-08-14 +3306956 Farmley Farmley 52.57833 -7.31444 S EST IE L 13 0 80 Europe/Dublin 2010-08-14 +3306957 Ballybur Ballybur 52.59306 -7.305 L LCTY IE L 13 0 77 Europe/Dublin 2010-08-14 +3306958 Kilbrids Cross Roads Kilbrids Cross Roads 52.53222 -7.42056 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +3306959 Cooltogoughagn Cooltogoughagn 52.5525 -7.47889 L LCTY IE M 26 0 95 Europe/Dublin 2010-08-14 +3306960 Modeshil Modeshil 52.54333 -7.47861 L LCTY IE M 26 0 92 Europe/Dublin 2010-08-14 +3306961 Islands Bridge Islands Bridge 52.54833 -7.51167 P PPL IE M 26 0 120 Europe/Dublin 2010-08-14 +3306962 Mollober House Mollober House 52.5625 -7.48861 S HSEC IE M 26 0 108 Europe/Dublin 2010-08-14 +3306963 Attateenoe Attateenoe 52.52667 -7.46139 L LCTY IE M 26 0 86 Europe/Dublin 2010-08-14 +3306964 Ballintaggart Ballintaggart 52.57917 -7.48583 L LCTY IE M 26 0 119 Europe/Dublin 2010-08-14 +3306965 Baunta Commons Baunta Commons 52.52389 -7.38694 S EST IE L 13 0 76 Europe/Dublin 2010-08-14 +3306966 Graigueooly Graigueooly 52.57361 -7.38972 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3306967 Skeaghacloran Skeaghacloran 52.56417 -7.39 L LCTY IE L 13 0 72 Europe/Dublin 2010-08-14 +3306968 Lakyle Lakyle 52.56778 -7.42972 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3306969 Cappahayden Cappahayden 52.56056 -7.45861 L LCTY IE L 13 0 83 Europe/Dublin 2010-08-14 +3306970 White House White House 52.57139 -7.44139 S HSEC IE L 13 0 75 Europe/Dublin 2010-08-14 +3306971 Ballyline Ballyline 52.57389 -7.41194 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +3306972 Killaloe Killaloe 52.58278 -7.41111 L LCTY IE L 13 0 80 Europe/Dublin 2010-08-14 +3306973 Rossmore Rossmore 52.58806 -7.44639 L LCTY IE L 13 0 82 Europe/Dublin 2010-08-14 +3306974 Ballykeefe Bog Ballykeefe Bog 52.59389 -7.41194 H BOG IE L 13 0 115 Europe/Dublin 2010-08-14 +3306975 Kilbraghan Kilbraghan 52.59444 -7.48083 L LCTY IE M 26 0 122 Europe/Dublin 2010-08-14 +3306976 Jessfield House Jessfield House 52.60056 -7.48333 S HSEC IE L 13 0 148 Europe/Dublin 2010-08-14 +3306977 Foilmarnett Foilmarnett 52.59444 -7.52 L LCTY IE M 26 0 160 Europe/Dublin 2010-08-14 +3306978 Ballingarry Bridge Ballingarry Bridge 52.59333 -7.5625 P PPL IE M 26 0 205 Europe/Dublin 2010-08-14 +3306979 Ballaghboy Ballaghboy 52.57528 -7.52389 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3306980 Dublin Dublin 52.57444 -7.55028 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3306981 Gragaugh House Gragaugh House 52.56556 -7.53972 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3306982 Garrynoe Garrynoe 52.57944 -7.58194 L LCTY IE M 26 0 269 Europe/Dublin 2010-08-14 +3306983 Ballykevin Ballykevin 52.57611 -7.60361 L LCTY IE M 26 0 231 Europe/Dublin 2010-08-14 +3306984 Coolquill Castle Coolquill Castle 52.57 -7.62806 S CSTL IE M 26 0 172 Europe/Dublin 2010-08-14 +3306985 Priestown House Priestown House 52.5125 -7.56139 S HSEC IE L 13 0 87 Europe/Dublin 2010-08-14 +3306986 Knockuragh Knockuragh 52.5225 -7.56972 T HLL IE M 26 0 109 Europe/Dublin 2010-08-14 +3306987 Mounvarrin Mounvarrin 52.53944 -7.58222 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3306988 Bullylusky Cross Roads Bullylusky Cross Roads 52.53444 -7.62083 P PPL IE M 26 0 151 Europe/Dublin 2010-08-14 +3306989 Magowry Magowry 52.52472 -7.62389 L LCTY IE M 26 0 114 Europe/Dublin 2010-08-14 +3306990 Crohane Upper Crohane Upper 52.55028 -7.59972 L LCTY IE M 26 0 169 Europe/Dublin 2010-08-14 +3306991 St. Johnstown Castle St. Johnstown Castle 52.52083 -7.65 S CSTL IE M 26 0 152 Europe/Dublin 2010-08-14 +3306992 Coolbaun Cross Roads Coolbaun Cross Roads 52.52611 -7.68167 P PPL IE L 13 0 151 Europe/Dublin 2010-08-14 +3306993 Kilkennybeg Kilkennybeg 52.54472 -7.64556 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3306994 Mortlestown Castle Mortlestown Castle 52.53889 -7.67667 S CSTL IE M 26 0 152 Europe/Dublin 2010-08-14 +3306995 Roan House Roan House 52.55472 -7.67417 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3306996 Moglass Moglass 52.52222 -7.71694 P PPL IE L 13 0 123 Europe/Dublin 2010-08-14 +3306997 Crohane Lower Crohane Lower 52.56389 -7.61139 L LCTY IE M 26 0 186 Europe/Dublin 2010-08-14 +3306998 Mardyke Mardyke 52.58417 -7.63806 P PPL IE M 26 0 165 Europe/Dublin 2010-08-14 +3306999 Springhill House Springhill House 52.57028 -7.6875 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307000 Graystown Graystown 52.56111 -7.70694 P PPLL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307002 Curragh House Curragh House 52.58083 -7.68306 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307003 Knockanure House Knockanure House 52.59444 -7.64361 S HSEC IE M 26 0 156 Europe/Dublin 2010-08-14 +3307004 Copper Copper 52.59111 -7.57333 L LCTY IE M 26 0 231 Europe/Dublin 2010-08-14 +3307034 Killeen Killeen 52.59833 -7.70722 L LCTY IE M 26 0 148 Europe/Dublin 2010-08-14 +3307035 Helen Park Helen Park 52.56972 -7.70194 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307036 Cathaganstown Cathaganstown 52.54694 -7.71444 L LCTY IE M 26 0 154 Europe/Dublin 2010-08-14 +3307037 Buffanagh Buffanagh 52.54444 -7.74083 L LCTY IE M 26 0 143 Europe/Dublin 2010-08-14 +3307038 Foulkstown Foulkstown 52.53444 -7.75639 L LCTY IE M 26 0 147 Europe/Dublin 2010-08-14 +3307039 Knockforlagh Knockforlagh 52.55028 -7.73806 T HLL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307040 Ballaghboy Ballaghboy 52.54861 -7.78306 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3307041 Kill Hill Kill Hill 52.54139 -7.785 T HLL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307042 Carrow Carrow 52.55389 -7.80917 L LCTY IE M 26 0 153 Europe/Dublin 2010-08-14 +3307043 Rathclogh Rathclogh 52.53972 -7.81333 P PPLL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307044 Fussough Fussough 52.54611 -7.81361 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3307045 Dually House Dually House 52.5375 -7.82639 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307046 Ballytower House Ballytower House 52.54944 -7.82722 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307048 Noan House Noan House 52.55972 -7.75083 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307049 Balltkelly House Balltkelly House 52.55806 -7.84194 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307050 Mount O’Meara Mount O'Meara 52.54972 -7.83472 T HLL IE M 40 0 152 Europe/Dublin 2010-08-14 +3307051 Knockanglass House Knockanglass House 52.52861 -7.71194 S HSEC IE M 26 0 144 Europe/Dublin 2010-08-14 +3307052 Clonbrogan House Clonbrogan House 52.52528 -7.72667 S HSEC IE M 26 0 126 Europe/Dublin 2010-08-14 +3307054 Coleraine House Coleraine House 52.52111 -7.80639 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307055 Boscabell Boscabell 52.52806 -7.86389 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3307056 Gortmakellis Gortmakellis 52.54722 -7.88667 L LCTY IE M 26 0 123 Europe/Dublin 2010-08-14 +3307057 Mayfield House Mayfield House 52.51444 -7.8325 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307058 Ballyknock Hill Ballyknock Hill 52.53333 -7.87 T HLL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307059 Synone House Synone House 52.57167 -7.87806 S HSEC IE M 26 0 115 Europe/Dublin 2010-08-14 +3307061 Ballinree House Ballinree House 52.58028 -7.84889 S HSEC IE M 26 0 146 Europe/Dublin 2010-08-14 +3307062 Ballytarsna House Ballytarsna House 52.585 -7.82278 S HSEC IE M 26 0 155 Europe/Dublin 2010-08-14 +3307063 Gaile House Gaile House 52.59528 -7.85583 S HSEC IE M 26 0 130 Europe/Dublin 2010-08-14 +3307064 Ashhill Ashhill 52.59778 -7.79722 P PPL IE M 26 0 150 Europe/Dublin 2010-08-14 +3307065 Grallagh Castle Grallagh Castle 52.59056 -7.77361 S CSTL IE M 26 0 150 Europe/Dublin 2010-08-14 +3307066 Lassaha Lassaha 52.58694 -7.74611 L LCTY IE M 26 0 149 Europe/Dublin 2010-08-14 +3307067 Foberadora Foberadora 52.595 -7.90417 L LCTY IE M 40 0 74 Europe/Dublin 2010-08-14 +3307068 Arglo River Arglo River 52.54361 -7.92972 H STM IE M 26 0 71 Europe/Dublin 2010-08-14 +3307069 Cloran House Cloran House 52.46472 -7.60917 S HSEC IE M 26 0 61 Europe/Dublin 2010-08-14 +3307070 Anner River Anner River 52.42472 -7.6375 H STM IE M 26 0 93 Europe/Dublin 2010-08-14 +3307071 Anne’s Gift Anne's Gift 52.49028 -7.73444 S BLDG IE M 40 0 86 Europe/Dublin 2010-08-14 +3307075 Rathaleek Rathaleek 52.61056 -7.28917 P PPL IE L 13 0 74 Europe/Dublin 2010-08-14 +3307076 Bamfort House Bamfort House 52.61444 -7.26806 S HSEC IE L 13 0 74 Europe/Dublin 2010-08-14 +3307077 Tinnypark House Tinnypark House 52.62611 -7.28222 S HSEC IE L 13 0 72 Europe/Dublin 2010-08-14 +3307078 Damma Lower Cross Roads Damma Lower Cross Roads 52.63472 -7.32361 P PPL IE L 13 0 94 Europe/Dublin 2010-08-14 +3307079 Aughtanny Aughtanny 52.6275 -7.31611 L LCTY IE L 13 0 76 Europe/Dublin 2010-08-14 +3307080 Damma Damma 52.63083 -7.33667 L LCTY IE L 13 0 113 Europe/Dublin 2010-08-14 +3307081 Ballycallan Ballycallan 52.62222 -7.36306 P PPL IE L 13 0 135 Europe/Dublin 2010-08-14 +3307082 Seville Lodge Seville Lodge 52.63778 -7.26667 S HSE IE L 13 0 71 Europe/Dublin 2010-08-14 +3307083 Clonard Clonard 52.61278 -7.37694 P PPL IE L 13 0 141 Europe/Dublin 2010-08-14 +3307084 Ballykeefe Cross Roads Ballykeefe Cross Roads 52.60639 -7.3875 P PPL IE L 13 0 134 Europe/Dublin 2010-08-14 +3307085 Ballykeefe Wood Ballykeefe Wood 52.61167 -7.39389 V FRST IE L 13 0 152 Europe/Dublin 2010-08-14 +3307086 Ballyfrunk Ballyfrunk 52.63889 -7.36778 L LCTY IE L 13 0 150 Europe/Dublin 2010-08-14 +3307087 Goldenfield Goldenfield 52.64528 -7.36806 L LCTY IE L 13 0 151 Europe/Dublin 2010-08-14 +3307088 Clasheen Bridge Clasheen Bridge 52.59972 -7.36389 P PPL IE L 13 0 106 Europe/Dublin 2010-08-14 +3307089 Sheeptown House Sheeptown House 52.60667 -7.41111 S HSEC IE L 13 0 133 Europe/Dublin 2010-08-14 +3307090 Ballycuddihy Ballycuddihy 52.63611 -7.40694 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307091 Oldtown Oldtown 52.6425 -7.42417 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307092 Pottlerath Pottlerath 52.61667 -7.43889 P PPL IE L 13 0 149 Europe/Dublin 2010-08-14 +3307093 Killeen Killeen 52.62694 -7.46722 L LCTY IE L 13 0 154 Europe/Dublin 2010-08-14 +3307094 Gortnagan Cross Roads Gortnagan Cross Roads 52.64722 -7.48194 P PPL IE L 13 0 153 Europe/Dublin 2010-08-14 +3307095 Carstown Cross Roads Carstown Cross Roads 52.65722 -7.37944 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3307096 Troyswood House Troyswood House 52.68139 -7.275 S HSEC IE L 13 0 63 Europe/Dublin 2010-08-14 +3307097 Thornpack Thornpack 52.69194 -7.27028 P PPL IE L 13 0 68 Europe/Dublin 2010-08-14 +3307098 Dunningstown Dunningstown 52.68306 -7.32361 L LCTY IE L 13 0 117 Europe/Dublin 2010-08-14 +3307099 Black Castle Black Castle 52.69694 -7.32139 S CSTL IE L 13 0 95 Europe/Dublin 2010-08-14 +3307100 Lough House Lough House 52.70611 -7.34833 S HSEC IE L 13 0 149 Europe/Dublin 2010-08-14 +3307101 Newtown Newtown 52.65917 -7.32389 L LCTY IE L 13 0 118 Europe/Dublin 2010-08-14 +3307102 Lacken Lacken 52.66861 -7.35583 L LCTY IE L 13 0 154 Europe/Dublin 2010-08-14 +3307103 Deerpark Deerpark 52.67167 -7.29528 L LCTY IE L 13 0 85 Europe/Dublin 2010-08-14 +3307104 Dinin Bridge Dinin Bridge 52.71639 -7.29111 P PPL IE L 13 0 68 Europe/Dublin 2010-08-14 +3307105 Tower Bridge Tower Bridge 52.7225 -7.27472 P PPL IE L 13 0 76 Europe/Dublin 2010-08-14 +3307106 Ballydun Ballydun 52.66222 -7.36444 L LCTY IE L 13 0 153 Europe/Dublin 2010-08-14 +3307107 Ballinamara Cross Roads Ballinamara Cross Roads 52.68306 -7.38083 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307109 Lis Cross Roads Lis Cross Roads 52.66861 -7.40722 P PPL IE L 13 0 154 Europe/Dublin 2010-08-14 +3307110 Lisballyfroot Lisballyfroot 52.67 -7.43139 L LCTY IE L 13 0 153 Europe/Dublin 2010-08-14 +3307111 Brittas Cross Roads Brittas Cross Roads 52.67722 -7.43833 P PPL IE L 13 0 154 Europe/Dublin 2010-08-14 +3307112 Wallstown Wallstown 52.68556 -7.41667 L LCTY IE L 13 0 157 Europe/Dublin 2010-08-14 +3307113 Knocknamuck Knocknamuck 52.69528 -7.45667 P PPL IE L 13 0 154 Europe/Dublin 2010-08-14 +3307114 Killahy Cross Roads Killahy Cross Roads 52.69028 -7.47722 P PPL IE L 13 0 153 Europe/Dublin 2010-08-14 +3307115 Ballyroe Ballyroe 52.70111 -7.42611 L LCTY IE L 13 0 156 Europe/Dublin 2010-08-14 +3307116 Sart Cross Roads Sart Cross Roads 52.70778 -7.4025 P PPL IE L 13 0 157 Europe/Dublin 2010-08-14 +3307117 Ballyphilip Ballyphilip 52.71472 -7.425 L LCTY IE L 13 0 156 Europe/Dublin 2010-08-14 +3307161 Cronagarn Cronagarn 54.98472 -8.54528 T HLL IE U 06 0 216 117 Europe/Dublin 2010-08-14 +3307162 Cluidaniller Cluidaniller 54.99083 -8.52944 T HLL IE U 06 0 228 116 Europe/Dublin 2010-08-14 +3307163 Frenchman’s Hill Frenchman's Hill 54.99583 -8.54028 T HLL IE U 06 0 206 160 Europe/Dublin 2010-08-14 +3307164 Leabgarrow Leabgarrow 54.99028 -8.5025 P PPLL IE U 06 0 51 Europe/Dublin 2010-08-14 +3307165 Lough Shore Lough Shore 55.00083 -8.53444 H LK IE U 06 0 152 Europe/Dublin 2010-08-14 +3307166 Binnadridog Binnadridog 55.00194 -8.55167 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307167 Bellachreesh Bay Bellachreesh Bay 55.00694 -8.51222 H BAY IE U 06 0 52 Europe/Dublin 2010-08-14 +3307168 Calf Island Calf Island 54.99583 -8.49222 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307169 Lahon Island Lahon Island 54.99972 -8.45833 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307170 Eighter Island Eighter Island 54.99139 -8.47028 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307171 Inishcoo Inishcoo 54.98667 -8.45806 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307172 Edernishfree Edernishfree 54.99111 -8.43139 P PPLL IE U 06 0 2 Europe/Dublin 2010-08-14 +3307173 Lough Waskel Lough Waskel 54.9925 -8.41056 H LK IE U 06 0 4 Europe/Dublin 2010-08-14 +3307174 Lough Atercon Lough Atercon 54.98611 -8.38361 H LK IE U 06 0 21 Europe/Dublin 2010-08-14 +3307175 Meenbannad Lough Meenbannad Lough 54.99222 -8.3625 H LK IE U 06 0 57 Europe/Dublin 2010-08-14 +3307176 Lough Arland Lough Arland 55.0025 -8.43889 H LK IE U 06 0 1 Europe/Dublin 2010-08-14 +3307177 Sally’s Lough Sally's Lough 54.9975 -8.43972 H LK IE U 06 0 1 Europe/Dublin 2010-08-14 +3307178 Lough Nawaugh Lough Nawaugh 55.00083 -8.37972 H LK IE U 06 0 26 Europe/Dublin 2010-08-14 +3307179 Lough Nagreagh Lough Nagreagh 55.01 -8.37806 H LK IE U 06 0 21 Europe/Dublin 2010-08-14 +3307180 Lough Navreaguoge Lough Navreaguoge 55.01611 -8.35806 H LK IE U 06 0 75 Europe/Dublin 2010-08-14 +3307181 Keadew Bar Keadew Bar 55.01222 -8.41278 T BAR IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307187 Lough Nagapple Lough Nagapple 54.99056 -8.30472 H LK IE U 06 0 61 Europe/Dublin 2010-08-14 +3307188 Heather Lough Heather Lough 55.00167 -8.3325 H LK IE U 06 0 118 Europe/Dublin 2010-08-14 +3307189 Lough Connell Lough Connell 55.00222 -8.27667 H LK IE U 06 0 5 Europe/Dublin 2010-08-14 +3307190 Lough Keel Lough Keel 54.99361 -8.23861 H LK IE U 06 0 188 Europe/Dublin 2010-08-14 +3307191 Loughanure Loughanure Loch an Iuir,Loch an Iúir,Loughanure 54.99722 -8.29083 P PPL IE U 06 0 2 Europe/Dublin 2010-08-14 +3307192 Island Trairagh Island Trairagh 54.98861 -8.28194 T ISL IE U 06 0 20 Europe/Dublin 2010-08-14 +3307195 Stranarva Stranarva 54.99056 -8.26222 P PPLL IE U 06 0 111 Europe/Dublin 2010-08-14 +3307196 Grogan More Grogan More 55.01333 -8.22556 T MT IE U 06 0 453 322 Europe/Dublin 2010-08-14 +3307198 Jackstown Jackstown 55.02861 -8.27111 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307199 Lough Naweeloge Lough Naweeloge 55.02944 -8.34333 H LK IE U 06 0 67 Europe/Dublin 2010-08-14 +3307201 Lough Fadda Lough Fadda 55.03639 -8.31167 H LK IE U 06 0 26 Europe/Dublin 2010-08-14 +3307202 Lough Fad Lough Fad 55.03639 -8.29028 H LK IE U 06 0 1 Europe/Dublin 2010-08-14 +3307203 Dore Dore 55.04306 -8.26833 P PPL IE U 06 0 26 Europe/Dublin 2010-08-14 +3307204 Braade Strand na Feirste Braade Strand na Feirste 55.03806 -8.33 H FLTT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307209 Carnboy Carnboy 55.05972 -8.33472 T PEN IE U 06 0 1 Europe/Dublin 2010-08-14 +3307212 Inishillintry Inishillintry 55.04361 -8.41111 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307215 Allagh Island Allagh Island 55.07917 -8.36972 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307216 Go Island Go Island 55.07833 -8.36333 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307217 Bo Island Bo Island 55.07972 -8.3375 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307220 Middletown Middletown 55.07417 -8.27222 P PPL IE U 06 0 70 Europe/Dublin 2010-08-14 +3307222 Stranabrooey Stranabrooey 55.09194 -8.26667 P PPLL IE U 06 0 72 Europe/Dublin 2010-08-14 +3307224 Lough Aninver Lough Aninver 55.11583 -8.29389 H LK IE U 06 0 53 Europe/Dublin 2010-08-14 +3307225 Lough Veigha Lough Veigha 55.11917 -8.27667 H LK IE U 06 0 83 Europe/Dublin 2010-08-14 +3307226 Corveen Corveen 55.10528 -8.26361 P PPLL IE U 06 0 73 Europe/Dublin 2010-08-14 +3307228 Altawinny Bay Altawinny Bay 55.14667 -8.29361 H BAY IE U 06 0 16 Europe/Dublin 2010-08-14 +3307229 Knockfola Knockfola 55.14222 -8.28 P PPLL IE U 06 0 45 Europe/Dublin 2010-08-14 +3307231 Bloody Foreland Bloody Foreland 55.1375 -8.26167 T MT IE U 06 0 316 77 Europe/Dublin 2010-08-14 +3307232 Ferry’s Lough Ferry's Lough 55.13056 -8.21306 H LK IE U 06 0 62 Europe/Dublin 2010-08-14 +3307233 Meenaclady Meenaclady 55.14083 -8.22222 P PPL IE U 06 0 34 Europe/Dublin 2010-08-14 +3307236 Curran’s Port Curran's Port 55.14917 -8.21278 H HBR IE U 06 0 5 Europe/Dublin 2010-08-14 +3307237 Crockaneeve Crockaneeve 55.13639 -8.18611 L LCTY IE U 06 0 44 Europe/Dublin 2010-08-14 +3307238 Rocking Stone Rocking Stone 55.12333 -8.16472 P PPLL IE U 06 0 21 Europe/Dublin 2010-08-14 +3307239 Port Marsh Port Marsh 55.14778 -8.16528 H HBR IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307240 Lough Nagreenan Lough Nagreenan 55.08778 -8.22722 H LK IE U 06 0 162 Europe/Dublin 2010-08-14 +3307241 Lough Agrougha Lough Agrougha 55.07167 -8.16333 H LK IE U 06 0 184 Europe/Dublin 2010-08-14 +3307242 Lough Agannive Lough Agannive 55.06889 -8.12167 H LK IE U 06 0 151 Europe/Dublin 2010-08-14 +3307243 Lough Trusk Lough Trusk 55.05611 -8.14333 H LK IE U 06 0 401 Europe/Dublin 2010-08-14 +3307244 Magheraroarty Mountain Magheraroarty Mountain 55.105 -8.21806 T HLL IE U 06 0 140 Europe/Dublin 2010-08-14 +3307245 Gweedore Gweedore 55.08361 -8.22972 L AREA IE U 06 0 162 Europe/Dublin 2010-08-14 +3307246 Tievealehid Tievealehid Taobh an Leithid,Tievealehid 55.08111 -8.2 T MT IE U 06 0 430 321 Europe/Dublin 2010-08-14 +3307247 Cronalaght Cronalaght 55.06778 -8.21444 T SPUR IE U 06 0 318 Europe/Dublin 2010-08-14 +3307248 Carntreena Carntreena 55.07167 -8.18056 T SPUR IE U 06 0 269 Europe/Dublin 2010-08-14 +3307255 Meenacung Meenacung 55.04556 -8.19194 P PPLL IE U 06 0 61 Europe/Dublin 2010-08-14 +3307256 Glentornan Glentornan 55.02 -8.16333 L LCTY IE U 06 0 71 Europe/Dublin 2010-08-14 +3307257 Glentornan Lough Glentornan Lough 55.005 -8.18611 H LK IE U 06 0 317 Europe/Dublin 2010-08-14 +3307258 Lough Nabrackbaddy Lough Nabrackbaddy 55.01222 -8.21417 H LK IE U 06 0 369 Europe/Dublin 2010-08-14 +3307259 Lough Atirrive Lough Atirrive 54.99167 -8.155 H LK IE U 06 0 335 Europe/Dublin 2010-08-14 +3307260 Lough Maam Lough Maam 54.98972 -8.11472 H LK IE U 06 0 509 Europe/Dublin 2010-08-14 +3307261 Crocknafarragh Crocknafarragh 54.99806 -8.19139 T MT IE U 06 0 520 357 Europe/Dublin 2010-08-14 +3307262 Devlin River Devlin River 55.01722 -8.11472 H STM IE U 06 0 179 Europe/Dublin 2010-08-14 +3307263 Dunlewy House Dunlewy House 55.01722 -8.1275 S HSEC IE U 06 0 94 Europe/Dublin 2010-08-14 +3307264 Lough Adinn Lough Adinn 55.05222 -8.17333 H LK IE U 06 0 150 Europe/Dublin 2010-08-14 +3307265 Cronanty Burn Cronanty Burn 55.01806 -8.11139 H STM IE U 06 0 179 Europe/Dublin 2010-08-14 +3307266 The Poisoned Glen The Poisoned Glen 54.99694 -8.08944 T GAP IE U 06 0 345 Europe/Dublin 2010-08-14 +3307267 Ballaghgeeha Gap Ballaghgeeha Gap 54.99722 -8.07083 T GAP IE U 06 0 281 Europe/Dublin 2010-08-14 +3307268 Maumlack Maumlack 55.01722 -8.06528 T MT IE U 06 0 484 429 Europe/Dublin 2010-08-14 +3307269 Staghall Mountain Staghall Mountain 55.01028 -8.04611 T MT IE U 06 0 487 421 Europe/Dublin 2010-08-14 +3307270 Farscallop Farscallop 55.00139 -8.00944 T MT IE U 06 0 423 269 Europe/Dublin 2010-08-14 +3307271 Croloughan Lough Croloughan Lough 55.02333 -8.06861 H LK IE U 06 0 376 Europe/Dublin 2010-08-14 +3307272 Croaghnambrock Croaghnambrock 55.00944 -8.09 T SPUR IE U 06 0 198 Europe/Dublin 2010-08-14 +3307273 Lough Naweeloge Lough Naweeloge 55.01389 -8.04222 H LK IE U 06 0 421 Europe/Dublin 2010-08-14 +3307274 Glenbeagh Cottage Glenbeagh Cottage 55.00972 -8.01167 S HSE IE U 06 0 66 Europe/Dublin 2010-08-14 +3307275 Owenbeagh Owenbeagh 55.01806 -7.99528 H STM IE U 06 0 68 Europe/Dublin 2010-08-14 +3307276 Glenveagh Deer Forest Glenveagh Deer Forest 55.01417 -8.00278 V FRST IE U 06 0 123 Europe/Dublin 2010-08-14 +3307277 Croaghnanamph Croaghnanamph 54.98667 -7.99111 T HLL IE U 06 0 246 Europe/Dublin 2010-08-14 +3307278 Saggartnadooish Saggartnadooish 55.04417 -8.01778 T SPUR IE U 06 0 398 Europe/Dublin 2010-08-14 +3307279 Lough Muilt Lough Muilt 55.08444 -8.05917 H LK IE U 06 0 208 Europe/Dublin 2010-08-14 +3307280 Lough Feeane Lough Feeane 55.06472 -8.07083 H LK IE U 06 0 380 Europe/Dublin 2010-08-14 +3307281 Aghla More Aghla More Aghla More 55.06389 -8.08417 T MT IE U 06 0 583 269 Europe/Dublin 2010-08-14 +3307282 Aghla Beg Aghla Beg Aghla Beg 55.07528 -8.06056 T MT IE U 06 0 566 304 Europe/Dublin 2010-08-14 +3307283 Moylecrock Moylecrock 55.0875 -8.06361 T HLL IE U 06 0 229 208 Europe/Dublin 2010-08-14 +3307284 Crocknalaragagh Crocknalaragagh Crocknalaragagh 55.08306 -8.02556 T MT IE U 06 0 473 372 Europe/Dublin 2010-08-14 +3307285 Cashelnagor Cashelnagor 55.08389 -8.09639 P PPLL IE U 06 0 138 Europe/Dublin 2010-08-14 +3307286 Meendarragh Meendarragh 55.09639 -8.09833 P PPLL IE U 06 0 116 Europe/Dublin 2010-08-14 +3307287 Oldtown Oldtown 55.11556 -8.10694 P PPLL IE U 06 0 77 Europe/Dublin 2010-08-14 +3307288 Gay Town Gay Town 55.10639 -8.13583 P PPLL IE U 06 0 74 Europe/Dublin 2010-08-14 +3307289 Cashel Hill Cashel Hill 55.11722 -8.13694 P PPL IE U 06 0 37 Europe/Dublin 2010-08-14 +3307290 Millmount Millmount 55.12194 -8.10972 P PPLL IE U 06 0 56 Europe/Dublin 2010-08-14 +3307291 Lough Agher River Lough Agher River 55.12833 -8.06417 H STM IE U 06 0 64 Europe/Dublin 2010-08-14 +3307292 Tullaghobegly River Tullaghobegly River 55.13583 -8.12139 H STM IE U 06 0 17 Europe/Dublin 2010-08-14 +3307293 Gortfree Gortfree 52.61444 -7.49083 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3307294 Glenna River Glenna River 55.12056 -8.13861 H STM IE U 06 0 37 Europe/Dublin 2010-08-14 +3307295 Warhouse Hill Warhouse Hill 52.61917 -7.52083 T HLL IE M 26 0 162 Europe/Dublin 2010-08-14 +3307296 Ards Point Ards Point 55.13056 -8.14611 T PT IE U 06 0 7 Europe/Dublin 2010-08-14 +3307297 Ballyness Ballyness Ballynes,Ballyness 55.14222 -8.11556 P PPLL IE IE U 06 0 14 Europe/Dublin 2010-08-14 +3307298 Dooey Dooey 55.15639 -8.1425 T PEN IE U 06 0 1 Europe/Dublin 2010-08-14 +3307300 Williamstown Williamstown 52.63444 -7.52722 L LCTY IE M 26 0 160 Europe/Dublin 2010-08-14 +3307301 Carowcanon Carowcanon 55.14 -8.07778 P PPL IE U 06 0 44 Europe/Dublin 2010-08-14 +3307320 Erroonagh Bay Erroonagh Bay 55.17556 -8.18111 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307321 Garranacool Garranacool 52.60444 -7.54917 L LCTY IE M 26 0 180 Europe/Dublin 2010-08-14 +3307322 Toberglassan Bay Toberglassan Bay 55.18028 -8.17333 H BAY IE U 06 0 1 Europe/Dublin 2010-08-14 +3307323 Bolintlea Bolintlea 52.61806 -7.55167 T HLL IE M 26 0 187 Europe/Dublin 2010-08-14 +3307324 Keelasbeg Sound Keelasbeg Sound 55.20028 -8.16333 H CHNM IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307325 East Town East Town Baile Thoir,East Town 55.25806 -8.20611 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307326 Tormore Tormore 55.26361 -8.19056 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307327 The Anvil The Anvil 55.26111 -8.19361 T HLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307328 Pollaguill Bay Pollaguill Bay 55.19639 -8.01833 H BAY IE U 06 0 67 Europe/Dublin 2010-08-14 +3307329 Anloge Hill Anloge Hill 55.19417 -8.00139 T HLL IE U 06 0 108 98 Europe/Dublin 2010-08-14 +3307330 Black Burrow Black Burrow 55.16833 -8.03639 T HLL IE U 06 0 35 Europe/Dublin 2010-08-14 +3307331 Drumdoo Drumdoo 55.16028 -8.025 L LCTY IE U 06 0 47 Europe/Dublin 2010-08-14 +3307332 Bregaun Hill Bregaun Hill 52.64167 -7.57222 T HLL IE M 26 0 163 Europe/Dublin 2010-08-14 +3307333 McSwyne’s Gun McSwyne's Gun 55.19056 -8.02306 T FSR IE U 06 0 23 Europe/Dublin 2010-08-14 +3307334 Drumlesk Lough Drumlesk Lough 55.15306 -8.02167 H LK IE U 06 0 78 Europe/Dublin 2010-08-14 +3307335 Ballysloe Ballysloe Ballysloe 52.63806 -7.60611 P PPL IE M 26 0 161 Europe/Dublin 2010-11-05 +3307336 Ray Ray 55.14639 -8.05556 P PPL IE U 06 0 61 Europe/Dublin 2010-08-14 +3307337 Poyntstown Poyntstown 52.62722 -7.62722 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3307338 Earlshill Earlshill 52.60583 -7.61583 L LCTY IE M 26 0 208 Europe/Dublin 2010-08-14 +3307339 Lough Agher Lough Agher 55.12528 -8.00361 H LK IE U 06 0 154 Europe/Dublin 2010-08-14 +3307340 Derryreel Lough Derryreel Lough 55.13556 -8.02306 H LK IE U 06 0 138 Europe/Dublin 2010-08-14 +3307341 Sherbourna Lodge Sherbourna Lodge 52.6075 -7.64528 S HSE IE M 26 0 154 Europe/Dublin 2010-08-14 +3307342 Foilacamin Foilacamin 52.64056 -7.57444 L LCTY IE M 26 0 174 Europe/Dublin 2010-08-14 +3307343 Croaghlosky Croaghlosky 55.13083 -8.01778 P PPLL IE U 06 0 151 Europe/Dublin 2010-08-14 +3307344 Kildaragh Kildaragh 55.14194 -7.98083 P PPLL IE U 06 0 313 Europe/Dublin 2010-08-14 +3307345 Gortnagap Gortnagap 52.645 -7.51472 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3307346 Crockglass Crockglass 55.14556 -7.96833 P PPLL IE U 06 0 421 Europe/Dublin 2010-08-14 +3307347 Drumshane Hill Drumshane Hill 52.69056 -7.48806 T HLL IE L 13 0 153 Europe/Dublin 2010-08-14 +3307348 Swillybrin Swillybrin 55.14944 -7.94889 P PPLL IE U 06 0 33 Europe/Dublin 2010-08-14 +3307349 Shanbally Shanbally 55.15528 -7.97667 P PPLL IE U 06 0 232 Europe/Dublin 2010-08-14 +3307350 Port Port 55.16472 -7.97778 P PPLL IE U 06 0 111 Europe/Dublin 2010-08-14 +3307351 Port Lough Port Lough 55.16028 -7.98139 H LK IE U 06 0 111 Europe/Dublin 2010-08-14 +3307352 Croaghaderry Croaghaderry 55.15111 -7.99194 T HLL IE U 06 0 226 80 Europe/Dublin 2010-08-14 +3307353 Crockatee Crockatee 55.12333 -7.955 T HLL IE U 06 0 293 118 Europe/Dublin 2010-08-14 +3307354 Crocknakilla Crocknakilla 55.16611 -7.95556 T HLL IE U 06 0 547 439 Europe/Dublin 2010-08-14 +3307355 Lough Naboll Lough Naboll 55.11861 -7.98194 H LK IE U 06 0 153 Europe/Dublin 2010-08-14 +3307356 Faymore River Faymore River 55.13417 -7.90472 H STM IE U 06 0 1 Europe/Dublin 2010-08-14 +3307357 Roosky Lough Roosky Lough 55.10611 -7.92528 H LK IE U 06 0 80 Europe/Dublin 2010-08-14 +3307358 Masiness Masiness 55.12833 -7.91306 P PPLL IE U 06 0 14 Europe/Dublin 2010-08-14 +3307359 Beaghy Hill Beaghy Hill 55.11194 -7.92806 T HLL IE U 06 0 73 Europe/Dublin 2010-08-14 +3307360 Croagh Croagh 55.10389 -7.89528 T HLL IE U 06 0 132 67 Europe/Dublin 2010-08-14 +3307361 Crockawama Crockawama 55.08806 -7.93194 T HLL IE U 06 0 241 94 Europe/Dublin 2010-08-14 +3307362 Clack Mountain Clack Mountain 55.07667 -7.9475 T HLL IE U 06 0 224 144 Europe/Dublin 2010-08-14 +3307363 Kingarrow Kingarrow 55.05917 -7.98028 T MT IE U 06 0 325 162 Europe/Dublin 2010-08-14 +3307364 Stragaddy Mountain Stragaddy Mountain 55.06917 -7.87111 T MT IE U 06 0 288 149 Europe/Dublin 2010-08-14 +3307365 Crockmore Crockmore 55.08 -7.84194 T MT IE U 06 0 335 291 Europe/Dublin 2010-08-14 +3307366 Lough Agannive Lough Agannive 55.07639 -7.96472 H LK IE U 06 0 154 Europe/Dublin 2010-08-14 +3307367 Brockagh Lough Brockagh Lough 55.08056 -7.96583 H LK IE U 06 0 154 Europe/Dublin 2010-08-14 +3307368 Lough Agarrowen Lough Agarrowen 55.08389 -7.94833 H LK IE U 06 0 147 Europe/Dublin 2010-08-14 +3307369 Carrick Lough Carrick Lough 55.11361 -7.88889 H LK IE U 06 0 56 Europe/Dublin 2010-08-14 +3307370 Derrylaggy Derrylaggy 55.09889 -7.85833 P PPLL IE U 06 0 88 Europe/Dublin 2010-08-14 +3307371 New Bridge New Bridge 55.09083 -7.87833 L LCTY IE U 06 0 78 Europe/Dublin 2010-08-14 +3307372 Cashel Mountain Cashel Mountain 55.1175 -7.87083 T HLL IE U 06 0 32 Europe/Dublin 2010-08-14 +3307373 Crockaclogher Crockaclogher 55.21111 -7.98917 T HLL IE U 06 0 70 Europe/Dublin 2010-08-14 +3307374 Coastguard Hill Coastguard Hill 55.21778 -7.985 T HLL IE U 06 0 31 Europe/Dublin 2010-08-14 +3307375 Crockshee Crockshee 55.20806 -7.97583 T HLL IE U 06 0 214 73 Europe/Dublin 2010-08-14 +3307376 Croaghnamaddy Croaghnamaddy 55.20889 -7.95444 T HLL IE U 06 0 254 53 Europe/Dublin 2010-08-14 +3307377 Duncap Isle Duncap Isle 55.21417 -7.9425 T ISLT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307378 Muntermellan Muntermellan 55.19889 -7.96139 P PPLL IE U 06 0 83 Europe/Dublin 2010-08-14 +3307379 Breaghy Head Breaghy Head 55.19111 -7.91278 T CAPE IE U 06 0 23 Europe/Dublin 2010-08-14 +3307380 Parkmore Parkmore 55.1825 -7.90639 S EST IE U 06 0 2 Europe/Dublin 2010-08-14 +3307383 Sessiagh Lough Sessiagh Lough 55.17278 -7.93361 S EST IE U 06 0 12 Europe/Dublin 2010-08-14 +3307385 Portnablagh Portnablagh Port na Blaiche,Port na Bláiche,Portnablagh,Portnablahy 55.17806 -7.92944 P PPL IE U 06 0 68 Europe/Dublin 2010-08-14 +3307388 Faugher Faugher 55.17278 -7.91667 P PPLL IE U 06 0 69 Europe/Dublin 2010-08-14 +3307389 Rinnaraspy Point Rinnaraspy Point 55.14361 -7.87472 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307390 Creevagh Creevagh 55.13889 -7.85222 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307391 Mullan Mullan 55.13194 -7.84778 P PPLL IE U 06 0 3 Europe/Dublin 2010-08-14 +3307392 Cashel Cashel 55.12611 -7.86944 P PPL IE U 06 0 14 Europe/Dublin 2010-08-14 +3307394 Lackagh River Lackagh River 55.1425 -7.86389 H STM IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307395 Lough More Lough More 55.12361 -7.9 H LK IE U 06 0 37 Europe/Dublin 2010-08-14 +3307399 Bunbin Bunbin 55.12167 -7.81194 L LCTY IE U 06 0 84 Europe/Dublin 2010-08-14 +3307400 Glenree Glenree 55.15278 -7.82639 P PPLL IE U 06 0 5 Europe/Dublin 2010-08-14 +3307401 Boggan Boggan 52.66444 -7.5125 T MT IE L 13 0 152 Europe/Dublin 2010-08-14 +3307402 Drum Irish Drum Irish 55.13861 -7.83361 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307421 Lisnalea Lisnalea 52.6725 -7.47972 L LCTY IE L 13 0 153 Europe/Dublin 2010-08-14 +3307426 Kildrinagh Cross Roads Kildrinagh Cross Roads 52.68972 -7.50306 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3307427 Goresgray House Goresgray House 52.68333 -7.51972 S HSEC IE L 13 0 152 Europe/Dublin 2010-08-14 +3307428 Newtown Newtown 52.675 -7.52667 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307429 Lisduff Bridge Lisduff Bridge 52.69056 -7.53639 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307430 Rathbeg Bridge Rathbeg Bridge 52.685 -7.59167 P PPL IE M 26 0 140 Europe/Dublin 2010-08-14 +3307443 Crossoges Crossoges 52.66417 -7.59333 L LCTY IE M 26 0 142 Europe/Dublin 2010-08-14 +3307444 Crab Crab 52.66 -7.60556 L LCTY IE M 26 0 141 Europe/Dublin 2010-08-14 +3307445 Bawncreagh Bawncreagh 52.65333 -7.62944 L LCTY IE M 26 0 141 Europe/Dublin 2010-08-14 +3307446 Clonoura Clonoura 52.64222 -7.65667 L LCTY IE M 26 0 144 Europe/Dublin 2010-08-14 +3307447 Longfordpass South Longfordpass South 52.68306 -7.65472 L LCTY IE M 26 0 136 Europe/Dublin 2010-08-14 +3307448 Newhill House Newhill House 52.65472 -7.70472 S HSEC IE M 26 0 133 Europe/Dublin 2010-08-14 +3307449 Garryclogh Garryclogh 52.68111 -7.62889 L LCTY IE M 26 0 137 Europe/Dublin 2010-08-14 +3307450 Derryvella Derryvella 52.62361 -7.66278 L LCTY IE M 26 0 148 Europe/Dublin 2010-08-14 +3307451 Littleton Lodge Littleton Lodge 52.63556 -7.72889 S HSE IE M 26 0 133 Europe/Dublin 2010-08-14 +3307452 Healaview House Healaview House 52.61 -7.74972 S HSEC IE M 26 0 141 Europe/Dublin 2010-08-14 +3307453 Liskeveen House Liskeveen House 52.62139 -7.7425 S HSEC IE M 26 0 138 Europe/Dublin 2010-08-14 +3307454 Drumgower Drumgower 52.63056 -7.77722 L LCTY IE M 26 0 130 Europe/Dublin 2010-08-14 +3307455 Ballydavia Ballydavia 52.65028 -7.74972 L LCTY IE M 26 0 123 Europe/Dublin 2010-08-14 +3307456 Galbooly Galbooly 52.65111 -7.77444 L LCTY IE M 26 0 117 Europe/Dublin 2010-08-14 +3307457 Clover River Clover River 52.685 -7.715 H STM IE M 26 0 123 Europe/Dublin 2010-08-14 +3307458 Black River Black River 52.69083 -7.72028 H STM IE M 26 0 121 Europe/Dublin 2010-08-14 +3307459 Athlumman Athlumman 52.69028 -7.74917 L LCTY IE M 26 0 114 Europe/Dublin 2010-08-14 +3307460 Killough Hill Killough Hill 52.61 -7.83583 T HLL IE M 26 0 131 Europe/Dublin 2010-08-14 +3307461 Moycarky Moycarky 52.62833 -7.81028 L LCTY IE M 26 0 124 Europe/Dublin 2010-08-14 +3307462 Maxfort House Maxfort House 52.61639 -7.7925 S HSEC IE M 26 0 141 Europe/Dublin 2010-08-14 +3307463 Galbertstown Galbertstown 52.62583 -7.85194 P PPL IE M 26 0 101 Europe/Dublin 2010-08-14 +3307464 Cloghmartin Cloghmartin 52.64194 -7.82111 L LCTY IE M 26 0 104 Europe/Dublin 2010-08-14 +3307465 Newbrook House Newbrook House 52.65361 -7.80528 S HSEC IE M 26 0 105 Europe/Dublin 2010-08-14 +3307466 Turtulla House Turtulla House 52.66361 -7.80083 S HSEC IE M 26 0 100 Europe/Dublin 2010-08-14 +3307467 Twoford Bridges Twoford Bridges 52.61444 -7.89306 P PPL IE M 26 0 79 Europe/Dublin 2010-08-14 +3307468 Glenbane Glenbane 52.6175 -7.88806 L LCTY IE M 26 0 83 Europe/Dublin 2010-08-14 +3307469 Leahanmore Leahanmore 54.99667 -7.97194 T MT IE U 06 0 445 302 Europe/Dublin 2010-08-14 +3307470 Kinnaveagh Kinnaveagh 55.01389 -7.97972 T MT IE U 06 0 217 Europe/Dublin 2010-08-14 +3307471 Binnaneane Binnaneane 55.00917 -7.88667 T HLL IE U 06 0 541 439 Europe/Dublin 2010-08-14 +3307472 Altachoastia Altachoastia 55.03167 -7.9625 T HLL IE U 06 0 224 132 Europe/Dublin 2010-08-14 +3307473 Lough Nambraddan Lough Nambraddan 55.02167 -7.96611 H LK IE U 06 0 174 Europe/Dublin 2010-08-14 +3307474 Lough Nacally Lough Nacally 55.00889 -7.90694 H LK IE U 06 0 251 Europe/Dublin 2010-08-14 +3307475 Claggan Lough Claggan Lough 54.99778 -7.92861 H LK IE U 06 0 151 Europe/Dublin 2010-08-14 +3307476 Losset Losset 55.03167 -7.88278 P PPLL IE U 06 0 162 Europe/Dublin 2010-08-14 +3307477 Glenveagh National Park Glenveagh National Park 55.00722 -8.0025 L PRK IE U 06 0 286 Europe/Dublin 2010-08-14 +3307478 Drumfin Drumfin 55.04861 -7.87361 P PPLL IE U 06 0 151 Europe/Dublin 2010-08-14 +3307479 Glenveagh Castle Glenveagh Castle 55.03694 -7.96611 S CSTL IE U 06 0 80 Europe/Dublin 2010-08-14 +3307480 Treantagh Treantagh 55 -7.84278 P PPL IE U 06 0 73 Europe/Dublin 2010-08-14 +3307481 Rathdonnel House Rathdonnel House 54.99111 -7.81417 S HSEC IE U 06 0 113 Europe/Dublin 2010-08-14 +3307482 Moneylagan Moneylagan 54.99583 -7.77222 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3307483 Legnahoory Legnahoory 55.00361 -7.80472 P PPL IE U 06 0 77 Europe/Dublin 2010-08-14 +3307484 Ellistrin Ellistrin 54.99639 -7.73 P PPL IE U 06 0 86 Europe/Dublin 2010-08-14 +3307485 Spring Vale Spring Vale 54.99528 -7.74694 S EST IE U 06 0 69 Europe/Dublin 2010-08-14 +3307486 Coolboy Coolboy 55.00361 -7.74167 S EST IE U 06 0 70 Europe/Dublin 2010-08-14 +3307487 Race End Race End 55.01083 -7.72306 P PPLL IE U 06 0 77 Europe/Dublin 2010-08-14 +3307488 Aghalenty Aghalenty 54.99 -7.68389 P PPLL IE U 06 0 136 Europe/Dublin 2010-08-14 +3307489 Ards Ards 55.02167 -7.68333 P PPL IE U 06 0 78 Europe/Dublin 2010-08-14 +3307490 Glashagh River Glashagh River 55.025 -7.695 H STM IE U 06 0 65 Europe/Dublin 2010-08-14 +3307491 Ray Ray 55.03528 -7.72167 P PPLL IE U 06 0 67 Europe/Dublin 2010-08-14 +3307492 Cottian Cottian 55.01806 -7.79639 P PPLL IE U 06 0 67 Europe/Dublin 2010-08-14 +3307493 Drumabodan Drumabodan 55.04278 -7.73833 P PPLL IE U 06 0 58 Europe/Dublin 2010-08-14 +3307494 Carn Hill Carn Hill 54.99861 -7.69333 T HLL IE U 06 0 242 159 Europe/Dublin 2010-08-14 +3307495 Termon Termon Termon 55.04917 -7.81639 P PPL IE U 06 0 149 Europe/Dublin 2010-08-14 +3307496 Fern Hill Fern Hill 55.05083 -7.74222 P PPL IE U 06 0 64 Europe/Dublin 2010-08-14 +3307497 Portleen Portleen 55.05806 -7.73083 P PPLL IE U 06 0 64 Europe/Dublin 2010-08-14 +3307498 Moyagh Moyagh 55.055 -7.70611 P PPLL IE U 06 0 55 Europe/Dublin 2010-08-14 +3307499 Moyle Hill Moyle Hill 55.06361 -7.70306 T HLL IE U 06 0 149 58 Europe/Dublin 2010-08-14 +3307500 Lough Reelan Lough Reelan 55.09167 -7.79306 H LK IE U 06 0 321 Europe/Dublin 2010-08-14 +3307501 Lough Nacreaght Lough Nacreaght 55.10389 -7.75528 H LK IE U 06 0 156 Europe/Dublin 2010-08-14 +3307502 Lough Natooey Lough Natooey 55.12028 -7.76806 H LK IE U 06 0 152 Europe/Dublin 2010-08-14 +3307503 Lough Donnell Lough Donnell 55.09361 -7.77306 H LK IE U 06 0 211 Europe/Dublin 2010-08-14 +3307504 Crockalaght Crockalaght 55.09917 -7.76333 T HLL IE U 06 0 174 Europe/Dublin 2010-08-14 +3307505 Sturrel Sturrel 55.11583 -7.73417 T HLL IE U 06 0 154 Europe/Dublin 2010-08-14 +3307506 Croaghmore Croaghmore 55.13083 -7.77639 T HLL IE U 06 0 280 157 Europe/Dublin 2010-08-14 +3307507 Croaghnadownies Croaghnadownies 55.13611 -7.7475 T HLLS IE U 06 0 297 Europe/Dublin 2010-08-14 +3307508 Ballynaworthra Ballynaworthra 55.11417 -7.80889 P PPLL IE U 06 0 123 Europe/Dublin 2010-08-14 +3307509 Stream’s Town Stream's Town 55.12917 -7.71667 P PPLL IE U 06 0 45 Europe/Dublin 2010-08-14 +3307510 Mid Town Mid Town 55.13472 -7.70222 P PPLL IE U 06 0 15 Europe/Dublin 2010-08-14 +3307511 Cocks Heath Hill Cocks Heath Hill 55.14472 -7.81056 S EST IE U 06 0 42 Europe/Dublin 2010-08-14 +3307512 Glenkeo Glenkeo 55.15694 -7.80472 P PPLL IE U 06 0 56 Europe/Dublin 2010-08-14 +3307513 Gortnabrade Gortnabrade 55.16444 -7.7725 P PPLL IE U 06 0 84 Europe/Dublin 2010-08-14 +3307514 Tullagh Tullagh 55.15472 -7.75111 P PPL IE U 06 0 77 Europe/Dublin 2010-08-14 +3307515 Bohernacrusha Bohernacrusha 52.63278 -7.895 L LCTY IE M 26 0 77 Europe/Dublin 2010-08-14 +3307516 Devlinmore Hill Devlinmore Hill 55.15222 -7.73083 T HLL IE U 06 0 133 Europe/Dublin 2010-08-14 +3307517 The Point The Point 55.17222 -7.73667 P PPLL IE U 06 0 3 Europe/Dublin 2010-08-14 +3307518 Seedagh Seedagh 55.18611 -7.73278 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307519 Ballyhearin Ballyhearin 55.19694 -7.72528 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307520 Mulroy House Mulroy House 55.1825 -7.7575 S HSEC IE U 06 0 1 Europe/Dublin 2010-08-14 +3307521 Lough Anirvere Lough Anirvere 55.14694 -7.72639 H LK IE U 06 0 90 Europe/Dublin 2010-08-14 +3307522 Sheskin Sheskin 52.68222 -7.85222 P PPL IE M 26 0 92 Europe/Dublin 2010-08-14 +3307523 Lough Nameeltoge Lough Nameeltoge 55.15806 -7.77611 H LK IE U 06 0 139 Europe/Dublin 2010-08-14 +3307524 Marks Point Marks Point 55.18194 -7.75056 T PT IE U 06 0 1 Europe/Dublin 2010-08-14 +3307525 Island Roy Island Roy 55.18917 -7.78833 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307526 Bullogfane Bay Bullogfane Bay 55.19472 -7.74278 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307527 Rosapenna Rosapenna 55.18694 -7.82361 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307528 Downings Downings Na Dunaibh,Na Dúnaibh 55.19694 -7.85222 P PPL IE IE U 06 0 37 Europe/Dublin 2010-08-14 +3307529 Crocknamona Crocknamona 55.21889 -7.84417 T HLL IE U 06 0 188 65 Europe/Dublin 2010-08-14 +3307530 Ganiamore Ganiamore 55.2075 -7.82472 T HLL IE U 06 0 207 18 Europe/Dublin 2010-08-14 +3307531 Crocknasleigh Crocknasleigh 55.23361 -7.80556 T HLL IE U 06 0 165 62 Europe/Dublin 2010-08-14 +3307532 Cloghbane Cloghbane 55.21472 -7.81472 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307533 Derrycassan Derrycassan 55.20583 -7.84778 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3307534 Larganreagh Larganreagh 55.19917 -7.83 P PPLL IE U 06 0 32 Europe/Dublin 2010-08-14 +3307535 Boyeeghter Bay Boyeeghter Bay 55.24 -7.81167 H BAY IE U 06 0 138 Europe/Dublin 2010-08-14 +3307536 Melmore Melmore 55.24194 -7.79583 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307537 Gortnalughoge Gortnalughoge 55.23417 -7.79528 P PPLL IE U 06 0 8 Europe/Dublin 2010-08-14 +3307538 Rinboy Point Rinboy Point 55.25472 -7.73083 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307539 Ballyhiernan Bay Ballyhiernan Bay 55.25139 -7.71139 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307540 Sessiagh Sessiagh 55.24 -7.73778 P PPLL IE U 06 0 25 Europe/Dublin 2010-08-14 +3307541 Cashel Glebe Cashel Glebe 55.235 -7.73889 S EST IE U 06 0 25 Europe/Dublin 2010-08-14 +3307542 Crocknalarhin Crocknalarhin 55.23111 -7.76028 T HLL IE U 06 0 101 50 Europe/Dublin 2010-08-14 +3307543 Rinboy Lough Rinboy Lough 55.24361 -7.72222 H LK IE U 06 0 1 Europe/Dublin 2010-08-14 +3307544 Lough Naglea Lough Naglea 55.21972 -7.74417 H LK IE U 06 0 80 Europe/Dublin 2010-08-14 +3307545 Lough Nagreany Lough Nagreany 55.22167 -7.76944 H LK IE U 06 0 56 Europe/Dublin 2010-08-14 +3307546 Kindrum Lough Kindrum Lough 55.23444 -7.70694 H LK IE U 06 0 47 Europe/Dublin 2010-08-14 +3307547 Trusk More Trusk More 55.21611 -7.76417 T HLL IE U 06 0 81 Europe/Dublin 2010-08-14 +3307548 Cashelmore Cashelmore 55.21583 -7.73167 T HLL IE U 06 0 151 11 Europe/Dublin 2010-08-14 +3307549 Croaghan Island Croaghan Island 55.21361 -7.7075 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307550 Crocktugeeragh Crocktugeeragh 55.20861 -7.76694 T HLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3307551 Croghan House Croghan House 55.20972 -7.69333 S HSEC IE U 06 0 70 Europe/Dublin 2010-08-14 +3307552 Rossblaney Rossblaney 55.18222 -7.69278 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307553 Glasnagh Glasnagh 55.26 -7.66861 P PPLL IE U 06 0 34 Europe/Dublin 2010-08-14 +3307554 Arryheernabin Arryheernabin 55.27 -7.64056 P PPL IE U 06 0 49 Europe/Dublin 2010-08-14 +3307555 Crockdonnelly Crockdonnelly 55.25944 -7.64778 T HLL IE U 06 0 155 140 Europe/Dublin 2010-08-14 +3307556 Magheradrumman Magheradrumman 55.24972 -7.66444 P PPL IE U 06 0 69 Europe/Dublin 2010-08-14 +3307557 Shannagh Lough Shannagh Lough 55.25417 -7.66417 H LK IE U 06 0 67 Europe/Dublin 2010-08-14 +3307558 Kinny Lough Kinny Lough 55.24472 -7.67944 H LK IE U 06 0 55 Europe/Dublin 2010-08-14 +3307559 Lough Goragh Lough Goragh 55.23722 -7.62667 H LK IE U 06 0 48 Europe/Dublin 2010-08-14 +3307560 Lough Finnaghan Lough Finnaghan 55.24889 -7.64667 H PND IE U 06 0 76 Europe/Dublin 2010-08-14 +3307561 Stookamore Stookamore 55.25417 -7.61389 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307562 Leel Point Leel Point 55.23556 -7.60806 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307563 Murren Hill Murren Hill 55.22806 -7.66278 T HLL IE U 06 0 229 91 Europe/Dublin 2010-08-14 +3307564 Dargan Hill Dargan Hill 55.21361 -7.6575 T HLL IE U 06 0 173 76 Europe/Dublin 2010-08-14 +3307565 Carryblagh Carryblagh 55.22361 -7.62306 P PPLL IE U 06 0 116 Europe/Dublin 2010-08-14 +3307566 Dooanmore Dooanmore 55.21833 -7.60639 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307567 Greenfort Greenfort 55.19861 -7.63111 S HSE IE U 06 0 2 Europe/Dublin 2010-08-14 +3307568 Carran Carran 55.18472 -7.62361 P PPLL IE U 06 0 21 Europe/Dublin 2010-08-14 +3307569 Fanad House Fanad House 55.17556 -7.64 S HSEC IE U 06 0 50 Europe/Dublin 2010-08-14 +3307570 Ballynashannagh Ballynashannagh 55.17972 -7.64333 P PPLL IE U 06 0 68 Europe/Dublin 2010-08-14 +3307571 Fort Hill Fort Hill 55.18778 -7.66722 T HLL IE U 06 0 72 75 Europe/Dublin 2010-08-14 +3307572 Cloghfin Cloghfin 55.18444 -7.65944 P PPLL IE U 06 0 89 Europe/Dublin 2010-08-14 +3307573 The Long Moor The Long Moor 55.18 -7.65194 H MOOR IE U 06 0 100 Europe/Dublin 2010-08-14 +3307574 Bunnaton Bunnaton 55.17306 -7.58083 P PPLL IE U 06 0 21 Europe/Dublin 2010-08-14 +3307575 Upper Town Upper Town 55.15972 -7.6625 P PPL IE U 06 0 110 Europe/Dublin 2010-08-14 +3307576 Milltown Milltown 55.16 -7.59 P PPL IE U 06 0 69 Europe/Dublin 2010-08-14 +3307577 Creeve Hill Creeve Hill 55.14444 -7.59722 T HLL IE U 06 0 114 Europe/Dublin 2010-08-14 +3307578 Meskanmeave Meskanmeave 55.13306 -7.62111 T HLL IE U 06 0 272 190 Europe/Dublin 2010-08-14 +3307579 Ranny Point Ranny Point 55.13306 -7.68361 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307580 Dunmore Dunmore 55.12694 -7.65472 S EST IE U 06 0 98 Europe/Dublin 2010-08-14 +3307581 Binnacaghig Binnacaghig 55.12056 -7.63028 T HLL IE U 06 0 212 Europe/Dublin 2010-08-14 +3307582 Lurganboy Lurganboy 55.12333 -7.58833 P PPL IE U 06 0 110 Europe/Dublin 2010-08-14 +3307583 Lehardan Lehardan 55.14306 -7.56444 P PPL IE U 06 0 63 Europe/Dublin 2010-08-14 +3307584 Carrodoan Carrodoan 55.12944 -7.54528 L LCTY IE U 06 0 58 Europe/Dublin 2010-08-14 +3307585 New Bridge Bay New Bridge Bay 55.14333 -7.5375 H COVE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307586 Killygarvan Point Killygarvan Point 55.1225 -7.51944 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307587 Drumhallagh House Drumhallagh House 55.115 -7.53528 S HSEC IE U 06 0 24 Europe/Dublin 2010-08-14 +3307588 Fort Royal Fort Royal 55.10333 -7.52833 S FT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307589 Rathmullan House Rathmullan House 55.10056 -7.53139 S HSEC IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307590 Holymount Holymount 55.08806 -7.56417 S EST IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307591 Ray Ray 55.07417 -7.59722 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307592 Ballykenny Point Ballykenny Point 55.06306 -7.59694 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307593 Old Town Old Town 55.07611 -7.61389 P PPLL IE U 06 0 38 Europe/Dublin 2010-08-14 +3307594 Drumacloghan Drumacloghan 55.07611 -7.63889 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3307595 Loughros Loughros 55.07306 -7.67167 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3307596 Garrygort Garrygort 55.10139 -7.67278 P PPLL IE U 06 0 133 Europe/Dublin 2010-08-14 +3307597 Ballyboe Ballyboe 55.11 -7.66028 P PPL IE U 06 0 136 Europe/Dublin 2010-08-14 +3307598 Columbkille Lough Columbkille Lough 55.09 -7.67583 H LK IE U 06 0 86 Europe/Dublin 2010-08-14 +3307599 Crockmore Crockmore 55.10083 -7.65778 T HLL IE U 06 0 249 161 Europe/Dublin 2010-08-14 +3307600 Crocknadroleen Crocknadroleen 55.08611 -7.65 T HLL IE U 06 0 221 137 Europe/Dublin 2010-08-14 +3307601 Gortaway Gortaway 55.03417 -7.58833 P PPL IE U 06 0 6 Europe/Dublin 2010-08-14 +3307602 Claragh Claragh 55.02917 -7.68667 P PPL IE U 06 0 51 Europe/Dublin 2010-08-14 +3307603 Clooney Clooney 55.05472 -7.63806 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307604 Glencarn Glencarn 55.04417 -7.65667 P PPLL IE U 06 0 19 Europe/Dublin 2010-08-14 +3307605 Glen Glen 55.04917 -7.67056 P PPLL IE U 06 0 41 Europe/Dublin 2010-08-14 +3307606 Shellbrook Shellbrook 55.0225 -7.58333 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307607 Aghangaddy Aghangaddy 55.01917 -7.6575 L LCTY IE U 06 0 70 Europe/Dublin 2010-08-14 +3307608 Lough Nakey Lough Nakey 55.07083 -7.68611 P PPLL IE U 06 0 71 Europe/Dublin 2010-08-14 +3307609 Aughnish Isle Aughnish Isle 55.05194 -7.59806 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307610 Castle Shanaghan Castle Shanaghan 54.99667 -7.65667 S EST IE U 06 0 60 Europe/Dublin 2010-08-14 +3307611 Ballybawn Ballybawn 54.99056 -7.58694 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3307612 Ballybegly Ballybegly 54.99056 -7.58694 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3307613 Slate Hill Slate Hill 54.99639 -7.56639 T HLL IE U 06 0 50 Europe/Dublin 2010-08-14 +3307614 Mason Lodge Mason Lodge 54.98611 -7.53 S HSE IE U 06 0 46 Europe/Dublin 2010-08-14 +3307615 Killyverry Killyverry 54.99194 -7.54194 P PPLL IE U 06 0 39 Europe/Dublin 2010-08-14 +3307616 Gortlush Gortlush 54.99667 -7.46083 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3307617 Roosky Roosky 54.99222 -7.47917 P PPL IE U 06 0 59 Europe/Dublin 2010-08-14 +3307618 Drumboy Drumboy 55.01556 -7.5375 P PPLL IE U 06 0 7 Europe/Dublin 2010-08-14 +3307619 Bogay Hill Bogay Hill 55.00389 -7.44889 T HLL IE U 06 0 194 109 Europe/Dublin 2010-08-14 +3307620 Bohullion Bohullion 55.01611 -7.47056 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3307621 Bogay Bogay 54.99444 -7.43111 P PPL IE U 06 0 94 Europe/Dublin 2010-08-14 +3307622 Ardnamoyle Ardnamoyle 55.00861 -7.42639 T HLL IE U 06 0 195 124 Europe/Dublin 2010-08-14 +3307623 Holywell Hill Holywell Hill Holywell Hill 54.99944 -7.40333 T HLL IE GB,IE 00 0 859 35 Europe/Dublin 2009-03-07 +3307624 Grianan of Aileach Grianan of Aileach Grianan Ailigh,Grianan of Aileach 55.02361 -7.42694 S ANS IE IE U 06 0 102 Europe/Dublin 2010-08-14 +3307625 Manner’s Town Manner's Town 55.02139 -7.40444 P PPLL IE U 06 0 31 Europe/Dublin 2010-08-14 +3307626 Cornamount Cornamount 55.0225 -7.44361 T HLL IE U 06 0 202 100 Europe/Dublin 2010-08-14 +3307627 Milltown Milltown 55.02333 -7.47611 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3307628 Castle Hill Castle Hill 55.01944 -7.50167 T HLL IE U 06 0 14 Europe/Dublin 2010-08-14 +3307629 Finwall Hill Finwall Hill 55.0325 -7.50667 T HLL IE U 06 0 69 6 Europe/Dublin 2010-08-14 +3307630 Drumgowan Drumgowan 55.03972 -7.48583 P PPLL IE U 06 0 6 Europe/Dublin 2010-08-14 +3307631 Speenoge Speenoge 55.03944 -7.42833 P PPL IE U 06 0 76 Europe/Dublin 2010-08-14 +3307632 Farland Point Farland Point 55.04556 -7.48167 T PT IE U 06 0 1 Europe/Dublin 2010-08-14 +3307633 Bunnamayne Bunnamayne 55.03028 -7.38861 P PPLL IE U 06 0 37 Europe/Dublin 2010-08-14 +3307634 Drish Bridge Drish Bridge 52.67694 -7.77889 P PPL IE M 26 0 105 Europe/Dublin 2010-08-14 +3307635 Rathmanna House Rathmanna House 52.67528 -7.75778 S HSEC IE M 26 0 114 Europe/Dublin 2010-08-14 +3307636 Bootstown Bootstown 52.69361 -7.38722 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307637 Wellbrook House Wellbrook House 52.71917 -7.37194 S HSEC IE L 13 0 147 Europe/Dublin 2010-08-14 +3307638 Arigna River Arigna River 52.72417 -7.33278 H STM IE L 13 0 68 Europe/Dublin 2010-08-14 +3307639 Nuenna River Nuenna River 52.73056 -7.365 H STM IE L 13 0 101 Europe/Dublin 2010-08-14 +3307640 Arigna Bridge Arigna Bridge 52.72694 -7.37111 P PPL IE L 13 0 88 Europe/Dublin 2010-08-14 +3307641 Ballycarran Ballycarran 52.72806 -7.32778 L LCTY IE L 13 0 70 Europe/Dublin 2010-08-14 +3307642 Littlefield House Littlefield House 52.73278 -7.31056 S HSEC IE L 13 0 76 Europe/Dublin 2010-08-14 +3307643 Gragara Gragara 52.74028 -7.28333 L LCTY IE L 13 0 79 Europe/Dublin 2010-08-14 +3307644 Cooleeshal Cooleeshal 52.72556 -7.35528 L LCTY IE L 13 0 87 Europe/Dublin 2010-08-14 +3307645 Clintstown Clintstown 52.7375 -7.33583 L LCTY IE L 13 0 71 Europe/Dublin 2010-08-14 +3307646 Crowhill Lodge Crowhill Lodge 52.73861 -7.34667 S HSE IE L 13 0 70 Europe/Dublin 2010-08-14 +3307647 Swifte’s Heath Swifte's Heath 52.74111 -7.31361 S EST IE L 13 0 82 Europe/Dublin 2010-08-14 +3307648 George’s Tree George's Tree 52.75139 -7.32167 S EST IE L 13 0 86 Europe/Dublin 2010-08-14 +3307649 Inchbeg Inchbeg 52.74667 -7.36083 L LCTY IE L 13 0 72 Europe/Dublin 2010-08-14 +3307650 Castlequarter Castlequarter 55.05444 -7.49611 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307651 Baylet Baylet 55.05472 -7.46167 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307652 Moress Moress 55.07306 -7.48278 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307653 Strahack Strahack 55.07694 -7.48861 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307654 Binalt Binalt 55.07083 -7.52972 P PPLL IE U 06 0 28 Europe/Dublin 2010-08-14 +3307655 Drum Drum 55.06056 -7.52028 P PPLL IE U 06 0 30 Europe/Dublin 2010-08-14 +3307656 Inch Top Inch Top 55.07361 -7.51111 T HLL IE U 06 0 223 84 Europe/Dublin 2010-08-14 +3307657 Inch Inch An Inis,Inch 55.07028 -7.48056 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307658 Carnaghan Carnaghan 55.05944 -7.49278 P PPL IE U 06 0 23 Europe/Dublin 2010-08-14 +3307659 Tieveborne Tieveborne 55.06444 -7.42917 P PPL IE U 06 0 7 Europe/Dublin 2010-08-14 +3307660 Asdevlin Hill Asdevlin Hill 55.07917 -7.39333 T SPUR IE U 06 0 384 285 Europe/Dublin 2010-08-14 +3307661 Cashel Hill Cashel Hill 55.07028 -7.41722 T HLL IE U 06 0 196 96 Europe/Dublin 2010-08-14 +3307662 Carrick Hill Carrick Hill 55.09 -7.42194 T HLL IE U 06 0 228 153 Europe/Dublin 2010-08-14 +3307663 Lagnadaraugh Lagnadaraugh 55.05083 -7.38667 P PPLL IE U 06 0 11 Europe/Dublin 2010-08-14 +3307664 Trooperstown Trooperstown 55.06028 -7.385 P PPLL IE U 06 0 11 Europe/Dublin 2010-08-14 +3307665 Drumnacross Drumnacross 55.05889 -7.34889 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3307666 Lenamore Lenamore 55.05444 -7.31333 P PPL IE U 06 0 4 Europe/Dublin 2010-08-14 +3307667 Birdstown House Birdstown House 55.06861 -7.35639 S HSEC IE U 06 0 33 Europe/Dublin 2010-08-14 +3307668 Thompsons Town Thompsons Town 55.07806 -7.30611 P PPL IE U 06 0 119 Europe/Dublin 2010-08-14 +3307669 Burdoon Burdoon 55.08694 -7.305 P PPLL IE U 06 0 170 Europe/Dublin 2010-08-14 +3307670 Nadaphreaghane Nadaphreaghane 55.08833 -7.33778 T SPUR IE U 06 0 381 222 Europe/Dublin 2010-08-14 +3307671 Granias Gap Granias Gap 55.09556 -7.32639 T GAP IE U 06 0 286 Europe/Dublin 2010-08-14 +3307672 Ardmore Ardmore 55.07972 -7.2775 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3307673 Ture Ture 55.08556 -7.24778 P PPLL IE U 06 0 2 Europe/Dublin 2010-08-14 +3307674 Lackan Point Lackan Point 55.08389 -7.49056 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307675 Collan Hill Collan Hill 55.09528 -7.46694 T HLL IE U 06 0 83 Europe/Dublin 2010-08-14 +3307676 Roosky Roosky 55.09333 -7.43528 P PPLL IE U 06 0 192 Europe/Dublin 2010-08-14 +3307677 Luddan Luddan 55.11611 -7.45111 P PPLL IE U 06 0 127 Europe/Dublin 2010-08-14 +3307678 Hill Head Hill Head 55.12139 -7.42583 P PPLL IE U 06 0 83 Europe/Dublin 2010-08-14 +3307679 Tullydush Tullydush 55.1175 -7.39778 P PPL IE U 06 0 112 Europe/Dublin 2010-08-14 +3307680 Sorne Hill Sorne Hill 55.13 -7.34417 T HLL IE U 06 0 268 212 Europe/Dublin 2010-08-14 +3307681 Clonglash Clonglash 55.1325 -7.40861 P PPLL IE U 06 0 80 Europe/Dublin 2010-08-14 +3307682 Clonblesk Clonblesk 55.14556 -7.42556 P PPLL IE U 06 0 100 Europe/Dublin 2010-08-14 +3307683 Aught Upper Aught Upper 55.10722 -7.25222 P PPLL IE U 06 0 105 Europe/Dublin 2010-08-14 +3307684 Meenyanly Meenyanly 55.11917 -7.32583 L LCTY IE U 06 0 257 Europe/Dublin 2010-08-14 +3307685 Glackmore Hill Glackmore Hill 55.12583 -7.27917 T MT IE U 06 0 394 304 Europe/Dublin 2010-08-14 +3307686 Crocknacraddy Crocknacraddy 55.13083 -7.29444 T MT IE U 06 0 360 298 Europe/Dublin 2010-08-14 +3307687 Magheralahan Magheralahan 55.13583 -7.2275 P PPLL IE U 06 0 150 Europe/Dublin 2010-08-14 +3307688 Leamacrossan Hill Leamacrossan Hill 55.14222 -7.25778 T MT IE U 06 0 379 251 Europe/Dublin 2010-08-14 +3307689 Srath Srath 55.14583 -7.28722 P PPLL IE U 06 0 259 Europe/Dublin 2010-08-14 +3307690 The Rock The Rock 55.14778 -7.30389 T RK IE U 06 0 260 185 Europe/Dublin 2010-08-14 +3307691 Illies Illies 55.14833 -7.33194 P PPL IE U 06 0 150 Europe/Dublin 2010-08-14 +3307692 Illies Hill Illies Hill 55.15667 -7.33139 T HLL IE U 06 0 243 142 Europe/Dublin 2010-08-14 +3307693 Turk Turk 55.16667 -7.32194 P PPLL IE U 06 0 205 Europe/Dublin 2010-08-14 +3307694 Crockayeeny Crockayeeny 55.16944 -7.25833 T HLL IE U 06 0 251 203 Europe/Dublin 2010-08-14 +3307695 Trusk More Trusk More 55.19 -7.27917 T HLL IE U 06 0 303 153 Europe/Dublin 2010-08-14 +3307696 Grinlieve Grinlieve 55.19139 -7.2325 T MT IE U 06 0 375 263 Europe/Dublin 2010-08-14 +3307697 Stranagappoge Stranagappoge 55.17472 -7.23722 P PPLL IE U 06 0 207 Europe/Dublin 2010-08-14 +3307698 Meenyollan Meenyollan 55.20278 -7.28167 P PPLL IE U 06 0 153 Europe/Dublin 2010-08-14 +3307699 Whitefield Whitefield 55.19556 -7.25444 P PPLL IE U 06 0 165 Europe/Dublin 2010-08-14 +3307700 Glentogher Glentogher 55.21028 -7.25889 P PPL IE U 06 0 124 Europe/Dublin 2010-08-14 +3307701 Kinnagoe Kinnagoe 55.16361 -7.40361 P PPL IE U 06 0 96 Europe/Dublin 2010-08-14 +3307702 Crocknamaddy Crocknamaddy 55.17139 -7.37444 T MT IE U 06 0 381 278 Europe/Dublin 2010-08-14 +3307703 Fallask Fallask 55.17972 -7.40694 P PPL IE U 06 0 115 Europe/Dublin 2010-08-14 +3307704 Meenaward Meenaward 55.18833 -7.41889 P PPLL IE U 06 0 134 Europe/Dublin 2010-08-14 +3307705 Cock Hill Cock Hill 55.15 -7.44472 P PPL IE U 06 0 51 Europe/Dublin 2010-08-14 +3307706 Umrycam Umrycam 55.16028 -7.4325 P PPLL IE U 06 0 56 Europe/Dublin 2010-08-14 +3307707 Garrynabullogy Garrynabullogy 55.16056 -7.47194 P PPL IE U 06 0 65 Europe/Dublin 2010-08-14 +3307708 Beam Beam 55.19778 -7.435 T HLL IE U 06 0 246 Europe/Dublin 2010-08-14 +3307709 Cashelnacor River Cashelnacor River 55.15694 -7.43778 H STM IE U 06 0 78 Europe/Dublin 2010-08-14 +3307710 Liafin Hill Liafin Hill 55.18028 -7.47361 T HLL IE U 06 0 132 Europe/Dublin 2010-08-14 +3307711 Old Mountain Old Mountain 55.19806 -7.49361 P PPLL IE U 06 0 148 Europe/Dublin 2010-08-14 +3307712 Magherabane Magherabane 55.20556 -7.51722 P PPLL IE U 06 0 119 Europe/Dublin 2010-08-14 +3307713 Mullagharry Mullagharry 55.20083 -7.52722 P PPLL IE U 06 0 90 Europe/Dublin 2010-08-14 +3307714 Muineagh Muineagh 55.19417 -7.53028 P PPLL IE U 06 0 41 Europe/Dublin 2010-08-14 +3307715 Carha Carha 55.21139 -7.51889 P PPLL IE U 06 0 188 Europe/Dublin 2010-08-14 +3307716 Crummies Bay Crummies Bay 55.20333 -7.54722 H COVE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307717 Owenerk River Owenerk River 55.20278 -7.53944 H STM IE U 06 0 54 Europe/Dublin 2010-08-14 +3307718 Lough Doo Lough Doo 55.20139 -7.43611 H LK IE U 06 0 287 Europe/Dublin 2010-08-14 +3307719 Glasmullan Glasmullan 55.21444 -7.41222 P PPLL IE U 06 0 160 Europe/Dublin 2010-08-14 +3307720 Glebe Glebe 55.18194 -7.50861 S EST IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307721 Magheraboy Magheraboy 55.21139 -7.39389 P PPLL IE U 06 0 158 Europe/Dublin 2010-08-14 +3307722 Barnan More Barnan More 55.21417 -7.37917 T MT IE U 06 0 320 269 Europe/Dublin 2010-08-14 +3307723 Ballintlieve Hill Ballintlieve Hill 55.22139 -7.39194 T HLL IE U 06 0 220 153 Europe/Dublin 2010-08-14 +3307724 Lough Naminn Lough Naminn 55.22194 -7.37611 H LK IE U 06 0 223 Europe/Dublin 2010-08-14 +3307725 Cloghglass Cloghglass 55.2325 -7.40333 P PPLL IE U 06 0 131 Europe/Dublin 2010-08-14 +3307726 Effickmore Effickmore 55.23278 -7.45667 P PPLL IE U 06 0 275 Europe/Dublin 2010-08-14 +3307727 Meendoran Meendoran 55.23806 -7.38306 P PPLL IE U 06 0 103 Europe/Dublin 2010-08-14 +3307728 Cloontagh Cloontagh 55.24861 -7.37056 P PPLL IE U 06 0 105 Europe/Dublin 2010-08-14 +3307729 Altahalla Altahalla 55.24639 -7.40778 P PPLL IE U 06 0 79 Europe/Dublin 2010-08-14 +3307730 Cloghfin Cloghfin 55.24917 -7.43472 P PPLL IE U 06 0 139 Europe/Dublin 2010-08-14 +3307731 Ballyhallan Ballyhallan 55.25944 -7.42389 P PPLL IE U 06 0 53 Europe/Dublin 2010-08-14 +3307732 Magheramore Magheramore 55.25833 -7.35889 P PPLL IE U 06 0 135 Europe/Dublin 2010-08-14 +3307733 Straid Straid 55.265 -7.42861 P PPL IE U 06 0 54 Europe/Dublin 2010-08-14 +3307734 Ballyhallan River Ballyhallan River 55.26222 -7.41472 H STM IE U 06 0 58 Europe/Dublin 2010-08-14 +3307735 Lenankeel Lenankeel 55.24056 -7.51611 P PPL IE U 06 0 172 Europe/Dublin 2010-08-14 +3307736 Mamore Hill Mamore Hill 55.23778 -7.49222 T MT IE U 06 0 420 269 Europe/Dublin 2010-08-14 +3307737 Slievekeeragh Slievekeeragh 55.24306 -7.46222 T SPUR IE U 06 0 271 Europe/Dublin 2010-08-14 +3307738 Claggan Claggan 55.26389 -7.48722 P PPL IE U 06 0 59 Europe/Dublin 2010-08-14 +3307739 Dunaff Hill Dunaff Hill 55.27833 -7.51528 T HLL IE U 06 0 210 82 Europe/Dublin 2010-08-14 +3307740 Lenan Lenan 55.25056 -7.51583 P PPLL IE U 06 0 50 Europe/Dublin 2010-08-14 +3307741 Glen House Glen House 55.26889 -7.43611 S HSEC IE U 06 0 40 Europe/Dublin 2010-08-14 +3307742 Falprobog Falprobog 55.28083 -7.49917 P PPLL IE U 06 0 10 Europe/Dublin 2010-08-14 +3307743 Rockstown Harbour Rockstown Harbour 55.28583 -7.47583 H BAY IE U 06 0 -9999 Europe/Dublin 1998-03-13 +3307744 Kindrohid Kindrohid 55.27806 -7.46444 P PPL IE U 06 0 44 Europe/Dublin 2010-08-14 +3307745 Bunacrick Bunacrick 55.27694 -7.42444 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3307746 Tanderagee Tanderagee 55.27139 -7.41611 T HLL IE U 06 0 109 74 Europe/Dublin 2010-08-14 +3307747 Cloghorn Cloghorn 55.28528 -7.36917 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3307748 Crockaughrim Crockaughrim 55.27361 -7.37583 T HLL IE U 06 0 276 142 Europe/Dublin 2010-08-14 +3307749 Coolcross Hill Coolcross Hill 55.26861 -7.36556 T HLL IE U 06 0 291 138 Europe/Dublin 2010-08-14 +3307750 Straths Bridge Straths Bridge 55.27417 -7.31722 P PPLL IE U 06 0 40 Europe/Dublin 2010-08-14 +3307751 Craigawillin Craigawillin 55.27917 -7.31444 P PPLL IE U 06 0 2 Europe/Dublin 2010-08-14 +3307752 Cabadooey Hill Cabadooey Hill 55.25556 -7.3275 T HLL IE U 06 0 191 124 Europe/Dublin 2010-08-14 +3307753 Glasalt Glen Glasalt Glen 55.26389 -7.30944 T VAL IE U 06 0 78 Europe/Dublin 2010-08-14 +3307754 Balloor Balloor 55.29306 -7.33611 P PPLL IE U 06 0 116 Europe/Dublin 2010-08-14 +3307755 Fegart Fegart 55.29278 -7.31056 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307756 Claragh Claragh 55.30139 -7.33778 P PPLL IE U 06 0 52 Europe/Dublin 2010-08-14 +3307757 Skehan Skehan 55.30778 -7.3575 T HLL IE U 06 0 78 41 Europe/Dublin 2010-08-14 +3307758 Lagacurry Lagacurry 55.31 -7.33972 P PPLL IE U 06 0 3 Europe/Dublin 2010-08-14 +3307759 Cashel Cashel 55.22333 -7.27444 P PPLL IE U 06 0 89 Europe/Dublin 2010-08-14 +3307760 Tullymore Tullymore 55.21139 -7.30917 T MT IE U 06 0 352 269 Europe/Dublin 2010-08-14 +3307761 Golan Bridge Golan Bridge 55.23139 -7.33361 L LCTY IE U 06 0 186 Europe/Dublin 2010-08-14 +3307762 Inishnaneill Inishnaneill 55.23306 -7.27639 P PPLL IE U 06 0 95 Europe/Dublin 2010-08-14 +3307763 Hollymount Hollymount 55.23611 -7.23444 S EST IE U 06 0 80 Europe/Dublin 2010-08-14 +3307764 Craigtown Craigtown 55.24167 -7.22917 P PPLL IE U 06 0 79 Europe/Dublin 2010-08-14 +3307765 Crocknakilladerry Crocknakilladerry 55.24694 -7.29278 T HLL IE U 06 0 200 146 Europe/Dublin 2010-08-14 +3307766 Tirnaleague House Tirnaleague House 55.25722 -7.27556 S HSEC IE U 06 0 64 Europe/Dublin 2010-08-14 +3307767 Glentogher River Glentogher River 55.24944 -7.26444 H STM IE U 06 0 55 Europe/Dublin 2010-08-14 +3307768 Drumaville Drumaville 55.27833 -7.23694 P PPLL IE U 06 0 35 Europe/Dublin 2010-08-14 +3307772 Cracknagh Cracknagh 55.28889 -7.22028 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3307773 Fahan Fahan 55.28306 -7.22694 P PPLL IE U 06 0 37 Europe/Dublin 2010-08-14 +3307774 Doaghmore Doaghmore 55.30111 -7.31778 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307775 Goorey Lodge Goorey Lodge 55.30861 -7.30667 S HSE IE U 06 0 37 Europe/Dublin 2010-08-14 +3307776 Ballycramey Ballycramey 55.31167 -7.31167 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307777 Ballagh Ballagh 55.31611 -7.29778 P PPLL IE U 06 0 61 Europe/Dublin 2010-08-14 +3307778 Glacknabrade Glacknabrade 55.31472 -7.27667 P PPL IE U 06 0 75 Europe/Dublin 2010-08-14 +3307779 Knockmanagh Knockmanagh 55.32028 -7.25306 T HLL IE U 06 0 185 76 Europe/Dublin 2010-08-14 +3307780 Crockroow Crockroow 55.32583 -7.29361 T HLL IE U 06 0 195 76 Europe/Dublin 2010-08-14 +3307781 Cranny Hill Cranny Hill 55.31889 -7.31722 T HLL IE U 06 0 147 33 Europe/Dublin 2010-08-14 +3307782 Soldiers Hill Soldiers Hill 55.33 -7.33194 T HLL IE U 06 0 176 68 Europe/Dublin 2010-08-14 +3307783 Sheenmore Sheenmore 55.33667 -7.33472 T HLL IE U 06 0 165 73 Europe/Dublin 2010-08-14 +3307784 Dunargus Dunargus 55.335 -7.34528 L LCTY IE U 06 0 47 Europe/Dublin 2010-08-14 +3307785 Mossedge Mossedge 55.32917 -7.30972 P PPLL IE U 06 0 67 Europe/Dublin 2010-08-14 +3307786 Umgall Umgall 55.33278 -7.29944 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3307787 Crockea Crockea 55.31639 -7.21972 T HLL IE U 06 0 196 77 Europe/Dublin 2010-08-14 +3307788 Crockglacknakinnoge Crockglacknakinnoge 55.34639 -7.23972 T HLL IE U 06 0 42 Europe/Dublin 2010-08-14 +3307789 Crockalough Crockalough 55.35528 -7.27444 T HLL IE U 06 0 284 129 Europe/Dublin 2010-08-14 +3307790 Meedanmore Meedanmore 55.34778 -7.28944 T HLL IE U 06 0 189 111 Europe/Dublin 2010-08-14 +3307791 Keenagh Keenagh 55.345 -7.31444 P PPL IE U 06 0 51 Europe/Dublin 2010-08-14 +3307792 Bree Bree 55.34722 -7.30639 P PPLL IE U 06 0 56 Europe/Dublin 2010-08-14 +3307793 Rossnabartan Rossnabartan 55.37639 -7.32694 T RKS IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307794 Slievebane Slievebane 55.36917 -7.3375 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3307795 Ballygorman Ballygorman 55.3575 -7.31167 P PPL IE U 06 0 35 Europe/Dublin 2010-08-14 +3307796 Esky Bay Esky Bay 55.37583 -7.345 H BAY IE U 06 0 1 Europe/Dublin 2010-08-14 +3307797 White Strand Bay White Strand Bay 55.35722 -7.35278 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307798 Culoort Culoort 55.34944 -7.345 P PPLL IE U 06 0 61 Europe/Dublin 2010-08-14 +3307799 Ardmalin Ardmalin 55.36639 -7.36028 T HLL IE U 06 0 362 -9999 Europe/Dublin 2010-08-14 +3307800 Ballyhillin Ballyhillin 55.37694 -7.37056 P PPL IE U 06 0 6 Europe/Dublin 2010-08-14 +3307801 Ineuran Bay Ineuran Bay 55.37278 -7.39167 H BAY IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307802 Keenagh River Keenagh River 55.35306 -7.34778 H BAY IE U 06 0 33 Europe/Dublin 2010-08-14 +3307803 Beechhill House Beechhill House 52.76028 -7.37139 S HSEC IE L 13 0 78 Europe/Dublin 2010-08-14 +3307804 Brookville House Brookville House 52.765 -7.38472 S HSEC IE L 13 0 95 Europe/Dublin 2010-08-14 +3307805 Oldtown Oldtown 52.77083 -7.3275 L LCTY IE L 13 0 79 Europe/Dublin 2010-08-14 +3307806 Connahy Connahy 52.75972 -7.30444 L LCTY IE L 13 0 127 Europe/Dublin 2010-08-14 +3307807 Barrack Village Barrack Village 52.76944 -7.27111 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3307808 Clontubbrid Clontubbrid 52.76111 -7.41667 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307809 Ballyring Ballyring 52.77194 -7.42361 T HLL IE L 13 0 163 Europe/Dublin 2010-08-14 +3307812 Balleen Balleen 52.75306 -7.4375 L LCTY IE L 13 0 148 Europe/Dublin 2010-08-14 +3307813 Elmwood Lodge Elmwood Lodge 52.74111 -7.41889 S HSE IE L 13 0 142 Europe/Dublin 2010-08-14 +3307814 Kilrush House Kilrush House 52.72944 -7.43806 S HSEC IE L 13 0 150 Europe/Dublin 2010-08-14 +3307815 Ballytarkin Ballytarkin 52.72361 -7.44833 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307816 Kyleballyhamoe Kyleballyhamoe 52.71833 -7.46472 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307817 Clomantagh Clomantagh 52.72389 -7.46889 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3307818 Balief House Balief House 52.72139 -7.52028 S HSEC IE L 13 0 145 Europe/Dublin 2010-08-14 +3307819 Balief Cross Roads Balief Cross Roads 52.72472 -7.52222 P PPL IE L 13 0 145 Europe/Dublin 2010-08-14 +3307820 Killoshulan Killoshulan 52.74389 -7.48833 L LCTY IE L 13 0 164 Europe/Dublin 2010-08-14 +3307821 Donaghmore Donaghmore 52.74417 -7.53417 L LCTY IE L 13 0 154 Europe/Dublin 2010-08-14 +3307822 Sevensisters Sevensisters 52.73472 -7.53056 P PPL IE L 13 0 155 Europe/Dublin 2010-08-14 +3307823 Spahill Spahill 52.7525 -7.50278 L LCTY IE L 13 0 205 Europe/Dublin 2010-08-14 +3307824 Tubbrid Tubbrid 52.70889 -7.48972 L LCTY IE L 13 0 151 Europe/Dublin 2010-08-14 +3307825 Forehill Forehill 52.70167 -7.52722 L LCTY IE L 13 0 147 Europe/Dublin 2010-08-14 +3307826 Borrismore Borrismore 52.71972 -7.55472 L LCTY IE L 13 0 138 Europe/Dublin 2010-08-14 +3307827 Foyle Bridge Foyle Bridge 52.76167 -7.45361 P PPL IE L 13 0 152 Europe/Dublin 2010-08-14 +3307828 Ballygowney Ballygowney 52.77806 -7.45917 L LCTY IE L 13 0 200 Europe/Dublin 2010-08-14 +3307829 Gorteennamuck Gorteennamuck 52.77417 -7.49556 L LCTY IE L 13 0 161 Europe/Dublin 2010-08-14 +3307830 Gattabaun Gattabaun 52.76694 -7.47083 P PPL IE L 13 0 166 Europe/Dublin 2010-08-14 +3307831 Ballyspellan Ballyspellan 52.76306 -7.52972 S EST IE L 13 0 211 Europe/Dublin 2010-08-14 +3307832 Cross of Beggar Cross of Beggar 52.77667 -7.53278 P PPL IE L 13 0 149 Europe/Dublin 2010-08-14 +3307833 Tullanvoolty Tullanvoolty 52.77306 -7.57222 L LCTY IE L 13 0 150 Europe/Dublin 2010-08-14 +3307834 Borrismore House Borrismore House 52.72944 -7.55972 S HSEC IE L 13 0 139 Europe/Dublin 2010-08-14 +3307835 Belle Vue Belle Vue 52.71417 -7.55583 L LCTY IE L 13 0 141 Europe/Dublin 2010-08-14 +3307836 Tincashel Cross Roads Tincashel Cross Roads 52.70722 -7.55889 P PPL IE L 13 0 146 Europe/Dublin 2010-08-14 +3307837 Derryfadda Derryfadda 52.74222 -7.65472 L LCTY IE M 26 0 137 Europe/Dublin 2010-08-14 +3307838 Derrygreenagh Derrygreenagh 52.75472 -7.68028 L LCTY IE M 26 0 136 Europe/Dublin 2010-08-14 +3307839 Derryville Derryville 52.76583 -7.67667 L LCTY IE M 26 0 139 Europe/Dublin 2010-08-14 +3307840 Bruckana Bruckana 52.77361 -7.64222 P PPL IE L 13 0 145 Europe/Dublin 2010-08-14 +3307841 Darby’s Hole Darby's Hole 54.47028 -8.46639 H COVE IE C 25 0 1 Europe/Dublin 2010-08-14 +3307842 Redbrae Redbrae 54.46528 -8.36861 P PPLL IE C 14 0 1 Europe/Dublin 2010-08-14 +3307843 Bundrowe’s Bridge Bundrowe's Bridge 54.47194 -8.32028 L LCTY IE C 14 0 1 Europe/Dublin 2010-08-14 +3307844 Rochfort Lodge Rochfort Lodge 54.47722 -8.31 S HSE IE U 06 0 1 Europe/Dublin 2010-08-14 +3307845 Rock of Bundoran Rock of Bundoran 54.4675 -8.28 T RK IE U 06 0 1 Europe/Dublin 2010-08-14 +3307846 Rathglass Rathglass 54.47333 -8.23417 P PPLL IE U 06 0 20 Europe/Dublin 2010-08-14 +3307847 Aughrus Point Aughrus Point 54.48694 -8.28361 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3307848 Fairies Bridge Fairies Bridge 54.48972 -8.275 L LCTY IE U 06 0 1 Europe/Dublin 2010-08-14 +3307849 Finner Camp Finner Camp 54.49389 -8.23306 S CMP IE U 06 0 3 Europe/Dublin 2010-08-14 +3307850 Tullan Strand Tullan Strand 54.49833 -8.26528 T BCH IE U 06 0 1 Europe/Dublin 2010-08-14 +3307851 Dunmuckrum Dunmuckrum 54.48611 -8.21472 P PPLL IE U 06 0 50 Europe/Dublin 2010-08-14 +3307852 Portnason House Portnason House 54.5 -8.20917 S HSEC IE U 06 0 44 Europe/Dublin 2010-08-14 +3307853 Assaroe Lake Assaroe Lake 54.49556 -8.155 H LK IE U 06 0 54 Europe/Dublin 2010-08-14 +3307854 Fort William Fort William 54.48639 -8.14361 S FT IE U 06 0 61 Europe/Dublin 2010-08-14 +3307855 Higginstown House Higginstown House 54.48056 -8.19333 S HSEC IE U 06 0 104 Europe/Dublin 2010-08-14 +3307856 Ashbrook Ashbrook 54.47444 -8.19222 P PPLL IE U 06 0 102 Europe/Dublin 2010-08-14 +3307857 Guslagh Bridge Guslagh Bridge 54.46944 -8.18806 L LCTY IE U 06 0 121 Europe/Dublin 2010-08-14 +3307858 Rowanfreehill House Rowanfreehill House 54.48139 -8.13806 S HSEC IE U 06 0 69 Europe/Dublin 2010-08-14 +3307859 Rockfield House Rockfield House 54.48111 -8.11972 S HSEC IE U 06 0 76 Europe/Dublin 2010-08-14 +3307860 Behy Mountain Behy Mountain 54.51194 -8.1375 T HLL IE U 06 0 521 421 Europe/Dublin 2010-08-14 +3307862 Doo Lough Lower Doo Lough Lower 54.49333 -8.06083 H PND IE U 06 0 191 Europe/Dublin 2010-08-14 +3307863 Lough Finn Lough Finn 54.50111 -8.05667 H LK IE U 06 0 307 Europe/Dublin 2010-08-14 +3307864 Lough Aghvog Lough Aghvog 54.51083 -8.08722 H LK IE U 06 0 325 Europe/Dublin 2010-08-14 +3307865 Pound Bridge Pound Bridge 54.50861 -8.19583 L LCTY IE U 06 0 63 Europe/Dublin 2010-08-14 +3307866 Tullyhork Lough Tullyhork Lough 54.51861 -8.16 H LK IE U 06 0 67 Europe/Dublin 2010-08-14 +3307867 Wardtown Wardtown 54.51472 -8.2225 P PPLL IE U 06 0 116 Europe/Dublin 2010-08-14 +3307868 Ballure Ballure 54.52528 -8.23417 P PPLL IE U 06 0 16 Europe/Dublin 2010-08-14 +3307869 Cashellackan Cashellackan 54.52611 -8.19667 P PPLL IE U 06 0 84 Europe/Dublin 2010-08-14 +3307870 Cavangarden Cavangarden 54.53056 -8.14111 P PPL IE U 06 0 388 Europe/Dublin 2010-08-14 +3307873 Inchirourke Inchirourke 52.72056 -7.63444 L LCTY IE M 26 0 135 Europe/Dublin 2010-08-14 +3307874 Longfordpass Bridge Longfordpass Bridge 52.69667 -7.63083 P PPL IE M 26 0 135 Europe/Dublin 2010-08-14 +3307875 Longfordpass North Longfordpass North 52.70806 -7.66472 P PPL IE M 26 0 132 Europe/Dublin 2010-08-14 +3307876 Fenner Fenner 52.70833 -7.59944 S BLDG IE M 26 0 140 Europe/Dublin 2010-08-14 +3307877 Graiguepadeen Graiguepadeen 52.69806 -7.62528 P PPL IE M 26 0 135 Europe/Dublin 2010-08-14 +3307878 Kilnakill Kilnakill 52.70667 -7.6875 L LCTY IE M 26 0 128 Europe/Dublin 2010-08-14 +3307879 Castletown Castletown 52.71722 -7.69528 L LCTY IE M 26 0 126 Europe/Dublin 2010-08-14 +3307880 Boolabeha Bridge Boolabeha Bridge 52.70917 -7.7175 P PPL IE M 26 0 121 Europe/Dublin 2010-08-14 +3307881 Garranroe Garranroe 52.71167 -7.74056 L LCTY IE M 26 0 120 Europe/Dublin 2010-08-14 +3307882 Lisduff Lisduff 52.69667 -7.75889 L LCTY IE M 26 0 112 Europe/Dublin 2010-08-14 +3307883 Cassestown Cassestown 52.70111 -7.77333 L LCTY IE M 26 0 111 Europe/Dublin 2010-08-14 +3307884 Bohernamona Bohernamona 52.69444 -7.78944 L LCTY IE M 38 0 105 Europe/Dublin 2010-08-14 +3307885 Coolaculla Coolaculla 52.72944 -7.76056 L LCTY IE M 26 0 121 Europe/Dublin 2010-08-14 +3307886 Lisdonowley Lisdonowley 52.74361 -7.75139 L LCTY IE M 26 0 128 Europe/Dublin 2010-08-14 +3307887 Baronstown Baronstown 52.74278 -7.78083 L LCTY IE M 26 0 123 Europe/Dublin 2010-08-14 +3307888 Brownstown Cross Roads Brownstown Cross Roads 52.73278 -7.78667 P PPL IE M 26 0 115 Europe/Dublin 2010-08-14 +3307889 Rossestown Bridge Rossestown Bridge 52.71389 -7.80139 P PPL IE M 26 0 104 Europe/Dublin 2010-08-14 +3307890 Rossestown Rossestown 52.70972 -7.78861 P PPL IE M 26 0 110 Europe/Dublin 2010-08-14 +3307891 Lenagh Lenagh 52.70528 -7.84861 L LCTY IE M 26 0 101 Europe/Dublin 2010-08-14 +3307892 Kilkillahara Kilkillahara 52.72694 -7.84111 L LCTY IE M 26 0 103 Europe/Dublin 2010-08-14 +3307893 Kilbrickane Kilbrickane 52.75694 -7.80056 L LCTY IE M 26 0 117 Europe/Dublin 2010-08-14 +3307894 Fortfield House Fortfield House 52.75833 -7.75889 S HSEC IE M 26 0 129 Europe/Dublin 2010-08-14 +3307895 Barnalisheen Barnalisheen 52.76333 -7.72944 P PPL IE M 26 0 137 Europe/Dublin 2010-08-14 +3307896 Lisheen Cross Roads Lisheen Cross Roads 52.76111 -7.73083 P PPL IE M 26 0 137 Europe/Dublin 2010-08-14 +3307897 Killanigan Killanigan 52.76889 -7.76861 P PPL IE M 26 0 133 Europe/Dublin 2010-08-14 +3307898 Coogulla Coogulla 52.77167 -7.79583 L LCTY IE M 26 0 125 Europe/Dublin 2010-08-14 +3307899 Penane Bridge Penane Bridge 52.77417 -7.815 P PPL IE M 26 0 117 Europe/Dublin 2010-08-14 +3307900 Cloone House Cloone House 52.77972 -7.81417 S HSEC IE M 26 0 119 Europe/Dublin 2010-08-14 +3307901 Kilrush House Kilrush House 52.71361 -7.87083 S HSEC IE M 26 0 99 Europe/Dublin 2010-08-14 +3307902 Liscahill Liscahill 52.6925 -7.84639 S BLDG IE M 26 0 98 Europe/Dublin 2010-08-14 +3307903 Ballybristy Ballybristy 52.73611 -7.85139 L LCTY IE M 26 0 104 Europe/Dublin 2010-08-14 +3307904 Carrickloughmore Cross Roads Carrickloughmore Cross Roads 52.75583 -7.84278 P PPL IE M 26 0 103 Europe/Dublin 2010-08-14 +3307905 Whitefield Whitefield 52.77056 -7.85528 L LCTY IE M 26 0 103 Europe/Dublin 2010-08-14 +3307906 Barna Cross Barna Cross 52.78417 -7.87361 P PPL IE M 26 0 97 Europe/Dublin 2010-08-14 +3307908 Woodville House Woodville House 52.78639 -7.83111 S HSEC IE M 26 0 117 Europe/Dublin 2010-08-14 +3307909 Templemore Templemore 52.79639 -7.85389 S EST IE M 26 0 112 Europe/Dublin 2010-08-14 +3307910 Knocknageragh Bridge Knocknageragh Bridge 52.80361 -7.80417 P PPL IE M 26 0 130 Europe/Dublin 2010-08-14 +3307911 College Hill College Hill 52.82806 -7.835 T HLL IE M 26 0 148 Europe/Dublin 2010-08-14 +3307912 Borrisbeg Borrisbeg 52.81556 -7.83917 L LCTY IE M 26 0 134 Europe/Dublin 2010-08-14 +3307913 Ballycahall Ballycahall 52.8275 -7.81778 P PPL IE M 26 0 139 Europe/Dublin 2010-08-14 +3307914 Kilduff House Kilduff House 52.82583 -7.88694 S HSEC IE M 26 0 225 Europe/Dublin 2010-08-14 +3307915 Killea Killea 52.82361 -7.86972 P PPL IE M 26 0 138 Europe/Dublin 2010-08-14 +3307916 Castleleiny Castleleiny 52.78694 -7.80889 L LCTY IE M 26 0 122 Europe/Dublin 2010-08-14 +3307917 Castleleiny House Castleleiny House 52.79056 -7.77639 S HSEC IE M 26 0 135 Europe/Dublin 2010-08-14 +3307918 Clontaaffe Clontaaffe 52.84222 -7.83889 L LCTY IE M 26 0 148 Europe/Dublin 2010-08-14 +3307919 Knockanroe House Knockanroe House 52.84056 -7.81 S HSEC IE M 26 0 138 Europe/Dublin 2010-08-14 +3307920 Graffin Graffin 52.84194 -7.77611 P PPL IE M 26 0 144 Europe/Dublin 2010-08-14 +3307921 Curraghbristy Curraghbristy 52.8375 -7.88694 T MT IE M 26 0 245 Europe/Dublin 2010-08-14 +3307922 Skehanagh House Skehanagh House 52.84889 -7.8575 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3307923 Tober Tober 52.83472 -7.88056 L LCTY IE M 26 0 199 Europe/Dublin 2010-08-14 +3307924 Orkneys Cross Roads Orkneys Cross Roads 52.85972 -7.84972 P PPL IE M 26 0 149 Europe/Dublin 2010-08-14 +3307925 Killough Killough 52.85861 -7.82917 P PPL IE M 26 0 145 Europe/Dublin 2010-08-14 +3307926 Oldcastle Oldcastle 52.895 -7.83528 S CSTL IE M 26 0 150 Europe/Dublin 2010-08-14 +3307927 The Fourteen Roads The Fourteen Roads 52.88583 -7.87778 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307928 Dangansallagh House Dangansallagh House 52.89278 -7.82056 S HSEC IE M 26 0 148 Europe/Dublin 2010-08-14 +3307929 Ballyheny Ballyheny 52.90083 -7.8175 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3307933 Boolabaun Boolabaun 52.89667 -7.78667 L LCTY IE M 26 0 146 Europe/Dublin 2010-08-14 +3307934 Curragunneen Curragunneen 52.89 -7.795 L LCTY IE M 26 0 147 Europe/Dublin 2010-08-14 +3307935 Logan Park Logan Park 52.88083 -7.77389 L PRK IE M 26 0 152 Europe/Dublin 2010-08-14 +3307936 Quinlisk’s Cross Quinlisk's Cross 52.87333 -7.80694 P PPL IE M 38 0 145 Europe/Dublin 2010-08-14 +3307937 Shanakill Shanakill 52.85944 -7.79389 L LCTY IE M 26 0 145 Europe/Dublin 2010-08-14 +3307938 Boggaun Boggaun 52.85361 -7.77222 L LCTY IE M 26 0 144 Europe/Dublin 2010-08-14 +3307939 Black Hill Black Hill 52.895 -7.74639 T HLL IE M 26 0 154 Europe/Dublin 2010-08-14 +3307940 Boolareagh Boolareagh 52.88472 -7.74306 L LCTY IE M 26 0 152 Europe/Dublin 2010-08-14 +3307941 Clonbuogh House Clonbuogh House 52.83222 -7.72722 S HSEC IE M 26 0 154 Europe/Dublin 2010-08-14 +3307942 Ballysorrell Ballysorrell 52.82111 -7.75111 L LCTY IE M 26 0 148 Europe/Dublin 2010-08-14 +3307943 Lahagh Lahagh 52.81083 -7.75583 P PPL IE M 26 0 147 Europe/Dublin 2010-08-14 +3307944 Strogue Strogue 52.80056 -7.76889 L LCTY IE M 26 0 141 Europe/Dublin 2010-08-14 +3307945 Strogue Cross Strogue Cross 52.795 -7.77306 P PPL IE M 26 0 140 Europe/Dublin 2010-08-14 +3307946 Killenoher Killenoher 52.78833 -7.69028 P PPL IE M 26 0 148 Europe/Dublin 2010-08-14 +3307947 Tullowmacjames Tullowmacjames 52.79583 -7.71139 P PPL IE M 26 0 150 Europe/Dublin 2010-08-14 +3307948 Lissanure House Lissanure House 52.81 -7.705 S HSEC IE M 26 0 153 Europe/Dublin 2010-08-14 +3307949 Togher Togher 52.82417 -7.68889 S BLDG IE L 15 0 151 Europe/Dublin 2010-08-14 +3307950 Garranmaconly Garranmaconly 52.89861 -7.67083 P PPL IE L 15 0 146 Europe/Dublin 2010-08-14 +3307951 County Bridge County Bridge 52.89083 -7.705 P PPL IE L 15 0 150 Europe/Dublin 2010-08-14 +3307952 Garryduff Garryduff 52.88278 -7.71167 L LCTY IE L 15 0 145 Europe/Dublin 2010-08-14 +3307953 Rathnaleugh Rathnaleugh 52.88639 -7.66722 P PPL IE L 15 0 144 Europe/Dublin 2010-08-14 +3307954 Castlefleming House Castlefleming House 52.87611 -7.66944 S HSEC IE L 15 0 143 Europe/Dublin 2010-08-14 +3307955 Castlefleming Lodge Castlefleming Lodge 52.87417 -7.69694 S HSE IE L 15 0 144 Europe/Dublin 2010-08-14 +3307956 Killadooley House Killadooley House 52.8825 -7.61111 S HSEC IE L 15 0 135 Europe/Dublin 2010-08-14 +3307957 Killadooley Killadooley 52.89278 -7.64083 L LCTY IE L 15 0 141 Europe/Dublin 2010-08-14 +3307958 Coolowley Coolowley 52.87639 -7.64833 L LCTY IE L 15 0 138 Europe/Dublin 2010-08-14 +3307959 Castlegrogan House Castlegrogan House 52.86 -7.64361 S HSEC IE L 15 0 136 Europe/Dublin 2010-08-14 +3307960 Knockahaw Knockahaw 52.85611 -7.725 L LCTY IE L 15 0 146 Europe/Dublin 2010-08-14 +3307961 Lisduff Lisduff 52.85111 -7.72694 L LCTY IE L 15 0 146 Europe/Dublin 2010-08-14 +3307962 Balleagh House Balleagh House 52.84222 -7.65722 S HSEC IE L 15 0 139 Europe/Dublin 2010-08-14 +3307963 Rathsaran Rathsaran 52.85139 -7.635 L LCTY IE L 15 0 134 Europe/Dublin 2010-08-14 +3307964 Bealady Cross Roads Bealady Cross Roads 52.86306 -7.60694 P PPL IE L 15 0 129 Europe/Dublin 2010-08-14 +3307965 Grogan Grogan 52.85944 -7.61333 S EST IE L 15 0 130 Europe/Dublin 2010-08-14 +3307966 Rockheel Hill Rockheel Hill 52.85 -7.59861 T HLL IE L 15 0 133 Europe/Dublin 2010-08-14 +3307967 Harristown Cross Roads Harristown Cross Roads 52.84139 -7.61333 P PPL IE L 15 0 139 Europe/Dublin 2010-08-14 +3307968 Graigueavallagh House Graigueavallagh House 52.83389 -7.655 S HSEC IE L 15 0 142 Europe/Dublin 2010-08-14 +3307969 Clonmeen Clonmeen 52.81167 -7.67861 L LCTY IE L 15 0 151 Europe/Dublin 2010-08-14 +3307970 Cappalinnan Cappalinnan 52.82778 -7.64139 L LCTY IE L 15 0 143 Europe/Dublin 2010-08-14 +3307971 Rossdarragh Rossdarragh 52.81889 -7.62222 L LCTY IE L 15 0 147 Europe/Dublin 2010-08-14 +3307972 Glasha Cross Roads Glasha Cross Roads 52.83333 -7.59333 P PPL IE L 15 0 146 Europe/Dublin 2010-08-14 +3307973 Graigueadrisly Graigueadrisly 52.80028 -7.65722 L LCTY IE L 15 0 151 Europe/Dublin 2010-08-14 +3307974 Killaghra Killaghra 52.79278 -7.65139 L LCTY IE L 15 0 151 Europe/Dublin 2010-08-14 +3307975 Rathpatrick House Rathpatrick House 52.78389 -7.6025 S HSEC IE L 13 0 158 Europe/Dublin 2010-08-14 +3307981 Erke House Erke House 52.79083 -7.59444 S HSEC IE L 13 0 160 Europe/Dublin 2010-08-14 +3307982 Baunballinlough Baunballinlough 52.78167 -7.61111 P PPL IE L 13 0 154 Europe/Dublin 2010-08-14 +3307983 Castle Pierce Castle Pierce 52.78556 -7.63417 S CSTL IE L 13 0 150 Europe/Dublin 2010-08-14 +3307984 Knockdrinnia Knockdrinnia 52.80083 -7.61278 T HLL IE 00 0 154 Europe/Dublin 1998-03-23 +3307985 Castletown Castletown 52.80222 -7.5925 L LCTY IE L 13 0 159 Europe/Dublin 2010-08-14 +3307986 Rathhane Rathhane 52.80222 -7.56444 T RK IE L 13 0 145 Europe/Dublin 2010-08-14 +3307987 Whitewall Whitewall 52.81361 -7.57972 L LCTY IE L 13 0 156 Europe/Dublin 2010-08-14 +3307988 Coolnacrutta Coolnacrutta 52.79833 -7.51556 L LCTY IE L 13 0 140 Europe/Dublin 2010-08-14 +3307989 Rathkyle Rathkyle 52.80278 -7.51639 L LCTY IE L 13 0 130 Europe/Dublin 2010-08-14 +3307990 Ballyphilip Ballyphilip 52.82472 -7.57306 L LCTY IE L 13 0 152 Europe/Dublin 2010-08-14 +3307991 Ballinfrose House Ballinfrose House 52.81111 -7.54028 S HSEC IE L 15 0 123 Europe/Dublin 2010-08-14 +3307992 Srahbaun Srahbaun 52.81389 -7.55444 P PPL IE L 15 0 135 Europe/Dublin 2010-08-14 +3307993 Lodgefield House Lodgefield House 52.83333 -7.50917 S HSEC IE L 15 0 110 Europe/Dublin 2010-08-14 +3307994 Srah Srah 52.83083 -7.54528 L LCTY IE L 15 0 127 Europe/Dublin 2010-08-14 +3307995 Carrick House Carrick House 52.84306 -7.51583 S HSEC IE L 15 0 109 Europe/Dublin 2010-08-14 +3307996 Cannonswood Cross Roads Cannonswood Cross Roads 52.84083 -7.49694 P PPL IE L 15 0 104 Europe/Dublin 2010-08-14 +3307997 Scrub and Glenmacolla Scrub and Glenmacolla 52.80556 -7.47972 L LCTY IE L 15 0 152 Europe/Dublin 2010-08-14 +3307998 Knockfin House Knockfin House 52.84667 -7.53722 S HSEC IE L 15 0 119 Europe/Dublin 2010-08-14 +3307999 Coneyburrow Bridge Coneyburrow Bridge 52.85528 -7.56722 P PPL IE L 15 0 123 Europe/Dublin 2010-08-14 +3308000 Coolkerry Coolkerry 52.85722 -7.55556 L LCTY IE L 15 0 119 Europe/Dublin 2010-08-14 +3308001 Coolfin House Coolfin House 52.88056 -7.54639 S HSEC IE L 15 0 125 Europe/Dublin 2010-08-14 +3308002 Beckfield House Beckfield House 52.88639 -7.55083 S HSEC IE L 15 0 131 Europe/Dublin 2010-08-14 +3308003 Kilcoke Lodge Kilcoke Lodge 52.89278 -7.58778 S HSE IE L 15 0 144 Europe/Dublin 2010-08-14 +3308004 Coolfin Cross Roads Coolfin Cross Roads 52.87306 -7.55583 P PPL IE L 15 0 125 Europe/Dublin 2010-08-14 +3308005 Coolbally Coolbally 52.90056 -7.53361 L LCTY IE L 15 0 126 Europe/Dublin 2010-08-14 +3308006 Grantstown Lough Grantstown Lough 52.87139 -7.5025 H LK IE L 15 0 107 Europe/Dublin 2010-08-14 +3308007 Clogh Clogh 52.88611 -7.50667 P PPL IE L 15 0 108 Europe/Dublin 2010-08-14 +3308008 Guffsborough House Guffsborough House 52.89639 -7.50222 S HSEC IE L 15 0 108 Europe/Dublin 2010-08-14 +3308009 Guffsborough Cross Roads Guffsborough Cross Roads 52.89778 -7.48333 P PPL IE L 15 0 98 Europe/Dublin 2010-08-14 +3308010 Tintore House Tintore House 52.87472 -7.47361 S HSEC IE L 15 0 94 Europe/Dublin 2010-08-14 +3308011 Ballygran Ballygran 52.86583 -7.50306 S EST IE L 15 0 106 Europe/Dublin 2010-08-14 +3308012 Grantstown Manor Grantstown Manor 52.86167 -7.48694 S EST IE L 15 0 100 Europe/Dublin 2010-08-14 +3308013 Edmonsbury House Edmonsbury House 52.83833 -7.45306 S HSEC IE L 15 0 103 Europe/Dublin 2010-08-14 +3308014 Newtown Newtown 52.83167 -7.46417 L LCTY IE L 15 0 112 Europe/Dublin 2010-08-14 +3308016 Ballyboodin Ballyboodin 52.84806 -7.4675 L LCTY IE L 15 0 96 Europe/Dublin 2010-08-14 +3308017 The Curragh The Curragh 52.85639 -7.46861 L AREA IE L 15 0 94 Europe/Dublin 2010-08-14 +3308018 Rathnakelly Rathnakelly 52.86778 -7.45528 L LCTY IE L 15 0 90 Europe/Dublin 2010-08-14 +3308019 Moyne House Moyne House 52.865 -7.40694 S HSEC IE L 15 0 81 Europe/Dublin 2010-08-14 +3308020 Clonageera House Clonageera House 52.83361 -7.39444 S HSEC IE L 15 0 111 Europe/Dublin 2010-08-14 +3308022 Castlewood House Castlewood House 52.84917 -7.37056 S HSEC IE L 15 0 84 Europe/Dublin 2010-08-14 +3308023 New Bridge New Bridge 52.85611 -7.36444 P PPL IE L 15 0 97 Europe/Dublin 2010-08-14 +3308024 Fermoyle Fermoyle 52.86 -7.365 L LCTY IE L 15 0 102 Europe/Dublin 2010-08-14 +3308025 Erkina River Erkina River 52.84667 -7.37583 H STM IE L 15 0 79 Europe/Dublin 2010-08-14 +3308026 River Gully River Gully 52.86 -7.38444 H STM IE L 15 0 82 Europe/Dublin 2010-08-14 +3308027 Tinnarakeen Tinnarakeen 52.89056 -7.43889 L LCTY IE L 15 0 89 Europe/Dublin 2010-08-14 +3308028 Gully Bridge Gully Bridge 52.89278 -7.41806 P PPL IE L 15 0 88 Europe/Dublin 2010-08-14 +3308029 Water Castle Water Castle 52.87444 -7.36972 S CSTL IE L 15 0 97 Europe/Dublin 2010-08-14 +3308030 Knockmannon Cross Roads Knockmannon Cross Roads 52.78361 -7.41722 P PPL IE L 13 0 169 Europe/Dublin 2010-08-14 +3308031 Aharney House Aharney House 52.80361 -7.40694 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3308032 Ballykealy Ballykealy 52.80778 -7.42361 P PPL IE L 15 0 149 Europe/Dublin 2010-08-14 +3308033 Seekin House Seekin House 52.80056 -7.38639 S HSEC IE L 13 0 139 Europe/Dublin 2010-08-14 +3308034 Parksgrove Parksgrove 52.78444 -7.36083 L LCTY IE L 13 0 77 Europe/Dublin 2010-08-14 +3308035 Ballynaskee Ballynaskee 52.82139 -7.38139 L LCTY IE L 13 0 121 Europe/Dublin 2010-08-14 +3308036 Graigueavoice Graigueavoice 52.81556 -7.46722 P PPL IE L 15 0 136 Europe/Dublin 2010-08-14 +3308037 Seven Cross Roads Seven Cross Roads 52.79639 -7.28806 P PPL IE L 13 0 194 Europe/Dublin 2010-08-14 +3308038 Finnan Finnan 52.79639 -7.31583 L LCTY IE L 13 0 147 Europe/Dublin 2010-08-14 +3308039 Tinnalintan Tinnalintan 52.80917 -7.32333 L LCTY IE L 13 0 124 Europe/Dublin 2010-08-14 +3308040 Ballymartin Cross Roads Ballymartin Cross Roads 52.81917 -7.29028 P PPL IE L 13 0 273 Europe/Dublin 2010-08-14 +3308041 Glashagal Bridge Glashagal Bridge 52.81722 -7.33472 P PPL IE L 13 0 96 Europe/Dublin 2010-08-14 +3308042 Ballycokill Ballycokill 52.84056 -7.32722 L LCTY IE L 13 0 110 Europe/Dublin 2010-08-14 +3308043 Ballynalacken Ballynalacken 52.82694 -7.29722 L LCTY IE L 13 0 284 Europe/Dublin 2010-08-14 +3308044 Firoda Firoda 52.82972 -7.27333 L LCTY IE L 13 0 244 Europe/Dublin 2010-08-14 +3308045 Castlemarket Bridge Castlemarket Bridge 52.85167 -7.32028 P PPL IE L 13 0 122 Europe/Dublin 2010-08-14 +3308046 Longhill Bridge Longhill Bridge 52.86139 -7.29889 P PPL IE L 13 0 145 Europe/Dublin 2010-08-14 +3308047 Rosconnell Bridge Rosconnell Bridge 52.85111 -7.32889 P PPL IE L 13 0 115 Europe/Dublin 2010-08-14 +3308048 Ironmills Bridge Ironmills Bridge 52.86639 -7.29583 P PPL IE L 15 0 145 Europe/Dublin 2010-08-14 +3308049 Graigue Graigue 52.89944 -7.295 L LCTY IE L 15 0 143 Europe/Dublin 2010-08-14 +3308050 Valleyfield House Valleyfield House 52.89222 -7.30778 S HSEC IE L 15 0 149 Europe/Dublin 2010-08-14 +3308051 Ralish Ralish 52.89889 -7.32806 L LCTY IE L 15 0 154 Europe/Dublin 2010-08-14 +3308052 Killamuck Killamuck 52.88444 -7.35778 L LCTY IE L 15 0 128 Europe/Dublin 2010-08-14 +3308057 Buncurrig Buncurrig 52.385 -9.81944 L LCTY IE M 11 0 41 Europe/Dublin 2010-08-14 +3308058 Togherbane Togherbane 52.38583 -9.77056 L LCTY IE M 11 0 96 Europe/Dublin 2010-08-14 +3308059 Knockbrack Knockbrack 52.37389 -9.75 L LCTY IE M 11 0 85 Europe/Dublin 2010-08-14 +3308060 Drehidaclare Bridge Drehidaclare Bridge 52.40333 -9.73333 P PPL IE M 11 0 116 Europe/Dublin 2010-08-14 +3308061 Dromkeen Bridge Dromkeen Bridge 52.40722 -9.71556 P PPL IE M 11 0 104 Europe/Dublin 2010-08-14 +3308062 Aghamore House Aghamore House 52.39417 -9.71139 S HSEC IE M 11 0 102 Europe/Dublin 2010-08-14 +3308063 Booleenshare Booleenshare 52.40667 -9.82111 L LCTY IE M 11 0 58 Europe/Dublin 2010-08-14 +3308064 Ballynoe House Ballynoe House 52.41333 -9.75972 S HSEC IE M 11 0 142 Europe/Dublin 2010-08-14 +3308065 Rathmorrel House Rathmorrel House 52.40806 -9.76833 S HSEC IE M 11 0 125 Europe/Dublin 2010-08-14 +3308066 Lisduff Lisduff 52.41528 -9.78694 L LCTY IE M 11 0 103 Europe/Dublin 2010-08-14 +3308067 Ballinglanna Ballinglanna 52.43028 -9.74667 L LCTY IE M 11 0 125 Europe/Dublin 2010-08-14 +3308068 Blackpool Blackpool 52.41861 -9.71306 L LCTY IE M 11 0 98 Europe/Dublin 2010-08-14 +3308069 Ballingarry Island Ballingarry Island 52.43472 -9.82056 T ISL IE M 11 0 1 Europe/Dublin 2010-08-14 +3308070 Ballynaskreena Ballynaskreena 52.43972 -9.76083 P PPL IE M 11 0 126 Europe/Dublin 2010-08-14 +3308071 Derryrin House Derryrin House 52.37556 -9.67639 S HSEC IE M 11 0 78 Europe/Dublin 2010-08-14 +3308072 Crompaun Bridge Crompaun Bridge 52.4125 -9.68361 P PPL IE M 11 0 87 Europe/Dublin 2010-08-14 +3308073 Ballincrossig Cross Roads Ballincrossig Cross Roads 52.41667 -9.6875 P PPL IE M 11 0 82 Europe/Dublin 2010-08-14 +3308074 Ballynagare House Ballynagare House 52.41806 -9.62583 S HSEC IE M 11 0 66 Europe/Dublin 2010-08-14 +3308075 Brown Castle Brown Castle 52.46778 -9.7425 S CSTL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3308076 Killaspicktarvin Killaspicktarvin 52.37194 -9.65778 L LCTY IE M 11 0 70 Europe/Dublin 2010-08-14 +3308077 Ballyrechan Bridge Ballyrechan Bridge 52.38278 -9.58944 P PPL IE M 11 0 72 Europe/Dublin 2010-08-14 +3308078 Gortancare Gortancare 52.39972 -9.64667 L LCTY IE M 11 0 70 Europe/Dublin 2010-08-14 +3308079 Cloonlogher Cloonlogher 52.42222 -9.67167 L LCTY IE M 11 0 75 Europe/Dublin 2010-08-14 +3308080 Bushmount Bushmount 52.4275 -9.68333 L LCTY IE M 11 0 73 Europe/Dublin 2010-08-14 +3308081 Kilbinane Hill Kilbinane Hill 52.4075 -9.60583 P PPL IE M 11 0 67 Europe/Dublin 2010-08-14 +3308082 Freemount Freemount 52.40917 -9.58972 L LCTY IE M 11 0 65 Europe/Dublin 2010-08-14 +3308083 Ballyhorgan South Ballyhorgan South 52.40722 -9.58 S EST IE M 11 0 63 Europe/Dublin 2010-08-14 +3308084 Knockburrane Cross Roads Knockburrane Cross Roads 52.39194 -9.55861 P PPL IE M 11 0 67 Europe/Dublin 2010-08-14 +3308085 Demesne House Demesne House 52.40222 -9.54 S HSEC IE M 11 0 62 Europe/Dublin 2010-08-14 +3308086 Clondouglas Clondouglas 52.38639 -9.57528 L LCTY IE M 11 0 66 Europe/Dublin 2010-08-14 +3308087 Mountcoal Mountcoal 52.39417 -9.51639 P PPL IE M 11 0 114 Europe/Dublin 2010-08-14 +3308088 Pike Cross Roads Pike Cross Roads 52.39722 -9.48972 P PPL IE M 11 0 104 Europe/Dublin 2010-08-14 +3308089 Billeragh House Billeragh House 52.41972 -9.50944 S HSEC IE M 11 0 68 Europe/Dublin 2010-08-14 +3308090 Coolnaleen Cross Roads Coolnaleen Cross Roads 52.42917 -9.50278 P PPL IE M 11 0 76 Europe/Dublin 2010-08-14 +3308091 Garryantanvalley House Garryantanvalley House 52.43556 -9.5025 S HSEC IE M 11 0 73 Europe/Dublin 2010-08-14 +3308092 Slievecahill Slievecahill 52.42222 -9.47944 T HLL IE M 11 0 76 Europe/Dublin 2010-08-14 +3308093 Six Crosses Six Crosses 52.41167 -9.51083 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +3308094 Ballyhorgan East Ballyhorgan East 52.4175 -9.56556 P PPL IE M 11 0 66 Europe/Dublin 2010-08-14 +3308095 Ennismore House Ennismore House 52.42889 -9.58111 S HSEC IE M 11 0 66 Europe/Dublin 2010-08-14 +3308096 Ferry Bridge Ferry Bridge 52.46861 -9.63139 L LCTY IE M 11 0 54 Europe/Dublin 2010-08-14 +3308097 Cloghane Cloghane 52.46972 -9.69639 L LCTY IE M 11 0 16 Europe/Dublin 2010-08-14 +3308098 Ardrullen Ardrullen 52.46611 -9.665 L LCTY IE M 11 0 56 Europe/Dublin 2010-08-14 +3308099 Heart Hill Heart Hill 52.45389 -9.6775 T HLL IE M 11 0 51 Europe/Dublin 2010-08-14 +3308100 Addergown Addergown 52.44944 -9.70167 L LCTY IE M 11 0 57 Europe/Dublin 2010-08-14 +3308101 Ardoughter Ardoughter 52.46444 -9.7125 L LCTY IE M 11 0 25 Europe/Dublin 2010-08-14 +3308102 Kilmore Kilmore 52.47722 -9.72722 L LCTY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3308103 Ratton House Ratton House 52.44361 -9.64861 S HSEC IE M 11 0 63 Europe/Dublin 2010-08-14 +3308104 Ballyeagh House Ballyeagh House 52.48722 -9.66806 S HSEC IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3308105 Gortagarrane Gortagarrane 52.47778 -9.61806 L LCTY IE M 11 0 47 Europe/Dublin 2010-08-14 +3308106 Ballyouneen Ballyouneen 52.44889 -9.62306 L LCTY IE M 11 0 63 Europe/Dublin 2010-08-14 +3308107 Ballyhorgan Ballyhorgan 52.45472 -9.6375 L LCTY IE M 11 0 61 Europe/Dublin 2010-08-14 +3308108 Kilmulhane Kilmulhane 52.49472 -9.63722 L LCTY IE M 11 0 52 Europe/Dublin 2010-08-14 +3308109 Moybella Moybella 52.48833 -9.60333 L LCTY IE M 11 0 44 Europe/Dublin 2010-08-14 +3308110 Ballyegan Ballyegan 52.47056 -9.59 L LCTY IE M 11 0 55 Europe/Dublin 2010-08-14 +3308111 Ballydonohoe Ballydonohoe 52.48667 -9.5675 L LCTY IE M 11 0 57 Europe/Dublin 2010-08-14 +3308112 Galey Cross Roads Galey Cross Roads 52.47083 -9.54111 P PPL IE M 11 0 67 Europe/Dublin 2010-08-14 +3308113 Oaghley Oaghley 52.45194 -9.57083 P PPL IE M 11 0 65 Europe/Dublin 2010-08-14 +3308114 Inch Bridge Inch Bridge 52.4675 -9.53528 P PPL IE M 11 0 67 Europe/Dublin 2010-08-14 +3308115 Greenville Greenville 52.44194 -9.54389 L LCTY IE M 11 0 67 Europe/Dublin 2010-08-14 +3308116 Drommurrin House Drommurrin House 52.44444 -9.55889 S HSEC IE M 11 0 66 Europe/Dublin 2010-08-14 +3308117 Fallas Hill Fallas Hill 52.37306 -9.54389 T HLL IE M 11 0 170 Europe/Dublin 2010-08-14 +3308118 Gortacloghane Gortacloghane 52.37472 -9.47417 L LCTY IE M 11 0 107 Europe/Dublin 2010-08-14 +3308119 Tooreen Tooreen 52.38028 -9.42444 P PPL IE M 11 0 152 Europe/Dublin 2010-08-14 +3308120 Derrindaff Derrindaff 52.40639 -9.45528 L LCTY IE M 11 0 79 Europe/Dublin 2010-08-14 +3308121 Knockundervaul Knockundervaul 52.40056 -9.42611 L LCTY IE M 11 0 152 Europe/Dublin 2010-08-14 +3308122 The Knight’s Bridge The Knight's Bridge 52.42806 -9.44222 P PPL IE M 11 0 74 Europe/Dublin 2010-08-14 +3308123 Beal Leice Beal Leice 52.41944 -9.42889 L LCTY IE M 11 0 89 Europe/Dublin 2010-08-14 +3308124 Cahergal Cahergal 52.41028 -9.41972 T RK IE M 11 0 144 Europe/Dublin 2010-08-14 +3308125 Ballygrenane Ballygrenane 52.43139 -9.47333 L LCTY IE M 11 0 74 Europe/Dublin 2010-08-14 +3308126 Balton’s Cross Roads Balton's Cross Roads 52.44833 -9.44667 P PPL IE M 11 0 70 Europe/Dublin 2010-08-14 +3308127 Duagh House Duagh House 52.41722 -9.37944 S HSEC IE M 11 0 72 Europe/Dublin 2010-08-14 +3308128 Bunagarho Bunagarho 52.44639 -9.42139 L LCTY IE M 11 0 71 Europe/Dublin 2010-08-14 +3308129 Kilcarra Kilcarra 52.40667 -9.36056 L LCTY IE M 11 0 91 Europe/Dublin 2010-08-14 +3308130 Knockmeal Knockmeal 52.38806 -9.36333 L LCTY IE M 11 0 149 Europe/Dublin 2010-08-14 +3308131 Coolaneelig Coolaneelig 52.395 -9.35222 L LCTY IE M 11 0 102 Europe/Dublin 2010-08-14 +3308132 Moynslia House Moynslia House 52.38472 -9.31194 S HSEC IE M 11 0 74 Europe/Dublin 2010-08-14 +3308133 Rea Rea 52.41917 -9.34667 L LCTY IE M 11 0 89 Europe/Dublin 2010-08-14 +3308134 Pilgrimhill Pilgrimhill 52.43556 -9.35194 L LCTY IE M 11 0 96 Europe/Dublin 2010-08-14 +3308135 Kingsland House Kingsland House 52.42833 -9.32278 S HSEC IE M 11 0 154 Europe/Dublin 2010-08-14 +3308136 Trien Lodge Trien Lodge 52.43528 -9.37972 S HSE IE M 11 0 76 Europe/Dublin 2010-08-14 +3308137 Beennanaspuck House Beennanaspuck House 52.44611 -9.34167 S HSEC IE M 11 0 112 Europe/Dublin 2010-08-14 +3308138 Calardown Calardown 52.45444 -9.46389 L LCTY IE M 11 0 70 Europe/Dublin 2010-08-14 +3308139 Ballaghidigue Ballaghidigue 52.46139 -9.45583 L LCTY IE M 11 0 71 Europe/Dublin 2010-08-14 +3308140 Clieveagh Clieveagh 52.45722 -9.49444 L LCTY IE M 11 0 69 Europe/Dublin 2010-08-14 +3308141 Dromin House Dromin House 52.46083 -9.46833 S HSEC IE M 11 0 70 Europe/Dublin 2010-08-14 +3308142 Bedford Cross Roads Bedford Cross Roads 52.47056 -9.49583 P PPL IE M 11 0 69 Europe/Dublin 2010-08-14 +3308143 Bedtord House Bedtord House 52.47972 -9.48389 S HSEC IE M 11 0 69 Europe/Dublin 2010-08-14 +3308144 Cloonmarkon Cloonmarkon 52.47389 -9.44222 L LCTY IE M 11 0 71 Europe/Dublin 2010-08-14 +3308145 Derry Cross Roads Derry Cross Roads 52.48139 -9.41417 P PPL IE M 11 0 71 Europe/Dublin 2010-08-14 +3308146 Cloonprolas Cloonprolas 52.48806 -9.43667 L LCTY IE M 11 0 70 Europe/Dublin 2010-08-14 +3308147 Coolaclarig Coolaclarig 52.4825 -9.46417 L LCTY IE M 11 0 70 Europe/Dublin 2010-08-14 +3308148 Knockane Knockane 52.47917 -9.46917 L LCTY IE M 11 0 69 Europe/Dublin 2010-08-14 +3308149 Shrone Bridge Shrone Bridge 52.47694 -9.505 P PPL IE M 11 0 68 Europe/Dublin 2010-08-14 +3308150 Glashaunrana Bridge Glashaunrana Bridge 52.45472 -9.33361 P PPL IE M 11 0 106 Europe/Dublin 2010-08-14 +3308151 Kilbaha Kilbaha 52.48111 -9.34222 L LCTY IE M 11 0 75 Europe/Dublin 2010-08-14 +3308152 Toberalooreen Toberalooreen 52.49861 -9.32667 L LCTY IE M 11 0 87 Europe/Dublin 2010-08-14 +3308153 Ahavoher Bridge Ahavoher Bridge 52.47722 -9.37111 P PPL IE M 11 0 73 Europe/Dublin 2010-08-14 +3308154 Morvane River Morvane River 52.4825 -9.37861 H STM IE M 11 0 72 Europe/Dublin 2010-08-14 +3308155 Murher Murher 52.49167 -9.3975 L LCTY IE M 11 0 71 Europe/Dublin 2010-08-14 +3308156 Gabbett’s Bridge Gabbett's Bridge 52.50361 -9.44583 P PPL IE M 11 0 69 Europe/Dublin 2010-08-14 +3308157 Mount Hayes Mount Hayes 52.49583 -9.46611 S EST IE M 11 0 69 Europe/Dublin 2010-08-14 +3308158 Jane Mount Jane Mount 52.47972 -9.52028 S EST IE M 11 0 68 Europe/Dublin 2010-08-14 +3308159 Coolbeha House Coolbeha House 52.5 -9.51611 S HSEC IE M 11 0 68 Europe/Dublin 2010-08-14 +3308160 Lisselton Cross Roads Lisselton Cross Roads 52.48833 -9.57556 P PPL IE M 11 0 53 Europe/Dublin 2010-08-14 +3308161 Dromin Cottage Dromin Cottage 52.50861 -9.65694 S HSE IE M 11 0 67 Europe/Dublin 2010-08-14 +3308162 Barraduff Barraduff 52.50583 -9.61222 L LCTY IE M 11 0 62 Europe/Dublin 2010-08-14 +3308163 Lahesheragh Lahesheragh 52.51611 -9.63056 L LCTY IE M 11 0 83 Europe/Dublin 2010-08-14 +3308164 Rahavanig Rahavanig 52.52806 -9.64444 L LCTY IE M 11 0 88 Europe/Dublin 2010-08-14 +3308165 Doon Point Doon Point 52.52944 -9.68056 T PT IE M 11 0 35 Europe/Dublin 2010-08-14 +3308166 Glenachoor Stream Glenachoor Stream 52.54056 -9.66833 H STM IE M 11 0 49 Europe/Dublin 2010-08-14 +3308167 Ballynoneen Ballynoneen 52.53444 -9.6025 L LCTY IE M 11 0 152 Europe/Dublin 2010-08-14 +3308168 Kilconly Kilconly 52.55111 -9.66694 L LCTY IE M 11 0 11 Europe/Dublin 2010-08-14 +3308169 Farranastack Farranastack 52.515 -9.57361 L LCTY IE M 11 0 106 Europe/Dublin 2010-08-14 +3308170 Kilgarvan Kilgarvan 52.51194 -9.53833 L LCTY IE M 11 0 73 Europe/Dublin 2010-08-14 +3308171 Tullahennel House Tullahennel House 52.53306 -9.53111 S HSEC IE M 11 0 71 Europe/Dublin 2010-08-14 +3308172 Cloonaman Cloonaman 52.555 -9.53361 L LCTY IE M 11 0 39 Europe/Dublin 2010-08-14 +3308173 Rushy Park Rushy Park 52.55194 -9.49722 S EST IE M 11 0 11 Europe/Dublin 2010-08-14 +3308174 Aghanagran House Aghanagran House 52.53167 -9.52167 S HSEC IE M 11 0 64 Europe/Dublin 2010-08-14 +3308175 Dooneen Point Dooneen Point 52.56917 -9.65139 T PT IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3308176 Beal Lodge Beal Lodge 52.5725 -9.61194 S HSE IE M 11 0 65 Europe/Dublin 2010-08-14 +3308177 Glanawillin Glanawillin 52.56111 -9.575 L LCTY IE M 11 0 23 Europe/Dublin 2010-08-14 +3308178 Littor House Littor House 52.56833 -9.57917 S HSEC IE M 11 0 1 Europe/Dublin 2010-08-14 +3308179 Shronowen Bog Shronowen Bog 52.50833 -9.48306 L LCTY IE M 11 0 67 Europe/Dublin 2010-08-14 +3308180 Leitrim Middle Leitrim Middle 52.51444 -9.38972 L LCTY IE M 11 0 71 Europe/Dublin 2010-08-14 +3308181 Glannalappa East Glannalappa East 52.51333 -9.32694 L LCTY IE M 11 0 121 Europe/Dublin 2010-08-14 +3308182 Leitim East Leitim East 52.52472 -9.36583 L LCTY IE M 11 0 84 Europe/Dublin 2010-08-14 +3308183 Banragoogeen Banragoogeen 52.53306 -9.36111 L LCTY IE M 11 0 87 Europe/Dublin 2010-08-14 +3308184 Shanaway Shanaway 52.55472 -9.35833 L LCTY IE M 11 0 78 Europe/Dublin 2010-08-14 +3308185 Dooncaha Dooncaha 52.55806 -9.3975 L LCTY IE M 11 0 43 Europe/Dublin 2010-08-14 +3308186 Dooncaha House Dooncaha House 52.55056 -9.40389 S HSEC IE M 11 0 37 Europe/Dublin 2010-08-14 +3308187 Carhoona Carhoona 52.5625 -9.42222 L LCTY IE M 11 0 16 Europe/Dublin 2010-08-14 +3308188 Sullowolen Sullowolen 52.55667 -9.43833 L LCTY IE M 11 0 24 Europe/Dublin 2010-08-14 +3308189 Ralappane House Ralappane House 52.57667 -9.43583 S HSEC IE M 11 0 1 Europe/Dublin 2010-08-14 +3308190 Massy’s Hill Massy's Hill 52.5825 -9.37472 T HLL IE M 11 0 1 Europe/Dublin 2010-08-14 +3308191 Coolnanoonagh Coolnanoonagh 52.57306 -9.42528 L LCTY IE M 11 0 6 Europe/Dublin 2010-08-14 +3308192 Glencloosagh Bay Glencloosagh Bay 52.58167 -9.4075 H BAY IE M 11 0 3 Europe/Dublin 2010-08-14 +3308193 Lislaughlin Lislaughlin 52.54861 -9.47056 L LCTY IE M 11 0 27 Europe/Dublin 2010-08-14 +3308194 Killelton House Killelton House 52.56861 -9.50333 S HSEC IE M 11 0 1 Europe/Dublin 2010-08-14 +3308195 Bunaclugga Bay Bunaclugga Bay 52.57333 -9.54139 H BAY IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3308196 Goulburn Bridge Goulburn Bridge 52.38056 -9.22306 P PPLL IE M 16 0 122 Europe/Dublin 2010-08-14 +3308197 Devonroad Devonroad 52.38667 -9.24778 L LCTY IE M 16 0 111 Europe/Dublin 2010-08-14 +3308198 Templeglentan Templeglentan 52.37972 -9.21472 L LCTY IE M 16 0 128 Europe/Dublin 2010-08-14 +3308199 Tulligoline South Tulligoline South 52.39528 -9.22694 L LCTY IE M 16 0 145 Europe/Dublin 2010-08-14 +3308200 Ballaghbehy Ballaghbehy 52.40222 -9.27194 L LCTY IE M 16 0 104 Europe/Dublin 2010-08-14 +3308201 Fealeview Lodge Fealeview Lodge 52.40889 -9.30139 S HSEC IE M 16 0 138 Europe/Dublin 2010-08-14 +3308202 Oolagh Bridge Oolagh Bridge 52.4175 -9.27361 P PPL IE M 16 0 144 Europe/Dublin 2010-08-14 +3308203 Glen Bridge Glen Bridge 52.4275 -9.24667 P PPL IE M 16 0 152 Europe/Dublin 2010-08-14 +3308204 Knockawauhig Knockawauhig 52.41639 -9.18972 T MT IE M 16 0 243 Europe/Dublin 2010-08-14 +3308205 Tulligoline North Tulligoline North 52.41583 -9.22667 L LCTY IE M 16 0 177 Europe/Dublin 2010-08-14 +3308206 Liagaun River Liagaun River 52.33333 -7.36667 H STM IE M 27 0 106 Europe/Dublin 1998-03-23 +3308207 Scogh Scogh 52.39889 -7.38472 P PPLL IE L 13 0 91 Europe/Dublin 2010-08-14 +3308208 Rathomin Bridge Rathomin Bridge 52.41028 -9.34 P PPL IE M 16 0 78 Europe/Dublin 2010-08-14 +3308209 Knocknalaglet Knocknalaglet 52.43917 -9.28194 T HLL IE M 16 0 157 Europe/Dublin 2010-08-14 +3308210 Knockathea Knockathea 52.4475 -9.31361 T HLL IE M 16 0 171 Europe/Dublin 2010-08-14 +3308211 Cortnagross Cortnagross 52.44944 -9.29889 L LCTY IE M 16 0 161 Europe/Dublin 2010-08-14 +3308212 Woodview Cottage Woodview Cottage 52.45944 -9.31 S HSE IE M 16 0 115 Europe/Dublin 2010-08-14 +3308213 Meenvline South Meenvline South 52.40028 -9.19361 L LCTY IE M 16 0 188 Europe/Dublin 2010-08-14 +3308214 Clash South Clash South 52.435 -9.23056 L LCTY IE M 16 0 176 Europe/Dublin 2010-08-14 +3308215 Keale Keale 52.44806 -9.19306 T MT IE M 16 0 236 Europe/Dublin 2010-08-14 +3308216 Dromarla Mountain Dromarla Mountain 52.44556 -9.23167 T MT IE M 16 0 166 Europe/Dublin 2010-08-14 +3308217 Clash North Clash North 52.45472 -9.24389 L LCTY IE M 16 0 151 Europe/Dublin 2010-08-14 +3308218 Templeathea West Templeathea West 52.4675 -9.28833 P PPL IE M 16 0 80 Europe/Dublin 2010-08-14 +3308219 Fairy Street Fairy Street 52.47472 -9.28528 L LCTY IE M 16 0 80 Europe/Dublin 2010-08-14 +3308220 Templeathea East Templeathea East 52.47667 -9.24667 L LCTY IE M 16 0 146 Europe/Dublin 2010-08-14 +3308221 Knocknagornagh Knocknagornagh 52.48833 -9.28472 L LCTY IE M 16 0 111 Europe/Dublin 2010-08-14 +3308222 Blane Bridge Blane Bridge 52.49333 -9.2875 P PPL IE M 16 0 134 Europe/Dublin 2010-08-14 +3308223 Glashapullagh Glashapullagh 52.50444 -9.27667 L LCTY IE M 16 0 150 Europe/Dublin 2010-08-14 +3308224 Knockaunroe Knockaunroe 52.4675 -9.21028 L LCTY IE M 16 0 148 Europe/Dublin 2010-08-14 +3308225 Inchabaun Inchabaun 52.39139 -9.18361 L LCTY IE M 16 0 149 Europe/Dublin 2010-08-14 +3308226 Garryduff House Garryduff House 52.43194 -9.13528 S HSEC IE M 16 0 184 Europe/Dublin 2010-08-14 +3308227 River Glory River Glory 52.53861 -7.28861 H STM IE L 13 0 60 Europe/Dublin 2010-08-14 +3308228 Knockanimpaha Knockanimpaha 52.45694 -9.15528 T MT IE M 16 0 265 Europe/Dublin 2010-08-14 +3308229 Glenduff Glenduff 52.46833 -9.17111 L LCTY IE M 16 0 142 Europe/Dublin 2010-08-14 +3308230 Ballindoughane Ballindoughane 52.47639 -9.16639 L LCTY IE M 16 0 148 Europe/Dublin 2010-08-14 +3308231 Knockaclugga Knockaclugga 52.50167 -9.19722 T HLL IE M 16 0 158 Europe/Dublin 2010-08-14 +3308232 Cloonlahard Lodge Cloonlahard Lodge 52.51194 -9.21556 S HSE IE M 16 0 155 Europe/Dublin 2010-08-14 +3308233 Spa Hill Spa Hill 52.52417 -9.22778 T HLL IE M 16 0 152 Europe/Dublin 2010-08-14 +3308234 Tooraree Tooraree 52.53417 -9.25278 P PPL IE M 16 0 139 Europe/Dublin 2010-08-14 +3308235 Glenagragara Glenagragara 52.51917 -9.29833 L LCTY IE M 16 0 152 Europe/Dublin 2010-08-14 +3308236 Tinnakilla Tinnakilla 52.54833 -9.23556 L LCTY IE M 16 0 116 Europe/Dublin 2010-08-14 +3308237 Cloonlahard Cloonlahard 52.53056 -9.21778 L LCTY IE M 16 0 144 Europe/Dublin 2010-08-14 +3308238 Ballydonohoe House Ballydonohoe House 52.57 -9.35444 S HSEC IE M 16 0 2 Europe/Dublin 2010-08-14 +3308239 Ballynagaul Ballynagaul 52.55583 -9.31028 L LCTY IE M 16 0 111 Europe/Dublin 2010-08-14 +3308240 Glencorbry River Glencorbry River 52.57222 -9.28167 H STM IE M 16 0 38 Europe/Dublin 2010-08-14 +3308241 Morreen Morreen 52.52889 -9.1825 L LCTY IE M 16 0 146 Europe/Dublin 2010-08-14 +3308242 Racecourse Cross Racecourse Cross 52.47694 -7.89111 P PPLL IE M 26 0 122 Europe/Dublin 2010-08-14 +3308243 Clashawley River Clashawley River 52.35 -7.46667 H STM IE M 26 0 64 Europe/Dublin 2010-08-14 +3308244 Cloonlahard Bridge Cloonlahard Bridge 52.54417 -9.20306 P PPL IE M 16 0 111 Europe/Dublin 2010-08-14 +3308245 Moneymohill Moneymohill 52.545 -9.16111 L LCTY IE M 16 0 128 Europe/Dublin 2010-08-14 +3308246 Cloonty Cloonty 52.56667 -9.15028 L LCTY IE M 16 0 121 Europe/Dublin 2010-08-14 +3308247 Prospect Hill Prospect Hill 52.57417 -9.23111 T HLL IE M 16 0 90 Europe/Dublin 2010-08-14 +3308248 Cloonoughter Cloonoughter 52.56694 -9.25333 L LCTY IE M 16 0 53 Europe/Dublin 2010-08-14 +3308249 Glashanaskee River Glashanaskee River 52.56528 -9.19167 H STM IE M 16 0 76 Europe/Dublin 2010-08-14 +3308250 Flean Beg Flean Beg 52.555 -9.23472 L LCTY IE M 16 0 100 Europe/Dublin 2010-08-14 +3308251 Caheragh House Caheragh House 52.57639 -9.27139 S HSEC IE M 16 0 15 Europe/Dublin 2010-08-14 +3308252 Killacolla House Killacolla House 52.58028 -9.23889 S HSEC IE M 16 0 70 Europe/Dublin 2010-08-14 +3308253 Jointen Cottage Jointen Cottage 52.57972 -9.1975 S HSE IE M 16 0 58 Europe/Dublin 2010-08-14 +3308254 Breagagh River Breagagh River 52.68611 -7.76472 H STM IE M 26 0 111 Europe/Dublin 2010-08-14 +3308255 Turnpike Turnpike 52.66972 -7.68361 P PPL IE M 26 0 133 Europe/Dublin 2010-08-14 +3308256 Islands Islands 52.73444 -7.59306 P PPLL IE L 13 0 145 Europe/Dublin 2010-08-14 +3308257 Lough Lough 52.76278 -7.62333 P PPLL IE L 13 0 146 Europe/Dublin 2010-08-14 +3308258 Cromoge River Cromoge River 52.69278 -7.93028 H STM IE M 26 0 85 Europe/Dublin 2010-08-14 +3308259 Kilteery Kilteery 52.58528 -9.23306 L LCTY IE M 16 0 36 Europe/Dublin 2010-08-14 +3308260 Rock Lodge Rock Lodge 52.59083 -9.23056 S HSE IE M 16 0 36 Europe/Dublin 2010-08-14 +3308261 Bolands Rock Bolands Rock 52.58722 -9.32583 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308262 Colman’s Point Colman's Point 52.58694 -9.30222 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308263 Mountshannon Woods Mountshannon Woods 52.6 -9.26833 V FRST IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308264 Knockroe Knockroe 52.60333 -9.28528 T HLL IE M 03 0 116 Europe/Dublin 2010-08-14 +3308265 Knockphutteen Knockphutteen 52.61083 -9.28889 L LCTY IE M 03 0 85 Europe/Dublin 2010-08-14 +3308266 Ballina Ballina 52.62111 -9.295 L LCTY IE M 03 0 34 Europe/Dublin 2010-08-14 +3308267 Lakyle Lakyle 52.59806 -9.32861 L LCTY IE M 03 0 2 Europe/Dublin 2010-08-14 +3308268 Saint Senan’s Well Saint Senan's Well 52.56778 -9.81833 H WLL IE M 11 0 1 Europe/Dublin 2010-08-14 +3308269 Quilty Quilty 52.58639 -9.80722 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308270 Cloonconeen Cloonconeen 52.58972 -9.75944 L LCTY IE M 03 0 23 Europe/Dublin 2010-08-14 +3308271 Rahona Rahona 52.58972 -9.72639 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308272 Feeard Feeard 52.59222 -9.81944 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308273 Oughterard Oughterard 52.59806 -9.82278 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308274 Movana River Movana River 52.60444 -9.70639 H STM IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308275 Croan Rock Croan Rock 52.62139 -9.79333 T RK IE M 03 0 5 Europe/Dublin 2010-08-14 +3308276 Oldtown Oldtown 52.63222 -9.75167 P PPL IE M 03 0 76 Europe/Dublin 2010-08-14 +3308277 Newtown Newtown 52.63417 -9.72944 P PPL IE M 03 0 58 Europe/Dublin 2010-08-14 +3308278 Breagliva Breagliva 52.62778 -9.71778 L LCTY IE M 03 0 43 Europe/Dublin 2010-08-14 +3308279 Lisheencrony Lisheencrony 52.62139 -9.70028 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308280 Illaunonearaun Illaunonearaun 52.65167 -9.73306 T ISL IE M 03 0 27 Europe/Dublin 2010-08-14 +3308281 Ouveg River Ouveg River 52.81278 -7.34639 H STM IE 00 0 86 Europe/Dublin 1998-03-23 +3308282 Liscrona Liscrona 52.61528 -9.675 L LCTY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308283 Furroor Furroor 52.64333 -9.67472 L LCTY IE M 03 0 47 Europe/Dublin 2010-08-14 +3308284 Grean Rock Grean Rock 52.66417 -9.70361 T RK IE M 03 0 65 Europe/Dublin 2010-08-14 +3308285 Tullaroe Tullaroe 52.64556 -9.62083 L LCTY IE M 03 0 10 Europe/Dublin 2010-08-14 +3308286 Terman Terman 52.6575 -9.61222 L LCTY IE M 03 0 7 Europe/Dublin 2010-08-14 +3308287 Querrin Querrin 52.63472 -9.59528 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +3308288 Querrin House Querrin House 52.62861 -9.59 S HSEC IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308289 Querrin Point Querrin Point 52.6275 -9.58361 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308290 Glanculloo Lodge Glanculloo Lodge 52.76778 -8.24722 S HSE IE M 26 0 258 Europe/Dublin 2010-08-14 +3308291 Newtown House Newtown House 52.63778 -9.585 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308292 Mount Pleasant Mount Pleasant 52.63694 -9.57056 T HLL IE M 03 0 1 Europe/Dublin 2010-08-14 +3308293 Eagles Nest Eagles Nest 52.75417 -8.28167 T SPUR IE M 26 0 674 Europe/Dublin 2010-08-14 +3308294 Farnane Farnane 52.64611 -8.425 P PPLL IE M 16 0 61 Europe/Dublin 2010-08-14 +3308295 Scilly Island Scilly Island 52.89472 -8.40778 T ISL IE M 26 0 55 Europe/Dublin 2010-08-14 +3308296 Castletown Castletown 52.87667 -8.38167 P PPL IE M 26 0 117 Europe/Dublin 2010-08-14 +3308297 Rahaniska Rahaniska 52.64944 -9.58611 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308298 Blackweir Bridge Blackweir Bridge 52.66694 -9.58833 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +3308299 Garraun Garraun 52.67444 -9.58444 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308300 Bishop’s Island Bishop's Island 52.67444 -9.6925 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +3308301 Diamond Rocks Diamond Rocks 52.68083 -9.67528 T RK IE M 03 0 22 Europe/Dublin 2010-08-14 +3308302 Duggerna Rock Duggerna Rock 52.68528 -9.66667 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308303 West End West End 52.67972 -9.67667 L LCTY IE M 03 0 22 Europe/Dublin 2010-08-14 +3308304 Ballyonan Ballyonan Ballyonan,Doonaghboy 52.66667 -9.69 L LCTY IE IE M 03 0 64 Europe/Dublin 2010-08-14 +3308305 Corbally Corbally 52.70917 -9.64639 L LCTY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308306 Lisluinaghan Lisluinaghan 52.68806 -9.625 L LCTY IE M 03 0 5 Europe/Dublin 2010-08-14 +3308307 Emlagh Emlagh 52.68111 -9.57222 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308308 Kildeema Cottage Kildeema Cottage 52.68806 -9.57361 S HSE IE M 03 0 1 Europe/Dublin 2010-08-14 +3308309 Tullaher Tullaher 52.69806 -9.58389 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308310 Carrowblough More Carrowblough More 52.70028 -9.61833 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308311 Einlagh Einlagh 52.68694 -9.53611 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308312 Farrihy Farrihy 52.70444 -9.60333 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +3308313 Farrihy Lough Farrihy Lough 52.71917 -9.6 H LK IE M 03 0 1 Europe/Dublin 2010-08-14 +3308314 Doonmore Doonmore 52.7275 -9.57361 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308315 Baltard House Baltard House 52.72667 -9.58944 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308316 Carrickfadda Carrickfadda 52.74972 -9.57917 T SLP IE M 03 0 1 Europe/Dublin 2010-08-14 +3308317 Lough Lee Lough Lee 54.53583 -8.05944 H LK IE U 06 0 426 Europe/Dublin 2010-08-14 +3308318 Lough Fisla Lough Fisla 54.52639 -8.06333 H LK IE U 06 0 456 Europe/Dublin 2010-08-14 +3308319 Tullynasiddagh Lough Tullynasiddagh Lough 54.53417 -8.02528 H LK IE 00 0 294 Europe/Dublin 1998-03-26 +3308320 Breesy Hill Breesy Hill 54.52139 -8.03639 T HLL IE U 06 0 835 331 Europe/Dublin 2010-08-14 +3308321 Roshin Lough Roshin Lough 54.52667 -8.115 H LK IE U 06 0 486 Europe/Dublin 2010-08-14 +3308322 Carricknahorna Lough Carricknahorna Lough 54.53667 -8.11222 H LK IE U 06 0 428 Europe/Dublin 2010-08-14 +3308323 Lough Acapple Lough Acapple 54.55194 -8.00361 H LK IE U 06 0 218 Europe/Dublin 2010-08-14 +3308324 Lough Narath Lough Narath 54.54972 -8.08639 H LK IE U 06 0 349 Europe/Dublin 2010-08-14 +3308325 Lough Mardal Lough Mardal 54.55583 -8.07667 H LK IE U 06 0 286 Europe/Dublin 2010-08-14 +3308326 Garvanagh Lough Garvanagh Lough 54.55278 -8.12167 H LK IE U 06 0 221 Europe/Dublin 2010-08-14 +3308327 Lough Gorman Lough Gorman 54.54667 -8.13222 H LK IE U 06 0 288 Europe/Dublin 2010-08-14 +3308328 Tully Tully 54.51194 -8.06611 P PPLL IE U 06 0 402 Europe/Dublin 2010-08-14 +3308329 Laheen Laheen 54.53778 -8.13889 P PPLL IE U 06 0 321 Europe/Dublin 2010-08-14 +3308330 Bradlieve Mountain Bradlieve Mountain 54.555 -8.04444 T HLL IE U 06 0 622 294 Europe/Dublin 2010-08-14 +3308331 Ardpattan Lough Ardpattan Lough 54.53583 -8.15861 H LK IE U 06 0 98 Europe/Dublin 2010-08-14 +3308332 Cashel Cashel 54.53694 -8.20194 P PPL IE U 06 0 83 Europe/Dublin 2010-08-14 +3308333 Rosscat Hill Rosscat Hill 54.54333 -8.17306 T HLL IE U 06 0 86 Europe/Dublin 2010-08-14 +3308334 Lurgan Carn Lurgan Carn 54.55361 -8.15861 T HLL IE U 06 0 91 Europe/Dublin 2010-08-14 +3308335 Balloghure Balloghure 54.55611 -8.13917 P PPLL IE U 06 0 161 Europe/Dublin 2010-08-14 +3308336 Carrickfad Carrickfad 54.56528 -8.22833 H RF IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308337 Durnesh Lake Durnesh Lake 54.5725 -8.18972 H LGN IE U 06 0 44 Europe/Dublin 2010-08-14 +3308338 Durnesh Durnesh 54.56972 -8.17389 P PPL IE U 06 0 55 Europe/Dublin 2010-08-14 +3308339 Dromore Dromore 54.57139 -8.155 P PPL IE U 06 0 50 Europe/Dublin 2010-08-14 +3308340 Birra Lough Birra Lough 54.57278 -8.16806 H LK IE U 06 0 55 Europe/Dublin 2010-08-14 +3308341 Connor Bridge Connor Bridge 54.57583 -8.135 P PPLL IE U 06 0 32 Europe/Dublin 2010-08-14 +3308342 Rockhill Rockhill 54.57083 -8.11306 P PPLL IE U 06 0 82 Europe/Dublin 2010-08-14 +3308343 Ballynacarrick Hill Ballynacarrick Hill 54.55861 -8.11639 T HLL IE U 06 0 148 Europe/Dublin 2010-08-14 +3308344 Glen Lough Glen Lough 54.56583 -8.08472 H LK IE U 06 0 189 Europe/Dublin 2010-08-14 +3308345 Pollnaranny Pollnaranny 54.57278 -8.02694 L LCTY IE U 06 0 179 Europe/Dublin 2010-08-14 +3308346 Shinnan Hill Shinnan Hill 54.57944 -8.04028 T HLL IE U 06 0 142 Europe/Dublin 2010-08-14 +3308347 Shannagh Shannagh 54.59278 -8.05417 P PPL IE U 06 0 112 Europe/Dublin 2010-08-14 +3308348 Truinman Lough Truinman Lough 54.60083 -8.08833 H LK IE U 06 0 66 Europe/Dublin 2010-08-14 +3308349 The Pullans The Pullans 54.58806 -8.075 L AREA IE U 06 0 102 Europe/Dublin 2010-08-14 +3308350 Drumoake Bridge Drumoake Bridge 54.58528 -8.13944 P PPLL IE U 06 0 20 Europe/Dublin 2010-08-14 +3308351 Drunickory Drunickory 54.59583 -8.13556 P PPLL IE U 06 0 7 Europe/Dublin 2010-08-14 +3308352 Bunlin Barr Bunlin Barr 54.58167 -8.20333 T BAR IE U 06 0 10 Europe/Dublin 2010-08-14 +3308353 Inishfad Inishfad 54.58194 -8.18889 T PEN IE U 06 0 25 Europe/Dublin 2010-08-14 +3308354 Mullanacross Mullanacross 54.58917 -8.16278 P PPL IE U 06 0 17 Europe/Dublin 2010-08-14 +3308355 Mullanasole Mullanasole 54.605 -8.135 P PPL IE U 06 0 4 Europe/Dublin 2010-08-14 +3308356 Murvagh House Murvagh House 54.60111 -8.14861 S HSEC IE U 06 0 1 Europe/Dublin 2010-08-14 +3308357 Bell’s Isle Bell's Isle 54.62056 -8.16222 T PEN IE U 06 0 1 Europe/Dublin 2010-08-14 +3308358 Rooney’s Island Rooney's Island 54.62361 -8.14139 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308359 Rossillybeg Rossillybeg 54.61472 -8.12472 P PPLL IE U 06 0 16 Europe/Dublin 2010-08-14 +3308360 Rossmore Rossmore 54.62611 -8.11889 P PPLL IE U 06 0 12 Europe/Dublin 2010-08-14 +3308361 Carrick Carrick 54.61028 -8.10833 P PPL IE U 06 0 35 Europe/Dublin 2010-08-14 +3308362 Carrick Bridge Carrick Bridge 54.61361 -8.08528 P PPLL IE U 06 0 57 Europe/Dublin 2010-08-14 +3308363 Raneany Bridge Raneany Bridge 54.62194 -8.06806 P PPLL IE U 06 0 66 Europe/Dublin 2010-08-14 +3308364 Killard Killard 52.74417 -9.555 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308365 Caherlean Caherlean 52.73833 -9.56944 P PPL IE M 03 0 1 Europe/Dublin 2010-08-14 +3308366 Mountrivers Bridge Mountrivers Bridge 52.73639 -9.49361 P PPL IE M 03 0 17 Europe/Dublin 2010-08-14 +3308367 Derryard Derryard 52.71472 -9.52972 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308368 Lochnavar House Lochnavar House 52.70583 -9.49333 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308369 White Strand White Strand 52.75917 -9.50389 T BCH IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308370 Coolnacreehaun Bridge Coolnacreehaun Bridge 52.73556 -9.49278 P PPL IE M 03 0 17 Europe/Dublin 2010-08-14 +3308371 Baurnahard Point Baurnahard Point 52.63083 -9.52917 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308372 Cappagh Pier Cappagh Pier 52.62778 -9.49944 S PIER IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308373 Carrowncalla Carrowncalla 52.65139 -9.53722 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308374 Moanmore Cottage Moanmore Cottage 52.65861 -9.50222 S HSE IE M 03 0 1 Europe/Dublin 2010-08-14 +3308375 Durha Cottage Durha Cottage 52.65444 -9.48 S HSE IE M 03 0 1 Europe/Dublin 2010-08-14 +3308376 Ballykett Ballykett 52.66194 -9.4675 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308377 Ballynote Ballynote 52.62389 -9.4625 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308378 Moyne Moyne 52.61639 -9.46472 L LCTY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308379 Moanmore Moanmore 52.67861 -9.50722 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308380 Kilrush House Kilrush House 52.63389 -9.46667 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308381 Ballyboyle Island Ballyboyle Island 54.63778 -8.14 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308382 Carter’s Bridge Carter's Bridge 54.64278 -8.09028 P PPLL IE U 06 0 40 Europe/Dublin 2010-08-14 +3308383 Drumbar Drumbar 54.64389 -8.06361 P PPLL IE U 06 0 59 Europe/Dublin 2010-08-14 +3308384 Moyne Bridge Moyne Bridge 54.63472 -8.05917 P PPLL IE U 06 0 66 Europe/Dublin 2010-08-14 +3308385 Murlas Bridge Murlas Bridge 54.65389 -8.13806 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308386 Ballyboyle Ballyboyle 54.64167 -8.14417 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308387 Rossdongan House Rossdongan House 54.64556 -8.13667 S HSEC IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308388 Kellymard Glebe House Kellymard Glebe House 54.65 -8.16222 S HSEC IE U 06 0 1 Europe/Dublin 2010-08-14 +3308389 Drummenny Bridge Drummenny Bridge 54.65944 -8.04917 P PPLL IE U 06 0 68 Europe/Dublin 2010-08-14 +3308390 Lackan Lackan 54.64028 -8.055 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3308391 Copan Copan 54.64583 -8.03056 P PPLL IE U 06 0 116 Europe/Dublin 2010-08-14 +3308392 Finmore Bridge Finmore Bridge 54.6475 -7.99778 P PPLL IE U 06 0 176 Europe/Dublin 2010-08-14 +3308393 Finmore Hill Finmore Hill 54.64583 -7.97694 T HLL IE U 06 0 223 Europe/Dublin 2010-08-14 +3308394 Finnabanes Finnabanes 54.67111 -8.03583 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3308395 Clogher Hill Clogher Hill 54.67278 -7.95333 T MT IE U 06 0 403 301 Europe/Dublin 2010-08-14 +3308396 Meenadreen Meenadreen 54.65611 -7.95333 T SPUR IE U 06 0 388 292 Europe/Dublin 2010-08-14 +3308397 Ballykillowen Hill Ballykillowen Hill 54.63194 -7.99444 T HLL IE U 06 0 156 Europe/Dublin 2010-08-14 +3308398 Golard Lough Golard Lough 54.62139 -8.04306 H LK IE U 06 0 122 Europe/Dublin 2010-08-14 +3308399 Lough Boyle Lough Boyle 54.62944 -7.9775 H LK IE U 06 0 167 Europe/Dublin 2010-08-14 +3308400 Lough Keeran Lough Keeran 54.61806 -7.97833 H LK IE U 06 0 154 Europe/Dublin 2010-08-14 +3308401 Lough Keagh Lough Keagh 54.64861 -8.05139 H LK IE U 06 0 67 Europe/Dublin 2010-08-14 +3308402 Cloaghnameal Cloaghnameal 54.66167 -7.94222 T MT IE U 06 0 439 305 Europe/Dublin 2010-08-14 +3308403 Croaghmeen Croaghmeen 54.68333 -7.97417 T SPUR IE U 06 0 287 286 Europe/Dublin 2010-08-14 +3308404 Lough Slug Lough Slug 54.6875 -7.95528 H LK IE U 06 0 304 Europe/Dublin 2010-08-14 +3308405 Lough Golagh Lough Golagh 54.68802 -7.93247 H LK IE U 06 0 289 Europe/Dublin 2010-08-14 +3308406 Lough Nabrackboy Lough Nabrackboy 54.69806 -7.93111 H LK IE U 06 0 304 Europe/Dublin 2010-08-14 +3308407 Lough Namaddy Lough Namaddy 54.70389 -7.93194 H LK IE U 06 0 307 Europe/Dublin 2010-08-14 +3308408 Loughnaweelagh Loughnaweelagh 54.69611 -7.92083 H LK IE U 06 0 307 Europe/Dublin 1998-03-26 +3308409 Kelly’s Bridge Kelly's Bridge 54.66139 -7.90194 L LCTY IE U 06 0 208 Europe/Dublin 2010-08-14 +3308410 Croaghkeadew Croaghkeadew 54.69639 -7.95889 T SPUR IE U 06 0 304 Europe/Dublin 2010-08-14 +3308411 Barnesmore Barnesmore 54.7175 -7.93917 T MT IE U 06 0 454 296 Europe/Dublin 2010-08-14 +3308412 Carrickaduff Hill Carrickaduff Hill 54.70722 -7.89806 T HLL IE U 06 0 299 Europe/Dublin 2010-08-14 +3308413 Ardeevin Ardeevin 54.69111 -8.01944 P PPL IE U 06 0 75 Europe/Dublin 2010-08-14 +3308414 Croaghmeen Croaghmeen 54.70611 -8.00222 T SPUR IE U 06 0 101 Europe/Dublin 2010-08-14 +3308415 Benson’s Hill Benson's Hill 54.71444 -8.01722 T SPUR IE U 06 0 146 Europe/Dublin 2010-08-14 +3308416 Garvagh Garvagh 54.7075 -8.02667 P PPLL IE U 06 0 83 Europe/Dublin 2010-08-14 +3308417 Croaghconnellagh Croaghconnellagh 54.72556 -7.96472 T MT IE U 06 0 525 176 Europe/Dublin 2010-08-14 +3308418 Lough Amincheen Lough Amincheen 54.72306 -7.99472 H LK IE U 06 0 269 Europe/Dublin 2010-08-14 +3308419 Barnes Bridge Barnes Bridge 54.73222 -7.93778 P PPLL IE U 06 0 304 Europe/Dublin 2010-08-14 +3308420 Barnes Lough Barnes Lough 54.7375 -7.96417 H LK IE U 06 0 269 Europe/Dublin 2010-08-14 +3308421 Lough Ankeeran Lough Ankeeran 54.73611 -8.01417 H LK IE U 06 0 309 Europe/Dublin 2010-08-14 +3308422 Lough Aderry Lough Aderry 54.73667 -8.02444 H LK IE U 06 0 269 Europe/Dublin 2010-08-14 +3308423 Greenan Bridge Greenan Bridge 54.72472 -8.04083 P PPLL IE U 06 0 66 Europe/Dublin 2010-08-14 +3308424 Edergole Bridge Edergole Bridge 54.72944 -8.04611 P PPLL IE U 06 0 99 Europe/Dublin 2010-08-14 +3308425 Corabber River Corabber River 54.72056 -8.04222 H STM IE U 06 0 62 Europe/Dublin 2010-08-14 +3308426 Bunadaowen River Bunadaowen River 54.73806 -7.87361 H STM IE U 06 0 169 Europe/Dublin 2010-08-14 +3308427 Croaghnagawna Croaghnagawna 54.73361 -7.90167 T SLP IE U 06 0 230 Europe/Dublin 2010-08-14 +3308428 Sruhangarve Bridge Sruhangarve Bridge 54.73389 -7.84333 L LCTY IE U 06 0 147 Europe/Dublin 2010-08-14 +3308429 Meenalughoge Hill Meenalughoge Hill 54.75028 -7.85944 T HLL IE U 06 0 205 153 Europe/Dublin 2010-08-14 +3308430 Croaghbrack Croaghbrack 54.76139 -7.94639 T MT IE U 06 0 308 Europe/Dublin 2010-08-14 +3308431 Croaghanierin Croaghanierin 54.77 -7.89333 T HLL IE U 06 0 190 Europe/Dublin 2010-08-14 +3308432 Barrack Hill Barrack Hill 54.75056 -7.92528 T HLL IE U 06 0 289 Europe/Dublin 2010-08-14 +3308433 Red Burn Bridge Red Burn Bridge 54.7525 -7.91083 L LCTY IE U 06 0 247 Europe/Dublin 2010-08-14 +3308434 Clogher Hill Clogher Hill 54.77056 -7.94611 T SPUR IE U 06 0 305 Europe/Dublin 2010-08-14 +3308435 Lough Sallagh Lough Sallagh 54.76972 -7.9125 H LK IE U 06 0 235 Europe/Dublin 2010-08-14 +3308436 Blackburn Bridge Blackburn Bridge 54.77583 -7.85361 P PPLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308437 Trusk Hill Trusk Hill 54.76361 -7.81222 T HLL IE U 06 0 159 Europe/Dublin 2010-08-14 +3308438 Taughboy Taughboy 54.75361 -7.83444 P PPLL IE U 06 0 158 Europe/Dublin 2010-08-14 +3308439 Kinletter Hill Kinletter Hill 54.7575 -7.78528 T HLL IE U 06 0 163 Europe/Dublin 2010-08-14 +3308440 Tievecloghoge Mountains Tievecloghoge Mountains 54.74722 -7.80611 T HLLS IE U 06 0 159 Europe/Dublin 2010-08-14 +3308441 Ardmore Hill Ardmore Hill 54.63778 -7.9075 T MT IE U 06 0 329 174 Europe/Dublin 2010-08-14 +3308442 Binna Hill Binna Hill 54.64722 -7.905 T HLL IE U 06 0 192 Europe/Dublin 2010-08-14 +3308443 Lough Mulreavy Lough Mulreavy 54.64861 -7.92556 H LK IE U 06 0 283 Europe/Dublin 2010-08-14 +3308444 Polldoo Hill Polldoo Hill 54.64444 -7.93889 T HLL IE U 06 0 281 Europe/Dublin 2010-08-14 +3308445 Oughtadreen Oughtadreen 54.63333 -7.94389 T MT IE U 06 0 153 Europe/Dublin 2010-08-14 +3308446 Croaghadalough Croaghadalough 54.61083 -7.93944 T HLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308447 Lough Barderg Lough Barderg 54.61639 -7.95 H LK IE U 06 0 152 Europe/Dublin 2010-08-14 +3308448 Flughra Hill Flughra Hill 54.61083 -7.98056 T HLL IE U 06 0 149 Europe/Dublin 2010-08-14 +3308449 Altamenagh Altamenagh 54.60306 -7.98417 S EST IE U 06 0 143 Europe/Dublin 2010-08-14 +3308450 Lough Sallagh Lough Sallagh 54.60056 -7.96556 H LK IE U 06 0 152 Europe/Dublin 2010-08-14 +3308451 Ballynakillew Mountain Ballynakillew Mountain 54.59528 -7.99222 T HLL IE U 06 0 138 Europe/Dublin 2010-08-14 +3308452 Lough Natragh Lough Natragh 54.58611 -7.98528 H LK IE U 06 0 149 Europe/Dublin 2010-08-14 +3308453 Meennaraha Meennaraha 54.57611 -7.96389 P PPLL IE U 06 0 140 Europe/Dublin 2010-08-14 +3308454 Farbreagagh Hill Farbreagagh Hill 54.58194 -7.94111 T HLL IE U 06 0 268 131 Europe/Dublin 2010-08-14 +3308455 Loughfad Hill Loughfad Hill 54.58556 -7.92167 T HLL IE U 06 0 280 137 Europe/Dublin 2010-08-14 +3308456 Crockadrin Crockadrin 54.57722 -7.88917 T HLL IE U 06 0 213 154 Europe/Dublin 2010-08-14 +3308457 Lough Unan Lough Unan 54.58972 -7.87139 H LK IE U 06 0 156 Europe/Dublin 2010-08-14 +3308458 Lough Monica Lough Monica 54.6125 -7.82361 H LK IE U 06 0 234 Europe/Dublin 2010-08-14 +3308459 Crocknacunny Crocknacunny 54.62333 -7.82861 T HLL IE U 06 0 253 193 Europe/Dublin 2010-08-14 +3308460 Grousehall HIll Grousehall HIll 54.61417 -7.78639 T HLL IE U 06 0 258 Europe/Dublin 2010-08-14 +3308461 Crockkinnagoe Crockkinnagoe Crockinnagoe,Crockkinnagoe 54.59889 -7.80833 T MT IE U 06 0 363 269 Europe/Dublin 2010-08-14 +3308462 Ferry House Ferry House 54.60583 -7.85806 S HSEC IE U 06 0 153 Europe/Dublin 2010-08-14 +3308463 Owenboy Burn Owenboy Burn 54.64278 -7.81389 H STM IE 00 0 116 Europe/Dublin 1998-03-26 +3308464 Lough Veenagreane Lough Veenagreane 54.61444 -7.72194 H LK IE U 06 0 149 Europe/Dublin 2010-08-14 +3308465 Tullylinn Tullylinn 54.62528 -7.71556 P PPLL IE U 06 0 161 Europe/Dublin 2010-08-14 +3308466 Tullylark Bridge Tullylark Bridge 54.58389 -7.78333 P PPLL IE U 06 0 242 Europe/Dublin 2010-08-14 +3308467 Ominey River Ominey River 54.56194 -7.81972 H STM IE U 06 0 83 Europe/Dublin 2010-08-14 +3308468 Lemacraig Lemacraig 54.56917 -7.85528 P PPLL IE U 06 0 138 Europe/Dublin 2010-08-14 +3308469 Aghalough Aghalough 54.56639 -7.84167 P PPLL IE U 06 0 103 Europe/Dublin 2010-08-14 +3308470 Lough Navarnan Lough Navarnan 54.55611 -7.8775 H LK IE U 06 0 112 Europe/Dublin 2010-08-14 +3308471 Drumgun Lough Drumgun Lough 54.54972 -7.865 H LK IE U 06 0 76 Europe/Dublin 2010-08-14 +3308472 Bannus Lough Bannus Lough 54.54111 -7.87361 H LK IE U 06 0 67 Europe/Dublin 2010-08-14 +3308473 Lough Namnamurrive Lough Namnamurrive 54.55722 -7.91528 H LK IE U 06 0 243 Europe/Dublin 2010-08-14 +3308474 Glenmore Bridge Glenmore Bridge 54.55722 -7.89667 P PPLL IE U 06 0 120 Europe/Dublin 2010-08-14 +3308475 Mountain Lodge Mountain Lodge 54.56389 -7.91583 S HSE IE U 06 0 227 Europe/Dublin 2010-08-14 +3308476 Lough Ultan Lough Ultan 54.5675 -7.89472 H LK IE U 06 0 156 Europe/Dublin 2010-08-14 +3308477 Tullykinroe Tullykinroe 54.54 -7.90667 P PPLL IE U 06 0 111 Europe/Dublin 2010-08-14 +3308478 Lough Laghtowen Lough Laghtowen 54.55639 -7.92611 H LK IE U 06 0 302 Europe/Dublin 2010-08-14 +3308479 Aguse Loughs Aguse Loughs 54.56528 -7.94694 H LKS IE U 06 0 188 Europe/Dublin 2010-08-14 +3308480 The Black Gap The Black Gap 54.56667 -7.92667 T GAP IE U 06 0 160 Europe/Dublin 2010-08-14 +3308481 Tamur Hill Tamur Hill 54.56167 -7.97222 T HLL IE U 06 0 215 Europe/Dublin 2010-08-14 +3308482 Lough Awaddy Lough Awaddy 54.53194 -7.93861 H LK IE 00 0 413 Europe/Dublin 1998-03-26 +3308483 Lough Rushen Lough Rushen Lough Rushen 54.54278 -7.97167 H LK IE GB,IE 00 0 291 Europe/Dublin 2009-03-07 +3308484 Lough Shivnagh Lough Shivnagh 54.55694 -7.98139 H LK IE U 06 0 252 Europe/Dublin 2010-08-14 +3308485 Tully Tully 54.55528 -8.00639 P PPLL IE U 06 0 218 Europe/Dublin 2010-08-14 +3308486 Lough Glanlagh More Lough Glanlagh More 54.56944 -8.01278 H LK IE U 06 0 177 Europe/Dublin 2010-08-14 +3308487 Glaskeeragh Lough Glaskeeragh Lough 54.56472 -8 H LK IE U 06 0 211 Europe/Dublin 2010-08-14 +3308488 Curragh Curragh 54.72222 -7.72972 L LCTY IE U 06 0 188 Europe/Dublin 2010-08-14 +3308489 Cornabrogue Cornabrogue 54.75333 -7.68861 P PPLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308490 Meenawogary Meenawogary 54.73861 -7.70944 P PPLL IE U 06 0 154 Europe/Dublin 2010-08-14 +3308491 Meenagolan Meenagolan 54.73389 -7.74556 P PPL IE U 06 0 148 Europe/Dublin 2010-08-14 +3308492 Lismullyduff Mountain Lismullyduff Mountain 54.74639 -7.74528 T HLL IE U 06 0 265 153 Europe/Dublin 2010-08-14 +3308493 Gortahork Gortahork 54.75889 -7.75056 P PPLL IE U 06 0 157 Europe/Dublin 2010-08-14 +3308494 Corraffrin Corraffrin 54.77083 -7.77111 P PPLL IE U 06 0 129 Europe/Dublin 2010-08-14 +3308496 Monellan House Monellan House 54.77111 -7.70056 S HSEC IE U 06 0 82 Europe/Dublin 2010-08-14 +3308497 Mounthall House Mounthall House 54.77778 -7.69694 S HSEC IE U 06 0 63 Europe/Dublin 2010-08-14 +3308498 Cross Roads Cross Roads 54.78583 -7.69056 P PPL IE U 06 0 46 Europe/Dublin 2010-08-14 +3308499 Kilcaddan Kilcaddan 54.79306 -7.71417 P PPLL IE U 06 0 48 Europe/Dublin 2010-08-14 +3308500 Woodlands Woodlands 54.79111 -7.73167 S EST IE U 06 0 75 Europe/Dublin 2010-08-14 +3308501 Navenny Navenny 54.79556 -7.77278 P PPLL IE U 06 0 58 Europe/Dublin 2010-08-14 +3308502 Rockfield Rockfield 54.7925 -7.76167 S EST IE U 06 0 59 Europe/Dublin 2010-08-14 +3308503 Burn Daurnett Bridge Burn Daurnett Bridge 54.7925 -7.80611 P PPLL IE U 06 0 62 Europe/Dublin 2010-08-14 +3308504 Ballymacrinan Bay Ballymacrinan Bay 52.61139 -9.44778 H BAY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308505 Clooneylissaun Clooneylissaun 52.62583 -9.44222 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308506 Saint Senah’s Lough Saint Senah's Lough 52.63111 -9.40611 H LK IE M 03 0 4 Europe/Dublin 2010-08-14 +3308507 Molougha Molougha 52.63611 -9.42361 L LCTY IE M 03 0 3 Europe/Dublin 2010-08-14 +3308508 Kilcarroll Kilcarroll 52.64 -9.42722 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308509 Carrowfree Carrowfree 52.64806 -9.41722 L LCTY IE M 03 0 5 Europe/Dublin 2010-08-14 +3308510 Cappry Cappry 54.8 -7.8125 P PPLL IE U 06 0 66 Europe/Dublin 2010-08-14 +3308511 Ballykett Fair Green Ballykett Fair Green 52.64306 -9.45028 L FLD IE M 03 0 1 Europe/Dublin 2010-08-14 +3308512 Burn Daurnett Burn Daurnett 54.79611 -7.77778 H STM IE U 06 0 54 Europe/Dublin 2010-08-14 +3308513 Moyadda Moyadda 52.6525 -9.44194 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308514 Knockerry Knockerry 52.6525 -9.39278 L LCTY IE M 03 0 16 Europe/Dublin 2010-08-14 +3308515 Doonnagarroge Castle Doonnagarroge Castle 52.62278 -9.39639 S CSTL IE M 03 0 2 Europe/Dublin 2010-08-14 +3308516 Aghaveagh Aghaveagh 54.79667 -7.88528 P PPLL IE U 06 0 139 Europe/Dublin 2010-08-14 +3308517 Garrabane Hill Garrabane Hill 54.78722 -7.91583 T HLL IE U 06 0 205 Europe/Dublin 2010-08-14 +3308518 Magheracloigh Magheracloigh 54.78528 -7.95083 T SPUR IE U 06 0 232 Europe/Dublin 2010-08-14 +3308519 Ballard Ballard 54.80833 -7.96722 P PPLL IE U 06 0 150 Europe/Dublin 2010-08-14 +3308520 Tullabrack Lough Tullabrack Lough 52.68028 -9.45083 H LK IE M 03 0 3 Europe/Dublin 2010-08-14 +3308521 Gowerhass Gowerhass 52.67556 -9.43917 L LCTY IE M 03 0 7 Europe/Dublin 2010-08-14 +3308522 Letterkilley Letterkilley 54.79444 -7.99639 P PPL IE U 06 0 176 Europe/Dublin 2010-08-14 +3308523 Tullagower Tullagower 52.67306 -9.41333 L LCTY IE M 03 0 15 Europe/Dublin 2010-08-14 +3308524 Owengarve River Owengarve River 54.795 -7.98083 H STM IE U 06 0 141 Europe/Dublin 2010-08-14 +3308525 Carrowniska Carrowniska 52.65444 -9.34444 L LCTY IE M 03 0 18 Europe/Dublin 2010-08-14 +3308526 Priesttown Priesttown 54.81583 -7.95694 P PPL IE U 06 0 165 Europe/Dublin 2010-08-14 +3308527 Bleanmore Bleanmore 52.64889 -9.34611 L LCTY IE M 03 0 11 Europe/Dublin 2010-08-14 +3308528 Commeen Commeen 54.81917 -7.97528 P PPL IE U 06 0 115 Europe/Dublin 2010-08-14 +3308529 Tarmon Tarmon 52.64972 -9.37389 L LCTY IE M 03 0 15 Europe/Dublin 2010-08-14 +3308530 Aughanloge Bridge Aughanloge Bridge 52.64778 -9.31583 P PPL IE M 03 0 2 Europe/Dublin 2010-08-14 +3308531 Tonduff Tonduff 54.8275 -7.94778 P PPLL IE U 06 0 81 Europe/Dublin 2010-08-14 +3308532 Mullaghan Hill Mullaghan Hill 54.83639 -7.91778 T HLL IE U 06 0 113 Europe/Dublin 2010-08-14 +3308533 Burrane House Burrane House 52.61833 -9.3575 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308534 Crocknahamid Crocknahamid 54.83778 -7.9925 T MT IE U 06 0 386 320 Europe/Dublin 2010-08-14 +3308535 Binvoran Binvoran 52.67833 -9.31111 L LCTY IE M 03 0 26 Europe/Dublin 2010-08-14 +3308536 Tallycreen Bridge Tallycreen Bridge 52.67361 -9.30944 P PPL IE M 03 0 21 Europe/Dublin 2010-08-14 +3308537 Caherbane House Caherbane House 52.63833 -9.30083 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308538 Thornberry House Thornberry House 52.64917 -9.26889 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308539 Derrygeena Lough Derrygeena Lough 52.65278 -9.2525 H LK IE M 03 0 10 Europe/Dublin 2010-08-14 +3308540 Derrynaleeka Derrynaleeka 52.66056 -9.28556 L LCTY IE M 03 0 11 Europe/Dublin 2010-08-14 +3308541 Derriniddane Derriniddane 52.66694 -9.2625 L LCTY IE M 03 0 21 Europe/Dublin 2010-08-14 +3308542 New Bridge New Bridge 52.65389 -9.235 P PPL IE M 03 0 21 Europe/Dublin 2010-08-14 +3308543 Ballyartney House Ballyartney House 52.63167 -9.25028 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3308544 Slievenlooney Slievenlooney 52.62694 -9.23111 L LCTY IE M 03 0 6 Europe/Dublin 2010-08-14 +3308545 Coleen Bridge Coleen Bridge 52.62139 -9.20944 L LCTY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308546 Gortnagan Lough Gortnagan Lough 52.67917 -9.26139 H LK IE M 03 0 27 Europe/Dublin 2010-08-14 +3308547 Croony Bridge Croony Bridge 52.68972 -9.23167 P PPL IE M 03 0 57 Europe/Dublin 2010-08-14 +3308548 Cloontrinagh Cloontrinagh 52.67861 -9.23667 L LCTY IE M 03 0 43 Europe/Dublin 2010-08-14 +3308549 Derrynageeha Derrynageeha 52.6875 -9.27778 L LCTY IE M 03 0 29 Europe/Dublin 2010-08-14 +3308550 Burrenfadda Burrenfadda 52.70028 -9.20972 L LCTY IE M 03 0 85 Europe/Dublin 2010-08-14 +3308551 Goulbourne Bridge Goulbourne Bridge 52.70222 -9.30167 P PPL IE M 03 0 30 Europe/Dublin 2010-08-14 +3308552 Corraige Corraige 52.70167 -9.2725 L LCTY IE M 03 0 37 Europe/Dublin 2010-08-14 +3308553 Cranny Cranny 52.69389 -9.23333 T RK IE M 03 0 65 Europe/Dublin 2010-08-14 +3308554 Owendoo River Owendoo River 54.78639 -7.9775 H STM IE U 06 0 151 Europe/Dublin 2010-08-14 +3308555 Cronloughan Cronloughan 54.77583 -8.02194 H LK IE U 06 0 257 Europe/Dublin 2010-08-14 +3308556 Croaghbarnes Croaghbarnes 54.76361 -8.00639 T RDGE IE U 06 0 340 Europe/Dublin 2010-08-14 +3308557 Glascarns Hill Glascarns Hill 54.77583 -8.0325 T SPUR IE U 06 0 275 Europe/Dublin 2010-08-14 +3308558 Croaghaniwore Croaghaniwore 54.75083 -7.99611 T MT IE U 06 0 546 432 Europe/Dublin 2010-08-14 +3308559 Croaghnageer Croaghnageer 54.74528 -7.97278 T MT IE U 06 0 546 330 Europe/Dublin 2010-08-14 +3308560 Effernagh River Effernagh River 54.79167 -8.05944 H STM IE U 06 0 231 Europe/Dublin 2010-08-14 +3308561 Mullaghnadreesruhan Mullaghnadreesruhan 54.755 -8.05056 L LCTY IE U 06 0 492 Europe/Dublin 2010-08-14 +3308562 Lough Gulladuff Lough Gulladuff 54.7425 -8.04806 H LK IE U 06 0 313 Europe/Dublin 2010-08-14 +3308563 Eglish River Eglish River 54.71444 -8.13972 H STM IE U 06 0 132 Europe/Dublin 2010-08-14 +3308564 Clady River Clady River 54.70722 -8.05056 H STM IE U 06 0 59 Europe/Dublin 2010-08-14 +3308565 Banagher Lough Banagher Lough 54.70389 -8.08806 H LK IE U 06 0 218 Europe/Dublin 2010-08-14 +3308566 Banagher Hill Banagher Hill 54.715 -8.0875 T MT IE U 06 0 386 279 Europe/Dublin 2010-08-14 +3308567 Leagan Hill Leagan Hill 54.7 -8.10139 T HLL IE U 06 0 202 Europe/Dublin 2010-08-14 +3308568 Lackcrom Lackcrom 54.70333 -8.11778 P PPLL IE U 06 0 189 Europe/Dublin 2010-08-14 +3308569 Meenataggart Meenataggart 54.72028 -8.12417 P PPL IE U 06 0 190 Europe/Dublin 2010-08-14 +3308570 Limestone Brook Bridge Limestone Brook Bridge 54.68528 -8.07083 P PPLL IE U 06 0 54 Europe/Dublin 2010-08-14 +3308571 Winterhill Winterhill 54.6775 -8.09111 P PPLL IE U 06 0 42 Europe/Dublin 2010-08-14 +3308572 Deningornan Bridge Deningornan Bridge 54.67806 -8.10472 P PPLL IE U 06 0 83 Europe/Dublin 2010-08-14 +3308573 Red Bridges Red Bridges 54.66472 -8.13056 P PPL IE U 06 0 47 Europe/Dublin 2010-08-14 +3308574 Ballydevill Ballydevill 54.66944 -8.14556 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3308575 Tullabrack Tullabrack 52.68611 -9.47833 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3308576 Dromore Dromore 54.65639 -8.18306 P PPLL IE U 06 0 13 Europe/Dublin 2010-08-14 +3308577 Altadoo Altadoo 54.68222 -8.17167 P PPLL IE U 06 0 86 Europe/Dublin 2010-08-14 +3308578 Dangananella Dangananella 52.70889 -9.45444 L LCTY IE M 03 0 57 Europe/Dublin 2010-08-14 +3308579 Churchtown Churchtown 52.71583 -9.39833 L LCTY IE M 03 0 28 Europe/Dublin 2010-08-14 +3308580 Cahercannavan Cahercannavan 52.71472 -9.37111 L LCTY IE M 03 0 34 Europe/Dublin 2010-08-14 +3308581 Drumboarn Bridge Drumboarn Bridge 54.69722 -8.15528 P PPLL IE U 06 0 103 Europe/Dublin 2010-08-14 +3308582 Teernacloghane Teernacloghane 52.70139 -9.41111 L LCTY IE M 03 0 15 Europe/Dublin 2010-08-14 +3308583 Letterbarra Letterbarra 54.69056 -8.18167 P PPL IE U 06 0 75 Europe/Dublin 2010-08-14 +3308584 Clooncullin Bridge Clooncullin Bridge 52.69917 -9.38722 P PPL IE M 03 0 21 Europe/Dublin 2010-08-14 +3308585 Sruell River Sruell River 54.69333 -8.15833 H STM IE U 06 0 103 Europe/Dublin 2010-08-14 +3308586 Derrycrossaun Bridge Derrycrossaun Bridge 52.69889 -9.34472 P PPL IE M 03 0 27 Europe/Dublin 2010-08-14 +3308587 Leitrim Leitrim 52.72972 -9.38556 L LCTY IE M 03 0 52 Europe/Dublin 2010-08-14 +3308588 Cahermurphy Cahermurphy 52.73861 -9.35972 L LCTY IE M 03 0 55 Europe/Dublin 2010-08-14 +3308589 Cloghaun Cloghaun 52.76361 -9.3925 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3308590 Knocknahila Knocknahila 52.7725 -9.38278 L LCTY IE M 03 0 80 Europe/Dublin 2010-08-14 +3308591 Cahermurphy Cahermurphy 52.75806 -9.35 L LCTY IE M 03 0 77 Europe/Dublin 2010-08-14 +3308592 Gortaheera Gortaheera 52.76361 -9.3325 P PPL IE M 03 0 146 Europe/Dublin 2010-08-14 +3308593 Castlepark House Castlepark House 52.7475 -9.32444 S HSEC IE M 03 0 77 Europe/Dublin 2010-08-14 +3308594 Murles Point Murles Point 54.60639 -8.2725 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308595 Knockbrack Knockbrack 52.75361 -9.31083 L LCTY IE M 03 0 110 Europe/Dublin 2010-08-14 +3308596 Blind Rock Blind Rock 54.61778 -8.23222 T RK IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308597 Lough Nacrag Lough Nacrag 52.76972 -9.30194 H LK IE M 03 0 152 Europe/Dublin 2010-08-14 +3308598 Doorin Rock Doorin Rock 54.62111 -8.24417 T RK IE U 06 0 1 Europe/Dublin 2010-08-14 +3308599 Greygrove Greygrove 52.74 -9.27833 L LCTY IE M 03 0 79 Europe/Dublin 2010-08-14 +3308600 Tullyvoos Tullyvoos 54.61583 -8.27778 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308601 Drumgorman Drumgorman 54.63472 -8.27083 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308602 Lough Acrow Lough Acrow 52.7625 -9.19528 H LK IE M 03 0 159 Europe/Dublin 2010-08-14 +3308603 Raneely Raneely 54.60917 -8.29278 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308604 Drumconor Drumconor 54.64444 -8.25556 P PPLL IE U 06 0 14 Europe/Dublin 2010-08-14 +3308605 Sorrel Island Bridge Sorrel Island Bridge 52.76472 -9.2375 P PPL IE M 03 0 126 Europe/Dublin 2010-08-14 +3308606 Furroor Furroor 52.74583 -9.22611 L LCTY IE M 03 0 96 Europe/Dublin 2010-08-14 +3308607 Lough Achryane Lough Achryane 52.72722 -9.20778 H LK IE M 03 0 102 Europe/Dublin 2010-08-14 +3308608 Lough More Lough More 52.7275 -9.29611 H LK IE M 03 0 83 Europe/Dublin 2010-08-14 +3308609 Knockmore Knockmore 52.73083 -9.30111 L LCTY IE M 03 0 83 Europe/Dublin 2010-08-14 +3308610 Ballydureen Ballydureen 52.71833 -9.26028 L LCTY IE M 03 0 56 Europe/Dublin 2010-08-14 +3308611 Greygrove River Greygrove River 52.69639 -9.26833 H STM IE M 03 0 32 Europe/Dublin 2010-08-14 +3308612 Buncronan Port Buncronan Port 54.63583 -8.275 H COVE IE U 06 0 1 Europe/Dublin 2010-08-14 +3308613 Clover Hill Clover Hill 54.6475 -8.27806 S EST IE U 06 0 1 Europe/Dublin 2010-08-14 +3308614 The Hall The Hall 54.64139 -8.19111 S HSEC IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308615 Saint Peter’s Lough Saint Peter's Lough 54.6525 -8.20861 H LK IE U 06 0 208 Europe/Dublin 2010-08-14 +3308616 Glencoagh Lough Glencoagh Lough 54.65889 -8.21083 H LK IE U 06 0 193 Europe/Dublin 2010-08-14 +3308617 Drumnalost Drumnalost 54.67361 -8.17667 T HLL IE U 06 0 213 Europe/Dublin 2010-08-14 +3308618 Bonnyglen Bonnyglen 54.66306 -8.25778 P PPLL IE U 06 0 21 Europe/Dublin 2010-08-14 +3308619 Eanymore Bridge Eanymore Bridge 54.68139 -8.24 P PPL IE U 06 0 48 Europe/Dublin 2010-08-14 +3308620 Drumagraa Bridge Drumagraa Bridge 54.68806 -8.21306 P PPLL IE U 06 0 59 Europe/Dublin 2010-08-14 +3308621 Eanybeg Bridge Eanybeg Bridge 54.68806 -8.23944 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3308622 Ballymacahil Hill Ballymacahil Hill 54.69028 -8.25194 T HLL IE U 06 0 33 Europe/Dublin 2010-08-14 +3308623 Carraduffy Carraduffy 54.68861 -8.27861 P PPL IE U 06 0 120 Europe/Dublin 2010-08-14 +3308624 Killin Hill Killin Hill 54.7025 -8.27806 T HLL IE U 06 0 163 Europe/Dublin 2010-08-14 +3308625 Tullynagran Tullynagran 54.70694 -8.17167 T HLL IE U 06 0 98 Europe/Dublin 2010-08-14 +3308626 Oughtadoony Oughtadoony 54.70833 -8.19806 T HLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3308627 Camlargy Lough Camlargy Lough 54.71222 -8.20917 H LK IE U 06 0 86 Europe/Dublin 2010-08-14 +3308628 Lettermore Lettermore 54.71167 -8.24222 P PPLL IE U 06 0 117 Europe/Dublin 2010-08-14 +3308629 Tullynaglack Tullynaglack 54.72 -8.2125 P PPLL IE U 06 0 151 Europe/Dublin 2010-08-14 +3308630 Disert Disert 54.73861 -8.18917 S EST IE U 06 0 180 Europe/Dublin 2010-08-14 +3308631 Cronagass Cronagass 54.72611 -8.24194 P PPLL IE U 06 0 233 Europe/Dublin 2010-08-14 +3308632 Carn Lough Carn Lough 54.74528 -8.20083 H LK IE U 06 0 328 Europe/Dublin 2010-08-14 +3308633 Meenaguse Lough Meenaguse Lough 54.74111 -8.15139 H LK IE U 06 0 235 Europe/Dublin 2010-08-14 +3308634 Meenaguse Meenaguse 54.74778 -8.14611 S FRM IE U 06 0 329 Europe/Dublin 2010-08-14 +3308635 Carnaween Carnaween 54.75083 -8.195 T MT IE U 06 0 1213 453 Europe/Dublin 2010-08-14 +3308636 Lavagh More Lavagh More 54.7675 -8.1 T HLL IE U 06 0 920 459 Europe/Dublin 2010-08-14 +3308637 Lough Nabrackbautia Lough Nabrackbautia 54.76278 -8.12056 H LK IE U 06 0 553 Europe/Dublin 2010-08-14 +3308638 Lough Anarget Lough Anarget 54.76417 -8.13944 H LK IE U 06 0 465 Europe/Dublin 2010-08-14 +3308639 Carrigan Carrigan 54.78056 -8.1425 T SPUR IE U 06 0 344 Europe/Dublin 2010-08-14 +3308640 Crocklougha Crocklougha 54.78 -8.17528 T HLL IE U 06 0 309 218 Europe/Dublin 2010-08-14 +3308641 Crockbrack Crockbrack 54.77583 -8.19222 T HLL IE U 06 0 171 Europe/Dublin 2010-08-14 +3308642 Meenagushoge Hill Meenagushoge Hill 54.765 -8.21278 T HLL IE U 06 0 261 Europe/Dublin 2010-08-14 +3308643 Lough Shivnagh Lough Shivnagh 54.76889 -8.20028 H LK IE U 06 0 218 Europe/Dublin 2010-08-14 +3308644 Croaghloughanna Croaghloughanna 54.77889 -8.22972 T HLL IE U 06 0 150 Europe/Dublin 2010-08-14 +3308645 Doobin Doobin 54.75778 -8.22806 T HLL IE U 06 0 271 Europe/Dublin 2010-08-14 +3308646 Tullynadoobin Tullynadoobin 54.75583 -8.25944 T HLL IE U 06 0 208 Europe/Dublin 2010-08-14 +3308647 Lough Anna Lough Anna 54.78111 -8.23639 H LK IE U 06 0 145 Europe/Dublin 2010-08-14 +3308648 Lough Nasnahida Lough Nasnahida 54.76611 -8.24278 H LK IE U 06 0 219 Europe/Dublin 2010-08-14 +3308649 Crockbrack Crockbrack 54.77361 -8.28778 T HLL IE U 06 0 136 Europe/Dublin 2010-08-14 +3308650 Mullanmore Mullanmore 54.79278 -8.23778 P PPL IE U 06 0 96 Europe/Dublin 2010-08-14 +3308651 Meenachallow Meenachallow 54.78333 -8.27167 P PPLL IE U 06 0 106 Europe/Dublin 2010-08-14 +3308652 Kilrean Kilrean 54.78056 -8.3175 P PPL IE U 06 0 78 Europe/Dublin 2010-08-14 +3308653 Mullenieran Bridge Mullenieran Bridge 54.78972 -8.28889 P PPLL IE U 06 0 74 Europe/Dublin 2010-08-14 +3308654 Tullykonwar Tullykonwar 54.7575 -8.30389 P PPLL IE U 06 0 153 Europe/Dublin 2010-08-14 +3308655 Lough Nillan Lough Nillan 54.7475 -8.31056 H LK IE U 06 0 152 Europe/Dublin 2010-08-14 +3308656 Sir Albert’s Bridge Sir Albert's Bridge 54.73556 -8.29111 L LCTY IE U 06 0 153 Europe/Dublin 2010-08-14 +3308657 Bolooghra Bolooghra 52.71611 -9.2125 L LCTY IE M 03 0 108 Europe/Dublin 2010-08-14 +3308658 Craggaknock Craggaknock 52.77361 -9.4775 L LCTY IE M 03 0 24 Europe/Dublin 2010-08-14 +3308659 Lough Donnell Lough Donnell 52.78028 -9.47778 H LK IE M 03 0 15 Europe/Dublin 2010-08-14 +3308660 Knocknahila Bridge Knocknahila Bridge 52.78361 -9.3975 P PPL IE M 03 0 54 Europe/Dublin 2010-08-14 +3308661 Ballymackea Ballymackea 52.81 -9.43083 L LCTY IE M 03 0 85 Europe/Dublin 2010-08-14 +3308662 Seal Rock Seal Rock 52.82222 -9.51972 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308663 Carrickaneelwar Carrickaneelwar 52.82417 -9.50806 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308664 Grundel Rock Grundel Rock 52.80111 -9.56167 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308665 Emlagh Point Emlagh Point 52.82389 -9.46111 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308666 Ahnagh Cross Ahnagh Cross 52.82083 -9.41667 P PPL IE M 03 0 79 Europe/Dublin 2010-08-14 +3308667 Drehidnaraga Bridge Drehidnaraga Bridge 52.80611 -9.38139 P PPL IE M 03 0 65 Europe/Dublin 2010-08-14 +3308668 Moyglass Bridge Moyglass Bridge 52.79667 -9.36583 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +3308669 Kildeema River Kildeema River 52.8325 -9.41389 H STM IE M 03 0 68 Europe/Dublin 2010-08-14 +3308670 Doonogan House Doonogan House 52.80194 -9.37694 S HSEC IE M 03 0 65 Europe/Dublin 2010-08-14 +3308671 Doolough Lodge Doolough Lodge 52.78444 -9.34972 S HSE IE M 03 0 92 Europe/Dublin 2010-08-14 +3308672 Aughaveema River Aughaveema River 52.80111 -9.39056 H STM IE M 03 0 63 Europe/Dublin 2010-08-14 +3308673 Cleedagh Bridge Cleedagh Bridge 52.85889 -9.42778 P PPL IE M 03 0 14 Europe/Dublin 2010-08-14 +3308674 Drumderry Rock Drumderry Rock 52.8875 -9.43778 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308675 Green Island Green Island 52.89194 -9.415 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3308676 Kilfarboy House Kilfarboy House 52.87917 -9.36333 S HSEC IE M 03 0 138 Europe/Dublin 2010-08-14 +3308677 Ballynew Bridge Ballynew Bridge 52.86167 -9.35361 P PPL IE M 03 0 148 Europe/Dublin 2010-08-14 +3308678 Hogan’s Bridge Hogan's Bridge 52.84583 -9.37556 P PPL IE M 03 0 72 Europe/Dublin 2010-08-14 +3308679 Ballinphonta Ballinphonta 52.86694 -9.39028 L LCTY IE M 03 0 69 Europe/Dublin 2010-08-14 +3308680 Bealoughter Bealoughter 52.89222 -9.37 L LCTY IE M 03 0 92 Europe/Dublin 2010-08-14 +3308681 Ailtbrack Lough Ailtbrack Lough 52.88972 -9.33833 H LK IE M 03 0 150 Europe/Dublin 2010-08-14 +3308682 Illaunbaun Illaunbaun 52.86667 -9.31528 P PPLL IE M 03 0 158 Europe/Dublin 2010-08-14 +3308683 Slievenalicka Slievenalicka 52.87056 -9.34028 T HLL IE M 03 0 164 Europe/Dublin 2010-08-14 +3308684 Knockabullaunduff Knockabullaunduff 52.88028 -9.34472 T HLL IE M 03 0 163 Europe/Dublin 2010-08-14 +3308685 Tullinlough Tullinlough 54.71222 -8.26361 H LK IE U 06 0 169 Europe/Dublin 2010-08-14 +3308686 Tamur Lough Tamur Lough 54.72056 -8.29556 H LK IE U 06 0 153 Europe/Dublin 2010-08-14 +3308687 Meenybraddan Meenybraddan 54.71972 -8.30167 P PPLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308688 Meenagolan Meenagolan 54.69389 -8.34611 P PPLL IE U 06 0 385 Europe/Dublin 2010-08-14 +3308689 Croagh Croagh 54.68694 -8.33194 P PPL IE U 06 0 285 Europe/Dublin 2010-08-14 +3308690 White Hill White Hill 54.685 -8.3625 S EST IE U 06 0 360 Europe/Dublin 2010-08-14 +3308691 Leagans Hill Leagans Hill 54.67972 -8.30472 T HLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308692 Babvages Hill Babvages Hill 54.68056 -8.35611 T HLL IE U 06 0 438 Europe/Dublin 2010-08-14 +3308693 Crocknasharrach Crocknasharrach 54.67167 -8.34333 P PPLL IE U 06 0 269 Europe/Dublin 2010-08-14 +3308694 Tullinarane River Tullinarane River 54.69194 -8.37139 H STM IE U 06 0 204 Europe/Dublin 2010-08-14 +3308695 Drumnadart Drumnadart 54.65667 -8.30528 P PPLL IE U 06 0 13 Europe/Dublin 2010-08-14 +3308696 Drumnakilly Drumnakilly 54.64778 -8.30417 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308697 Port Port 54.64 -8.30694 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308698 Kilmacreddan House Kilmacreddan House 54.63639 -8.32 S HSEC IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308699 Keelogs Keelogs 54.64139 -8.35639 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308700 Tanregee Hill Tanregee Hill 54.65306 -8.33556 T HLL IE U 06 0 73 Europe/Dublin 2010-08-14 +3308701 Lisavaddy Lisavaddy 54.65639 -8.35222 P PPLL IE U 06 0 44 Europe/Dublin 2010-08-14 +3308702 Calhaine Calhaine 54.64972 -8.37667 P PPL IE U 06 0 6 Europe/Dublin 2010-08-14 +3308703 Milltown Milltown 54.64083 -8.38889 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308704 Carn More Hill Carn More Hill 54.64528 -8.40778 T HLL IE U 06 0 2 Europe/Dublin 2010-08-14 +3308705 Claggan Claggan 54.6725 -8.38667 P PPLL IE U 06 0 72 Europe/Dublin 2010-08-14 +3308706 Ballyloughan Ballyloughan 54.63361 -8.40861 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308707 Sentry Hill Sentry Hill 54.62139 -8.35833 T HLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308708 Castle Murray Castle Murray 54.62056 -8.37444 S CSTL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308709 Cavan Point Cavan Point 54.61528 -8.3525 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308710 Riggyheugh Riggyheugh 54.61278 -8.37528 S FRM IE U 06 0 1 Europe/Dublin 2010-08-14 +3308711 Portned Island Portned Island 54.59972 -8.40083 T ISL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308712 Ackle Back Ackle Back 54.59333 -8.39306 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308713 Ballysuggart Ballysuggart 54.59417 -8.39944 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308714 Ballycroy Hill Ballycroy Hill 54.59111 -8.41778 T HLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308715 Pound Point Pound Point 54.5875 -8.44694 T PT IE U 06 0 1 Europe/Dublin 2010-08-14 +3308716 Killurtan Killurtan 54.58556 -8.43722 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308717 Carntullagh Head Carntullagh Head 54.61444 -8.43722 T CAPE IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308718 Rotten Island Rotten Island Rotten Island 54.61444 -8.44056 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308719 Carntullagh Carntullagh 54.62444 -8.43028 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308720 Binroe Hill Binroe Hill 54.63639 -8.41917 T HLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308721 Cornacahan Hill Cornacahan Hill 54.66056 -8.45833 T HLL IE U 06 0 183 99 Europe/Dublin 2010-08-14 +3308722 Drumanoo Drumanoo 54.61139 -8.4675 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308723 Farbregga Hill Farbregga Hill 54.62 -8.46444 T HLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308724 Scotty’s Hill Scotty's Hill 54.62222 -8.44833 T HLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308725 Saint Catherines Saint Catherines 54.62417 -8.46278 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308726 Fintragh House Fintragh House 54.63722 -8.48056 S HSEC IE U 06 0 60 Europe/Dublin 2010-08-14 +3308727 Sheannacon Hill Sheannacon Hill 54.6425 -8.48667 T HLL IE U 06 0 169 Europe/Dublin 2010-08-14 +3308728 Stragar River Stragar River 54.64778 -8.42306 H STM IE U 06 0 6 Europe/Dublin 2010-08-14 +3308729 Drumdoo Drumdoo 54.68194 -8.38472 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3308730 Bungosteen Bridge Bungosteen Bridge 54.6725 -8.42056 P PPLL IE U 06 0 72 Europe/Dublin 2010-08-14 +3308731 Lough Aroshin Lough Aroshin 54.67389 -8.46472 H LK IE U 06 0 158 Europe/Dublin 2010-08-14 +3308732 Lough Adeery Lough Adeery 54.68417 -8.44194 H LK IE U 06 0 160 Europe/Dublin 2010-08-14 +3308733 Balbane Balbane 54.69028 -8.445 P PPLL IE U 06 0 160 Europe/Dublin 2010-08-14 +3308734 Croaghacullin Croaghacullin 54.67361 -8.48 T SPUR IE U 06 0 260 Europe/Dublin 2010-08-14 +3308735 Crocknapeast Crocknapeast 54.70139 -8.47639 T MT IE U 06 0 502 427 Europe/Dublin 2010-08-14 +3308736 Roeckrow Roeckrow 54.70528 -8.45 P PPLL IE U 06 0 247 Europe/Dublin 2010-08-14 +3308737 Meentullynagarn Meentullynagarn 54.69944 -8.40417 P PPLL IE U 06 0 99 Europe/Dublin 2010-08-14 +3308738 Meentullynagarn Bridge Meentullynagarn Bridge 54.69278 -8.40028 P PPLL IE U 06 0 99 Europe/Dublin 2010-08-14 +3308739 Meenavally House Meenavally House 54.71528 -8.40528 S HSEC IE U 06 0 150 Europe/Dublin 2010-08-14 +3308740 Altnagapple Altnagapple 54.72833 -8.37611 P PPLL IE U 06 0 224 Europe/Dublin 2010-08-14 +3308741 Crocknagapple Crocknagapple 54.73333 -8.33528 P PPLL IE U 06 0 149 Europe/Dublin 2010-08-14 +3308742 Cronkeeran Cronkeeran 54.74722 -8.37667 P PPLL IE U 06 0 177 Europe/Dublin 2010-08-14 +3308743 Ardvally Ardvally 54.74 -8.36083 P PPLL IE U 06 0 170 Europe/Dublin 2010-08-14 +3308744 Monargan Glebe Monargan Glebe 54.75611 -8.38972 P PPLL IE U 06 0 88 Europe/Dublin 2010-08-14 +3308745 Owenea Lough Owenea Lough 54.74833 -8.3375 H LK IE U 06 0 282 Europe/Dublin 2010-08-14 +3308746 Cashel Cashel 54.73722 -8.42056 P PPLL IE U 06 0 126 Europe/Dublin 2010-08-14 +3308747 Neck of the Ballagh Neck of the Ballagh 54.72972 -8.42167 T GAP IE U 06 0 151 Europe/Dublin 2010-08-14 +3308748 Aighe Aighe 54.73722 -8.43083 P PPLL IE U 06 0 126 Europe/Dublin 2010-08-14 +3308749 Bracky Bridge Bracky Bridge 54.75306 -8.42389 P PPLL IE U 06 0 57 Europe/Dublin 2010-08-14 +3308750 Common Bridge Common Bridge 54.74667 -8.42444 P PPLL IE U 06 0 85 Europe/Dublin 2010-08-14 +3308751 Mogamna Hill Mogamna Hill 54.74833 -8.40417 T SPUR IE U 06 0 135 Europe/Dublin 2010-08-14 +3308752 Crocknaslowra Crocknaslowra 54.76722 -8.34778 T HLL IE U 06 0 49 Europe/Dublin 2010-08-14 +3308753 Owenea Bridge Owenea Bridge 54.77639 -8.41 P PPLL IE U 06 0 2 Europe/Dublin 2010-08-14 +3308754 Glengesh Hill Glengesh Hill 54.74528 -8.46278 T MT IE U 06 0 366 136 Europe/Dublin 2010-08-14 +3308755 Glengesh Glengesh 54.74083 -8.44694 P PPLL IE U 06 0 175 Europe/Dublin 2010-08-14 +3308756 Croaghavehy Croaghavehy 54.73222 -8.48833 T MT IE U 06 0 373 301 Europe/Dublin 2010-08-14 +3308757 Crocknamurrin Crocknamurrin 54.71861 -8.52667 T HLL IE U 06 0 260 185 Europe/Dublin 2010-08-14 +3308758 Stravally Stravally 54.72944 -8.54778 P PPLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308759 Scregganiller Scregganiller 54.74806 -8.50139 T MT IE U 06 0 322 212 Europe/Dublin 2010-08-14 +3308760 Maum Maum 54.75 -8.54083 T HLL IE U 06 0 153 Europe/Dublin 2010-08-14 +3308761 Owenwee River Owenwee River 54.76222 -8.52 H STM IE U 06 0 47 Europe/Dublin 2010-08-14 +3308762 Laconnell Laconnell 54.76028 -8.49972 P PPLL IE U 06 0 94 Europe/Dublin 2010-08-14 +3308763 Leamagowra Lodge Leamagowra Lodge 54.72444 -8.48361 S HSE IE U 06 0 312 Europe/Dublin 2010-08-14 +3308764 Crockuna Crockuna 54.73833 -8.57278 T MT IE U 06 0 386 303 Europe/Dublin 2010-08-14 +3308765 Lergynasearhagh Lergynasearhagh 54.72417 -8.56417 P PPLL IE U 06 0 155 Europe/Dublin 2010-08-14 +3308766 Lough Croaghballaghdown Lough Croaghballaghdown 54.76222 -8.57806 H LK IE U 06 0 264 Europe/Dublin 2010-08-14 +3308767 Mulnanaff Mulnanaff 54.68694 -8.50917 T MT IE U 06 0 472 439 Europe/Dublin 2010-08-14 +3308768 Crockmeennabrade Crockmeennabrade 54.69 -8.53667 T RDGE IE U 06 0 263 Europe/Dublin 2010-08-14 +3308769 Crove Crove 54.70583 -8.53611 P PPL IE U 06 0 170 Europe/Dublin 2010-08-14 +3308770 Owenteskiny Hill Owenteskiny Hill 54.71167 -8.58194 T HLL IE U 06 0 126 Europe/Dublin 2010-08-14 +3308771 Crow River Crow River 54.70389 -8.60194 H STM IE U 06 0 73 Europe/Dublin 2010-08-14 +3308772 Owenteskiny River Owenteskiny River 54.70972 -8.60444 H STM IE U 06 0 101 Europe/Dublin 2010-08-14 +3308773 Croaghnacorcragh Croaghnacorcragh 54.6825 -8.60694 T HLL IE U 06 0 186 153 Europe/Dublin 2010-08-14 +3308774 Lough Nambraddan Lough Nambraddan 54.67639 -8.58056 H LK IE U 06 0 159 Europe/Dublin 2010-08-14 +3308775 Crowkeeragh Crowkeeragh 54.66972 -8.56778 P PPLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308776 Meananeary Meananeary 54.70194 -8.60917 P PPLL IE U 06 0 94 Europe/Dublin 2010-08-14 +3308777 Meenychanon Meenychanon 54.66194 -8.56333 P PPLL IE U 06 0 154 Europe/Dublin 2010-08-14 +3308778 Kilcasey Kilcasey 54.65278 -8.59472 P PPLL IE U 06 0 108 Europe/Dublin 2010-08-14 +3308779 Cashlings Bridge Cashlings Bridge 54.64528 -8.59361 P PPLL IE U 06 0 79 Europe/Dublin 2010-08-14 +3308780 Crockakeo Crockakeo 54.64056 -8.56528 T SPUR IE U 06 0 146 Europe/Dublin 2010-08-14 +3308781 Ballaghdoo River Ballaghdoo River 54.63194 -8.59611 H STM IE U 06 0 60 Europe/Dublin 2010-08-14 +3308782 Glenaddragh River Glenaddragh River 54.62667 -8.60389 H STM IE U 06 0 63 Europe/Dublin 2010-08-14 +3308783 Shalwy Shalwy 54.62417 -8.53139 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308784 Shalwy Point Shalwy Point 54.61806 -8.54306 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308785 Croaghmuckros Croaghmuckros 54.62139 -8.58167 T HLL IE U 06 0 63 Europe/Dublin 2010-08-14 +3308786 Croaghbeg Croaghbeg 54.62333 -8.55167 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308787 Muckros Muckros 54.61306 -8.58111 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308788 Cashel Cashel 54.62833 -8.61111 P PPLL IE U 06 0 58 Europe/Dublin 2010-08-14 +3308789 Currs Currs 54.63417 -8.62361 P PPLL IE U 06 0 61 Europe/Dublin 2010-08-14 +3308790 Derrylahan Derrylahan 54.64028 -8.62889 P PPLL IE U 06 0 15 Europe/Dublin 2010-08-14 +3308791 Drumveagh Drumveagh 54.64139 -8.59639 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3308792 Rushen Park Rushen Park 54.64306 -8.63306 S EST IE U 06 0 24 Europe/Dublin 2010-08-14 +3308793 Carrick Lower Bridge Carrick Lower Bridge 54.65028 -8.64583 P PPLL IE U 06 0 22 Europe/Dublin 2010-08-14 +3308794 Seregeighter Seregeighter 54.62972 -8.66972 T HLL IE U 06 0 205 Europe/Dublin 2010-08-14 +3308795 Crockrawer Crockrawer 54.64 -8.67472 T HLL IE U 06 0 188 Europe/Dublin 2010-08-14 +3308796 One Man’s Pass One Man's Pass 54.65167 -8.68861 T PASS IE U 06 0 188 Europe/Dublin 2010-08-14 +3308797 Lough Agh Lough Agh 54.65583 -8.68972 H LK IE U 06 0 188 Europe/Dublin 2010-08-14 +3308798 The Eagles Nest The Eagles Nest 54.63417 -8.67056 T CLF IE U 06 0 188 Europe/Dublin 1998-03-26 +3308799 Owenwee River Owenwee River 54.65056 -8.64417 H STM IE U 06 0 22 Europe/Dublin 2010-08-14 +3308800 Carrick Lodge Carrick Lodge 54.66139 -8.63528 S HSE IE U 06 0 45 Europe/Dublin 2010-08-14 +3308801 Crockunna Crockunna 54.66889 -8.65139 T HLL IE U 06 0 109 Europe/Dublin 2010-08-14 +3308802 Lough Unna Lough Unna 54.67778 -8.66806 H LK IE U 06 0 421 Europe/Dublin 2010-08-14 +3308803 Bogagh Bogagh 54.665 -8.61389 P PPLL IE U 06 0 102 Europe/Dublin 2010-08-14 +3308804 Arderin Arderin 54.6675 -8.62833 T HLL IE U 06 0 73 Europe/Dublin 2010-08-14 +3308805 Straleel Straleel 54.68028 -8.62694 P PPLL IE U 06 0 49 Europe/Dublin 2010-08-14 +3308806 Croaghstraleel Croaghstraleel 54.68917 -8.62583 T SPUR IE U 06 0 94 Europe/Dublin 2010-08-14 +3308807 Straleel North Straleel North 54.69028 -8.64028 P PPLL IE U 06 0 256 Europe/Dublin 2010-08-14 +3308808 Croaghloughdivna Croaghloughdivna 54.69889 -8.65556 T HLL IE U 06 0 453 Europe/Dublin 2010-08-14 +3308809 Braade Hill Braade Hill 54.69778 -8.67889 T HLL IE U 06 0 663 399 Europe/Dublin 2010-08-14 +3308810 Lough Divna Lough Divna 54.70056 -8.66389 H LK IE U 06 0 383 Europe/Dublin 2010-08-14 +3308811 Lough Auva Lough Auva 54.67667 -8.71722 H LK IE U 06 0 314 Europe/Dublin 2010-08-14 +3308812 Lough Unshagh Lough Unshagh 54.68361 -8.7 H LK IE U 06 0 411 Europe/Dublin 2010-08-14 +3308813 Screggacula Screggacula 54.68333 -8.7225 T HLL IE U 06 0 314 Europe/Dublin 2010-08-14 +3308814 Leahan Leahan 54.66917 -8.74806 T MT IE U 06 0 432 319 Europe/Dublin 2010-08-14 +3308815 Rossarrell Point Rossarrell Point 54.65778 -8.77333 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308816 Crimlin Bridge Crimlin Bridge 54.6725 -8.77972 P PPLL IE U 06 0 98 Europe/Dublin 2010-08-14 +3308817 Mullyoo Mullyoo 54.69944 -8.74278 T SPUR IE U 06 0 230 Europe/Dublin 2010-08-14 +3308818 Meenavean Meenavean 54.67361 -8.68917 P PPLL IE U 06 0 513 Europe/Dublin 2010-08-14 +3308819 Doonalt Doonalt 54.70639 -8.7525 P PPLL IE U 06 0 133 Europe/Dublin 2010-08-14 +3308820 Doon Point Doon Point 54.70944 -8.76083 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308821 Cashel Cashel 54.70806 -8.73778 P PPLL IE U 06 0 188 Europe/Dublin 2010-08-14 +3308822 Gannew Bridge Gannew Bridge 54.70944 -8.71667 L LCTY IE U 06 0 187 Europe/Dublin 2010-08-14 +3308823 Kilgoly Kilgoly 54.71111 -8.69556 P PPLL IE U 06 0 188 Europe/Dublin 2010-08-14 +3308824 Meenadreen Meenadreen 54.71944 -8.66389 P PPLL IE U 06 0 318 Europe/Dublin 2010-08-14 +3308825 Lough Geeta Lough Geeta 54.715 -8.65 H LK IE U 06 0 337 Europe/Dublin 2010-08-14 +3308826 Croaghnaleaba Croaghnaleaba 54.71056 -8.66056 T HLL IE U 06 0 327 Europe/Dublin 2010-08-14 +3308827 Kinnakillew Kinnakillew 54.71778 -8.70111 P PPLL IE U 06 0 238 Europe/Dublin 2010-08-14 +3308828 Craigbeefan Craigbeefan 54.72 -8.71778 P PPLL IE U 06 0 264 Europe/Dublin 2010-08-14 +3308829 Skelpoonagh Bay Skelpoonagh Bay 54.72139 -8.7475 H BAY IE U 06 0 188 Europe/Dublin 2010-08-14 +3308830 Lough Astoller Lough Astoller 54.72472 -8.68194 H PND IE U 06 0 333 Europe/Dublin 2010-08-14 +3308831 Meenacross Meenacross 54.72472 -8.65139 P PPLL IE U 06 0 297 Europe/Dublin 2010-08-14 +3308832 Meenacharvy Hill Meenacharvy Hill 54.72361 -8.62667 T HLL IE U 06 0 171 Europe/Dublin 2010-08-14 +3308833 Croaghacullion Croaghacullion 54.72972 -8.66694 T MT IE U 06 0 381 411 Europe/Dublin 2010-08-14 +3308834 Kiltyfanned Lough Kiltyfanned Lough 54.74028 -8.65667 H LK IE U 06 0 421 Europe/Dublin 2010-08-14 +3308835 Lougheraherk Lougheraherk 54.74389 -8.63778 P PPLL IE U 06 0 170 Europe/Dublin 2010-08-14 +3308836 Stranagartan Stranagartan 54.73361 -8.61056 P PPLL IE U 06 0 179 Europe/Dublin 2010-08-14 +3308837 Straboy Straboy 54.74556 -8.6225 P PPLL IE U 06 0 188 Europe/Dublin 2010-08-14 +3308838 Lough Anaffrin Lough Anaffrin 54.75444 -8.64417 H LK IE U 06 0 126 Europe/Dublin 2010-08-14 +3308839 Port Hill Port Hill 54.75417 -8.67833 T HLL IE U 06 0 107 Europe/Dublin 2010-08-14 +3308840 Toralaydan Island Toralaydan Island 54.75417 -8.70917 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308841 Port Port 54.74778 -8.69833 P PPL IE U 06 0 199 Europe/Dublin 2010-08-14 +3308842 Glenlough Glenlough 54.76028 -8.65833 S FRM IE U 06 0 64 Europe/Dublin 2010-08-14 +3308843 Lough Meenachrinna Lough Meenachrinna 54.72833 -8.68 H LK IE U 06 0 422 Europe/Dublin 2010-08-14 +3308844 Lough Adoochro Lough Adoochro 54.76667 -8.61583 H LK IE U 06 0 242 Europe/Dublin 1998-03-26 +3308845 Glendorragha Glendorragha 54.78083 -8.51556 P PPL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308846 Cloghboy Cloghboy 54.775 -8.49278 P PPLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308847 Crockafee Crockafee 54.785 -8.48028 T HLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308848 Crannogeboy Crannogeboy 54.77083 -8.46917 P PPL IE U 06 0 7 Europe/Dublin 2010-08-14 +3308849 Shanaghan Shanaghan 54.76806 -8.45 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308850 Crumlin Crumlin 54.76056 -8.45556 P PPLL IE U 06 0 43 Europe/Dublin 2010-08-14 +3308851 Crockacoagh Crockacoagh 54.78528 -8.54222 T HLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308852 Ranny Point North Ranny Point North 54.77889 -8.44194 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308853 Derryness Derryness 54.78667 -8.44306 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308854 Tully More Tully More 54.79194 -8.4 P PPL IE U 06 0 7 Europe/Dublin 2010-08-14 +3308855 Beagh Bridge Beagh Bridge 54.79528 -8.43667 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308856 Kilclooney Bridge Kilclooney Bridge 54.80722 -8.44139 L LCTY IE U 06 0 1 Europe/Dublin 2010-08-14 +3308857 Ballinreavy Strand Ballinreavy Strand 54.7975 -8.45528 T BCH IE U 06 0 1 Europe/Dublin 2010-08-14 +3308858 Sandfield Sandfield 54.80278 -8.4475 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308859 Tully Beg Tully Beg 54.80417 -8.38056 P PPL IE U 06 0 16 Europe/Dublin 2010-08-14 +3308860 Lough Free Lough Free 54.79917 -8.37917 H LK IE U 06 0 15 Europe/Dublin 2010-08-14 +3308861 Loughfad Hill Loughfad Hill 54.81583 -8.40667 P PPL IE U 06 155 2 Europe/Dublin 2010-08-14 +3308862 Lough Derryduff Lough Derryduff 54.82056 -8.39583 H LK IE U 06 0 3 Europe/Dublin 2010-08-14 +3308863 Letterilly House Letterilly House 54.81611 -8.34917 S HSEC IE U 06 0 72 Europe/Dublin 2010-08-14 +3308864 Lough Namanlagh Lough Namanlagh 54.82694 -8.37778 H LK IE U 06 0 4 Europe/Dublin 2010-08-14 +3308865 Lough Fad Lough Fad 54.82972 -8.425 H LK IE U 06 0 1 Europe/Dublin 2010-08-14 +3308866 Summy Lough Summy Lough 54.82139 -8.46 H LK IE U 06 0 6 Europe/Dublin 2010-08-14 +3308867 Sheskinmore Lough Sheskinmore Lough 54.80972 -8.4675 H LK IE U 06 0 5 Europe/Dublin 2010-08-14 +3308868 Meendooish Hill Meendooish Hill 54.82861 -8.48306 T HLL IE U 06 0 33 Europe/Dublin 2010-08-14 +3308869 Meenagrillagh Hill Meenagrillagh Hill 54.80222 -8.42 T HLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308870 Rossbeg Rossbeg 54.81722 -8.51528 P PPLL IE U 06 0 12 Europe/Dublin 2010-08-14 +3308871 Eden House Eden House 54.82667 -8.50917 S HSEC IE U 06 0 24 Europe/Dublin 2010-08-14 +3308872 Inishbarnog Inishbarnog 54.81389 -8.55972 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308873 Spy Hill Spy Hill 54.83 -8.53139 T HLL IE U 06 0 3 Europe/Dublin 2010-08-14 +3308874 Crockacuon Crockacuon 54.83417 -8.53806 T HLL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308875 Doon Lough Doon Lough 54.83056 -8.46361 H LK IE U 06 0 8 Europe/Dublin 2010-08-14 +3308876 Inishkeel Inishkeel 54.84889 -8.45556 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3308877 Clooney Lough Clooney Lough 54.83944 -8.43389 H LK IE U 06 0 1 Europe/Dublin 2010-08-14 +3308878 Clogher Clogher 54.83722 -8.42556 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308879 Clooney Clooney 54.83917 -8.40944 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308880 Cashelgolan Hill Cashelgolan Hill 54.84194 -8.405 T HLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3308881 Rashin Point Rashin Point 54.84 -8.36111 T PT IE U 06 0 1 Europe/Dublin 2010-08-14 +3308882 Lough Ananima Lough Ananima 54.79722 -8.32167 H LK IE U 06 0 64 Europe/Dublin 2010-08-14 +3308883 Lough Lavagh Lough Lavagh 54.81889 -8.33 H LK IE U 06 0 151 Europe/Dublin 2010-08-14 +3308884 Lough Nagarnaman Lough Nagarnaman 54.82583 -8.32194 H LK IE U 06 0 138 Europe/Dublin 2010-08-14 +3308885 Lough Nacroaghy Lough Nacroaghy 54.8325 -8.27083 H LK IE U 06 0 192 Europe/Dublin 2010-08-14 +3308886 Meenalargan Hill Meenalargan Hill 54.82722 -8.28444 T HLL IE U 06 0 153 Europe/Dublin 2010-08-14 +3308887 Derkbeg Hill Derkbeg Hill 54.83806 -8.26611 T HLL IE U 06 0 283 Europe/Dublin 2010-08-14 +3308888 Cloongort Hill Cloongort Hill 54.84306 -8.29417 T HLL IE U 06 0 111 Europe/Dublin 2010-08-14 +3308889 Mulnamin Mulnamin 54.83194 -8.32389 P PPLL IE U 06 0 138 Europe/Dublin 2010-08-14 +3308890 Derkmore Lough Derkmore Lough 54.83444 -8.29944 H LK IE U 06 0 439 Europe/Dublin 2010-08-14 +3308891 Derryloaghan Derryloaghan 54.8475 -8.2575 L LCTY IE U 06 0 169 Europe/Dublin 2010-08-14 +3308892 Crocknadreeavarn Crocknadreeavarn 54.82139 -8.30861 T RDGE IE U 06 0 155 Europe/Dublin 2010-08-14 +3308893 Crockmore Crockmore 54.80167 -8.23889 T HLL IE U 06 0 143 Europe/Dublin 2010-08-14 +3308894 Drumnalough Drumnalough 54.81028 -8.25056 H LK IE U 06 0 134 Europe/Dublin 2010-08-14 +3308895 Shalloganbeg Shalloganbeg 54.82361 -8.22167 T SPUR IE U 06 0 269 Europe/Dublin 2010-08-14 +3308896 Gaffaretcor Gaffaretcor 54.84139 -8.23444 T HLL IE U 06 0 153 Europe/Dublin 2010-08-14 +3308897 Shallogan Shallogan 54.83667 -8.22194 P PPLL IE U 06 0 236 Europe/Dublin 2010-08-14 +3308898 Stracashel Stracashel 54.81778 -8.18528 P PPLL IE U 06 0 218 Europe/Dublin 2010-08-14 +3308899 Clogher North Clogher North 54.81556 -8.08972 T MT IE U 06 0 322 Europe/Dublin 2010-08-14 +3308900 Croveenananta Croveenananta 54.80056 -8.09083 T MT IE U 06 0 298 Europe/Dublin 2010-08-14 +3308901 Coaghubbrid Coaghubbrid 54.79028 -8.13056 T MT IE U 06 0 242 Europe/Dublin 2010-08-14 +3308902 Tangaveane Tangaveane 54.79278 -8.17167 P PPLL IE U 06 0 147 Europe/Dublin 2010-08-14 +3308903 Graffy Graffy 54.81194 -8.16889 P PPL IE U 06 0 176 Europe/Dublin 2010-08-14 +3308904 Graffy Hill Graffy Hill 54.81944 -8.15944 T SPUR IE U 06 0 291 Europe/Dublin 2010-08-14 +3308905 Lough Nabrackboy Lough Nabrackboy 54.80083 -8.16389 H PND IE U 06 0 156 Europe/Dublin 2010-08-14 +3308906 Tievelough Tievelough 54.80972 -8.15083 P PPLL IE U 06 0 166 Europe/Dublin 2010-08-14 +3308907 Knockletteragh Knockletteragh 54.83639 -8.07139 P PPLL IE U 06 0 279 Europe/Dublin 2010-08-14 +3308908 Tieveragh Tieveragh 54.84167 -8.11083 L LCTY IE U 06 0 238 Europe/Dublin 2010-08-14 +3308909 Lough Errig Lough Errig 54.8625 -8.17639 H LK IE U 06 0 143 Europe/Dublin 2010-08-14 +3308910 Lough Nambraddan Lough Nambraddan 54.87139 -8.13778 H LK IE U 06 0 152 Europe/Dublin 2010-08-14 +3308911 Curreen Hill Curreen Hill 54.85972 -8.16806 T HLL IE U 06 0 143 Europe/Dublin 2010-08-14 +3308912 Scraigs Scraigs 54.86083 -8.10306 T MT IE U 06 0 429 269 Europe/Dublin 2010-08-14 +3308913 Bellanamore Bellanamore 54.86917 -8.05556 P PPL IE U 06 0 150 Europe/Dublin 2010-08-14 +3308914 Lough Sluvnagh Lough Sluvnagh 54.87389 -8.06889 H LK IE U 06 0 138 Europe/Dublin 2010-08-14 +3308915 Glashagh Glashagh 54.85417 -8.03083 P PPL IE U 06 0 170 Europe/Dublin 2010-08-14 +3308916 Cummirk Bridge Cummirk Bridge 54.86556 -8.00861 P PPLL IE U 06 0 118 Europe/Dublin 2010-08-14 +3308917 Cavan Cavan 54.8225 -7.69833 P PPLL IE U 06 0 116 Europe/Dublin 2010-08-14 +3308918 Craigdoo Craigdoo 54.83222 -7.70056 T HLL IE U 06 0 149 Europe/Dublin 2010-08-14 +3308919 Drumgumberland Drumgumberland 54.85444 -7.68583 P PPLL IE U 06 0 66 Europe/Dublin 2010-08-14 +3308920 Corcam Corcam 54.80639 -7.7225 P PPLL IE U 06 0 49 Europe/Dublin 2010-08-14 +3308921 Cooldawson Cooldawson 54.81389 -7.74694 S EST IE U 06 0 62 Europe/Dublin 2010-08-14 +3308922 Lough Alaan Lough Alaan 54.81167 -7.75833 H LK IE U 06 0 83 Europe/Dublin 2010-08-14 +3308923 Kilross Kilross 54.83472 -7.74528 P PPLL IE U 06 0 96 Europe/Dublin 2010-08-14 +3308924 Callan Callan 54.85667 -7.76222 P PPLL IE U 06 0 126 Europe/Dublin 2010-08-14 +3308925 Trooper’s Hill Trooper's Hill 54.81306 -7.81056 T HLL IE U 06 0 78 Europe/Dublin 2010-08-14 +3308926 Lettermakenny Lettermakenny 54.82833 -7.78722 P PPLL IE U 06 0 335 Europe/Dublin 2010-08-14 +3308927 Cloghroe Cloghroe 54.85139 -7.77778 P PPLL IE U 06 0 178 Europe/Dublin 2010-08-14 +3308928 Liskeran Hill Liskeran Hill 54.84361 -7.8125 T HLL IE U 06 0 154 Europe/Dublin 2010-08-14 +3308929 Thonevancil Hill Thonevancil Hill 54.85361 -7.85 T HLL IE U 06 0 267 Europe/Dublin 2010-08-14 +3308930 Gorey Hill Gorey Hill 54.82667 -7.8625 T HLL IE U 06 0 145 Europe/Dublin 2010-08-14 +3308931 Three Tops Three Tops 54.86389 -7.89167 T MT IE U 06 0 300 Europe/Dublin 2010-08-14 +3308932 Gramvan Gramvan 54.82056 -7.825 L LCTY IE U 06 0 112 Europe/Dublin 2010-08-14 +3308933 Burnside Burnside 54.81472 -7.82833 P PPLL IE U 06 0 73 Europe/Dublin 2010-08-14 +3308934 Aughkeely Aughkeely 54.8675 -7.81056 P PPLL IE U 06 0 159 Europe/Dublin 2010-08-14 +3308935 Drumnacross Drumnacross 54.86694 -7.7675 P PPL IE U 06 0 120 Europe/Dublin 2010-08-14 +3308936 Cronamuck Cronamuck 54.90889 -7.87139 T MT IE U 06 0 345 190 Europe/Dublin 2010-08-14 +3308937 Cronaglack Cronaglack 54.905 -7.92778 T MT IE U 06 0 343 295 Europe/Dublin 2010-08-14 +3308938 Crockalough Crockalough 54.89806 -7.89639 T SPUR IE U 06 0 303 Europe/Dublin 2010-08-14 +3308939 Tullytresna Tullytresna 54.8725 -7.90806 T SPUR IE U 06 0 282 Europe/Dublin 2010-08-14 +3308940 Meenasrona Meenasrona 54.87083 -7.9475 P PPLL IE U 06 0 198 Europe/Dublin 2010-08-14 +3308941 Arbatt Arbatt 54.87833 -7.97972 P PPLL IE U 06 0 157 Europe/Dublin 2010-08-14 +3308942 Meeniray Hill Meeniray Hill 54.90194 -7.99861 T HLL IE U 06 0 250 Europe/Dublin 2010-08-14 +3308943 Tievedeevan Hill Tievedeevan Hill 54.88639 -8.04861 T HLL IE U 06 0 182 Europe/Dublin 2010-08-14 +3308944 Kingarrow Kingarrow 54.9 -8.03833 P PPL IE U 06 0 208 Europe/Dublin 2010-08-14 +3308945 Crockastoller Crockastoller 54.89306 -8.085 T HLL IE U 06 0 163 Europe/Dublin 2010-08-14 +3308946 Gubbin Hill Gubbin Hill 54.905 -8.1025 T HLL IE U 06 0 163 Europe/Dublin 2010-08-14 +3308947 Drumanaught Hill Drumanaught Hill 54.90944 -7.835 T HLL IE U 06 0 181 Europe/Dublin 2010-08-14 +3308948 Stroangibbagh Stroangibbagh 54.88333 -7.80111 T HLL IE U 06 0 155 Europe/Dublin 2010-08-14 +3308949 Stralongford Stralongford 54.88889 -7.75111 P PPLL IE U 06 0 160 Europe/Dublin 2010-08-14 +3308950 Legland Legland 54.87278 -7.76806 P PPLL IE U 06 0 120 Europe/Dublin 2010-08-14 +3308951 Craignasaggart Craignasaggart 54.90722 -7.71472 T SPUR IE U 06 0 166 Europe/Dublin 2010-08-14 +3308952 Manor House Manor House 54.91444 -7.75111 S HSEC IE U 06 0 145 Europe/Dublin 2010-08-14 +3308953 Glenoughty Glenoughty 54.92139 -7.74194 P PPLL IE U 06 0 137 Europe/Dublin 2010-08-14 +3308954 Corranagh Corranagh 54.92056 -7.69639 P PPLL IE U 06 0 131 Europe/Dublin 2010-08-14 +3308955 Listack Listack 54.91056 -7.77056 P PPLL IE U 06 0 149 Europe/Dublin 2010-08-14 +3308956 Rareagh Upper Rareagh Upper 54.90722 -7.79194 P PPLL IE U 06 0 129 Europe/Dublin 2010-08-14 +3308957 Letterleague Letterleague 54.92028 -7.78222 P PPL IE U 06 0 103 Europe/Dublin 2010-08-14 +3308958 Crocknnear Crocknnear 54.93139 -7.7575 T HLL IE U 06 0 100 Europe/Dublin 2010-08-14 +3308959 Doon Doon 54.93389 -7.80861 P PPLL IE U 06 0 96 Europe/Dublin 2010-08-14 +3308960 Rockhill Rockhill 54.935 -7.77417 S EST IE U 06 0 66 Europe/Dublin 2010-08-14 +3308961 Bunnagee Bunnagee 54.94194 -7.69417 P PPLL IE U 06 0 56 Europe/Dublin 2010-08-14 +3308962 Lubber Lubber 54.97056 -7.70639 P PPLL IE U 06 0 92 Europe/Dublin 2010-08-14 +3308963 Kiltay Lodge Kiltay Lodge 54.965 -7.71 S HSE IE U 06 0 83 Europe/Dublin 2010-08-14 +3308964 Woodland Woodland 54.98222 -7.69917 S EST IE U 06 0 113 Europe/Dublin 2010-08-14 +3308965 Killyclug Killyclug 54.97556 -7.77389 P PPLL IE U 06 0 124 Europe/Dublin 2010-08-14 +3308966 Glendoon Hill Glendoon Hill 54.95222 -7.80889 T SPUR IE U 06 0 209 Europe/Dublin 2010-08-14 +3308967 Gregory Hill Gregory Hill 54.95972 -7.82056 T HLL IE U 06 0 288 Europe/Dublin 2010-08-14 +3308968 Croaghmore Croaghmore 54.96667 -7.82333 T HLL IE U 06 0 273 Europe/Dublin 2010-08-14 +3308969 Ward’s Town Ward's Town 54.95306 -7.84861 P PPLL IE U 06 0 111 Europe/Dublin 2010-08-14 +3308970 Rashadoge Rashadoge 54.93722 -7.83944 P PPLL IE U 06 0 69 Europe/Dublin 2010-08-14 +3308971 Sockar Sockar 54.98444 -7.83778 P PPL IE U 06 0 102 Europe/Dublin 2010-08-14 +3308972 Glashagh River Glashagh River 54.99361 -7.83444 H STM IE U 06 0 72 Europe/Dublin 2010-08-14 +3308973 Cabra Hill Cabra Hill 54.97583 -7.86917 T HLL IE U 06 0 184 Europe/Dublin 2010-08-14 +3308974 Leafrin Hill Leafrin Hill 54.98056 -7.88944 T HLL IE U 06 0 439 Europe/Dublin 2010-08-14 +3308975 Brown Mount Brown Mount 54.98306 -7.90472 T HLL IE U 06 0 128 Europe/Dublin 2010-08-14 +3308976 Ballinlaght Ballinlaght 54.92139 -7.92083 P PPLL IE U 06 0 159 Europe/Dublin 2010-08-14 +3308977 Altinierin Altinierin 54.91889 -7.95528 T HLL IE U 06 0 182 Europe/Dublin 2010-08-14 +3308978 Binswilly Binswilly 54.94028 -7.97306 T HLL IE U 06 0 187 Europe/Dublin 2010-08-14 +3308979 Meenaboll Hill Meenaboll Hill 54.92611 -7.99417 T HLL IE U 06 0 307 Europe/Dublin 2010-08-14 +3308980 Brallanmore Brallanmore 54.95167 -8.00194 T PK IE U 06 0 210 Europe/Dublin 2010-08-14 +3308981 Croaghnagapple Croaghnagapple 54.96278 -8.005 T SPUR IE U 06 0 164 Europe/Dublin 2010-08-14 +3308982 Seacor Seacor 54.93806 -7.90167 P PPLL IE U 06 0 88 Europe/Dublin 2010-08-14 +3308983 Corderry Corderry 54.975 -7.93778 P PPLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3308984 Owenbeg River Owenbeg River 54.97222 -7.96722 H STM IE U 06 0 152 Europe/Dublin 2010-08-14 +3308985 Glendowan Glendowan Gleann Domhain,Glendowan 54.96944 -7.95833 P PPL IE IE U 06 0 150 Europe/Dublin 2010-08-14 +3308986 Bullaba River Bullaba River 54.98167 -7.94389 H STM IE U 06 0 151 Europe/Dublin 2010-08-14 +3308987 Crockbarabrista Crockbarabrista 54.915 -8.07222 T PK IE U 06 0 211 Europe/Dublin 2010-08-14 +3308988 Meenachallion Meenachallion 54.91083 -8.10944 S FRM IE U 06 0 151 Europe/Dublin 2010-08-14 +3308989 Lough Nanuroge Lough Nanuroge 54.91778 -8.11667 H LK IE U 06 0 112 Europe/Dublin 2010-08-14 +3308990 Glenaboghill Glenaboghill 54.88806 -8.12194 T SPUR IE U 06 0 158 Europe/Dublin 2010-08-14 +3308991 Carbat Gap Carbat Gap 54.8775 -8.14056 T GAP IE U 06 0 156 Europe/Dublin 2010-08-14 +3308992 Drumnaha Drumnaha 54.89056 -8.14667 P PPLL IE U 06 0 145 Europe/Dublin 2010-08-14 +3308993 Drumaneany Lough Drumaneany Lough 54.89972 -8.16417 H LK IE U 06 0 95 Europe/Dublin 2010-08-14 +3308994 Cloghernagore Cloghernagore 54.90472 -8.13444 L LCTY IE U 06 0 114 Europe/Dublin 2010-08-14 +3308995 Lough Nabrack Lough Nabrack 54.86056 -8.19056 H LK IE U 06 0 142 Europe/Dublin 2010-08-14 +3308996 Loughs Aneane Loughs Aneane 54.86611 -8.23667 H LKS IE U 06 0 130 Europe/Dublin 2010-08-14 +3308997 Gaffaretmoyle Gaffaretmoyle 54.84917 -8.22528 T HLL IE U 06 0 175 Europe/Dublin 2010-08-14 +3308998 Ballynacarrick Ballynacarrick 54.86472 -8.27667 P PPLL IE U 06 0 27 Europe/Dublin 2010-08-14 +3308999 Meenbog Hill Meenbog Hill 54.98278 -8.04611 T HLL IE U 06 0 269 Europe/Dublin 2010-08-14 +3309000 Croaghacullin Croaghacullin 54.96306 -8.03667 T MT IE U 06 0 242 Europe/Dublin 2010-08-14 +3309001 Moylenanav Moylenanav 54.96806 -8.06944 T MT IE U 06 0 269 Europe/Dublin 2010-08-14 +3309002 Crockastoller Crockastoller 54.94139 -8.06083 T MT IE U 06 0 294 Europe/Dublin 2010-08-14 +3309003 Croaghanarroo Croaghanarroo 54.94833 -8.08861 T SPUR IE U 06 0 207 Europe/Dublin 2010-08-14 +3309004 Crockbrack Crockbrack 54.98333 -8.08389 T SPUR IE U 06 0 55 Europe/Dublin 2010-08-14 +3309005 Crocknahallin Crocknahallin 54.95306 -8.18444 T SPUR IE U 06 0 319 Europe/Dublin 2010-08-14 +3309006 Commeen Commeen 54.94833 -8.12833 P PPLL IE U 06 0 97 Europe/Dublin 2010-08-14 +3309007 Lough Natangaduff Lough Natangaduff 54.92528 -8.165 H LK IE U 06 0 134 Europe/Dublin 2010-08-14 +3309008 Nasnahida Lough Nasnahida Lough 54.91833 -8.23056 H LK IE U 06 0 292 Europe/Dublin 2010-08-14 +3309009 Lough Crockatrillen Lough Crockatrillen 54.93417 -8.20972 H LK IE U 06 0 188 Europe/Dublin 2010-08-14 +3309010 Lough Anillar Lough Anillar 54.95056 -8.20833 H LK IE U 06 0 232 Europe/Dublin 2010-08-14 +3309011 Loughinisland Loughinisland 54.9325 -8.21528 H LK IE U 06 0 254 Europe/Dublin 2010-08-14 +3309012 Croaghnasilshiion Croaghnasilshiion 54.92583 -8.21778 T HLL IE U 06 0 439 Europe/Dublin 2010-08-14 +3309013 Owenwee River Owenwee River 54.91083 -8.20222 H STM IE U 06 0 29 Europe/Dublin 2010-08-14 +3309014 Crockatedane Crockatedane 54.94333 -8.20611 T HLL IE U 06 0 189 Europe/Dublin 2010-08-14 +3309015 Croaghleconnell Croaghleconnell 54.9 -8.24778 T HLL IE U 06 0 58 Europe/Dublin 2010-08-14 +3309016 Galwolie Hill Galwolie Hill 54.88222 -8.26528 T HLL IE U 06 0 13 Europe/Dublin 2010-08-14 +3309017 Trusklieve Trusklieve 54.86528 -8.32889 T HLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3309018 Lettermacaward Lettermacaward Leitir Mhic an Bhaird,Lettermacaward 54.84806 -8.31639 P PPL IE U 06 0 41 Europe/Dublin 2010-08-14 +3309019 Toome Lough Toome Lough 54.85667 -8.31556 H LK IE U 06 0 1 Europe/Dublin 2010-08-14 +3309020 Ranny Lough Ranny Lough 54.86361 -8.34056 H LK IE U 06 0 55 Europe/Dublin 2010-08-14 +3309021 Lough Machugh Lough Machugh 54.87583 -8.29 H LK IE U 06 0 20 Europe/Dublin 2010-08-14 +3309022 Lough Garrive Lough Garrive 54.8875 -8.29583 H LK IE U 06 0 58 Europe/Dublin 2010-08-14 +3309023 Lough Acloghbolie Lough Acloghbolie 54.89306 -8.27528 H LK IE U 06 0 74 Europe/Dublin 2010-08-14 +3309024 Cor Point Cor Point 54.84889 -8.35083 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309025 Ballincrick Ballincrick 54.86556 -8.36222 P PPLL IE U 06 0 2 Europe/Dublin 2010-08-14 +3309026 Derrylough Derrylough 54.87333 -8.33611 P PPL IE U 06 0 83 Europe/Dublin 2010-08-14 +3309027 Dooey Hill Dooey Hill 54.87306 -8.34972 T HLL IE U 06 0 33 Europe/Dublin 2010-08-14 +3309028 Shot Hill Shot Hill 54.8725 -8.37306 T HLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3309029 Dooey Point Dooey Point 54.87972 -8.38694 T CAPE IE U 06 0 1 Europe/Dublin 2010-08-14 +3309030 Lough Nanuarragh Lough Nanuarragh 54.90278 -8.27778 H LK IE U 06 0 76 Europe/Dublin 2010-08-14 +3309031 Drumlaghdrid Hill Drumlaghdrid Hill 54.90111 -8.31778 T HLL IE U 06 0 142 Europe/Dublin 2010-08-14 +3309032 Cloghbolie Mountain Cloghbolie Mountain 54.90306 -8.29444 T HLL IE U 06 0 100 Europe/Dublin 2010-08-14 +3309033 Lough Gannivegil Lough Gannivegil 54.91472 -8.27667 H LK IE U 06 0 75 Europe/Dublin 2010-08-14 +3309034 Lough Nabrackmore Lough Nabrackmore 54.9175 -8.26111 H LK IE U 06 0 57 Europe/Dublin 2010-08-14 +3309035 Lough Namurrig Lough Namurrig 54.91167 -8.29528 H LK IE U 06 0 125 Europe/Dublin 2010-08-14 +3309036 Meenlecknalore Lough Meenlecknalore Lough 54.92361 -8.31 H LK IE U 06 0 185 Europe/Dublin 2010-08-14 +3309037 Lough Anillanowennamarve Lough Anillanowennamarve 54.92278 -8.25222 H LK IE U 06 0 66 Europe/Dublin 2010-08-14 +3309038 Tangaveane Hill Tangaveane Hill 54.92361 -8.28972 T HLL IE U 06 0 99 Europe/Dublin 2010-08-14 +3309039 Crockmeenlecknalore Crockmeenlecknalore 54.9225 -8.32194 T HLL IE U 06 0 173 Europe/Dublin 2010-08-14 +3309040 Owennamarve River Owennamarve River 54.9075 -8.34167 H STM IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309041 Derrydruel Derrydruel 54.91083 -8.33833 P PPL IE U 06 0 105 Europe/Dublin 2010-08-14 +3309042 Crocknasharragh Crocknasharragh 54.96278 -8.16 T MT IE U 06 0 421 Europe/Dublin 2010-08-14 +3309043 Crocknascaufey Crocknascaufey 54.96139 -8.215 T HLL IE U 06 0 207 Europe/Dublin 2010-08-14 +3309044 Crockfadda Crockfadda 54.97 -8.13917 T PK IE U 06 0 421 Europe/Dublin 2010-08-14 +3309045 Adderneymore Adderneymore 54.98583 -8.16583 T MT IE U 06 0 383 Europe/Dublin 2010-08-14 +3309046 Crovehy Crovehy 54.95111 -8.26972 T MT IE U 06 0 304 Europe/Dublin 2010-08-14 +3309047 Lough Agannive Lough Agannive 54.98194 -8.14722 H LK IE U 06 0 434 Europe/Dublin 2010-08-14 +3309048 Lough Altmanus Lough Altmanus 54.96556 -8.1875 H LK IE U 06 0 360 Europe/Dublin 2010-08-14 +3309049 Lough Croangar Lough Croangar 54.95583 -8.22694 H LK IE U 06 0 225 Europe/Dublin 2010-08-14 +3309050 Lough Nagilly Lough Nagilly 54.96417 -8.26139 H LK IE U 06 0 161 Europe/Dublin 2010-08-14 +3309051 Loughs Lack Loughs Lack 54.9675 -8.24583 H LKS IE U 06 0 149 Europe/Dublin 2010-08-14 +3309052 Lough Adreen Lough Adreen 54.93583 -8.25167 H LK IE U 06 0 88 Europe/Dublin 2010-08-14 +3309053 Lough Anoon Lough Anoon 54.94194 -8.27833 H LK IE U 06 0 170 Europe/Dublin 2010-08-14 +3309054 Ballaghfill Lough Ballaghfill Lough 54.965 -8.28139 H LK IE U 06 0 141 Europe/Dublin 2010-08-14 +3309055 Ardmeen Ardmeen 54.97778 -8.26 P PPLL IE U 06 0 91 Europe/Dublin 2010-08-14 +3309056 Meencorwick Meencorwick 54.98444 -8.24194 P PPLL IE U 06 0 199 Europe/Dublin 2010-08-14 +3309057 Brockagh Brockagh 54.94556 -8.24333 P PPLL IE U 06 0 159 Europe/Dublin 2010-08-14 +3309058 Meenatotan Meenatotan 54.93333 -8.29167 P PPLL IE U 06 0 198 Europe/Dublin 2010-08-14 +3309059 Lough Fad Lough Fad 54.94028 -8.31778 H LK IE U 06 0 159 Europe/Dublin 2010-08-14 +3309060 Lough Nageeragh Lough Nageeragh 54.93667 -8.36583 H LK IE U 06 0 117 Europe/Dublin 2010-08-14 +3309061 Croaghnashallog Croaghnashallog 54.93472 -8.34806 T HLL IE U 06 0 151 Europe/Dublin 2010-08-14 +3309062 Drummeen Drummeen 54.94889 -8.34056 P PPL IE U 06 0 140 Europe/Dublin 2010-08-14 +3309063 Lough Craghy Lough Craghy 54.95389 -8.32222 H LK IE U 06 0 98 Europe/Dublin 2010-08-14 +3309064 Dunglow Lough Dunglow Lough 54.95611 -8.34111 H LK IE U 06 0 122 Europe/Dublin 2010-08-14 +3309065 Loughs Leaghan Loughs Leaghan 54.97083 -8.29778 H LKS IE U 06 0 66 Europe/Dublin 2010-08-14 +3309066 Crohyboyle Crohyboyle 54.97806 -8.31 T HLL IE U 06 0 78 Europe/Dublin 2010-08-14 +3309067 Parknatomogard Parknatomogard 54.96972 -8.33889 P PPLL IE U 06 0 88 Europe/Dublin 2010-08-14 +3309068 Loughs Nabrack Loughs Nabrack 54.98028 -8.35722 H LKS IE U 06 0 74 Europe/Dublin 2010-08-14 +3309069 Meenacross Meenacross 54.90778 -8.38222 P PPL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309070 Lough Pollrory Lough Pollrory 54.9 -8.39583 H LK IE U 06 0 12 Europe/Dublin 2010-08-14 +3309071 Aghnish Lough Aghnish Lough 54.91944 -8.425 H LK IE U 06 0 84 Europe/Dublin 2010-08-14 +3309072 Lough Salt Lough Salt 54.9125 -8.39444 H LK IE U 06 0 73 Europe/Dublin 2010-08-14 +3309073 Lough Ilian Lough Ilian 54.93194 -8.39444 H LK IE U 06 0 72 Europe/Dublin 2010-08-14 +3309074 Crohy Crohy 54.91194 -8.44194 P PPLL IE U 06 0 47 Europe/Dublin 2010-08-14 +3309075 Crokeragh Crokeragh 54.92417 -8.42556 T HLL IE U 06 0 85 Europe/Dublin 2010-08-14 +3309076 Croaghnamaddy Croaghnamaddy 54.9225 -8.39333 T HLL IE U 06 0 81 Europe/Dublin 2010-08-14 +3309077 Croagheghy Croagheghy 54.91444 -8.41056 T HLL IE U 06 0 80 Europe/Dublin 2010-08-14 +3309078 Carran Hill Carran Hill 54.93972 -8.39 T HLL IE U 06 0 48 Europe/Dublin 2010-08-14 +3309079 Meenabollagan Hill Meenabollagan Hill 54.92972 -8.37306 T HLL IE U 06 0 77 Europe/Dublin 2010-08-14 +3309080 Toberkeen Toberkeen 54.93806 -8.38083 P PPLL IE U 06 0 64 Europe/Dublin 2010-08-14 +3309081 Termon Termon 54.94194 -8.44806 T PEN IE U 06 0 1 Europe/Dublin 2010-08-14 +3309082 Inisheane Inisheane 54.94778 -8.39639 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309083 Inishal Inishal 54.95 -8.425 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309084 Inishmeal Inishmeal 54.97167 -8.43389 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309085 Meenmore Meenmore 54.95889 -8.39111 P PPL IE U 06 0 8 Europe/Dublin 2010-08-14 +3309086 Meenanalbany Meenanalbany 54.97861 -8.38056 P PPLL IE U 06 0 33 Europe/Dublin 2010-08-14 +3309087 Illancrone Illancrone 54.94306 -8.48056 T ISL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309088 Ballintra Ballintra 54.97917 -8.50139 P PPL IE U 06 0 18 Europe/Dublin 2010-08-14 +3309089 Aphort Aphort 54.97639 -8.51944 P PPLL IE U 06 0 8 Europe/Dublin 2010-08-14 +3309090 Hook Point Hook Point 54.97472 -8.48528 T PT IE U 06 0 -9999 Europe/Dublin 2010-08-14 +3309091 Aillroe Beg Aillroe Beg 52.62139 -9.18417 T SLP IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3309092 Aillroe More Aillroe More 52.63806 -9.17778 L LCTY IE M 03 0 30 Europe/Dublin 2010-08-14 +3309093 Effernan Effernan 52.64444 -9.18306 P PPL IE M 03 0 59 Europe/Dublin 2010-08-14 +3309094 Effernan Lough Effernan Lough 52.64722 -9.15083 H LK IE M 03 0 54 Europe/Dublin 2010-08-14 +3309095 Gortnahana Gortnahana 52.66306 -9.1875 L LCTY IE M 03 0 77 Europe/Dublin 2010-08-14 +3309096 Cloonsnagnta Lough Cloonsnagnta Lough 52.68056 -9.16139 H LK IE M 03 0 76 Europe/Dublin 2010-08-14 +3309097 Gortglass Lough Gortglass Lough 52.68444 -9.15111 H LK IE M 03 0 74 Europe/Dublin 2010-08-14 +3309098 Craghera Craghera 52.69722 -9.17556 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3309099 Boulliagh Boulliagh 52.77917 -9.23 L LCTY IE M 03 0 154 Europe/Dublin 2010-08-14 +3309100 Tullaghaboy Tullaghaboy 52.79806 -9.24972 L LCTY IE M 03 0 148 Europe/Dublin 2010-08-14 +3309101 Ben Dash Ben Dash 52.78667 -9.17639 T HLL IE M 03 0 159 Europe/Dublin 2010-08-14 +3309102 Lellesagle Lellesagle 52.78167 -9.18778 L LCTY IE M 03 0 157 Europe/Dublin 2010-08-14 +3309103 Doolough Doolough 52.7825 -9.27889 L LCTY IE M 03 0 158 Europe/Dublin 2010-08-14 +3309104 Drummin Drummin 52.7775 -9.34167 L LCTY IE M 03 0 113 Europe/Dublin 2010-08-14 +3309105 Sruhaunakit Bridge Sruhaunakit Bridge 52.80306 -9.33806 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3309106 Knocknabolry Knocknabolry 52.81056 -9.28917 L LCTY IE M 03 0 157 Europe/Dublin 2010-08-14 +3309107 Kinturk Kinturk 52.81389 -9.24139 L LCTY IE M 03 0 158 Europe/Dublin 2010-08-14 +3309108 Glen Bridge Glen Bridge 52.82111 -9.23083 P PPL IE M 03 0 156 Europe/Dublin 2010-08-14 +3309109 Caherogan Caherogan 52.8375 -9.36194 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3309110 Doonsallagh House Doonsallagh House 52.83167 -9.33194 S HSEC IE M 03 0 115 Europe/Dublin 2010-08-14 +3309111 Shanavogh Shanavogh 52.82694 -9.305 L LCTY IE M 03 0 205 Europe/Dublin 2010-08-14 +3309112 Lough Boolynagreana Lough Boolynagreana 52.83 -9.27306 H LK IE M 03 0 200 Europe/Dublin 2010-08-14 +3309113 Magherabaun Magherabaun 52.83389 -9.25778 L LCTY IE M 03 0 182 Europe/Dublin 2010-08-14 +3309114 Letterkelly Letterkelly 52.8525 -9.30389 L LCTY IE M 03 0 159 Europe/Dublin 2010-08-14 +3309115 Cloghannmore Cloghannmore 52.85278 -9.33722 P PPL IE M 03 0 138 Europe/Dublin 2010-08-14 +3309116 Mountcallan House Mountcallan House 52.84 -9.24167 S HSEC IE M 03 0 148 Europe/Dublin 2010-08-14 +3309117 Northfield House Northfield House 52.84 -9.18 S HSEC IE M 03 0 81 Europe/Dublin 2010-08-14 +3309118 Lough Akit Lough Akit 52.85694 -9.22361 H LK IE M 03 0 86 Europe/Dublin 2010-08-14 +3309119 Reanagishagh Reanagishagh 52.81528 -9.20139 L LCTY IE M 03 0 140 Europe/Dublin 2010-08-14 +3309120 Crow’s Bridge Crow's Bridge 52.8475 -9.19361 P PPL IE M 03 0 76 Europe/Dublin 2010-08-14 +3309121 Farmoyle Farmoyle 52.85639 -9.19972 P PPL IE M 03 0 76 Europe/Dublin 2010-08-14 +3309122 Slieveacurry Slieveacurry 52.86583 -9.29417 T HLL IE M 03 0 159 Europe/Dublin 2010-08-14 +3309123 Boolyduff Boolyduff 52.86694 -9.27083 L LCTY IE M 03 0 95 Europe/Dublin 2010-08-14 +3309124 Fahanlunaghta Bridge Fahanlunaghta Bridge 52.88083 -9.28917 P PPL IE M 03 0 96 Europe/Dublin 2010-08-14 +3309125 White’s Bridge White's Bridge 52.8875 -9.30889 P PPL IE M 03 0 113 Europe/Dublin 2010-08-14 +3309126 Knockatullaghhaun Knockatullaghhaun 52.88972 -9.29111 L LCTY IE M 03 0 86 Europe/Dublin 2010-08-14 +3309127 Derrymore Bridge Derrymore Bridge 52.88278 -9.24722 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +3309128 Knockacullen Knockacullen 52.89333 -9.24194 L LCTY IE M 03 0 63 Europe/Dublin 2010-08-14 +3309129 Lough Caum Lough Caum 52.88 -9.215 H LK IE M 03 0 69 Europe/Dublin 2010-08-14 +3309130 Bauntlieve Bauntlieve 52.86917 -9.23694 L LCTY IE M 03 0 83 Europe/Dublin 2010-08-14 +3309131 Cloonmackan Lough Cloonmackan Lough 52.86778 -9.19333 H LK IE M 03 0 71 Europe/Dublin 2010-08-14 +3309132 Regalnka Bridge Regalnka Bridge 52.89417 -9.20361 P PPL IE M 03 0 61 Europe/Dublin 2010-08-14 +3309134 Shannon Lawn Shannon Lawn 52.57222 -9.31528 S EST IE M 16 0 8 Europe/Dublin 2010-08-14 +3309135 Wood Lawn Wood Lawn 52.63111 -9.33056 S EST IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3309136 Tarbert Race Tarbert Race 52.59222 -9.34694 H RPDS IE 00 0 -9999 Europe/Dublin 1998-05-05 +3309137 Ratheahill West Ratheahill West 52.3975 -9.15167 L LCTY IE M 16 0 163 Europe/Dublin 2010-08-14 +3309138 Ratheahill East Ratheahill East 52.40778 -9.12972 L LCTY IE M 16 0 159 Europe/Dublin 2010-08-14 +3309139 Glenquin House Glenquin House 52.38583 -9.1075 S HSEC IE M 16 0 152 Europe/Dublin 2010-08-14 +3309140 Ballymurragh Ballymurragh 52.41111 -9.15806 L LCTY IE M 16 0 205 Europe/Dublin 2010-08-14 +3309141 Barnagh Barnagh 52.41583 -9.14722 L LCTY IE M 16 0 189 Europe/Dublin 2010-08-14 +3309142 Arranagh Arranagh 52.40306 -9.09556 L LCTY IE M 16 0 119 Europe/Dublin 2010-08-14 +3309143 Rahanagh Rahanagh 52.415 -9.11167 L LCTY IE M 16 0 141 Europe/Dublin 2010-08-14 +3309144 Ballintober House Ballintober House 52.38889 -9.03333 S HSEC IE M 16 0 76 Europe/Dublin 2010-08-14 +3309145 Camas House Camas House 52.40667 -9.05639 S HSEC IE M 16 0 72 Europe/Dublin 2010-08-14 +3309146 Ballygeel Ballygeel 52.41667 -9.06222 L LCTY IE M 16 0 64 Europe/Dublin 2010-08-14 +3309147 Crean Crean 52.42222 -9.11111 L LCTY IE M 16 0 128 Europe/Dublin 2010-08-14 +3309148 Ballyconway Ballyconway 52.42889 -9.10972 L LCTY IE M 16 0 119 Europe/Dublin 2010-08-14 +3309149 Killaghteen Killaghteen 52.44139 -9.10917 L LCTY IE M 16 0 114 Europe/Dublin 2010-08-14 +3309150 Shernagh Stream Shernagh Stream 52.44167 -9.03639 H STM IE M 16 0 56 Europe/Dublin 2010-08-14 +3309151 Glashanakirka Stream Glashanakirka Stream 52.43917 -9.035 H STM IE M 16 0 58 Europe/Dublin 2010-08-14 +3309152 Killeline House Killeline House 52.43694 -9.05806 S HSEC IE M 16 0 61 Europe/Dublin 2010-08-14 +3309153 River Arra River Arra 52.44778 -9.07194 H STM IE M 16 0 71 Europe/Dublin 2010-08-14 +3309154 Lisheemine Bridge Lisheemine Bridge 52.43083 -9.0325 P PPL IE M 16 0 59 Europe/Dublin 2010-08-14 +3309155 Castle Mahan Castle Mahan 52.42556 -9.03083 S CSTL IE M 16 0 59 Europe/Dublin 2010-08-14 +3309156 Shaneath Shaneath 52.41556 -9.01361 L LCTY IE M 16 0 64 Europe/Dublin 2010-08-14 +3309157 Ashgrove Bridge Ashgrove Bridge 52.46667 -9.09917 P PPL IE M 16 0 106 Europe/Dublin 2010-08-14 +3309158 Dromin Dromin 52.45667 -9.12306 L LCTY IE M 16 0 129 Europe/Dublin 2010-08-14 +3309159 Ballyfraley Bridge Ballyfraley Bridge 52.46333 -9.03028 P PPL IE M 16 0 51 Europe/Dublin 2010-08-14 +3309160 Dooally River Dooally River 52.44278 -9.03611 H STM IE M 16 0 56 Europe/Dublin 2010-08-14 +3309161 Daar Bridge Daar Bridge 52.47139 -9.06722 P PPL IE M 16 0 73 Europe/Dublin 2010-08-14 +3309162 Daar River Daar River 52.44278 -9.03083 H STM IE M 16 0 55 Europe/Dublin 2010-08-14 +3309163 Glenastar House Glenastar House 52.49278 -9.10028 S HSEC IE M 16 0 152 Europe/Dublin 2010-08-14 +3309164 Ballynabearna Ballynabearna 52.48306 -9.12639 L LCTY IE M 16 0 155 Europe/Dublin 2010-08-14 +3309165 Oldmill Bridge Oldmill Bridge 52.47833 -9.10222 P PPL IE M 16 0 132 Europe/Dublin 2010-08-14 +3309166 Danganville Bridge Danganville Bridge 52.48528 -9.08944 P PPL IE M 16 0 120 Europe/Dublin 2010-08-14 +3309167 Killard Killard 52.47861 -9.06 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3309168 Glensharrold Glensharrold 52.50417 -9.15222 P PPL IE M 16 0 153 Europe/Dublin 2010-08-14 +3309169 Raws Lower Raws Lower 54.76056 -7.60111 P PPLL IE U 06 0 134 Europe/Dublin 2010-08-14 +3309170 Raws Hill Raws Hill 54.75417 -7.61222 T HLL IE U 06 0 152 Europe/Dublin 2010-08-14 +3309171 Tievebrack Tievebrack 54.765 -7.63917 T HLL IE U 06 0 133 Europe/Dublin 2010-08-14 +3309172 Dartan Dartan 54.75194 -7.64944 P PPLL IE U 06 0 159 Europe/Dublin 2010-08-14 +3309173 Fearn Hill Fearn Hill Fearn Hill,Fern Hill 54.75361 -7.55639 T HLL IE U 06 0 230 155 Europe/Dublin 2010-08-14 +3309174 Graffy Graffy 54.77278 -7.56444 P PPLL IE U 06 0 81 Europe/Dublin 2010-08-14 +3309175 Moanroe Moanroe 52.39583 -9.01361 L LCTY IE M 16 0 70 Europe/Dublin 2010-08-14 +3309176 Curragh Bridge Curragh Bridge 52.42139 -8.98111 P PPL IE M 16 0 70 Europe/Dublin 2010-08-14 +3309177 Cormakilly Cormakilly 54.77917 -7.58861 P PPL IE U 06 0 65 Europe/Dublin 2010-08-14 +3309178 Dunnaloo Dunnaloo 54.78611 -7.55833 P PPLL IE U 06 0 32 Europe/Dublin 2010-08-14 +3309179 Cloghfin Cloghfin 54.79417 -7.55194 P PPLL IE U 06 0 29 Europe/Dublin 2010-08-14 +3309180 Finn Lodge Finn Lodge 54.79472 -7.58278 S HSE IE U 06 0 32 Europe/Dublin 2010-08-14 +3309181 Ballybun Ballybun 54.78111 -7.61028 P PPLL IE U 06 0 90 Europe/Dublin 2010-08-14 +3309182 Ringsend Ringsend 54.79472 -7.59139 P PPLL IE U 06 0 33 Europe/Dublin 2010-08-14 +3309183 Tirinisk Tirinisk 54.79667 -7.61139 P PPLL IE U 06 0 42 Europe/Dublin 2010-08-14 +3309184 Liscooly Bridge Liscooly Bridge 54.79667 -7.64222 P PPLL IE U 06 0 41 Europe/Dublin 2010-08-14 +3309185 Drummurphy Drummurphy 54.78556 -7.63083 P PPLL IE U 06 0 63 Europe/Dublin 2010-08-14 +3309186 Ballyarrell Ballyarrell 54.79083 -7.6575 P PPLL IE U 06 0 58 Europe/Dublin 2010-08-14 +3309187 Drumfergus Drumfergus 54.77972 -7.6725 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3309188 Magheraboy Magheraboy 54.77444 -7.65389 P PPLL IE U 06 0 99 Europe/Dublin 2010-08-14 +3309189 Harpers Town Harpers Town 54.76889 -7.66028 P PPLL IE U 06 0 100 Europe/Dublin 2010-08-14 +3309190 Rushyhill Rushyhill 54.7625 -7.67611 S FRM IE U 06 0 133 Europe/Dublin 2010-08-14 +3309191 Carrickcolman Carrickcolman 54.80139 -7.62417 P PPLL IE U 06 0 37 Europe/Dublin 2010-08-14 +3309192 Liscooly Liscooly 54.79944 -7.64278 P PPLL IE U 06 0 41 Europe/Dublin 2010-08-14 +3309193 High Town High Town 54.805 -7.64333 P PPL IE U 06 0 46 Europe/Dublin 2010-08-14 +3309194 Mullingar Mullingar 54.80528 -7.67639 P PPLL IE U 06 0 73 Europe/Dublin 2010-08-14 +3309195 Leaght Leaght 54.81611 -7.6475 P PPLL IE U 06 0 64 Europe/Dublin 2010-08-14 +3309196 Croaghan Hill Croaghan Hill 54.82389 -7.53444 T HLL IE U 06 0 220 73 Europe/Dublin 2010-08-14 +3309197 Crossy Hill Crossy Hill 54.80583 -7.55389 T HLL IE U 06 0 134 Europe/Dublin 2010-08-14 +3309198 Killindarragh Killindarragh 54.81861 -7.5125 P PPLL IE U 06 0 21 Europe/Dublin 2010-08-14 +3309199 Tirkeeran Tirkeeran 54.81889 -7.54361 S FRM IE U 06 0 76 Europe/Dublin 2010-08-14 +3309200 Ardnaglass Ardnaglass 54.81528 -7.54972 P PPLL IE U 06 0 69 Europe/Dublin 2010-08-14 +3309201 Craigtown Hill Craigtown Hill 54.82083 -7.5675 T HLL IE U 06 0 69 Europe/Dublin 2010-08-14 +3309202 Kilmonaster Kilmonaster 54.82333 -7.57722 P PPLL IE U 06 0 72 Europe/Dublin 2010-08-14 +3309203 Breagy Breagy 54.82278 -7.60111 S FRM IE U 06 0 111 Europe/Dublin 2010-08-14 +3309204 Shannon Shannon 54.83528 -7.55972 S FRM IE U 06 0 32 Europe/Dublin 2010-08-14 +3309205 Holmes’s Town Holmes's Town 54.82306 -7.63111 P PPL IE U 06 0 90 Europe/Dublin 2010-08-14 +3309206 Roosky Upper Roosky Upper 54.82639 -7.66361 P PPL IE U 06 0 79 Europe/Dublin 2010-08-14 +3309207 Green Hills Green Hills 54.845 -7.64472 S EST IE U 06 0 65 Europe/Dublin 2010-08-14 +3309208 Carrickbrack Carrickbrack 54.84972 -7.64333 P PPL IE U 06 0 65 Europe/Dublin 2010-08-14 +3309209 Milltown Milltown 54.84806 -7.61972 P PPL IE U 06 0 55 Europe/Dublin 2010-08-14 +3309210 Cottown Cottown 54.83778 -7.59806 S FRM IE U 06 0 46 Europe/Dublin 2010-08-14 +3309211 Cloghfin Cloghfin 54.84389 -7.57611 P PPL IE U 06 0 71 Europe/Dublin 2010-08-14 +3309212 Tops Tops 54.85028 -7.59806 P PPLL IE U 06 0 118 Europe/Dublin 2010-08-14 +3309213 Figart Figart 54.85722 -7.6325 P PPLL IE U 06 0 60 Europe/Dublin 2010-08-14 +3309214 Argery Hill Argery Hill 54.85083 -7.55333 T HLL IE U 06 0 44 Europe/Dublin 2010-08-14 +3309215 Mallaghanny Mallaghanny 54.85889 -7.56361 L LCTY IE U 06 0 67 Europe/Dublin 2010-08-14 +3309216 Rossgeir Rossgeir 54.84917 -7.50028 P PPL IE U 06 0 7 Europe/Dublin 2010-08-14 +3309217 Gortin Gortin 54.85806 -7.52389 P PPLL IE U 06 0 7 Europe/Dublin 2010-08-14 +3309218 Ruthfreedy House Ruthfreedy House 52.44917 -8.98028 S HSEC IE M 16 0 76 Europe/Dublin 2010-08-14 +3309219 Balliniska Balliniska 52.40583 -8.99528 L LCTY IE M 16 0 65 Europe/Dublin 2010-08-14 +3309220 Island More Island More 54.85583 -7.45833 T ISL IE U 06 0 26 Europe/Dublin 2010-08-14 +3309221 Port Hall Port Hall 54.8775 -7.44806 S EST IE U 06 0 6 Europe/Dublin 2010-08-14 +3309222 Chesterfield Chesterfield 52.46639 -9.01778 L LCTY IE M 16 0 51 Europe/Dublin 2010-08-14 +3309223 Swilly Burn Swilly Burn 54.88806 -7.44917 H STM IE U 06 0 3 Europe/Dublin 2010-08-14 +3309224 Grange Bridge Grange Bridge 52.46194 -9.02111 P PPL IE M 16 0 51 Europe/Dublin 2010-08-14 +3309225 Brownfield Brownfield 54.86889 -7.51667 P PPLL IE U 06 0 1 Europe/Dublin 2010-08-14 +3309226 Loghill Loghill 52.47972 -8.99111 P PPL IE M 16 0 52 Europe/Dublin 2010-08-14 +3309227 Reens Bridge Reens Bridge 52.49056 -9.00333 P PPL IE M 16 0 43 Europe/Dublin 2010-08-14 +3309228 Creaghadoos Creaghadoos 54.88806 -7.49444 P PPLL IE U 06 0 47 Europe/Dublin 2010-08-14 +3309229 Kilscannell House Kilscannell House 52.5 -9.01083 S HSEC IE M 16 0 49 Europe/Dublin 2010-08-14 +3309230 Ballylennan Ballylennan 54.88861 -7.5175 P PPLL IE U 06 0 14 Europe/Dublin 2010-08-14 +3309231 Ballyallinan Ballyallinan 52.48917 -8.97472 L LCTY IE M 16 0 54 Europe/Dublin 2010-08-14 +3309232 Tullyrap Tullyrap 54.85722 -7.6325 P PPLL IE U 06 0 60 Europe/Dublin 2010-08-14 +3309233 Elm Hill Elm Hill 52.50083 -9.02444 S EST IE M 16 0 55 Europe/Dublin 2010-08-14 +3309234 Drumbeg Drumbeg 54.88278 -7.55028 P PPL IE U 06 0 25 Europe/Dublin 2010-08-14 +3309235 Binnion Hill Binnion Hill 54.8975 -7.49361 T HLL IE U 06 0 111 Europe/Dublin 2010-08-14 +3309236 Lettergull Lettergull 54.89583 -7.5275 P PPLL IE U 06 0 40 Europe/Dublin 2010-08-14 +3309237 Cahermoyle House Cahermoyle House 52.50861 -9.05194 S HSEC IE M 16 0 76 Europe/Dublin 2010-08-14 +3309238 Winnyhaw Winnyhaw 54.87778 -7.63278 S FRM IE U 06 0 142 Europe/Dublin 2010-08-14 +3309239 Ballyeany House Ballyeany House 52.52778 -9.04806 S HSEC IE M 16 0 71 Europe/Dublin 2010-08-14 +3309240 Flemings Town Flemings Town 54.88222 -7.67083 P PPLL IE U 06 0 125 Europe/Dublin 2010-08-14 +3309241 Cooleappagh Cooleappagh 52.52333 -9.03139 L LCTY IE M 16 0 61 Europe/Dublin 2010-08-14 +3309242 Cornagillah Cornagillah 54.88694 -7.67528 P PPL IE U 06 0 142 Europe/Dublin 2010-08-14 +3309243 Waterville Waterville 52.53333 -9.02861 P PPL IE M 16 0 57 Europe/Dublin 2010-08-14 +3309244 Court Lodge Court Lodge 52.51083 -8.9575 S HSEC IE M 16 0 29 Europe/Dublin 2010-08-14 +3309245 Muntertinny Muntertinny 54.88417 -7.62611 S FRM IE U 06 0 170 Europe/Dublin 2010-08-14 +3309246 Mullatin Mullatin 54.89722 -7.64611 S FRM IE U 06 0 160 Europe/Dublin 2010-08-14 +3309247 Mongorry Hill Mongorry Hill 54.89306 -7.62167 T HLL IE U 06 0 285 169 Europe/Dublin 2010-08-14 +3309248 Craigs Craigs 54.88222 -7.59361 S FRM IE U 06 0 79 Europe/Dublin 2010-08-14 +3309249 Sheskinapoll Sheskinapoll 54.91028 -7.57472 P PPL IE U 06 0 249 Europe/Dublin 2010-08-14 +3309250 Glenmaquin Glenmaquin 54.90556 -7.66611 P PPLL IE U 06 0 105 Europe/Dublin 2010-08-14 +3309251 Mullasawny Mullasawny 54.89944 -7.53361 T HLL IE U 06 0 40 Europe/Dublin 2010-08-14 +3309252 Whitehill Whitehill 54.91306 -7.46444 P PPLL IE U 06 0 6 Europe/Dublin 2010-08-14 +3309253 Tullyonven Tullyonven 54.9225 -7.47111 P PPLL IE U 06 0 20 Europe/Dublin 2010-08-14 +3309254 Clashygowan Clashygowan 54.94194 -7.47 S FRM IE U 06 0 48 Europe/Dublin 2010-08-14 +3309255 Momeen Momeen 54.91306 -7.525 S FRM IE U 06 0 94 Europe/Dublin 2010-08-14 +3309256 Heatheryhill Heatheryhill 54.91556 -7.55306 P PPLL IE U 06 0 327 Europe/Dublin 2010-08-14 +3309257 Castledowey Castledowey 54.91972 -7.56278 P PPLL IE U 06 0 211 Europe/Dublin 2010-08-14 +3309258 Ardagh Ardagh 54.93694 -7.53472 P PPLL IE U 06 0 141 Europe/Dublin 2010-08-14 +3309259 Lismoghry Lismoghry 54.93778 -7.55111 P PPL IE U 06 0 130 Europe/Dublin 2010-08-14 +3309260 Galdonagh Galdonagh 54.94306 -7.57194 P PPLL IE U 06 0 86 Europe/Dublin 2010-08-14 +3309261 Rocktown Rocktown 54.91444 -7.61111 P PPLL IE U 06 0 127 Europe/Dublin 2010-08-14 +3309262 Drumoghill Drumoghill 54.93694 -7.59361 P PPLL IE U 06 0 70 Europe/Dublin 2010-08-14 +3309263 Lisclamer Lisclamer 54.925 -7.60972 P PPLL IE U 06 0 84 Europe/Dublin 2010-08-14 +3309264 Drumadowan Drumadowan 54.91472 -7.65667 P PPLL IE U 06 0 74 Europe/Dublin 2010-08-14 +3309265 Tullybegly Tullybegly 54.94583 -7.59194 P PPLL IE U 06 0 76 Europe/Dublin 2010-08-14 +3309266 Raymoghy Raymoghy 54.94611 -7.62028 P PPLL IE U 06 0 75 Europe/Dublin 2010-08-14 +3309267 Leslie Hill Leslie Hill 54.93583 -7.62639 P PPLL IE U 06 0 52 Europe/Dublin 2010-08-14 +3309268 Blind Town Blind Town 54.93806 -7.6675 P PPLL IE U 06 0 59 Europe/Dublin 2010-08-14 +3309269 Dromore Dromore 54.94611 -7.66944 P PPLL IE U 06 0 36 Europe/Dublin 2010-08-14 +3309270 Irineragh Irineragh 54.95111 -7.66361 P PPLL IE U 06 0 11 Europe/Dublin 2010-08-14 +3309271 Rossbrackan Rossbrackan 54.95167 -7.63722 P PPLL IE U 06 0 29 Europe/Dublin 2010-08-14 +3309272 Big Isle Big Isle 54.96833 -7.63389 T PEN IE U 06 0 1 Europe/Dublin 2010-08-14 +3309273 Sallybrook Sallybrook 54.95889 -7.56917 P PPLL IE U 06 0 122 Europe/Dublin 2010-08-14 +3309274 Drumbarnet Upper Drumbarnet Upper 54.96361 -7.57611 P PPLL IE U 06 0 98 Europe/Dublin 2010-08-14 +3309275 Magherabeg Magherabeg 54.96944 -7.6125 P PPLL IE U 06 0 68 Europe/Dublin 2010-08-14 +3309276 Moneyhaughly Moneyhaughly 54.97417 -7.58972 P PPL IE U 06 0 80 Europe/Dublin 2010-08-14 +3309277 Oak Park Oak Park 54.97333 -7.67389 S EST IE U 06 0 2 Europe/Dublin 2010-08-14 +3309278 Drumbarnet Drumbarnet 54.98139 -7.56111 P PPLL IE U 06 0 123 Europe/Dublin 2010-08-14 +3309279 Mill Town Mill Town 54.98028 -7.53389 P PPLL IE U 06 0 62 Europe/Dublin 2010-08-14 +3309280 Gortree Gortree 54.97667 -7.52694 P PPL IE U 06 0 64 Europe/Dublin 2010-08-14 +3309281 Glensmill Glensmill 54.96944 -7.53028 P PPLL IE U 06 0 87 Europe/Dublin 2010-08-14 +3309282 Ryeland Ryeland 54.95611 -7.54972 S EST IE U 06 0 124 Europe/Dublin 2010-08-14 +3309283 Plaster Plaster 54.98389 -7.52722 P PPLL IE U 06 0 46 Europe/Dublin 2010-08-14 +3309284 Dooish Mountain Dooish Mountain 54.95194 -7.52417 T HLL IE U 06 0 158 Europe/Dublin 2010-08-14 +3309285 Monglass Monglass 54.97889 -7.44444 P PPLL IE U 06 0 33 Europe/Dublin 2010-08-14 +3309286 Listicall Listicall 54.96806 -7.47528 P PPLL IE U 06 0 67 Europe/Dublin 2010-08-14 +3309287 Cloon Cloon 54.96889 -7.44139 P PPLL IE U 06 0 12 Europe/Dublin 2010-08-14 +3309288 Cross Cross 54.95528 -7.48694 P PPLL IE U 06 0 91 Europe/Dublin 2010-08-14 +3309289 Tober Tober 54.95639 -7.50139 P PPLL IE U 06 0 140 Europe/Dublin 2010-08-14 +3309290 Dernacally Dernacally 54.94889 -7.46667 P PPLL IE U 06 0 48 Europe/Dublin 2010-08-14 +3309291 Dunmore House Dunmore House 54.95472 -7.42194 S HSEC IE U 06 0 1 Europe/Dublin 2010-08-14 +3309292 Killea Killea 54.97944 -7.4125 P PPL IE U 06 0 26 Europe/Dublin 2010-08-14 +3309293 Imlick Imlick 54.97139 -7.41639 P PPLL IE U 06 0 3 Europe/Dublin 2010-08-14 +3309294 Soldiers Point Soldiers Point 54.00639 -6.34889 T PT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309295 Marsh South Marsh South 53.99611 -6.35278 P PPLL IE L 19 0 1 Europe/Dublin 2010-08-14 +3309296 Ballymascanlan Ballymascanlan 54.02833 -6.35083 P PPL IE L 19 0 7 Europe/Dublin 2010-08-14 +3309297 Ballymascanlan House Ballymascanlan House 54.0325 -6.35472 S HSEC IE L 19 0 7 Europe/Dublin 2010-08-14 +3309298 Trumpet Hill Trumpet Hill 54.02833 -6.32694 T HLL IE L 19 0 123 35 Europe/Dublin 2010-08-14 +3309299 Jenkinstown Cross Jenkinstown Cross 54.02083 -6.30694 P PPLL IE L 19 0 81 Europe/Dublin 2010-08-14 +3309300 The Round Mountain The Round Mountain 54.03194 -6.3025 T HLL IE L 19 0 272 151 Europe/Dublin 2010-08-14 +3309301 Annaloughan Mountain Annaloughan Mountain 54.01778 -6.28083 T HLL IE L 19 0 265 231 Europe/Dublin 2010-08-14 +3309302 Slievenaglogh Slievenaglogh 54.01389 -6.26417 T MT IE L 19 0 313 188 Europe/Dublin 2010-08-14 +3309303 Rockmarshall House Rockmarshall House 54.00972 -6.285 S HSEC IE L 19 0 109 Europe/Dublin 2010-08-14 +3309304 Rampark Rampark 53.99972 -6.26278 P PPL IE L 19 0 40 Europe/Dublin 2010-08-14 +3309305 Mullaghattin Mullaghattin 54.03167 -6.27444 T HLL IE L 19 0 263 Europe/Dublin 2010-08-14 +3309306 Maddoxland Maddoxland 53.99111 -6.24528 S EST IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309307 Giles Quay Giles Quay 53.9875 -6.245 L LCTY IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309308 White House Point White House Point 53.98472 -6.24167 T PT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309309 Piedmont House Piedmont House 54.005 -6.2425 S HSEC IE L 19 0 68 Europe/Dublin 2010-08-14 +3309310 Castletown House Castletown House 54.00639 -6.22028 S HSEC IE L 19 0 62 Europe/Dublin 2010-08-14 +3309311 Big River Big River 54.00778 -6.22917 H STM IE L 19 0 51 Europe/Dublin 2010-08-14 +3309312 Little River Little River 54.00722 -6.23056 H STM IE L 19 0 51 Europe/Dublin 2010-08-14 +3309313 The Bush The Bush 53.99806 -6.19556 P PPL IE L 19 0 45 Europe/Dublin 2010-08-14 +3309314 Ardtully Ardtully 53.99472 -6.175 P PPLL IE L 19 0 18 Europe/Dublin 2010-08-14 +3309315 Rogans Cross Roads Rogans Cross Roads 54.00444 -6.17722 P PPLL IE L 19 0 40 Europe/Dublin 2010-08-14 +3309316 Ballagan Ballagan 54.00528 -6.12333 P PPLL IE L 19 0 1 Europe/Dublin 2010-08-14 +3309317 Boharboy Boharboy 54.01167 -6.13861 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +3309318 Greenore Point Greenore Point 54.03361 -6.13222 T PT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309319 Black Rock Black Rock 54.03889 -6.15306 T RK IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309320 Grange Cross Grange Cross 54.01333 -6.1875 P PPLL IE L 19 0 76 Europe/Dublin 2010-08-14 +3309321 Rourkes Town Rourkes Town 54.01833 -6.22167 P PPLL IE L 19 0 170 Europe/Dublin 2010-08-14 +3309322 Barnavave Barnavave 54.02694 -6.205 T MT IE L 19 0 349 188 Europe/Dublin 2010-08-14 +3309323 Nootka Lodge Nootka Lodge 54.03 -6.16389 S HSE IE L 19 0 6 Europe/Dublin 2010-08-14 +3309324 Slieve Foye Slieve Foye 54.04417 -6.21806 T MT IE L 19 0 589 376 Europe/Dublin 2010-08-14 +3309325 Knocknamona Knocknamona 54.03917 -6.23972 P PPLL IE L 19 0 188 Europe/Dublin 2010-08-14 +3309326 Cloughmore Cloughmore 54.04583 -6.25306 P PPLL IE L 19 0 280 Europe/Dublin 2010-08-14 +3309327 Spellickanee Spellickanee 54.03889 -6.26778 P PPLL IE L 19 0 279 Europe/Dublin 2010-08-14 +3309328 The Castle The Castle 54.04417 -6.28889 T MT IE L 19 0 385 319 Europe/Dublin 2010-08-14 +3309329 The Split Rock The Split Rock 54.05417 -6.24667 T RK IE L 19 0 372 Europe/Dublin 2010-08-14 +3309330 The Ravens Rock The Ravens Rock 54.05611 -6.26028 T RK IE L 19 0 302 Europe/Dublin 2010-08-14 +3309331 The Windy Gap The Windy Gap 54.06056 -6.27611 T GAP IE L 19 0 257 Europe/Dublin 2010-08-14 +3309332 The Farrs Rock The Farrs Rock 54.05694 -6.265 T RK IE L 19 0 302 Europe/Dublin 2010-08-14 +3309333 Carnavaddy Carnavaddy 54.06056 -6.30111 T MT IE L 19 0 477 421 Europe/Dublin 2010-08-14 +3309334 Carrabane Carrabane 54.0575 -6.32111 T HLL IE L 19 0 251 Europe/Dublin 2010-08-14 +3309335 Ballymakellelt Ballymakellelt 54.04167 -6.33278 P PPLL IE L 19 0 111 Europe/Dublin 2010-08-14 +3309336 Flurry River Flurry River Flurry River 54.02333 -6.36444 H STM IE 00 0 2 Europe/Dublin 2010-08-10 +3309337 Currathir Bridge Currathir Bridge 54.06722 -6.34861 P PPLL IE L 19 0 137 Europe/Dublin 2010-08-14 +3309338 The Ben Rock The Ben Rock 54.07139 -6.33111 T PK IE L 19 0 316 Europe/Dublin 2010-08-14 +3309339 Tullaghomeath Tullaghomeath 54.07472 -6.28389 P PPLL IE L 19 0 230 Europe/Dublin 2010-08-14 +3309340 Ardaghy Ardaghy 54.08389 -6.28389 P PPLL IE L 19 0 127 Europe/Dublin 2010-08-14 +3309341 Two Mile River Bridge Two Mile River Bridge 54.06444 -6.21861 P PPLL IE L 19 0 113 Europe/Dublin 2010-08-14 +3309342 Ballyonen Ballyonen 54.06806 -6.24306 P PPLL IE L 19 0 100 Europe/Dublin 2010-08-14 +3309343 Ballinteskin Ballinteskin 54.07556 -6.25556 P PPLL IE L 19 0 25 Europe/Dublin 2010-08-14 +3309344 Prospect House Prospect House 54.08722 -6.25667 S HSEC IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309345 Omeath Park Omeath Park 54.09639 -6.275 S EST IE L 19 0 1 Europe/Dublin 2010-08-14 +3309346 Drummullagh Drummullagh 54.09278 -6.26472 L LCTY IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3309347 Cornamucklagh Cornamucklagh 54.10417 -6.29306 P PPLL IE L 19 0 74 Europe/Dublin 2010-08-14 +3309348 Anglesey Mountain Anglesey Mountain Anglesey Mountain 54.09806 -6.31333 T MT IE 00 0 412 306 Europe/Dublin 2010-08-10 +3309349 Clermont Clermont Clermont 54.09222 -6.32528 T MT IE L 19 0 446 321 Europe/Dublin 2010-08-14 +3309350 Edentober Edentober 54.10833 -6.3475 P PPLL IE L 19 0 188 Europe/Dublin 2010-08-14 +3309351 Feede Mountain Feede Mountain 54.07111 -6.36194 T HLL IE L 19 0 78 Europe/Dublin 2010-08-14 +3309352 Glan Cross Roads Glan Cross Roads 53.95194 -7.65667 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3309353 Gulladoo Lough Gulladoo Lough 53.95139 -7.62194 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +3309354 Cullies Lough Cullies Lough 53.96222 -7.60361 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3309355 Cullies River Cullies River 53.97694 -7.58389 H STM IE 00 0 75 Europe/Dublin 1998-04-30 +3309356 Rockfield Lough Rockfield Lough 53.98111 -7.58333 H LK IE 00 0 76 Europe/Dublin 1998-04-30 +3309357 Kilbrackan House Kilbrackan House 53.98611 -7.60361 S HSEC IE C 14 0 75 Europe/Dublin 2010-08-14 +3309358 Mullanadarragh Mullanadarragh 53.96861 -7.67389 P PPLL IE C 14 0 89 Europe/Dublin 2010-08-14 +3309359 Caltoughs Lough Caltoughs Lough 53.9925 -7.65417 H LK IE C 14 0 79 Europe/Dublin 2010-08-14 +3309360 Glebe House Glebe House 53.99 -7.67694 S HSEC IE C 14 0 89 Europe/Dublin 2010-08-14 +3309361 Kilnamar Lough Kilnamar Lough 54.00222 -7.60444 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3309362 Aghavilla House Aghavilla House 54.00667 -7.67167 S HSEC IE C 14 0 80 Europe/Dublin 2010-08-14 +3309363 Drumbrick Drumbrick 54.01222 -7.64944 P PPL IE C 14 0 77 Europe/Dublin 2010-08-14 +3309364 Clooncose Clooncose 54.02583 -7.67472 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3309365 Raleagh Raleagh 54.03111 -7.62639 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309366 Doogary Doogary 54.03778 -7.62917 P PPL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309367 Drummany Drummany 54.0275 -7.58889 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309368 Eylagh Eylagh 54.04472 -7.6025 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309369 Woodford Woodford 54.05833 -7.68194 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3309370 Ballymagauran Lough Ballymagauran Lough 54.06306 -7.67528 H LK IE 00 0 74 Europe/Dublin 1998-04-30 +3309371 Ballymagauran Ballymagauran 54.07083 -7.67972 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309372 Toberlyan Toberlyan 54.07444 -7.63694 P PPLL IE U 02 0 74 Europe/Dublin 2010-08-14 +3309373 Coologe Lough Coologe Lough 54.06583 -7.63972 H LK IE U 02 0 75 Europe/Dublin 2010-08-14 +3309374 Derrycassan Lough Derrycassan Lough 54.05694 -7.65722 H LK IE 00 0 75 Europe/Dublin 1998-04-30 +3309375 Gortnaleck Lough Gortnaleck Lough 54.08944 -7.66028 H LK IE U 02 0 71 Europe/Dublin 2010-08-14 +3309376 Camagh Lough Camagh Lough 54.08 -7.65056 H LK IE U 02 0 72 Europe/Dublin 2010-08-14 +3309377 Templeport Lough Templeport Lough 54.09694 -7.67361 H LK IE U 02 0 73 Europe/Dublin 2010-08-14 +3309378 Killycluggin Killycluggin 54.09333 -7.63611 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309379 Corville Corville 54.10472 -7.64639 P PPLL IE U 02 0 73 Europe/Dublin 2010-08-14 +3309380 Templeport House Templeport House 54.10389 -7.65917 S HSEC IE U 02 0 76 Europe/Dublin 2010-08-14 +3309381 Drumane Drumane 54.10722 -7.61806 P PPLL IE U 02 0 79 Europe/Dublin 2010-08-14 +3309382 Killaragh Killaragh 54.08361 -7.61306 S FRM IE U 02 0 74 Europe/Dublin 2010-08-14 +3309383 Fartrin Cross Roads Fartrin Cross Roads 54.07972 -7.595 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309384 Fartrin Fartrin 54.0875 -7.58972 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309385 Callaghs Callaghs 54.07056 -7.60028 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309386 Clonty Lough Clonty Lough 54.06167 -7.58222 H LK IE U 02 0 77 Europe/Dublin 2010-08-14 +3309387 Greenville Greenville 54.06972 -7.58444 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309388 Carn Cross Roads Carn Cross Roads 54.07528 -7.55278 P PPLL IE U 02 0 80 Europe/Dublin 2010-08-14 +3309389 Togher Lough Togher Lough 54.08306 -7.57778 H LK IE U 02 0 75 Europe/Dublin 2010-08-14 +3309390 Aghavoher Lough Aghavoher Lough 54.09083 -7.55278 H LK IE U 02 0 78 Europe/Dublin 2010-08-14 +3309391 Lough Rud Lough Rud 54.09167 -7.56472 H LK IE U 02 0 75 Europe/Dublin 2010-08-14 +3309392 Cranaghan House Cranaghan House 54.09639 -7.55611 S HSEC IE U 02 0 76 Europe/Dublin 2010-08-14 +3309393 Ballyconnell House Ballyconnell House 54.11611 -7.57833 S HSEC IE U 02 0 73 Europe/Dublin 2010-08-14 +3309394 Moher Moher 54.11889 -7.63111 P PPLL IE U 02 0 157 Europe/Dublin 2010-08-14 +3309395 Annagh Lough Annagh Lough 54.11833 -7.55333 H LK IE U 02 0 72 Europe/Dublin 2010-08-14 +3309396 Slieve Russell House Slieve Russell House 54.12833 -7.57306 S HSEC IE U 02 0 72 Europe/Dublin 2010-08-14 +3309397 Church Hill Church Hill 54.13833 -7.58167 T HLL IE U 02 0 198 107 Europe/Dublin 2010-08-14 +3309398 Bawnboy House Bawnboy House 54.12583 -7.67167 S HSEC IE U 02 0 141 Europe/Dublin 2010-08-14 +3309399 Kilsob Kilsob 54.1175 -7.66361 P PPLL IE U 02 0 124 Europe/Dublin 2010-08-14 +3309400 Sralahan Sralahan 54.12972 -7.63528 P PPLL IE U 02 0 229 Europe/Dublin 2010-08-14 +3309401 Gortnavreghan Gortnavreghan 54.13556 -7.65833 L LCTY IE U 02 0 282 Europe/Dublin 2010-08-14 +3309402 Finaghoo Finaghoo 54.15306 -7.66639 L LCTY IE U 02 0 291 Europe/Dublin 2010-08-14 +3309403 Aghakinnigh Aghakinnigh 54.16417 -7.67361 L LCTY IE U 02 0 206 Europe/Dublin 2010-08-14 +3309404 Drumbar Drumbar 54.17889 -7.66611 P PPLL IE U 02 0 147 Europe/Dublin 2010-08-14 +3309405 Glenview House Glenview House 54.11778 -7.4975 S HSEC IE U 02 0 72 Europe/Dublin 2010-08-14 +3309406 Cuillaghan Lough Cuillaghan Lough 54.11222 -7.53361 H LK IE U 02 0 74 Europe/Dublin 2010-08-14 +3309407 Killywilly Lough Killywilly Lough 54.10417 -7.54139 H LK IE U 02 0 76 Europe/Dublin 2010-08-14 +3309408 Holy Lough Holy Lough 54.10111 -7.51583 H LK IE U 02 0 76 Europe/Dublin 2010-08-14 +3309409 Drummany Lough Drummany Lough 54.10472 -7.49167 H LK IE U 02 0 75 Europe/Dublin 2010-08-14 +3309410 Long Lough Long Lough 54.09889 -7.49389 H LK IE U 02 0 76 Europe/Dublin 2010-08-14 +3309411 Barn Lough Barn Lough 54.09444 -7.51028 H LK IE U 02 0 78 Europe/Dublin 2010-08-14 +3309412 Clonamullig Lough Clonamullig Lough 54.09361 -7.5225 H LK IE U 02 0 79 Europe/Dublin 2010-08-14 +3309413 Greaghrahan Greaghrahan 54.09278 -7.5375 P PPLL IE U 02 0 78 Europe/Dublin 2010-08-14 +3309414 Ardue House Ardue House 54.10306 -7.53139 S HSEC IE U 02 0 76 Europe/Dublin 2010-08-14 +3309415 Ture House Ture House 54.09611 -7.5325 S RUIN IE U 02 0 79 Europe/Dublin 2010-08-14 +3309416 Glen Glen 54.10972 -7.50139 P PPLL IE U 02 0 74 Europe/Dublin 2010-08-14 +3309417 Carn Cottage Carn Cottage 54.075 -7.54417 S HSE IE U 02 0 85 Europe/Dublin 2010-08-14 +3309418 Dungummin Lough Dungummin Lough 54.08333 -7.54444 H LK IE U 02 0 82 Europe/Dublin 2010-08-14 +3309419 Killicar House Killicar House 54.07917 -7.50472 S HSEC IE U 02 0 82 Europe/Dublin 2010-08-14 +3309420 Nixon Lodge Nixon Lodge 54.06028 -7.49639 S HSE IE U 02 0 84 Europe/Dublin 2010-08-14 +3309421 Derrygeeraghan Lough Derrygeeraghan Lough 54.07639 -7.46306 H LK IE U 02 0 71 Europe/Dublin 2010-08-14 +3309422 Carrig Hill Carrig Hill 54.08583 -7.47 T HLL IE U 02 0 71 Europe/Dublin 2010-08-14 +3309423 Drumasladdy Drumasladdy 54.08917 -7.49778 P PPL IE U 02 0 78 Europe/Dublin 2010-08-14 +3309424 Kilconny Lough Kilconny Lough 54.10889 -7.45361 H LK IE U 02 0 70 Europe/Dublin 2010-08-14 +3309425 Raheelan Raheelan 54.12083 -7.45028 P PPLL IE U 02 0 69 Europe/Dublin 2010-08-14 +3309426 Aghalane Aghalane 54.12278 -7.4775 P PPL IE 00 0 71 Europe/Dublin 1998-04-30 +3309427 Straheglin Straheglin 54.09111 -7.435 P PPLL IE U 02 0 79 Europe/Dublin 2010-08-14 +3309428 Putiaghan Putiaghan 54.08278 -7.4425 P PPLL IE U 02 0 70 Europe/Dublin 2010-08-14 +3309429 Black Lough Black Lough 54.07306 -7.44667 H LK IE U 02 0 71 Europe/Dublin 2010-08-14 +3309430 Corraback Lough Corraback Lough Corraback Lough,Teemore Lough 54.12806 -7.46111 H LK IE IE U 02 0 69 Europe/Dublin 2010-08-14 +3309431 Drumard Lough Drumard Lough 54.13389 -7.45 H LK IE U 02 0 69 Europe/Dublin 2010-08-14 +3309432 Lough Amoneen Lough Amoneen 54.13833 -7.45806 H LK IE U 02 0 68 Europe/Dublin 2010-08-14 +3309433 Lough Anoneen Lough Anoneen Lough Anoneen 54.14306 -7.44944 H LK IE 00 0 68 Europe/Dublin 1998-04-30 +3309434 Derryvony Derryvony 54.15028 -7.42028 P PPLL IE U 02 0 68 Europe/Dublin 2010-08-14 +3309435 Edenterriff Lough Edenterriff Lough 54.13083 -7.41944 H LK IE U 02 0 110 Europe/Dublin 2010-08-14 +3309436 Killylea Lough Killylea Lough 54.13083 -7.40167 H LK IE U 02 0 110 Europe/Dublin 2010-08-14 +3309437 Faharlagh Lough Faharlagh Lough 54.125 -7.41583 H LK IE U 02 0 113 Europe/Dublin 2010-08-14 +3309438 Killylea Killylea 54.12167 -7.41028 P PPLL IE U 02 0 113 Europe/Dublin 2010-08-14 +3309439 Grilly Lough Grilly Lough 54.11278 -7.41306 H LK IE U 02 0 120 Europe/Dublin 2010-08-14 +3309440 Shancorry Lough Shancorry Lough 54.11861 -7.43194 H LK IE U 02 0 87 Europe/Dublin 2010-08-14 +3309441 Quivvy Lough Quivvy Lough Quivvy Lough 54.13889 -7.40944 H LK IE 00 0 110 Europe/Dublin 1998-04-30 +3309442 Lanesborough Lodge Lanesborough Lodge 54.13833 -7.3775 S HSE IE U 02 0 110 Europe/Dublin 2010-08-14 +3309443 Kinagha Kinagha 54.10139 -7.3925 P PPLL IE U 02 0 145 Europe/Dublin 2010-08-14 +3309444 Derrykerrib Lough Derrykerrib Lough Derrykerrib Lough 54.13028 -7.38694 H LK IE 00 0 129 Europe/Dublin 2010-08-10 +3309445 Drummoy Lough Drummoy Lough Drummoy Lough 54.11972 -7.39111 H LK IE 00 0 136 Europe/Dublin 2010-08-10 +3309446 Castle Lough Castle Lough Castle Lough 54.12333 -7.37917 H LK IE 00 0 141 Europe/Dublin 1998-04-30 +3309447 Derryhoo Lough Derryhoo Lough 54.10639 -7.38111 H LK IE U 02 0 146 Europe/Dublin 2010-08-14 +3309448 Corrarod Lough Corrarod Lough 54.09556 -7.37472 H LK IE U 02 0 138 Europe/Dublin 2010-08-14 +3309449 Parisee Lough Parisee Lough 54.09333 -7.39306 H LK IE U 02 0 151 Europe/Dublin 2010-08-14 +3309450 Round Lough Round Lough 54.08583 -7.40278 H LK IE U 02 0 151 Europe/Dublin 2010-08-14 +3309451 Bun Lough Bun Lough 54.08194 -7.42333 H LK IE U 02 0 104 Europe/Dublin 2010-08-14 +3309452 Gannons Cross Gannons Cross 54.09944 -7.365 P PPLL IE U 02 0 129 Europe/Dublin 2010-08-14 +3309453 Drumgorry Lough Drumgorry Lough 54.09583 -7.36333 H LK IE U 02 0 129 Europe/Dublin 2010-08-14 +3309454 Drumellis Lough Drumellis Lough 54.08889 -7.38417 H LK IE U 02 0 147 Europe/Dublin 2010-08-14 +3309455 Commons Gate Commons Gate 54.09139 -7.42278 P PPLL IE U 02 0 114 Europe/Dublin 2010-08-14 +3309456 Tullyroane Lough Tullyroane Lough 54.07889 -7.39917 H LK IE U 02 0 146 Europe/Dublin 2010-08-14 +3309457 Saint Johns Rock Saint Johns Rock 54.07389 -7.37722 T RK IE U 02 0 111 Europe/Dublin 2010-08-14 +3309458 Nahillan House Nahillan House 54.06611 -7.37694 S HSEC IE U 02 0 94 Europe/Dublin 2010-08-14 +3309459 Plush Plush 54.05944 -7.36917 P PPLL IE U 02 0 84 Europe/Dublin 2010-08-14 +3309460 Annagh Lough Annagh Lough 54.06028 -7.39611 H LK IE U 02 0 100 Europe/Dublin 2010-08-14 +3309461 Annagh House Annagh House 54.06417 -7.39639 S HSEC IE U 02 0 100 Europe/Dublin 2010-08-14 +3309462 Bakers Bridge Bakers Bridge 54.06167 -7.42 P PPLL IE U 02 0 71 Europe/Dublin 2010-08-14 +3309463 Ashgrove Ashgrove 54.0675 -7.42722 S EST IE U 02 0 71 Europe/Dublin 2010-08-14 +3309464 Drummany Lough Drummany Lough 54.06222 -7.44556 H LK IE U 02 0 72 Europe/Dublin 2010-08-14 +3309465 Ardan Lough Ardan Lough 54.05833 -7.4575 H LK IE U 02 0 77 Europe/Dublin 2010-08-14 +3309466 Derrybrick Lough Derrybrick Lough 54.05167 -7.47083 H LK IE U 02 0 81 Europe/Dublin 2010-08-14 +3309467 Inishmuck Lough Inishmuck Lough 54.04194 -7.44222 H LK IE U 02 0 79 Europe/Dublin 2010-08-14 +3309468 Inishmuck Inishmuck 54.04611 -7.44528 T ISL IE U 02 0 79 Europe/Dublin 2010-08-14 +3309469 Rivory Rivory 54.04889 -7.42222 P PPLL IE U 02 0 72 Europe/Dublin 2010-08-14 +3309470 Carrafin Lough Carrafin Lough 54.04361 -7.42056 H LK IE U 02 0 72 Europe/Dublin 2010-08-14 +3309471 Derrygoss Derrygoss 54.04806 -7.405 P PPL IE U 02 0 71 Europe/Dublin 2010-08-14 +3309472 Garfiny Lough Garfiny Lough 54.04111 -7.46611 H LK IE U 02 0 89 Europe/Dublin 2010-08-14 +3309473 Drumlane Lough Drumlane Lough 54.04694 -7.48 H LK IE U 02 0 86 Europe/Dublin 2010-08-14 +3309474 Corglass Lough Corglass Lough 54.0275 -7.4675 H LK IE U 02 0 96 Europe/Dublin 2010-08-14 +3309475 Inishmore Inishmore 54.0375 -7.42028 T ISL IE U 02 0 73 Europe/Dublin 2010-08-14 +3309476 Carratraw Lough Carratraw Lough 54.02639 -7.41861 H LK IE U 02 0 75 Europe/Dublin 2010-08-14 +3309477 Derrygid Lough Derrygid Lough 54.02833 -7.39333 H LK IE U 02 0 72 Europe/Dublin 2010-08-14 +3309478 Coalpit Lough Coalpit Lough 54.02194 -7.38917 H LK IE U 02 0 73 Europe/Dublin 2010-08-14 +3309479 Lough Inchin Lough Inchin 54.02194 -7.41 H LK IE U 02 0 74 Europe/Dublin 2010-08-14 +3309480 Farnham Lough Farnham Lough 54.01528 -7.4 H LK IE U 02 0 73 Europe/Dublin 2010-08-14 +3309481 Daggan Daggan 54.02833 -7.36639 P PPL IE U 02 0 78 Europe/Dublin 2010-08-14 +3309482 Derryna Derryna 54.02194 -7.4425 L LCTY IE U 02 0 93 Europe/Dublin 2010-08-14 +3309483 Rinn Rinn 54.02056 -7.46167 L LCTY IE U 02 0 103 Europe/Dublin 2010-08-14 +3309484 Eonish Eonish 54.02028 -7.48167 T ISL IE U 02 0 102 Europe/Dublin 2010-08-14 +3309485 Tully Lough Tully Lough 54.03583 -7.47056 H LK IE U 02 0 90 Europe/Dublin 2010-08-14 +3309486 Deralk Lough Deralk Lough 54.03417 -7.48389 H LK IE U 02 0 91 Europe/Dublin 2010-08-14 +3309487 Drummullagh Drummullagh 54.05306 -7.50722 P PPL IE U 02 0 89 Europe/Dublin 2010-08-14 +3309488 Glasstown Glasstown Glasstown,Port 54.04222 -7.51333 P PPLL IE IE U 02 0 94 Europe/Dublin 2010-08-14 +3309489 Kildallan Glebe House Kildallan Glebe House 54.05528 -7.54194 S HSEC IE U 02 0 94 Europe/Dublin 2010-08-14 +3309490 Drom Mullac Drom Mullac 54.03417 -7.5325 T HLL IE U 02 0 107 Europe/Dublin 2010-08-14 +3309491 Snakeel Snakeel 54.02833 -7.50944 P PPLL IE U 02 0 96 Europe/Dublin 2010-08-14 +3309492 Aubawn Aubawn 54.02222 -7.54306 P PPL IE U 02 0 124 Europe/Dublin 2010-08-14 +3309493 Tullyguide Lough Tullyguide Lough 54.02278 -7.51 H LK IE U 02 0 94 Europe/Dublin 2010-08-14 +3309494 Town Lough Town Lough 54.01833 -7.53111 H LK IE U 02 0 118 Europe/Dublin 2010-08-14 +3309495 Bawn Lough Bawn Lough 54.01194 -7.53972 H LK IE U 02 0 138 Europe/Dublin 2010-08-14 +3309496 Derreskit Lough Derreskit Lough 54.00694 -7.56417 H LK IE U 02 0 88 Europe/Dublin 2010-08-14 +3309497 Dumb Lough Dumb Lough 54.00583 -7.54083 H LK IE U 02 0 140 Europe/Dublin 2010-08-14 +3309498 Glasshouse Lake Glasshouse Lake 54.00333 -7.58333 H LK IE U 02 0 78 Europe/Dublin 2010-08-14 +3309499 Derry Derry 53.99222 -7.54583 P PPLL IE U 02 0 82 Europe/Dublin 2010-08-14 +3309500 Derry Lough Derry Lough 53.98833 -7.54528 H LK IE U 02 0 72 Europe/Dublin 2010-08-14 +3309501 Rockfield Rockfield 53.98778 -7.57083 S EST IE U 02 0 76 Europe/Dublin 2010-08-14 +3309502 Oakhill Oakhill 53.96972 -7.55417 S EST IE U 02 0 79 Europe/Dublin 2010-08-14 +3309503 Derrylane Derrylane 53.96694 -7.54167 P PPL IE U 02 0 80 Europe/Dublin 2010-08-14 +3309504 Tully House Tully House 53.97583 -7.52389 S HSEC IE U 02 0 69 Europe/Dublin 2010-08-14 +3309505 Drumcrow South Drumcrow South 53.95611 -7.57833 P PPLL IE U 02 0 78 Europe/Dublin 2010-08-14 +3309506 Dernaweel Lough Dernaweel Lough 53.94889 -7.56889 H LK IE U 02 0 84 Europe/Dublin 2010-08-14 +3309507 Ardra Lough Ardra Lough 53.95194 -7.54639 H LK IE U 02 0 107 Europe/Dublin 2010-08-14 +3309508 Drumroe Drumroe 53.94694 -7.5175 P PPLL IE U 02 0 131 Europe/Dublin 2010-08-14 +3309509 Cornafean Cornafean 53.94639 -7.48556 P PPLL IE U 02 0 73 Europe/Dublin 2010-08-14 +3309510 Corr House Corr House 53.9575 -7.48667 S HSEC IE U 02 0 76 Europe/Dublin 2010-08-14 +3309511 Gartinardress House Gartinardress House 53.97083 -7.48861 S HSEC IE U 02 0 98 Europe/Dublin 2010-08-14 +3309512 Carr’s Lough Carr's Lough 53.97611 -7.47944 H LK IE U 02 0 148 Europe/Dublin 2010-08-14 +3309513 Tawlaght Lough Tawlaght Lough 53.98222 -7.48722 H LK IE U 02 0 118 Europe/Dublin 2010-08-14 +3309514 Trinity Island Trinity Island 53.98833 -7.46778 T ISL IE U 02 0 145 Europe/Dublin 2010-08-14 +3309515 Drumgor Drumgor 53.98167 -7.43806 P PPLL IE U 02 0 94 Europe/Dublin 2010-08-14 +3309516 Killyvally Killyvally 53.98778 -7.44222 P PPLL IE U 02 0 109 Europe/Dublin 2010-08-14 +3309517 Inch Island Inch Island 54.00222 -7.48278 T ISL IE U 02 0 121 Europe/Dublin 2010-08-14 +3309518 Lough Atrain Lough Atrain 53.99417 -7.44417 H LK IE U 02 0 108 Europe/Dublin 2010-08-14 +3309519 Portcliff House Portcliff House 54.005 -7.52194 S HSEC IE U 02 0 79 Europe/Dublin 2010-08-14 +3309520 Killykeen Cottage Killykeen Cottage 54.01 -7.48944 S HSE IE U 02 0 104 Europe/Dublin 2010-08-14 +3309521 Killykeen Killykeen 53.99722 -7.45694 P PPLL IE U 02 0 120 Europe/Dublin 2010-08-14 +3309522 Gartbrattan Gartbrattan 54.00111 -7.43889 P PPL IE U 02 0 93 Europe/Dublin 2010-08-14 +3309523 Killykeen Forest Park Killykeen Forest Park 54.005 -7.46444 L PRK IE U 02 0 121 Europe/Dublin 2010-08-14 +3309524 Inishconnell Inishconnell 54.01444 -7.44917 L LCTY IE U 02 0 98 Europe/Dublin 2010-08-14 +3309525 Bellville Bellville 53.94444 -7.41222 P PPLL IE U 02 0 79 Europe/Dublin 2010-08-14 +3309526 Lismore Castle Lismore Castle 53.95139 -7.44056 S RUIN IE U 02 0 83 Europe/Dublin 2010-08-14 +3309527 Castle Cosby Castle Cosby 53.95361 -7.42222 S CSTL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309528 Lisnamandra Lisnamandra 53.96778 -7.41944 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309529 Bellahillan Bridge Bellahillan Bridge 53.96167 -7.45556 P PPLL IE U 02 0 104 Europe/Dublin 2010-08-14 +3309530 Lisduff Lisduff 53.96639 -7.38333 P PPLL IE U 02 0 105 Europe/Dublin 2010-08-14 +3309531 Danesfort Danesfort 53.98889 -7.4275 P PPLL IE U 02 0 83 Europe/Dublin 2010-08-14 +3309532 Tully Tully 53.99361 -7.42361 S FRM IE U 02 0 76 Europe/Dublin 2010-08-14 +3309533 Drumconnick Drumconnick 53.98806 -7.38667 P PPLL IE U 02 0 82 Europe/Dublin 2010-08-14 +3309534 Green Lough Green Lough 53.98083 -7.35083 H LK IE U 02 0 122 Europe/Dublin 2010-08-14 +3309535 Swellan Lough Swellan Lough 53.98583 -7.37028 H LK IE U 02 0 92 Europe/Dublin 2010-08-14 +3309536 Beaghy Lough Beaghy Lough 53.99944 -7.32389 H LK IE U 02 0 157 Europe/Dublin 1998-04-30 +3309537 Drumkeen House Drumkeen House 54.01528 -7.37333 S HSEC IE U 02 0 73 Europe/Dublin 2010-08-14 +3309538 Tullylough House Tullylough House 54.00583 -7.385 S HSEC IE U 02 0 76 Europe/Dublin 2010-08-14 +3309539 Cavan River Cavan River 54.03833 -7.38611 H STM IE U 02 0 71 Europe/Dublin 2010-08-14 +3309540 Lisreagh Lisreagh 53.95167 -7.3325 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309541 Corraweelis Corraweelis 53.96427 -7.30608 P PPLL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309542 Killyconnan Killyconnan 53.96472 -7.26889 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309543 Cargagh Cargagh 53.94556 -7.25528 P PPLL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309544 Aghalackan Aghalackan 53.97278 -7.30028 P PPLL IE U 02 0 153 Europe/Dublin 2010-08-14 +3309545 Beaghy Lough Beaghy Lough 53.95278 -7.23028 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +3309546 Lisnananagh Lough Lisnananagh Lough 53.97833 -7.24472 H LK IE U 02 0 141 Europe/Dublin 2010-08-14 +3309547 Poles Poles 53.98778 -7.27972 P PPLL IE U 02 0 153 Europe/Dublin 2010-08-14 +3309548 Stragelliff Stragelliff 53.99667 -7.29556 P PPLL IE U 02 0 158 Europe/Dublin 2010-08-14 +3309549 Shantemon Lough Shantemon Lough 54.00611 -7.30222 H LK IE U 02 0 158 Europe/Dublin 2010-08-14 +3309550 Cross Forts Cross Forts 54.02806 -7.33167 P PPLL IE U 02 0 101 Europe/Dublin 2010-08-14 +3309551 Cullentragh Cullentragh 54.02361 -7.30528 P PPLL IE U 02 0 128 Europe/Dublin 2010-08-14 +3309552 Ouley Ouley 54.0375 -7.315 P PPLL IE U 02 0 77 Europe/Dublin 2010-08-14 +3309553 Killyvanny Killyvanny 54.03694 -7.35306 P PPLL IE U 02 0 79 Europe/Dublin 2010-08-14 +3309554 Corravahan House Corravahan House 54.03361 -7.25972 S HSEC IE U 02 0 76 Europe/Dublin 2010-08-14 +3309555 Coleman Lough Coleman Lough 54.1625 -7.29389 H LK IE U 22 0 98 Europe/Dublin 2010-08-14 +3309556 Clonoula Clonoula 54.15556 -7.31667 P PPLL IE U 22 0 129 Europe/Dublin 2010-08-14 +3309557 Drumsloe Drumsloe 54.13917 -7.31444 P PPL IE U 22 0 117 Europe/Dublin 2010-08-14 +3309558 Drumaveale Drumaveale 54.11417 -7.28778 P PPLL IE U 22 0 79 Europe/Dublin 2010-08-14 +3309559 Lislea Lislea 54.11278 -7.25306 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3309560 Drumcor Drumcor 54.09861 -7.29056 P PPL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309561 Drumlaney Lough Drumlaney Lough 54.10778 -7.35278 H LK IE U 02 0 126 Europe/Dublin 2010-08-14 +3309562 Lough Garrow Lough Garrow Lough Garrow 54.11833 -7.33389 H LK IE 00 0 114 Europe/Dublin 2010-08-10 +3309563 Killybandrick Lough Killybandrick Lough 54.09333 -7.34889 H LK IE U 02 0 107 Europe/Dublin 2010-08-14 +3309564 Aghadreenagh Aghadreenagh 54.07833 -7.30944 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309565 Drumliff Drumliff 54.06417 -7.33056 P PPLL IE U 02 0 72 Europe/Dublin 2010-08-14 +3309566 Treehog Cross Roads Treehog Cross Roads 54.07917 -7.26139 P PPLL IE U 02 0 77 Europe/Dublin 2010-08-14 +3309567 Claragh Claragh 54.085 -7.27806 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309568 Coppony Lough Coppony Lough 54.06667 -7.28389 H LK IE U 02 0 76 Europe/Dublin 2010-08-14 +3309569 Knocks Knocks 54.09806 -7.25222 P PPLL IE U 22 0 79 Europe/Dublin 2010-08-14 +3309570 Lislin House Lislin House 54.0525 -7.26056 S HSEC IE U 02 0 73 Europe/Dublin 2010-08-14 +3309571 Ballynallon Bridge Ballynallon Bridge 54.05028 -7.23528 P PPLL IE U 02 0 73 Europe/Dublin 2010-08-14 +3309572 Cornagall Lough Cornagall Lough 54.02333 -7.24889 H PND IE U 02 0 93 Europe/Dublin 2010-08-14 +3309573 Drumhillagh Drumhillagh 54.03333 -7.22667 P PPLL IE U 02 0 81 Europe/Dublin 2010-08-14 +3309574 Drumlane Drumlane 54.01917 -7.22944 P PPLL IE U 02 0 86 Europe/Dublin 2010-08-14 +3309575 McShane’s Bridge McShane's Bridge 54.00667 -7.22361 P PPLL IE U 02 0 102 Europe/Dublin 2010-08-14 +3309576 Tullycoe Tullycoe 54.00917 -7.20083 P PPL IE U 02 0 110 Europe/Dublin 2010-08-14 +3309577 Cordingin Cordingin 53.97972 -7.19111 P PPLL IE U 02 0 134 Europe/Dublin 2010-08-14 +3309578 Drung Drung 54.035 -7.23861 P PPL IE U 02 0 78 Europe/Dublin 2010-08-14 +3309579 Corgreagh Corgreagh 54.02972 -7.14694 P PPL IE U 02 0 108 Europe/Dublin 2010-08-14 +3309580 Drumherriff Lough Drumherriff Lough 54.03361 -7.17278 H PND IE U 02 0 78 Europe/Dublin 2010-08-14 +3309581 Black Lough Black Lough 54.04167 -7.11556 H LK IE U 02 0 83 Europe/Dublin 2010-08-14 +3309582 Drumbrollisk Drumbrollisk 54.0675 -7.19083 P PPLL IE U 02 0 77 Europe/Dublin 2010-08-14 +3309583 Fort Henry Fort Henry 54.05861 -7.18417 S EST IE U 02 0 76 Europe/Dublin 2010-08-14 +3309584 Killycreeny Killycreeny 54.06389 -7.14861 P PPL IE U 02 0 75 Europe/Dublin 2010-08-14 +3309585 Dromore River Dromore River 54.055 -7.14917 H STM IE U 02 0 75 Europe/Dublin 1998-04-30 +3309586 Black Lough Black Lough 54.08222 -7.14611 H LK IE 00 0 76 Europe/Dublin 1998-04-30 +3309587 Barragh Lough Barragh Lough 54.08306 -7.16417 H LK IE 00 0 77 Europe/Dublin 1998-04-30 +3309588 Bunnoe River Bunnoe River 54.05806 -7.22806 H STM IE U 02 0 74 Europe/Dublin 1998-04-30 +3309589 Coppanagh Mills Coppanagh Mills 54.0875 -7.19556 P PPLL IE U 02 0 77 Europe/Dublin 2010-08-14 +3309590 Magherintemple Magherintemple 54.09556 -7.21972 P PPLL IE U 02 0 89 Europe/Dublin 2010-08-14 +3309591 Killynenagh Lough Killynenagh Lough 54.09056 -7.18583 H LK IE 00 0 77 Europe/Dublin 1998-04-30 +3309592 Long Lough Long Lough 54.09556 -7.14056 H LK IE U 22 0 77 Europe/Dublin 2010-08-14 +3309593 Corragarry Cross Roads Corragarry Cross Roads 54.11444 -7.16389 P PPLL IE U 22 0 77 Europe/Dublin 2010-08-14 +3309594 Drum Lough Drum Lough 54.10611 -7.14167 H LK IE U 22 0 77 Europe/Dublin 2010-08-14 +3309595 Freame Mount Freame Mount 54.09278 -7.09472 S EST IE U 22 0 78 Europe/Dublin 2010-08-14 +3309596 Lonnagh House Lonnagh House 54.0975 -7.08694 S HSEC IE U 22 0 81 Europe/Dublin 2010-08-14 +3309597 Drumhay Lough Drumhay Lough 54.11306 -7.11306 H LK IE U 22 0 78 Europe/Dublin 2010-08-14 +3309598 Quarry Lough Quarry Lough 54.10111 -7.15306 H LK IE U 22 0 77 Europe/Dublin 2010-08-14 +3309599 Magherashaghry Magherashaghry 54.10111 -7.17583 P PPLL IE U 22 0 77 Europe/Dublin 2010-08-14 +3309600 Cortober House Cortober House 54.08611 -7.10667 S HSEC IE U 02 0 77 Europe/Dublin 2010-08-14 +3309601 Town Lough Town Lough 54.08139 -7.07139 H LK IE U 02 0 91 Europe/Dublin 2010-08-14 +3309602 Coragh Lough Coragh Lough 54.08 -7.0575 H LK IE U 02 0 117 Europe/Dublin 2010-08-14 +3309603 Wood Lough Wood Lough 54.0875 -7.05472 H LK IE U 02 0 107 Europe/Dublin 2010-08-14 +3309604 Dromore Lough Dromore Lough 54.09139 -7.06611 H LK IE 00 0 97 Europe/Dublin 1998-04-30 +3309605 Drumlona Lough Drumlona Lough 54.1025 -7.02583 H LK IE U 22 0 103 Europe/Dublin 2010-08-14 +3309606 Killyvaghan Lough Killyvaghan Lough 54.09111 -7.01944 H LK IE 00 0 119 Europe/Dublin 1998-04-30 +3309607 Corravoo Lough Corravoo Lough 54.1075 -7.00056 H LK IE U 22 0 111 Europe/Dublin 2010-08-14 +3309608 Moylemuck Moylemuck 54.08028 -7.00833 P PPL IE U 22 0 140 Europe/Dublin 2010-08-14 +3309609 Clossagh Lough Clossagh Lough 54.09611 -7.00083 H LK IE U 22 0 114 Europe/Dublin 2010-08-14 +3309610 Ballynahaia Ballynahaia 54.07083 -7.04056 P PPLL IE U 02 0 144 Europe/Dublin 2010-08-14 +3309611 Corick Bridge Corick Bridge 54.05528 -7.125 P PPLL IE U 02 0 79 Europe/Dublin 2010-08-14 +3309612 Annaghlee House Annaghlee House 54.05806 -7.10444 S HSEC IE U 02 0 77 Europe/Dublin 2010-08-14 +3309613 Scarvy Bridge Scarvy Bridge 54.05083 -7.07167 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3309614 Rakane Rakane 54.04361 -7.10806 P PPLL IE U 02 0 97 Europe/Dublin 2010-08-14 +3309615 White Lough White Lough 54.04167 -7.09972 H LK IE U 02 0 95 Europe/Dublin 2010-08-14 +3309616 Drumgill Lough Drumgill Lough 54.0375 -7.06694 H LK IE U 02 0 95 Europe/Dublin 2010-08-14 +3309617 Drumeltan House Drumeltan House 54.03222 -7.10361 S HSEC IE U 02 0 152 Europe/Dublin 2010-08-14 +3309618 Killyvahan Killyvahan 54.01806 -7.08639 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309619 Dernakesh Dernakesh 54.02139 -7.04361 P PPL IE U 02 0 124 Europe/Dublin 2010-08-14 +3309620 New Grove New Grove 54.04306 -7.03861 S EST IE U 02 0 87 Europe/Dublin 2010-08-14 +3309621 Drumgoon Drumgoon 54.03694 -7.0575 P PPL IE U 02 0 90 Europe/Dublin 2010-08-14 +3309622 Annaghard Lough Annaghard Lough 54.04917 -7.0475 H LK IE U 02 0 83 Europe/Dublin 2010-08-14 +3309623 Binbane Binbane 54.01306 -7.12 P PPLL IE U 02 0 168 Europe/Dublin 2010-08-14 +3309624 Drumnatread Drumnatread 54.00694 -7.12583 P PPL IE U 02 0 165 Europe/Dublin 2010-08-14 +3309625 Artonagh House Artonagh House 53.99917 -7.16472 S HSEC IE U 02 0 151 Europe/Dublin 2010-08-14 +3309626 Carrickallen Carrickallen 53.98583 -7.13889 P PPL IE U 02 0 161 Europe/Dublin 2010-08-14 +3309627 Carricknashoke Carricknashoke 53.98028 -7.15917 P PPLL IE U 02 0 154 Europe/Dublin 2010-08-14 +3309628 Drutamon Drutamon 53.99139 -7.07944 P PPLL IE U 02 0 159 Europe/Dublin 2010-08-14 +3309629 Lough Acanon Lough Acanon 53.96944 -7.12917 H LK IE U 02 0 162 Europe/Dublin 2010-08-14 +3309630 Kilnacreevy Kilnacreevy 53.96111 -7.21222 P PPLL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309631 Clifferna Clifferna 53.95778 -7.17472 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309632 Tirlahode Lower Tirlahode Lower 53.94611 -7.18639 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309633 Carfad Lough Carfad Lough 53.95056 -7.21 H LK IE U 02 0 153 Europe/Dublin 2010-08-14 +3309634 Lough Asturrall Lough Asturrall 53.94944 -7.13028 H LK IE U 02 0 164 Europe/Dublin 2010-08-14 +3309635 Lough Naglare Lough Naglare 53.965 -7.10694 H LK IE U 02 0 160 Europe/Dublin 2010-08-14 +3309636 Greaghagibney Greaghagibney 53.94278 -7.13028 P PPLL IE U 02 0 164 Europe/Dublin 2010-08-14 +3309637 Ledonigan Ledonigan 53.94306 -7.075 P PPLL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309638 Tonyduff Tonyduff 53.95722 -7.05889 P PPL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309639 Fartagh Lough Fartagh Lough 53.96361 -7.08222 H LK IE U 02 0 155 Europe/Dublin 2010-08-14 +3309640 Lough Mushlin Lough Mushlin 53.95361 -7.04833 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +3309641 Lough Aush Lough Aush 53.95667 -7.03028 H PND IE U 02 0 152 Europe/Dublin 2010-08-14 +3309642 Derrydamph Derrydamph 53.98028 -7.15917 P PPLL IE U 02 0 154 Europe/Dublin 2010-08-14 +3309643 Latsey Latsey 53.98722 -7.05 P PPLL IE U 02 0 153 Europe/Dublin 2010-08-14 +3309644 Roosky Lough Roosky Lough 53.98389 -7.015 H LK IE U 02 0 151 Europe/Dublin 2010-08-14 +3309645 Tullylorcan Lough Tullylorcan Lough 53.97806 -7.03139 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +3309646 Drumkeery Lough Drumkeery Lough 53.94472 -6.99278 H LK IE U 02 0 150 Europe/Dublin 2010-08-14 +3309647 Duneena Duneena 53.94306 -7.01417 P PPLL IE U 02 0 149 Europe/Dublin 2010-08-14 +3309648 Beglieve Beglieve 53.9425 -7.03556 P PPLL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309649 Skeagh Lodge Skeagh Lodge 53.94806 -7.01583 S HSE IE U 02 0 149 Europe/Dublin 2010-08-14 +3309650 Drumeague House Drumeague House 53.96639 -6.98361 S HSEC IE U 02 0 153 Europe/Dublin 2010-08-14 +3309651 Knockbride Knockbride 53.98639 -6.99556 P PPL IE U 02 0 151 Europe/Dublin 2010-08-14 +3309652 Corraneary Lough Corraneary Lough 53.99222 -7.0075 H LK IE U 02 0 146 Europe/Dublin 2010-08-14 +3309653 Corraneary Corraneary 53.99306 -7.02472 P PPLL IE U 02 0 147 Europe/Dublin 2010-08-14 +3309654 Kilnacrew Kilnacrew 54.005 -7.0375 P PPLL IE U 02 0 144 Europe/Dublin 2010-08-14 +3309655 Cullies Cross Roads Cullies Cross Roads 53.99528 -6.96611 P PPL IE U 02 0 143 Europe/Dublin 2010-08-14 +3309656 Barnagrow Lough Barnagrow Lough 54.00778 -6.97556 H LK IE U 02 0 135 Europe/Dublin 2010-08-14 +3309657 Kehernaghkilly Lough Kehernaghkilly Lough 54.01583 -6.99167 H LK IE U 02 0 125 Europe/Dublin 2010-08-14 +3309658 Coskemduff Lough Coskemduff Lough 54.02694 -7.0025 H LK IE U 02 0 105 Europe/Dublin 2010-08-14 +3309659 Killyrue Lough Killyrue Lough 54.03722 -7.02611 H LK IE U 02 0 94 Europe/Dublin 2010-08-14 +3309660 Drumcondra Drumcondra 54.02083 -7.01389 P PPLL IE U 02 0 113 Europe/Dublin 2010-08-14 +3309661 Madabawn Bridge Madabawn Bridge 54.02972 -7.0225 P PPL IE U 02 0 103 Europe/Dublin 2010-08-14 +3309662 Knappagh House Knappagh House 54.02056 -6.96444 P PPL IE U 02 0 118 Europe/Dublin 2010-08-14 +3309663 Boagh Boagh 54.045 -7.0125 P PPLL IE U 02 0 106 Europe/Dublin 2010-08-14 +3309664 Knappagh Water Knappagh Water 54.0325 -6.96583 H STM IE U 02 0 114 Europe/Dublin 1998-04-30 +3309665 Pottlereagh Pottlereagh 54.0575 -7.02556 P PPL IE U 02 0 109 Europe/Dublin 2010-08-14 +3309666 Baraghy Lough Baraghy Lough 54.05583 -6.98361 H LK IE 00 0 148 Europe/Dublin 1998-04-30 +3309667 Mount Carmel Mount Carmel 54.08389 -6.97556 S EST IE U 22 0 140 Europe/Dublin 2010-08-14 +3309668 Corfad House Corfad House 54.09667 -6.97722 S HSEC IE U 22 0 132 Europe/Dublin 2010-08-14 +3309669 Lisnalong Lisnalong 54.08861 -7 P PPLL IE U 22 0 131 Europe/Dublin 2010-08-14 +3309670 Black Lough Black Lough 54.04583 -6.93806 H LK IE U 22 0 119 Europe/Dublin 2010-08-14 +3309671 Garrybane Garrybane 54.06694 -6.93194 P PPL IE U 22 0 173 Europe/Dublin 2010-08-14 +3309672 Aghnamullen Aghnamullen 54.09306 -6.96 P PPL IE U 22 0 143 Europe/Dublin 2010-08-14 +3309673 Moyle Moyle 54.0825 -6.95611 P PPLL IE U 22 0 151 Europe/Dublin 2010-08-14 +3309674 Moyduff Lough Moyduff Lough 54.02694 -6.93917 H LK IE 00 0 126 Europe/Dublin 1998-04-30 +3309675 Corgreagh Corgreagh 54.01861 -6.92889 P PPLL IE U 22 0 137 Europe/Dublin 2010-08-14 +3309676 Lisnadarragh Lisnadarragh 54.01583 -6.88667 P PPLL IE U 22 0 153 Europe/Dublin 2010-08-14 +3309677 Cargaghoge Cargaghoge 54.00389 -6.89361 P PPLL IE U 02 0 154 Europe/Dublin 2010-08-14 +3309678 Kilmacaran Kilmacaran 54.00028 -6.95667 P PPLL IE U 02 0 134 Europe/Dublin 2010-08-14 +3309679 Shinan House Shinan House 53.99083 -6.91556 S HSEC IE U 02 0 151 Europe/Dublin 2010-08-14 +3309680 Shinan Lough Shinan Lough 53.98917 -6.92 H LK IE U 02 0 151 Europe/Dublin 2010-08-14 +3309681 Corraghy Lough Corraghy Lough 53.98722 -6.95167 H LK IE U 02 0 148 Europe/Dublin 2010-08-14 +3309682 White Lough White Lough 53.9825 -6.98056 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +3309683 Annaghierin Lough Annaghierin Lough 53.97611 -6.93472 H LK IE U 02 0 153 Europe/Dublin 2010-08-14 +3309684 Milltown Lough Milltown Lough 53.97667 -6.91694 H LK IE U 02 0 150 Europe/Dublin 2010-08-14 +3309685 Steepletons Lough Steepletons Lough 53.98861 -6.89389 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +3309686 Glasleck Glasleck 53.97417 -6.92667 P PPLL IE U 02 0 152 Europe/Dublin 2010-08-14 +3309687 Corravilla Corravilla 53.97306 -6.95361 P PPLL IE U 02 0 148 Europe/Dublin 2010-08-14 +3309688 Drumad Lough Drumad Lough 53.96111 -6.92333 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +3309689 Nolagh Nolagh 53.94861 -6.92139 P PPLL IE U 02 0 189 Europe/Dublin 2010-08-14 +3309690 Crossmakeelan Crossmakeelan 53.93944 -6.90778 P PPLL IE U 02 0 239 Europe/Dublin 2010-08-14 +3309691 Lisagoan Lisagoan 53.94944 -6.87306 P PPLL IE U 02 0 167 Europe/Dublin 2010-08-14 +3309692 Kilcrossduff Kilcrossduff 53.965 -6.90389 P PPLL IE U 02 0 155 Europe/Dublin 2010-08-14 +3309693 Cornalara Lough Cornalara Lough 53.96944 -6.86444 H LK IE U 02 0 152 Europe/Dublin 2010-08-14 +3309694 Greaghlone Lough Greaghlone Lough 53.96556 -6.84722 H LK IE U 22 0 152 Europe/Dublin 2010-08-14 +3309695 Raferagh Raferagh 53.97833 -6.83889 P PPLL IE U 22 0 157 Europe/Dublin 2010-08-14 +3309696 Ballaghnageam Ballaghnageam 53.95417 -6.8225 P PPL IE U 22 0 134 Europe/Dublin 2010-08-14 +3309697 Magheracloone Magheracloone 53.93889 -6.78556 P PPL IE U 22 0 64 Europe/Dublin 2010-08-14 +3309698 Tullylougherny Tullylougherny 53.95111 -6.77722 P PPL IE U 22 0 65 Europe/Dublin 2010-08-14 +3309699 Lough Bougagh Lough Bougagh 53.9625 -6.7625 H PND IE U 22 0 60 Europe/Dublin 2010-08-14 +3309700 Carrickmaclim Carrickmaclim 53.98139 -6.78111 P PPL IE U 22 0 122 Europe/Dublin 2010-08-14 +3309701 Corvally Corvally 53.99472 -6.85222 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309702 Aghlattacru Aghlattacru 53.94417 -6.7175 P PPLL IE U 22 0 75 Europe/Dublin 2010-08-14 +3309703 Tullyallen Lough Tullyallen Lough 53.93611 -6.69333 H LK IE U 22 0 75 Europe/Dublin 2010-08-14 +3309704 Monalty Lough Monalty Lough 53.96472 -6.68028 H LK IE U 22 0 79 Europe/Dublin 2010-08-14 +3309705 Lough Naglack Lough Naglack 53.96333 -6.69917 H LK IE U 22 0 81 Europe/Dublin 2010-08-14 +3309706 Monalty House Monalty House 53.95778 -6.67972 S HSEC IE U 22 0 78 Europe/Dublin 2010-08-14 +3309707 Spring Lough Spring Lough 53.975 -6.68667 H LK IE U 22 0 80 Europe/Dublin 2010-08-14 +3309708 Capragh Lough Capragh Lough 53.99222 -6.6775 H LK IE U 22 0 73 Europe/Dublin 2010-08-14 +3309709 Longfield Longfield 53.98722 -6.69722 S EST IE U 22 0 76 Europe/Dublin 2010-08-14 +3309710 Belle Vue Belle Vue 53.98472 -6.74111 S EST IE U 22 0 70 Europe/Dublin 2010-08-14 +3309711 Drumbroagh Drumbroagh 53.99833 -6.735 H LK IE U 22 0 70 Europe/Dublin 2010-08-14 +3309712 Callenberg House Callenberg House 53.97611 -6.59417 S HSEC IE U 22 0 64 Europe/Dublin 2010-08-14 +3309713 Drumnagrella Drumnagrella 53.99 -6.60528 P PPL IE U 22 0 70 Europe/Dublin 2010-08-14 +3309714 Rocksavage Rocksavage 53.99361 -6.63278 S EST IE U 22 0 76 Europe/Dublin 2010-08-14 +3309715 Kiltybegs Kiltybegs 53.9975 -6.64167 P PPL IE U 22 0 75 Europe/Dublin 2010-08-14 +3309716 Rahans Rahans 53.99278 -6.655 P PPLL IE U 22 0 74 Europe/Dublin 2010-08-14 +3309717 Tullagee House Tullagee House 53.98833 -6.54778 S HSEC IE L 19 0 54 Europe/Dublin 2010-08-14 +3309718 Moyles Moyles 54.00778 -6.60111 P PPL IE U 22 0 76 Europe/Dublin 2010-08-14 +3309719 Drumcattan Drumcattan 54.01083 -6.63306 P PPL IE U 22 0 77 Europe/Dublin 2010-08-14 +3309720 Drumganny Lough Drumganny Lough 54.01611 -6.64444 H PND IE U 22 0 77 Europe/Dublin 2010-08-14 +3309721 Attiduff Lough Attiduff Lough 54.01833 -6.66722 H PND IE U 22 0 84 Europe/Dublin 2010-08-14 +3309722 Tattyboy Tattyboy 54.02306 -6.62111 P PPLL IE U 22 0 78 Europe/Dublin 2010-08-14 +3309723 Magoney Bridge Magoney Bridge 54.02611 -6.61444 P PPLL IE U 22 0 86 Europe/Dublin 2010-08-14 +3309724 Ballyrush Ballyrush 54.01222 -6.58833 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3309725 Mount Matthews Mount Matthews 54.01278 -6.56694 S EST IE U 22 0 76 Europe/Dublin 2010-08-14 +3309726 Cargaghlisnanarney Cargaghlisnanarney 54.02944 -6.64556 P PPLL IE U 22 0 85 Europe/Dublin 2010-08-14 +3309727 Drumaconvern L. Drumaconvern L. 54.04389 -6.67944 H LK IE U 22 0 126 Europe/Dublin 2010-08-14 +3309728 Feegavla Feegavla 54.00861 -6.65639 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3309729 Tullyvaragh Lower Tullyvaragh Lower 54.02444 -6.70611 P PPLL IE U 22 0 91 Europe/Dublin 2010-08-14 +3309730 Drumharriff Lough Drumharriff Lough 54.03611 -6.69861 H PND IE U 22 0 124 Europe/Dublin 2010-08-14 +3309731 Moylan Lough Moylan Lough 54.01944 -6.69583 H LK IE U 22 0 88 Europe/Dublin 2010-08-14 +3309732 Lisgall Lisgall 54.00639 -6.72639 P PPLL IE U 22 0 69 Europe/Dublin 2010-08-14 +3309733 Donaghmoyne House Donaghmoyne House 54.00528 -6.69222 S HSEC IE U 22 0 74 Europe/Dublin 2010-08-14 +3309734 Creevy Lough Creevy Lough 54.00444 -6.73583 H LK IE U 22 0 77 Europe/Dublin 2010-08-14 +3309735 Cashlan Cashlan 54.01611 -6.74278 P PPLL IE U 22 0 120 Europe/Dublin 2010-08-14 +3309736 Lisdoonan Lisdoonan 54.02639 -6.75111 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309737 Monalia Monalia 54.02861 -6.7275 P PPLL IE U 22 0 136 Europe/Dublin 2010-08-14 +3309738 Drummanreagh Drummanreagh 54.0475 -6.73 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309739 Culloville Culloville 54.05222 -6.66611 P PPLL IE U 22 0 108 Europe/Dublin 2010-08-14 +3309740 Lough Nagarnaman Lough Nagarnaman 54.03889 -6.7475 H LK IE U 22 0 159 Europe/Dublin 2010-08-14 +3309741 Drumillard Lough Drumillard Lough 54.04389 -6.68806 H LK IE U 22 0 135 Europe/Dublin 2010-08-14 +3309742 Carrickartagh Carrickartagh 54.00083 -6.79778 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309743 Greaghlatacapple Greaghlatacapple 54.01028 -6.82028 P PPL IE U 22 0 151 Europe/Dublin 2010-08-14 +3309744 Ballybay Cross Roads Ballybay Cross Roads 54.02111 -6.78306 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309745 Ouvry Cross Roads Ouvry Cross Roads 54.01444 -6.84361 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309746 Shanco Shanco 53.99611 -6.83694 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309747 Laragh Laragh 54.04528 -6.77361 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309748 Cherry Vale Cherry Vale 54.05528 -6.77389 S EST IE U 22 0 153 Europe/Dublin 2010-08-14 +3309749 Bocks Lough Bocks Lough 54.03889 -6.81472 H LK IE U 22 0 150 Europe/Dublin 2010-08-14 +3309750 Shantonagh Lough Shantonagh Lough 54.03722 -6.84389 H LK IE U 22 0 144 Europe/Dublin 2010-08-14 +3309751 Tully House Tully House 54.04333 -6.82861 S HSEC IE U 22 0 144 Europe/Dublin 2010-08-14 +3309752 Shantonagh House Shantonagh House 54.04667 -6.83444 S HSEC IE U 22 0 143 Europe/Dublin 2010-08-14 +3309753 Tullynamalra Cross Roads Tullynamalra Cross Roads 54.05722 -6.81833 P PPLL IE U 22 0 147 Europe/Dublin 2010-08-14 +3309754 Lough Namachree Lough Namachree 54.03083 -6.86528 H LK IE U 22 0 152 Europe/Dublin 2010-08-14 +3309755 Lisnakillewbane Lough Lisnakillewbane Lough 54.04111 -6.88556 H LK IE U 22 0 139 Europe/Dublin 2010-08-14 +3309756 Lough Morne Lough Morne 54.06361 -6.83806 H LK IE U 22 0 152 Europe/Dublin 2010-08-14 +3309757 Tievaleny Lough Tievaleny Lough 54.05972 -6.87 H LK IE U 22 0 158 Europe/Dublin 2010-08-14 +3309758 Lattacrom Lattacrom 54.06694 -6.84278 P PPLL IE U 22 0 153 Europe/Dublin 2010-08-14 +3309759 Lough Bawn Lough Bawn 54.04083 -6.90306 H LK IE U 22 0 135 Europe/Dublin 2010-08-14 +3309760 Black Lough Black Lough 54.03889 -6.91556 H LK IE U 22 0 132 Europe/Dublin 2010-08-14 +3309761 Loughbawn House Loughbawn House 54.04333 -6.9125 S HSEC IE U 22 0 125 Europe/Dublin 2010-08-14 +3309762 Derrygoony Lough Derrygoony Lough 54.03944 -6.93722 H LK IE U 22 0 121 Europe/Dublin 2010-08-14 +3309763 Cortober Cortober 54.03917 -6.92556 P PPLL IE U 22 0 127 Europe/Dublin 2010-08-14 +3309764 Lough Bane Lough Bane 54.02778 -6.91167 H LK IE U 22 0 139 Europe/Dublin 2010-08-14 +3309765 Cortaghart Cortaghart 54.06139 -6.89306 P PPLL IE U 22 0 155 Europe/Dublin 2010-08-14 +3309766 Bananimma Bananimma 54.07444 -6.8975 P PPLL IE U 22 0 186 Europe/Dublin 2010-08-14 +3309767 Tossy Tossy 54.07972 -6.84917 P PPL IE U 22 0 153 Europe/Dublin 2010-08-14 +3309768 Greagh Greagh 54.09139 -6.82306 T HLL IE U 22 0 153 Europe/Dublin 2010-08-14 +3309769 Creeve Lakes Creeve Lakes 54.08611 -6.88556 H LKS IE U 22 0 177 Europe/Dublin 2010-08-14 +3309770 Carnaveagh House Carnaveagh House 54.09194 -6.90472 S HSEC IE U 22 0 176 Europe/Dublin 2010-08-14 +3309771 Boraghy Lough Boraghy Lough 54.07139 -6.82778 H LK IE U 22 0 154 Europe/Dublin 2010-08-14 +3309772 Carrickinare Carrickinare 54.10167 -6.83583 T HLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309776 Tullanacrunat Tullanacrunat 54.07139 -6.67417 P PPLL IE U 22 0 107 Europe/Dublin 2010-08-14 +3309777 Thornford Thornford 54.07722 -6.69583 P PPL IE U 22 0 151 Europe/Dublin 2010-08-14 +3309778 Annalittin Annalittin 54.08917 -6.69611 P PPL IE U 22 0 142 Europe/Dublin 2010-08-14 +3309779 Fincairn Hill Fincairn Hill 54.06944 -6.74139 T HLL IE U 22 0 231 153 Europe/Dublin 2010-08-14 +3309780 Aghnafarcan Aghnafarcan 54.06333 -6.74833 P PPL IE U 22 0 155 Europe/Dublin 2010-08-14 +3309781 Tullyvin Tullyvin 54.10583 -6.73333 P PPL IE U 22 0 139 Europe/Dublin 2010-08-14 +3309782 Clarebane River Clarebane River Clarebane River 54.08611 -6.65556 H STM IE 00 0 127 Europe/Dublin 1998-04-30 +3309783 Concra Concra 54.10417 -6.70611 L LCTY IE U 22 0 127 Europe/Dublin 2010-08-14 +3309786 Dromore Dromore 54.11444 -6.675 P PPLL IE U 22 0 140 Europe/Dublin 2010-08-14 +3309787 White Island White Island 54.11639 -6.72167 T ISL IE U 22 0 131 Europe/Dublin 2010-08-14 +3309789 Drumakill Drumakill 54.12 -6.67222 P PPLL IE U 22 0 147 Europe/Dublin 2010-08-14 +3309790 Tullychattina Tullychattina 54.13056 -6.66139 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309791 Black Island Black Island 54.12139 -6.72306 T ISL IE U 22 0 134 Europe/Dublin 2010-08-14 +3309792 Drumillard Lough Drumillard Lough 54.13222 -6.75333 H LK IE U 22 0 140 Europe/Dublin 2010-08-14 +3309793 Killygola Lough Killygola Lough 54.13611 -6.73778 H LK IE U 22 0 145 Europe/Dublin 2010-08-14 +3309794 Laragh Lough Laragh Lough 54.14361 -6.77806 H LK IE U 22 0 144 Europe/Dublin 2010-08-14 +3309795 Annagleve Annagleve 54.09028 -6.76111 P PPLL IE U 22 0 153 Europe/Dublin 2010-08-14 +3309796 Blayney Castle Blayney Castle 54.11722 -6.73056 S CSTL IE U 22 0 135 Europe/Dublin 2010-08-14 +3309797 Sheetrim Sheetrim 54.09611 -6.78611 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309798 Tullycarragh Tullycarragh 54.10361 -6.80306 P PPL IE U 22 0 151 Europe/Dublin 2010-08-14 +3309799 Killycrom Killycrom 54.12778 -6.78806 P PPL IE U 22 0 147 Europe/Dublin 2010-08-14 +3309800 Crinkill Lough Crinkill Lough 54.11778 -6.82611 H LK IE U 22 0 144 Europe/Dublin 2010-08-14 +3309801 Tonyglassan Tonyglassan 54.11917 -6.86 P PPL IE U 22 0 139 Europe/Dublin 2010-08-14 +3309802 McNally’s Cross Roads McNally's Cross Roads 54.14861 -6.845 P PPLL IE U 22 0 144 Europe/Dublin 2010-08-14 +3309803 Coolmannan Coolmannan 54.13639 -6.82972 P PPLL IE U 22 0 143 Europe/Dublin 2010-08-14 +3309804 Dunmaurice Dunmaurice 54.13528 -6.86944 P PPLL IE U 22 0 136 Europe/Dublin 2010-08-14 +3309805 Corlealackagh Corlealackagh 54.14556 -6.81889 P PPLL IE U 22 0 147 Europe/Dublin 2010-08-14 +3309806 Carrickaslane Carrickaslane 54.14944 -6.75639 P PPLL IE U 22 0 143 Europe/Dublin 2010-08-14 +3309807 Creevelands Creevelands 54.10278 -6.895 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309808 Creeve Creeve 54.09556 -6.91167 P PPLL IE U 22 0 168 Europe/Dublin 2010-08-14 +3309809 Lough Minor Lough Minor 54.12611 -6.89167 H LK IE U 22 0 132 Europe/Dublin 2010-08-14 +3309810 Balladian Balladian 54.12 -6.93083 P PPLL IE U 22 0 129 Europe/Dublin 2010-08-14 +3309811 Drumfaldra House Drumfaldra House 54.10222 -6.92528 S HSEC IE U 22 0 140 Europe/Dublin 2010-08-14 +3309812 Edenancane Edenancane 54.12667 -6.94194 P PPLL IE U 22 0 126 Europe/Dublin 2010-08-14 +3309813 Corfad Corfad 54.13583 -6.91111 P PPLL IE U 22 0 134 Europe/Dublin 2010-08-14 +3309814 Corkeeran Lough Corkeeran Lough 54.10583 -6.95306 H LK IE U 22 0 140 Europe/Dublin 2010-08-14 +3309815 White Lough White Lough 54.1125 -6.97194 H LK IE U 22 0 124 Europe/Dublin 2010-08-14 +3309816 Lisgillan Lisgillan 54.12111 -6.97528 P PPLL IE U 22 0 118 Europe/Dublin 2010-08-14 +3309817 Glebe House Glebe House 54.10306 -6.96083 S HSEC IE U 22 0 136 Europe/Dublin 2010-08-14 +3309818 Mullanary Lough Mullanary Lough 54.10306 -6.96806 H LK IE U 22 0 131 Europe/Dublin 2010-08-14 +3309819 Rockcorry Rockcorry 54.10556 -6.97528 S FRM IE U 22 0 125 Europe/Dublin 2010-08-14 +3309820 Monintin Monintin 54.13111 -6.97583 S FRM IE U 22 0 122 Europe/Dublin 2010-08-14 +3309821 County Water County Water County Water 54.1225 -6.70556 H STM IE 00 0 132 Europe/Dublin 2010-08-10 +3309822 Drumacrib Drumacrib 54.14694 -6.66333 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309823 Lurganearly Lurganearly 54.15833 -6.63889 P PPL IE U 22 0 147 Europe/Dublin 2010-08-14 +3309824 Mullyash Mountain Mullyash Mountain 54.17278 -6.66694 T MT IE U 22 0 319 248 Europe/Dublin 2010-08-14 +3309825 Tullynageer Tullynageer 54.1825 -6.70028 P PPLL IE U 22 0 164 Europe/Dublin 2010-08-14 +3309826 McKelvey’s Grove McKelvey's Grove 54.18194 -6.71944 S EST IE U 22 0 152 Europe/Dublin 2010-08-14 +3309827 Muckno Mill Lough Muckno Mill Lough 54.14417 -6.71083 H LK IE U 22 0 143 Europe/Dublin 2010-08-14 +3309828 Lisnagreeve Lisnagreeve 54.16972 -6.75028 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309829 Lemgare Rocks Lemgare Rocks 54.19194 -6.76972 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309830 Lemgare Lemgare 54.2025 -6.79111 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309831 Glebe House Glebe House 54.19944 -6.83028 S HSEC IE U 22 0 142 Europe/Dublin 2010-08-14 +3309832 Avalreagh House Avalreagh House 54.19056 -6.80889 S HSEC IE U 22 0 152 Europe/Dublin 2010-08-14 +3309833 Lough Nahinch Lough Nahinch 54.18306 -6.79667 H PND IE U 22 0 152 Europe/Dublin 2010-08-14 +3309834 Annavalla Annavalla 54.15917 -6.79028 P PPL IE U 22 0 150 Europe/Dublin 2010-08-14 +3309835 Creevagh Creevagh 54.14861 -6.92528 P PPL IE U 22 0 137 Europe/Dublin 2010-08-14 +3309836 Corvoy Corvoy 54.16389 -6.89833 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309837 Mullan House Mullan House 54.15333 -6.9 S HSEC IE U 22 0 145 Europe/Dublin 2010-08-14 +3309838 Cordoo Lough Cordoo Lough 54.15889 -6.87833 H LK IE U 22 0 145 Europe/Dublin 2010-08-14 +3309839 Six Mile Lough Six Mile Lough 54.17028 -6.855 H LK IE U 22 0 159 Europe/Dublin 2010-08-14 +3309840 Scotch Corner Scotch Corner 54.17889 -6.86722 P PPLL IE U 22 0 151 Europe/Dublin 2010-08-14 +3309841 Creeve Creeve 54.18611 -6.84528 P PPLL IE U 22 0 148 Europe/Dublin 2010-08-14 +3309842 Shanmullagh Shanmullagh 54.18556 -6.90361 P PPLL IE U 22 0 153 Europe/Dublin 2010-08-14 +3309843 Dunraymond Dunraymond 54.17389 -6.91278 P PPLL IE U 22 0 151 Europe/Dublin 2010-08-14 +3309844 Bartleys Grove Bartleys Grove 54.16444 -6.93444 S EST IE U 22 0 146 Europe/Dublin 2010-08-14 +3309845 Radrum Radrum 54.18139 -6.95472 P PPLL IE U 22 0 151 Europe/Dublin 2010-08-14 +3309846 Drumacruttan House Drumacruttan House 54.1925 -6.93611 S HSEC IE U 22 0 155 Europe/Dublin 2010-08-14 +3309847 Feragh Feragh 54.20556 -6.9375 P PPLL IE U 22 0 157 Europe/Dublin 2010-08-14 +3309848 Dromore Dromore 54.15667 -6.95972 P PPLL IE U 22 0 140 Europe/Dublin 2010-08-14 +3309849 Monneill Monneill 54.12472 -7.00333 P PPL IE U 22 0 116 Europe/Dublin 2010-08-14 +3309850 Glencorick Glencorick 54.12306 -7.03056 P PPLL IE U 22 0 112 Europe/Dublin 2010-08-14 +3309851 Edergole Edergole 54.12083 -7.05889 P PPLL IE U 22 0 103 Europe/Dublin 2010-08-14 +3309852 Coolkill Lough Coolkill Lough 54.11667 -7.04944 H LK IE U 22 0 107 Europe/Dublin 2010-08-14 +3309853 Drumsaul Lough Drumsaul Lough 54.13 -7.02528 H LK IE U 22 0 118 Europe/Dublin 2010-08-14 +3309854 Drumacreeve Drumacreeve 54.13722 -7.02667 P PPL IE U 22 0 126 Europe/Dublin 2010-08-14 +3309855 Swans Cross Roads Swans Cross Roads 54.14639 -7.00972 P PPLL IE U 22 0 135 Europe/Dublin 2010-08-14 +3309856 Dundrannan Cross Roads Dundrannan Cross Roads 54.14528 -6.99194 P PPLL IE U 22 0 135 Europe/Dublin 2010-08-14 +3309857 Cremoyle Cremoyle 54.15778 -6.98333 P PPLL IE U 22 0 141 Europe/Dublin 2010-08-14 +3309858 Slieveroe Slieveroe 54.17528 -6.99528 P PPL IE U 22 0 152 Europe/Dublin 2010-08-14 +3309859 Tonagh Tonagh 54.15861 -7.03167 P PPLL IE U 22 0 148 Europe/Dublin 2010-08-14 +3309860 Drumbrean Cottage Drumbrean Cottage 54.15944 -7.07361 S HSE IE U 22 0 152 Europe/Dublin 2010-08-14 +3309861 Glen Glen 54.11667 -7.12389 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3309862 Doohat Doohat 54.12417 -7.13194 P PPL IE U 22 0 76 Europe/Dublin 2010-08-14 +3309863 Drumgole Lough Drumgole Lough 54.12222 -7.095 H LK IE U 22 0 86 Europe/Dublin 2010-08-14 +3309864 Annaghmakerig Lough Annaghmakerig Lough 54.12917 -7.10611 H LK IE U 22 0 82 Europe/Dublin 2010-08-14 +3309865 Kilmore Kilmore 54.1325 -7.07583 P PPLL IE U 22 0 102 Europe/Dublin 2010-08-14 +3309866 Drumacreeve Drumacreeve 54.12722 -7.14694 P PPLL IE U 22 0 77 Europe/Dublin 2010-08-14 +3309867 Creeran Creeran 54.12083 -7.16111 P PPLL IE U 22 0 89 Europe/Dublin 2010-08-14 +3309868 Killyleg Killyleg 54.13583 -7.18278 P PPLL IE U 22 0 154 Europe/Dublin 2010-08-14 +3309869 Crossbane Crossbane 54.14194 -7.19361 P PPL IE U 22 0 140 Europe/Dublin 2010-08-14 +3309870 Drumate Lough Drumate Lough 54.15694 -7.08472 H LK IE U 22 0 127 Europe/Dublin 2010-08-14 +3309871 Feagh Lough Feagh Lough 54.15028 -7.09667 H LK IE U 22 0 113 Europe/Dublin 2010-08-14 +3309872 Corlougharoe Corlougharoe 54.14583 -7.10917 P PPL IE U 22 0 77 Europe/Dublin 2010-08-14 +3309873 Lisalea House Lisalea House 54.15972 -7.14278 S HSEC IE U 22 0 94 Europe/Dublin 2010-08-14 +3309874 Glinch House Glinch House 54.16389 -7.1325 S HSEC IE U 22 0 85 Europe/Dublin 2010-08-14 +3309875 Ballinageeragh Ballinageeragh 54.10528 -7.20861 P PPLL IE U 22 0 91 Europe/Dublin 2010-08-14 +3309876 Rockfield Rockfield 54.11139 -7.21722 P PPLL IE U 22 0 126 Europe/Dublin 2010-08-14 +3309877 Lurganboy Lurganboy 54.12167 -7.19417 P PPLL IE U 22 0 112 Europe/Dublin 2010-08-14 +3309878 Lisnalee Lisnalee 54.12083 -7.23333 P PPL IE U 22 0 143 Europe/Dublin 2010-08-14 +3309879 Dorothys Cross Roads Dorothys Cross Roads 54.14333 -7.21278 P PPLL IE U 22 0 104 Europe/Dublin 2010-08-14 +3309880 Radeerpark Radeerpark 54.15194 -7.18833 P PPLL IE U 22 0 132 Europe/Dublin 2010-08-14 +3309881 Lisabuck Lough Lisabuck Lough 54.15278 -7.23028 H LK IE U 22 0 74 Europe/Dublin 2010-08-14 +3309882 Carraskea Carraskea 54.14611 -7.25056 P PPLL IE U 22 0 75 Europe/Dublin 2010-08-14 +3309883 Scarvy House Scarvy House 54.15861 -7.21056 S HSEC IE U 22 0 75 Europe/Dublin 2010-08-14 +3309884 Ferneyhill House Ferneyhill House 54.16083 -7.23083 S HSEC IE U 22 0 75 Europe/Dublin 2010-08-14 +3309885 Gortgranard House Gortgranard House 54.17222 -7.20722 S HSEC IE U 22 0 74 Europe/Dublin 2010-08-14 +3309886 Cloncurrin House Cloncurrin House 54.17361 -7.22917 S HSEC IE U 22 0 75 Europe/Dublin 2010-08-14 +3309887 Clonkeen Lough Clonkeen Lough 54.16694 -7.225 H LK IE U 22 0 75 Europe/Dublin 2010-08-14 +3309888 Clonkirk Clonkirk 54.19139 -7.22472 P PPLL IE U 22 0 74 Europe/Dublin 2010-08-14 +3309889 Ballynure House Ballynure House 54.17167 -7.17667 S HSEC IE U 22 0 72 Europe/Dublin 2010-08-14 +3309890 Anlore Anlore 54.17917 -7.16694 S EST IE U 22 0 71 Europe/Dublin 2010-08-14 +3309891 Creevelea Creevelea 54.18556 -7.16417 P PPLL IE U 22 0 73 Europe/Dublin 2010-08-14 +3309892 Bessbrook Bessbrook 54.18417 -7.14222 P PPLL IE U 22 0 73 Europe/Dublin 2010-08-14 +3309893 Kilnamaddy Kilnamaddy 54.1925 -7.14278 P PPLL IE U 22 0 73 Europe/Dublin 2010-08-14 +3309894 Ashfield Ashfield 54.20556 -7.12722 S EST IE U 22 0 73 Europe/Dublin 2010-08-14 +3309895 Gortnawinny Lough Gortnawinny Lough 54.20333 -7.215 H LK IE U 22 0 74 Europe/Dublin 2010-08-14 +3309896 Etna Lodge Etna Lodge 54.20917 -7.22056 S HSE IE U 22 0 74 Europe/Dublin 2010-08-14 +3309897 Drumard House Drumard House 54.20333 -7.23667 S HSEC IE U 22 0 70 Europe/Dublin 2010-08-14 +3309898 Cavan Cavan 54.21167 -7.21028 P PPLL IE U 22 0 74 Europe/Dublin 2010-08-14 +3309899 Finglasha Stream Finglasha Stream 52.38167 -8.92833 H STM IE M 16 0 92 Europe/Dublin 2010-08-14 +3309900 Broken Bridge Broken Bridge 52.39056 -8.94306 P PPLL IE M 16 0 76 Europe/Dublin 2010-08-14 +3309901 Bellville Bellville 52.39639 -8.92694 P PPL IE M 16 0 82 Europe/Dublin 2010-08-14 +3309902 Gorfaaguggin Bridge Gorfaaguggin Bridge 52.39278 -8.89806 P PPLL IE M 16 0 123 Europe/Dublin 2010-08-14 +3309903 Ahadagh Ahadagh 52.3825 -8.89611 L LCTY IE M 16 0 115 Europe/Dublin 2010-08-14 +3309904 Kilmurry Kilmurry 52.38528 -8.85583 L LCTY IE M 16 0 127 Europe/Dublin 2010-08-14 +3309905 Gorteen Gorteen 52.40389 -8.86611 L LCTY IE M 16 0 143 Europe/Dublin 2010-08-14 +3309906 Sandville Cottage Sandville Cottage 52.40778 -8.905 S HSE IE M 16 0 118 Europe/Dublin 2010-08-14 +3309907 Heathfield House Heathfield House 52.42 -8.88917 S HSE IE M 16 0 152 Europe/Dublin 2010-08-14 +3309908 Glenwilliam Castle Glenwilliam Castle 52.43694 -8.87111 S CSTL IE M 16 0 152 Europe/Dublin 2010-08-14 +3309912 Frankfort House Frankfort House 52.44444 -8.87833 S HSEC IE M 16 0 139 Europe/Dublin 2010-08-14 +3309913 Corronoher Corronoher 52.42667 -8.87167 T HLL IE M 16 0 154 Europe/Dublin 2010-08-14 +3309914 Gortroe House Gortroe House 52.42306 -8.85306 S HSEC IE M 16 0 152 Europe/Dublin 2010-08-14 +3309916 Cloonee Cottage Cloonee Cottage 52.39583 -8.79361 S HSE IE M 16 0 101 Europe/Dublin 2010-08-14 +3309917 Drews Court Drews Court 52.38611 -8.77806 S EST IE M 16 0 82 Europe/Dublin 2010-08-14 +3309918 Killacolla Killacolla 52.40639 -8.76028 L LCTY IE M 16 0 86 Europe/Dublin 2010-08-14 +3309919 Fort Middle Fort Middle 52.39111 -8.75583 P PPLL IE M 16 0 76 Europe/Dublin 2010-08-14 +3309920 Fort House Fort House 52.38444 -8.72944 S HSE IE M 16 0 71 Europe/Dublin 2010-08-14 +3309921 Greggane Bridge Greggane Bridge 52.39444 -8.68722 S HSE IE M 16 0 64 Europe/Dublin 2010-08-14 +3309922 Garroose Bridge Garroose Bridge 52.39667 -8.66444 L LCTY IE M 16 0 65 Europe/Dublin 2010-08-14 +3309923 Fort East Fort East 52.40028 -8.72417 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3309927 Kilbreedy Kilbreedy 52.39333 -8.64806 L LCTY IE M 16 0 68 Europe/Dublin 2010-08-14 +3309928 Mountblakeney Mountblakeney 52.38333 -8.65111 L LCTY IE M 16 0 70 Europe/Dublin 2010-08-14 +3309929 Tankardstown Tankardstown 52.40778 -8.65083 L LCTY IE M 16 0 68 Europe/Dublin 2010-08-14 +3309930 Ballyfookeen Ballyfookeen 52.42583 -8.72083 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3309931 Ballyleige Lower Ballyleige Lower 52.43194 -8.72722 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3309932 Bruee House Bruee House 52.41583 -8.66278 S HSEC IE M 16 0 63 Europe/Dublin 2010-08-14 +3309933 De Valera Museum De Valera Museum 52.42417 -8.66556 S MUS IE M 16 0 62 Europe/Dublin 2010-08-14 +3309935 De Valera Cottage De Valera Cottage 52.43194 -8.66056 S HSE IE M 16 0 62 Europe/Dublin 2010-08-14 +3309967 Emmet’s Cross Roads Emmet's Cross Roads 52.38722 -8.58528 P PPL IE M 16 0 79 Europe/Dublin 2010-08-14 +3309968 Graiganster Graiganster 52.385 -8.58583 P PPL IE M 16 0 79 Europe/Dublin 2010-08-14 +3309969 Blossom Gate Blossom Gate 52.40139 -8.59083 S EST IE M 16 0 76 Europe/Dublin 2010-08-14 +3309970 North Bridge North Bridge 52.40556 -8.58083 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3309971 Ballycullane Ballycullane 52.415 -8.58056 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3309972 Ballygubba Ballygubba 52.41861 -8.61528 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3309973 Shearins Cross Shearins Cross 52.43889 -8.5675 P PPL IE M 16 0 76 Europe/Dublin 2010-08-14 +3309974 Ballyania Stream Ballyania Stream 52.43611 -8.67278 H STM IE M 16 0 55 Europe/Dublin 2010-08-14 +3309975 Maidstown Castle Maidstown Castle 52.43528 -8.61667 S CSTL IE M 16 0 105 Europe/Dublin 2010-08-14 +3309976 Clogher Bridge Clogher Bridge 52.44278 -8.63167 P PPL IE M 16 0 126 Europe/Dublin 2010-08-14 +3309977 Dromacummer Dromacummer 52.44111 -8.66444 L LCTY IE M 16 0 70 Europe/Dublin 2010-08-14 +3309978 Clogher Clogher 52.43278 -8.64361 L LCTY IE M 16 0 84 Europe/Dublin 2010-08-14 +3309979 Cappananty Cappananty 52.41667 -8.78472 L LCTY IE M 16 0 126 Europe/Dublin 2010-08-14 +3309980 Derraulin Derraulin 52.42306 -8.75972 L LCTY IE M 16 0 94 Europe/Dublin 2010-08-14 +3309981 Howardstown Howardstown 52.44333 -8.70056 L LCTY IE M 16 0 66 Europe/Dublin 2010-08-14 +3309982 Cooleen House Cooleen House 52.44944 -8.68556 S HSEC IE M 16 0 56 Europe/Dublin 2010-08-14 +3309983 Harding Grove Harding Grove 52.45194 -8.70194 S EST IE M 16 0 62 Europe/Dublin 2010-08-14 +3309984 Glenbrook House Glenbrook House 52.43528 -8.75222 S HSEC IE M 16 0 85 Europe/Dublin 2010-08-14 +3309985 Fort Edmond Fort Edmond 52.43861 -8.78167 S FT IE M 16 0 120 Europe/Dublin 2010-08-14 +3309986 Lisduane House Lisduane House 52.44556 -8.77056 S HSEC IE M 16 0 105 Europe/Dublin 2010-08-14 +3309987 Knockdarnan Knockdarnan 52.44972 -8.62722 T HLL IE M 16 0 126 Europe/Dublin 2010-08-14 +3309988 Gregare House Gregare House 52.45194 -8.56972 S HSEC IE M 16 0 76 Europe/Dublin 2010-08-14 +3309989 Camas House Camas House 52.48056 -8.58528 S HSEC IE M 16 0 90 Europe/Dublin 2010-08-14 +3309990 Ballinlaw Ballinlaw 52.4925 -8.65111 L LCTY IE M 16 0 94 Europe/Dublin 2010-08-14 +3309991 Rosstemple Rosstemple 52.47917 -8.67833 L LCTY IE M 16 0 89 Europe/Dublin 2010-08-14 +3309992 Belview Belview 52.46639 -8.70667 L LCTY IE M 16 0 57 Europe/Dublin 2010-08-14 +3309993 Kilmore House Kilmore House 52.46528 -8.74667 S HSEC IE M 16 0 75 Europe/Dublin 2010-08-14 +3309994 Liskennett House Liskennett House 52.47333 -8.75722 S HSEC IE M 16 0 78 Europe/Dublin 2010-08-14 +3309995 Ballynabanoge Bridge Ballynabanoge Bridge 52.47556 -8.70167 P PPL IE M 16 0 47 Europe/Dublin 2010-08-14 +3309996 Cherry Grove Cherry Grove 52.48972 -8.71 S EST IE M 16 0 47 Europe/Dublin 2010-08-14 +3309997 Graigacurragh Graigacurragh 52.46472 -8.78056 L LCTY IE M 16 0 112 Europe/Dublin 2010-08-14 +3309998 Morenane Morenane 52.48 -8.77444 L LCTY IE M 16 0 86 Europe/Dublin 2010-08-14 +3309999 Knockfeerina Knockfeerina 52.47417 -8.81056 T HLL IE M 16 0 157 Europe/Dublin 2010-08-14 +3310000 Ballygreennan Ballygreennan 52.45639 -8.81444 L LCTY IE M 16 0 152 Europe/Dublin 2010-08-14 +3310001 Knockfeerina Knockfeerina 52.46722 -8.82333 L LCTY IE M 16 0 157 Europe/Dublin 2010-08-14 +3310002 Ashborough House Ashborough House 52.45917 -8.86472 S HSEC IE M 16 0 123 Europe/Dublin 2010-08-14 +3310003 Ballynamona House Ballynamona House 52.45111 -8.85306 S HSEC IE M 16 0 144 Europe/Dublin 2010-08-14 +3310004 Saint Oswald’s Saint Oswald's 52.46278 -8.885 L LCTY IE M 16 0 100 Europe/Dublin 2010-08-14 +3310005 Ballynarooga Ballynarooga 52.45944 -8.8975 L LCTY IE M 16 0 96 Europe/Dublin 2010-08-14 +3310006 Odell Ville Odell Ville 52.45639 -8.89139 L LCTY IE M 16 0 116 Europe/Dublin 2010-08-14 +3310007 Brook Lodge Brook Lodge 52.43222 -8.93083 S HSE IE M 16 0 76 Europe/Dublin 2010-08-14 +3310008 Ballynoe Bridge Ballynoe Bridge 52.43861 -8.93556 P PPL IE M 16 0 73 Europe/Dublin 2010-08-14 +3310009 Teernahilla Teernahilla 52.445 -8.92889 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3310010 Gorteen Gorteen 52.46639 -8.92556 P PPL IE M 16 0 78 Europe/Dublin 2010-08-14 +3310011 Kilcolman Kilcolman 52.47556 -8.95194 L LCTY IE M 16 0 76 Europe/Dublin 2010-08-14 +3310012 Ballyea Ballyea 52.47861 -8.90694 L LCTY IE M 16 0 79 Europe/Dublin 2010-08-14 +3310013 Danesfort House Danesfort House 52.50361 -8.93333 S HSEC IE M 16 0 50 Europe/Dublin 2010-08-14 +3310014 Wilton Wilton 52.50639 -8.92694 L LCTY IE M 16 0 50 Europe/Dublin 2010-08-14 +3310015 Dromard House Dromard House 52.50139 -8.89056 S HSEC IE M 16 0 62 Europe/Dublin 2010-08-14 +3310016 Raheen House Raheen House 52.50083 -8.86833 S HSEC IE M 16 0 57 Europe/Dublin 2010-08-14 +3310017 Ballyknockane House Ballyknockane House 52.49 -8.83333 S HSEC IE M 16 0 85 Europe/Dublin 2010-08-14 +3310018 Kilmacow House Kilmacow House 52.49111 -8.78667 S HSEC IE M 16 0 76 Europe/Dublin 2010-08-14 +3310019 Dollas Dollas 52.49806 -8.77583 S HSEC IE M 16 0 60 Europe/Dublin 2010-08-14 +3310020 Ballygrennan Ballygrennan 52.49389 -8.75917 L LCTY IE M 16 0 65 Europe/Dublin 2010-08-14 +3310021 Clogghanduff Bridge Clogghanduff Bridge 52.50556 -8.70333 P PPL IE M 16 0 36 Europe/Dublin 2010-08-14 +3310022 Glen Bevan Glen Bevan 52.49333 -8.6875 T VAL IE M 16 0 54 Europe/Dublin 2010-08-14 +3310023 Clonane House Clonane House 52.50222 -8.65694 S HSEC IE M 16 0 66 Europe/Dublin 2010-08-14 +3310024 Abbey Ville Abbey Ville 52.51361 -8.66333 S EST IE M 16 0 53 Europe/Dublin 2010-08-14 +3310025 Rathmore Castle Rathmore Castle 52.52222 -8.64139 S CSTL IE M 16 0 46 Europe/Dublin 2010-08-14 +3310026 Glenogra Bridge Glenogra Bridge 52.53 -8.60333 P PPL IE M 16 0 53 Europe/Dublin 2010-08-14 +3310027 Ballycullane Ballycullane 52.53139 -8.58417 L LCTY IE M 16 0 61 Europe/Dublin 2010-08-14 +3310028 Ballymartin Ballymartin 52.53778 -8.65194 L LCTY IE M 16 0 49 Europe/Dublin 2010-08-14 +3310029 Kilderry House Kilderry House 52.54167 -8.62917 S HSEC IE M 16 0 48 Europe/Dublin 2010-08-14 +3310030 The Grange The Grange 52.54556 -8.55278 S EST IE M 16 0 64 Europe/Dublin 2010-08-14 +3310031 Gorbgarralt Gorbgarralt 52.55639 -8.60194 L LCTY IE M 16 0 58 Europe/Dublin 2010-08-14 +3310032 Mary Ville Mary Ville 52.55194 -8.65417 L LCTY IE M 16 0 56 Europe/Dublin 2010-08-14 +3310033 Ballyregan Ballyregan 52.55833 -8.65806 L LCTY IE M 16 0 56 Europe/Dublin 2010-08-14 +3310034 Fort Elizabeth Fort Elizabeth 52.52917 -8.68194 L LCTY IE M 16 0 63 Europe/Dublin 2010-08-14 +3310035 Lough Nagirra Lough Nagirra 52.54194 -8.6825 H LK IE M 16 0 106 Europe/Dublin 2010-08-14 +3310036 Fanningstown Fanningstown 52.57528 -8.62056 L LCTY IE M 16 0 54 Europe/Dublin 2010-08-14 +3310037 Williamstown Castle Williamstown Castle 52.57278 -8.57222 S CSTL IE M 16 0 76 Europe/Dublin 2010-08-14 +3310038 Rockstown House Rockstown House 52.56444 -8.57583 S HSEC IE M 16 0 71 Europe/Dublin 2010-08-14 +3310039 Glen View Glen View 52.59056 -8.56 S EST IE M 16 0 74 Europe/Dublin 2010-08-14 +3310040 Edwardstown House Edwardstown House 52.59528 -8.56222 S HSEC IE M 16 0 72 Europe/Dublin 2010-08-14 +3310041 Cloghane Bridge Cloghane Bridge 52.58861 -8.60139 P PPL IE M 16 0 64 Europe/Dublin 2010-08-14 +3310042 Friarstown Friarstown 52.59722 -8.62778 L LCTY IE M 16 0 49 Europe/Dublin 2010-08-14 +3310043 Tory Hill Tory Hill 52.53472 -8.69306 T HLL IE M 16 0 143 Europe/Dublin 2010-08-14 +3310044 Alston House Alston House 52.55306 -8.68972 S HSEC IE M 16 0 128 Europe/Dublin 2010-08-14 +3310045 Betty Ville Betty Ville 52.56028 -8.70139 L LCTY IE M 16 0 121 Europe/Dublin 2010-08-14 +3310046 Killonahan Killonahan 52.55778 -8.71972 L LCTY IE M 16 0 93 Europe/Dublin 2010-08-14 +3310047 Fanningstown Castle Fanningstown Castle 52.54806 -8.73722 S CSTL IE M 16 0 49 Europe/Dublin 2010-08-14 +3310048 Crecora Crecora Crecora 52.57694 -8.67778 L LCTY IE M 16 0 73 Europe/Dublin 2010-08-14 +3310049 Prospect Hall Prospect Hall 52.57611 -8.70167 S EST IE M 16 0 90 Europe/Dublin 2010-08-14 +3310050 Richmond Park Richmond Park 52.58278 -8.69056 S EST IE M 16 0 84 Europe/Dublin 2010-08-14 +3310051 Attytlin Park Attytlin Park 52.58278 -8.715 S EST IE M 16 0 85 Europe/Dublin 2010-08-14 +3310052 Green Mountain Green Mountain 52.5975 -8.69333 L LCTY IE M 16 0 49 Europe/Dublin 2010-08-14 +3310053 Dooneen House Dooneen House 52.58528 -8.67028 S HSEC IE M 16 0 44 Europe/Dublin 2010-08-14 +3310054 Lemonfield House Lemonfield House 52.59194 -8.64917 S HSEC IE M 16 0 39 Europe/Dublin 2010-08-14 +3310055 Dooneen Bridge Dooneen Bridge 52.59833 -8.67167 P PPL IE M 16 0 31 Europe/Dublin 2010-08-14 +3310056 Carrigeen Carrigeen 52.52194 -8.74278 T CLF IE M 16 0 34 Europe/Dublin 2010-08-14 +3310057 Islandmore Islandmore 52.51028 -8.71278 P PPL IE M 16 0 36 Europe/Dublin 2010-08-14 +3310058 Caherass Court Caherass Court 52.53306 -8.74556 S EST IE M 16 0 29 Europe/Dublin 2010-08-14 +3310059 Castleroberts Castleroberts 52.545 -8.76417 L LCTY IE M 16 0 24 Europe/Dublin 2010-08-14 +3310060 Granard House Granard House 52.53111 -8.79278 S HSEC IE M 16 0 26 Europe/Dublin 2010-08-14 +3310061 Finniterstown Finniterstown 52.52278 -8.80944 L LCTY IE M 16 0 29 Europe/Dublin 2010-08-14 +3310062 Finniterstown House Finniterstown House 52.53194 -8.82361 S HSEC IE M 16 0 28 Europe/Dublin 2010-08-14 +3310063 Dunnaman Dunnaman 52.5275 -8.79139 L LCTY IE M 16 0 27 Europe/Dublin 2010-08-14 +3310064 Drehidnaman Bridge Drehidnaman Bridge 52.54389 -8.85056 P PPL IE M 16 0 29 Europe/Dublin 2010-08-14 +3310065 Milltown Bridge Milltown Bridge 52.525 -8.85306 P PPL IE M 16 0 39 Europe/Dublin 2010-08-14 +3310066 Ballinvira House Ballinvira House 52.55556 -8.86167 S HSEC IE M 16 0 33 Europe/Dublin 2010-08-14 +3310067 Smithfield House Smithfield House 52.54083 -8.86278 S HSEC IE M 16 0 36 Europe/Dublin 2010-08-14 +3310068 Ballyea Ballyea 52.51972 -8.86417 L LCTY IE M 16 0 41 Europe/Dublin 2010-08-14 +3310069 Aghduff Bridge Aghduff Bridge 52.51556 -8.89667 P PPL IE M 16 0 59 Europe/Dublin 2010-08-14 +3310070 Greanagh River Greanagh River 52.57889 -8.795 H STM IE M 16 0 13 Europe/Dublin 2010-08-14 +3310071 Mondellihy House Mondellihy House 52.58139 -8.78028 S HSEC IE M 16 0 17 Europe/Dublin 2010-08-14 +3310072 Curraghbridge House Curraghbridge House 52.57639 -8.81056 S HSEC IE M 16 0 15 Europe/Dublin 2010-08-14 +3310073 Kilgrogan Kilgrogan 52.57361 -8.84833 L LCTY IE M 16 0 25 Europe/Dublin 2010-08-14 +3310074 Ballincurra Ballincurra 52.56583 -8.88778 L LCTY IE M 16 0 41 Europe/Dublin 2010-08-14 +3310075 Ballinvirick House Ballinvirick House 52.57194 -8.90083 S HSEC IE M 16 0 36 Europe/Dublin 2010-08-14 +3310076 Lisnamuck House Lisnamuck House 52.58139 -8.88556 S HSEC IE M 16 0 34 Europe/Dublin 2010-08-14 +3310077 Clonshire River Clonshire River 52.56611 -8.84417 H STM IE M 16 0 25 Europe/Dublin 2010-08-14 +3310078 Kilgobbin House Kilgobbin House 52.58806 -8.76972 S HSEC IE M 16 0 19 Europe/Dublin 2010-08-14 +3310079 Newborough House Newborough House 52.58556 -8.74889 S HSEC IE M 16 0 40 Europe/Dublin 2010-08-14 +3310080 Clorane House Clorane House 52.59389 -8.80444 S HSEC IE M 16 0 12 Europe/Dublin 2010-08-14 +3310081 Kilcurly House Kilcurly House 52.58944 -8.80333 S HSEC IE M 16 0 13 Europe/Dublin 2010-08-14 +3310082 Moncarla Cottage Moncarla Cottage 52.57556 -8.75056 S HSE IE M 16 0 35 Europe/Dublin 2010-08-14 +3310083 Kilbreedy Kilbreedy 52.59222 -8.85667 L LCTY IE M 16 0 23 Europe/Dublin 2010-08-14 +3310084 Kilbreedy Loughs Kilbreedy Loughs 52.60694 -8.84111 H LKS IE M 16 0 17 Europe/Dublin 2010-08-14 +3310085 Ballywilliam Ballywilliam 52.51333 -8.92361 L LCTY IE M 16 0 51 Europe/Dublin 2010-08-14 +3310086 Abbey House Abbey House 52.51917 -8.92361 S HSEC IE M 16 0 48 Europe/Dublin 2010-08-14 +3310087 Doohyle Lough Doohyle Lough 52.53972 -8.92611 H LK IE M 16 0 39 Europe/Dublin 2010-08-14 +3310088 Stoneyville House Stoneyville House 52.54083 -8.95306 S HSEC IE M 16 0 27 Europe/Dublin 2010-08-14 +3310089 Scart House Scart House 52.55056 -8.95194 S HSEC IE M 16 0 25 Europe/Dublin 2010-08-14 +3310090 Cloghanarold House Cloghanarold House 52.52333 -8.96694 S HSEC IE M 16 0 26 Europe/Dublin 2010-08-14 +3310091 Tallyho Lodge Tallyho Lodge 52.52167 -8.97194 S HSE IE M 16 0 26 Europe/Dublin 2010-08-14 +3310092 Cisnacullin Castle Cisnacullin Castle 52.5275 -9.0025 S CSTL IE M 16 0 39 Europe/Dublin 2010-08-14 +3310093 Riddlestown Park Riddlestown Park 52.53833 -8.98889 S EST IE M 16 0 25 Europe/Dublin 2010-08-14 +3310094 Ardiaman House Ardiaman House 52.54778 -8.98333 S HSEC IE M 16 0 20 Europe/Dublin 2010-08-14 +3310095 Alta Villa Alta Villa 52.56361 -8.97472 S EST IE M 16 0 18 Europe/Dublin 2010-08-14 +3310096 Curraheen Curraheen 52.57639 -8.95222 L LCTY IE M 16 0 18 Europe/Dublin 2010-08-14 +3310097 Kilbehy House Kilbehy House 52.58583 -8.93278 S HSEC IE M 16 0 22 Europe/Dublin 2010-08-14 +3310098 Castle Hewson Castle Hewson 52.59417 -8.92889 S CSTL IE M 16 0 19 Europe/Dublin 2010-08-14 +3310099 Milltown Milltown 52.57194 -8.98361 L LCTY IE M 16 0 18 Europe/Dublin 2010-08-14 +3310100 Ballyclogh House Ballyclogh House 52.58278 -9.01806 S HSEC IE M 16 0 16 Europe/Dublin 2010-08-14 +3310101 Betty Ville House Betty Ville House 52.57611 -8.99556 S HSEC IE M 16 0 16 Europe/Dublin 2010-08-14 +3310102 Ballycullen House Ballycullen House 52.58528 -9.00806 S HSEC IE M 16 0 12 Europe/Dublin 2010-08-14 +3310103 Ballyallinan Ballyallinan 52.59306 -9.01889 L LCTY IE M 16 0 7 Europe/Dublin 2010-08-14 +3310104 Ahacronane River Ahacronane River 52.59667 -9.06194 H STM IE M 16 0 6 Europe/Dublin 2010-08-14 +3310105 Bartholomews Bridge Bartholomews Bridge 52.57583 -9.07944 P PPL IE M 16 0 39 Europe/Dublin 2010-08-14 +3310106 Kilcosgrave House Kilcosgrave House 52.55778 -9.06833 S HSEC IE M 16 0 57 Europe/Dublin 2010-08-14 +3310107 Tiermore House Tiermore House 52.55528 -9.07917 S HSEC IE M 16 0 63 Europe/Dublin 2010-08-14 +3310108 Ballysteen House Ballysteen House 52.54583 -9.05861 S HSEC IE M 16 0 64 Europe/Dublin 2010-08-14 +3310109 Kilbradran Kilbradran 52.54806 -9.03917 L LCTY IE M 16 0 50 Europe/Dublin 2010-08-14 +3310110 Saint Joseph’s Saint Joseph's 52.54222 -9.07667 P PPL IE M 16 0 75 Europe/Dublin 2010-08-14 +3310111 Mary House Mary House 52.54833 -9.08222 S HSEC IE M 16 0 75 Europe/Dublin 2010-08-14 +3310112 Clare House Clare House 52.53722 -9.08306 S HSEC IE M 16 0 88 Europe/Dublin 2010-08-14 +3310113 Carrons House Carrons House 52.53417 -9.07806 S HSEC IE M 16 0 88 Europe/Dublin 2010-08-14 +3310114 Mount David Mount David 52.5775 -9.11861 S EST IE M 16 0 120 Europe/Dublin 2010-08-14 +3310115 Knocknorha Knocknorha 52.565 -9.13139 L LCTY IE M 16 0 118 Europe/Dublin 2010-08-14 +3310116 Dooncaha Dooncaha 52.53944 -9.12667 L LCTY IE M 16 0 148 Europe/Dublin 2010-08-14 +3310117 Cahernagh Cahernagh 52.53111 -9.14167 L LCTY IE M 16 0 152 Europe/Dublin 2010-08-14 +3310118 Kerrikyle Kerrikyle 52.50778 -9.11194 L LCTY IE M 16 0 164 Europe/Dublin 2010-08-14 +3310119 Knocknabooly Knocknabooly 52.58139 -9.16222 P PPL IE M 16 0 93 Europe/Dublin 2010-08-14 +3310120 Ballynash Ballynash 52.59222 -9.15583 L LCTY IE M 16 0 70 Europe/Dublin 2010-08-14 +3310121 Ballynacragga House Ballynacragga House 52.60139 -9.11028 S HSEC IE M 16 0 87 Europe/Dublin 2010-08-14 +3310122 Lickadoon Castle Lickadoon Castle 52.60611 -8.59944 S CSTL IE M 16 0 68 Europe/Dublin 2010-08-14 +3310123 Ashfort House Ashfort House 52.60528 -8.66694 S HSEC IE M 16 0 22 Europe/Dublin 2010-08-14 +3310124 Roche Castle Roche Castle 52.62083 -8.66306 S CSTL IE M 16 0 18 Europe/Dublin 2010-08-14 +3310125 Ballyclogh House Ballyclogh House 52.61833 -8.62361 S HSEC IE M 16 0 48 Europe/Dublin 2010-08-14 +3310126 Routagh Bridge Routagh Bridge 52.62083 -8.61556 P PPL IE M 16 0 54 Europe/Dublin 2010-08-14 +3310127 Ballysheedy Ballysheedy 52.62861 -8.635 P PPL IE M 16 0 31 Europe/Dublin 2010-08-14 +3310128 Bohereen Bohereen 52.63694 -8.60389 L LCTY IE M 16 0 54 Europe/Dublin 2010-08-14 +3310129 Cahernarry Cahernarry 52.62417 -8.57472 L LCTY IE M 16 0 81 Europe/Dublin 2010-08-14 +3310130 Coolyhenan House Coolyhenan House 52.63389 -8.55417 S HSEC IE M 16 0 104 Europe/Dublin 2010-08-14 +3310131 Rossbrien House Rossbrien House 52.63806 -8.62778 S HSEC IE M 16 0 34 Europe/Dublin 2010-08-14 +3310132 Ballynaclogh River Ballynaclogh River 52.65389 -8.67306 H STM IE M 16 0 1 Europe/Dublin 2010-08-14 +3310133 Clinoe Cottage Clinoe Cottage 52.65111 -8.59194 S HSE IE M 16 0 44 Europe/Dublin 2010-08-14 +3310134 Groody River Groody River 52.66861 -8.58833 H STM IE M 16 0 25 Europe/Dublin 2010-08-14 +3310135 Ballysimon Ballysimon 52.64694 -8.56778 L LCTY IE M 16 0 75 Europe/Dublin 2010-08-14 +3310136 Dew Castle Dew Castle 52.66528 -8.57583 S CSTL IE M 16 0 44 Europe/Dublin 2010-08-14 +3310137 Plassey Technological Park Plassey Technological Park 52.67361 -8.56444 L INDS IE M 16 0 41 Europe/Dublin 2010-08-14 +3310138 Coolraine House Coolraine House 52.66667 -8.65639 S HSEC IE M 16 0 1 Europe/Dublin 2010-08-14 +3310139 Clonmacken House Clonmacken House 52.65861 -8.66667 S HSEC IE M 16 0 1 Europe/Dublin 2010-08-14 +3310140 Bunlicky Bunlicky 52.64583 -8.685 L LCTY IE M 16 0 2 Europe/Dublin 2010-08-14 +3310141 Castle Troy Castle Troy 52.67639 -8.55389 S CSTL IE M 16 0 34 Europe/Dublin 2010-08-14 +3310142 Gilloge Bridge Gilloge Bridge 52.68583 -8.57444 P PPL IE M 03 0 27 Europe/Dublin 2010-08-14 +3310143 Blackwater River Blackwater River 52.6775 -8.58222 H STM IE M 03 0 24 Europe/Dublin 2010-08-14 +3310144 Athlunkard Bridge Athlunkard Bridge 52.68111 -8.60972 P PPL IE M 03 0 12 Europe/Dublin 2010-08-14 +3310145 Castle Park Castle Park 52.68611 -8.64944 S EST IE M 16 0 5 Europe/Dublin 2010-08-14 +3310146 Meelick Bridge Meelick Bridge 52.68639 -8.66861 P PPL IE M 16 0 8 Europe/Dublin 2010-08-14 +3310147 Red Gate Red Gate 52.67972 -8.67111 S EST IE M 16 0 1 Europe/Dublin 2010-08-14 +3310148 Crompaun River Crompaun River 52.67389 -8.70611 H STM IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310149 Conigar House Conigar House 52.64528 -8.70333 S HSEC IE M 16 0 2 Europe/Dublin 2010-08-14 +3310150 Vermont Vermont 52.63667 -8.74083 P PPL IE M 16 0 5 Europe/Dublin 2010-08-14 +3310151 Landsdowne Bridge Landsdowne Bridge 52.67806 -8.68972 P PPL IE M 16 0 2 Europe/Dublin 2010-08-14 +3310152 Muckinish Point Muckinish Point 52.67083 -8.72361 T PT IE M 16 0 1 Europe/Dublin 2010-08-14 +3310153 Quinsborough House Quinsborough House 52.69306 -8.62917 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3310154 Cratloe Woods Cratloe Woods 52.68306 -8.73361 V FRST IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310155 Burtonhill House Burtonhill House 52.68972 -8.70472 S HSEC IE M 03 0 16 Europe/Dublin 2010-08-14 +3310156 Woodcockhill House Woodcockhill House 52.69694 -8.71583 S HSEC IE M 03 0 44 Europe/Dublin 2010-08-14 +3310157 Parteen Parteen 52.69611 -8.61 L LCTY IE M 03 0 2 Europe/Dublin 2010-08-14 +3310158 Barnakyle Bridge Barnakyle Bridge 52.60833 -8.69694 P PPL IE M 16 0 28 Europe/Dublin 2010-08-14 +3310159 Barnakyle River Barnakyle River 52.62333 -8.76639 H STM IE M 16 0 11 Europe/Dublin 2010-08-14 +3310160 Faha House Faha House 52.60556 -8.72583 S HSEC IE M 16 0 36 Europe/Dublin 2010-08-14 +3310161 Coramore Coramore 52.63944 -8.76056 L LCTY IE M 16 0 3 Europe/Dublin 2010-08-14 +3310162 Massy’s Bridge Massy's Bridge 52.6275 -8.75111 P PPL IE M 16 0 4 Europe/Dublin 2010-08-14 +3310163 Churchfield Churchfield 52.66806 -8.76972 L LCTY IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310164 Kilcornan Kilcornan 52.60389 -8.75306 L LCTY IE M 16 0 23 Europe/Dublin 2010-08-14 +3310165 Old Kildimo Old Kildimo 52.6125 -8.80611 P PPL IE M 16 0 10 Europe/Dublin 2010-08-14 +3310166 New Kildimo New Kildimo 52.62333 -8.81222 P PPL IE M 16 0 10 Europe/Dublin 2010-08-14 +3310167 Ballyculhane Ballyculhane 52.63806 -8.8 L LCTY IE M 16 0 5 Europe/Dublin 2010-08-14 +3310168 Bleach Lough Bleach Lough 52.63972 -8.82111 H LK IE M 16 0 6 Europe/Dublin 2010-08-14 +3310169 Dromore Lough Dromore Lough 52.63583 -8.83222 H LK IE M 16 0 6 Europe/Dublin 2010-08-14 +3310170 Ballyashea Ballyashea 52.61111 -8.84389 L LCTY IE M 16 0 16 Europe/Dublin 2010-08-14 +3310171 Bolane House Bolane House 52.62694 -8.82972 S HSEC IE M 16 0 9 Europe/Dublin 2010-08-14 +3310172 Castle Grey Castle Grey 52.61667 -8.85778 S CSTL IE M 16 0 13 Europe/Dublin 2010-08-14 +3310173 Ballynolan House Ballynolan House 52.63222 -8.84528 S HSEC IE M 16 0 10 Europe/Dublin 2010-08-14 +3310174 Dromore Castle Dromore Castle 52.63722 -8.83694 S CSTL IE M 16 0 6 Europe/Dublin 2010-08-14 +3310175 Cartown House Cartown House 52.655 -8.83722 S HSEC IE M 16 0 2 Europe/Dublin 2010-08-14 +3310176 Melton House Melton House 52.66167 -8.81722 S HSEC IE M 16 0 1 Europe/Dublin 2010-08-14 +3310177 Ballynacarriga House Ballynacarriga House 52.65139 -8.80667 S HSEC IE M 16 0 1 Europe/Dublin 2010-08-14 +3310178 Ballyshonickbane Ballyshonickbane 52.62583 -8.88167 L LCTY IE M 16 0 10 Europe/Dublin 2010-08-14 +3310179 Hollypark Hollypark 52.60944 -8.89167 L LCTY IE M 16 0 16 Europe/Dublin 2010-08-14 +3310180 Ardcanny Rectory Ardcanny Rectory 52.65694 -8.82306 S BLDG IE M 16 0 2 Europe/Dublin 2010-08-14 +3310181 Milltown House Milltown House 52.64278 -8.91694 S HSEC IE M 16 0 2 Europe/Dublin 2010-08-14 +3310182 Milltown Lake Milltown Lake 52.63389 -8.92278 H LK IE M 16 0 4 Europe/Dublin 2010-08-14 +3310183 Mornane Mornane 52.61917 -8.92528 L LCTY IE M 16 0 9 Europe/Dublin 2010-08-14 +3310184 Ballyvogue Ballyvogue 52.60861 -8.91194 L LCTY IE M 16 0 14 Europe/Dublin 2010-08-14 +3310185 Ballyengland Ballyengland 52.60528 -8.96083 P PPL IE M 16 0 9 Europe/Dublin 2010-08-14 +3310186 Hogane’s Bridge Hogane's Bridge 52.62194 -8.9675 P PPL IE M 16 0 4 Europe/Dublin 2010-08-14 +3310187 Tomdrely Tomdrely 52.6075 -9.01694 L LCTY IE M 16 0 3 Europe/Dublin 2010-08-14 +3310188 Mantlehill Mantlehill 52.62722 -8.98889 P PPL IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310189 Ballysteen House Ballysteen House 52.63611 -8.97472 S HSEC IE M 16 0 2 Europe/Dublin 2010-08-14 +3310190 Greenish Island Greenish Island 52.63111 -9.00778 T ISL IE M 16 0 1 Europe/Dublin 2010-08-14 +3310191 White House White House 52.61056 -9.06556 S HSEC IE M 16 0 1 Europe/Dublin 2010-08-14 +3310192 Fawnamore Fawnamore 52.61389 -9.04944 L LCTY IE M 16 0 1 Europe/Dublin 2010-08-14 +3310193 Courtbrown Point Courtbrown Point 52.63861 -8.99889 T PT IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310194 Poularone Creek Poularone Creek 52.62611 -9.04611 H CRKT IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310195 Herring Rock Herring Rock 52.64194 -9.0225 T RK IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310196 Beeves Rock Beeves Rock 52.64972 -9.01194 T RK IE 00 0 -9999 Europe/Dublin 1998-05-05 +3310197 Wide Rock Wide Rock 52.65556 -9.01639 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310198 Rinekirk Point Rinekirk Point 52.66861 -8.81611 T PT IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310199 Maiden Rock Maiden Rock 52.67417 -8.81833 T RK IE M 16 0 1 Europe/Dublin 2010-08-14 +3310200 Mellon Point Mellon Point 52.67194 -8.83806 T PT IE M 16 0 1 Europe/Dublin 2010-08-14 +3310201 Battle Island Battle Island 52.67111 -8.79833 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310202 Bush Island Bush Island 52.67639 -8.79528 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310203 Green Island Green Island 52.68056 -8.80444 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310204 Quay Island Quay Island 52.68361 -8.81194 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310205 Illaunbeg Point Illaunbeg Point 52.68639 -8.82667 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310206 Sod Island Sod Island 52.68056 -8.8475 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310207 Bird Rock Bird Rock 52.68167 -8.8375 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310208 Saint’s Island Saint's Island 52.68806 -8.85083 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310209 Ballymorris House Ballymorris House 52.68528 -8.78139 S HSEC IE M 03 0 10 Europe/Dublin 2010-08-14 +3310210 Bridge Rock Bridge Rock 52.68056 -8.88417 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310211 Tullyglass Point Tullyglass Point 52.69417 -8.88972 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310212 Inishcullin Hill Inishcullin Hill 52.69667 -8.85694 T HLL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310213 Waller’s Island Waller's Island 52.66278 -8.91194 T ISL IE M 16 0 1 Europe/Dublin 2010-08-14 +3310214 Ringmoylan Quay Ringmoylan Quay 52.66917 -8.87944 S QUAY IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310215 Castle View Castle View 52.65667 -8.93972 S EST IE M 16 0 1 Europe/Dublin 2010-08-14 +3310216 Carrigkeal Carrigkeal 52.67556 -8.91722 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310217 Brackinish Rock Brackinish Rock 52.67972 -8.95194 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310218 Blackthorn Islands Blackthorn Islands 52.67639 -9.00389 T ISLS IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310219 Sand Island Sand Island 52.66556 -9.00528 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310220 Cork Rock Cork Rock 52.65694 -9.04778 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310221 Inishmarry Inishmarry 52.65111 -9.10611 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310222 Inishtubbrid Inishtubbrid 52.66778 -9.06639 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310223 Aughinish Point Aughinish Point 52.63667 -9.06222 T PT IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310224 Sturamus Island Sturamus Island 52.62944 -9.10028 T ISL IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310225 Battery Point Battery Point 52.62278 -9.12278 T PT IE M 16 0 -9999 Europe/Dublin 2010-08-14 +3310226 Poultallin Point Poultallin Point 52.61472 -9.12278 T PT IE M 16 0 60 Europe/Dublin 2010-08-14 +3310227 Shannakea Shannakea 52.62806 -9.16472 L LCTY IE M 03 0 2 Europe/Dublin 2010-08-14 +3310228 Cappanavarnoge Cappanavarnoge 52.65722 -9.15444 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +3310229 Glenconaun Glenconaun 52.69333 -9.14917 L LCTY IE M 03 0 82 Europe/Dublin 2010-08-14 +3310230 Ballyleaan Ballyleaan 52.68667 -9.11778 L LCTY IE M 03 0 59 Europe/Dublin 2010-08-14 +3310231 Lisnafana Lisnafana 52.70583 -9.16889 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3310232 Bankboy Bankboy 52.69222 -9.03389 H SHOL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310233 Shore Island Shore Island 52.69278 -9.05583 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310234 Illaunbeg Illaunbeg 52.68861 -9.06528 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310235 Inishdadroum Inishdadroum 52.70333 -9.02389 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310236 Rat Island Rat Island 52.71583 -8.98694 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310237 Priest’s Rock Priest's Rock 52.70389 -8.98583 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310238 Trummer Trummer 52.70528 -9.0325 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310239 Feenish Feenish 52.70583 -8.97306 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310240 Cloonnakilla House Cloonnakilla House 52.7125 -9.08639 S HSEC IE M 03 0 106 Europe/Dublin 2010-08-14 +3310241 Cornfield House Cornfield House 52.72389 -9.05583 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3310242 Burren Burren 52.72139 -9.11417 L LCTY IE M 03 0 81 Europe/Dublin 2010-08-14 +3310243 Ballycally Ballycally 52.70639 -8.93333 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3310244 Carrigerry House Carrigerry House 52.71667 -8.92972 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3310245 Clenagh Clenagh 52.72667 -8.95056 L LCTY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310246 Knockaun House Knockaun House 52.7175 -8.88694 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3310247 Shannon Shannon An tSionna,Shannon,Shannon Town,Shennon,Sionainn,Шеннон 52.70389 -8.86417 P PPL IE M 03 8781 1 Europe/Dublin 2010-08-14 +3310248 D’Esterre’s Bridge D'Esterre's Bridge 52.71417 -8.78083 P PPL IE M 03 0 29 Europe/Dublin 2010-08-14 +3310249 Culleen Culleen 52.73278 -8.87694 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3310250 Drumline Drumline 52.72861 -8.85306 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3310251 Mogullaun House Mogullaun House 52.73889 -8.87444 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3310252 Feenagh Feenagh 52.73917 -8.82972 L LCTY IE M 03 0 5 Europe/Dublin 2010-08-14 +3310253 Springfield House Springfield House 52.725 -8.80833 S HSEC IE M 03 0 6 Europe/Dublin 2010-08-14 +3310254 Brickhill Bridge Brickhill Bridge 52.70667 -8.77278 P PPL IE M 03 0 51 Europe/Dublin 2010-08-14 +3310255 Rossmanagher House Rossmanagher House 52.72111 -8.78556 S HSEC IE M 03 0 11 Europe/Dublin 2010-08-14 +3310256 Oil Mill Bridge Oil Mill Bridge 52.72861 -8.7675 P PPL IE M 03 0 29 Europe/Dublin 2010-08-14 +3310257 Cappagh Lodge Cappagh Lodge 52.74306 -8.78361 S HSE IE M 03 0 24 Europe/Dublin 2010-08-14 +3310258 Ballybroughan Ballybroughan 52.72611 -8.75389 L LCTY IE M 03 0 51 Europe/Dublin 2010-08-14 +3310259 Headrace Canal Headrace Canal 52.69167 -8.6225 H CNL IE M 03 0 1 Europe/Dublin 2010-08-14 +3310260 Mount Catherine Mount Catherine 52.70778 -8.57528 P PPL IE M 03 0 23 Europe/Dublin 2010-08-14 +3310261 Springhill House Springhill House 52.71139 -8.59861 S HSEC IE M 03 0 15 Europe/Dublin 2010-08-14 +3310262 Prospecthill House Prospecthill House 52.72722 -8.56 S HSEC IE M 03 0 32 Europe/Dublin 2010-08-14 +3310263 Trough Castle Trough Castle 52.73139 -8.60444 S CSTL IE M 03 0 57 Europe/Dublin 2010-08-14 +3310264 Trough Hill Trough Hill 52.73194 -8.62833 S EST IE M 03 0 99 Europe/Dublin 2010-08-14 +3310265 Ballycar Ballycar 52.72556 -8.65667 T HLL IE M 03 0 162 Europe/Dublin 2010-08-14 +3310266 Cappateemore Cappateemore 52.71361 -8.66889 L LCTY IE M 03 0 88 Europe/Dublin 2010-08-14 +3310267 Ballycannan House Ballycannan House 52.70306 -8.64917 S HSEC IE M 03 0 42 Europe/Dublin 2010-08-14 +3310268 Abarmagh Castle Abarmagh Castle 52.74139 -8.57194 S CSTL IE M 03 0 74 Europe/Dublin 2010-08-14 +3310269 Cloghera Cloghera 52.74667 -8.61444 L LCTY IE M 03 0 70 Europe/Dublin 2010-08-14 +3310270 Kilmore Kilmore 52.75722 -8.60167 L LCTY IE M 03 0 77 Europe/Dublin 2010-08-14 +3310271 Callaghan’s Bridge Callaghan's Bridge 52.74917 -8.64278 P PPL IE M 03 0 123 Europe/Dublin 2010-08-14 +3310272 Trough River Trough River 52.73861 -8.62833 H STM IE M 03 0 81 Europe/Dublin 2010-08-14 +3310273 Oatfield Oatfield 52.7575 -8.67583 L LCTY IE M 03 0 144 Europe/Dublin 2010-08-14 +3310274 O’Neills River O'Neills River 52.73889 -8.62028 H STM IE M 03 0 76 Europe/Dublin 2010-08-14 +3310275 Mountrice River Mountrice River 52.73944 -8.61611 H STM IE M 03 0 76 Europe/Dublin 2010-08-14 +3310276 Drumsillagh Drumsillagh Drumsillagh,Sallybank 52.7675 -8.62444 P PPLL IE IE M 03 0 151 Europe/Dublin 2010-08-14 +3310277 Glenomera Wood Glenomera Wood 52.76 -8.57194 V FRST IE M 03 0 72 Europe/Dublin 2010-08-14 +3310278 Leitrim Leitrim 52.76472 -8.57028 L LCTY IE M 03 0 72 Europe/Dublin 2010-08-14 +3310279 Knockbrack Upper Knockbrack Upper 52.73639 -8.57611 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +3310280 Glenomera Glenomera 52.775 -8.57333 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3310281 Knockaphunta Knockaphunta 52.77167 -8.65583 T HLL IE M 03 0 169 Europe/Dublin 2010-08-14 +3310282 Glenwood House Glenwood House 52.77278 -8.735 S HSEC IE M 03 0 71 Europe/Dublin 2010-08-14 +3310283 Ardcregan House Ardcregan House 52.76194 -8.71083 S HSEC IE M 03 0 163 Europe/Dublin 2010-08-14 +3310284 Lough Coolmeen Lough Coolmeen 52.75 -8.695 H LK IE M 03 0 156 Europe/Dublin 2010-08-14 +3310285 Kilnacreagh Kilnacreagh 52.73861 -8.70944 L LCTY IE M 03 0 162 Europe/Dublin 2010-08-14 +3310286 Mount Levers Mount Levers 52.74694 -8.76111 L LCTY IE M 03 0 72 Europe/Dublin 2010-08-14 +3310287 Castlelake House Castlelake House 52.76806 -8.74694 S HSEC IE M 03 0 79 Europe/Dublin 2010-08-14 +3310288 Gouma River Gouma River 52.74917 -8.69667 H STM IE M 03 0 156 Europe/Dublin 2010-08-14 +3310289 Castle Lough Castle Lough 52.76917 -8.76333 H LK IE M 03 0 62 Europe/Dublin 2010-08-14 +3310290 Glennagross Glennagross 52.72583 -8.71528 L LCTY IE M 03 0 204 Europe/Dublin 2010-08-14 +3310291 Woodcock Hill Woodcock Hill 52.71972 -8.70778 T MT IE M 03 0 274 Europe/Dublin 2010-08-14 +3310292 Gallows Hill Gallows Hill 52.71528 -8.74222 T HLL IE M 03 0 113 Europe/Dublin 2010-08-14 +3310293 Annagore Bridge Annagore Bridge 52.75694 -8.77611 P PPL IE M 03 0 28 Europe/Dublin 2010-08-14 +3310294 Rathmore House Rathmore House 52.7525 -8.81528 S HSEC IE M 03 0 20 Europe/Dublin 2010-08-14 +3310295 Ballycar Lough Ballycar Lough 52.76722 -8.87028 H LK IE M 03 0 8 Europe/Dublin 2010-08-14 +3310296 Lough Gash Lough Gash 52.7575 -8.89972 H LK IE M 03 0 6 Europe/Dublin 2010-08-14 +3310335 Shepperton House Shepperton House 52.75806 -8.92861 S HSEC IE M 03 0 4 Europe/Dublin 2010-08-14 +3310336 Clareen Bridge Clareen Bridge 52.77444 -9.01667 P PPL IE M 03 0 26 Europe/Dublin 2010-08-14 +3310337 Islandovanna Islandovanna 52.77111 -9.00583 L LCTY IE M 03 0 19 Europe/Dublin 2010-08-14 +3310338 Breckinish Breckinish 52.74583 -8.96194 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310339 Ing Ing 52.75778 -8.97056 S EST IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310340 Drumquin Point Drumquin Point 52.76028 -9.01167 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310341 Horse Island Horse Island 52.74583 -9.03028 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310342 Lisheen Lisheen 52.755 -9.03972 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3310343 Carhameere Carhameere 52.75194 -9.06417 P PPL IE M 03 0 59 Europe/Dublin 2010-08-14 +3310344 Inishdea Inishdea 52.72667 -8.95056 L LCTY IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310345 Ballycarick Bridge Ballycarick Bridge 52.73639 -9.06083 P PPL IE M 03 0 30 Europe/Dublin 2010-08-14 +3310346 Cloonmore Cloonmore 52.76 -9.08611 P PPL IE M 03 0 78 Europe/Dublin 2010-08-14 +3310347 Cahenea Cahenea 52.77222 -9.10889 L LCTY IE M 03 0 106 Europe/Dublin 2010-08-14 +3310348 Beaghfa Beaghfa 52.77306 -9.07722 P PPL IE M 03 0 82 Europe/Dublin 2010-08-14 +3310349 Lavally Lavally 52.73167 -9.07694 P PPL IE M 03 0 56 Europe/Dublin 2010-08-14 +3310350 Breaghva Breaghva 52.72778 -9.16111 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3310351 Formoyle Formoyle 52.78944 -8.5875 T HLL IE M 03 0 149 Europe/Dublin 2010-08-14 +3310352 Scott’s Bridge Scott's Bridge 52.7975 -8.57861 P PPL IE M 03 0 90 Europe/Dublin 2010-08-14 +3310353 Cloongaheen East Cloongaheen East 52.80861 -8.58806 P PPL IE M 03 0 102 Europe/Dublin 2010-08-14 +3310354 Grean Mountain Grean Mountain 52.79361 -8.61444 P PPL IE M 03 0 86 Europe/Dublin 2010-08-14 +3310355 Violet Hill Violet Hill 52.81111 -8.63361 T HLL IE M 03 0 85 Europe/Dublin 2010-08-14 +3310356 The Lodge The Lodge 52.82639 -8.63611 S HSE IE M 03 0 75 Europe/Dublin 2010-08-14 +3310357 Hurdleston House Hurdleston House 52.80083 -8.63611 S HSEC IE M 03 0 85 Europe/Dublin 2010-08-14 +3310358 Knocksise Knocksise 52.79667 -8.65944 T HLL IE M 03 0 139 Europe/Dublin 2010-08-14 +3310359 Broadford River Broadford River 52.81111 -8.66389 H STM IE M 03 0 82 Europe/Dublin 2010-08-14 +3310360 Doon House Doon House 52.81417 -8.64778 S HSEC IE M 03 0 78 Europe/Dublin 2010-08-14 +3310361 Killuran River Killuran River 52.82333 -8.65889 H STM IE M 03 0 66 Europe/Dublin 2010-08-14 +3310362 Elm Hill Elm Hill 52.83444 -8.66306 T HLL IE M 03 0 57 Europe/Dublin 2010-08-14 +3310363 Ahaclare River Ahaclare River 52.8125 -8.6825 H STM IE M 03 0 62 Europe/Dublin 2010-08-14 +3310364 Woodfield House Woodfield House 52.80917 -8.68472 S HSEC IE M 03 0 59 Europe/Dublin 2010-08-14 +3310365 Woodfield Bridge Woodfield Bridge 52.80667 -8.6975 P PPL IE M 03 0 63 Europe/Dublin 2010-08-14 +3310366 Doorns Doorns 52.82306 -8.68333 L LCTY IE M 03 0 57 Europe/Dublin 2010-08-14 +3310367 Lough Avaher Lough Avaher 52.81694 -8.70639 H LK IE M 03 0 69 Europe/Dublin 2010-08-14 +3310368 Clonlea Lough Clonlea Lough 52.81111 -8.72778 H LK IE M 03 0 73 Europe/Dublin 2010-08-14 +3310369 Clonbrick Lough Clonbrick Lough 52.79611 -8.74417 H LK IE M 03 0 60 Europe/Dublin 2010-08-14 +3310370 Cappalaheen Cappalaheen 52.81528 -8.72944 L LCTY IE M 03 0 73 Europe/Dublin 2010-08-14 +3310371 Enagh Enagh 52.78806 -8.74889 L LCTY IE M 03 0 47 Europe/Dublin 2010-08-14 +3310372 Derrymore House Derrymore House 52.82611 -8.72861 S HSEC IE M 03 0 109 Europe/Dublin 2010-08-14 +3310373 Knockacunog Lough Knockacunog Lough 52.78444 -8.78861 H LK IE M 03 0 88 Europe/Dublin 2010-08-14 +3310374 Teereen Lough Teereen Lough 52.79167 -8.79944 H LK IE M 03 0 105 Europe/Dublin 2010-08-14 +3310375 Shandangan Lough Shandangan Lough 52.79611 -8.77722 H LK IE M 03 0 106 Europe/Dublin 2010-08-14 +3310376 Kilkishen House Kilkishen House 52.80056 -8.76861 S HSEC IE M 03 0 116 Europe/Dublin 2010-08-14 +3310377 Rathluby Lough Rathluby Lough 52.80417 -8.785 H LK IE M 03 0 134 Europe/Dublin 2010-08-14 +3310378 Gortnacorragh Lough Gortnacorragh Lough 52.80944 -8.76417 H LK IE M 03 0 121 Europe/Dublin 2010-08-14 +3310379 Knopoge Castle Knopoge Castle 52.79222 -8.83444 S CSTL IE M 03 0 32 Europe/Dublin 2010-08-14 +3310380 Fenloe House Fenloe House 52.78472 -8.83222 S HSEC IE M 03 0 36 Europe/Dublin 2010-08-14 +3310381 Ballyroughan Ballyroughan 52.79889 -8.82306 L LCTY IE M 03 0 59 Europe/Dublin 2010-08-14 +3310382 Caherkine Lough Caherkine Lough 52.78694 -8.85417 H LK IE M 03 0 15 Europe/Dublin 2010-08-14 +3310383 Ballykilly House Ballykilly House 52.80639 -8.87083 S HSEC IE M 03 0 14 Europe/Dublin 2010-08-14 +3310384 Craghwee Craghwee 52.82444 -8.815 L LCTY IE M 03 0 87 Europe/Dublin 2010-08-14 +3310385 Cullane Cullane 52.82139 -8.80083 L LCTY IE M 03 0 110 Europe/Dublin 2010-08-14 +3310386 Ballyhickey Ballyhickey 52.83556 -8.87639 L LCTY IE M 03 0 73 Europe/Dublin 2010-08-14 +3310387 Keevagh Keevagh 52.83028 -8.88194 L LCTY IE M 03 0 49 Europe/Dublin 2010-08-14 +3310388 Ballyhannan House Ballyhannan House 52.80944 -8.88167 S HSEC IE M 03 0 13 Europe/Dublin 2010-08-14 +3310389 Rineville Rineville 52.81194 -8.86111 L LCTY IE M 03 0 18 Europe/Dublin 2010-08-14 +3310390 Ballygirreen House Ballygirreen House 52.77917 -8.92389 S HSEC IE M 03 0 4 Europe/Dublin 2010-08-14 +3310391 Islandmagrath House Islandmagrath House 52.78528 -8.96611 S HSEC IE M 03 0 1 Europe/Dublin 2010-08-14 +3310392 Latoon Bridge Latoon Bridge 52.795 -8.92167 P PPL IE M 03 0 3 Europe/Dublin 2010-08-14 +3310393 Carnelly House Carnelly House 52.80861 -8.94389 S HSEC IE M 03 0 15 Europe/Dublin 2010-08-14 +3310394 Manus House Manus House 52.80528 -8.93389 S HSEC IE M 03 0 8 Europe/Dublin 2010-08-14 +3310395 Castlefergus House Castlefergus House 52.80083 -8.90806 S HSEC IE M 03 0 15 Europe/Dublin 2010-08-14 +3310396 Claremount House Claremount House 52.80361 -8.97778 S HSEC IE M 03 0 30 Europe/Dublin 2010-08-14 +3310397 Killene Lough Killene Lough 52.80222 -9.00194 H LK IE M 03 0 111 Europe/Dublin 2010-08-14 +3310398 Newhall Cross Roads Newhall Cross Roads 52.79861 -9.01389 P PPL IE M 03 0 121 Europe/Dublin 2010-08-14 +3310399 Teermaclane Teermaclane 52.78861 -9.03472 L LCTY IE M 03 0 88 Europe/Dublin 2010-08-14 +3310400 Edenvale House Edenvale House 52.81833 -9.00667 S HSEC IE M 03 0 88 Europe/Dublin 2010-08-14 +3310402 Darragh Darragh 52.79306 -9.05556 L LCTY IE M 03 0 79 Europe/Dublin 2010-08-14 +3310403 Drumadrohid Drumadrohid 52.80167 -9.0575 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +3310404 Bansha Bansha 52.78139 -9.075 L LCTY IE M 03 0 81 Europe/Dublin 2010-08-14 +3310405 Ballymacooda Lough Ballymacooda Lough 52.79861 -9.08333 H LK IE M 03 0 74 Europe/Dublin 2010-08-14 +3310406 Snugville House Snugville House 52.81278 -9.09083 S HSEC IE M 03 0 71 Europe/Dublin 2010-08-14 +3310407 Gortagannis Lough Gortagannis Lough 52.82861 -9.09472 H LK IE M 03 0 76 Europe/Dublin 2010-08-14 +3310408 Knockatunna Knockatunna 52.785 -9.14583 L LCTY IE M 03 0 161 Europe/Dublin 2010-08-14 +3310409 Kyleatunna Kyleatunna 52.78639 -9.10917 L LCTY IE M 03 0 106 Europe/Dublin 2010-08-14 +3310410 Balleen Bridge Balleen Bridge 52.81194 -9.14306 P PPL IE M 03 0 77 Europe/Dublin 2010-08-14 +3310411 Rathcrony Rathcrony 52.80139 -9.13306 L LCTY IE M 03 0 107 Europe/Dublin 2010-08-14 +3310412 Balleen Lough Balleen Lough 52.82278 -9.13333 H LK IE M 03 0 76 Europe/Dublin 2010-08-14 +3310414 Kilmaley River Kilmaley River 52.82139 -9.13278 H STM IE M 03 0 76 Europe/Dublin 2010-08-14 +3310416 Ballymacdonnell River Ballymacdonnell River 52.83611 -8.65444 H STM IE M 03 0 56 Europe/Dublin 2010-08-14 +3310418 Knockbrack Knockbrack 52.8625 -8.59972 T HLL IE M 03 0 101 Europe/Dublin 2010-08-14 +3310419 Knocklaur Knocklaur 52.87 -8.61833 T HLL IE M 03 0 64 Europe/Dublin 2010-08-14 +3310420 Glenomra River Glenomra River 52.80222 -8.63194 H STM IE M 03 0 93 Europe/Dublin 2010-08-14 +3310422 Knockacalla Knockacalla 52.89306 -8.56667 T HLL IE M 03 0 61 Europe/Dublin 2010-08-14 +3310423 Anamullaghaun River Anamullaghaun River 52.89611 -8.57611 H STM IE M 03 0 61 Europe/Dublin 2010-08-14 +3310424 Coolreagh House Coolreagh House 52.9 -8.5975 S HSEC IE M 03 0 61 Europe/Dublin 2010-08-14 +3310425 Cloghaun Bridge Cloghaun Bridge 52.89472 -8.63056 P PPL IE M 03 0 66 Europe/Dublin 2010-08-14 +3310426 Annaghneal Bridges Annaghneal Bridges 52.89333 -8.6575 P PPL IE M 03 0 61 Europe/Dublin 2010-08-14 +3310427 Loughanilloon Loughanilloon 52.88556 -8.65444 H LK IE M 03 0 61 Europe/Dublin 2010-08-14 +3310428 Dromore Lough Dromore Lough 52.90028 -8.66194 H LK IE M 03 0 62 Europe/Dublin 2010-08-14 +3310429 Annagh Neal Annagh Neal 52.88778 -8.68806 L LCTY IE M 03 0 56 Europe/Dublin 2010-08-14 +3310430 Ballynahinch House Ballynahinch House 52.8725 -8.66167 S HSEC IE M 03 0 63 Europe/Dublin 2010-08-14 +3310431 Derrymore House Derrymore House 52.86583 -8.66167 S HSEC IE M 03 0 62 Europe/Dublin 2010-08-14 +3310432 Kilgory House Kilgory House 52.86056 -8.68417 S HSEC IE M 03 0 63 Europe/Dublin 2010-08-14 +3310433 Fortanebeg House Fortanebeg House 52.86722 -8.70694 S HSEC IE M 03 0 97 Europe/Dublin 2010-08-14 +3310442 Garrauncam Bridge Garrauncam Bridge 52.89972 -8.69667 P PPL IE M 03 0 56 Europe/Dublin 2010-08-14 +3310443 Drumcharley Drumcharley 52.89667 -8.73333 L LCTY IE M 03 0 84 Europe/Dublin 2010-08-14 +3310444 Rosslara Lough Rosslara Lough 52.88833 -8.705 H LK IE M 03 0 75 Europe/Dublin 2010-08-14 +3310445 Cloondanagh Lough Cloondanagh Lough 52.89333 -8.74194 H LK IE M 03 0 77 Europe/Dublin 2010-08-14 +3310446 Cloondoorney Lough Cloondoorney Lough 52.88806 -8.7625 H LK IE M 03 0 100 Europe/Dublin 2010-08-14 +3310447 Cragroe Cragroe 52.885 -8.74056 L LCTY IE M 03 0 107 Europe/Dublin 2010-08-14 +3310448 Drumocaum Drumocaum 52.87583 -8.74028 L LCTY IE M 03 0 140 Europe/Dublin 2010-08-14 +3310449 Kilboggoon Kilboggoon 52.85972 -8.74139 L LCTY IE M 03 0 159 Europe/Dublin 2010-08-14 +3310450 Liscullaun Liscullaun 52.85111 -8.72722 P PPL IE M 03 0 150 Europe/Dublin 2010-08-14 +3310451 Wyndham’s Bridge Wyndham's Bridge 52.84611 -8.75556 P PPL IE M 03 0 152 Europe/Dublin 2010-08-14 +3310452 Liskenny Liskenny 52.84056 -8.75444 L LCTY IE M 03 0 146 Europe/Dublin 2010-08-14 +3310453 Derrybeg Derrybeg 52.835 -8.77833 L LCTY IE M 03 0 143 Europe/Dublin 2010-08-14 +3310454 Nester’s Bridge Nester's Bridge 52.89389 -8.82194 P PPL IE M 03 0 76 Europe/Dublin 2010-08-14 +3310455 Ardbooly Ardbooly 52.89528 -8.79222 L LCTY IE M 03 0 73 Europe/Dublin 2010-08-14 +3310456 Dangan Ville Dangan Ville 52.84722 -8.80111 L LCTY IE M 03 0 70 Europe/Dublin 2010-08-14 +3310457 Fomerla Lough Fomerla Lough 52.85944 -8.82944 H LK IE M 03 0 85 Europe/Dublin 2010-08-14 +3310458 Grove Ville Grove Ville 52.87111 -8.82361 S EST IE M 03 0 69 Europe/Dublin 2010-08-14 +3310459 Moymore Moymore 52.85722 -8.79833 L LCTY IE M 03 0 79 Europe/Dublin 2010-08-14 +3310460 Derrynaskeagh Derrynaskeagh 52.89944 -8.85222 L LCTY IE M 03 0 85 Europe/Dublin 2010-08-14 +3310461 Maghera Cross Maghera Cross 52.88722 -8.84444 P PPL IE M 03 0 100 Europe/Dublin 2010-08-14 +3310462 Hell Bridge Hell Bridge 52.84028 -8.82889 P PPL IE M 03 0 41 Europe/Dublin 2010-08-14 +3310463 Toonagh House Toonagh House 52.8475 -8.83167 S HSEC IE M 03 0 56 Europe/Dublin 2010-08-14 +3310464 Killanon Killanon 52.88083 -8.79833 S EST IE M 03 0 78 Europe/Dublin 2010-08-14 +3310465 Corbally House Corbally House 52.8475 -8.86 S HSEC IE M 03 0 97 Europe/Dublin 2010-08-14 +3310466 Clooney House Clooney House 52.85694 -8.86667 S HSEC IE M 03 0 124 Europe/Dublin 2010-08-14 +3310467 O’Briens Big Lough O'Briens Big Lough 52.88861 -8.87861 H LK IE M 03 0 123 Europe/Dublin 2010-08-14 +3310468 Holaun Lough Holaun Lough 52.86194 -8.90194 H LK IE M 03 0 101 Europe/Dublin 2010-08-14 +3310470 Castletown Lough Castletown Lough 52.8475 -8.90861 H LK IE M 03 0 72 Europe/Dublin 2010-08-14 +3310471 Kilvoydan Kilvoydan 52.88417 -8.91028 P PPL IE M 03 0 92 Europe/Dublin 2010-08-14 +3310472 Cappagh Beg Cappagh Beg 52.88333 -8.93944 L LCTY IE M 03 0 62 Europe/Dublin 2010-08-14 +3310473 Rosslevan House Rosslevan House 52.85972 -8.955 S HSEC IE M 03 0 39 Europe/Dublin 2010-08-14 +3310474 Ballymacahill Lough Ballymacahill Lough 52.86833 -8.93333 H LK IE M 03 0 71 Europe/Dublin 2010-08-14 +3310475 Cappahard House Cappahard House 52.84889 -8.96222 S HSEC IE M 03 0 23 Europe/Dublin 2010-08-14 +3310476 Ballyallia House Ballyallia House 52.88139 -8.97167 S HSEC IE M 03 0 33 Europe/Dublin 2010-08-14 +3310477 Ballycarey Ballycarey 52.86778 -8.97861 L LCTY IE M 03 0 26 Europe/Dublin 2010-08-14 +3310478 Lough Girroga Lough Girroga 52.86361 -8.97222 H LK IE M 03 0 25 Europe/Dublin 2010-08-14 +3310479 Hell River Hell River 52.82417 -8.8225 H STM IE M 03 0 68 Europe/Dublin 2010-08-14 +3310480 Rine River Rine River 52.79861 -8.91028 H STM IE M 03 0 4 Europe/Dublin 2010-08-14 +3310481 Ballyvonnavaun Ballyvonnavaun 52.81722 -8.92917 L LCTY IE M 03 0 30 Europe/Dublin 2010-08-14 +3310482 Noughaval Noughaval 52.83194 -8.91611 P PPL IE M 03 0 49 Europe/Dublin 2010-08-14 +3310483 Quinville Abbey Quinville Abbey 52.82639 -8.86472 S RUIN IE M 03 0 40 Europe/Dublin 2010-08-14 +3310485 Barefield Barefield 52.88722 -8.97 L LCTY IE M 03 0 36 Europe/Dublin 2010-08-14 +3310486 Fair Green Fair Green 52.87139 -8.90861 P PPL IE M 03 0 93 Europe/Dublin 2010-08-14 +3310488 Cloonleen Lough Cloonleen Lough 52.88917 -8.9775 H LK IE M 03 0 32 Europe/Dublin 2010-08-14 +3310489 Dromconora Dromconora 52.89778 -8.96556 L LCTY IE M 03 0 41 Europe/Dublin 2010-08-14 +3310490 Lough Cleggan Lough Cleggan 52.87333 -9.01333 H LK IE M 03 0 32 Europe/Dublin 2010-08-14 +3310492 Larch Hill Larch Hill 52.88306 -9 T HLL IE M 03 0 26 Europe/Dublin 2010-08-14 +3310493 Drumcliff Drumcliff 52.86556 -9.01694 L LCTY IE M 03 0 40 Europe/Dublin 2010-08-14 +3310506 Drehidnagower Bridge Drehidnagower Bridge 52.85583 -8.99389 P PPL IE M 03 0 20 Europe/Dublin 2010-08-14 +3310507 Carranahingan Bridge Carranahingan Bridge 52.87639 -9.01028 P PPL IE M 03 0 34 Europe/Dublin 2010-08-14 +3310508 Fountain Cross Fountain Cross 52.87222 -9.02917 P PPL IE M 03 0 52 Europe/Dublin 2010-08-14 +3310509 Claureen Bridge Claureen Bridge 52.85 -8.99833 P PPL IE M 03 0 27 Europe/Dublin 2010-08-14 +3310510 Lifford Lifford 52.8525 -8.9975 L LCTY IE M 03 0 20 Europe/Dublin 2010-08-14 +3310511 Cragleagh House Cragleagh House 52.84722 -9.04111 S HSEC IE M 03 0 64 Europe/Dublin 2010-08-14 +3310512 Greenpark House Greenpark House 52.83806 -9.03444 S HSEC IE M 03 0 59 Europe/Dublin 2010-08-14 +3310513 Beech Park Beech Park 52.83389 -9.02917 S EST IE M 03 0 46 Europe/Dublin 2010-08-14 +3310514 Cahircalla House Cahircalla House 52.83083 -9.00722 S HSEC IE M 03 0 68 Europe/Dublin 2010-08-14 +3310515 Inch River Inch River Claureen River,Inch River 52.85 -8.99389 H STM IE IE M 03 0 27 Europe/Dublin 2010-08-14 +3310517 Magowha Magowha 52.8875 -9.0525 P PPL IE M 03 0 76 Europe/Dublin 2010-08-14 +3310518 Bushypark House Bushypark House 52.85222 -9.0475 S HSEC IE M 03 0 76 Europe/Dublin 2010-08-14 +3310519 Tooreen Tooreen 52.88028 -9.06917 L LCTY IE M 03 0 87 Europe/Dublin 2010-08-14 +3310520 Knockacaurkin Knockacaurkin 52.87528 -9.10583 L LCTY IE M 03 0 139 Europe/Dublin 2010-08-14 +3310530 Cloonfeagh Cloonfeagh 52.84083 -9.08222 L LCTY IE M 03 0 78 Europe/Dublin 2010-08-14 +3310531 Tullassa Tullassa 52.84861 -9.08 L LCTY IE M 03 0 79 Europe/Dublin 2010-08-14 +3310532 Islandgar Lough Islandgar Lough 52.85361 -9.09611 H LK IE M 03 0 74 Europe/Dublin 2010-08-14 +3310533 Kilnamona Kilnamona Kilnamona 52.86778 -9.08056 P PPL IE M 03 0 75 Europe/Dublin 2010-08-14 +3310534 Lough Ecnagh Lough Ecnagh 52.88722 -9.09861 H LK IE M 03 0 152 Europe/Dublin 2010-08-14 +3310535 Garyillaun Lough Garyillaun Lough 52.89139 -9.11611 H LK IE M 03 0 156 Europe/Dublin 2010-08-14 +3310536 Brockagh River Brockagh River 52.88028 -9.17667 H STM IE M 03 0 68 Europe/Dublin 2010-08-14 +3310537 Garyoghil Garyoghil 52.88833 -9.15694 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3310538 Maghera Maghera 52.87806 -9.15806 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3310539 Lough Aconnaun Lough Aconnaun 52.85861 -9.15389 H LK IE M 03 0 88 Europe/Dublin 2010-08-14 +3310540 Lough Burke Lough Burke 52.84917 -9.14417 H LK IE M 03 0 113 Europe/Dublin 2010-08-14 +3310541 Raheen Raheen 52.85444 -9.13222 L LCTY IE M 03 0 76 Europe/Dublin 2010-08-14 +3310542 Ballyillaun Ballyillaun 52.8475 -9.12667 L LCTY IE M 03 0 78 Europe/Dublin 2010-08-14 +3310543 Drunanure Drunanure 52.84361 -9.16833 L LCTY IE M 03 0 75 Europe/Dublin 2010-08-14 +3310544 Bougha Fort Bougha Fort 52.85278 -9.15722 S FT IE M 03 0 109 Europe/Dublin 2010-08-14 +3310546 Aughaglanna Bridge Aughaglanna Bridge 52.82778 -9.16778 P PPL IE M 03 0 78 Europe/Dublin 2010-08-14 +3310547 Strasburgh Strasburgh 52.82139 -9.05194 L LCTY IE M 03 0 60 Europe/Dublin 2010-08-14 +3310548 Ashline Ashline 52.82639 -8.99917 L LCTY IE M 03 0 54 Europe/Dublin 2010-08-14 +3310549 Doora Doora 52.8425 -8.96278 L LCTY IE M 03 0 23 Europe/Dublin 2010-08-14 +3310550 Ballybog Lough Ballybog Lough 52.80944 -8.99389 H LK IE M 03 0 79 Europe/Dublin 2010-08-14 +3310551 Cabergarrann Cabergarrann 52.89389 -9.05278 L LCTY IE M 03 0 67 Europe/Dublin 2010-08-14 +3310552 Elmroor River Elmroor River 52.78556 -9.21806 H STM IE M 03 0 153 Europe/Dublin 2010-08-14 +3310553 Boolynagleragh Boolynagleragh 52.7775 -9.1675 L LCTY IE M 03 0 164 Europe/Dublin 2010-08-14 +3310554 Lissycaset Lissycaset 52.73944 -9.16111 L LCTY IE M 03 0 72 Europe/Dublin 2010-08-14 +3310557 Rinnamryall Rinnamryall 52.75083 -9.54667 T CAPE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310558 Glenbrook Glenbrook 54.17972 -7.12583 P PPL IE U 22 0 79 Europe/Dublin 2010-08-14 +3310559 Annagose Lough Annagose Lough 54.17528 -7.10389 H LK IE U 22 0 115 Europe/Dublin 2010-08-14 +3310560 Cashlan Lough Cashlan Lough 54.18611 -7.08917 H LK IE U 22 0 144 Europe/Dublin 2010-08-14 +3310561 Rafinny Lough Rafinny Lough 54.18222 -7.05167 H LK IE U 22 0 153 Europe/Dublin 2010-08-14 +3310562 Garran Cross Roads Garran Cross Roads 54.17167 -7.06722 P PPLL IE U 22 0 155 Europe/Dublin 2010-08-14 +3310563 Latnamard Latnamard 54.17417 -7.05806 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3310564 Greenan’s Cross Roads Greenan's Cross Roads 54.1925 -7.07694 P PPL IE U 22 0 147 Europe/Dublin 2010-08-14 +3310565 Corlat Corlat 54.19667 -7.09667 P PPLL IE U 22 0 113 Europe/Dublin 2010-08-14 +3310566 Cloghernagh Cloghernagh 54.20222 -7.10194 P PPLL IE U 22 0 84 Europe/Dublin 2010-08-14 +3310567 Killina Killina 54.20667 -7.08389 P PPLL IE U 22 0 103 Europe/Dublin 2010-08-14 +3310568 Magherarny Cross Roads Magherarny Cross Roads 54.21556 -7.11222 P PPLL IE U 22 0 73 Europe/Dublin 2010-08-14 +3310569 Lough Oony Lough Oony 54.21444 -7.14083 H LK IE U 22 0 73 Europe/Dublin 2010-08-14 +3310570 Billary Lough Billary Lough 54.22194 -7.1125 H LK IE U 22 0 73 Europe/Dublin 2010-08-14 +3310571 Magherarny Lough Magherarny Lough 54.22444 -7.10583 H LK IE U 22 0 73 Europe/Dublin 2010-08-14 +3310572 Loughoony House Loughoony House 54.2175 -7.13861 S HSEC IE U 22 0 75 Europe/Dublin 2010-08-14 +3310573 Bulloghbrean Bulloghbrean 54.21472 -7.15944 P PPL IE U 22 0 74 Europe/Dublin 2010-08-14 +3310574 Clen Lough Clen Lough 54.23444 -7.10056 H LK IE U 22 0 107 Europe/Dublin 2010-08-14 +3310575 Mullaglassan Lough Mullaglassan Lough 54.24028 -7.12056 H LK IE U 22 0 75 Europe/Dublin 2010-08-14 +3310576 Kilcorran Lough Kilcorran Lough 54.24556 -7.14 H LK IE U 22 0 79 Europe/Dublin 2010-08-14 +3310577 Nart Nart 54.23583 -7.13917 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3310578 Thornhill House Thornhill House 54.22833 -7.07278 S HSEC IE U 22 0 72 Europe/Dublin 2010-08-14 +3310579 Annyulty Lough Annyulty Lough 54.25444 -7.04667 H PND IE U 22 0 81 Europe/Dublin 2010-08-14 +3310580 Hollywood House Hollywood House 54.26167 -7.06833 S HSEC IE U 22 0 84 Europe/Dublin 2010-08-14 +3310581 Selloo Selloo 54.25333 -7.12528 P PPLL IE U 22 0 93 Europe/Dublin 2010-08-14 +3310582 Allagesh Allagesh 54.2625 -7.11333 P PPLL IE U 22 0 117 Europe/Dublin 2010-08-14 +3310583 Derrylea Derrylea 54.27583 -7.13167 P PPLL IE U 22 0 237 Europe/Dublin 2010-08-14 +3310584 Drumloo Lough Drumloo Lough 54.27083 -7.11028 H LK IE U 22 0 176 Europe/Dublin 2010-08-14 +3310585 Kilmore Lake Kilmore Lake 54.2825 -7.14667 H LK IE U 22 0 152 Europe/Dublin 2010-08-14 +3310586 Sheskin Sheskin 54.29167 -7.11667 P PPLL IE U 22 0 412 Europe/Dublin 2010-08-14 +3310587 The Rock The Rock 54.29278 -7.09583 P PPLL IE U 22 0 159 Europe/Dublin 2010-08-14 +3310588 Drumcoo Drumcoo 54.30833 -7.11361 P PPLL IE U 22 0 320 Europe/Dublin 2010-08-14 +3310589 Shee Lough Shee Lough 54.30528 -7.04472 H LK IE U 22 0 133 Europe/Dublin 2010-08-14 +3310590 Mullaghinshigo Loughs Mullaghinshigo Loughs 54.29556 -7.03167 H LKS IE U 22 0 124 Europe/Dublin 2010-08-14 +3310591 Mullaghmore Lough Mullaghmore Lough 54.28694 -7.0425 H LK IE U 22 0 90 Europe/Dublin 2010-08-14 +3310592 Mullaghmore House Mullaghmore House 54.28861 -7.04778 S HSEC IE U 22 0 90 Europe/Dublin 2010-08-14 +3310593 Lough Duff Lough Duff 54.27944 -7.05222 H LK IE U 22 0 75 Europe/Dublin 2010-08-14 +3310594 Quig Lough Reservoir Quig Lough Reservoir 54.26333 -7.02806 H RSV IE U 22 0 134 Europe/Dublin 2010-08-14 +3310595 Clontoe Clontoe 54.27333 -7.02583 P PPLL IE U 22 0 73 Europe/Dublin 2010-08-14 +3310596 Raconnell Raconnell 54.26694 -7.01889 P PPL IE U 22 0 73 Europe/Dublin 2010-08-14 +3310597 Tullycrom Lodge Tullycrom Lodge 54.25472 -7.01556 S HSEC IE U 22 0 89 Europe/Dublin 2010-08-14 +3310598 Calliagh Calliagh 54.18056 -7.02361 P PPL IE U 22 0 153 Europe/Dublin 2010-08-14 +3310599 Greagh Lough Greagh Lough 54.18667 -7.015 H PND IE U 22 0 154 Europe/Dublin 2010-08-14 +3310600 Blackraw Blackraw 54.19361 -7.0325 P PPLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3310601 Coolcorragh Coolcorragh 54.20583 -7.05694 P PPL IE U 22 0 147 Europe/Dublin 2010-08-14 +3310602 Ballagh Lough Ballagh Lough 54.20389 -7.01278 H LK IE U 22 0 152 Europe/Dublin 2010-08-14 +3310603 Cornaglare Lough Cornaglare Lough 54.21528 -7.0025 H LK IE U 22 0 130 Europe/Dublin 2010-08-14 +3310604 Knockaturly Lough Knockaturly Lough 54.20361 -6.97361 H LK IE U 22 0 160 Europe/Dublin 2010-08-14 +3310605 Three Mile House Three Mile House 54.21667 -7.03833 S HSE IE U 22 0 96 Europe/Dublin 2010-08-14 +3310606 Drumsmat Bridge Drumsmat Bridge 54.22278 -7.05278 P PPLL IE U 22 0 79 Europe/Dublin 2010-08-14 +3310607 Darraghlan Darraghlan 54.18389 -6.96028 P PPLL IE U 22 0 155 Europe/Dublin 2010-08-14 +3310608 Sheetrim Lake Sheetrim Lake 54.22667 -6.95667 H PND IE U 22 0 99 Europe/Dublin 2010-08-14 +3310609 Rossmore Forest Park Rossmore Forest Park 54.22972 -6.98222 V FRST IE U 22 0 95 Europe/Dublin 2010-08-14 +3310610 Camla House Camla House 54.23333 -7.00167 S HSEC IE U 22 0 76 Europe/Dublin 2010-08-14 +3310611 Brandrum House Brandrum House 54.2325 -7.03139 S HSEC IE U 22 0 76 Europe/Dublin 2010-08-14 +3310612 Druminaconor House Druminaconor House 54.23472 -7.04583 S HSEC IE U 22 0 71 Europe/Dublin 2010-08-14 +3310613 Carsons Bridge Carsons Bridge 54.23778 -7.02806 P PPLL IE U 22 0 71 Europe/Dublin 2010-08-14 +3310614 Rossmore Rossmore 54.23583 -6.98778 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3310615 Cortolym Bridge Cortolym Bridge 54.24028 -6.98694 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3310616 Cornecassa House Cornecassa House 54.24806 -6.99528 S HSEC IE U 22 0 70 Europe/Dublin 2010-08-14 +3310617 Gallanagh House Gallanagh House 54.25472 -6.98417 S HSEC IE U 22 0 70 Europe/Dublin 2010-08-14 +3310618 Drumreask Drumreask 54.25917 -7.00833 P PPLL IE U 22 0 71 Europe/Dublin 2010-08-14 +3310619 Lambs Lough Lambs Lough 54.2675 -6.96806 H LK IE U 22 0 72 Europe/Dublin 2010-08-14 +3310620 Corlatt House Corlatt House 54.24056 -6.92861 S HSEC IE U 22 0 77 Europe/Dublin 2010-08-14 +3310621 Ardaghy Ardaghy 54.21222 -6.90528 P PPL IE U 22 0 156 Europe/Dublin 2010-08-14 +3310622 Aghnagap Aghnagap 54.22194 -6.89 P PPLL IE U 22 0 126 Europe/Dublin 2010-08-14 +3310623 Aghlaverty Aghlaverty 54.24556 -6.89917 P PPLL IE U 22 0 65 Europe/Dublin 2010-08-14 +3310624 Moyles Moyles 54.23083 -6.91444 P PPLL IE U 22 0 133 Europe/Dublin 2010-08-14 +3310625 Castleshane Castleshane 54.23806 -6.88389 P PPL IE U 22 0 77 Europe/Dublin 2010-08-14 +3310626 Bryanhiller Bryanhiller 54.21889 -6.83806 P PPLL IE U 22 0 77 Europe/Dublin 2010-08-14 +3310627 Annaseeragh Annaseeragh 54.22806 -6.82472 P PPLL IE U 22 0 124 Europe/Dublin 2010-08-14 +3310628 Drumgolat Drumgolat 54.24472 -6.84306 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3310629 Alkill Alkill 54.25056 -6.86083 P PPLL IE U 22 0 69 Europe/Dublin 2010-08-14 +3310630 Drumneill Drumneill 54.25111 -6.83639 P PPLL IE U 22 0 82 Europe/Dublin 2010-08-14 +3310631 Kildoagh Kildoagh 54.25861 -6.89333 P PPLL IE U 22 0 64 Europe/Dublin 2010-08-14 +3310632 Tamlat Tamlat 54.27 -6.87194 P PPLL IE U 22 0 65 Europe/Dublin 2010-08-14 +3310633 Killyneill Cross Roads Killyneill Cross Roads 54.26333 -6.87556 P PPLL IE U 22 0 65 Europe/Dublin 2010-08-14 +3310634 Leitrim Leitrim 54.27028 -6.88972 P PPL IE U 22 0 65 Europe/Dublin 2010-08-14 +3310635 Drumgoole Drumgoole 54.27722 -6.90861 P PPLL IE U 22 0 67 Europe/Dublin 2010-08-14 +3310636 Bessmount Park Bessmount Park 54.26167 -6.93 S EST IE U 22 0 68 Europe/Dublin 2010-08-14 +3310637 Faulkland Faulkland 54.28333 -6.92 P PPLL IE U 22 0 68 Europe/Dublin 2010-08-14 +3310638 Tirnaneill Cross Roads Tirnaneill Cross Roads Tirnaneill Cross Roads 54.28667 -6.96639 P PPLL IE U 22 0 77 Europe/Dublin 2010-08-14 +3310639 Mullaloughan Mullaloughan 54.28917 -6.93472 P PPLL IE U 22 0 74 Europe/Dublin 2010-08-14 +3310640 Corraghbrack Corraghbrack 54.30417 -6.98694 P PPL IE U 22 0 116 Europe/Dublin 2010-08-14 +3310641 Tallyvogy Tallyvogy 54.28139 -7.00111 P PPLL IE U 22 0 94 Europe/Dublin 2010-08-14 +3310642 Billis Billis 54.29444 -6.93111 P PPL IE U 22 0 71 Europe/Dublin 2010-08-14 +3310643 Glaslough House Glaslough House 54.32139 -6.88611 S HSEC IE U 22 0 65 Europe/Dublin 2010-08-14 +3310644 Bellanaman Bellanaman 54.30389 -6.88167 P PPL IE U 22 0 65 Europe/Dublin 2010-08-14 +3310645 Killyboley Lough Killyboley Lough 54.29917 -6.88639 H LK IE U 22 0 66 Europe/Dublin 2010-08-14 +3310646 Rossarrell Rossarrell 54.3125 -6.92417 P PPL IE U 22 0 67 Europe/Dublin 2010-08-14 +3310647 Fort Johnston Fort Johnston 54.32278 -6.92861 S FT IE U 22 0 64 Europe/Dublin 2010-08-14 +3310648 Kilvey Lough Kilvey Lough 54.31611 -6.875 H LK IE U 22 0 65 Europe/Dublin 2010-08-14 +3310649 Monmurry Lough Monmurry Lough 54.34389 -6.90111 H LK IE U 22 0 64 Europe/Dublin 2010-08-14 +3310650 Tully Lough Tully Lough 54.32667 -6.95556 H LK IE U 22 0 58 Europe/Dublin 2010-08-14 +3310651 Emy Lough Emy Lough 54.33917 -6.93556 H LK IE U 22 0 49 Europe/Dublin 2010-08-14 +3310652 Lough Emy House Lough Emy House 54.35111 -6.93556 S HSEC IE U 22 0 32 Europe/Dublin 2010-08-14 +3310653 Annaghroe Bridge Annaghroe Bridge 54.33861 -6.87444 P PPLL IE U 22 0 66 Europe/Dublin 2010-08-14 +3310654 Carrigans Carrigans 54.32056 -6.96111 P PPL IE U 22 0 75 Europe/Dublin 2010-08-14 +3310655 Lennaght Lennaght 54.285 -7.16278 P PPLL IE U 22 0 133 Europe/Dublin 2010-08-14 +3310656 Stramackilroy Stramackilroy 54.30528 -7.185 S EST IE U 22 0 150 Europe/Dublin 2010-08-14 +3310657 Lough Antrawer Lough Antrawer 54.3225 -7.15944 H LK IE U 22 0 299 Europe/Dublin 2010-08-14 +3310658 Lough Aportan Lough Aportan 54.32917 -7.15417 H LK IE U 22 0 283 Europe/Dublin 2010-08-14 +3310659 Lough Galluane Lough Galluane Lough Galluane 54.33528 -7.15028 H LK IE 00 0 280 Europe/Dublin 2010-08-10 +3310663 Lough na Heery Lough na Heery Lough na Heery 54.34583 -7.1325 H LK IE 00 0 304 Europe/Dublin 1998-04-30 +3310664 Knockballyroney Knockballyroney 54.325 -7.0675 T HLL IE U 22 0 152 Europe/Dublin 2010-08-14 +3310665 Caldavnet Caldavnet 54.32556 -7.03861 P PPLL IE U 22 0 208 Europe/Dublin 2010-08-14 +3310666 Killy Lough Killy Lough 54.32278 -7.03083 H LK IE U 22 0 219 Europe/Dublin 2010-08-14 +3310667 Knockcor Knockcor 54.3225 -7.00722 P PPLL IE U 22 0 199 Europe/Dublin 2010-08-14 +3310668 Derrygola Derrygola 54.33917 -7.00917 P PPLL IE U 22 0 293 Europe/Dublin 2010-08-14 +3310669 Corryarbeg Corryarbeg 54.35556 -7.06083 P PPLL IE U 22 0 151 Europe/Dublin 2010-08-14 +3310670 Carrickroe Carrickroe 54.35694 -7.02778 P PPL IE U 22 0 340 Europe/Dublin 2010-08-14 +3310671 Dundian Cross Roads Dundian Cross Roads 54.35556 -7.00556 P PPL IE U 22 0 287 Europe/Dublin 2010-08-14 +3310672 Derrylea Derrylea 54.37389 -7.02361 P PPLL IE U 22 0 483 Europe/Dublin 2010-08-14 +3310673 Coolberrin Hill Coolberrin Hill 54.37333 -7.05528 T HLL IE U 22 0 122 Europe/Dublin 2010-08-14 +3310674 Killybern Lough Killybern Lough 54.36778 -7.07583 H LK IE U 22 0 162 Europe/Dublin 2010-08-14 +3310675 Dungillick House Dungillick House 54.34806 -6.975 S HSEC IE U 22 0 35 Europe/Dublin 2010-08-14 +3310676 Mullan Mullan 54.36306 -6.92028 P PPL IE U 22 0 64 Europe/Dublin 2010-08-14 +3310677 Burns Bridge Burns Bridge 54.36944 -6.90806 P PPLL IE U 22 0 82 Europe/Dublin 2010-08-14 +3310678 Shanco Shanco 54.35917 -6.96694 P PPL IE U 22 0 39 Europe/Dublin 2010-08-14 +3310679 Mount Anketell Mount Anketell 54.37833 -6.98583 S EST IE U 22 0 111 Europe/Dublin 2010-08-14 +3310680 Lough Astrish Lough Astrish 54.3775 -6.95167 H LK IE U 22 0 36 Europe/Dublin 2010-08-14 +3310681 Mullanacross Mullanacross 54.38806 -6.98417 P PPLL IE U 22 0 76 Europe/Dublin 2010-08-14 +3310682 Ivy Hill Ivy Hill 54.39444 -6.99111 S EST IE U 22 0 56 Europe/Dublin 2010-08-14 +3310683 Dernagola Dernagola 54.38639 -7.03639 P PPLL IE U 22 0 421 Europe/Dublin 2010-08-14 +3310684 Cavan Cavan 54.39944 -7.03944 P PPLL IE U 22 0 281 Europe/Dublin 2010-08-14 +3310685 Aghamackalinn Aghamackalinn 54.39167 -7.04972 P PPLL IE U 22 0 211 Europe/Dublin 2010-08-14 +3310686 Derrygorry Derrygorry 54.40889 -7.05 P PPLL IE U 22 0 79 Europe/Dublin 2010-08-14 +3310687 Tullygowan Tullygowan 53.94194 -6.63556 P PPLL IE L 19 0 57 Europe/Dublin 2010-08-14 +3310688 Drumgowna Drumgowna 53.95111 -6.60167 P PPLL IE L 19 0 56 Europe/Dublin 2010-08-14 +3310689 Tullycahan Tullycahan 53.95278 -6.5775 P PPL IE L 19 0 50 Europe/Dublin 2010-08-14 +3310690 Ballakelly Cross Roads Ballakelly Cross Roads 53.96694 -6.57167 P PPLL IE L 19 0 51 Europe/Dublin 2010-08-14 +3310691 Ross Lough Ross Lough 53.96833 -6.60167 H PND IE L 19 0 64 Europe/Dublin 2010-08-14 +3310692 The White Cross The White Cross 53.95278 -6.52444 P PPLL IE L 19 0 34 Europe/Dublin 2010-08-14 +3310693 Ultans Well Ultans Well 53.94917 -6.57889 H WLL IE L 19 0 46 Europe/Dublin 2010-08-14 +3310694 Monavallet House Monavallet House 53.96611 -6.55472 S HSEC IE L 19 0 44 Europe/Dublin 2010-08-14 +3310695 Chanonrock Chanonrock 53.97 -6.55111 P PPL IE L 19 0 45 Europe/Dublin 2010-08-14 +3310696 Little Ash Little Ash 53.97611 -6.52389 P PPLL IE L 19 0 42 Europe/Dublin 2010-08-14 +3310697 Mullabohy Cross Roads Mullabohy Cross Roads 53.98333 -6.49722 P PPLL IE L 19 0 36 Europe/Dublin 2010-08-14 +3310698 Knockdillon Knockdillon 53.965 -6.51306 T HLL IE L 19 0 31 Europe/Dublin 2010-08-14 +3310699 Killincoole Killincoole 53.93444 -6.47778 P PPLL IE L 19 0 22 Europe/Dublin 2010-08-14 +3310700 Rathneety Rathneety 53.94611 -6.48417 P PPLL IE L 19 0 25 Europe/Dublin 2010-08-14 +3310701 Corderry House Corderry House 53.94 -6.48694 S HSEC IE L 19 0 25 Europe/Dublin 2010-08-14 +3310702 Drumcah Lough Drumcah Lough 53.99306 -6.54167 H LK IE L 19 0 70 Europe/Dublin 2010-08-14 +3310703 Walterstown Walterstown 53.94278 -6.45167 P PPL IE L 19 0 15 Europe/Dublin 2010-08-14 +3310704 Clermont Park Clermont Park 53.94917 -6.38667 S EST IE L 19 0 1 Europe/Dublin 2010-08-14 +3310705 Fane Valley Fane Valley 53.95222 -6.46583 L LCTY IE L 19 0 19 Europe/Dublin 2010-08-14 +3310706 Marsh Farm Marsh Farm 53.93611 -6.38139 S FRM IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3310707 Lakeview Cottage Lakeview Cottage 53.96278 -6.46 S HSE IE L 19 0 21 Europe/Dublin 2010-08-14 +3310708 Prospect Prospect 53.96639 -6.45 S EST IE L 19 0 15 Europe/Dublin 2010-08-14 +3310709 Gibstown Gibstown 53.97 -6.43111 P PPLL IE L 19 0 10 Europe/Dublin 2010-08-14 +3310710 Littlemill Littlemill 53.98417 -6.43944 P PPLL IE L 19 0 14 Europe/Dublin 2010-08-14 +3310711 Priorland House Priorland House 53.98028 -6.41139 S HSEC IE L 19 0 3 Europe/Dublin 2010-08-14 +3310712 Ricescross Bridge Ricescross Bridge 53.98694 -6.47694 L LCTY IE L 19 0 35 Europe/Dublin 2010-08-14 +3310713 Lisnawully House Lisnawully House 53.99833 -6.4275 S HSEC IE L 19 0 8 Europe/Dublin 2010-08-14 +3310714 Kilcurly Kilcurly 54.00444 -6.46778 P PPL IE L 19 0 34 Europe/Dublin 2010-08-14 +3310715 Saint John’s Bridge Saint John's Bridge 54.02417 -6.42861 P PPLL IE L 19 0 10 Europe/Dublin 2010-08-14 +3310716 Killin Park Killin Park 54.02806 -6.45833 S EST IE L 19 0 23 Europe/Dublin 2010-08-14 +3310717 Bridgeacrin Bridgeacrin 54.03028 -6.45583 P PPL IE L 19 0 23 Europe/Dublin 2010-08-14 +3310718 Falmore Hall Falmore Hall 54.03583 -6.44417 S HSEC IE L 19 0 24 Europe/Dublin 2010-08-14 +3310719 Kilcurry River Kilcurry River Kilcurry River 54.02611 -6.43056 H STM IE 00 0 18 Europe/Dublin 1998-04-30 +3310720 Cull Water Cull Water Cull Water 54.035 -6.4375 H STM IE 00 0 31 Europe/Dublin 2010-08-10 +3310721 Dowdallshill Dowdallshill 54.02139 -6.39472 P PPL IE L 19 0 6 Europe/Dublin 2010-08-14 +3310722 Carnbeg Carnbeg 54.02833 -6.40194 P PPLL IE L 19 0 26 Europe/Dublin 2010-08-14 +3310723 Thistle House Thistle House 54.04444 -6.38139 S HSEC IE L 19 0 64 Europe/Dublin 2010-08-14 +3310724 Aghnaskeagh Aghnaskeagh 54.04611 -6.36806 P PPLL IE L 19 0 51 Europe/Dublin 2010-08-14 +3310725 Dungooly Cross Roads Dungooly Cross Roads 54.0675 -6.46361 P PPLL IE L 19 0 64 Europe/Dublin 2010-08-14 +3310726 Shortstone House Shortstone House 54.03889 -6.51583 S HSEC IE L 19 0 57 Europe/Dublin 2010-08-14 +3310727 Ballybinaby Ballybinaby 54.05028 -6.53139 P PPLL IE L 19 0 71 Europe/Dublin 2010-08-14 +3310728 Annaghvacky Annaghvacky 54.03333 -6.54722 P PPLL IE L 19 0 75 Europe/Dublin 2010-08-14 +3310729 Clonaleenaghan House Clonaleenaghan House 54.02472 -6.54417 S HSEC IE L 19 0 76 Europe/Dublin 2010-08-14 +3310730 Balrobin House Balrobin House 54.01472 -6.51194 S HSEC IE L 19 0 61 Europe/Dublin 2010-08-14 +3310731 Slieve Slieve 54.03194 -6.49028 P PPLL IE L 19 0 42 Europe/Dublin 2010-08-14 +3310732 Rossenmore Rossenmore 54.03639 -6.56944 P PPLL IE L 19 0 83 Europe/Dublin 2010-08-14 +3310733 Maghereagh Cross Maghereagh Cross 54.01306 -6.51889 P PPL IE L 19 0 68 Europe/Dublin 2010-08-14 +3310734 Cortial Lough Cortial Lough 54.00083 -6.50194 H LK IE L 19 0 53 Europe/Dublin 2010-08-14 +3310735 Killycroney Bridge Killycroney Bridge 53.99417 -6.50417 P PPLL IE L 19 0 49 Europe/Dublin 2010-08-14 +3310736 The Needles The Needles 52.66333 -9.02167 H SHOL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310737 The Whelps The Whelps 52.67611 -8.74194 H SHOL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310738 Cloonfinnaun Cloonfinnaun 53.95028 -8.98306 P PPLL IE C 20 0 45 Europe/Dublin 2010-08-14 +3310739 Cloongullaun Cloongullaun 53.95861 -8.99083 P PPL IE C 20 0 40 Europe/Dublin 2010-08-14 +3310740 Lough Creggaballagh Lough Creggaballagh 53.97389 -8.98556 H LK IE C 20 0 46 Europe/Dublin 2010-08-14 +3310741 Lough Ogirra Lough Ogirra 53.97694 -8.9825 H PND IE C 20 0 54 Europe/Dublin 2010-08-14 +3310742 Rubble Lough Rubble Lough 53.97444 -8.97944 H PND IE C 20 0 42 Europe/Dublin 2010-08-14 +3310743 Dromada Dromada 53.985 -8.92833 P PPL IE C 20 0 51 Europe/Dublin 2010-08-14 +3310744 Carroweeny Carroweeny 54.00083 -8.94056 P PPL IE C 20 0 62 Europe/Dublin 2010-08-14 +3310745 Carrowiliam More Carrowiliam More 54.00083 -8.90583 S EST IE C 20 0 54 Europe/Dublin 2010-08-14 +3310746 Carrowmore Carrowmore 53.99861 -8.97917 P PPL IE C 20 0 118 Europe/Dublin 2010-08-14 +3310747 Croghan Lough Croghan Lough 54.00111 -8.99444 H PND IE C 20 0 154 Europe/Dublin 2010-08-14 +3310748 Cloonarannana Bridge Cloonarannana Bridge 53.96806 -8.93028 P PPLL IE C 20 0 49 Europe/Dublin 2010-08-14 +3310749 Cloonlara Cloonlara 53.95139 -8.91972 P PPLL IE C 20 0 68 Europe/Dublin 2010-08-14 +3310750 Cloonaghboy Cloonaghboy 53.95333 -8.88667 P PPL IE C 20 0 76 Europe/Dublin 2010-08-14 +3310751 Drumslinnagh Drumslinnagh 53.95917 -8.89528 P PPLL IE C 20 0 67 Europe/Dublin 2010-08-14 +3310752 Bellanacarra Bellanacarra 53.98833 -8.90667 P PPLL IE C 20 0 52 Europe/Dublin 2010-08-14 +3310753 Creggaun Creggaun 54.01167 -8.96139 P PPLL IE C 20 0 142 Europe/Dublin 2010-08-14 +3310754 Knockfadda Knockfadda 54.01667 -8.98333 P PPLL IE C 20 0 206 Europe/Dublin 2010-08-14 +3310755 Cartron Cartron 54.02306 -8.9675 T HLL IE 00 0 194 Europe/Dublin 1998-09-01 +3310756 Sonnagh River Sonnagh River 53.98778 -8.90806 H STM IE C 20 0 52 Europe/Dublin 1998-09-01 +3310757 Cloonfinish Cloonfinish 53.98556 -8.88444 P PPL IE C 20 0 55 Europe/Dublin 2010-08-14 +3310758 Eignagh River Eignagh River 54.01806 -8.86583 H STM IE C 25 0 56 Europe/Dublin 1998-09-01 +3310759 Lislaughna Lislaughna 53.97417 -8.86417 P PPLL IE C 20 0 63 Europe/Dublin 2010-08-14 +3310760 Sonnagh Sonnagh 53.96111 -8.83111 P PPLL IE C 20 0 62 Europe/Dublin 2010-08-14 +3310761 Tomboholla Tomboholla 53.94528 -8.82139 P PPLL IE C 20 0 77 Europe/Dublin 2010-08-14 +3310762 Bracklagh Bracklagh 53.945 -8.78833 P PPLL IE C 20 0 110 Europe/Dublin 2010-08-14 +3310763 Fauleens Fauleens 53.94611 -8.72306 P PPL IE C 20 0 153 Europe/Dublin 2010-08-14 +3310764 Barroe Barroe 53.96361 -8.71111 P PPL IE C 20 0 114 Europe/Dublin 2010-08-14 +3310765 Cloonmeen West Cloonmeen West 53.95889 -8.75028 P PPLL IE C 20 0 102 Europe/Dublin 2010-08-14 +3310766 Brackloonagh South Brackloonagh South 53.96667 -8.75167 P PPLL IE C 20 0 87 Europe/Dublin 2010-08-14 +3310767 Cloonmore House Cloonmore House 53.9725 -8.72278 S HSEC IE C 20 0 94 Europe/Dublin 2010-08-14 +3310768 Botinny Botinny 53.98583 -8.735 P PPLL IE C 20 0 74 Europe/Dublin 2010-08-14 +3310769 Srah Upper Srah Upper 53.97861 -8.6875 P PPLL IE C 20 0 84 Europe/Dublin 2010-08-14 +3310770 Srah Lower Srah Lower 53.98722 -8.68944 P PPLL IE C 20 0 84 Europe/Dublin 2010-08-14 +3310771 Brackloonagh North Brackloonagh North 53.98833 -8.70028 P PPLL IE C 20 0 81 Europe/Dublin 2010-08-14 +3310772 Owenlobnaglaur River Owenlobnaglaur River 53.9775 -8.67417 H STM IE C 20 0 86 Europe/Dublin 1998-09-01 +3310773 Dysert Dysert 52.43194 -9.61222 S EST IE M 11 0 65 Europe/Dublin 2010-08-14 +3310774 Tromra Tromra 52.80667 -9.46556 P PPL IE M 03 0 17 Europe/Dublin 2010-08-14 +3310775 Spanish Point Spanish Point Rinn na Spainneach,Rinn na Spáinneach,Spanish Point 52.84972 -9.43806 P PPL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310776 Clogh Clogh 52.54028 -8.90722 P PPLL IE M 16 0 49 Europe/Dublin 2010-08-14 +3310777 Cummeen Cummeen 52.55056 -8.81306 P PPLL IE M 16 0 22 Europe/Dublin 2010-08-14 +3310778 Skool Skool 52.54833 -8.57194 P PPLL IE M 16 0 61 Europe/Dublin 2010-08-14 +3310779 Cloontia Cloontia 53.97806 -8.6175 P PPL IE C 20 0 98 Europe/Dublin 2010-08-14 +3310780 Tawnaghbeg Tawnaghbeg 53.98556 -8.61389 P PPLL IE C 20 0 101 Europe/Dublin 2010-08-14 +3310781 Cloonlarhan Cloonlarhan 54.01056 -8.66028 P PPLL IE C 20 0 92 Europe/Dublin 2010-08-14 +3310782 Doocastle Cottage Doocastle Cottage 54.02444 -8.63778 S HSE IE C 20 0 86 Europe/Dublin 2010-08-14 +3310783 Flughany Flughany 54.01222 -8.60778 P PPL IE C 20 0 89 Europe/Dublin 2010-08-14 +3310784 Bealboy River Bealboy River 54.07528 -8.965 H STM IE 00 0 318 Europe/Dublin 1998-09-01 +3310785 Winny Langans Lough Winny Langans Lough 54.06694 -9.00306 H PND IE C 20 0 288 Europe/Dublin 2010-08-14 +3310786 Loughnalacka Loughnalacka 54.07389 -9.00444 H PND IE C 20 0 288 Europe/Dublin 2010-08-14 +3310787 Fossea Lough Fossea Lough 54.08361 -8.97139 H PND IE C 20 0 291 Europe/Dublin 2010-08-14 +3310788 Lough Alone Lough Alone 54.08889 -8.96639 H LK IE C 20 0 286 Europe/Dublin 2010-08-14 +3310789 Bunnyconnellan East Bunnyconnellan East 54.09139 -9.00028 L LCTY IE C 20 0 198 Europe/Dublin 2010-08-14 +3310790 Drumsheen Drumsheen 54.11 -8.99528 P PPL IE C 20 0 127 Europe/Dublin 2010-08-14 +3310791 Glenree Glenree 54.12333 -8.975 T VAL IE C 20 0 150 Europe/Dublin 2010-08-14 +3310792 Carrownaglogh Carrownaglogh 54.12139 -8.97944 P PPLL IE C 20 0 137 Europe/Dublin 2010-08-14 +3310793 Carrowleagh Carrowleagh 54.14111 -8.98972 S FRM IE C 20 0 111 Europe/Dublin 2010-08-14 +3310794 Fir Lough Fir Lough 54.125 -8.96389 H PND IE C 20 0 165 Europe/Dublin 2010-08-14 +3310795 Cloonlumny Cloonlumny 53.96194 -8.65861 P PPLL IE C 24 0 106 Europe/Dublin 2010-08-14 +3310796 Islandmore Islandmore 53.95528 -8.59444 P PPLL IE C 24 0 150 Europe/Dublin 2010-08-14 +3310797 Largan Largan 53.94806 -8.54694 P PPLL IE C 24 0 151 Europe/Dublin 2010-08-14 +3310798 Cuppanagh Bridge Cuppanagh Bridge 53.95833 -8.40333 P PPLL IE 00 0 75 Europe/Dublin 1998-09-01 +3310799 Breandrum Breandrum 53.9625 -8.33778 P PPLL IE C 24 0 76 Europe/Dublin 2010-08-14 +3310800 Tinacarra Tinacarra 53.96861 -8.37389 P PPLL IE C 24 0 75 Europe/Dublin 2010-08-14 +3310801 Cornaglia Cornaglia 53.98833 -8.35 P PPLL IE C 24 0 150 Europe/Dublin 2010-08-14 +3310802 Grange Beg Grange Beg 53.94833 -8.31139 P PPLL IE C 24 0 74 Europe/Dublin 2010-08-14 +3310803 Ballytrasna Ballytrasna 53.95889 -8.28778 P PPLL IE C 24 0 76 Europe/Dublin 2010-08-14 +3310804 Fort William House Fort William House 53.96583 -8.29667 S HSEC IE C 24 0 76 Europe/Dublin 2010-08-14 +3310805 Carrowmore Carrowmore 53.95167 -8.24 S FRM IE C 24 0 76 Europe/Dublin 2010-08-14 +3310806 Oatlands Oatlands 53.97028 -8.245 S EST IE C 24 0 76 Europe/Dublin 2010-08-14 +3310807 Mount Erris Mount Erris 53.97444 -8.26778 S EST IE C 24 0 76 Europe/Dublin 2010-08-14 +3310808 Lough Key Forest Park Lough Key Forest Park 53.98056 -8.2425 L PRK IE C 24 0 75 Europe/Dublin 2010-08-14 +3310809 Glencarne House Glencarne House 53.96111 -8.19333 S HSEC IE C 24 0 73 Europe/Dublin 2010-08-14 +3310810 Lough Keel Lough Keel 53.97944 -8.21611 H LK IE C 24 0 74 Europe/Dublin 2010-08-14 +3310811 Fin Lough Fin Lough 53.98528 -8.20639 H LK IE C 24 0 73 Europe/Dublin 2010-08-14 +3310812 Cloontykilla Castle Cloontykilla Castle 53.99972 -8.22167 S CSTL IE C 24 0 72 Europe/Dublin 2010-08-14 +3310813 Riversdale Riversdale 54.00361 -8.19583 P PPLL IE C 24 0 74 Europe/Dublin 2010-08-14 +3310814 Drumman’s Island Drumman's Island 53.99444 -8.23556 T ISL IE C 24 0 73 Europe/Dublin 2010-08-14 +3310815 Hogs Island Hogs Island 53.99944 -8.25944 T ISL IE C 24 0 74 Europe/Dublin 2010-08-14 +3310816 Bullock Island Bullock Island 54.00306 -8.23306 T ISL IE C 24 0 71 Europe/Dublin 2010-08-14 +3310817 Stag Island Stag Island 54.01083 -8.26639 T ISL IE C 24 0 73 Europe/Dublin 2010-08-14 +3310818 Corrigeenroe Corrigeenroe 54.02861 -8.27889 P PPL IE C 24 0 73 Europe/Dublin 2010-08-14 +3310819 Cornacarta Lough Cornacarta Lough 54.03361 -8.25528 H LK IE C 24 0 80 Europe/Dublin 2010-08-14 +3310820 Derrynasallagh Lough Derrynasallagh Lough 54.03889 -8.23806 H LK IE 00 0 113 Europe/Dublin 1998-09-01 +3310821 Smutternagh Smutternagh 54.01472 -8.22444 P PPLL IE C 24 0 73 Europe/Dublin 2010-08-14 +3310822 Clerragh Clerragh 54.02694 -8.22861 P PPLL IE C 24 0 146 Europe/Dublin 2010-08-14 +3310823 Aghoo Aghoo 54.03833 -8.22361 P PPL IE C 24 0 108 Europe/Dublin 2010-08-14 +3310824 Corderry Corderry 54.0575 -8.22111 S FRM IE C 24 0 66 Europe/Dublin 2010-08-14 +3310825 Tullytawen Tullytawen 54.07722 -8.17556 P PPLL IE C 24 0 188 Europe/Dublin 2010-08-14 +3310826 Corglass Corglass 54.04361 -8.10722 P PPLL IE C 24 0 76 Europe/Dublin 2010-08-14 +3310827 Carrickadraan Carrickadraan 54.05583 -8.10472 P PPLL IE C 24 0 76 Europe/Dublin 2010-08-14 +3310828 Mullaun Mullaun 54.06306 -8.09444 P PPLL IE C 24 0 75 Europe/Dublin 2010-08-14 +3310829 Cuilbalkeen Lough Cuilbalkeen Lough 54.05028 -8.0975 H LK IE C 24 0 75 Europe/Dublin 2010-08-14 +3310830 Nagalliagh Lough Nagalliagh Lough 54.05306 -8.085 H LK IE C 24 0 75 Europe/Dublin 2010-08-14 +3310831 Altagowlan Altagowlan 54.10833 -8.15278 P PPL IE C 24 0 170 Europe/Dublin 2010-08-14 +3310832 Greaghnafarna Greaghnafarna 54.10167 -8.095 P PPLL IE C 24 0 129 Europe/Dublin 2010-08-14 +3310833 Greagh Greagh 54.08944 -8.09444 P PPLL IE C 24 0 97 Europe/Dublin 2010-08-14 +3310834 Lough Allen Cottage Lough Allen Cottage 54.09611 -8.07472 S HSE IE C 24 0 58 Europe/Dublin 2010-08-14 +3310835 Mountallen Mountallen 54.07194 -8.09806 P PPL IE C 24 0 76 Europe/Dublin 2010-08-14 +3310836 O’Reilly’s Island O'Reilly's Island 54.07222 -8.0525 T ISL IE C 24 0 58 Europe/Dublin 2010-08-14 +3310837 Bellantra Bridge Bellantra Bridge 54.06194 -8.05861 L LCTY IE 00 0 58 Europe/Dublin 1998-09-01 +3310838 Galley Bridge Galley Bridge 54.05556 -8.06778 L LCTY IE 00 0 62 Europe/Dublin 1998-09-01 +3310839 Derreenargan Derreenargan 54.02833 -8.11833 P PPLL IE C 24 0 71 Europe/Dublin 2010-08-14 +3310840 Rehy Lough Rehy Lough 54.01806 -8.16083 H LK IE C 24 0 76 Europe/Dublin 2010-08-14 +3310841 Drumcunny Lough Drumcunny Lough 54.01389 -8.13333 H LK IE C 24 0 69 Europe/Dublin 2010-08-14 +3310842 Shanballybaun Lough Shanballybaun Lough 53.99417 -8.11028 H LK IE C 24 0 73 Europe/Dublin 2010-08-14 +3310843 Lough Naseer Lough Naseer 53.98139 -8.08694 H LK IE C 24 0 76 Europe/Dublin 2010-08-14 +3310844 Moyoran Moyoran 54.01694 -8.10889 P PPLL IE C 24 0 74 Europe/Dublin 2010-08-14 +3310845 Drumbrick Drumbrick 54.00611 -8.12528 P PPLL IE C 24 0 70 Europe/Dublin 2010-08-14 +3310846 Drumboylan Drumboylan 54.00833 -8.09722 P PPL IE C 24 0 75 Europe/Dublin 2010-08-14 +3310847 Clooncoose Clooncoose 53.98861 -8.12111 P PPLL IE C 24 0 73 Europe/Dublin 2010-08-14 +3310848 Derreenannagh Derreenannagh 53.97917 -8.09806 P PPLL IE C 24 0 76 Europe/Dublin 2010-08-14 +3310849 Cleaheen Cleaheen 53.96778 -8.09833 P PPLL IE C 24 0 76 Europe/Dublin 2010-08-14 +3310850 Woodbrook House Woodbrook House 53.95972 -8.16194 S HSEC IE C 24 0 72 Europe/Dublin 2010-08-14 +3310851 Springfield House Springfield House 53.9475 -8.16278 S HSEC IE C 24 0 76 Europe/Dublin 2010-08-14 +3310852 Tumna Tumna 53.95361 -8.1225 P PPLL IE C 24 0 71 Europe/Dublin 2010-08-14 +3310853 Falleens Falleens 53.955 -8.4675 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310854 Inch Island Inch Island 53.95028 -8.43417 T ISL IE C 25 0 72 Europe/Dublin 2010-08-14 +3310855 Derrymore Island Derrymore Island 53.94667 -8.42694 T ISL IE C 25 0 73 Europe/Dublin 2010-08-14 +3310856 Ardlona Ardlona 53.9475 -8.39194 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310857 Cuppanagh Cuppanagh 53.96028 -8.41806 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310858 Cloonloogh Cloonloogh 53.97389 -8.41361 P PPL IE C 25 0 90 Europe/Dublin 2010-08-14 +3310859 Mullaghroe Mullaghroe 53.98028 -8.46111 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310860 Mahanagh Mahanagh 53.97694 -8.45167 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310861 Clooneagh Clooneagh 54.00222 -8.46833 P PPLL IE C 25 0 91 Europe/Dublin 2010-08-14 +3310862 Sroove Sroove 53.96556 -8.50444 P PPLL IE C 25 0 115 Europe/Dublin 2010-08-14 +3310863 Cloonlaheen Cloonlaheen 53.98917 -8.52667 P PPLL IE C 25 0 81 Europe/Dublin 2010-08-14 +3310864 Annaghmore Annaghmore 53.97583 -8.56028 P PPL IE C 25 0 91 Europe/Dublin 2010-08-14 +3310865 Kilfree House Kilfree House 53.97556 -8.54083 S HSEC IE C 25 0 91 Europe/Dublin 2010-08-14 +3310866 Greyfield Greyfield 54.00583 -8.5 P PPLL IE C 25 0 80 Europe/Dublin 2010-08-14 +3310867 Liskeagh Liskeagh 54.00556 -8.43167 P PPLL IE C 25 0 116 Europe/Dublin 2010-08-14 +3310868 Culfadda Culfadda 54.0275 -8.47667 P PPLL IE C 25 0 78 Europe/Dublin 2010-08-14 +3310869 Kilshalvy Kilshalvy 54.01833 -8.52417 P PPL IE C 25 0 77 Europe/Dublin 2010-08-14 +3310870 Tunnagh Tunnagh 54.02528 -8.49917 P PPLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310871 Killavil Killavil 54.03917 -8.55083 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310872 Coagh Lough Coagh Lough 54.03778 -8.52944 H LK IE C 25 0 76 Europe/Dublin 2010-08-14 +3310873 Ardkeeran Ardkeeran 54.05333 -8.52556 P PPLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310874 Feenagh Lough Feenagh Lough 54.05778 -8.46917 H LK IE C 25 0 99 Europe/Dublin 2010-08-14 +3310875 Templevanny Lough Templevanny Lough 54.03556 -8.40556 H LK IE C 25 0 148 Europe/Dublin 2010-08-14 +3310876 Carrowcrory Carrowcrory 54.02417 -8.40056 P PPL IE C 25 0 128 Europe/Dublin 2010-08-14 +3310877 Corradoo Lodge Corradoo Lodge 54.02111 -8.35833 S HSEC IE C 25 0 134 Europe/Dublin 2010-08-14 +3310878 Ballaghboy Ballaghboy 54.01278 -8.32306 P PPLL IE C 25 0 149 Europe/Dublin 2010-08-14 +3310879 Carricknahorna Carricknahorna 54.03833 -8.37083 T PK IE C 25 0 199 Europe/Dublin 2010-08-14 +3310880 Bricklieve Mountains Bricklieve Mountains 54.04917 -8.37472 T MTS IE C 25 0 207 Europe/Dublin 2010-08-14 +3310881 Lough Availe Lough Availe 54.05611 -8.38944 H PND IE C 25 0 244 Europe/Dublin 2010-08-14 +3310882 Lough Labe Lough Labe 54.06083 -8.41833 H LK IE C 25 0 273 Europe/Dublin 2010-08-14 +3310883 Tower Hill House Tower Hill House 54.06639 -8.36167 S HSEC IE C 25 0 110 Europe/Dublin 2010-08-14 +3310884 Castlebaldwin Castlebaldwin 54.07917 -8.37611 P PPL IE C 25 0 102 Europe/Dublin 2010-08-14 +3310885 Drumcormick Drumcormick 54.07889 -8.41389 P PPL IE C 25 0 124 Europe/Dublin 2010-08-14 +3310886 Graniamore Graniamore 54.08417 -8.4475 P PPLL IE C 25 0 99 Europe/Dublin 2010-08-14 +3310887 Carrownacreevy Carrownacreevy 54.07472 -8.45056 P PPL IE C 25 0 157 Europe/Dublin 2010-08-14 +3310888 Loughymeenaghan Loughymeenaghan 54.09528 -8.39444 H LK IE C 25 0 76 Europe/Dublin 2010-08-14 +3310889 Ardloy Ardloy 54.10056 -8.405 P PPLL IE C 25 0 72 Europe/Dublin 2010-08-14 +3310890 Ardloy Lough Ardloy Lough 54.10389 -8.41 H PND IE C 25 0 75 Europe/Dublin 2010-08-14 +3310891 Kilmorgan Kilmorgan 54.10333 -8.4575 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310892 Lough Daven Lough Daven 54.03556 -8.40556 H LK IE C 25 0 148 Europe/Dublin 2010-08-14 +3310893 Owenbeg River Owenbeg River 54.06333 -8.51111 H STM IE C 25 0 75 Europe/Dublin 2010-08-14 +3310894 Emlagh Emlagh 54.06722 -8.49417 P PPLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310895 Ballyfahy Ballyfahy 54.04306 -8.58444 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310896 Kilturra House Kilturra House 54.02806 -8.60583 S HSEC IE C 25 0 79 Europe/Dublin 2010-08-14 +3310897 Doobeg House Doobeg House 54.03222 -8.62444 S HSEC IE C 25 0 80 Europe/Dublin 2010-08-14 +3310898 Roadstown Roadstown 54.05472 -8.61639 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310899 Achonry House Achonry House 54.06139 -8.63417 S HSEC IE C 25 0 77 Europe/Dublin 2010-08-14 +3310900 Church Hill Church Hill 54.07333 -8.61167 T HLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310901 Cloonahinshin Cloonahinshin 54.075 -8.59222 P PPLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310902 Achonry Achonry 54.08278 -8.66694 P PPL IE C 25 0 83 Europe/Dublin 2010-08-14 +3310903 Bellanascarrow Lough Bellanascarrow Lough 54.08972 -8.48889 H LK IE C 25 0 75 Europe/Dublin 2010-08-14 +3310904 Ardrea Lough Ardrea Lough 54.09833 -8.48417 H LK IE C 25 0 75 Europe/Dublin 2010-08-14 +3310905 Carrigans Carrigans 54.1075 -8.48972 P PPLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310906 Earlsfield Earlsfield 54.09556 -8.51389 S EST IE C 25 0 76 Europe/Dublin 2010-08-14 +3310907 Rathdoony More Rathdoony More 54.09861 -8.54972 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310908 Knockadalteen Knockadalteen 54.11417 -8.53306 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310909 Carrigans Carrigans 54.12139 -8.50083 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310910 Clooneen Clooneen 54.12472 -8.46611 P PPLL IE C 25 0 81 Europe/Dublin 2010-08-14 +3310911 Heathfield Heathfield 54.14306 -8.52417 S EST IE C 25 0 76 Europe/Dublin 2010-08-14 +3310912 Lough Corran Lough Corran 54.13778 -8.46167 H LK IE C 25 0 78 Europe/Dublin 2010-08-14 +3310913 Illaunnacogha Illaunnacogha 52.43444 -9.87472 T ISL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +3310914 Dirtane Dirtane 52.395 -9.83361 P PPL IE M 11 0 39 Europe/Dublin 2010-08-14 +3310915 Doondathen House Doondathen House 52.55583 -9.85 S HSEC IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310916 Toberscanavan Loughs Toberscanavan Loughs 54.16333 -8.48778 H LKS IE C 25 0 69 Europe/Dublin 2010-08-14 +3310917 Thorn Hill Thorn Hill 54.14639 -8.56722 S EST IE C 25 0 75 Europe/Dublin 2010-08-14 +3310918 Somerton Somerton 54.125 -8.5675 S EST IE C 25 0 74 Europe/Dublin 2010-08-14 +3310919 Cluid Cluid 54.1075 -8.54472 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310920 Cooney Cooney 54.20194 -8.545 P PPLL IE C 25 0 87 Europe/Dublin 2010-08-14 +3310921 Glen Glen 54.18944 -8.55361 P PPLL IE C 25 0 70 Europe/Dublin 2010-08-14 +3310922 Billa Billa 54.17556 -8.55694 P PPLL IE C 25 0 67 Europe/Dublin 2010-08-14 +3310923 Streamstown Streamstown 54.21361 -8.56472 P PPLL IE C 25 0 35 Europe/Dublin 2010-08-14 +3310924 Greenfield Cottage Greenfield Cottage 54.17417 -8.59167 S HSE IE C 25 0 75 Europe/Dublin 2010-08-14 +3310925 Illanbaun Illanbaun 54.20556 -8.56639 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310926 Carrownacarrick Carrownacarrick 54.15722 -8.605 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310927 Killoran Killoran 54.14 -8.64167 P PPLL IE C 25 0 81 Europe/Dublin 2010-08-14 +3310928 Rockfield Rockfield 54.16778 -8.62083 P PPL IE C 25 0 78 Europe/Dublin 2010-08-14 +3310929 Carrownabanny Lough Carrownabanny Lough 54.16028 -8.67722 H LK IE C 25 0 94 Europe/Dublin 2010-08-14 +3310930 Leyny Leyny 54.17 -8.60333 P PPLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310931 Killoran Lough Killoran Lough 54.14389 -8.63222 H LK IE C 25 0 78 Europe/Dublin 2010-08-14 +3310932 Cartron Lough Cartron Lough 54.13139 -8.64278 H LK IE C 25 0 82 Europe/Dublin 2010-08-14 +3310933 Drumdivnagh Lough Drumdivnagh Lough 54.14278 -8.61361 H LK IE C 25 0 76 Europe/Dublin 2010-08-14 +3310934 Fin Lough Fin Lough 54.13444 -8.61472 H LK IE C 25 0 76 Europe/Dublin 2010-08-14 +3310935 Carrowntawy Carrowntawy 54.13 -8.56972 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310936 Falnasoogaun Falnasoogaun Falnasoogaun,Ropefield 54.12556 -8.59111 P PPL IE IE C 25 0 76 Europe/Dublin 2010-08-14 +3310937 Claragh Scotch Claragh Scotch 54.12111 -8.64528 P PPLL IE C 25 0 81 Europe/Dublin 2010-08-14 +3310938 Carrowreilly Carrowreilly 54.10833 -8.63028 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310939 Portinch Portinch 54.09944 -8.575 P PPLL IE C 25 0 74 Europe/Dublin 2010-08-14 +3310940 Dermot & Grania’s Rock Dermot & Grania's Rock 52.55583 -9.95083 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310941 Black Rock Black Rock 52.57528 -9.91417 T RK IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310942 The Cabin The Cabin 52.55778 -9.92056 S HSE IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3310943 Lavagh Lavagh 54.10639 -8.68417 P PPL IE C 25 0 107 Europe/Dublin 2010-08-14 +3310944 Fodry Fodry 52.575 -9.89111 P PPLL IE M 03 0 1 Europe/Dublin 2010-08-14 +3310945 Moneen Moneen 52.58056 -9.86667 L LCTY IE M 03 0 1 Europe/Dublin 2010-08-14 +3310946 Gortnadrass Gortnadrass 54.12139 -8.67833 T HLL IE C 25 0 246 95 Europe/Dublin 2010-08-14 +3310947 Bridge of Ross Bridge of Ross 52.58583 -9.86667 P PPLL IE M 03 0 1 Europe/Dublin 2010-08-14 +3310948 Drumraine Drumraine 54.08917 -8.58944 P PPLL IE C 25 0 74 Europe/Dublin 2010-08-14 +3310949 Lislea Lislea 54.09472 -8.60417 S FRM IE C 25 0 74 Europe/Dublin 2010-08-14 +3310950 Killawee Lough Killawee Lough 54.09806 -8.63667 H LK IE C 25 0 75 Europe/Dublin 2010-08-14 +3310951 Doogloon Lough Doogloon Lough 54.08778 -8.64917 H LK IE C 25 0 74 Europe/Dublin 2010-08-14 +3310952 Tawnavoultry Tawnavoultry 54.0925 -8.67472 P PPLL IE C 25 0 81 Europe/Dublin 2010-08-14 +3310953 Toberscardan Toberscardan 54.07833 -8.69972 P PPLL IE C 25 0 140 Europe/Dublin 2010-08-14 +3310954 Cloonkeevy Cloonkeevy 54.08361 -8.56417 P PPL IE C 25 0 75 Europe/Dublin 2010-08-14 +3310955 Carrowreagh Carrowreagh 54.04 -8.7225 P PPLL IE C 25 0 91 Europe/Dublin 2010-08-14 +3310956 Moylough Moylough 54.03056 -8.69972 P PPL IE C 25 0 94 Europe/Dublin 2010-08-14 +3310957 Largan Largan 54.02028 -8.7125 P PPLL IE C 25 0 81 Europe/Dublin 2010-08-14 +3310958 Eskragh Eskragh 54.03194 -8.7875 P PPL IE C 25 0 69 Europe/Dublin 2010-08-14 +3310959 Rue Cross Roads Rue Cross Roads 54.04083 -8.76 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310960 Tullanaglug Tullanaglug 54.04639 -8.79361 P PPLL IE C 25 0 66 Europe/Dublin 2010-08-14 +3310961 Drimina Drimina 54.05861 -8.80333 P PPLL IE C 25 0 61 Europe/Dublin 2010-08-14 +3310962 Carrowreagh Carrowreagh 54.07278 -8.755 P PPLL IE C 25 0 79 Europe/Dublin 2010-08-14 +3310963 Farranduff Farranduff 54.00917 -8.72028 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310964 Fule Fule 53.9975 -8.72222 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310965 Broher Broher 53.98194 -8.77889 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310966 Ballyglass Ballyglass 53.99139 -8.78972 P PPL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310967 Sandyhill Sandyhill 53.97639 -8.79139 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3310968 Cloonlaughil Cloonlaughil 53.98028 -8.81639 P PPLL IE C 25 0 71 Europe/Dublin 2010-08-14 +3310969 Cully Cross Roads Cully Cross Roads 53.98833 -8.835 P PPLL IE C 25 0 61 Europe/Dublin 2010-08-14 +3310970 Curraghbonaun Curraghbonaun 54.00667 -8.82556 P PPLL IE C 25 0 62 Europe/Dublin 2010-08-14 +3310971 Clooningan Clooningan 54.01889 -8.80417 S FRM IE C 25 0 64 Europe/Dublin 2010-08-14 +3310972 Cloongoonagh Cloongoonagh 54.01528 -8.86972 P PPLL IE C 25 0 55 Europe/Dublin 2010-08-14 +3310973 Cooleen Cooleen 54.02528 -8.85861 P PPLL IE C 25 0 56 Europe/Dublin 2010-08-14 +3310974 Corray Corray 54.03833 -8.87333 P PPLL IE C 25 0 72 Europe/Dublin 2010-08-14 +3310975 Toorlestraun Toorlestraun 54.03972 -8.8425 P PPL IE C 25 0 58 Europe/Dublin 2010-08-14 +3310976 Gortermone Gortermone 54.04944 -8.82472 P PPLL IE C 25 0 59 Europe/Dublin 2010-08-14 +3310977 Annagh Annagh 54.05944 -8.82 P PPLL IE C 25 0 60 Europe/Dublin 2010-08-14 +3310978 Kincuillew Kincuillew 54.05583 -8.90306 P PPLL IE C 25 0 113 Europe/Dublin 2010-08-14 +3310979 Claddagh Claddagh 54.02278 -8.90806 P PPLL IE C 25 0 56 Europe/Dublin 2010-08-14 +3310980 Bellanamean River Bellanamean River 54.02917 -8.90389 H STM IE C 25 0 54 Europe/Dublin 2010-08-14 +3310981 Lough Talt River Lough Talt River 54.02361 -8.89222 H STM IE C 25 0 53 Europe/Dublin 2010-08-14 +3310982 Kilmacteige Kilmacteige 54.04083 -8.925 P PPL IE C 25 0 80 Europe/Dublin 2010-08-14 +3310983 Lough Naskea Lough Naskea 54.02861 -8.98389 H LK IE C 25 0 238 Europe/Dublin 2010-08-14 +3310984 Culdaly Culdaly 54.03583 -8.985 P PPLL IE C 25 0 268 Europe/Dublin 2010-08-14 +3310985 Lough Doo Lough Doo 54.03972 -8.99472 H LK IE C 25 0 256 Europe/Dublin 2010-08-14 +3310986 Lough Arubble Lough Arubble 54.045 -8.97333 H LK IE C 25 0 301 Europe/Dublin 2010-08-14 +3310987 Lough Anooran Lough Anooran 54.04722 -8.98194 H LK IE C 25 0 305 Europe/Dublin 2010-08-14 +3310988 Lough Nablaneybaun Lough Nablaneybaun 54.05 -9.00222 H PND IE C 25 0 288 Europe/Dublin 2010-08-14 +3310989 Lough Hure Lough Hure 54.0525 -8.97056 H PND IE C 25 0 323 Europe/Dublin 2010-08-14 +3310990 Lough Wattywee Lough Wattywee 54.06028 -8.97639 H LK IE C 25 0 338 Europe/Dublin 2010-08-14 +3310991 Lough Nalackagh Lough Nalackagh 54.07056 -8.95056 H LK IE C 25 0 310 Europe/Dublin 2010-08-14 +3310992 Lough Hoe Lough Hoe 54.07528 -8.96139 H LK IE C 25 0 318 Europe/Dublin 2010-08-14 +3310993 Lough Hoe River Lough Hoe River 54.07528 -8.91139 H STM IE C 25 0 148 Europe/Dublin 2010-08-14 +3310994 Lough Nabrickkeagh Lough Nabrickkeagh 54.08639 -8.88111 H LK IE C 25 0 150 Europe/Dublin 2010-08-14 +3310995 Gleneask Gleneask 54.09111 -8.92 P PPLL IE C 25 0 182 Europe/Dublin 2010-08-14 +3310996 Largan Largan 54.09083 -8.93417 P PPL IE C 25 0 253 Europe/Dublin 2010-08-14 +3310997 Tawnyany Tawnyany 54.08694 -8.93972 P PPLL IE C 25 0 253 Europe/Dublin 2010-08-14 +3310998 Gleneask House Gleneask House 54.10111 -8.91 S HSEC IE C 25 0 261 Europe/Dublin 2010-08-14 +3310999 Loughannagally Loughannagally 54.10417 -8.89833 H LK IE C 25 0 176 Europe/Dublin 2010-08-14 +3311000 Zion Hill Zion Hill 54.10583 -8.87972 P PPLL IE C 25 0 132 Europe/Dublin 2010-08-14 +3311001 Meenaglagh Meenaglagh 54.11361 -8.90028 L LCTY IE C 25 0 222 Europe/Dublin 2010-08-14 +3311002 Tawnaneilleen Tawnaneilleen 54.13056 -8.88667 L LCTY IE C 25 0 171 Europe/Dublin 2010-08-14 +3311003 Masshill Masshill 54.10472 -8.85556 P PPLL IE C 25 0 151 Europe/Dublin 2010-08-14 +3311004 Wellmount Lodge Wellmount Lodge 54.07611 -8.84972 S HSEC IE C 25 0 78 Europe/Dublin 2010-08-14 +3311005 Bellanograugh Bridge Bellanograugh Bridge 54.0725 -8.85083 P PPLL IE C 25 0 75 Europe/Dublin 2010-08-14 +3311006 Mullany’s Cross Mullany's Cross 54.06917 -8.86556 P PPLL IE C 25 0 96 Europe/Dublin 2010-08-14 +3311007 Metal Bridge Metal Bridge 54.07194 -8.81972 P PPLL IE C 25 0 61 Europe/Dublin 2010-08-14 +3311008 Owenaher River Owenaher River 54.06861 -8.82194 H STM IE C 25 0 61 Europe/Dublin 2010-08-14 +3311009 Sessuecommon Sessuecommon 54.08417 -8.815 P PPLL IE C 25 0 81 Europe/Dublin 2010-08-14 +3311010 Corsallagh Corsallagh 54.08167 -8.78611 P PPLL IE C 25 0 67 Europe/Dublin 2010-08-14 +3311011 Mullaghanarry Mullaghanarry 54.09111 -8.72111 P PPLL IE C 25 0 118 Europe/Dublin 2010-08-14 +3311012 Doomore Doomore 54.0925 -8.76444 P PPLL IE C 25 0 67 Europe/Dublin 2010-08-14 +3311013 Ballyglass Ballyglass 54.10778 -8.73556 P PPLL IE C 25 0 79 Europe/Dublin 2010-08-14 +3311014 Cornaleck Cornaleck 54.12222 -8.72556 P PPLL IE C 25 0 87 Europe/Dublin 2010-08-14 +3311015 Branchfield Branchfield 54.13389 -8.71639 P PPLL IE C 25 0 122 Europe/Dublin 2010-08-14 +3311016 Belra Belra 54.13167 -8.68 P PPLL IE C 25 0 92 Europe/Dublin 2010-08-14 +3311017 Carrowneden Carrowneden 54.13972 -8.69778 P PPLL IE C 25 0 101 Europe/Dublin 2010-08-14 +3311018 Loughanaboll Loughanaboll 54.13556 -8.85333 H LK IE C 25 0 237 Europe/Dublin 2010-08-14 +3311019 Lough Gal Lough Gal 54.14389 -8.85444 H LK IE C 25 0 243 Europe/Dublin 2010-08-14 +3311020 Lough Rumduff Lough Rumduff 54.14611 -8.84806 H LK IE C 25 0 267 Europe/Dublin 2010-08-14 +3311021 Cloonacool Loughs Cloonacool Loughs 54.13611 -8.82056 H LKS IE C 25 0 367 Europe/Dublin 2010-08-14 +3311022 Glendarragh Lough Glendarragh Lough 54.13167 -8.82444 H LK IE C 25 0 356 Europe/Dublin 2010-08-14 +3311023 Tullyvellin Loughs Tullyvellin Loughs 54.10972 -8.83111 H LKS IE C 25 0 291 Europe/Dublin 2010-08-14 +3311024 Mad River Mad River 54.10139 -8.77306 H STM IE C 25 0 68 Europe/Dublin 2010-08-14 +3311025 Kilcummin Kilcummin 54.12722 -8.76528 L LCTY IE C 25 0 237 Europe/Dublin 2010-08-14 +3311026 Laughil Laughil 54.14667 -8.77 T SPUR IE C 25 0 319 Europe/Dublin 2010-08-14 +3311027 Carrownacreevy Carrownacreevy 54.1475 -8.72444 L LCTY IE C 25 0 171 Europe/Dublin 2010-08-14 +3311028 Carho Carho 54.16139 -8.69806 L LCTY IE C 25 0 153 Europe/Dublin 2010-08-14 +3311029 Knockacappul Knockacappul 54.18417 -8.78944 T PK IE C 25 0 465 Europe/Dublin 2010-08-14 +3311030 Lough Minnaun Lough Minnaun 54.19361 -8.73167 H LK IE C 25 0 308 Europe/Dublin 2010-08-14 +3311031 Knockachree Knockachree 54.20333 -8.73944 T MT IE C 25 0 538 297 Europe/Dublin 2010-08-14 +3311032 Lough Achree Lough Achree 54.21389 -8.73972 H LK IE C 25 0 181 Europe/Dublin 2010-08-14 +3311033 Belcloghogy Loughs Belcloghogy Loughs 54.19417 -8.81028 H LKS IE C 25 0 259 Europe/Dublin 2010-08-14 +3311034 Kingsmountain Kingsmountain 54.21278 -8.805 L LCTY IE C 25 0 196 Europe/Dublin 2010-08-14 +3311035 Doonflin House Doonflin House 54.22167 -8.75944 S HSEC IE C 25 0 188 Europe/Dublin 2010-08-14 +3311036 Ladies Brae Ladies Brae 54.2075 -8.71694 T GAP IE C 25 0 224 Europe/Dublin 2010-08-14 +3311037 Cloonagh Cloonagh 54.20722 -8.7025 T HLL IE C 25 0 219 Europe/Dublin 2010-08-14 +3311038 Rathose Rathose 54.18222 -8.6025 P PPLL IE C 25 0 77 Europe/Dublin 2010-08-14 +3311039 Gortakeeran Gortakeeran 54.17722 -8.65889 P PPLL IE C 25 0 167 Europe/Dublin 2010-08-14 +3311040 Mullagh Lough Mullagh Lough 54.18472 -8.64806 H LK IE C 25 0 142 Europe/Dublin 2010-08-14 +3311041 Lough Keola Lough Keola 54.19583 -8.66639 H LK IE C 25 0 167 Europe/Dublin 2010-08-14 +3311042 Lough Brallee Lough Brallee 54.19861 -8.64917 H PND IE C 25 0 138 Europe/Dublin 2010-08-14 +3311043 Lough Bree Lough Bree 54.20556 -8.66778 H LK IE C 25 0 147 Europe/Dublin 2010-08-14 +3311044 Chapel Street Chapel Street 54.21583 -8.66056 P PPL IE C 25 0 81 Europe/Dublin 2010-08-14 +3311045 Lough Doo Lough Doo 54.21583 -8.625 H LK IE C 25 0 68 Europe/Dublin 2010-08-14 +3311046 Great Seal Bank Great Seal Bank 54.245 -8.605 H SHOL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311047 Castle Lodge Castle Lodge 54.24056 -8.63806 S HSE IE C 25 0 6 Europe/Dublin 2010-08-14 +3311048 Seafort House Seafort House 54.25917 -8.65806 S HSEC IE C 25 0 1 Europe/Dublin 2010-08-14 +3311049 Brockagh Brockagh 54.24861 -8.65944 P PPLL IE C 25 0 3 Europe/Dublin 2010-08-14 +3311050 Portroyal Portroyal 54.25028 -8.65417 S EST IE C 25 0 1 Europe/Dublin 2010-08-14 +3311051 Carrowloughan Lough Carrowloughan Lough 54.27333 -8.67139 H LK IE C 25 0 1 Europe/Dublin 2010-08-14 +3311052 Carrowculleen House Carrowculleen House 54.22528 -8.72222 S HSEC IE C 25 0 78 Europe/Dublin 2010-08-14 +3311053 Lecarrow Lecarrow 54.23111 -8.71861 P PPLL IE C 25 0 78 Europe/Dublin 2010-08-14 +3311054 Red Hill Red Hill 54.23 -8.73583 T HLL IE C 25 0 107 Europe/Dublin 2010-08-14 +3311055 Doonflin Lower Doonflin Lower 54.23944 -8.7575 P PPL IE C 25 0 79 Europe/Dublin 2010-08-14 +3311056 Toberawnaun Toberawnaun 54.25778 -8.72222 P PPLL IE C 25 0 33 Europe/Dublin 2010-08-14 +3311057 Dunmoran Dunmoran 54.26417 -8.72222 P PPLL IE C 25 0 14 Europe/Dublin 2010-08-14 +3311058 Ardogelly Ardogelly 54.25333 -8.77667 P PPLL IE C 25 0 24 Europe/Dublin 2010-08-14 +3311059 Carrowcaslan Carrowcaslan 54.25944 -8.76306 P PPLL IE C 25 0 10 Europe/Dublin 2010-08-14 +3311060 Kilrusheighter Kilrusheighter 54.26194 -8.77833 P PPL IE C 25 0 12 Europe/Dublin 2010-08-14 +3311061 Belturlin Belturlin 54.26861 -8.78306 P PPLL IE C 25 0 5 Europe/Dublin 2010-08-14 +3311062 Lugdoon Lugdoon 54.23083 -8.79972 P PPL IE C 25 0 96 Europe/Dublin 2010-08-14 +3311063 Doonbeakin Doonbeakin 54.23194 -8.83333 P PPLL IE C 25 0 102 Europe/Dublin 2010-08-14 +3311064 Altans Altans 54.24417 -8.84694 P PPLL IE C 25 0 43 Europe/Dublin 2010-08-14 +3311065 Charlesfort Charlesfort 54.24917 -8.86167 P PPL IE C 25 0 48 Europe/Dublin 2010-08-14 +3311066 Owenduff River Owenduff River 54.21056 -8.84667 H STM IE C 25 0 137 Europe/Dublin 2010-08-14 +3311067 Lough Nafullow Lough Nafullow 54.19833 -8.84194 H LK IE C 25 0 198 Europe/Dublin 2010-08-14 +3311068 Lough Anlaba Lough Anlaba 54.18139 -8.82944 H LK IE C 25 0 291 Europe/Dublin 2010-08-14 +3311069 Lough Croane Lough Croane 54.18083 -8.83333 H LK IE C 25 0 291 Europe/Dublin 2010-08-14 +3311070 Crowagh River Crowagh River 54.21111 -8.88 H STM IE C 25 0 116 Europe/Dublin 2010-08-14 +3311071 Owenminna River Owenminna River 54.22 -8.89583 H STM IE C 25 0 89 Europe/Dublin 2010-08-14 +3311072 Lough Minna Lough Minna 54.19917 -8.885 H PND IE C 25 0 134 Europe/Dublin 2010-08-14 +3311073 Farranmacfarrell House Farranmacfarrell House 54.22861 -8.8775 S HSEC IE C 25 0 87 Europe/Dublin 2010-08-14 +3311074 Cannaghanally Cannaghanally 54.23528 -8.91306 P PPL IE C 25 0 54 Europe/Dublin 2010-08-14 +3311075 Lackavarna Lackavarna 54.27167 -8.87444 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +3311076 Carrowmably Carrowmably 54.2625 -8.88111 P PPLL IE C 25 0 14 Europe/Dublin 2010-08-14 +3311077 Ballymeeny Ballymeeny 54.26806 -8.90361 P PPL IE C 25 0 4 Europe/Dublin 2010-08-14 +3311078 Clooneen Clooneen 54.26167 -8.925 P PPL IE C 25 0 12 Europe/Dublin 2010-08-14 +3311079 Killeenduff Killeenduff Killeenduff 54.28028 -8.93056 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311080 Castletown House Castletown House 54.29167 -8.98694 S HSEC IE C 25 0 1 Europe/Dublin 2010-08-14 +3311081 Ballybeg River Ballybeg River 54.29389 -8.97139 H STM IE C 25 0 1 Europe/Dublin 2010-08-14 +3311082 Patch Patch 54.24389 -8.91417 P PPLL IE C 25 0 41 Europe/Dublin 2010-08-14 +3311083 Camphill House Camphill House 54.23972 -8.92444 S HSEC IE C 25 0 49 Europe/Dublin 2010-08-14 +3311084 Owenbeg Owenbeg 54.23361 -8.94667 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3311085 Lough Nacreeva Lough Nacreeva 54.22389 -8.95111 H LK IE C 25 0 85 Europe/Dublin 2010-08-14 +3311086 Bellafarney Bellafarney 54.215 -8.93167 P PPLL IE C 25 0 83 Europe/Dublin 2010-08-14 +3311087 Owenykeevan River Owenykeevan River 54.25389 -8.96639 H STM IE C 25 0 50 Europe/Dublin 2010-08-14 +3311088 Finned Bridge Finned Bridge 54.28917 -8.99833 P PPLL IE C 25 0 5 Europe/Dublin 2010-08-14 +3311089 Carrowpadeen Carrowpadeen 54.2825 -8.98389 P PPLL IE C 25 0 15 Europe/Dublin 2010-08-14 +3311090 Finned River Finned River 54.29444 -8.99861 H STM IE C 25 0 1 Europe/Dublin 2010-08-14 +3311091 Cloghanaffrin Cloghanaffrin 54.29889 -8.98667 T RKS IE C 25 0 1 Europe/Dublin 2010-08-14 +3311092 Cooga Lodge Cooga Lodge 54.24944 -8.98667 S HSEC IE C 25 0 56 Europe/Dublin 2010-08-14 +3311093 Cloonycarney Cloonycarney 54.24222 -9.00056 P PPLL IE C 25 0 43 Europe/Dublin 2010-08-14 +3311094 Cuffs Town Cuffs Town 54.23583 -8.99611 P PPL IE C 25 0 58 Europe/Dublin 2010-08-14 +3311095 Lough Scorrew Lough Scorrew 54.21389 -8.97389 H LK IE C 25 0 84 Europe/Dublin 2010-08-14 +3311096 Owenykeevan Owenykeevan Owenykeevan,Tawnanaddoo 54.20444 -8.95472 L LCTY IE IE C 25 0 92 Europe/Dublin 2010-08-14 +3311097 Lough Ioe Lough Ioe 54.19722 -8.93944 H LK IE C 25 0 96 Europe/Dublin 2010-08-14 +3311098 Ardwoggy Lough Ardwoggy Lough 54.195 -8.96833 H PND IE C 25 0 94 Europe/Dublin 2010-08-14 +3311099 Letterunshin Letterunshin 54.18333 -8.92833 L LCTY IE C 25 0 110 Europe/Dublin 2010-08-14 +3311100 Owen River Owen River 54.19333 -8.98417 H STM IE C 25 0 85 Europe/Dublin 2010-08-14 +3311101 Carns River Carns River 54.19528 -8.98778 H STM IE C 25 0 85 Europe/Dublin 2010-08-14 +3311102 Carns Carns 54.18167 -8.9975 P PPLL IE C 25 0 90 Europe/Dublin 2010-08-14 +3311103 Tawnalghta Tawnalghta 54.17889 -8.97333 P PPLL IE C 25 0 107 Europe/Dublin 2010-08-14 +3311104 Clonnkeelaun Clonnkeelaun 54.16083 -8.99444 P PPLL IE C 25 0 94 Europe/Dublin 2010-08-14 +3311105 Lough Weeloge Lough Weeloge 54.15306 -8.95194 H PND IE C 25 0 145 Europe/Dublin 2010-08-14 +3311106 Lough Ahusey Lough Ahusey 54.15222 -8.92556 H PND IE C 25 0 137 Europe/Dublin 2010-08-14 +3311107 Gowlan River Gowlan River 54.19139 -8.93417 H STM IE C 25 0 102 Europe/Dublin 2010-08-14 +3311108 Owenwee River Owenwee River 54.17639 -8.91389 H STM IE C 25 0 120 Europe/Dublin 2010-08-14 +3311109 Ray’s Island Ray's Island 54.0475 -8.30694 T PEN IE C 25 0 54 Europe/Dublin 2010-08-14 +3311110 Annaghloy House Annaghloy House 54.05417 -8.30806 S HSEC IE C 25 0 59 Europe/Dublin 2010-08-14 +3311111 Muck Island Muck Island 54.05167 -8.31528 T ISL IE C 25 0 53 Europe/Dublin 2010-08-14 +3311112 Inishbeg Inishbeg 54.06139 -8.32167 T ISL IE C 25 0 55 Europe/Dublin 2010-08-14 +3311113 Inishmore Inishmore 54.07111 -8.32806 T ISL IE C 25 0 56 Europe/Dublin 2010-08-14 +3311114 Annaghgowla Island Annaghgowla Island 54.075 -8.34083 T ISL IE C 25 0 52 Europe/Dublin 2010-08-14 +3311115 Barroe Barroe 54.08056 -8.30722 P PPLL IE C 25 0 154 Europe/Dublin 2010-08-14 +3311116 Highwood Highwood 54.07222 -8.27861 P PPLL IE C 25 0 104 Europe/Dublin 2010-08-14 +3311117 Kilmactranny Kilmactranny 54.06361 -8.25583 P PPL IE C 25 0 77 Europe/Dublin 2010-08-14 +3311118 Coolmeen Coolmeen 54.07278 -8.24722 P PPLL IE C 25 0 77 Europe/Dublin 2010-08-14 +3311119 Annagh Lodge Annagh Lodge 54.09 -8.23167 S HSEC IE C 25 0 79 Europe/Dublin 2010-08-14 +3311120 Rover Rover 54.09167 -8.20889 P PPLL IE C 25 0 206 Europe/Dublin 2010-08-14 +3311121 Glen Glen 54.10389 -8.17667 P PPLL IE C 25 0 232 Europe/Dublin 2010-08-14 +3311122 Cabragh Cabragh 54.105 -8.26472 P PPLL IE C 25 0 108 Europe/Dublin 2010-08-14 +3311123 Straduff Straduff 54.11639 -8.22528 L LCTY IE C 25 0 236 Europe/Dublin 2010-08-14 +3311124 Tap Tap 54.12333 -8.24778 P PPLL IE C 25 0 247 Europe/Dublin 2010-08-14 +3311125 Moytirra Moytirra 54.08306 -8.275 P PPLL IE C 25 0 102 Europe/Dublin 2010-08-14 +3311126 Cammoge River Cammoge River 54.08889 -8.23111 H STM IE C 25 0 79 Europe/Dublin 2010-08-14 +3311127 O’Conor’s Monument O'Conor's Monument 54.15 -8.26861 S MNMT IE C 25 0 301 Europe/Dublin 2010-08-14 +3311128 Aghoo Aghoo 54.14806 -8.30167 P PPLL IE C 25 0 151 Europe/Dublin 2010-08-14 +3311129 Boleymount Boleymount 54.16361 -8.31056 P PPLL IE C 25 0 141 Europe/Dublin 2010-08-14 +3311130 Drumdoney Drumdoney 54.11917 -8.33028 P PPLL IE C 25 0 119 Europe/Dublin 2010-08-14 +3311131 Rockbrook House Rockbrook House 54.14528 -8.36667 S HSEC IE C 25 0 76 Europe/Dublin 2010-08-14 +3311132 Lough Meharth Lough Meharth 54.12694 -8.38472 H LK IE C 25 0 74 Europe/Dublin 2010-08-14 +3311133 Tunnagh Lough Tunnagh Lough 54.16556 -8.36139 H LK IE C 25 0 81 Europe/Dublin 2010-08-14 +3311134 Bloomfield House Bloomfield House 54.18028 -8.34306 S HSEC IE C 25 0 82 Europe/Dublin 2010-08-14 +3311135 Srananagh Srananagh 54.16861 -8.39333 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3311136 Knocknacross Knocknacross 54.11139 -8.35806 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3311137 Lough Bo Lough Bo 54.11306 -8.31333 H LK IE C 25 0 138 Europe/Dublin 2010-08-14 +3311138 Lough Nasool Lough Nasool 54.10611 -8.315 H LK IE C 25 0 146 Europe/Dublin 2010-08-14 +3311139 Ballinphull Ballinphull 54.10917 -8.31611 P PPLL IE C 25 0 138 Europe/Dublin 2010-08-14 +3311140 Lahordan Lahordan 54.09278 -8.30833 P PPLL IE C 25 0 152 Europe/Dublin 2010-08-14 +3311141 Derry Derry 54.08778 -8.32583 P PPLL IE C 25 0 91 Europe/Dublin 2010-08-14 +3311142 Bellarush Bridge Bellarush Bridge 54.09139 -8.35278 P PPLL IE C 25 0 72 Europe/Dublin 2010-08-14 +3311143 Heapstown House Heapstown House 54.09583 -8.34778 S HSEC IE C 25 0 83 Europe/Dublin 2010-08-14 +3311144 Ardagh House Ardagh House 54.12028 -8.37972 S HSEC IE C 25 0 73 Europe/Dublin 2010-08-14 +3311145 Douglas River Douglas River 54.13694 -8.41528 H STM IE C 25 0 73 Europe/Dublin 2010-08-14 +3311146 Lissaneeny Lissaneeny 54.16333 -8.39806 P PPLL IE C 25 0 76 Europe/Dublin 2010-08-14 +3311147 Lisconny House Lisconny House 54.15361 -8.45361 S HSEC IE C 25 0 68 Europe/Dublin 2010-08-14 +3311148 Cloghfin Lough Cloghfin Lough 54.16639 -8.44306 H LK IE C 25 0 64 Europe/Dublin 2010-08-14 +3311149 Lisconny Bridge Lisconny Bridge 54.15583 -8.46194 L LCTY IE C 25 0 68 Europe/Dublin 2010-08-14 +3311150 Dargan Lough Dargan Lough 54.20333 -8.42333 H LK IE C 25 0 77 Europe/Dublin 2010-08-14 +3311151 Doonally Doonally 54.18306 -8.41944 P PPLL IE C 25 0 61 Europe/Dublin 2010-08-14 +3311152 Ballygawley Ballygawley 54.19222 -8.44639 P PPL IE C 25 0 64 Europe/Dublin 2010-08-14 +3311153 Union Wood Union Wood 54.20583 -8.48083 V FRST IE C 25 0 96 Europe/Dublin 2010-08-14 +3311154 Castletown Castletown 54.19083 -8.48056 P PPL IE C 25 0 59 Europe/Dublin 2010-08-14 +3311155 Ballydawley Lough Ballydawley Lough 54.20833 -8.46778 H LK IE C 25 0 78 Europe/Dublin 2010-08-14 +3311156 Lough Dagea Lough Dagea 54.22528 -8.44194 H PND IE C 25 0 94 Europe/Dublin 2010-08-14 +3311157 Lough Lumman Lough Lumman 54.22222 -8.43083 H LK IE C 25 0 152 Europe/Dublin 2010-08-14 +3311158 Lahanagh Lahanagh 54.23917 -8.42361 P PPL IE C 25 0 105 Europe/Dublin 2010-08-14 +3311159 Aghamore Aghamore 54.23944 -8.44889 P PPLL IE C 25 0 67 Europe/Dublin 2010-08-14 +3311160 Killerry Killerry 54.23083 -8.35667 P PPLL IE C 25 0 63 Europe/Dublin 2010-08-14 +3311161 Innisfree Innisfree 54.24833 -8.35778 T ISL IE C 25 0 62 Europe/Dublin 2010-08-14 +3311162 Spring Villa Spring Villa 54.22278 -8.34333 S HSEC IE C 25 0 53 Europe/Dublin 2010-08-14 +3311163 Cottage Island Cottage Island 54.24556 -8.42528 T ISL IE C 25 0 62 Europe/Dublin 2010-08-14 +3311164 Church Island Church Island 54.25361 -8.39222 T ISL IE C 25 0 51 Europe/Dublin 2010-08-14 +3311165 Clogherrevagh House Clogherrevagh House 54.26139 -8.38556 S HSEC IE C 25 0 26 Europe/Dublin 2010-08-14 +3311166 Belladrihid Belladrihid Ballydrenid,Belladrihid 54.22139 -8.49972 P PPL IE IE C 25 0 90 Europe/Dublin 2010-08-14 +3311167 Kilmacowen Kilmacowen 54.22861 -8.51611 P PPLL IE C 25 0 55 Europe/Dublin 2010-08-14 +3311168 Breeoge Breeoge 54.23639 -8.5425 P PPLL IE C 25 0 36 Europe/Dublin 2010-08-14 +3311169 Eagle Lodge Eagle Lodge 54.23722 -8.50861 S HSE IE C 25 0 50 Europe/Dublin 2010-08-14 +3311170 Knocknahur Knocknahur 54.245 -8.53861 P PPL IE C 25 0 51 Europe/Dublin 2010-08-14 +3311171 Carrowmore Carrowmore 54.25333 -8.4975 P PPL IE C 25 0 30 Europe/Dublin 2010-08-14 +3311172 Belvoir Belvoir 54.25361 -8.44083 S EST IE C 25 0 37 Europe/Dublin 2010-08-14 +3311173 Prospect House Prospect House 54.25583 -8.46944 S HSEC IE C 25 0 24 Europe/Dublin 2010-08-14 +3311174 Grange House Grange House 54.25167 -8.55667 S HSEC IE C 25 0 134 Europe/Dublin 2010-08-14 +3311175 Seafield House Seafield House 54.24 -8.56722 S HSEC IE C 25 0 22 Europe/Dublin 2010-08-14 +3311176 Culleenamore House Culleenamore House 54.25611 -8.59222 S HSEC IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311177 Culleenduff Culleenduff 54.25278 -8.58417 P PPLL IE C 25 0 82 Europe/Dublin 2010-08-14 +3311178 Carrowbunnauna Carrowbunnauna 54.26639 -8.59833 P PPLL IE C 25 0 37 Europe/Dublin 2010-08-14 +3311179 Strandhill House Strandhill House 54.27833 -8.58167 S HSEC IE C 25 0 23 Europe/Dublin 2010-08-14 +3311180 Rathcarrick House Rathcarrick House 54.26694 -8.55694 S HSEC IE C 25 0 28 Europe/Dublin 2010-08-14 +3311181 Woodville House Woodville House 54.27722 -8.52056 S HSEC IE C 25 0 2 Europe/Dublin 2010-08-14 +3311182 Sea Mount House Sea Mount House 54.28389 -8.50111 S HSEC IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311183 Dorrins Strand Dorrins Strand 54.29 -8.57889 H FLTT IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311184 Maguins Island Maguins Island 54.28889 -8.60583 T ISL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311185 Deadman’s Point Deadman's Point 54.30917 -8.57389 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +3311186 Oyster Island Oyster Island 54.30417 -8.56444 T ISL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311187 Black Rock Black Rock 54.31028 -8.61806 T RK IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311188 Rosses Point Rosses Point 54.32222 -8.57361 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +3311189 Birds Rock Birds Rock 54.32306 -8.63833 T RK IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311190 Drumcliff River Drumcliff River 54.33 -8.50917 H STM IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311191 Ballybeg Ballybeg 54.31806 -8.54167 P PPLL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311192 Doonweelin Lough Doonweelin Lough 54.315 -8.54444 H LK IE C 25 0 1 Europe/Dublin 2010-08-14 +3311193 Cregg House Cregg House 54.30861 -8.51583 S HSEC IE C 25 0 1 Europe/Dublin 2010-08-14 +3311194 Cregg Cregg 54.30389 -8.51278 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311195 Summerhill Summerhill 54.30139 -8.49889 S EST IE C 25 0 4 Europe/Dublin 2010-08-14 +3311196 Auburn House Auburn House 54.29444 -8.47417 S HSEC IE C 25 0 19 Europe/Dublin 2010-08-14 +3311197 Magheraboy Magheraboy 54.26889 -8.49444 P PPL IE C 25 0 6 Europe/Dublin 2010-08-14 +3311198 Cleaveragh Cleaveragh 54.26278 -8.45111 S FRM IE C 25 0 19 Europe/Dublin 2010-08-14 +3311199 Owen House Owen House 54.27139 -8.43861 S HSEC IE C 25 0 16 Europe/Dublin 2010-08-14 +3311200 Ardagh Ardagh 54.27389 -8.45722 S EST IE C 25 0 11 Europe/Dublin 2010-08-14 +3311201 Colgagh Lough Colgagh Lough 54.27639 -8.39833 H LK IE C 25 0 79 Europe/Dublin 2010-08-14 +3311202 Ballure Ballure 54.26972 -8.39806 P PPLL IE C 25 0 53 Europe/Dublin 2010-08-14 +3311203 Ballynamona Ballynamona 54.27167 -8.3675 P PPLL IE C 25 0 29 Europe/Dublin 2010-08-14 +3311204 Formoyle Formoyle 54.29389 -8.37111 P PPLL IE C 25 0 188 Europe/Dublin 2010-08-14 +3311205 Glackbaun Glackbaun 54.30833 -8.38917 P PPLL IE C 25 0 257 Europe/Dublin 2010-08-14 +3311206 Willsborough Willsborough 54.29417 -8.44083 P PPL IE C 25 0 61 Europe/Dublin 2010-08-14 +3311207 Lisgorey Lisgorey 54.29 -8.42806 P PPLL IE C 25 0 59 Europe/Dublin 2010-08-14 +3311208 Doonally House Doonally House 54.30167 -8.435 S HSEC IE C 25 0 78 Europe/Dublin 2010-08-14 +3311209 Castlegal Castlegal 54.31583 -8.42417 P PPLL IE C 25 0 188 Europe/Dublin 2010-08-14 +3311210 Lugnagall Lugnagall 54.32889 -8.4225 P PPLL IE C 25 0 94 Europe/Dublin 2010-08-14 +3311211 Drum Drum 54.31389 -8.45167 P PPLL IE C 25 0 57 Europe/Dublin 2010-08-14 +3311212 Tully House Tully House 54.31056 -8.45556 S HSEC IE C 25 0 57 Europe/Dublin 2010-08-14 +3311213 Rathcormack Rathcormack 54.31833 -8.47667 P PPL IE C 25 0 21 Europe/Dublin 2010-08-14 +3311214 Keelogyboy Keelogyboy 54.3 -8.35167 T MT IE 00 0 440 269 Europe/Dublin 2006-01-16 +3311215 Tormore Tormore 54.35194 -8.40472 T PK IE C 25 0 388 203 Europe/Dublin 2010-08-14 +3311216 Keelty Keelty 54.34944 -8.48083 P PPL IE C 25 0 105 Europe/Dublin 2010-08-14 +3311217 Milltown Milltown 54.33944 -8.50111 P PPL IE C 25 0 31 Europe/Dublin 2010-08-14 +3311218 Shanid House Shanid House 52.53333 -9.1 S HSEC IE M 16 0 137 Europe/Dublin 2010-08-14 +3311219 Eagles Rock Eagles Rock 54.39083 -8.36 T RK IE 00 0 561 Europe/Dublin 1998-09-01 +3311220 Clogh Clogh 54.39167 -8.40083 L LCTY IE C 25 0 141 Europe/Dublin 2010-08-14 +3311221 Ardnaglass Upper Ardnaglass Upper 54.37917 -8.48111 P PPLL IE C 25 0 109 Europe/Dublin 2010-08-14 +3311222 Carrownamaddoo Carrownamaddoo 54.39056 -8.47 P PPLL IE C 25 0 77 Europe/Dublin 2010-08-14 +3311223 Moneylahan Moneylahan 54.39806 -8.45167 P PPL IE C 25 0 71 Europe/Dublin 2010-08-14 +3311224 Ballaghnatrillick Bridge Ballaghnatrillick Bridge 54.40333 -8.40417 P PPL IE C 25 0 77 Europe/Dublin 2010-08-14 +3311225 Ballaghnatrillick Ballaghnatrillick 54.41667 -8.39028 P PPL IE C 25 0 22 Europe/Dublin 2010-08-14 +3311226 Cormac Reagh’s Hole Cormac Reagh's Hole 54.40778 -8.36611 S CAVE IE C 25 0 368 Europe/Dublin 2010-08-14 +3311227 Ballaghnatrillick River Ballaghnatrillick River 54.42972 -8.38639 H STM IE 00 0 1 Europe/Dublin 1998-09-01 +3311228 Cloonty Lough Cloonty Lough 54.42722 -8.4225 H LK IE 00 0 1 Europe/Dublin 1998-09-01 +3311229 Cartronplank Cartronplank 54.42472 -8.45278 P PPLL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311230 Creevykeel Cross Roads Creevykeel Cross Roads 54.44167 -8.43444 P PPLL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311231 Castlegal Castlegal 54.45806 -8.40639 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311232 Skerrydoo Skerrydoo 54.46583 -8.40056 T CAPE IE C 25 0 1 Europe/Dublin 2010-08-14 +3311233 Bunduff Lough Bunduff Lough 54.44944 -8.43972 H LK IE C 25 0 1 Europe/Dublin 2010-08-14 +3311234 Bunduff Strand Bunduff Strand 54.45833 -8.44056 T BCH IE C 25 0 1 Europe/Dublin 2010-08-14 +3311235 Classie Bawn Castle Classie Bawn Castle 54.4575 -8.4675 S CSTL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311236 Trawalua Strand Trawalua Strand 54.44028 -8.47083 T BCH IE C 25 0 1 Europe/Dublin 2010-08-14 +3311237 Carrickfadda Carrickfadda 54.43806 -8.48444 T RKS IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311238 Drumfad Drumfad 54.41389 -8.46611 P PPLL IE C 25 0 10 Europe/Dublin 2010-08-14 +3311239 Milk Haven Milk Haven 54.41806 -8.5 P PPLL IE C 25 0 3 Europe/Dublin 2010-08-14 +3311240 Black Rock Black Rock 54.4225 -8.52889 T RK IE C 25 0 1 Europe/Dublin 2010-08-14 +3311241 Carricknaspania Carricknaspania 54.42806 -8.52972 T RK IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311242 Moneygold Moneygold 54.40611 -8.50944 P PPL IE C 25 0 15 Europe/Dublin 2010-08-14 +3311243 Grogagh Grogagh 54.38722 -8.50306 P PPLL IE C 25 0 52 Europe/Dublin 2010-08-14 +3311244 Mullaghnaneane Mullaghnaneane 54.37556 -8.53167 P PPL IE C 25 0 33 Europe/Dublin 2010-08-14 +3311245 Breaghwy Breaghwy 54.37667 -8.57694 P PPLL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311246 Rinnadoolish Rinnadoolish 54.40194 -8.57361 T RK IE C 25 0 1 Europe/Dublin 2010-08-14 +3311247 Inishnagor Inishnagor 54.40722 -8.53028 T ISLT IE C 25 0 9 Europe/Dublin 2010-08-14 +3311248 Shaddan Shaddan 54.46667 -8.6875 T RK IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311249 Kinavally Point Kinavally Point 54.43556 -8.67194 T PT IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311250 Ballinphull Ballinphull 54.36639 -8.58528 P PPLL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311251 Doonowney Doonowney 54.36722 -8.56806 P PPLL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311252 Cloghboley Cloghboley 54.34972 -8.60583 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311253 Ballintemple Ballintemple 54.34944 -8.63944 L LCTY IE C 25 0 1 Europe/Dublin 2010-08-14 +3311254 Knocklane Castle Knocklane Castle 54.35139 -8.67194 S CSTL IE C 25 0 2 Europe/Dublin 2010-08-14 +3311255 Cloonagh Cloonagh 54.36972 -8.63194 P PPLL IE C 25 0 1 Europe/Dublin 2010-08-14 +3311256 Raghly Raghly 54.33222 -8.64667 P PPL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311257 Lackmeeltaun Lackmeeltaun 54.36222 -8.67694 T PT IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311258 Ardboline Ardboline 54.34917 -8.69222 T ISL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311259 Portanagh Portanagh 54.34389 -8.68056 T RKS IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311260 Ardtermon Strand Ardtermon Strand 54.33667 -8.63639 T BCH IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3311261 Ballygugan Ballygugan 54.35028 -8.55806 L LCTY IE C 25 0 2 Europe/Dublin 2010-08-14 +3311262 Cashelgarran Cashelgarran 54.36333 -8.52306 P PPL IE C 25 0 52 Europe/Dublin 2010-08-14 +3311263 Yellow Strand Yellow Strand 54.34361 -8.65472 T BCH IE C 25 0 1 Europe/Dublin 2010-08-14 +3311264 Corryolus Corryolus 53.95472 -8.09167 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311265 Hartley House Hartley House 53.96722 -8.09 S HSEC IE C 14 0 77 Europe/Dublin 2010-08-14 +3311266 Castlecarra Castlecarra 53.95417 -8.06056 P PPLL IE C 14 0 74 Europe/Dublin 2010-08-14 +3311267 Killavanowl Killavanowl 53.95944 -8.0175 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311268 Drumlumman Drumlumman 53.96444 -8.05028 P PPLL IE C 14 0 74 Europe/Dublin 2010-08-14 +3311269 Bran Lough Bran Lough 53.97444 -8.05778 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +3311270 Carrickevy Lough Carrickevy Lough 53.98222 -8.06111 H LK IE C 14 0 74 Europe/Dublin 2010-08-14 +3311271 Ballinwing Ballinwing 53.99417 -8.03194 P PPLL IE C 14 0 78 Europe/Dublin 2010-08-14 +3311272 Kilmaddaroe Lough Kilmaddaroe Lough 53.96639 -8.03528 H LK IE C 14 0 71 Europe/Dublin 2010-08-14 +3311273 Costre Lough Costre Lough 53.9725 -8.01389 H LK IE C 14 0 93 Europe/Dublin 2010-08-14 +3311274 Effrinagh Lough Effrinagh Lough 53.97778 -7.9975 H LK IE C 14 0 84 Europe/Dublin 2010-08-14 +3311275 Annaghearly Lough Annaghearly Lough 53.98694 -7.99528 H LK IE C 14 0 83 Europe/Dublin 2010-08-14 +3311276 Gowel Gowel 53.98556 -8.00389 P PPL IE C 14 0 94 Europe/Dublin 2010-08-14 +3311277 Corlisheen Corlisheen 53.96528 -7.99 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311278 Lismoyle Lismoyle 53.94472 -8.005 P PPLL IE C 14 0 73 Europe/Dublin 2010-08-14 +3311279 Lisduff House Lisduff House 53.94861 -7.98167 S HSEC IE C 14 0 93 Europe/Dublin 2010-08-14 +3311280 Ballinamore and Ballyconnell Canal Ballinamore and Ballyconnell Canal 53.98806 -8.06917 H CNL IE 00 0 73 Europe/Dublin 1998-09-01 +3311281 Drumkierny Lodge Drumkierny Lodge 53.99861 -8.07333 S HSE IE C 14 0 72 Europe/Dublin 2010-08-14 +3311282 Keonbrook Keonbrook 54.00139 -8.00861 S EST IE C 14 0 71 Europe/Dublin 2010-08-14 +3311283 Kilclare Kilclare 54.00778 -8.01556 P PPLL IE C 14 0 71 Europe/Dublin 2010-08-14 +3311284 Mullaghboy Mullaghboy 54.00889 -7.96667 P PPLL IE C 14 0 69 Europe/Dublin 2010-08-14 +3311285 Lisconor Lisconor 54.01222 -8.01778 P PPLL IE C 14 0 69 Europe/Dublin 2010-08-14 +3311286 Lough Conway Lough Conway 54.01611 -7.99583 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311287 Aghakilmore Aghakilmore 54.02333 -7.99694 P PPLL IE C 14 0 77 Europe/Dublin 2010-08-14 +3311288 Annaghkeenly Annaghkeenly 53.99278 -7.96778 P PPLL IE C 14 0 67 Europe/Dublin 2010-08-14 +3311289 Aghakilconnell Lough Aghakilconnell Lough 53.99083 -7.97333 H LK IE C 14 0 66 Europe/Dublin 2010-08-14 +3311290 Carrickaport Lough Carrickaport Lough 54.03028 -7.985 H LK IE C 14 0 77 Europe/Dublin 2010-08-14 +3311291 Drumcong Drumcong 54.02806 -7.97222 P PPL IE C 14 0 72 Europe/Dublin 2010-08-14 +3311292 Drumkeelan Lough Drumkeelan Lough 54.02611 -8.04 H LK IE C 14 0 69 Europe/Dublin 2010-08-14 +3311293 Lustia Lough Lustia Lough 54.02972 -8.03639 H LK IE C 14 0 69 Europe/Dublin 2010-08-14 +3311294 Drumgorman Lough Drumgorman Lough 54.02139 -8.05806 H LK IE C 14 0 65 Europe/Dublin 2010-08-14 +3311295 Derrynahoo Lough Derrynahoo Lough 54.03167 -8.04861 H LK IE C 14 0 66 Europe/Dublin 2010-08-14 +3311296 Defner Defner 54.02528 -8.07472 P PPLL IE C 14 0 71 Europe/Dublin 2010-08-14 +3311297 Shancurry Shancurry 54.03778 -8.07722 P PPLL IE C 14 0 72 Europe/Dublin 2010-08-14 +3311298 Blackrock House Blackrock House 54.04667 -8.055 S HSEC IE C 14 0 65 Europe/Dublin 2010-08-14 +3311299 Aghnagollop Aghnagollop 54.03778 -8.02667 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311300 Acres Lough Acres Lough 54.03889 -8.05194 H LK IE C 14 0 66 Europe/Dublin 2010-08-14 +3311301 Dorrusawillin Dorrusawillin 54.05889 -8.00556 P PPL IE C 14 0 150 Europe/Dublin 2010-08-14 +3311302 Murhaun Murhaun 54.06417 -8.02861 P PPLL IE C 14 0 88 Europe/Dublin 2010-08-14 +3311303 Aghagrania Aghagrania 54.06861 -8.01694 P PPLL IE C 14 0 126 Europe/Dublin 2010-08-14 +3311304 Derrintober Derrintober 54.07417 -8.03667 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311305 Lavaur Lavaur 54.0775 -8.02528 P PPLL IE C 14 0 104 Europe/Dublin 2010-08-14 +3311306 Moher Moher 54.06694 -7.97389 P PPLL IE C 14 0 243 Europe/Dublin 2010-08-14 +3311307 Liscarban Liscarban 54.05583 -7.96889 P PPLL IE C 14 0 116 Europe/Dublin 2010-08-14 +3311308 Gortnawaun Gortnawaun 54.07472 -7.97 S FRM IE C 14 0 243 Europe/Dublin 2010-08-14 +3311309 Rocking Stone Rocking Stone 54.08472 -7.99833 T RK IE C 14 0 421 Europe/Dublin 2010-08-14 +3311310 Gubcormongan Gubcormongan 54.10028 -8.04222 T PT IE C 14 0 58 Europe/Dublin 2010-08-14 +3311311 Greaghnaguillaun Greaghnaguillaun 54.10639 -8.02389 P PPLL IE C 14 0 112 Europe/Dublin 2010-08-14 +3311312 Sradinagh Sradinagh 54.1125 -8.01583 S FRM IE C 14 0 156 Europe/Dublin 2010-08-14 +3311313 Stony River Stony River 54.11778 -8.02889 H STM IE C 14 0 56 Europe/Dublin 2010-08-14 +3311314 Cornamucklagh South Cornamucklagh South 54.12389 -8.0175 P PPLL IE C 14 0 79 Europe/Dublin 2010-08-14 +3311315 Drumristin Drumristin 54.13917 -8.00667 P PPLL IE C 14 0 135 Europe/Dublin 2010-08-14 +3311316 Kings Rock Kings Rock 54.12889 -7.97778 T SPUR IE C 14 0 324 Europe/Dublin 2010-08-14 +3311317 Fahy Fahy 54.14722 -8.02028 P PPLL IE C 14 0 65 Europe/Dublin 2010-08-14 +3311318 Lough Yugan Lough Yugan 54.15222 -8.02222 H LK IE C 14 0 69 Europe/Dublin 2010-08-14 +3311319 Altnagullion River Altnagullion River 54.15083 -7.97083 H STM IE C 14 0 235 Europe/Dublin 2010-08-14 +3311320 Kilgarriff Kilgarriff 54.16 -8.01444 P PPLL IE C 14 0 82 Europe/Dublin 2010-08-14 +3311321 Greaghnafarna Greaghnafarna 54.17139 -8.01194 P PPLL IE C 14 0 83 Europe/Dublin 2010-08-14 +3311322 Cortober Cortober 54.16528 -7.96833 L LCTY IE C 14 0 275 Europe/Dublin 2010-08-14 +3311323 The Playground The Playground 54.17333 -7.96389 T SLP IE C 14 0 421 Europe/Dublin 2010-08-14 +3311324 Lough Nambrack Lough Nambrack 54.16306 -7.92444 H LK IE 00 0 325 Europe/Dublin 1998-09-01 +3311325 Manter Eolus Lough Manter Eolus Lough 54.15472 -7.90639 H LK IE 00 0 361 Europe/Dublin 1998-09-01 +3311326 The Poorhouse The Poorhouse 54.13778 -7.9125 S HSE IE C 14 0 391 Europe/Dublin 2010-08-14 +3311327 Knockgorm Lough Knockgorm Lough 54.1625 -7.9175 H LK IE C 14 0 325 Europe/Dublin 2010-08-14 +3311328 Lough Nabellbeg Lough Nabellbeg 54.1025 -7.95167 H LK IE C 14 0 452 Europe/Dublin 2010-08-14 +3311329 Seltanahunshin Seltanahunshin 54.12 -7.87694 L LCTY IE C 14 0 294 Europe/Dublin 2010-08-14 +3311330 Altakeeran Altakeeran 54.11639 -7.905 P PPLL IE C 14 0 279 Europe/Dublin 2010-08-14 +3311331 Tullylackan Beg Tullylackan Beg 54.10861 -7.8875 P PPLL IE C 14 0 267 Europe/Dublin 2010-08-14 +3311332 Curraghnabania Curraghnabania 54.10194 -7.85722 P PPLL IE C 14 0 260 Europe/Dublin 2010-08-14 +3311333 Pottore Pottore 54.095 -7.87694 P PPLL IE C 14 0 211 Europe/Dublin 2010-08-14 +3311334 Boggaun Boggaun 54.08306 -7.89444 P PPLL IE C 14 0 128 Europe/Dublin 2010-08-14 +3311335 Kilnamaddyroe Kilnamaddyroe 54.08972 -7.83333 P PPLL IE C 14 0 108 Europe/Dublin 2010-08-14 +3311336 Glebe House Glebe House 54.07667 -7.85083 S HSEC IE C 14 0 133 Europe/Dublin 2010-08-14 +3311337 Cromlin Cromlin 54.08389 -7.83472 P PPL IE C 14 0 123 Europe/Dublin 2010-08-14 +3311338 Cornageeragh Cornageeragh 54.07694 -7.81139 P PPLL IE C 14 0 83 Europe/Dublin 2010-08-14 +3311339 Callowhill Lough Callowhill Lough 54.07056 -7.83722 H LK IE C 14 0 94 Europe/Dublin 2010-08-14 +3311340 Camagh Lough Camagh Lough 54.07194 -7.81444 H LK IE C 14 0 79 Europe/Dublin 2010-08-14 +3311341 Drumeanan Drumeanan 54.05556 -7.92 P PPL IE C 14 0 70 Europe/Dublin 2010-08-14 +3311342 Glebe House Glebe House 54.05083 -7.94972 S HSEC IE C 14 0 87 Europe/Dublin 2010-08-14 +3311343 Annadale Annadale 54.03722 -7.94389 P PPLL IE C 14 0 64 Europe/Dublin 2010-08-14 +3311344 Driney House Driney House 54.03 -7.95417 S HSEC IE C 14 0 65 Europe/Dublin 2010-08-14 +3311345 Corrachoosaun Lough Corrachoosaun Lough 54.04583 -7.90556 H LK IE C 14 0 59 Europe/Dublin 2010-08-14 +3311346 Lough Nacarriga Lough Nacarriga 54.04194 -7.89167 H LK IE C 14 0 62 Europe/Dublin 2010-08-14 +3311347 Boneill Boneill 54.03417 -7.9125 P PPLL IE C 14 0 52 Europe/Dublin 2010-08-14 +3311348 Kiltybardan Kiltybardan 54.05583 -7.87194 P PPLL IE C 14 0 87 Europe/Dublin 2010-08-14 +3311349 Turf Island Turf Island 54.05111 -7.8725 T ISL IE C 14 0 87 Europe/Dublin 2010-08-14 +3311350 Mayo Mayo 54.05139 -7.85361 P PPLL IE C 14 0 87 Europe/Dublin 2010-08-14 +3311351 Keshcarrigan Lough Keshcarrigan Lough 54.01361 -7.94111 H LK IE C 14 0 56 Europe/Dublin 2010-08-14 +3311352 Castlefore Lough Castlefore Lough 54.02361 -7.91056 H LK IE C 14 0 50 Europe/Dublin 2010-08-14 +3311353 Drumlaheen Lough Drumlaheen Lough 54.01389 -7.86472 H LK IE C 14 0 63 Europe/Dublin 2010-08-14 +3311354 Scardaun Lough Scardaun Lough 53.99833 -7.90833 H LK IE C 14 0 60 Europe/Dublin 2010-08-14 +3311355 Drumcollop Lough Drumcollop Lough 53.99722 -7.8925 H LK IE C 14 0 60 Europe/Dublin 2010-08-14 +3311356 Rowan Lough Rowan Lough 54.00167 -7.87167 H LK IE C 14 0 61 Europe/Dublin 2010-08-14 +3311357 Seltan Lough Seltan Lough 53.98917 -7.85944 H LK IE C 14 0 70 Europe/Dublin 2010-08-14 +3311358 Derrinkip Derrinkip 54.02667 -7.88472 P PPLL IE C 14 0 54 Europe/Dublin 2010-08-14 +3311359 Foxfield Foxfield 54.02417 -7.86028 P PPLL IE C 14 0 64 Europe/Dublin 2010-08-14 +3311360 Drumaragh Drumaragh 54.00528 -7.93306 P PPLL IE C 14 0 55 Europe/Dublin 2010-08-14 +3311361 Laheen House Laheen House 54.00556 -7.94861 S HSEC IE C 14 0 58 Europe/Dublin 2010-08-14 +3311362 Corderry Cross Roads Corderry Cross Roads 53.99278 -7.94694 P PPLL IE C 14 0 56 Europe/Dublin 2010-08-14 +3311363 Aghacashlawn River Aghacashlawn River 54.02833 -7.94028 H STM IE C 14 0 57 Europe/Dublin 2010-08-14 +3311364 Loughtown Lough Loughtown Lough 53.97472 -7.97861 H LK IE C 14 0 73 Europe/Dublin 2010-08-14 +3311365 Loughtown Loughtown 53.96917 -7.96194 P PPLL IE C 14 0 67 Europe/Dublin 2010-08-14 +3311366 Corlea Corlea 53.96139 -7.93667 P PPLL IE C 14 0 80 Europe/Dublin 2010-08-14 +3311367 Tagsh Tagsh 53.95389 -7.9675 T HLL IE C 14 0 88 Europe/Dublin 2010-08-14 +3311368 Drumrahan House Drumrahan House 53.94611 -7.92361 S HSEC IE C 14 0 138 Europe/Dublin 2010-08-14 +3311369 Stuck Cross Roads Stuck Cross Roads 53.95472 -7.91972 P PPLL IE C 14 0 151 Europe/Dublin 2010-08-14 +3311370 Attimanus Attimanus 53.97472 -7.93778 P PPLL IE C 14 0 66 Europe/Dublin 2010-08-14 +3311371 Kilnagross Kilnagross 53.98583 -7.95361 P PPL IE C 14 0 57 Europe/Dublin 2010-08-14 +3311372 Funshinagh Cross Roads Funshinagh Cross Roads 53.98417 -7.91167 P PPLL IE C 14 0 66 Europe/Dublin 2010-08-14 +3311373 Oghill Cross Roads Oghill Cross Roads 53.96583 -7.89444 P PPLL IE C 14 0 73 Europe/Dublin 2010-08-14 +3311374 Drumhany North Drumhany North 53.9475 -7.90083 P PPLL IE C 14 0 78 Europe/Dublin 2010-08-14 +3311375 Glebe House Glebe House 53.94694 -7.86639 S HSEC IE C 14 0 76 Europe/Dublin 2010-08-14 +3311376 Lisomadaun Lisomadaun 53.96194 -7.86972 P PPLL IE C 14 0 68 Europe/Dublin 2010-08-14 +3311377 Garvagh Garvagh 53.98028 -7.85722 P PPL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311378 Adoon Lough Adoon Lough 53.97361 -7.82833 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311379 Edergole Edergole 53.96417 -7.81417 P PPLL IE C 14 0 77 Europe/Dublin 2010-08-14 +3311380 Curraun Curraun 53.94806 -7.84417 P PPLL IE C 14 0 116 Europe/Dublin 2010-08-14 +3311381 Drumboher Drumboher 53.95 -7.83194 P PPLL IE C 14 0 109 Europe/Dublin 2010-08-14 +3311382 Drumna Drumna 53.97694 -7.78611 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311383 Halls Halls 53.98667 -7.80806 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311384 Greagh Cross Roads Greagh Cross Roads 53.99111 -7.78778 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311385 Annaghmaconway Lough Annaghmaconway Lough 53.94639 -7.8 H LK IE C 14 0 72 Europe/Dublin 2010-08-14 +3311386 Doonaran Doonaran 53.99306 -7.87 T HLL IE C 14 0 64 Europe/Dublin 2010-08-14 +3311387 Dunavinally Dunavinally 53.99111 -7.83056 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311388 Black Lough Black Lough 53.99 -7.76167 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +3311389 Lough Cam Lough Cam 53.98306 -7.75389 H LK IE C 14 0 74 Europe/Dublin 2010-08-14 +3311390 Drumroosk Lough Drumroosk Lough 53.99944 -7.82972 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +3311391 Lough Donogher Lough Donogher 53.99 -7.74667 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311392 Clonsarn House Clonsarn House 53.98139 -7.76 S HSEC IE C 14 0 74 Europe/Dublin 2010-08-14 +3311393 Sunnaghconnor Mill Sunnaghconnor Mill 53.97139 -7.7525 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311394 Killyfea Lough Killyfea Lough 53.95861 -7.78861 H LK IE C 14 0 74 Europe/Dublin 2010-08-14 +3311395 Gradoge Gradoge 53.95167 -7.70361 P PPL IE C 14 0 143 Europe/Dublin 2010-08-14 +3311396 Corraneary Corraneary 53.96028 -7.72444 P PPLL IE C 14 0 123 Europe/Dublin 2010-08-14 +3311397 Aghadruminsh Aghadruminsh 53.98056 -7.69806 P PPL IE C 14 0 103 Europe/Dublin 2010-08-14 +3311398 Fort Lough Fort Lough 53.98583 -7.71639 H LK IE C 14 0 91 Europe/Dublin 2010-08-14 +3311399 Killameen Lough Killameen Lough 53.99389 -7.7125 H LK IE C 14 0 83 Europe/Dublin 2010-08-14 +3311400 Black Lough Black Lough 53.99167 -7.69806 H LK IE C 14 0 87 Europe/Dublin 2010-08-14 +3311401 Corrala Lough Corrala Lough 54.00111 -7.70278 H LK IE C 14 0 81 Europe/Dublin 2010-08-14 +3311402 Arderry Arderry 54.00444 -7.7325 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311403 Sranadarragh Sranadarragh 54.0025 -7.77472 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311404 Gubs Gubs 54.01139 -7.79278 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311405 Drumcoura Drumcoura 54.02139 -7.75778 P PPL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311406 Drumlea Drumlea 54.01778 -7.72833 P PPL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311407 Cloonboygher Cloonboygher 54.02694 -7.69556 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311408 Drumlea Lough Drumlea Lough 54.01333 -7.73472 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +3311409 Keenheen Lough Keenheen Lough 54.01611 -7.74778 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +3311410 Drumcoura Lough Drumcoura Lough 54.02667 -7.75806 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311411 Mullaghboy Lough Mullaghboy Lough 54.03167 -7.725 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311412 Lough Awaddy Lough Awaddy 54.03333 -7.75306 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311413 Ardmeenan Lough Ardmeenan Lough 54.03722 -7.77389 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311415 Cuilmore Cuilmore 54.04 -7.74917 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311416 Willowfield House Willowfield House 54.04333 -7.78611 S HSEC IE C 14 0 76 Europe/Dublin 2010-08-14 +3311417 Aghoo Aghoo 54.02806 -7.79583 P PPL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311418 Edentinny Edentinny 54.03917 -7.83389 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311419 Lough Reane Lough Reane 54.03139 -7.84917 H LK IE C 14 0 72 Europe/Dublin 2010-08-14 +3311420 Fenagh Lough Fenagh Lough 54.01194 -7.83694 H LK IE C 24 0 73 Europe/Dublin 2010-08-14 +3311421 Georges Lough Georges Lough 54.06389 -7.815 H LK IE C 24 0 77 Europe/Dublin 2010-08-14 +3311422 Bolganard Lough Bolganard Lough 54.06194 -7.77028 H LK IE C 24 0 76 Europe/Dublin 2010-08-14 +3311423 Drumlonan Lough Drumlonan Lough 54.06222 -7.74972 H LK IE C 24 0 76 Europe/Dublin 2010-08-14 +3311424 Coryer Lough Coryer Lough 54.05944 -7.76306 H LK IE C 24 0 76 Europe/Dublin 2010-08-14 +3311425 Boceshil House Boceshil House 54.05667 -7.73917 S HSEC IE C 14 0 75 Europe/Dublin 2010-08-14 +3311426 Cleenaghoo Cleenaghoo 54.05583 -7.77861 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311427 Castlerogy House Castlerogy House 54.06028 -7.80639 S HSEC IE C 14 0 76 Europe/Dublin 2010-08-14 +3311428 Corraleehan Corraleehan 54.10833 -7.79667 P PPL IE C 14 0 80 Europe/Dublin 2010-08-14 +3311429 Derradda Derradda 54.0975 -7.78194 P PPLL IE C 14 0 74 Europe/Dublin 2010-08-14 +3311430 Drumgownagh Drumgownagh 54.08944 -7.79806 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311431 Lough Adorn Lough Adorn 54.08028 -7.77139 H LK IE C 14 0 75 Europe/Dublin 2010-08-14 +3311432 Lisroughly Lisroughly 54.08028 -7.74306 P PPL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311433 Dromore Lough Dromore Lough 54.07222 -7.78889 H LK IE C 14 0 76 Europe/Dublin 2010-08-14 +3311434 Glennan Glennan 54.06861 -7.76222 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311435 Drumreilly Drumreilly 54.06861 -7.71 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311436 Glebe Lough Glebe Lough 54.07722 -7.70139 H LK IE 00 0 75 Europe/Dublin 1998-09-01 +3311437 Knocks Knocks 54.08 -7.71667 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311438 Cherry Island Cherry Island 54.04944 -7.70028 T ISL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311439 Church Island Church Island 54.05 -7.71583 T ISL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311440 Annagh Upper Annagh Upper 54.18333 -8.04556 P PPL IE C 14 0 60 Europe/Dublin 2010-08-14 +3311441 Inishmagrath Island Inishmagrath Island 54.15528 -8.04306 T ISL IE C 14 0 58 Europe/Dublin 2010-08-14 +3311442 Drummans Island Drummans Island 54.15806 -8.09694 T ISL IE C 14 0 58 Europe/Dublin 2010-08-14 +3311443 Corry Lodge Corry Lodge 54.16194 -8.07472 S HSE IE C 14 0 58 Europe/Dublin 2010-08-14 +3311444 Corry Corry 54.17028 -8.06194 P PPL IE C 14 0 73 Europe/Dublin 2010-08-14 +3311445 Glebe House Glebe House 54.17167 -8.06972 S HSE IE C 14 0 81 Europe/Dublin 2010-08-14 +3311446 Mahanagh Lough Mahanagh Lough 54.17778 -8.055 H LK IE C 14 0 60 Europe/Dublin 2010-08-14 +3311447 Doolargy Glebe Doolargy Glebe 54.18139 -8.06528 S EST IE C 14 0 88 Europe/Dublin 2010-08-14 +3311448 Fingreagh Fingreagh 54.18611 -8.09972 P PPLL IE C 14 0 159 Europe/Dublin 2010-08-14 +3311449 Killadiskert Killadiskert 54.17722 -8.09944 P PPL IE C 14 0 114 Europe/Dublin 2010-08-14 +3311450 Annaghgerry Annaghgerry 54.1675 -8.1175 P PPLL IE C 14 0 59 Europe/Dublin 2010-08-14 +3311451 Corry Island Corry Island 54.14111 -8.09278 T ISL IE C 14 0 58 Europe/Dublin 2010-08-14 +3311452 Curraghs North Curraghs North 54.14167 -8.11556 P PPLL IE C 14 0 58 Europe/Dublin 2010-08-14 +3311453 Tullycorka Tullycorka 54.13278 -8.11833 P PPLL IE C 14 0 209 Europe/Dublin 2010-08-14 +3311454 Tarmon Tarmon 54.12556 -8.08472 P PPL IE C 14 0 58 Europe/Dublin 2010-08-14 +3311455 Seltannasaggart Seltannasaggart Corry Mountain,Seltannasaggart 54.12972 -8.15306 T MT IE C 14 0 327 Europe/Dublin 2010-08-10 +3311456 Boleymaguire Boleymaguire 54.14028 -8.20139 S FRM IE C 14 0 286 Europe/Dublin 2010-08-14 +3311457 Lough Nacroagh Lough Nacroagh 54.16167 -8.2375 H PND IE C 14 0 238 Europe/Dublin 2010-08-14 +3311458 Letter Letter 54.16417 -8.16972 P PPLL IE C 14 0 174 Europe/Dublin 2010-08-14 +3311459 Boleybaun Boleybaun 54.17333 -8.18028 L LCTY IE C 14 0 178 Europe/Dublin 2010-08-14 +3311460 Lugmeeltan Lugmeeltan 54.18528 -8.19167 P PPLL IE C 14 0 145 Europe/Dublin 2010-08-14 +3311461 Killavoggy Killavoggy 54.18528 -8.23333 P PPLL IE C 14 0 132 Europe/Dublin 2010-08-14 +3311462 Corratimore Corratimore 54.19528 -8.19972 P PPLL IE C 14 0 105 Europe/Dublin 2010-08-14 +3311463 Shivdelagh House Shivdelagh House 54.19583 -8.16389 S HSEC IE C 14 0 75 Europe/Dublin 2010-08-14 +3311464 Corchuill Corchuill 54.18861 -8.11889 P PPLL IE C 14 0 79 Europe/Dublin 2010-08-14 +3311465 Liscoghil Liscoghil 54.19694 -8.13472 P PPLL IE C 14 0 78 Europe/Dublin 2010-08-14 +3311466 Tullintowell Tullintowell 54.20472 -8.13667 P PPLL IE C 14 0 121 Europe/Dublin 2010-08-14 +3311467 Tawnylea Tawnylea 54.20639 -8.15556 P PPL IE C 14 0 66 Europe/Dublin 2010-08-14 +3311468 Knockacullion Knockacullion 54.21333 -8.16389 P PPLL IE C 14 0 86 Europe/Dublin 2010-08-14 +3311469 Diffagher River Diffagher River 54.16833 -8.10889 H STM IE C 14 0 58 Europe/Dublin 2010-08-14 +3311470 Beagh Beagh 54.19139 -8.26111 P PPL IE C 14 0 117 Europe/Dublin 2010-08-14 +3311471 Whitehall Whitehall 54.19611 -8.26667 S EST IE C 14 0 90 Europe/Dublin 2010-08-14 +3311472 Five Cross Roads Five Cross Roads 54.20194 -8.28583 P PPLL IE C 14 0 69 Europe/Dublin 2010-08-14 +3311473 Killanummery Killanummery 54.20972 -8.28694 P PPL IE C 14 0 64 Europe/Dublin 2010-08-14 +3311474 Cleen House Cleen House 54.2175 -8.26972 S HSEC IE C 14 0 60 Europe/Dublin 2010-08-14 +3311475 Cashel House Cashel House 54.21833 -8.23722 S HSEC IE C 14 0 69 Europe/Dublin 2010-08-14 +3311476 Drumkeel House Drumkeel House 54.2075 -8.2075 S HSEC IE C 14 0 76 Europe/Dublin 2010-08-14 +3311477 Belhavel House Belhavel House 54.21917 -8.20333 S RUIN IE C 14 0 75 Europe/Dublin 2010-08-14 +3311478 Drummury Drummury 54.22389 -8.2325 P PPL IE C 14 0 73 Europe/Dublin 2010-08-14 +3311479 Blast Hill Blast Hill 54.18222 -8.31278 T HLL IE C 14 0 132 104 Europe/Dublin 2010-08-14 +3311480 Drumduff Drumduff 54.19972 -8.32556 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311481 Stonepark Stonepark 54.24278 -8.32611 S EST IE C 14 0 43 Europe/Dublin 2010-08-14 +3311482 Friarstown House Friarstown House 54.23472 -8.32167 S HSEC IE C 14 0 45 Europe/Dublin 2010-08-14 +3311483 Drumlease Glebe House Drumlease Glebe House 54.23361 -8.27139 S HSEC IE C 14 0 56 Europe/Dublin 2010-08-14 +3311484 Fawn Fawn 54.24028 -8.2725 P PPL IE C 14 0 56 Europe/Dublin 2010-08-14 +3311485 Sriff Cottage Sriff Cottage 54.25722 -8.31306 S HSE IE C 14 0 65 Europe/Dublin 2010-08-14 +3311486 Lough Anarry Lough Anarry 54.25833 -8.27778 H LK IE C 14 0 82 Europe/Dublin 2010-08-14 +3311487 Carrigeencor Lough Carrigeencor Lough 54.25444 -8.26 H LK IE C 14 0 73 Europe/Dublin 2010-08-14 +3311488 Banagher Banagher 54.26639 -8.3225 P PPLL IE C 14 0 62 Europe/Dublin 2010-08-14 +3311489 O’Rourke’s Table O'Rourke's Table 54.27194 -8.29778 T HLL IE C 14 0 134 Europe/Dublin 2010-08-14 +3311490 Newtown Manor Newtown Manor 54.27556 -8.32806 S EST IE C 14 0 121 Europe/Dublin 2010-08-14 +3311491 Doon Lough Doon Lough 54.27806 -8.31389 H LK IE C 14 0 160 Europe/Dublin 2010-08-14 +3311492 Leckaun Leckaun 54.27722 -8.28 P PPLL IE C 14 0 164 Europe/Dublin 2010-08-14 +3311493 The Doons The Doons 54.28861 -8.32861 L LCTY IE C 14 0 188 Europe/Dublin 2010-08-14 +3311494 Morerah Morerah 54.28944 -8.28083 P PPLL IE C 14 0 203 Europe/Dublin 2010-08-14 +3311495 Killenna Killenna 54.29639 -8.25222 P PPLL IE C 14 0 187 Europe/Dublin 2010-08-14 +3311496 Leean Mountain Leean Mountain 54.3 -8.29778 T MT IE C 14 0 418 300 Europe/Dublin 2010-08-14 +3311497 Hangman’s Hill Hangman's Hill 54.31111 -8.33389 T SPUR IE C 14 0 201 Europe/Dublin 2010-08-14 +3311498 Crockauns Crockauns 54.31806 -8.37194 T MT IE 00 0 350 Europe/Dublin 1998-09-01 +3311499 Gurteen Gurteen 54.32583 -8.31389 P PPL IE C 14 0 149 Europe/Dublin 2010-08-14 +3311500 Rocktown Rocktown 54.32694 -8.27444 P PPLL IE C 14 0 152 Europe/Dublin 2010-08-14 +3311501 Glencar Lodge Glencar Lodge 54.33639 -8.34889 S HSE IE C 14 0 123 Europe/Dublin 2010-08-14 +3311502 Diffreen River Diffreen River 54.33833 -8.36611 H STM IE C 14 0 79 Europe/Dublin 2010-08-14 +3311503 Corglass Corglass 54.35139 -8.35694 T SLP IE C 14 0 401 Europe/Dublin 2010-08-14 +3311504 Cloonaquin Cloonaquin 54.28306 -8.21139 P PPLL IE C 14 0 62 Europe/Dublin 2010-08-14 +3311505 Shanvaus Shanvaus 54.31111 -8.2275 P PPLL IE C 14 0 130 Europe/Dublin 2010-08-14 +3311506 Shanvaus River Shanvaus River 54.29 -8.20833 H STM IE C 14 0 63 Europe/Dublin 2010-08-14 +3311507 Owenmore River Owenmore River 54.30333 -8.19639 H STM IE C 14 0 69 Europe/Dublin 2010-08-14 +3311508 Boggaun Boggaun 54.26472 -8.2 P PPLL IE C 14 0 127 Europe/Dublin 2010-08-14 +3311509 Gortgarrigan Gortgarrigan 54.25639 -8.23417 P PPLL IE C 14 0 63 Europe/Dublin 2010-08-14 +3311510 Lisgorman Lisgorman 54.24944 -8.20611 P PPLL IE C 14 0 129 Europe/Dublin 2010-08-14 +3311511 Skeanada River Skeanada River 54.24806 -8.24056 H STM IE C 14 0 66 Europe/Dublin 2010-08-14 +3311512 Boihy House Boihy House 54.26611 -8.24667 S HSEC IE C 14 0 60 Europe/Dublin 2010-08-14 +3311513 Gortermone House Gortermone House 54.24583 -8.19278 S HSEC IE C 14 0 151 Europe/Dublin 2010-08-14 +3311514 Meenymore Meenymore 54.26222 -8.14222 P PPLL IE C 14 0 204 Europe/Dublin 2010-08-14 +3311515 Tullyskeherny Tullyskeherny 54.28639 -8.15444 P PPLL IE C 14 0 158 Europe/Dublin 2010-08-14 +3311516 Hollymount Hollymount 54.29194 -8.13417 S EST IE C 14 0 133 Europe/Dublin 2010-08-14 +3311517 O’Donnell’s Rock O'Donnell's Rock 54.27028 -8.18139 T RK IE C 14 0 269 Europe/Dublin 2010-08-14 +3311518 Tullinloughan Lough Tullinloughan Lough 54.23861 -8.15556 H LK IE C 14 0 188 Europe/Dublin 2010-08-14 +3311519 Ummera Ummera 54.19361 -8.07639 P PPLL IE C 14 0 203 Europe/Dublin 2010-08-14 +3311520 Shass Shass 54.19889 -8.05194 P PPLL IE C 14 0 82 Europe/Dublin 2010-08-14 +3311521 Ross Ross 54.20667 -8.04444 P PPLL IE C 14 0 77 Europe/Dublin 2010-08-14 +3311522 Aughrim Aughrim 54.22056 -8.04722 P PPLL IE C 14 0 126 Europe/Dublin 2010-08-14 +3311523 Dawn of Hope Bridge Dawn of Hope Bridge 54.20306 -8.08444 P PPLL IE C 14 0 248 Europe/Dublin 2010-08-14 +3311524 Killooman Lough Killooman Lough 54.2275 -8.07194 H LK IE C 14 0 220 Europe/Dublin 2010-08-14 +3311525 Gowlaun Gowlaun 54.22028 -8.12139 L LCTY IE C 14 0 297 Europe/Dublin 2010-08-14 +3311526 Dergvone Dergvone 54.23306 -8.06583 P PPLL IE C 14 0 162 Europe/Dublin 2010-08-14 +3311527 Lackagh Lough Lackagh Lough 54.23778 -8.12361 H LK IE C 14 0 330 Europe/Dublin 2010-08-14 +3311528 Lough Strand Lough Strand 54.2425 -8.10667 H PND IE C 14 0 310 Europe/Dublin 2010-08-14 +3311529 Lough Kip Lough Kip 54.25361 -8.10389 H LK IE C 14 0 283 Europe/Dublin 2010-08-14 +3311530 Lough Avanny Lough Avanny 54.26167 -8.09306 H LK IE C 14 0 258 Europe/Dublin 2010-08-14 +3311531 Doo Lough Doo Lough 54.26 -8.07306 H LK IE C 14 0 297 Europe/Dublin 2010-08-14 +3311532 Lough Natire Lough Natire 54.25639 -8.05139 H LK IE C 14 0 302 Europe/Dublin 2010-08-14 +3311533 Blind Lough Blind Lough 54.25806 -8.03583 H PND IE C 14 0 309 Europe/Dublin 2010-08-14 +3311534 Lough Nagloghderg Lough Nagloghderg 54.25167 -8.0075 H LK IE C 14 0 322 Europe/Dublin 2010-08-14 +3311535 Lough Naweeloge Lough Naweeloge 54.255 -8.00917 H LK IE C 14 0 332 Europe/Dublin 2010-08-14 +3311536 Tullinwillin Tullinwillin 54.22417 -8.16917 P PPLL IE C 14 0 119 Europe/Dublin 2010-08-14 +3311537 Glenfarne Hall Glenfarne Hall 54.3 -7.97472 S EST IE C 14 0 69 Europe/Dublin 2010-08-14 +3311538 Brockagh Brockagh 54.27556 -7.98167 P PPLL IE C 14 0 85 Europe/Dublin 2010-08-14 +3311539 Meenkeeragh Meenkeeragh 54.27306 -8.0025 P PPLL IE C 14 0 182 Europe/Dublin 2010-08-14 +3311540 Bronagh Bronagh 54.26778 -8.02722 L LCTY IE C 14 0 185 Europe/Dublin 2010-08-14 +3311541 Sravrannies Sravrannies 54.28 -8.01833 P PPLL IE C 14 0 148 Europe/Dublin 2010-08-14 +3311542 Sradrine Sradrine 54.295 -8.02056 P PPLL IE C 14 0 188 Europe/Dublin 2010-08-14 +3311543 Thur Mountain Thur Mountain 54.31306 -8.02944 T MT IE C 14 0 437 305 Europe/Dublin 2010-08-14 +3311544 Cullentragh Lough Cullentragh Lough 54.30611 -8.03528 H LK IE C 14 0 280 Europe/Dublin 2010-08-14 +3311545 Lough Aderreen Lough Aderreen 54.30861 -7.99472 H LK IE C 14 0 144 Europe/Dublin 2010-08-14 +3311547 Corractoona Corractoona 54.3375 -7.99083 P PPLL IE C 14 0 75 Europe/Dublin 2010-08-14 +3311548 Lattone Lough Lattone Lough Lattone Lough 54.35889 -8.00028 H LK IE 00 0 100 Europe/Dublin 2010-08-10 +3311549 Sraduffy River Sraduffy River 54.36833 -8.05306 H STM IE C 14 0 76 Europe/Dublin 2010-08-14 +3311550 Lattone River Lattone River 54.38056 -8.06694 H STM IE C 14 0 71 Europe/Dublin 2010-08-14 +3311551 Killea Killea 54.34833 -8.08722 P PPL IE C 14 0 270 Europe/Dublin 2010-08-14 +3311552 Dough Mountain Dough Mountain 54.33333 -8.09861 T MT IE C 14 0 461 421 Europe/Dublin 2010-08-14 +3311553 Lissinagroagh Lissinagroagh 54.31722 -8.10667 P PPL IE C 14 0 312 Europe/Dublin 2010-08-14 +3311554 Cornavannoge River Cornavannoge River 54.29972 -7.96139 H STM IE C 14 0 73 Europe/Dublin 2010-08-14 +3311555 Briscloonagh Briscloonagh 54.28861 -8.08194 P PPLL IE C 14 0 140 Europe/Dublin 2010-08-14 +3311556 Fortland House Fortland House 54.30528 -8.11333 S HSEC IE C 14 0 140 Europe/Dublin 2010-08-14 +3311557 Earlsfield Earlsfield 54.30333 -8.15111 S EST IE C 14 0 119 Europe/Dublin 2010-08-14 +3311558 Munakill Loughs Munakill Loughs 54.2975 -8.10417 H LKS IE C 14 0 127 Europe/Dublin 2010-08-14 +3311559 Gortnalibbert Gortnalibbert 54.27528 -8.10667 L LCTY IE C 14 0 188 Europe/Dublin 2010-08-14 +3311560 Munnagashel Munnagashel 54.28333 -8.13083 P PPLL IE C 14 0 163 Europe/Dublin 2010-08-14 +3311561 Glenboy Glenboy 54.28972 -8.12 P PPL IE C 14 0 139 Europe/Dublin 2010-08-14 +3311562 Castlemoyle House Castlemoyle House 54.31639 -8.12778 S HSEC IE C 14 0 160 Europe/Dublin 2010-08-14 +3311563 Crocknagapple Crocknagapple 54.35056 -8.1725 T MT IE C 14 0 375 296 Europe/Dublin 2010-08-14 +3311564 Faughary Faughary 54.33556 -8.14833 P PPLL IE C 14 0 277 Europe/Dublin 2010-08-14 +3311565 Ballagh Cottage Ballagh Cottage 54.36806 -8.13444 S HSE IE C 14 0 154 Europe/Dublin 2010-08-14 +3311566 Lough Adunny Lough Adunny 54.36278 -8.16028 H LK IE C 14 0 242 Europe/Dublin 2010-08-14 +3311567 Horse Lough Horse Lough 54.36139 -8.17194 H PND IE C 14 0 275 Europe/Dublin 2010-08-14 +3311568 Sandy Lough Sandy Lough 54.35556 -8.17083 H LK IE C 14 0 296 Europe/Dublin 2010-08-14 +3311569 Cloghmeen Cloghmeen 54.36667 -8.18667 L LCTY IE C 14 0 298 Europe/Dublin 2010-08-14 +3311570 Folly Lodge Folly Lodge 54.35889 -8.19917 S HSE IE C 14 0 303 Europe/Dublin 2010-08-14 +3311571 Mullanyduffy Mullanyduffy 54.33083 -8.17028 P PPLL IE C 14 0 135 Europe/Dublin 2010-08-14 +3311572 Lisnabrack Lisnabrack 54.32778 -8.19556 P PPLL IE C 14 0 107 Europe/Dublin 2010-08-14 +3311573 New Bridge New Bridge 54.3225 -8.20028 P PPLL IE C 14 0 76 Europe/Dublin 2010-08-14 +3311574 Gortinar Gortinar 54.33778 -8.22667 P PPLL IE C 14 0 82 Europe/Dublin 2010-08-14 +3311575 Tully Tully 54.34917 -8.25139 P PPL IE C 14 0 146 Europe/Dublin 2010-08-14 +3311576 Leckanarainey Leckanarainey 54.35722 -8.24472 P PPL IE C 14 0 114 Europe/Dublin 2010-08-14 +3311577 Saint Catherine’s Cottage Saint Catherine's Cottage 54.36083 -8.26667 S HSE IE C 14 0 145 Europe/Dublin 2010-08-14 +3311578 Peakadaw Peakadaw 54.37028 -8.31556 T SPUR IE C 14 0 233 Europe/Dublin 2010-08-14 +3311579 Wild Cats Hole Wild Cats Hole 54.35667 -8.23028 S CAVE IE C 14 0 178 Europe/Dublin 2010-08-14 +3311580 Balinlig Balinlig 54.37722 -8.32778 P PPLL IE C 14 0 188 Europe/Dublin 2010-08-14 +3311581 Cloontyprughlish Cloontyprughlish 54.38472 -8.32333 P PPLL IE C 14 0 184 Europe/Dublin 2010-08-14 +3311582 Keeloges Keeloges 54.40167 -8.30361 P PPLL IE C 14 0 158 Europe/Dublin 2010-08-14 +3311583 Glenade House Glenade House 54.41417 -8.30333 S HSEC IE C 14 0 131 Europe/Dublin 2010-08-14 +3311584 Aroo Lough Aroo Lough 54.40611 -8.25083 H LK IE C 14 0 423 Europe/Dublin 2010-08-14 +3311585 Lough Aganny Lough Aganny 54.39028 -8.24 H LK IE C 14 0 375 Europe/Dublin 2010-08-14 +3311586 Aghadunvane Aghadunvane 54.42611 -8.26694 L LCTY IE C 25 0 188 Europe/Dublin 2010-08-14 +3311587 Brook Hill Brook Hill 54.43028 -8.29639 S EST IE C 14 0 119 Europe/Dublin 2010-08-14 +3311588 Unshinagh Unshinagh 54.43833 -8.31389 P PPL IE C 14 0 55 Europe/Dublin 2010-08-14 +3311589 Balloor Balloor 54.44 -8.38111 P PPL IE C 14 0 1 Europe/Dublin 2010-08-14 +3311590 Derreenavoggy Lough Derreenavoggy Lough 54.43556 -8.3675 H LK IE C 14 0 1 Europe/Dublin 2010-08-14 +3311591 Liscally Liscally 54.43444 -8.39972 P PPLL IE C 14 0 1 Europe/Dublin 2010-08-14 +3311592 Black River Black River 54.42 -8.32361 H STM IE C 14 0 53 Europe/Dublin 2010-08-14 +3311593 Agharroo Agharroo 54.4575 -8.32944 P PPLL IE C 14 0 2 Europe/Dublin 2010-08-14 +3311594 Bunduff Bridge Bunduff Bridge 54.46389 -8.37556 P PPLL IE C 14 0 1 Europe/Dublin 2010-08-14 +3311595 Ward House Ward House 54.46472 -8.34361 S HSEC IE C 14 0 1 Europe/Dublin 2010-08-14 +3311596 Gubacreeny Gubacreeny 54.45944 -8.28222 P PPLL IE C 14 0 1 Europe/Dublin 2010-08-14 +3311597 Lareen House Lareen House 54.45583 -8.24111 S HSEC IE C 14 0 21 Europe/Dublin 2010-08-14 +3311598 Derryherk House Derryherk House 54.46222 -8.20806 S HSEC IE C 14 0 65 Europe/Dublin 2010-08-14 +3311599 Askill Askill 54.45667 -8.17389 P PPL IE C 14 0 41 Europe/Dublin 2010-08-14 +3311600 Rosfriar Point Rosfriar Point 54.45139 -8.23 T PT IE C 14 0 25 Europe/Dublin 2010-08-14 +3311601 Inisheher Inisheher 54.44472 -8.22 T ISL IE C 14 0 41 Europe/Dublin 2010-08-14 +3311602 Inishmean Inishmean 54.44306 -8.2 T ISL IE C 14 0 42 Europe/Dublin 2010-08-14 +3311603 Inishtemple Inishtemple 54.43944 -8.18917 T ISL IE C 14 0 52 Europe/Dublin 2010-08-14 +3311604 Inishkeen Inishkeen 54.44111 -8.16417 T ISL IE C 14 0 51 Europe/Dublin 2010-08-14 +3311605 Buckode Buckode 54.42861 -8.21 P PPL IE C 14 0 93 Europe/Dublin 2010-08-14 +3311606 Mount Prospect Mount Prospect 54.43583 -8.23528 S EST IE C 14 0 58 Europe/Dublin 2010-08-14 +3311607 Rooskey Rooskey 53.82984 -7.88818 P PPL IE 00 0 70 Europe/Dublin 2010-08-14 +3311608 Ballagh River Ballagh River 54.4 -8.11944 H STM IE C 14 0 56 Europe/Dublin 2010-08-14 +3311609 Aghnahaha Aghnahaha 54.38417 -8.13944 P PPLL IE C 14 0 122 Europe/Dublin 2010-08-14 +3311610 Lissiniska Lissiniska 54.39194 -8.16361 P PPLL IE C 14 0 254 Europe/Dublin 2010-08-14 +3311611 Tullyskeherny Tullyskeherny 54.37444 -8.11528 P PPLL IE C 14 0 120 Europe/Dublin 2010-08-14 +3311612 Tullyderrin Tullyderrin 54.38583 -8.07667 P PPLL IE C 14 0 73 Europe/Dublin 2010-08-14 +3311613 Ross Point Ross Point 54.405 -8.11472 T PT IE C 14 0 51 Europe/Dublin 2010-08-14 +3311614 Meenagraun Lough Meenagraun Lough 54.385 -8.21667 H LK IE C 14 0 333 Europe/Dublin 2010-08-14 +3311615 Lough Nabrack Lough Nabrack 54.38056 -8.21583 H LK IE C 14 0 323 Europe/Dublin 2010-08-14 +3311616 Leck Leck 54.29806 -7.93528 P PPLL IE U 02 0 150 Europe/Dublin 2010-08-14 +3311617 Tuam Island Tuam Island 54.30417 -7.92444 T ISL IE U 02 0 74 Europe/Dublin 2010-08-14 +3311618 Moy More Moy More 52.90306 -9.34306 P PPL IE M 03 0 78 Europe/Dublin 2010-08-14 +3311619 Tullygarvan Tullygarvan 52.91528 -9.32278 P PPL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311620 Mooghna Lough Mooghna Lough 52.90611 -9.28111 H LK IE M 03 0 86 Europe/Dublin 2010-08-14 +3311621 Knockpatrick Knockpatrick 52.91778 -9.30639 L LCTY IE M 03 0 83 Europe/Dublin 2010-08-14 +3311622 O’Brien’s Bridge O'Brien's Bridge 52.95306 -9.34917 P PPL IE M 03 0 14 Europe/Dublin 2010-08-14 +3311623 Ennsishmon House Ennsishmon House 52.94583 -9.29528 S HSEC IE M 03 0 38 Europe/Dublin 2010-08-14 +3311624 Furreera Furreera 52.93889 -9.42611 T PT IE M 03 0 8 Europe/Dublin 2010-08-14 +3311625 Kilconnell Kilconnell 52.94694 -9.44889 P PPL IE M 03 0 82 Europe/Dublin 2010-08-14 +3311626 Derren Derren 52.95306 -9.42222 P PPL IE M 03 0 85 Europe/Dublin 2010-08-14 +3311627 Lower Ballycotteen Lower Ballycotteen 52.96833 -9.40722 P PPL IE M 03 0 126 Europe/Dublin 2010-08-14 +3311628 Upper Ballycotteen Upper Ballycotteen 52.97917 -9.41306 P PPL IE M 03 0 152 Europe/Dublin 2010-08-14 +3311629 Aillenasharragh Aillenasharragh 52.98944 -9.42806 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3311630 O’Brien’s Tower O'Brien's Tower 52.98083 -9.42333 T HLL IE M 03 0 145 Europe/Dublin 2010-08-14 +3311631 Cornagee Cornagee 54.27361 -7.90278 P PPLL IE U 02 0 154 Europe/Dublin 2010-08-14 +3311632 Corratirrim Corratirrim 54.27889 -7.88278 S FRM IE U 02 0 133 Europe/Dublin 2010-08-14 +3311633 Oggal Oggal 54.25972 -7.92667 P PPLL IE U 02 0 127 Europe/Dublin 2010-08-14 +3311634 Roo Roo 54.27778 -7.95111 L LCTY IE U 02 0 74 Europe/Dublin 2010-08-14 +3311635 Englishman’s House Englishman's House 54.25528 -7.96944 S RUIN IE U 02 0 155 Europe/Dublin 2010-08-14 +3311636 Cornahaw Cornahaw 54.24611 -7.92556 P PPLL IE U 02 0 143 Europe/Dublin 2010-08-14 +3311637 Gowlan Gowlan 54.25083 -7.90028 P PPL IE U 02 0 206 Europe/Dublin 2010-08-14 +3311638 Tullygobban Lough Tullygobban Lough 54.26611 -7.89444 H LK IE U 02 0 205 Europe/Dublin 2010-08-14 +3311639 Legalough Legalough 54.26194 -7.86639 H LK IE U 02 0 187 Europe/Dublin 2010-08-14 +3311640 Garvagh Lough Garvagh Lough 54.25056 -7.88611 H LK IE U 02 0 240 Europe/Dublin 2010-08-14 +3311641 Giants Leap Giants Leap 54.26778 -7.87833 T HLL IE U 02 0 174 Europe/Dublin 2010-08-14 +3311642 Garvagh Garvagh 54.23333 -7.87111 L LCTY IE U 02 0 361 Europe/Dublin 2010-08-14 +3311643 Carricknahurroo Lough Carricknahurroo Lough 54.2275 -7.9175 H LK IE U 02 0 145 Europe/Dublin 2010-08-14 +3311644 Lattone Lough Lattone Lough 54.22611 -7.92778 H LK IE U 02 0 134 Europe/Dublin 2010-08-14 +3311645 Lough Aglaur Lough Aglaur 54.23056 -7.94917 H LK IE U 02 0 119 Europe/Dublin 2010-08-14 +3311646 Carricknacrannoge Lough Carricknacrannoge Lough 54.235 -7.95139 H LK IE U 02 0 120 Europe/Dublin 2010-08-14 +3311647 Carrickacladdy Lough Carrickacladdy Lough 54.22472 -7.96111 H LK IE U 02 0 105 Europe/Dublin 2010-08-14 +3311648 Corlea Corlea 54.23028 -7.97833 P PPL IE U 02 0 126 Europe/Dublin 2010-08-14 +3311649 Tents Lough Tents Lough 54.24667 -8.00194 H LK IE U 02 0 339 Europe/Dublin 2010-08-14 +3311650 Lough Naweelion Lough Naweelion 54.24611 -8.01556 H LK IE U 02 0 352 Europe/Dublin 2010-08-14 +3311651 Cornakeeldrum Lough Cornakeeldrum Lough 54.22111 -7.99806 H LK IE U 02 0 119 Europe/Dublin 2010-08-14 +3311652 Tullynamoyle Tullynamoyle 54.22472 -8.02194 P PPLL IE U 02 0 181 Europe/Dublin 2010-08-14 +3311653 Moneen Lough Moneen Lough 54.20944 -8.01889 H LK IE U 02 0 111 Europe/Dublin 2010-08-14 +3311654 Corrard House Corrard House 54.20694 -8.00389 S HSEC IE U 02 0 69 Europe/Dublin 2010-08-14 +3311655 Ardlougher Lough Ardlougher Lough 54.19972 -8.03861 H LK IE U 02 0 69 Europe/Dublin 2010-08-14 +3311656 Sruhanagh Sruhanagh 54.18889 -7.98361 P PPLL IE U 02 0 184 Europe/Dublin 2010-08-14 +3311657 Corleckagh Corleckagh 54.2025 -7.95194 P PPLL IE U 02 0 139 Europe/Dublin 2010-08-14 +3311658 Coppanaghmore Coppanaghmore 54.19306 -7.93028 P PPLL IE U 02 0 149 Europe/Dublin 2010-08-14 +3311659 Legnagrow Legnagrow 54.2125 -7.90528 P PPLL IE U 02 0 180 Europe/Dublin 2010-08-14 +3311660 Mully Mully 54.20306 -7.90222 P PPLL IE U 02 0 153 Europe/Dublin 2010-08-14 +3311661 Altshallan Altshallan 54.17583 -7.92778 L LCTY IE U 02 0 256 Europe/Dublin 2010-08-14 +3311662 Bursan Bursan 54.19222 -7.85806 P PPLL IE U 02 0 398 Europe/Dublin 2010-08-14 +3311663 Corracleigh Corracleigh 54.18056 -7.86333 P PPL IE U 02 0 257 Europe/Dublin 2010-08-14 +3311664 Moneensauran Moneensauran 54.1725 -7.87833 P PPLL IE U 02 0 214 Europe/Dublin 2010-08-14 +3311665 Derrynananta Derrynananta 54.1625 -7.87111 P PPLL IE U 02 0 257 Europe/Dublin 2010-08-14 +3311666 Tully Lough Tully Lough 54.18333 -7.90667 H LK IE U 02 0 167 Europe/Dublin 2010-08-14 +3311667 Bellavally Gap Bellavally Gap 54.16806 -7.81611 T GAP IE U 02 0 340 Europe/Dublin 2010-08-14 +3311668 Cuilcagh Mountains Cuilcagh Mountains Cuilcagh Mountains 54.20861 -7.83139 T MTS IE 00 0 487 Europe/Dublin 1998-09-01 +3311669 Lough Cratty Lough Cratty 54.20333 -7.75667 H PND IE U 02 0 305 Europe/Dublin 2010-08-14 +3311670 Cloghoge Cloghoge 54.20306 -7.71333 P PPLL IE U 02 0 95 Europe/Dublin 2010-08-14 +3311671 Binkeeragh Binkeeragh 54.18306 -7.74889 P PPLL IE U 02 0 138 Europe/Dublin 2010-08-14 +3311672 Drumcask Drumcask 54.1725 -7.73472 P PPL IE U 02 0 101 Europe/Dublin 2010-08-14 +3311673 Gubrawnlly Gubrawnlly 54.16111 -7.74333 P PPLL IE U 02 0 117 Europe/Dublin 2010-08-14 +3311674 Blackrocks Cross Blackrocks Cross 54.16389 -7.78306 P PPLL IE U 02 0 197 Europe/Dublin 2010-08-14 +3311675 Uragh Uragh 54.19306 -7.69722 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3311676 Derrynacreve Derrynacreve 54.155 -7.7175 P PPLL IE U 02 0 73 Europe/Dublin 2010-08-14 +3311677 Dunglave Dunglave 54.16111 -7.70667 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3311678 Tircahan Lodge Tircahan Lodge 54.17 -7.69778 S HSE IE U 02 0 89 Europe/Dublin 2010-08-14 +3311679 Altateskin Altateskin 54.15111 -7.78472 P PPLL IE U 02 0 207 Europe/Dublin 2010-08-14 +3311680 Gowlan Gowlan 54.13722 -7.795 P PPLL IE U 02 0 182 Europe/Dublin 2010-08-14 +3311681 Bartonny Lough Bartonny Lough 54.12556 -7.85139 H LK IE U 02 0 408 Europe/Dublin 2010-08-14 +3311682 Derrynananata Lough Derrynananata Lough 54.15167 -7.84611 H LK IE U 02 0 421 Europe/Dublin 2010-08-14 +3311683 River Blackwater River Blackwater 54.19389 -7.6975 H STM IE U 02 0 75 Europe/Dublin 2010-08-14 +3311684 Owensallagh River Owensallagh River 54.165 -7.71278 H STM IE U 02 0 72 Europe/Dublin 2010-08-14 +3311685 Moneynure Moneynure 54.13 -7.7375 P PPLL IE U 02 0 76 Europe/Dublin 2010-08-14 +3311686 Mohen Lodge Mohen Lodge 54.115 -7.8125 S BLDG IE U 02 0 127 Europe/Dublin 2010-08-14 +3311687 Cartronnagilta Cartronnagilta 54.11139 -7.77167 P PPLL IE U 02 0 80 Europe/Dublin 2010-08-14 +3311688 Cronery Cronery 54.10917 -7.75889 P PPLL IE U 02 0 79 Europe/Dublin 2010-08-14 +3311689 Erraran Erraran 54.125 -7.69778 P PPLL IE U 02 0 133 Europe/Dublin 2010-08-14 +3311690 Owendoon Owendoon 54.10778 -7.70861 T HLL IE U 02 0 118 Europe/Dublin 2010-08-14 +3311691 Teeboy Teeboy 54.11472 -7.72917 P PPLL IE U 02 0 85 Europe/Dublin 2010-08-14 +3311692 Prospect Prospect 54.14083 -7.71056 S EST IE U 02 0 100 Europe/Dublin 2010-08-14 +3311693 Ardmoneen Ardmoneen 54.11056 -7.82361 P PPLL IE U 02 0 152 Europe/Dublin 2010-08-14 +3311694 Bunerky Lough Bunerky Lough 54.11667 -7.71556 H LK IE U 02 0 141 Europe/Dublin 2010-08-14 +3311695 Lakefield Lough Lakefield Lough 54.1125 -7.69833 H LK IE U 02 0 131 Europe/Dublin 2010-08-14 +3311696 Bellaboy Lough Bellaboy Lough 54.10306 -7.68361 H LK IE U 02 0 99 Europe/Dublin 2010-08-14 +3311697 Blackwater Bridge Blackwater Bridge 54.09417 -7.7075 P PPLL IE U 02 0 100 Europe/Dublin 2010-08-14 +3311698 Culliagh Culliagh 54.10111 -7.7325 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3311699 Cornagunleog Cornagunleog 54.09083 -7.71083 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3311700 Sraloaghan Sraloaghan 54.09167 -7.73222 P PPLL IE U 02 0 75 Europe/Dublin 2010-08-14 +3311701 Killyran Killyran 54.08 -7.69361 P PPL IE U 02 0 75 Europe/Dublin 2010-08-14 +3311702 Killywillin Lough Killywillin Lough 54.08389 -7.68222 H LK IE U 02 0 79 Europe/Dublin 2010-08-14 +3311703 Doonnagare Lough Doonnagare Lough 52.99639 -9.36722 H LK IE M 03 0 145 Europe/Dublin 2010-08-14 +3311704 Luagh Luagh 52.99889 -9.40722 L LCTY IE M 03 0 91 Europe/Dublin 2010-08-14 +3311705 Ballycullaun Ballycullaun 53.005 -9.37389 L LCTY IE M 03 0 89 Europe/Dublin 2010-08-14 +3311706 Moymore House Moymore House 52.97028 -9.34333 S HSEC IE M 03 0 69 Europe/Dublin 2010-08-14 +3311707 Sandfield Lodge Sandfield Lodge 52.95861 -9.35861 S HSEC IE M 03 0 65 Europe/Dublin 2010-08-14 +3311708 Rivolt Rivolt 52.95944 -9.315 S EST IE M 03 0 35 Europe/Dublin 2010-08-14 +3311709 Carrowauff Carrowauff 52.98583 -9.35167 P PPLL IE M 03 0 143 Europe/Dublin 2010-08-14 +3311710 Kilshanny Kilshanny 52.98472 -9.29417 P PPLL IE M 03 0 50 Europe/Dublin 2010-08-14 +3311711 Wingfield Lodge Wingfield Lodge 52.98583 -9.25444 S HSE IE M 03 0 73 Europe/Dublin 2010-08-14 +3311712 Lough Coller Lough Coller 53.01194 -9.29833 H LK IE M 03 0 81 Europe/Dublin 2010-08-14 +3311713 Tooclae Tooclae 53.01306 -9.35556 P PPLL IE M 03 0 65 Europe/Dublin 2010-08-14 +3311714 Spectacle Bridge Spectacle Bridge 53.02806 -9.30444 P PPLL IE M 03 0 77 Europe/Dublin 2010-08-14 +3311715 Mineral Springs Mineral Springs 53.03028 -9.28222 H SPNG IE M 03 0 77 Europe/Dublin 2010-08-14 +3311716 Fanta Glebe House Fanta Glebe House 52.99861 -9.23417 S HSEC IE M 03 0 76 Europe/Dublin 2010-08-14 +3311717 Doon Cottage Doon Cottage 52.98417 -9.23583 S HSEC IE M 03 0 76 Europe/Dublin 2010-08-14 +3311718 Knockacutteen Knockacutteen 52.98139 -9.21306 P PPLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311719 Tullagh Tullagh 52.975 -9.20833 P PPLL IE M 03 0 73 Europe/Dublin 2010-08-14 +3311720 Ballygastell Ballygastell 53.03333 -9.2475 P PPLL IE M 03 0 101 Europe/Dublin 2010-08-14 +3311721 Ballagh Ballagh 52.96111 -9.23583 P PPLL IE M 03 0 133 Europe/Dublin 2010-08-14 +3311722 Slievebeg Slievebeg 52.95444 -9.22861 T HLL IE M 03 0 127 Europe/Dublin 2010-08-14 +3311723 Cahersherkin Cahersherkin 52.94667 -9.22944 P PPLL IE M 03 0 107 Europe/Dublin 2010-08-14 +3311724 Cloony Smith Cloony Smith 52.93778 -9.20361 P PPLL IE M 03 0 77 Europe/Dublin 2010-08-14 +3311725 Drinagh Drinagh 52.92806 -9.20167 P PPLL IE M 03 0 77 Europe/Dublin 2010-08-14 +3311726 Ballyvramneen Ballyvramneen 52.91889 -9.25083 P PPLL IE M 03 0 46 Europe/Dublin 2010-08-14 +3311727 Ballyea Ballyea 52.91111 -9.21389 P PPLL IE M 03 0 81 Europe/Dublin 2010-08-14 +3311728 Shanweela Shanweela 52.915 -9.18972 P PPLL IE M 03 0 78 Europe/Dublin 2010-08-14 +3311729 Knockfin Cross Roads Knockfin Cross Roads 53.02917 -9.36472 P PPLL IE M 03 0 67 Europe/Dublin 2010-08-14 +3311730 Toomaghera Toomaghera 53.04722 -9.24194 P PPLL IE M 03 0 143 Europe/Dublin 2010-08-14 +3311731 Cora Point Cora Point 53.08611 -9.56972 T PT IE C 10 0 1 Europe/Dublin 2010-08-14 +3311732 Sandhead Sandhead 53.09944 -9.55889 T CAPE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311733 Taunabruff Taunabruff 53.07306 -9.6175 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311734 Illaunanaur Illaunanaur 53.09472 -9.63611 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311735 Chinewalee Point Chinewalee Point 53.09472 -9.65333 T PT IE C 10 0 1 Europe/Dublin 2010-08-14 +3311736 Eararna Eararna 53.10194 -9.64833 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311737 Portdeha Portdeha 53.10306 -9.63222 H COVE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311738 Doonaghard Doonaghard 53.10889 -9.68611 T PT IE C 10 0 8 Europe/Dublin 2010-08-14 +3311739 Bar of Aran Bar of Aran 53.12861 -9.64278 T BAR IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311740 Carrickadda Carrickadda 53.13972 -9.66083 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311741 Carrickymonaghan Carrickymonaghan 53.14472 -9.67222 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311742 Portcowrugh Portcowrugh 53.14556 -9.71306 H COVE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311743 Ballynacragga Ballynacragga 53.13861 -9.71056 L LCTY IE C 10 0 17 Europe/Dublin 2010-08-14 +3311744 Oatquarter Oatquarter 53.13833 -9.7375 L LCTY IE C 10 0 1 Europe/Dublin 2010-08-14 +3311745 Bungowla Bungowla 53.14861 -9.80361 P PPL IE C 10 0 66 Europe/Dublin 2010-08-14 +3311746 Blind Sound Blind Sound 53.12917 -9.75444 H SD IE C 10 0 1 Europe/Dublin 2010-08-14 +3311747 Ballynahown Ballynahown 53.06583 -9.32833 P PPL IE M 03 0 132 Europe/Dublin 2010-08-14 +3311748 Knockaunsmountain Knockaunsmountain 53.07556 -9.33111 T MT IE M 03 0 82 Europe/Dublin 2010-08-14 +3311749 Oughtdarra Oughtdarra 53.05889 -9.34778 L LCTY IE M 03 0 74 Europe/Dublin 2010-08-14 +3311750 Poulsallagh Poulsallagh 53.06139 -9.36333 T PT IE M 03 0 19 Europe/Dublin 2010-08-14 +3311751 Ailladie Ailladie 53.07611 -9.35556 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3311752 Lismorahaun Lismorahaun 53.07472 -9.24889 P PPL IE M 03 0 209 Europe/Dublin 2010-08-14 +3311753 Ballyelly Ballyelly 53.09556 -9.27056 P PPLL IE M 03 0 229 Europe/Dublin 2010-08-14 +3311754 Balliny Balliny 53.08611 -9.28528 P PPLL IE M 03 0 188 Europe/Dublin 2010-08-14 +3311755 Poulacapple Poulacapple 53.08556 -9.21778 L LCTY IE M 03 0 148 Europe/Dublin 2010-08-14 +3311756 Formoyle Formoyle 53.10972 -9.24722 L LCTY IE M 03 0 153 Europe/Dublin 2010-08-14 +3311757 Craggagh Craggagh 53.09917 -9.29889 L LCTY IE M 03 0 70 Europe/Dublin 2010-08-14 +3311758 Caher River Caher River 53.12167 -9.28889 H STM IE M 03 0 34 Europe/Dublin 2010-08-14 +3311759 Caher Lower Caher Lower 53.12472 -9.24861 P PPLL IE M 03 0 188 Europe/Dublin 2010-08-14 +3311760 Caherbannagh Caherbannagh 53.11694 -9.23556 P PPLL IE M 03 0 216 Europe/Dublin 2010-08-14 +3311761 Feenagh Feenagh 53.11139 -9.20639 P PPLL IE M 03 0 247 Europe/Dublin 2010-08-14 +3311762 Carnsefin Carnsefin 53.14111 -9.24472 T MT IE M 03 0 238 Europe/Dublin 2010-08-14 +3311763 Aghaglinny North Aghaglinny North 53.13917 -9.21889 P PPLL IE M 03 0 59 Europe/Dublin 2010-08-14 +3311764 Martrybeg Martrybeg 52.92306 -9.18056 P PPLL IE M 03 0 77 Europe/Dublin 2010-08-14 +3311765 Lough Fergus Lough Fergus 52.95528 -9.18167 H LK IE M 03 0 76 Europe/Dublin 2010-08-14 +3311766 Knockalunkard Knockalunkard 52.94833 -9.14917 T HLL IE M 03 0 87 Europe/Dublin 2010-08-14 +3311767 Clifden Hill Clifden Hill 52.95444 -9.11056 T HLL IE M 03 0 133 Europe/Dublin 2010-08-14 +3311768 Lough Raha Lough Raha 52.92306 -9.08972 H LK IE M 03 0 67 Europe/Dublin 2010-08-14 +3311769 Rocton House Rocton House 52.935 -9.0975 S HSEC IE M 03 0 72 Europe/Dublin 2010-08-14 +3311770 Applevale House Applevale House 52.93778 -9.11778 S HSEC IE M 03 0 116 Europe/Dublin 2010-08-14 +3311771 Clifden House Clifden House 52.95111 -9.09056 S HSEC IE M 03 0 60 Europe/Dublin 2010-08-14 +3311772 Baunkyle House Baunkyle House 52.95083 -9.07111 S HSEC IE M 03 0 55 Europe/Dublin 2010-08-14 +3311773 Kiltoraght Glebe House Kiltoraght Glebe House 52.97306 -9.14361 S HSEC IE M 03 0 71 Europe/Dublin 2010-08-14 +3311774 Elmydle House Elmydle House 52.97306 -9.10917 S HSEC IE M 03 0 65 Europe/Dublin 2010-08-14 +3311775 Ballynacarhagh House Ballynacarhagh House 52.97167 -9.16806 S HSEC IE M 03 0 74 Europe/Dublin 2010-08-14 +3311776 Knockeighra Knockeighra 52.96194 -9.15389 P PPLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311777 Clooneen River Clooneen River 52.97778 -9.14528 H STM IE M 03 0 72 Europe/Dublin 2010-08-14 +3311778 Hollywell House Hollywell House 52.99611 -9.19917 S HSEC IE M 03 0 76 Europe/Dublin 2010-08-14 +3311779 Ballybaun House Ballybaun House 52.98833 -9.17389 S HSEC IE M 03 0 72 Europe/Dublin 2010-08-14 +3311780 Roughaun House Roughaun House 52.98056 -9.10028 S HSEC IE M 03 0 75 Europe/Dublin 2010-08-14 +3311781 Lough Aleenaun Lough Aleenaun 53.00694 -9.11806 H LK IE M 03 0 108 Europe/Dublin 2010-08-14 +3311782 Deerpark Deerpark 53.00028 -9.12611 P PPLL IE M 03 0 101 Europe/Dublin 2010-08-14 +3311783 Leana Leana 52.98889 -9.08222 P PPLL IE M 03 0 79 Europe/Dublin 2010-08-14 +3311784 Caherconnell Caherconnell 53.04111 -9.1475 P PPLL IE M 03 0 138 Europe/Dublin 2010-08-14 +3311785 Rockview House Rockview House 53.03778 -9.10806 S HSEC IE M 03 0 152 Europe/Dublin 2010-08-14 +3311787 Ballycullinan Lough Ballycullinan Lough 52.92083 -9.05639 H LK IE M 03 0 51 Europe/Dublin 2010-08-14 +3311788 Scool Scool 52.91833 -9.09167 L LCTY IE M 03 0 75 Europe/Dublin 2010-08-14 +3311789 Crogmoher House Crogmoher House 52.93056 -9.04472 S HSEC IE M 03 0 50 Europe/Dublin 2010-08-14 +3311790 Cooga House Cooga House 52.93139 -9.02917 S HSEC IE M 03 0 48 Europe/Dublin 2010-08-14 +3311791 Caherlough Caherlough 52.95528 -9.01083 L LCTY IE M 03 0 49 Europe/Dublin 2010-08-14 +3311792 Lough Reagh Lough Reagh 52.91667 -9.00639 H LK IE M 03 0 41 Europe/Dublin 2010-08-14 +3311793 Killeen Killeen 52.9625 -9.06444 P PPLL IE M 03 0 52 Europe/Dublin 2010-08-14 +3311794 Shandangan Lough Shandangan Lough 52.96667 -9.04 H LK IE M 03 0 57 Europe/Dublin 2010-08-14 +3311795 Rinroe House Rinroe House 52.97111 -8.99111 S HSEC IE M 03 0 61 Europe/Dublin 2010-08-14 +3311796 Glasgeivnagh Hill Glasgeivnagh Hill 53.01333 -9.0425 T HLL IE M 03 0 141 Europe/Dublin 2010-08-14 +3311797 Clooncoose Clooncoose 53.00667 -9.08222 L LCTY IE M 03 0 137 Europe/Dublin 2010-08-14 +3311798 Glenquin House Glenquin House 53.01167 -9.00833 S HSEC IE M 03 0 76 Europe/Dublin 2010-08-14 +3311799 Mullagh More Mullagh More 53.00806 -8.99944 T HLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311800 Coolreash Lough Coolreash Lough 52.99889 -8.9975 H LK IE M 03 0 81 Europe/Dublin 2010-08-14 +3311801 Knockaunroe Knockaunroe 52.99472 -9.03972 L LCTY IE M 03 0 75 Europe/Dublin 2010-08-14 +3311802 Rinnamona Rinnamona 52.98889 -9.04611 P PPLL IE M 03 0 64 Europe/Dublin 2010-08-14 +3311803 Ballyeighter Loughs Ballyeighter Loughs 52.98694 -8.96167 H LKS IE M 03 0 62 Europe/Dublin 2010-08-14 +3311804 Carran Carran 53.03806 -9.07806 P PPLL IE M 03 0 152 Europe/Dublin 2010-08-14 +3311805 Fahee Fahee 53.03639 -9.04444 P PPLL IE M 03 0 151 Europe/Dublin 2010-08-14 +3311806 Carrowkeel More Carrowkeel More 52.93889 -8.92444 S EST IE M 03 0 53 Europe/Dublin 2010-08-14 +3311807 Hollyline House Hollyline House 52.92667 -8.92333 S HSEC IE M 03 0 57 Europe/Dublin 2010-08-14 +3311808 Knocknamucky Knocknamucky 52.90556 -8.90972 P PPLL IE M 03 0 82 Europe/Dublin 2010-08-14 +3311809 Ballyteige Lough Ballyteige Lough 52.94833 -8.96611 H LK IE M 03 0 40 Europe/Dublin 2010-08-14 +3311810 Ballyteige Ballyteige 52.95972 -8.95611 P PPLL IE M 03 0 46 Europe/Dublin 2010-08-14 +3311811 Ballyogan Lough Ballyogan Lough 52.96694 -8.92972 H LK IE M 03 0 44 Europe/Dublin 2010-08-14 +3311812 Stranagalloon Stranagalloon 52.95944 -8.91306 P PPLL IE M 03 0 45 Europe/Dublin 2010-08-14 +3311813 Turkenagh House Turkenagh House 52.97861 -8.97917 S HSEC IE M 03 0 65 Europe/Dublin 2010-08-14 +3311814 Black Mount Black Mount Black Mount,Blakemount 52.9775 -8.91083 S EST IE M 03 0 45 Europe/Dublin 2010-08-14 +3311815 Castlelodge River Castlelodge River 52.98639 -8.92139 H STM IE M 03 0 49 Europe/Dublin 2010-08-14 +3311816 Coolbaun Coolbaun 52.98861 -8.91639 P PPLL IE M 03 0 48 Europe/Dublin 2010-08-14 +3311817 Derryowen Cottage Derryowen Cottage 53.00639 -8.89722 S HSEC IE M 03 0 49 Europe/Dublin 2010-08-14 +3311818 Rinecaha Rinecaha 52.99444 -8.94389 P PPLL IE M 03 0 59 Europe/Dublin 2010-08-14 +3311819 Lough Templebannagh Lough Templebannagh 53.00278 -8.91306 H LK IE M 03 0 52 Europe/Dublin 2010-08-14 +3311820 Lough Attyslany Lough Attyslany 53.01194 -8.90889 H LK IE M 03 0 53 Europe/Dublin 2010-08-14 +3311822 Skaghard Skaghard 53.02917 -8.965 P PPLL IE M 03 0 65 Europe/Dublin 2010-08-14 +3311823 Castle Lough Castle Lough 53.03222 -8.97361 H LK IE M 03 0 67 Europe/Dublin 2010-08-14 +3311824 Rockvale House Rockvale House 53.03278 -8.91417 S HSEC IE M 03 0 54 Europe/Dublin 2010-08-14 +3311825 Kilcorkan Kilcorkan 53.04528 -8.90778 P PPLL IE M 03 0 52 Europe/Dublin 2010-08-14 +3311826 O’Donohoe’s Chair O'Donohoe's Chair 53.02194 -8.89556 T HLL IE M 03 0 51 Europe/Dublin 2010-08-14 +3311827 Travaun Lough Travaun Lough 53.01722 -8.95972 H LK IE M 03 0 66 Europe/Dublin 2010-08-14 +3311828 Turloughmore Turloughmore 53.04583 -8.98889 L LCTY IE M 03 0 82 Europe/Dublin 2010-08-14 +3311829 Derrymore Lough Derrymore Lough 52.90333 -8.85417 H LK IE M 03 0 71 Europe/Dublin 2010-08-14 +3311830 Derryheena Derryheena 52.9275 -8.83694 P PPLL IE M 03 0 100 Europe/Dublin 2010-08-14 +3311831 Derryvough Derryvough 52.93583 -8.83611 P PPLL IE M 03 0 82 Europe/Dublin 2010-08-14 +3311832 Derrycalliff Lower Derrycalliff Lower 52.93139 -8.85389 P PPLL IE M 03 0 68 Europe/Dublin 2010-08-14 +3311833 Derrynagullion Derrynagullion 52.91528 -8.845 L LCTY IE M 03 0 82 Europe/Dublin 2010-08-14 +3311834 Tyredagh Upper Tyredagh Upper 52.90917 -8.79 P PPLL IE M 03 0 117 Europe/Dublin 2010-08-14 +3311835 Doon Lough Doon Lough 52.95972 -8.83889 H LK IE M 03 0 64 Europe/Dublin 2010-08-14 +3311836 Gortnamearacaun Gortnamearacaun 52.94528 -8.81389 P PPLL IE M 03 0 149 Europe/Dublin 2010-08-14 +3311837 Caher Caher 52.94139 -8.83417 L LCTY IE M 03 0 82 Europe/Dublin 2010-08-14 +3311838 Attyquin Lough Attyquin Lough 52.96194 -8.86278 H LK IE M 03 0 54 Europe/Dublin 2010-08-14 +3311839 Knockmael Knockmael 52.95778 -8.86917 L LCTY IE M 03 0 55 Europe/Dublin 2010-08-14 +3311840 Scalpnagown Scalpnagown 52.95972 -8.78833 L LCTY IE M 03 0 148 Europe/Dublin 2010-08-14 +3311841 Skehanagh Lough Skehanagh Lough 52.97444 -8.85833 H LK IE M 03 0 51 Europe/Dublin 2010-08-14 +3311842 Derroogh Lough Derroogh Lough 52.97111 -8.85056 H LK IE M 03 0 51 Europe/Dublin 2010-08-14 +3311843 Doon Lodge Doon Lodge 52.96528 -8.83583 S HSEC IE M 03 0 64 Europe/Dublin 2010-08-14 +3311844 Cloggaghwood Loughs Cloggaghwood Loughs 52.97028 -8.825 H LKS IE M 03 0 57 Europe/Dublin 2010-08-14 +3311845 Derreen Lough Derreen Lough 52.97667 -8.81556 H LK IE M 03 0 51 Europe/Dublin 2010-08-14 +3311846 Uggoon Uggoon 52.91611 -8.73833 P PPLL IE M 03 0 137 Europe/Dublin 2010-08-14 +3311847 Gortnacummer Gortnacummer 52.90556 -8.71056 P PPLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311848 Maghera Lough Maghera Lough 52.95694 -8.73722 H LK IE M 03 0 287 Europe/Dublin 2010-08-14 +3311849 Cloomagro Cloomagro 52.95583 -8.68556 P PPLL IE M 03 0 218 Europe/Dublin 2010-08-14 +3311850 Glenbonniv Glenbonniv 52.94444 -8.65778 P PPLL IE M 03 0 192 Europe/Dublin 2010-08-14 +3311851 Leaghort Leaghort 52.95667 -8.67722 L LCTY IE M 03 0 180 Europe/Dublin 2010-08-14 +3311852 Feakle Lower Feakle Lower 52.91556 -8.63361 P PPLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311853 Rossanure Rossanure 52.91111 -8.61833 P PPLL IE M 03 0 72 Europe/Dublin 2010-08-14 +3311854 Keel Lough Keel Lough 52.90778 -8.58556 H LK IE M 03 0 62 Europe/Dublin 2010-08-14 +3311855 Capparoe Capparoe 52.91722 -8.58056 P PPLL IE M 03 0 95 Europe/Dublin 2010-08-14 +3311856 Poulagower Poulagower 52.92444 -8.58667 P PPLL IE M 03 0 72 Europe/Dublin 2010-08-14 +3311857 Coologory Coologory 52.93194 -8.60694 L LCTY IE M 03 0 88 Europe/Dublin 2010-08-14 +3311858 Lecarrow Lecarrow 52.92083 -8.62444 P PPLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311859 Kildavin Kildavin 52.93972 -8.62056 T HLL IE M 03 0 91 Europe/Dublin 2010-08-14 +3311860 Kilclaran Kilclaran 52.95361 -8.64583 P PPLL IE M 03 0 98 Europe/Dublin 2010-08-14 +3311861 Lakeview Cottage Lakeview Cottage 52.9575 -8.64944 S HSE IE M 03 0 98 Europe/Dublin 2010-08-14 +3311862 Corlea Bridge Corlea Bridge 53.01556 -8.58889 P PPLL IE M 03 0 136 Europe/Dublin 2010-08-14 +3311863 Derrycrow Derrycrow 52.99611 -8.59667 L LCTY IE M 03 0 159 Europe/Dublin 2010-08-14 +3311864 Knockbeha Mountain Knockbeha Mountain 52.98444 -8.60667 T MT IE M 03 0 168 Europe/Dublin 2010-08-14 +3311865 Corrakyle Corrakyle 52.97833 -8.59083 L LCTY IE M 03 0 165 Europe/Dublin 2010-08-14 +3311866 Corracloon More Corracloon More 52.96417 -8.61167 T HLL IE M 03 0 88 Europe/Dublin 2010-08-14 +3311867 Cahermurphy House Cahermurphy House 52.9975 -8.64611 S HSEC IE M 03 0 80 Europe/Dublin 2010-08-14 +3311868 Derryfadda Derryfadda 53.01722 -8.68833 P PPLL IE M 03 0 71 Europe/Dublin 2010-08-14 +3311869 Doorus Doorus 52.98278 -8.68111 P PPLL IE M 03 0 108 Europe/Dublin 2010-08-14 +3311870 Slievemore Slievemore 53.0275 -8.59833 L LCTY IE M 03 0 152 Europe/Dublin 2010-08-14 +3311871 Gortaveha Gortaveha 53.02889 -8.66167 L LCTY IE M 03 0 101 Europe/Dublin 2010-08-14 +3311872 Loughamiddaun Loughamiddaun 53.0375 -8.58306 L LCTY IE M 03 0 154 Europe/Dublin 2010-08-14 +3311873 Lannaght Lannaght 53.01306 -8.71639 P PPLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311874 Maghera Maghera 52.96806 -8.71639 T MT IE M 03 0 303 Europe/Dublin 2010-08-14 +3311875 Killanena Killanena 52.98611 -8.70167 P PPLL IE M 03 0 161 Europe/Dublin 2010-08-14 +3311876 Dooglaun Dooglaun 52.97611 -8.68861 P PPLL IE M 03 0 149 Europe/Dublin 2010-08-14 +3311877 Poulasaggle Poulasaggle 53.05944 -8.92083 L LCTY IE M 03 0 53 Europe/Dublin 2010-08-14 +3311878 Cloonselherry Cloonselherry 53.05167 -8.93333 L LCTY IE M 03 0 55 Europe/Dublin 2010-08-14 +3311879 Tulla Tulla 53.07111 -8.94111 P PPLL IE M 03 0 54 Europe/Dublin 2010-08-14 +3311880 Eagle’s Rock Eagle's Rock 53.08583 -9.00944 T RK IE M 03 0 163 Europe/Dublin 2010-08-14 +3311881 Doomore Doomore 53.06833 -9.02111 T HLL IE M 03 0 160 Europe/Dublin 2010-08-14 +3311882 Gortaclare Mountain Gortaclare Mountain 53.08028 -9.03556 T MT IE M 03 0 153 Europe/Dublin 2010-08-14 +3311883 Turlough Hill Turlough Hill 53.10778 -9.04 T HLL IE M 03 0 152 Europe/Dublin 2010-08-14 +3311884 Aghawinnaun Aghawinnaun 53.09667 -9.0575 L LCTY IE M 03 0 89 Europe/Dublin 2010-08-14 +3311885 Bannagh Bannagh 53.05472 -9.07972 L LCTY IE M 03 0 182 Europe/Dublin 2010-08-14 +3311886 Poulavallan Poulavallan 53.0675 -9.05667 L LCTY IE M 03 0 126 Europe/Dublin 2010-08-14 +3311887 Deelin Beg Deelin Beg 53.07278 -9.0775 L LCTY IE M 03 0 161 Europe/Dublin 2010-08-14 +3311888 Ballyhehan Ballyhehan 53.10306 -9.08806 P PPLL IE M 03 0 85 Europe/Dublin 2010-08-14 +3311890 Oughtmama Oughtmama 53.11889 -9.03611 P PPLL IE M 03 0 104 Europe/Dublin 2010-08-14 +3311891 Shanvally Shanvally 53.12583 -9.04556 P PPLL IE M 03 0 76 Europe/Dublin 2010-08-14 +3311892 Lough Luick Lough Luick 53.1175 -9.0725 H LK IE M 03 0 65 Europe/Dublin 2010-08-14 +3311893 Bell Harbour Bell Harbour 53.12556 -9.07083 H HBR IE M 03 0 60 Europe/Dublin 2010-08-14 +3311894 Caherloughlin Caherloughlin 53.13417 -9.10806 P PPLL IE M 03 0 26 Europe/Dublin 2010-08-14 +3311895 Poulnaclogh Bay Poulnaclogh Bay 53.13694 -9.07778 H BAY IE M 03 0 43 Europe/Dublin 2010-08-14 +3311896 Ballyconreag Ballyconreag 53.12944 -9.10222 T HLL IE M 03 0 74 Europe/Dublin 2010-08-14 +3311897 Bishopsquarter Bishopsquarter 53.12583 -9.11944 P PPLL IE M 03 0 28 Europe/Dublin 2010-08-14 +3311898 Ballyconry Ballyconry 53.12167 -9.18194 P PPLL IE M 03 0 78 Europe/Dublin 2010-08-14 +3311899 Croagh Croagh 53.09306 -9.19028 L LCTY IE M 03 0 131 Europe/Dublin 2010-08-14 +3311900 Knockatian Knockatian 53.0975 -9.17972 T SLP IE M 03 0 93 Europe/Dublin 2010-08-14 +3311901 Glenslende Castle Glenslende Castle 53.05611 -9.14667 S CSTL IE M 03 0 149 Europe/Dublin 2010-08-14 +3311902 Doonyvardan Doonyvardan 53.06306 -9.19167 P PPLL IE M 03 0 169 Europe/Dublin 2010-08-14 +3311903 Cahermacnaghten Cahermacnaghten 53.04944 -9.19333 P PPLL IE M 03 0 168 Europe/Dublin 2010-08-14 +3311904 Corkscrew Hill Corkscrew Hill 53.07417 -9.17194 T HLL IE M 03 0 141 Europe/Dublin 2010-08-14 +3311905 Scanlan’s Island Scanlan's Island 53.14472 -9.11194 T ISL IE M 03 0 1 Europe/Dublin 2010-08-14 +3311906 Muckinish Bay Muckinish Bay 53.14028 -9.08806 H BAY IE M 03 0 41 Europe/Dublin 2010-08-14 +3311907 Abbey Hill Abbey Hill 53.13972 -9.0425 T HLL IE M 03 0 73 Europe/Dublin 2010-08-14 +3311908 Blue Point Blue Point 53.13417 -9.16028 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3311909 Illaunloo Illaunloo 53.15111 -9.16167 T ISL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3311910 Lough Murra Lough Murra 53.155 -9.11583 H LK IE M 03 0 1 Europe/Dublin 2010-08-14 +3311911 Carrickadda Carrickadda 53.15806 -9.12389 T PT IE M 03 0 -9999 Europe/Dublin 2010-08-14 +3311912 Carbon House Carbon House 53.15611 -9.04778 S HSEC IE M 03 0 6 Europe/Dublin 2010-08-14 +3311913 Bunnahow House Bunnahow House 52.98306 -8.83944 S HSEC IE M 03 0 47 Europe/Dublin 2010-08-14 +3311914 Bunnahow Lough Bunnahow Lough 52.98444 -8.83028 H LK IE 00 0 42 Europe/Dublin 1998-06-12 +3311915 Carheany Lough Carheany Lough 52.99222 -8.835 H LK IE C 10 0 43 Europe/Dublin 2010-08-14 +3311916 Ballygeagin House Ballygeagin House 52.99528 -8.8525 S HSEC IE C 10 0 46 Europe/Dublin 2010-08-14 +3311917 Knocklawrence Knocklawrence 52.99028 -8.79889 T HLL IE C 10 0 55 Europe/Dublin 2010-08-14 +3311918 Shanaglish Shanaglish 53.00972 -8.8575 P PPLL IE C 10 0 45 Europe/Dublin 2010-08-14 +3311919 Colman’s Lough Colman's Lough 53.0175 -8.82861 H LK IE C 10 0 37 Europe/Dublin 2010-08-14 +3311920 Lough Aslaun Lough Aslaun 53.00972 -8.875 H LK IE C 10 0 47 Europe/Dublin 2010-08-14 +3311921 Cregg House Cregg House 52.98778 -8.84333 S HSEC IE C 10 0 46 Europe/Dublin 2010-08-14 +3311922 Rathorp House Rathorp House 53.02167 -8.88667 S HSEC IE C 10 0 49 Europe/Dublin 2010-08-14 +3311923 Fiddaun Fiddaun 53.01861 -8.86472 P PPLL IE C 10 0 46 Europe/Dublin 2010-08-14 +3311924 Terman House Terman House 53.03361 -8.87806 S HSEC IE C 10 0 47 Europe/Dublin 2010-08-14 +3311925 Rosemeade House Rosemeade House 53.035 -8.86 S HSEC IE C 10 0 44 Europe/Dublin 2010-08-14 +3311926 Ashfield House Ashfield House 53.02389 -8.84889 S HSEC IE C 10 0 43 Europe/Dublin 2010-08-14 +3311927 Derry Derry 53.01444 -8.85139 P PPLL IE C 10 0 45 Europe/Dublin 2010-08-14 +3311928 Knockatoo Mountain Knockatoo Mountain 52.98056 -8.78667 T MT IE C 10 0 82 Europe/Dublin 2010-08-14 +3311929 Nagilkagh Lough Nagilkagh Lough 53.00278 -8.75722 H LK IE C 10 0 95 Europe/Dublin 2010-08-14 +3311930 Ballynakill Lough Ballynakill Lough 53.00889 -8.79611 H LK IE C 10 0 43 Europe/Dublin 2010-08-14 +3311931 Laghtyslaughnessy Laghtyslaughnessy 53.04417 -8.85222 P PPLL IE C 10 0 42 Europe/Dublin 2010-08-14 +3311932 Irichaboy South Irichaboy South 53.01528 -8.77278 P PPLL IE C 10 0 75 Europe/Dublin 2010-08-14 +3311933 Killafeen Killafeen 53.02667 -8.76306 P PPLL IE C 10 0 70 Europe/Dublin 2010-08-14 +3311934 Kilcrimple Kilcrimple 53.03972 -8.75806 P PPLL IE C 10 0 68 Europe/Dublin 2010-08-14 +3311935 Cannahawna Cannahawna 53.04833 -8.83056 P PPLL IE C 10 0 36 Europe/Dublin 2010-08-14 +3311936 Sheeaun Sheeaun 53.05 -8.85556 P PPLL IE C 10 0 42 Europe/Dublin 2010-08-14 +3311937 Beagh Beagh 53.05083 -8.78806 P PPLL IE C 10 0 44 Europe/Dublin 2010-08-14 +3311938 Derreen Derreen 53.0325 -8.72778 P PPLL IE C 10 0 70 Europe/Dublin 2010-08-14 +3311939 Lahardaun Lough Lahardaun Lough 53.02667 -8.69306 H LK IE C 10 0 72 Europe/Dublin 2010-08-14 +3311940 Derrykeel Derrykeel 53.0425 -8.72056 P PPLL IE C 10 0 69 Europe/Dublin 2010-08-14 +3311941 Chevy Chase Cottage Chevy Chase Cottage 53.03917 -8.67944 S HSE IE C 10 0 92 Europe/Dublin 2010-08-14 +3311942 Derrynacarana Derrynacarana 53.05167 -8.72278 P PPLL IE C 10 0 76 Europe/Dublin 2010-08-14 +3311943 Gorteenboy Gorteenboy 53.05611 -8.72806 P PPLL IE C 10 0 71 Europe/Dublin 2010-08-14 +3311944 Ballardiggan Ballardiggan 53.05472 -8.75 P PPLL IE C 10 0 70 Europe/Dublin 2010-08-14 +3311945 Kinnageeragh Kinnageeragh 53.03944 -8.61333 L LCTY IE C 10 0 155 Europe/Dublin 2010-08-14 +3311946 Inchamore Inchamore 53.04278 -8.64944 P PPLL IE C 10 0 143 Europe/Dublin 2010-08-14 +3311947 Bellanamallaght Bellanamallaght 53.06417 -8.58361 P PPLL IE C 10 0 152 Europe/Dublin 2010-08-14 +3311948 Knocknamona Knocknamona 53.07 -8.60417 T HLL IE C 10 0 218 Europe/Dublin 2010-08-14 +3311949 Pollduff Pollduff 53.07 -8.63028 T HLL IE C 10 0 221 Europe/Dublin 2010-08-14 +3311950 Cashlaundrumlahan Cashlaundrumlahan 53.09028 -8.61556 T MT IE C 10 0 316 Europe/Dublin 2010-08-14 +3311951 Divney’s Lough Divney's Lough 53.08083 -8.67611 H LK IE C 10 0 174 Europe/Dublin 2010-08-14 +3311952 Bunnaglass Bunnaglass 53.05806 -8.70167 L LCTY IE C 10 0 112 Europe/Dublin 2010-08-14 +3311953 Reyrawer Reyrawer 53.06611 -8.68194 L LCTY IE C 10 0 165 Europe/Dublin 2010-08-14 +3311954 Hollymount Hollymount 53.09194 -8.71306 P PPLL IE C 10 0 69 Europe/Dublin 2010-08-14 +3311955 Lishrine House Lishrine House 53.065 -8.74611 S HSEC IE C 10 0 70 Europe/Dublin 2010-08-14 +3311956 Bohaboy Bohaboy 53.1075 -8.61417 L LCTY IE C 10 0 304 Europe/Dublin 2010-08-14 +3311957 Francis Gap Francis Gap 53.12167 -8.60389 T GAP IE C 10 0 251 Europe/Dublin 2010-08-14 +3311958 Earl’s Chair Earl's Chair 53.09611 -8.55806 T SPUR IE C 10 0 181 Europe/Dublin 2010-08-14 +3311959 Scalpeen Rock Scalpeen Rock 53.12111 -8.61944 T RK IE C 10 0 253 Europe/Dublin 2010-08-14 +3311960 Pollboy Pollboy 53.10778 -8.65167 L LCTY IE C 10 0 181 Europe/Dublin 2010-08-14 +3311961 Punch Bowl Punch Bowl 53.05139 -8.81361 P PPLL IE C 10 0 34 Europe/Dublin 2010-08-14 +3311962 Newtown Newtown 53.05667 -8.85917 L LCTY IE C 10 0 42 Europe/Dublin 2010-08-14 +3311963 Riverview House Riverview House 53.0525 -8.82417 S HSEC IE C 10 0 34 Europe/Dublin 2010-08-14 +3311964 Lough Briskeen Lough Briskeen 53.05472 -8.87167 H LK IE C 10 0 44 Europe/Dublin 2010-08-14 +3311965 Knockamatouk Knockamatouk 53.07306 -8.88611 L LCTY IE C 10 0 45 Europe/Dublin 2010-08-14 +3311966 Garryland Wood Garryland Wood 53.07972 -8.86556 V FRST IE C 10 0 38 Europe/Dublin 2010-08-14 +3311967 Cloon House Cloon House 53.07861 -8.78611 S HSEC IE C 10 0 39 Europe/Dublin 2010-08-14 +3311968 Roo Roo 53.07 -8.89806 P PPLL IE C 10 0 46 Europe/Dublin 2010-08-14 +3311969 Ballynamanan House Ballynamanan House 53.08722 -8.8225 S HSEC IE C 10 0 32 Europe/Dublin 2010-08-14 +3311970 Ballaba Ballaba 53.08972 -8.77861 P PPLL IE C 10 0 42 Europe/Dublin 2010-08-14 +3311971 Ballymeen Ballymeen 53.09278 -8.80194 P PPLL IE C 10 0 32 Europe/Dublin 2010-08-14 +3311972 Ballyloughaun Ballyloughaun 53.10528 -8.80389 P PPLL IE C 10 0 31 Europe/Dublin 2010-08-14 +3311973 Lough Coy Lough Coy 53.11417 -8.76167 H LK IE C 10 0 45 Europe/Dublin 2010-08-14 +3311974 Skehanagh Skehanagh 53.12111 -8.76694 P PPLL IE C 10 0 41 Europe/Dublin 2010-08-14 +3311975 Ballinduff Ballinduff 53.125 -8.80639 P PPLL IE C 10 0 30 Europe/Dublin 2010-08-14 +3311976 Limepark Limepark 53.13167 -8.75083 S EST IE C 10 0 48 Europe/Dublin 2010-08-14 +3311977 Ballymaquiff Ballymaquiff 53.13528 -8.84194 P PPLL IE C 10 0 24 Europe/Dublin 2010-08-14 +3311978 Killomoran Killomoran 53.09889 -8.8875 P PPLL IE C 10 0 38 Europe/Dublin 2010-08-14 +3311979 Caherglassaun Lough Caherglassaun Lough 53.10389 -8.87417 H LK IE C 10 0 33 Europe/Dublin 2010-08-14 +3311980 Ballybuck Ballybuck 53.1075 -8.90306 P PPLL IE C 10 0 35 Europe/Dublin 2010-08-14 +3311981 Cahermore Cahermore 53.12083 -8.85944 P PPLL IE C 10 0 28 Europe/Dublin 2010-08-14 +3311982 Caherawoneen Caherawoneen 53.13667 -8.88583 P PPLL IE C 10 0 21 Europe/Dublin 2010-08-14 +3311983 Loughcurra Loughcurra 53.13056 -8.90528 P PPLL IE C 10 0 22 Europe/Dublin 2010-08-14 +3311984 Northampton House Northampton House 53.12389 -8.90222 S HSEC IE C 10 0 26 Europe/Dublin 2010-08-14 +3311985 Cappaghmore Cappaghmore 53.10111 -8.96806 P PPLL IE C 10 0 52 Europe/Dublin 2010-08-14 +3311986 Cahererillan Cahererillan 53.105 -8.94806 P PPLL IE C 10 0 38 Europe/Dublin 2010-08-14 +3311987 Gortskeagh Gortskeagh 53.11722 -8.95944 P PPLL IE C 10 0 22 Europe/Dublin 2010-08-14 +3311988 Cloonnasee Cloonnasee 53.12778 -8.94667 P PPLL IE C 10 0 12 Europe/Dublin 2010-08-14 +3311989 Funshin More Funshin More 53.11972 -8.99556 P PPLL IE C 10 0 50 Europe/Dublin 2010-08-14 +3311990 Lough Oona Lough Oona 53.03139 -8.88917 H LK IE C 10 0 49 Europe/Dublin 2010-08-14 +3311991 Walterstown Walterstown 52.93389 -8.88611 P PPLL IE M 03 0 63 Europe/Dublin 2010-08-14 +3311992 Gleninagh Lodge Gleninagh Lodge 53.13861 -9.20306 S HSE IE M 03 0 35 Europe/Dublin 2010-08-14 +3311993 Eagle Rock Eagle Rock 53.23917 -9.80194 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311994 Redflag Island Redflag Island 53.24333 -9.79333 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311995 Freaghallaunmore Freaghallaunmore 53.24139 -9.76639 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311996 Freaghhillaun Beg Freaghhillaun Beg 53.24611 -9.76278 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311997 Inisherk Inisherk 53.25389 -9.75222 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311998 Dawsy’s Rock Dawsy's Rock 53.22639 -9.73778 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3311999 Dog Island Dog Island 53.23278 -9.72694 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312000 Dinish Dinish 53.26722 -9.755 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312001 Loughcarrick Island Loughcarrick Island 53.22528 -9.69389 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312002 Illaunanownim Illaunanownim 53.2275 -9.68917 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312003 Trawbaun Trawbaun 53.24111 -9.66056 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312004 Ballynakill Lough Ballynakill Lough 53.24528 -9.69611 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312005 Lough Hibbert Lough Hibbert 53.25139 -9.67139 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312006 Lough Awalha Lough Awalha 53.25333 -9.68556 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312007 Knockfin Knockfin 53.25 -9.70222 T HLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312008 Coonawilleen Bay Coonawilleen Bay 53.25389 -9.71222 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312009 Lough Nagowan Lough Nagowan 53.26083 -9.69806 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312010 Lough Nafiddaun Lough Nafiddaun 53.26139 -9.65306 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312011 Lough Illauntrasna Lough Illauntrasna 53.27167 -9.66528 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312012 Glentrasna Glentrasna 53.27389 -9.67528 T HLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312013 Farnace Farnace 53.25861 -9.74944 L LCTY IE C 10 0 1 Europe/Dublin 2010-08-14 +3312015 Ard Bay Ard Bay 53.32278 -9.85417 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312016 Lough Keenaun Lough Keenaun 53.32417 -9.83861 H LK IE C 10 0 44 Europe/Dublin 2010-08-14 +3312017 Lough Truskar Lough Truskar 53.31667 -9.785 H LK IE C 10 0 44 Europe/Dublin 2010-08-14 +3312018 Lough Sheedagh Lough Sheedagh 53.32361 -9.79278 H LK IE C 10 0 46 Europe/Dublin 2010-08-14 +3312019 Rushennamanagh Rushennamanagh 53.32028 -9.80833 L LCTY IE C 10 0 49 Europe/Dublin 2010-08-14 +3312020 Galleen Galleen 53.33528 -9.84889 T HLL IE C 10 0 111 Europe/Dublin 2010-08-14 +3312021 Lough Keamnacally Lough Keamnacally 53.33722 -9.81639 H LK IE C 10 0 123 Europe/Dublin 2010-08-14 +3312022 Ardmore Ardmore 53.31528 -9.76917 P PPLL IE C 10 0 16 Europe/Dublin 2010-08-14 +3312023 Ardmore Point Ardmore Point 53.29778 -9.77 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312024 Loughamore Loughamore 53.33194 -9.75833 P PPLL IE C 10 0 114 Europe/Dublin 2010-08-14 +3312025 Lough Ierin Lough Ierin 53.32917 -9.77111 H LK IE C 10 0 100 Europe/Dublin 2010-08-14 +3312026 Lough Pibrum Lough Pibrum 53.34611 -9.77861 H LK IE C 10 0 82 Europe/Dublin 2010-08-14 +3312027 Dooletter Lough Dooletter Lough 53.34917 -9.82083 H LK IE C 10 0 140 Europe/Dublin 2010-08-14 +3312028 Glenaruidmore Lough Glenaruidmore Lough 53.34778 -9.74444 H LK IE C 10 0 121 Europe/Dublin 2010-08-14 +3312029 Knockboy Knockboy 53.36278 -9.84111 T HLL IE C 10 0 132 Europe/Dublin 2010-08-14 +3312030 Saineaghmore Lough Saineaghmore Lough 53.36611 -9.81667 H LK IE C 10 0 138 Europe/Dublin 2010-08-14 +3312031 Lough Nagraigue Lough Nagraigue 53.37417 -9.80917 H LK IE C 10 0 97 Europe/Dublin 2010-08-14 +3312032 Lough Knocknagapple Lough Knocknagapple 53.37278 -9.84806 H LK IE C 10 0 77 Europe/Dublin 2010-08-14 +3312033 Lough Apheebera Lough Apheebera 53.3775 -9.76778 H LK IE C 10 0 61 Europe/Dublin 2010-08-14 +3312034 Lough Maumeenmaunragh Lough Maumeenmaunragh 53.37417 -9.75389 H LK IE C 10 0 137 Europe/Dublin 2010-08-14 +3312035 Lough Naneeve Lough Naneeve 53.38389 -9.79917 H LK IE C 10 0 34 Europe/Dublin 2010-08-14 +3312036 Cullaherick Lough Cullaherick Lough 53.38861 -9.80083 H LK IE C 10 0 26 Europe/Dublin 2010-08-14 +3312037 Avogh Rock Avogh Rock 53.36472 -9.72417 T RK IE C 10 0 110 Europe/Dublin 2010-08-14 +3312038 Illaungorm Illaungorm 53.39861 -9.82306 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312039 Croghnut Croghnut 53.39583 -9.81111 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312040 Canower Canower 53.40917 -9.85833 P PPLL IE C 10 0 3 Europe/Dublin 2010-08-14 +3312041 Illaunarroghnut Illaunarroghnut 53.40167 -9.80667 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312042 Bunnahown Bunnahown 53.40583 -9.78806 T HLL IE C 10 0 29 Europe/Dublin 2010-08-14 +3312043 Owengowla Owengowla 53.39694 -9.7875 H STM IE C 10 0 27 Europe/Dublin 2010-08-14 +3312044 Loughamillaun Loughamillaun 53.40389 -9.72194 H LK IE C 10 0 56 Europe/Dublin 2010-08-14 +3312045 Gowlan East Gowlan East 53.40611 -9.71444 L LCTY IE C 10 0 63 Europe/Dublin 2010-08-14 +3312046 Lough Nabrocky Lough Nabrocky 53.38389 -9.72333 H LK IE C 10 0 188 Europe/Dublin 2010-08-14 +3312047 Lough Aconeera Lough Aconeera 53.37361 -9.68833 H LK IE C 10 0 35 Europe/Dublin 2010-08-14 +3312048 Flannery Bridge Flannery Bridge 53.35944 -9.70167 P PPL IE C 10 0 42 Europe/Dublin 2010-08-14 +3312049 Loughaconeera Loughaconeera 53.36972 -9.72222 L LCTY IE C 10 0 188 Europe/Dublin 2010-08-14 +3312050 Lough Alligan Lough Alligan 53.40417 -9.66472 H LK IE C 10 0 39 Europe/Dublin 2010-08-14 +3312051 Lough Bunnahask Lough Bunnahask 53.41417 -9.65472 H LK IE C 10 0 45 Europe/Dublin 2010-08-14 +3312052 Lough Avally Lough Avally 53.39556 -9.66278 H LK IE C 10 0 21 Europe/Dublin 2010-08-14 +3312053 Invermore Lough Invermore Lough 53.39611 -9.65167 H LK IE C 10 0 15 Europe/Dublin 2010-08-14 +3312054 Lough Ailtdarra Lough Ailtdarra 53.40583 -9.64694 H LK IE C 10 0 27 Europe/Dublin 2010-08-14 +3312055 Inverbeg Lough Inverbeg Lough 53.39639 -9.63389 H LK IE C 10 0 28 Europe/Dublin 2010-08-14 +3312056 Lough Nahavreygarriva Lough Nahavreygarriva 53.40833 -9.62833 H LK IE C 10 0 41 Europe/Dublin 2010-08-14 +3312057 Lough Invernagleragh Lough Invernagleragh 53.40306 -9.61111 H LK IE C 10 0 69 Europe/Dublin 2010-08-14 +3312058 Lough Adav Lough Adav 53.41056 -9.59722 H LK IE C 10 0 128 Europe/Dublin 2010-08-14 +3312059 Inver Lodge Inver Lodge 53.40111 -9.62 S HSE IE C 10 0 55 Europe/Dublin 2010-08-14 +3312060 Lough Aroolagh Lough Aroolagh 53.38861 -9.61556 H LK IE C 10 0 109 Europe/Dublin 2010-08-14 +3312061 Pearse’s Cottage Pearse's Cottage 53.38694 -9.61028 S HSE IE C 10 0 109 Europe/Dublin 2010-08-14 +3312062 Glencoh Glencoh 53.38694 -9.59944 L LCTY IE C 10 0 142 Europe/Dublin 2010-08-14 +3312063 Turlough Turlough 53.38444 -9.62972 L LCTY IE C 10 0 46 Europe/Dublin 2010-08-14 +3312064 Illaunnagappul Illaunnagappul 53.36278 -9.655 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312065 Crow Island Crow Island 53.35889 -9.67028 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312066 Illaunmore Illaunmore 53.35667 -9.65444 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312067 Illauneeragh West Illauneeragh West 53.35472 -9.67556 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312068 Turloughbeg Turloughbeg 53.3525 -9.62333 L LCTY IE C 10 0 2 Europe/Dublin 2010-08-14 +3312069 Garrivinnagh Garrivinnagh 53.34 -9.64083 L LCTY IE C 10 0 1 Europe/Dublin 2010-08-14 +3312070 Greeve Island Greeve Island 53.33972 -9.67472 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312071 North Island North Island 53.33361 -9.68944 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312072 Illaunard Illaunard 53.33111 -9.68361 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312073 Beaghy Islands Beaghy Islands 53.32889 -9.66361 T ISLS IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312074 Leighon Island Leighon Island 53.32528 -9.63722 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312075 Annaghvaan Annaghvaan 53.32 -9.6475 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312076 Bunnahill Bunnahill 53.32861 -9.59306 T HLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312077 Loughaunavneen Loughaunavneen 53.32694 -9.61694 L LCTY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312078 Lough Nafatha Lough Nafatha 53.32139 -9.60056 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312079 Lough Atinnyadda Lough Atinnyadda 53.32 -9.58667 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312080 Lough Aughagaddy Lough Aughagaddy 53.31222 -9.59889 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312081 Lough Anoughlacka Lough Anoughlacka 53.305 -9.57389 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312082 Lough Altocreen Lough Altocreen 53.30111 -9.59 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312083 Nacrimina Nacrimina 53.31444 -9.585 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312084 Illaunroe Illaunroe 53.29139 -9.70889 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312085 Lettermore Lettermore Leitir Moir,Leitir Móir,Lettermore 53.2925 -9.65417 H LK IE IE C 10 0 1 Europe/Dublin 2010-08-14 +3312086 Inchaghaun Inchaghaun 53.29917 -9.715 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312087 Lettercallow Lettercallow 53.29917 -9.69889 L LCTY IE C 10 0 38 Europe/Dublin 2010-08-14 +3312088 Terranea Terranea 53.27528 -9.65972 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312089 Carraveg Bay Carraveg Bay 53.27194 -9.64389 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312090 Lough Natawnynore Lough Natawnynore 53.26472 -9.61667 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312091 Inishlay Inishlay 53.29194 -9.63833 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312092 Rossroe Island Rossroe Island 53.28944 -9.60556 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312093 Inchamakinna Inchamakinna 53.28417 -9.6175 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312094 Lough Aleandillure Lough Aleandillure 53.26083 -9.59306 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312095 Loughaunwillin Loughaunwillin 53.26972 -9.6225 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312096 Loughauneala Loughauneala 53.25444 -9.62917 L LCTY IE C 10 0 1 Europe/Dublin 2010-08-14 +3312097 Keeraunbeg Keeraunbeg 53.24639 -9.61278 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312098 Doleen Harbour Doleen Harbour 53.24028 -9.59861 H HBR IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312099 Pointa Pointa 53.24528 -9.58583 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312100 Barraderry Barraderry 53.25556 -9.58 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312101 Keenanmore Keenanmore 53.26083 -9.58167 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312102 Glenmore Glenmore 53.26806 -9.57972 L LCTY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312103 Glashnacally Glashnacally 53.27861 -9.59694 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312104 Drumalegaun Drumalegaun 53.28472 -9.59528 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312105 Foal Island Foal Island 53.23889 -9.55083 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312106 Rossareel Hill Rossareel Hill 53.26528 -9.55639 T HLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312107 Garryroe Garryroe 53.28111 -9.57278 L LCTY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312108 Tooreengarve Tooreengarve 53.29583 -9.59444 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312109 Lough Nawnaghaneekyne Lough Nawnaghaneekyne 53.29972 -9.54944 H LK IE C 10 0 12 Europe/Dublin 2010-08-14 +3312110 Curardacrugh Curardacrugh 53.22667 -9.52889 T PT IE C 10 0 1 Europe/Dublin 2010-08-14 +3312111 Clogmore South Clogmore South 53.23111 -9.52417 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312112 Blake’s Lodge Blake's Lodge 53.23583 -9.49361 S HSEC IE C 10 0 10 Europe/Dublin 2010-08-14 +3312113 Ballynahown Ballynahown Baile na hAbhann,Ballynahown 53.24389 -9.50167 P PPL IE C 10 0 17 Europe/Dublin 2010-08-14 +3312114 Banraghbaun Banraghbaun 53.24444 -9.535 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312115 Keenaunnagark Keenaunnagark 53.25194 -9.54056 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312116 Lough Naskanniva Lough Naskanniva 53.25167 -9.49417 H LK IE C 10 0 36 Europe/Dublin 2010-08-14 +3312117 Loughaunevneen Loughaunevneen 53.25333 -9.5125 H LK IE C 10 0 18 Europe/Dublin 2010-08-14 +3312118 Lough Astickeen Lough Astickeen 53.25917 -9.53111 H LK IE C 10 0 8 Europe/Dublin 2010-08-14 +3312119 Lough Nahoga Lough Nahoga 53.265 -9.50389 H LK IE C 10 0 37 Europe/Dublin 2010-08-14 +3312120 Curranavilla Curranavilla 53.25889 -9.47278 T HLL IE C 10 0 75 Europe/Dublin 2010-08-14 +3312121 Lough Adooraun Lough Adooraun 53.26722 -9.47528 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312122 Lough Oughteraglanna Lough Oughteraglanna 53.27778 -9.48361 H LK IE C 10 0 71 Europe/Dublin 2010-08-14 +3312123 Derroogh Derroogh 53.27667 -9.51806 P PPL IE C 10 0 28 Europe/Dublin 2010-08-14 +3312124 Knocknafaska Knocknafaska 53.285 -9.525 P PPL IE C 10 0 34 Europe/Dublin 2010-08-14 +3312125 Cashla River Cashla River 53.28167 -9.53306 H STM IE C 10 0 18 Europe/Dublin 2010-08-14 +3312126 Lough Vauracruffaun Lough Vauracruffaun 53.30417 -9.53667 H LK IE C 10 0 27 Europe/Dublin 2010-08-14 +3312127 Lough Carrafinla Lough Carrafinla 53.30417 -9.55556 H LK IE C 10 0 9 Europe/Dublin 2010-08-14 +3312128 Lough Corraundahy Lough Corraundahy 53.3125 -9.56472 H LK IE C 10 0 5 Europe/Dublin 2010-08-14 +3312129 Lough Namroughania Lough Namroughania 53.31639 -9.52667 H LK IE C 10 0 45 Europe/Dublin 2010-08-14 +3312130 Loughaunveeny Loughaunveeny 53.30917 -9.54 L LCTY IE C 10 0 33 Europe/Dublin 2010-08-14 +3312131 Derrykyle Derrykyle 53.29722 -9.51111 L LCTY IE C 10 0 52 Europe/Dublin 2010-08-14 +3312132 Lough Nacreeva Lough Nacreeva 53.33028 -9.53972 H LK IE C 10 0 45 Europe/Dublin 2010-08-14 +3312133 Lough Naskeha Lough Naskeha 53.33306 -9.51611 H LK IE C 10 0 79 Europe/Dublin 2010-08-14 +3312134 Muckanagh Lough Muckanagh Lough 53.34222 -9.50111 H LK IE C 10 0 103 Europe/Dublin 2010-08-14 +3312135 Kinvarra Kinvarra 53.33889 -9.55139 L LCTY IE C 10 0 21 Europe/Dublin 2010-08-14 +3312136 Evneenmore Island Evneenmore Island 53.33306 -9.57389 T ISL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312137 Camus Eighter Camus Eighter 53.3525 -9.56194 P PPLL IE C 10 0 24 Europe/Dublin 2010-08-14 +3312138 Muckareaghederdauhaulia Muckareaghederdauhaulia 53.34417 -9.58389 L LCTY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312139 Inisheltia Inisheltia 53.35528 -9.59361 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312140 Loughaumultera Loughaumultera 53.36583 -9.55444 H LK IE C 10 0 48 Europe/Dublin 2010-08-14 +3312141 Lough Knockaunawaddy Lough Knockaunawaddy 53.3975 -9.54 H LK IE C 10 0 60 Europe/Dublin 2010-08-14 +3312142 Glentrasna Glentrasna 53.40466 -9.51598 P PPLL IE C 10 0 121 Europe/Dublin 2010-08-14 +3312143 Lackadunna Lackadunna 53.39639 -9.49639 T MT IE C 10 0 177 Europe/Dublin 2010-08-14 +3312144 Lettermore Lettermore 53.38389 -9.50056 P PPLL IE C 10 0 111 Europe/Dublin 2010-08-14 +3312145 Lough Nafurnace Lough Nafurnace 53.375 -9.5375 P PPLL IE C 10 0 60 Europe/Dublin 2010-08-14 +3312146 Shanvally Shanvally 53.37917 -9.49694 P PPLL IE C 10 0 97 Europe/Dublin 2010-08-14 +3312147 Knocknaggivhan Knocknaggivhan 53.35861 -9.49389 T HLL IE C 10 0 138 Europe/Dublin 2010-08-14 +3312148 Shannawona Lough Shannawona Lough 53.40139 -9.44722 H LK IE C 10 0 162 Europe/Dublin 2010-08-14 +3312149 Shannadullaghaun Lough Shannadullaghaun Lough 53.39306 -9.46944 H LK IE C 10 0 176 Europe/Dublin 2010-08-14 +3312150 Loughaumerin Loughaumerin 53.39 -9.47139 L LCTY IE C 10 0 172 Europe/Dublin 2010-08-14 +3312151 Lough Aclogher Lough Aclogher 53.37722 -9.44528 H LK IE C 10 0 149 Europe/Dublin 2010-08-14 +3312152 Lough Enoer Lough Enoer 53.3725 -9.47194 H LK IE C 10 0 157 Europe/Dublin 2010-08-14 +3312153 Lough Carrickillawallia Lough Carrickillawallia 53.35556 -9.45472 H LK IE C 10 0 115 Europe/Dublin 2010-08-14 +3312154 Muckanaghkillew Muckanaghkillew 53.34306 -9.46306 P PPL IE C 10 0 86 Europe/Dublin 2010-08-14 +3312155 Keeraunduff Keeraunduff 53.3225 -9.46861 T HLL IE C 10 0 74 Europe/Dublin 2010-08-14 +3312156 Bovroughaun Lough Bovroughaun Lough 53.31444 -9.44417 H LK IE C 10 0 83 Europe/Dublin 2010-08-14 +3312157 Lough Navreaghly Lough Navreaghly 53.32139 -9.45111 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312158 Knockadoagh Knockadoagh 53.30556 -9.49444 L LCTY IE C 10 0 78 Europe/Dublin 2010-08-14 +3312159 Loughaumnacrossy Loughaumnacrossy 53.29611 -9.48917 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312160 Lough Fadda Lough Fadda 53.27917 -9.45556 H LK IE C 10 0 63 Europe/Dublin 2010-08-14 +3312161 Lough Bonramush Lough Bonramush 53.29861 -9.455 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312162 Lough Crockaillenalee Lough Crockaillenalee 53.30472 -9.42444 H LK IE C 10 0 107 Europe/Dublin 2010-08-14 +3312163 Lough Ugga More Lough Ugga More 53.27194 -9.41889 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312164 Lough Nambrackmore Lough Nambrackmore 53.27833 -9.40306 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312165 Lough Ergooa Lough Ergooa 53.3 -9.41556 H LK IE C 10 0 100 Europe/Dublin 2010-08-14 +3312166 Lough Canagun Lough Canagun 53.29694 -9.40667 H LK IE C 10 0 101 Europe/Dublin 2010-08-14 +3312167 Tullynasheoy Tullynasheoy 53.31389 -9.4025 T HLL IE C 10 0 128 Europe/Dublin 2010-08-14 +3312168 Tullaghalaher Hill Tullaghalaher Hill 53.26417 -9.40389 T HLL IE C 10 0 59 Europe/Dublin 2010-08-14 +3312169 Loughaunbeg Loughaunbeg 53.27056 -9.39028 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312170 Tonaghmore Tonaghmore 53.28611 -9.39639 T HLL IE C 10 0 91 Europe/Dublin 2010-08-14 +3312171 Knocknalee Knocknalee 53.28944 -9.42194 L LCTY IE C 10 0 91 Europe/Dublin 2010-08-14 +3312172 Lough More Lough More 53.30444 -9.385 H LK IE C 10 0 116 Europe/Dublin 2010-08-14 +3312173 Keeraunduff Keeraunduff 53.27056 -9.43944 T HLL IE C 10 0 61 Europe/Dublin 2010-08-14 +3312174 Castle Point Castle Point 53.23 -9.45972 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312175 Cantronlahan Cantronlahan 53.2475 -9.46083 L LCTY IE C 10 0 21 Europe/Dublin 2010-08-14 +3312176 Ballinteemore Ballinteemore 53.23944 -9.42389 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312177 Carnarona Point Carnarona Point 53.23472 -9.42 T PT IE C 10 0 1 Europe/Dublin 2010-08-14 +3312178 Ballinluggaun Ballinluggaun 53.24722 -9.41778 P PPLL IE C 10 0 18 Europe/Dublin 2010-08-14 +3312179 Loughaunbeg Loughaunbeg 53.24056 -9.39528 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312180 Kilroe Kilroe 53.26056 -9.35778 L LCTY IE C 10 0 45 Europe/Dublin 2010-08-14 +3312181 Tievegarriff Tievegarriff 53.24278 -9.35806 T CAPE IE C 10 0 1 Europe/Dublin 2010-08-14 +3312182 Dooletter Dooletter 53.24583 -9.37917 L LCTY IE C 10 0 11 Europe/Dublin 2010-08-14 +3312183 Crumlin River Crumlin River 53.23694 -9.43972 H STM IE C 10 0 1 Europe/Dublin 2010-08-14 +3312184 Lough Natawneighter Lough Natawneighter 53.29333 -9.35 H LK IE C 10 0 71 Europe/Dublin 2010-08-14 +3312185 Loughanillaunmore Loughanillaunmore 53.3075 -9.34194 H LK IE C 10 0 78 Europe/Dublin 2010-08-14 +3312186 Lough Bealanambrack Lough Bealanambrack 53.32472 -9.36028 H LK IE C 10 0 123 Europe/Dublin 2010-08-14 +3312187 Loughaunayella Loughaunayella 53.32194 -9.34556 H LK IE C 10 0 92 Europe/Dublin 2010-08-14 +3312188 Ardderroo Lough Ardderroo Lough 53.33083 -9.30556 H LK IE C 10 0 69 Europe/Dublin 2010-08-14 +3312189 Lough Naweelan Lough Naweelan 53.34222 -9.30889 H LK IE C 10 0 80 Europe/Dublin 2010-08-14 +3312190 Lough Fadda Lough Fadda 53.34667 -9.30278 H LK IE C 10 0 94 Europe/Dublin 2010-08-14 +3312191 Lough Seccon Lough Seccon 53.36111 -9.36833 H LK IE C 10 0 130 Europe/Dublin 2010-08-14 +3312192 Lough Uggool Lough Uggool 53.36083 -9.34306 H LK IE C 10 0 125 Europe/Dublin 2010-08-14 +3312193 Lough Namoreleen Lough Namoreleen 53.39111 -9.39333 H LK IE C 10 0 166 Europe/Dublin 2010-08-14 +3312194 Knockwaumnamoe Knockwaumnamoe 53.40417 -9.42194 T HLL IE C 10 0 144 Europe/Dublin 2010-08-14 +3312195 Derradda Derradda 53.40861 -9.39361 L LCTY IE C 10 0 84 Europe/Dublin 2010-08-14 +3312196 Rusheeny Rusheeny 53.41389 -9.35722 P PPLL IE C 10 0 81 Europe/Dublin 2010-08-14 +3312197 Shannaghree Lough Shannaghree Lough 53.40222 -9.3425 H LK IE C 10 0 109 Europe/Dublin 2010-08-14 +3312198 Buffy Lough Buffy Lough 53.39389 -9.30028 H LK IE C 10 0 86 Europe/Dublin 2010-08-14 +3312199 Bunnagippaun Bunnagippaun 53.39444 -9.33444 P PPLL IE C 10 0 128 Europe/Dublin 2010-08-14 +3312200 Letter Lodge Letter Lodge 53.35861 -9.29361 S HSE IE C 10 0 152 Europe/Dublin 2010-08-14 +3312201 Cockernarusheeny Cockernarusheeny 53.41056 -9.33472 T HLL IE C 10 0 73 Europe/Dublin 2010-08-14 +3312202 Magheramore Magheramore 53.40917 -9.30194 P PPLL IE C 10 0 48 Europe/Dublin 2010-08-14 +3312203 Saliahoona Point Saliahoona Point 53.23944 -9.33083 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312204 Saliahoona Saliahoona 53.2475 -9.33139 P PPL IE C 10 0 3 Europe/Dublin 2010-08-14 +3312205 Bohoona Bohoona 53.2525 -9.32778 L LCTY IE C 10 0 16 Europe/Dublin 2010-08-14 +3312206 Aille Aille 53.25111 -9.38639 L LCTY IE C 10 0 36 Europe/Dublin 2010-08-14 +3312207 Shannagurraun Shannagurraun 53.28028 -9.30444 L LCTY IE C 10 0 74 Europe/Dublin 2010-08-14 +3312208 Keeraunduff Hill Keeraunduff Hill 53.28222 -9.27583 T HLL IE C 10 0 98 Europe/Dublin 2010-08-14 +3312209 Keeraunduff Keeraunduff 53.28833 -9.2975 T HLL IE C 10 0 90 Europe/Dublin 2010-08-14 +3312210 Knockagurraun Knockagurraun 53.2725 -9.25806 T HLL IE C 10 0 83 Europe/Dublin 2010-08-14 +3312211 Knock Knock 53.28639 -9.25139 P PPLL IE C 10 0 110 Europe/Dublin 2010-08-14 +3312212 Knocka Lough Knocka Lough 53.29806 -9.25972 H LK IE C 10 0 133 Europe/Dublin 2010-08-14 +3312213 Lough Cam Lough Cam 53.30417 -9.27306 H LK IE C 10 0 141 Europe/Dublin 2010-08-14 +3312214 Gortgar Gortgar 53.28972 -9.23 P PPLL IE C 10 0 88 Europe/Dublin 2010-08-14 +3312215 Lettergunnet Lettergunnet 53.28083 -9.22667 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3312216 Poll Poll 53.30556 -9.28972 L LCTY IE C 10 0 111 Europe/Dublin 2010-08-14 +3312217 Owenboliska Owenboliska 53.29556 -9.31611 H STM IE C 10 0 73 Europe/Dublin 2010-08-14 +3312218 Ballintleva Ballintleva 53.25861 -9.26611 L LCTY IE C 10 0 73 Europe/Dublin 2010-08-14 +3312219 Derryloughaun Derryloughaun 53.25361 -9.24611 P PPLL IE C 10 0 32 Europe/Dublin 2010-08-14 +3312220 Derryoughter Derryoughter 53.26361 -9.2325 L LCTY IE C 10 0 41 Europe/Dublin 2010-08-14 +3312221 Allaphreaghaun Allaphreaghaun 53.25944 -9.24278 L LCTY IE C 10 0 60 Europe/Dublin 2010-08-14 +3312222 Furbogh Furbogh Furbogh,Na Forbacha 53.2575 -9.2125 P PPL IE IE C 10 0 1 Europe/Dublin 2010-08-14 +3312223 Knockatee Knockatee 53.3225 -9.27028 P PPLL IE C 10 0 157 Europe/Dublin 2010-08-14 +3312224 Slieveaneena Lough Slieveaneena Lough 53.31778 -9.26389 H LK IE C 10 0 163 Europe/Dublin 2010-08-14 +3312225 Finisklin Finisklin 53.31444 -9.23861 P PPLL IE C 10 0 126 Europe/Dublin 2010-08-14 +3312226 Keaigh Keaigh 53.32056 -9.21972 P PPLL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312227 Laughil Laughil 53.30639 -9.21278 P PPLL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312228 Tullaghnanoon Tullaghnanoon 53.33222 -9.28417 P PPLL IE C 10 0 115 Europe/Dublin 2010-08-14 +3312229 Knockranny Knockranny 53.34417 -9.27417 L LCTY IE C 10 0 155 Europe/Dublin 2010-08-14 +3312230 Lough Atavamore Lough Atavamore 53.33583 -9.22806 H LK IE C 10 0 94 Europe/Dublin 2010-08-14 +3312231 Tawnybeg Tawnybeg 53.33417 -9.24194 L LCTY IE C 10 0 132 Europe/Dublin 2010-08-14 +3312232 Pollena Pollena 53.34083 -9.23944 L LCTY IE C 10 0 110 Europe/Dublin 2010-08-14 +3312233 Knockaunranny Knockaunranny 53.36611 -9.23028 P PPLL IE C 10 0 62 Europe/Dublin 2010-08-14 +3312234 Shanballyoghery Shanballyoghery 53.35917 -9.22472 P PPLL IE C 10 0 63 Europe/Dublin 2010-08-14 +3312235 Newtown Hill Newtown Hill 53.34917 -9.22306 T HLL IE C 10 0 81 Europe/Dublin 2010-08-14 +3312236 Drimmavohaun Drimmavohaun 53.34444 -9.20583 P PPLL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312237 Newtown Newtown 53.35722 -9.21667 P PPLL IE C 10 0 75 Europe/Dublin 2010-08-14 +3312238 Danesfield House Danesfield House 53.34361 -9.1875 S HSEC IE C 10 0 70 Europe/Dublin 2010-08-14 +3312239 Killaguile Killaguile 53.39222 -9.27861 S EST IE C 10 0 58 Europe/Dublin 2010-08-14 +3312240 Drimneen River Drimneen River 53.39306 -9.27833 H STM IE C 10 0 58 Europe/Dublin 2010-08-14 +3312241 Killarone Killarone 53.41444 -9.28278 P PPLL IE C 10 0 31 Europe/Dublin 2010-08-14 +3312242 Porridgetown Porridgetown 53.41083 -9.26139 P PPLL IE C 10 0 25 Europe/Dublin 2010-08-14 +3312243 Laghtgannon Laghtgannon 53.40417 -9.27111 P PPLL IE C 10 0 39 Europe/Dublin 2010-08-14 +3312244 Gortnagroagh Gortnagroagh 53.39944 -9.25306 P PPLL IE C 10 0 41 Europe/Dublin 2010-08-14 +3312245 Lough Naneerin Lough Naneerin 53.39361 -9.25611 H LK IE C 10 0 41 Europe/Dublin 2010-08-14 +3312246 Rossachill Rossachill 53.38944 -9.24583 S EST IE C 10 0 42 Europe/Dublin 2010-08-14 +3312247 Gortnandarragh Gortnandarragh 53.405 -9.24056 P PPLL IE C 10 0 27 Europe/Dublin 2010-08-14 +3312248 Garrynagry Garrynagry 53.39444 -9.22611 P PPLL IE C 10 0 29 Europe/Dublin 2010-08-14 +3312249 Coolagh Coolagh 53.36861 -9.22083 P PPLL IE C 10 0 51 Europe/Dublin 2010-08-14 +3312250 Doon Doon 53.3775 -9.2525 P PPLL IE C 10 0 61 Europe/Dublin 2010-08-14 +3312251 Corranellistrum Corranellistrum 53.41611 -9.20389 P PPLL IE C 10 0 18 Europe/Dublin 2010-08-14 +3312252 Srue Srue 53.41167 -9.23028 L LCTY IE C 10 0 20 Europe/Dublin 2010-08-14 +3312253 Kylemare Kylemare 53.40278 -9.2125 L LCTY IE C 10 0 23 Europe/Dublin 2010-08-14 +3312254 Oghery Castle Oghery Castle 53.37278 -9.21111 S CSTL IE C 10 0 51 Europe/Dublin 2010-08-14 +3312255 Deerfield House Deerfield House 53.355 -9.19861 S HSEC IE C 10 0 67 Europe/Dublin 2010-08-14 +3312256 Killannin Killannin 53.38111 -9.21083 P PPLL IE C 10 0 41 Europe/Dublin 2010-08-14 +3312257 Drincong House Drincong House 53.35139 -9.19694 S HSEC IE C 10 0 67 Europe/Dublin 2010-08-14 +3312258 Knock River Knock River 53.29583 -9.26278 H STM IE C 10 0 133 Europe/Dublin 2010-08-14 +3312259 Corranroo Bay Corranroo Bay 53.15167 -9.01639 H BAY IE 00 0 -9999 Europe/Dublin 1998-06-12 +3312260 Newtown House Newtown House 53.16306 -9.01083 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3312261 Geehy Geehy 53.16444 -9.03944 L LCTY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312262 Cloosh Cloosh 53.16 -9.01278 L LCTY IE C 10 0 1 Europe/Dublin 2010-08-14 +3312263 Knockakilleen Knockakilleen 53.16667 -9.0025 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312264 Knockgarra Knockgarra 53.15861 -9.0075 L LCTY IE C 10 0 1 Europe/Dublin 2010-08-14 +3312265 Tawnagh Tawnagh 53.15528 -8.98861 L LCTY IE C 10 0 1 Europe/Dublin 2010-08-14 +3312266 Carrownamaddra Carrownamaddra 53.13806 -8.97722 P PPL IE C 10 0 9 Europe/Dublin 2010-08-14 +3312267 Crossooha Crossooha 53.14667 -8.96778 L LCTY IE C 10 0 2 Europe/Dublin 2010-08-14 +3312268 Deorus House Deorus House 53.15361 -8.97028 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3312269 Parkmore Parkmore 53.17 -8.96972 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312270 Tarrea Tarrea 53.16444 -8.93139 P PPLL IE C 10 0 2 Europe/Dublin 2010-08-14 +3312271 Pollagh Pollagh 53.17222 -8.92389 P PPLL IE C 10 0 3 Europe/Dublin 2010-08-14 +3312272 Mulroog Mulroog 53.18167 -8.93778 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312273 Cartrongarv Cartrongarv 53.14611 -8.91528 P PPLL IE C 10 0 12 Europe/Dublin 2010-08-14 +3312274 Gortaboy Gortaboy 53.15222 -8.89611 P PPLL IE C 10 0 14 Europe/Dublin 2010-08-14 +3312275 Carrowgarriff Carrowgarriff 53.14806 -8.88167 P PPLL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312276 Owenbristy Owenbristy 53.15139 -8.84528 P PPLL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312277 Killeenavarra Killeenavarra 53.1625 -8.89833 L LCTY IE C 10 0 12 Europe/Dublin 2010-08-14 +3312278 Brackloon Brackloon 53.16278 -8.83917 L LCTY IE C 10 0 21 Europe/Dublin 2010-08-14 +3312279 Tooreen Tooreen 53.17028 -8.91194 L LCTY IE C 10 0 6 Europe/Dublin 2010-08-14 +3312280 Cloghballymore House Cloghballymore House 53.17472 -8.89917 S HSEC IE C 10 0 10 Europe/Dublin 2010-08-14 +3312281 Lough Fingall Lough Fingall 53.18194 -8.87056 H LK IE C 10 0 13 Europe/Dublin 2010-08-14 +3312282 Tullaghnafrankagh Lough Tullaghnafrankagh Lough 53.18472 -8.84778 H LK IE C 10 0 16 Europe/Dublin 2010-08-14 +3312283 Caherpeak Caherpeak 53.18806 -8.84694 P PPL IE C 10 0 16 Europe/Dublin 2010-08-14 +3312284 Eddy Point Eddy Point 53.19083 -9.00361 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312285 Mweenisharan Mweenisharan 53.20028 -8.93917 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312286 Tyrone Tyrone 53.20444 -8.90639 S EST IE C 10 0 2 Europe/Dublin 2010-08-14 +3312287 Druinacoo Druinacoo 53.20028 -8.90333 L LCTY IE C 10 0 2 Europe/Dublin 2010-08-14 +3312288 Mweenish Island Mweenish Island 53.20944 -8.98583 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312289 Corraduff Corraduff 53.21472 -8.95 L LCTY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312290 Ballynacourty Ballynacourty 53.22139 -8.94083 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312291 Ballynamanagh Ballynamanagh 53.2225 -8.92833 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312292 Ballynacloghy Ballynacloghy 53.2225 -8.96722 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312293 Garraun Garraun 53.23028 -8.94583 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312294 Parkmore Parkmore 53.22722 -8.98139 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312295 Inishcorra Inishcorra 53.2175 -9.00361 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312296 Mweeloon Bay Mweeloon Bay 53.22944 -8.99333 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312297 Saint Brendan’s Island Saint Brendan's Island 53.23556 -9.01194 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312298 Ardfry House Ardfry House 53.23694 -8.97667 S HSEC IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312299 Prospect House Prospect House 53.23389 -8.96833 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3312300 Caranavoodaun Caranavoodaun 53.18528 -8.82583 P PPLL IE C 10 0 19 Europe/Dublin 2010-08-14 +3312301 Newtown Newtown 53.20278 -8.87111 P PPLL IE C 10 0 8 Europe/Dublin 2010-08-14 +3312302 Kilcolgan Kilcolgan 53.20028 -8.87389 P PPLL IE C 10 0 8 Europe/Dublin 2010-08-14 +3312303 Ballynabucky Ballynabucky 53.20361 -8.83028 P PPLL IE C 10 0 16 Europe/Dublin 2010-08-14 +3312304 Larkvale House Larkvale House 53.19778 -8.8 S HSEC IE C 10 0 28 Europe/Dublin 2010-08-14 +3312305 Killeelybeg Killeelybeg 53.21 -8.85472 L LCTY IE C 10 0 10 Europe/Dublin 2010-08-14 +3312306 Roevehagh Roevehagh 53.21722 -8.83611 P PPL IE C 10 0 12 Europe/Dublin 2010-08-14 +3312307 Killeeneenmore Killeeneenmore 53.22306 -8.8 P PPL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312308 Shanbally Shanbally 53.22583 -8.77111 P PPL IE C 10 0 27 Europe/Dublin 2010-08-14 +3312309 Grannagh Grannagh 53.15028 -8.76389 L LCTY IE C 10 0 47 Europe/Dublin 2010-08-14 +3312310 Rathbaun Rathbaun 53.15778 -8.76194 P PPL IE C 10 0 47 Europe/Dublin 2010-08-14 +3312311 Fiddaun Fiddaun 53.16944 -8.73583 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3312312 Moneen East Moneen East 53.16056 -8.745 P PPL IE C 10 0 62 Europe/Dublin 2010-08-14 +3312313 Ballyglass Ballyglass 53.17361 -8.75778 L LCTY IE C 10 0 60 Europe/Dublin 2010-08-14 +3312314 Manninard Manninard 53.19389 -8.76278 L LCTY IE C 10 0 58 Europe/Dublin 2010-08-14 +3312315 Emlagh Cross Roads Emlagh Cross Roads 53.18361 -8.71972 P PPL IE C 10 0 109 Europe/Dublin 2010-08-14 +3312316 Aggard House Aggard House 53.21361 -8.74556 S HSEC IE C 10 0 67 Europe/Dublin 2010-08-14 +3312317 Aggard Stream Aggard Stream 53.22278 -8.74444 H STM IE C 10 0 52 Europe/Dublin 2010-08-14 +3312318 Shanelogh Shanelogh 53.20833 -8.71583 P PPL IE C 10 0 126 Europe/Dublin 2010-08-14 +3312319 Ballymanagh House Ballymanagh House 53.20083 -8.69889 S HSEC IE C 10 0 150 Europe/Dublin 2010-08-14 +3312320 Ballylin Ballylin 53.20833 -8.7075 L LCTY IE C 10 0 140 Europe/Dublin 2010-08-14 +3312321 Toberelatan Toberelatan 53.13722 -8.69639 P PPL IE C 10 0 98 Europe/Dublin 2010-08-14 +3312322 The Fishpond Cross Roads The Fishpond Cross Roads 53.16444 -8.67333 P PPL IE C 10 0 94 Europe/Dublin 2010-08-14 +3312323 Calluragh Calluragh 53.14806 -8.64111 P PPL IE C 10 0 154 Europe/Dublin 2010-08-14 +3312324 Three Kings Gap Three Kings Gap 53.16889 -8.64444 T GAP IE C 10 0 87 Europe/Dublin 2010-08-14 +3312325 Woodville House Woodville House 53.18389 -8.66778 S HSEC IE C 10 0 80 Europe/Dublin 2010-08-14 +3312326 Boggaun Boggaun 53.16333 -8.63806 L LCTY IE C 10 0 104 Europe/Dublin 2010-08-14 +3312327 Kylegarriff Kylegarriff 53.15111 -8.61306 L LCTY IE C 10 0 128 Europe/Dublin 2010-08-14 +3312328 Knockatee Knockatee 53.16611 -8.60361 T HLL IE C 10 0 117 Europe/Dublin 2010-08-14 +3312329 Abbeyville House Abbeyville House 53.16278 -8.57972 S HSEC IE C 10 0 143 Europe/Dublin 2010-08-14 +3312330 Cartron Cartron 53.19556 -8.66722 L LCTY IE C 10 0 87 Europe/Dublin 2010-08-14 +3312331 Knockauncoura Knockauncoura 53.19083 -8.6025 T HLL IE C 10 0 86 Europe/Dublin 2010-08-14 +3312332 Coorheen House Coorheen House 53.18306 -8.59139 S HSEC IE C 10 0 111 Europe/Dublin 2010-08-14 +3312333 Killeenadeema East Killeenadeema East 53.16028 -8.57 P PPL IE C 10 0 148 Europe/Dublin 2010-08-14 +3312334 Ardnadoman Ardnadoman 53.21 -8.62583 L LCTY IE C 10 0 68 Europe/Dublin 2010-08-14 +3312335 Newmannin Newmannin 53.20722 -8.66389 L LCTY IE C 10 0 74 Europe/Dublin 2010-08-14 +3312336 Lynchfort House Lynchfort House 53.22639 -8.57194 S HSEC IE C 10 0 74 Europe/Dublin 2010-08-14 +3312337 Killilan Bridge Killilan Bridge 53.22389 -8.62722 P PPL IE C 10 0 62 Europe/Dublin 2010-08-14 +3312338 Bookeen Bookeen 53.2525 -8.62833 P PPL IE C 10 0 58 Europe/Dublin 2010-08-14 +3312339 Dunsandle Dunsandle 53.23944 -8.63667 S EST IE C 10 0 55 Europe/Dublin 2010-08-14 +3312340 Riverview Castle Riverview Castle 53.23361 -8.66167 S CSTL IE C 10 0 49 Europe/Dublin 2010-08-14 +3312341 Caherkinmonwee Caherkinmonwee 53.23278 -8.7 P PPL IE C 10 0 46 Europe/Dublin 2010-08-14 +3312342 Ballymore Ballymore 53.22778 -8.72972 P PPL IE C 10 0 35 Europe/Dublin 2010-08-14 +3312343 Ballywinna Ballywinna 53.24194 -8.72194 P PPL IE C 10 0 38 Europe/Dublin 2010-08-14 +3312344 Hollypark House Hollypark House 53.24972 -8.68056 S EST IE C 10 0 45 Europe/Dublin 2010-08-14 +3312345 Kilconierin Kilconierin 53.25389 -8.68556 L LCTY IE C 10 0 44 Europe/Dublin 2010-08-14 +3312346 Knocknadaula Knocknadaula 53.26028 -8.59639 L LCTY IE C 10 0 66 Europe/Dublin 2010-08-14 +3312347 Rathville Rathville 53.26778 -8.58806 L LCTY IE C 10 0 69 Europe/Dublin 2010-08-14 +3312348 Knockroe Knockroe 53.29444 -8.60389 L LCTY IE C 10 0 68 Europe/Dublin 2010-08-14 +3312349 Gortakecran Gortakecran 53.2875 -8.6075 P PPLL IE C 10 0 67 Europe/Dublin 2010-08-14 +3312350 Clogharevaun Bridge Clogharevaun Bridge 53.26417 -8.62583 P PPL IE C 10 0 58 Europe/Dublin 2010-08-14 +3312351 Knockatogher Knockatogher 53.28417 -8.64028 P PPL IE C 10 0 60 Europe/Dublin 2010-08-14 +3312352 Lisduff Lisduff 53.30222 -8.61722 P PPLL IE C 10 0 69 Europe/Dublin 2010-08-14 +3312353 Taragh Castle Taragh Castle 53.30361 -8.62056 S CSTL IE C 10 0 69 Europe/Dublin 2010-08-14 +3312354 Carnakelly Carnakelly 53.2925 -8.65861 L LCTY IE C 10 0 56 Europe/Dublin 2010-08-14 +3312355 Esker Esker 53.27778 -8.68472 P PPL IE C 10 0 50 Europe/Dublin 2010-08-14 +3312356 Ballyboggan Ballyboggan 53.31444 -8.68028 P PPL IE C 10 0 55 Europe/Dublin 2010-08-14 +3312357 Blean Blean 53.29139 -8.71361 L LCTY IE C 10 0 49 Europe/Dublin 2010-08-14 +3312358 Kingsland Kingsland 53.29861 -8.72139 P PPLL IE C 10 0 48 Europe/Dublin 2010-08-14 +3312359 Caheroyan House Caheroyan House 53.30306 -8.73472 S HSEC IE C 10 0 43 Europe/Dublin 2010-08-14 +3312360 River Village River Village 53.31556 -8.71611 P PPLL IE C 10 0 49 Europe/Dublin 2010-08-14 +3312361 Cahefurvan Cahefurvan 53.2325 -8.77528 P PPL IE C 10 0 25 Europe/Dublin 2010-08-14 +3312362 Stoneleigh Stoneleigh 53.24778 -8.765 L LCTY IE C 10 0 30 Europe/Dublin 2010-08-14 +3312363 Cloondonoghoe Cloondonoghoe 53.22833 -8.81056 L LCTY IE C 10 0 17 Europe/Dublin 2010-08-14 +3312364 Ballygarriff Ballygarriff 53.23583 -8.81556 P PPL IE C 10 0 17 Europe/Dublin 2010-08-14 +3312365 Caherbulligin Caherbulligin 53.24167 -8.79944 P PPL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312366 Coldwood Coldwood 53.25417 -8.81222 P PPL IE C 10 0 17 Europe/Dublin 2010-08-14 +3312367 Ballinillann Ballinillann 53.24861 -8.84222 P PPL IE C 10 0 11 Europe/Dublin 2010-08-14 +3312368 Caherfinesker Caherfinesker 53.26528 -8.81056 L LCTY IE C 10 0 20 Europe/Dublin 2010-08-14 +3312369 Greethill Greethill 53.2725 -8.7925 P PPL IE C 10 0 26 Europe/Dublin 2010-08-14 +3312370 Moyveela Lodge Moyveela Lodge 53.27 -8.82139 S HSEC IE C 10 0 23 Europe/Dublin 2010-08-14 +3312371 Derrydonnell Castle Derrydonnell Castle 53.27333 -8.81972 S CSTL IE C 10 0 23 Europe/Dublin 2010-08-14 +3312372 Rockmore Rockmore 53.28 -8.7675 L LCTY IE C 10 0 31 Europe/Dublin 2010-08-14 +3312373 Moneymore Moneymore 53.26 -8.8825 P PPL IE C 10 0 12 Europe/Dublin 2010-08-14 +3312374 Cloghalarhard Cloghalarhard 53.24 -8.85972 P PPL IE C 10 0 7 Europe/Dublin 2010-08-14 +3312375 Caheradrine Caheradrine 53.24889 -8.89639 P PPL IE C 10 0 4 Europe/Dublin 2010-08-14 +3312376 Tonroe Tonroe 53.24028 -8.88861 P PPL IE C 10 0 3 Europe/Dublin 2010-08-14 +3312377 Toberroe Toberroe 53.28417 -8.81917 L LCTY IE C 10 0 30 Europe/Dublin 2010-08-14 +3312378 Rockhill House Rockhill House 53.25889 -8.90944 S HSEC IE C 10 0 7 Europe/Dublin 2010-08-14 +3312379 Parkroe Parkroe 53.25389 -8.92278 L LCTY IE C 10 0 3 Europe/Dublin 2010-08-14 +3312380 Rockland Rockland 53.26 -8.93611 L LCTY IE C 10 0 3 Europe/Dublin 2010-08-14 +3312381 Seafort House Seafort House 53.24194 -8.95111 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3312382 Frenchtort House Frenchtort House 53.27722 -8.90306 S HSEC IE C 10 0 12 Europe/Dublin 2010-08-14 +3312383 Bay View Bay View 53.25278 -8.95722 S EST IE C 10 0 1 Europe/Dublin 2010-08-14 +3312384 Roscam Point Roscam Point 53.26194 -8.97222 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312385 Thornpark Thornpark 53.27417 -8.93667 L LCTY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312386 Doughiska Doughiska 53.27861 -8.97389 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312387 Garraun Garraun 53.28056 -8.94528 P PPL IE C 10 0 4 Europe/Dublin 2010-08-14 +3312388 Glennascaul Glennascaul 53.28722 -8.92667 P PPL IE C 10 0 9 Europe/Dublin 2010-08-14 +3312389 Rosshill House Rosshill House 53.26861 -8.98028 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3312390 Rabbit Island Rabbit Island 53.26194 -9.00667 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312391 Carnmore Cross Roads Carnmore Cross Roads 53.30333 -8.93056 P PPL IE C 10 0 12 Europe/Dublin 2010-08-14 +3312392 Breanloughaun Breanloughaun 53.29333 -8.97417 P PPL IE C 10 0 4 Europe/Dublin 2010-08-14 +3312393 Ballybrit Ballybrit 53.29694 -8.99361 P PPL IE C 10 0 2 Europe/Dublin 2010-08-14 +3312394 Ballybaan Ballybaan 53.28611 -9.0075 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312395 Cloonadauneen Cloonadauneen 53.31139 -8.99667 L LCTY IE C 10 0 4 Europe/Dublin 2010-08-14 +3312396 Castlegar Castlegar 53.2975 -9.01917 P PPL IE C 10 0 2 Europe/Dublin 2010-08-14 +3312397 Lough Atalia Lough Atalia 53.275 -9.03472 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3312398 Shancroagh Shancroagh 53.28389 -9.04667 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312399 Terryland Terryland 53.28889 -9.05472 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3312400 Taylor’s Hill Taylor's Hill 53.27 -9.07194 S EST IE C 10 0 1 Europe/Dublin 2010-08-14 +3312401 Rahoon House Rahoon House 53.27333 -9.08778 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3312402 Dangan House Dangan House 53.29139 -9.07167 S HSEC IE C 10 0 9 Europe/Dublin 2010-08-14 +3312403 Letteragh Letteragh 53.28278 -9.09556 L LCTY IE C 10 0 4 Europe/Dublin 2010-08-14 +3312404 Blakes Hill Blakes Hill 53.25528 -9.10833 T HLL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312405 Bushy Park Bushy Park 53.29556 -9.0875 L PRK IE C 10 0 6 Europe/Dublin 2010-08-14 +3312406 Glenlough Glenlough 53.30056 -9.09417 P PPL IE C 10 0 9 Europe/Dublin 2010-08-14 +3312407 Clybaum Clybaum 53.27056 -9.10806 L LCTY IE C 10 0 4 Europe/Dublin 2010-08-14 +3312408 Tonabrocky Tonabrocky 53.28889 -9.1275 P PPL IE C 10 0 32 Europe/Dublin 2010-08-14 +3312409 Cappagh Cappagh 53.27417 -9.1325 P PPL IE C 10 0 18 Europe/Dublin 2010-08-14 +3312410 Cloghscollia Cloghscollia 53.26694 -9.14667 P PPL IE C 10 0 42 Europe/Dublin 2010-08-14 +3312411 Brownville Brownville 53.30778 -9.11139 S EST IE C 10 0 13 Europe/Dublin 2010-08-14 +3312412 Corboley Corboley 53.28778 -9.14944 L LCTY IE C 10 0 62 Europe/Dublin 2010-08-14 +3312413 Lissagurraun Lissagurraun 53.29556 -9.15917 P PPLL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312414 Trusky Trusky 53.26111 -9.16944 L LCTY IE C 10 0 34 Europe/Dublin 2010-08-14 +3312415 Lough Kip Lough Kip 53.29833 -9.2 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312416 Pollnaclogha Pollnaclogha 53.3025 -9.17944 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3312417 Shannafreaghoge Shannafreaghoge 53.27583 -9.20556 P PPL IE C 10 0 70 Europe/Dublin 2010-08-14 +3312418 Polleeny Polleeny 53.26417 -9.19694 L LCTY IE C 10 0 31 Europe/Dublin 2010-08-14 +3312419 Knocknagreana Knocknagreana 53.25472 -9.19083 L LCTY IE C 10 0 15 Europe/Dublin 2010-08-14 +3312420 Carrickanoge Carrickanoge 53.24361 -9.14083 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312421 Loughkip River Loughkip River 53.32376 -9.17179 H STM IE C 10 0 63 Europe/Dublin 2010-08-14 +3312422 Inchacommaun Islands Inchacommaun Islands 53.345 -9.11361 T ISLS IE C 10 0 20 Europe/Dublin 2010-08-14 +3312423 Rabbit Island Rabbit Island 53.35889 -9.08083 T ISL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312424 Boghilmore Island Boghilmore Island 53.3725 -9.1 T ISL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312425 Addragool Addragool 53.32111 -9.14444 P PPL IE C 10 0 25 Europe/Dublin 2010-08-14 +3312426 Clydagh Clydagh 53.32472 -9.16417 P PPLL IE C 10 0 52 Europe/Dublin 2010-08-14 +3312427 Clooniff Clooniff Clooniff,Clooniffe,Cluain Aoibh 53.32694 -9.13944 P PPL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312428 Moyculleen Lodge Moyculleen Lodge 53.3425 -9.14861 S HSE IE C 10 0 21 Europe/Dublin 2010-08-14 +3312429 Kylebroghlan Kylebroghlan 53.33111 -9.18972 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +3312430 Cloghaun Cloghaun 53.34667 -9.16806 L LCTY IE C 10 0 46 Europe/Dublin 2010-08-14 +3312431 Leagaun Leagaun 53.35361 -9.15861 P PPLL IE C 10 0 27 Europe/Dublin 2010-08-14 +3312432 Ballydotia Ballydotia 53.35389 -9.18389 L LCTY IE C 10 0 61 Europe/Dublin 2010-08-14 +3312433 Ballynahallia Ballynahallia 53.35917 -9.1575 P PPLL IE C 10 0 15 Europe/Dublin 2010-08-14 +3312434 Kilcloggaun Kilcloggaun 53.36333 -9.13 P PPLL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312435 Portdarragh Portdarragh 53.37056 -9.13472 P PPLL IE C 10 0 9 Europe/Dublin 2010-08-14 +3312436 Gortaghokera Gortaghokera 53.36333 -9.16056 L LCTY IE C 10 0 24 Europe/Dublin 2010-08-14 +3312437 Gortachalla Gortachalla 53.37194 -9.15472 P PPLL IE C 10 0 15 Europe/Dublin 2010-08-14 +3312438 Gortachalla Lough Gortachalla Lough 53.37694 -9.15833 H LK IE C 10 0 15 Europe/Dublin 2010-08-14 +3312439 Cloonnabinnia Cloonnabinnia 53.37472 -9.18611 P PPLL IE C 10 0 43 Europe/Dublin 2010-08-14 +3312440 Tullokyne Tullokyne 53.37556 -9.13806 P PPLL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312441 Currawatia Currawatia 53.38083 -9.13639 P PPLL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312442 Shankill Shankill 53.36667 -9.065 P PPLL IE C 10 0 9 Europe/Dublin 2010-08-14 +3312443 Muckrush Muckrush 53.35667 -9.07056 P PPLL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312444 Ower Ower 53.38444 -9.17278 P PPLL IE C 10 0 22 Europe/Dublin 2010-08-14 +3312445 Wormhole Wormhole 53.39722 -9.1525 P PPLL IE C 10 0 14 Europe/Dublin 2010-08-14 +3312446 Gortmore Islands Gortmore Islands 53.38806 -9.1175 T ISLS IE C 10 0 20 Europe/Dublin 2010-08-14 +3312447 Illaunaneel Illaunaneel 53.39139 -9.09444 T ISL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312448 Goat Islands Goat Islands 53.4025 -9.08389 T ISLS IE C 10 0 20 Europe/Dublin 2010-08-14 +3312449 Carrowmoreknock Carrowmoreknock 53.41361 -9.1775 P PPL IE C 10 0 17 Europe/Dublin 2010-08-14 +3312450 Cloonmore Cloonmore 53.41111 -9.16222 P PPLL IE C 10 0 14 Europe/Dublin 2010-08-14 +3312451 Whitemare’s Island Whitemare's Island 53.41667 -9.1225 T ISL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312452 Burnthouse Burnthouse 53.41278 -9.14806 P PPLL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312453 Lumnagh Lumnagh 53.4175 -9.05444 P PPLL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312454 Annagh Annagh 53.40333 -9.04528 P PPLL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312455 Tonamace Tonamace 53.39306 -9.03861 P PPLL IE C 10 0 24 Europe/Dublin 2010-08-14 +3312456 Shanbally Shanbally 53.40611 -9.03278 P PPLL IE C 10 0 34 Europe/Dublin 2010-08-14 +3312457 Bahobuck Bahobuck 53.41194 -9.00806 P PPLL IE C 10 0 63 Europe/Dublin 2010-08-14 +3312458 Glenrovagh Glenrovagh 53.41583 -8.98417 P PPLL IE C 10 0 71 Europe/Dublin 2010-08-14 +3312459 Corrandulla Corrandulla 53.39972 -8.99917 P PPLL IE C 10 0 46 Europe/Dublin 2010-08-14 +3312460 Aucloggeen Aucloggeen 53.39444 -8.95944 P PPLL IE C 10 0 48 Europe/Dublin 2010-08-14 +3312461 Castlecreevy Castlecreevy 53.39278 -9.02278 P PPLL IE C 10 0 35 Europe/Dublin 2010-08-14 +3312462 Barranny Barranny 53.36444 -9.06 P PPLL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312463 Addergoole Addergoole 53.36306 -9.01556 P PPLL IE C 10 0 15 Europe/Dublin 2010-08-14 +3312464 Coteeny Coteeny 53.38639 -9.05639 P PPLL IE C 10 0 14 Europe/Dublin 2010-08-14 +3312465 Cloonleenaun Cloonleenaun 53.38722 -9.03056 P PPLL IE C 10 0 26 Europe/Dublin 2010-08-14 +3312466 Woodpark Woodpark 53.37583 -9.065 P PPLL IE C 10 0 10 Europe/Dublin 2010-08-14 +3312467 Mace Mace 53.39444 -9.02417 P PPLL IE C 10 0 35 Europe/Dublin 2010-08-14 +3312468 Annaghdown House Annaghdown House 53.38306 -9.03417 S HSEC IE C 10 0 20 Europe/Dublin 2010-08-14 +3312469 Lisheenanoran Lisheenanoran 53.37333 -9.05278 P PPLL IE C 10 0 11 Europe/Dublin 2010-08-14 +3312470 Gortcloonmore Gortcloonmore 53.35278 -8.97167 P PPLL IE C 10 0 9 Europe/Dublin 2010-08-14 +3312471 Tonagarraun Tonagarraun 53.38111 -9.00944 P PPLL IE C 10 0 26 Europe/Dublin 2010-08-14 +3312472 Saint Brendan’s Saint Brendan's 53.39389 -8.98833 P PPLL IE C 10 0 48 Europe/Dublin 2010-08-14 +3312473 Baumore Baumore 53.38361 -8.94 S EST IE C 10 0 34 Europe/Dublin 2010-08-14 +3312474 Gardenham Gardenham 53.37667 -8.95611 P PPLL IE C 10 0 28 Europe/Dublin 2010-08-14 +3312475 Cloghaun Cloghaun 53.37361 -8.94111 P PPLL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312476 Montiagh Montiagh 53.3475 -8.97167 P PPLL IE C 10 0 9 Europe/Dublin 2010-08-14 +3312477 Angliham Angliham 53.32306 -9.05167 L LCTY IE C 10 0 6 Europe/Dublin 2010-08-14 +3312478 Kilroghter Kilroghter 53.3175 -9.04611 P PPLL IE C 10 0 6 Europe/Dublin 2010-08-14 +3312479 Coarsefield Coarsefield 53.32917 -9.0375 L LCTY IE C 10 0 6 Europe/Dublin 2010-08-14 +3312480 Kilcahill Kilcahill 53.41361 -8.92333 P PPLL IE C 10 0 46 Europe/Dublin 2010-08-14 +3312481 Kilgill Kilgill 53.40444 -8.9225 P PPLL IE C 10 0 41 Europe/Dublin 2010-08-14 +3312482 Monroe Monroe 53.38583 -8.90389 P PPLL IE C 10 0 30 Europe/Dublin 2010-08-14 +3312483 Carrownrooaun Carrownrooaun 53.39861 -8.91917 L LCTY IE C 10 0 36 Europe/Dublin 2010-08-14 +3312484 Carraghy Carraghy 53.38778 -8.9125 P PPLL IE C 10 0 31 Europe/Dublin 2010-08-14 +3312485 Carnoneen Carnoneen 53.36806 -8.88833 P PPLL IE C 10 0 24 Europe/Dublin 2010-08-14 +3312486 Carnonkeelwy Carnonkeelwy 53.35917 -8.905 P PPLL IE C 10 0 21 Europe/Dublin 2010-08-14 +3312487 Cahernahoon Cahernahoon 53.39028 -8.89167 L LCTY IE C 10 0 29 Europe/Dublin 2010-08-14 +3312488 Cahernashilleeny Cahernashilleeny 53.34972 -8.88778 P PPLL IE C 10 0 20 Europe/Dublin 2010-08-14 +3312489 Kiniska Kiniska 53.35 -8.90861 P PPLL IE C 10 0 16 Europe/Dublin 2010-08-14 +3312490 Knockdos Knockdos 53.37639 -8.89167 T HLL IE C 10 0 27 Europe/Dublin 2010-08-14 +3312491 Kiltroge Kiltroge 53.34333 -8.89167 P PPLL IE C 10 0 18 Europe/Dublin 2010-08-14 +3312492 Gortatleva Gortatleva 53.33222 -8.92528 P PPLL IE C 10 0 14 Europe/Dublin 2010-08-14 +3312493 Caherlea Caherlea 53.32667 -8.91389 P PPLL IE C 10 0 16 Europe/Dublin 2010-08-14 +3312494 Moor Park Moor Park 53.31917 -8.83194 S EST IE C 10 0 38 Europe/Dublin 2010-08-14 +3312495 Cashla Cashla 53.31944 -8.85167 P PPLL IE C 10 0 29 Europe/Dublin 2010-08-14 +3312496 Peakroe Peakroe 53.32667 -8.84278 L LCTY IE C 10 0 33 Europe/Dublin 2010-08-14 +3312497 Cregcarrag Cregcarrag 53.33667 -8.87583 S EST IE C 10 0 22 Europe/Dublin 2010-08-14 +3312498 Grange Grange 53.34639 -8.86056 P PPLL IE C 10 0 26 Europe/Dublin 2010-08-14 +3312499 Coolarne House Coolarne House 53.36583 -8.82806 S EST IE C 10 0 44 Europe/Dublin 2010-08-14 +3312500 Mira Mira 53.37889 -8.81 P PPLL IE C 10 0 56 Europe/Dublin 2010-08-14 +3312501 Ardnasodan Ardnasodan 53.40639 -8.81306 P PPLL IE C 10 0 50 Europe/Dublin 2010-08-14 +3312502 Annagh Monastery Annagh Monastery 53.41361 -8.815 S MSTY IE C 10 0 46 Europe/Dublin 2010-08-14 +3312504 Ballybrane Ballybrane 53.39111 -8.85944 L LCTY IE C 10 0 29 Europe/Dublin 2010-08-14 +3312505 Canteehy Canteehy 53.36972 -8.85139 L LCTY IE C 10 0 31 Europe/Dublin 2010-08-14 +3312506 Carheenlea Carheenlea 53.35611 -8.83222 L LCTY IE C 10 0 43 Europe/Dublin 2010-08-14 +3312507 Annagh Hill Annagh Hill 53.40111 -8.82722 L LCTY IE C 10 0 42 Europe/Dublin 2010-08-14 +3312508 Garrauncreen Garrauncreen 53.3975 -8.81944 L LCTY IE C 10 0 48 Europe/Dublin 2010-08-14 +3312509 Bullaun Bullaun 53.41 -8.85056 L LCTY IE C 10 0 32 Europe/Dublin 2010-08-14 +3312510 Ardskea More Ardskea More 53.41778 -8.84611 P PPL IE C 10 0 33 Europe/Dublin 2010-08-14 +3312511 Caherphuca Caherphuca 53.41389 -8.78056 P PPL IE C 10 0 64 Europe/Dublin 2010-08-14 +3312512 Crumlin Park Crumlin Park 53.39694 -8.77778 S EST IE C 10 0 72 Europe/Dublin 2010-08-14 +3312513 Laragh More Laragh More 53.38583 -8.79639 P PPL IE C 10 0 66 Europe/Dublin 2010-08-14 +3312514 Cahermore Cahermore 53.36417 -8.77694 T HLL IE C 10 0 70 Europe/Dublin 2010-08-14 +3312515 Newtown Newtown 53.32417 -8.82 P PPL IE C 10 0 41 Europe/Dublin 2010-08-14 +3312516 Ballybackagh Ballybackagh 53.33417 -8.81472 P PPL IE C 10 0 48 Europe/Dublin 2010-08-14 +3312517 Carnaun Carnaun 53.32917 -8.78944 L LCTY IE C 10 0 53 Europe/Dublin 2010-08-14 +3312518 Montpelier Montpelier 53.33111 -8.71778 P PPL IE C 10 0 51 Europe/Dublin 2010-08-14 +3312519 Cappaghmoyle Cappaghmoyle 53.32861 -8.68222 L LCTY IE C 10 0 57 Europe/Dublin 2010-08-14 +3312520 Corrantarramul Corrantarramul 53.35028 -8.69111 L LCTY IE C 10 0 66 Europe/Dublin 2010-08-14 +3312521 Cloonkeen Cloonkeen 53.32333 -8.65417 P PPLL IE C 10 0 60 Europe/Dublin 2010-08-14 +3312522 Carrowreagh Carrowreagh 53.38583 -8.76222 L LCTY IE C 10 0 81 Europe/Dublin 2010-08-14 +3312523 Corrafaireen Corrafaireen 53.3975 -8.745 P PPLL IE C 10 0 111 Europe/Dublin 2010-08-14 +3312524 Ryehill Ryehill 53.38222 -8.71667 P PPLL IE C 10 0 89 Europe/Dublin 2010-08-14 +3312525 Knockauncarragh Knockauncarragh 53.39 -8.74306 L LCTY IE C 10 0 98 Europe/Dublin 2010-08-14 +3312526 Laragh Beg Laragh Beg 53.37639 -8.7625 P PPLL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312527 Lissaniska Lissaniska 53.40222 -8.74556 P PPLL IE C 10 0 126 Europe/Dublin 2010-08-14 +3312528 Ballynamona Ballynamona 53.40444 -8.76028 P PPLL IE C 10 0 88 Europe/Dublin 2010-08-14 +3312529 Glennaveel Glennaveel 53.41222 -8.74667 P PPLL IE C 10 0 140 Europe/Dublin 2010-08-14 +3312530 Knockroe Knockroe 53.41639 -8.74 T HLL IE C 10 0 130 Europe/Dublin 2010-08-14 +3312531 Killaclogher House Killaclogher House 53.39389 -8.70278 S HSEC IE C 10 0 83 Europe/Dublin 2010-08-14 +3312532 Lough Beg Lough Beg 53.41667 -8.67444 H LK IE C 10 0 64 Europe/Dublin 2010-08-14 +3312533 Abbert Abbert 53.41306 -8.68111 L LCTY IE C 10 0 70 Europe/Dublin 2010-08-14 +3312534 Kilbeg Kilbeg 53.38917 -8.66028 L LCTY IE C 10 0 65 Europe/Dublin 2010-08-14 +3312535 Ballybaun Ballybaun 53.39361 -8.64444 L LCTY IE C 10 0 69 Europe/Dublin 2010-08-14 +3312536 Doonaun Doonaun 53.38583 -8.65083 L LCTY IE C 10 0 67 Europe/Dublin 2010-08-14 +3312537 Lough Tee Lough Tee 53.365 -8.61444 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3312538 Cuddoo Cuddoo 53.37472 -8.63139 L LCTY IE C 10 0 74 Europe/Dublin 2010-08-14 +3312539 Bauvin Bauvin 53.34833 -8.62417 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3312540 Clonkeenherrill Clonkeenherrill 53.37667 -8.59306 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3312541 Ballynamona Ballynamona 53.4075 -8.6275 L LCTY IE C 10 0 74 Europe/Dublin 2010-08-14 +3312542 Pollnabrone Pollnabrone 53.41 -8.58278 P PPLL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312543 Cross House Cross House 53.40556 -8.57333 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3312544 Knockavilla Knockavilla 53.40028 -8.58417 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3312545 Carbally Castle Carbally Castle 53.4025 -8.63083 S CSTL IE C 10 0 74 Europe/Dublin 2010-08-14 +3312546 Menlough Menlough Menlough,Mionlach 53.41667 -8.57972 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312547 Gontronnagh Gontronnagh 53.34194 -8.585 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3312548 Cappanasruhaun Cappanasruhaun 53.32528 -8.61083 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3312561 The Burren The Burren The Burren 53.06083 -9.21611 L AREA IE M 03 0 169 Europe/Dublin 2010-08-14 +3312562 Ballymacanaun Ballymacanaun 52.94278 -9.45167 P PPLL IE M 03 0 69 Europe/Dublin 2010-08-14 +3312563 Creggaun Creggaun 53.4125 -9.63944 T HLL IE C 10 0 35 Europe/Dublin 2010-08-14 +3312564 Caherbullog Caherbullog 53.08583 -9.24111 T HLL IE M 03 0 174 Europe/Dublin 2010-08-14 +3312791 Knock Knock 53.25 -9.71806 P PPLL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3312796 Coolcoosaun Coolcoosaun 52.92444 -8.53444 P PPL IE M 03 0 71 Europe/Dublin 2010-08-14 +3312797 Moynoe House Moynoe House 52.91472 -8.51056 S HSEC IE M 03 0 55 Europe/Dublin 2010-08-14 +3312798 Sheeaun Sheeaun 52.9375 -8.53333 L LCTY IE M 03 0 141 Europe/Dublin 2010-08-14 +3312799 Rabbit Island Rabbit Island 52.90583 -8.48722 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +3312800 Red Island Red Island 52.90861 -8.46167 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +3312801 Bushy Island Bushy Island 52.91694 -8.42778 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +3312802 Ryne Point Ryne Point 52.92167 -8.43889 T PT IE M 03 0 55 Europe/Dublin 2010-08-14 +3312803 Cappaghabaun Mountain Cappaghabaun Mountain 52.96278 -8.52583 T MT IE M 03 0 240 Europe/Dublin 2010-08-14 +3312804 Bohaten Bohaten 52.95806 -8.48056 P PPL IE M 03 0 193 Europe/Dublin 2010-08-14 +3312805 Derrycon Derrycon 52.94917 -8.44917 P PPL IE M 03 0 112 Europe/Dublin 2010-08-14 +3312806 Derroran Bridge Derroran Bridge 52.96111 -8.42472 P PPL IE M 03 0 80 Europe/Dublin 2010-08-14 +3312807 Inishparran Inishparran 52.92056 -8.40722 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +3312808 Illaunhobert Illaunhobert 52.92278 -8.36056 T ISL IE M 03 0 55 Europe/Dublin 2010-08-14 +3312809 Cregg Lough Cregg Lough 52.95083 -8.38056 H LK IE M 03 0 61 Europe/Dublin 2010-08-14 +3312810 Farrahill Point Farrahill Point 52.92528 -8.34639 T PT IE M 03 0 55 Europe/Dublin 2010-08-14 +3312811 Clonrush Clonrush 52.93639 -8.35417 P PPLL IE M 03 0 55 Europe/Dublin 2010-08-14 +3312812 Bargarriff Bargarriff 52.955 -8.37028 P PPLL IE M 03 0 58 Europe/Dublin 2010-08-14 +3312813 Rinskea House Rinskea House 52.95667 -8.3325 S HSEC IE M 03 0 55 Europe/Dublin 2010-08-14 +3312814 Rinbarra Point Rinbarra Point 52.98111 -8.34 T PT IE M 03 0 55 Europe/Dublin 2010-08-14 +3312815 Pollagoona Mountain Pollagoona Mountain 52.99528 -8.52861 T MT IE M 03 0 233 Europe/Dublin 2010-08-14 +3312816 Shanemore’s Lough Shanemore's Lough 53.04 -8.54028 H LK IE C 10 0 154 Europe/Dublin 2010-08-14 +3312817 Tooreenmanus Tooreenmanus 53.0075 -8.50694 L LCTY IE C 10 0 300 Europe/Dublin 2010-08-14 +3312818 Knockaunaneagh Knockaunaneagh 53.03528 -8.51639 L LCTY IE C 10 0 149 Europe/Dublin 2010-08-14 +3312819 Pollavogo Pollavogo 53.04667 -8.53917 P PPL IE C 10 0 153 Europe/Dublin 2010-08-14 +3312820 Derrygoolin Derrygoolin 52.98167 -8.43611 P PPL IE C 10 0 184 Europe/Dublin 2010-08-14 +3312821 Ryan’s Point Ryan's Point 52.91917 -8.31556 T PT IE M 38 0 55 Europe/Dublin 2010-08-14 +3312822 Hazel Point Cottage Hazel Point Cottage 52.92167 -8.29806 S HSE IE M 26 0 55 Europe/Dublin 2010-08-14 +3312823 Sedboro Sedboro 52.91361 -8.30611 P PPL IE M 26 0 51 Europe/Dublin 2010-08-14 +3312824 Dromineer Bay Dromineer Bay 52.92778 -8.28167 H BAY IE M 26 0 53 Europe/Dublin 2010-08-14 +3312825 Saint David’s Saint David's 52.93278 -8.28194 P PPLL IE M 38 0 53 Europe/Dublin 2010-08-14 +3312826 Corrikeen Islands Corrikeen Islands 52.93694 -8.30361 T ISLS IE M 26 0 55 Europe/Dublin 2010-08-14 +3312827 Riverview Riverview 52.90694 -8.245 P PPL IE M 26 0 59 Europe/Dublin 2010-08-14 +3312828 Castleview House Castleview House 52.9125 -8.20667 S HSEC IE M 26 0 75 Europe/Dublin 2010-08-14 +3312829 Knigh Hill Knigh Hill 52.92139 -8.21833 T HLL IE M 26 0 74 Europe/Dublin 2010-08-14 +3312830 Lisduff Lisduff 52.91556 -8.24111 L LCTY IE M 26 0 75 Europe/Dublin 2010-08-14 +3312831 Lodge House Lodge House 52.93528 -8.23056 S HSEC IE M 26 0 133 Europe/Dublin 2010-08-14 +3312832 Claree Lough Claree Lough 52.94528 -8.22472 H LK IE M 26 0 123 Europe/Dublin 2010-08-14 +3312833 Clareen Lough Clareen Lough 52.93806 -8.23722 H LK IE M 26 0 126 Europe/Dublin 2010-08-14 +3312834 Poulawee Lough Poulawee Lough 52.93917 -8.24917 H LK IE M 26 0 125 Europe/Dublin 2010-08-14 +3312835 Black Lough Black Lough 52.94833 -8.26806 H LK IE M 26 0 129 Europe/Dublin 2010-08-14 +3312836 Arinagh Lough Arinagh Lough 52.95361 -8.25833 H LK IE M 26 0 157 Europe/Dublin 2010-08-14 +3312837 Urrahill Urrahill 52.94667 -8.275 T HLL IE M 26 0 129 Europe/Dublin 2010-08-14 +3312838 Luska Luska 52.95333 -8.26583 P PPL IE M 26 0 143 Europe/Dublin 2010-08-14 +3312839 Cloghprior House Cloghprior House 52.94861 -8.22278 S HSEC IE M 26 0 123 Europe/Dublin 2010-08-14 +3312840 Woodpark House Woodpark House 52.945 -8.19861 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3312841 Lough Ourna Lough Ourna 52.92056 -8.18028 H LK IE M 26 0 77 Europe/Dublin 2010-08-14 +3312842 Neon Hill Neon Hill 52.92278 -8.145 T HLL IE M 26 0 111 Europe/Dublin 2010-08-14 +3312843 Corbally House Corbally House 52.93917 -8.12028 S HSEC IE M 26 0 128 Europe/Dublin 2010-08-14 +3312844 Tenessee House Tenessee House 52.93556 -8.08306 S HSEC IE M 26 0 116 Europe/Dublin 2010-08-14 +3312845 Clermont House Clermont House 52.91889 -8.09833 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3312846 Bantis House Bantis House 52.91389 -8.08972 S HSEC IE M 26 0 134 Europe/Dublin 2010-08-14 +3312847 Screggaun Screggaun 52.91389 -8.1025 T HLL IE M 26 0 152 Europe/Dublin 2010-08-14 +3312848 Willsborough House Willsborough House 52.94639 -8.15972 S HSEC IE M 26 0 78 Europe/Dublin 2010-08-14 +3312849 Prospect House Prospect House 52.93639 -8.18222 S HSEC IE M 26 0 75 Europe/Dublin 2010-08-14 +3312850 Elysium House Elysium House 52.94083 -8.06861 S HSEC IE M 26 0 110 Europe/Dublin 2010-08-14 +3312851 Ringroe Cottage Ringroe Cottage 52.95278 -8.16194 S HSE IE M 26 0 76 Europe/Dublin 2010-08-14 +3312852 Modreeny House Modreeny House 52.95278 -8.075 S HSEC IE M 26 0 99 Europe/Dublin 2010-08-14 +3312853 Coolnamunns House Coolnamunns House 52.93167 -8.06833 S HSEC IE M 26 0 117 Europe/Dublin 2010-08-14 +3312854 Glenahilty Glenahilty 52.90306 -8.06472 P PPL IE M 26 0 112 Europe/Dublin 2010-08-14 +3312855 Deerpark House Deerpark House 52.94778 -8.02944 S HSEC IE M 26 0 128 Europe/Dublin 2010-08-14 +3312856 Knockanacree Wood House Knockanacree Wood House 52.95111 -8.03333 S HSEC IE M 26 0 142 Europe/Dublin 2010-08-14 +3312857 Newtown Newtown 52.95694 -8.0125 P PPL IE M 26 0 142 Europe/Dublin 2010-08-14 +3312858 Cloonaloughan House Cloonaloughan House 52.93111 -7.97861 S HSEC IE L 23 0 121 Europe/Dublin 2010-08-14 +3312859 Templepark Templepark 52.92139 -7.99306 P PPL IE L 23 0 120 Europe/Dublin 2010-08-14 +3312860 Ballintemple House Ballintemple House 52.91139 -7.99583 S HSEC IE L 23 0 121 Europe/Dublin 2010-08-14 +3312861 Foxburrow House Foxburrow House 52.90972 -7.96194 S HSEC IE L 23 0 117 Europe/Dublin 2010-08-14 +3312862 Ryan’s Cross Roads Ryan's Cross Roads 52.94306 -7.91806 P PPL IE L 23 0 101 Europe/Dublin 2010-08-14 +3312863 Myrtlegrove Myrtlegrove 52.91917 -7.95472 P PPL IE L 23 0 112 Europe/Dublin 2010-08-14 +3312864 Rockford House Rockford House 52.94833 -7.94861 S HSEC IE L 23 0 109 Europe/Dublin 2010-08-14 +3312865 Barna Barna 52.92778 -7.94944 P PPL IE L 23 0 110 Europe/Dublin 2010-08-14 +3312866 Rutland House Rutland House 52.95583 -7.90222 S HSEC IE L 23 0 89 Europe/Dublin 2010-08-14 +3312867 Anne Grove House Anne Grove House 52.95111 -7.86861 S HSEC IE L 23 0 85 Europe/Dublin 2010-08-14 +3312868 Tullymore Tullymore 53.01139 -8.4375 T HLL IE C 10 0 181 Europe/Dublin 2010-08-14 +3312869 Knockaunleam Knockaunleam 53.0075 -8.41972 L LCTY IE C 10 0 145 Europe/Dublin 2010-08-14 +3312870 Skenahincha Skenahincha 52.9975 -8.41861 P PPL IE C 10 0 152 Europe/Dublin 2010-08-14 +3312871 Alleeny Bridge Alleeny Bridge 53.0275 -8.39056 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3312872 Coos River Coos River 53.00083 -8.3525 H STM IE C 10 0 55 Europe/Dublin 2010-08-14 +3312873 Slaghty Slaghty 52.99417 -8.36 P PPL IE C 10 0 55 Europe/Dublin 2010-08-14 +3312874 Connagh Connagh 52.97833 -8.36806 P PPL IE C 10 0 61 Europe/Dublin 2010-08-14 +3312875 Inishdala Islands Inishdala Islands 52.99583 -8.32639 T ISLS IE C 10 0 55 Europe/Dublin 2010-08-14 +3312876 Doorosbeg Point Doorosbeg Point 53.00167 -8.31722 T PT IE C 10 0 55 Europe/Dublin 2010-08-14 +3312877 Oghilly House Oghilly House 53.02028 -8.35917 S HSEC IE C 10 0 62 Europe/Dublin 2010-08-14 +3312878 Rosmore Bridge Rosmore Bridge 53.03444 -8.33889 P PPL IE C 10 0 62 Europe/Dublin 2010-08-14 +3312879 Clonco Bridge Clonco Bridge 53.03889 -8.35139 P PPL IE C 10 0 63 Europe/Dublin 2010-08-14 +3312880 Derrycrag Wood Derrycrag Wood 53.04167 -8.38611 V FRST IE C 10 0 72 Europe/Dublin 2010-08-14 +3312881 Burke’s Court Burke's Court 53.04611 -8.36333 S EST IE C 10 0 67 Europe/Dublin 2010-08-14 +3312882 Cloonoon Cloonoon 53.03861 -8.32806 P PPL IE C 10 0 62 Europe/Dublin 2010-08-14 +3312883 Curraghmore Point Curraghmore Point 52.98361 -8.29306 T PT IE M 26 0 55 Europe/Dublin 2010-08-14 +3312884 Goat Island Goat Island 52.99611 -8.29806 T ISL IE M 26 0 52 Europe/Dublin 2010-08-14 +3312885 Bellevue House Bellevue House 53.00028 -8.28333 S HSEC IE M 26 0 63 Europe/Dublin 2010-08-14 +3312886 Mota House Mota House 53.00639 -8.26722 S HSEC IE M 26 0 69 Europe/Dublin 2010-08-14 +3312887 Leserragh House Leserragh House 52.98917 -8.26444 S HSEC IE M 26 0 101 Europe/Dublin 2010-08-14 +3312888 Cameron Cameron 52.96167 -8.27333 P PPLL IE M 26 0 55 Europe/Dublin 2010-08-14 +3312889 Springmount House Springmount House 52.96111 -8.22306 S HSEC IE M 26 0 111 Europe/Dublin 2010-08-14 +3312890 Waterloo Lodge Waterloo Lodge 53.01167 -8.26056 S HSE IE M 26 0 69 Europe/Dublin 2010-08-14 +3312891 Killea House Killea House 53.00333 -8.20917 S HSEC IE M 26 0 57 Europe/Dublin 2010-08-14 +3312892 Lough Avan Lough Avan 52.99611 -8.21639 H LK IE M 26 0 62 Europe/Dublin 2010-08-14 +3312893 Oldcourt House Oldcourt House 52.9875 -8.20722 S HSEC IE M 26 0 66 Europe/Dublin 2010-08-14 +3312894 Newchapel Newchapel 52.98472 -8.22472 P PPL IE M 26 0 71 Europe/Dublin 2010-08-14 +3312895 Carney Carney 52.97611 -8.18167 P PPL IE M 26 0 68 Europe/Dublin 2010-08-14 +3312896 Carrigagown Carrigagown 52.9725 -8.22056 L LCTY IE M 26 0 94 Europe/Dublin 2010-08-14 +3312897 Kylebeg House Kylebeg House 52.96028 -8.07667 S HSEC IE M 26 0 93 Europe/Dublin 2010-08-14 +3312898 Ballyrichard House Ballyrichard House 52.96278 -8.11917 S HSEC IE M 26 0 87 Europe/Dublin 2010-08-14 +3312899 Bellpark House Bellpark House 52.97556 -8.14778 S HSEC IE M 26 0 68 Europe/Dublin 2010-08-14 +3312900 Scohaboy Bog Scohaboy Bog 52.97556 -8.06278 H BOG IE M 26 0 111 Europe/Dublin 2010-08-14 +3312901 Bushy Park Bushy Park 52.98361 -8.13 S EST IE M 26 0 68 Europe/Dublin 2010-08-14 +3312902 Greyfort House Greyfort House 52.99083 -8.10861 S HSEC IE M 26 0 70 Europe/Dublin 2010-08-14 +3312903 Fort Nisbett Fort Nisbett 52.98472 -8.10722 S FT IE M 26 0 73 Europe/Dublin 2010-08-14 +3312904 Borris Wood Borris Wood 53.00778 -8.13972 V FRST IE M 26 0 61 Europe/Dublin 2010-08-14 +3312905 Moanavoggaun Moanavoggaun 53.02333 -8.19667 L LCTY IE M 26 0 57 Europe/Dublin 2010-08-14 +3312906 Coorevin House Coorevin House 53.00611 -8.10417 S HSEC IE M 26 0 68 Europe/Dublin 2010-08-14 +3312907 Killavalla House Killavalla House 53.00167 -8.10139 S HSEC IE M 26 0 68 Europe/Dublin 2010-08-14 +3312908 Eminiska House Eminiska House 52.995 -8.08583 S HSEC IE M 26 0 76 Europe/Dublin 2010-08-14 +3312909 Uskane House Uskane House 53.01528 -8.08222 S HSEC IE M 26 0 73 Europe/Dublin 2010-08-14 +3312910 Ballylina House Ballylina House 53.0075 -8.06444 S HSEC IE M 26 0 82 Europe/Dublin 2010-08-14 +3312911 Spa Islands Spa Islands 53.02694 -8.2825 T ISLS IE C 10 0 55 Europe/Dublin 2010-08-14 +3312912 Burke’s Court Burke's Court 53.04444 -8.29 S EST IE C 10 0 55 Europe/Dublin 2010-08-14 +3312913 Kylanoe Point Kylanoe Point 53.04444 -8.25139 T PT IE M 26 0 55 Europe/Dublin 2010-08-14 +3312914 Bounla Island Bounla Island 53.03 -8.25861 T ISL IE M 26 0 55 Europe/Dublin 2010-08-14 +3312915 Gurthalougha House Gurthalougha House 53.02444 -8.24889 S HSEC IE M 26 0 65 Europe/Dublin 2010-08-14 +3312916 Garrane House Garrane House 53.01556 -8.21889 S HSEC IE M 26 0 56 Europe/Dublin 2010-08-14 +3312917 Newtown House Newtown House 53.02861 -8.21889 S HSEC IE M 26 0 56 Europe/Dublin 2010-08-14 +3312918 Ashgrove Ashgrove 53.04028 -8.22833 S EST IE M 26 0 54 Europe/Dublin 2010-08-14 +3312919 Spring Park Spring Park 53.03972 -8.155 S EST IE M 26 0 59 Europe/Dublin 2010-08-14 +3312920 Fortmoy House Fortmoy House 53.04444 -8.105 S HSEC IE M 26 0 62 Europe/Dublin 2010-08-14 +3312921 Lisheen House Lisheen House 53.03556 -8.11 S HSEC IE M 26 0 62 Europe/Dublin 2010-08-14 +3312922 Aglish Aglish 53.03861 -8.08639 P PPL IE M 26 0 69 Europe/Dublin 2010-08-14 +3312923 Lismacrory House Lismacrory House 53.0425 -8.04333 S RUIN IE M 38 0 80 Europe/Dublin 2010-08-14 +3312924 Lisbryan House Lisbryan House 53.02472 -8.04389 S HSEC IE M 26 0 95 Europe/Dublin 2010-08-14 +3312925 South Park South Park 53.01972 -8.03778 S EST IE M 26 0 107 Europe/Dublin 2010-08-14 +3312926 Castlesheppard House Castlesheppard House 53.00333 -8.03833 S HSEC IE M 26 0 125 Europe/Dublin 2010-08-14 +3312927 Lough Nahinch Lough Nahinch 52.9925 -8.00667 H LK IE M 26 0 159 Europe/Dublin 2010-08-14 +3312928 Ballymona House Ballymona House 53.02556 -8.00139 S HSEC IE M 26 0 123 Europe/Dublin 2010-08-14 +3312929 Lacka House Lacka House 53.03278 -7.98417 S HSEC IE M 26 0 98 Europe/Dublin 2010-08-14 +3312930 Wingfield House Wingfield House 53.01472 -7.97444 S HSEC IE M 26 0 101 Europe/Dublin 2010-08-14 +3312931 Fairyhill House Fairyhill House 53.00667 -7.98889 S HSEC IE M 26 0 138 Europe/Dublin 2010-08-14 +3312932 Knockshigowna House Knockshigowna House 53.00861 -8.005 S HSEC IE M 26 0 157 Europe/Dublin 2010-08-14 +3312933 Clifton House Clifton House 52.99944 -7.98444 S HSEC IE M 26 0 142 Europe/Dublin 2010-08-14 +3312934 Behamore House Behamore House 52.96722 -7.99861 S HSEC IE M 26 0 147 Europe/Dublin 2010-08-14 +3312935 Loughkeen Loughkeen 53.04306 -7.97111 L LCTY IE M 26 0 70 Europe/Dublin 2010-08-14 +3312936 Brookes Cross Roads Brookes Cross Roads 52.97972 -7.98083 P PPL IE L 23 0 133 Europe/Dublin 2010-08-14 +3312937 Cangort Park Cangort Park 52.98111 -7.96639 S EST IE L 23 0 114 Europe/Dublin 2010-08-14 +3312938 Kilballyskea House Kilballyskea House 52.97528 -7.91278 S HSEC IE L 23 0 80 Europe/Dublin 2010-08-14 +3312939 Miltown Park Miltown Park 52.96583 -7.91194 S EST IE L 23 0 87 Europe/Dublin 2010-08-14 +3312940 Bellefield Bellefield 52.99444 -7.95139 L LCTY IE L 23 0 96 Europe/Dublin 2010-08-14 +3312941 Curralanty Cross Roads Curralanty Cross Roads 53.00083 -7.92444 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3312942 Derry House Derry House 52.99611 -7.90333 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3312943 Ash Park Ash Park 52.9825 -7.87944 S EST IE L 23 0 76 Europe/Dublin 2010-08-14 +3312944 Leipsic Leipsic 52.98694 -7.89583 T HLL IE L 23 0 75 Europe/Dublin 2010-08-14 +3312945 Corolanty Corolanty 53.00917 -7.92778 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3312946 Annaville Annaville 52.97444 -7.87944 L LCTY IE L 23 0 76 Europe/Dublin 2010-08-14 +3312947 Woodview House Woodview House 53.00917 -7.88972 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3312948 Ballincor Ballincor 53.02056 -7.94167 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3312949 Brooklawn Brooklawn 52.93194 -7.87722 P PPL IE L 23 0 131 Europe/Dublin 2010-08-14 +3312950 Mount Saint Joseph Abbey Mount Saint Joseph Abbey 52.965 -7.85694 S MSTY IE L 23 0 76 Europe/Dublin 2010-08-14 +3312951 Sharavogue Sharavogue 53.03361 -7.92028 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3312952 Sharavogue House Sharavogue House 53.02639 -7.90694 S HSEC IE L 23 0 77 Europe/Dublin 2010-08-14 +3312953 Rathmore Castle Rathmore Castle 53.02944 -7.89111 S CSTL IE L 23 0 78 Europe/Dublin 2010-08-14 +3312954 Ballyeighan Ballyeighan 53.04944 -7.90778 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3312955 Killeenbreaghan House Killeenbreaghan House 53.04833 -7.86667 S HSEC IE L 23 0 83 Europe/Dublin 2010-08-14 +3312956 Mount Mask Mount Mask 53.02778 -7.87056 L LCTY IE L 23 0 87 Europe/Dublin 2010-08-14 +3312957 Derreennamucka Derreennamucka 53.0575 -8.54778 L LCTY IE C 10 0 152 Europe/Dublin 2010-08-14 +3312958 Ballin Lough Ballin Lough 53.07556 -8.455 H LK IE C 10 0 139 Europe/Dublin 2010-08-14 +3312959 Moyglass House Moyglass House 53.07028 -8.46611 S HSEC IE C 10 0 154 Europe/Dublin 2010-08-14 +3312960 Moyglass Moyglass 53.06361 -8.46972 L LCTY IE C 10 0 153 Europe/Dublin 2010-08-14 +3312961 Knockmoyle Knockmoyle 53.08639 -8.48889 P PPL IE C 10 0 150 Europe/Dublin 2010-08-14 +3312962 Attipierce Attipierce 53.06333 -8.51306 L LCTY IE C 10 0 152 Europe/Dublin 2010-08-14 +3312963 Drumkeary Drumkeary 53.10389 -8.47639 P PPL IE C 10 0 105 Europe/Dublin 2010-08-14 +3312964 Carrowroe House Carrowroe House 53.08944 -8.45417 S HSEC IE C 10 0 116 Europe/Dublin 2010-08-14 +3312965 Reynabrone Reynabrone 53.10278 -8.55083 L LCTY IE C 10 0 190 Europe/Dublin 2010-08-14 +3312966 Reyndrumadda Reyndrumadda 53.06111 -8.42889 L LCTY IE C 10 0 143 Europe/Dublin 2010-08-14 +3312967 Ballynagar House Ballynagar House 53.08389 -8.41778 S HSEC IE C 10 0 78 Europe/Dublin 2010-08-14 +3312968 Danesfort House Danesfort House 53.07944 -8.42389 S HSEC IE C 10 0 104 Europe/Dublin 2010-08-14 +3312969 Newtown Newtown 53.09833 -8.4275 P PPL IE C 10 0 82 Europe/Dublin 2010-08-14 +3312970 Barratoor Barratoor 53.1175 -8.49417 P PPL IE C 10 0 149 Europe/Dublin 2010-08-14 +3312971 The Bend The Bend 53.0825 -8.40056 L LCTY IE C 10 0 94 Europe/Dublin 2010-08-14 +3312972 Eagle Hill Eagle Hill 53.10528 -8.4025 T HLL IE C 10 0 67 Europe/Dublin 2010-08-14 +3312973 Knockaun Knockaun 53.10694 -8.42667 L LCTY IE C 10 0 76 Europe/Dublin 2010-08-14 +3313010 Boleybeg Boleybeg 53.11667 -8.55028 L LCTY IE C 10 0 188 Europe/Dublin 2010-08-14 +3313011 Lator’s Cross Roads Lator's Cross Roads 53.13361 -8.46222 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +3313012 Deerpark Wood Deerpark Wood 53.14 -8.48778 V FRST IE C 10 0 91 Europe/Dublin 2010-08-14 +3313013 Ballinlawless Ballinlawless 53.12917 -8.54917 L LCTY IE C 10 0 167 Europe/Dublin 2010-08-14 +3313014 Shannonhill House Shannonhill House 53.07611 -8.36222 S EST IE C 10 0 74 Europe/Dublin 2010-08-14 +3313015 Roscurra Wood Roscurra Wood 53.06333 -8.36167 V FRST IE C 10 0 74 Europe/Dublin 2010-08-14 +3313016 Cloonmoylan Cloonmoylan 53.05694 -8.31472 P PPL IE C 10 0 55 Europe/Dublin 2010-08-14 +3313017 Cloonmoylan House Cloonmoylan House 53.06444 -8.30333 S HSEC IE C 10 0 55 Europe/Dublin 2010-08-14 +3313018 Barroughter Barroughter 53.08222 -8.32111 P PPL IE C 10 0 63 Europe/Dublin 2010-08-14 +3313019 Easterfield Easterfield 53.08167 -8.37056 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313020 Cappagh Cappagh 53.09611 -8.34306 P PPL IE C 10 0 65 Europe/Dublin 2010-08-14 +3313021 Crannagh House Crannagh House 53.10056 -8.33639 S HSEC IE C 10 0 67 Europe/Dublin 2010-08-14 +3313022 Stoneyisland Stoneyisland 53.08528 -8.29722 L LCTY IE C 10 0 81 Europe/Dublin 2010-08-14 +3313023 Silver Islands Silver Islands 53.06861 -8.2325 T ISLS IE C 10 0 55 Europe/Dublin 2010-08-14 +3313024 Slevoir Point Slevoir Point 53.06361 -8.20194 T PT IE M 26 0 55 Europe/Dublin 2010-08-14 +3313025 Gortmore Point Gortmore Point 53.05667 -8.2375 T PT IE M 26 0 54 Europe/Dublin 2010-08-14 +3313026 Gortmore House Gortmore House 53.05 -8.22917 S HSEC IE M 26 0 54 Europe/Dublin 2010-08-14 +3313027 Rinmaher Point Rinmaher Point 53.07167 -8.22528 T PT IE C 10 0 55 Europe/Dublin 2010-08-14 +3313028 Slevoir Bay Slevoir Bay 53.07167 -8.17917 H BAY IE C 10 0 55 Europe/Dublin 2010-08-14 +3313029 Killeen House Killeen House 53.05278 -8.17972 S HSEC IE M 26 0 56 Europe/Dublin 2010-08-14 +3313030 Portland Portland 53.09056 -8.18278 P PPL IE M 26 0 55 Europe/Dublin 2010-08-14 +3313031 Upton Farm Upton Farm 53.0825 -8.15889 S FRM IE M 26 0 55 Europe/Dublin 2010-08-14 +3313032 Fairy Hll Fairy Hll 53.10111 -8.21278 S EST IE C 10 0 63 Europe/Dublin 2010-08-14 +3313033 Caher Caher 53.10306 -8.24806 P PPL IE C 10 0 98 Europe/Dublin 2010-08-14 +3313034 Portland Park Portland Park 53.10667 -8.18139 S EST IE M 26 0 54 Europe/Dublin 2010-08-14 +3313035 Newtown Newtown 53.09444 -8.15 P PPL IE M 26 0 52 Europe/Dublin 2010-08-14 +3313036 Portland Island Portland Island 53.11639 -8.16583 T ISL IE M 26 0 54 Europe/Dublin 2010-08-14 +3313037 Friars Lough Friars Lough 53.09167 -8.1375 H LK IE M 26 0 53 Europe/Dublin 2010-08-14 +3313038 Ballyquirk Castle Ballyquirk Castle 53.07083 -8.14194 S CSTL IE M 26 0 55 Europe/Dublin 2010-08-14 +3313039 Kilcarren House Kilcarren House 53.07222 -8.08778 S HSEC IE M 26 0 63 Europe/Dublin 2010-08-14 +3313040 Lisduff House Lisduff House 53.05472 -8.06139 S HSEC IE M 26 0 74 Europe/Dublin 2010-08-14 +3313041 Firville Firville 53.07083 -8.07889 P PPL IE M 26 0 66 Europe/Dublin 2010-08-14 +3313042 Oultort Oultort 53.09889 -8.26861 P PPL IE C 10 0 104 Europe/Dublin 2010-08-14 +3313043 Ballyshrule Ballyshrule 53.10361 -8.30639 P PPL IE C 10 0 100 Europe/Dublin 2010-08-14 +3313044 Killeen Killeen 53.105 -8.31778 P PPL IE C 10 0 78 Europe/Dublin 2010-08-14 +3313045 Gortanummera Gortanummera 53.10889 -8.315 P PPL IE C 10 0 97 Europe/Dublin 2010-08-14 +3313046 Newbridge Newbridge 53.11167 -8.31778 P PPL IE C 10 0 85 Europe/Dublin 2010-08-14 +3313047 Brackery Brackery 53.11194 -8.35083 P PPL IE C 10 0 68 Europe/Dublin 2010-08-14 +3313048 Gormasillagh Gormasillagh 53.11806 -8.34861 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +3313049 Shanbally Shanbally 53.11778 -8.3975 P PPL IE C 10 0 68 Europe/Dublin 2010-08-14 +3313050 Flower Hill House Flower Hill House 53.13444 -8.30667 S HSEC IE C 10 0 120 Europe/Dublin 2010-08-14 +3313051 Coolpowra Coolpowra 53.125 -8.28722 P PPL IE C 10 0 142 Europe/Dublin 2010-08-14 +3313052 Garraun Garraun 53.13861 -8.35861 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313053 Feebrack Feebrack Feebrack,Nutgrove 53.14806 -8.335 P PPL IE IE C 10 0 88 Europe/Dublin 2010-08-14 +3313054 Killeen Killeen 53.14694 -8.29806 P PPL IE C 10 0 127 Europe/Dublin 2010-08-14 +3313055 Moat Bridge Moat Bridge 53.14167 -8.28583 P PPL IE C 10 0 135 Europe/Dublin 2010-08-14 +3313056 Capira Capira 53.12944 -8.23639 P PPL IE C 10 0 109 Europe/Dublin 2010-08-14 +3313057 The Green Door The Green Door 53.12361 -8.24167 P PPL IE C 10 0 120 Europe/Dublin 2010-08-14 +3313058 Boley Boley 53.115 -8.22694 P PPL IE C 10 0 86 Europe/Dublin 2010-08-14 +3313059 Earlstown Earlstown 53.11417 -8.21417 P PPL IE C 10 0 68 Europe/Dublin 2010-08-14 +3313060 Derryhiveny House Derryhiveny House 53.12889 -8.19111 S HSEC IE C 10 0 58 Europe/Dublin 2010-08-14 +3313061 Corr House Corr House 53.13444 -8.20722 S HSEC IE C 10 0 70 Europe/Dublin 2010-08-14 +3313062 Long Island Long Island 53.12583 -8.16139 T ISL IE M 26 0 55 Europe/Dublin 2010-08-14 +3313063 Harvest Lodge Harvest Lodge 53.10222 -8.12472 S HSEC IE M 26 0 59 Europe/Dublin 2010-08-14 +3313064 Curraghglass House Curraghglass House 53.09667 -8.08583 S HSEC IE M 26 0 67 Europe/Dublin 2010-08-14 +3313065 Roden House Roden House 53.10556 -8.06111 S HSEC IE M 26 0 73 Europe/Dublin 2010-08-14 +3313066 Lackeen House Lackeen House 53.08611 -8.06972 S HSEC IE M 26 0 69 Europe/Dublin 2010-08-14 +3313067 Ballincor Ballincor 53.11056 -8.10611 L LCTY IE M 38 0 70 Europe/Dublin 2010-08-14 +3313068 Redwood Redwood 53.1225 -8.10806 P PPL IE M 26 0 72 Europe/Dublin 2010-08-14 +3313115 Moat Ville Moat Ville 53.05278 -8.04889 P PPL IE M 26 0 77 Europe/Dublin 2010-08-14 +3313116 Arragh More Arragh More 53.05583 -8.03056 P PPL IE M 26 0 76 Europe/Dublin 2010-08-14 +3313117 Lake Village Lake Village 53.08278 -8.09222 P PPL IE M 26 0 61 Europe/Dublin 2010-08-14 +3313118 Somerset House Somerset House 53.08278 -8.05278 S HSEC IE M 26 0 72 Europe/Dublin 2010-08-14 +3313119 Derrylahan Park Derrylahan Park 53.08583 -8.00861 S EST IE M 26 0 65 Europe/Dublin 2010-08-14 +3313124 Clontinane House Clontinane House 53.07694 -8.00194 S HSEC IE M 26 0 63 Europe/Dublin 2010-08-14 +3313125 Ballyduff House Ballyduff House 53.09111 -7.99083 S HSEC IE M 26 0 63 Europe/Dublin 2010-08-14 +3313126 Rath Rath 53.095 -8.03639 L LCTY IE M 26 0 70 Europe/Dublin 2010-08-14 +3313128 Saint Kieran’s Saint Kieran's 53.11083 -8.06444 P PPL IE M 38 0 74 Europe/Dublin 2010-08-14 +3313129 Lelagh Lelagh 53.10417 -8.02333 P PPL IE M 26 0 67 Europe/Dublin 2010-08-14 +3313130 Clongowna House Clongowna House 53.12389 -8.01389 S HSEC IE M 26 0 62 Europe/Dublin 2010-08-14 +3313131 Pallas River Pallas River 53.13694 -8.00278 H STM IE M 26 0 58 Europe/Dublin 2010-08-14 +3313132 Coolross Coolross 53.13472 -8.03556 P PPL IE M 26 0 62 Europe/Dublin 2010-08-14 +3313133 Ballyea Lodge Ballyea Lodge 53.13806 -8.06639 S HSE IE M 26 0 75 Europe/Dublin 2010-08-14 +3313134 Redwood House Redwood House 53.13694 -8.10333 S HSEC IE M 26 0 70 Europe/Dublin 2010-08-14 +3313136 Pike Pike 53.10417 -8.04944 P PPL IE M 26 0 71 Europe/Dublin 2010-08-14 +3313137 Killycross Killycross 53.13306 -8.14861 P PPL IE M 26 0 56 Europe/Dublin 2010-08-14 +3313138 New Bridge New Bridge 53.13028 -7.975 P PPL IE M 26 0 62 Europe/Dublin 2010-08-14 +3313139 Annagh House Annagh House 53.11861 -7.98472 S HSEC IE M 26 0 61 Europe/Dublin 2010-08-14 +3313140 Sraduff House Sraduff House 53.10556 -7.98472 S HSEC IE M 26 0 63 Europe/Dublin 2010-08-14 +3313141 Arbourhill House Arbourhill House 53.1025 -7.96833 S HSEC IE M 26 0 64 Europe/Dublin 2010-08-14 +3313142 Killenaule Killenaule 53.10944 -7.97417 L LCTY IE M 26 0 63 Europe/Dublin 2010-08-14 +3313143 Killeen Killeen 53.09056 -7.95333 L LCTY IE M 26 0 65 Europe/Dublin 2010-08-14 +3313144 Croghan House Croghan House 53.10167 -7.93639 S HSEC IE M 26 0 65 Europe/Dublin 2010-08-14 +3313145 Baronne Court Baronne Court 53.07694 -7.94361 S EST IE M 26 0 67 Europe/Dublin 2010-08-14 +3313146 Elm Hall Elm Hall 53.07389 -7.975 S HSE IE M 26 0 64 Europe/Dublin 2010-08-14 +3313147 Castletown House Castletown House 53.05806 -7.94611 S HSEC IE M 26 0 69 Europe/Dublin 2010-08-14 +3313148 Coolaghansglaster Coolaghansglaster 53.13694 -7.97056 P PPL IE L 23 0 61 Europe/Dublin 2010-08-14 +3313149 Bunrevan House Bunrevan House 53.11861 -7.94222 S HSEC IE L 23 0 64 Europe/Dublin 2010-08-14 +3313150 Dovegrove House Dovegrove House 53.10861 -7.93333 S HSEC IE L 23 0 66 Europe/Dublin 2010-08-14 +3313151 Woodville Woodville 53.11333 -7.905 S EST IE L 23 0 69 Europe/Dublin 2010-08-14 +3313152 Boolinaig Bridge Boolinaig Bridge 53.13361 -7.88806 P PPL IE L 23 0 69 Europe/Dublin 2010-08-14 +3313153 Kenned’s Cross Roads Kenned's Cross Roads 53.11389 -7.89028 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313154 Ballywilliam Ballywilliam 53.10833 -7.87667 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313159 Whiteford Whiteford 53.08056 -7.8925 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313160 Birr View Birr View 53.06806 -7.89694 S EST IE L 23 0 74 Europe/Dublin 2010-08-14 +3313161 Seerin Seerin 53.08556 -7.90528 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313162 Syngefield Syngefield 53.09333 -7.88583 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313163 Rapemills Rapemills 53.14111 -7.92611 P PPL IE L 23 0 65 Europe/Dublin 2010-08-14 +3313164 Glaster Glaster 53.14306 -7.98806 P PPL IE L 23 0 59 Europe/Dublin 2010-08-14 +3313165 Hill House Hill House 53.1525 -7.93028 S HSEC IE L 23 0 71 Europe/Dublin 2010-08-14 +3313166 Galros Cross Roads Galros Cross Roads 53.15583 -7.88278 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313167 Five Roads Cross Five Roads Cross 53.17139 -7.94444 P PPL IE L 23 0 103 Europe/Dublin 2010-08-14 +3313168 Taylor’s Cross Taylor's Cross 53.16167 -7.95139 P PPL IE L 23 0 85 Europe/Dublin 2010-08-14 +3313169 Claremount House Claremount House 53.17222 -7.96361 S HSEC IE L 23 0 101 Europe/Dublin 2010-08-14 +3313170 Milltown House Milltown House 53.15833 -7.95528 S HSEC IE L 23 0 70 Europe/Dublin 2010-08-14 +3313171 Clongawny More Clongawny More 53.16972 -7.91167 S EST IE L 23 0 81 Europe/Dublin 2010-08-14 +3313172 Mountearleret House Mountearleret House 53.17861 -7.97306 S HSEC IE L 23 0 113 Europe/Dublin 2010-08-14 +3313173 Coolfin House Coolfin House 53.19167 -7.95722 S HSEC IE L 23 0 143 Europe/Dublin 2010-08-14 +3313174 Rapemills River Rapemills River 53.19 -8.00167 H STM IE L 23 0 61 Europe/Dublin 2010-08-14 +3313175 Ashgrove House Ashgrove House 53.17222 -7.98417 S HSEC IE L 23 0 68 Europe/Dublin 2010-08-14 +3313176 Gortarevan Gortarevan 53.17028 -8.02194 P PPL IE L 23 0 56 Europe/Dublin 2010-08-14 +3313177 Lavagh Lavagh 53.17528 -8.04944 P PPL IE L 23 0 56 Europe/Dublin 2010-08-14 +3313178 Cogran Cogran 53.18167 -8.02361 P PPL IE L 23 0 56 Europe/Dublin 2010-08-14 +3313179 Ballymacoolaghan Ballymacoolaghan 53.18861 -8.04083 P PPL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313180 Incherky Incherky 53.17972 -8.06083 T ISL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313181 Friars Island Friars Island 53.16444 -8.08806 T ISL IE C 10 0 58 Europe/Dublin 2010-08-14 +3313182 Big Island Big Island 53.16417 -8.09861 T ISL IE C 10 0 59 Europe/Dublin 2010-08-14 +3313183 Camus Camus 53.17528 -8.11528 P PPL IE C 10 0 57 Europe/Dublin 2010-08-14 +3313184 Kilmaehugh Kilmaehugh 53.18528 -8.09806 P PPL IE C 10 0 57 Europe/Dublin 2010-08-14 +3313185 Muckinish Muckinish 53.18806 -8.04944 P PPL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313186 Muckanagh Muckanagh 53.16639 -8.15139 P PPL IE C 10 0 60 Europe/Dublin 2010-08-14 +3313187 Meeneen Meeneen 53.15778 -8.1575 P PPL IE C 10 0 55 Europe/Dublin 2010-08-14 +3313188 Longford House Longford House 53.15222 -8.18806 S HSEC IE C 10 0 66 Europe/Dublin 2010-08-14 +3313189 Fahy Fahy 53.17111 -8.17056 P PPL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313190 Fahy Bridge Fahy Bridge 53.18306 -8.16778 P PPLL IE C 10 0 70 Europe/Dublin 2010-08-14 +3313191 Prospect Prospect 53.1875 -8.15 P PPL IE C 10 0 68 Europe/Dublin 2010-08-14 +3313192 Tully Tully 53.19278 -8.16472 P PPLL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313193 Fearmore Fearmore 53.19194 -8.12083 P PPLL IE C 10 0 65 Europe/Dublin 2010-08-14 +3313194 Abbeyland House Abbeyland House 53.20889 -8.10639 S HSEC IE C 10 0 68 Europe/Dublin 2010-08-14 +3313195 Lissanacody Lissanacody 53.2075 -8.16167 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313196 Feaghbeg Feaghbeg 53.20111 -8.18056 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313197 Moorfield Cross Roads Moorfield Cross Roads 53.18806 -8.195 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313198 Redmount Hill Redmount Hill 53.22139 -8.14278 T HLL IE C 10 0 77 Europe/Dublin 2010-08-14 +3313199 Cloonnamaskry Cloonnamaskry 53.19806 -8.23222 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313200 Kilquain Kilquain 53.17444 -8.22028 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313201 Lissaniska Lissaniska 53.17278 -8.26139 P PPL IE C 10 0 108 Europe/Dublin 2010-08-14 +3313202 Ballinlug Ballinlug 53.16056 -8.22417 P PPL IE C 10 0 79 Europe/Dublin 2010-08-14 +3313203 Oldstreet Oldstreet 53.14444 -8.22417 P PPL IE C 10 0 85 Europe/Dublin 2010-08-14 +3313204 Kilmore Kilmore 53.15667 -8.25722 P PPL IE C 10 0 119 Europe/Dublin 2010-08-14 +3313205 Cloonoolish Cloonoolish 53.18972 -8.26556 P PPL IE C 10 0 94 Europe/Dublin 2010-08-14 +3313206 Nail Nail Inga,Nail 53.17556 -8.26444 P PPL IE IE C 10 0 100 Europe/Dublin 2010-08-14 +3313207 Kilcrow River Kilcrow River 53.08611 -8.30583 H STM IE C 10 0 75 Europe/Dublin 2010-08-14 +3313208 Oxgrove Bridge Oxgrove Bridge 53.18417 -8.29806 P PPL IE C 10 0 99 Europe/Dublin 2010-08-14 +3313209 Lisduff House Lisduff House 53.16917 -8.34806 S HSEC IE C 10 0 85 Europe/Dublin 2010-08-14 +3313210 Drumatober Drumatober 53.18917 -8.37222 P PPL IE C 10 0 77 Europe/Dublin 2010-08-14 +3313211 Killbride House Killbride House 53.18389 -8.40778 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313212 Gortymadden Gortymadden 53.19583 -8.39361 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313213 Cappanaghtan Cappanaghtan 53.20806 -8.37083 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313214 Lurgan Lurgan 53.20167 -8.355 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313215 Knockaun Knockaun 53.2175 -8.35139 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313216 Gortavoher Gortavoher 53.22472 -8.35139 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313217 Mullagh Mullagh 53.2175 -8.41833 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313218 Carhoon Carhoon 53.15667 -8.33694 P PPL IE C 10 0 89 Europe/Dublin 2010-08-14 +3313219 Gortareask Gortareask 53.16806 -8.39056 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313220 Springvale Springvale 53.14417 -8.39083 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +3313221 Spring Garden House Spring Garden House 53.14139 -8.37389 S HSEC IE C 10 0 73 Europe/Dublin 2010-08-14 +3313222 Tynagh Mines Tynagh Mines 53.17111 -8.38056 S MN IE C 10 0 77 Europe/Dublin 2010-08-14 +3313223 Ranamackan Ranamackan 53.15639 -8.42972 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313224 Shangarry Shangarry 53.17611 -8.42361 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313225 Caraunduff Caraunduff 53.18361 -8.45528 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313226 Kylebeg Kylebeg 53.17556 -8.44861 P PPL IE C 10 0 77 Europe/Dublin 2010-08-14 +3313227 Ballydoogan Ballydoogan 53.19111 -8.47806 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313228 Rathfarn House Rathfarn House 53.18361 -8.48667 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313229 Cooleeny House Cooleeny House 53.21472 -8.46861 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313230 Castlenaney Castlenaney 53.21389 -8.41028 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313231 Carrowkeel Carrowkeel 53.1625 -8.49639 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +3313232 Cloonlee Cloonlee 53.14194 -8.41556 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313233 Lisheenaclara Lisheenaclara 53.14306 -8.54278 P PPL IE C 10 0 139 Europe/Dublin 2010-08-14 +3313234 Ballyeighter Ballyeighter 53.16111 -8.52778 P PPL IE C 10 0 124 Europe/Dublin 2010-08-14 +3313235 Brick Lough Brick Lough 53.17333 -8.54333 H LK IE C 10 0 152 Europe/Dublin 2010-08-14 +3313236 Seven Springs Seven Springs 53.18083 -8.555 S EST IE C 10 0 141 Europe/Dublin 2010-08-14 +3313237 Fortland’s House Fortland's House 53.20028 -8.5475 S HSEC IE C 10 0 95 Europe/Dublin 2010-08-14 +3313238 Invernisk Invernisk 53.195 -8.02889 T ISL IE C 10 0 55 Europe/Dublin 2010-08-14 +3313239 Danesfort Danesfort 53.22306 -8.52861 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +3313240 Ballybroder House Ballybroder House 53.21639 -8.51917 S HSEC IE C 10 0 80 Europe/Dublin 2010-08-14 +3313241 Lecarrow Lecarrow 53.21333 -8.49361 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313242 Killwood House Killwood House 53.22833 -8.29333 S HSEC IE C 10 0 78 Europe/Dublin 2010-08-14 +3313243 Lisheenaguile Lisheenaguile 53.21889 -8.27917 P PPL IE C 10 0 80 Europe/Dublin 2010-08-14 +3313244 Craughwell Craughwell 53.21083 -8.22111 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313245 Ballymore Castle Ballymore Castle 53.2275 -8.18083 S CSTL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313246 Clontert Cross Roads Clontert Cross Roads 53.22639 -8.06861 P PPL IE C 10 0 62 Europe/Dublin 2010-08-14 +3313247 Ballynakill Ballynakill 53.20611 -8.08889 P PPL IE C 10 0 61 Europe/Dublin 2010-08-14 +3313248 Kilnaborris Kilnaborris 53.20333 -8.05472 P PPL IE C 10 0 55 Europe/Dublin 2010-08-14 +3313249 Cankilly Cankilly 53.21333 -8.06139 P PPL IE C 10 0 58 Europe/Dublin 2010-08-14 +3313250 Hemming’s Ville Hemming's Ville 53.21333 -8.02972 P PPL IE C 10 0 55 Europe/Dublin 2010-08-14 +3313251 Grant’s Island Grant's Island 53.20083 -7.98 T ISL IE L 23 0 88 Europe/Dublin 2010-08-14 +3313252 Esker Esker 53.20306 -8.01389 T ISL IE C 10 0 55 Europe/Dublin 2010-08-14 +3313253 Kilmacshane Kilmacshane 53.22722 -8.04833 P PPL IE C 10 0 57 Europe/Dublin 2010-08-14 +3313254 Ash Island Ash Island 53.22972 -7.96694 T ISL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313255 Bullock Island Bullock Island 53.20889 -7.96639 T ISL IE L 23 0 89 Europe/Dublin 2010-08-14 +3313256 Reask Reask 53.22583 -7.98 P PPL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313257 Lehinch Lehinch 53.22389 -7.97056 T ISL IE C 10 0 55 Europe/Dublin 2010-08-14 +3313258 Little River Little River 53.23028 -7.94056 H STM IE L 23 0 63 Europe/Dublin 2010-08-14 +3313259 Carrick Carrick 53.19306 -7.90194 P PPL IE L 23 0 84 Europe/Dublin 2010-08-14 +3313260 Attinkee Attinkee 53.20833 -7.92361 P PPL IE L 23 0 92 Europe/Dublin 2010-08-14 +3313261 Galros Galros 53.22333 -7.90611 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313262 Newtown Newtown 53.205 -7.88056 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313263 Cranereagh Bridge Cranereagh Bridge 53.19528 -7.88194 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313264 Bushfield Bushfield 53.23194 -8.55278 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313265 Hedgetown Hedgetown 53.23944 -8.55139 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313266 Ballymurry Ballymurry 53.255 -8.54583 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313267 Caherakilleen Caherakilleen 53.2375 -8.47944 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313268 Cahernagarry Cahernagarry 53.24056 -8.50583 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313269 Benmore Benmore 53.26417 -8.53444 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313270 Carra Carra 53.25917 -8.50444 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313271 Cloonmain Cloonmain 53.24639 -8.46722 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313272 Eastwell House Eastwell House 53.26361 -8.42972 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313273 Caraun Caraun 53.28167 -8.54806 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313274 Rathglass House Rathglass House 53.27722 -8.47667 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313275 Ashbrook House Ashbrook House 53.28806 -8.46528 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313276 Corballymore Corballymore 53.23389 -8.41639 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313277 Burke Ville Burke Ville 53.2425 -8.38833 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313278 Cartron House Cartron House 53.26028 -8.39861 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313279 Pollatlugga Pollatlugga 53.2675 -8.40083 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313280 Ballynoe Ballynoe 53.23611 -8.36944 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313281 Gortnahoon Gortnahoon 53.27889 -8.43 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313282 Cloonsheecahill Cloonsheecahill 53.29694 -8.5475 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313283 Beech Hill Beech Hill 53.31472 -8.53083 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +3313284 Skehanagh Skehanagh 53.31444 -8.50667 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313285 Gortfadda Gortfadda 53.30417 -8.47833 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313286 Cloonymorris Cloonymorris 53.31806 -8.45583 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313287 Killaghbeg House Killaghbeg House 53.30778 -8.41583 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313288 Woodberry House Woodberry House 53.29806 -8.41139 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313289 Fahy Fahy 53.30972 -8.395 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313290 Boston Farm Boston Farm 53.29806 -8.35778 S FRM IE C 10 0 76 Europe/Dublin 2010-08-14 +3313291 Ballyeighter Ballyeighter 53.28778 -8.35028 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313292 Cloonkeen Cloonkeen 53.27028 -8.34167 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313293 Fairfield House Fairfield House 53.30833 -8.32778 S HSEC IE C 10 0 75 Europe/Dublin 2010-08-14 +3313294 Killoran Killoran 53.24167 -8.35056 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313295 Ballyluoge Ballyluoge 53.25556 -8.34611 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313296 Derreenboy Derreenboy 53.22972 -8.33167 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313297 Coxtown Coxtown 53.24694 -8.31972 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313298 Cartron House Cartron House 53.26361 -8.30028 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313299 Kilnahown Kilnahown 53.27972 -8.31639 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313300 Aughrim Hill Aughrim Hill 53.29056 -8.31444 T HLL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313301 Ballydonagh Ballydonagh 53.23806 -8.23444 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313302 Callaghan’s Loughs Callaghan's Loughs 53.26444 -8.25556 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3313303 Crossconnell Crossconnell 53.26944 -8.26194 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313304 Attcoffey Attcoffey 53.25889 -8.23694 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313305 Crowsnest Crowsnest 53.255 -8.21889 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +3313306 Oghil Oghil 53.24778 -8.18306 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313307 Gannaveen Gannaveen 53.26333 -8.21167 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313308 Cloonascragh Cloonascragh 53.28167 -8.20028 P PPL IE C 10 0 70 Europe/Dublin 2010-08-14 +3313309 Cloonascragh River Cloonascragh River 53.28028 -8.14778 H STM IE C 10 0 62 Europe/Dublin 2010-08-14 +3313310 Ballinure River Ballinure River 53.27667 -8.185 H STM IE C 10 0 67 Europe/Dublin 2010-08-14 +3313311 Kellysgrove House Kellysgrove House 53.29611 -8.22528 S HSEC IE C 10 0 70 Europe/Dublin 2010-08-14 +3313312 Lismanny Bridge Lismanny Bridge 53.27611 -8.165 P PPLL IE C 10 0 63 Europe/Dublin 2010-08-14 +3313313 Gortnahorma House Gortnahorma House 53.28778 -8.24306 S HSEC IE C 10 0 74 Europe/Dublin 2010-08-14 +3313314 Coololla Lough Coololla Lough 53.31194 -8.30722 H LK IE C 10 0 74 Europe/Dublin 2010-08-14 +3313315 Sinclair’s Village Sinclair's Village 53.30111 -8.26472 P PPL IE C 10 0 73 Europe/Dublin 2010-08-14 +3313316 Urraghry Hill Urraghry Hill 53.29972 -8.27944 T HLL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313317 Kirwan’s Lodge Kirwan's Lodge 53.28472 -8.28556 S HSE IE C 10 0 75 Europe/Dublin 2010-08-14 +3313318 The Bloody Hollow The Bloody Hollow 53.29361 -8.305 L LCTY IE C 10 0 75 Europe/Dublin 2010-08-14 +3313320 Lisbeg House Lisbeg House 53.2375 -8.10028 S HSEC IE C 10 0 70 Europe/Dublin 2010-08-14 +3313321 Lough Kimoteen Lough Kimoteen 53.26028 -8.05333 H LK IE C 10 0 56 Europe/Dublin 2010-08-14 +3313322 Kylemore Bridge Kylemore Bridge 53.26528 -8.11306 P PPL IE C 10 0 66 Europe/Dublin 2010-08-14 +3313323 Ballyhoose Farm Ballyhoose Farm 53.245 -8.1375 S FRM IE C 10 0 72 Europe/Dublin 2010-08-14 +3313324 Ballyinderry House Ballyinderry House 53.31917 -8.405 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313325 Ballyglass Ballyglass 53.33278 -8.42111 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313326 Hillswood House Hillswood House 53.33889 -8.4475 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313327 Loughaclerybeg Loughaclerybeg 53.34833 -8.46611 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313328 Greenhills House Greenhills House 53.34361 -8.49917 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313329 Callow Lough Callow Lough 53.35833 -8.41556 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3313330 Attiregan Attiregan 53.36917 -8.43583 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313331 Tullanwicky Tullanwicky 53.36139 -8.48083 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313332 Liscune Liscune 53.36333 -8.44583 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313333 Cloongawn Cloongawn 53.37833 -8.46667 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313334 Killaun Killaun 53.32722 -8.46417 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313335 Ballyvoneen Ballyvoneen 53.37139 -8.50639 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313336 Shanballard Shanballard 53.34639 -8.55 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313337 Corskeagh Corskeagh 53.35667 -8.53806 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313338 Kinreask Kinreask 53.37333 -8.53694 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313339 Mount Bernard Mount Bernard 53.38639 -8.53 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +3313340 Lough Nahinch Lough Nahinch 53.39611 -8.55056 H LK IE C 10 0 76 Europe/Dublin 2010-08-14 +3313341 Hampstead House Hampstead House 53.39167 -8.51139 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313342 Vermont Vermont 53.41889 -8.54639 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +3313343 Glentane Glentane 53.41917 -8.50444 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313344 Eskerville Eskerville 53.40139 -8.49056 S EST IE C 10 0 76 Europe/Dublin 2010-08-14 +3313345 Alloon Lower Alloon Lower 53.39333 -8.47583 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313346 Esker Lodge Esker Lodge 53.41222 -8.47278 S HSE IE C 10 0 76 Europe/Dublin 2010-08-14 +3313347 Slieveanulty Slieveanulty 53.41417 -8.44306 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313348 Cloonatleva Cloonatleva 53.38389 -8.43194 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313349 Fohanagh House Fohanagh House 53.39278 -8.40833 S HSEC IE C 10 0 75 Europe/Dublin 2010-08-14 +3313350 Pallas Pallas 53.39694 -8.4125 T RK IE C 10 0 75 Europe/Dublin 2010-08-14 +3313351 Doon House Doon House 53.37333 -8.39806 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313352 Doon Doon 53.37833 -8.37833 P PPL IE C 10 0 75 Europe/Dublin 2010-08-14 +3313353 Fairfield House Fairfield House 53.37278 -8.32833 S HSEC IE C 10 0 70 Europe/Dublin 2010-08-14 +3313354 Crit Island Crit Island 53.36583 -8.345 S FRM IE C 10 0 73 Europe/Dublin 2010-08-14 +3313355 Ballybaun Ballybaun 53.41917 -8.37167 P PPL IE C 10 0 72 Europe/Dublin 2010-08-14 +3313356 Lisnascreena Lisnascreena 53.40167 -8.35139 P PPL IE C 10 0 70 Europe/Dublin 2010-08-14 +3313357 Caltraghlea Caltraghlea 53.36167 -8.33472 P PPL IE C 10 0 72 Europe/Dublin 2010-08-14 +3313358 Peake Peake 53.35556 -8.34556 P PPL IE C 10 0 74 Europe/Dublin 2010-08-14 +3313359 Killareeny House Killareeny House 53.32056 -8.37556 S HSEC IE C 10 0 76 Europe/Dublin 2010-08-14 +3313360 Northbrook House Northbrook House 53.32167 -8.34028 S HSEC IE C 10 0 75 Europe/Dublin 2010-08-14 +3313361 Kilconnell Kilconnell Cill Chonaill,Kilconnell 53.33278 -8.39222 P PPL IE IE C 10 0 76 Europe/Dublin 2010-08-14 +3313362 Knockroe Knockroe 53.32139 -8.29028 T HLL IE C 10 0 72 Europe/Dublin 2010-08-14 +3313363 Killure House Killure House 53.34694 -8.30556 S HSEC IE C 10 0 70 Europe/Dublin 2010-08-14 +3313364 Carrowmanagh Carrowmanagh 53.34389 -8.40833 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313365 Barnavihall House Barnavihall House 53.35389 -8.37389 S HSEC IE C 10 0 75 Europe/Dublin 2010-08-14 +3313366 Dundoogan Dundoogan 53.34111 -8.35861 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3313367 Killoran River Killoran River 53.21 -8.27 H STM IE C 10 0 82 Europe/Dublin 2010-08-14 +3313368 Killure Castle Killure Castle 53.35861 -8.28917 S CSTL IE C 10 0 67 Europe/Dublin 2010-08-14 +3313369 Creaggaun House Creaggaun House 53.35806 -8.25889 S HSEC IE C 10 0 66 Europe/Dublin 2010-08-14 +3313370 Ashford Old House Ashford Old House 53.34611 -8.2375 S HSEC IE C 10 0 65 Europe/Dublin 2010-08-14 +3313371 Bellagill Bridge Bellagill Bridge 53.36083 -8.23639 P PPL IE C 10 0 66 Europe/Dublin 2010-08-14 +3313372 Ahascragh River Ahascragh River 53.34639 -8.24417 H STM IE C 10 0 65 Europe/Dublin 2010-08-14 +3313373 Annaghhbeg Cottage Annaghhbeg Cottage 53.37 -8.26417 S HSE IE C 10 0 66 Europe/Dublin 2010-08-14 +3313374 Ervallagh Oughter Ervallagh Oughter 53.3825 -8.29778 P PPL IE C 10 0 67 Europe/Dublin 2010-08-14 +3313375 Weston House Weston House 53.40667 -8.31944 S HSEC IE C 10 0 69 Europe/Dublin 2010-08-14 +3313376 Cornamucklagh Cornamucklagh 53.42083 -8.32417 P PPL IE C 10 0 70 Europe/Dublin 2010-08-14 +3313377 Daly’s Grove Daly's Grove 53.40972 -8.25889 S EST IE C 10 0 66 Europe/Dublin 2010-08-14 +3313378 Ballynamona Ballynamona 53.39028 -8.27722 P PPL IE C 10 0 67 Europe/Dublin 2010-08-14 +3313379 Feevaghmore Feevaghmore 53.42194 -8.22583 P PPL IE C 24 0 71 Europe/Dublin 2010-08-14 +3313380 Goat Lough Goat Lough 53.41972 -8.245 H LK IE C 24 0 68 Europe/Dublin 2010-08-14 +3313381 Cloomooran House Cloomooran House 53.37139 -8.24028 S HSEC IE C 24 0 66 Europe/Dublin 2010-08-14 +3313382 Lough Gore Lough Gore 53.3875 -8.19667 H LK IE C 24 0 73 Europe/Dublin 2010-08-14 +3313383 Newton Newton 53.36167 -8.22 P PPL IE C 24 0 67 Europe/Dublin 2010-08-14 +3313384 Saint Enda’s Hospital Saint Enda's Hospital 53.33611 -8.19889 S HSP IE C 10 0 68 Europe/Dublin 2010-08-14 +3313385 Saint Brigid’s Hospital Saint Brigid's Hospital 53.33056 -8.20111 S HSP IE C 10 0 66 Europe/Dublin 2010-08-14 +3313386 Culliagharny Culliagharny 53.35944 -8.19528 P PPL IE C 24 0 71 Europe/Dublin 2010-08-14 +3313387 Attirory House Attirory House 53.36167 -8.15417 S HSEC IE C 24 0 80 Europe/Dublin 2010-08-14 +3313388 Kilgarve House Kilgarve House 53.32583 -8.18361 S HSEC IE C 24 0 68 Europe/Dublin 2010-08-14 +3313389 Cuckoo Hill Cuckoo Hill 53.40944 -8.17444 T HLL IE C 24 0 77 Europe/Dublin 2010-08-14 +3313390 Glenmore Glenmore 53.39944 -8.19611 P PPL IE C 24 0 74 Europe/Dublin 2010-08-14 +3313391 Sheep Hill Sheep Hill 53.41611 -8.15361 T HLL IE C 24 0 79 Europe/Dublin 2010-08-14 +3313392 Bellimeny Bellimeny 53.405 -8.14583 P PPL IE C 24 0 84 Europe/Dublin 2010-08-14 +3313393 Tarloughmore Tarloughmore 53.39639 -8.14694 P PPL IE C 24 0 85 Europe/Dublin 2010-08-14 +3313394 Castlesampson Castlesampson 53.41444 -8.12111 P PPL IE C 24 0 96 Europe/Dublin 2010-08-14 +3313395 Corraree Corraree 53.40806 -8.12111 P PPL IE C 24 0 98 Europe/Dublin 2010-08-14 +3313396 Carrowduff Carrowduff 53.39528 -8.10528 P PPL IE C 24 0 115 Europe/Dublin 2010-08-14 +3313397 Doo Lough Doo Lough 53.375 -8.13056 H LK IE C 24 0 92 Europe/Dublin 2010-08-14 +3313398 Lough Nanegish Lough Nanegish 53.37056 -8.09139 H LK IE C 24 0 120 Europe/Dublin 2010-08-14 +3313399 Lowtown Lowtown 53.36528 -8.11972 P PPL IE C 24 0 93 Europe/Dublin 2010-08-14 +3313400 Kilcashel Kilcashel 53.36278 -8.11556 P PPL IE C 24 0 98 Europe/Dublin 2010-08-14 +3313401 Bernard’s Cross Roads Bernard's Cross Roads 53.42139 -8.03917 P PPL IE C 24 0 167 Europe/Dublin 2010-08-14 +3313402 Ardnacloon Hill Ardnacloon Hill 53.41944 -8.05861 T HLL IE C 24 0 159 Europe/Dublin 2010-08-14 +3313403 Newtown Newtown 53.42111 -8.02972 P PPL IE C 24 0 163 Europe/Dublin 2010-08-14 +3313404 Belrea Belrea 53.39639 -8.04333 P PPL IE C 24 0 159 Europe/Dublin 2010-08-14 +3313405 Clera Island Clera Island 53.38833 -8.04194 T ISL IE C 24 0 153 Europe/Dublin 2010-08-14 +3313406 Ardkeenan House Ardkeenan House 53.38389 -8.04639 S HSEC IE C 24 0 153 Europe/Dublin 2010-08-14 +3313407 Duggarry Duggarry 53.38667 -8.07361 P PPL IE C 24 0 144 Europe/Dublin 2010-08-14 +3313408 Pike Pike 53.37528 -8.06833 P PPL IE C 24 0 138 Europe/Dublin 2010-08-14 +3313409 Rockfield House Rockfield House 53.415 -8.00056 S HSEC IE C 24 0 135 Europe/Dublin 2010-08-14 +3313410 Keelty Keelty 53.39444 -7.99833 P PPL IE C 24 0 124 Europe/Dublin 2010-08-14 +3313411 Mounthussey Mounthussey 53.38778 -8.02333 P PPL IE C 24 0 149 Europe/Dublin 2010-08-14 +3313412 Doyles Bridge Doyles Bridge 53.41556 -7.98056 P PPL IE C 24 0 89 Europe/Dublin 2010-08-14 +3313413 Kilnamanagh Kilnamanagh 53.40583 -7.97333 P PPL IE C 24 0 79 Europe/Dublin 2010-08-14 +3313414 Carrickynaghtan Carrickynaghtan 53.39667 -7.97556 P PPL IE C 24 0 94 Europe/Dublin 2010-08-14 +3313415 Mount Florence Mount Florence 53.38444 -7.97472 P PPL IE C 24 0 80 Europe/Dublin 2010-08-14 +3313416 Cloonown Cloonown 53.36639 -7.97417 P PPL IE C 24 0 67 Europe/Dublin 2010-08-14 +3313417 Cranberry Lough Cranberry Lough 53.35306 -8.12806 H LK IE C 24 0 87 Europe/Dublin 2010-08-14 +3313418 Cranberry Island Cranberry Island 53.3525 -8.10306 S EST IE C 24 0 98 Europe/Dublin 2010-08-14 +3313419 Birch Grove Birch Grove 53.3275 -8.15778 S EST IE C 24 0 72 Europe/Dublin 2010-08-14 +3313420 Rathpeak Rathpeak 53.32528 -8.12556 P PPL IE C 24 0 77 Europe/Dublin 2010-08-14 +3313421 Rooty Cross Rooty Cross 53.32361 -8.10028 P PPL IE C 24 0 77 Europe/Dublin 2010-08-14 +3313422 Cuilleen Cuilleen 53.34694 -8.15833 P PPL IE C 24 0 76 Europe/Dublin 2010-08-14 +3313423 Fortwilliam House Fortwilliam House 53.31611 -8.17528 S HSEC IE C 24 0 66 Europe/Dublin 2010-08-14 +3313424 Old Town Old Town 53.29861 -8.12222 P PPL IE C 24 0 64 Europe/Dublin 2010-08-14 +3313425 Kidlawn Kidlawn 53.30944 -8.11417 P PPL IE C 24 0 71 Europe/Dublin 2010-08-14 +3313426 Dromalga Park Dromalga Park 53.30222 -8.09944 L PRK IE C 24 0 69 Europe/Dublin 2010-08-14 +3313427 Cloonfad Cloonfad 53.29528 -8.10833 P PPL IE C 24 0 65 Europe/Dublin 2010-08-14 +3313428 Correen Castle Correen Castle 53.28778 -8.13556 S CSTL IE C 24 0 63 Europe/Dublin 2010-08-14 +3313429 Derrylahan Derrylahan 53.35278 -8.04583 P PPL IE C 24 0 108 Europe/Dublin 2010-08-14 +3313430 Cappavuse Cappavuse 53.33944 -8.06 P PPL IE C 24 0 95 Europe/Dublin 2010-08-14 +3313431 Coolumber Coolumber 53.32972 -8.01444 P PPL IE C 24 0 55 Europe/Dublin 2010-08-14 +3313432 Derrmeel Derrmeel 53.33972 -8.01694 P PPL IE C 24 0 63 Europe/Dublin 2010-08-14 +3313433 Callowbeg Callowbeg 53.35333 -7.97472 P PPL IE C 24 0 61 Europe/Dublin 2010-08-14 +3313434 Drumlosh Drumlosh 53.34806 -7.98472 P PPL IE C 24 0 60 Europe/Dublin 2010-08-14 +3313435 Inchinalee Inchinalee 53.34444 -7.96694 P PPL IE C 24 0 57 Europe/Dublin 2010-08-14 +3313436 Halls Point Halls Point 53.36194 -7.92917 T PT IE C 24 0 57 Europe/Dublin 2010-08-14 +3313437 America America 53.31861 -8.06833 P PPL IE C 24 0 81 Europe/Dublin 2010-08-14 +3313438 Cloonburren Covert Cloonburren Covert 53.30583 -8.06306 S EST IE C 24 0 66 Europe/Dublin 2010-08-14 +3313439 Devenish Island Devenish Island 53.30194 -8.02472 T ISL IE C 24 0 55 Europe/Dublin 2010-08-14 +3313440 Long Island Long Island 53.28333 -8.04694 T ISL IE C 24 0 55 Europe/Dublin 2010-08-14 +3313441 Cornaveagh Cornaveagh 53.29972 -8.07056 P PPL IE C 24 0 63 Europe/Dublin 2010-08-14 +3313442 Creggan Creggan 53.27944 -8.09917 P PPL IE C 24 0 59 Europe/Dublin 2010-08-14 +3313443 Sugarloaf Hill Sugarloaf Hill 53.275 -8.07639 T HLL IE C 24 0 59 Europe/Dublin 2010-08-14 +3313444 River Blackwater River Blackwater 53.24889 -8 H STM IE L 23 0 55 Europe/Dublin 2010-08-14 +3313445 Charlestown House Charlestown House 53.26028 -8.005 S HSEC IE L 23 0 55 Europe/Dublin 2010-08-14 +3313446 Clondelara Clondelara 53.27 -7.99417 P PPL IE L 23 0 56 Europe/Dublin 2010-08-14 +3313447 Derryharan House Derryharan House 53.245 -7.99444 S HSEC IE L 23 0 55 Europe/Dublin 2010-08-14 +3313448 Cloghal Cloghal 53.25083 -7.97611 P PPL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313449 Newtown Newtown 53.23611 -7.95889 P PPL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313450 Highstreet Highstreet 53.25111 -7.94167 P PPL IE L 23 0 56 Europe/Dublin 2010-08-14 +3313451 Kilcummin House Kilcummin House 53.25806 -7.93083 S HSEC IE L 23 0 57 Europe/Dublin 2010-08-14 +3313452 Hunstanton Hunstanton 53.24222 -7.925 S EST IE L 23 0 58 Europe/Dublin 2010-08-14 +3313453 Belmont House Belmont House 53.24889 -7.8975 S HSEC IE L 23 0 61 Europe/Dublin 2010-08-14 +3313454 L’Estrange Bridge L'Estrange Bridge 53.23111 -7.91583 P PPL IE L 23 0 68 Europe/Dublin 2010-08-14 +3313455 Gowlaa River Gowlaa River 53.27083 -7.95306 H STM IE L 23 0 56 Europe/Dublin 2010-08-14 +3313456 Buck River Buck River 53.28333 -7.9325 H STM IE L 23 0 57 Europe/Dublin 2010-08-14 +3313457 Gahagan’s Village Gahagan's Village 53.28778 -7.90528 P PPL IE L 23 0 59 Europe/Dublin 2010-08-14 +3313458 Lough Nanag Lough Nanag 53.30611 -7.99611 H LK IE L 23 0 56 Europe/Dublin 2010-08-14 +3313459 Derryharney Derryharney 53.30083 -7.95083 P PPL IE L 23 0 63 Europe/Dublin 2010-08-14 +3313460 Clortrane Clortrane 53.30139 -8.01222 P PPL IE L 23 0 55 Europe/Dublin 2010-08-14 +3313461 Killagally Park Killagally Park 53.25528 -7.88472 L PRK IE L 23 0 60 Europe/Dublin 2010-08-14 +3313462 Moyclare House Moyclare House 53.26333 -7.87417 S HSEC IE L 23 0 61 Europe/Dublin 2010-08-14 +3313463 Killowney Killowney 53.23667 -7.87361 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313464 Esker Hill Esker Hill 53.31833 -7.89278 T HLL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313465 Clonfinlough Clonfinlough 53.31917 -7.92083 T HLL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313466 Mannion’s Cross Roads Mannion's Cross Roads 53.32556 -7.88306 P PPL IE L 23 0 87 Europe/Dublin 2010-08-14 +3313467 Clonaderg Clonaderg 53.3375 -7.88611 P PPL IE L 23 0 87 Europe/Dublin 2010-08-14 +3313468 Clonmacnoise Clonmacnoise Clonmacnoise,Cluain Mnic Nois,Cluain Mnic Nóis 53.32528 -7.97944 P PPL IE L 23 0 58 Europe/Dublin 2010-08-14 +3313469 Ballymacegan Island Ballymacegan Island 53.14667 -8.14056 T ISL IE M 26 0 58 Europe/Dublin 2010-08-14 +3313470 Clonasera Clonasera 53.33333 -7.93056 T HLL IE L 23 0 75 Europe/Dublin 2010-08-14 +3313471 Cloncraff Cloncraff Bloomhill,Cloncraff 53.34917 -7.90056 T HLL IE IE L 23 0 78 Europe/Dublin 2010-08-14 +3313472 Athlone Athlone Athlone,Baile Atha Luain,Baile Átha Luain,asuron,アスローン 53.42278 -7.93722 P PPL IE L 29 0 60 Europe/Dublin 2010-08-14 +3313473 Golden Island Golden Island 53.4125 -7.93667 T ISL IE L 29 0 57 Europe/Dublin 2010-08-14 +3313474 Cloonbonny House Cloonbonny House 53.39056 -7.89056 S HSEC IE L 29 0 82 Europe/Dublin 2010-08-14 +3313475 Fardrum House Fardrum House 53.39 -7.88667 S HSEC IE L 29 0 82 Europe/Dublin 2010-08-14 +3313476 Fardrum Fardrum 53.3975 -7.87556 P PPL IE L 29 0 92 Europe/Dublin 2010-08-14 +3313477 Creggan Creggan 53.40722 -7.88417 P PPL IE L 29 0 105 Europe/Dublin 2010-08-14 +3313478 River Boor River Boor 53.36139 -7.91833 H STM IE L 29 0 59 Europe/Dublin 2010-08-14 +3313479 Ballynahown Court Ballynahown Court 53.35111 -7.85444 S EST IE L 29 0 115 Europe/Dublin 2010-08-14 +3313480 New Grove New Grove 52.90611 -7.87139 P PPL IE M 26 0 153 Europe/Dublin 2010-08-14 +3313481 Aghsmear House Aghsmear House 52.90361 -7.79861 S HSEC IE M 26 0 141 Europe/Dublin 2010-08-14 +3313482 Glanbeha House Glanbeha House 52.91528 -7.81861 S HSEC IE M 26 0 152 Europe/Dublin 2010-08-14 +3313483 Inane House Inane House 52.93444 -7.835 S HSEC IE M 26 0 147 Europe/Dublin 2010-08-14 +3313484 Prospect Lodge Prospect Lodge 52.93667 -7.8025 S HSE IE M 26 0 151 Europe/Dublin 2010-08-14 +3313485 Derrymore House Derrymore House 52.92306 -7.76528 S HSEC IE M 26 0 134 Europe/Dublin 2010-08-14 +3313486 Nore Bridge Nore Bridge 52.91917 -7.74722 P PPL IE M 26 0 132 Europe/Dublin 2010-08-14 +3313487 Knock Cross Roads Knock Cross Roads 52.91667 -7.69722 P PPL IE M 26 0 152 Europe/Dublin 2010-08-14 +3313488 Tinderry House Tinderry House 52.92139 -7.70667 S HSEC IE M 26 0 149 Europe/Dublin 2010-08-14 +3313489 Monaineha Bog Monaineha Bog 52.93583 -7.7425 H BOG IE M 26 0 131 Europe/Dublin 2010-08-14 +3313490 Monaineha House Monaineha House 52.9475 -7.76139 S HSEC IE M 26 0 126 Europe/Dublin 2010-08-14 +3313491 Saint Anne’s Saint Anne's 52.94583 -7.77333 S HSP IE M 38 0 124 Europe/Dublin 2010-08-14 +3313492 Butler’s Lough Butler's Lough 52.95333 -7.73833 H LK IE M 38 0 138 Europe/Dublin 2010-08-14 +3313493 Black Lough Black Lough 52.95194 -7.73417 H LK IE M 26 0 138 Europe/Dublin 2010-08-14 +3313494 Ashbury House Ashbury House 52.965 -7.78278 S HSEC IE M 26 0 119 Europe/Dublin 2010-08-14 +3313495 Glenalbert House Glenalbert House 52.97306 -7.80306 S HSEC IE M 26 0 111 Europe/Dublin 2010-08-14 +3313496 Bunow River Bunow River 52.9625 -7.83861 H STM IE M 26 0 76 Europe/Dublin 2010-08-14 +3313497 Millpark House Millpark House 52.96917 -7.82167 S HSEC IE M 26 0 100 Europe/Dublin 2010-08-14 +3313498 Quaker’s Bridge Quaker's Bridge 52.93444 -7.65917 P PPL IE L 15 0 128 Europe/Dublin 2010-08-14 +3313499 Skirke House Skirke House 52.91083 -7.6625 S HSEC IE L 15 0 142 Europe/Dublin 2010-08-14 +3313500 Ballymeelish House Ballymeelish House 52.90722 -7.63028 S HSEC IE L 15 0 144 Europe/Dublin 2010-08-14 +3313501 Court Plunkett Court Plunkett 52.90389 -7.61528 S EST IE L 15 0 148 Europe/Dublin 2010-08-14 +3313502 Clonagooden Clonagooden 52.91694 -7.64972 P PPL IE L 15 0 138 Europe/Dublin 2010-08-14 +3313503 Green Cross Roads Green Cross Roads 52.91139 -7.6175 P PPL IE L 15 0 148 Europe/Dublin 2010-08-14 +3313504 Shanboe Shanboe 52.92889 -7.65639 P PPL IE L 15 0 134 Europe/Dublin 2010-08-14 +3313505 Sentry Lodge Sentry Lodge 52.93056 -7.60611 S HSE IE L 15 0 149 Europe/Dublin 2010-08-14 +3313506 Sentry Hill Sentry Hill 52.93444 -7.60806 T HLL IE L 15 0 140 Europe/Dublin 2010-08-14 +3313507 Knockaroe Knockaroe 52.93139 -7.59056 T HLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3313508 Grange Beg Grange Beg 52.90944 -7.60472 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3313509 Mannin House Mannin House 52.94 -7.58139 S HSEC IE L 15 0 145 Europe/Dublin 2010-08-14 +3313510 Ballintaggart Ballintaggart 52.93833 -7.68028 P PPL IE L 15 0 129 Europe/Dublin 2010-08-14 +3313511 Keeloge South Keeloge South 52.95583 -7.64167 P PPL IE L 15 0 129 Europe/Dublin 2010-08-14 +3313512 Kildellig Kildellig 52.90361 -7.57139 S EST IE L 15 0 144 Europe/Dublin 2010-08-14 +3313513 New Bridge New Bridge 52.93861 -7.64639 P PPL IE L 15 0 130 Europe/Dublin 2010-08-14 +3313514 Forked Lough Forked Lough 52.94417 -7.72611 H LK IE 00 0 135 Europe/Dublin 1998-08-18 +3313515 Mount Ratler Mount Ratler 52.95694 -7.73361 S EST IE L 23 0 138 Europe/Dublin 2010-08-14 +3313516 Pike of Rush Hall Pike of Rush Hall 52.95056 -7.5525 P PPL IE L 15 0 124 Europe/Dublin 2010-08-14 +3313517 Boherard Boherard 52.905 -7.50389 P PPL IE L 15 0 109 Europe/Dublin 2010-08-14 +3313518 Aghaboe Grange Aghaboe Grange 52.92528 -7.52194 S EST IE L 15 0 116 Europe/Dublin 2010-08-14 +3313519 Carrowreagh Carrowreagh 52.92861 -7.56389 P PPL IE L 15 0 142 Europe/Dublin 2010-08-14 +3313520 Corraun Corraun 52.91778 -7.54083 P PPL IE L 15 0 126 Europe/Dublin 2010-08-14 +3313521 Pit House Pit House 52.95111 -7.5075 S HSEC IE L 15 0 106 Europe/Dublin 2010-08-14 +3313522 Rush Hall House Rush Hall House 52.9575 -7.53806 S HSEC IE L 15 0 119 Europe/Dublin 2010-08-14 +3313523 Long Island Well Long Island Well 52.95528 -7.49028 P PPLL IE L 15 0 103 Europe/Dublin 2010-08-14 +3313524 Cuddagh Cuddagh 52.94667 -7.49278 P PPL IE L 15 0 105 Europe/Dublin 2010-08-14 +3313525 Badgerisland Badgerisland 52.93167 -7.49028 P PPL IE L 15 0 103 Europe/Dublin 2010-08-14 +3313526 Farran Cross Roads Farran Cross Roads 52.90833 -7.46972 P PPL IE L 15 0 97 Europe/Dublin 2010-08-14 +3313527 Ballycuddahy Ballycuddahy 52.91972 -7.47472 P PPL IE L 15 0 98 Europe/Dublin 2010-08-14 +3313528 River Gully River Gully 52.94306 -7.44722 H STM IE L 15 0 95 Europe/Dublin 2010-08-14 +3313529 Scotchrath House Scotchrath House 52.91722 -7.44472 S HSEC IE L 15 0 93 Europe/Dublin 2010-08-14 +3313530 Shean Hill Shean Hill 52.92528 -7.45194 T HLL IE L 15 0 95 Europe/Dublin 2010-08-14 +3313531 Shanahoe Shanahoe 52.92528 -7.42472 P PPL IE L 15 0 90 Europe/Dublin 2010-08-14 +3313532 Springmount House Springmount House 52.935 -7.41972 S HSEC IE L 15 0 91 Europe/Dublin 2010-08-14 +3313533 Farmleigh Farmleigh 52.90222 -7.39806 P PPL IE L 15 0 87 Europe/Dublin 2010-08-14 +3313534 New Bridge New Bridge 52.93917 -7.44361 P PPL IE L 15 0 94 Europe/Dublin 2010-08-14 +3313535 Clonbane Clonbane 52.95083 -7.45 P PPL IE L 15 0 98 Europe/Dublin 2010-08-14 +3313536 Barnadarrig Barnadarrig 52.94333 -7.42917 P PPL IE L 15 0 93 Europe/Dublin 2010-08-14 +3313537 Blackhill House Blackhill House 52.91611 -7.37333 S HSEC IE L 15 0 108 Europe/Dublin 2010-08-14 +3313538 Ballypickas Ballypickas 52.90306 -7.29667 P PPL IE L 15 0 147 Europe/Dublin 2010-08-14 +3313539 Cobbler’s Hill Cross Roads Cobbler's Hill Cross Roads 52.90722 -7.29639 P PPL IE L 15 0 147 Europe/Dublin 2010-08-14 +3313540 Tullore Cross Roads Tullore Cross Roads 52.92167 -7.31 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3313541 Raheenabrogue Raheenabrogue 52.93139 -7.345 P PPL IE L 15 0 137 Europe/Dublin 2010-08-14 +3313542 Corbally Corbally 52.94083 -7.34611 P PPL IE L 15 0 136 Europe/Dublin 2010-08-14 +3313543 Clonbrin House Clonbrin House 52.95111 -7.31917 S HSEC IE L 15 0 150 Europe/Dublin 2010-08-14 +3313544 Cloncullane Cloncullane 52.94917 -7.28444 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3313545 Derrykearn Derrykearn 52.93833 -7.37694 L LCTY IE L 15 0 105 Europe/Dublin 2010-08-14 +3313546 Ballytarsna Ballytarsna 52.92722 -7.38806 P PPL IE L 15 0 97 Europe/Dublin 2010-08-14 +3313547 Ballyruin Ballyruin 52.96083 -7.31333 P PPL IE L 15 0 154 Europe/Dublin 2010-08-14 +3313548 Tenakill House Tenakill House 52.96861 -7.3775 S HSEC IE L 15 0 112 Europe/Dublin 2010-08-14 +3313549 Bondra Cottage Bondra Cottage 52.96722 -7.36111 S HSE IE L 15 0 125 Europe/Dublin 2010-08-14 +3313550 Ballynamuddagh Ballynamuddagh 52.98917 -7.3775 P PPL IE L 15 0 117 Europe/Dublin 2010-08-14 +3313551 Clonaddadoran Clonaddadoran 52.99417 -7.32056 T HLL IE L 15 0 148 Europe/Dublin 2010-08-14 +3313552 Ballycarnan Ballycarnan 52.99833 -7.30389 P PPL IE L 15 0 148 Europe/Dublin 2010-08-14 +3313553 Clonkeen Clonkeen 53.00806 -7.35556 P PPL IE L 15 0 139 Europe/Dublin 2010-08-14 +3313554 Cashel Cashel 52.97528 -7.30028 P PPLL IE L 15 0 153 Europe/Dublin 2010-08-14 +3313555 Rathleague House Rathleague House 53.01194 -7.26972 S HSEC IE L 15 0 149 Europe/Dublin 2010-08-14 +3313556 Togher House Togher House 53.01167 -7.30389 S HSEC IE L 15 0 144 Europe/Dublin 2010-08-14 +3313557 Meelick Meelick 53.01139 -7.29722 P PPL IE L 15 0 144 Europe/Dublin 2010-08-14 +3313558 Ardled Ardled 52.97972 -7.38056 P PPL IE L 15 0 113 Europe/Dublin 2010-08-14 +3313559 Gorteen Gorteen 53.01556 -7.39778 P PPL IE L 15 0 119 Europe/Dublin 2010-08-14 +3313560 Cromoge Cross Roads Cromoge Cross Roads 52.96167 -7.41333 P PPL IE L 15 0 102 Europe/Dublin 2010-08-14 +3313561 Shanavolla Shanavolla 52.9725 -7.43028 P PPL IE L 15 0 108 Europe/Dublin 2010-08-14 +3313562 Kilbricken Kilbricken 52.96139 -7.46194 P PPL IE L 15 0 99 Europe/Dublin 2010-08-14 +3313563 Trumra Trumra 52.98472 -7.41944 P PPL IE L 15 0 115 Europe/Dublin 2010-08-14 +3313564 Coolnareen Coolnareen 52.99056 -7.41667 P PPL IE L 15 0 115 Europe/Dublin 2010-08-14 +3313565 Clonadacasey Clonadacasey 53.00111 -7.41278 P PPL IE L 15 0 117 Europe/Dublin 2010-08-14 +3313566 Borris House Borris House 53.04611 -7.29333 S HSEC IE L 15 0 138 Europe/Dublin 2010-08-14 +3313567 Clonboyne Clonboyne 53.0175 -7.33389 P PPL IE L 15 0 144 Europe/Dublin 2010-08-14 +3313568 Kylegrove Kylegrove 53.02361 -7.33417 P PPL IE L 15 0 144 Europe/Dublin 2010-08-14 +3313569 Colnamona Colnamona 53.0325 -7.37778 P PPL IE L 15 0 135 Europe/Dublin 2010-08-14 +3313570 Pallas Pallas 53.04306 -7.34028 P PPL IE L 15 0 142 Europe/Dublin 2010-08-14 +3313571 Rossleaghan Lodge Rossleaghan Lodge 53.04917 -7.32556 S HSE IE L 15 0 140 Europe/Dublin 2010-08-14 +3313572 Cloncullen Cloncullen 53.02389 -7.425 P PPL IE L 15 0 119 Europe/Dublin 2010-08-14 +3313573 Brockra Brockra 53.04 -7.43944 P PPL IE L 15 0 133 Europe/Dublin 2010-08-14 +3313574 Iry Iry 53.04222 -7.40472 P PPL IE L 15 0 138 Europe/Dublin 2010-08-14 +3313575 Sconee Lower Sconee Lower 53.02611 -7.46944 P PPL IE L 15 0 137 Europe/Dublin 2010-08-14 +3313576 Badgerhill House Badgerhill House 52.98694 -7.50333 S HSEC IE L 15 0 113 Europe/Dublin 2010-08-14 +3313577 Clonincurragh Clonincurragh 53.005 -7.52389 P PPL IE L 15 0 141 Europe/Dublin 2010-08-14 +3313578 Derrycanton Derrycanton 52.99333 -7.50611 P PPL IE L 15 0 120 Europe/Dublin 2010-08-14 +3313579 Mountrath River Mountrath River 52.9625 -7.37028 H STM IE L 15 0 116 Europe/Dublin 2010-08-14 +3313580 Deerpark Deerpark 53.03 -7.49556 S EST IE L 15 0 151 Europe/Dublin 2010-08-14 +3313581 Shanavaur Shanavaur 53.03972 -7.49167 P PPL IE L 15 0 158 Europe/Dublin 2010-08-14 +3313582 Forest Bridge Forest Bridge 52.97417 -7.47333 P PPL IE L 15 0 103 Europe/Dublin 2010-08-14 +3313583 Knockacoller Knockacoller 52.96889 -7.52389 T HLL IE L 15 0 109 Europe/Dublin 2010-08-14 +3313584 Glenbower Glenbower 53.01556 -7.52944 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3313585 Newtown House Newtown House 52.96056 -7.505 S HSEC IE L 15 0 106 Europe/Dublin 2010-08-14 +3313586 Laurel Hill Laurel Hill 52.9725 -7.55861 S EST IE L 15 0 116 Europe/Dublin 2010-08-14 +3313587 Derrynase Bridge Derrynase Bridge 52.97972 -7.56361 P PPL IE L 15 0 115 Europe/Dublin 2010-08-14 +3313588 Annagh Bridge Annagh Bridge 52.98972 -7.56722 P PPL IE L 15 0 116 Europe/Dublin 2010-08-14 +3313589 Larch Hill Larch Hill 52.98806 -7.54528 S EST IE L 15 0 113 Europe/Dublin 2010-08-14 +3313590 Monnagh Monnagh 52.99 -7.60528 P PPL IE L 15 0 122 Europe/Dublin 2010-08-14 +3313591 Danesfort House Danesfort House 52.95972 -7.59139 S HSEC IE L 15 0 120 Europe/Dublin 2010-08-14 +3313592 Ballyhorahan Ballyhorahan 52.995 -7.55611 P PPL IE L 15 0 150 Europe/Dublin 2010-08-14 +3313593 Delour River Delour River 52.97611 -7.54389 H STM IE L 15 0 114 Europe/Dublin 2010-08-14 +3313594 Mondrehid House Mondrehid House 52.9625 -7.625 S HSEC IE L 15 0 127 Europe/Dublin 2010-08-14 +3313595 Toner River Toner River 52.97944 -7.56111 H STM IE L 15 0 115 Europe/Dublin 2010-08-14 +3313596 Killeen River Killeen River 53.00917 -7.57167 H STM IE L 15 0 145 Europe/Dublin 2010-08-14 +3313597 Roundwood House Roundwood House 53.02417 -7.52694 S HSEC IE L 15 0 148 Europe/Dublin 2010-08-14 +3313598 Drimmo Drimmo 53.04056 -7.53833 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +3313599 Cappanarrow Cappanarrow 53.0225 -7.60917 P PPL IE L 15 0 192 Europe/Dublin 2010-08-14 +3313600 Ballinrally Ballinrally 52.99611 -7.63944 P PPL IE L 15 0 166 Europe/Dublin 2010-08-14 +3313601 Srahanboy Srahanboy 53.02472 -7.64 P PPL IE L 15 0 232 Europe/Dublin 2010-08-14 +3313602 Moll Joy’s Hill Moll Joy's Hill 52.99722 -7.67083 T HLL IE L 15 0 217 Europe/Dublin 2010-08-14 +3313603 Tubbrid Tubbrid 52.97722 -7.69 P PPL IE L 15 0 196 Europe/Dublin 2010-08-14 +3313604 Closh Closh 53.00639 -7.6575 L LCTY IE L 15 0 217 Europe/Dublin 2010-08-14 +3313605 Cloncully Cloncully 52.98194 -7.65861 L LCTY IE L 15 0 155 Europe/Dublin 2010-08-14 +3313606 Cummen Cummen 53.04639 -7.61694 T HLL IE L 15 0 360 Europe/Dublin 2010-08-14 +3313607 Glendine Gap Glendine Gap 53.04333 -7.64833 T GAP IE L 15 0 410 Europe/Dublin 2010-08-14 +3313608 Ballyduff House Ballyduff House 52.96167 -7.64861 S HSEC IE L 15 0 134 Europe/Dublin 2010-08-14 +3313609 Lackey Lackey 52.96667 -7.69056 L LCTY IE L 15 0 168 Europe/Dublin 2010-08-14 +3313610 Farbreague Farbreague 53.0225 -7.70222 T MT IE 00 0 297 Europe/Dublin 1998-08-18 +3313611 Ballygaddy Cross Roads Ballygaddy Cross Roads 53.04056 -7.80639 P PPL IE L 23 0 151 Europe/Dublin 2010-08-14 +3313612 Roscomroe Cottage Roscomroe Cottage 53.02778 -7.75639 S HSE IE L 23 0 167 Europe/Dublin 2010-08-14 +3313613 Lissanierin House Lissanierin House 53.01611 -7.7975 S HSEC IE L 23 0 154 Europe/Dublin 2010-08-14 +3313614 Ballinlough House Ballinlough House 53.00806 -7.81194 S HSEC IE L 23 0 160 Europe/Dublin 2010-08-14 +3313615 Ballybrin Ballybrin 53.005 -7.79639 P PPL IE L 23 0 150 Europe/Dublin 2010-08-14 +3313616 Danganreagh House Danganreagh House 52.99361 -7.78694 S HSEC IE L 23 0 143 Europe/Dublin 2010-08-14 +3313617 Cloghan House Cloghan House 53.03556 -7.83472 S HSEC IE L 23 0 132 Europe/Dublin 2010-08-14 +3313618 Fortwilliam House Fortwilliam House 52.99944 -7.815 S HSEC IE L 23 0 154 Europe/Dublin 2010-08-14 +3313619 Killavilla House Killavilla House 52.97444 -7.75222 S HSEC IE L 23 0 139 Europe/Dublin 2010-08-14 +3313620 Dungar Park Dungar Park 52.97944 -7.77472 S EST IE L 23 0 144 Europe/Dublin 2010-08-14 +3313621 Summerhill House Summerhill House 52.98583 -7.75111 S HSEC IE L 23 0 152 Europe/Dublin 2010-08-14 +3313622 Dungar House Dungar House 52.97333 -7.78333 S HSEC IE L 23 0 129 Europe/Dublin 2010-08-14 +3313623 Coolderry House Coolderry House 53.01611 -7.85611 S HSEC IE L 23 0 105 Europe/Dublin 2010-08-14 +3313624 Coolderry Coolderry 53.00833 -7.83917 P PPLL IE L 23 0 137 Europe/Dublin 2010-08-14 +3313625 Pollduff Pollduff 53.03306 -7.72333 P PPL IE L 23 0 285 Europe/Dublin 2010-08-14 +3313626 Cedar Hill Cedar Hill 52.975 -7.84278 T HLL IE L 23 0 75 Europe/Dublin 2010-08-14 +3313627 Broomfield House Broomfield House 53.05028 -7.28667 S HSEC IE L 15 0 137 Europe/Dublin 2010-08-14 +3313628 Ridge of Maryborough Ridge of Maryborough 53.06583 -7.3025 T SLP IE L 15 0 130 Europe/Dublin 2010-08-14 +3313629 Kyletalesha Kyletalesha 53.07694 -7.31833 P PPL IE L 15 0 127 Europe/Dublin 2010-08-14 +3313630 Larkin’s Cross Roads Larkin's Cross Roads 53.08417 -7.29444 P PPL IE L 15 0 118 Europe/Dublin 2010-08-14 +3313631 Killeen House Killeen House 53.09306 -7.26528 S HSEC IE L 15 0 123 Europe/Dublin 2010-08-14 +3313632 Derrygile Derrygile 53.09444 -7.32944 P PPLL IE L 15 0 121 Europe/Dublin 2010-08-14 +3313633 Clondarrig Clondarrig 53.05056 -7.37528 P PPLL IE L 15 0 141 Europe/Dublin 2010-08-14 +3313634 Rossnagad Rossnagad 53.07167 -7.35889 P PPL IE L 15 0 139 Europe/Dublin 2010-08-14 +3313635 Clonygowan Clonygowan 53.07194 -7.39333 P PPLL IE L 15 0 144 Europe/Dublin 2010-08-14 +3313636 River Blackwater River Blackwater 53.09972 -7.35083 H STM IE L 15 0 126 Europe/Dublin 2010-08-14 +3313637 Esker Esker 53.08361 -7.39528 P PPL IE L 15 0 141 Europe/Dublin 2010-08-14 +3313638 Knightstown House Knightstown House 53.1075 -7.25972 S HSEC IE L 15 0 118 Europe/Dublin 2010-08-14 +3313639 Dangans Dangans 53.1175 -7.27583 P PPL IE L 15 0 104 Europe/Dublin 2010-08-14 +3313640 Dangan’s Bridge Dangan's Bridge 53.1225 -7.26722 P PPL IE L 15 0 105 Europe/Dublin 2010-08-14 +3313641 Borness Bridge Borness Bridge 53.13056 -7.30583 P PPL IE L 15 0 100 Europe/Dublin 2010-08-14 +3313642 Bay Bridge Bay Bridge 53.12972 -7.32111 P PPLL IE L 15 0 101 Europe/Dublin 2010-08-14 +3313643 Camira Cross Roads Camira Cross Roads 53.13611 -7.37028 P PPL IE L 15 0 119 Europe/Dublin 2010-08-14 +3313644 Mullaghanard Cross Roads Mullaghanard Cross Roads 53.12278 -7.37472 P PPL IE L 15 0 128 Europe/Dublin 2010-08-14 +3313645 New Mills New Mills 53.10917 -7.35333 P PPL IE L 15 0 120 Europe/Dublin 2010-08-14 +3313646 Derrylemoge Derrylemoge 53.11333 -7.39806 P PPL IE L 15 0 143 Europe/Dublin 2010-08-14 +3313647 Summer Grove Summer Grove 53.12139 -7.375 P PPL IE L 15 0 128 Europe/Dublin 2010-08-14 +3313648 Hammerlane Hammerlane 53.13944 -7.32 S EST IE L 15 0 101 Europe/Dublin 2010-08-14 +3313649 Cappanrush Cappanrush 53.05889 -7.40778 P PPL IE L 15 0 146 Europe/Dublin 2010-08-14 +3313650 Knocks Knocks 53.04944 -7.4625 P PPLL IE L 15 0 167 Europe/Dublin 2010-08-14 +3313651 Derrycon Derrycon 53.05639 -7.5075 P PPL IE L 15 0 164 Europe/Dublin 2010-08-14 +3313652 Lady’s Bridge Lady's Bridge 53.07333 -7.43028 P PPL IE L 15 0 154 Europe/Dublin 2010-08-14 +3313653 Rossmore Rossmore 53.07 -7.4525 P PPL IE L 15 0 201 Europe/Dublin 2010-08-14 +3313654 Redgate Cross Roads Redgate Cross Roads 53.07833 -7.4375 P PPL IE L 15 0 163 Europe/Dublin 2010-08-14 +3313655 Cathole Bridge Cathole Bridge 53.09194 -7.43806 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3313656 Ballyhunpahane Ballyhunpahane 53.09139 -7.47833 P PPL IE L 15 0 247 Europe/Dublin 2010-08-14 +3313657 Carnahinch Mountain Carnahinch Mountain 53.08639 -7.48889 T MT IE L 15 0 236 Europe/Dublin 2010-08-14 +3313658 Rockaugh Lodge Rockaugh Lodge 53.06333 -7.53861 S HSE IE L 15 0 283 Europe/Dublin 2010-08-14 +3313659 Bawnrush Bawnrush 53.07083 -7.52417 T MT IE L 15 0 292 Europe/Dublin 2010-08-14 +3313660 Banreigh Cottage Banreigh Cottage 53.06556 -7.55833 S HSE IE L 15 0 249 Europe/Dublin 2010-08-14 +3313661 Inchanisky Inchanisky 53.05722 -7.55111 P PPL IE L 15 0 232 Europe/Dublin 2010-08-14 +3313662 Barna Barna 53.08444 -7.53611 T MT IE L 15 0 272 Europe/Dublin 2010-08-14 +3313663 Gorteen River Gorteen River 53.04694 -7.5575 H STM IE L 15 0 195 Europe/Dublin 2010-08-14 +3313664 The Cut The Cut 53.08778 -7.55778 T SLP IE L 15 0 304 Europe/Dublin 2010-08-14 +3313665 Knockanastumba Knockanastumba 53.10639 -7.51361 T MT IE L 15 0 224 Europe/Dublin 2010-08-14 +3313666 Glendineoregan Glendineoregan 53.11194 -7.52833 P PPLL IE L 15 0 303 Europe/Dublin 2010-08-14 +3313667 Knockachorra Mountain Knockachorra Mountain 53.10556 -7.56611 T MT IE L 15 0 317 Europe/Dublin 2010-08-14 +3313668 Brennan’s Rocks Brennan's Rocks 53.11389 -7.56833 T RKS IE L 15 0 365 Europe/Dublin 2010-08-14 +3313669 Hugh O’Neill’s Well Hugh O'Neill's Well 53.08389 -7.59056 H WLL IE L 15 0 421 Europe/Dublin 2010-08-14 +3313670 Murglash River Murglash River 53.09472 -7.37667 H STM IE L 15 0 135 Europe/Dublin 2010-08-14 +3313671 Longford Longford 53.12611 -7.49194 P PPL IE L 15 0 188 Europe/Dublin 2010-08-14 +3313672 Glenlahan River Glenlahan River 53.14694 -7.47972 H STM IE L 15 0 141 Europe/Dublin 2010-08-14 +3313673 Gorragh River Gorragh River 53.15806 -7.51556 H STM IE L 15 0 122 Europe/Dublin 2010-08-14 +3313674 Srahcullen Srahcullen 53.13944 -7.52333 P PPL IE L 15 0 157 Europe/Dublin 2010-08-14 +3313675 Ballynahimmy Ballynahimmy 53.14 -7.60222 P PPLL IE L 15 0 190 Europe/Dublin 2010-08-14 +3313676 Barradoos Mountain Barradoos Mountain 53.11917 -7.60556 T MT IE L 15 0 277 Europe/Dublin 2010-08-14 +3313677 General’s Road General's Road 53.10167 -7.5675 R TRL IE L 15 0 361 Europe/Dublin 2010-08-14 +3313682 Coolacrease House Coolacrease House 53.1325 -7.64639 S HSEC IE L 23 0 170 Europe/Dublin 2010-08-14 +3313683 County Bridge County Bridge 53.13833 -7.64167 P PPL IE L 23 0 148 Europe/Dublin 2010-08-14 +3313684 Cadamstown House Cadamstown House 53.12944 -7.66361 S HSEC IE L 23 0 137 Europe/Dublin 2010-08-14 +3313685 Inckaroe Cross Roads Inckaroe Cross Roads 53.11306 -7.67889 P PPL IE L 23 0 152 Europe/Dublin 2010-08-14 +3313686 Letter House Letter House 53.11667 -7.65444 S HSEC IE L 23 0 158 Europe/Dublin 2010-08-14 +3313688 Wolftrap Mountain Wolftrap Mountain 53.09722 -7.58667 T MT IE 00 0 446 Europe/Dublin 1998-08-18 +3313689 Spink Spink 53.11306 -7.62389 T MT IE L 23 0 319 Europe/Dublin 2010-08-14 +3313690 Glenletter Glenletter 53.09861 -7.64583 P PPL IE L 23 0 272 Europe/Dublin 2010-08-14 +3313691 Letter Cross Roads Letter Cross Roads 53.08889 -7.62417 P PPL IE L 23 0 393 Europe/Dublin 2010-08-14 +3313692 Carroll’s Hill Carroll's Hill 53.06722 -7.66444 T MT IE L 23 0 421 Europe/Dublin 2010-08-14 +3313724 Tulla House Tulla House 53.05 -7.70667 S HSEC IE L 23 0 264 Europe/Dublin 2010-08-14 +3313725 Ballymac House Ballymac House 53.05639 -7.72 S HSEC IE L 23 0 208 Europe/Dublin 2010-08-14 +3313726 Cumber House Cumber House 53.07056 -7.70444 S HSEC IE L 23 0 237 Europe/Dublin 2010-08-14 +3313727 Cumber Lower Cumber Lower 53.07722 -7.7275 P PPL IE L 23 0 169 Europe/Dublin 2010-08-14 +3313728 Knocknaman Knocknaman 53.08111 -7.69944 T MT IE L 23 0 227 Europe/Dublin 2010-08-14 +3313729 Forelacka Forelacka 53.07667 -7.68417 L LCTY IE L 23 0 235 Europe/Dublin 2010-08-14 +3313730 Kinnitty Castle Kinnitty Castle 53.10361 -7.7075 S CSTL IE L 23 0 135 Europe/Dublin 2010-08-14 +3313731 Moneyguyneen House Moneyguyneen House 53.10944 -7.70528 S HSEC IE L 23 0 126 Europe/Dublin 2010-08-14 +3313732 Drumcullen Bridge Drumcullen Bridge 53.10417 -7.73611 P PPL IE L 23 0 90 Europe/Dublin 2010-08-14 +3313733 Derrykeel House Derrykeel House 53.08111 -7.76556 S RUIN IE L 23 0 148 Europe/Dublin 2010-08-14 +3313734 Ballyshane Ballyshane 53.08722 -7.75528 P PPL IE L 23 0 148 Europe/Dublin 2010-08-14 +3313735 Knockbarron Knockbarron 53.11417 -7.72833 T HLL IE L 23 0 93 Europe/Dublin 2010-08-14 +3313736 Longford House Longford House 53.05417 -7.76333 S HSEC IE L 23 0 141 Europe/Dublin 2010-08-14 +3313737 Barlahan Barlahan 53.10361 -7.63833 L LCTY IE L 23 0 275 Europe/Dublin 2010-08-14 +3313738 Dromoyle House Dromoyle House 53.05194 -7.82722 S HSEC IE L 23 0 122 Europe/Dublin 2010-08-14 +3313739 Mossfield House Mossfield House 53.05722 -7.82167 S HSEC IE L 23 0 129 Europe/Dublin 2010-08-14 +3313740 Manor House Manor House 53.05861 -7.79028 S HSEC IE L 23 0 123 Europe/Dublin 2010-08-14 +3313741 Kilmaine House Kilmaine House 53.09083 -7.81556 S HSEC IE L 23 0 89 Europe/Dublin 2010-08-14 +3313742 Breaghmore Breaghmore 53.08639 -7.8025 P PPLL IE L 23 0 92 Europe/Dublin 2010-08-14 +3313743 Castletown Castletown 53.06889 -7.83944 P PPLL IE L 23 0 90 Europe/Dublin 2010-08-14 +3313744 Kingsborough Kingsborough 53.08167 -7.84806 P PPLL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313745 Osterbrook House Osterbrook House 53.095 -7.75722 S HSEC IE L 23 0 115 Europe/Dublin 2010-08-14 +3313746 Carrig Bridge Carrig Bridge 53.10028 -7.76167 L LCTY IE L 23 0 80 Europe/Dublin 2010-08-14 +3313747 Streamstown House Streamstown House 53.10389 -7.78944 S HSEC IE L 23 0 77 Europe/Dublin 2010-08-14 +3313748 Heath Lodge Heath Lodge 53.11 -7.76111 S HSE IE L 23 0 79 Europe/Dublin 2010-08-14 +3313749 Fortel Fortel 53.07722 -7.83222 P PPL IE L 23 0 91 Europe/Dublin 2010-08-14 +3313750 Pass House Pass House 53.11333 -7.76472 S HSEC IE L 23 0 79 Europe/Dublin 2010-08-14 +3313751 Rathgibbon Rathgibbon 53.11417 -7.80417 P PPLL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313752 Killaun Killaun 53.09917 -7.84 P PPLL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313753 Money House Money House 53.13833 -7.7375 S HSEC IE L 23 0 83 Europe/Dublin 2010-08-14 +3313754 Annaghmore House Annaghmore House 53.13389 -7.73389 S HSEC IE L 23 0 83 Europe/Dublin 2010-08-14 +3313755 Curragh Curragh 53.13722 -7.77694 L LCTY IE L 23 0 75 Europe/Dublin 2010-08-14 +3313756 Springfield House Springfield House 53.1375 -7.83083 S HSEC IE L 23 0 72 Europe/Dublin 2010-08-14 +3313757 Coffey’s Cross Bridge Coffey's Cross Bridge 53.05167 -7.86944 P PPL IE L 23 0 79 Europe/Dublin 2010-08-14 +3313758 View Mount View Mount 53.06833 -7.86361 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313759 Camcor River Camcor River 53.09472 -7.91889 H STM IE L 23 0 67 Europe/Dublin 2010-08-14 +3313760 Cree Cree 53.05972 -7.85778 P PPLL IE L 23 0 82 Europe/Dublin 2010-08-14 +3313761 The Derrics The Derrics 53.11694 -7.87083 L LCTY IE L 23 0 73 Europe/Dublin 2010-08-14 +3313762 Eglish Castle Eglish Castle 53.13833 -7.84944 S CSTL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313763 Portnahinch House Portnahinch House 53.13722 -7.26833 S HSEC IE L 23 0 96 Europe/Dublin 2010-08-14 +3313764 Garryhinch House Garryhinch House 53.14333 -7.25944 S HSEC IE L 23 0 92 Europe/Dublin 2010-08-14 +3313765 Clonyhurk House Clonyhurk House 53.15278 -7.27556 S HSEC IE L 23 0 94 Europe/Dublin 2010-08-14 +3313766 Killeenduff Killeenduff 53.16139 -7.29694 S HSEC IE L 23 0 96 Europe/Dublin 2010-08-14 +3313767 Cooltycanon Cooltycanon 53.16833 -7.31389 S HSEC IE L 23 0 98 Europe/Dublin 2010-08-14 +3313768 Clonyquin Clonyquin 53.175 -7.28944 P PPLL IE L 23 0 94 Europe/Dublin 2010-08-14 +3313769 Ballyshear Ballyshear 53.19139 -7.27778 P PPLL IE L 23 0 91 Europe/Dublin 2010-08-14 +3313770 Forest House Forest House 53.13861 -7.35361 S HSEC IE L 15 0 106 Europe/Dublin 2010-08-14 +3313771 Forest Upper Forest Upper 53.1475 -7.35722 P PPL IE L 15 0 106 Europe/Dublin 2010-08-14 +3313772 Twomile Bridge Twomile Bridge 53.15389 -7.36722 P PPL IE L 15 0 108 Europe/Dublin 2010-08-14 +3313773 Laught Laught Commons,Laught 53.17194 -7.38056 P PPL IE IE L 15 0 109 Europe/Dublin 2010-08-14 +3313774 Kilcavan Kilcavan 53.1925 -7.37861 P PPL IE L 15 0 105 Europe/Dublin 2010-08-14 +3313775 Woodfield Woodfield 53.19278 -7.35167 P PPL IE L 15 0 99 Europe/Dublin 2010-08-14 +3313776 Kilcooney House Kilcooney House 53.20944 -7.275 S HSEC IE L 23 0 88 Europe/Dublin 2010-08-14 +3313777 Urney House Urney House 53.2075 -7.28889 S HSEC IE L 23 0 88 Europe/Dublin 2010-08-14 +3313778 Ballykean Ballykean 53.22667 -7.29167 P PPL IE L 23 0 85 Europe/Dublin 2010-08-14 +3313779 Raheen Lough Raheen Lough 53.21361 -7.30278 H LK IE L 23 0 86 Europe/Dublin 2010-08-14 +3313780 Derrylough House Derrylough House 53.1575 -7.40111 S HSEC IE L 15 0 132 Europe/Dublin 2010-08-14 +3313781 Ballyclare Bridge Ballyclare Bridge 53.18139 -7.4225 P PPL IE L 15 0 118 Europe/Dublin 2010-08-14 +3313782 Drummond Drummond 53.16917 -7.42556 P PPL IE L 15 0 127 Europe/Dublin 2010-08-14 +3313783 Clonduff Clonduff 53.17806 -7.45472 P PPL IE L 15 0 121 Europe/Dublin 2010-08-14 +3313784 Rearyvale House Rearyvale House 53.15861 -7.45472 S HSEC IE L 15 0 134 Europe/Dublin 2010-08-14 +3313785 Rearyvalley Rearyvalley Clonygark,Rearyvalley 53.17278 -7.475 P PPL IE IE L 15 0 124 Europe/Dublin 2010-08-14 +3313786 Rynn House Rynn House 53.14194 -7.39639 S HSEC IE L 15 0 133 Europe/Dublin 2010-08-14 +3313787 Clarahill Clarahill 53.14611 -7.47583 P PPL IE L 15 0 141 Europe/Dublin 2010-08-14 +3313788 Derry House Derry House 53.14528 -7.45167 S HSEC IE L 15 0 147 Europe/Dublin 2010-08-14 +3313789 Killart House Killart House 53.15667 -7.51528 S HSEC IE L 15 0 122 Europe/Dublin 2010-08-14 +3313790 Brogherled Cross Roads Brogherled Cross Roads 53.165 -7.56556 P PPL IE L 15 0 111 Europe/Dublin 2010-08-14 +3313791 Kilmanman Kilmanman 53.15917 -7.53889 P PPL IE L 15 0 115 Europe/Dublin 2010-08-14 +3313792 Ballinfulla Ballinfulla 53.1575 -7.59194 P PPLL IE L 15 0 123 Europe/Dublin 2010-08-14 +3313793 Soldier’s Hill Soldier's Hill 53.15639 -7.62222 T HLL IE L 15 0 128 Europe/Dublin 2010-08-14 +3313794 Derry Hills Derry Hills 53.16306 -7.60528 T HLL IE L 15 0 107 Europe/Dublin 2010-08-14 +3313795 Castlecutte Castlecutte 53.14833 -7.57944 L LCTY IE L 15 0 157 Europe/Dublin 2010-08-14 +3313796 Ballylevin Ballylevin 53.215 -7.38861 P PPLL IE L 23 0 99 Europe/Dublin 2010-08-14 +3313797 Finter Lodge Finter Lodge 53.21722 -7.41667 S HSE IE L 23 0 97 Europe/Dublin 2010-08-14 +3313798 Rockfield Rockfield 53.20667 -7.455 P PPLL IE L 23 0 113 Europe/Dublin 2010-08-14 +3313799 Gorteen Bridge Gorteen Bridge 53.2025 -7.48833 P PPLL IE L 23 0 99 Europe/Dublin 2010-08-14 +3313800 Moneyguid Moneyguid 53.19556 -7.44333 P PPLL IE L 23 0 117 Europe/Dublin 2010-08-14 +3313801 Burnett’s Wood Burnett's Wood 53.21972 -7.45806 V FRST IE L 23 0 98 Europe/Dublin 2010-08-14 +3313802 Hawkswood Hawkswood 53.22444 -7.48111 P PPLL IE L 23 0 94 Europe/Dublin 2010-08-14 +3313803 Clonad Wood Clonad Wood 53.22417 -7.51694 V FRST IE L 23 0 83 Europe/Dublin 2010-08-14 +3313804 Killurin Killurin 53.21389 -7.54667 P PPLL IE L 23 0 86 Europe/Dublin 2010-08-14 +3313805 Mullagh House Mullagh House 53.20722 -7.54306 S HSEC IE L 23 0 91 Europe/Dublin 2010-08-14 +3313806 Annaghbrack Annaghbrack 53.18028 -7.57667 P PPL IE L 23 0 91 Europe/Dublin 2010-08-14 +3313807 Killananny Killananny 53.19083 -7.58722 P PPL IE L 23 0 86 Europe/Dublin 2010-08-14 +3313808 Monument Cross Roads Monument Cross Roads 53.18333 -7.59222 P PPL IE L 23 0 89 Europe/Dublin 2010-08-14 +3313809 Ruthrobin House Ruthrobin House 53.19528 -7.60639 S EST IE L 23 0 83 Europe/Dublin 2010-08-14 +3313810 Mullacrew Mullacrew 53.20167 -7.62694 P PPL IE L 23 0 82 Europe/Dublin 2010-08-14 +3313811 Killurin House Killurin House 53.21833 -7.5575 S HSEC IE L 23 0 82 Europe/Dublin 2010-08-14 +3313812 Pallas Lough Pallas Lough 53.22333 -7.59556 H LK IE L 23 0 79 Europe/Dublin 2010-08-14 +3313813 Black Lion Black Lion 53.20889 -7.62278 L LCTY IE L 23 0 80 Europe/Dublin 2010-08-14 +3313814 Idle Corner Idle Corner 53.21083 -7.65083 P PPL IE L 23 0 77 Europe/Dublin 2010-08-14 +3313815 Cappagowlan Cappagowlan 53.17639 -7.65694 P PPL IE L 23 0 81 Europe/Dublin 2010-08-14 +3313816 Derrydolney House Derrydolney House 53.18833 -7.6825 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3313817 Killooly Hall Killooly Hall 53.20361 -7.67528 S EST IE L 23 0 76 Europe/Dublin 2010-08-14 +3313818 Behanamuck Behanamuck 53.2075 -7.72167 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313819 Troy’s Island Troy's Island 53.20333 -7.70056 S FRM IE L 23 0 75 Europe/Dublin 2010-08-14 +3313820 Derrydolney Derrydolney 53.19083 -7.71444 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +3313821 Ridgemount House Ridgemount House 53.18639 -7.71306 S HSEC IE L 23 0 73 Europe/Dublin 2010-08-14 +3313822 Limekiln Limekiln 53.19472 -7.74722 P PPL IE L 23 0 69 Europe/Dublin 2010-08-14 +3313823 Black River Black River 53.16167 -7.63028 H STM IE L 23 0 106 Europe/Dublin 2010-08-14 +3313824 Derrinboy House Derrinboy House 53.14889 -7.71472 S HSEC IE L 23 0 92 Europe/Dublin 2010-08-14 +3313825 Ballycollin Ballycollin 53.16111 -7.72083 P PPL IE L 23 0 79 Europe/Dublin 2010-08-14 +3313826 Lisduff Lisduff 53.14722 -7.76667 P PPL IE L 23 0 75 Europe/Dublin 2010-08-14 +3313827 Williams Fort Williams Fort 53.15972 -7.73278 S FT IE L 23 0 78 Europe/Dublin 2010-08-14 +3313828 Dovehill House Dovehill House 53.14722 -7.78389 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3313829 Curraghmore House Curraghmore House 53.15917 -7.76639 S HSEC IE L 23 0 75 Europe/Dublin 2010-08-14 +3313830 Ballynacard House Ballynacard House 53.165 -7.79528 S HSEC IE L 23 0 73 Europe/Dublin 2010-08-14 +3313831 Barnaboy House Barnaboy House 53.18222 -7.73611 S HSEC IE L 23 0 71 Europe/Dublin 2010-08-14 +3313832 Kilcormac Kilcormac Cill Chormaic,Kilcormac 53.17417 -7.72556 P PPL IE L 23 1200 76 Europe/Dublin 2010-08-14 +3313833 Ballykealy House Ballykealy House 53.16167 -7.82111 S HSEC IE L 23 0 71 Europe/Dublin 2010-08-14 +3313834 Derryad House Derryad House 53.16944 -7.825 S HSEC IE L 23 0 70 Europe/Dublin 2010-08-14 +3313835 Derrybrat Derrybrat 53.20167 -7.7775 P PPL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313836 Ballywhire Ballywhire 53.18611 -7.80778 P PPL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313837 Eglish Lodge Eglish Lodge 53.14167 -7.84472 S HSE IE L 23 0 70 Europe/Dublin 2010-08-14 +3313838 Whigsborough House Whigsborough House 53.15583 -7.84972 S HSEC IE L 23 0 70 Europe/Dublin 2010-08-14 +3313839 Derrinlough House Derrinlough House 53.17056 -7.86972 S HSEC IE L 23 0 72 Europe/Dublin 2010-08-14 +3313840 Drinagh Drinagh 53.18944 -7.84139 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313841 Brackay Brackay 53.2125 -7.805 P PPL IE L 23 0 66 Europe/Dublin 2010-08-14 +3313842 Black Brook Black Brook 53.20528 -7.80944 H STM IE L 23 0 66 Europe/Dublin 2010-08-14 +3313843 Millbrook Bridge Millbrook Bridge 53.2175 -7.79722 P PPL IE L 23 0 65 Europe/Dublin 2010-08-14 +3313844 Hill House Hill House 53.22 -7.84722 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +3313845 Lug Lug 53.21111 -7.86083 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313846 Cottoner’s Brook Cottoner's Brook 53.13361 -7.30111 H STM IE L 23 0 98 Europe/Dublin 2010-08-14 +3313847 Bunakeeran Bunakeeran 53.225 -7.67667 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313848 Lumcloon Bridge Lumcloon Bridge 53.22694 -7.79139 P PPL IE L 23 0 64 Europe/Dublin 2010-08-14 +3313849 Lumcloon Cross Roads Lumcloon Cross Roads 53.22389 -7.82167 P PPL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313850 Noggusboy Noggusboy 53.24667 -7.85083 P PPL IE L 23 0 65 Europe/Dublin 2010-08-14 +3313851 Gallen Priory Gallen Priory 53.26278 -7.82417 S MSTY IE L 23 0 63 Europe/Dublin 2010-08-14 +3313852 Derrycarney Derrycarney 53.23944 -7.78611 P PPL IE L 23 0 63 Europe/Dublin 2010-08-14 +3313853 Ballyduff Ballyduff 53.24611 -7.29278 P PPL IE L 23 0 86 Europe/Dublin 2010-08-14 +3313854 Rathfeston House Rathfeston House 53.25028 -7.28333 S HSEC IE L 23 0 86 Europe/Dublin 2010-08-14 +3313855 Gorteenkeel Gorteenkeel 53.25583 -7.27389 P PPL IE L 23 0 85 Europe/Dublin 2010-08-14 +3313856 Ballymooney House Ballymooney House 53.2525 -7.34917 S HSEC IE L 23 0 80 Europe/Dublin 2010-08-14 +3313857 Curragh Curragh 53.24306 -7.34389 P PPL IE L 23 0 80 Europe/Dublin 2010-08-14 +3313858 Ballycollin Ballycollin 53.23722 -7.3875 P PPL IE L 23 0 83 Europe/Dublin 2010-08-14 +3313859 Cappanageeragh Cappanageeragh 53.27222 -7.36694 P PPL IE L 23 0 80 Europe/Dublin 2010-08-14 +3313860 Cross Keys Cross Roads Cross Keys Cross Roads 53.24361 -7.37722 P PPL IE L 23 0 80 Europe/Dublin 2010-08-14 +3313861 Mount Briscoe Mount Briscoe 53.31139 -7.26472 P PPL IE L 23 0 119 Europe/Dublin 2010-08-14 +3313862 Ballymullen Ballymullen 53.30167 -7.31556 P PPL IE L 23 0 123 Europe/Dublin 2010-08-14 +3313863 Barnaboy Barnaboy 53.31556 -7.36806 P PPL IE L 23 0 121 Europe/Dublin 2010-08-14 +3313864 Ballyteague House Ballyteague House 53.29389 -7.39306 S HSEC IE L 23 0 97 Europe/Dublin 2010-08-14 +3313865 Derrygrogan Derrygrogan 53.3075 -7.38694 P PPL IE L 23 0 106 Europe/Dublin 2010-08-14 +3313866 Kilmurry House Kilmurry House 53.315 -7.39167 S HSEC IE L 23 0 104 Europe/Dublin 2010-08-14 +3313867 Cappyroe Cappyroe 53.27583 -7.39028 P PPLL IE L 23 0 85 Europe/Dublin 2010-08-14 +3313868 Philipstown River Philipstown River 53.2975 -7.27278 H STM IE L 23 0 85 Europe/Dublin 2010-08-14 +3313869 Wood of O House Wood of O House 53.29444 -7.42528 S HSEC IE L 23 0 84 Europe/Dublin 2010-08-14 +3313870 Hollow House Hollow House 53.30639 -7.46806 S HSEC IE L 23 0 73 Europe/Dublin 2010-08-14 +3313871 Ardan Ardan 53.29444 -7.49361 S HSEC IE L 23 0 72 Europe/Dublin 2010-08-14 +3313872 Corndarragh Corndarragh 53.28889 -7.45139 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313873 Capppancur Capppancur 53.27 -7.43167 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313874 Ballydutt House Ballydutt House 53.28611 -7.51194 S HSEC IE L 23 0 72 Europe/Dublin 2010-08-14 +3313875 Kildangan Kildangan 53.30944 -7.54806 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +3313876 Ballycowan Bridge Ballycowan Bridge 53.27528 -7.55222 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313877 Meclaghans Lodge Meclaghans Lodge 53.26 -7.44917 S HSE IE L 23 0 74 Europe/Dublin 2010-08-14 +3313878 Meclaghans Cross Roads Meclaghans Cross Roads 53.25722 -7.4275 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313879 Toberin River Toberin River 53.26167 -7.40472 H STM IE L 23 0 75 Europe/Dublin 2010-08-14 +3313880 Ashfield House Ashfield House 53.25389 -7.47222 S HSEC IE L 23 0 74 Europe/Dublin 2010-08-14 +3313881 Cloncon House Cloncon House 53.245 -7.47028 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3313882 Newtown House Newtown House 53.23639 -7.4 S HSEC IE L 23 0 83 Europe/Dublin 2010-08-14 +3313883 Killeenmore Killeenmore 53.23333 -7.44944 P PPL IE L 23 0 90 Europe/Dublin 2010-08-14 +3313884 Ballard Ballard 53.25056 -7.50722 P PPLL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313885 Clunagh House Clunagh House 53.23111 -7.52583 S HSEC IE L 23 0 79 Europe/Dublin 2010-08-14 +3313886 Red Gate Red Gate 53.2625 -7.50528 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +3313887 Screggan Manor Screggan Manor 53.24944 -7.55694 S EST IE L 23 0 76 Europe/Dublin 2010-08-14 +3313888 Lynally Glebe Lynally Glebe 53.26111 -7.55944 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313889 Coal Gap Coal Gap 53.23361 -7.61111 T GAP IE L 23 0 76 Europe/Dublin 2010-08-14 +3313890 Glasshouse Glasshouse 53.24222 -7.6175 P PPL IE L 23 0 75 Europe/Dublin 2010-08-14 +3313891 Screggan Screggan 53.2475 -7.57944 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313892 Ballyfarrell Ballyfarrell 53.23528 -7.64306 P PPL IE L 23 0 75 Europe/Dublin 2010-08-14 +3313893 Agall Agall 53.25611 -7.60167 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313894 Cully Cully 53.24 -7.65611 P PPL IE L 23 0 75 Europe/Dublin 2010-08-14 +3313895 Rabbitburrow Rabbitburrow 53.25417 -7.65194 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313896 Derrooly Derrooly 53.26083 -7.65278 P PPL IE L 23 0 73 Europe/Dublin 2010-08-14 +3313897 Derrycooly Derrycooly 53.26389 -7.67389 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313902 Ballincur Ballincur 53.27694 -7.66194 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313903 Rahan Rahan Rahan 53.27722 -7.63056 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313905 Aharney Aharney 53.30444 -7.58472 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313906 Trumpet Hill Trumpet Hill 53.29389 -7.57889 T HLL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313907 Ballynasrah Ballynasrah 53.29028 -7.56583 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313908 Goldsmithslot Goldsmithslot 53.28778 -7.65861 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313909 Derrics Derrics 53.30583 -7.61583 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313910 The Island The Island 53.30972 -7.66944 P PPL IE L 23 0 69 Europe/Dublin 2010-08-14 +3313912 Lough Roy Lough Roy 53.31972 -7.61583 H LK IE L 23 0 71 Europe/Dublin 2010-08-14 +3313913 Leabeg Leabeg 53.2325 -7.72694 P PPL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313914 Lea More Lea More 53.24167 -7.72167 P PPL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313915 Cocta Hill Cocta Hill 53.26333 -7.72111 T HLL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313916 Pollagh Pollagh 53.27667 -7.70806 P PPL IE L 23 0 68 Europe/Dublin 2010-08-14 +3313917 Kilcolgan Kilcolgan 53.26917 -7.77639 P PPL IE L 23 0 63 Europe/Dublin 2010-08-14 +3313918 Ballydaly Ballydaly 53.2775 -7.77667 P PPL IE L 23 0 78 Europe/Dublin 2010-08-14 +3313920 Lemanaghan Lemanaghan 53.28889 -7.74667 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313921 Derrynagun Derrynagun 53.29528 -7.72861 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313922 Brackagh Brackagh 53.30694 -7.71139 P PPL IE L 23 0 67 Europe/Dublin 2010-08-14 +3313923 Castletown Castletown 53.31444 -7.75111 P PPL IE L 23 0 131 Europe/Dublin 2010-08-14 +3313924 Newtown Newtown 53.30306 -7.78611 P PPL IE L 23 0 139 Europe/Dublin 2010-08-14 +3313925 Cor Hill Cor Hill 53.31333 -7.80611 T HLL IE L 23 0 155 Europe/Dublin 2010-08-14 +3313926 Corbeg House Corbeg House 53.31583 -7.82278 S HSEC IE L 23 0 134 Europe/Dublin 2010-08-14 +3313927 Creggan Creggan 53.285 -7.86639 P PPL IE L 23 0 62 Europe/Dublin 2010-08-14 +3313929 Endrim Hill Endrim Hill 53.30028 -7.84889 T HLL IE L 23 0 63 Europe/Dublin 2010-08-14 +3313930 Killeshil Killeshil 53.32083 -7.27 T HLL IE L 23 0 146 Europe/Dublin 2010-08-14 +3313931 Croghan Hill Croghan Hill Croghan Hill 53.34667 -7.27639 T HLL IE L 23 0 220 Europe/Dublin 2010-08-14 +3313932 Barnan Barnan 53.32556 -7.32361 P PPL IE L 23 0 175 Europe/Dublin 2010-08-14 +3313934 Kilduff House Kilduff House 53.34 -7.31806 S HSEC IE L 23 0 177 Europe/Dublin 2010-08-14 +3313935 Cloneen Cloneen 53.34694 -7.35 P PPL IE L 23 0 143 Europe/Dublin 2010-08-14 +3313936 Ballyfore Ballyfore 53.36278 -7.28111 T HLL IE L 23 0 185 Europe/Dublin 2010-08-14 +3313937 Lackan Hill Lackan Hill 53.33111 -7.37833 T HLL IE L 23 0 115 Europe/Dublin 2010-08-14 +3313938 Derrygreenagh Derrygreenagh 53.39083 -7.27972 P PPL IE L 23 0 135 Europe/Dublin 2010-08-14 +3313939 Far View House Far View House 53.41194 -7.32444 S HSEC IE L 29 0 134 Europe/Dublin 2010-08-14 +3313940 Rahincuill Rahincuill 53.39167 -7.33111 P PPL IE L 29 0 137 Europe/Dublin 2010-08-14 +3313941 Kilbrennan House Kilbrennan House 53.42 -7.35639 S HSEC IE L 29 0 129 Europe/Dublin 2010-08-14 +3313942 Torr House Torr House 53.37833 -7.35556 S HSEC IE L 29 0 138 Europe/Dublin 2010-08-14 +3313943 Templeoran Templeoran 53.40083 -7.38333 P PPL IE L 29 0 126 Europe/Dublin 2010-08-14 +3313944 Pallasboy Pallasboy 53.36417 -7.39389 P PPL IE L 29 0 115 Europe/Dublin 2010-08-14 +3313945 Judgeville Judgeville 53.34806 -7.38111 P PPL IE L 29 0 120 Europe/Dublin 2010-08-14 +3313946 Cappanrush Cappanrush 53.35361 -7.41917 P PPL IE L 29 0 97 Europe/Dublin 2010-08-14 +3313947 Kiltober Kiltober 53.34444 -7.42778 P PPL IE L 29 0 91 Europe/Dublin 2010-08-14 +3313948 Grange and Kiltober Grange and Kiltober 53.35056 -7.44444 P PPL IE L 29 0 88 Europe/Dublin 2010-08-14 +3313949 Murphy’s Bridge Murphy's Bridge 53.32306 -7.43361 P PPL IE L 23 0 85 Europe/Dublin 2010-08-14 +3313950 Rahugh Rahugh 53.33278 -7.44278 P PPL IE L 29 0 83 Europe/Dublin 2010-08-14 +3313951 Balleek House Balleek House 53.32194 -7.48667 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3313952 Derrygolan Derrygolan 53.32833 -7.47361 P PPL IE L 23 0 79 Europe/Dublin 2010-08-14 +3313953 Frevanagh Frevanagh 53.335 -7.47389 P PPL IE L 29 0 80 Europe/Dublin 2010-08-14 +3313954 Rostalla House Rostalla House 53.34472 -7.47833 S HSEC IE L 29 0 80 Europe/Dublin 2010-08-14 +3313955 Bellmount Bellmount 53.35306 -7.49583 P PPL IE L 29 0 79 Europe/Dublin 2010-08-14 +3313956 Skeahanagh Skeahanagh 53.35972 -7.4875 P PPL IE L 29 0 81 Europe/Dublin 2010-08-14 +3313957 Canal Harbour Canal Harbour 53.36389 -7.4725 P PPLL IE L 29 0 84 Europe/Dublin 2010-08-14 +3313958 Newtownlaw Newtownlaw 53.37361 -7.44639 P PPL IE L 29 0 92 Europe/Dublin 2010-08-14 +3313959 Cumminstown Cumminstown 53.37667 -7.46278 P PPL IE L 29 0 89 Europe/Dublin 2010-08-14 +3313960 Long Hill Long Hill 53.37861 -7.44028 T HLL IE L 29 0 96 Europe/Dublin 2010-08-14 +3313961 Ardmorney Ardmorney 53.38361 -7.46667 P PPL IE L 29 0 88 Europe/Dublin 2010-08-14 +3313962 Coola Bridge Coola Bridge 53.37778 -7.49083 P PPL IE L 29 0 84 Europe/Dublin 2010-08-14 +3313963 Clongowly Clongowly 53.35083 -7.52333 P PPL IE L 29 0 76 Europe/Dublin 2010-08-14 +3313964 Ballard House Ballard House 53.35528 -7.55167 S HSEC IE L 29 0 74 Europe/Dublin 2010-08-14 +3313965 Kilclare House Kilclare House 53.34556 -7.55694 S HSEC IE L 29 0 76 Europe/Dublin 2010-08-14 +3313966 Correagh Cottage Correagh Cottage 53.37667 -7.53917 S HSE IE L 29 0 79 Europe/Dublin 2010-08-14 +3313967 Killavally Killavally 53.38444 -7.41194 P PPL IE L 29 0 109 Europe/Dublin 2010-08-14 +3313968 New Forest New Forest 53.38889 -7.42333 V FRST IE L 29 0 104 Europe/Dublin 2010-08-14 +3313969 Knocknure Knocknure 53.39833 -7.4425 T HLL IE L 29 0 95 Europe/Dublin 2010-08-14 +3313970 Split Hill Split Hill 53.39389 -7.46861 T HLL IE L 29 0 88 Europe/Dublin 2010-08-14 +3313971 Toortisnamore Toortisnamore 53.39861 -7.50944 P PPL IE L 29 0 85 Europe/Dublin 2010-08-14 +3313972 Clonyhague Clonyhague 53.41139 -7.42694 P PPL IE L 29 0 98 Europe/Dublin 2010-08-14 +3313973 Killinlahan Killinlahan 53.41556 -7.47639 P PPL IE L 29 0 93 Europe/Dublin 2010-08-14 +3313974 Gayville Gayville 53.41889 -7.4575 P PPL IE L 29 0 94 Europe/Dublin 2010-08-14 +3313975 Ballynacoska Ballynacoska 53.41972 -7.51194 P PPL IE L 29 0 95 Europe/Dublin 2010-08-14 +3313976 Tullaghanmore Tullaghanmore 53.40778 -7.54306 P PPL IE L 29 0 81 Europe/Dublin 2010-08-14 +3313977 Greenan Greenan 53.39417 -7.52444 P PPL IE L 29 0 85 Europe/Dublin 2010-08-14 +3313978 Meeldrum House Meeldrum House 53.38 -7.53917 S HSEC IE L 29 0 79 Europe/Dublin 2010-08-14 +3313979 Bracca Castle Bracca Castle 53.39 -7.55833 S CSTL IE L 29 0 78 Europe/Dublin 2010-08-14 +3313980 Donore Castle Donore Castle 53.395 -7.55472 S CSTL IE L 29 0 78 Europe/Dublin 2010-08-14 +3313981 Spittaltown Spittaltown 53.40389 -7.57056 P PPL IE L 29 0 76 Europe/Dublin 2010-08-14 +3313982 Gageborough House Gageborough House 53.38917 -7.59917 S HSEC IE L 23 0 75 Europe/Dublin 2010-08-14 +3313983 Springfield House Springfield House 53.39417 -7.62694 S HSEC IE L 23 0 74 Europe/Dublin 2010-08-14 +3313984 Ballinaminton House Ballinaminton House 53.38139 -7.65722 S HSEC IE L 23 0 74 Europe/Dublin 2010-08-14 +3313985 Kilmalady Kilmalady 53.37139 -7.58917 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3313986 Newtown Newtown 53.4 -7.63889 P PPL IE L 23 0 74 Europe/Dublin 2010-08-14 +3313987 Ballynabarna Ballynabarna 53.41417 -7.63361 P PPL IE L 29 0 89 Europe/Dublin 2010-08-14 +3313988 Ballyboughlin House Ballyboughlin House 53.35389 -7.64417 S HSEC IE L 23 0 71 Europe/Dublin 2010-08-14 +3313989 Raheen Raheen 53.35444 -7.62778 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313990 Kilmucklin Kilmucklin 53.33417 -7.58083 P PPL IE L 23 0 72 Europe/Dublin 2010-08-14 +3313991 Tara Tara 53.32667 -7.55417 P PPL IE L 23 0 75 Europe/Dublin 2010-08-14 +3313992 Ashfield Ashfield 53.32444 -7.5775 S EST IE L 23 0 72 Europe/Dublin 2010-08-14 +3313993 Erry Erry 53.32944 -7.62444 P PPL IE L 23 0 71 Europe/Dublin 2010-08-14 +3313994 Bolart Bridge Bolart Bridge 53.34139 -7.64889 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313995 Bohernagrisna Bohernagrisna 53.32139 -7.66833 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313996 Brosna Bridge Brosna Bridge 53.33222 -7.67361 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313997 Bolart House Bolart House 53.35222 -7.64167 S HSEC IE L 23 0 71 Europe/Dublin 2010-08-14 +3313998 Cloghatanny Cloghatanny 53.345 -7.67528 P PPL IE L 23 0 70 Europe/Dublin 2010-08-14 +3313999 Prospect House Prospect House 53.33583 -7.69167 S HSEC IE L 23 0 71 Europe/Dublin 2010-08-14 +3314000 Moorock Lodge Moorock Lodge 53.33972 -7.70944 S HSE IE L 23 0 80 Europe/Dublin 2010-08-14 +3314001 Moorock Moorock 53.3425 -7.7025 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3314002 Hollybrook House Hollybrook House 53.32556 -7.7225 S HSEC IE L 23 0 89 Europe/Dublin 2010-08-14 +3314003 Tinmuck Tinmuck 53.3575 -7.70833 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3314004 Spire Spire 53.35194 -7.69833 T HLL IE L 23 0 74 Europe/Dublin 2010-08-14 +3314005 Gageborough River Gageborough River 53.3425 -7.64417 H STM IE L 23 0 70 Europe/Dublin 2010-08-14 +3314006 Lurgan Lurgan 53.37333 -7.70667 P PPL IE L 23 0 75 Europe/Dublin 2010-08-14 +3314007 Kiltoylan House Kiltoylan House 53.37167 -7.66944 S HSEC IE L 23 0 74 Europe/Dublin 2010-08-14 +3314008 Roughan Hill Roughan Hill 53.36139 -7.66056 T HLL IE L 23 0 72 Europe/Dublin 2010-08-14 +3314009 Moyally House Moyally House 53.385 -7.67528 S HSEC IE L 23 0 77 Europe/Dublin 2010-08-14 +3314010 Bellair Hill Bellair Hill 53.33944 -7.74222 T HLL IE L 23 0 130 Europe/Dublin 2010-08-14 +3314011 Marshbrook Marshbrook 53.39278 -7.68556 P PPL IE L 23 0 77 Europe/Dublin 2010-08-14 +3314012 Gap of the Wood Gap of the Wood 53.39611 -7.65639 T GAP IE L 23 0 76 Europe/Dublin 2010-08-14 +3314013 Ballinderry Lough Ballinderry Lough 53.40167 -7.67611 H LK IE L 29 0 79 Europe/Dublin 2010-08-14 +3314014 Kilcatherina Kilcatherina 53.41611 -7.66944 P PPL IE L 29 0 83 Europe/Dublin 2010-08-14 +3314015 Kilnahinch Kilnahinch 53.40944 -7.71556 P PPL IE L 29 0 78 Europe/Dublin 2010-08-14 +3314016 Shurock House Shurock House 53.41944 -7.73778 S HSEC IE L 29 0 88 Europe/Dublin 2010-08-14 +3314017 Moate Moate An Mota,An Móta,Moate 53.39389 -7.71722 P PPL IE L 29 0 79 Europe/Dublin 2010-08-14 +3314018 Riverpark House Riverpark House 53.38667 -7.72361 S HSEC IE L 29 0 76 Europe/Dublin 2010-08-14 +3314019 Ballynamuddagh House Ballynamuddagh House 53.37333 -7.71972 S HSEC IE L 29 0 76 Europe/Dublin 2010-08-14 +3314020 White Hall White Hall 53.41833 -7.78028 S EST IE L 29 0 82 Europe/Dublin 2010-08-14 +3314021 Bellanalack House Bellanalack House 53.40694 -7.77167 S HSEC IE L 29 0 108 Europe/Dublin 2010-08-14 +3314022 Killachonna Killachonna 53.41111 -7.76194 P PPL IE L 29 0 125 Europe/Dublin 2010-08-14 +3314023 Farnagh Farnagh 53.39167 -7.78056 P PPL IE L 29 0 85 Europe/Dublin 2010-08-14 +3314024 Kileleagh Park Kileleagh Park 53.37583 -7.78389 L PRK IE L 29 0 77 Europe/Dublin 2010-08-14 +3314025 Hull House Hull House 53.3625 -7.77806 S HSEC IE L 29 0 97 Europe/Dublin 2010-08-14 +3314026 Moneen Moneen 53.37056 -7.76194 P PPL IE L 29 0 79 Europe/Dublin 2010-08-14 +3314027 Killogeenaghan Killogeenaghan 53.39333 -7.82972 P PPL IE L 29 0 75 Europe/Dublin 2010-08-14 +3314028 Carn Park Carn Park 53.41667 -7.80722 L PRK IE L 29 0 76 Europe/Dublin 2010-08-14 +3314029 Tullywood House Tullywood House 53.41972 -7.83861 S HSEC IE L 29 0 80 Europe/Dublin 2010-08-14 +3314030 Tullymagawly Tullymagawly 53.41222 -7.83611 P PPL IE L 29 0 76 Europe/Dublin 2010-08-14 +3314031 Bolmarra Bolmarra 53.36083 -7.81861 P PPL IE L 29 0 91 Europe/Dublin 2010-08-14 +3314032 Tubbrit House Tubbrit House 53.38694 -7.85583 S HSEC IE L 29 0 76 Europe/Dublin 2010-08-14 +3314033 Kilaarvan Bridge Kilaarvan Bridge 53.38333 -7.86222 P PPL IE L 29 0 72 Europe/Dublin 2010-08-14 +3314034 Doon Cross Road Doon Cross Road 53.33028 -7.81889 P PPL IE L 23 0 146 Europe/Dublin 2010-08-14 +3314035 Togher Togher 53.32944 -7.81278 P PPL IE L 29 0 153 Europe/Dublin 2010-08-14 +3314036 Eskerbreague Eskerbreague 53.33972 -7.79833 P PPL IE L 23 0 147 Europe/Dublin 2010-08-14 +3314037 The Brook The Brook 53.33944 -7.82583 H STM IE L 23 0 140 Europe/Dublin 2010-08-14 +3314095 Eglish Abbey Eglish Abbey 53.39611 -8.28417 S MSTY IE C 10 0 67 Europe/Dublin 2010-08-14 +3314096 Geashill Station Geashill Station 53.21222 -7.35 S RSTN IE L 23 0 90 Europe/Dublin 2010-08-14 +3314097 Scaroon Scaroon 53.13028 -7.55611 T SLP IE L 23 0 246 Europe/Dublin 2010-08-14 +3314098 Pass of the Plumes Pass of the Plumes 52.98333 -7.26472 T PASS IE L 15 0 152 Europe/Dublin 2010-08-14 +3314099 Ringstown Uplands Ringstown Uplands 53.02306 -7.45583 P PPL IE L 15 0 122 Europe/Dublin 2010-08-14 +3314101 Big River Big River 53.36278 -7.28806 H STM IE L 23 0 184 Europe/Dublin 2010-08-14 +3314102 Yellow River Yellow River 53.37583 -7.27528 H STM IE L 23 0 134 Europe/Dublin 2010-08-14 +3314105 Nutgrove Nutgrove 52.94944 -8.34167 S EST IE M 03 0 55 Europe/Dublin 2010-08-14 +3314106 Furnace Furnace 52.94222 -8.38833 P PPLL IE M 03 0 61 Europe/Dublin 2010-08-14 +3314107 Peak Peak 53.27111 -8.43972 P PPL IE C 10 0 76 Europe/Dublin 2010-08-14 +3314108 Raford River Raford River 53.22778 -8.72972 H STM IE C 10 0 35 Europe/Dublin 2010-08-14 +3314109 Foot’s Islands Foot's Islands 53.02 -8.26389 T ISLS IE L 23 0 55 Europe/Dublin 2010-08-14 +3314110 Sycamorehill Sycamorehill 53.25444 -8.17222 S EST IE C 10 0 72 Europe/Dublin 2010-08-14 +3314111 Corracullin Bog Corracullin Bog 53.35278 -7.74639 H BOG IE 00 0 103 Europe/Dublin 1998-08-18 +3314112 Barkmill Barkmill 53.08972 -7.38111 P PPL IE L 15 0 136 Europe/Dublin 2010-08-14 +3314113 Stream Stream 53.14806 -8.00167 P PPLL IE L 23 0 58 Europe/Dublin 2010-08-14 +3314114 Dolmen Dolmen 52.89972 -7.20778 T RK IE L 15 0 153 Europe/Dublin 2010-08-14 +3314115 Clarbarracum Clarbarracum 52.91833 -7.26472 P PPL IE L 15 0 156 Europe/Dublin 2010-08-14 +3314116 Baunogemeely Baunogemeely 52.92333 -7.20667 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314117 Aghadreen Aghadreen 52.91 -7.17889 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314118 Knocklead Knocklead 52.92111 -7.19556 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314119 Brennanshill Brennanshill 52.92278 -7.17306 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314120 Aghoney Aghoney 52.93083 -7.19889 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314121 Fossy Hill Fossy Hill 52.93833 -7.19194 T MT IE L 15 0 322 152 Europe/Dublin 2010-08-14 +3314122 Garryglass House Garryglass House 52.9375 -7.22111 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314123 Cullenagh Mountain Cullenagh Mountain 52.95194 -7.2625 T MT IE L 15 0 318 152 Europe/Dublin 2010-08-14 +3314124 Raheenduff House Raheenduff House 52.95694 -7.23167 S HSEC IE L 15 0 151 Europe/Dublin 2010-08-14 +3314125 Fossy Fossy 52.94778 -7.18889 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314126 Boley Boley 52.92528 -7.11722 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +3314127 Shanragh Shanragh 52.91083 -7.10194 P PPL IE L 31 0 153 Europe/Dublin 2010-08-14 +3314128 Inch House Inch House 52.93444 -7.0875 S HSEC IE L 15 0 149 Europe/Dublin 2010-08-14 +3314129 Corbally House Corbally House 52.9475 -7.08778 S HSEC IE L 15 0 145 Europe/Dublin 2010-08-14 +3314130 Skehanagh House Skehanagh House 52.92444 -7.06083 S HSEC IE L 15 0 145 Europe/Dublin 2010-08-14 +3314131 Castletown House Castletown House 52.91389 -7.04333 S HSEC IE L 15 0 144 Europe/Dublin 2010-08-14 +3314132 Maidenhead House Maidenhead House 52.90611 -7.04806 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314133 Wolfhill Wolfhill 52.90306 -7.11861 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +3314134 Modubeagh Modubeagh 52.90083 -7.10944 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +3314135 Kilcruise Kilcruise 52.90444 -7.08806 P PPLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314136 Milltown House Milltown House 52.93611 -7.07444 S HSEC IE L 15 0 138 Europe/Dublin 2010-08-14 +3314137 Ballynagarr House Ballynagarr House 52.91694 -6.98889 S HSEC IE L 15 0 70 Europe/Dublin 2010-08-14 +3314138 Tierernane Lodge Tierernane Lodge 52.89944 -6.99833 S HSE IE L 15 0 76 Europe/Dublin 2010-08-14 +3314139 Gurteen House Gurteen House 52.905 -7.01444 S HSEC IE L 15 0 94 Europe/Dublin 2010-08-14 +3314140 Killeen Killeen 52.90361 -6.98472 P PPLL IE L 15 0 70 Europe/Dublin 2010-08-14 +3314141 Cullenagh Cullenagh 52.92944 -6.99917 P PPLL IE L 15 0 76 Europe/Dublin 2010-08-14 +3314142 Tankardstown House Tankardstown House 52.92833 -6.96611 S HSEC IE L 15 0 59 Europe/Dublin 2010-08-14 +3314143 Killabban Killabban 52.91333 -6.975 P PPLL IE L 15 0 61 Europe/Dublin 2010-08-14 +3314144 Tankardstown Bridge Tankardstown Bridge 52.94026 -6.9546 P PPLL IE L 15 0 55 Europe/Dublin 2010-08-14 +3314145 Maganey Bridge Maganey Bridge 52.90901 -6.93512 P PPLL IE L 15 0 52 Europe/Dublin 2010-08-14 +3314146 Ballyfoyle Ballyfoyle 52.91472 -6.94083 P PPL IE L 15 0 52 Europe/Dublin 2010-08-14 +3314147 Kilmorony House Kilmorony House 52.94889 -6.97139 S HSEC IE L 15 0 60 Europe/Dublin 2010-08-14 +3314148 Barrowhouse Cross Roads Barrowhouse Cross Roads 52.95562 -6.9831 P PPLL IE L 15 0 61 Europe/Dublin 2010-08-14 +3314149 Levitstown House Levitstown House 52.92694 -6.94111 S HSEC IE L 12 0 56 Europe/Dublin 2010-08-14 +3314150 Castleroe Cross Roads Castleroe Cross Roads 52.90583 -6.91139 P PPLL IE L 12 0 67 Europe/Dublin 2010-08-14 +3314151 Duke Street Duke Street 52.93417 -6.92889 P PPL IE L 12 0 64 Europe/Dublin 2010-08-14 +3314152 Rosetown Rosetown 52.945 -6.93722 P PPL IE L 12 0 65 Europe/Dublin 2010-08-14 +3314153 Kilkea House Kilkea House 52.93306 -6.89417 S HSEC IE L 12 0 82 Europe/Dublin 2010-08-14 +3314154 Castleroe House Castleroe House 52.92139 -6.90611 S HSEC IE L 12 0 79 Europe/Dublin 2010-08-14 +3314155 Johnstown North Johnstown North 52.90806 -6.89667 P PPL IE L 12 0 72 Europe/Dublin 2010-08-14 +3314156 Kilkea Kilkea 52.94639 -6.89861 P PPL IE L 12 0 80 Europe/Dublin 2010-08-14 +3314157 Abbot’s Cross Roads Abbot's Cross Roads 52.91389 -6.82278 P PPL IE L 12 0 158 Europe/Dublin 2010-08-14 +3314158 Saint John’s House Saint John's House 52.92306 -6.82611 S HSEC IE L 12 0 162 Europe/Dublin 2010-08-14 +3314159 Knockpatrick Hill Knockpatrick Hill 52.90889 -6.79306 T HLL IE L 12 0 154 Europe/Dublin 2010-08-14 +3314160 Bushfield Bushfield 52.92722 -6.88083 S EST IE L 12 0 94 Europe/Dublin 2010-08-14 +3314161 Ballyvass Ballyvass 52.93167 -6.87444 S EST IE L 12 0 108 Europe/Dublin 2010-08-14 +3314162 Marshalstown House Marshalstown House 52.94194 -6.81389 S HSEC IE L 12 0 143 Europe/Dublin 2010-08-14 +3314163 Ballynacarrick Upper Ballynacarrick Upper 52.92722 -6.8125 P PPL IE L 12 0 150 Europe/Dublin 2010-08-14 +3314164 Corballis Hill Corballis Hill 52.92722 -6.78278 T HLL IE L 12 0 181 Europe/Dublin 2010-08-14 +3314165 Hughstown Hughstown 52.94278 -6.76056 P PPLL IE L 12 0 162 Europe/Dublin 2010-08-14 +3314166 Carrigeen House Carrigeen House 52.92944 -6.74972 S HSEC IE L 12 0 153 Europe/Dublin 2010-08-14 +3314167 Carrigeen Cross Roads Carrigeen Cross Roads 52.91611 -6.74917 P PPL IE L 12 0 143 Europe/Dublin 2010-08-14 +3314168 Graney House Graney House 52.90556 -6.76972 S HSEC IE L 12 0 162 Europe/Dublin 2010-08-14 +3314169 Bigstone Bigstone 52.90389 -6.75583 P PPL IE L 12 0 141 Europe/Dublin 2010-08-14 +3314170 Garrettstown Garrettstown 52.89889 -6.72611 P PPL IE L 01 0 127 Europe/Dublin 2010-08-14 +3314171 Broughillstown House Broughillstown House 52.89389 -6.69972 S HSEC IE L 01 0 122 Europe/Dublin 2010-08-14 +3314172 Yellowford Cross Roads Yellowford Cross Roads 52.90611 -6.70056 P PPLL IE 00 0 127 Europe/Dublin 1999-02-24 +3314173 Mountkelly Mountkelly 52.89861 -6.65694 P PPL IE L 01 0 146 Europe/Dublin 2010-08-14 +3314174 Bawnoge Bawnoge 52.92889 -6.71472 P PPL IE L 31 0 140 Europe/Dublin 2010-08-14 +3314175 Stratford Lodge Stratford Lodge 52.94333 -6.72611 S HSE IE L 31 0 182 Europe/Dublin 2010-08-14 +3314176 Clogh Clogh 52.91917 -6.70861 P PPL IE L 31 0 139 Europe/Dublin 2010-08-14 +3314177 Slaney Park Slaney Park 52.91611 -6.67667 S EST IE L 31 0 127 Europe/Dublin 2010-08-14 +3314178 Fortgranite House Fortgranite House 52.90917 -6.6575 S HSEC IE L 31 0 133 Europe/Dublin 2010-08-14 +3314179 Kilmurry Kilmurry 52.91278 -6.67417 L LCTY IE L 31 0 131 Europe/Dublin 2010-08-14 +3314180 Woodfield Woodfield 52.92583 -6.67667 P PPL IE L 31 0 140 Europe/Dublin 2010-08-14 +3314181 Coolinarrig Coolinarrig 52.94722 -6.67444 P PPL IE L 31 0 161 Europe/Dublin 2010-08-14 +3314182 Rathcoran Rathcoran 52.945 -6.70556 P PPL IE L 31 0 151 Europe/Dublin 2010-08-14 +3314183 Rathmagree Rathmagree 52.95 -6.71028 P PPL IE L 31 0 138 Europe/Dublin 2010-08-14 +3314184 Boley Boley 52.93889 -6.68028 P PPL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314185 Kilranelagh House Kilranelagh House 52.94833 -6.64583 S HSEC IE L 31 0 217 Europe/Dublin 2010-08-14 +3314186 Ballinroan House Ballinroan House 52.93611 -6.64417 S HSEC IE L 31 0 183 Europe/Dublin 2010-08-14 +3314187 Talbotstown Talbotstown 52.92722 -6.63361 P PPL IE L 31 0 177 Europe/Dublin 2010-08-14 +3314188 Humewood Castle Humewood Castle 52.91028 -6.61222 S CSTL IE L 31 0 156 Europe/Dublin 2010-08-14 +3314189 Barraderry House Barraderry House 52.89889 -6.62444 S HSEC IE L 31 0 152 Europe/Dublin 2010-08-14 +3314190 Kelshabeg Kelshabeg 52.93306 -6.61167 P PPL IE L 31 0 225 Europe/Dublin 2010-08-14 +3314191 Keadeen Keadeen 52.94306 -6.60028 P PPL IE L 31 0 303 Europe/Dublin 2010-08-14 +3314192 Baunree House Baunree House 52.9675 -7.24472 S HSEC IE L 15 0 149 Europe/Dublin 2010-08-14 +3314193 Cremorgan House Cremorgan House 52.97194 -7.22556 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314194 Cherryhill House Cherryhill House 52.98111 -7.23778 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314195 Esker Lodge Esker Lodge 52.96583 -7.20889 S HSE IE L 15 0 152 Europe/Dublin 2010-08-14 +3314196 Coolnabacca House Coolnabacca House 52.97944 -7.18472 S HSEC IE L 15 0 153 Europe/Dublin 2010-08-14 +3314197 Bauteogue Bauteogue 52.99111 -7.20222 P PPL IE L 15 0 153 Europe/Dublin 2010-08-14 +3314198 Lamberton House Lamberton House 52.99917 -7.23889 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314199 Prospect House Prospect House 52.99861 -7.17917 S HSEC IE L 15 0 153 Europe/Dublin 2010-08-14 +3314200 Raheenanisky Raheenanisky 53.00694 -7.2175 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314201 Raheenduff House Raheenduff House 53.01 -7.18028 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314202 Kilcolnanbane Kilcolnanbane 53.00278 -7.26167 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314203 Hophall Hophall 53.00861 -7.26056 S EST IE L 15 0 151 Europe/Dublin 2010-08-14 +3314204 Grange Grange 53.01556 -7.19111 P PPLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314205 Hewson Hill Hewson Hill 53.01583 -7.22556 T HLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314206 Clopook House Clopook House 52.96472 -7.1425 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314207 Raheennahown House Raheennahown House 52.95444 -7.11222 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314208 Gallows Hill Gallows Hill 52.97778 -7.16167 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314209 Ballycoolan Ballycoolan 52.97556 -7.15861 P PPLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314210 Ballintlea Ballintlea 52.99056 -7.1225 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314211 Cobbler’s Castle Cobbler's Castle 52.99583 -7.11444 S CSTL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314212 Tullomoy House Tullomoy House 52.96528 -7.10778 S HSEC IE L 15 0 148 Europe/Dublin 2010-08-14 +3314213 Ballinteskin Ballinteskin 52.98833 -7.15417 P PPLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314214 Ballycarroll House Ballycarroll House 53.04167 -7.21694 S HSEC IE L 15 0 153 Europe/Dublin 2010-08-14 +3314215 Dunamase House Dunamase House 53.04056 -7.19722 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314216 Ballyclider Ballyclider 53.03389 -7.25722 P PPL IE L 15 0 149 Europe/Dublin 2010-08-14 +3314217 Kilteale Hill Kilteale Hill 53.03222 -7.19667 T HLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314218 Park House Park House 53.025 -7.18139 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314219 Aghnakily Aghnakily 53.02361 -7.22083 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314220 Ballymaddock Ballymaddock 53.03972 -7.1925 P PPL IE L 15 0 152 Europe/Dublin 2010-08-14 +3314221 Buddock Cross Roads Buddock Cross Roads 53.03472 -7.16278 P PPL IE L 15 0 143 Europe/Dublin 2010-08-14 +3314222 Yellowpit Cross Roads Yellowpit Cross Roads 53.04667 -7.15611 P PPL IE L 15 0 133 Europe/Dublin 2010-08-14 +3314223 Inch Cross Roads Inch Cross Roads 53.03889 -7.12083 P PPL IE L 15 0 100 Europe/Dublin 2010-08-14 +3314224 Ballymanis House Ballymanis House 53.0325 -7.08917 S HSEC IE L 15 0 76 Europe/Dublin 2010-08-14 +3314225 Ballyduff House Ballyduff House 53.00694 -7.1075 S HSEC IE L 15 0 127 Europe/Dublin 2010-08-14 +3314226 Bawn Hill Bawn Hill 53.02667 -7.09583 T HLL IE L 15 0 76 Europe/Dublin 2010-08-14 +3314227 Castlereban North Castlereban North 53.03194 -7.07028 P PPL IE L 12 0 70 Europe/Dublin 2010-08-14 +3314228 Ballyroe Ballyroe 53.02056 -7.05222 P PPL IE L 12 0 69 Europe/Dublin 2010-08-14 +3314229 Churchtown Churchtown 53.00583 -7.05083 P PPL IE L 12 0 73 Europe/Dublin 2010-08-14 +3314230 Brackney Lodge Brackney Lodge 53.00222 -7.085 S HSE IE L 12 0 95 Europe/Dublin 2010-08-14 +3314231 Castlemitchell House Castlemitchell House 52.99778 -7.07833 S HSEC IE L 12 0 93 Europe/Dublin 2010-08-14 +3314232 Castlemitchell South Castlemitchell South 52.98889 -7.06778 P PPL IE L 12 0 90 Europe/Dublin 2010-08-14 +3314233 Kilcoo House Kilcoo House 52.98833 -7.03806 S HSEC IE L 12 0 73 Europe/Dublin 2010-08-14 +3314234 Rockfield House Rockfield House 52.99139 -7.00972 S HSEC IE L 12 0 63 Europe/Dublin 2010-08-14 +3314235 Miltown House Miltown House 53.01389 -7.02667 S HSEC IE L 12 0 64 Europe/Dublin 2010-08-14 +3314236 Bert Bridge Bert Bridge 53.01722 -7.01917 P PPLL IE L 12 0 63 Europe/Dublin 2010-08-14 +3314237 Belview House Belview House 53.0075 -7.01583 S HSEC IE L 12 0 62 Europe/Dublin 2010-08-14 +3314238 Cardington House Cardington House 53.00417 -7.005 S HSEC IE L 12 0 62 Europe/Dublin 2010-08-14 +3314239 Southfield House Southfield House 52.97472 -7.08444 S HSEC IE L 15 0 128 Europe/Dublin 2010-08-14 +3314240 Loughlass Loughlass 52.95583 -7.09306 P PPL IE L 15 0 146 Europe/Dublin 2010-08-14 +3314241 Larkfield Larkfield 52.97889 -7.05556 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +3314242 Pimlico Pimlico 52.95611 -7.06111 P PPL IE L 15 0 114 Europe/Dublin 2010-08-14 +3314243 Killyganard Killyganard 52.95694 -7.02722 P PPL IE L 15 0 81 Europe/Dublin 2010-08-14 +3314244 Whitebog Whitebog 52.96222 -7.02278 P PPL IE L 15 0 72 Europe/Dublin 2010-08-14 +3314245 Catto’s Cross Roads Catto's Cross Roads 52.97361 -7.01639 P PPL IE L 12 0 67 Europe/Dublin 2010-08-14 +3314246 Ballyroe Cross Roads Ballyroe Cross Roads 52.95889 -6.93722 P PPL IE L 12 0 69 Europe/Dublin 2010-08-14 +3314247 Heath House Heath House 52.96611 -6.94639 S HSEC IE L 12 0 66 Europe/Dublin 2010-08-14 +3314248 Snugburrow House Snugburrow House 52.96 -6.93083 S HSEC IE L 12 0 73 Europe/Dublin 2010-08-14 +3314249 Dunbrin Dunbrin 52.96889 -6.99417 P PPL IE L 12 0 62 Europe/Dublin 2010-08-14 +3314250 Ardreigh House Ardreigh House 52.97583 -6.97639 S HSEC IE L 12 0 61 Europe/Dublin 2010-08-14 +3314251 Annfield House Annfield House 52.97639 -6.93417 S HSEC IE L 12 0 72 Europe/Dublin 2010-08-14 +3314252 Bray Bray 52.9825 -6.94444 P PPL IE L 12 0 70 Europe/Dublin 2010-08-14 +3314253 Newtownbert Newtownbert 53.03444 -7.00556 P PPL IE L 12 0 70 Europe/Dublin 2010-08-14 +3314254 Oldcourt Oldcourt 53.02917 -6.98528 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314255 Tullygorey Tullygorey 53.01417 -6.95417 P PPL IE L 12 0 74 Europe/Dublin 2010-08-14 +3314256 Russellstown Cross Roads Russellstown Cross Roads 53.00833 -6.94 P PPL IE L 12 0 75 Europe/Dublin 2010-08-14 +3314257 Forest Farm Forest Farm 53.01389 -6.9275 S FRM IE L 12 0 75 Europe/Dublin 2010-08-14 +3314258 Ardmore Ardmore 53.03056 -6.965 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314259 Foxhill Foxhill 52.99278 -6.9425 P PPL IE L 12 0 73 Europe/Dublin 2010-08-14 +3314260 Inch Castle Inch Castle 52.99639 -6.91472 S CSTL IE L 12 0 79 Europe/Dublin 2010-08-14 +3314261 Ballycullane Ballycullane 52.98583 -6.91583 P PPL IE L 12 0 78 Europe/Dublin 2010-08-14 +3314262 Grangerosnolvan Grangerosnolvan 52.96722 -6.89806 P PPL IE L 12 0 81 Europe/Dublin 2010-08-14 +3314263 Moatfield Cross Roads Moatfield Cross Roads 53.01917 -6.90833 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +3314264 Ardscull Ardscull 53.0175 -6.90917 P PPL IE L 12 0 79 Europe/Dublin 2010-08-14 +3314265 Irishtown Irishtown 52.98528 -6.88694 P PPL IE L 12 0 88 Europe/Dublin 2010-08-14 +3314266 Ballindrum Ballindrum 53.01611 -6.88944 P PPL IE L 12 0 96 Europe/Dublin 2010-08-14 +3314267 Skerries House Skerries House 53.04139 -6.93694 S HSEC IE L 12 0 76 Europe/Dublin 2010-08-14 +3314268 Youngstown House Youngstown House 53.0375 -6.90722 S HSEC IE L 12 0 86 Europe/Dublin 2010-08-14 +3314269 Kilmead House Kilmead House 53.03056 -6.89972 S HSEC IE L 12 0 91 Europe/Dublin 2010-08-14 +3314270 Ballyadam Ballyadam 53.03611 -6.89139 P PPL IE L 12 0 100 Europe/Dublin 2010-08-14 +3314271 Fontstown House Fontstown House 53.04389 -6.89333 S HSEC IE L 12 0 94 Europe/Dublin 2010-08-14 +3314272 Oldgrange Oldgrange 53.03778 -6.86611 P PPL IE L 12 0 128 Europe/Dublin 2010-08-14 +3314273 Battiemount Battiemount 53.02778 -6.87083 P PPL IE L 12 0 119 Europe/Dublin 2010-08-14 +3314274 Burtown Farm Burtown Farm 53.00389 -6.87278 S FRM IE L 12 0 108 Europe/Dublin 2010-08-14 +3314275 Narraghmore House Narraghmore House 53.03361 -6.83583 S HSEC IE L 12 0 145 Europe/Dublin 2010-08-14 +3314276 Mullamast House Mullamast House 53.01056 -6.85139 S HSEC IE L 12 0 132 Europe/Dublin 2010-08-14 +3314277 Nine Tree Hill Nine Tree Hill 53.01556 -6.8375 T HLL IE L 12 0 138 Europe/Dublin 2010-08-14 +3314278 Boakefield Boakefield 53.00861 -6.85167 P PPL IE L 12 0 132 Europe/Dublin 2010-08-14 +3314279 Mullamast Cross Roads Mullamast Cross Roads 52.99778 -6.85444 P PPL IE L 12 0 114 Europe/Dublin 2010-08-14 +3314280 Broomfield Cross Roads Broomfield Cross Roads 52.985 -6.85778 P PPL IE L 12 0 106 Europe/Dublin 2010-08-14 +3314281 Burtown House Burtown House 52.99417 -6.87278 S HSEC IE L 12 0 102 Europe/Dublin 2010-08-14 +3314282 Belan Cottage Belan Cottage 52.95556 -6.85 S HSE IE L 12 0 109 Europe/Dublin 2010-08-14 +3314283 Belan Lodge Belan Lodge 52.95389 -6.85028 S HSE IE L 12 0 101 Europe/Dublin 2010-08-14 +3314284 Obelisks Obelisks 52.96472 -6.85167 P PPL IE L 12 0 96 Europe/Dublin 2010-08-14 +3314285 Bolton Castle Bolton Castle 52.9575 -6.82917 S CSTL IE L 12 0 127 Europe/Dublin 2010-08-14 +3314286 Hill View Hill View 52.96611 -6.81222 P PPL IE L 12 0 141 Europe/Dublin 2010-08-14 +3314287 Portersize Cross Roads Portersize Cross Roads 52.99306 -6.80028 P PPL IE L 12 0 148 Europe/Dublin 2010-08-14 +3314288 Crookstown Crookstown 53.01528 -6.81056 P PPL IE L 12 0 135 Europe/Dublin 2010-08-14 +3314289 Blackrath Gate Blackrath Gate 53.03778 -6.78694 P PPL IE L 12 0 139 Europe/Dublin 2010-08-14 +3314290 Ballintaggart House Ballintaggart House 53.03861 -6.755 S HSEC IE L 12 0 140 Europe/Dublin 2010-08-14 +3314291 Rathsallagh Rathsallagh 53.03833 -6.72528 P PPL IE L 31 0 148 Europe/Dublin 2010-08-14 +3314292 Ballylaffin Ballylaffin 53.03194 -6.71306 P PPL IE L 31 0 160 Europe/Dublin 2010-08-14 +3314293 Tynte Park Tynte Park 53.02861 -6.67944 S EST IE L 31 0 187 Europe/Dublin 2010-08-14 +3314294 Griffinstown House Griffinstown House 53.01444 -6.72194 S HSEC IE L 31 0 155 Europe/Dublin 2010-08-14 +3314295 Grange Con House Grange Con House 53.00556 -6.74944 S HSEC IE L 31 0 151 Europe/Dublin 2010-08-14 +3314296 Byrnes Cross Roads Byrnes Cross Roads 53.02083 -6.75111 P PPL IE L 31 0 145 Europe/Dublin 2010-08-14 +3314297 Knockadoo Knockadoo 53.01583 -6.77444 T HLL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314298 Rottenhill Rottenhill 53.02389 -6.71389 P PPL IE L 31 0 161 Europe/Dublin 2010-08-14 +3314299 Byrneshill Byrneshill 53.01361 -6.70111 P PPL IE L 31 0 164 Europe/Dublin 2010-08-14 +3314300 Freynestown Freynestown 53.00861 -6.69333 P PPL IE L 31 0 167 Europe/Dublin 2010-08-14 +3314301 Ballyhook Ballyhook 52.99806 -6.71417 P PPL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314302 Ballynure House Ballynure House 53.00167 -6.75917 S HSEC IE L 31 0 153 Europe/Dublin 2010-08-14 +3314303 Knocknamuck Knocknamuck 52.99111 -6.78417 P PPL IE L 31 0 154 Europe/Dublin 2010-08-14 +3314304 Rathtoole Rathtoole 52.98444 -6.78444 P PPL IE L 31 0 154 Europe/Dublin 2010-08-14 +3314305 Knockarigg House Knockarigg House 52.98528 -6.73833 S HSEC IE L 31 0 165 Europe/Dublin 2010-08-14 +3314306 Lowtown Lowtown 52.97444 -6.73583 P PPL IE L 31 0 269 Europe/Dublin 2010-08-14 +3314307 Goldenfort House Goldenfort House 52.97556 -6.70861 S HSEC IE L 31 0 152 Europe/Dublin 2010-08-14 +3314308 Moneymore Moneymore 52.97528 -6.76694 P PPL IE L 31 0 150 Europe/Dublin 2010-08-14 +3314309 Tinoranhill Cross Roads Tinoranhill Cross Roads 52.95806 -6.74972 P PPL IE L 31 0 233 Europe/Dublin 2010-08-14 +3314310 Monatore Monatore 52.95528 -6.75917 P PPL IE L 31 0 169 Europe/Dublin 2010-08-14 +3314311 Rampere Cross Roads Rampere Cross Roads 52.96528 -6.72306 P PPL IE L 31 0 163 Europe/Dublin 2010-08-14 +3314312 Commonstown House Commonstown House 52.96889 -6.79361 S HSEC IE L 12 0 154 Europe/Dublin 2010-08-14 +3314313 Lackareagh Lackareagh 52.96528 -6.79528 P PPL IE L 12 0 152 Europe/Dublin 2010-08-14 +3314314 Grange Con Grange Con 52.99861 -6.75111 P PPL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314315 Eldon Bridge Eldon Bridge 52.955 -6.7025 P PPLL IE L 31 0 146 Europe/Dublin 2010-08-14 +3314316 Tuckmill Tuckmill 52.96194 -6.69722 P PPL IE L 31 0 148 Europe/Dublin 2010-08-14 +3314317 Saundersgrove House Saundersgrove House 52.97222 -6.67972 S HSEC IE L 31 0 156 Europe/Dublin 2010-08-14 +3314318 Spinans Cross Roads Spinans Cross Roads 52.95194 -6.65778 P PPL IE L 31 0 204 Europe/Dublin 2010-08-14 +3314319 Eadstown Lodge Eadstown Lodge 52.97083 -6.66083 S HSE IE L 31 0 167 Europe/Dublin 2010-08-14 +3314320 Waterloo Bridge Waterloo Bridge 52.98111 -6.66056 P PPLL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314321 Castleruddery House Castleruddery House 52.98889 -6.655 S HSEC IE L 31 0 150 Europe/Dublin 2010-08-14 +3314322 Knockaderry Cross Roads Knockaderry Cross Roads 52.9725 -6.61167 P PPL IE L 31 0 229 Europe/Dublin 2010-08-14 +3314323 Spinans Hill Spinans Hill 52.96472 -6.63472 T MT IE L 31 0 410 289 Europe/Dublin 2010-08-14 +3314324 Mount Slaney Mount Slaney 52.97778 -6.64222 P PPL IE L 31 0 160 Europe/Dublin 2010-08-14 +3314325 Toberbeg Toberbeg 53.03694 -6.67361 P PPL IE L 31 0 199 Europe/Dublin 2010-08-14 +3314326 Raheen Raheen 53.01778 -6.66889 P PPL IE L 31 0 180 Europe/Dublin 2010-08-14 +3314327 Donaghmore Donaghmore 52.99556 -6.63944 P PPL IE L 31 0 170 Europe/Dublin 2010-08-14 +3314328 Davidstown Davidstown 52.98722 -6.62389 P PPL IE L 31 0 179 Europe/Dublin 2010-08-14 +3314329 Kelsha Bridge Kelsha Bridge 52.98861 -6.605 P PPL IE L 31 0 205 Europe/Dublin 2010-08-14 +3314330 Knockandarragh Knockandarragh 53.00306 -6.605 P PPL IE L 31 0 237 Europe/Dublin 2010-08-14 +3314331 Fauna Fauna 52.99583 -6.61056 L LCTY IE L 31 0 221 Europe/Dublin 2010-08-14 +3314332 Carriggower River Carriggower River 52.98222 -6.65917 H STM IE L 31 0 152 Europe/Dublin 2010-08-14 +3314333 Intack Intack 53.02694 -6.60639 P PPL IE L 31 0 288 Europe/Dublin 2010-08-14 +3314334 Browns Beck Brook Browns Beck Brook 53.00417 -6.63889 H STM IE L 31 0 180 Europe/Dublin 2010-08-14 +3314335 Ballytoole Ballytoole 52.96306 -6.59444 P PPL IE L 31 0 294 Europe/Dublin 2010-08-14 +3314336 Killybeg Killybeg 52.95278 -6.60167 P PPL IE L 31 0 303 Europe/Dublin 2010-08-14 +3314337 Fuer River Fuer River 52.91917 -7.03111 H STM IE L 15 0 114 Europe/Dublin 2010-08-14 +3314338 Crooked River Crooked River 52.9575 -7.14111 H STM IE L 15 0 152 Europe/Dublin 2010-08-14 +3314339 Ballydavis Ballydavis 53.04722 -7.24556 P PPL IE L 15 0 150 Europe/Dublin 2010-08-14 +3314340 The Heath House The Heath House 53.05639 -7.21194 S HSEC IE L 15 0 152 Europe/Dublin 2010-08-14 +3314341 The Great Heath of Maryborough The Great Heath of Maryborough 53.06222 -7.22778 P PPL IE L 15 0 148 Europe/Dublin 2010-08-14 +3314342 Killane House Killane House 53.06417 -7.17917 S HSEC IE L 15 0 144 Europe/Dublin 2010-08-14 +3314343 Ballythomas Ballythomas 53.05083 -7.17861 P PPL IE L 15 0 149 Europe/Dublin 2010-08-14 +3314344 Ballyduff Ballyduff 53.06167 -7.16139 P PPL IE L 15 0 133 Europe/Dublin 2010-08-14 +3314345 Garrymaddock Garrymaddock 53.06889 -7.16528 P PPL IE L 15 0 128 Europe/Dublin 2010-08-14 +3314346 Coolbanagher Coolbanagher 53.08361 -7.24389 P PPL IE L 15 0 132 Europe/Dublin 2010-08-14 +3314347 New Inn Cross Roads New Inn Cross Roads 53.08833 -7.18861 P PPL IE L 15 0 128 Europe/Dublin 2010-08-14 +3314348 Rossmore Cross Roads Rossmore Cross Roads 53.07528 -7.13972 P PPL IE L 15 0 101 Europe/Dublin 2010-08-14 +3314349 Kennel Cross Roads Kennel Cross Roads 53.10222 -7.22139 P PPL IE L 15 0 122 Europe/Dublin 2010-08-14 +3314350 Carn Bridge Carn Bridge 53.10694 -7.24 P PPLL IE L 15 0 122 Europe/Dublin 2010-08-14 +3314351 Emo Court Emo Court 53.10694 -7.20167 S EST IE L 15 0 120 Europe/Dublin 2010-08-14 +3314352 Lauragh Lauragh 53.11222 -7.25889 S EST IE L 15 0 112 Europe/Dublin 2010-08-14 +3314353 Garryvacum House Garryvacum House 53.11806 -7.17167 S HSEC IE L 15 0 102 Europe/Dublin 2010-08-14 +3314354 Kilbride Kilbride 53.135 -7.22028 P PPL IE L 15 0 96 Europe/Dublin 2010-08-14 +3314355 Ballycrossal Ballycrossal 53.12194 -7.23361 P PPL IE L 15 0 108 Europe/Dublin 2010-08-14 +3314356 Rathdaire House Rathdaire House 53.10139 -7.13028 S RUIN IE L 15 0 88 Europe/Dublin 2010-08-14 +3314357 Rath House Rath House 53.1 -7.10694 S HSEC IE L 15 0 78 Europe/Dublin 2010-08-14 +3314358 Jamestown House Jamestown House 53.1125 -7.10083 S HSEC IE L 15 0 77 Europe/Dublin 2010-08-14 +3314359 Sallyford Cross Roads Sallyford Cross Roads 53.09222 -7.09222 P PPL IE L 15 0 77 Europe/Dublin 2010-08-14 +3314360 Coolroe Castle Coolroe Castle 53.08056 -7.11278 S CSTL IE L 15 0 80 Europe/Dublin 2010-08-14 +3314361 Doolough House Doolough House 53.13639 -7.19361 S HSEC IE L 15 0 96 Europe/Dublin 2010-08-14 +3314362 Huntington Huntington 53.12778 -7.16806 P PPL IE L 15 0 97 Europe/Dublin 2010-08-14 +3314363 Tirhogar Cross Roads Tirhogar Cross Roads 53.13583 -7.17667 P PPL IE L 15 0 94 Europe/Dublin 2010-08-14 +3314364 Killenard Killenard 53.13306 -7.14861 P PPL IE L 15 0 89 Europe/Dublin 2010-08-14 +3314365 Glenmalir Glenmalir 53.11417 -7.14333 P PPLL IE L 15 0 95 Europe/Dublin 2010-08-14 +3314366 Jamestown Jamestown 53.11833 -7.11444 P PPL IE L 15 0 77 Europe/Dublin 2010-08-14 +3314367 Sallyypark Sallyypark 53.12667 -7.11889 S EST IE L 15 0 78 Europe/Dublin 2010-08-14 +3314368 Rosnamullane Rosnamullane 53.06417 -7.11306 P PPL IE L 15 0 81 Europe/Dublin 2010-08-14 +3314369 Raheenaniska Raheenaniska 53.05083 -7.12528 P PPL IE L 15 0 101 Europe/Dublin 2010-08-14 +3314370 Gratton Lodge Gratton Lodge 53.04889 -7.09194 S HSE IE L 15 0 72 Europe/Dublin 2010-08-14 +3314371 Courtwood Bridge Courtwood Bridge 53.08361 -7.07917 P PPLL IE L 15 0 72 Europe/Dublin 2010-08-14 +3314372 Dunrally Bridge Dunrally Bridge 53.06306 -7.05722 P PPLL IE L 15 0 66 Europe/Dublin 2010-08-14 +3314373 Fisherstown House Fisherstown House 53.09694 -7.07833 S HSEC IE L 15 0 73 Europe/Dublin 2010-08-14 +3314374 Belan Belan 53.10028 -7.07417 P PPL IE L 15 0 69 Europe/Dublin 2010-08-14 +3314375 Derryvullagh Island Derryvullagh Island 53.05111 -6.98083 T HMCK IE L 12 0 72 75 Europe/Dublin 2010-08-14 +3314376 Boherbaun Lower Boherbaun Lower 53.06611 -6.99806 P PPL IE L 12 0 72 Europe/Dublin 2010-08-14 +3314377 Cloney Cloney 53.06444 -7.04833 P PPL IE L 12 0 66 Europe/Dublin 2010-08-14 +3314378 Loughabor Loughabor 53.05333 -6.9375 P PPL IE L 12 0 77 Europe/Dublin 2010-08-14 +3314379 Rathconnellwood Rathconnellwood 53.06361 -6.96083 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314380 Cloneybeg Cloneybeg 53.06722 -6.98694 P PPL IE L 12 0 73 Europe/Dublin 2010-08-14 +3314381 Boherbaun River Boherbaun River 53.06806 -7.05083 H STM IE L 12 0 67 Europe/Dublin 2010-08-14 +3314382 Cherrymills House Cherrymills House 53.08556 -6.985 S HSEC IE L 12 0 73 Europe/Dublin 2010-08-14 +3314383 Clarey House Clarey House 53.07694 -6.95333 S HSEC IE L 12 0 76 Europe/Dublin 2010-08-14 +3314384 Mylerstown Cross Roads Mylerstown Cross Roads 53.08361 -6.94583 P PPL IE L 12 0 77 Europe/Dublin 2010-08-14 +3314385 Ashgrove House Ashgrove House 53.08167 -7.02972 S HSEC IE L 12 0 70 Europe/Dublin 2010-08-14 +3314386 Richardstown Richardstown 53.09333 -7.01889 P PPL IE L 12 0 74 Europe/Dublin 2010-08-14 +3314387 Riverstown House Riverstown House 53.09778 -7.05361 S HSEC IE L 12 0 70 Europe/Dublin 2010-08-14 +3314388 Kildangan Kildangan 53.10889 -7.02361 P PPL IE L 12 0 77 Europe/Dublin 2010-08-14 +3314389 Duneany Cross Roads Duneany Cross Roads 53.11139 -6.98056 P PPL IE L 12 0 77 Europe/Dublin 2010-08-14 +3314390 Duneany House Duneany House 53.11889 -6.96611 S HSEC IE L 12 0 82 Europe/Dublin 2010-08-14 +3314391 Oghill Bridge Oghill Bridge 53.12167 -7.00889 P PPL IE L 12 0 78 Europe/Dublin 2010-08-14 +3314392 Stramillian Stramillian 53.11861 -7.04472 P PPL IE L 12 0 79 Europe/Dublin 2010-08-14 +3314393 Portmurraghan Island Portmurraghan Island 53.12417 -7.07333 T ISL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314394 Lughil Lughil 53.11028 -7.06167 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314395 Clonegath Cross Roads Clonegath Cross Roads 53.12028 -7.04333 P PPL IE L 12 0 79 Europe/Dublin 2010-08-14 +3314396 Cloncarlin House Cloncarlin House 53.13611 -7.02917 S HSEC IE L 12 0 79 Europe/Dublin 2010-08-14 +3314397 Moore Abbey Moore Abbey 53.13361 -7.06222 S MSTY IE L 12 0 76 Europe/Dublin 2010-08-14 +3314398 Grange Farm Grange Farm 53.11917 -7.065 S FRM IE L 12 0 78 Europe/Dublin 2010-08-14 +3314399 Clogheen Clogheen 53.13417 -7.09417 P PPL IE L 12 0 77 Europe/Dublin 2010-08-14 +3314400 Kingsbog Kingsbog 53.12806 -6.9475 P PPL IE L 12 0 89 Europe/Dublin 2010-08-14 +3314401 Graigue Graigue 53.10667 -6.94611 P PPL IE L 12 0 81 Europe/Dublin 2010-08-14 +3314402 Grange Beg Grange Beg 53.1375 -6.98028 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +3314403 Maddenstown House Maddenstown House 53.13361 -6.88278 S HSEC IE L 12 0 123 Europe/Dublin 2010-08-14 +3314404 Bohergoy House Bohergoy House 53.11611 -6.88111 S HSEC IE L 12 0 113 Europe/Dublin 2010-08-14 +3314405 Maddenstown South Maddenstown South 53.10889 -6.91222 P PPL IE L 12 0 94 Europe/Dublin 2010-08-14 +3314406 Splithill Cross Roads Splithill Cross Roads 53.09667 -6.91806 P PPL IE L 12 0 87 Europe/Dublin 2010-08-14 +3314407 Nurney House Nurney House 53.09111 -6.93667 S HSEC IE L 12 0 80 Europe/Dublin 2010-08-14 +3314408 Boley Cross Roads Boley Cross Roads 53.06389 -6.92056 P PPL IE L 12 0 82 Europe/Dublin 2010-08-14 +3314409 Kilboggan Cross Roads Kilboggan Cross Roads 53.07944 -6.90083 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314410 Kilrush House Kilrush House 53.06861 -6.87694 S HSEC IE L 12 0 106 Europe/Dublin 2010-08-14 +3314411 Kilrush Kilrush 53.05917 -6.86778 P PPL IE L 12 0 114 Europe/Dublin 2010-08-14 +3314412 Kilrush Lodge Kilrush Lodge 53.07472 -6.84528 S HSE IE L 12 0 131 Europe/Dublin 2010-08-14 +3314413 Ballynagussaun Ballynagussaun 53.05306 -6.86361 P PPL IE L 12 0 122 Europe/Dublin 2010-08-14 +3314414 Eaglehill House Eaglehill House 53.09556 -6.88056 S RUIN IE L 12 0 109 Europe/Dublin 2010-08-14 +3314415 Mullamoy Cottage Mullamoy Cottage 53.08778 -6.85917 S HSE IE L 12 0 119 Europe/Dublin 2010-08-14 +3314416 Suncroft Suncroft 53.10639 -6.88639 P PPL IE L 12 0 105 Europe/Dublin 2010-08-14 +3314417 Crockaun Crockaun 53.09639 -6.83417 P PPL IE L 12 0 140 Europe/Dublin 2010-08-14 +3314418 Martinstown Cross Roads Martinstown Cross Roads 53.10417 -6.83167 P PPL IE L 12 0 146 Europe/Dublin 2010-08-14 +3314419 Brownstown Cross Roads Brownstown Cross Roads 53.12583 -6.8475 P PPL IE L 12 0 138 Europe/Dublin 2010-08-14 +3314420 Ballyfair House Ballyfair House 53.12 -6.83833 S HSEC IE L 12 0 142 Europe/Dublin 2010-08-14 +3314421 Martinstown House Martinstown House 53.10583 -6.82472 S HSEC IE L 12 0 150 Europe/Dublin 2010-08-14 +3314422 Davidstown Davidstown 53.07472 -6.83361 P PPL IE L 12 0 139 Europe/Dublin 2010-08-14 +3314423 Newpark Newpark 53.11 -6.81222 P PPL IE L 12 0 153 Europe/Dublin 2010-08-14 +3314424 Lark Lodge Lark Lodge 53.13194 -6.84917 S HSE IE L 12 0 138 Europe/Dublin 2010-08-14 +3314425 Bullhill Bullhill 53.06778 -6.82556 P PPLL IE L 12 0 146 Europe/Dublin 2010-08-14 +3314426 Lipstown Lipstown 53.05056 -6.80861 P PPL IE L 12 0 145 Europe/Dublin 2010-08-14 +3314427 Ballymount Ballymount 53.0525 -6.80806 P PPL IE L 12 0 145 Europe/Dublin 2010-08-14 +3314428 Ballybarney Ballybarney 53.05944 -6.82444 P PPL IE L 12 0 149 Europe/Dublin 2010-08-14 +3314429 Deal Grove Deal Grove 53.06 -6.79167 S EST IE L 12 0 150 Europe/Dublin 2010-08-14 +3314430 Sunnyhill House Sunnyhill House 53.12361 -6.76778 S HSEC IE L 12 0 145 Europe/Dublin 2010-08-14 +3314431 Jockey Hall Jockey Hall 53.13222 -6.81833 S HSEC IE L 12 0 150 Europe/Dublin 2010-08-14 +3314432 Brownstown House Brownstown House 53.13528 -6.83 S HSEC IE L 12 0 146 Europe/Dublin 2010-08-14 +3314433 Thornton Lodge Thornton Lodge 53.13417 -6.79389 S HSE IE L 12 0 154 Europe/Dublin 2010-08-14 +3314434 Kilgowan Kilgowan 53.06056 -6.7675 P PPL IE L 12 0 152 Europe/Dublin 2010-08-14 +3314435 Milltown Milltown 53.05472 -6.71972 P PPL IE L 31 0 147 Europe/Dublin 2010-08-14 +3314436 Logatrina Logatrina 53.06528 -6.71361 P PPL IE L 31 0 149 Europe/Dublin 2010-08-14 +3314437 Thornton Thornton 53.07556 -6.735 P PPL IE L 12 0 152 Europe/Dublin 2010-08-14 +3314438 Killinane House Killinane House 53.07861 -6.74139 S HSEC IE L 12 0 152 Europe/Dublin 2010-08-14 +3314439 Gormanstown House Gormanstown House 53.09167 -6.7275 S HSEC IE L 12 0 151 Europe/Dublin 2010-08-14 +3314440 Kilgowan Kilgowan 53.0825 -6.76889 P PPLL IE L 12 0 152 Europe/Dublin 2010-08-14 +3314441 Fair View Fair View 53.08194 -6.71361 S EST IE L 12 0 152 Europe/Dublin 2010-08-14 +3314442 Gilltown House Gilltown House 53.10944 -6.72111 S HSEC IE L 12 0 151 Europe/Dublin 2010-08-14 +3314443 Moorhill House Moorhill House 53.11389 -6.68 S HSEC IE L 12 0 146 Europe/Dublin 2010-08-14 +3314444 Boleybeg Cross Roads Boleybeg Cross Roads 53.10778 -6.65139 P PPL IE L 12 0 161 Europe/Dublin 2010-08-14 +3314445 Cannycourt House Cannycourt House 53.10111 -6.67056 S HSEC IE L 12 0 157 Europe/Dublin 2010-08-14 +3314446 Brannockstown Brannockstown 53.12139 -6.68972 P PPL IE L 12 0 133 Europe/Dublin 2010-08-14 +3314447 Coldwells Coldwells 53.09167 -6.66472 S EST IE L 12 0 166 Europe/Dublin 2010-08-14 +3314448 Brewel Brewel 53.05167 -6.75 P PPL IE L 12 0 150 Europe/Dublin 2010-08-14 +3314449 Newabbey House Newabbey House 53.12528 -6.73194 S HSEC IE L 12 0 121 Europe/Dublin 2010-08-14 +3314450 Annfield House Annfield House 53.12528 -6.67028 S HSEC IE L 12 0 128 Europe/Dublin 2010-08-14 +3314451 Ardmode House Ardmode House 53.12361 -6.64861 S HSEC IE L 12 0 151 Europe/Dublin 2010-08-14 +3314452 Grangebeg House Grangebeg House 53.08222 -6.69889 S HSEC IE L 12 0 152 Europe/Dublin 2010-08-14 +3314453 Cross Keys Cross Keys 53.04889 -6.71639 P PPL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314454 Ardellis House Ardellis House 53.04694 -6.92333 S HSEC IE L 12 0 79 Europe/Dublin 2010-08-14 +3314455 Boherboy Cottage Boherboy Cottage 53.04306 -6.68833 S HSE IE L 31 0 178 Europe/Dublin 2010-08-14 +3314456 Brewershill House Brewershill House 53.05 -6.66833 S HSEC IE L 31 0 201 Europe/Dublin 2010-08-14 +3314457 Friarhill Friarhill 53.06194 -6.66972 T HLL IE L 31 0 191 Europe/Dublin 2010-08-14 +3314458 Merginstown House Merginstown House 53.03917 -6.64444 S HSEC IE L 31 0 222 Europe/Dublin 2010-08-14 +3314459 Tober Cross Roads Tober Cross Roads 53.07556 -6.67389 P PPL IE L 31 0 174 Europe/Dublin 2010-08-14 +3314460 Crehelp Crehelp 53.06556 -6.65139 P PPL IE L 31 0 211 Europe/Dublin 2010-08-14 +3314461 Athgreany Athgreany 53.07111 -6.63056 P PPL IE L 31 0 247 Europe/Dublin 2010-08-14 +3314462 Lemonstown Cross Roads Lemonstown Cross Roads 53.08361 -6.63528 P PPL IE L 01 0 203 Europe/Dublin 2010-08-14 +3314463 Church Mountain Church Mountain 53.05194 -6.58806 T MT IE L 31 0 545 306 Europe/Dublin 2010-08-14 +3314464 Kilbaylet Kilbaylet 53.04194 -6.61056 P PPL IE L 31 0 288 Europe/Dublin 2010-08-14 +3314465 Woodenboley Woodenboley 53.05778 -6.6025 P PPL IE L 01 0 302 Europe/Dublin 2010-08-14 +3314466 Hollywood Glen Hollywood Glen 53.05667 -6.61278 T VAL IE L 31 0 291 Europe/Dublin 2010-08-14 +3314467 Slievecorragh Slievecorragh 53.07833 -6.58778 T MT IE L 31 0 420 304 Europe/Dublin 2010-08-14 +3314468 Grove House Grove House 53.09889 -6.60806 S HSEC IE L 01 0 257 Europe/Dublin 2010-08-14 +3314469 Whiteleas House Whiteleas House 53.10583 -6.61778 S HSEC IE L 12 0 197 Europe/Dublin 2010-08-14 +3314470 Bishopland Ballymore Road Bishopland Ballymore Road 53.12639 -6.61556 P PPL IE L 01 0 151 Europe/Dublin 2010-08-14 +3314471 Kilnahown Bridge Kilnahown Bridge 53.14472 -7.23861 P PPLL IE L 23 0 90 Europe/Dublin 2010-08-14 +3314472 Lansdowne House Lansdowne House 53.14722 -7.2275 S HSEC IE L 15 0 91 Europe/Dublin 2010-08-14 +3314473 Ballymorris Ballymorris 53.14222 -7.22222 P PPL IE L 15 0 91 Europe/Dublin 2010-08-14 +3314474 Annamoe Annamoe 53.1525 -7.255 P PPL IE L 23 0 91 Europe/Dublin 2010-08-14 +3314475 Kilkeeran Lodge Kilkeeran Lodge 53.1675 -7.24611 S HSEC IE L 23 0 90 Europe/Dublin 2010-08-14 +3314476 Kilmullen House Kilmullen House 53.14111 -7.12861 S HSEC IE L 15 0 79 Europe/Dublin 2010-08-14 +3314477 Wheelahans Bridge Wheelahans Bridge 53.14806 -7.11 P PPLL IE L 15 0 76 Europe/Dublin 2010-08-14 +3314478 Bergins Bridge Bergins Bridge 53.15028 -7.13 P PPLL IE L 15 0 76 Europe/Dublin 2010-08-14 +3314479 Baylough Bridge Baylough Bridge 53.15861 -7.09694 P PPLL IE L 15 0 73 Europe/Dublin 2010-08-14 +3314480 Inchacooly Inchacooly 53.16528 -7.09778 P PPL IE L 15 0 73 Europe/Dublin 2010-08-14 +3314481 Derrylea Bog Derrylea Bog 53.18306 -7.16 H BOG IE 00 0 80 Europe/Dublin 1999-02-24 +3314482 Derry Lea House Derry Lea House 53.17528 -7.1125 S HSEC IE L 12 0 75 Europe/Dublin 2010-08-14 +3314483 McCartney’s Bridge McCartney's Bridge 53.1625 -7.05972 P PPL IE L 12 0 74 Europe/Dublin 2010-08-14 +3314484 Clondoolusk Clondoolusk 53.16611 -7.14056 P PPL IE L 12 0 77 Europe/Dublin 2010-08-14 +3314485 Kilcappagh Kilcappagh 53.18556 -7.24694 P PPL IE L 23 0 90 Europe/Dublin 2010-08-14 +3314486 Derryounce Derryounce 53.18306 -7.19944 P PPL IE L 23 0 84 Europe/Dublin 2010-08-14 +3314487 Derryvilla Derryvilla 53.17806 -7.18028 P PPL IE L 23 0 82 Europe/Dublin 2010-08-14 +3314488 Monavane House Monavane House 53.19556 -7.23028 S HSEC IE L 23 0 88 Europe/Dublin 2010-08-14 +3314489 Enaghan House Enaghan House 53.21028 -7.2225 S HSEC IE L 23 0 86 Europe/Dublin 2010-08-14 +3314490 New Row New Row 53.22139 -7.21944 P PPL IE L 23 0 85 Europe/Dublin 2010-08-14 +3314491 Walsh Island Walsh Island 53.22889 -7.22806 T HMCK IE L 23 0 85 Europe/Dublin 2010-08-14 +3314492 Clonsast House Clonsast House 53.2225 -7.14278 S HSEC IE L 23 0 79 Europe/Dublin 2010-08-14 +3314493 Millgrove House Millgrove House 53.21722 -7.10778 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3314494 Nahana Nahana 53.22472 -7.11944 P PPL IE L 23 0 76 Europe/Dublin 2010-08-14 +3314495 Chevychase House Chevychase House 53.20472 -7.12083 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3314496 Kilcloncarkry House Kilcloncarkry House 53.21972 -7.05972 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3314497 Wilson’s Bridge Wilson's Bridge 53.20306 -7.02556 P PPLL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314498 Clonbrin House Clonbrin House 53.1975 -7.02639 S HSEC IE L 23 0 75 Europe/Dublin 2010-08-14 +3314499 Clogheen Clogheen 53.18083 -7.07333 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314500 Umeras House Umeras House 53.18361 -7.04194 S HSEC IE L 12 0 76 Europe/Dublin 2010-08-14 +3314501 Clonmoyle House Clonmoyle House 53.19139 -7.01722 S HSEC IE L 12 0 75 Europe/Dublin 2010-08-14 +3314502 O’Neill’s Cross Roads O'Neill's Cross Roads 53.18389 -6.98444 P PPL IE L 12 0 107 Europe/Dublin 2010-08-14 +3314503 Thomastown Cross Roads Thomastown Cross Roads 53.1975 -6.95306 P PPL IE L 12 0 158 Europe/Dublin 2010-08-14 +3314504 Knavinstown House Knavinstown House 53.17472 -6.97639 S HSEC IE L 12 0 116 Europe/Dublin 2010-08-14 +3314505 Tullylost Cross Roads Tullylost Cross Roads 53.20639 -7.00083 P PPL IE L 12 0 83 Europe/Dublin 2010-08-14 +3314506 Springfield Springfield 53.19833 -7.00333 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +3314507 Quinsborough Quinsborough 53.16694 -7.05944 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314508 Ballykelly Cross Roads Ballykelly Cross Roads 53.16278 -7.04028 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314509 Spencer Bridge Spencer Bridge 53.21722 -7.00222 P PPLL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314510 Rathangan House Rathangan House 53.21278 -6.98917 S HSEC IE L 12 0 90 Europe/Dublin 2010-08-14 +3314511 Kilmoney South Kilmoney South 53.21194 -6.94861 P PPL IE L 12 0 158 Europe/Dublin 2010-08-14 +3314512 Dunmurry House Dunmurry House 53.19056 -6.93056 S HSEC IE L 12 0 153 Europe/Dublin 2010-08-14 +3314513 Red Hills Red Hills 53.18 -6.95778 P PPLL IE L 12 0 152 Europe/Dublin 2010-08-14 +3314514 Dunmurry Hill Dunmurry Hill 53.19861 -6.93611 T HLL IE L 12 0 234 161 Europe/Dublin 2010-08-14 +3314515 Hybla House Hybla House 53.15139 -7.03806 S HSEC IE L 12 0 76 Europe/Dublin 2010-08-14 +3314516 Newtown Cross Roads Newtown Cross Roads 53.145 -6.92056 P PPL IE L 12 0 100 Europe/Dublin 2010-08-14 +3314517 Rahilla Glebe Rahilla Glebe 53.18083 -6.945 P PPL IE L 12 0 152 Europe/Dublin 2010-08-14 +3314518 Lackagh Lackagh 53.1625 -7.01 P PPL IE L 12 0 75 Europe/Dublin 2010-08-14 +3314519 Grey Abbey Grey Abbey 53.15167 -6.91389 S MSTY IE L 12 0 116 Europe/Dublin 2010-08-14 +3314520 Rathbride Cross Roads Rathbride Cross Roads 53.18111 -6.88722 P PPL IE L 12 0 146 Europe/Dublin 2010-08-14 +3314521 Rathbride House Rathbride House 53.18528 -6.88472 S HSEC IE L 12 0 151 Europe/Dublin 2010-08-14 +3314522 Mountjoy Lodge Mountjoy Lodge 53.16333 -6.88472 S HSE IE L 12 0 135 Europe/Dublin 2010-08-14 +3314523 Curragh House Curragh House 53.15333 -6.89056 S HSEC IE L 12 0 129 Europe/Dublin 2010-08-14 +3314524 Gallaher’s Cross Roads Gallaher's Cross Roads 53.17667 -6.91778 P PPL IE L 12 0 142 Europe/Dublin 2010-08-14 +3314525 Rossmore Lodge Rossmore Lodge 53.18194 -6.89806 S HSE IE L 12 0 145 Europe/Dublin 2010-08-14 +3314526 Osborne Lodge Osborne Lodge 53.1775 -6.87389 S HSE IE L 12 0 148 Europe/Dublin 2010-08-14 +3314527 Erindale Erindale 53.19333 -6.90528 P PPL IE L 12 0 151 Europe/Dublin 2010-08-14 +3314528 Curragh View Curragh View 53.15917 -6.88444 P PPL IE L 12 0 135 Europe/Dublin 2010-08-14 +3314529 French House French House 53.14611 -6.86833 S HSEC IE L 12 0 132 Europe/Dublin 2010-08-14 +3314530 Grange Hill Grange Hill 53.20639 -6.91694 T HLL IE L 12 0 152 Europe/Dublin 2010-08-14 +3314531 Bull Ring Cross Roads Bull Ring Cross Roads 53.21667 -6.90278 P PPL IE L 12 0 145 Europe/Dublin 2010-08-14 +3314532 Washington Washington 53.21167 -6.92333 P PPL IE L 12 0 151 Europe/Dublin 2010-08-14 +3314533 Newington House Newington House 53.21528 -6.89278 S HSEC IE L 12 0 153 Europe/Dublin 2010-08-14 +3314534 Herbert Lodge Herbert Lodge 53.15861 -6.85889 S HSE IE L 12 0 141 Europe/Dublin 2010-08-14 +3314535 White Hall Cottage White Hall Cottage 53.14083 -6.85528 S HSE IE L 12 0 136 Europe/Dublin 2010-08-14 +3314536 Curragh Camp Curragh Camp 53.14722 -6.83639 P PPL IE L 12 0 143 Europe/Dublin 2010-08-14 +3314537 Boston Hill Boston Hill 53.22444 -6.93139 T HLL IE L 12 0 145 Europe/Dublin 2010-08-14 +3314538 Christianstown House Christianstown House 53.21861 -6.89694 S HSEC IE L 12 0 148 Europe/Dublin 2010-08-14 +3314539 Baronstown House Baronstown House 53.21722 -6.85028 S HSEC IE L 12 0 149 Europe/Dublin 2010-08-14 +3314540 Tankardsgarden Tankardsgarden 53.21083 -6.81583 P PPL IE L 12 0 121 Europe/Dublin 2010-08-14 +3314541 Rosberry House Rosberry House 53.20361 -6.82778 S HSEC IE L 12 0 133 Europe/Dublin 2010-08-14 +3314542 Milltown Milltown 53.20333 -6.86306 P PPL IE L 12 0 155 Europe/Dublin 2010-08-14 +3314543 Moorfield House Moorfield House 53.17194 -6.80611 S HSEC IE L 12 0 120 Europe/Dublin 2010-08-14 +3314544 Oldconnell House Oldconnell House 53.19194 -6.79333 S HSEC IE L 12 0 106 Europe/Dublin 2010-08-14 +3314545 Athgarvan Lodge Athgarvan Lodge 53.14556 -6.78806 S HSE IE L 12 0 141 Europe/Dublin 2010-08-14 +3314546 Kinneagh House Kinneagh House 53.14472 -6.77472 S HSEC IE L 12 0 120 Europe/Dublin 2010-08-14 +3314547 Rosetown Rosetown 53.15722 -6.76694 P PPL IE L 12 0 111 Europe/Dublin 2010-08-14 +3314548 Greenhills Greenhills 53.14417 -6.75611 L LCTY IE L 12 0 112 Europe/Dublin 2010-08-14 +3314549 Mount Crawley Mount Crawley 53.16194 -6.75944 S EST IE L 12 0 111 Europe/Dublin 2010-08-14 +3314550 Connellmore Connellmore 53.17167 -6.7725 P PPL IE L 12 0 110 Europe/Dublin 2010-08-14 +3314551 Herbertstown House Herbertstown House 53.1625 -6.72583 S HSEC IE L 12 0 114 Europe/Dublin 2010-08-14 +3314552 Walterstown Walterstown 53.16 -6.72556 P PPL IE L 12 0 114 Europe/Dublin 2010-08-14 +3314553 Brownstown Cottage Brownstown Cottage 53.14444 -6.72056 S HSE IE L 12 0 115 Europe/Dublin 2010-08-14 +3314554 Corbally Harbour Corbally Harbour 53.1675 -6.74056 H HBR IE L 12 0 112 Europe/Dublin 2010-08-14 +3314555 Two Mile House Two Mile House 53.16944 -6.70528 S HSEC IE L 12 0 114 Europe/Dublin 2010-08-14 +3314556 Mylerstown Cross Roads Mylerstown Cross Roads 53.17333 -6.68944 P PPL IE L 12 0 115 Europe/Dublin 2010-08-14 +3314557 Newland Newland 53.17889 -6.71167 P PPL IE L 12 0 112 Europe/Dublin 2010-08-14 +3314558 Mooney’s Bridge Mooney's Bridge 53.17611 -6.74389 L LCTY IE L 12 0 110 Europe/Dublin 2010-08-14 +3314559 Clownings Clownings 53.1825 -6.7525 P PPL IE L 12 0 109 Europe/Dublin 2010-08-14 +3314560 Lewistown House Lewistown House 53.18944 -6.7375 S HSEC IE L 12 0 109 Europe/Dublin 2010-08-14 +3314561 Newtown House Newtown House 53.19417 -6.70111 S HSEC IE L 12 0 106 Europe/Dublin 2010-08-14 +3314562 Connaught Bridge Connaught Bridge 53.20056 -6.70861 P PPLL IE L 12 0 104 Europe/Dublin 2010-08-14 +3314563 Ladytown House Ladytown House 53.20167 -6.73556 S HSEC IE L 12 0 103 Europe/Dublin 2010-08-14 +3314564 Newhall Cross Roads Newhall Cross Roads 53.21333 -6.70861 P PPL IE L 12 0 101 Europe/Dublin 2010-08-14 +3314565 Barrettstown House Barrettstown House 53.2125 -6.76389 S HSEC IE L 12 0 102 Europe/Dublin 2010-08-14 +3314566 Morristown Lattin Morristown Lattin 53.22111 -6.75083 P PPLL IE L 12 0 101 Europe/Dublin 2010-08-14 +3314567 Victoria Bridge Victoria Bridge 53.22056 -6.74306 P PPLL IE L 12 0 100 Europe/Dublin 2010-08-14 +3314568 Limerick Bridge Limerick Bridge 53.21528 -6.70444 P PPL IE L 12 0 100 Europe/Dublin 2010-08-14 +3314569 Morristown Upper Morristown Upper 53.20389 -6.77861 P PPL IE L 12 0 105 Europe/Dublin 2010-08-14 +3314570 Harristown House Harristown House 53.13333 -6.6925 S HSEC IE L 12 0 120 Europe/Dublin 2010-08-14 +3314571 Stonebrook Lodge Stonebrook Lodge 53.13333 -6.66639 S HSE IE L 12 0 132 Europe/Dublin 2010-08-14 +3314572 Harristown Harristown 53.14361 -6.67306 P PPL IE L 12 0 124 Europe/Dublin 2010-08-14 +3314573 Stonebrook Stonebrook 53.1375 -6.64694 P PPL IE L 12 0 135 Europe/Dublin 2010-08-14 +3314574 Mullaboden Mullaboden 53.14361 -6.63472 P PPL IE L 12 0 141 Europe/Dublin 2010-08-14 +3314575 Seasons House Seasons House 53.14056 -6.60472 S HSEC IE L 12 0 166 Europe/Dublin 2010-08-14 +3314576 Barretstown Castle Barretstown Castle 53.15278 -6.59944 S CSTL IE L 12 0 223 Europe/Dublin 2010-08-14 +3314577 Wellbank House Wellbank House 53.155 -6.65833 S HSEC IE L 12 0 130 Europe/Dublin 2010-08-14 +3314578 Wellfield House Wellfield House 53.14722 -6.62722 S HSEC IE L 12 0 146 Europe/Dublin 2010-08-14 +3314579 Tipperkevin Tipperkevin 53.16722 -6.61028 P PPL IE L 12 0 153 Europe/Dublin 2010-08-14 +3314580 Bawnogues House Bawnogues House 53.1725 -6.62694 S HSEC IE L 12 0 140 Europe/Dublin 2010-08-14 +3314581 Mullacash House Mullacash House 53.17583 -6.645 S HSEC IE L 12 0 133 Europe/Dublin 2010-08-14 +3314582 Dunshane Dunshane 53.15389 -6.69611 P PPL IE L 12 0 117 Europe/Dublin 2010-08-14 +3314583 Mullacash Hill Mullacash Hill 53.16639 -6.68139 T HLL IE L 12 0 119 Europe/Dublin 2010-08-14 +3314584 Sillagh Sillagh 53.16667 -6.63722 P PPL IE L 12 0 137 Europe/Dublin 2010-08-14 +3314585 Gowran Grange Gowran Grange 53.18056 -6.65056 P PPL IE L 12 0 128 Europe/Dublin 2010-08-14 +3314586 Watch House Cross Roads Watch House Cross Roads 53.18639 -6.64444 P PPL IE L 12 0 135 Europe/Dublin 2010-08-14 +3314587 Newtown Newtown 53.17611 -6.59 P PPL IE L 12 0 241 Europe/Dublin 2010-08-14 +3314588 Glenmore Glenmore 53.15944 -6.58139 P PPL IE L 12 0 301 Europe/Dublin 2010-08-14 +3314589 Punchestown Punchestown 53.18667 -6.63611 P PPL IE L 12 0 142 Europe/Dublin 2010-08-14 +3314590 Bluebell House Bluebell House 53.19861 -6.67194 S HSEC IE L 12 0 114 Europe/Dublin 2010-08-14 +3314591 Craddockstown House Craddockstown House 53.20111 -6.64639 S HSEC IE L 12 0 134 Europe/Dublin 2010-08-14 +3314592 Oakfield Oakfield 53.20972 -6.645 P PPL IE L 12 0 131 Europe/Dublin 2010-08-14 +3314593 Tipper House Tipper House 53.21278 -6.62583 S HSEC IE L 12 0 146 Europe/Dublin 2010-08-14 +3314594 Gallows Glen Gallows Glen 53.22278 -6.64444 P PPLL IE L 12 0 126 Europe/Dublin 2010-08-14 +3314595 Forenaghts House Forenaghts House 53.22056 -6.61083 S HSEC IE L 12 0 150 Europe/Dublin 2010-08-14 +3314596 Eadestown House Eadestown House 53.19889 -6.59694 S HSEC IE L 12 0 154 Europe/Dublin 2010-08-14 +3314597 Daffy Lodge Daffy Lodge 53.20806 -6.57944 S HSE IE L 12 0 164 Europe/Dublin 2010-08-14 +3314598 Athgarrett House Athgarrett House 53.18944 -6.585 S HSEC IE L 12 0 203 Europe/Dublin 2010-08-14 +3314599 Ballintemple House Ballintemple House 53.2475 -7.22417 S HSEC IE L 23 0 84 Europe/Dublin 2010-08-14 +3314600 Walshisland Walshisland 53.25194 -7.22056 P PPL IE L 23 0 84 Europe/Dublin 2010-08-14 +3314601 Ballynakill Ballynakill 53.25528 -7.25694 P PPL IE L 23 0 85 Europe/Dublin 2010-08-14 +3314602 Ballaghassaan Ballaghassaan 53.26167 -7.19444 P PPL IE L 23 0 82 Europe/Dublin 2010-08-14 +3314603 Brackagh Brackagh 53.26528 -7.215 P PPL IE L 23 0 83 Europe/Dublin 2010-08-14 +3314604 Derrylesk Derrylesk 53.27111 -7.24528 P PPL IE L 23 0 84 Europe/Dublin 2010-08-14 +3314605 Wouge River Wouge River 53.28028 -7.16194 H STM IE L 23 0 80 Europe/Dublin 2010-08-14 +3314606 Derryrobinson Derryrobinson 53.27639 -7.18556 P PPL IE L 23 0 81 Europe/Dublin 2010-08-14 +3314607 Clongarret House Clongarret House 53.26806 -7.13917 S HSEC IE L 23 0 79 Europe/Dublin 2010-08-14 +3314608 Woodenbridge Woodenbridge 53.2775 -7.1425 P PPL IE L 23 0 81 Europe/Dublin 2010-08-14 +3314609 Clonarrow Clonarrow Clonarrow,Riverlyons 53.28528 -7.25694 P PPL IE IE L 23 0 84 Europe/Dublin 2010-08-14 +3314610 Drumcaw Drumcaw Drumcaw,Mountlucas 53.29417 -7.22528 T HLL IE IE L 23 0 83 Europe/Dublin 2010-08-14 +3314611 Killoneen Killoneen 53.29972 -7.255 P PPL IE L 23 0 84 Europe/Dublin 2010-08-14 +3314612 Springfield House Springfield House 53.30389 -7.21111 S HSEC IE L 23 0 91 Europe/Dublin 2010-08-14 +3314613 Rathvilla Rathvilla 53.29667 -7.14611 P PPL IE L 23 0 89 Europe/Dublin 2010-08-14 +3314614 Cloncreen Cloncreen 53.27 -7.1225 P PPL IE L 23 0 79 Europe/Dublin 2010-08-14 +3314615 Cloncreen Bridge Cloncreen Bridge 53.265 -7.09694 S BDG IE L 23 0 77 Europe/Dublin 2010-08-14 +3314616 Philipstown River Philipstown River 53.26361 -7.0975 H STM IE L 23 0 77 Europe/Dublin 2010-08-14 +3314617 Clonshannon House Clonshannon House 53.23306 -7.11278 S HSEC IE L 23 0 76 Europe/Dublin 2010-08-14 +3314618 Clonad House Clonad House 53.25194 -7.12556 S HSEC IE L 23 0 78 Europe/Dublin 2010-08-14 +3314619 Violet Bank Violet Bank 53.22944 -7.08778 S EST IE L 23 0 76 Europe/Dublin 2010-08-14 +3314620 Aghameelick Aghameelick 53.24528 -7.10444 S EST IE L 23 0 76 Europe/Dublin 2010-08-14 +3314621 Clonroosk Clonroosk 53.25 -7.06806 P PPL IE L 23 0 77 Europe/Dublin 2010-08-14 +3314622 Clonbrown Clonbrown 53.25583 -7.06556 P PPL IE L 23 0 78 Europe/Dublin 2010-08-14 +3314623 Ballydermont House Ballydermont House 53.27583 -7.07667 S HSEC IE L 23 0 82 Europe/Dublin 2010-08-14 +3314624 Cloncant House Cloncant House 53.28278 -7.07 S HSEC IE L 23 0 82 Europe/Dublin 2010-08-14 +3314625 Kilcumber Bridge Kilcumber Bridge 53.29 -7.08667 P PPLL IE L 23 0 84 Europe/Dublin 2010-08-14 +3314626 Doden River Doden River 53.2975 -7.16778 H STM IE L 23 0 85 Europe/Dublin 2010-08-14 +3314627 Rathlumber Rathlumber 53.30778 -7.16028 P PPL IE L 23 0 92 Europe/Dublin 2010-08-14 +3314628 Esker Stream Esker Stream 53.30472 -7.20389 H STM IE L 23 0 90 Europe/Dublin 2010-08-14 +3314629 Ballyhugh Ballyhugh 53.30972 -7.23444 P PPL IE L 23 0 100 Europe/Dublin 2010-08-14 +3314630 Newtown Lodge Newtown Lodge 53.315 -7.19917 S HSE IE L 23 0 98 Europe/Dublin 2010-08-14 +3314631 Clonmeen House Clonmeen House 53.31944 -7.18722 S HSEC IE L 23 0 105 Europe/Dublin 2010-08-14 +3314632 Ballymoran House Ballymoran House 53.31611 -7.13778 S HSEC IE L 23 0 98 Europe/Dublin 2010-08-14 +3314633 Ballykilleen Cross Roads Ballykilleen Cross Roads 53.31639 -7.1075 P PPL IE L 23 0 96 Europe/Dublin 2010-08-14 +3314634 Ballykilleen Hill Ballykilleen Hill 53.30889 -7.10083 T HLL IE L 23 0 110 96 Europe/Dublin 2010-08-14 +3314635 Ballykilleen Ballykilleen 53.29778 -7.09222 P PPL IE L 23 0 88 Europe/Dublin 2010-08-14 +3314636 Shean Shean 53.30889 -7.07528 P PPL IE L 23 0 94 Europe/Dublin 2010-08-14 +3314637 Shane Valley Shane Valley 53.30222 -7.06583 P PPLL IE L 23 0 89 Europe/Dublin 2010-08-14 +3314638 Codd Codd 53.30528 -7.04111 P PPL IE L 23 0 85 Europe/Dublin 2010-08-14 +3314639 Cushaling Cushaling 53.28972 -7.04583 P PPL IE L 23 0 82 Europe/Dublin 2010-08-14 +3314640 Cushaling Bridge Cushaling Bridge 53.28056 -7.02611 P PPLL IE 00 0 77 Europe/Dublin 1999-02-24 +3314641 Black River Black River 53.28028 -7.02667 H STM IE L 12 0 77 Europe/Dublin 2010-08-14 +3314642 Derrygarran Bridge Derrygarran Bridge 53.23611 -7.07333 P PPLL IE 00 0 77 Europe/Dublin 1999-02-24 +3314643 Kilnabooley Kilnabooley 53.23333 -7.04889 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314644 Cooleland Cross Roads Cooleland Cross Roads 53.23667 -7.04806 P PPLL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314645 Woodlands Woodlands 53.23417 -7.03083 P PPL IE L 12 0 75 Europe/Dublin 2010-08-14 +3314646 Newtown Newtown 53.23278 -6.99833 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314647 Killinthomas House Killinthomas House 53.24306 -7.00444 S HSEC IE L 12 0 74 Europe/Dublin 2010-08-14 +3314648 Killinthomas Killinthomas 53.25861 -7.01472 P PPL IE L 12 0 73 Europe/Dublin 2010-08-14 +3314649 Crabtree River Crabtree River 53.28361 -7.01667 H STM IE 00 0 77 Europe/Dublin 1999-02-24 +3314650 Shanavoola Shanavoola 53.27917 -6.99556 P PPL IE L 12 0 71 Europe/Dublin 2010-08-14 +3314651 Lullybeg Lullybeg 53.26472 -6.96889 P PPL IE L 12 0 72 Europe/Dublin 2010-08-14 +3314652 Agar Bridge Agar Bridge 53.24222 -6.94972 P PPLL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314653 Drinnanstown House Drinnanstown House 53.2275 -6.94056 S HSEC IE L 12 0 125 Europe/Dublin 2010-08-14 +3314654 Cloncurry Cloncurry 53.23694 -6.94889 P PPL IE L 12 0 93 Europe/Dublin 2010-08-14 +3314655 Cappanargid Cappanargid 53.24917 -6.95389 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314656 Cloncumber Lodge Cloncumber Lodge 53.25139 -6.92056 S HSE IE L 12 0 81 Europe/Dublin 2010-08-14 +3314657 Drumsru Drumsru 53.26 -6.93389 P PPL IE L 12 0 75 Europe/Dublin 2010-08-14 +3314658 Cloncumber Cloncumber 53.25417 -6.90056 P PPL IE L 12 0 92 Europe/Dublin 2010-08-14 +3314659 Huband Bridge Huband Bridge 53.26556 -6.86361 P PPLL IE L 12 0 97 Europe/Dublin 2010-08-14 +3314660 Derrymullen Derrymullen 53.27861 -6.89056 P PPL IE L 12 0 80 Europe/Dublin 2010-08-14 +3314661 Shee Bridge Shee Bridge 53.28417 -6.88083 P PPLL IE L 12 0 81 Europe/Dublin 2010-08-14 +3314662 Ford Bridge Ford Bridge 53.27556 -6.85944 P PPLL IE L 12 0 82 Europe/Dublin 2010-08-14 +3314663 Newpark House Newpark House 53.24806 -6.86639 S HSEC IE L 12 0 125 Europe/Dublin 2010-08-14 +3314664 Hill of Allen Hill of Allen 53.23056 -6.86639 T HLL IE L 12 0 206 149 Europe/Dublin 2010-08-14 +3314665 Bostoncommon Bostoncommon 53.23306 -6.95194 P PPL IE L 12 0 108 Europe/Dublin 2010-08-14 +3314666 Pluckerstown Bridge Pluckerstown Bridge 53.235 -6.88306 P PPLL IE L 12 0 137 Europe/Dublin 2010-08-14 +3314667 Allen Allen 53.24056 -6.87 P PPL IE L 12 0 140 Europe/Dublin 2010-08-14 +3314668 Dunbyrne Dunbyrne 53.2275 -6.85806 P PPL IE L 12 0 144 Europe/Dublin 2010-08-14 +3314669 Littletown Littletown 53.27 -6.84833 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314670 Russellstown Russellstown 53.23778 -6.83861 P PPL IE L 12 0 127 Europe/Dublin 2010-08-14 +3314671 Rathernan Rathernan 53.24083 -6.81889 P PPL IE L 12 0 120 Europe/Dublin 2010-08-14 +3314672 Clongorey Clongorey 53.22611 -6.80889 P PPL IE L 12 0 119 Europe/Dublin 2010-08-14 +3314673 Coolaght Coolaght 53.25083 -6.81806 P PPL IE L 12 0 107 Europe/Dublin 2010-08-14 +3314674 Annsborough House Annsborough House 53.265 -6.82389 S HSEC IE L 12 0 100 Europe/Dublin 2010-08-14 +3314675 Allenwood Cross Roads Allenwood Cross Roads 53.28639 -6.82778 P PPL IE L 12 0 85 Europe/Dublin 2010-08-14 +3314676 Brockagh Brockagh 53.28889 -6.84417 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +3314677 Newtowndonore Newtowndonore 53.2575 -6.79667 P PPL IE L 12 0 105 Europe/Dublin 2010-08-14 +3314678 Oldtowndonore Oldtowndonore 53.24861 -6.78083 P PPL IE L 12 0 105 Europe/Dublin 2010-08-14 +3314679 Derreens Derreens 53.23333 -6.77972 P PPL IE L 12 0 106 Europe/Dublin 2010-08-14 +3314680 Mondella Park Mondella Park 53.26 -6.75861 L PRK IE L 12 0 101 Europe/Dublin 2010-08-14 +3314681 Downings House Downings House 53.28389 -6.77306 S HSEC IE L 12 0 97 Europe/Dublin 2010-08-14 +3314682 Bonvoge Bridge Bonvoge Bridge 53.27361 -6.78306 P PPLL IE L 12 0 100 Europe/Dublin 2010-08-14 +3314683 Goatstown Goatstown 53.27389 -6.76139 P PPL IE L 12 0 100 Europe/Dublin 2010-08-14 +3314684 Killybegs House Killybegs House 53.27778 -6.73611 S HSEC IE L 12 0 96 Europe/Dublin 2010-08-14 +3314685 The Hutters Cross Roads The Hutters Cross Roads 53.28528 -6.75 P PPL IE L 12 0 96 Europe/Dublin 2010-08-14 +3314686 Scrawtown Scrawtown 53.29806 -6.74722 P PPL IE L 12 0 96 Europe/Dublin 2010-08-14 +3314687 Lambenstown House Lambenstown House 53.26694 -6.73333 S HSEC IE L 12 0 95 Europe/Dublin 2010-08-14 +3314688 Belaghstown Cross Roads Belaghstown Cross Roads 53.31167 -6.72028 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314689 Coolearagh Coolearagh 53.29917 -6.845 P PPL IE L 12 0 85 Europe/Dublin 2010-08-14 +3314690 Corduff House Corduff House 53.30917 -6.815 S HSEC IE L 12 0 90 Europe/Dublin 2010-08-14 +3314691 Ballynafagh House Ballynafagh House 53.31639 -6.79111 S HSEC IE L 12 0 92 Europe/Dublin 2010-08-14 +3314692 Hamilton’s Bridge Hamilton's Bridge 53.30056 -6.92528 P PPL IE L 12 0 73 Europe/Dublin 2010-08-14 +3314693 Grouse Lodge Grouse Lodge 53.295 -6.86472 S HSE IE L 12 0 83 Europe/Dublin 2010-08-14 +3314694 Kilpatrick House Kilpatrick House 53.31639 -6.91861 S HSEC IE L 12 0 74 Europe/Dublin 2010-08-14 +3314695 Derrybrennan Derrybrennan 53.29722 -6.97139 P PPL IE L 12 0 71 Europe/Dublin 2010-08-14 +3314696 Glashabaun River Glashabaun River 53.30306 -6.97917 H STM IE L 12 0 72 Europe/Dublin 2010-08-14 +3314697 Abbeylough River Abbeylough River 53.31194 -6.96972 H STM IE L 12 0 73 Europe/Dublin 2010-08-14 +3314698 Ticknevin Bridge Ticknevin Bridge 53.31861 -6.95917 P PPLL IE L 12 0 74 Europe/Dublin 2010-08-14 +3314699 Cushaling River Cushaling River 53.28889 -7.04972 H STM IE L 23 0 82 Europe/Dublin 1999-02-24 +3314700 Coolcarrigan House Coolcarrigan House 53.32 -6.85167 S HSEC IE L 12 0 86 Europe/Dublin 2010-08-14 +3314701 Hodgestown Hodgestown 53.32222 -6.81861 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314702 Mainham Mainham 53.31417 -6.71944 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314703 Digby Bridge Digby Bridge 53.26167 -6.7075 P PPLL IE L 12 0 90 Europe/Dublin 2010-08-14 +3314704 Sandymount House Sandymount House 53.26194 -6.705 S HSEC IE L 12 0 90 Europe/Dublin 2010-08-14 +3314705 Castlekeely House Castlekeely House 53.24806 -6.7175 S HSEC IE L 12 0 94 Europe/Dublin 2010-08-14 +3314706 Millicent House Millicent House 53.27111 -6.67889 S HSEC IE L 12 0 86 Europe/Dublin 2010-08-14 +3314707 Firmount Cross Roads Firmount Cross Roads 53.28972 -6.71694 P PPLL IE L 12 0 92 Europe/Dublin 2010-08-14 +3314708 Millicent Cross Roads Millicent Cross Roads 53.27889 -6.6975 P PPL IE L 12 0 86 Europe/Dublin 2010-08-14 +3314709 Alexandra Bridge Alexandra Bridge 53.2875 -6.68222 P PPLL IE L 12 0 82 Europe/Dublin 2010-08-14 +3314710 Blackhall Blackhall 53.28139 -6.67361 S EST IE L 12 0 83 Europe/Dublin 2010-08-14 +3314711 Yeomanstown House Yeomanstown House 53.22639 -6.73361 S HSEC IE L 12 0 98 Europe/Dublin 2010-08-14 +3314712 Halverstown House Halverstown House 53.22389 -6.71444 S HSEC IE L 12 0 98 Europe/Dublin 2010-08-14 +3314713 Carragh Bridge Carragh Bridge 53.23139 -6.7225 P PPLL IE L 12 0 96 Europe/Dublin 2010-08-14 +3314714 Castlekeely Castlekeely 53.2425 -6.70083 S CSTL IE L 12 0 92 Europe/Dublin 2010-08-14 +3314715 Oldtown House Oldtown House 53.22722 -6.67222 S HSEC IE L 12 0 101 Europe/Dublin 2010-08-14 +3314716 Osberstown House Osberstown House 53.23806 -6.6875 S HSEC IE L 12 0 94 Europe/Dublin 2010-08-14 +3314717 Sherlockstown Sherlockstown 53.26167 -6.65167 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314718 Kerdiffstown House Kerdiffstown House 53.24667 -6.63444 S HSEC IE L 12 0 112 Europe/Dublin 2010-08-14 +3314719 Maryfield Maryfield 53.23972 -6.65611 P PPL IE L 12 0 107 Europe/Dublin 2010-08-14 +3314720 Roseborough Roseborough 53.23667 -6.6575 P PPL IE L 12 0 107 Europe/Dublin 2010-08-14 +3314721 Newtown House Newtown House 53.24111 -6.61417 S HSEC IE L 12 0 140 Europe/Dublin 2010-08-14 +3314722 Devonshire Bridge Devonshire Bridge 53.26639 -6.62111 P PPLL IE L 12 0 104 Europe/Dublin 2010-08-14 +3314723 Painestown House Painestown House 53.26139 -6.59167 S HSEC IE L 12 0 116 Europe/Dublin 2010-08-14 +3314724 Kill Kill An Chill,Kill 53.25139 -6.59167 P PPL IE L 12 0 128 Europe/Dublin 2010-08-14 +3314725 Kilwarden Kilwarden 53.25111 -6.56806 P PPL IE L 12 0 135 Europe/Dublin 2010-08-14 +3314726 Ponsonby Bridge Ponsonby Bridge 53.28278 -6.59806 P PPLL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314727 Painestown River Painestown River 53.28778 -6.61861 H STM IE L 12 0 79 Europe/Dublin 2010-08-14 +3314728 Morell River Morell River 53.30528 -6.61167 H STM IE L 12 0 68 Europe/Dublin 2010-08-14 +3314729 Turnings House Turnings House 53.28806 -6.62167 S HSEC IE L 12 0 79 Europe/Dublin 2010-08-14 +3314730 Baronrath Baronrath 53.28333 -6.60111 P PPL IE L 12 0 90 Europe/Dublin 2010-08-14 +3314731 Bodenstown Bodenstown Bodenstown 53.2675 -6.67167 P PPL IE L 12 0 86 Europe/Dublin 2010-08-14 +3314732 Ladycastle Ladycastle 53.29583 -6.64361 S EST IE L 12 0 76 Europe/Dublin 2010-08-14 +3314733 Whitechurch Whitechurch 53.29972 -6.61944 P PPL IE L 12 0 73 Europe/Dublin 2010-08-14 +3314734 Stratton House Stratton House 53.31056 -6.62917 S HSEC IE L 12 0 72 Europe/Dublin 2010-08-14 +3314735 Irishtown House Irishtown House 53.30889 -6.64556 S HSEC IE L 12 0 73 Europe/Dublin 2010-08-14 +3314736 Henry Bridge Henry Bridge 53.29694 -6.58694 P PPLL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314737 Coole Coole 53.32972 -7.25361 P PPL IE L 23 0 152 Europe/Dublin 2010-08-14 +3314738 Toberdaly Bridge Toberdaly Bridge 53.33139 -7.21361 P PPLL IE L 23 0 119 Europe/Dublin 2010-08-14 +3314739 Rhode Bridge Rhode Bridge 53.33556 -7.20028 P PPLL IE L 23 0 123 Europe/Dublin 2010-08-14 +3314740 Barrysbrook Barrysbrook 53.34417 -7.24778 P PPL IE L 23 0 162 Europe/Dublin 2010-08-14 +3314741 Togher Togher 53.33861 -7.2425 P PPL IE L 23 0 155 Europe/Dublin 2010-08-14 +3314742 Toberdaly House Toberdaly House 53.33861 -7.22056 S HSEC IE L 23 0 131 Europe/Dublin 2010-08-14 +3314743 Rathcobican Rathcobican 53.3425 -7.19861 P PPL IE L 23 0 126 Europe/Dublin 2010-08-14 +3314744 Killure Killure 53.34889 -7.21556 P PPL IE L 23 0 133 Europe/Dublin 2010-08-14 +3314745 Lough Nashade Lough Nashade 53.35917 -7.24 H LK IE L 23 0 152 Europe/Dublin 2010-08-14 +3314746 Clonin House Clonin House 53.35806 -7.20694 S HSEC IE L 23 0 132 Europe/Dublin 2010-08-14 +3314747 Coolcor Coolcor 53.3675 -7.21389 P PPL IE L 23 0 135 Europe/Dublin 2010-08-14 +3314748 Coolville House Coolville House 53.3625 -7.19833 S HSEC IE L 23 0 131 Europe/Dublin 2010-08-14 +3314749 Rathmoyle House Rathmoyle House 53.35083 -7.18917 S HSEC IE L 23 0 127 Europe/Dublin 2010-08-14 +3314750 Clonlack Clonlack 53.3325 -7.19222 P PPL IE L 23 0 114 Europe/Dublin 2010-08-14 +3314751 Leitrim House Leitrim House 53.3225 -7.15389 S HSEC IE L 23 0 104 Europe/Dublin 2010-08-14 +3314752 Lumville House Lumville House 53.32833 -7.14389 S HSEC IE L 23 0 109 Europe/Dublin 2010-08-14 +3314753 Clarkvilla House Clarkvilla House 53.32667 -7.12639 S HSEC IE L 23 0 107 Europe/Dublin 2010-08-14 +3314754 Ballyfore Ballyfore 53.32139 -7.11778 P PPL IE L 23 0 102 Europe/Dublin 2010-08-14 +3314755 Ballinlo House Ballinlo House 53.33694 -7.1425 S HSEC IE L 23 0 113 Europe/Dublin 2010-08-14 +3314756 Ballybrittan Ballybrittan 53.34333 -7.13556 P PPL IE L 23 0 115 Europe/Dublin 2010-08-14 +3314757 Ballybrittan Castle Ballybrittan Castle 53.34944 -7.14972 S CSTL IE L 23 0 116 Europe/Dublin 2010-08-14 +3314758 Ballybryan Ballybryan 53.35917 -7.14889 P PPL IE L 23 0 120 Europe/Dublin 2010-08-14 +3314759 Fahy Fahy 53.35972 -7.17722 T HLL IE L 23 0 126 Europe/Dublin 2010-08-14 +3314760 Mountwilson House Mountwilson House 53.35611 -7.11056 S HSEC IE L 23 0 113 Europe/Dublin 2010-08-14 +3314761 Trimblestown Bridge Trimblestown Bridge 53.34222 -7.13306 P PPL IE L 23 0 114 Europe/Dublin 2010-08-14 +3314762 Ballycolgan House Ballycolgan House 53.33667 -7.10583 S HSEC IE L 23 0 107 Europe/Dublin 2010-08-14 +3314763 Rathmore Bridge Rathmore Bridge 53.33472 -7.0875 L LCTY IE L 23 0 105 Europe/Dublin 2010-08-14 +3314764 Cartland Bridge Cartland Bridge 53.34111 -7.10556 P PPL IE L 23 0 107 Europe/Dublin 2010-08-14 +3314765 Ballyheashill Ballyheashill 53.36944 -7.15 P PPL IE L 23 0 120 Europe/Dublin 2010-08-14 +3314766 Roosk House Roosk House 53.37 -7.10222 S HSEC IE L 23 0 112 Europe/Dublin 2010-08-14 +3314767 Garr Bridge Garr Bridge 53.38306 -7.20417 S BDG IE L 23 0 131 Europe/Dublin 2010-08-14 +3314768 Knockdrin Hill Knockdrin Hill 53.39194 -7.23389 T HLL IE L 23 0 134 Europe/Dublin 2010-08-14 +3314769 Garr Garr 53.39278 -7.21056 P PPL IE L 23 0 131 Europe/Dublin 2010-08-14 +3314770 Killowen Killowen 53.38861 -7.16222 P PPL IE L 23 0 123 Europe/Dublin 2010-08-14 +3314771 Derrygawny Derrygawny 53.41111 -7.20111 P PPL IE L 23 0 134 Europe/Dublin 2010-08-14 +3314772 Corbetstown House Corbetstown House 53.41083 -7.16861 S HSEC IE L 23 0 128 Europe/Dublin 2010-08-14 +3314773 Stonehouse Stonehouse 53.40472 -7.16028 P PPL IE L 23 0 124 Europe/Dublin 2010-08-14 +3314774 Clonmore Clonmore 53.38611 -7.12694 P PPL IE L 23 0 116 Europe/Dublin 2010-08-14 +3314775 Clonmore Cross Roads Clonmore Cross Roads 53.38028 -7.10778 P PPL IE L 23 0 111 Europe/Dublin 2010-08-14 +3314776 Jonestown Cross Roads Jonestown Cross Roads 53.35472 -7.05556 P PPL IE L 23 0 103 Europe/Dublin 2010-08-14 +3314777 Monasteroris House Monasteroris House 53.34556 -7.08444 S HSEC IE L 23 0 107 Europe/Dublin 2010-08-14 +3314778 Clonmullen Hill Clonmullen Hill 53.355 -7.04722 T HLL IE L 23 0 101 Europe/Dublin 2010-08-14 +3314779 Drumcooly Drumcooly 53.32028 -7.07222 P PPL IE L 23 0 96 Europe/Dublin 2010-08-14 +3314780 Cloncanon Cloncanon 53.3225 -7.04778 P PPL IE L 23 0 92 Europe/Dublin 2010-08-14 +3314781 Drumman Drumman 53.42111 -7.25111 P PPL IE L 29 0 136 Europe/Dublin 2010-08-14 +3314782 Baltinoran Baltinoran 53.42194 -7.1675 P PPL IE L 21 0 130 Europe/Dublin 2010-08-14 +3314783 Mongagh River Mongagh River 53.41278 -7.15917 H STM IE 00 0 126 Europe/Dublin 1999-02-24 +3314784 Kildangan House Kildangan House 53.40917 -7.13528 S HSEC IE L 21 0 121 Europe/Dublin 2010-08-14 +3314785 Castlejordan River Castlejordan River 53.39194 -7.11361 H STM IE L 21 0 114 Europe/Dublin 2010-08-14 +3314786 Sheep Bridge Sheep Bridge 53.39778 -7.1275 S BDG IE L 21 0 116 Europe/Dublin 2010-08-14 +3314787 Ballinabrackey Ballinabrackey 53.42 -7.13361 P PPL IE L 21 0 123 Europe/Dublin 2010-08-14 +3314788 Cole Hill Cole Hill 53.42361 -7.09889 S EST IE L 21 0 115 Europe/Dublin 2010-08-14 +3314789 Clongall Bridge Clongall Bridge 53.38833 -7.10917 P PPLL IE L 21 0 113 Europe/Dublin 2010-08-14 +3314790 Harristown House Harristown House 53.4025 -7.08722 S HSEC IE L 21 0 109 Europe/Dublin 2010-08-14 +3314791 Ballyboggan Bridge Ballyboggan Bridge 53.41139 -7.04194 P PPLL IE 00 0 99 Europe/Dublin 1999-02-24 +3314792 Glynn Cross Roads Glynn Cross Roads 53.40944 -7.04111 P PPL IE L 12 0 98 Europe/Dublin 2010-08-14 +3314793 Kilrainy Cross Roads Kilrainy Cross Roads 53.40972 -7.00472 P PPL IE L 12 0 94 Europe/Dublin 2010-08-14 +3314794 Kilrainy House Kilrainy House 53.4075 -7.00611 S HSEC IE L 12 0 95 Europe/Dublin 2010-08-14 +3314795 Kilrathmurry House Kilrathmurry House 53.42222 -7.01167 S HSEC IE L 12 0 94 Europe/Dublin 2010-08-14 +3314796 Kilglass House Kilglass House 53.40583 -6.96722 S HSEC IE L 12 0 90 Europe/Dublin 2010-08-14 +3314797 Garrisker House Garrisker House 53.41917 -6.9725 S HSEC IE L 12 0 89 Europe/Dublin 2010-08-14 +3314798 Ballinderry House Ballinderry House 53.39472 -6.95944 S HSEC IE L 12 0 89 Europe/Dublin 2010-08-14 +3314799 Ballindoolin House Ballindoolin House 53.38472 -7.02583 S HSEC IE L 12 0 99 Europe/Dublin 2010-08-14 +3314800 Clogharinka Clogharinka 53.40111 -7.01611 P PPL IE L 12 0 96 Europe/Dublin 2010-08-14 +3314801 Killinagh Killinagh 53.39778 -7.02528 P PPL IE L 12 0 99 Europe/Dublin 2010-08-14 +3314802 Dufty’s Cross Roads Dufty's Cross Roads 53.39056 -6.99917 P PPL IE L 12 0 94 Europe/Dublin 2010-08-14 +3314803 Garr River Garr River 53.35944 -7.04333 H STM IE L 12 0 102 Europe/Dublin 2010-08-14 +3314804 Highfield House Highfield House 53.37 -7.02417 S HSEC IE L 12 0 98 Europe/Dublin 2010-08-14 +3314805 Clonmeen House Clonmeen House 53.37167 -7.04583 S HSEC IE L 12 0 103 Europe/Dublin 2010-08-14 +3314806 Coolcor House Coolcor House 53.35972 -6.99556 S HSEC IE L 12 0 91 Europe/Dublin 2010-08-14 +3314807 Williamstown House Williamstown House 53.38222 -7.00306 S HSEC IE L 12 0 95 Europe/Dublin 2010-08-14 +3314808 Kishawanny Kishawanny 53.35194 -7.02167 P PPL IE L 12 0 95 Europe/Dublin 2010-08-14 +3314809 Boyne Bridge Boyne Bridge 53.36028 -7.04583 P PPLL IE 00 0 102 Europe/Dublin 1999-02-24 +3314810 Clonkeen Cross Roads Clonkeen Cross Roads 53.34861 -6.99806 P PPL IE L 12 0 87 Europe/Dublin 2010-08-14 +3314811 Ballyhagan House Ballyhagan House 53.34833 -6.9675 S HSEC IE L 12 0 81 Europe/Dublin 2010-08-14 +3314812 Coolayna Haggard Coolayna Haggard 53.36972 -7.00167 P PPL IE L 12 0 94 Europe/Dublin 2010-08-14 +3314813 Knockcor House Knockcor House 53.37944 -6.95278 S HSEC IE L 12 0 86 Europe/Dublin 2010-08-14 +3314814 Calfstown Calfstown 53.39 -6.95139 P PPL IE L 12 0 87 Europe/Dublin 2010-08-14 +3314815 Cadamstown Cadamstown 53.40222 -6.95472 P PPL IE L 12 0 88 Europe/Dublin 2010-08-14 +3314816 Ballyhagan Ballyhagan 53.34139 -6.97806 P PPL IE L 12 0 81 Europe/Dublin 2010-08-14 +3314817 Windmill Cross Roads Windmill Cross Roads 53.33528 -6.93194 P PPL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314818 Ardkill House Ardkill House 53.36139 -6.92917 S HSEC IE L 12 0 81 Europe/Dublin 2010-08-14 +3314819 Coonagh House Coonagh House 53.35417 -6.92833 S HSEC IE L 12 0 80 Europe/Dublin 2010-08-14 +3314820 Clonkeeran House Clonkeeran House 53.38 -6.91333 S HSEC IE L 12 0 84 Europe/Dublin 2010-08-14 +3314821 Carbury Sweep Carbury Sweep 53.37 -6.93278 P PPL IE L 12 0 83 Europe/Dublin 2010-08-14 +3314822 Cappagh Cappagh 53.31972 -6.85722 P PPL IE L 12 0 86 Europe/Dublin 2010-08-14 +3314823 Timahoe Cross Roads Timahoe Cross Roads 53.33611 -6.84472 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314824 Crockberry Hill Crockberry Hill 53.34056 -6.82583 T HLL IE L 12 0 93 Europe/Dublin 2010-08-14 +3314825 Clonkeevan Lodge Clonkeevan Lodge 53.33694 -6.80222 S HSEC IE L 12 0 92 Europe/Dublin 2010-08-14 +3314826 Derryvarroge Derryvarroge 53.35056 -6.81 P PPL IE L 12 0 93 Europe/Dublin 2010-08-14 +3314827 Drehid House Drehid House 53.36417 -6.88694 S HSEC IE L 12 0 84 Europe/Dublin 2010-08-14 +3314828 Mulgeeth House Mulgeeth House 53.37611 -6.84306 S HSEC IE L 12 0 90 Europe/Dublin 2010-08-14 +3314829 Kilcooney River Kilcooney River 53.37389 -6.88778 H STM IE L 12 0 85 Europe/Dublin 2010-08-14 +3314830 Mucklon Mucklon 53.37028 -6.83361 P PPL IE L 12 0 92 Europe/Dublin 2010-08-14 +3314831 Killyon Killyon 53.3825 -6.835 P PPL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314832 Clonagh Clonagh 53.37833 -6.8175 P PPL IE L 12 0 90 Europe/Dublin 2010-08-14 +3314833 Gore’s Cross Roads Gore's Cross Roads 53.40861 -6.91139 P PPL IE L 12 0 85 Europe/Dublin 2010-08-14 +3314834 Fear English River Fear English River 53.40639 -6.84639 H STM IE L 12 0 86 Europe/Dublin 2010-08-14 +3314835 Dunfierth Cross Roads Dunfierth Cross Roads 53.39167 -6.83444 P PPL IE L 12 0 87 Europe/Dublin 2010-08-14 +3314836 Dunfierth House Dunfierth House 53.40056 -6.83556 S HSEC IE L 12 0 86 Europe/Dublin 2010-08-14 +3314837 Johnstown Bridge Johnstown Bridge Johnstown Bridge 53.40389 -6.85889 P PPL IE L 12 0 86 Europe/Dublin 2010-08-14 +3314838 Ballina House Ballina House 53.42222 -6.9175 S HSEC IE L 12 0 85 Europe/Dublin 2010-08-14 +3314839 Kilmore Kilmore 53.41917 -6.89833 P PPL IE L 12 0 84 Europe/Dublin 2010-08-14 +3314840 Newcastle House Newcastle House 53.42111 -6.84028 S HSEC IE L 21 0 86 Europe/Dublin 2010-08-14 +3314841 Ballyearn Ballyearn 53.41667 -6.81028 P PPL IE L 21 0 86 Europe/Dublin 2010-08-14 +3314842 Cappagh House Cappagh House 53.41833 -6.76639 S HSEC IE L 12 0 85 Europe/Dublin 2010-08-14 +3314843 Ballynakill House Ballynakill House 53.40944 -6.77778 S HSEC IE L 12 0 87 Europe/Dublin 2010-08-14 +3314844 Nicholastown Nicholastown 53.41944 -6.74056 P PPL IE L 12 0 83 Europe/Dublin 2010-08-14 +3314845 Pitchfordstown House Pitchfordstown House 53.40583 -6.70833 S HSEC IE L 12 0 81 Europe/Dublin 2010-08-14 +3314846 Knockanally House Knockanally House 53.38806 -6.78528 S HSEC IE L 12 0 88 Europe/Dublin 2010-08-14 +3314847 Newtown Newtown 53.36583 -6.76778 P PPL IE L 12 0 89 Europe/Dublin 2010-08-14 +3314848 Ballagh Cross Roads Ballagh Cross Roads 53.35333 -6.76028 P PPL IE L 12 0 90 Europe/Dublin 2010-08-14 +3314849 Tirmoghan Common Tirmoghan Common 53.37389 -6.73167 P PPL IE L 12 0 87 Europe/Dublin 2010-08-14 +3314850 Ballybrack Ballybrack 53.37528 -6.71028 P PPL IE L 12 0 85 Europe/Dublin 2010-08-14 +3314851 Courtown House Courtown House 53.39 -6.68583 S HSEC IE L 12 0 81 Europe/Dublin 2010-08-14 +3314852 Courtown Bridge Courtown Bridge 53.39694 -6.68194 P PPL IE L 12 0 79 Europe/Dublin 2010-08-14 +3314853 Clonshanbo River Clonshanbo River 53.35167 -6.70306 H STM IE L 12 0 86 Europe/Dublin 2010-08-14 +3314854 Clonsast Clonsast 53.38194 -6.68194 P PPL IE L 12 0 80 Europe/Dublin 2010-08-14 +3314855 Donadea Castle Donadea Castle 53.34417 -6.74528 S CSTL IE L 12 0 91 Europe/Dublin 2010-08-14 +3314856 Staplestown Staplestown 53.33167 -6.76722 P PPL IE L 12 0 92 Europe/Dublin 2010-08-14 +3314857 Kilnamoragh House Kilnamoragh House 53.33306 -6.73528 S HSEC IE L 12 0 92 Europe/Dublin 2010-08-14 +3314858 Mount Armstrong Mount Armstrong 53.32972 -6.71222 S EST IE L 12 0 88 Europe/Dublin 2010-08-14 +3314859 Kilmurry Kilmurry 53.32139 -6.73222 P PPL IE L 12 0 92 Europe/Dublin 2010-08-14 +3314860 Boherhole Cross Roads Boherhole Cross Roads 53.32444 -6.69833 P PPLL IE L 12 0 85 Europe/Dublin 2010-08-14 +3314861 Baltracey Cross Roads Baltracey Cross Roads 53.34778 -6.69083 P PPL IE L 12 0 83 Europe/Dublin 2010-08-14 +3314862 Painestown House Painestown House 53.34 -6.68722 S HSEC IE L 12 0 83 Europe/Dublin 2010-08-14 +3314863 Rathcoffey Rathcoffey 53.33556 -6.6925 P PPL IE L 12 0 85 Europe/Dublin 2010-08-14 +3314864 Chambers Bridge Chambers Bridge 53.39389 -6.64778 L LCTY IE L 12 0 77 Europe/Dublin 2010-08-14 +3314865 Laragh Laragh 53.38 -6.66417 P PPL IE L 12 0 79 Europe/Dublin 2010-08-14 +3314866 Laragh House Laragh House 53.37306 -6.65056 S HSEC IE L 12 0 78 Europe/Dublin 2010-08-14 +3314867 Clonfert House Clonfert House 53.36944 -6.66722 S HSEC IE L 12 0 80 Europe/Dublin 2010-08-14 +3314868 Baltracey River Baltracey River 53.35806 -6.66139 H STM IE L 12 0 79 Europe/Dublin 2010-08-14 +3314869 Jackson’s Bridge Jackson's Bridge 53.38167 -6.62361 P PPLL IE L 12 0 75 Europe/Dublin 2010-08-14 +3314870 Lyreen River Lyreen River 53.38278 -6.62139 H STM IE L 12 0 75 Europe/Dublin 2010-08-14 +3314871 Barreen Barreen 53.35 -6.66861 P PPL IE L 12 0 80 Europe/Dublin 2010-08-14 +3314872 Bryanstown House Bryanstown House 53.35028 -6.62306 S HSEC IE L 12 0 78 Europe/Dublin 2010-08-14 +3314873 Kealstown Kealstown 53.355 -6.64167 P PPL IE L 12 0 78 Europe/Dublin 2010-08-14 +3314874 Taghadoe Cross Roads Taghadoe Cross Roads 53.35139 -6.6 P PPL IE L 12 0 78 Europe/Dublin 2010-08-14 +3314875 Dowdstown House Dowdstown House 53.3625 -6.59611 S HSEC IE L 12 0 76 Europe/Dublin 2010-08-14 +3314876 Crinstown Cross Roads Crinstown Cross Roads 53.36778 -6.62111 P PPLL IE L 12 0 76 Europe/Dublin 2010-08-14 +3314877 Newtown House Newtown House 53.37472 -6.60833 S HSEC IE L 12 0 75 Europe/Dublin 2010-08-14 +3314878 Ballygoran House Ballygoran House 53.36306 -6.56861 S HSEC IE L 12 0 79 Europe/Dublin 2010-08-14 +3314879 Knockpatulla Knockpatulla 53.40833 -6.66278 P PPL IE L 21 0 78 Europe/Dublin 2010-08-14 +3314880 Dolanstown House Dolanstown House 53.41194 -6.64583 S HSEC IE L 21 0 77 Europe/Dublin 2010-08-14 +3314881 Newtown Prospect Newtown Prospect 53.40444 -6.64444 S EST IE L 21 0 76 Europe/Dublin 2010-08-14 +3314882 Bridges Stream House Bridges Stream House 53.41694 -6.65778 S HSEC IE L 21 0 77 Europe/Dublin 2010-08-14 +3314883 Crew Hill Crew Hill 53.39361 -6.61333 S EST IE L 12 0 72 Europe/Dublin 2010-08-14 +3314884 Killcany House Killcany House 53.40806 -6.58028 S HSEC IE L 21 0 71 Europe/Dublin 2010-08-14 +3314885 Kilgraigue House Kilgraigue House 53.41667 -6.56972 S HSEC IE L 21 0 76 Europe/Dublin 2010-08-14 +3314886 Moygaddy Moygaddy 53.39611 -6.59806 P PPL IE L 12 0 70 Europe/Dublin 2010-08-14 +3314887 Pebble Hill Pebble Hill 53.38972 -6.58444 S EST IE L 12 0 69 Europe/Dublin 2010-08-14 +3314888 Pickering Forest Pickering Forest 53.34194 -6.58472 V FRST IE L 12 0 80 Europe/Dublin 2010-08-14 +3314889 Rose Lawn Rose Lawn 53.33611 -6.585 S EST IE L 12 0 76 Europe/Dublin 2010-08-14 +3314890 Brook Lodge Brook Lodge 53.33444 -6.65 S HSE IE L 12 0 78 Europe/Dublin 2010-08-14 +3314891 Ovidstown House Ovidstown House 53.32389 -6.64361 S HSEC IE L 12 0 74 Europe/Dublin 2010-08-14 +3314892 Barberstown House Barberstown House 53.32556 -6.61056 S HSEC IE L 12 0 76 Europe/Dublin 2010-08-14 +3314893 Saint Patrick’s Hill Saint Patrick's Hill 53.32694 -6.58278 T HLL IE L 12 0 62 Europe/Dublin 2010-08-14 +3314894 Boycetown Boycetown 53.4125 -6.70056 P PPL IE L 12 0 81 Europe/Dublin 2010-08-14 +3314895 Hortland Hortland 53.3775 -6.78611 P PPLL IE L 12 0 88 Europe/Dublin 2010-08-14 +3314896 High Park High Park 52.89917 -6.57361 S EST IE L 31 0 195 Europe/Dublin 2010-08-14 +3314897 Killamoat Killamoat 52.90806 -6.55139 P PPL IE L 31 0 223 Europe/Dublin 2010-08-14 +3314898 Mullan Cross Roads Mullan Cross Roads 52.90944 -6.50222 P PPL IE L 31 0 260 Europe/Dublin 2010-08-14 +3314899 Kilcarney Kilcarney 52.89306 -6.52972 P PPL IE L 31 0 207 Europe/Dublin 2010-08-14 +3314900 Kilcarney Cross Roads Kilcarney Cross Roads 52.89778 -6.49278 P PPL IE L 31 0 242 Europe/Dublin 2010-08-14 +3314901 Carrig Mountain Carrig Mountain 52.93361 -6.57889 T MT IE L 31 0 564 421 Europe/Dublin 2010-08-14 +3314902 Cornan West Cornan West 52.92528 -6.53778 P PPL IE L 31 0 283 Europe/Dublin 2010-08-14 +3314903 Slieveboy Mountain Slieveboy Mountain 52.92167 -6.48167 T MT IE L 31 0 394 314 Europe/Dublin 2010-08-14 +3314904 Toorboy Mountain Toorboy Mountain Sliabh an Tuair Bhul,Toorboy Mountain 52.93583 -6.50528 T MT IE L 31 0 357 322 Europe/Dublin 2010-08-14 +3314905 Lybagh Lybagh Leadhbach,Lybagh 52.9425 -6.48111 T MT IE L 31 0 630 470 Europe/Dublin 2010-08-14 +3314906 Blackrock Blackrock 52.91944 -6.4675 T MT IE L 31 0 440 333 Europe/Dublin 2010-08-14 +3314907 Slievereagh Slievereagh 52.94472 -6.55056 T MT IE L 31 0 474 355 Europe/Dublin 2010-08-14 +3314908 Ballinabarny Gap Ballinabarny Gap 52.94472 -6.52944 T GAP IE L 31 0 307 Europe/Dublin 2010-08-14 +3314909 Rathgorragh Rathgorragh 52.93556 -6.54472 P PPL IE L 31 0 308 Europe/Dublin 2010-08-14 +3314910 Cranareen Cranareen 52.93 -6.53 P PPL IE L 31 0 277 Europe/Dublin 2010-08-14 +3314911 Dwyer’s Cottage Dwyer's Cottage 52.95778 -6.56806 S HSE IE L 31 0 450 Europe/Dublin 2010-08-14 +3314912 Coolmoney House Coolmoney House 52.975 -6.58306 S HSEC IE L 31 0 276 Europe/Dublin 2010-08-14 +3314913 Knockancarrigan Knockancarrigan 52.98111 -6.60111 P PPL IE L 31 0 210 Europe/Dublin 2010-08-14 +3314914 Seskin Seskin 52.9825 -6.56694 P PPL IE L 31 0 255 Europe/Dublin 2010-08-14 +3314915 Derrynamuck Derrynamuck 52.96083 -6.56361 P PPL IE L 31 0 320 Europe/Dublin 2010-08-14 +3314916 Ballineddan Mountain Ballineddan Mountain Ballineddan Mountain,Sliabh Bhuaile An Fheadain,Sliabh Bhuaile An Fheadáin 52.955 -6.51111 T MT IE L 31 0 655 573 Europe/Dublin 2010-08-14 +3314917 Ballinfoyle Ballinfoyle 52.95083 -6.53083 P PPL IE L 31 0 339 Europe/Dublin 2010-08-14 +3314918 Camarahill Camarahill 52.97083 -6.51861 T MT IE L 31 0 477 340 Europe/Dublin 2010-08-14 +3314919 Coan Coan 52.96917 -6.54306 P PPL IE L 31 0 278 Europe/Dublin 2010-08-14 +3314920 Newpark Newpark 53.01444 -6.57889 P PPL IE L 31 0 301 Europe/Dublin 2010-08-14 +3314921 Sugarloaf Sugarloaf 53.00806 -6.56056 T MT IE L 31 0 553 315 Europe/Dublin 2010-08-14 +3314922 Stranahely Stranahely 53.00139 -6.55028 P PPL IE L 31 0 340 Europe/Dublin 2010-08-14 +3314923 Leoh Mountain Leoh Mountain 52.99222 -6.49583 T MT IE L 31 0 516 430 Europe/Dublin 2010-08-14 +3314924 Knickeen Knickeen 52.99667 -6.5475 P PPL IE L 31 0 301 Europe/Dublin 2010-08-14 +3314926 Ballinagappoge Mountain Ballinagappoge Mountain 52.89833 -6.39278 T MT IE L 31 0 335 312 Europe/Dublin 2010-08-14 +3314927 Carrickashane Mountain Carrickashane Mountain 52.90917 -6.39972 T MT IE L 31 0 505 442 Europe/Dublin 2010-08-14 +3314928 Farbreaga Farbreaga 52.91694 -6.44333 L LCTY IE L 31 0 322 Europe/Dublin 2010-08-14 +3314929 Croaghanmoira Mountain Croaghanmoira Mountain 52.91389 -6.36833 T MT IE L 31 0 664 481 Europe/Dublin 2010-08-14 +3314930 Slieve Maan Slieve Maan 52.92556 -6.39556 T SPUR IE L 31 0 548 451 Europe/Dublin 2010-08-14 +3314931 Ballycreen Ballycreen 52.89639 -6.37111 L LCTY IE L 31 0 331 Europe/Dublin 2010-08-14 +3314932 Ballyshane Ballyshane 52.895 -6.30361 L LCTY IE L 31 0 258 Europe/Dublin 2010-08-14 +3314933 Moneymeen Moneymeen 52.90583 -6.34333 L LCTY IE L 31 0 304 Europe/Dublin 2010-08-14 +3314934 Ballinacor Mountain Ballinacor Mountain 52.915 -6.34333 T MT IE L 31 0 525 326 Europe/Dublin 2010-08-14 +3314935 Ballinacor House Ballinacor House 52.92722 -6.31611 S HSEC IE L 31 0 133 Europe/Dublin 2010-08-14 +3314936 Ballinatone House Ballinatone House 52.91222 -6.30083 S HSEC IE L 31 0 180 Europe/Dublin 2010-08-14 +3314937 Whaleyabbey Cottage Whaleyabbey Cottage 52.88917 -6.265 S HSE IE L 31 0 126 Europe/Dublin 2010-08-14 +3314938 Ballard Park Ballard Park 52.90722 -6.27694 S EST IE L 31 0 140 Europe/Dublin 2010-08-14 +3314939 Strand Bridge Strand Bridge 52.9375 -6.32222 P PPLL IE L 31 0 139 Europe/Dublin 2010-08-14 +3314940 Ballyteage Wood Ballyteage Wood 52.92556 -6.28139 V FRST IE L 31 0 153 Europe/Dublin 2010-08-14 +3314941 Ballyknockan Ballyknockan 52.91333 -6.2725 P PPL IE L 31 0 103 Europe/Dublin 2010-08-14 +3314942 Fananierin Mountain Fananierin Mountain Fananierin Mountain,Sliabh Fhan an Fhearainn,Sliabh Fhán an Fhearainn 52.93694 -6.34778 T MT IE L 31 0 427 269 Europe/Dublin 2010-08-14 +3314943 Drumgoff Brook Drumgoff Brook 52.94667 -6.34861 H STM IE L 31 0 153 Europe/Dublin 2010-08-14 +3314944 Clohernagh Brook Clohernagh Brook 52.95278 -6.36056 H STM IE L 31 0 162 Europe/Dublin 2010-08-14 +3314945 Drumgoff Bridge Drumgoff Bridge 52.95417 -6.35917 P PPLL IE L 31 0 162 Europe/Dublin 2010-08-14 +3314946 Corballis Castle Corballis Castle 52.91556 -6.23611 S CSTL IE L 31 0 89 Europe/Dublin 2010-08-14 +3314947 Ballinacarrig Ballinacarrig 52.90278 -6.24444 L LCTY IE L 31 0 137 Europe/Dublin 2010-08-14 +3314948 Connary Connary 52.88694 -6.22139 P PPLL IE L 31 0 136 Europe/Dublin 2010-08-14 +3314949 Kilnacoo Kilnacoo 52.88972 -6.19917 P PPLL IE L 31 0 155 Europe/Dublin 2010-08-14 +3314950 Rockstown Rockstown 52.90556 -6.20139 P PPLL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314951 Balleese Balleese 52.92639 -6.20917 P PPLL IE L 31 0 151 Europe/Dublin 2010-08-14 +3314952 Hill House Hill House 52.91722 -6.15028 S HSEC IE L 31 0 107 Europe/Dublin 2010-08-14 +3314953 The Round Ball The Round Ball 52.91444 -6.16361 T HLL IE L 31 0 127 Europe/Dublin 2010-08-14 +3314954 Kilmacrea Cross Roads Kilmacrea Cross Roads 52.90694 -6.17167 P PPL IE L 31 0 128 Europe/Dublin 2010-08-14 +3314955 Ballykean House Ballykean House 52.89944 -6.14278 S HSEC IE L 31 0 71 Europe/Dublin 2010-08-14 +3314956 Tullytusk Tullytusk 52.92056 -6.18333 P PPL IE L 31 0 152 Europe/Dublin 2010-08-14 +3314957 Avondale Forest Park Avondale Forest Park 52.90722 -6.22278 L PRK IE L 31 0 121 Europe/Dublin 2010-08-14 +3314958 Kilmacurragh Kilmacurragh 52.92556 -6.18 P PPLL IE L 31 0 153 Europe/Dublin 2010-08-14 +3314959 Cannianastown Cannianastown 52.93056 -6.18444 P PPLL IE L 31 0 153 Europe/Dublin 2010-08-14 +3314960 Rahaval House Rahaval House 52.89 -6.12861 S HSEC IE L 31 0 69 Europe/Dublin 2010-08-14 +3314961 Ballyvaltron Ballyvaltron 52.9 -6.1 P PPL IE L 31 0 71 Europe/Dublin 2010-08-14 +3314962 Dunganstown House Dunganstown House 52.91139 -6.09611 S HSEC IE L 31 0 75 Europe/Dublin 2010-08-14 +3314963 Ballydowling Ballydowling 52.92139 -6.08056 P PPL IE L 31 0 75 Europe/Dublin 2010-08-14 +3314964 The Cedars The Cedars 52.90917 -6.08194 P PPLL IE L 31 0 76 Europe/Dublin 2010-08-14 +3314965 Castlelimon Castlelimon 52.90667 -6.07583 L LCTY IE L 31 0 81 Europe/Dublin 2010-08-14 +3314966 Rockfield House Rockfield House 52.90583 -6.04278 S HSEC IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3314967 Ballinacor Ballinacor 52.90833 -6.14111 P PPLL IE L 31 0 76 Europe/Dublin 2010-08-14 +3314968 Ballard Ballard 52.91917 -6.12194 P PPLL IE L 31 0 75 Europe/Dublin 2010-08-14 +3314969 Carrigmore Carrigmore 52.93472 -6.14778 P PPLL IE L 31 0 83 Europe/Dublin 2010-08-14 +3314970 Glasnarget Glasnarget 52.93889 -6.21972 P PPLL IE L 31 0 142 Europe/Dublin 2010-08-14 +3314971 Kilmurry House Kilmurry House 52.89722 -6.10889 S HSEC IE L 31 0 72 Europe/Dublin 2010-08-14 +3314972 Oatland House Oatland House 52.93889 -6.12 S HSEC IE L 31 0 72 Europe/Dublin 2010-08-14 +3314973 Woodville House Woodville House 52.92972 -6.1075 S HSEC IE L 31 0 81 Europe/Dublin 2010-08-14 +3314974 Ballinteskin Cross Roads Ballinteskin Cross Roads 52.9425 -6.075 P PPL IE L 31 0 75 Europe/Dublin 2010-08-14 +3314975 Magheramore House Magheramore House 52.93056 -6.03333 S HSEC IE L 31 0 1 Europe/Dublin 2010-08-14 +3314976 Blainroe Blainroe 52.93806 -6.03861 P PPL IE L 31 0 49 Europe/Dublin 2010-08-14 +3314977 Gormanstown Gormanstown 52.9325 -6.07694 P PPL IE L 31 0 76 Europe/Dublin 2010-08-14 +3314978 The Beehive The Beehive 52.94667 -6.09583 L LCTY IE L 31 0 93 Europe/Dublin 2010-08-14 +3314979 Blainroe House Blainroe House 52.94917 -6.03972 S HSEC IE L 31 0 39 Europe/Dublin 2010-08-14 +3314980 Newton Park Newton Park 52.95361 -6.07833 S EST IE L 31 0 75 Europe/Dublin 2010-08-14 +3314981 Ballyguile Ballyguile 52.95861 -6.05389 P PPL IE L 31 0 80 Europe/Dublin 2010-08-14 +3314982 Dunbur Dunbur 52.95639 -6.01944 P PPL IE L 31 0 50 Europe/Dublin 2010-08-14 +3314983 Ballinaclogh Ballinaclogh 52.95944 -6.09889 P PPL IE L 31 0 74 Europe/Dublin 2010-08-14 +3314984 Hawkstown Hawkstown 52.96639 -6.0925 P PPL IE L 31 0 74 Europe/Dublin 2010-08-14 +3314985 Ballynabarny Ballynabarny 52.97667 -6.11694 P PPL IE L 31 0 76 Europe/Dublin 2010-08-14 +3314986 Tinakelly House Tinakelly House 52.99306 -6.06806 S HSEC IE L 31 0 26 Europe/Dublin 2010-08-14 +3314987 Newrath Bridge Newrath Bridge 53.00111 -6.085 P PPLL IE L 31 0 29 Europe/Dublin 2010-08-14 +3314988 Inchanappa House Inchanappa House 53.0075 -6.10139 S HSEC IE L 31 0 46 Europe/Dublin 2010-08-14 +3314989 Ballina Park House Ballina Park House 53.01222 -6.085 S HSEC IE L 31 0 31 Europe/Dublin 2010-08-14 +3314990 Ballybla House Ballybla House 53.02667 -6.06111 S HSEC IE L 31 0 1 Europe/Dublin 2010-08-14 +3314991 Ballycurry House Ballycurry House 53.02111 -6.11667 S HSEC IE L 31 0 74 Europe/Dublin 2010-08-14 +3314992 Ballycurry Ballycurry 53.03028 -6.13528 T HLL IE L 31 0 141 Europe/Dublin 2010-08-14 +3314993 Nun’s Cross Nun's Cross 53.01361 -6.12694 P PPL IE L 31 0 69 Europe/Dublin 2010-08-14 +3314994 Munduff House Munduff House 53.005 -6.135 S HSEC IE L 31 0 76 Europe/Dublin 2010-08-14 +3314995 Ballyknockan Beg Ballyknockan Beg 52.99 -6.12889 L LCTY IE L 31 0 72 Europe/Dublin 2010-08-14 +3314996 Ballylusk Ballylusk 52.99556 -6.15917 P PPL IE L 31 0 170 Europe/Dublin 2010-08-14 +3314997 Coolnakilly Coolnakilly 52.97944 -6.13806 P PPL IE L 31 0 77 Europe/Dublin 2010-08-14 +3314998 Garryduff Cross Roads Garryduff Cross Roads 52.9725 -6.20917 P PPL IE L 31 0 187 Europe/Dublin 2010-08-14 +3314999 Sleanaglogh Sleanaglogh 52.98083 -6.19583 T HLL IE L 31 0 225 228 Europe/Dublin 2010-08-14 +3315000 Glenwood House Glenwood House 52.97528 -6.23639 S HSEC IE L 31 0 255 Europe/Dublin 2010-08-14 +3315001 Tomriland Cross Roads Tomriland Cross Roads 53.03167 -6.2175 P PPLL IE L 31 0 264 Europe/Dublin 2010-08-14 +3315002 Drumdangan Drumdangan 52.94944 -6.1775 P PPL IE L 31 0 149 Europe/Dublin 2010-08-14 +3315003 Hollywood House Hollywood House 52.95694 -6.17028 S HSEC IE L 31 0 153 Europe/Dublin 2010-08-14 +3315004 Glencarrig House Glencarrig House 52.96111 -6.155 S HSEC IE L 31 0 152 Europe/Dublin 2010-08-14 +3315005 Ballydowling Ballydowling 52.96583 -6.18583 P PPL IE L 31 0 154 Europe/Dublin 2010-08-14 +3315006 Cronybyrne House Cronybyrne House 52.96806 -6.22889 S HSEC IE L 31 0 177 Europe/Dublin 2010-08-14 +3315007 Barnbown Barnbown 52.96306 -6.19972 P PPL IE L 31 0 160 Europe/Dublin 2010-08-14 +3315008 Rathnacooley House Rathnacooley House 52.95278 -6.15639 S HSEC IE L 31 0 151 Europe/Dublin 2010-08-14 +3315009 Ballycullen Ballycullen 53.00389 -6.20056 P PPL IE L 31 0 265 Europe/Dublin 2010-08-14 +3315010 Ashford Ashford Ashford,Ath na Fuinseoige 53.00833 -6.11139 P PPL IE L 31 0 56 Europe/Dublin 2010-08-14 +3315011 Ballardbeg Ballardbeg 53.00722 -6.15611 P PPL IE L 31 0 132 Europe/Dublin 2010-08-14 +3315012 Knockaphrumpa Knockaphrumpa 53.01722 -6.2 P PPL IE L 31 0 217 Europe/Dublin 2010-08-14 +3315013 Trooperstown Trooperstown 52.99694 -6.26583 P PPL IE L 31 0 317 Europe/Dublin 2010-08-14 +3315014 Trooperstown Hill Trooperstown Hill Maoilin,Trooperstown Hill 52.99167 -6.26472 T MT IE L 31 0 432 317 Europe/Dublin 2010-08-14 +3315015 Paddock Hill Paddock Hill 53.02056 -6.2925 T MT IE L 31 0 357 269 Europe/Dublin 2010-08-14 +3315016 Ballard Ballard 52.99528 -6.29639 P PPL IE L 31 0 146 Europe/Dublin 2010-08-14 +3315017 Ballylug Ballylug 52.97722 -6.27278 P PPLL IE L 31 0 170 Europe/Dublin 2010-08-14 +3315018 Derrybawn River Derrybawn River 52.98722 -6.30056 H STM IE L 31 0 136 Europe/Dublin 2010-08-14 +3315019 Cullentragh Mountain Cullentragh Mountain 52.97889 -6.33417 T MT IE L 31 0 468 456 Europe/Dublin 2010-08-14 +3315020 Ballybraid Ballybraid 52.97028 -6.34278 P PPL IE L 31 0 393 Europe/Dublin 2010-08-14 +3315021 Derrybawn Mountain Derrybawn Mountain Derrybawn Mountain,Sliabh Dhoire Ban,Sliabh Dhoire Bán 52.99472 -6.335 T MT IE L 31 0 478 421 Europe/Dublin 2010-08-14 +3315022 Knockrath Knockrath 52.96917 -6.31667 P PPL IE L 31 0 370 Europe/Dublin 2010-08-14 +3315023 Laraun Lodge Laraun Lodge 53.01944 -6.2775 S HSE IE L 31 0 206 Europe/Dublin 2010-08-14 +3315024 Brockagh Brockagh 53.01944 -6.32 P PPL IE L 31 0 198 Europe/Dublin 2010-08-14 +3315025 Bookey’s Bridge Bookey's Bridge 52.99861 -6.29833 L LCTY IE L 31 0 146 Europe/Dublin 2010-08-14 +3315026 Carriglinneen Mountain Carriglinneen Mountain Carriglinneen Mountain,Sliabh Charraig Linnin 52.95667 -6.33722 T MT IE L 31 0 459 249 Europe/Dublin 2010-08-14 +3315027 Ballinderry Ballinderry 52.94639 -6.27722 P PPL IE L 31 0 197 Europe/Dublin 2010-08-14 +3315028 Ballysheemen Ballysheemen 52.95444 -6.26833 P PPL IE L 31 0 167 Europe/Dublin 2010-08-14 +3315029 Kirikee Mountain Kirikee Mountain Kirikee Mountain,Sliabh Chior Mhic Aodha 52.95583 -6.3075 T MT IE L 31 0 475 335 Europe/Dublin 2010-08-14 +3315030 Mullacor Mullacor Mullacor,Mullaigh Mhor,Mullaigh Mhór 52.98139 -6.37528 T MT IE L 31 0 664 421 Europe/Dublin 2010-08-14 +3315031 Ballinafunshoge Ballinafunshoge 52.97167 -6.3925 P PPL IE L 31 0 259 Europe/Dublin 2010-08-14 +3315032 Kelly’s Lough Kelly's Lough Kelly's Lough,Kelly’s Lough,Loch Ui Cheallaigh,Loch Uí Cheallaigh 52.955 -6.42833 H LK IE L 31 0 654 Europe/Dublin 2010-08-14 +3315033 Arts Lough Arts Lough Arts Lough,Loch Airt 52.97528 -6.42833 H LK IE IE L 31 0 497 Europe/Dublin 2010-08-14 +3315034 Clohernagh Clohernagh Clocharnach,Clohernagh 52.96389 -6.42722 T MT IE L 31 0 799 660 Europe/Dublin 2010-08-14 +3315035 Baravore Baravore 52.985 -6.41806 P PPL IE L 31 0 311 Europe/Dublin 2010-08-14 +3315036 Carrawaystick Mountain Carrawaystick Mountain 52.94917 -6.41806 T MT IE L 31 0 676 573 Europe/Dublin 2010-08-14 +3315037 Lough Firrib Lough Firrib 53.02694 -6.43889 H LK IE L 31 0 591 Europe/Dublin 2010-08-14 +3315038 Conavalla Conavalla 53.01222 -6.45306 T MT IE L 31 0 737 604 Europe/Dublin 2010-08-14 +3315039 Three Lakes Three Lakes 53.02167 -6.46722 H LKS IE L 31 0 597 Europe/Dublin 2010-08-14 +3315040 Carrig Carrig 53.02972 -6.4875 T MT IE L 31 0 588 547 Europe/Dublin 2010-08-14 +3315041 Leoh River Leoh River 52.99444 -6.43972 H STM IE L 31 0 415 Europe/Dublin 2010-08-14 +3315042 Glen Imail Artillery Range Glen Imail Artillery Range 53.00583 -6.50028 L RNGA IE L 31 0 404 Europe/Dublin 2010-08-14 +3315043 Brockagh Brockagh 53.03222 -6.36861 P PPLL IE L 31 0 436 Europe/Dublin 2010-08-14 +3315044 Kilcough Kilcough 53.03639 -6.57972 L LCTY IE L 31 0 314 Europe/Dublin 2010-08-14 +3315045 Corragh Corragh 53.04194 -6.56028 P PPL IE L 31 0 327 Europe/Dublin 2010-08-14 +3315046 Round Hill Round Hill 53.03944 -6.52889 T HLL IE L 31 0 340 Europe/Dublin 2010-08-14 +3315047 Five Mile Point Five Mile Point 53.05361 -6.03889 T PT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3315048 Ballyvolan Ballyvolan 53.05222 -6.08472 P PPL IE L 31 0 52 Europe/Dublin 2010-08-14 +3315049 Leamore Park Leamore Park 53.07444 -6.06833 S EST IE L 31 0 24 Europe/Dublin 2010-08-14 +3315050 Leabeg Leabeg 53.08056 -6.06722 P PPL IE L 31 0 25 Europe/Dublin 2010-08-14 +3315051 Leamore Strand Leamore Strand 53.07889 -6.03639 T BCH IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3315052 Woodstock House Woodstock House 53.09306 -6.07833 S HSEC IE L 31 0 32 Europe/Dublin 2010-08-14 +3315053 Ballyduff Cross Roads Ballyduff Cross Roads 53.04417 -6.16 P PPL IE L 31 0 224 Europe/Dublin 2010-08-14 +3315054 Knockadreet Knockadreet 53.03667 -6.18389 P PPLL IE L 31 0 189 Europe/Dublin 2010-08-14 +3315055 Diamond Hill Diamond Hill 53.04667 -6.20444 S EST IE L 31 0 205 Europe/Dublin 2010-08-14 +3315056 Knockatemple Knockatemple 53.05833 -6.19139 P PPL IE L 31 0 222 Europe/Dublin 2010-08-14 +3315057 Callowhill Callowhill 53.05917 -6.14833 T HLL IE L 31 0 262 Europe/Dublin 2010-08-14 +3315058 Tomcoyle Lower Tomcoyle Lower 53.03611 -6.16056 P PPL IE L 31 0 187 Europe/Dublin 2010-08-14 +3315059 Tomdarragh House Tomdarragh House 53.035 -6.22111 S HSEC IE L 31 0 253 Europe/Dublin 2010-08-14 +3315060 Ballinaconbeg Ballinaconbeg Ballinaconbeg,Ballinacorbeg 53.03861 -6.24639 P PPLL IE IE L 31 0 302 Europe/Dublin 2010-08-14 +3315061 Roundwood House Roundwood House 53.06194 -6.22778 S HSEC IE L 31 0 258 Europe/Dublin 2010-08-14 +3315062 Ashtown Ashtown 53.07111 -6.24194 P PPL IE L 31 0 306 Europe/Dublin 2010-08-14 +3315063 Balliahinch Balliahinch 53.07333 -6.16528 P PPL IE L 31 0 305 Europe/Dublin 2010-08-14 +3315064 Roundwood Park Roundwood Park 53.05028 -6.22444 S EST IE L 31 0 242 Europe/Dublin 2010-08-14 +3315065 Raheen Raheen 53.04806 -6.25722 P PPL IE L 31 0 268 Europe/Dublin 2010-08-14 +3315066 Kilday Kilday 53.07111 -6.13194 P PPL IE L 31 0 154 Europe/Dublin 2010-08-14 +3315067 Knockraheen Knockraheen 53.07333 -6.21194 P PPL IE L 31 0 234 Europe/Dublin 2010-08-14 +3315076 Mount John House Mount John House 53.06972 -6.10889 S HSEC IE L 31 0 110 Europe/Dublin 2010-08-14 +3315077 Killadreenan Killadreenan 53.07389 -6.09861 P PPL IE L 31 0 68 Europe/Dublin 2010-08-14 +3315078 Trudder House Trudder House 53.07611 -6.09639 S HSEC IE L 31 0 74 Europe/Dublin 2010-08-14 +3315079 Kiltimon Kiltimon 53.05389 -6.10083 P PPLL IE L 31 0 106 Europe/Dublin 2010-08-14 +3315080 Mount Kennedy House Mount Kennedy House 53.09639 -6.1175 S HSEC IE L 31 0 114 Europe/Dublin 2010-08-14 +3315081 Glendarragh Glendarragh 53.09722 -6.17361 P PPLL IE L 31 0 238 Europe/Dublin 2010-08-14 +3315082 Kilpedder Kilpedder 53.10917 -6.10667 P PPLL IE L 31 0 79 Europe/Dublin 2010-08-14 +3315083 Ballygannon Ballygannon 53.11639 -6.06917 P PPLL IE L 31 0 19 Europe/Dublin 2010-08-14 +3315084 Knockroe Knockroe 53.11917 -6.07 P PPLL IE L 31 0 17 Europe/Dublin 2010-08-14 +3315085 Ballynerrin Ballynerrin 53.12833 -6.075 P PPLL IE L 31 0 15 Europe/Dublin 2010-08-14 +3315086 Grey Fort Grey Fort 53.10389 -6.05 S FT IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3315087 Cobblers Bulk Cobblers Bulk 53.12472 -6.04472 T CAPE IE L 31 0 -9999 Europe/Dublin 2010-08-14 +3315088 Rockfield Rockfield 53.12167 -6.09278 T HLL IE L 31 0 64 Europe/Dublin 2010-08-14 +3315089 Downshill Downshill 53.11944 -6.14861 P PPLL IE L 31 0 243 Europe/Dublin 2010-08-14 +3315090 Ballinastoe House Ballinastoe House 53.10611 -6.21111 S HSEC IE L 31 0 280 Europe/Dublin 2010-08-14 +3315091 Sraghmore Sraghmore 53.09139 -6.22694 P PPLL IE L 31 0 284 Europe/Dublin 2010-08-14 +3315092 Carriggower Carriggower 53.10972 -6.16417 P PPLL IE L 31 0 216 Europe/Dublin 2010-08-14 +3315093 Vartry Reservoir Vartry Reservoir Vartry Reservoir 53.05722 -6.20667 H RSV IE L 31 0 211 Europe/Dublin 2010-08-14 +3315094 Ballinrush Cottage Ballinrush Cottage 53.07417 -6.27889 S HSE IE L 31 0 321 Europe/Dublin 2010-08-14 +3315095 Sleamaine Sleamaine 53.08389 -6.25833 L LCTY IE L 31 0 350 Europe/Dublin 2010-08-14 +3315096 Cloghoge River Cloghoge River 53.07417 -6.28389 H STM IE L 31 0 304 Europe/Dublin 2010-08-14 +3315097 Cloghoge Brook Cloghoge Brook 53.08944 -6.26917 H STM IE L 31 0 340 Europe/Dublin 2010-08-14 +3315098 Inchavore River Inchavore River 53.07639 -6.29611 H STM IE L 31 0 304 Europe/Dublin 2010-08-14 +3315099 Carrigeershinnagh Carrigeershinnagh 53.06056 -6.28944 P PPLL IE L 31 0 313 Europe/Dublin 2010-08-14 +3315100 Mall Hill Mall Hill 53.0425 -6.34472 T HLL IE L 31 0 421 Europe/Dublin 2010-08-14 +3315101 Drummin Drummin 53.03944 -6.28778 P PPLL IE L 31 0 297 Europe/Dublin 2010-08-14 +3315102 Lake Park Lake Park 53.05889 -6.26556 S EST IE L 31 0 306 Europe/Dublin 2010-08-14 +3315103 Lough Ouler Lough Ouler Loch Iolar,Lough Ouler 53.05639 -6.375 H LK IE IE L 31 0 524 Europe/Dublin 2010-08-14 +3315104 Tonelagee Tonelagee Tonelagee 53.05139 -6.38472 T MT IE L 31 0 818 599 Europe/Dublin 2010-08-14 +3315105 Barnacullian Barnacullian 53.07861 -6.39472 T MT IE L 31 0 703 591 Europe/Dublin 2010-08-14 +3315106 Cleevaun Lough Cleevaun Lough Cleevaun Lough,Loch Cliabhain,Loch Cliabháin 53.105 -6.40278 H LK IE IE L 31 0 594 Europe/Dublin 2010-08-14 +3315107 Ballinagee Bridge Ballinagee Bridge 53.05944 -6.45667 P PPLL IE L 31 0 299 Europe/Dublin 2010-08-14 +3315108 Glenbride Lodge Glenbride Lodge 53.07444 -6.455 S HSE IE L 31 0 322 Europe/Dublin 2010-08-14 +3315109 Glasnagollum Brook Glasnagollum Brook 53.08083 -6.44139 H STM IE L 31 0 412 Europe/Dublin 2010-08-14 +3315110 Glenbridge Glenbridge 53.08917 -6.45806 L LCTY IE L 31 0 457 Europe/Dublin 2010-08-14 +3315111 Garryknock Garryknock 53.07306 -6.46111 P PPLL IE L 31 0 322 Europe/Dublin 2010-08-14 +3315112 Glenreemore Brook Glenreemore Brook 53.05389 -6.47806 H STM IE L 31 0 287 Europe/Dublin 2010-08-14 +3315113 Annalecka Brook Annalecka Brook 53.05722 -6.46139 H STM IE L 31 0 325 Europe/Dublin 2010-08-14 +3315114 Knocknaboley Knocknaboley 53.05444 -6.56 T MT IE L 31 0 418 315 Europe/Dublin 2010-08-14 +3315115 Douglas River Douglas River 53.06944 -6.54194 H STM IE L 31 0 246 Europe/Dublin 2010-08-14 +3315116 Coonmore Coonmore 53.07139 -6.56278 P PPL IE L 31 0 292 Europe/Dublin 2010-08-14 +3315117 Johnstown Johnstown 53.08861 -6.56472 P PPL IE L 31 0 269 Europe/Dublin 2010-08-14 +3315118 Luggala Lodge Luggala Lodge 53.1125 -6.27389 S HSE IE L 31 0 340 Europe/Dublin 2010-08-14 +3315119 Cloghoge Cloghoge 53.11167 -6.32833 P PPL IE L 31 0 476 Europe/Dublin 2010-08-14 +3315120 Gravale Gravale 53.12306 -6.35222 T MT IE L 31 0 716 605 Europe/Dublin 2010-08-14 +3315121 White Hall White Hall 53.12111 -6.20167 P PPL IE L 31 0 295 Europe/Dublin 2010-08-14 +3315122 Moanbane Moanbane Moanbane,Moin Bhan,Móin Bhán 53.10139 -6.45917 T MT IE L 31 0 705 498 Europe/Dublin 2010-08-14 +3315123 Lugnaskeagh Lugnaskeagh 53.10667 -6.48944 P PPL IE L 31 0 371 Europe/Dublin 2010-08-14 +3315124 Kilmore Kilmore 53.11639 -6.47444 P PPL IE L 31 0 394 Europe/Dublin 2010-08-14 +3315125 Black Hill Black Hill 53.12222 -6.46139 T MT IE L 31 0 484 408 Europe/Dublin 2010-08-14 +3315126 Carrigacurra Carrigacurra 53.08944 -6.51361 L LCTY IE L 31 0 288 Europe/Dublin 2010-08-14 +3315127 Quintagh Quintagh 53.07972 -6.50111 L LCTY IE L 31 0 325 Europe/Dublin 2010-08-14 +3315128 Marlfield House Marlfield House 53.09583 -6.52722 S HSEC IE L 31 0 235 Europe/Dublin 2010-08-14 +3315129 Humphrystown House Humphrystown House 53.10583 -6.55222 S HSEC IE L 31 0 207 Europe/Dublin 2010-08-14 +3315130 Valleymount Valleymount 53.10389 -6.55361 P PPL IE L 31 0 207 Europe/Dublin 2010-08-14 +3315131 Ballintober Ballintober 53.09889 -6.57222 P PPL IE L 31 0 274 Europe/Dublin 2010-08-14 +3315132 Rathbally Hosue Rathbally Hosue 53.12222 -6.54111 S HSEC IE L 31 0 192 Europe/Dublin 2010-08-14 +3315133 The Downs House The Downs House 53.12778 -6.11806 S HSEC IE L 31 0 151 Europe/Dublin 2010-08-14 +3315134 Bellevue Bellevue 53.13833 -6.10806 S EST IE L 31 0 112 Europe/Dublin 2010-08-14 +3315135 Blacklion Blacklion 53.14917 -6.09944 L LCTY IE L 31 0 92 Europe/Dublin 2010-08-14 +3315136 Redford Redford 53.15333 -6.08083 P PPL IE L 31 0 8 Europe/Dublin 2010-08-14 +3315137 Kilmurry Kilmurry 53.14833 -6.14167 P PPLL IE L 31 0 276 Europe/Dublin 2010-08-14 +3315138 Belmont House Belmont House 53.16 -6.1 S HSEC IE L 31 0 66 Europe/Dublin 2010-08-14 +3315139 Windgate Windgate 53.17056 -6.10194 S EST IE L 31 0 82 Europe/Dublin 2010-08-14 +3315142 Lugaculleen Brook Lugaculleen Brook 53.13139 -6.41611 H STM IE L 31 0 394 Europe/Dublin 2010-08-14 +3315143 Ballydonnell Brook Ballydonnell Brook 53.15972 -6.41389 H STM IE L 31 0 309 Europe/Dublin 2010-08-14 +3315144 Ballylow Brook Ballylow Brook 53.16028 -6.41389 H STM IE L 31 0 309 Europe/Dublin 2010-08-14 +3315145 Ballylow Ballylow 53.15389 -6.40972 P PPLL IE L 31 0 305 Europe/Dublin 2010-08-14 +3315146 Sorrel Hill Sorrel Hill 53.14611 -6.44528 T MT IE L 31 0 602 453 Europe/Dublin 2010-08-14 +3315147 Woodend Brook Woodend Brook 53.17139 -6.48944 H STM IE L 31 0 282 Europe/Dublin 2010-08-14 +3315148 Woodend Hill Woodend Hill 53.16889 -6.475 T HLL IE L 31 0 300 285 Europe/Dublin 2010-08-14 +3315149 The Lodge The Lodge 53.13194 -6.45889 S HSE IE L 31 0 385 Europe/Dublin 2010-08-14 +3315150 Ballynatona Ballynatona 53.16333 -6.42333 P PPLL IE L 31 0 301 Europe/Dublin 2010-08-14 +3315151 Sroughan Sroughan 53.14389 -6.5075 P PPLL IE L 31 0 268 Europe/Dublin 2010-08-14 +3315152 Luffey Cottage Luffey Cottage 53.17806 -6.50528 S HSE IE L 31 0 247 Europe/Dublin 2010-08-14 +3315153 Ballysmuttan Ballysmuttan 53.17056 -6.42917 P PPL IE L 31 0 296 Europe/Dublin 2010-08-14 +3315154 Lugnalee Brook Lugnalee Brook 53.15639 -6.36528 H STM IE L 31 0 414 Europe/Dublin 2010-08-14 +3315155 Liffey Head Bridge Liffey Head Bridge 53.16028 -6.30139 S BDG IE L 31 0 486 Europe/Dublin 2010-08-14 +3315156 Tonduff South Tonduff South Toin Dubh Theas,Tonduff South,Tóin Dubh Theas 53.15722 -6.2675 T PK IE L 31 0 642 507 Europe/Dublin 2010-08-14 +3315157 Tonduff North Tonduff North Toin Dubh Thuaidh,Tonduff North,Tóin Dubh Thuaidh 53.16139 -6.26333 T PK IE L 31 0 622 439 Europe/Dublin 2010-08-14 +3315158 Coffin Stone Coffin Stone 53.13 -6.26167 T RK IE L 31 0 455 Europe/Dublin 2010-08-14 +3315159 Deer Park Deer Park 53.14389 -6.20222 S EST IE L 31 0 241 Europe/Dublin 2010-08-14 +3315160 Maulin Maulin Maulin 53.15361 -6.23083 T MT IE L 31 0 570 421 Europe/Dublin 2010-08-14 +3315161 Killough Killough 53.16361 -6.165 P PPL IE L 31 0 285 Europe/Dublin 2010-08-14 +3315162 Kilmacanoge Kilmacanoge 53.16722 -6.13361 P PPL IE L 31 0 117 Europe/Dublin 2010-08-14 +3315163 Long Hill Long Hill 53.14833 -6.18333 T HLL IE L 31 0 325 247 Europe/Dublin 2010-08-14 +3315164 Bahana Bahana 53.15667 -6.20417 P PPL IE L 31 0 191 Europe/Dublin 2010-08-14 +3315165 Hollybrook Hollybrook 53.17722 -6.13 S EST IE L 31 0 86 Europe/Dublin 2010-08-14 +3315166 Wingfield Wingfield 53.17778 -6.14639 S EST IE L 31 0 82 Europe/Dublin 2010-08-14 +3315167 Ballyorney Ballyorney 53.17194 -6.17472 P PPL IE L 31 0 164 Europe/Dublin 2010-08-14 +3315168 Bushy Park Bushy Park 53.17722 -6.16806 L PRK IE L 31 0 122 Europe/Dublin 2010-08-14 +3315169 Charleville House Charleville House 53.17444 -6.18139 S HSEC IE L 31 0 149 Europe/Dublin 2010-08-14 +3315170 Tinnehinch House Tinnehinch House 53.18222 -6.14778 S HSEC IE L 31 0 82 Europe/Dublin 2010-08-14 +3315171 Killbride Killbride 53.18639 -6.13444 P PPLL IE L 31 0 53 Europe/Dublin 2010-08-14 +3315172 Newtown Vevay Newtown Vevay 53.19194 -6.13167 P PPL IE L 31 0 37 Europe/Dublin 2010-08-14 +3315173 Rannock House Rannock House 53.19722 -6.16722 S HSEC IE L 31 0 104 Europe/Dublin 2010-08-14 +3315174 Knockree Knockree 53.17944 -6.22694 T MT IE L 31 0 344 269 Europe/Dublin 2010-08-14 +3315175 Ballyreagh Wood Ballyreagh Wood 53.17194 -6.25472 V FRST IE L 31 0 277 Europe/Dublin 2010-08-14 +3315176 Ballycoyle Ballycoyle 53.18194 -6.26861 P PPL IE L 31 0 316 Europe/Dublin 2010-08-14 +3315177 Aurora Aurora 53.19 -6.2875 P PPL IE L 31 0 340 Europe/Dublin 2010-08-14 +3315178 Barnamire Barnamire 53.18472 -6.2275 P PPL IE L 31 0 303 Europe/Dublin 2010-08-14 +3315179 Curtlestown Curtlestown 53.18667 -6.21556 P PPL IE L 31 0 223 Europe/Dublin 2010-08-14 +3315180 Lough Bray Lower Lough Bray Lower Loch Bre Iochtair,Loch Bré Íochtair,Lough Bray Lower 53.18444 -6.30111 H LK IE IE L 31 0 447 Europe/Dublin 2010-08-14 +3315181 Lough Bray Upper Lough Bray Upper Loch Bre Uachtair,Loch Bré Uachtair,Lough Bray Upper 53.17611 -6.30333 H LK IE IE L 31 0 468 Europe/Dublin 2010-08-14 +3315182 Ravens Rock Ravens Rock 53.19667 -6.22333 T RK IE L 31 0 451 287 Europe/Dublin 2010-08-14 +3315183 Ballybrew Ballybrew 53.20333 -6.19944 P PPL IE L 31 0 154 Europe/Dublin 2010-08-14 +3315184 Killegar House Killegar House 53.20917 -6.18611 S HSEC IE L 31 0 152 Europe/Dublin 2010-08-14 +3315185 Kilmallin Kilmallin 53.19667 -6.17861 P PPL IE L 31 0 117 Europe/Dublin 2010-08-14 +3315186 Oldboleys Oldboleys 53.19944 -6.27778 P PPL IE L 31 0 340 Europe/Dublin 2010-08-14 +3315187 Glencree Glencree Gleann Crithigh,Gleann Críthigh,Glencree 53.19472 -6.30611 P PPL IE IE L 31 0 450 Europe/Dublin 2010-08-14 +3315188 Athdown Athdown 53.17417 -6.40139 P PPLL IE L 31 0 323 Europe/Dublin 2010-08-14 +3315189 Shankill River Shankill River 53.18778 -6.43667 H STM IE L 31 0 296 Europe/Dublin 2010-08-14 +3315190 Shankill Shankill 53.20361 -6.40083 P PPL IE L 31 0 450 Europe/Dublin 2010-08-14 +3315191 Cloghleagh Cloghleagh 53.18917 -6.46139 P PPL IE L 31 0 277 Europe/Dublin 2010-08-14 +3315192 Ballyfolan Ballyfolan 53.21028 -6.43194 P PPL IE L 31 0 351 Europe/Dublin 2010-08-14 +3315193 Dowry Dowry 53.20778 -6.45194 T MT IE L 31 0 323 302 Europe/Dublin 2010-08-14 +3315194 Hempstown Hempstown 53.20222 -6.50111 P PPL IE L 31 0 296 Europe/Dublin 2010-08-14 +3315195 Cross Chapel Cross Chapel 53.19361 -6.50972 S CH IE L 31 0 281 Europe/Dublin 2010-08-14 +3315196 Golden Hill Golden Hill 53.18722 -6.48167 S EST IE L 31 0 265 Europe/Dublin 2010-08-14 +3315197 Butter Mountain Butter Mountain Butter Mountain,Sliabh an Bhothair 53.21722 -6.42139 T MT IE L 31 0 444 340 Europe/Dublin 2010-08-10 +3315198 Brittas River Brittas River 53.18667 -6.46722 H STM IE L 31 0 271 Europe/Dublin 1999-02-24 +3315199 Tinode House Tinode House 53.21444 -6.49056 S HSEC IE L 31 0 297 Europe/Dublin 2010-08-14 +3315200 Eadestown Eadestown 53.20278 -6.57806 P PPL IE L 12 0 164 Europe/Dublin 2010-08-14 +3315201 Punchestown House Punchestown House 53.21028 -6.54111 S HSEC IE L 12 0 230 Europe/Dublin 2010-08-14 +3315202 Hillsborough Hall Hillsborough Hall 53.19361 -6.52722 S HSEC IE L 12 0 260 Europe/Dublin 2010-08-14 +3315203 Punchestown House Punchestown House 53.21944 -6.52611 S HSEC IE L 12 0 245 Europe/Dublin 2010-08-14 +3315204 Little Bray Little Bray 53.20444 -6.12083 P PPL IE L 07 0 19 Europe/Dublin 2010-08-14 +3315205 Old Connaught Old Connaught 53.20833 -6.13444 P PPL IE L 07 0 42 Europe/Dublin 2010-08-14 +3315206 Phrompstown House Phrompstown House 53.21139 -6.14194 S HSEC IE L 07 0 92 Europe/Dublin 2010-08-14 +3315207 Wilfort House Wilfort House 53.21444 -6.12222 S HSEC IE L 07 0 12 Europe/Dublin 2010-08-14 +3315208 Old Conna Hill Old Conna Hill 53.21694 -6.13694 S EST IE L 34 0 60 Europe/Dublin 2010-08-14 +3315209 Woodbrook Woodbrook 53.21444 -6.11139 S EST IE L 07 0 1 Europe/Dublin 2010-08-14 +3315210 Cork Abbey Cork Abbey 53.21139 -6.10917 S MSTY IE L 07 0 1 Europe/Dublin 2010-08-14 +3315211 Ballycorus Ballycorus 53.23222 -6.16722 P PPL IE L 07 0 152 Europe/Dublin 2010-08-14 +3315212 Glencullen Glencullen Glencullen 53.22167 -6.21361 P PPL IE L 07 0 221 Europe/Dublin 2010-11-05 +3315213 Rockville Rockville 53.23889 -6.19056 S EST IE L 07 0 140 Europe/Dublin 2010-08-14 +3315214 Kiltiernan Kiltiernan 53.23194 -6.19111 P PPL IE L 07 0 150 Europe/Dublin 2010-08-14 +3315215 Golden Ball Golden Ball 53.24 -6.22167 P PPL IE L 07 0 259 Europe/Dublin 2010-08-14 +3315216 Jamestown House Jamestown House 53.25 -6.20111 S HSEC IE L 07 0 139 Europe/Dublin 2010-08-14 +3315217 Three Rock Mountain Three Rock Mountain 53.24639 -6.23583 T MT IE L 07 0 450 376 Europe/Dublin 2010-08-14 +3315218 Fern Hill Fern Hill 53.25667 -6.23472 S EST IE L 07 0 280 Europe/Dublin 2010-08-14 +3315219 Boranaraltry Boranaraltry 53.22111 -6.27611 L LCTY IE L 07 0 421 Europe/Dublin 2010-08-14 +3315220 Tibradden Mountain Tibradden Mountain Sliabh Theach Breatan,Tibradden Mountain 53.23889 -6.28028 T MT IE L 07 0 469 334 Europe/Dublin 2010-11-05 +3315221 Cruagh Mountain Cruagh Mountain 53.23472 -6.30028 T MT IE L 07 0 522 421 Europe/Dublin 2010-08-14 +3315222 Kilmashogue Mountain Kilmashogue Mountain Kilmashogue Mountain,Sliabh Chill Mochion,Sliabh Chill Mochión 53.25056 -6.26722 T MT IE L 07 0 408 269 Europe/Dublin 2010-11-05 +3315223 Killakee Mountain Killakee Mountain Killakee Mountain,Sliabh Choill an Chaoich 53.22861 -6.30972 T MT IE L 07 0 536 421 Europe/Dublin 2010-11-05 +3315224 Larch Hill Larch Hill 53.25111 -6.29389 S EST IE L 07 0 244 Europe/Dublin 2010-08-14 +3315225 Cot Brook Cot Brook 53.22111 -6.34028 H STM IE L 07 0 323 Europe/Dublin 2010-08-14 +3315226 Slade Brook Slade Brook 53.225 -6.35083 H STM IE L 07 0 322 Europe/Dublin 2010-08-14 +3315227 Glenasmole Lodge Glenasmole Lodge 53.21778 -6.33944 S HSE IE L 07 0 323 Europe/Dublin 2010-08-14 +3315228 Cunard Cunard 53.23028 -6.34056 P PPLL IE L 07 0 307 Europe/Dublin 2010-08-14 +3315229 Ballymorefinn Hill Ballymorefinn Hill 53.2275 -6.37667 T MT IE L 07 0 514 421 Europe/Dublin 2010-08-14 +3315230 Friarstown House Friarstown House 53.25611 -6.36 S HSEC IE L 07 0 179 Europe/Dublin 2010-08-14 +3315231 Ballinascorney House Ballinascorney House 53.23639 -6.39972 S HSEC IE L 07 0 340 Europe/Dublin 2010-08-14 +3315232 Arthurstown Arthurstown 53.23194 -6.57333 P PPL IE L 12 0 151 Europe/Dublin 2010-08-14 +3315233 Porterstown Porterstown 53.24611 -6.55139 P PPL IE L 12 0 138 Europe/Dublin 2010-08-14 +3315234 Fodeens Fodeens 53.24028 -6.55194 L LCTY IE L 12 0 142 Europe/Dublin 2010-08-14 +3315235 Furryhill Furryhill 53.22722 -6.55917 L LCTY IE L 12 0 152 Europe/Dublin 2010-08-14 +3315236 Cupidstownhill Cupidstownhill 53.22639 -6.50194 T HLL IE L 12 0 304 Europe/Dublin 2010-08-14 +3315237 Farmersvale Farmersvale 53.26 -6.54806 L LCTY IE L 12 0 138 Europe/Dublin 2010-08-14 +3315238 Castlewarden House Castlewarden House 53.26639 -6.54667 S HSEC IE L 12 0 138 Europe/Dublin 2010-08-14 +3315239 Oughterard Oughterard 53.2775 -6.56389 P PPL IE L 12 0 133 Europe/Dublin 2010-08-14 +3315240 Boston House Boston House 53.28278 -6.56667 S HSEC IE L 12 0 109 Europe/Dublin 2010-08-14 +3315241 Skeagh House Skeagh House 53.3075 -6.53722 S HSEC IE L 07 0 75 Europe/Dublin 2010-08-14 +3315242 Newcastle House Newcastle House 53.29583 -6.51333 S HSEC IE L 07 0 103 Europe/Dublin 2010-08-14 +3315243 Athgoe Athgoe 53.28333 -6.51639 L LCTY IE L 07 0 140 Europe/Dublin 2010-08-14 +3315244 Johnstown House Johnstown House 53.2575 -6.50861 S HSEC IE L 07 0 205 Europe/Dublin 2010-08-14 +3315245 Badgerhill Badgerhill 53.2525 -6.53389 L LCTY IE L 07 0 144 Europe/Dublin 2010-08-14 +3315246 Saggart Hill Saggart Hill Cnoc Theach Sagard,Saggart Hill 53.24972 -6.47222 T MT IE L 39 0 398 310 Europe/Dublin 2010-11-05 +3315247 Brittas Brittas Brittas 53.23694 -6.45222 P PPL IE L 07 0 302 Europe/Dublin 2010-11-05 +3315248 Redgap Redgap 53.26833 -6.47528 P PPLL IE L 07 0 178 Europe/Dublin 2010-08-14 +3315249 Raheen Raheen 53.24639 -6.45417 L LCTY IE L 07 0 303 Europe/Dublin 2010-08-14 +3315250 Mount Seskin Mount Seskin 53.25222 -6.43222 S EST IE L 07 0 309 Europe/Dublin 2010-08-14 +3315251 Knockannavea Knockannavea Knockannavea,Knockannaves 53.25028 -6.41194 T MT IE L 39 0 398 306 Europe/Dublin 2010-11-05 +3315252 Verschoyles Hill Verschoyles Hill 53.2625 -6.43611 T MT IE L 39 0 331 272 Europe/Dublin 2010-08-14 +3315253 Slievenabawnoge Slievenabawnoge Sliabh na nBanog,Sliabh na nBánóg,Slievenabawnoge 53.24278 -6.38278 T MT IE L 39 0 384 266 Europe/Dublin 2010-11-05 +3315254 Tallaght Hill Tallaght Hill 53.26778 -6.41278 S EST IE L 07 0 188 Europe/Dublin 2010-08-14 +3315255 Fort Bridge Fort Bridge 53.25972 -6.36889 P PPLL IE L 07 0 143 Europe/Dublin 2010-08-14 +3315256 Marlfield Marlfield 53.27028 -6.38722 P PPL IE L 07 0 150 Europe/Dublin 2010-08-14 +3315257 Fern Vale Fern Vale 53.26389 -6.38278 L LCTY IE L 07 0 162 Europe/Dublin 2010-08-14 +3315258 Tassaggart Tassaggart 53.2875 -6.4375 L LCTY IE L 07 0 119 Europe/Dublin 2010-08-14 +3315259 Woodtown Woodtown 53.26583 -6.31639 P PPL IE L 07 0 169 Europe/Dublin 2010-08-14 +3315260 Oldcourt House Oldcourt House 53.26889 -6.33639 S HSEC IE L 07 0 133 Europe/Dublin 2010-08-14 +3315261 Ellenborough House Ellenborough House 53.27556 -6.35194 S HSEC IE L 07 0 99 Europe/Dublin 2010-08-14 +3315262 Rockbrook Rockbrook Rockbrook 53.26111 -6.30028 P PPLL IE L 07 0 164 Europe/Dublin 2010-11-05 +3315263 Owendoher River Owendoher River 53.30444 -6.28389 H STM IE L 07 0 60 Europe/Dublin 2010-08-14 +3315264 Whitechurch Whitechurch 53.27167 -6.27806 P PPLL IE L 07 0 114 Europe/Dublin 2010-08-14 +3315265 Fettercairn House Fettercairn House 53.2925 -6.39 S HSEC IE L 07 0 84 Europe/Dublin 2010-08-14 +3315266 Kilmateed House Kilmateed House 53.3075 -6.42111 S HSEC IE L 07 0 81 Europe/Dublin 2010-08-14 +3315267 Kingswood Kingswood Kingswood 53.30194 -6.41778 P PPLL IE L 07 0 81 Europe/Dublin 2010-11-05 +3315268 Belgard Belgard 53.30306 -6.39667 P PPLL IE L 07 0 79 Europe/Dublin 2010-08-14 +3315269 Kilnamanagh House Kilnamanagh House 53.30556 -6.36722 S HSEC IE L 39 0 79 Europe/Dublin 2010-08-14 +3315270 Ballymount Ballymount 53.31431 -6.35945 P PPL IE 00 0 76 Europe/Dublin 2010-08-14 +3315271 Corkagh House Corkagh House 53.31194 -6.41806 S HSEC IE L 07 0 76 Europe/Dublin 2010-08-14 +3315272 Castle Bagot Castle Bagot 53.31333 -6.45361 S EST IE L 07 0 79 Europe/Dublin 2010-08-14 +3315273 Nangor Castle Nangor Castle 53.32056 -6.43167 S CSTL IE L 07 0 76 Europe/Dublin 2010-08-14 +3315274 Moyle Park Moyle Park 53.32 -6.39806 L PRK IE L 07 0 70 Europe/Dublin 2010-08-14 +3315275 Cappagh House Cappagh House 53.33222 -6.40167 S HSEC IE L 07 0 65 Europe/Dublin 2010-08-14 +3315276 Firhouse Firhouse Firhouse 53.28167 -6.33917 P PPL IE L 07 0 107 Europe/Dublin 2010-11-05 +3315278 Sandyford Sandyford 53.2747 -6.2253 P PPL IE L 07 5844 113 Europe/Dublin 2010-08-30 +3315279 Leopardstown Leopardstown Leopardstown 53.26833 -6.19972 P PPL IE L 07 0 75 Europe/Dublin 2010-11-05 +3315280 Foxrock Foxrock 53.26667 -6.17417 P PPL IE L 07 0 45 Europe/Dublin 2010-08-14 +3315281 Ballybrack Ballybrack 53.25387 -6.13526 P PPL IE L 07 0 12 Europe/Dublin 2010-08-14 +3315282 Sallynoggin Sallynoggin 53.27917 -6.14058 P PPL IE L 07 0 3 Europe/Dublin 2010-08-14 +3315283 Kill of the Grange Kill of the Grange 53.27917 -6.15417 P PPL IE L 07 0 15 Europe/Dublin 2010-08-14 +3315284 Deans Grange Deans Grange Deansgrange 53.27838 -6.16367 P PPL IE L 07 0 23 Europe/Dublin 2010-08-14 +3315285 Galloping Green Galloping Green 53.27556 -6.19972 P PPL IE L 07 0 58 Europe/Dublin 2010-08-14 +3315286 Dargle River Dargle River Dargle River,Little Dargle River 53.27361 -6.26778 H STM IE IE L 07 0 118 Europe/Dublin 2010-11-05 +3315287 Rathgar Rathgar 53.31457 -6.275 P PPL IE L 07 0 40 Europe/Dublin 2010-08-14 +3315288 Milltown Milltown 53.32083 -6.45944 P PPL IE L 07 0 76 Europe/Dublin 2010-08-14 +3315289 Peamount Peamount 53.31972 -6.48028 P PPL IE L 07 0 78 Europe/Dublin 2010-08-14 +3315290 Riversdale Riversdale 53.31722 -6.5075 P PPL IE L 07 0 76 Europe/Dublin 2010-08-14 +3315291 Gollierstown Bridge Gollierstown Bridge 53.33 -6.47639 S BDG IE L 07 0 76 Europe/Dublin 2010-08-14 +3315292 Finnstown House Finnstown House 53.34111 -6.46472 S HSEC IE L 07 0 66 Europe/Dublin 2010-08-14 +3315293 Elm Hall Elm Hall 53.33222 -6.52361 S EST IE L 12 0 62 Europe/Dublin 2010-08-14 +3315294 Stacumny Stacumny 53.33611 -6.51528 P PPL IE L 12 0 59 Europe/Dublin 2010-08-14 +3315295 Ranelagh Ranelagh 53.32526 -6.25504 P PPL IE L 07 0 12 Europe/Dublin 2010-08-14 +3315296 Irishtown Irishtown 53.33806 -6.215 P PPLX IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3315297 Drumleck Drumleck 53.36361 -6.08278 P PPLL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3315298 Lion’s Head Lion's Head 53.36444 -6.06083 T PT IE L 35 0 -9999 Europe/Dublin 2010-08-14 +3315299 Webb’s Castle Rock Webb's Castle Rock 53.36611 -6.0525 T RK IE L 35 0 -9999 Europe/Dublin 2010-08-14 +3315300 Casana Rock Casana Rock 53.38 -6.04361 T RK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3315301 Muck Rock Muck Rock 53.37833 -6.07833 T RK IE L 07 0 57 Europe/Dublin 2010-08-14 +3315302 Saint Anne's Park Saint Anne's Park 53.37278 -6.18139 L PRK IE L 07 0 1 Europe/Dublin 2010-08-14 +3315303 Kilbarrack Kilbarrack Kilbarrack 53.39139 -6.14583 P PPL IE L 07 0 -9999 Europe/Dublin 2010-11-05 +3315304 Artane Artane 53.38712 -6.2138 P PPL IE L 07 0 5 Europe/Dublin 2010-08-14 +3315305 Stapolin House Stapolin House 53.40556 -6.15639 S HSEC IE L 07 0 1 Europe/Dublin 2010-08-14 +3315306 Balgriffin Balgriffin Balgriffin 53.40944 -6.17417 P PPL IE L 07 0 2 Europe/Dublin 2010-11-05 +3315307 Belcamp Hall Belcamp Hall 53.40861 -6.18556 S EST IE L 07 0 4 Europe/Dublin 2010-08-14 +3315308 Belcamp Belcamp 53.41083 -6.20222 P PPL IE L 07 0 8 Europe/Dublin 2010-08-14 +3315309 Darndale House Darndale House 53.4025 -6.18056 S HSEC IE L 07 0 2 Europe/Dublin 2010-08-14 +3315310 Kilmore Kilmore 53.39639 -6.22806 P PPL IE L 07 0 9 Europe/Dublin 2010-08-14 +3315311 Beaumont Beaumont 53.39139 -6.24056 P PPL IE L 07 0 6 Europe/Dublin 2010-08-14 +3315312 Drumcondra Drumcondra 53.36643 -6.26667 P PPL IE L 07 0 3 Europe/Dublin 2010-08-14 +3315313 Woodlands Woodlands 53.41083 -6.21583 P PPL IE L 07 0 10 Europe/Dublin 2010-08-14 +3315314 Tower House Tower House 53.40861 -6.26306 S HSEC IE L 07 0 22 Europe/Dublin 2010-08-14 +3315315 Ballymun Ballymun 53.39807 -6.26693 P PPL IE L 07 0 16 Europe/Dublin 2010-08-14 +3315316 Williamsville Williamsville 53.41278 -6.30528 P PPL IE L 07 0 45 Europe/Dublin 2010-08-14 +3315317 Kildonan House Kildonan House 53.40667 -6.30222 S HSEC IE L 07 0 41 Europe/Dublin 2010-08-14 +3315318 Cappoge Cappoge 53.40083 -6.32917 P PPL IE L 07 0 63 Europe/Dublin 2010-08-14 +3315319 Cabra Cabra 53.36694 -6.29444 P PPL IE L 07 0 8 Europe/Dublin 2010-08-14 +3315320 Harold's Cross Harold's Cross 53.32634 -6.27538 P PPL IE L 07 0 23 Europe/Dublin 2010-08-14 +3315321 Dolphin's Barn Dolphin's Barn 53.33417 -6.32139 P PPLX IE L 07 0 25 Europe/Dublin 2010-08-14 +3315322 Walkinstown Walkinstown 53.32964 -6.33963 P PPL IE 00 0 43 Europe/Dublin 2010-08-14 +3315323 Ashtown Ashtown 53.37528 -6.33056 P PPL IE L 07 0 12 Europe/Dublin 2010-08-14 +3315324 Phibsborough Phibsborough 53.36417 -6.27806 P PPLX IE L 07 0 4 Europe/Dublin 2010-08-14 +3315325 Windy Arbour Windy Arbour 53.30431 -6.24925 P PPLX IE L 07 0 44 Europe/Dublin 2010-08-14 +3315326 Abbotstown Abbotstown 53.39306 -6.355 P PPL IE L 07 0 69 Europe/Dublin 2010-08-14 +3315327 Ballycorden Ballycorden 53.40972 -6.36806 P PPL IE L 07 0 81 Europe/Dublin 2010-08-14 +3315328 Laurel Lodge Laurel Lodge 53.37917 -6.36583 S HSE IE L 07 0 19 Europe/Dublin 2010-08-14 +3315329 Coolmine House Coolmine House 53.38944 -6.39528 S HSEC IE L 07 0 34 Europe/Dublin 2010-08-14 +3315330 Hansfield House Hansfield House 53.39611 -6.41833 S HSEC IE L 07 0 50 Europe/Dublin 2010-08-14 +3315331 Phibblestown Phibblestown 53.40056 -6.43444 P PPL IE L 07 0 66 Europe/Dublin 2010-08-14 +3315332 Hartstown Hartstown 53.39306 -6.42694 P PPL IE L 07 0 56 Europe/Dublin 2010-08-14 +3315333 Damastown House Damastown House 53.41222 -6.4275 S HSEC IE L 07 0 60 Europe/Dublin 2010-08-14 +3315334 Mulhurddart Mulhurddart 53.40361 -6.40111 P PPL IE L 07 0 43 Europe/Dublin 2010-08-14 +3315335 Annfield Annfield 53.37444 -6.40556 P PPL IE L 07 0 35 Europe/Dublin 2010-08-14 +3315336 Ballyowen House Ballyowen House 53.35139 -6.39306 S HSEC IE L 07 0 38 Europe/Dublin 2010-08-14 +3315337 Whitestown Whitestown 53.39861 -6.40056 P PPL IE L 07 0 40 Europe/Dublin 2010-08-14 +3315338 Beech Park House Beech Park House 53.38361 -6.42833 S HSEC IE L 07 0 52 Europe/Dublin 2010-08-14 +3315339 Luttrellstown Luttrellstown 53.37389 -6.43222 P PPL IE L 07 0 38 Europe/Dublin 2010-08-14 +3315340 Knockmaroon House Knockmaroon House 53.365 -6.36694 S HSEC IE L 07 0 21 Europe/Dublin 2010-08-14 +3315341 Summerton Summerton 53.36639 -6.4075 P PPL IE L 07 0 32 Europe/Dublin 2010-08-14 +3315342 Saint Edmondsbury House Saint Edmondsbury House 53.36222 -6.40278 S HSEC IE L 07 0 32 Europe/Dublin 2010-08-14 +3315343 Fonthill House Fonthill House 53.36028 -6.40917 S HSEC IE L 07 0 34 Europe/Dublin 2010-08-14 +3315344 Clanaboy House Clanaboy House 53.36528 -6.4425 S HSEC IE L 07 0 44 Europe/Dublin 2010-08-14 +3315345 Esker Esker 53.35056 -6.43806 P PPL IE L 07 0 48 Europe/Dublin 2010-08-14 +3315346 Griffeen River Griffeen River 53.35889 -6.45333 H STM IE L 07 0 43 Europe/Dublin 2010-08-14 +3315347 Weston Park Weston Park 53.34917 -6.48167 S EST IE L 07 0 59 Europe/Dublin 2010-08-14 +3315348 Weston Lodge Weston Lodge 53.3575 -6.48278 S HSE IE L 07 0 52 Europe/Dublin 2010-08-14 +3315360 Summerseat Summerseat 53.40722 -6.44722 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +3315361 Stirling House Stirling House 53.405 -6.45611 S HSEC IE L 21 0 77 Europe/Dublin 2010-08-14 +3315362 Hilltown House Hilltown House 53.39667 -6.46222 S HSEC IE L 21 0 76 Europe/Dublin 2010-08-14 +3315363 Milestown Milestown 53.40389 -6.5025 P PPL IE L 21 0 80 Europe/Dublin 2010-08-14 +3315364 Rusk House Rusk House 53.41028 -6.47111 S HSEC IE L 21 0 77 Europe/Dublin 2010-08-14 +3315365 Hamwood House Hamwood House 53.41278 -6.51444 S HSEC IE L 21 0 81 Europe/Dublin 2010-08-14 +3315366 Killarkin House Killarkin House 53.40694 -6.53167 S HSEC IE L 21 0 76 Europe/Dublin 2010-08-14 +3315367 Rathleek Rathleek 53.39361 -6.51333 P PPL IE L 21 0 76 Europe/Dublin 2010-08-14 +3315368 Ravensdale Ravensdale 53.39083 -6.52778 S EST IE L 12 0 61 Europe/Dublin 2010-08-14 +3315369 Grangewilliam House Grangewilliam House 53.37361 -6.55667 S HSEC IE L 12 0 68 Europe/Dublin 2010-08-14 +3315370 Confey Abbey Confey Abbey 53.38 -6.48361 S MSTY IE L 12 0 66 Europe/Dublin 2010-08-14 +3315371 Collinstown House Collinstown House 53.37556 -6.51778 S HSEC IE L 12 0 55 Europe/Dublin 2010-08-14 +3315372 Ryevale House Ryevale House 53.37167 -6.49556 S HSEC IE L 12 0 55 Europe/Dublin 2010-08-14 +3315373 Kilwoghan Kilwoghan 53.35611 -6.55444 P PPL IE L 12 0 67 Europe/Dublin 2010-08-14 +3315374 Pike Bridge Pike Bridge 53.37806 -6.55917 L LCTY IE L 12 0 69 Europe/Dublin 2010-08-14 +3315375 Owenstown House Owenstown House 53.40389 -6.57556 S HSEC IE L 21 0 71 Europe/Dublin 2010-08-14 +3315376 Killadoon Killadoon 53.32444 -6.56333 P PPL IE L 12 0 57 Europe/Dublin 2010-08-14 +3315377 Donagheumper Donagheumper 53.34472 -6.52778 P PPL IE L 12 0 52 Europe/Dublin 2010-08-14 +3315378 Ballyfermot Ballyfermot 53.34528 -6.35889 P PPL IE L 07 0 24 Europe/Dublin 2010-08-14 +3315403 Coill Dubh Coill Dubh 53.29722 -6.82222 T HLL IE L 12 0 93 86 Europe/Dublin 2010-08-14 +3315404 Templeogue Templeogue Templeogue 53.29528 -6.30889 P PPLX IE L 07 0 76 Europe/Dublin 2010-11-05 +3315405 Grange Grange 53.03389 -6.06472 S EST IE L 31 0 1 Europe/Dublin 2010-08-14 +3315406 Grange North Grange North 53.04944 -6.05972 S EST IE L 31 0 5 Europe/Dublin 2010-08-14 +3315407 Dunranhill Dunranhill 53.05333 -6.12972 S EST IE L 31 0 269 Europe/Dublin 2010-08-14 +3315408 Tithewer Tithewer 53.08472 -6.17556 S EST IE L 31 0 268 Europe/Dublin 2010-08-14 +3315409 Kilquade House Kilquade House 53.10167 -6.09972 S HSEC IE L 31 0 74 Europe/Dublin 2010-08-14 +3315410 The Giants Cut The Giants Cut 53.00194 -6.33139 V FRST IE L 31 0 286 Europe/Dublin 2010-08-14 +3315411 Upper Lake Upper Lake An Loch Uachtair,Upper Lake 53.00139 -6.36194 H LK IE IE L 31 0 288 Europe/Dublin 2010-08-14 +3315412 Lower Lake Lower Lake Loch na Peiste,Loch na Péiste,Lower Lake 53.00528 -6.3375 H LK IE IE L 31 0 311 Europe/Dublin 2010-08-14 +3315413 Stump of the Castle Stump of the Castle 52.94861 -6.22778 L LCTY IE L 31 0 139 Europe/Dublin 2010-08-14 +3315414 Caran Caran 52.92917 -6.32278 T HLL IE L 31 0 236 153 Europe/Dublin 2010-08-14 +3315415 Lockstown Lower Lockstown Lower 53.08194 -6.53917 P PPL IE L 31 0 244 Europe/Dublin 2010-08-14 +3315416 Lockstown Upper Lockstown Upper 53.06667 -6.53278 P PPLL IE L 31 0 262 Europe/Dublin 2010-08-14 +3315417 Graney River Graney River 52.90806 -6.83833 H STM IE L 12 0 155 Europe/Dublin 2010-08-14 +3315418 Woodlands Woodlands 52.91778 -6.85611 S EST IE L 12 0 140 Europe/Dublin 2010-08-14 +3315419 Salisbury House Salisbury House 53.01194 -6.9925 S HSEC IE L 12 0 67 Europe/Dublin 2010-08-14 +3315420 Derry Derry 53.02028 -7.25 P PPLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3315421 Dysart Dysart 53.02111 -7.23222 P PPLL IE L 15 0 152 Europe/Dublin 2010-08-14 +3315422 Carrig Carrig 53.15167 -6.51806 P PPLL IE L 31 0 232 Europe/Dublin 2010-08-14 +3315423 Lugnagun Great Lugnagun Great 53.15 -6.47556 P PPLL IE L 31 0 304 Europe/Dublin 2010-08-14 +3315424 Coronation Plantation Coronation Plantation 53.15556 -6.37639 S EST IE L 31 0 392 Europe/Dublin 2010-08-14 +3315425 Cloon Cloon 53.19 -6.24583 P PPLL IE L 31 0 248 Europe/Dublin 2010-08-14 +3315426 Crone Crone 53.16472 -6.21722 P PPLL IE L 31 0 188 Europe/Dublin 2010-08-14 +3315427 Calary Upper Calary Upper 53.12667 -6.16444 P PPLL IE L 31 0 310 Europe/Dublin 2010-08-14 +3315428 Calary Lower Calary Lower 53.13861 -6.14472 P PPLL IE L 31 0 269 Europe/Dublin 2010-08-14 +3315429 Shankill Castle Shankill Castle 53.22694 -6.14083 S CSTL IE L 07 0 48 Europe/Dublin 2010-08-14 +3315430 Oldbawn Oldbawn 53.27556 -6.3675 P PPL IE L 07 0 99 Europe/Dublin 2010-08-14 +3315431 Slade Slade 53.26667 -6.44667 P PPLL IE L 07 0 198 Europe/Dublin 2010-08-14 +3315432 Fox and Geese Fox and Geese 53.32361 -6.35583 P PPL IE L 07 0 62 Europe/Dublin 2010-08-14 +3315433 Farmhill Farmhill 53.29389 -6.5625 S EST IE L 12 0 83 Europe/Dublin 2010-08-14 +3315434 Easton Easton 53.36889 -6.50944 P PPLL IE L 12 0 52 Europe/Dublin 2010-08-14 +3315435 Reeves Reeves 53.31278 -6.55778 P PPLL IE L 12 0 58 Europe/Dublin 2010-08-14 +3315436 Prospect Prospect 53.27222 -6.64972 S EST IE L 12 0 87 Europe/Dublin 2010-08-14 +3315437 Dysart Dysart 53.38917 -6.80611 P PPLL IE L 12 0 88 Europe/Dublin 2010-08-14 +3315438 Peatland Experimental Station Peatland Experimental Station 53.27444 -6.95528 S STNE IE L 12 0 72 Europe/Dublin 2010-08-14 +3315439 Derries Derries 53.31139 -7.01806 P PPLL IE L 23 0 83 Europe/Dublin 2010-08-14 +3315440 Lough Lough 53.12417 -7.19583 P PPLL IE L 15 0 107 Europe/Dublin 2010-08-14 +3315441 Rosahane Bridge Rosahane Bridge 52.89083 -6.39 L LCTY IE L 31 0 255 Europe/Dublin 2010-08-14 +3315442 Ballyteige Ballyteige 52.88944 -6.41167 L LCTY IE L 31 0 286 Europe/Dublin 2010-08-14 +3315454 Avery Island Avery Island 53.30389 -9.89194 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315455 Lough Nageeron Lough Nageeron 53.32028 -9.87278 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315456 Bunnacliffa Lough Bunnacliffa Lough 53.32889 -9.88389 H LK IE C 10 0 3 Europe/Dublin 2010-08-14 +3315457 Moyrus Moyrus 53.34 -9.86972 P PPL IE C 10 0 4 Europe/Dublin 2010-08-14 +3315458 Dooveher Dooveher 53.33222 -9.88611 P PPLL IE C 10 0 3 Europe/Dublin 2010-08-14 +3315459 Inishbigger Inishbigger 53.3475 -9.89028 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315460 Doonpatrick Doonpatrick 53.27194 -10.01389 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315461 Doolick Doolick 53.27639 -9.97917 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315462 Mile Rock Mile Rock 53.29444 -10.03 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315463 Skerdmore Skerdmore 53.25722 -10.00528 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315464 Freaghillaun Freaghillaun 53.35194 -9.90389 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315465 Inishtreh Inishtreh 53.36917 -9.89639 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315466 Oghly Island Oghly Island 53.38611 -9.88167 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315467 Mutton Island Mutton Island 53.36806 -9.97194 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315468 Lough Nalawney Lough Nalawney 53.40917 -9.96222 H LK IE C 10 0 74 Europe/Dublin 2010-08-14 +3315469 Lough Nasoodery Lough Nasoodery 53.42528 -9.98472 H LK IE C 10 0 67 Europe/Dublin 2010-08-14 +3315470 Lough Naweelaun Lough Naweelaun 53.42722 -9.93417 H LK IE C 10 0 51 Europe/Dublin 2010-08-14 +3315471 Conga Lough Conga Lough 53.45694 -9.94194 H LK IE C 10 0 86 Europe/Dublin 2010-08-14 +3315472 Cloonagat Lough Cloonagat Lough 53.45917 -9.96917 H LK IE C 10 0 92 Europe/Dublin 2010-08-14 +3315473 Lough Fadda Lough Fadda 53.46333 -9.88583 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315474 Blackhaven Blackhaven 53.40389 -9.89778 H COVE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315475 Aillenacally Aillenacally 53.42167 -9.90556 P PPLL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315476 Toombeola Toombeola 53.43611 -9.87194 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3315477 Letterdife House Letterdife House 53.40889 -9.91861 S HSEC IE C 10 0 2 Europe/Dublin 2010-08-14 +3315478 Kosroe Lough Kosroe Lough 53.40278 -9.86778 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315479 Lough Rannaghaun Lough Rannaghaun 53.39861 -9.99639 H LK IE C 10 0 21 Europe/Dublin 2010-08-14 +3315480 Malivey Malivey 53.38806 -9.99972 P PPLL IE C 10 0 3 Europe/Dublin 2010-08-14 +3315481 Lough Namanawaun Lough Namanawaun 53.39139 -10.00694 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315482 Maumeen Lough Maumeen Lough 53.40444 -10.0225 H LK IE C 10 0 10 Europe/Dublin 2010-08-14 +3315483 Barrowen Lough Barrowen Lough 53.42139 -10.0225 H LK IE C 10 0 20 Europe/Dublin 2010-08-14 +3315484 Endaghkeeragh Lough Endaghkeeragh Lough 53.41972 -10.01361 H LK IE C 10 0 29 Europe/Dublin 2010-08-14 +3315485 Earawalla Point Earawalla Point 53.37444 -9.97611 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315486 Callow Callow 53.40167 -10.03194 P PPL IE C 10 0 6 Europe/Dublin 2010-08-14 +3315487 Inishdawros Inishdawros 53.40111 -10.04194 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315488 Wherane Island Wherane Island 53.39528 -10.0675 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315489 Illaunurra Illaunurra 53.39556 -10.12389 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315490 Carrickacummer Carrickacummer 53.39028 -10.12167 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315491 Doon Hill Doon Hill 53.41583 -10.12 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3315492 Aillebrack Lough Aillebrack Lough 53.42278 -10.12611 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315493 Truska Lough Truska Lough 53.43778 -10.11361 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315494 Lough Nacorrussaun Lough Nacorrussaun 53.43528 -10.03639 H LK IE C 10 0 5 Europe/Dublin 2010-08-14 +3315495 Lough Emlaghnabehy Lough Emlaghnabehy 53.44639 -10.04472 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315496 Cromwells Sound Cromwells Sound 53.40556 -10.19667 H CHNM IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315497 Chapel Island Chapel Island 53.40167 -10.20444 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315498 Carrickarone Carrickarone 53.42111 -10.20278 T RKS IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315499 Lough Beaghcauneen Lough Beaghcauneen 53.45806 -9.98639 H LK IE C 10 0 73 Europe/Dublin 2010-08-14 +3315500 Derrywaking Loughs Derrywaking Loughs 53.475 -9.9875 H LKS IE C 10 0 71 Europe/Dublin 2010-08-14 +3315501 Derrylea Lough Derrylea Lough 53.48083 -9.94361 H LK IE C 10 0 128 Europe/Dublin 2010-08-14 +3315502 Lough Fadda Lough Fadda 53.4425 -10.00361 H LK IE C 10 0 47 Europe/Dublin 2010-08-14 +3315503 Lough Agh Lough Agh 53.43833 -9.98861 H LK IE C 10 0 69 Europe/Dublin 2010-08-14 +3315504 Salt Lake Salt Lake 53.47833 -10.01361 H LK IE C 10 0 51 Europe/Dublin 2010-08-14 +3315505 Lough Usk Lough Usk 53.46722 -10.05833 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315506 Lough Athola Lough Athola 53.47389 -10.05639 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315507 Lough Nambrackkeagh Lough Nambrackkeagh 53.4975 -10.00111 H LK IE C 10 0 74 Europe/Dublin 2010-08-14 +3315508 Cregg Lough Cregg Lough 53.49667 -9.93917 H LK IE C 10 0 71 Europe/Dublin 2010-08-14 +3315509 Ardbear Bridge Ardbear Bridge 53.47306 -10.01806 L LCTY IE C 10 0 28 Europe/Dublin 2010-08-14 +3315510 Ardbear House Ardbear House 53.47917 -10.02139 S HSEC IE C 10 0 46 Europe/Dublin 2010-08-14 +3315511 Malmore Malmore 53.48111 -10.02889 T HLL IE C 10 0 50 12 Europe/Dublin 2010-08-14 +3315512 Drinagh Drinagh 53.47861 -10.05972 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3315513 Curhownagh Curhownagh 53.47139 -10.07667 P PPLL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315514 Errislannan Errislannan 53.48472 -10.08583 P PPL IE C 10 0 9 Europe/Dublin 2010-08-14 +3315515 The Manor The Manor 53.48222 -10.07972 S EST IE C 10 0 1 Europe/Dublin 2010-08-14 +3315516 Gortrummagh Gortrummagh 53.49556 -10.06556 P PPLL IE C 10 0 65 Europe/Dublin 2010-08-14 +3315517 Belleek Belleek 53.49833 -10.0925 P PPLL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315518 Derreen Derreen 53.50361 -10.06389 P PPLL IE C 10 0 88 Europe/Dublin 2010-08-14 +3315519 Glenbrickeen Lough Glenbrickeen Lough 53.51083 -10.015 H LK IE C 10 0 89 Europe/Dublin 2010-08-14 +3315520 Shanakeever Lough Shanakeever Lough 53.50444 -10.00528 H LK IE C 10 0 77 Europe/Dublin 2010-08-14 +3315521 Lough Tanny Lough Tanny 53.52833 -10.03833 H LK IE C 10 0 87 Europe/Dublin 2010-08-14 +3315522 Boolard Island Boolard Island 53.51056 -10.06639 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315523 Kill Kill 53.51 -10.09472 P PPL IE C 10 0 58 Europe/Dublin 2010-08-14 +3315524 Ardmore Ardmore 53.50333 -10.12222 T PEN IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315525 Knockbaun House Knockbaun House 53.51639 -10.12 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3315526 Kingstown Bay Kingstown Bay 53.51583 -10.12556 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315527 Leagaun Leagaun 53.52528 -10.12472 P PPLL IE C 10 0 35 Europe/Dublin 2010-08-14 +3315528 Carricklahan East Carricklahan East 53.49306 -10.14056 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315529 Carrickrana Rocks Carrickrana Rocks 53.48917 -10.15833 T RKS IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315530 Hog Island Hog Island 53.51917 -10.13639 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315531 Croaghat Lough Croaghat Lough 53.47139 -9.92917 H LK IE C 10 0 66 Europe/Dublin 2010-08-14 +3315532 Loughanillaun Loughanillaun 53.46917 -9.91361 H LK IE C 10 0 37 Europe/Dublin 2010-08-14 +3315533 Island Lough Island Lough 53.47528 -9.93194 H LK IE C 10 0 75 Europe/Dublin 2010-08-14 +3315534 Enlaghdauroe Enlaghdauroe 53.47639 -9.89917 P PPLL IE C 10 0 96 Europe/Dublin 2010-08-14 +3315535 Lough Auna Lough Auna 53.51083 -9.98333 H LK IE C 10 0 84 Europe/Dublin 2010-08-14 +3315536 Lough Nahillion Lough Nahillion 53.515 -9.92083 H LK IE C 10 0 227 Europe/Dublin 2010-08-14 +3315537 Lough Naguroge Lough Naguroge 53.52472 -9.96556 H LK IE C 10 0 104 Europe/Dublin 2010-08-14 +3315538 Cregg Cregg 53.50611 -9.93833 T HLL IE C 10 0 294 121 Europe/Dublin 2010-08-14 +3315539 Tievebaun Tievebaun 53.51278 -9.90972 T MT IE C 10 0 307 269 Europe/Dublin 2010-08-14 +3315540 Crockaunhiggeen Crockaunhiggeen 53.52361 -9.93417 T HLL IE C 10 0 239 183 Europe/Dublin 2010-08-14 +3315541 Bealnascalpa Bealnascalpa 53.53306 -9.92167 T HLL IE C 10 0 231 273 Europe/Dublin 2010-08-14 +3315542 Lough Anillaun Lough Anillaun 53.55472 -10.09 H LK IE C 10 0 36 Europe/Dublin 2010-08-14 +3315543 Lough Natawny Lough Natawny 53.56667 -10.08583 H LK IE C 10 0 2 Europe/Dublin 2010-08-14 +3315544 Courhoor Lough Courhoor Lough 53.54639 -10.11806 H LK IE C 10 0 79 Europe/Dublin 2010-08-14 +3315545 Barnahllia Lough Barnahllia Lough 53.53278 -10.12111 H LK IE C 10 0 35 Europe/Dublin 2010-08-14 +3315546 Fahy Lough Fahy Lough 53.53083 -10.15833 H LK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315547 Aughrusbeg Lough Aughrusbeg Lough 53.55472 -10.175 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315548 Lough Atalia Lough Atalia 53.55472 -10.15472 H LK IE C 10 0 1 Europe/Dublin 2010-08-14 +3315549 Aughrus More Aughrus More 53.54667 -10.17167 P PPL IE C 10 0 1 Europe/Dublin 2010-08-14 +3315550 Emlagh Emlagh 53.55417 -10.13444 P PPL IE C 10 0 14 Europe/Dublin 2010-08-14 +3315551 Carrickarone Carrickarone 53.54222 -10.26472 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315552 Ferroonagh West Ferroonagh West 53.56139 -10.19194 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315553 Dog Island Dog Island 53.56833 -10.16583 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315554 Roeillaun Roeillaun 53.56972 -10.15806 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315555 Shinnanagh Shinnanagh 53.53389 -10.05278 L LCTY IE C 10 0 143 Europe/Dublin 2010-08-14 +3315556 Bundouglas Bundouglas 53.56667 -10.06972 P PPLL IE C 10 0 1 Europe/Dublin 2010-08-14 +3315557 Braadillaun Braadillaun 53.58778 -10.03972 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315558 Shanboolard Hall Shanboolard Hall 53.56278 -10.05806 S HSEC IE C 10 0 34 Europe/Dublin 2010-08-14 +3315559 Garraunbaun Lough Garraunbaun Lough 53.54778 -10.0175 H LK IE C 10 0 21 Europe/Dublin 2010-08-14 +3315560 Ross House Ross House 53.56278 -10.0175 S HSEC IE C 10 0 1 Europe/Dublin 2010-08-14 +3315561 Traheen Bridge Traheen Bridge 53.54472 -9.97806 L LCTY IE C 10 0 25 Europe/Dublin 2010-08-14 +3315562 Traheen River Traheen River 53.54694 -9.98167 H STM IE C 10 0 25 Europe/Dublin 2010-08-14 +3315563 Rosteague House Rosteague House 53.54889 -9.975 S HSEC IE C 10 0 40 Europe/Dublin 2010-08-14 +3315564 Barnaderg Bay Barnaderg Bay 53.55528 -9.96833 H BAY IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315565 Keelkyle Bridge Keelkyle Bridge 53.55056 -9.96 L LCTY IE C 10 0 25 Europe/Dublin 2010-08-14 +3315566 Crockaunroe Crockaunroe 53.55444 -10.02722 P PPL IE C 10 0 18 Europe/Dublin 2010-08-14 +3315567 Bencullagh Bencullagh 53.51889 -9.87556 T MT IE C 10 0 635 311 Europe/Dublin 2010-08-14 +3315568 Knockbrack Knockbrack 53.54417 -9.88833 T MT IE C 10 0 426 166 Europe/Dublin 2010-08-14 +3315569 Benbaun Benbaun 53.54722 -9.8625 T MT IE C 10 0 480 439 Europe/Dublin 2010-08-14 +3315570 Kylemore Abbey Kylemore Abbey Kylemore Abbey 53.56306 -9.89583 S MSTY IE C 10 0 54 Europe/Dublin 2010-08-14 +3315571 Pollacappul Lough Pollacappul Lough 53.55806 -9.87306 H LK IE C 10 0 149 Europe/Dublin 2010-08-14 +3315572 Tullywee Bridge Tullywee Bridge 53.56139 -9.91722 P PPLL IE C 10 0 42 Europe/Dublin 2010-08-14 +3315573 Bunnaboghee Lough Bunnaboghee Lough 53.55944 -9.93472 H LK IE C 10 0 32 Europe/Dublin 2010-08-14 +3315574 Currywongaun Currywongaun 53.56639 -9.92222 P PPLL IE C 10 0 42 Europe/Dublin 2010-08-14 +3315575 Shanaveag Bridge Shanaveag Bridge 53.57389 -9.93694 L LCTY IE C 10 0 41 Europe/Dublin 2010-08-14 +3315576 Greenmount House Greenmount House 53.58333 -9.94222 S HSEC IE C 10 0 34 Europe/Dublin 2010-08-14 +3315577 Altnagaighera Altnagaighera 53.58194 -9.87889 T MT IE C 10 0 545 357 Europe/Dublin 2010-08-14 +3315578 Tullycross Tullycross 53.58833 -9.96194 P PPL IE C 10 0 12 Europe/Dublin 2010-08-14 +3315579 Benchoona Benchoona 53.59083 -9.86944 T MT IE C 10 0 584 344 Europe/Dublin 2010-08-14 +3315580 Letter More Letter More 53.57889 -10.01583 P PPLL IE C 10 0 85 Europe/Dublin 2010-08-14 +3315581 Ardnagreevagh Ardnagreevagh 53.60472 -10.01028 P PPL IE C 10 0 56 Europe/Dublin 2010-08-14 +3315582 Shanvallybeg Shanvallybeg 53.61889 -9.98861 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315583 Pigeon Cove Pigeon Cove 53.61917 -10.28694 H COVE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315584 Lough Bofin Lough Bofin 53.62028 -10.22806 H LK IE C 10 0 9 Europe/Dublin 2010-08-14 +3315585 Gubatarraghna Gubatarraghna 53.63389 -10.2275 T ISL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315586 Lough Fawna Lough Fawna 53.62111 -10.21389 H LK IE C 10 0 3 Europe/Dublin 2010-08-14 +3315587 Port Island Port Island 53.60972 -10.21306 T ISL IE C 10 0 4 Europe/Dublin 2010-08-14 +3315588 Bunnamullen Bay Bunnamullen Bay 53.63194 -10.21056 H BAY IE C 10 0 3 Europe/Dublin 2010-08-14 +3315589 Gubaranduff Gubaranduff 53.62917 -10.17722 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315590 Lyon Head Lyon Head 53.61306 -10.15778 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315591 Carrickabullog Rocks Carrickabullog Rocks 53.61306 -9.925 T RKS IE C 10 0 -9999 Europe/Dublin 1999-03-04 +3315592 Illaunmore Illaunmore 53.6175 -9.88972 T RK IE C 10 0 -9999 Europe/Dublin 1999-03-04 +3315593 Carrickboorla Carrickboorla 53.69028 -10.13361 T RK IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315594 Dromore Head Dromore Head 53.69778 -10.1375 T CAPE IE C 10 0 6 Europe/Dublin 2010-08-14 +3315595 Bunnashirra Bunnashirra 53.71278 -10.12028 T CAPE IE C 10 0 51 Europe/Dublin 2010-08-14 +3315596 Gubagarlieve Gubagarlieve 53.71028 -10.08222 T CAPE IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315597 Gubnagawny Gubnagawny 53.69944 -10.08861 T PT IE C 10 0 -9999 Europe/Dublin 2010-08-14 +3315598 Govern Island Govern Island 53.655 -9.93889 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315599 Killary Lodge Killary Lodge 53.67111 -9.87667 S HSE IE C 20 0 61 Europe/Dublin 2010-08-14 +3315600 Barnabaun Point Barnabaun Point 53.69056 -9.91861 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315601 Bunanakee River Bunanakee River 53.6375 -9.87194 H STM IE C 20 0 52 Europe/Dublin 2010-08-14 +3315602 Killeen Killeen 53.71306 -9.88361 P PPL IE C 20 0 70 Europe/Dublin 2010-08-14 +3315603 Cloonlaur Cloonlaur 53.71611 -9.89028 P PPLL IE C 20 0 70 Europe/Dublin 2010-08-14 +3315604 Aillemore Aillemore 53.70833 -9.87083 P PPL IE C 20 0 81 Europe/Dublin 2010-08-14 +3315605 Cloghaun Cloghaun 53.71889 -9.91361 T RK IE C 20 0 -9999 Europe/Dublin 1999-03-04 +3315606 Carrickmalagh Carrickmalagh 53.71278 -9.93722 T RK IE C 20 0 -9999 Europe/Dublin 1999-03-04 +3315607 Cross Point Cross Point 53.71194 -9.91167 T PT IE C 20 0 14 Europe/Dublin 2010-08-14 +3315608 Cross Lough Cross Lough 53.70889 -9.90528 H LK IE C 20 0 36 Europe/Dublin 2010-08-14 +3315609 Lough Cahasy Lough Cahasy 53.73889 -9.88694 H LK IE C 20 0 13 Europe/Dublin 2010-08-14 +3315610 Lough Doo Lough Doo 53.75472 -9.89028 H LK IE C 20 0 3 Europe/Dublin 2010-08-14 +3315611 Lough Baun Lough Baun 53.74972 -9.89139 H LK IE C 20 0 7 Europe/Dublin 2010-08-14 +3315612 Kinatevdilla Kinatevdilla 53.78861 -10.05444 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315613 Glassillangaraltagh Glassillangaraltagh 53.80472 -10.045 T PT IE C 20 0 111 Europe/Dublin 2010-08-14 +3315614 Alnamarnagh Alnamarnagh 53.81722 -9.99667 T CAPE IE C 20 0 55 Europe/Dublin 2010-08-14 +3315615 Carrickfadda Carrickfadda 53.82694 -9.98444 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315616 Lecknacurra Lecknacurra 53.82806 -9.98056 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315617 Ballytoohy Ballytoohy 53.815 -9.97778 P PPLL IE C 20 0 35 Europe/Dublin 2010-08-14 +3315618 Portlea Portlea 53.81417 -9.9625 H COVE IE C 20 0 3 Europe/Dublin 2010-08-14 +3315619 Knocknaveen Knocknaveen 53.8025 -9.97639 T HLL IE C 20 0 222 53 Europe/Dublin 2010-08-14 +3315620 Maum Maum 53.81139 -9.96889 P PPLL IE C 20 0 3 Europe/Dublin 2010-08-14 +3315621 Capnagower Capnagower 53.80833 -9.95389 P PPLL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315622 Doon Cloak Doon Cloak 53.79583 -9.95889 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315623 Portnakilly Portnakilly 53.79333 -9.98806 P PPL IE C 20 0 30 Europe/Dublin 2010-08-14 +3315624 Craigmore Craigmore 53.79222 -10.00583 P PPLL IE C 20 0 71 Europe/Dublin 2010-08-14 +3315625 Whiteheather Cottage Whiteheather Cottage 53.86444 -9.90389 S HSE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315626 Gubacarrigan Gubacarrigan 53.86222 -9.88139 T CAPE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315627 Altapheebera Altapheebera 53.8675 -9.85056 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315628 Ard Loughs Ard Loughs 53.87806 -9.87111 H LKS IE C 20 0 238 Europe/Dublin 2010-08-14 +3315629 Lough Cullydoo Lough Cullydoo 53.90583 -9.86167 H LK IE C 20 0 365 Europe/Dublin 2010-08-14 +3315630 Inishoo Inishoo 53.855 -9.67111 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315631 Inishgowla Inishgowla 53.85556 -9.65611 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315632 Inishlaughil Inishlaughil 53.85806 -9.63389 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315633 Inishturk Inishturk 53.85417 -9.61139 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315634 Inishnakillew Inishnakillew 53.84778 -9.61583 T ISL IE C 20 0 1 Europe/Dublin 2010-08-14 +3315635 Killeennabausty Killeennabausty 53.88556 -9.98333 L LCTY IE C 20 0 77 Europe/Dublin 2010-08-14 +3315636 Glassillaun Glassillaun 53.88583 -9.92056 P PPL IE C 20 0 51 Europe/Dublin 2010-08-14 +3315637 Mweewillin Mweewillin 53.89389 -9.92 P PPL IE C 20 0 77 Europe/Dublin 2010-08-14 +3315638 Loughaun Loughaun 53.90972 -9.89333 H LK IE C 20 0 176 Europe/Dublin 2010-08-14 +3315639 Knockmore Knockmore 53.92472 -9.99472 T MT IE C 20 0 341 153 Europe/Dublin 2010-08-14 +3315640 Belfarsad Belfarsad 53.91889 -9.90639 L LCTY IE C 20 0 59 Europe/Dublin 2010-08-14 +3315641 Sraheens Sraheens 53.91778 -9.95139 P PPL IE C 20 0 14 Europe/Dublin 2010-08-14 +3315642 Achill Sound Achill Sound Achill Sound 53.92778 -9.93917 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +3315643 Portnahally Bay Portnahally Bay Ashleain Bay,Portnahally Bay 53.9 -10.00167 H BAY IE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315644 Glendarary House Glendarary House 53.92778 -9.94694 S HSEC IE C 20 0 1 Europe/Dublin 2010-08-14 +3315645 Sraheens Lough Sraheens Lough 53.93306 -9.95583 H LK IE C 20 0 29 Europe/Dublin 2010-08-14 +3315646 Dooega River Dooega River 53.91806 -10.02417 H STM IE C 20 0 21 Europe/Dublin 2010-08-14 +3315647 Pollbaun Point Pollbaun Point 53.91528 -10.02333 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315648 Doonty Eighter Doonty Eighter 53.91056 -10.04583 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315649 Mweelin Mweelin 53.94194 -10.02389 P PPLL IE C 20 0 110 Europe/Dublin 2010-08-14 +3315650 Mweelin Lough Mweelin Lough 53.94222 -10.00139 H LK IE C 20 0 78 Europe/Dublin 2010-08-14 +3315651 Dookinelly Dookinelly 53.96333 -10.04722 P PPLL IE C 20 0 111 Europe/Dublin 2010-08-14 +3315652 Trawmore Sand Trawmore Sand 53.96556 -10.05944 T BCH IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315653 Srahillbeg Lough Srahillbeg Lough 53.97056 -10.04861 H LK IE C 20 0 73 Europe/Dublin 2010-08-14 +3315654 Glennanaff Glennanaff 53.93694 -10.05472 T CAPE IE C 20 0 120 Europe/Dublin 2010-08-14 +3315655 Minaun Heights Minaun Heights 53.95778 -10.02 S OBPT IE C 20 0 164 Europe/Dublin 2010-08-14 +3315656 Lough Nancaneen Lough Nancaneen 53.97306 -9.98889 H LK IE C 20 0 65 Europe/Dublin 2010-08-14 +3315657 Pollagh Pollagh 53.97028 -10.10806 P PPL IE C 20 0 28 Europe/Dublin 2010-08-14 +3315658 Carrickmore Carrickmore 53.96139 -10.15583 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315659 Gubalennaun More Gubalennaun More 53.95889 -10.11583 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315660 Corrymore House Corrymore House 53.97167 -10.16056 S HSEC IE C 20 0 13 Europe/Dublin 2010-08-14 +3315661 Lough Acorrymore Lough Acorrymore 53.97972 -10.17028 H LK IE C 20 0 89 Europe/Dublin 2010-08-14 +3315662 Keem Strand Keem Strand 53.96528 -10.19278 T BCH IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315663 Benmore Benmore 53.96917 -10.21833 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315664 Little Saddle Head Little Saddle Head 53.97333 -10.23361 T CAPE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315665 Priest Rock Priest Rock 53.97222 -10.2625 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315666 Carrickakin Carrickakin 53.97083 -10.27278 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315667 Gubfoheratawy Gubfoheratawy 53.99889 -10.18778 T PT IE C 20 0 421 Europe/Dublin 2010-08-14 +3315668 Gubnakinneora Point Gubnakinneora Point 54.00667 -10.14583 T PT IE C 20 0 35 Europe/Dublin 2010-08-14 +3315669 Askilgubroenacoragh Askilgubroenacoragh 54.01083 -10.18111 T PT IE C 20 0 35 Europe/Dublin 2010-08-14 +3315670 Gubnahooeycam Gubnahooeycam 54.0075 -10.09861 T PT IE C 20 0 149 Europe/Dublin 2010-08-14 +3315671 Loughs Nakeeroge Loughs Nakeeroge 54.00056 -10.15556 H LKS IE C 20 0 77 Europe/Dublin 2010-08-14 +3315672 Carricknagalliaghdoo Carricknagalliaghdoo 54.01917 -10.0775 T RK IE C 20 0 111 Europe/Dublin 2010-08-14 +3315673 Doonty Doonty 54.02361 -10.04944 T PT IE C 20 0 73 Europe/Dublin 2010-08-14 +3315674 Bellanasally Bellanasally 53.99778 -10.03833 P PPL IE C 20 0 70 Europe/Dublin 2010-08-14 +3315675 Caraun Point Caraun Point 54.01778 -9.98778 T PT IE C 20 0 12 Europe/Dublin 2010-08-14 +3315676 Lough Narnbrack Lough Narnbrack 54.01139 -9.97806 H LK IE C 20 0 13 Europe/Dublin 2010-08-14 +3315677 Lough Gall Lough Gall 54.0075 -9.96806 H LK IE C 20 0 9 Europe/Dublin 2010-08-14 +3315678 Lough Doo Lough Doo 54.01611 -9.96667 H LK IE C 20 0 5 Europe/Dublin 2010-08-14 +3315679 Srahill Lough Srahill Lough 54.00806 -9.94833 H LK IE C 20 0 1 Europe/Dublin 2010-08-14 +3315680 Valley Valley 54.01306 -9.96111 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3315681 Ship Point Ship Point 54.00944 -9.94306 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315682 Dooniver Strand Dooniver Strand 53.99972 -9.93833 T BCH IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315683 Bulls Mouth Bulls Mouth 53.99389 -9.92611 H CHNM IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315684 Roeillan Roeillan 53.97972 -9.94667 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315685 Bunacurry Harbour Bunacurry Harbour 53.97222 -9.95583 H HBR IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315686 Rinnaweeloge Rinnaweeloge 53.98389 -9.91667 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315687 Corraun Point Corraun Point 54.01 -9.89306 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315688 Gubbiacorraun Gubbiacorraun 54.01333 -9.89861 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315689 Gubardascanaveen Gubardascanaveen 53.96222 -9.915 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315690 Mweelaun Point Mweelaun Point 53.9675 -9.8725 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315691 Glassillan Glassillan 53.99278 -9.87056 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315692 Illancroagh Illancroagh 53.96028 -9.85056 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315693 Tanregee Tanregee 53.94917 -9.86528 P PPLL IE C 20 0 105 Europe/Dublin 2010-08-14 +3315694 Pollranny Sweeny Pollranny Sweeny 53.93417 -9.88583 P PPLL IE C 20 0 74 Europe/Dublin 2010-08-14 +3315695 Cartran River Cartran River 53.94583 -9.83 H STM IE C 20 0 5 Europe/Dublin 2010-08-14 +3315696 Glennanean Bridge Glennanean Bridge 53.92222 -9.81528 L LCTY IE C 20 0 19 Europe/Dublin 2010-08-14 +3315697 Lough Gall Lough Gall 53.91889 -9.87139 H LK IE C 20 0 164 Europe/Dublin 2010-08-14 +3315698 Lough Gall Lough Gall 53.93417 -9.82111 H LK IE C 20 0 6 Europe/Dublin 2010-08-14 +3315699 Claggan Claggan 53.97139 -9.84056 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +3315700 Bleanmore Island Bleanmore Island 53.95694 -9.80417 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315701 Kildun Kildun 53.98639 -9.83972 P PPLL IE C 20 0 8 Europe/Dublin 2010-08-14 +3315702 Castlehill Castlehill 53.99389 -9.82361 P PPL IE C 20 0 54 Europe/Dublin 2010-08-14 +3315703 Bellagarvaun Bellagarvaun 53.99778 -9.77917 P PPL IE C 20 0 88 Europe/Dublin 2010-08-14 +3315704 Lough Anaffrin Lough Anaffrin 53.95083 -9.72472 H LK IE C 20 0 283 Europe/Dublin 2010-08-14 +3315705 Glennamaddoo Lough Glennamaddoo Lough 53.93361 -9.75611 H LK IE C 20 0 208 Europe/Dublin 2010-08-14 +3315706 Dooghill Dooghill 53.92167 -9.79167 P PPLL IE C 20 0 29 Europe/Dublin 2010-08-14 +3315707 Tooreen Tooreen 53.90333 -9.75917 P PPLL IE C 20 0 29 Europe/Dublin 2010-08-14 +3315708 Murrevagh River Murrevagh River 53.89639 -9.77778 H STM IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315709 Bunnahowna River Bunnahowna River 53.89833 -9.7425 H STM IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315710 Rosturk Castle Rosturk Castle 53.89444 -9.72167 S CSTL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315711 Resmurrevagh Resmurrevagh 53.89167 -9.73694 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315712 Inishgowla Inishgowla 53.88972 -9.69583 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315713 Corranabinna Lough Corranabinna Lough 53.96889 -9.68222 H LK IE C 20 0 425 Europe/Dublin 2010-08-14 +3315714 Corryloughaphuill Lough Corryloughaphuill Lough 53.97833 -9.67306 H LK IE C 20 0 391 Europe/Dublin 2010-08-14 +3315715 Greenaun Greenaun 53.95944 -9.75417 L LCTY IE C 20 0 91 Europe/Dublin 2010-08-14 +3315716 Glenthomas Glenthomas 53.94306 -9.695 L LCTY IE C 20 0 300 Europe/Dublin 2010-08-14 +3315717 Moynish More Moynish More 53.88444 -9.72833 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315718 Roeillaun Roeillaun 53.87194 -9.70889 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315719 Inishdasky Inishdasky 53.88111 -9.6575 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315720 Inishnacross Inishnacross 53.88139 -9.6925 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315721 Tierna Tierna 53.90111 -9.69111 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3315722 Glenthomas River Glenthomas River 53.90556 -9.68722 H STM IE C 20 0 1 Europe/Dublin 2010-08-14 +3315723 Owengarve River Owengarve River 53.89806 -9.705 H STM IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315724 Glendahurk Bridge Glendahurk Bridge 53.91583 -9.65778 L LCTY IE C 20 0 34 Europe/Dublin 2010-08-14 +3315725 Muckinish Muckinish 53.87694 -9.62611 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315726 Ross House Ross House 53.85611 -9.57889 S HSEC IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315727 Rosharnagh Lodge Rosharnagh Lodge 53.86417 -9.59306 S HSE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315728 Rossyvera House Rossyvera House 53.89278 -9.62583 S HSEC IE C 20 0 1 Europe/Dublin 2010-08-14 +3315729 Ardagh Lodge Ardagh Lodge 53.88833 -9.60917 S HSE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315730 Carrowsallagh Bridge Carrowsallagh Bridge 53.90167 -9.62861 P PPLL IE C 20 0 23 Europe/Dublin 2010-08-14 +3315731 Carrowbeg Lough Carrowbeg Lough 53.89694 -9.64028 H LK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315732 Lough Fadda Lough Fadda 53.91028 -9.60361 H LK IE C 20 0 41 Europe/Dublin 2010-08-14 +3315733 Burrishoole Burrishoole 53.89694 -9.5825 P PPLL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3315734 Derrintaggart Lough Derrintaggart Lough 53.90306 -9.54889 H LK IE C 20 0 33 Europe/Dublin 2010-08-14 +3315735 Lough Ard Lough Ard 53.90778 -9.53333 H LK IE C 20 0 45 Europe/Dublin 2010-08-14 +3315736 Letterlough Letterlough 53.90667 -9.51278 P PPLL IE C 20 0 45 Europe/Dublin 2010-08-14 +3315737 Milcum House Milcum House 53.88167 -9.55639 S HSEC IE C 20 0 7 Europe/Dublin 2010-08-14 +3315738 Knockyeragh Knockyeragh 53.87556 -9.55944 T HLL IE C 20 0 3 Europe/Dublin 2010-08-14 +3315739 Seaview Seaview 53.87167 -9.54889 S EST IE C 20 0 14 Europe/Dublin 2010-08-14 +3315740 Broad Lough Broad Lough 53.86917 -9.53417 H LK IE C 20 0 20 Europe/Dublin 2010-08-14 +3315741 Doogan Lough Doogan Lough 53.885 -9.52111 H LK IE C 20 0 29 Europe/Dublin 2010-08-14 +3315742 New Bridge New Bridge 53.88472 -9.52889 L LCTY IE C 20 0 23 Europe/Dublin 2010-08-14 +3315743 Cuilmore Cuilmore 53.875 -9.49833 P PPLL IE C 20 0 60 Europe/Dublin 2010-08-14 +3315744 Gorlawarla Gorlawarla 53.85639 -9.52778 P PPLL IE C 20 0 31 Europe/Dublin 2010-08-14 +3315745 Owennabrockagh River Owennabrockagh River 53.84778 -9.56222 H STM IE C 20 0 9 Europe/Dublin 2010-08-14 +3315746 Derryribbeen Lough Derryribbeen Lough 53.86 -9.46444 H LK IE C 20 0 67 Europe/Dublin 2010-08-14 +3315747 Drumyoney Lough Drumyoney Lough 53.8725 -9.47972 H LK IE C 20 0 70 Europe/Dublin 2010-08-14 +3315748 Derrynatreva Lough Derrynatreva Lough 53.90917 -9.4575 H LK IE C 20 0 51 Europe/Dublin 2010-08-14 +3315749 Ass Bridge Ass Bridge 53.86944 -9.44667 P PPLL IE C 20 0 72 Europe/Dublin 2010-08-14 +3315750 Letter Letter 53.85083 -9.42528 P PPLL IE C 20 0 63 Europe/Dublin 2010-08-14 +3315751 Ranaghy Ranaghy 53.85833 -9.40361 P PPL IE C 20 0 69 Europe/Dublin 2010-08-14 +3315752 Derrycoosh Derrycoosh 53.84972 -9.37167 P PPLL IE C 20 0 69 Europe/Dublin 2010-08-14 +3315753 Graffa More Graffa More 53.85833 -9.35556 P PPLL IE C 20 0 68 Europe/Dublin 2010-08-14 +3315754 Gibson’s Lough Gibson's Lough 53.87722 -9.40639 H LK IE C 20 0 79 Europe/Dublin 2010-08-14 +3315755 Lough Sallagher Lough Sallagher 53.87861 -9.36361 H LK IE C 20 0 117 Europe/Dublin 2010-08-14 +3315756 Drumminagainran Drumminagainran 53.885 -9.37806 P PPLL IE C 20 0 151 Europe/Dublin 2010-08-14 +3315757 Lough Ben Lough Ben 53.89083 -9.36778 H LK IE C 20 0 147 Europe/Dublin 2010-08-14 +3315758 Kilhale Kilhale 53.90639 -9.38333 P PPLL IE C 20 0 214 Europe/Dublin 2010-08-14 +3315759 Knockrappalaghaun Knockrappalaghaun 53.89972 -9.35972 T HLL IE C 20 0 244 152 Europe/Dublin 2010-08-14 +3315760 Lettermaghera Lettermaghera 53.93139 -9.60111 T SPUR IE C 20 0 255 126 Europe/Dublin 2010-08-14 +3315761 Furnace Furnace 53.92111 -9.56389 P PPLL IE C 20 0 36 Europe/Dublin 2010-08-14 +3315762 Treanlaur Lodge Treanlaur Lodge 53.94889 -9.56611 S HSE IE C 20 0 93 Europe/Dublin 2010-08-14 +3315763 Knockmoyle Bridge Knockmoyle Bridge 53.91583 -9.48194 L LCTY IE C 20 0 42 Europe/Dublin 2010-08-14 +3315764 Lough Doo Lough Doo 53.94278 -9.62111 H LK IE C 20 0 216 Europe/Dublin 2010-08-14 +3315765 Glennamong River Glennamong River 53.95278 -9.59083 H STM IE C 20 0 94 Europe/Dublin 2010-08-14 +3315766 Skerdagh River Skerdagh River 53.90667 -9.47306 H STM IE C 20 0 58 Europe/Dublin 2010-08-14 +3315767 Cloonduff Cloonduff 53.92639 -9.45972 P PPLL IE C 20 0 54 Europe/Dublin 2010-08-14 +3315768 Gortnaheltia Gortnaheltia 53.94556 -9.4725 L LCTY IE C 20 0 114 Europe/Dublin 2010-08-14 +3315769 Crumpaun Bridge Crumpaun Bridge 53.94139 -9.40056 L LCTY IE C 20 0 42 Europe/Dublin 2010-08-14 +3315770 Glenhest Glenhest 53.935 -9.43583 T VAL IE C 20 0 48 Europe/Dublin 2010-08-14 +3315771 Glenlara Glenlara 53.95583 -9.5025 L LCTY IE C 20 0 229 Europe/Dublin 2010-08-14 +3315772 Birreen Birreen 53.91361 -9.39278 T SPUR IE C 20 0 327 184 Europe/Dublin 2010-08-14 +3315773 Glen Nephin Glen Nephin 53.98139 -9.33056 T VAL IE C 20 0 54 Europe/Dublin 2010-08-14 +3315774 Rafeenaun Rafeenaun 53.98333 -9.32389 P PPLL IE C 20 0 54 Europe/Dublin 2010-08-14 +3315775 Levally Levally 53.99583 -9.32111 P PPLL IE C 20 0 64 Europe/Dublin 2010-08-14 +3315776 Ballynagoraher Ballynagoraher 53.98583 -9.36778 P PPLL IE C 20 0 162 Europe/Dublin 2010-08-14 +3315777 Tobernaveen Tobernaveen 54.00722 -9.32056 P PPLL IE C 20 0 75 Europe/Dublin 2010-08-14 +3315778 Massbrook Massbrook 53.98667 -9.28417 P PPL IE C 20 0 57 Europe/Dublin 2010-08-14 +3315779 Tawnagh Tawnagh 54.00528 -9.28583 P PPLL IE C 20 0 51 Europe/Dublin 2010-08-14 +3315780 Massbrook House Massbrook House 53.99639 -9.27583 S HSEC IE C 20 0 24 Europe/Dublin 2010-08-14 +3315781 Cuilkillew Cuilkillew 54.01972 -9.27861 P PPLL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315782 Doonaroya Doonaroya 54.0125 -9.40361 P PPLL IE C 20 0 147 Europe/Dublin 2010-08-14 +3315783 Ballynafulla Ballynafulla 54.01944 -9.39556 P PPLL IE C 20 0 137 Europe/Dublin 2010-08-14 +3315784 Ballyknock Ballyknock 53.96083 -9.31806 P PPLL IE C 20 0 92 Europe/Dublin 2010-08-14 +3315785 Barnageehy Barnageehy Barnageehy,Windy Gap 53.94778 -9.31556 T GAP IE IE C 20 0 158 Europe/Dublin 2010-08-14 +3315786 Largan Largan 53.96056 -9.24972 P PPLL IE C 20 0 87 Europe/Dublin 2010-08-14 +3315787 Terrybaun Terrybaun 53.98611 -9.24167 P PPLL IE C 20 0 42 Europe/Dublin 2010-08-14 +3315788 Pontoon Pontoon 53.97361 -9.21167 P PPLL IE C 20 0 62 Europe/Dublin 2010-08-14 +3315789 Pontoon Bridge Pontoon Bridge 53.98583 -9.19722 L LCTY IE C 20 0 22 Europe/Dublin 2010-08-14 +3315790 Attiappleton Lough Attiappleton Lough 53.97694 -9.23028 H LK IE C 20 0 94 Europe/Dublin 2010-08-14 +3315791 Knockaglana Lough Knockaglana Lough 53.97083 -9.235 H LK IE C 20 0 87 Europe/Dublin 2010-08-14 +3315792 Greenans Greenans 53.94444 -9.26361 P PPL IE C 20 0 116 Europe/Dublin 2010-08-14 +3315793 Crillaun Crillaun 53.945 -9.22444 P PPLL IE C 20 0 62 Europe/Dublin 2010-08-14 +3315794 Bunduvowen Bunduvowen 53.95833 -9.21333 P PPLL IE C 20 0 55 Europe/Dublin 2010-08-14 +3315795 Tawnykinaff Tawnykinaff 53.93333 -9.26694 P PPLL IE C 20 0 105 Europe/Dublin 2010-08-14 +3315796 Lough Mallard Lough Mallard 53.85361 -9.34083 H LK IE C 20 0 60 Europe/Dublin 2010-08-14 +3315797 Lough Naspleenagh Lough Naspleenagh 53.89139 -9.27972 H LK IE C 20 0 67 Europe/Dublin 2010-08-14 +3315798 Lough Rusheen Lough Rusheen 53.88722 -9.32 H LK IE C 20 0 117 Europe/Dublin 2010-08-14 +3315799 Tucker’s Lough Tucker's Lough 53.87361 -9.28556 H LK IE C 20 0 47 Europe/Dublin 2010-08-14 +3315800 Lough Fadda Lough Fadda 53.89944 -9.24361 H LK IE C 20 0 53 Europe/Dublin 2010-08-14 +3315801 Kilnageer Kilnageer 53.86639 -9.3375 P PPLL IE C 20 0 65 Europe/Dublin 2010-08-14 +3315802 Lakelands Lakelands 53.85111 -9.32472 S EST IE C 20 0 55 Europe/Dublin 2010-08-14 +3315803 The Lawn The Lawn 53.8525 -9.29278 S EST IE C 20 0 48 Europe/Dublin 2010-08-14 +3315804 Ballynew Ballynew 53.865 -9.26389 P PPLL IE C 20 0 43 Europe/Dublin 2010-08-14 +3315805 Ballinville Ballinville 53.87639 -9.24972 P PPL IE C 20 0 41 Europe/Dublin 2010-08-14 +3315806 Windsor House Windsor House 53.86889 -9.24056 S HSEC IE C 20 0 40 Europe/Dublin 2010-08-14 +3315807 Tawnylaheen Tawnylaheen 53.8875 -9.26972 P PPLL IE C 20 0 60 Europe/Dublin 2010-08-14 +3315808 Clydagh Bridge Clydagh Bridge 53.89056 -9.26028 L LCTY IE C 20 0 55 Europe/Dublin 2010-08-14 +3315809 Derrynadiyva Derrynadiyva 53.89917 -9.31917 P PPLL IE C 20 0 135 Europe/Dublin 2010-08-14 +3315810 Loughanaveeny Loughanaveeny 53.90528 -9.35278 H LK IE C 20 0 169 Europe/Dublin 2010-08-14 +3315811 Burren Burren 53.91194 -9.30583 P PPL IE C 20 0 95 Europe/Dublin 2010-08-14 +3315812 Crumlin Crumlin 53.92 -9.27028 P PPL IE C 20 0 94 Europe/Dublin 2010-08-14 +3315813 Lough Anaffrin Lough Anaffrin 53.90639 -9.26917 H LK IE C 20 0 76 Europe/Dublin 2010-08-14 +3315814 Cappavicar Cappavicar 53.86139 -9.21167 P PPLL IE C 20 0 38 Europe/Dublin 2010-08-14 +3315815 Middletown Middletown 53.85167 -9.17444 P PPL IE C 20 0 55 Europe/Dublin 2010-08-14 +3315816 Coolshinnagh Coolshinnagh 53.85611 -9.12472 P PPLL IE C 20 0 76 Europe/Dublin 2010-08-14 +3315817 Ara North Ara North 53.85417 -9.10806 P PPLL IE C 20 0 104 Europe/Dublin 2010-08-14 +3315818 Balloor Balloor 53.86833 -9.15806 P PPLL IE C 20 0 67 Europe/Dublin 2010-08-14 +3315819 Doohand Doohand 53.87611 -9.14278 P PPLL IE C 20 0 69 Europe/Dublin 2010-08-14 +3315820 Ballygommon Ballygommon 53.87583 -9.16028 P PPLL IE C 20 0 52 Europe/Dublin 2010-08-14 +3315821 Moyhenna Bridge Moyhenna Bridge 53.86972 -9.18667 P PPLL IE C 20 0 39 Europe/Dublin 2010-08-14 +3315822 Greeve Greeve 53.86111 -9.1825 P PPLL IE C 20 0 44 Europe/Dublin 2010-08-14 +3315823 Turlough Park Turlough Park 53.88139 -9.20722 S EST IE C 20 0 36 Europe/Dublin 2010-08-14 +3315824 Toormore Toormore 53.89833 -9.17944 P PPLL IE C 20 0 32 Europe/Dublin 2010-08-14 +3315825 Park Park 53.90333 -9.19861 P PPLL IE C 20 0 34 Europe/Dublin 2010-08-14 +3315826 Ballyguin Ballyguin 53.89667 -9.20528 P PPLL IE C 20 0 35 Europe/Dublin 2010-08-14 +3315827 Sraheens Sraheens 53.85944 -9.09722 P PPL IE C 20 0 115 Europe/Dublin 2010-08-14 +3315828 Treannagleragh Treannagleragh 53.85361 -9.04444 P PPLL IE C 20 0 136 Europe/Dublin 2010-08-14 +3315829 Boleyard Boleyard 53.87361 -9.1 P PPLL IE C 20 0 96 Europe/Dublin 2010-08-14 +3315830 Rathslevin House Rathslevin House 53.87139 -9.04778 S HSEC IE C 20 0 99 Europe/Dublin 2010-08-14 +3315831 Killedan House Killedan House 53.87444 -9.025 S HSEC IE C 20 0 43 Europe/Dublin 2010-08-14 +3315832 Listrisnan House Listrisnan House 53.88278 -9.03917 S HSEC IE C 20 0 62 Europe/Dublin 2010-08-14 +3315833 Shanaghy Shanaghy 53.88 -9.02833 P PPLL IE C 20 0 48 Europe/Dublin 2010-08-14 +3315834 Knocktemple Knocktemple 53.88667 -9.1025 P PPLL IE C 20 0 68 Europe/Dublin 2010-08-14 +3315835 Carrowgowan House Carrowgowan House 53.89694 -9.08556 S HSEC IE C 20 0 69 Europe/Dublin 2010-08-14 +3315836 Carrowcastle Carrowcastle 53.90806 -9.07056 P PPLL IE C 20 0 54 Europe/Dublin 2010-08-14 +3315837 Ballymiles Bridge Ballymiles Bridge 53.90806 -9.02389 P PPLL IE C 20 0 29 Europe/Dublin 2010-08-14 +3315838 Trimoge Bridge Trimoge Bridge 53.91111 -9.02 P PPLL IE C 20 0 28 Europe/Dublin 2010-08-14 +3315839 Little River Little River 53.90278 -9.13333 H STM IE C 20 0 53 Europe/Dublin 2010-08-14 +3315840 Stradehill House Stradehill House 53.90972 -9.11861 S HSEC IE C 20 0 46 Europe/Dublin 2010-08-14 +3315841 Derryhick Lough Derryhick Lough 53.93139 -9.21333 H LK IE C 20 0 42 Europe/Dublin 2010-08-14 +3315842 Levallinree Lough Levallinree Lough 53.91889 -9.21139 H LK IE C 20 0 41 Europe/Dublin 2010-08-14 +3315843 Cloonconlan Cloonconlan 53.91667 -9.15278 P PPLL IE C 20 0 33 Europe/Dublin 2010-08-14 +3315844 Lack Lack 53.91694 -9.18222 P PPLL IE C 20 0 29 Europe/Dublin 2010-08-14 +3315845 Ballygarriff Ballygarriff 53.92417 -9.19528 P PPLL IE C 20 0 34 Europe/Dublin 2010-08-14 +3315846 Treanybrogaun Treanybrogaun 53.93083 -9.18944 P PPLL IE C 20 0 29 Europe/Dublin 2010-08-14 +3315847 Fisherhill Fisherhill 53.94083 -9.18778 P PPL IE C 20 0 26 Europe/Dublin 2010-08-14 +3315848 Muckanagh Muckanagh 53.94556 -9.17167 P PPLL IE C 20 0 21 Europe/Dublin 2010-08-14 +3315849 Oughtagh Oughtagh 53.91528 -9.09639 P PPLL IE C 20 0 45 Europe/Dublin 2010-08-14 +3315850 Aghaward Aghaward 53.93222 -9.10417 P PPLL IE C 20 0 28 Europe/Dublin 2010-08-14 +3315851 Ballylahan Bridge Ballylahan Bridge 53.93667 -9.10361 L LCTY IE C 20 0 20 Europe/Dublin 2010-08-14 +3315852 Scarrownageeragh Bridge Scarrownageeragh Bridge 53.92083 -9.06083 P PPLL IE C 20 0 29 Europe/Dublin 2010-08-14 +3315853 Spaddagh Spaddagh 53.92722 -9.02222 P PPL IE C 20 0 30 Europe/Dublin 2010-08-14 +3315854 Meelick Meelick 53.91889 -9.01861 P PPLL IE C 20 0 30 Europe/Dublin 2010-08-14 +3315855 Tawnagh Beg Tawnagh Beg 53.94222 -9.13306 P PPLL IE C 20 0 23 Europe/Dublin 2010-08-14 +3315856 Bleanmore Bleanmore 53.95028 -9.13694 P PPLL IE C 20 0 20 Europe/Dublin 2010-08-14 +3315857 Ummoon Ummoon 53.94444 -9.10194 P PPLL IE C 20 0 23 Europe/Dublin 2010-08-14 +3315858 Barrett Hill Barrett Hill 53.94778 -9.11556 T HLL IE C 20 0 79 22 Europe/Dublin 2010-08-14 +3315859 Cloongee House Cloongee House 53.95222 -9.11917 S HSEC IE C 20 0 20 Europe/Dublin 2010-08-14 +3315860 Kilmore Kilmore 53.95222 -9.1075 P PPL IE C 20 0 52 Europe/Dublin 2010-08-14 +3315861 Leckee Leckee 53.96111 -9.11361 P PPLL IE C 20 0 48 Europe/Dublin 2010-08-14 +3315862 Cregnafyla Cregnafyla 53.95361 -9.07278 P PPLL IE C 20 0 78 Europe/Dublin 2010-08-14 +3315863 Ardhoom Ardhoom 53.93417 -9.04528 P PPLL IE C 20 0 27 Europe/Dublin 2010-08-14 +3315864 Cuonmung Cuonmung 53.94417 -9.0675 P PPLL IE C 20 0 45 Europe/Dublin 2010-08-14 +3315865 Rinbrack Rinbrack 53.94972 -9.04389 P PPLL IE C 20 0 27 Europe/Dublin 2010-08-14 +3315866 Lough Muck Lough Muck 53.97194 -9.06722 H LK IE C 20 0 123 Europe/Dublin 2010-08-14 +3315867 Corlummin Corlummin 53.97167 -9.14611 P PPLL IE C 20 0 22 Europe/Dublin 2010-08-14 +3315868 Gweestion River Gweestion River 53.92806 -9.07556 H STM IE C 20 0 25 Europe/Dublin 2010-08-14 +3315869 Strade River Strade River 53.93611 -9.12056 H STM IE C 20 0 26 Europe/Dublin 2010-08-14 +3315870 Cullin Cullin 53.99222 -9.02972 P PPL IE C 20 0 107 Europe/Dublin 2010-08-14 +3315871 Silver Ford Silver Ford 53.98944 -9.02611 P PPLL IE C 20 0 94 Europe/Dublin 2010-08-14 +3315872 Rinnananny Rinnananny 53.99833 -9.10333 P PPLL IE C 20 0 54 Europe/Dublin 2010-08-14 +3315873 Corlee Corlee 54.02167 -9.03111 P PPL IE C 20 0 154 Europe/Dublin 2010-08-14 +3315874 Roosky Roosky 54.02528 -9.07861 P PPLL IE C 20 0 62 Europe/Dublin 2010-08-14 +3315875 Glendaduff Lough Glendaduff Lough 54.02194 -9.04917 H LK IE C 20 0 153 Europe/Dublin 2010-08-14 +3315876 Glendaduff Glendaduff 54.02694 -9.03944 P PPLL IE C 20 0 188 Europe/Dublin 2010-08-14 +3315877 Yellow River Yellow River 54.02056 -9.11556 H STM IE C 20 0 27 Europe/Dublin 2010-08-14 +3315878 Drummin Wood Drummin Wood 53.985 -9.15528 V FRST IE C 20 0 22 Europe/Dublin 2010-08-14 +3315879 Shannasmore Shannasmore 53.99972 -9.15778 P PPLL IE C 20 0 56 Europe/Dublin 2010-08-14 +3315880 Tawnaghmore Tawnaghmore 54.00472 -9.18167 P PPLL IE C 20 0 54 Europe/Dublin 2010-08-14 +3315881 Stoneparkbrogan Stoneparkbrogan 54.00806 -9.14083 P PPLL IE C 20 0 51 Europe/Dublin 2010-08-14 +3315882 Rinagry House Rinagry House 54.02194 -9.1925 S HSEC IE C 20 0 24 Europe/Dublin 2010-08-14 +3315883 Illannaglashy Illannaglashy 53.99778 -9.20472 T ISL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315884 Newtown Cloghans Newtown Cloghans 54.07 -9.2175 P PPL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315885 Cloghans Cloghans 54.05889 -9.21361 P PPL IE C 20 0 21 Europe/Dublin 2010-08-14 +3315886 Annaghroe Island Annaghroe Island 54.05861 -9.22694 T ISL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315887 Brackwanshagh Brackwanshagh 54.02944 -9.20944 P PPL IE C 20 0 20 Europe/Dublin 2010-08-14 +3315888 Rinmore Rinmore 54.03778 -9.23056 P PPLL IE C 20 0 21 Europe/Dublin 2010-08-14 +3315889 Derrymannin Lough Derrymannin Lough 54.04389 -9.20028 H LK IE C 20 0 21 Europe/Dublin 2010-08-14 +3315890 Carrowkeribly Lough Carrowkeribly Lough 54.04361 -9.12222 H LK IE C 20 0 22 Europe/Dublin 2010-08-14 +3315891 Corroy House Corroy House 54.05667 -9.1725 S HSEC IE C 20 0 23 Europe/Dublin 2010-08-14 +3315892 Ballymacredmona Ballymacredmona 54.04944 -9.17389 P PPLL IE C 20 0 30 Europe/Dublin 2010-08-14 +3315893 Lakefield Lakefield 54.07694 -9.14556 S EST IE C 20 0 9 Europe/Dublin 2010-08-14 +3315894 Bunnafinglas Bunnafinglas 54.03194 -9.11833 P PPLL IE C 20 0 19 Europe/Dublin 2010-08-14 +3315895 Carrowntreila Carrowntreila 54.08111 -9.15611 P PPLL IE C 20 0 9 Europe/Dublin 2010-08-14 +3315896 Rahans House Rahans House 54.09694 -9.15917 S HSEC IE C 20 0 8 Europe/Dublin 2010-08-14 +3315897 Tullysleva Tullysleva 54.09417 -9.20667 P PPLL IE C 20 0 21 Europe/Dublin 2010-08-14 +3315898 Garrycloonagh Garrycloonagh 54.09083 -9.23639 P PPL IE C 20 0 27 Europe/Dublin 2010-08-14 +3315899 Ardagh Ardagh 54.09778 -9.22556 P PPLL IE C 20 0 27 Europe/Dublin 2010-08-14 +3315900 Castle Gore Castle Gore 54.10722 -9.25222 S EST IE C 20 0 31 Europe/Dublin 2010-08-14 +3315901 Knockanillaun Knockanillaun 54.12 -9.23361 P PPL IE C 20 0 30 Europe/Dublin 2010-08-14 +3315902 Slievanagark Slievanagark 54.10611 -9.21028 P PPLL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315903 Cooleran Cooleran 54.11639 -9.20139 P PPLL IE C 20 0 21 Europe/Dublin 2010-08-14 +3315904 Knocksbarrett Knocksbarrett 54.11861 -9.18167 P PPLL IE C 20 0 11 Europe/Dublin 2010-08-14 +3315905 Raish Raish 54.10917 -9.19333 L LCTY IE C 20 0 18 Europe/Dublin 2010-08-14 +3315906 Croftonpark House Croftonpark House 54.12889 -9.18972 S HSEC IE C 20 0 13 Europe/Dublin 2010-08-14 +3315907 Ballina House Ballina House 54.11917 -9.14972 S HSEC IE C 20 0 5 Europe/Dublin 2010-08-14 +3315908 Castlebar River Castlebar River 53.88778 -9.18861 H STM IE C 20 0 33 Europe/Dublin 2010-08-14 +3315909 Behy Bridge Behy Bridge 54.10528 -9.09389 P PPLL IE C 20 0 29 Europe/Dublin 2010-08-14 +3315910 Rathkip Rathkip 54.10556 -9.12111 P PPLL IE C 20 0 20 Europe/Dublin 2010-08-14 +3315911 Corimla Corimla 54.12222 -9.08083 P PPLL IE C 20 0 30 Europe/Dublin 2010-08-14 +3315912 Downhill House Downhill House 54.11639 -9.13417 S HSEC IE C 20 0 10 Europe/Dublin 2010-08-14 +3315913 Quay View House Quay View House 54.1325 -9.13583 S HSEC IE C 20 0 6 Europe/Dublin 2010-08-14 +3315914 Quignalegan Quignalegan 54.13139 -9.11083 P PPLL IE C 20 0 17 Europe/Dublin 2010-08-14 +3315915 Ardvally Ardvally 54.14306 -9.11528 P PPLL IE C 20 0 15 Europe/Dublin 2010-08-14 +3315916 Ranns Ranns 54.09889 -9.25222 P PPLL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315917 Cloonta Cloonta 54.13056 -9.05139 P PPLL IE C 20 0 42 Europe/Dublin 2010-08-14 +3315918 Knockroe Knockroe 54.15444 -9.12694 P PPLL IE C 20 0 4 Europe/Dublin 2010-08-14 +3315919 Owencam River Owencam River 54.15 -9.05389 H STM IE C 20 0 49 Europe/Dublin 2010-08-14 +3315920 Oatlands House Oatlands House 54.10444 -9.0275 S HSEC IE C 20 0 59 Europe/Dublin 2010-08-14 +3315921 Beaufield House Beaufield House 54.09056 -9.06806 S HSEC IE C 20 0 40 Europe/Dublin 2010-08-14 +3315922 Breaghwy Breaghwy 54.08306 -9.09306 P PPLL IE C 20 0 47 Europe/Dublin 2010-08-14 +3315923 Greyfort Greyfort 54.07667 -9.07833 P PPLL IE C 20 0 47 Europe/Dublin 2010-08-14 +3315924 Carrower Carrower 54.07028 -9.08667 P PPLL IE C 20 0 52 Europe/Dublin 2010-08-14 +3315925 Sallymount Sallymount 54.08444 -9.03917 S EST IE C 20 0 59 Europe/Dublin 2010-08-14 +3315926 Cartron Lough Cartron Lough 54.06583 -9.07139 H LK IE C 20 0 58 Europe/Dublin 2010-08-14 +3315927 Brohly Lough Brohly Lough 54.07583 -9.05806 H LK IE C 20 0 42 Europe/Dublin 2010-08-14 +3315928 Ballymore Lough Ballymore Lough 54.0575 -9.08778 H LK IE C 20 0 53 Europe/Dublin 2010-08-14 +3315929 Lough Doo Lough Doo 54.04833 -9.0975 H LK IE C 20 0 44 Europe/Dublin 2010-08-14 +3315930 Mullaghawny Mullaghawny 54.06222 -9.10917 P PPLL IE C 20 0 35 Europe/Dublin 2010-08-14 +3315931 Ballycong Lough Ballycong Lough 54.04611 -9.10611 H LK IE C 20 0 36 Europe/Dublin 2010-08-14 +3315932 Attymass Attymass Ath Ti an Mheasaigh,Attymass,Áth Tí an Mheasaigh 54.04972 -9.08278 P PPL IE IE C 20 0 61 Europe/Dublin 2010-08-14 +3315933 Boyhollagh Boyhollagh 54.03778 -9.06583 P PPLL IE C 20 0 95 Europe/Dublin 2010-08-14 +3315934 Culleens River Culleens River 54.24278 -9.02 H STM IE C 25 0 30 Europe/Dublin 2010-08-14 +3315935 Walshestown Walshestown 54.28778 -9.03778 P PPL IE C 25 0 1 Europe/Dublin 2010-08-14 +3315936 Rathlee Rathlee 54.27639 -9.03833 P PPL IE C 25 0 3 Europe/Dublin 2010-08-14 +3315937 Kinnasharragh Point Kinnasharragh Point 54.27944 -9.06028 T PT IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3315938 Pollacheeny Harbour Pollacheeny Harbour 54.26861 -9.06417 H HBR IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3315939 Cabragh Cabragh 54.26056 -9.03444 P PPLL IE C 25 0 9 Europe/Dublin 2010-08-14 +3315940 Carranduff Carranduff 54.25361 -9.06333 P PPL IE C 25 0 4 Europe/Dublin 2010-08-14 +3315941 Cloghagh Cloghagh 54.25528 -9.07056 T PT IE C 25 0 1 Europe/Dublin 2010-08-14 +3315942 Drinaghan Drinaghan 54.22722 -9.03444 P PPL IE C 25 0 31 Europe/Dublin 2010-08-14 +3315943 Kilglass House Kilglass House 54.23194 -9.05667 S HSEC IE C 25 0 20 Europe/Dublin 2010-08-14 +3315944 Kinard Lodge Kinard Lodge 54.21806 -9.07167 S HSE IE C 25 0 12 Europe/Dublin 2010-08-14 +3315945 Carrowhubbuck Carrowhubbuck 54.22361 -9.09222 P PPLL IE C 25 0 -9999 Europe/Dublin 2010-08-14 +3315946 Ballynamona Ballynamona 54.20972 -9.02694 P PPLL IE C 25 0 51 Europe/Dublin 2010-08-14 +3315947 Lackanatlieve Lackanatlieve 54.20361 -9.05139 P PPLL IE C 25 0 36 Europe/Dublin 2010-08-14 +3315948 Tullylin Tullylin 54.19639 -9.02306 P PPLL IE C 25 0 70 Europe/Dublin 2010-08-14 +3315949 Ballymoghany Ballymoghany 54.19222 -9.07167 P PPLL IE C 25 0 25 Europe/Dublin 2010-08-14 +3315950 Bellawaddy River Bellawaddy River 54.21 -9.1 H STM IE C 25 0 4 Europe/Dublin 2010-08-14 +3315951 Devlin River Devlin River 54.19944 -9.11639 H STM IE C 25 0 3 Europe/Dublin 2010-08-14 +3315952 Baunrosmore Baunrosmore 54.19361 -9.11639 P PPLL IE C 25 0 3 Europe/Dublin 2010-08-14 +3315953 Rinroe House Rinroe House 54.17889 -9.12528 S HSEC IE C 25 0 1 Europe/Dublin 2010-08-14 +3315954 Killanly Killanly 54.16833 -9.12528 P PPLL IE C 25 0 2 Europe/Dublin 2010-08-14 +3315955 Ballymoneen Ballymoneen 54.17944 -9.1 P PPLL IE C 25 0 16 Europe/Dublin 2010-08-14 +3315956 Muingwore Muingwore 54.16639 -9.03583 P PPLL IE C 25 0 67 Europe/Dublin 2010-08-14 +3315957 Carraun Carraun 54.14861 -9.09194 P PPLL IE C 25 0 25 Europe/Dublin 2010-08-14 +3315958 Knockbrack Knockbrack 54.14917 -9.06833 L LCTY IE C 25 0 38 Europe/Dublin 2010-08-14 +3315959 Cloonaghmore Point Cloonaghmore Point 54.08556 -9.2975 T PT IE C 20 0 24 Europe/Dublin 2010-08-14 +3315960 Castle Island Castle Island 54.06833 -9.29278 T ISL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315961 Roe Island Roe Island 54.06583 -9.28306 T ISL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315962 Cragh Islands Cragh Islands 54.05806 -9.27694 T ISLS IE C 20 0 24 Europe/Dublin 2010-08-14 +3315963 Kilmurry House Kilmurry House 54.06361 -9.34528 S HSEC IE C 20 0 18 Europe/Dublin 2010-08-14 +3315964 Ballycarroon House Ballycarroon House 54.08222 -9.35417 S HSEC IE C 20 0 38 Europe/Dublin 2010-08-14 +3315965 River View River View 54.08861 -9.33528 S EST IE C 20 0 40 Europe/Dublin 2010-08-14 +3315966 Streamstown Streamstown 54.09139 -9.36306 P PPLL IE C 20 0 45 Europe/Dublin 2010-08-14 +3315967 Enagh Beg Enagh Beg 54.11056 -9.36861 P PPLL IE C 20 0 58 Europe/Dublin 2010-08-14 +3315968 Tooreen Tooreen 54.11472 -9.32389 P PPLL IE C 20 0 40 Europe/Dublin 2010-08-14 +3315969 Knockadangan Bridge Knockadangan Bridge 54.11306 -9.29056 P PPLL IE C 20 0 32 Europe/Dublin 2010-08-14 +3315970 Rathmore Rathmore 54.12583 -9.36583 P PPLL IE C 20 0 60 Europe/Dublin 2010-08-14 +3315971 Castlehill Castlehill 54.05167 -9.33917 P PPL IE C 20 0 16 Europe/Dublin 2010-08-14 +3315972 Ballyduffy Ballyduffy 54.04167 -9.34111 P PPLL IE C 20 0 24 Europe/Dublin 2010-08-14 +3315973 Lahardaun Lahardaun 54.02722 -9.32167 P PPL IE C 20 0 52 Europe/Dublin 2010-08-14 +3315974 Cum Cum 54.03667 -9.32139 P PPLL IE C 20 0 36 Europe/Dublin 2010-08-14 +3315975 Errew House Errew House 54.05194 -9.28778 S HSEC IE C 20 0 24 Europe/Dublin 2010-08-14 +3315976 Castlehill River Castlehill River 54.04306 -9.30639 H STM IE C 20 0 24 Europe/Dublin 2010-08-14 +3315977 Tristia Tristia 54.02444 -9.41611 T MT IE C 20 0 325 156 Europe/Dublin 2010-08-14 +3315978 Drumleen Lough Drumleen Lough 54.02722 -9.43611 H LK IE C 20 0 155 Europe/Dublin 2010-08-14 +3315979 Black Lough Black Lough 54.03139 -9.43333 H LK IE C 20 0 188 Europe/Dublin 2010-08-14 +3315980 Lough Clevala Lough Clevala 54.03778 -9.43583 H LK IE C 20 0 129 Europe/Dublin 2010-08-14 +3315981 Derryhulagh Derryhulagh 54.03472 -9.39417 P PPLL IE C 20 0 94 Europe/Dublin 2010-08-14 +3315982 Glenagort Glenagort 54.02833 -9.46472 L LCTY IE C 20 0 148 Europe/Dublin 2010-08-14 +3315983 Srahyconigaun Srahyconigaun 54.04556 -9.39417 P PPLL IE C 20 0 77 Europe/Dublin 2010-08-14 +3315984 Killacorraun Killacorraun 54.06194 -9.4025 P PPLL IE C 20 0 65 Europe/Dublin 2010-08-14 +3315985 Derreen Derreen 53.99361 -9.42 P PPL IE C 20 0 109 Europe/Dublin 2010-08-14 +3315986 Letterbrick Letterbrick 54.01028 -9.44389 P PPLL IE C 20 0 153 Europe/Dublin 2010-08-14 +3315987 Leamadartaun Leamadartaun 54.00333 -9.53806 P PPLL IE C 20 0 188 Europe/Dublin 2010-08-14 +3315988 Knockaffertagh Knockaffertagh 53.98194 -9.45278 T MT IE C 20 0 516 188 Europe/Dublin 2010-08-14 +3315989 Clendavoolagh Lodge Clendavoolagh Lodge 54.00944 -9.50861 S HSE IE C 20 0 212 Europe/Dublin 2010-08-14 +3315990 Bullaunmore Bullaunmore 54.01583 -9.51611 T MT IE C 20 0 388 212 Europe/Dublin 2010-08-14 +3315991 Bunaveela Lodge Bunaveela Lodge 54.0175 -9.53611 S HSE IE C 20 0 152 Europe/Dublin 2010-08-14 +3315992 Derrybrock Lough Derrybrock Lough 53.96917 -9.55306 H PND IE C 20 0 108 Europe/Dublin 2010-08-14 +3315993 Letterask Letterask 54.01889 -9.56361 P PPLL IE C 20 0 150 Europe/Dublin 2010-08-14 +3315994 Srahmore Lodge Srahmore Lodge 53.97667 -9.56806 S HSE IE C 20 0 70 Europe/Dublin 2010-08-14 +3315995 Srahrevagh River Srahrevagh River 53.97528 -9.57417 H STM IE C 20 0 70 Europe/Dublin 2010-08-14 +3315996 Altaconey River Altaconey River 53.97556 -9.57472 H STM IE C 20 0 70 Europe/Dublin 2010-08-14 +3315997 Ballybranagh Ballybranagh 54.08861 -9.38778 P PPL IE C 20 0 53 Europe/Dublin 2010-08-14 +3315998 Carrowkilleen Carrowkilleen 54.09111 -9.41389 S ANS IE C 20 0 60 Europe/Dublin 2010-08-14 +3315999 Owenboy Owenboy 54.07861 -9.43083 L LCTY IE C 20 0 62 Europe/Dublin 2010-08-14 +3316000 Knockbrack Knockbrack 54.07417 -9.40556 P PPLL IE C 20 0 61 Europe/Dublin 2010-08-14 +3316001 Knocknahorna Knocknahorna 54.08722 -9.47694 P PPLL IE C 20 0 70 Europe/Dublin 2010-08-14 +3316002 Eskeragh Bridge Eskeragh Bridge 54.10917 -9.46833 P PPLL IE C 20 0 76 Europe/Dublin 2010-08-14 +3316003 Deel Bridge Deel Bridge 54.07944 -9.51639 L LCTY IE C 20 0 74 Europe/Dublin 2010-08-14 +3316004 Corcullin Corcullin 54.06972 -9.50778 P PPLL IE C 20 0 75 Europe/Dublin 2010-08-14 +3316005 Bar Deel River Bar Deel River 54.07056 -9.50917 H STM IE C 20 0 75 Europe/Dublin 2010-08-14 +3316006 Derrynakerriva Lough Derrynakerriva Lough 54.06972 -9.51667 H LK IE C 20 0 75 Europe/Dublin 2010-08-14 +3316007 Brackloon Lough Brackloon Lough 54.10611 -9.40639 H LK IE C 20 0 64 Europe/Dublin 2010-08-14 +3316008 Eighter Eighter 54.04056 -9.48639 P PPL IE C 20 0 123 Europe/Dublin 2010-08-14 +3316009 Lough Nalaghan Lough Nalaghan 54.03111 -9.55556 H LK IE C 20 0 150 Europe/Dublin 2010-08-14 +3316010 Bunaveela Lough Bunaveela Lough 54.02083 -9.54694 H LK IE C 20 0 148 Europe/Dublin 2010-08-14 +3316011 Loughdathlee Loughdathlee 54.05889 -9.55472 H LK IE C 20 0 92 Europe/Dublin 2010-08-14 +3316012 Lough Keeran Lough Keeran 54.06389 -9.5625 H LK IE C 20 0 94 Europe/Dublin 2010-08-14 +3316013 Lough Namara Lough Namara 54.03306 -9.57222 H LK IE C 20 0 140 Europe/Dublin 2010-08-14 +3316014 Doodaun Doodaun 54.05028 -9.515 P PPLL IE C 20 0 93 Europe/Dublin 2010-08-14 +3316015 Scardaun Lough Scardaun Lough 54.03778 -9.63944 H LK IE C 20 0 340 Europe/Dublin 2010-08-14 +3316016 Lough Brack Lough Brack 54.04806 -9.58111 H LK IE C 20 0 119 Europe/Dublin 2010-08-14 +3316017 Lough Nambrock Lough Nambrock 54.05333 -9.58778 H LK IE C 20 0 109 Europe/Dublin 2010-08-14 +3316018 Lough Nabrock Lough Nabrock 54.05889 -9.57944 H LK IE C 20 0 94 Europe/Dublin 2010-08-14 +3316019 Lough Gall Lough Gall 54.06667 -9.57583 H LK IE C 20 0 85 Europe/Dublin 2010-08-14 +3316020 Altnabrocky Altnabrocky 54.08222 -9.57389 P PPLL IE C 20 0 78 Europe/Dublin 2010-08-14 +3316021 Lough Adanacleveen Lough Adanacleveen 54.06361 -9.65278 H LK IE C 20 0 573 Europe/Dublin 2010-08-14 +3316022 Lough Nambrackkeagh Lough Nambrackkeagh 54.08472 -9.65667 H LK IE C 20 0 255 Europe/Dublin 2010-08-14 +3316023 Lough Drumderg Lough Drumderg 54.07111 -9.65139 H LK IE C 20 0 463 Europe/Dublin 2010-08-14 +3316024 Tawnyanruddia Tawnyanruddia 54.05028 -9.6775 T SPUR IE C 20 0 345 Europe/Dublin 2010-08-14 +3316025 Owenduff Owenduff 54.02722 -9.68444 P PPLL IE C 20 0 144 Europe/Dublin 2010-08-14 +3316026 Fawnduff River Fawnduff River 54.01639 -9.69361 H STM IE C 20 0 103 Europe/Dublin 2010-08-14 +3316027 Sheean Lodge Sheean Lodge 54.02306 -9.77167 S HSE IE C 20 0 65 Europe/Dublin 2010-08-14 +3316028 Maumykelly Maumykelly 54.095 -9.67278 T MT IE C 20 0 367 322 Europe/Dublin 2010-08-14 +3316029 Knocklettercuss Knocklettercuss 54.11361 -9.71944 T MT IE C 20 0 368 157 Europe/Dublin 2010-08-14 +3316030 Muingnahalloona Muingnahalloona 54.10944 -9.75861 L LCTY IE C 20 0 64 Europe/Dublin 2010-08-14 +3316031 Srahgraddy Srahgraddy 54.13389 -9.75222 P PPLL IE C 20 0 81 Europe/Dublin 2010-08-14 +3316032 Briska Briska 54.12639 -9.70611 L LCTY IE C 20 0 72 Europe/Dublin 2010-08-14 +3316033 Croaghaun Croaghaun 54.09667 -9.76556 P PPLL IE C 20 0 67 Europe/Dublin 2010-08-14 +3316034 Largan Largan 54.13778 -9.66111 P PPLL IE C 20 0 74 Europe/Dublin 2010-08-14 +3316035 River Muing River Muing 54.11639 -9.57667 H STM IE C 20 0 76 Europe/Dublin 2010-08-14 +3316036 Srahnakilly Srahnakilly 54.1475 -9.56667 P PPLL IE C 20 0 77 Europe/Dublin 2010-08-14 +3316037 Ballycroy Ballycroy 54.02361 -9.82639 P PPL IE C 20 0 76 Europe/Dublin 2010-08-14 +3316038 Gortbrack South Gortbrack South 54.03111 -9.8125 P PPLL IE C 20 0 95 Europe/Dublin 2010-08-14 +3316039 Dooreel Dooreel 54.02056 -9.87833 L LCTY IE C 20 0 17 Europe/Dublin 2010-08-14 +3316040 Knockmoyleen Knockmoyleen 54.04472 -9.83694 P PPLL IE C 20 0 113 Europe/Dublin 2010-08-14 +3316041 Inishaghod Inishaghod 54.00333 -9.88222 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316042 Corrignacloghmore Corrignacloghmore 54.03611 -9.90722 T PT IE C 20 0 3 Europe/Dublin 2010-08-14 +3316043 Doona Doona 54.04972 -9.87528 L LCTY IE C 20 0 37 Europe/Dublin 2010-08-14 +3316044 Lagduff Lodge Lagduff Lodge 54.06972 -9.79972 S HSE IE C 20 0 53 Europe/Dublin 2010-08-14 +3316045 Srahnamanragh Bridge Srahnamanragh Bridge Shrahnamanragh Bridge,Srahnamanragh Bridge 54.06444 -9.83444 P PPLL IE IE C 20 0 53 Europe/Dublin 2010-08-14 +3316046 Aughness Aughness 54.08333 -9.84694 P PPLL IE C 20 0 27 Europe/Dublin 2010-08-14 +3316047 Tullaghan Bar Tullaghan Bar 54.06111 -9.90528 T SAND IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316048 Roy Lough Roy Lough 54.07694 -9.94056 H LK IE C 20 0 1 Europe/Dublin 2010-08-14 +3316049 Tullaghanduff Tullaghanduff 54.0975 -9.92944 L LCTY IE C 20 0 1 Europe/Dublin 2010-08-14 +3316050 Srahmore Srahmore 54.145 -9.78333 P PPL IE C 20 0 66 Europe/Dublin 2010-08-14 +3316051 Kilteany Lodge Kilteany Lodge 54.14222 -9.79944 S HSE IE C 20 0 64 Europe/Dublin 2010-08-14 +3316052 Attavally Attavally 54.15472 -9.76 P PPLL IE C 20 0 71 Europe/Dublin 2010-08-14 +3316053 Munhin Bridge Munhin Bridge 54.16222 -9.78056 L LCTY IE C 20 0 67 Europe/Dublin 2010-08-14 +3316054 Cloontakilla Cloontakilla 54.16194 -9.74944 P PPLL IE C 20 0 86 Europe/Dublin 2010-08-14 +3316055 Carrafull Carrafull 54.15639 -9.72917 T HLL IE C 20 0 271 92 Europe/Dublin 2010-08-14 +3316056 Srahataggle South Srahataggle South 54.16778 -9.82833 P PPLL IE C 20 0 73 Europe/Dublin 2010-08-14 +3316057 Tristia Tristia 54.13278 -9.845 P PPLL IE C 20 0 64 Europe/Dublin 2010-08-14 +3316058 Lough Nahelly Lough Nahelly 54.16056 -9.91944 H LK IE C 20 0 15 Europe/Dublin 2010-08-14 +3316059 Claggan Claggan 54.17889 -9.97639 T PEN IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316060 Glencastle Bridge Glencastle Bridge 54.18111 -9.88028 P PPLL IE C 20 0 75 Europe/Dublin 2010-08-14 +3316061 Gortmore Gortmore 54.17444 -9.79389 P PPLL IE C 20 0 74 Europe/Dublin 2010-08-14 +3316062 Ederglen Ederglen 54.185 -9.82833 P PPLL IE C 20 0 118 Europe/Dublin 2010-08-14 +3316063 Derreens Derreens 54.20306 -9.81917 P PPLL IE C 20 0 74 Europe/Dublin 2010-08-14 +3316064 Pollagarraun Pollagarraun 54.20806 -9.85917 P PPLL IE C 20 0 91 Europe/Dublin 2010-08-14 +3316065 Derrynameel Derrynameel 54.2075 -9.89583 P PPLL IE C 20 0 55 Europe/Dublin 2010-08-14 +3316066 Muings Bridge Muings Bridge 54.21167 -9.87333 P PPL IE C 20 0 52 Europe/Dublin 2010-08-14 +3316067 Barnatra Barnatra 54.22083 -9.84361 P PPL IE C 20 0 63 Europe/Dublin 2010-08-14 +3316068 Faulagh Faulagh 54.22444 -9.81583 P PPLL IE C 20 0 103 Europe/Dublin 2010-08-14 +3316069 Pollagarraun Bridge Pollagarraun Bridge 54.22111 -9.85278 L LCTY IE C 20 0 50 Europe/Dublin 2010-08-14 +3316070 Derrycorrib Derrycorrib 54.20528 -9.92861 P PPLL IE C 20 0 4 Europe/Dublin 2010-08-14 +3316071 Knocknascollop Knocknascollop 54.18167 -9.80639 T HLL IE C 20 0 240 104 Europe/Dublin 2010-08-14 +3316072 Glencastle Hill Glencastle Hill 54.18917 -9.87722 T HLL IE C 20 0 231 103 Europe/Dublin 2010-08-14 +3316073 Inishderry Inishderry 54.21889 -9.90222 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316074 Derreens Island Derreens Island 54.20111 -9.79833 T ISL IE C 20 0 74 Europe/Dublin 2010-08-14 +3316075 Shanaghy Point Shanaghy Point 54.22778 -9.91472 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316076 Moyrahan Point Moyrahan Point 54.22028 -9.945 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316077 Logmore House Logmore House 54.2125 -9.98444 S HSEC IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316078 Greenfield House Greenfield House 54.2325 -9.97972 S HSEC IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316079 Carn House Carn House 54.23083 -10.02306 S HSEC IE C 20 0 8 Europe/Dublin 2010-08-14 +3316080 Carn Prospect Carn Prospect 54.22722 -10.02361 S EST IE C 20 0 8 Europe/Dublin 2010-08-14 +3316081 Seafield Seafield 54.22472 -10.00139 S EST IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316082 Tallagh Tallagh 54.23889 -9.99861 P PPLL IE C 20 0 7 Europe/Dublin 2010-08-14 +3316083 Moyrahan Moyrahan 54.23056 -9.94472 P PPLL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316084 Ardmore Lough Ardmore Lough 54.19611 -10.02111 H LK IE C 20 0 1 Europe/Dublin 2010-08-14 +3316085 Mass Villa Mass Villa 54.21111 -10.03611 S HSEC IE C 20 0 1 Europe/Dublin 2010-08-14 +3316086 Carricknaronty Rocks Carricknaronty Rocks 54.19528 -10.14639 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316087 Carrickmoneagh Carrickmoneagh 54.18528 -10.16361 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316088 Drumreagh Drumreagh 54.18917 -10.05417 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316089 Leam Lough Leam Lough 54.1725 -10.07222 H LK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316090 Barranagh House Barranagh House 54.17028 -10.06139 S HSEC IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316091 Garvecarrick Garvecarrick 54.16194 -10.09722 T PT IE C 20 0 1 Europe/Dublin 2010-08-14 +3316092 Tiraun Point Tiraun Point 54.14444 -10.11694 T CAPE IE C 20 0 1 Europe/Dublin 2010-08-14 +3316093 Feorinyeeo Bay Feorinyeeo Bay 54.13889 -10.06583 H BAY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316094 Knocknagnauve Knocknagnauve 54.09083 -10.08194 T HLL IE C 20 0 240 -9999 Europe/Dublin 2010-08-14 +3316095 Cloghnahakilla Cloghnahakilla 54.0925 -10.12222 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316096 Leamareha Island Leamareha Island 54.08694 -10.13 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316097 Keely Island Keely Island 54.07528 -10.14056 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316098 Turduvillaun Turduvillaun 54.07083 -10.19389 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316099 Gubnageeragh Gubnageeragh 54.06889 -10.17139 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316100 Carrickduff Carrickduff 54.06667 -10.34139 T RKS IE 00 0 -9999 Europe/Dublin 1999-03-08 +3316101 Fish Rock Fish Rock 54.05833 -10.35306 T RK IE 00 0 -9999 Europe/Dublin 1999-03-08 +3316102 Tiraun Lodge Tiraun Lodge 54.14278 -10.10389 S HSE IE C 20 0 1 Europe/Dublin 2010-08-14 +3316103 Carrickalaveen Carrickalaveen 54.09361 -10.23361 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316104 Pluddany Rocks Pluddany Rocks 54.12972 -10.1675 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316105 Knocknaskea Knocknaskea 54.11556 -10.21667 T HLL IE C 20 0 230 -9999 Europe/Dublin 2010-08-14 +3316106 Porteenbeg Porteenbeg 54.11556 -10.20917 L LCTY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316107 Carrickawilt Carrickawilt 54.15194 -10.19444 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316108 Carrickmoylenacurhoga Carrickmoylenacurhoga 54.15889 -10.18889 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316109 Annagh Annagh 54.23694 -10.08778 L LCTY IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316110 Bingham Lodge Bingham Lodge 54.23167 -10.07139 S HSE IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316111 Termoncarragh Lake Termoncarragh Lake 54.24556 -10.0525 H LK IE C 20 0 48 Europe/Dublin 2010-08-14 +3316112 Clooneen Clooneen 54.26333 -10.01167 P PPLL IE C 20 0 65 Europe/Dublin 2010-08-14 +3316113 Aghadoon Aghadoon 54.27111 -10.02972 P PPLL IE C 20 0 84 Europe/Dublin 2010-08-14 +3316114 Glenlara Glenlara 54.28472 -9.99306 P PPLL IE C 20 0 49 Europe/Dublin 2010-08-14 +3316115 Scotch Port Rock Scotch Port Rock 54.26028 -10.085 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316116 Illanleamnahelty Illanleamnahelty 54.27667 -10.07083 T ISL IE C 20 0 15 Europe/Dublin 2010-08-14 +3316117 Carrickhesk Carrickhesk 54.28889 -10.05639 T ISL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316118 Spinkadoon Spinkadoon 54.28472 -10.04694 T PT IE C 20 0 29 Europe/Dublin 2010-08-14 +3316119 Gubastuckaun Gubastuckaun 54.30028 -9.98472 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316120 Danish Cellar Danish Cellar 54.29306 -9.98472 H COVE IE C 20 0 1 Europe/Dublin 2010-08-14 +3316121 Ooghran Point Ooghran Point 54.27889 -9.96278 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316122 Pollacappul Pollacappul 54.26194 -9.9075 H COVE IE C 20 0 1 Europe/Dublin 2010-08-14 +3316123 Knocknalina Knocknalina 54.25028 -9.90139 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316124 Knockshanbo Knockshanbo 54.25 -9.92861 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316125 Graghil Graghil 54.265 -9.86194 P PPLL IE C 20 0 32 Europe/Dublin 2010-08-14 +3316126 Gub-a-Vruni Gub-a-Vruni 54.26639 -9.87 T PT IE C 20 0 11 Europe/Dublin 2010-08-14 +3316127 Owenduff River Owenduff River 54.24972 -9.87333 H STM IE C 20 0 13 Europe/Dublin 2010-08-14 +3316128 Gortbrack North Gortbrack North 54.25306 -9.85 P PPLL IE C 20 0 78 Europe/Dublin 2010-08-14 +3316129 Traw Kirtaun Traw Kirtaun 54.22972 -9.86722 H HBR IE C 20 0 14 Europe/Dublin 2010-08-14 +3316130 Muingerroon Bridge Muingerroon Bridge 54.21917 -9.80222 P PPLL IE C 20 0 87 Europe/Dublin 2010-08-14 +3316131 Pollatomish Pollatomish 54.26194 -9.79806 P PPL IE C 20 0 134 Europe/Dublin 2010-08-14 +3316132 Dooncarton Dooncarton 54.27139 -9.82694 T HLL IE C 20 0 266 139 Europe/Dublin 2010-08-14 +3316133 Rosdoagh Rosdoagh 54.27583 -9.79083 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316134 Peatland Experimental Station Peatland Experimental Station 54.23583 -9.72472 S STNE IE C 20 0 46 Europe/Dublin 2010-08-14 +3316135 Muingingaun Muingingaun 54.21472 -9.72194 P PPLL IE C 20 0 72 Europe/Dublin 2010-08-14 +3316136 Lough Namackan Lough Namackan 54.18917 -9.75528 H LK IE C 20 0 66 Europe/Dublin 2010-08-14 +3316137 Glencullin Lower Glencullin Lower 54.18083 -9.72972 P PPLL IE C 20 0 71 Europe/Dublin 2010-08-14 +3316138 Glencullin River Glencullin River 54.19167 -9.77111 H STM IE C 20 0 69 Europe/Dublin 2010-08-14 +3316139 Glencullin Upper Glencullin Upper 54.16889 -9.67306 P PPLL IE C 20 0 164 Europe/Dublin 2010-08-14 +3316140 Lough Boleynagee Lough Boleynagee 54.15972 -9.68917 H LK IE C 20 0 146 Europe/Dublin 2010-08-14 +3316141 Sheskin Sheskin 54.185 -9.59306 P PPLL IE C 20 0 147 Europe/Dublin 2010-08-14 +3316142 Lough Naguroge Lough Naguroge 54.20417 -9.66444 H LK IE C 20 0 316 Europe/Dublin 2010-08-14 +3316143 Barroosky Barroosky 54.20778 -9.62194 P PPLL IE C 20 0 158 Europe/Dublin 2010-08-14 +3316144 Srahmeen River Srahmeen River 54.19694 -9.51667 H STM IE C 20 0 112 Europe/Dublin 2010-08-14 +3316145 Lough Morenateoran Lough Morenateoran 54.22028 -9.56778 H LK IE C 20 0 152 Europe/Dublin 2010-08-14 +3316146 Inagh Inagh 54.23917 -9.51556 L LCTY IE C 20 0 153 Europe/Dublin 2010-08-14 +3316147 Cluddaun Cluddaun 54.20667 -9.50722 P PPLL IE C 20 0 136 Europe/Dublin 2010-08-14 +3316148 Glencalry Lodge Glencalry Lodge 54.24694 -9.58278 S HSE IE C 20 0 79 Europe/Dublin 2010-08-14 +3316149 Rathavisteen Rathavisteen 54.26639 -9.54389 L LCTY IE C 20 0 149 Europe/Dublin 2010-08-14 +3316150 Gortleatilla Gortleatilla 54.25139 -9.62694 P PPLL IE C 20 0 58 Europe/Dublin 2010-08-14 +3316151 Baralty Baralty 54.26333 -9.65306 P PPLL IE C 20 0 102 Europe/Dublin 2010-08-14 +3316152 Annie Brady Bridge Annie Brady Bridge 54.27056 -9.72472 P PPLL IE C 20 0 38 Europe/Dublin 2010-08-14 +3316153 Sranataggle Sranataggle 54.29611 -9.6875 P PPLL IE C 20 0 53 Europe/Dublin 2010-08-14 +3316154 Curraunboy Curraunboy 54.30028 -9.78639 P PPLL IE C 20 0 88 Europe/Dublin 2010-08-14 +3316155 Gweedaney River Gweedaney River 54.28417 -9.76611 H STM IE C 20 0 20 Europe/Dublin 2010-08-14 +3316156 Garter Hill Garter Hill 54.30778 -9.80472 T HLL IE C 20 0 96 116 Europe/Dublin 2010-08-14 +3316157 Carrowteige Carrowteige 54.31222 -9.81278 P PPLL IE C 20 0 137 Europe/Dublin 2010-08-14 +3316158 Kilgalligan Kilgalligan 54.3125 -9.8425 P PPLL IE C 20 0 116 Europe/Dublin 2010-08-14 +3316159 Rinnaglana Rinnaglana 54.31722 -9.85917 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316160 Toghercloheen Toghercloheen 54.33861 -9.75639 T PT IE C 20 0 8 Europe/Dublin 2010-08-14 +3316161 Glassillaun Glassillaun 54.32361 -9.70861 T RK IE C 20 0 25 Europe/Dublin 2010-08-14 +3316162 Skelp Skelp 54.31833 -9.66528 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316163 Belderg River Belderg River 54.31083 -9.55139 H STM IE C 20 0 32 Europe/Dublin 2010-08-14 +3316164 Cregganbeg Cregganbeg 54.28806 -9.58361 L LCTY IE C 20 0 81 Europe/Dublin 2010-08-14 +3316165 Tawnynaboll Tawnynaboll 54.285 -9.60028 L LCTY IE C 20 0 109 Europe/Dublin 2010-08-14 +3316166 Lough Nafaran Lough Nafaran 54.14167 -9.53806 H LK IE C 20 0 77 Europe/Dublin 2010-08-14 +3316167 Swans Lough Swans Lough 54.135 -9.50944 H LK IE C 20 0 78 Europe/Dublin 2010-08-14 +3316168 Lough Nacrom Lough Nacrom 54.13278 -9.49556 H LK IE C 20 0 79 Europe/Dublin 2010-08-14 +3316169 Lough Boy Lough Boy 54.16167 -9.49111 H LK IE C 20 0 106 Europe/Dublin 2010-08-14 +3316170 Doobehy Lough Doobehy Lough 54.17 -9.45972 H LK IE C 20 0 116 Europe/Dublin 2010-08-14 +3316171 Eskeragh Eskeragh 54.1125 -9.45556 P PPLL IE C 20 0 74 Europe/Dublin 2010-08-14 +3316172 Formoyle Formoyle 54.13806 -9.45639 P PPLL IE C 20 0 83 Europe/Dublin 2010-08-14 +3316173 Doobehy Doobehy 54.15667 -9.44194 P PPL IE C 20 0 89 Europe/Dublin 2010-08-14 +3316174 Gortnahurra Gortnahurra 54.13444 -9.40444 P PPLL IE C 20 0 71 Europe/Dublin 2010-08-14 +3316175 Owenmore Owenmore 54.15083 -9.36444 S EST IE C 20 0 59 Europe/Dublin 2010-08-14 +3316176 Cloonvoragh Cloonvoragh 54.11778 -9.40833 P PPLL IE C 20 0 69 Europe/Dublin 2010-08-14 +3316177 Knockananny Knockananny 54.16556 -9.39028 P PPLL IE C 20 0 71 Europe/Dublin 2010-08-14 +3316178 Stone Hall Stone Hall 54.14167 -9.35278 S HSEC IE C 20 0 58 Europe/Dublin 2010-08-14 +3316179 Lough Cuagh Lough Cuagh 54.15667 -9.39417 H LK IE C 20 0 68 Europe/Dublin 2010-08-14 +3316180 Shanvolahan River Shanvolahan River 54.07806 -9.42722 H STM IE C 20 0 62 Europe/Dublin 2010-08-14 +3316181 Rathnamagh Rathnamagh 54.13611 -9.32611 P PPLL IE C 20 0 49 Europe/Dublin 2010-08-14 +3316182 Ballyglass Ballyglass 54.15444 -9.34889 P PPLL IE C 20 0 56 Europe/Dublin 2010-08-14 +3316183 Treanagh Treanagh 54.15806 -9.32889 P PPLL IE C 20 0 52 Europe/Dublin 2010-08-14 +3316184 Killeennashask Killeennashask 54.1675 -9.34889 P PPLL IE C 20 0 55 Europe/Dublin 2010-08-14 +3316185 Corvoley Corvoley 54.18056 -9.41028 P PPLL IE C 20 0 90 Europe/Dublin 2010-08-14 +3316186 Cloonaghmore Cloonaghmore 54.18 -9.33361 P PPLL IE C 20 0 55 Europe/Dublin 2010-08-14 +3316187 Fahy House Fahy House 54.17778 -9.3 S HSEC IE C 20 0 46 Europe/Dublin 2010-08-14 +3316188 Ballintober House Ballintober House 54.1725 -9.31667 S HSEC IE C 20 0 50 Europe/Dublin 2010-08-14 +3316189 Owenmore River Owenmore River 54.175 -9.31361 H STM IE C 20 0 48 Europe/Dublin 2010-08-14 +3316190 Duvowen River Duvowen River 54.17611 -9.31417 H STM IE C 20 0 47 Europe/Dublin 2010-08-14 +3316191 Lough Duff Lough Duff 54.17528 -9.40278 H PND IE C 20 0 84 Europe/Dublin 2010-08-14 +3316192 Lough Naweela Lough Naweela 54.16944 -9.40694 H LK IE C 20 0 82 Europe/Dublin 2010-08-14 +3316193 Ballyneety Cross Roads Ballyneety Cross Roads 54.13444 -9.28028 L LCTY IE C 20 0 38 Europe/Dublin 2010-08-14 +3316194 Cloonachoor Cloonachoor 54.15917 -9.28528 P PPLL IE C 20 0 45 Europe/Dublin 2010-08-14 +3316195 Doonanarroo House Doonanarroo House 54.18889 -9.35083 S HSEC IE C 20 0 61 Europe/Dublin 2010-08-14 +3316196 Belladooan Belladooan 54.19611 -9.33917 P PPLL IE C 20 0 59 Europe/Dublin 2010-08-14 +3316197 Glenedagh Glenedagh 54.22167 -9.38361 P PPL IE C 20 0 76 Europe/Dublin 2010-08-14 +3316198 Crevagh Crevagh 54.22194 -9.36639 P PPLL IE C 20 0 67 Europe/Dublin 2010-08-14 +3316199 Breaghwy River Breaghwy River 54.19139 -9.28944 H STM IE C 20 0 44 Europe/Dublin 2010-08-14 +3316200 Courthill House Courthill House 54.20639 -9.29083 S HSEC IE C 20 0 42 Europe/Dublin 2010-08-14 +3316201 Palmerstown House Palmerstown House 54.22667 -9.2725 S HSEC IE C 20 0 35 Europe/Dublin 2010-08-14 +3316202 Clydagh River Clydagh River 54.23444 -9.37528 H STM IE C 20 0 54 Europe/Dublin 2010-08-14 +3316203 Ballinglen Cottage Ballinglen Cottage 54.24417 -9.375 S HSE IE C 20 0 91 Europe/Dublin 2010-08-14 +3316204 Glen Villa Glen Villa 54.24611 -9.38278 S EST IE C 20 0 51 Europe/Dublin 2010-08-14 +3316205 Ballinglen Ballinglen 54.2575 -9.38444 P PPLL IE C 20 0 42 Europe/Dublin 2010-08-14 +3316206 Killeena House Killeena House 54.27444 -9.39083 S HSEC IE C 20 0 24 Europe/Dublin 2010-08-14 +3316207 Ballyglass Ballyglass 54.28417 -9.38806 S ANS IE C 20 0 9 Europe/Dublin 2010-08-14 +3316208 Corhoor Corhoor 54.28611 -9.375 P PPLL IE C 20 0 36 Europe/Dublin 2010-08-14 +3316209 Lugnalettin Lugnalettin 54.24639 -9.4875 L LCTY IE C 20 0 186 Europe/Dublin 2010-08-14 +3316210 Lugnalettin Lough Lugnalettin Lough 54.265 -9.50111 H PND IE C 20 0 286 Europe/Dublin 2010-08-14 +3316211 Sralagagh River Sralagagh River 54.27083 -9.41694 H STM IE C 20 0 155 Europe/Dublin 2010-08-14 +3316212 Glencullin River Glencullin River 54.29944 -9.38944 H STM IE C 20 0 1 Europe/Dublin 2010-08-14 +3316213 Pollavullan Pollavullan 54.30361 -9.41194 P PPLL IE C 20 0 61 Europe/Dublin 2010-08-14 +3316214 Doonteeny Doonteeny 54.29778 -9.41222 P PPLL IE C 20 0 104 Europe/Dublin 2010-08-14 +3316215 Glenulra Glenulra 54.29944 -9.44139 P PPLL IE C 20 0 137 Europe/Dublin 2010-08-14 +3316216 Behy Behy 54.30167 -9.46194 S ANS IE C 20 0 116 Europe/Dublin 2010-08-14 +3316217 Glenlossera Lodge Glenlossera Lodge 54.30889 -9.50361 S HSE IE C 20 0 50 Europe/Dublin 2010-08-14 +3316218 Glenloss Point Glenloss Point 54.31389 -9.50472 T PT IE C 20 0 50 Europe/Dublin 2010-08-14 +3316219 Minnaun Minnaun 54.31694 -9.48 T PT IE C 20 0 1 Europe/Dublin 2010-08-14 +3316220 Glenlassra River Glenlassra River 54.31333 -9.50333 P PPLL IE C 20 0 50 Europe/Dublin 2010-08-14 +3316221 Portnahally Portnahally 54.30917 -9.36361 H COVE IE C 20 0 5 Europe/Dublin 2010-08-14 +3316222 Boytown Boytown 54.30778 -9.35417 P PPLL IE C 20 0 19 Europe/Dublin 2010-08-14 +3316223 Gortmore Gortmore 54.29556 -9.35833 P PPL IE C 20 0 34 Europe/Dublin 2010-08-14 +3316224 Killeen Killeen 54.31361 -9.33333 P PPLL IE C 20 0 19 Europe/Dublin 2010-08-14 +3316225 Muingrevagh Muingrevagh 54.30611 -9.32167 P PPL IE C 20 0 62 Europe/Dublin 2010-08-14 +3316226 Carrowcor Carrowcor 54.31111 -9.31528 P PPLL IE C 20 0 35 Europe/Dublin 2010-08-14 +3316227 Moyny Point Moyny Point 54.31639 -9.31556 T PT IE C 20 0 35 Europe/Dublin 2010-08-14 +3316228 Lenahaun Lenahaun 54.30417 -9.30028 P PPLL IE C 20 0 86 Europe/Dublin 2010-08-14 +3316229 Corcoranstown Corcoranstown 54.29278 -9.3325 P PPLL IE C 20 0 67 Europe/Dublin 2010-08-14 +3316230 Carrowmore Carrowmore 54.28444 -9.32694 P PPLL IE C 20 0 87 Europe/Dublin 2010-08-14 +3316231 Conaghra Conaghra 54.27722 -9.30917 P PPLL IE C 20 0 152 Europe/Dublin 2010-08-14 +3316232 Knockboha Knockboha 54.28667 -9.29472 P PPLL IE C 20 0 151 Europe/Dublin 2010-08-14 +3316233 Heathfield House Heathfield House 54.26806 -9.3325 S HSEC IE C 20 0 79 Europe/Dublin 2010-08-14 +3316234 Killogeary Killogeary 54.26639 -9.26778 P PPL IE C 20 0 48 Europe/Dublin 2010-08-14 +3316235 Ballinlena Ballinlena 54.27139 -9.22556 P PPL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316236 Carrowmore House Carrowmore House 54.25861 -9.2775 S HSEC IE C 20 0 74 Europe/Dublin 2010-08-14 +3316237 Cashel Lough Cashel Lough 54.26 -9.22972 H LK IE C 20 0 1 Europe/Dublin 2010-08-14 +3316238 Cannalickadda Cannalickadda 54.30028 -9.25194 T PT IE C 20 0 1 Europe/Dublin 2010-08-14 +3316239 Bone Rock Bone Rock 54.26083 -9.18944 T RK IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316240 Farrellstown Farrellstown 54.25528 -9.22306 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316241 Cloonalaghan River Cloonalaghan River 54.26972 -9.24917 H STM IE C 20 0 1 Europe/Dublin 2010-08-14 +3316242 Gallowshill Gallowshill 54.26028 -9.3275 P PPLL IE C 20 0 79 Europe/Dublin 2010-08-14 +3316243 Carrowcuilleen Carrowcuilleen 54.25444 -9.33111 P PPLL IE C 20 0 86 Europe/Dublin 2010-08-14 +3316244 Ballyglass Ballyglass 54.23306 -9.31889 P PPLL IE C 20 0 69 Europe/Dublin 2010-08-14 +3316245 Carn River Carn River 54.235 -9.2825 H STM IE C 20 0 47 Europe/Dublin 2010-08-14 +3316246 Greenpark Greenpark 54.21833 -9.24389 S EST IE C 20 0 16 Europe/Dublin 2010-08-14 +3316247 Rathcash House Rathcash House 54.21083 -9.27083 S HSEC IE C 20 0 37 Europe/Dublin 2010-08-14 +3316248 Summerhill House Summerhill House 54.24222 -9.24111 S HSEC IE C 20 0 3 Europe/Dublin 2010-08-14 +3316249 Carraghfin Lough Carraghfin Lough 54.24972 -9.23917 H LK IE C 20 0 3 Europe/Dublin 2010-08-14 +3316250 Mullaghnacross Mullaghnacross 54.2425 -9.25361 P PPLL IE C 20 0 15 Europe/Dublin 2010-08-14 +3316251 Cortoon Cottage Cortoon Cottage 54.23306 -9.23722 S HSE IE C 20 0 7 Europe/Dublin 2010-08-14 +3316252 Ballynarick Ballynarick 54.23528 -9.21472 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316253 Ross Ross 54.23333 -9.20028 P PPLL IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316254 Binnaun Point Binnaun Point 54.22417 -9.20667 T PT IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316255 Carrigbarnagh Carrigbarnagh 54.25278 -9.19222 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316256 Carrickpatrick Carrickpatrick 54.25028 -9.17611 T RKS IE C 20 0 -9999 Europe/Dublin 2010-08-14 +3316257 Cill Alaithe Cill Alaithe 54.20806 -9.21944 P PPLL IE C 20 0 5 Europe/Dublin 2010-08-14 +3316258 Meelick Lough Meelick Lough 54.2025 -9.21583 H LK IE C 20 0 2 Europe/Dublin 2010-08-14 +3316259 Killogunra Killogunra 54.19861 -9.26556 P PPLL IE C 20 0 37 Europe/Dublin 2010-08-14 +3316260 Meelick Meelick 54.19806 -9.20528 P PPLL IE C 20 0 3 Europe/Dublin 2010-08-14 +3316261 Moyne Moyne 54.2 -9.18556 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316262 Crosspatrick House Crosspatrick House 54.19611 -9.19917 S HSEC IE C 20 0 2 Europe/Dublin 2010-08-14 +3316263 Bartragh House Bartragh House 54.20111 -9.14833 S HSEC IE C 20 0 1 Europe/Dublin 2010-08-14 +3316264 Bullockpark Bullockpark 54.19583 -9.16083 S EST IE C 20 0 1 Europe/Dublin 2010-08-14 +3316265 Rusheens Rusheens 54.1925 -9.17139 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316266 Tawnaghmore Tawnaghmore 54.19167 -9.20361 P PPLL IE C 20 0 3 Europe/Dublin 2010-08-14 +3316267 Mullafarry Mullafarry 54.18833 -9.23083 P PPLL IE C 20 0 17 Europe/Dublin 2010-08-14 +3316268 Farragh House Farragh House 54.19056 -9.25083 S HSEC IE C 20 0 34 Europe/Dublin 2010-08-14 +3316269 Cloonfadda Cloonfadda 54.18194 -9.25278 P PPLL IE C 20 0 35 Europe/Dublin 2010-08-14 +3316270 Broadlands Cottage Broadlands Cottage 54.18 -9.20111 S HSE IE C 20 0 8 Europe/Dublin 2010-08-14 +3316271 Rosserk River Rosserk River 54.16722 -9.14389 H STM IE C 20 0 1 Europe/Dublin 2010-08-14 +3316272 Rathoma Rathoma 54.18083 -9.28389 P PPLL IE C 20 0 45 Europe/Dublin 2010-08-14 +3316273 Rathglass Rathglass 54.15778 -9.23583 P PPLL IE C 20 0 28 Europe/Dublin 2010-08-14 +3316274 Knockduff Knockduff 54.15639 -9.20611 P PPLL IE C 20 0 15 Europe/Dublin 2010-08-14 +3316275 Thornfield Thornfield 54.14944 -9.24694 S EST IE C 20 0 32 Europe/Dublin 2010-08-14 +3316276 Knockanelo Knockanelo 54.13778 -9.20167 P PPLL IE C 20 0 18 Europe/Dublin 2010-08-14 +3316277 Rathroeen Rathroeen 54.15111 -9.15222 P PPLL IE C 20 0 1 Europe/Dublin 2010-08-14 +3316278 Bunaheraghtish Bunaheraghtish 54.13222 -9.23361 P PPLL IE C 20 0 30 Europe/Dublin 2010-08-14 +3316279 Rathroeen Lough Rathroeen Lough 54.15833 -9.17667 H LK IE C 20 0 6 Europe/Dublin 2010-08-14 +3316280 Cloonagh Lough Cloonagh Lough 54.13694 -9.21917 H LK IE C 20 0 24 Europe/Dublin 2010-08-14 +3316281 Saint Doolaghs Park Saint Doolaghs Park 53.41667 -6.17611 S EST IE L 07 0 2 Europe/Dublin 2010-08-14 +3316282 Mayne Lodge Mayne Lodge 53.41778 -6.14778 S HSE IE L 07 0 1 Europe/Dublin 2010-08-14 +3316283 Saint Marnocks Saint Marnocks 53.43083 -6.1275 P PPL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316284 Stockhole House Stockhole House 53.41972 -6.2125 S HSEC IE L 07 0 10 Europe/Dublin 2010-08-14 +3316285 Abbeyville House Abbeyville House 53.42889 -6.18528 S HSEC IE L 07 0 3 Europe/Dublin 2010-08-14 +3316286 Feltrim Feltrim 53.43528 -6.1775 P PPLL IE L 07 0 1 Europe/Dublin 2010-08-14 +3316287 Feltrim Hill Feltrim Hill 53.43861 -6.19944 T HLL IE L 07 0 3 Europe/Dublin 2010-08-14 +3316288 Kilronan House Kilronan House 53.44111 -6.22639 S HSEC IE L 07 0 16 Europe/Dublin 2010-08-14 +3316289 Auburn House Auburn House 53.44472 -6.1825 S HSEC IE L 07 0 1 Europe/Dublin 2010-08-14 +3316290 Dardistown Dardistown 53.41667 -6.23833 P PPL IE L 07 0 18 Europe/Dublin 2010-08-14 +3316291 Prospect Point Prospect Point 53.46639 -6.19222 T PT IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316292 Lissen Hall Lissen Hall 53.47 -6.205 S EST IE L 07 0 1 Europe/Dublin 2010-08-14 +3316293 Seafield Seafield 53.47472 -6.17639 P PPL IE L 07 0 1 Europe/Dublin 2010-08-14 +3316294 Corballis Corballis 53.4775 -6.14306 P PPLL IE L 35 0 1 Europe/Dublin 2010-08-14 +3316295 Bishop’s Bay Bishop's Bay 53.48583 -6.02639 H BAY IE L 35 0 1 Europe/Dublin 2010-08-14 +3316307 Sunk Island Sunk Island 53.48528 -6.01111 T ISL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316308 Harp Ear Harp Ear 53.50194 -6.01139 T CAPE IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316309 Tailor Rocks Tailor Rocks 53.50194 -6.03056 T RKS IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316310 Newhaggard House Newhaggard House 53.50583 -6.17333 S HSEC IE L 07 0 2 Europe/Dublin 2010-08-14 +3316311 Ballyman Ballyman 53.41444 -6.26528 P PPL IE L 07 0 22 Europe/Dublin 2010-08-14 +3316312 Dubber House Dubber House 53.41528 -6.30139 S HSEC IE L 07 0 45 Europe/Dublin 2010-08-14 +3316313 Huntstown House Huntstown House 53.41694 -6.33833 S HSEC IE L 07 0 73 Europe/Dublin 2010-08-14 +3316314 Dunsoghly Castle Dunsoghly Castle 53.42722 -6.3175 S CSTL IE L 07 0 61 Europe/Dublin 2010-08-14 +3316315 Kingstown Cross Roads Kingstown Cross Roads 53.43806 -6.29556 P PPL IE L 07 0 44 Europe/Dublin 2010-08-14 +3316316 Saint Margaret’s Saint Margaret's 53.43167 -6.30028 P PPLL IE L 35 0 49 Europe/Dublin 2010-08-14 +3316317 Luttrell’s Cross Roads Luttrell's Cross Roads 53.44861 -6.29472 P PPL IE L 35 0 44 Europe/Dublin 2010-08-14 +3316318 Killeek Killeek 53.45472 -6.27806 P PPL IE L 07 0 37 Europe/Dublin 2010-08-14 +3316319 Skephubble Skephubble 53.45167 -6.30778 P PPL IE L 07 0 48 Europe/Dublin 2010-08-14 +3316320 The Leas The Leas 53.46389 -6.27278 S EST IE L 07 0 33 Europe/Dublin 2010-08-14 +3316321 Forrest Great Forrest Great 53.44194 -6.26306 P PPL IE L 07 0 31 Europe/Dublin 2010-08-14 +3316322 Glasmoe Abbey Glasmoe Abbey 53.46583 -6.24306 S RUIN IE L 07 0 20 Europe/Dublin 2010-08-14 +3316323 Rathbeale Hall Rathbeale Hall 53.47417 -6.26806 S EST IE L 07 0 31 Europe/Dublin 2010-08-14 +3316324 Kilstillaghan Kilstillaghan 53.47333 -6.31861 P PPL IE L 07 0 53 Europe/Dublin 2010-08-14 +3316325 Coultry Coultry 53.42222 -6.26722 P PPL IE L 07 0 29 Europe/Dublin 2010-08-14 +3316326 Lispapple Cross Roads Lispapple Cross Roads 53.48389 -6.28528 P PPL IE L 07 0 36 Europe/Dublin 2010-08-14 +3316327 Killosseny Killosseny 53.48861 -6.30639 P PPL IE L 07 0 43 Europe/Dublin 2010-08-14 +3316328 Rowlestown House Rowlestown House 53.49333 -6.30583 S HSEC IE L 07 0 45 Europe/Dublin 2010-08-14 +3316329 Broad Meadow Broad Meadow 53.4825 -6.25611 V MDW IE L 07 0 20 Europe/Dublin 2010-08-14 +3316330 Deanestown House Deanestown House 53.50306 -6.22056 S HSEC IE L 07 0 7 Europe/Dublin 2010-08-14 +3316331 Belinstown House Belinstown House 53.50167 -6.27361 S HSEC IE L 07 0 28 Europe/Dublin 2010-08-14 +3316332 Drisnoge Drisnoge 53.51 -6.29389 P PPL IE L 07 0 41 Europe/Dublin 2010-08-14 +3316333 Wrens Nest Wrens Nest 53.50722 -6.31861 S EST IE L 07 0 55 Europe/Dublin 2010-08-14 +3316334 Whitestown House Whitestown House 53.50778 -6.34361 S HSEC IE L 07 0 65 Europe/Dublin 2010-08-14 +3316335 Clonmethan Lodge Clonmethan Lodge 53.51917 -6.32028 S BLDG IE L 07 0 60 Europe/Dublin 2010-08-14 +3316336 Gracedieu Gracedieu 53.51278 -6.24528 P PPL IE L 07 0 18 Europe/Dublin 2010-08-14 +3316337 Richardstown Richardstown 53.51583 -6.23611 P PPL IE L 07 0 15 Europe/Dublin 2010-08-14 +3316338 Wyanstown House Wyanstown House 53.54028 -6.31972 S HSEC IE L 07 0 65 Europe/Dublin 2010-08-14 +3316339 Trallie Lodge Trallie Lodge 53.54333 -6.32361 S HSEC IE L 07 0 76 Europe/Dublin 2010-08-14 +3316340 Spring Hill Spring Hill 53.55139 -6.31972 T HLL IE L 07 0 88 Europe/Dublin 2010-08-14 +3316341 Fanning’s Walls Fanning's Walls 53.55972 -6.33444 P PPLL IE L 35 0 95 Europe/Dublin 2010-08-14 +3316342 Damastown Damastown Damastown 53.55583 -6.30472 P PPL IE L 07 0 90 Europe/Dublin 2010-11-05 +3316343 Mallahow House Mallahow House 53.55972 -6.30889 S HSEC IE L 07 0 101 Europe/Dublin 2010-08-14 +3316344 West Curragh House West Curragh House 53.57139 -6.31417 S HSEC IE L 07 0 110 Europe/Dublin 2010-08-14 +3316345 Beldaragh Beldaragh 53.56972 -6.25083 P PPL IE L 07 0 104 Europe/Dublin 2010-08-14 +3316346 Walshestown House Walshestown House 53.56583 -6.235 S HSEC IE L 07 0 76 Europe/Dublin 2010-08-14 +3316347 Hynestown Hynestown 53.57722 -6.28361 P PPL IE L 07 0 105 Europe/Dublin 2010-08-14 +3316348 Balrickard Balrickard 53.57222 -6.24167 P PPL IE L 07 0 84 Europe/Dublin 2010-08-14 +3316349 Nevitt Nevitt 53.555 -6.2375 P PPL IE L 07 0 65 Europe/Dublin 2010-08-14 +3316350 Gerrardstown House Gerrardstown House 53.54556 -6.27 S HSEC IE L 35 0 78 Europe/Dublin 2010-08-14 +3316351 Wimbletown Lodge Wimbletown Lodge 53.53194 -6.23667 S HSE IE L 07 0 32 Europe/Dublin 2010-08-14 +3316352 Corduff Corduff 53.51917 -6.20972 L LCTY IE L 07 0 22 Europe/Dublin 2010-08-14 +3316353 Clonswords House Clonswords House 53.53472 -6.2725 S HSEC IE L 07 0 56 Europe/Dublin 2010-08-14 +3316354 Greatcommon Greatcommon 53.53917 -6.16139 P PPL IE L 07 0 40 Europe/Dublin 2010-08-14 +3316355 The Five Roads The Five Roads 53.55417 -6.20917 P PPL IE L 07 0 68 Europe/Dublin 2010-08-14 +3316356 Palmerstown House Palmerstown House 53.55611 -6.17083 S HSEC IE L 07 0 71 Europe/Dublin 2010-08-14 +3316357 Courtlough House Courtlough House 53.56556 -6.18528 S HSEC IE L 07 0 82 Europe/Dublin 2010-08-14 +3316358 Balcunnin Balcunnin 53.56333 -6.14722 P PPL IE L 07 0 31 Europe/Dublin 2010-08-14 +3316359 Baldongan Baldongan 53.55722 -6.15694 P PPL IE L 07 0 45 Europe/Dublin 2010-08-14 +3316360 Cross of the Cage Cross of the Cage 53.58028 -6.18778 P PPL IE L 07 0 74 Europe/Dublin 2010-08-14 +3316361 Black Hills Black Hills 53.5825 -6.16889 T HLL IE L 07 0 43 Europe/Dublin 2010-08-14 +3316362 Hampton Hall Hampton Hall 53.59611 -6.16917 S RUIN IE L 07 0 1 Europe/Dublin 2010-08-14 +3316363 Bog of the Ring Bog of the Ring 53.58361 -6.22722 H BOG IE L 07 0 60 Europe/Dublin 2010-08-14 +3316364 Tanners Water Tanners Water 53.60056 -6.17056 L LCTY IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316365 Dermotstown Dermotstown 53.59 -6.22417 P PPL IE L 07 0 58 Europe/Dublin 2010-08-14 +3316366 Dallyhaysy Dallyhaysy 53.60083 -6.23139 P PPL IE L 07 0 33 Europe/Dublin 2010-08-14 +3316367 Whitestown House Whitestown House 53.60306 -6.24306 S HSEC IE L 07 0 39 Europe/Dublin 2010-08-14 +3316368 Kitchenstown Kitchenstown 53.5825 -6.24444 P PPL IE L 07 0 76 Europe/Dublin 2010-08-14 +3316369 Dornaville Dornaville 53.59611 -6.25861 L LCTY IE L 07 0 58 Europe/Dublin 2010-08-14 +3316370 Westown House Westown House 53.58167 -6.29917 S HSEC IE L 07 0 101 Europe/Dublin 2010-08-14 +3316371 Beshellstown House Beshellstown House 53.58333 -6.34111 S HSEC IE L 21 0 118 Europe/Dublin 2010-08-14 +3316372 Saul Park House Saul Park House 53.59 -6.29583 S HSEC IE L 21 0 85 Europe/Dublin 2010-08-14 +3316373 Clonalvy Clonalvy 53.58972 -6.33667 P PPL IE L 21 0 129 Europe/Dublin 2010-08-14 +3316374 Fourknocks Fourknocks 53.59556 -6.32861 L LCTY IE L 07 0 145 Europe/Dublin 2010-08-14 +3316375 Heathtown Cross Roads Heathtown Cross Roads 53.60833 -6.3375 P PPL IE L 21 0 134 Europe/Dublin 2010-08-14 +3316376 Greenanstown Greenanstown 53.62194 -6.31833 P PPL IE L 21 0 99 Europe/Dublin 2010-08-14 +3316377 Bellewstown Bellewstown Bellewstown 53.645 -6.345 P PPL IE L 21 0 85 Europe/Dublin 2010-08-14 +3316378 Bush Bush 53.62917 -6.32028 P PPL IE L 21 0 93 Europe/Dublin 2010-08-14 +3316379 Stadalt House Stadalt House 53.62583 -6.2725 S HSEC IE L 21 0 48 Europe/Dublin 2010-08-14 +3316380 Clonard Clonard 53.60583 -6.2275 P PPL IE L 07 0 33 Europe/Dublin 2010-08-14 +3316381 Tobersool House Tobersool House 53.62583 -6.24889 S HSEC IE L 07 0 19 Europe/Dublin 2010-08-14 +3316382 Tobertown Tobertown 53.61694 -6.25389 P PPL IE L 07 0 31 Europe/Dublin 2010-08-14 +3316383 Balscaddan Balscaddan 53.62306 -6.23083 P PPL IE L 07 0 14 Europe/Dublin 2010-08-14 +3316384 Issac’s Bower Issac's Bower 53.60972 -6.16667 T PT IE L 35 0 -9999 Europe/Dublin 2010-08-14 +3316385 Cardy Rocks Cardy Rocks 53.6325 -6.17861 T RKS IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316386 Lowtherstone Lowtherstone 53.63528 -6.2075 T RK IE L 07 0 -9999 Europe/Dublin 2010-08-14 +3316387 Gormanstown Camp Gormanstown Camp 53.64944 -6.23972 S CMP IE L 21 0 4 Europe/Dublin 2010-08-14 +3316388 Moorechurch House Moorechurch House 53.66167 -6.28333 S HSEC IE L 21 0 26 Europe/Dublin 2010-08-14 +3316389 Dardistown Castle Dardistown Castle 53.66639 -6.31278 S CSTL IE L 21 0 35 Europe/Dublin 2010-08-14 +3316390 Mosney Mosney 53.66639 -6.24083 P PPLL IE L 21 0 1 Europe/Dublin 2010-08-14 +3316391 Claire Mount Claire Mount 53.65111 -6.31306 P PPL IE L 21 0 74 Europe/Dublin 2010-08-14 +3316392 Ninch East Ninch East 53.68528 -6.26861 P PPL IE L 21 0 1 Europe/Dublin 2010-08-14 +3316393 Smithstown Smithstown 53.685 -6.29972 P PPL IE L 21 0 1 Europe/Dublin 2010-08-14 +3316394 Pilltown House Pilltown House 53.69833 -6.295 S HSEC IE L 21 0 1 Europe/Dublin 2010-08-14 +3316395 Colp Colp 53.70917 -6.29278 P PPL IE L 21 0 1 Europe/Dublin 2010-08-14 +3316396 Kiltrough Kiltrough 53.69556 -6.30889 P PPL IE L 21 0 1 Europe/Dublin 2010-08-14 +3316397 Kilsharvan House Kilsharvan House 53.66944 -6.34778 S HSEC IE L 21 0 6 Europe/Dublin 2010-08-14 +3316398 Beaumont Beaumont 53.66528 -6.35444 P PPL IE L 21 0 41 Europe/Dublin 2010-08-14 +3316399 Bellewstown House Bellewstown House 53.65917 -6.38139 S HSEC IE L 21 0 22 Europe/Dublin 2010-08-14 +3316400 Caulstown Caulstown 53.6725 -6.39417 P PPL IE L 21 0 38 Europe/Dublin 2010-08-14 +3316401 Annagor House Annagor House 53.67444 -6.36028 S HSEC IE L 21 0 14 Europe/Dublin 2010-08-14 +3316402 Beymore House Beymore House 53.69444 -6.3475 S HSEC IE L 21 0 2 Europe/Dublin 2010-08-14 +3316403 Stameen House Stameen House 53.71222 -6.31556 S HSEC IE L 21 0 1 Europe/Dublin 2010-08-14 +3316404 Mornington House Mornington House 53.72 -6.25778 S HSEC IE L 21 0 -9999 Europe/Dublin 2010-08-14 +3316405 The Bar The Bar 53.72472 -6.24111 H COVE IE L 21 0 -9999 Europe/Dublin 2010-08-14 +3316406 The Haven The Haven 53.73444 -6.25472 H COVE IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3316407 Moneymore Moneymore 53.72972 -6.3475 P PPL IE L 19 0 10 Europe/Dublin 2010-08-14 +3316408 Newtown Newtown 53.73167 -6.33778 P PPL IE L 19 0 8 Europe/Dublin 2010-08-14 +3316409 Newtown House Newtown House 53.73361 -6.31444 S HSEC IE L 19 0 9 Europe/Dublin 2010-08-14 +3316410 Baldoyle Baldoyle 53.73861 -6.27944 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +3316411 Beltichburne Beltichburne 53.745 -6.28778 P PPL IE L 19 0 3 Europe/Dublin 2010-08-14 +3316412 Townrath Bridge Townrath Bridge 53.745 -6.31667 P PPLL IE L 19 0 25 Europe/Dublin 2010-08-14 +3316413 Primatepark Primatepark 53.76111 -6.3075 P PPL IE L 19 0 29 Europe/Dublin 2010-08-14 +3316414 Canonstown Canonstown 53.75111 -6.31444 P PPL IE L 19 0 28 Europe/Dublin 2010-08-14 +3316415 Listoke House Listoke House 53.74861 -6.3425 S HSEC IE L 19 0 42 Europe/Dublin 2010-08-14 +3316416 Philipstown Philipstown 53.75278 -6.36389 P PPL IE L 19 0 74 Europe/Dublin 2010-08-14 +3316417 Newhouse Newhouse 53.7725 -6.31306 P PPL IE L 19 0 46 Europe/Dublin 2010-08-14 +3316418 Kiltallaght House Kiltallaght House 53.79389 -6.3175 S HSEC IE L 19 0 68 Europe/Dublin 2010-08-14 +3316419 Castlecoo Hill Castlecoo Hill 53.78722 -6.265 T HLL IE L 19 0 2 Europe/Dublin 2010-08-14 +3316420 Black Hall Cross Black Hall Cross 53.78278 -6.30417 L LCTY IE L 19 0 41 Europe/Dublin 2010-08-14 +3316421 Barnhill Cross Barnhill Cross 53.77639 -6.26333 P PPL IE L 19 0 2 Europe/Dublin 2010-08-14 +3316422 Tobertoby Tobertoby 53.77028 -6.25472 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +3316423 Murrays Cross Murrays Cross 53.81 -6.29722 P PPL IE L 19 0 29 Europe/Dublin 2010-08-14 +3316424 Reynold’s Town Reynold's Town 53.80917 -6.27056 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +3316425 Hackett’s Cross Hackett's Cross 53.80167 -6.25556 P PPL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3316426 Port Oriel Port Oriel 53.80194 -6.22278 L PRT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3316427 Carrigahoulla Carrigahoulla 53.81889 -6.25306 T HLL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3316428 Cruisetown Cruisetown 53.81639 -6.27361 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +3316429 Milltown Milltown 53.82417 -6.31278 P PPL IE L 19 0 48 Europe/Dublin 2010-08-14 +3316430 Cobbler’s Cross Cobbler's Cross 53.8225 -6.29583 P PPL IE L 19 0 26 Europe/Dublin 2010-08-14 +3316431 Ferrard Cross Ferrard Cross 53.84806 -6.28167 P PPL IE L 19 0 7 Europe/Dublin 2010-08-14 +3316432 Roadstown Roadstown 53.85861 -6.25306 P PPL IE L 19 0 1 Europe/Dublin 2010-08-14 +3316433 Coratown Cross Coratown Cross 53.86278 -6.27833 P PPL IE L 19 0 3 Europe/Dublin 2010-08-14 +3316434 Dunany Dunany 53.85806 -6.27917 P PPL IE L 19 0 6 Europe/Dublin 2010-08-14 +3316435 Hermitage Hermitage 53.87444 -6.26944 T PT IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3316436 Martin’s Cross Martin's Cross 53.86306 -6.31028 P PPL IE L 19 0 10 Europe/Dublin 2010-08-14 +3316437 Keenan’s Cross Keenan's Cross 53.85 -6.33889 P PPL IE L 19 0 40 Europe/Dublin 2010-08-14 +3316438 Dillonstown Cross Dillonstown Cross 53.86639 -6.34139 P PPL IE L 19 0 16 Europe/Dublin 2010-08-14 +3316439 Civil Hollow Civil Hollow 53.86833 -6.31417 P PPL IE L 19 0 3 Europe/Dublin 2010-08-14 +3316440 Clonmore Clonmore 53.84333 -6.33528 P PPL IE L 19 0 40 Europe/Dublin 2010-08-14 +3316441 White House White House 53.92472 -6.37806 S HSEC IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3316442 Linns Linns 53.89583 -6.36278 L LCTY IE L 19 0 -9999 Europe/Dublin 2010-08-14 +3316443 Lurgan Lurgan 53.925 -6.37778 P PPLL IE L 19 0 -9999 Europe/Dublin 2010-08-14 +6251993 Tipperary Institute Tipperary Institute 52.36407 -7.70528 S SCHC IE 00 0 37 Europe/Dublin 2010-08-14 +6296696 Cork Airport Cork Airport Aerfort Chorcai,Aerfort Chorcaí,Aeroport international de Cork,Aeroporto di Cork,Aeropuerto de Cork,Aéroport international de Cork,Cork International Airport,Corkeko aireportua,Corkin kansainvaelinen lentoasema,Corkin kansainvälinen lentoasema,EICK,Flughafen Cork,Kork,Medzinarodne letisko Cork,Medzinárodné letisko Cork,ORK,Port lotniczy Cork,San bay Cork,Sân bay Cork,koku kong gang,Корк,コーク空港 51.84127 -8.49111 S AIRP IE 0 153 122 Europe/Dublin 2007-01-03 +6296697 Dublin Airport Dublin Airport Aerfort Bhaile Atha Cliath,Aerfort Bhaile Átha Cliath,Aeroport international de Dublin,Aeroporto Internazionale di Dublino,Aeroporto de Dublin,Aeropuerto de Dublin,Aeropuerto de Dublín,Aéroport international de Dublin,Bandar Udara Dublin,DUB,Diethnes Aerodromio Douvlinou,Dublin Lufthavn,Dublin lufthavn,Dublingo aireportua,Dublini lennujaam,Dublinin lentoasema,Dublinskij aehroport,EIDW,Flughafen Dublin,Medzinarodne letisko Dublin,Medzinárodné letisko Dublin,Port lotniczy Dublin,daburin kong gang,dou bai lin ji chang,Διεθνές Αεροδρόμιο Δουβλίνου,Дублинский аэропорт,ダブリン空港,都柏林机场 53.42133 -6.27008 S AIRP IE L 07 0 73 22 Europe/Dublin 2010-08-14 +6296698 Connaught Connaught EIKN,NOC 53.91028 -8.81806 S AIRP IE 0 203 159 Europe/Dublin 2006-10-29 +6296699 Casement Aerodrome Casement Aerodrome EIME 53.30167 -6.45133 S AIRP IE 0 97 95 Europe/Dublin 2007-01-03 +6296700 Shannon Airport Shannon Airport Aerfort na Sionainne,Aeroport de Shannon,Aeroporto Internazionale di Shannon,Aeropuerto Internacional de Shannon,Aéroport de Shannon,EINN,Flughafen Shannon,Medzinarodne letisko Shannon,Medzinárodné letisko Shannon,Port lotniczy Shannon,SNN,Shannon,Shannon aireportua,Shannon lufthavn,Shannonin lentoasema,shanon kong gang,Шаннон,シャノン空港 52.70198 -8.92482 S AIRP IE 0 14 1 Europe/Dublin 2007-01-03 +6325503 Ballyphehane Ballyphehane 51.8784 -8.46085 P PPLX IE 0 59 Europe/Dublin 2007-02-12 +6325504 Ballykeefe Ballykeefe 52.64457 -8.66615 P PPLX IE 00 M 16 0 4 Europe/Dublin 2010-08-14 +6325505 BARNALYRA BARNALYRA 53.92496 -8.85326 P PPL IE 0 138 Europe/Dublin 2007-02-12 +6325510 Huntstown Huntstown 53.42242 -6.33362 P PPLX IE 0 73 Europe/Dublin 2007-02-13 +6325511 Janesboro Janesboro Janesborough 52.64535 -8.615 P PPLX IE 00 M 16 0 43 Europe/Dublin 2010-08-14 +6325512 Pouladuff Pouladuff 51.8748 -8.48636 P PPLX IE M 04 0 62 Europe/Dublin 2010-08-14 +6325568 Templenadeirca cemetery Templenadeirca cemetery Teampall na deirce cemetery,Templenadeirka 52.97475 -8.91127 S CMTY IE 0 44 Europe/Dublin 2008-08-06 +6325569 Lughid Bridge Lughid Bridge 52.97172 -8.89392 S BDG IE 0 45 Europe/Dublin 2007-02-15 +6325570 Tubber RC church Tubber RC church 52.99004 -8.89419 S CH IE 0 46 Europe/Dublin 2007-02-15 +6325571 Ranaghan cemetery Ranaghan cemetery Ranahan,The coill 52.96439 -8.96822 S CMTY IE 0 50 Europe/Dublin 2007-02-15 +6452625 Galway Airport Galway Airport Aeroport de Galway,Aeroporto di Galway,Aeropuerto de Galway,Aéroport de Galway,EICM,Flughafen Galway,GWY,Galway,Galway Airport,Goluehj,Port lotniczy Galway,Голуэй 53.30031 -8.94055 S AIRP IE 0 25 11 Europe/Dublin 2011-03-28 +6461814 The Morgan The Morgan 53.3457 -6.2606 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6461823 Stillorgan Park Hotel Stillorgan Park Hotel 53.2945 -6.203 S HTL IE 0 25 Europe/Dublin 2007-04-13 +6461923 Rosslare Rosslare 52.247 -6.345 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6461954 Lake Hotel Lake Hotel 52.052 -9.507 S HTL IE 0 66 Europe/Dublin 2007-04-13 +6461958 Whites of Wexford Whites of Wexford 52.3399 -6.464 S HTL IE L 30 0 1 Europe/Dublin 2010-08-14 +6461978 Connemara Coast Connemara Coast 53.257 -9.093 S HTL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +6461998 The Twelve Hotel The Twelve Hotel 53.5 -9.56 S HTL IE 0 106 Europe/Dublin 2007-04-15 +6462044 Lynch South Court Hotel Lynch South Court Hotel 52.62 -8.66 S HTL IE 0 18 Europe/Dublin 2007-04-13 +6462255 The Burlington Hotel The Burlington Hotel 53.33035 -6.24886 S HTL IE 00 0 9 Europe/Dublin 2010-08-14 +6463025 Marriott Johnstown House Enfield Hotel Marriott Johnstown House Enfield Hotel 53.4183 -6.8325 S HTL IE 0 86 Europe/Dublin 2007-04-13 +6463470 Mercer Hotel Mercer Hotel 53.3393 -6.2643 S HTL IE 0 7 Europe/Dublin 2007-04-13 +6463538 Mill Park Hotel Mill Park Hotel 54.9404 -7.9161 S HTL IE 0 97 Europe/Dublin 2007-04-13 +6463715 School House Hotel School House Hotel 53.3372 -6.2398 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6463763 The Westin Dublin The Westin Dublin 53.3449 -6.2591 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6463780 Kingsley Hotel Kingsley Hotel 51.893 -8.506 S HTL IE 0 59 Europe/Dublin 2007-04-13 +6463979 Royal Hotel & Leisure Center - Bray Royal Hotel & Leisure Center - Bray 53.2092 -6.108 S HTL IE 0 -9999 Europe/Dublin 2007-04-13 +6464092 Paramount Hotel Paramount Hotel 53.3449 -6.2674 S HTL IE 0 4 Europe/Dublin 2007-04-13 +6464284 Travelodge Waterford TRAVELODGE WATERFORD 52.25 -7.1 S HTL IE 0 10 Europe/Dublin 2007-04-13 +6464477 Radisson SAS St. Helen's Hotel Dublin Radisson SAS St. Helen's Hotel Dublin 53.3047 -6.2058 S HTL IE 0 9 Europe/Dublin 2007-04-13 +6464479 Bridge House Bridge House 53.3443 -6.2672 S HTL IE 0 4 Europe/Dublin 2007-04-13 +6464617 Woodstock Hotel Woodstock Hotel 52.8392 -8.9833 S HTL IE 0 15 Europe/Dublin 2007-04-13 +6464922 The Georgian Hotel The Georgian Hotel 53.3376 -6.2513 S HTL IE 0 5 Europe/Dublin 2007-04-13 +6464943 The Majestic Hotel The Majestic Hotel 52.16 -7.14 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6464959 Jurys Inn Galway Jurys Inn Galway 53.2709 -9.0542 S HTL IE C 10 0 1 Europe/Dublin 2010-08-14 +6465053 Castle Oaks House Hotel Castle Oaks House Hotel 52.713 -8.493 S HTL IE 0 55 Europe/Dublin 2007-04-13 +6465064 Hayfield Manor Hotel Hayfield Manor Hotel 51.8918 -8.4936 S HTL IE 0 57 Europe/Dublin 2007-04-13 +6465099 Conrad Mount Juliet Conrad Mount Juliet 52.5205 -7.1427 S HTL IE 0 42 Europe/Dublin 2007-04-13 +6465132 Jurys Inn Christchurch Jurys Inn Christchurch 53.3432 -6.2703 S HTL IE 0 4 Europe/Dublin 2007-04-13 +6465181 Adare Manor Hotel Golf Resort ADARE MANOR HOTEL GOLF RESORT 52.5666 -8.7833 S HTL IE 0 19 Europe/Dublin 2007-04-13 +6465227 O'Callaghan Alexander O'Callaghan Alexander 53.342 -6.2493 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6465277 Renvyle House Hotel Renvyle House Hotel 53.586 -9.938 S HTL IE 0 69 Europe/Dublin 2007-04-13 +6465548 Best Western Academy Hotel Best Western Academy Hotel 53.3522 -6.2602 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6465633 Jurys Inn Limerick Jurys Inn Limerick 52.6607 -8.6319 S HTL IE 0 18 Europe/Dublin 2007-04-13 +6465759 Ballygarry House Hotel & Spa Ballygarry House Hotel & Spa 52.2595 -9.6563 S HTL IE 0 60 Europe/Dublin 2007-04-13 +6465772 Dublin Skylon Hotel Dublin Skylon Hotel 53.3693 -6.2547 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6465954 Bunratty Shannon Shamrock Hotel Bunratty Shannon Shamrock Hotel 52.6966 -8.8221 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6466018 Montrose Hotel Montrose Hotel Jurys Montrose 53.3088 -6.21438 S HTL IE 00 0 7 Europe/Dublin 2010-08-14 +6466026 Lynch Green Isle Hotel Lynch Green Isle Hotel 53.2927 -6.4278 S HTL IE 0 95 Europe/Dublin 2007-04-13 +6466214 Galway Bay Hotel Galway Bay Hotel 53.25 -9.08 S HTL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +6466239 Clarion Hotel Dublin IFSC Clarion Hotel Dublin IFSC 53.3506 -6.2498 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6466249 Tara Towers Hotel Tara Towers Hotel 53.3122 -6.2017 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6466260 Hotel St George Hotel St George 53.3542 -6.2639 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6466324 Best Western Flannerys Hotel Best Western Flannerys Hotel 53.2766 -9.0055 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6466406 Quality Hotel And Leisure Centre Quality Hotel And Leisure Centre 51.6174 -8.8828 S HTL IE 0 14 Europe/Dublin 2007-04-13 +6466445 Gregans Castle Hotel Gregans Castle Hotel 53.1166 -9.15 S HTL IE M 03 0 24 Europe/Dublin 2010-08-14 +6466873 Dromoland Castle Dromoland Castle 52.75 -8.8833 S HTL IE 0 3 Europe/Dublin 2007-04-13 +6467052 Comfort Inn Tralee Comfort Inn Tralee 52.2692 -9.7042 S HTL IE 0 48 Europe/Dublin 2007-04-13 +6467118 Abbeyglen Castle Hotel Abbeyglen Castle Hotel 53.4883 -10.0155 S HTL IE 0 51 Europe/Dublin 2007-04-13 +6467178 Clontarf Castle Hotel Clontarf Castle Hotel 53.3644 -6.2066 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6467380 Merrion Hall Hotel Merrion Hall Hotel 53.3268 -6.2245 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6467541 Harbour Mill Harbour Mill 53.8022 -9.5522 S HTL IE 0 -9999 Europe/Dublin 2007-04-13 +6467917 Brooklodge Hotel Brooklodge Hotel 52.9785 -6.0422 S HTL IE 0 17 Europe/Dublin 2007-04-13 +6468190 Ballymaloe House BALLYMALOE HOUSE 51.9166 -8.1666 S HTL IE 0 48 Europe/Dublin 2007-04-13 +6468293 Letterkenny Court Hotel Letterkenny Court Hotel 54.951 -7.732 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6468761 Quality Hotel & Leisure Centre Cork Quality Hotel & Leisure Centre Cork 51.8986 -8.4958 S HTL IE 0 57 Europe/Dublin 2007-04-13 +6469003 The Fitzwilliam The Fitzwilliam 53.3394 -6.2611 S HTL IE 0 7 Europe/Dublin 2007-04-13 +6469100 Quality Hotel & Leisure Centre Killarney Quality Hotel & Leisure Centre Killarney 52.0592 -9.4808 S HTL IE 0 76 Europe/Dublin 2007-04-13 +6469110 Days Inn Talbot Street Days Inn Talbot Street 53.3499 -6.2597 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6469286 Hilton Dublin Hilton Dublin 53.3306 -6.2597 S HTL IE 0 15 Europe/Dublin 2007-04-13 +6469313 O'Callaghan Stephens Green O'Callaghan Stephens Green 53.3366 -6.2632 S HTL IE 0 7 Europe/Dublin 2007-04-13 +6469455 Shannon Court Hotel Shannon Court Hotel 52.7038 -8.8641 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6470104 Killarney Court Hotel Killarney Court Hotel 52.0718 -9.5202 S HTL IE 0 74 Europe/Dublin 2007-04-13 +6470175 Waterford Marina Hotel Waterford Marina Hotel 52.2575 -7.1035 S HTL IE 0 7 Europe/Dublin 2007-04-13 +6470805 Rushbrooke Rushbrooke 51.85517 -8.32421 S HTL IE M 04 0 24 Europe/Dublin 2010-08-14 +6470809 Belfry Belfry 52.2614 -7.1106 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6470813 Blarney Park Blarney Park 51.93433 -8.56242 S HTL IE 0 71 Europe/Dublin 2007-04-17 +6470904 Granville Granville 52.2622 -7.1124 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6470905 Days Hotel Galway Days Hotel Galway 53.2804 -9.0273 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6470908 Kenmare Bay Hotel Kenmare Bay Hotel 51.88 -9.584 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6470935 Rock Glen Country House Hotel Rock Glen Country House Hotel 53.489 -10.014 S HTL IE 0 51 Europe/Dublin 2007-04-13 +6470949 Herbert Park Herbert Park 53.3282 -6.23298 S HTL IE 0 3 Europe/Dublin 2007-04-17 +6470950 Ambassador Ambassador 51.90518 -8.46002 S HTL IE 0 57 Europe/Dublin 2007-04-17 +6470979 Imperial Hotel Imperial Hotel 53.274 -9.05 S HTL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +6471015 Earl Of Desmond Earl Of Desmond 52.2836 -9.6914 S HTL IE 0 69 Europe/Dublin 2007-04-17 +6471016 Forster Court Forster Court 53.275 -9.046 S HTL IE C 10 0 1 Europe/Dublin 2010-08-14 +6471017 Clontarf Castle Clontarf Castle 53.3653 -6.22633 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471021 Montague Montague 53.0151 -7.362 S HTL IE 0 137 Europe/Dublin 2007-04-17 +6471030 Ocean Cove Ocean Cove 52.68618 -9.64925 S HTL IE 0 8 Europe/Dublin 2007-04-17 +6471035 Towers Towers 52.05802 -9.93214 S HTL IE 0 149 Europe/Dublin 2007-04-17 +6471037 Mount Errigal Mount Errigal 54.95041 -7.7155 S HTL IE 0 50 Europe/Dublin 2007-04-17 +6471040 Mount Herbert Mount Herbert 53.33279 -6.22267 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471049 Rochestown Park Rochestown Park 51.877 -8.43 S HTL IE 0 9 Europe/Dublin 2007-04-17 +6471050 Gresham Gresham 53.35163 -6.26058 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471106 Westport Inn Westport Inn 53.8015 -9.5195 S HTL IE 0 93 Europe/Dublin 2007-04-17 +6471148 Butler Arms Hotel Butler Arms Hotel 51.8333 -10.1667 S HTL IE 0 14 Europe/Dublin 2007-04-13 +6471151 The Royal Marine Hotel The Royal Marine Hotel 53.2933 -6.135 S HTL IE L 07 0 1 Europe/Dublin 2010-08-14 +6471177 Malton Malton 52.058 -9.505 S HTL IE 0 66 Europe/Dublin 2007-04-17 +6471178 Academy Academy 53.35219 -6.26095 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471180 Lynch Green Isle Lynch Green Isle 53.30972 -6.40314 S HTL IE 00 0 76 Europe/Dublin 2010-08-14 +6471213 Clarence Clarence 53.34526 -6.26696 S HTL IE 0 4 Europe/Dublin 2007-04-17 +6471245 Imi Residence Imi Residence 53.279 -6.231 S HTL IE 0 88 Europe/Dublin 2007-04-17 +6471270 Two Mile Inn Hotel Two Mile Inn Hotel 52.6711 -8.6619 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6471271 Tower Tower 52.2599 -7.1053 S HTL IE 0 26 Europe/Dublin 2007-04-17 +6471289 Dunraven Arms Hotel Dunraven Arms Hotel 52.6311 -8.6556 S HTL IE 0 19 Europe/Dublin 2007-04-13 +6471327 Bridge House Bridge House 53.34623 -6.26123 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471330 Quality and Leisure Centre Quality and Leisure Centre 52.337 -6.4587 S HTL IE L 30 0 1 Europe/Dublin 2010-08-14 +6471340 Abbey Abbey 53.6298 -8.1923 S HTL IE 0 73 Europe/Dublin 2007-04-17 +6471342 Haydens Gateway Haydens Gateway 53.32995 -8.21555 S HTL IE 0 65 Europe/Dublin 2007-04-17 +6471346 Isaacs Isaacs 53.34971 -6.25316 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471347 Jurys Inn Parnell Street Jurys Inn Parnell Street 53.352 -6.264 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471362 Radisson SAS St Helen's Radisson SAS St Helen's 53.304 -6.208 S HTL IE 0 9 Europe/Dublin 2007-04-17 +6471363 Vienna Woods Vienna Woods 51.908 -8.383 S HTL IE 0 24 Europe/Dublin 2007-04-17 +6471367 The House Hotel The House Hotel 53.52 -9.08 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6471394 Dooleys Dooleys 52.2628 -7.1161 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6471395 Quality Quality 53.278 -8.927 S HTL IE 0 8 Europe/Dublin 2007-04-17 +6471396 Best Western Ashling Best Western Ashling 53.34816 -6.29167 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6471397 Merrion Merrion 53.33862 -6.25288 S HTL IE 0 5 Europe/Dublin 2007-04-17 +6471423 Dingle Benners Dingle Benners 52.13885 -10.26824 S HTL IE 0 18 Europe/Dublin 2007-04-17 +6471433 Blarney Woollen Mills Blarney Woollen Mills 51.93062 -8.56015 S HTL IE 0 68 Europe/Dublin 2007-04-17 +6471434 Comfort Inn Dublin Comfort Inn Dublin 53.35463 -6.26292 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471435 Clarion Hotel Cork Clarion Hotel Cork 51.8986 -8.4958 S HTL IE 0 57 Europe/Dublin 2007-04-13 +6471473 Connemara Coast Hotel Connemara Coast Hotel 53.2498 -9.2208 S HTL IE 0 -9999 Europe/Dublin 2007-04-13 +6471506 Sheldon Park Sheldon Park 53.329 -6.344 S HTL IE 0 46 Europe/Dublin 2007-04-17 +6471507 Morrison Hotel Morrison Hotel 53.3462 -6.2655 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6471508 Fitzwilliam Fitzwilliam 53.33988 -6.26179 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6471552 Quality Clarinbridge Quality Clarinbridge 53.227 -8.8785 S HTL IE 0 4 Europe/Dublin 2007-04-17 +6471553 Station House Station House 53.4897 -10.0164 S HTL IE 0 51 Europe/Dublin 2007-04-17 +6471554 Parliament Parliament 53.34417 -6.26774 S HTL IE 0 4 Europe/Dublin 2007-04-17 +6471555 Morgan Morgan 53.34588 -6.26104 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471568 Yeats County Inn Yeats County Inn 53.976 -8.788 S HTL IE 0 76 Europe/Dublin 2007-04-17 +6471578 Celtic Ross Celtic Ross 51.58253 -9.02458 S HTL IE 0 23 Europe/Dublin 2007-04-17 +6471579 Belbridge House Belbridge House 52.85601 -9.40199 S HTL IE 0 55 Europe/Dublin 2007-04-17 +6471621 White Sands White Sands 53.4224 -6.1342 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471623 Abraham House Hostel Abraham House Hostel 53.35138 -6.25454 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471624 Trident Trident 51.7017 -8.5183 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471641 Killarney Towers Killarney Towers 52.06 -9.509 S HTL IE 0 69 Europe/Dublin 2007-04-17 +6471656 Westin Westin 53.3448 -6.2598 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471697 Doughcloyne Doughcloyne 51.883 -8.508 S HTL IE 0 57 Europe/Dublin 2007-04-17 +6471698 Browns Browns 53.35319 -6.25375 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471699 Regency Regency 53.397 -6.245 S HTL IE 0 11 Europe/Dublin 2007-04-17 +6471702 Talbot Talbot 52.3358 -6.457 S HTL IE L 30 0 -9999 Europe/Dublin 2010-08-14 +6471716 Great Southern Great Southern 52.2505 -6.3489 S HTL IE 0 -9999 Europe/Dublin 2007-04-17 +6471719 Trinity Capital Trinity Capital 53.3454 -6.254 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471727 Berkeley Court Berkeley Court 53.333 -6.233 S HTL IE 0 3 Europe/Dublin 2007-04-17 +6471765 Russell Court Russell Court 53.3361 -6.26386 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6471793 Glengarriff Eccles Glengarriff Eccles 51.74735 -9.54919 S HTL IE 0 -9999 Europe/Dublin 2007-04-17 +6471794 Jurys Custom House Inn Jurys Custom House Inn 53.348 -6.247 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471861 Ridgepool Ridgepool 54.11192 -9.15213 S HTL IE 0 6 Europe/Dublin 2007-04-17 +6471876 The Ambassador Hotel THE AMBASSADOR HOTEL 52.1833 -7.3333 S HTL IE 0 76 Europe/Dublin 2007-04-13 +6471904 Pery's Pery's 52.6604 -8.6281 S HTL IE 0 18 Europe/Dublin 2007-04-17 +6471906 Quality Quality 51.959 -7.857 S HTL IE 0 -9999 Europe/Dublin 2007-04-17 +6471936 Royal Dublin Royal Dublin 53.35259 -6.26116 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6471937 Holiday Inn Killarney Holiday Inn Killarney 52.052 -9.507 S HTL IE 0 66 Europe/Dublin 2007-04-17 +6471980 Cahernane House Hotel Cahernane House Hotel 52.0615 -9.5193 S HTL IE 0 68 Europe/Dublin 2007-04-13 +6471982 Bunratty Shannon Shamrock Bunratty Shannon Shamrock 52.6997 -8.8201 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6471995 Castle Hotel Castle Hotel 53.34409 -6.2675 S HTL IE 0 4 Europe/Dublin 2007-04-17 +6472004 Falls Falls 52.93747 -9.28788 S HTL IE 0 43 Europe/Dublin 2007-04-17 +6472045 Avalon House Avalon House 53.33948 -6.26636 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6472046 Commodore Commodore 51.85 -8.299 S HTL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +6472047 Dunloe Castle Dunloe Castle 52.05594 -9.60598 S HTL IE 0 58 Europe/Dublin 2007-04-17 +6472048 Drury Court Drury Court 53.3411 -6.26469 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6472064 South Court South Court 52.6216 -8.65667 S HTL IE 0 23 Europe/Dublin 2007-04-17 +6472072 Gleneagle Gleneagle 52.056 -9.508 S HTL IE 0 66 Europe/Dublin 2007-04-17 +6472128 Blooms Hotel Blooms Hotel 53.34464 -6.2619 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472133 Ardilaun House Ardilaun House 53.269 -9.079 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472134 Dromhall Hotel Dromhall Hotel 52.0529 -9.5067 S HTL IE 0 66 Europe/Dublin 2007-04-17 +6472135 Arlington Arlington 53.34755 -6.26008 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472176 Ballyseede Castle Ballyseede Castle 52.25656 -9.64696 S HTL IE 00 0 63 Europe/Dublin 2010-08-14 +6472179 Old Quarter Old Quarter 52.6638 -8.6239 S HTL IE 0 24 Europe/Dublin 2007-04-17 +6472180 Eliza Lodge Eliza Lodge 53.34559 -6.26494 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472181 North Star North Star 53.35052 -6.2513 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472185 Clare Inn Clare Inn 52.7221 -8.8641 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472193 Breaffy House Breaffy House 53.8545 -9.2999 S HTL IE 0 48 Europe/Dublin 2007-04-17 +6472264 Wynn's Wynn's 53.34828 -6.25865 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472265 Oak Wood Arms Oak Wood Arms 52.7118 -8.8801 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472297 Eviston House Hotel Killarney Eviston House Hotel Killarney 52.059 -9.511 S HTL IE 0 69 Europe/Dublin 2007-04-17 +6472298 Grand Hotel Tramore Grand Hotel Tramore 52.1653 -7.156 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472299 Leeson Court Leeson Court 53.33164 -6.25337 S HTL IE 0 12 Europe/Dublin 2007-04-17 +6472300 Blarney Castle Blarney Castle 51.93292 -8.56828 S HTL IE 0 70 Europe/Dublin 2007-04-17 +6472302 Old Ground Old Ground 52.83901 -8.98249 S HTL IE 0 15 Europe/Dublin 2007-04-17 +6472329 Hotel Ard Na Sidhe HOTEL ARD NA SIDHE 52.1 -9.7833 S HTL IE 0 9 Europe/Dublin 2007-04-13 +6472344 Queens Queens 52.8455 -8.9815 S HTL IE 0 14 Europe/Dublin 2007-04-17 +6472345 Menlo Park Menlo Park 53.278 -9.051 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472346 Buswells Buswells 53.34121 -6.25669 S HTL IE 0 5 Europe/Dublin 2007-04-17 +6472347 Central Central 53.34317 -6.26411 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472371 Mercer Court Mercer Court 53.34014 -6.26446 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6472382 Castlerosse Castlerosse 52.068 -9.547 S HTL IE 0 75 Europe/Dublin 2007-04-17 +6472383 Mespil Hotel Mespil Hotel 53.3338 -6.2457 S HTL IE 0 3 Europe/Dublin 2007-04-13 +6472384 Tara Towers Tara Towers 53.312 -6.202 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472385 Mceniff Skylon Mceniff Skylon 53.37215 -6.2548 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472386 Great Southern Dublin Airport Great Southern Dublin Airport 53.436 -6.228 S HTL IE 0 16 Europe/Dublin 2007-04-17 +6472433 Royal Royal 53.2047 -6.1096 S HTL IE 0 10 Europe/Dublin 2007-04-17 +6472434 Days Rathmines Days Rathmines 53.32663 -6.26447 S HTL IE 0 15 Europe/Dublin 2007-04-17 +6472439 Dingle Skelling Dingle Skelling 52.1368 -10.2813 S HTL IE 0 -9999 Europe/Dublin 2007-04-17 +6472452 Sarsfield Bridge Hotel Sarsfield Bridge Hotel 52.6645 -8.6291 S HTL IE 0 18 Europe/Dublin 2007-04-17 +6472453 Mercer Hotel Mercer Hotel 53.3395 -6.26389 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6472455 Hilton Dublin Airport Hilton Dublin Airport 53.40365 -6.18024 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472464 Victoria House Victoria House 52.038 -9.493 S HTL IE 0 60 Europe/Dublin 2007-04-17 +6472509 Ard Ri Ard Ri 52.2704 -7.1071 S HTL IE 0 49 Europe/Dublin 2007-04-17 +6472516 Quality Quality 51.623 -8.88 S HTL IE 0 14 Europe/Dublin 2007-04-17 +6472518 Imperial Escape Salon And Spa Imperial Escape Salon And Spa 51.8969 -8.4705 S HTL IE 0 57 Europe/Dublin 2007-04-17 +6472531 Killarney Plaza Killarney Plaza 52.058 -9.508 S HTL IE 0 66 Europe/Dublin 2007-04-17 +6472532 Jurys Towers Jurys Towers 53.3347 -6.2416 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472539 Randles Court Randles Court 52.05383 -9.5064 S HTL IE 0 66 Europe/Dublin 2007-04-17 +6472577 Ashlee Lodge Ashlee Lodge 51.9339 -8.5721 S HTL IE 0 76 Europe/Dublin 2007-04-17 +6472591 Belmont Belmont 53.7944 -8.9181 S HTL IE 0 78 Europe/Dublin 2007-04-17 +6472605 Downhill House Downhill House 54.119 -9.139 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6472643 Castleknock Castleknock 53.36461 -6.3938 S HTL IE 0 30 Europe/Dublin 2007-04-17 +6472644 Ormonde Ormonde 52.648 -7.2526 S HTL IE 0 65 Europe/Dublin 2007-04-17 +6472661 Hibernian Hibernian 52.6488 -7.2514 S HTL IE 0 65 Europe/Dublin 2007-04-17 +6472667 Grand Canal Hotel Grand Canal Hotel 53.33805 -6.23857 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472678 Imperial Hotel and Spa Imperial Hotel and Spa 51.89722 -8.47054 S HTL IE 0 57 Europe/Dublin 2007-04-17 +6472690 Leeson Inn Downtown Leeson Inn Downtown 53.3343 -6.2551 S HTL IE 0 5 Europe/Dublin 2007-04-13 +6472723 Faithlegg House Faithlegg House 52.2426 -6.9817 S HTL IE 0 -9999 Europe/Dublin 2007-04-17 +6472751 Clarion Hotel Dublin IFSC Clarion Hotel Dublin IFSC 53.34769 -6.23347 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472808 Lawlors Lawlors 52.08822 -7.61424 S HTL IE 0 -9999 Europe/Dublin 2007-04-17 +6472809 Kingsvalley Kingsvalley 53.275 -9.001 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6472810 Abberley Court Abberley Court 53.287 -6.367 S HTL IE 0 87 Europe/Dublin 2007-04-17 +6472811 Plaza Plaza 53.286 -6.366 S HTL IE 0 86 Europe/Dublin 2007-04-17 +6472833 Jackson Court Jackson Court 53.33631 -6.26388 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6472844 Bridge Bridge 52.2638 -7.1188 S HTL IE 0 8 Europe/Dublin 2007-04-17 +6472846 Derrynane Derrynane 51.74671 -10.11875 S HTL IE M 11 0 -9999 Europe/Dublin 2010-08-14 +6472847 Great Southern Shannon Great Southern Shannon 52.6903 -8.9123 S HTL IE M 03 0 -9999 Europe/Dublin 2010-08-14 +6472848 Le Meridien Shelbourne Le Meridien Shelbourne 53.338 -6.2591 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6472860 Cedar Lodge Hotel Cedar Lodge Hotel 52.3412 -6.792 S HTL IE 0 76 Europe/Dublin 2007-04-13 +6472894 Abbey Abbey 54.6521 -8.1069 S HTL IE 0 31 Europe/Dublin 2007-04-17 +6472915 Quality Hotel Wexford Quality Hotel Wexford 52.3231 -6.5014 S HTL IE 0 76 Europe/Dublin 2007-04-17 +6472923 Killarney Ryan Killarney Ryan 52.0601 -9.5139 S HTL IE 0 69 Europe/Dublin 2007-04-17 +6472924 Aghadoe Heights Aghadoe Heights 52.07268 -9.53768 S HTL IE 0 76 Europe/Dublin 2007-04-17 +6472925 Westport, Leisure Spa Conference Westport, Leisure Spa Conference 53.7984 -9.52202 S HTL IE 0 108 Europe/Dublin 2007-04-17 +6472943 Park Hotel Park Hotel 53.834 -7.079 S HTL IE 0 120 Europe/Dublin 2007-04-13 +6472964 Cassidys Cassidys 53.35329 -6.26148 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472965 Lynams Lynams 53.35016 -6.26118 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472994 Fleet Street Temple Bar Fleet Street Temple Bar 53.346 -6.26 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6472995 Brooks Hotel Brooks Hotel 53.3423 -6.2633 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6473038 Chief O Neill's Chief O Neill's 53.34824 -6.2778 S HTL IE 0 5 Europe/Dublin 2007-04-17 +6473052 Brandon Inn Brandon Inn 52.2675 -9.7098 S HTL IE 0 45 Europe/Dublin 2007-04-17 +6473061 Corrib Great Southern Corrib Great Southern 53.277 -9.008 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6473103 Cabra Castle Cabra Castle 53.9009 -6.7912 S HTL IE 0 74 Europe/Dublin 2007-04-17 +6473107 Heritage Heritage 53.035 -7.302 S HTL IE L 15 0 138 Europe/Dublin 2010-08-14 +6473117 Great Southern Great Southern 51.83823 -9.89903 S HTL IE 0 47 Europe/Dublin 2007-04-17 +6473135 Jurys Inn Limerick Jurys Inn Limerick 52.666 -8.6319 S HTL IE 0 18 Europe/Dublin 2007-04-17 +6473136 Grafton Capital Grafton Capital 53.341 -6.264 S HTL IE 0 7 Europe/Dublin 2007-04-17 +6473137 Flannery's Flannery's 53.277 -9.013 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6473138 Great Southern Cork Airport Great Southern Cork Airport 51.8477 -8.4873 S HTL IE 0 111 Europe/Dublin 2007-04-17 +6473185 Harding Harding 53.34413 -6.26936 S HTL IE 0 4 Europe/Dublin 2007-04-17 +6473190 New Park New Park 52.6595 -7.248 S HTL IE 0 63 Europe/Dublin 2007-04-17 +6473206 Kenmare Bay Kenmare Bay 51.8702 -9.6527 S HTL IE 0 2 Europe/Dublin 2007-04-17 +6473220 Oranmore Lodge Oranmore Lodge 53.273 -8.936 S HTL IE 0 -9999 Europe/Dublin 2007-04-17 +6473221 Logues Liscannor Bay Logues Liscannor Bay 52.93921 -9.39836 S HTL IE 0 1 Europe/Dublin 2007-04-17 +6473222 Maryborough House Hotel Maryborough House Hotel 51.87 -8.42 S HTL IE 0 38 Europe/Dublin 2007-04-13 +6473629 Radisson SAS Hotel Dublin Airport Radisson SAS Hotel Dublin Airport 53.4264 -6.2327 S HTL IE 0 16 Europe/Dublin 2007-04-13 +6473985 Premier Suites Dublin, Stephens Hall Premier Suites Dublin, Stephens Hall 53.3359 -6.2551 S HTL IE 0 5 Europe/Dublin 2007-04-13 +6475729 Harcourt Hotel Shaw Court Serviced Apartments 53.3359 -6.2632 S HTL IE 0 7 Europe/Dublin 2007-04-13 +6476627 O'Callaghan Davenport O'Callaghan Davenport 53.3414 -6.2504 S HTL IE 0 5 Europe/Dublin 2007-04-13 +6477541 Dylan Hotel Dylan Hotel 53.3342 -6.2437 S HTL IE 0 3 Europe/Dublin 2007-04-13 +6477781 Aberdeen Lodge Hotel Aberdeen Lodge Hotel 53.3254 -6.2132 S HTL IE 0 -9999 Europe/Dublin 2007-04-13 +6478333 Castle Hotel and Leisure Centre Castle Hotel and Leisure Centre 51.8928 -8.8721 S HTL IE 0 75 Europe/Dublin 2007-04-12 +6478463 Parliament Hotel Parliament Hotel 53.344 -6.2681 S HTL IE 0 4 Europe/Dublin 2007-04-12 +6478602 Portmarnock Hotel & Golf Links Portmarnock Hotel & Golf Links 53.4301 -6.1266 S HTL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +6479494 Grafton Capital Hotel Grafton Capital Hotel 53.3414 -6.2652 S HTL IE 0 7 Europe/Dublin 2007-04-12 +6479705 Auburn Lodge Hotel Auburn Lodge Hotel 52.8458 -8.9881 S HTL IE 0 18 Europe/Dublin 2007-04-12 +6479873 Sligo Park Hotel Sligo Park Hotel 54.2605 -8.4669 S HTL IE 0 13 Europe/Dublin 2007-04-12 +6480134 Bayview Hotel Bayview Hotel 51.8279 -8.0141 S HTL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +6480354 The Ard Ri Hotel The Ard Ri Hotel 52.27 -7.107 S HTL IE 0 49 Europe/Dublin 2007-04-12 +6480585 Conrad Dublin Conrad Dublin 53.3352 -6.2578 S HTL IE 0 5 Europe/Dublin 2007-04-12 +6480757 O'Callaghan Mont Clare O'Callaghan Mont Clare 53.3414 -6.2514 S HTL IE 0 5 Europe/Dublin 2007-04-12 +6480833 The Clarence The Clarence 53.3454 -6.2671 S HTL IE 0 4 Europe/Dublin 2007-04-12 +6480859 Jurys Berkeley Court Hotel Jurys Berkeley Court Hotel 53.3337 -6.2324 S HTL IE 0 1 Europe/Dublin 2007-04-12 +6480903 Jurys Inn Custom House Jurys Inn Custom House 53.3479 -6.2471 S HTL IE 0 1 Europe/Dublin 2007-04-12 +6482143 The Shelbourne The Shelbourne 53.3364 -6.2628 S HTL IE 0 7 Europe/Dublin 2007-04-12 +6482309 Glenlo Abbey Hotel Glenlo Abbey Hotel 53.268 -8.9639 S HTL IE 0 -9999 Europe/Dublin 2007-04-12 +6482625 Jurys Cork Hotel Jurys Cork Hotel 51.8942 -8.497 S HTL IE 0 57 Europe/Dublin 2007-04-12 +6482881 Jurys Inn Cork Jurys Inn Cork 51.8995 -8.4636 S HTL IE 0 57 Europe/Dublin 2007-04-12 +6483669 Clarion Hotel Dublin Airport Clarion Hotel Dublin Airport 53.4274 -6.2331 S HTL IE 0 16 Europe/Dublin 2007-04-12 +6483818 Jurys Ballsbridge Hotel Jurys Ballsbridge Hotel 53.3317 -6.2348 S HTL IE 0 6 Europe/Dublin 2007-04-12 +6483990 Fitzpatrick Castle Hotel Fitzpatrick Castle Hotel 53.2694 -6.1134 S HTL IE L 07 0 1 Europe/Dublin 2010-08-14 +6484397 Silver Springs Moran Hotel Silver Springs Moran Hotel 51.9032 -8.4211 S HTL IE 0 62 Europe/Dublin 2007-04-12 +6484820 Westbury Hotel Westbury Hotel 53.3409 -6.2606 S HTL IE 0 7 Europe/Dublin 2007-04-12 +6486896 Temple Bar Hotel Temple Bar Hotel 53.3458 -6.2602 S HTL IE 0 2 Europe/Dublin 2007-04-12 +6490492 Marriott Ashbourne Hotel Marriott Ashbourne Hotel 53.5088 -6.3961 S HTL IE 0 75 Europe/Dublin 2007-04-15 +6490528 Castle Dargan Hotel Castle Dargan Hotel 54.1966 -8.4375 S HTL IE 0 63 Europe/Dublin 2007-04-15 +6490818 Arlington Hotel Arlington Hotel 53.342 -6.2493 S HTL IE 0 1 Europe/Dublin 2007-04-15 +6490845 Days Hotel Waterford City Days Hotel Waterford City 52.25 -7.1 S HTL IE 0 10 Europe/Dublin 2007-04-15 +6491100 Hilton Limerick Hilton Limerick 52.6666 -8.6322 S HTL IE 0 18 Europe/Dublin 2007-04-15 +6491126 Cork International Aiport Hotel Cork International Aiport Hotel 51.8521 -8.4855 S HTL IE 0 103 Europe/Dublin 2007-04-15 +6491172 Premier Apartments Dublin Sandyford Premier Apartments Dublin Sandyford 53.2793 -6.211 S HTL IE 0 74 Europe/Dublin 2007-04-15 +6491213 Comfort Inn City West Comfort Inn City West 53.3056 -6.407 S HTL IE 0 79 Europe/Dublin 2007-04-15 +6491329 Ashley Hotel Ashley Hotel 51.9017 -8.4703 S HTL IE 0 57 Europe/Dublin 2007-04-15 +6491368 Lancaster Lodge Lancaster Lodge 51.8964 -8.4805 S HTL IE 0 57 Europe/Dublin 2007-04-15 +6491441 Park Hotel Park Hotel 53.8481 -9.0016 S HTL IE 0 40 Europe/Dublin 2007-04-15 +6491521 Killarney International Youth Hostel Killarney International Youth Hostel 53.06 -9.52 S HTL IE C 10 0 1 Europe/Dublin 2010-08-14 +6491542 Dublin City Hotel Dublin City Hotel 53.3442 -6.2633 S HTL IE 0 2 Europe/Dublin 2007-04-15 +6491642 Portobello Hotel Portobello Hotel 53.3307 -6.2643 S HTL IE 0 15 Europe/Dublin 2007-04-15 +6491679 Clew Bay Hotel Clew Bay Hotel 53.7996 -9.5207 S HTL IE 0 108 Europe/Dublin 2007-04-15 +6491826 The George Boutique Hotel The George Boutique Hotel 52.6623 -8.6283 S HTL IE 0 18 Europe/Dublin 2007-04-15 +6491850 Kilkee Bay Hotel Kilkee Bay Hotel 52.67 -9.62 S HTL IE 0 9 Europe/Dublin 2007-04-14 +6491998 The Lodge at Doonbeg Golf Club The Lodge at Doonbeg Golf Club 52.7166 -9.5166 S HTL IE 0 1 Europe/Dublin 2007-04-15 +6492056 Ramada Hotel and Suites at Killerig Golf Resort Ramada Hotel and Suites at Killerig Golf Resort 52.8435 -6.7894 S HTL IE 0 97 Europe/Dublin 2007-04-15 +6492261 Connemara Gateway Hotel Connemara Gateway Hotel 53.12 -9.04 S HTL IE 0 104 Europe/Dublin 2007-04-15 +6492276 Mount Errigal Hotel Mount Errigal Hotel 54.95 -7.71 S HTL IE 0 58 Europe/Dublin 2007-04-15 +6492342 Quality Hotel & Leisure Centre Limerick Quality Hotel & Leisure Centre Limerick 52.6493 -8.6163 S HTL IE 0 43 Europe/Dublin 2007-04-15 +6492514 Comfort Inn And Leisure Centre Comfort Inn And Leisure Centre 53.0217 -7.2986 S HTL IE 0 142 Europe/Dublin 2007-04-14 +6492638 Silver Swan Hotel Silver Swan Hotel 54.27 -8.47 S HTL IE 0 5 Europe/Dublin 2007-04-14 +6492859 The Fitzwilton Hotel The Fitzwilton Hotel 52.26 -7.11 S HTL IE 0 7 Europe/Dublin 2007-04-14 +6492877 Lansdowne Hotel Lansdowne Hotel 53.33245 -6.24254 S HTL IE 00 0 9 Europe/Dublin 2010-08-14 +6492915 Corrib Village (Budget Accommodation) Corrib Village (Budget Accommodation) 53.28764 -9.06587 S HTL IE C 10 0 9 Europe/Dublin 2010-08-14 +6492941 Patrick Punchs Patrick Punchs 52.64 -8.63 S HTL IE 0 34 Europe/Dublin 2007-04-14 +6492968 Days Hotel Dublin Park West Days Hotel Dublin Park West 53.3322 -6.3675 S HTL IE 0 56 Europe/Dublin 2007-04-14 +6492986 Days Hotel Castlebar Days Hotel Castlebar 53.85 -9.3 S HTL IE 0 49 Europe/Dublin 2007-04-14 +6493303 Park Plaza Tyrrelstown Dublin Park Plaza Tyrrelstown Dublin 53.4217 -6.3394 S HTL IE 0 73 Europe/Dublin 2007-04-14 +6493308 Oak Wood Arms Hotel Oak Wood Arms Hotel 52.71 -8.882 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6493357 Ramada Htl Suites Ballykiste Ramada Htl Suites Ballykiste 52.497 -8.2033 S HTL IE 0 126 Europe/Dublin 2007-04-14 +6493544 Grand Hotel Grand Hotel 53.4509 -6.1491 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6493564 Ramada Hotel & Suites Lough Allen Ramada Hotel & Suites Lough Allen 54.047 -8.04 S HTL IE 0 72 Europe/Dublin 2007-04-14 +6493635 Park Inn Dublin Park Inn Dublin 53.3465 -6.2789 S HTL IE 0 5 Europe/Dublin 2007-04-14 +6493652 Radisson SAS Farnham Estate Hotel Radisson SAS Farnham Estate Hotel 53.99 -7.36 S HTL IE 0 101 Europe/Dublin 2007-04-14 +6493656 Clarion Hotel Suites Limerick Clarion Hotel Suites Limerick 52.671 -8.662 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6493691 Ramada Encore Letterkenny Ramada Encore Letterkenny 54.959 -7.732 S HTL IE 0 90 Europe/Dublin 2007-04-14 +6493713 Setanta House Hotel Setanta House Hotel 53.3358 -6.5557 S HTL IE 0 55 Europe/Dublin 2007-04-14 +6493765 Ramada Hotel and Suites at The Blarney Golf Resort Ramada Hotel and Suites at The Blarney Golf Resort 51.9 -8.49 S HTL IE 0 57 Europe/Dublin 2007-04-14 +6493793 Days Hotel Dublin Airport Days Hotel Dublin Airport 53.4008 -6.2634 S HTL IE 0 18 Europe/Dublin 2007-04-14 +6493939 Derrynane Hotel Derrynane Hotel 51.769 -10.099 S HTL IE 0 72 Europe/Dublin 2007-04-14 +6494059 Days Hotel Kilkenny Days Hotel Kilkenny 52.538 -7.467 S HTL IE 0 86 Europe/Dublin 2007-04-14 +6494393 Riverwalk Riverwalk 52.25 -7.102 S HTL IE 0 15 Europe/Dublin 2007-04-14 +6494650 Oriel House Hotel Oriel House Hotel 51.88 -8.58 S HTL IE 0 67 Europe/Dublin 2007-04-14 +6494683 Carton House Hotel Carton House Hotel 53.3782 -6.5559 S HTL IE 0 65 Europe/Dublin 2007-04-14 +6494719 Park House Hotel Park House Hotel 53.114 -9.15 S HTL IE M 03 0 24 Europe/Dublin 2010-08-14 +6494912 Sheraton Fota Island Golf Resort & Spa Sheraton Fota Island Golf Resort & Spa 51.898 -8.294 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6495087 Lansdowne Arms Hotel Lansdowne Arms Hotel 51.88 -9.584 S HTL IE 0 61 Europe/Dublin 2007-04-14 +6495291 Dunboyne Castle Hotel And Spa Dunboyne Castle Hotel And Spa 53.4132 -6.4869 S HTL IE 0 80 Europe/Dublin 2007-04-14 +6495392 Comfort Inn Smithfield Comfort Inn Smithfield 53.3487 -6.2784 S HTL IE 0 5 Europe/Dublin 2007-04-14 +6495504 Radisson SAS Hotel & Spa, Cork Radisson SAS Hotel & Spa, Cork 51.906 -8.356 S HTL IE 0 42 Europe/Dublin 2007-04-14 +6495566 Browns Hostel Browns Hostel 53.352 -6.2553 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6495682 The Mount Wolseley Hilton The Mount Wolseley Hilton 52.8002 -6.7369 S HTL IE 0 86 Europe/Dublin 2007-04-14 +6496011 Tulip Inn Dublin Airport Tulip Inn Dublin Airport 53.4449 -6.2282 S HTL IE 0 14 Europe/Dublin 2007-04-14 +6496081 Killarney Oaks Killarney Oaks 52.052 -9.507 S HTL IE 0 66 Europe/Dublin 2007-04-14 +6496289 D Hotel D Hotel 53.716 -6.357 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6496433 Jacobs Inn Jacobs Inn 53.351 -6.2513 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6496673 Dublin City University Dublin City University 53.38541 -6.25777 S UNIV IE L 0 8 Europe/Dublin 2011-02-15 +6496706 Kilronan House Kilronan House 53.3328 -6.2596 S HTL IE 0 15 Europe/Dublin 2007-04-14 +6496876 Isaacs Hostel Isaacs Hostel 53.3497 -6.2526 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6496954 The Courtyard by Marriott The Courtyard by Marriott 53.2862 -9.04486 S HTL IE 0 1 Europe/Dublin 2007-10-18 +6496981 Ramada Woodland Court Hotel Ramada Woodland Court Hotel 53.1861 -6.1009 S HTL IE 0 64 Europe/Dublin 2007-04-14 +6497023 Fairgreen Hotel Fairgreen Hotel 53.27 -9.04 S HTL IE C 10 0 1 Europe/Dublin 2010-08-14 +6497059 Grand Hotel Grand Hotel 52.161 -7.15 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6497116 Rushbrooke Hotel Cobh Cork Rushbrooke Hotel Cobh Cork 51.849 -8.299 S HTL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +6497284 Christchurch Hall Apartments Christchurch Hall Apartments 53.3429 -6.2716 S HTL IE 0 4 Europe/Dublin 2007-04-14 +6497426 Woodlands Hotel Woodlands Hotel 52.1687 -7.5773 S HTL IE 0 332 Europe/Dublin 2007-04-14 +6497432 Blarney Woollen Mills Hotel Blarney Woollen Mills Hotel 51.933 -8.5691 S HTL IE 0 70 Europe/Dublin 2007-04-14 +6497434 Burke's Armada Burke's Armada 52.856 -9.4019 S HTL IE 0 55 Europe/Dublin 2007-04-14 +6497491 Clybaun Hotel Clybaun Hotel 53.2671 -9.1065 S HTL IE 0 4 Europe/Dublin 2007-04-14 +6497500 Athenaeum House Hotel Athenaeum House Hotel 52.1687 -7.5773 S HTL IE 0 332 Europe/Dublin 2007-04-14 +6497536 Castleknock Hotel and Country Club Castleknock Hotel and Country Club 53.3645 -6.3896 S HTL IE 0 27 Europe/Dublin 2007-04-14 +6497537 Stay Dublin Apartments Stay Dublin Apartments 53.3478 -6.2644 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6497680 Park Inn Dundalk Park Inn Dundalk 54.0222 -6.407 S HTL IE 0 8 Europe/Dublin 2007-04-14 +6497721 Lynams Hotel Lynams Hotel 53.353 -6.2606 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6497740 Ramada Viking Hotel Ramada Viking Hotel 52.244 -7.144 S HTL IE 0 29 Europe/Dublin 2007-04-14 +6497751 Druids Glen Marriott Hotel Druids Glen Marriott Hotel 53.0903 -6.0969 S HTL IE 0 65 Europe/Dublin 2007-04-14 +6497791 Park Inn Mulranny Park Inn Mulranny 53.7923 -9.5638 S HTL IE 0 12 Europe/Dublin 2007-04-14 +6497799 Abbey Hotel Abbey Hotel 53.3483 -6.2606 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6497825 Clarion Hotel Sligo Clarion Hotel Sligo 54.2725 -8.4798 S HTL IE 0 5 Europe/Dublin 2007-04-14 +6497861 Quality Hotel Dublin City Quality Hotel Dublin City 53.3455 -6.2406 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6497879 Imperial Hotel Imperial Hotel 51.89 -8.47 S HTL IE 0 57 Europe/Dublin 2007-04-14 +6498049 Queens Hotel and Nightclub Queens Hotel and Nightclub 52.8519 -8.9859 S HTL IE 0 17 Europe/Dublin 2007-04-14 +6498090 Carrigaline Court Hotel and Leisure Center Carrigaline Court Hotel and Leisure Center 51.8159 -8.3913 S HTL IE 0 10 Europe/Dublin 2007-04-14 +6498136 Blarney Castle Hotel Blarney Castle Hotel 51.9391 -8.5694 S HTL IE 0 76 Europe/Dublin 2007-04-14 +6498146 Jurys Croke Park Hotel Dublin Jurys Croke Park Hotel Dublin 53.3609 -6.2532 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6498228 Ardmore Hotel Ardmore Hotel 53.3794 -6.2927 S HTL IE 0 7 Europe/Dublin 2007-04-14 +6498262 Bunratty Castle Hotel Bunratty Castle Hotel 52.6954 -8.8127 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6498308 Blarney Park Hotel Blarney Park Hotel 51.9391 -8.5694 S HTL IE 0 76 Europe/Dublin 2007-04-14 +6498401 Beacon Hotel Beacon Hotel 53.276 -6.2244 S HTL IE 0 77 Europe/Dublin 2007-04-14 +6498842 Clarion Hotel Liffey Valley Clarion Hotel Liffey Valley 53.3538 -6.402 S HTL IE 0 40 Europe/Dublin 2007-04-14 +6499106 Red Cow Moran Hotel Red Cow Moran Hotel 53.31866 -6.36405 S HTL IE 00 0 66 Europe/Dublin 2010-08-14 +6499112 The G The G 53.284 -9.028 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6499169 Keadeen Hotel KEADEEN HOTEL 52.55 -8.9833 S HTL IE 0 20 Europe/Dublin 2007-04-14 +6499178 Days Hotel Tullamore Days Hotel Tullamore 53.27 -7.49 S HTL IE 0 73 Europe/Dublin 2007-04-14 +6499281 Hilton Dublin Airport Hilton Dublin Airport 53.4031 -6.1797 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6499492 Radisson SAS Hotel Sligo Radisson SAS Hotel Sligo 54.2834 -8.4769 S HTL IE 0 4 Europe/Dublin 2007-04-14 +6499760 Ashlee Lodge -Blarney Ashlee Lodge -Blarney 51.933 -8.568 S HTL IE 0 70 Europe/Dublin 2007-04-14 +6499768 Garryvoe Hotel Garryvoe Hotel 51.8315 -8.0177 S HTL IE M 04 0 1 Europe/Dublin 2010-08-14 +6499845 Quality Hotel & Leisure Centre Wexford Quality Hotel & Leisure Centre Wexford 52.3394 -6.509 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6499973 Quality Hotel And Leisure Ctr Quality Hotel And Leisure Ctr 51.94 -7.85 S HTL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +6500091 Radisson SAS Hotel Athlone Radisson SAS Hotel Athlone 53.4251 -7.9508 S HTL IE 0 55 Europe/Dublin 2007-04-14 +6500234 La Stampa La Stampa 53.3404 -6.2585 S HTL IE 0 7 Europe/Dublin 2007-04-14 +6500280 West County Hotel West County Hotel 53.3464 -6.3253 S HTL IE 0 13 Europe/Dublin 2007-04-14 +6500438 Best Western Eviston House Hotel Best Western Eviston House Hotel 52.0586 -9.513 S HTL IE 0 69 Europe/Dublin 2007-04-14 +6500478 Oranmore Lodge Hotel Galway Oranmore Lodge Hotel Galway 53.268 -8.93 S HTL IE 0 6 Europe/Dublin 2007-04-14 +6500624 The Fleet Street Hotel, Temple Bar The Fleet Street Hotel, Temple Bar 53.3457 -6.2612 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6500716 Fairways Hotel Dundalk Fairways Hotel Dundalk 54 -6.4 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6500755 Browns Hotel Browns Hotel 53.352 -6.2553 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6500939 IMI Conference Centre and Residence IMI Conference Centre and Residence 53.2771 -6.2303 S HTL IE 0 88 Europe/Dublin 2007-04-14 +6501050 Sligo Southern Hotel Sligo Southern Hotel 54.27 -8.49 S HTL IE 0 5 Europe/Dublin 2007-04-14 +6501451 Tulfarris Hotel & Golf Resort Tulfarris Hotel & Golf Resort 53.1569 -6.544 S HTL IE 0 197 Europe/Dublin 2007-04-14 +6501622 Faithlegg House Hotel Golf and Country Club Faithlegg House Hotel Golf and Country Club 52.255 -7.016 S HTL IE 0 4 Europe/Dublin 2007-04-14 +6501902 Radisson SAS Hotel Letterkenny Radisson SAS Hotel Letterkenny 54.951 -7.732 S HTL IE 0 61 Europe/Dublin 2007-04-14 +6501912 Hotel Isaacs Cork Hotel Isaacs Cork 51.9013 -8.4677 S HTL IE 0 57 Europe/Dublin 2007-04-14 +6502017 The Castle Hotel The Castle Hotel 53.3551 -6.2655 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6502061 Actons Hotel Actons Hotel 51.7061 -8.5226 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6502348 Best Western Royal Dublin Hotel Best Western Royal Dublin Hotel 53.3519 -6.2613 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6502571 Best Western International Hotel Best Western International Hotel 52.0581 -9.5088 S HTL IE 0 65 Europe/Dublin 2007-04-14 +6502599 Best Western Ambassador Hotel Best Western Ambassador Hotel 51.9043 -8.4595 S HTL IE 0 57 Europe/Dublin 2007-04-14 +6502676 Greenhills Hotel Limerick City Greenhills Hotel Limerick City 52.671 -8.662 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6502834 Lucan Spa Hotel Lucan Spa Hotel 53.356 -6.4634 S HTL IE 0 51 Europe/Dublin 2007-04-14 +6502918 The Ridgepool Hotel Conference and Leisure Centre. The Ridgepool Hotel Conference and Leisure Centre. 54.114 -9.165 S HTL IE 0 6 Europe/Dublin 2007-04-14 +6503055 Clarion Hotel Limerick Clarion Hotel Limerick 52.6599 -8.6372 S HTL IE 0 10 Europe/Dublin 2007-04-14 +6503090 Quality Hotel Leisure Centre Galway Quality Hotel Leisure Centre Galway 53.2773 -8.9259 S HTL IE 0 8 Europe/Dublin 2007-04-14 +6503243 Comfort Inn Parnell Square Comfort Inn Parnell Square 53.3544 -6.2633 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6503246 Castlerosse Hotel & Golf Castlerosse Hotel & Golf 52.048 -9.514 S HTL IE 0 61 Europe/Dublin 2007-04-14 +6503374 Radisson SAS Hotel Galway Radisson SAS Hotel Galway 53.2773 -9.0387 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6503537 Radisson SAS Hotel & Spa Limerick Radisson SAS Hotel & Spa Limerick 52.6647 -8.623 S HTL IE 0 24 Europe/Dublin 2007-04-14 +6503728 Waltons Hotel Waltons Hotel 53.3555 -6.2645 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6504274 Marine Hotel Marine Hotel 53.3891 -6.1095 S HTL IE L 07 0 -9999 Europe/Dublin 2010-08-14 +6504334 Premier Apartments Dublin City Premier Apartments Dublin City 53.3322 -6.253 S HTL IE 0 12 Europe/Dublin 2007-04-14 +6504378 Riverside Hotel Riverside Hotel 52.0519 -9.5067 S HTL IE 0 66 Europe/Dublin 2007-04-14 +6504451 Ariel House Ariel House 53.3339 -6.2309 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6504890 Capella Hotel At Castlemartyr R CAPELLA HOTEL AT CASTLEMARTYR R 51.91073 -8.05047 S HTL IE 0 51 Europe/Dublin 2007-04-15 +6504894 Minotel O Deas MINOTEL O DEAS 53.2 -8.5666 S HTL IE 0 105 Europe/Dublin 2007-04-14 +6505062 Absolutehotel Com ABSOLUTEHOTEL COM 52.6666 -8.6166 S HTL IE 0 29 Europe/Dublin 2007-04-15 +6505102 Travelodge Limerick TRAVELODGE LIMERICK 52.6666 -8.6166 S HTL IE 0 29 Europe/Dublin 2007-04-13 +6505115 Oak Wood Arms Hotel OAK WOOD ARMS HOTEL 53.2166 -7.9499 S HTL IE 0 94 Europe/Dublin 2007-04-13 +6505125 Hotel Kilkenny HOTEL KILKENNY 52.6499 -7.25 S HTL IE 0 62 Europe/Dublin 2007-04-13 +6505317 Ferrycarrig Hotel FERRYCARRIG HOTEL 52.3333 -6.4666 S HTL IE L 30 0 1 Europe/Dublin 2010-08-14 +6505793 Marriott Druids Glen Hotel-Club MARRIOTT DRUIDS GLEN HOTEL-CLUB 52.9833 -6.05 S HTL IE 0 17 Europe/Dublin 2007-04-13 +6505951 Killarney Royal Hotel KILLARNEY ROYAL HOTEL 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6506206 Waterford Castle WATERFORD CASTLE 52.25 -7.1 S HTL IE 0 10 Europe/Dublin 2007-04-13 +6506626 Harbour Hotel HARBOUR HOTEL 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6506887 Temple Gate Hotel TEMPLE GATE HOTEL 52.85 -8.9833 S HTL IE 0 14 Europe/Dublin 2007-04-13 +6507001 Ross Lake House Hotel ROSS LAKE HOUSE HOTEL 53.4166 -9.3333 S HTL IE 0 62 Europe/Dublin 2007-04-13 +6507053 Springfort Hall Country House SPRINGFORT HALL COUNTRY HOUSE 52.1333 -8.6333 S HTL IE 0 74 Europe/Dublin 2007-04-13 +6507133 Trinity Lodge TRINITY LODGE 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6507845 Harrington Hall HARRINGTON HALL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6508198 Ibis Dublin West IBIS DUBLIN WEST 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6508364 Tinakilly Country House TINAKILLY COUNTRY HOUSE 52.9833 -6.05 S HTL IE 0 17 Europe/Dublin 2007-04-13 +6508682 Four Seasons Dublin FOUR SEASONS DUBLIN 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6508751 Hillgrove Hotel HILLGROVE HOTEL 54.25 -6.9666 S HTL IE 0 71 Europe/Dublin 2007-04-13 +6508923 Ibis Cork East IBIS CORK EAST 51.8999 -8.4666 S HTL IE 0 57 Europe/Dublin 2007-04-13 +6509022 Leixlip House Hotel LEIXLIP HOUSE HOTEL 53.3666 -6.4833 S HTL IE 0 46 Europe/Dublin 2007-04-13 +6509200 Blakes Townhouse BLAKES TOWNHOUSE 53.3166 -6.2333 S HTL IE 0 22 Europe/Dublin 2007-04-13 +6509239 Mount Herbert Hotel MOUNT HERBERT HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6509305 Aghadoe Heights Hotel And Spa AGHADOE HEIGHTS HOTEL AND SPA 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6509467 Rochestown Park Hotel And Leisu ROCHESTOWN PARK HOTEL AND LEISU 51.8666 -8.4333 S HTL IE 0 74 Europe/Dublin 2007-04-13 +6509508 Marlfield House MARLFIELD HOUSE 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6509541 Fitzgerald S Woodlands House Ho FITZGERALD S WOODLANDS HOUSE HO 52.6666 -8.6166 S HTL IE 0 29 Europe/Dublin 2007-04-13 +6509788 Gresham Metropole Hotel GRESHAM METROPOLE HOTEL 51.8999 -8.4666 S HTL IE 0 57 Europe/Dublin 2007-04-13 +6509878 Jurys Burlington JURYS BURLINGTON 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6509917 Cashel House Hotel CASHEL HOUSE HOTEL 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6509928 Ashford Castle ASHFORD CASTLE 53.5333 -9.2833 S HTL IE 0 21 Europe/Dublin 2007-04-13 +6510063 Castletroy Park Hotel CASTLETROY PARK HOTEL 52.6666 -8.6166 S HTL IE 0 29 Europe/Dublin 2007-04-13 +6510185 Citywest Hotel And Golf Resort CITYWEST HOTEL AND GOLF RESORT 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6510195 Rosleague Manor ROSLEAGUE MANOR 53.55 -9.9499 S HTL IE 0 82 Europe/Dublin 2007-04-13 +6510256 Knockranny House Hotel KNOCKRANNY HOUSE HOTEL 53.8 -9.5166 S HTL IE 0 116 Europe/Dublin 2007-04-13 +6510369 Rathmullan House RATHMULLAN HOUSE 55.0833 -7.5333 S HTL IE U 06 0 -9999 Europe/Dublin 2010-08-14 +6510497 Moyglare Manor Hotel MOYGLARE MANOR HOTEL 53.3833 -6.6 S HTL IE 0 73 Europe/Dublin 2007-04-13 +6510669 Zetland Country House Hotel ZETLAND COUNTRY HOUSE HOTEL 53.2166 -7.9499 S HTL IE 0 94 Europe/Dublin 2007-04-13 +6510670 Best Western West County Hotel BEST WESTERN WEST COUNTY HOTEL 53.2166 -7.9499 S HTL IE 0 94 Europe/Dublin 2007-04-13 +6510704 Ahernes Seafood Restaurant AHERNES SEAFOOD RESTAURANT 51.9499 -7.85 S HTL IE M 04 0 -9999 Europe/Dublin 2010-08-14 +6510804 Dunbrody Country House And Spa DUNBRODY COUNTRY HOUSE AND SPA 52.25 -7.1 S HTL IE 0 10 Europe/Dublin 2007-04-13 +6510853 Castle Grove Country House CASTLE GROVE COUNTRY HOUSE 54.9499 -7.7333 S HTL IE 0 53 Europe/Dublin 2007-04-13 +6510863 Quality Htl And Suites Naas QUALITY HTL AND SUITES NAAS 53.29848 -6.43359 S HTL IE 0 96 Europe/Dublin 2007-04-13 +6510981 Ballynahinch Castle Hotel BALLYNAHINCH CASTLE HOTEL 53.2166 -7.9499 S HTL IE 0 94 Europe/Dublin 2007-04-13 +6511025 Killarney Park Hotel KILLARNEY PARK HOTEL 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6511092 Glin Castle GLIN CASTLE 52.1833 -10.2833 S HTL IE 0 128 Europe/Dublin 2007-04-13 +6511116 Carrig House CARRIG HOUSE 52.1 -9.7833 S HTL IE 0 9 Europe/Dublin 2007-04-13 +6511231 Liffey Valley House Hotel LIFFEY VALLEY HOUSE HOTEL 53.3666 -6.4833 S HTL IE 0 46 Europe/Dublin 2007-04-13 +6511243 Great Southern Hotel Killarney GREAT SOUTHERN HOTEL KILLARNEY 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6511373 Great Southern Parknasilla Htl GREAT SOUTHERN PARKNASILLA HTL 51.8999 -8.4666 S HTL IE 0 57 Europe/Dublin 2007-04-13 +6511539 Corrib Great Southern Hotel CORRIB GREAT SOUTHERN HOTEL 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6511742 George Frederic Handel Hotel GEORGE FREDERIC HANDEL HOTEL 53.34412 -6.27004 S HTL IE 0 4 Europe/Dublin 2007-04-13 +6511900 Grand Hotel GRAND HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6512138 Hylands Burren Hotel HYLANDS BURREN HOTEL 53.1166 -9.15 S HTL IE M 03 0 24 Europe/Dublin 2010-08-14 +6512145 Hotel Europe HOTEL EUROPE 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6512154 Sheen Falls Lodge SHEEN FALLS LODGE 51.8833 -9.5833 S HTL IE 0 -9999 Europe/Dublin 2007-04-13 +6512185 Hotel Dunloe Castle HOTEL DUNLOE CASTLE 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-13 +6512202 Abbey Hotel Conference And Leis ABBEY HOTEL CONFERENCE AND LEIS 53.6333 -8.1833 S HTL IE 0 73 Europe/Dublin 2007-04-13 +6512333 Casey S Of Baltimore CASEY S OF BALTIMORE 51.8999 -8.4666 S HTL IE 0 57 Europe/Dublin 2007-04-13 +6512436 Galway Bay Golf And Country Clb GALWAY BAY GOLF AND COUNTRY CLB 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-13 +6512465 Camden Court Hotel CAMDEN COURT HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6513538 Travelodge Dublin Airport TRAVELODGE DUBLIN AIRPORT 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-13 +6513574 Sand House Hotel SAND HOUSE HOTEL 54.6499 -8.1166 S HTL IE 0 24 Europe/Dublin 2007-04-12 +6513796 Travelodge Cork Airport TRAVELODGE CORK AIRPORT 51.8999 -8.4666 S HTL IE 0 57 Europe/Dublin 2007-04-12 +6514856 The K Club THE K CLUB 53.3 -6.6166 S HTL IE 0 76 Europe/Dublin 2007-04-12 +6514948 Deer Park Hotel Golf Course DEER PARK HOTEL GOLF COURSE 53.3846 -6.0652 S HTL IE L 07 0 1 Europe/Dublin 2010-08-14 +6515290 Cassidys CASSIDYS 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-12 +6516933 Gresham Hotel GRESHAM HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-12 +6517102 Clarion Htl Randles Crt Killarney CLARION HTL RANDLES CRT KILLARN 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-12 +6517743 Butlers Townhouse Hotel BUTLERS TOWNHOUSE HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-12 +6518342 Hotel Meyrick HOTEL MEYRICK 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-15 +6518613 Mount Falcon Country House Hote MOUNT FALCON COUNTRY HOUSE HOTE 53.75 -9.1166 S HTL IE 0 72 Europe/Dublin 2007-04-15 +6518651 Knightsbrook Hotel And Golf Res KNIGHTSBROOK HOTEL AND GOLF RES 53.55 -6.8 S HTL IE 0 62 Europe/Dublin 2007-04-15 +6518818 Park Inn Shannon Airport PARK INN SHANNON AIRPORT 53.2166 -7.9499 S HTL IE 0 94 Europe/Dublin 2007-04-15 +6519061 Days Hotel Castlebar DAYS HOTEL CASTLEBAR 53.8507 -9.3079 S HTL IE 0 51 Europe/Dublin 2007-04-15 +6519787 Arlington Lodge Country House ARLINGTON LODGE COUNTRY HOUSE 52.25 -7.1 S HTL IE 0 10 Europe/Dublin 2007-04-15 +6520272 Ballymun Plaza Hotel BALLYMUN PLAZA HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-15 +6520579 Ramada Hotel And Suites At Kil RAMADA HOTEL AND SUITES AT KIL 52.83522 -6.92381 S HTL IE 0 52 Europe/Dublin 2007-04-15 +6520854 Carlton Redcastle Hotel CARLTON REDCASTLE HOTEL 54.6499 -8.1166 S HTL IE 0 24 Europe/Dublin 2007-04-15 +6521027 The Stand House Hotel THE STAND HOUSE HOTEL 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-15 +6521032 Premier Apartments Galway PREMIER APARTMENTS 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6521207 Rathkeale House Hotel RATHKEALE HOUSE HOTEL 52.5166 -8.9333 S HTL IE 0 44 Europe/Dublin 2007-04-14 +6521214 Premier Apartments PREMIER APARTMENTS 53.4262 -6.2392 S HTL IE 0 19 Europe/Dublin 2007-04-14 +6521514 Carlton Abbey Hotel CARLTON ABBEY HOTEL 52.99412 -6.98164 S HTL IE L 12 0 65 Europe/Dublin 2010-08-14 +6521586 Hilton Dublin Kilmainham HILTON DUBLIN KILMAINHAM 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6521951 Trim Castle Hotel TRIM CASTLE HOTEL 53.55 -6.8 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6522590 The Ross- Killarney THE ROSS- KILLARNEY 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-14 +6522738 Carlton Atlantic Coast CARLTON ATLANTIC COAST 53.8 -9.5166 S HTL IE 0 116 Europe/Dublin 2007-04-14 +6522739 Carlton Millrace Hotel CARLTON MILLRACE HOTEL 52.6499 -6.6499 S HTL IE 0 74 Europe/Dublin 2007-04-14 +6523223 Dairy Guesthouse And Activity C DAIRY GUESTHOUSE AND ACTIVITY C 52.6666 -8.6166 S HTL IE 0 29 Europe/Dublin 2007-04-14 +6523662 Donnybrook Lodge DONNYBROOK LODGE 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6523741 Tower Hotel And Leisure Cente TOWER HOTEL AND LEISURE CENTE 52.25 -7.1 S HTL IE 0 10 Europe/Dublin 2007-04-14 +6523832 Wineport Lodge WINEPORT LODGE 53.4333 -7.9499 S HTL IE 0 57 Europe/Dublin 2007-04-14 +6523912 Lymans Hotel LYMANS HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6524546 The Merchant Hotel THE MERCHANT HOTEL 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6524554 Carlton Dublin Airport Hotel CARLTON DUBLIN AIRPORT HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6524703 Best Western Woodenbridge BEST WESTERN WOODENBRIDGE 52.8 -6.15 S HTL IE 0 -9999 Europe/Dublin 2007-04-14 +6524769 The Oeral Thus THE OERAL THUS 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6525138 Ramada Htl Suites Ballykiste RAMADA HTL SUITES BALLYKISTE 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6525556 Ramada Drumshanbo RAMADA DRUMSHANBO 54.05 -8.0333 S HTL IE 0 76 Europe/Dublin 2007-04-14 +6525678 Kenmare Bay Hotel Kerry KENMARE BAY HOTEL KERRY 51.8833 -9.5833 S HTL IE 0 -9999 Europe/Dublin 2007-04-14 +6525907 Heritage Golf And Spa Resort HERITAGE GOLF AND SPA RESORT 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6526216 Travelodge Rathmines TRAVELODGE RATHMINES 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6526242 Clarion Hotel Sligo CLARION HOTEL SLIGO 54.2666 -8.4833 S HTL IE 0 13 Europe/Dublin 2007-04-14 +6526501 The Leeson Hotel THE LEESON HOTEL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6526537 Barberstown Castle BARBERSTOWN CASTLE 53.3 -6.6166 S HTL IE 0 76 Europe/Dublin 2007-04-14 +6527095 Cesh Corran CESH CORRAN 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6527110 Minotel Darby O Gills MINOTEL DARBY O GILLS 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-14 +6527160 Anno Santo Hotel ANNO SANTO HOTEL 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6527289 Merrion Suites MERRION SUITES 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6527299 Minotel Kingston MINOTEL KINGSTON 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6527457 Rochestown Lodge Hotel Conferen ROCHESTOWN LODGE HOTEL CONFEREN 53.2751 -6.15006 S HTL IE 0 15 Europe/Dublin 2007-04-14 +6527506 Springhill Court Hotel Spa SPRINGHILL COURT HOTEL SPA 52.6499 -7.25 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6527553 Glenroyal Hotel And Leisure C GLENROYAL HOTEL AND LEISURE C 53.37985 -6.58716 S HTL IE 00 0 72 Europe/Dublin 2010-08-14 +6528341 Quality Hotel Ryan Galway QUALITY HOTEL RYAN GALWAY 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6528344 Days Hotel Dublin City Rathmin DAYS HOTEL DUBLIN CITY RATHMIN 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6528408 Dooleys Hotel Waterford City DOOLEYS HOTEL WATERFORD CITY 52.25 -7.1 S HTL IE 0 10 Europe/Dublin 2007-04-14 +6528456 Best Western Perys Hotel BEST WESTERN PERYS HOTEL 52.6666 -8.6166 S HTL IE 0 29 Europe/Dublin 2007-04-14 +6528770 Arklow Bay Hotel ARKLOW BAY HOTEL 52.8 -6.15 S HTL IE 0 -9999 Europe/Dublin 2007-04-14 +6528892 Menlo Park Hotel MENLO PARK HOTEL 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6528976 Bloomfield House Hotel Mullingar BLOOMFIELD HOUSE HOTEL MULLINGA 53.5333 -7.3499 S HTL IE 0 112 Europe/Dublin 2007-04-14 +6529085 Osprey Hotel OSPREY HOTEL 53.2166 -6.6666 S HTL IE 0 114 Europe/Dublin 2007-04-14 +6529351 Quality Hotel N Leisure Centre QUALITY HOTEL N LEISURE CENTRE 52.3333 -6.4666 S HTL IE L 30 0 1 Europe/Dublin 2010-08-14 +6529387 Best Western Sheldon Park Htl BEST WESTERN SHELDON PARK HTL 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6529657 Travelodge Galway City TRAVELODGE GALWAY CITY 53.2833 -9.05 S HTL IE 0 1 Europe/Dublin 2007-04-14 +6529761 Auburn Lodge Hotel AUBURN LODGE HOTEL 52.85 -8.9833 S HTL IE 0 14 Europe/Dublin 2007-04-14 +6529819 Latchfords Of Baggot Street LATCHFORDS OF BAGGOT STREET 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6530466 Brandon Hotel Tralee BRANDON HOTEL TRALEE 52.2666 -9.7166 S HTL IE 0 38 Europe/Dublin 2007-04-14 +6530949 Bw Premier Newpark Hotel BW PREMIER NEWPARK HOTEL 52.6499 -7.25 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6531140 Stauntons On The Green STAUNTONS ON THE GREEN 53.3446 -6.2594 S HTL IE 0 2 Europe/Dublin 2007-04-14 +6531513 Muckross Park Hotel MUCKROSS PARK HOTEL 52.05 -9.5166 S HTL IE 0 61 Europe/Dublin 2007-04-14 +6531571 Tower Hotel TOWER HOTEL 54.2666 -8.4833 S HTL IE 0 13 Europe/Dublin 2007-04-14 +6531614 Glenview Hotel GLENVIEW HOTEL 53.1333 -6.0833 S HTL IE 0 30 Europe/Dublin 2007-04-14 +6531862 Cashel Palace Hotel CASHEL PALACE HOTEL 51.6166 -9.0833 S HTL IE 0 132 Europe/Dublin 2007-04-14 +6532006 Kinnitty Castle KINNITTY CASTLE 53.1776 -8.1416 S HTL IE 0 62 Europe/Dublin 2007-04-14 +6532124 Bracken Court Bracken Court 53.60883 -6.18277 S HTL IE 0 -9999 Europe/Dublin 2010-12-28 +6532125 Midleton Park Hotel MIDLETON PARK HOTEL 51.9166 -8.1666 S HTL IE 0 48 Europe/Dublin 2007-04-14 +6612153 16 University Rd 16 University Rd 53.27652 -9.0621 S HSE IE 0 9 Europe/Dublin 2007-07-31 +6615445 Keane's Bar Keane's Bar 53.51582 -9.55845 S RHSE IE C 10 0 48 Europe/Dublin 2010-08-14 +6615446 Hen's Castle Hen's Castle 53.4926 -9.51326 S CSTL IE C 10 0 21 Europe/Dublin 2010-08-14 +6615447 Patrick's Bed Patrick's Bed 53.49255 -9.65107 S RLG IE C 10 0 318 416 Europe/Dublin 2010-08-14 +6615448 DERI Galway (Digital Enterprise Research Institute) DERI Galway (Digital Enterprise Research Institute) DERI,DERI Galway,DERI Galway (Digital Enterprise Research Institute),Digital Enterprise Research Institute,Digital Enterprise Research Institute Galway,Gaillimh Institiuid Taighde na Fiontraiochta Digiti,Gaillimh Institiúid Taighde na Fiontraíochta Digití,Institiuid Taighde na Fiontraiochta Digiti,Institiúid Taighde na Fiontraíochta Digití 53.29003 -9.07412 S ITTR IE C 10 110 9 Europe/Dublin 2010-08-14 +6615449 Dangan Heights Dangan Heights 53.28938 -9.07997 S EST IE C 10 0 3 Europe/Dublin 2010-08-14 +6615450 Westwood House Hotel Westwood House Hotel 53.28924 -9.07486 S HTL IE C 10 200 9 Europe/Dublin 2010-08-14 +6615451 Dangan Court Dangan Court 53.28961 -9.07737 S EST IE C 10 0 3 Europe/Dublin 2010-08-14 +6615452 Tudor Lawn Tudor Lawn 53.28827 -9.07704 S EST IE C 10 0 3 Europe/Dublin 2010-08-14 +6615453 Cherry Park Cherry Park 53.28694 -9.0764 S EST IE C 10 0 3 Europe/Dublin 2010-08-14 +6615454 Hazel Park Hazel Park 53.28477 -9.07518 S EST IE C 10 0 3 Europe/Dublin 2010-08-14 +6615455 Laurel Park Laurel Park 53.28266 -9.07618 S EST IE C 10 0 2 Europe/Dublin 2010-08-14 +6615456 Dangan Sportsgrounds Dangan Sportsgrounds 53.29334 -9.07763 S ATHF IE C 10 0 9 Europe/Dublin 2010-08-14 +6615463 Sally Long's Pub Sally Long's Pub 53.27413 -9.05349 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6615491 Galway Cathedral Galway Cathedral 53.2753 -9.05746 S CH IE C 10 0 1 Europe/Dublin 2010-08-14 +6615608 Barna GAA Pitch Barna GAA Pitch 53.26811 -9.16288 S ATHF IE C 10 0 56 Europe/Dublin 2010-08-14 +6618485 College Bar College Bar College Bar,NUIG College Bar,The College Bar 53.27801 -9.05821 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6618990 Pat Kelly Motors Pat Kelly Motors P. K. Motors,P.K. Motors,PK Motors 53.30519 -9.01806 S IE 0 3 Europe/Dublin 2007-10-18 +6619440 Rahoon Rahoon 53.27277 -9.08765 P PPLX IE C 10 0 1 Europe/Dublin 2010-08-14 +6619871 Cherry Orchard Cherry Orchard 53.33605 -6.37799 P PPLX IE 0 48 Europe/Dublin 2007-11-26 +6620344 Killerrig Killerrig 52.84135 -6.79195 P PPL IE 0 97 Europe/Dublin 2007-12-09 +6640236 National Show Centre National Show Centre 53.43682 -6.22524 S BLDG IE 0 16 Europe/Dublin 2008-02-04 +6690993 The Coombe The Coombe 53.34471 -6.27508 P PPLX IE 0 5 Europe/Dublin 2008-03-19 +6690994 Rialto Rialto 53.34205 -6.28637 P PPLX IE 0 6 Europe/Dublin 2008-03-19 +6690995 Mount Brown Mount Brown 53.34266 -6.29439 P PPLX IE 0 7 Europe/Dublin 2008-03-19 +6690996 Temple Bar Temple Bar 53.34492 -6.26581 P PPLX IE 0 2 Europe/Dublin 2008-03-19 +6690997 Stephen's Green Stephen's Green 53.33982 -6.26032 P PPLX IE 0 7 Europe/Dublin 2008-03-19 +6690998 Sain Stephen's Green Sain Stephen's Green 53.33805 -6.25899 L CMN IE 0 7 Europe/Dublin 2008-03-19 +6690999 Merrion Square Merrion Square 53.33979 -6.24916 L CMN IE 0 3 Europe/Dublin 2008-03-19 +6691000 Warrenmount Warrenmount 53.3362 -6.27718 P PPLX IE 0 13 Europe/Dublin 2008-03-19 +6691001 Crumlin Crumlin 53.33126 -6.29199 P PPLX IE 0 30 Europe/Dublin 2008-03-19 +6691002 Milltown Milltown 53.31301 -6.2453 P PPLX IE 0 30 Europe/Dublin 2008-03-19 +6691003 Clonskeagh Clonskeagh 53.31467 -6.23148 P PPLX IE 0 22 Europe/Dublin 2008-03-19 +6691005 Belfield Belfield 53.31065 -6.22066 P PPLX IE 0 14 Europe/Dublin 2008-03-19 +6691006 Booterstown Booterstown 53.30447 -6.19985 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691007 Goatstown Goatstown 53.29221 -6.23019 P PPLX IE 0 55 Europe/Dublin 2008-03-19 +6691008 Kilmacud Kilmacud 53.28703 -6.21539 P PPLX IE 0 54 Europe/Dublin 2008-03-19 +6691010 Ballinteer Ballinteer 53.28059 -6.24959 P PPLX IE 0 92 Europe/Dublin 2008-03-19 +6691011 Ticknock Ticknock 53.26806 -6.24749 P PPLX IE 0 124 Europe/Dublin 2008-03-19 +6691013 Tempelogue Tempelogue 53.3028 -6.30538 P PPLX IE 0 67 Europe/Dublin 2008-03-19 +6691014 Perrystown Perrystown 53.31224 -6.31122 P PPLX IE 0 61 Europe/Dublin 2008-03-19 +6691015 Manor Grove Manor Grove 53.30957 -6.31272 P PPLX IE 0 61 Europe/Dublin 2008-03-19 +6691016 Drimnagh Drimnagh 53.33285 -6.31714 P PPLX IE 0 39 Europe/Dublin 2008-03-19 +6691017 Greenhills Greenhills 53.33467 -6.30302 P PPLX IE 0 20 Europe/Dublin 2008-03-19 +6691018 Maryland Maryland 53.33777 -6.28954 P PPLX IE 0 17 Europe/Dublin 2008-03-19 +6691019 Kilmainham Kilmainham 53.34038 -6.30053 P PPLX IE 0 20 Europe/Dublin 2008-03-19 +6691020 Smithfield Smithfield 53.3485 -6.27268 P PPLX IE 0 4 Europe/Dublin 2008-03-19 +6691021 IFSC IFSC 53.35065 -6.25362 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691022 Arbour Hill Arbour Hill 53.3535 -6.29306 P PPLX IE 0 7 Europe/Dublin 2008-03-19 +6691023 Stoneybatter Stoneybatter 53.35667 -6.29002 P PPLX IE 0 5 Europe/Dublin 2008-03-19 +6691024 Ballybough Ballybough 53.35667 -6.25036 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691025 North Strand North Strand 53.35877 -6.23946 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691026 Droim Conrach Droim Conrach 53.35852 -6.26075 P PPLX IE 0 2 Europe/Dublin 2008-03-19 +6691027 Drumcondra Drumcondra 53.36715 -6.2683 P PPLX IE 0 4 Europe/Dublin 2008-03-19 +6691028 Whitehall Whitehall 53.383 -6.24019 P PPL IE 0 3 Europe/Dublin 2010-06-25 +6691029 Beaumount Beaumount 53.38653 -6.22496 P PPLX IE 0 5 Europe/Dublin 2008-03-19 +6691030 Coolock Coolock 53.3887 -6.19998 P PPLX IE 0 3 Europe/Dublin 2008-03-19 +6691031 Harmonstown Harmonstown 53.38189 -6.19041 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691032 Bonnybrook Bonnybrook 53.39835 -6.20749 P PPLX IE 0 6 Europe/Dublin 2008-03-19 +6691033 Donaghmede Donaghmede 53.39341 -6.18693 P PPLX IE 0 3 Europe/Dublin 2008-03-19 +6691034 Ard na Greine Ard na Greine 53.39697 -6.185 P PPLX IE 0 3 Europe/Dublin 2008-03-19 +6691035 Darndale Darndale 53.39948 -6.18886 P PPLX IE 0 3 Europe/Dublin 2008-03-19 +6691036 The Donaghies The Donaghies 53.39845 -6.17187 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691037 Robswalls Robswalls 53.44589 -6.13788 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691038 Streamstown Streamstown 53.45359 -6.1717 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691039 Holmpatrick Holmpatrick 53.57378 -6.10552 P PPLX IE 0 -9999 Europe/Dublin 2008-03-19 +6691040 Kimmage Kimmage 53.31877 -6.28555 P PPLX IE 0 38 Europe/Dublin 2008-03-19 +6691041 Dartry Dartry 53.31124 -6.26418 P PPLX IE 0 36 Europe/Dublin 2008-03-19 +6691042 Glenageary Glenageary 53.27964 -6.12617 P PPLX IE L 07 0 2 Europe/Dublin 2010-08-14 +6691043 Sandycove Sandycove 53.27722 -6.11587 P PPLX IE L 07 0 1 Europe/Dublin 2010-08-14 +6691044 Kiliney Kiliney 53.26352 -6.11604 P PPLX IE L 07 0 -9999 Europe/Dublin 2010-08-14 +6691045 Cornelscourt Cornelscourt 53.26609 -6.16548 P PPLX IE 0 44 Europe/Dublin 2008-03-19 +6691046 Sion Hill Sion Hill 53.3038 -6.18642 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691047 North Wall North Wall 53.34768 -6.22848 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691048 Donnycarney Donnycarney 53.3735 -6.20976 P PPLX IE 0 1 Europe/Dublin 2008-03-19 +6691049 Kilester Kilester 53.37831 -6.20573 P PPLX IE 0 2 Europe/Dublin 2008-03-19 +6691050 Finglass West Finglass West 53.39049 -6.31619 P PPLX IE 0 26 Europe/Dublin 2008-03-19 +6691051 Finglass South Finglass South 53.38149 -6.30881 P PPLX IE 0 10 Europe/Dublin 2008-03-19 +6691052 Whitechapel Whitechapel 53.39224 -6.40494 P PPLX IE 0 40 Europe/Dublin 2008-03-19 +6691053 Meadow Mount Meadow Mount 53.28472 -6.26272 P PPLX IE 0 75 Europe/Dublin 2008-03-19 +6691259 Cloon Cloon 53.55144 -10.09189 P PPLX IE 0 25 Europe/Dublin 2008-03-20 +6691260 Old Station House Old Station House Station,Station House 53.55524 -10.12064 S PPQ IE 0 17 Europe/Dublin 2008-03-20 +6691261 Palmerston Park Palmerston Park 53.31298 -6.25832 L CMN IE 0 33 Europe/Dublin 2008-03-20 +6691262 Cowper Downs Cowper Downs 53.31634 -6.26286 P PPLX IE 0 36 Europe/Dublin 2008-03-20 +6691263 Marley Park Marley Park 53.2757 -6.27658 L CMN IE 0 88 Europe/Dublin 2008-03-20 +6691495 Laurel Park playing fields Laurel Park playing fields 53.2827 -9.07393 S ATHF IE C 10 0 1 Europe/Dublin 2010-08-14 +6691677 No. 8 Bar No. 8 Bar No. Eight Bar,Number 8 Bar,Number Eight Bar 53.27051 -9.0514 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6691820 Galway Shopping Centre Galway Shopping Centre 53.28039 -9.04763 S MALL IE C 10 0 1 Europe/Dublin 2010-08-14 +6691835 Clydagh Bridge Clydagh Bridge 53.32617 -9.16713 S BDG IE C 10 0 58 Europe/Dublin 2010-08-14 +6691836 IT Building NUIG IT Building NUIG 53.28032 -9.05847 S UNIV IE 0 9 Europe/Dublin 2008-04-15 +6691941 Sullivan's Quay Sullivan's Quay 51.89564 -8.47428 S QUAY IE M 04 0 57 Europe/Dublin 2010-08-14 +6691945 Maam Valley Maam Valley 53.48702 -9.55484 T VAL IE C 10 0 97 Europe/Dublin 2010-08-14 +6691992 Crawford School of Art Crawford School of Art 51.89515 -8.48146 S SCH IE M 04 0 57 Europe/Dublin 2010-08-14 +6691993 University College Cork University College Cork 51.89291 -8.49289 S UNIV IE M 04 0 57 Europe/Dublin 2010-08-14 +6692068 Bier Haus Bier Haus 53.27042 -9.0588 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6692201 Carrownisky Beach Carrownisky Beach 53.73353 -9.89576 T BCH IE C 20 0 0 6 Europe/Dublin 2010-08-14 +6692206 Crowes Bar Crowes Bar 53.27762 -9.04621 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6692207 The Living Room The Living Room Living Room 53.27187 -9.05485 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6692254 Benlettery Benlettery Bendouglas,Binn Dughlais,Binn Dúghlais,Binn Leitri,Binn Leitrí 53.48294 -9.84409 T MT IE C 10 0 577 363 Europe/Dublin 2010-08-14 +6692256 Bencollaghduff Bencollaghduff Binn Dubh 53.51286 -9.80959 T MT IE C 10 0 696 345 Europe/Dublin 2010-08-14 +6692257 Bengower Bengower Binn Gabhar 53.49244 -9.83474 T MT IE C 10 0 664 573 Europe/Dublin 2010-08-14 +6692258 Benbreen Benbreen Binn Bhraoin 53.50456 -9.83744 T MT IE C 10 0 691 573 Europe/Dublin 2010-08-14 +6692259 Benglenisky Benglenisky Binn Glean Uisce 53.48759 -9.85731 T MT IE C 10 0 516 403 Europe/Dublin 2010-08-14 +6692260 Glencoaghan River Glencoaghan River Abhainn Ghleann Chochan 53.48253 -9.80444 H STM IE C 10 0 87 Europe/Dublin 2010-08-14 +6692264 Enniscrone Enniscrone 54.19418 -9.11333 P PPL IE 0 3 Europe/Dublin 2008-05-13 +6692268 Oost en Zuidoost Ierland Oost en Zuidoost Ierland 53.15006 -7.25098 A ADMD IE 0 91 Europe/Dublin 2008-05-13 +6693151 Glen Coaghan Horseshoe Glen Coaghan Horseshoe 53.50632 -9.82864 T MTS IE 0 700 442 Europe/Dublin 2008-06-06 +6693175 Trinity Chapel Trinity Chapel 53.34463 -6.25803 S CH IE L 07 0 1 Europe/Dublin 2010-08-14 +6693176 Lower Dominick Street Lower Dominick Street Dominick Street, Lower 53.27088 -9.05709 R ST IE C 10 0 1 Europe/Dublin 2010-08-14 +6693177 Salthill Promenade Salthill Promenade 53.25805 -9.08468 R PRMN IE C 10 0 -9999 Europe/Dublin 2010-08-14 +6693181 Famine Memorial Famine Memorial 53.78014 -9.63973 S MNMT IE C 20 0 73 Europe/Dublin 2010-08-14 +6693220 Fingal County Fingal County 53.45909 -6.21942 A ADM2 IE 00 35 0 6 Europe/Dublin 2010-08-14 +6693222 Bayside Bayside 53.38895 -6.14041 P PPL IE 0 -9999 Europe/Dublin 2008-06-11 +6693472 Sports Field, Westside, Galway Sports Field, Westside, Galway 53.27607 -9.07842 L PRK IE 0 2 Europe/Dublin 2008-06-16 +6693473 Maum Maum 53.51449 -9.55914 P PPLL IE 0 48 Europe/Dublin 2008-06-16 +6693770 Dominican Retreat Centre Dominican Retreat Centre 53.28945 -6.36024 S CTRF IE 0 86 Europe/Dublin 2008-06-25 +6695060 Priory of St John the Baptist Priory of St John the Baptist 53.55509 -6.76851 S MSTY IE 0 60 Europe/Dublin 2008-07-15 +6695061 Newtowntrim Cathedral Newtowntrim Cathedral 53.55531 -6.77311 S RUIN IE 0 60 Europe/Dublin 2008-07-15 +6695364 Roisin Dubh Roisin Dubh Roisin Dubh,Róisín Dubh 53.27027 -9.05835 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6695620 Tobereendoney holy well Tobereendoney holy well Tobar Ri An Domhainaigh,Tobar Rí An Domhainaigh,Tobereendowney,Tubbereendowney 52.99883 -8.88788 S RLG IE 00 0 47 Europe/Dublin 2010-08-14 +6695622 Tobereenatemple holy well Tobereenatemple holy well Tobareen na Teampall holy well 52.97498 -8.90956 S RLG IE 00 0 44 Europe/Dublin 2010-08-14 +6695643 Tobernasuile holy well Tobernasuile holy well 52.99223 -8.80405 S RLG IE C 10 0 40 Europe/Dublin 2010-08-14 +6695748 Keel West Keel West 53.96962 -10.1554 P PPL IE 0 34 Europe/Dublin 2008-08-09 +6695935 Tyrrelstown Tyrrelstown 53.41623 -6.38606 P PPL IE 00 0 75 Europe/Dublin 2010-08-14 +6696067 Rooskey Rooskey 53.87844 -7.94312 P PPL IE 0 100 Europe/Dublin 2008-08-20 +6696340 Salt House Salt House 53.26995 -9.057 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +6696889 Zetland Country House Zetland Country House 53.41639 -9.79513 S HTL IE C 10 0 40 Europe/Dublin 2010-08-14 +6696890 Cashel House Cashel House 53.41951 -9.81053 S HTL IE C 10 0 88 Europe/Dublin 2010-08-14 +6697759 South Dublin South Dublin Dublin South,South Dublin 53.29026 -6.34151 P PPLX IE 0 91 Europe/Dublin 2010-02-24 +6857857 Charlesland Charlesland 53.12771 -6.06347 P PPL IE 1800 90 5 Europe/Dublin 2009-01-05 +6930049 CIMRU CIMRU CIMRU,Computer Integrated Manufacturing Research Unit 53.27323 -9.05826 S ITTR IE C 10 50 1 Europe/Dublin 2010-08-14 +6930050 NUIG NUIG NUI Galway,National University of Ireland, Galway,Ollscoil na hEireann, Gaillimh,Ollscoil na hÉireann, Gaillimh,UCG,University College Galway 53.27779 -9.06186 S UNIV IE C 10 16000 9 Europe/Dublin 2010-08-14 +6930226 Rosslare Harbour Rosslare Harbour 52.24872 -6.34357 P PPLX IE 00 0 0 1 Europe/Dublin 2010-08-14 +6941023 Longford Longford 53.72434 -7.79858 P PPL IE 0 76 Europe/Dublin 2009-04-29 +6941026 Casement Station Casement Station 52.27111 -9.69928 S RSTN IE 0 51 Europe/Dublin 2009-04-29 +6941027 IT Tralee North Campus IT Tralee North Campus 52.28683 -9.67355 S SCHC IE 0 68 Europe/Dublin 2009-04-29 +6941716 Dún Laoghaire-Rathdown Dun Laoghaire-Rathdown 53.29436 -6.13489 A ADM2 IE 00 34 0 1 Europe/Dublin 2010-08-14 +6942143 Rossaveal Rossaveal 53.2655 -9.56066 P PPL IE 0 1 Europe/Dublin 2009-06-10 +6942819 Ballylickey Ballylickey 51.72107 -9.4376 P PPL IE 0 21 Europe/Dublin 2010-06-17 +6943976 Rosscarbery Rosscarbery 51.56768 -9.0045 P PPL IE 0 2 Europe/Dublin 2009-07-29 +6949115 Dublin Connolly railway station Dublin Connolly railway station Bahnhof Dublin Connolly 53.3517 -6.24917 S RSTN IE 0 1 Europe/Dublin 2009-09-10 +6949187 Bahnhof Dublin Heuston Bahnhof Dublin Heuston Dublin Heuston railway station 53.3465 -6.29266 S RSTN IE 0 7 Europe/Dublin 2009-09-10 +6949188 Bahnhof Grand Canal Dock Bahnhof Grand Canal Dock Grand Canal Dock railway station 53.3396 -6.23771 S RSTN IE 0 2 Europe/Dublin 2009-09-10 +6949189 Bahnhof Killester Bahnhof Killester Killester railway station 53.3728 -6.205 S RSTN IE 0 1 Europe/Dublin 2009-09-10 +6949190 Bahnhof Lansdowne Road Bahnhof Lansdowne Road Lansdowne Road railway station 53.3338 -6.22914 S RSTN IE 0 1 Europe/Dublin 2009-09-10 +6949191 Dublin Hafen Dublin Hafen Dublin port 53.34754 -6.2103 H HBR IE 00 0 1 Europe/Dublin 2010-08-14 +6949192 Abbey Theatre Abbey Theatre Abbey Tiyatrosu,Amharclann na Mainistreach,Teatr Abbatstva,Theatr yr Abaty,Theatro Ampi,abei zuo,ai bi ju yuan,Θέατρο Άμπι,Театр Аббатства,アベイ座,艾比剧院 53.3486 -6.25722 S THTR IE 0 1 Europe/Dublin 2009-09-10 +6949193 Botanischer Garten Irland Botanischer Garten Irland National Botanic Gardens of Ireland 53.3397 -6.24917 S GDN IE 0 3 Europe/Dublin 2009-09-10 +6949194 Christ Church Kathedrale Christ Church Kathedrale Christ Church Cathedral 53.3431 -6.27139 S CH IE 0 4 Europe/Dublin 2009-09-10 +6949195 Dublin City Gallery The Hugh Lane Dublin City Gallery The Hugh Lane 53.3542 -6.26472 S MUS IE 0 2 Europe/Dublin 2009-09-10 +6949196 Four Courts Four Courts 53.3458 -6.27389 S CTHSE IE 0 4 Europe/Dublin 2009-09-10 +6949197 Grafton Street Grafton Street 53.3414 -6.26028 R ST IE 0 7 Europe/Dublin 2009-09-10 +6949198 Guinness Storehouse Guinness Storehouse 53.3417 -6.28694 S BLDG IE 0 6 Europe/Dublin 2009-09-10 +6949199 Kilmainham Gaol Kilmainham Gaol 53.3419 -6.30972 S MUS IE 0 11 Europe/Dublin 2009-09-10 +6949200 Leinster House Leinster House 53.3406 -6.25417 S ADMF IE 0 5 Europe/Dublin 2009-09-10 +6949201 National Wax Museum National Wax Museum 53.3542 -6.26611 S MUS IE 0 2 Europe/Dublin 2009-09-10 +6949202 Nationalmuseum Irland Nationalmuseum Irland National Museum of Ireland 53.3397 -6.25333 S MUS IE 0 5 Europe/Dublin 2009-09-10 +6949204 Rathaus Dublin Rathaus Dublin City Hall 53.344 -6.26725 S ADMF IE 0 4 Europe/Dublin 2009-09-10 +6949206 St. Patrick’s Kathedrale St. Patrick's Kathedrale St. Patrick's Cathedral,St. Patrick’s Cathedral 53.3394 -6.27139 S CH IE 0 10 Europe/Dublin 2009-09-10 +6949207 St. Stephen's Green St. Stephen's Green 53.3381 -6.25917 L PRK IE 0 7 Europe/Dublin 2009-09-10 +6949209 The Spire The Spire 53.3497 -6.26028 S MNMT IE 0 2 Europe/Dublin 2009-09-10 +6949210 Trinity College Trinity College 53.3444 -6.25833 S UNIP IE 0 1 Europe/Dublin 2009-09-10 +6949211 Zoo Dublin Zoo Dublin 53.3539 -6.30389 S ZOO IE 0 9 Europe/Dublin 2009-09-10 +6950543 Gallon Gallon 53.95255 -7.30917 P PPL IE 0 152 Europe/Dublin 2009-09-20 +6951027 Recess Recess 53.4683 -9.7257 P PPL IE 0 83 Europe/Dublin 2009-09-23 +6954866 Goulacullin Goulacullin 51.73208 -9.25341 P PPL IE 0 306 Europe/Dublin 2009-10-12 +6954867 Cloghvoolia South Cloghvoolia South 52.10904 -8.48436 P PPLX IE 0 291 Europe/Dublin 2009-10-12 +6955977 Lower Dangan Lower Dangan 53.28944 -9.07389 P PPL IE C 10 0 9 Europe/Dublin 2010-08-14 +6957568 University College Hospital University College Hospital 53.27656 -9.06608 S HSP IE 500 9 Europe/Dublin 2009-11-26 +7114579 Oslo Oslo 53.25996 -9.07629 S RHSE IE C 10 0 1 Europe/Dublin 2010-08-14 +7116867 Cashel Cashel 53.41864 -9.80032 P PPL IE C 10 0 -9999 Europe/Dublin 2010-08-14 +7282200 Tullamore Radio Mast Tullamore Radio Mast 53.27839 -7.37173 S TOWR IE 0 89 Europe/Dublin 2010-03-19 +7282201 Summerhill Longwave Radio Mast Summerhill Longwave Radio Mast 53.46278 -6.67746 S TOWR IE 0 78 Europe/Dublin 2010-03-19 +7284457 Mullaghanish TV Mast Mullaghanish TV Mast 51.98298 -9.1432 S TOWR IE 0 471 Europe/Dublin 2010-12-09 +7284459 Moneypoint Power Station Moneypoint Power Station 52.6081 -9.42555 S PS IE 0 -9999 Europe/Dublin 2010-03-29 +7284460 Poolbeg Power Station Poolbeg Power Station 53.3398 -6.18954 S PS IE 0 -9999 Europe/Dublin 2010-03-29 +7284462 Tarbert Power Station Tarbert Power Station 52.58939 -9.36275 S PS IE 0 -9999 Europe/Dublin 2010-03-29 +7287955 The Guinness Storehouse The Guinness Storehouse 53.3412 -6.28666 S MFGB IE 00 0 17 Europe/Dublin 2010-08-14 +7287956 Book of Kells Book of Kells 53.34548 -6.25778 S BLDG IE 0 1 Europe/Dublin 2010-04-28 +7288013 Clanard Court Hotel Clanard Court Hotel 53.00006 -6.96053 S HTL IE L 12 0 72 Europe/Dublin 2010-08-14 +7288014 Deansgrange Cemetery Deansgrange Cemetery 53.281 -6.16848 S CMTY IE L 07 0 32 Europe/Dublin 2010-08-14 +7288565 South Dublin South Dublin 53.28595 -6.37739 A ADM2 IE 00 39 0 90 Europe/Dublin 2010-08-14 +7289415 Clanbrassil Street Clanbrassil Street 53.33222 -6.27528 P PPL IE 0 23 Europe/Dublin 2010-04-23 +7289416 Lower Clanbrassil Lower Clanbrassil 53.33526 -6.27371 P PPL IE 0 10 Europe/Dublin 2010-04-23 +7290489 Drumbrawn Drumbrawn 54.08089 -7.35457 P PPL IE 0 97 Europe/Dublin 2010-05-21 +7290515 Lackaghmore Lackaghmore 53.15243 -6.99451 P PPL IE 0 83 Europe/Dublin 2010-05-23 +7302219 Trinity College Trinity College 53.34242 -6.25667 S SCHC IE 0 1 Europe/Dublin 2010-05-30 +7302220 Dublin Castle Dublin Castle 53.34389 -6.26629 S CSTL IE 0 2 Europe/Dublin 2010-05-30 +7302221 Jameson's Distillery und Smithfield Chimney Jameson's Distillery und Smithfield Chimney 53.34805 -6.27338 S HSPD IE 0 4 Europe/Dublin 2010-05-30 +7302222 Grafton Street Grafton Street 53.3422 -6.25983 R RD IE 0 2 Europe/Dublin 2010-05-30 +7302572 Ballintubber Abbey Ballintubber Abbey 54.17648 -9.31658 S CH IE 0 47 Europe/Dublin 2010-06-12 +7302573 Ceide Fields Ceide Fields 54.30841 -9.46472 S ANS IE 0 33 Europe/Dublin 2010-06-12 +7302673 Royal Dublin Society Royal Dublin Society 53.32667 -6.22861 S BLDG IE 0 3 Europe/Dublin 2010-06-14 +7302734 Point's Cross Point's Cross 51.93273 -10.24947 P PPL IE 0 32 Europe/Dublin 2010-06-15 +7302925 Killarney National Park Killarney National Park 51.99333 -9.55722 L RESN IE 0 88 Europe/Dublin 2010-06-20 +7302926 Lakes of Killarney Lakes of Killarney 52.04167 -9.55 H LKS IE 0 58 Europe/Dublin 2010-06-20 +7303561 Glenleary Glenleary 55.01616 -7.63198 P PPL IE 0 66 Europe/Dublin 2010-07-09 +7303994 Caherdavin Caherdavin 52.66363 -8.66478 P PPL IE 0 1 Europe/Dublin 2010-07-25 +7306543 34 College Green 34 College Green 53.34427 -6.26037 S MALL IE 0 2 Europe/Dublin 2010-08-06 +7306544 Dundrum Towncentre Dundrum Towncentre 53.28881 -6.24345 S MALL IE 0 75 Europe/Dublin 2010-08-06 +7521313 Connaught Connaught 53.87 -8.63333 A ADM1 IE C 500000 62 Europe/Dublin 2010-08-14 +7521314 Leinster Leinster 53.16667 -7.02121 A ADM1 IE L 2292939 74 Europe/Dublin 2010-08-14 +7521315 Munster Munster 52.34333 -8.71667 A ADM1 IE M 1172170 122 Europe/Dublin 2010-08-14 +7521316 Ulster Ulster 54.36111 -7.41667 A ADM1 IE U 250000 171 Europe/London 2010-08-15 +7522129 Kilgraney Kilgraney 52.65434 -6.95074 P PPL IE 0 76 Europe/Dublin 2010-08-27 +7535998 Coolflugh Coolflugh 51.92019 -8.6162 P PPL IE 0 76 Europe/Dublin 2010-09-29 +7536131 Cappaclough Cappaclough 52.22601 -9.93525 P PPL IE 0 37 Europe/Dublin 2010-10-06 +7536132 Kinsealy Kinsealy 53.40017 -6.16779 P PPL IE 0 1 Europe/Dublin 2010-10-06 +7536135 Dromhale Dromhale 52.05434 -9.5036 P PPL IE 0 66 Europe/Dublin 2010-10-06 +7602727 Ring of Kerry Ring of Kerry 52.04277 -9.95549 R TRL IE 0 104 Europe/Dublin 2010-11-27 +7602788 Portsalon Golf Club Portsalon Golf Club 55.19808 -7.63172 S RECG IE 0 2 Europe/Dublin 2010-11-27 +7626450 Mount Leinster Radio Mast Mount Leinster Radio Mast 52.61738 -6.7765 S TOWR IE 0 629 Europe/Dublin 2010-12-09 +7626451 Kippure Radio Mast Kippure Radio Mast 53.17803 -6.3316 S TOWR IE 0 612 Europe/Dublin 2010-12-09 +7626452 Cork Mediumwave Mast Cork Mediumwave Mast 51.8825 -8.39958 S TOWR IE 0 3 Europe/Dublin 2010-12-09 +7626454 Cairn Hill TV Mast Cairn Hill TV Mast 53.80747 -7.71515 S TOWR IE 0 152 Europe/Dublin 2010-12-09 +7626455 Athlone transmitter, Mast West Athlone transmitter, Mast West 53.42056 -7.88288 S TOWR IE 0 130 Europe/Dublin 2010-12-09 +7626456 Athlone transmitter, Mast East Athlone transmitter, Mast East 53.42055 -7.87939 S TOWR IE 0 130 Europe/Dublin 2010-12-09 +7626457 Maghera TV Mast Maghera TV Mast 52.96858 -8.71858 S TOWR IE 0 308 Europe/Dublin 2010-12-09 +7626458 Great Island Power Station Great Island Power Station 52.27926 -6.99351 S PS IE 0 1 Europe/Dublin 2010-12-09 +7626459 Mullaghinash TV Mast Mullaghinash TV Mast 51.99598 -9.12741 S TOWR IE 0 458 Europe/Dublin 2010-12-09 +7626471 Donnybrook transmitter Donnybrook transmitter 53.31476 -6.22358 S TOWR IE 0 14 Europe/Dublin 2010-12-09 +7626472 Three Rock TV Mast Three Rock TV Mast 53.24444 -6.23813 S TOWR IE 0 376 Europe/Dublin 2010-12-09 +7626473 Kiln Cement Plant Kiln Cement Plant 52.64277 -8.69 S MFG IE 0 2 Europe/Dublin 2010-12-09 +7626474 Kinnegad Cement Factory Kinnegad Cement Factory 53.43153 -7.14332 S MFG IE 0 127 Europe/Dublin 2010-12-09 +7626475 Platin Cement Factory Platin Cement Factory 53.68467 -6.38771 S MFG IE 0 34 Europe/Dublin 2010-12-09 +7626476 Truskmore transmitter Truskmore transmitter 54.37306 -8.37095 S TOWR IE 0 594 Europe/Dublin 2010-12-09 +7626477 Mweelin Mast Mweelin Mast 53.95531 -10.02842 S TOWR IE 0 223 Europe/Dublin 2010-12-09 +7626834 Woodland substation Woodland substation 53.47471 -6.56909 S PS IE 0 83 Europe/Dublin 2010-12-18 +7627461 Egans House Hotel Egans House Hotel 53.36655 -6.26668 S HTL IE 0 3 Europe/Dublin 2010-12-28 +7628185 National University of Ireland Maynooth National University of Ireland Maynooth 53.38317 -6.60034 S UNIV IE 0 73 Europe/Dublin 2011-01-02 +7645410 Dalymount Park Dalymount Park 53.36185 -6.27495 S STDM IE 0 3 Europe/Dublin 2011-01-10 +7645430 Carlisle Grounds Carlisle Grounds 53.2057 -6.10265 S STDM IE 0 1 Europe/Dublin 2011-01-10 +7646016 Hunky Dorys Park Hunky Dorys Park 53.72338 -6.35738 S STDM IE 0 3 Europe/Dublin 2011-01-14 +7646018 Oriel Park Oriel Park 53.99892 -6.41653 S STDM IE 0 1 Europe/Dublin 2011-01-14 +7646031 Terryland Park Terryland Park 53.2846 -9.05639 S STDM IE 0 1 Europe/Dublin 2011-01-14 +7646084 Tallaght Stadium Tallaght Stadium 53.28353 -6.3737 S STDM IE 0 87 Europe/Dublin 2011-01-14 +7646087 Showgrounds Showgrounds 54.27003 -8.4873 S STDM IE 0 5 Europe/Dublin 2011-01-14 +7646091 Morton Stadium Morton Stadium Santry 53.40119 -6.24494 S STDM IE 0 14 Europe/Dublin 2011-01-14 +7646093 Richmond Park Richmond Park 53.34091 -6.31657 S STDM IE 0 22 Europe/Dublin 2011-01-14 +7646643 Sherriff's Mountain transmitter Sherriff's Mountain transmitter 55.00383 -7.3689 S TOWR IE 0 152 Europe/Dublin 2011-01-18 +7647203 Glenribbeen Glenribbeen 52.14709 -7.8875 P PPL IE 0 18 Europe/Dublin 2011-01-22 +7648535 Moyross Moyross 52.68198 -8.63955 P PPL IE 4448 2 Europe/Dublin 2011-02-02 +7649121 Carrickcarnan Carrickcarnan 54.09861 -6.36023 P PPL IE L 18 0 130 Europe/Dublin 2011-02-08 +7662263 Ballinakillew Mountain Ballinakillew Mountain 54.58841 -8.00508 P PPL IE 0 135 Europe/Dublin 2011-02-09 +7668215 Belmullet Aerodrome Belmullet Aerodrome BLY,EIBT 54.2228 -10.0308 S AIRP IE 0 3 Europe/Dublin 2011-02-17 +7668216 Donegal Airport Donegal Airport CFN,EIDL 55.0442 -8.341 S AIRP IE 0 -9999 Europe/Dublin 2011-02-17 +7668217 Inishmore Aerodrome Inishmore Aerodrome EIIM,IOR 53.1067 -9.65361 S AIRP IE 0 1 Europe/Dublin 2011-02-17 +7668218 Inisheer Aerodrome Inisheer Aerodrome EIIR,INQ 53.0647 -9.5109 S AIRP IE 0 1 Europe/Dublin 2011-02-17 +7668219 Kilkenny Airport Kilkenny Airport EIKK,KKY 52.6508 -7.29611 S AIRP IE 0 80 Europe/Dublin 2011-02-17 +7668220 Kerry Airport Kerry Airport EIKY,KIR 52.1809 -9.52378 S AIRP IE 0 78 Europe/Dublin 2011-02-17 +7668221 Sligo Airport Sligo Airport EISG,Port lotniczy Sligo,Purt Aer Shliggee,SXL 54.2802 -8.59921 S AIRP IE 0 1 Europe/Dublin 2011-02-17 +7668222 Waterford Airport Waterford Airport EIWF,WAT 52.1872 -7.08696 S AIRP IE 0 34 Europe/Dublin 2011-02-17 +7669170 Aviva Stadium Aviva Stadium 53.33439 -6.22854 S STDM IE 0 1 Europe/Dublin 2011-02-22 +7670621 Curraghlea Curraghlea 54.97745 -7.73163 P PPL IE 0 152 Europe/Dublin 2011-03-02 +7671099 Lismore Castle Lismore Castle 52.139 -7.933 S CSTL IE 0 45 Europe/Dublin 2011-03-07 +7725549 Waterville River Waterville River 51.8196 -10.17368 H STM IE 0 14 Europe/Dublin 2011-03-13 +7730478 Bantry Aerodrome Bantry Aerodrome BYT,EIBN 51.6686 -9.48417 S AIRP IE 0 24 Europe/Dublin 2011-03-17 +7730479 Connemara Regional Airport Connemara Regional Airport EICA,NNR 53.2303 -9.46778 S AIRP IE 0 1 Europe/Dublin 2011-03-17 +7730480 Castlebar Airport Castlebar Airport CLB,EICB 53.8484 -9.28037 S AIRP IE 0 46 Europe/Dublin 2011-03-17 +7730481 Castlebridge Airport Castlebridge Airport EICD,WEX 52.33333 -6.46667 S AIRP IE 0 5 Europe/Dublin 2011-03-17 +7730482 Letterkenny Airport Letterkenny Airport EILT,LTR 54.9513 -7.67283 S AIRP IE 0 15 Europe/Dublin 2011-03-17 +7730915 Reeroe Airport Reeroe Airport CHE 51.93333 -10.23333 S AIRP IE 0 93 Europe/Dublin 2011-03-17 +7732166 Skahard Skahard 52.60259 -8.50303 P PPL IE 0 76 Europe/Dublin 2011-03-25 diff --git a/modules/spatial-lucene/src/test/resources/data/states-bbox.txt b/modules/spatial-lucene/src/test/resources/data/states-bbox.txt new file mode 100644 index 00000000000..51c761cdb01 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/data/states-bbox.txt @@ -0,0 +1,52 @@ +#id name shape +HI Hawaii -160.242406 18.921786 -154.791096 22.229120 +WA Washington -124.732769 45.543092 -116.919132 48.999931 +MT Montana -116.063531 44.353639 -104.043072 49.000026 +ME Maine -71.087509 43.091050 -66.969271 47.453334 +ND North Dakota -104.062991 45.930822 -96.551931 49.000026 +SD South Dakota -104.061036 42.488459 -96.439394 45.943547 +WY Wyoming -111.053428 40.994289 -104.051705 45.002793 +WI Wisconsin -92.885397 42.489152 -86.967712 46.952479 +ID Idaho -117.236921 41.994599 -111.046771 48.999950 +VT Vermont -73.436000 42.725852 -71.505372 45.013351 +MN Minnesota -97.229436 43.498102 -89.530673 49.371730 +OR Oregon -124.559617 41.987672 -116.470418 46.236091 +NH New Hampshire -72.553428 42.698603 -70.734139 45.301469 +IA Iowa -96.640709 40.371946 -90.142796 43.501457 +MA Massachusetts -73.498840 41.238279 -69.917780 42.886877 +NE Nebraska -104.056219 39.992595 -95.308697 43.003062 +NY New York -79.763235 40.506003 -71.869986 45.006138 +PA Pennsylvania -80.526045 39.719313 -74.700062 42.267327 +CT Connecticut -73.725237 40.998392 -71.788249 42.047428 +RI Rhode Island -71.866678 41.322769 -71.117132 42.013713 +NJ New Jersey -75.570234 38.956682 -73.896148 41.350573 +IN Indiana -88.101490 37.776224 -84.787446 41.765540 +NV Nevada -119.996324 34.998914 -114.037392 41.996637 +UT Utah -114.047273 36.991746 -109.043206 42.002300 +CA California -124.392638 32.535781 -114.125230 42.002191 +OH Ohio -84.812070 38.400511 -80.519996 41.986872 +IL Illinois -91.516284 36.986822 -87.507909 42.509363 +DC District of Columbia -77.122328 38.788234 -76.910904 38.993541 +DE Delaware -75.791094 38.449602 -75.045623 39.840119 +WV West Virginia -82.647158 37.204910 -77.727467 40.637203 +MD Maryland -79.489865 37.970255 -75.045623 39.725461 +CO Colorado -109.055861 36.988994 -102.037207 41.003375 +KY Kentucky -89.568231 36.496570 -81.959575 39.142063 +KS Kansas -102.051535 36.988875 -94.601224 40.002987 +VA Virginia -83.675177 36.541623 -75.242219 39.456998 +MO Missouri -95.767479 35.989656 -89.105034 40.609784 +AZ Arizona -114.821761 31.335634 -109.045615 37.003926 +OK Oklahoma -102.997709 33.621136 -94.428552 37.001478 +NC North Carolina -84.323773 33.882164 -75.456580 36.589767 +TN Tennessee -90.305448 34.988759 -81.652272 36.679683 +TX Texas -106.650062 25.845557 -93.507389 36.493912 +NM New Mexico -109.051346 31.343453 -102.997401 36.999760 +AL Alabama -88.472952 30.233604 -84.894016 35.016033 +MS Mississippi -91.643682 30.194935 -88.090468 35.005041 +GA Georgia -85.608960 30.361291 -80.894753 35.000366 +SC South Carolina -83.350685 32.068173 -78.579453 35.208356 +AR Arkansas -94.617257 33.010151 -89.645479 36.492811 +LA Louisiana -94.041785 28.939655 -89.021803 33.023422 +FL Florida -87.625711 24.956376 -80.050911 31.003157 +MI Michigan -90.408200 41.697494 -82.419836 48.173795 +AK Alaska -178.217598 51.583032 -129.992235 71.406235 diff --git a/modules/spatial-lucene/src/test/resources/data/states-poly.txt b/modules/spatial-lucene/src/test/resources/data/states-poly.txt new file mode 100644 index 00000000000..6164ae07ade --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/data/states-poly.txt @@ -0,0 +1,52 @@ +#id name shape +HI Hawaii MULTIPOLYGON (((-160.07380334546815 22.00417734795773, -160.0497093454457 21.988164347942817, -160.0898583454831 21.915870347875487, -160.17013734555786 21.867596347830528, -160.20225934558778 21.795308347763203, -160.24240634562517 21.803280347770627, -160.2263363456102 21.891592347852875, -160.121962345513 21.96397834792029, -160.07380334546815 22.00417734795773)), ((-159.33517434478023 21.94834334790573, -159.43954534487744 21.86807134783097, -159.57602134500453 21.88413634784593, -159.64024734506435 21.94836534790575, -159.7365923451541 21.9644203479207, -159.8008143452139 22.036666347987985, -159.71250634513166 22.14905934809266, -159.57601234500453 22.213179348152376, -159.39136734483256 22.229120348167225, -159.34319534478772 22.197016348137325, -159.29502534474284 22.12481234807008, -159.32713034477274 22.044639347995414, -159.33517434478023 21.94834334790573)), ((-157.67333034323252 21.298027347300074, -157.68137134324002 21.273942347277643, -157.7215013432774 21.281971347285122, -157.8258713433746 21.249863347255218, -157.89813434344188 21.330144347329988, -157.94630634348675 21.30606134730756, -158.0988333436288 21.290008347292606, -158.13095134365872 21.354232347352422, -158.23531834375592 21.47465234746457, -158.24334234376337 21.538879347524386, -158.26743134378583 21.58704234756924, -158.11489434364375 21.579016347561765, -158.04262634357644 21.675350347651484, -157.98642834352412 21.699433347673914, -157.91417934345682 21.6352083476141, -157.84995934339702 21.506758347494472, -157.80981534335962 21.43450534742718, -157.76164334331477 21.45858734744961, -157.7134723432699 21.386335347382317, -157.67333034323252 21.298027347300074)), ((-156.71787234234267 21.137419347150498, -156.76604834238753 21.065176347083217, -156.88648434249973 21.049134347068275, -157.0711323426717 21.105331347120615, -157.28789734287355 21.081250347098187, -157.3039483428885 21.137448347150524, -157.24774734283616 21.161530347172953, -157.2316943428212 21.233776347240237, -157.16747134276142 21.19364034720286, -157.00690334261185 21.18561034719538, -156.9925463425985 21.195420347204514, -156.958733342567 21.209693347217808, -156.94334634255267 21.172778347183428, -156.91424234252557 21.167372347178393, -156.9102143425218 21.158045347169708, -156.71787234234267 21.137419347150498)), ((-157.03905034264181 20.92870734695612, -156.91058634252215 20.92871834695613, -156.80620534242496 20.840418346873893, -156.81422534243242 20.792252346829034, -156.88648734249972 20.736049346776692, -156.9667653425745 20.728020346769213, -156.99086334259692 20.792237346829022, -156.98282634258945 20.832377346866405, -157.05509834265675 20.88053834691126, -157.03905034264181 20.92870734695612)), ((-156.1960453418567 20.631649346679463, -156.27631734193145 20.583484346634606, -156.3967353420436 20.567427346619652, -156.436879342081 20.623621346671985, -156.46097234210342 20.727981346769177, -156.49307434213333 20.792204346828992, -156.52519334216322 20.776149346814037, -156.63758634226792 20.808261346843945, -156.69378234232025 20.91262434694114, -156.65363634228285 21.016985347038336, -156.59743934223053 21.04106434706076, -156.52519134216323 20.984870347008425, -156.47702234211837 20.896565346926185, -156.35660334200622 20.944726346971038, -156.2602633419165 20.928671346956087, -156.0113923416847 20.800225346836463, -155.9873173416623 20.752061346791606, -156.04351134171463 20.655732346701893, -156.13180934179687 20.623623346671987, -156.1960453418567 20.631649346679463)), ((-155.66619234136323 18.92178634508703, -155.7785853414679 19.01009234516927, -155.85886134154265 19.01010134516928, -155.90703134158753 19.130513345281422, -155.87492734155762 19.371358345505726, -155.94717834162492 19.4837503456104, -155.97125834164734 19.628252345744976, -156.04352434171466 19.78078334588703, -155.97930134165483 19.820922345924416, -155.88295834156511 19.933312346029084, -155.82676134151276 20.005563346096373, -155.83478634152024 20.06175734614871, -155.89097834157258 20.174149346253383, -155.85885834154266 20.270479346343098, -155.73844234143053 20.206256346283283, -155.56182634126603 20.134007346216, -155.20055034092957 19.99752834608889, -155.09618534083236 19.877114345976747, -155.07210634080994 19.724585345834694, -154.97576334072022 19.740643345849648, -154.97576234072022 19.652335345767405, -154.79109634054822 19.53996034566275, -154.81518734057067 19.459676345587976, -154.92758134067535 19.41951834555058, -155.01588134075757 19.331211345468336, -155.1523723408847 19.266992345408525, -155.30489934102675 19.23487834537862, -155.52167834122864 19.122484345273943, -155.5377293412436 19.04221034519918, -155.66619234136323 18.92178634508703))) +WA Washington MULTIPOLYGON (((-122.40201531038355 48.22521637237797, -122.4628553104402 48.22836337238091, -122.45441931043234 48.128492372287894, -122.36133331034566 48.06009737222419, -122.51451131048832 48.133973372293, -122.54207431051398 48.21046037236424, -122.5091303104833 48.25379337240459, -122.40440431038577 48.24659437239789, -122.37832031036149 48.28972137243805, -122.56436631053475 48.414246372554025, -122.66703231063036 48.41289537255277, -122.69941331066052 48.4943283726286, -122.60817831057555 48.51882437265142, -122.52322831049644 48.45840337259515, -122.47383331045043 48.46219537259868, -122.50529931047973 48.55944437268925, -122.4295453104092 48.59939737272646, -122.48779831046343 48.63857037276294, -122.52655831049954 48.71172437283107, -122.51685331049049 48.757921372874094, -122.69740431065864 48.80301537291609, -122.75424231071159 48.90998837301572, -122.82242131077507 48.95072537305366, -122.74394031070199 48.95580837305839, -122.76511931072172 48.99974637309931, -120.85705930894468 48.99983037309939, -118.84360330706951 48.999898373099455, -118.20035430647044 48.999908373099466, -117.43858030576098 48.999918373099476, -117.03204930538237 48.999931373099486, -117.02911130537964 48.838075372948744, -117.03886830538872 48.04618637221124, -117.03747230538742 47.9710923721413, -117.04179430539145 47.36144137157352, -117.04239230539201 47.25850137147765, -117.04096830539069 47.11931937134803, -117.04192630539157 46.53660137080533, -117.03855830538843 46.42798037070417, -117.04447030539394 46.38857437066747, -117.06418430541231 46.34869837063033, -117.02797330537858 46.33542737061797, -117.00164230535405 46.30244837058726, -116.97272530532712 46.24930937053777, -116.96749030532226 46.19755437048957, -116.9294263052868 46.1654833704597, -116.9616373053168 46.09727437039618, -116.98721130534062 46.0785093703787, -116.95772330531315 46.06568737036676, -116.91913230527722 45.995175370301084, -117.4816633058011 45.99983437030543, -117.60282630591395 46.00026837030583, -117.98267730626772 45.99988037030547, -117.99252730627688 46.0016393703071, -118.98213330719852 45.99905837030471, -119.03222130724518 45.96627437027417, -119.14025030734578 45.92570837023639, -119.17874230738164 45.922351370233265, -119.30276330749714 45.932662370242866, -119.37944130756856 45.91761037022885, -119.4388613076239 45.91426837022574, -119.51222030769222 45.8992003702117, -119.58929430776399 45.91331537022485, -119.62211630779456 45.899410370211896, -119.67844530784703 45.852539370168245, -119.83355630799147 45.84160937015807, -119.86973530802518 45.83169837014884, -119.9943203081412 45.81114037012969, -120.06864830821043 45.78020237010088, -120.1559083082917 45.76126137008324, -120.20744530833969 45.71978437004461, -120.28363530841065 45.71658337004163, -120.44338330855942 45.6892793700162, -120.49915630861136 45.695630370022116, -120.57008230867743 45.74091837006429, -120.62375730872742 45.743610370066804, -120.65840330875969 45.73261237005656, -120.69699430879562 45.71050937003597, -120.86141930894875 45.66518636999376, -120.90793730899208 45.6354773699661, -120.94857330902992 45.65031636997991, -120.96847830904846 45.6451543699751, -121.033482309109 45.65284436998227, -121.07353030914629 45.64661036997646, -121.12520430919443 45.60705936993963, -121.17431630924017 45.60051636993353, -121.19205430925669 45.61324236994538, -121.20330830926716 45.657287369986406, -121.21427130927736 45.66564536999419, -121.27639130933522 45.67834037000601, -121.31997730937582 45.696642370023056, -121.36781430942037 45.699686370025894, -121.42202930947087 45.690603370017435, -121.44255230948997 45.6949673700215, -121.52905430957054 45.71956737004441, -121.70641730973571 45.688793370015745, -121.7586943097844 45.68971637001661, -121.81104130983316 45.70068337002682, -121.88828330990509 45.67685637000463, -121.92682030994098 45.642028369972195, -121.97265930998367 45.63577636996637, -122.00001131000914 45.61782436994965, -122.08203731008555 45.590504369924204, -122.24492231023724 45.54811236988473, -122.30315031029147 45.54309236988006, -122.35645731034111 45.56617136990155, -122.43715431041628 45.56477936990025, -122.56542931053573 45.59481836992823, -122.65120931061563 45.606830369939416, -122.69632331065765 45.63104536996197, -122.76054131071746 45.649397369979056, -122.77255131072863 45.72768537005197, -122.76428831072094 45.760568370082595, -122.78800931074304 45.800343370119634, -122.78451631073978 45.8504493701663, -122.78407331073936 45.867886370182546, -122.80622331076 45.90407237021624, -122.8077413107614 45.94389037025333, -122.87541731082445 46.0271833703309, -122.89975731084711 46.07932937037946, -122.97416931091641 46.110483370408474, -123.05059631098759 46.155736370450626, -123.11855431105087 46.17931037047258, -123.17619631110456 46.18358637047656, -123.2124373111383 46.17000637046391, -123.24879931117218 46.14402037043971, -123.30471731122425 46.14473737044038, -123.4707733113789 46.27502337056171, -123.62007631151795 46.25866537054648, -123.7254593116161 46.28542337057141, -123.88577131176541 46.2404383705295, -123.99332931186558 46.31027437059455, -124.07910731194546 46.267259370554484, -124.0655103119328 46.639745370901394, -124.02304331189325 46.58354137084905, -124.0130023118839 46.383680370662915, -123.84145131172413 46.404343370682156, -123.94069331181655 46.481115370753656, -123.89356731177267 46.51107937078156, -123.95771231183241 46.61722537088042, -123.92647031180331 46.67306037093242, -123.84096631172368 46.71828837097454, -123.8955423117745 46.7449863709994, -124.04315831191198 46.71585537097228, -124.09104931195658 46.72902237098454, -124.10206731196683 46.78946937104083, -124.13882731200107 46.89998537114376, -124.10576031197029 46.908148371151356, -124.10473831196933 46.874145371119695, -124.02880831189862 46.823767371072776, -124.04692931191549 46.887253371131905, -123.81265531169731 46.963965371203344, -123.99586431186793 46.97638537121491, -124.03439431190381 47.031033371265806, -124.11236131197643 47.042675371276644, -124.16203631202269 46.92961237117135, -124.19273331205127 47.16698237139242, -124.23142531208731 47.275070371493086, -124.31942731216927 47.34923837156216, -124.34908031219689 47.526910371727624, -124.37360531221972 47.6387633718318, -124.48403531232259 47.80825537198965, -124.60668531243681 47.87373537205063, -124.73276931255424 48.149989372307914, -124.70520931252857 48.23199637238429, -124.71717531253971 48.37755737251986, -124.56354731239662 48.35727837250097, -123.99121531186361 48.15916137231646, -123.39685731131007 48.11103037227163, -123.12322231105523 48.14873337230675, -122.92159431086745 48.09417937225594, -122.92484431087047 48.066796372230435, -122.84111131079248 48.13313637229222, -122.76888231072522 48.14399437230233, -122.80293131075693 48.08532137224769, -122.66156031062528 47.91715737209107, -122.65358531061784 47.86443137204197, -122.7458703107038 47.80898837199034, -122.7898013107447 47.80254837198434, -122.80951731076306 47.85707537203512, -122.85880431080896 47.827328372007415, -122.89936331084674 47.672517371863236, -122.9827443109244 47.605474371800796, -123.11391531104655 47.45627337166184, -123.15406031108395 47.348547371561516, -123.01047131095021 47.35302737156569, -122.83324731078517 47.43846437164525, -123.03620631097418 47.3560513715685, -123.11268531104541 47.37156937158295, -123.026336310965 47.51593637171741, -122.91696931086314 47.6146063718093, -122.75294231071038 47.66068837185222, -122.72306231068254 47.75689937194182, -122.61116231057832 47.85000837202854, -122.61321731058024 47.9361893721088, -122.5318883105045 47.90946137208391, -122.4735883104502 47.754980371940036, -122.62150931058797 47.69696837188601, -122.58646031055532 47.57119137176887, -122.55526231052627 47.58350537178033, -122.54270231051457 47.52273437172374, -122.50446131047896 47.50721637170929, -122.55844631052923 47.398363371607914, -122.5441253105159 47.373927371585154, -122.588254310557 47.333929371547896, -122.55315631052432 47.28333237150078, -122.5805303105498 47.251387371471026, -122.61154631057869 47.29339837151015, -122.60691431057438 47.2705713714889, -122.69974431066083 47.29208537150893, -122.62875431059472 47.39855337160809, -122.6374363106028 47.39858037160811, -122.74154931069975 47.341450371554906, -122.76970831072599 47.26615637148478, -122.71980131067951 47.22313137144471, -122.7612383107181 47.162496371388244, -122.82510831077758 47.234826371455604, -122.77333531072937 47.3373603715511, -122.80218431075623 47.360740371572874, -122.88037331082904 47.299233371515584, -123.11543631104797 47.207981371430606, -123.08120031101609 47.09005837132078, -123.03134831096966 47.10077437133076, -122.92315031086889 47.04796337128157, -122.79004831074494 47.125859371354125, -122.72818631068732 47.082441371313685, -122.70007931066114 47.09832537132848, -122.5918063105603 47.18006037140459, -122.53076331050346 47.28745637150462, -122.54658831051819 47.31627637153146, -122.42409431040412 47.25947237147855, -122.39284331037501 47.27772237149556, -122.44160431042042 47.301125371517344, -122.42083731040108 47.31884437153385, -122.32537631031218 47.34432337155758, -122.31973831030692 47.39011537160023, -122.3926333103748 47.5102423717121, -122.38222031036511 47.59540937179142, -122.41481531039547 47.664180371855466, -122.39449231037653 47.77417637195791, -122.30292231029125 47.95021437212186, -122.23012131022347 47.96911337213946, -122.21699231021123 48.007439372175156, -122.36833331035217 48.12814137228757, -122.40201531038355 48.22521637237797)), ((-122.96797831091064 48.44379437258154, -123.09523331102915 48.47942237261472, -123.15972031108922 48.521842372654234, -123.1698993110987 48.56256437269215, -123.14105331107183 48.62364737274905, -123.10372131103706 48.60837737273482, -123.01209531095174 48.557477372687416, -123.00869831094857 48.53371937266529, -122.96798031091063 48.526933372658974, -123.0222713109612 48.513359372646335, -123.01888331095805 48.48960537262421, -122.96797831091064 48.44379437258154)), ((-122.73318731069197 48.27664737242587, -122.66561231062904 48.396777372537755, -122.60438431057202 48.40478937254522, -122.52575031049878 48.32104337246722, -122.52864831050148 48.28351037243227, -122.62350931058984 48.29635037244422, -122.73203431069089 48.22541437237816, -122.61092531057811 48.20632137236038, -122.54620231051783 48.07685837223981, -122.49621231047126 48.09407137225584, -122.37999431036303 48.03214637219817, -122.35540031034013 47.963886372134596, -122.38696131036953 47.90454937207933, -122.44278831042152 47.91805637209191, -122.47161631044837 47.987509372156595, -122.54496131051667 47.967531372137984, -122.60862831057597 48.0314303721975, -122.69555431065692 48.18118537233697, -122.76877831072511 48.21881837237201, -122.73318731069197 48.27664737242587))) +MT Montana MULTIPOLYGON (((-111.47542530020736 44.702162369096875, -111.48080430021237 44.691416369086866, -111.46069230019364 44.67002336906694, -111.45826530019139 44.652555369050674, -111.47016830020247 44.640710369039645, -111.50769030023741 44.63768836903683, -111.50174730023188 44.615971369016606, -111.51452630024379 44.59319736899539, -111.49290430022364 44.55118936895627, -111.46282730019563 44.549942368955115, -111.45932530019238 44.53792136894391, -111.48257330021403 44.53614336894226, -111.49024130022117 44.528697368935326, -111.56723130029286 44.55286636895784, -111.60524830032827 44.54298936894864, -111.68486230040241 44.55075236895587, -111.71699730043235 44.53376036894004, -111.76691830047884 44.51882536892613, -111.79260830050276 44.518462368925796, -111.80783730051695 44.503982368912304, -111.87250230057717 44.556265368961, -111.9403863006404 44.54972636895491, -111.97781830067525 44.52967636893624, -112.02361330071791 44.53504336894123, -112.02707730072113 44.52284336892987, -112.0593673007512 44.528611368935245, -112.09989730078895 44.518231368925576, -112.12419030081158 44.52825336893491, -112.19965830088186 44.531449368937885, -112.21776330089872 44.53849536894445, -112.2303983009105 44.559491368964004, -112.25667530093496 44.55997236896445, -112.28234130095886 44.54170236894744, -112.3425073010149 44.52510036893197, -112.3405773010131 44.49718036890597, -112.36758330103825 44.44927036886135, -112.42075330108777 44.44928436886136, -112.45851930112295 44.46883436887957, -112.50183930116329 44.462997368874134, -112.53932430119819 44.47749736888764, -112.65318930130424 44.48080236889072, -112.71432630136118 44.49693536890574, -112.73371230137924 44.48432036889399, -112.77986330142222 44.47392236888431, -112.79622830143747 44.45801136886949, -112.82669130146583 44.4210843688351, -112.8187103014584 44.394819368810644, -112.81739630145718 44.36420236878213, -112.84427530148221 44.35363936877229, -112.8707813015069 44.36997836878751, -112.88730730152228 44.3928523688088, -112.93828130156976 44.407192368822166, -112.98524930161349 44.435540368848564, -113.01201430163843 44.43771536885059, -113.00665830163344 44.45261536886447, -113.02030930164615 44.48177636889163, -113.00771330163442 44.51061236891848, -113.03782130166246 44.532959368939295, -113.03966030166417 44.55629436896103, -113.08303730170456 44.582681368985604, -113.0542893016778 44.62428936902435, -113.07314430169536 44.67552536907207, -113.0989563017194 44.69591636909106, -113.10170330172195 44.715173369108996, -113.12743130174591 44.73737936912967, -113.13827430175601 44.761439369152086, -113.24033830185107 44.81184136919902, -113.25715430186673 44.81048636919776, -113.31868030192403 44.78022836916958, -113.34063130194447 44.779000369168436, -113.35002430195323 44.80756836919504, -113.42137930201967 44.833699369219374, -113.4455733020422 44.851239369235714, -113.49619130208936 44.930670369309695, -113.48734830208112 44.93957436931798, -113.46341330205883 44.9407753693191, -113.44876530204519 44.94952236932725, -113.44102930203798 44.99819436937258, -113.45885330205458 45.02744936939982, -113.4554353020514 45.04334936941463, -113.48630530208014 45.058321369428576, -113.49015930208374 45.071219369440584, -113.52060930211209 45.08206336945069, -113.51022530210243 45.107835369474685, -113.55227230214157 45.10754936947443, -113.57437630216216 45.117711369483885, -113.57158430215956 45.13454536949956, -113.59409930218054 45.14974236951372, -113.6009283021869 45.18099236954282, -113.6455923022285 45.206790369566846, -113.69012030226996 45.26228136961853, -113.68870930226865 45.27778836963297, -113.73908030231556 45.32153036967371, -113.74131030231763 45.38238636973038, -113.77502630234903 45.41017236975626, -113.78566230235894 45.44563336978929, -113.76916830234359 45.47770736981916, -113.7723043023465 45.507054369846486, -113.78093330235454 45.51686536985562, -113.83371530240369 45.514908369853806, -113.8037543023758 45.583729369917904, -113.82248530239323 45.600636369933646, -113.85202730242075 45.609562369941955, -113.90330530246851 45.61349136994562, -113.90219930246748 45.63725336996775, -113.92353230248735 45.65512436998439, -113.9266983024903 45.67121136999937, -113.96414430252517 45.67937837000698, -113.97114930253169 45.69737637002374, -114.00947230256737 45.68633237001346, -114.01987830257707 45.67237837000046, -114.0109903025688 45.65251136998196, -114.01803230257535 45.64077336997103, -114.05651530261119 45.62514436995647, -114.08296730263582 45.58637836992037, -114.11813930266858 45.571127369906165, -114.13204830268154 45.55038236988685, -114.17266730271938 45.54392436988083, -114.19480830273999 45.52791736986592, -114.24199830278394 45.53529036987278, -114.24788030278941 45.502945369842664, -114.26223930280278 45.485859369826755, -114.32643430286257 45.457424369800265, -114.35024630288476 45.46338336980582, -114.3714573029045 45.485740369826644, -114.41905130294883 45.499008369839, -114.43355530296233 45.527633369865654, -114.46270830298948 45.54784736988448, -114.49659130302105 45.54664936988337, -114.52739230304974 45.55819336989411, -114.56092430308095 45.54874036988531, -114.54095830306237 45.5963973699297, -114.56467830308446 45.62427136995566, -114.50174130302585 45.65239336998185, -114.5107063030342 45.674057370002025, -114.49756130302194 45.69440137002097, -114.5349763030568 45.7229963700476, -114.5419583030633 45.74599937006903, -114.56354230308341 45.7623983700843, -114.51737530304041 45.81006737012869, -114.49916430302343 45.842683370159065, -114.47380330299983 45.83946837015607, -114.44323130297136 45.85262137016832, -114.4075253029381 45.84645337016258, -114.39283830292442 45.87088637018533, -114.41353030294368 45.91065137022237, -114.42946030295852 45.92147737023245, -114.40529030293601 45.95397937026272, -114.41244730294268 45.97197337027948, -114.48445530300975 45.98980637029609, -114.47452930300051 46.009765370314675, -114.49432130301894 46.02341037032738, -114.46575630299233 46.05081537035291, -114.45602930298327 46.082229370382166, -114.47737030300314 46.107357370405566, -114.50656830303033 46.11614237041375, -114.51894430304186 46.136063370432296, -114.50961330303318 46.15741737045219, -114.4670183029935 46.15526237045018, -114.44087930296917 46.168969370462946, -114.43955330296792 46.22025437051071, -114.47283330299892 46.243783370532626, -114.47379530299982 46.25296137054117, -114.4317953029607 46.28471137057074, -114.40979630294021 46.39291137067151, -114.3970173029283 46.399545370677686, -114.38402530291621 46.428179370704356, -114.41071530294107 46.48737137075948, -114.36046830289428 46.50612537077694, -114.35011530288463 46.51738937078744, -114.3433193028783 46.58788137085309, -114.32471230286097 46.62283937088564, -114.33468530287027 46.65422737091488, -114.3840173029162 46.66159637092174, -114.44153630296978 46.645715370906956, -114.48471830301 46.62357437088633, -114.54039130306184 46.637891370899666, -114.61082630312744 46.629048370891425, -114.64474030315901 46.66082437092102, -114.6450383031593 46.67092137093043, -114.6259263031415 46.6871073709455, -114.67388730318616 46.734721370989845, -114.69843130320902 46.733760370988946, -114.74810530325529 46.695132370952976, -114.78291930328771 46.70304037096034, -114.77783230328296 46.755717371009396, -114.79403030329806 46.76653137101947, -114.8407923033416 46.77553837102786, -114.86660330336565 46.797045371047886, -114.90232530339892 46.799433371050114, -114.94840930344184 46.85244637109949, -114.94056630343454 46.89088837113529, -114.92412530341922 46.90716537115044, -114.96473030345703 46.92521337116725, -115.00157430349134 46.95880937119854, -115.03733430352466 46.963001371202445, -115.0556383035417 46.97335837121209, -115.08133630356564 47.02652437126161, -115.13550730361608 47.06355037129609, -115.14868430362836 47.09174237132235, -115.17249630365053 47.09757037132778, -115.1930733036697 47.124026371352414, -115.29623430376577 47.17955037140412, -115.32522830379278 47.245150371465215, -115.34366130380994 47.25502237147441, -115.40820730387006 47.26359337148239, -115.42664130388722 47.274374371492435, -115.50193030395735 47.281644371499205, -115.52306430397702 47.29198237150884, -115.55552030400725 47.33461337154854, -115.59953630404824 47.3700033715815, -115.6387823040848 47.38004437159085, -115.66647730411059 47.399167371608655, -115.75032630418868 47.42247537163037, -115.75010530418848 47.43396637164106, -115.73248130417207 47.445303371651626, -115.65608730410091 47.44918037165523, -115.64318530408889 47.45779337166326, -115.64014230408605 47.4752353716795, -115.69277030413508 47.489540371692826, -115.70152230414323 47.520893371722025, -115.7428293041817 47.533691371733944, -115.69208830413444 47.590721371787055, -115.6982843041402 47.616080371810675, -115.73406730417354 47.63987937183283, -115.73366530417316 47.69555437188469, -115.77572730421232 47.70973237189789, -115.79053730422612 47.744838371930584, -115.83674230426917 47.75628137194124, -115.84932430428088 47.80518237198679, -115.86980930429996 47.82745237200753, -115.90392130433173 47.841074372020216, -115.93784230436331 47.86712437204447, -115.99893230442021 47.92514037209851, -116.02531630444479 47.964939372135575, -116.05349230447102 47.976191372146054, -116.0554973044729 48.208483372362394, -116.05669230447401 48.498665372632644, -116.06353130448036 48.9999503730995, -114.7293253032378 48.99997037309952, -114.06346330261766 48.999977373099526, -112.18838730087137 48.999992373099545, -111.28267930002785 49.00001137309956, -110.75079729953251 49.000005373099555, -109.50073729836829 49.000005373099555, -108.25067529720408 49.00000937309956, -107.1881212962145 49.00001737309957, -106.12557929522494 49.00002137309957, -105.06303429423536 49.00002137309957, -104.062991293304 49.00002637309957, -104.05231729329405 48.645824372769695, -104.05211129329386 48.39101937253239, -104.04842529329044 48.0000813721683, -104.04730729328939 47.40001737160945, -104.0459262932881 47.333832371547814, -104.04743729328952 46.64294737090437, -104.04670529328884 46.54253937081086, -104.04783629328989 46.28088137056717, -104.04890629329088 45.942993370252495, -104.04951729329144 45.883052370196665, -104.04385129328617 45.212875369572515, -104.04307229328545 44.997805369372216, -104.05984229330106 44.99733636937178, -105.04179629421559 45.00107636937526, -105.08500329425583 44.999817369374085, -106.02115029512768 44.997213369371664, -106.25923129534941 44.99616236937068, -107.89437429687226 44.99977336937405, -108.25923829721206 45.00011536937437, -108.62525629755294 44.99759336937201, -109.79938529864643 44.999522369373814, -109.99552929882911 45.00279336937686, -110.39276029919905 44.998625369372974, -110.42964929923342 44.992285369367075, -111.05342829981436 44.99569536937025, -111.05161629981266 44.664490369061795, -111.0515602998126 44.473323368883754, -111.09463029985272 44.48612436889567, -111.12891829988466 44.500757368909305, -111.13435929988972 44.52790236893458, -111.17024229992315 44.54518636895068, -111.17876429993107 44.564851368968995, -111.21950729996902 44.57317036897675, -111.23423329998273 44.60256236900412, -111.2197972999693 44.61798136901848, -111.22397129997319 44.62690836902679, -111.27066530001667 44.64221236904105, -111.27020830001624 44.673802369070465, -111.29566830003995 44.68293836907897, -111.3154753000584 44.7051933690997, -111.31922130006188 44.72786436912081, -111.34997730009053 44.72617736911924, -111.37230930011133 44.745087369136854, -111.38495930012311 44.73769436912997, -111.39508430013254 44.70886936910313, -111.44363230017775 44.71317936910714, -111.47542530020736 44.702162369096875))) +ME Maine MULTIPOLYGON (((-69.77727626137293 44.07414836851199, -69.85992826144991 44.00000136844294, -69.7915282613862 43.75608536821577, -69.8303922614224 43.727986368189605, -69.85178526144233 43.74432836820482, -69.84615526143709 43.84234436829611, -69.88679126147493 43.87671336832811, -69.90313226149014 43.790732368248044, -69.97290326155513 43.768847368227654, -69.9995002615799 43.78620736824382, -69.9873702615686 43.845738368299266, -70.02640326160495 43.84560136829914, -70.15662826172624 43.78981036824718, -70.23579826179997 43.68579636815031, -70.22223926178734 43.57724036804921, -70.34161026189851 43.53490836800978, -70.36592526192116 43.430303367912366, -70.45697726200596 43.349470367837085, -70.53894126208229 43.33571836782427, -70.66567226220032 43.09105036759641, -70.81866826234281 43.12187136762512, -70.83054826235387 43.15917436765986, -70.81320726233773 43.235222367730685, -70.90108626241957 43.28102036777334, -70.90580126242396 43.30206936779294, -70.96969926248347 43.36638036785283, -70.97909926249223 43.39618436788059, -70.96148326247581 43.43812636791965, -70.97079126248448 43.47021136794953, -70.95927826247376 43.51638836799253, -70.96426826247841 43.53198936800707, -70.94961926246476 43.548953368022865, -70.95652426247119 43.56414336803701, -70.97387426248736 43.571830368044175, -70.9844422624972 43.79116336824844, -71.00859626251969 44.28214636870571, -71.02872626253844 44.66853836906556, -71.08750926259319 45.301469369655024, -70.95938226247385 45.338865369689856, -70.87644426239662 45.22544536958422, -70.84287526236535 45.2781373696333, -70.81266626233722 45.35467836970458, -70.82913226235256 45.39072636973815, -70.7969672623226 45.42517236977023, -70.63492926217168 45.391967369739305, -70.71991026225083 45.51295436985198, -70.55227026209471 45.66066436998955, -70.39638326194952 45.72204637004671, -70.416214261968 45.79030937011029, -70.25396426181689 45.89900437021152, -70.24746426181083 45.944619370254, -70.31029526186934 45.96878237027651, -70.28002226184115 46.05315437035509, -70.30484926186428 46.06665837036766, -70.22932526179395 46.13743437043358, -70.28349626184439 46.19024937048276, -70.1910582617583 46.33483937061742, -70.04660726162378 46.42611537070243, -70.01414426159354 46.57059837083699, -69.98497726156637 46.69136537094947, -69.23029626086353 47.4533343716591, -69.04697626069279 47.42203037162995, -69.03671426068324 47.25736137147659, -68.89487226055114 47.182256371406645, -68.51467326019704 47.296964371513475, -68.3912572600821 47.28509737150242, -68.33481426002953 47.35737437156973, -68.23080725993267 47.352148371564866, -67.79101125952309 47.06100337129372, -67.7802892595131 45.947062370256276, -67.75561525949011 45.91658037022789, -67.79457125952639 45.878475370192405, -67.75936725949362 45.8277983701452, -67.8030532595343 45.7945083701142, -67.80343325953466 45.6781133700058, -67.75295525948763 45.65928936998827, -67.71803425945512 45.68129937000877, -67.6151402593593 45.60519936993789, -67.43930125919553 45.59256136992612, -67.4160842591739 45.50355436984323, -67.50410625925588 45.48581636982671, -67.4185552591762 45.3758523697243, -67.47795025923152 45.28028036963529, -67.43943525919565 45.18958436955082, -67.34560525910827 45.122252369488116, -67.27409525904167 45.18278336954449, -67.16590525894091 45.15626436951979, -67.1506612589267 45.121990369487875, -67.06535825884727 44.959295369336346, -67.14670625892303 44.904581369285395, -66.96927125875777 44.82865536921469, -67.00771925879359 44.780625369169954, -67.200364258973 44.65378136905181, -67.30846825907368 44.653521369051575, -67.38851025914822 44.69140036908685, -67.57099325931817 44.59833336900017, -67.61883825936273 44.540239368946075, -67.8112192595419 44.5540093689589, -67.858560259586 44.5360773689422, -67.90004225962463 44.45239936886426, -67.96834225968823 44.4712283688818, -67.96343625968366 44.505327368913555, -67.98652325970517 44.48481236889445, -68.01639325973298 44.384956368801454, -68.074379259787 44.38137436879812, -68.13626425984462 44.47523736888554, -68.24561425994646 44.49064836889988, -68.3637652600565 44.4313863688447, -68.42857126011685 44.465306368876284, -68.55218626023198 44.39904936881458, -68.53007526021139 44.28983636871287, -68.55942726023872 44.25988736868497, -68.74031026040718 44.34633036876548, -68.81285126047474 44.32743236874788, -68.8137682604756 44.41399036882849, -68.74134826040816 44.50728536891538, -68.74527926041182 44.552320368957325, -68.82355226048472 44.60890636901003, -68.82381326048495 44.664089369061415, -68.86060926051923 44.61097036901195, -68.80790326047014 44.56965436897347, -68.81167826047366 44.494593368903566, -68.95917926061102 44.43033136884371, -68.9850282606351 44.27111236869543, -69.02148226066905 44.24409336867026, -69.07445826071839 44.06906636850726, -69.21914026085314 43.94678736839337, -69.29365026092252 43.94219036838909, -69.3464542609717 44.01596936845781, -69.39448826101643 44.02512836846634, -69.48323326109909 43.887160368337845, -69.5893262611979 43.84486236829845, -69.66445326126787 43.85222436830531, -69.65524526125928 43.98025036842454, -69.61293226121988 44.03361236847424, -69.72063526132018 43.93797936838517, -69.74852826134617 43.893375368343634, -69.72467126132395 43.784477368242214, -69.75035926134787 43.761704368221004, -69.77767326137331 43.79127036824854, -69.80001326139411 44.02686636846796, -69.76675526136314 44.04773236848739, -69.77727626137293 44.07414836851199)), ((-68.387921260079 44.377253368794285, -68.35025426004391 44.398951368814494, -68.35544926004876 44.428857368842344, -68.23870925994004 44.43756336885045, -68.16476925987118 44.33449536875446, -68.3047052600015 44.290031368713045, -68.32071126001641 44.22507936865256, -68.40289026009295 44.27080136869514, -68.387921260079 44.377253368794285))) +ND North Dakota MULTIPOLYGON (((-98.73043728833767 45.93827137024809, -99.00683328859509 45.93955537024929, -99.7173452892568 45.94276137025227, -99.87578328940435 45.94354737025301, -100.51440628999912 45.94038837025006, -102.00277529138528 45.942505370252036, -102.9463972922641 45.94166537025126, -102.99482329230919 45.94111537025074, -104.04890629329088 45.942993370252495, -104.04783629328989 46.28088137056717, -104.04670529328884 46.54253937081086, -104.04743729328952 46.64294737090437, -104.0459262932881 47.333832371547814, -104.04730729328939 47.40001737160945, -104.04842529329044 48.0000813721683, -104.05211129329386 48.39101937253239, -104.05231729329405 48.645824372769695, -104.062991293304 49.00002637309957, -102.93795929225622 49.00002637309957, -102.02226429140342 49.000015373099565, -101.50043729091743 49.000020373099574, -100.18790828969505 49.00000237309955, -99.53356628908564 49.00000837309956, -99.0004032885891 49.00000637309955, -97.93786728759953 48.999992373099545, -97.22943628693976 48.999987373099536, -97.21636928692759 48.931830373036064, -97.17572728688974 48.87375737298198, -97.17120428688553 48.83598037294679, -97.1804222868941 48.81553737292775, -97.16471228687948 48.81036837292294, -97.17394428688807 48.801514372914696, -97.14751628686346 48.781170372895744, -97.13924628685575 48.76354237287933, -97.14789828686382 48.75565337287198, -97.13250228684947 48.747218372864126, -97.13480628685163 48.72623837284459, -97.11010128682861 48.708583372828144, -97.1167392868348 48.695243372815725, -97.09716928681657 48.67452937279643, -97.1076302868263 48.629946372754915, -97.12744428684476 48.62979437275477, -97.12295828684059 48.62076837274636, -97.14471828686085 48.61402437274008, -97.14081228685721 48.586905372714824, -97.1581922868734 48.583640372711784, -97.15212728686775 48.572856372701736, -97.16794328688249 48.56226337269187, -97.14661828686262 48.54953737268002, -97.1604352868755 48.545078372675874, -97.15553728687092 48.53839837266965, -97.13938528685588 48.534648372666155, -97.14832728686422 48.51795137265061, -97.13459428685142 48.51731437265001, -97.14361328685983 48.43810937257625, -97.1196332868375 48.43710237257531, -97.12260128684025 48.416110372555764, -97.1516472868673 48.41961237255902, -97.14982328686561 48.40999137255006, -97.12912428684633 48.4078853725481, -97.15881928687399 48.38820637252977, -97.135205286852 48.38441037252623, -97.13378628685068 48.3724543725151, -97.15039628686614 48.3632153725065, -97.1311232868482 48.361491372504894, -97.13713628685379 48.32599137247183, -97.11259128683093 48.319926372466185, -97.1326342868496 48.31096937245784, -97.11475128683294 48.303618372451, -97.11372128683199 48.294882372442856, -97.13051328684763 48.29304037244114, -97.11268328683101 48.286147372434726, -97.11171428683012 48.277876372427016, -97.13665528685334 48.264483372414546, -97.12378428684136 48.259173372409606, -97.12755428684487 48.23352337238571, -97.10923528682781 48.22804937238061, -97.13975428685623 48.22175537237475, -97.11089928682935 48.20760537236157, -97.13082828684792 48.20374237235798, -97.13727528685392 48.19506337234989, -97.13629128685301 48.17522737233142, -97.13744328685408 48.16776937232447, -97.11606528683417 48.15922337231652, -97.13651328685322 48.14839837230643, -97.12091828683869 48.1427743723012, -97.12187328683957 48.11636937227661, -97.0990302868183 48.10097237226226, -97.09272128681243 48.07034437223374, -97.06707128678855 48.04816437221308, -97.04805328677082 47.95492437212624, -97.01533128674035 47.917890372091755, -97.02056628674522 47.87556937205234, -97.0003402867264 47.87019737204734, -96.97723128670486 47.82802937200807, -96.98389328671108 47.809661371990956, -96.9578302866868 47.79444037197678, -96.93201228666275 47.763506371947976, -96.92365928665498 47.71409437190196, -96.8894252866231 47.67392537186454, -96.87333528660811 47.61525537180991, -96.85221728658844 47.601151371796774, -96.85866428659445 47.56297837176122, -96.84918828658562 47.54456837174408, -96.86068728659633 47.521356371722455, -96.85161528658789 47.50061937170314, -96.86668428660191 47.46153737166674, -96.8558272865918 47.43675337164366, -96.86724828660245 47.41308737162162, -96.85000528658638 47.408936371617756, -96.8398272865769 47.38411737159464, -96.85063128658696 47.36095437157307, -96.83846128657564 47.34224337155564, -96.84674728658335 47.3146023715299, -96.83771428657494 47.2938843715106, -96.84962328658602 47.25684337147611, -96.83706528657433 47.240458371460846, -96.82649128656448 47.17006337139529, -96.83916428657629 47.15188637137836, -96.81915128655764 47.09260437132315, -96.82696428656492 47.07883237131033, -96.82260828656086 47.033932371268506, -96.83529628657269 47.010231371246434, -96.82453128656266 47.003436371240106, -96.81677228655543 46.96977937120876, -96.79342528653369 46.96964137120863, -96.80188728654157 46.95584337119578, -96.78971028653022 46.948202371188664, -96.78792528652856 46.93218437117375, -96.76306828650542 46.936261371177544, -96.75691128649969 46.92278037116499, -96.77806128651937 46.86734937111336, -96.76825028651024 46.84486137109242, -96.7971972865372 46.812033371061844, -96.78038228652154 46.76231237101554, -96.78155628652263 46.70704437096407, -96.79369528653393 46.67880437093777, -96.79024628653073 46.6297733708921, -96.78431728652521 46.624112370886834, -96.77104128651284 46.59998337086436, -96.75122728649438 46.58861937085378, -96.74031628648423 46.4894323707614, -96.71489428646055 46.46871837074211, -96.70968228645569 46.42716837070341, -96.68822828643572 46.41221837068949, -96.65210128640207 46.35943337064033, -96.61486128636739 46.3508123706323, -96.60207428635547 46.33632437061881, -96.59818328635185 46.23868237052787, -96.58645628634093 46.2154133705062, -96.58789028634227 46.191918370484316, -96.57116628632669 46.17717437047059, -96.55193128630877 46.09552937039455, -96.57621528633139 46.0212793703254, -96.56180228631797 45.947683370256854, -96.56692128632274 45.93411037024421, -97.23331028694336 45.936502370246444, -97.97872228763758 45.93082237024116, -98.0147092876711 45.93149837024178, -98.73043728833767 45.93827137024809))) +SD South Dakota MULTIPOLYGON (((-102.78838429211693 42.99530336750724, -103.00587529231949 42.99935436751102, -103.50146429278104 42.99861836751033, -104.05619929329767 43.00306236751447, -104.05915729330043 43.47913436795784, -104.05791429329928 43.50371236798073, -104.05947929330073 43.852906368305945, -104.05973129330096 44.14582536857875, -104.06103629330218 44.18182536861227, -104.05946529330072 44.57435236897784, -104.05984229330106 44.99733636937178, -104.04307229328545 44.997805369372216, -104.04385129328617 45.212875369572515, -104.04951729329144 45.883052370196665, -104.04890629329088 45.942993370252495, -102.99482329230919 45.94111537025074, -102.9463972922641 45.94166537025126, -102.00277529138528 45.942505370252036, -100.51440628999912 45.94038837025006, -99.87578328940435 45.94354737025301, -99.7173452892568 45.94276137025227, -99.00683328859509 45.93955537024929, -98.73043728833767 45.93827137024809, -98.0147092876711 45.93149837024178, -97.97872228763758 45.93082237024116, -97.23331028694336 45.936502370246444, -96.56692128632274 45.93411037024421, -96.58795528634232 45.81785437013595, -96.60461028635784 45.80826437012701, -96.65739128640699 45.738970370062475, -96.83279628657036 45.65068736998026, -96.85499028659102 45.609122369941545, -96.84308728657994 45.584090369918236, -96.76924628651116 45.5174783698562, -96.7380322864821 45.45819536980099, -96.69316928644032 45.4106383697567, -96.60508428635828 45.39652436974355, -96.53254928629073 45.37513236972363, -96.47759228623954 45.328509369680205, -96.45760228622093 45.298850369652584, -96.45449628621803 45.27519536963055, -96.4560802862195 44.97199436934818, -96.45521728621871 44.801347369189244, -96.45671828622011 44.62880836902856, -96.45510628621861 44.53834336894431, -96.45739728622074 44.19906136862833, -96.45660228621999 43.848741368302065, -96.46045428622358 43.49971836797701, -96.59831528635198 43.499849367977134, -96.58379628633845 43.48192036796044, -96.5891132863434 43.435539367917244, -96.55770828631415 43.40072736788482, -96.52505328628375 43.38422536786945, -96.52289428628174 43.356966367844066, -96.5405632862982 43.307659367798145, -96.5791312863341 43.29007436778177, -96.57072228632627 43.26361236775712, -96.5595672863159 43.25326336774748, -96.5669912863228 43.23963336773479, -96.558605286315 43.22548936772162, -96.48724528624854 43.217909367714554, -96.47311428623537 43.20908236770634, -96.45150528621525 43.12630836762925, -96.46080528622392 43.08787236759345, -96.46209428622511 43.075582367582, -96.47957328624139 43.06188436756925, -96.52001028627905 43.051508367559585, -96.4990202862595 43.01205036752283, -96.51714828627638 42.986458367499, -96.51493528627432 42.952382367467266, -96.54426328630164 42.913866367431396, -96.53751128629536 42.896906367415596, -96.55621128631276 42.846660367368806, -96.57312628632852 42.83434736735734, -96.58764528634204 42.8353813673583, -96.60087528635437 42.799558367324934, -96.63298028638427 42.776835367303775, -96.64070928639146 42.74860336727748, -96.62654028637826 42.70835436724, -96.56303928631912 42.66851336720289, -96.54116528629875 42.66240536719721, -96.51284428627237 42.629755367166794, -96.48849828624971 42.580480367120906, -96.50094228626129 42.57388536711476, -96.48933728625049 42.56402836710558, -96.48024328624201 42.51713036706191, -96.43939428620396 42.48924036703593, -96.49470128625548 42.488459367035205, -96.5472152863044 42.52049936706504, -96.58475328633935 42.51828736706298, -96.60546728635863 42.50723636705269, -96.62929428638083 42.52269336706709, -96.6366722863877 42.5507313670932, -96.71405928645977 42.61230236715054, -96.7152732864609 42.62190736715949, -96.69459628644165 42.64116336717742, -96.6990602864458 42.657715367192836, -96.72265828646778 42.66859236720296, -96.7993442865392 42.67001936720429, -96.81043728654953 42.68134136721484, -96.81014028654926 42.70408436723602, -96.9082342866406 42.73169936726174, -96.97077328669886 42.721147367251916, -96.97786928670547 42.72730836725765, -96.97000328669814 42.75206536728071, -96.97959328670707 42.758313367286526, -97.01513928674018 42.759542367287665, -97.13046928684759 42.773923367301066, -97.16142228687642 42.798619367324065, -97.21183128692336 42.81257336733706, -97.2244432869351 42.84120236736372, -97.24318928695256 42.85182636737362, -97.27145728697889 42.85001436737193, -97.3114142870161 42.86177136738288, -97.38930628708864 42.86743336738815, -97.45726328715193 42.85044336737233, -97.48315928717605 42.857157367378576, -97.50613228719745 42.86013636738136, -97.57065428725754 42.847990367370045, -97.63497028731744 42.86128536738242, -97.68575228736474 42.83683736735966, -97.72525028740152 42.85800836737937, -97.77218628744522 42.846164367368345, -97.79702828746836 42.849597367371544, -97.8186432874885 42.86658736738737, -97.88865928755371 42.855807367377324, -97.88994128755489 42.831271367354475, -97.92947728759172 42.7923243673182, -97.96355828762346 42.773690367300844, -97.99514428765288 42.76681236729444, -98.03314028768825 42.769192367296654, -98.12182028777084 42.80836036733314, -98.12311728777206 42.820223367344184, -98.14486928779232 42.83579436735869, -98.1678262878137 42.839571367362204, -98.31033928794642 42.881794367401525, -98.39120428802174 42.92013536743723, -98.45744428808342 42.93716036745309, -98.49765128812088 42.991778367503954, -99.25397128882526 42.99238936750453, -99.53279028908491 42.992335367504474, -100.19814228970458 42.99109536750332, -101.23173729066718 42.98684336749936, -102.08670129146344 42.98988736750219, -102.78838429211693 42.99530336750724))) +WY Wyoming MULTIPOLYGON (((-104.05361529329527 41.69821836629923, -104.05550029329702 41.56422236617444, -104.05401229329564 41.3880853660104, -104.0517052932935 41.003211365651964, -104.93449329411565 40.99428936564365, -105.2787972944363 40.99634936564557, -106.20347129529748 41.00008536564905, -106.3291252954145 41.001289365650166, -106.86543829591398 40.99845736564753, -107.30405129632247 41.00013336564909, -107.91867129689489 41.00337536565211, -109.04831429794694 40.998433365647514, -110.00216529883528 40.997599365646735, -110.06318529889211 40.997892365647004, -111.0510222998121 40.99658336564579, -111.05165129981269 41.25842536588965, -111.05106829981216 41.57859236618782, -111.04869729980994 41.99620336657675, -111.04678029980816 42.50325236704899, -111.04921529981043 43.01988336753013, -111.04749829980882 43.28473436777679, -111.04677129980816 43.515528367991735, -111.05040529981153 43.98255336842669, -111.0515602998126 44.473323368883754, -111.05161629981266 44.664490369061795, -111.05342829981436 44.99569536937025, -110.42964929923342 44.992285369367075, -110.39276029919905 44.998625369372974, -109.99552929882911 45.00279336937686, -109.79938529864643 44.999522369373814, -108.62525629755294 44.99759336937201, -108.25923829721206 45.00011536937437, -107.89437429687226 44.99977336937405, -106.25923129534941 44.99616236937068, -106.02115029512768 44.997213369371664, -105.08500329425583 44.999817369374085, -105.04179629421559 45.00107636937526, -104.05984229330106 44.99733636937178, -104.05946529330072 44.57435236897784, -104.06103629330218 44.18182536861227, -104.05973129330096 44.14582536857875, -104.05947929330073 43.852906368305945, -104.05791429329928 43.50371236798073, -104.05915729330043 43.47913436795784, -104.05619929329767 43.00306236751447, -104.05621929329769 42.61466936715274, -104.05351329329517 41.99981536658012, -104.05361529329527 41.69821836629923))) +WI Wisconsin MULTIPOLYGON (((-87.74855527810999 44.961616369338515, -87.83999227819515 44.92732336930658, -87.8310202781868 44.8733463692563, -87.98579127833094 44.72047436911393, -87.98318227832851 44.67726536907369, -88.01328827835654 44.63911836903816, -87.97575827832159 44.595814368997836, -88.0130212783563 44.622234369022436, -88.04041727838181 44.57144936897514, -87.96622827831271 44.53549636894166, -87.92640827827563 44.539139368945044, -87.86878227822197 44.61690636901747, -87.7642262781246 44.64404836904275, -87.72382127808696 44.68928736908488, -87.6144642779851 44.833047369218775, -87.55278727792768 44.851335369235805, -87.55167227792663 44.82302336920944, -87.4337472778168 44.89109636927283, -87.36745927775507 44.81156736919877, -87.31446527770572 44.79471836918307, -87.37307027776029 44.67691836907336, -87.47352827785386 44.533946368940214, -87.53748927791342 44.32785136874827, -87.51732227789465 44.17575436860662, -87.64437027801297 44.09783036853405, -87.72612227808911 43.893904368344124, -87.70273027806732 43.673176368138556, -87.78604527814491 43.54629736802039, -87.80295927816066 43.458714367938825, -87.87533227822807 43.358592367845574, -87.88983427824157 43.19721636769529, -87.86006927821386 43.07587536758228, -87.89198327824357 43.02577436753562, -87.83643827819185 42.96459236747864, -87.81984927817639 42.84156336736406, -87.75680327811767 42.77754636730444, -87.79150927815 42.66664236720115, -87.79738227815547 42.48915236703585, -88.19479027852559 42.489631367036296, -88.2979892786217 42.49198836703849, -88.70662327900227 42.48967136703634, -88.76505827905669 42.4909223670375, -88.93918727921886 42.49087936703746, -89.35955927961037 42.49791736704401, -89.4006132796486 42.49750236704362, -89.8347392800529 42.50346836704918, -89.92369128013574 42.504115367049785, -90.42010328059807 42.50836536705374, -90.63845628080142 42.509363367054675, -90.62570728078956 42.52856236707255, -90.63921928080214 42.55571436709784, -90.66438028082557 42.57139136711244, -90.69479128085389 42.63792836717441, -90.74561028090122 42.65700136719217, -90.89254528103807 42.678240367211956, -90.91940928106308 42.68067736721422, -90.99918228113738 42.70705836723879, -91.06616828119977 42.744913367274044, -91.08203028121454 42.783365367309855, -91.09342828122514 42.871440367391884, -91.1391212812677 42.9258933674426, -91.1522142812799 43.00131636751284, -91.15975228128691 43.08118236758722, -91.16857128129513 43.08288836758881, -91.16135428128841 43.14757636764905, -91.06905228120245 43.2578983677518, -91.0664282812 43.28068336777302, -91.07849828121125 43.31329736780339, -91.17704828130303 43.35394636784125, -91.19824328132277 43.37051336785668, -91.21091628133458 43.42405136790654, -91.23590328135784 43.464684367944386, -91.22356628134635 43.500808367978024, -91.24055828136218 43.54871236802264, -91.23299028135513 43.59889036806938, -91.25838928137878 43.67732236814242, -91.25891628137927 43.722395368184394, -91.251105281372 43.788075368245565, -91.29194828141004 43.847190368300616, -91.37335728148585 43.94719136839375, -91.42590228153479 43.98561936842954, -91.52842028163028 44.034215368474804, -91.56916228166821 44.034955368475494, -91.6017862816986 44.04082236848096, -91.65223328174558 44.066895368505236, -91.75321928183963 44.137227368570734, -91.84874428192859 44.191187368620994, -91.8886942819658 44.25749536868275, -91.92234928199714 44.28834136871147, -91.92275428199753 44.31752036873865, -91.93886828201254 44.33911136875876, -91.97238628204374 44.36448736878239, -92.09133328215452 44.415589368829984, -92.20613728226144 44.43839436885122, -92.24910028230146 44.45621636886782, -92.29668728234577 44.49218236890132, -92.32047828236793 44.540491368946306, -92.34087228238693 44.5528353689578, -92.5092152825437 44.575159368978596, -92.60897328263661 44.61029236901132, -92.63036728265654 44.64265236904146, -92.73714528275598 44.713594369107525, -92.80558428281972 44.746160369137854, -92.76102828277823 44.83537136922094, -92.76426328278124 44.862234369245954, -92.77187128278833 44.899496369280655, -92.75392628277162 44.915002369295095, -92.74976828276773 44.93565536931433, -92.7671262827839 45.00100536937519, -92.76299128278005 45.02211936939486, -92.7967622828115 45.06561036943536, -92.74542228276368 45.1130043694795, -92.74493528276324 45.15642236951994, -92.76258328277967 45.18661236954806, -92.755419282773 45.21237636957205, -92.74659328276478 45.297603369651426, -92.70738428272827 45.318201369670604, -92.6848692827073 45.3630763697124, -92.64875128267366 45.395466369742564, -92.64497528267015 45.43945236978353, -92.6548172826793 45.45522136979822, -92.68542128270781 45.470053369812035, -92.72815428274761 45.54724236988392, -92.7621752827793 45.56426336989977, -92.83503728284715 45.56340236989897, -92.87683128288607 45.57883636991335, -92.88539728289405 45.64495536997492, -92.86001928287041 45.71056237003602, -92.83363628284584 45.73089037005495, -92.77910728279507 45.763340370085174, -92.7487622827668 45.837302370154056, -92.73409728275314 45.84498037016121, -92.7062402827272 45.89095837020403, -92.66620828268992 45.91570337022708, -92.55267228258418 45.9512693702602, -92.52397728255745 45.98258337028936, -92.46234528250005 45.98119737028807, -92.42499928246528 46.02550437032933, -92.36496328240936 46.01624837032071, -92.34622528239191 46.022596370326625, -92.32737228237436 46.056878370358554, -92.28937028233896 46.07323137037378, -92.28894428233856 46.15660037045143, -92.28868528233832 46.415984370692996, -92.287271282337 46.658786370919124, -92.20915428226425 46.64687237090803, -92.09597028215885 46.74262737099721, -92.00415728207334 46.68380037094242, -91.92146128199632 46.680134370939, -91.55577328165575 46.75686037101046, -90.86173028100937 46.95247937119265, -90.77448628092812 46.92023537116262, -90.77744528093086 46.88312237112805, -90.92624428106944 46.58550337085087, -90.73071428088734 46.64569637090693, -90.54087728071055 46.58752637085276, -90.40820028058698 46.568610370835145, -90.38552528056586 46.53965737080817, -90.31370828049899 46.55156337081927, -90.30239328048845 46.544296370812496, -90.30018128048638 46.52505137079457, -90.26978528045808 46.52248037079218, -90.25840128044747 46.508789370779425, -90.21152628040382 46.50629537077711, -90.16139128035712 46.44238037071758, -90.14179728033888 46.39389937067243, -90.11517728031409 46.36515537064566, -90.1116592803108 46.34042937062263, -89.9251362801371 46.30402537058873, -89.09980627936845 46.14564237044122, -88.9853012792618 46.10039137039908, -88.92519527920582 46.07360137037413, -88.80439727909332 46.026804370330545, -88.79381527908347 46.036360370339445, -88.77748027906826 46.032614370335956, -88.7730172790641 46.02114737032528, -88.72640927902069 46.02958137033313, -88.70360527899946 46.01892337032321, -88.67738427897504 46.020144370324346, -88.64366927894363 45.99338837029943, -88.6155022789174 45.99412037030011, -88.59753627890068 46.01551637032003, -88.57535727888002 46.008959370313924, -88.54835827885486 46.019300370323556, -88.51561327882438 46.01860937032291, -88.49408327880433 46.01296037031766, -88.48381427879475 45.99915137030479, -88.45431927876729 46.00076037030629, -88.40352227871998 45.98342237029014, -88.3699382786887 45.994587370300536, -88.32132327864343 45.96671237027458, -88.29915227862278 45.96194437027014, -88.25716827858368 45.9670553702749, -88.2149922785444 45.94790137025706, -88.18019427851199 45.95351637026229, -88.15043827848427 45.93629337024625, -88.11139027844791 45.926287370236935, -88.09385027843157 45.920615370231644, -88.09576427843336 45.89180337020481, -88.0654212784051 45.8736423701879, -88.12178627845759 45.8348783701518, -88.12994927846519 45.81940237013738, -88.08873427842681 45.791532370111426, -88.05163927839226 45.78611237010638, -87.99007027833493 45.795046370114704, -87.96917927831547 45.76644837008807, -87.87362927822647 45.750699370073406, -87.84236227819736 45.722418370047066, -87.80155327815935 45.71139137003679, -87.80115627815898 45.70132437002742, -87.77747327813692 45.684101370011376, -87.78094527814017 45.67591537000375, -87.81705427817379 45.66539036999395, -87.81993827817648 45.65445036998376, -87.7760452781356 45.613200369945346, -87.7750752781347 45.600387369933415, -87.78631227814516 45.56851936990373, -87.82860227818455 45.5685913699038, -87.8051412781627 45.544525369881384, -87.78938527814802 45.499067369839054, -87.81361427817059 45.466460369808686, -87.86026727821404 45.44509836978879, -87.84953127820404 45.40611736975249, -87.88361027823578 45.36585436971499, -87.8739742782268 45.36208536971148, -87.86853527822174 45.37207236972078, -87.86209627821574 45.370165369719004, -87.84128227819636 45.34614936969663, -87.82800827818399 45.35832136970797, -87.76003827812069 45.352897369702916, -87.68959827805509 45.39126936973865, -87.64368427801233 45.36185636971126, -87.64536227801389 45.34816936969852, -87.70447127806894 45.27220536962777, -87.70514227806956 45.247086369604375, -87.71966827808309 45.23677136959477, -87.72162827808492 45.211672369571396, -87.7362002780985 45.19907236955966, -87.7296692780924 45.17660436953874, -87.67281427803945 45.14067236950527, -87.66488627803207 45.10905436947583, -87.5812762779542 45.0946403694624, -87.61852127798889 45.05680736942716, -87.62033527799058 44.99199736936681, -87.74855527810999 44.961616369338515)), ((-87.034524277445 45.290405369644716, -86.98625327740005 45.2986573696524, -86.96771227738277 45.24027736959803, -86.99573427740887 45.218411369577666, -87.04511227745486 45.249019369606174, -87.02544827743655 45.149974369513934, -87.07987627748724 45.14730736951145, -87.04490127745467 45.09551336946321, -87.0876782774945 45.09217836946011, -87.08390027749098 45.05328536942389, -87.11255727751768 45.06476336943457, -87.17869227757927 44.982806369358244, -87.16878827757004 44.93332336931216, -87.20565027760438 44.873239369256204, -87.3111232777026 44.79877336918685, -87.37873727776558 44.83774236922314, -87.40541927779043 44.91120036929156, -87.3421612777315 45.01521336938843, -87.28348427767686 45.05261936942327, -87.2309152776279 45.1750633695373, -87.17791327757854 45.154973369518586, -87.06606427747438 45.29646236965036, -87.034524277445 45.290405369644716))) +ID Idaho MULTIPOLYGON (((-117.02629530537702 43.67903136814401, -117.02379430537468 43.753701368213555, -117.0371173053871 43.8001423682568, -117.02762630537825 43.83156736828607, -117.0105053053623 43.83976936829371, -117.01622030536763 43.852972368306006, -116.98577030533927 43.85935136831195, -116.97814830533218 43.8734693683251, -116.97814130533217 43.90444136835394, -116.95971630531501 43.92857736837642, -116.96795730532268 43.96319536840866, -116.93359330529069 44.01420236845617, -116.97681730533094 44.07389436851176, -116.96344330531849 44.09029836852703, -116.94688630530305 44.093025368529574, -116.9022543052615 44.1463133685792, -116.91305130527155 44.17730436860806, -116.98187130533564 44.19784236862719, -116.9761273053303 44.22518236865265, -116.99270730534573 44.24706336867303, -117.0303523053808 44.249336368675145, -117.05202730540098 44.23155636865859, -117.08138730542832 44.243846368670035, -117.10056030544618 44.26707836869167, -117.11269230545747 44.26980536869421, -117.14327930548598 44.25063236867636, -117.17072330551153 44.25333236867887, -117.21357230555142 44.2847193687081, -117.21745530555505 44.30066536872295, -117.20160230554029 44.33943836875906, -117.23692130557318 44.38998236880613, -117.21722130555483 44.427855368841406, -117.22441030556152 44.47298736888344, -117.20396230554249 44.485785368895364, -117.18739130552706 44.511805368919596, -117.14516030548772 44.534655368940875, -117.14394030548658 44.55928736896381, -117.13050430547406 44.572523368976135, -117.07935430542643 44.68933636908493, -117.06651330541447 44.697557369092586, -117.03957230538938 44.749115369140604, -116.95149430530736 44.776035369165676, -116.90962030526836 44.82894036921495, -116.89736730525695 44.84855536923321, -116.86707630522874 44.86860836925189, -116.83539630519923 44.92014436929989, -116.84755630521056 44.954850369332206, -116.83139630519551 44.97263336934877, -116.84815930521111 44.97174136934794, -116.85588730521832 44.9799653693556, -116.84809730521106 45.0000423693743, -116.85451330521704 45.016945369390044, -116.80730730517307 45.049755369420595, -116.78721030515436 45.075752369444814, -116.77809230514586 45.0994803694669, -116.76126830513019 45.10630036947326, -116.73658530510721 45.13730736950214, -116.68881330506271 45.26235036961859, -116.6722653050473 45.335410369686635, -116.56577230494813 45.45986336980254, -116.55450330493763 45.49364736983401, -116.4785513048669 45.56605836990144, -116.47041830485932 45.60625736993888, -116.51491530490075 45.664491369993115, -116.5282753049132 45.71072837003618, -116.56063230494334 45.74742437007035, -116.65439830503067 45.78063037010128, -116.7031803050761 45.819169370137175, -116.77370730514178 45.81976337013772, -116.79126230515813 45.84586737016203, -116.85647230521886 45.9035973702158, -116.89819730525772 45.98051637028743, -116.91913230527722 45.995175370301084, -116.95772330531315 46.06568737036676, -116.98721130534062 46.0785093703787, -116.9616373053168 46.09727437039618, -116.9294263052868 46.1654833704597, -116.96749030532226 46.19755437048957, -116.97272530532712 46.24930937053777, -117.00164230535405 46.30244837058726, -117.02797330537858 46.33542737061797, -117.06418430541231 46.34869837063033, -117.04447030539394 46.38857437066747, -117.03855830538843 46.42798037070417, -117.04192630539157 46.53660137080533, -117.04096830539069 47.11931937134803, -117.04239230539201 47.25850137147765, -117.04179430539145 47.36144137157352, -117.03747230538742 47.9710923721413, -117.03886830538872 48.04618637221124, -117.02911130537964 48.838075372948744, -117.03204930538237 48.999931373099486, -116.06353130448036 48.9999503730995, -116.05669230447401 48.498665372632644, -116.0554973044729 48.208483372362394, -116.05349230447102 47.976191372146054, -116.02531630444479 47.964939372135575, -115.99893230442021 47.92514037209851, -115.93784230436331 47.86712437204447, -115.90392130433173 47.841074372020216, -115.86980930429996 47.82745237200753, -115.84932430428088 47.80518237198679, -115.83674230426917 47.75628137194124, -115.79053730422612 47.744838371930584, -115.77572730421232 47.70973237189789, -115.73366530417316 47.69555437188469, -115.73406730417354 47.63987937183283, -115.6982843041402 47.616080371810675, -115.69208830413444 47.590721371787055, -115.7428293041817 47.533691371733944, -115.70152230414323 47.520893371722025, -115.69277030413508 47.489540371692826, -115.64014230408605 47.4752353716795, -115.64318530408889 47.45779337166326, -115.65608730410091 47.44918037165523, -115.73248130417207 47.445303371651626, -115.75010530418848 47.43396637164106, -115.75032630418868 47.42247537163037, -115.66647730411059 47.399167371608655, -115.6387823040848 47.38004437159085, -115.59953630404824 47.3700033715815, -115.55552030400725 47.33461337154854, -115.52306430397702 47.29198237150884, -115.50193030395735 47.281644371499205, -115.42664130388722 47.274374371492435, -115.40820730387006 47.26359337148239, -115.34366130380994 47.25502237147441, -115.32522830379278 47.245150371465215, -115.29623430376577 47.17955037140412, -115.1930733036697 47.124026371352414, -115.17249630365053 47.09757037132778, -115.14868430362836 47.09174237132235, -115.13550730361608 47.06355037129609, -115.08133630356564 47.02652437126161, -115.0556383035417 46.97335837121209, -115.03733430352466 46.963001371202445, -115.00157430349134 46.95880937119854, -114.96473030345703 46.92521337116725, -114.92412530341922 46.90716537115044, -114.94056630343454 46.89088837113529, -114.94840930344184 46.85244637109949, -114.90232530339892 46.799433371050114, -114.86660330336565 46.797045371047886, -114.8407923033416 46.77553837102786, -114.79403030329806 46.76653137101947, -114.77783230328296 46.755717371009396, -114.78291930328771 46.70304037096034, -114.74810530325529 46.695132370952976, -114.69843130320902 46.733760370988946, -114.67388730318616 46.734721370989845, -114.6259263031415 46.6871073709455, -114.6450383031593 46.67092137093043, -114.64474030315901 46.66082437092102, -114.61082630312744 46.629048370891425, -114.54039130306184 46.637891370899666, -114.48471830301 46.62357437088633, -114.44153630296978 46.645715370906956, -114.3840173029162 46.66159637092174, -114.33468530287027 46.65422737091488, -114.32471230286097 46.62283937088564, -114.3433193028783 46.58788137085309, -114.35011530288463 46.51738937078744, -114.36046830289428 46.50612537077694, -114.41071530294107 46.48737137075948, -114.38402530291621 46.428179370704356, -114.3970173029283 46.399545370677686, -114.40979630294021 46.39291137067151, -114.4317953029607 46.28471137057074, -114.47379530299982 46.25296137054117, -114.47283330299892 46.243783370532626, -114.43955330296792 46.22025437051071, -114.44087930296917 46.168969370462946, -114.4670183029935 46.15526237045018, -114.50961330303318 46.15741737045219, -114.51894430304186 46.136063370432296, -114.50656830303033 46.11614237041375, -114.47737030300314 46.107357370405566, -114.45602930298327 46.082229370382166, -114.46575630299233 46.05081537035291, -114.49432130301894 46.02341037032738, -114.47452930300051 46.009765370314675, -114.48445530300975 45.98980637029609, -114.41244730294268 45.97197337027948, -114.40529030293601 45.95397937026272, -114.42946030295852 45.92147737023245, -114.41353030294368 45.91065137022237, -114.39283830292442 45.87088637018533, -114.4075253029381 45.84645337016258, -114.44323130297136 45.85262137016832, -114.47380330299983 45.83946837015607, -114.49916430302343 45.842683370159065, -114.51737530304041 45.81006737012869, -114.56354230308341 45.7623983700843, -114.5419583030633 45.74599937006903, -114.5349763030568 45.7229963700476, -114.49756130302194 45.69440137002097, -114.5107063030342 45.674057370002025, -114.50174130302585 45.65239336998185, -114.56467830308446 45.62427136995566, -114.54095830306237 45.5963973699297, -114.56092430308095 45.54874036988531, -114.52739230304974 45.55819336989411, -114.49659130302105 45.54664936988337, -114.46270830298948 45.54784736988448, -114.43355530296233 45.527633369865654, -114.41905130294883 45.499008369839, -114.3714573029045 45.485740369826644, -114.35024630288476 45.46338336980582, -114.32643430286257 45.457424369800265, -114.26223930280278 45.485859369826755, -114.24788030278941 45.502945369842664, -114.24199830278394 45.53529036987278, -114.19480830273999 45.52791736986592, -114.17266730271938 45.54392436988083, -114.13204830268154 45.55038236988685, -114.11813930266858 45.571127369906165, -114.08296730263582 45.58637836992037, -114.05651530261119 45.62514436995647, -114.01803230257535 45.64077336997103, -114.0109903025688 45.65251136998196, -114.01987830257707 45.67237837000046, -114.00947230256737 45.68633237001346, -113.97114930253169 45.69737637002374, -113.96414430252517 45.67937837000698, -113.9266983024903 45.67121136999937, -113.92353230248735 45.65512436998439, -113.90219930246748 45.63725336996775, -113.90330530246851 45.61349136994562, -113.85202730242075 45.609562369941955, -113.82248530239323 45.600636369933646, -113.8037543023758 45.583729369917904, -113.83371530240369 45.514908369853806, -113.78093330235454 45.51686536985562, -113.7723043023465 45.507054369846486, -113.76916830234359 45.47770736981916, -113.78566230235894 45.44563336978929, -113.77502630234903 45.41017236975626, -113.74131030231763 45.38238636973038, -113.73908030231556 45.32153036967371, -113.68870930226865 45.27778836963297, -113.69012030226996 45.26228136961853, -113.6455923022285 45.206790369566846, -113.6009283021869 45.18099236954282, -113.59409930218054 45.14974236951372, -113.57158430215956 45.13454536949956, -113.57437630216216 45.117711369483885, -113.55227230214157 45.10754936947443, -113.51022530210243 45.107835369474685, -113.52060930211209 45.08206336945069, -113.49015930208374 45.071219369440584, -113.48630530208014 45.058321369428576, -113.4554353020514 45.04334936941463, -113.45885330205458 45.02744936939982, -113.44102930203798 44.99819436937258, -113.44876530204519 44.94952236932725, -113.46341330205883 44.9407753693191, -113.48734830208112 44.93957436931798, -113.49619130208936 44.930670369309695, -113.4455733020422 44.851239369235714, -113.42137930201967 44.833699369219374, -113.35002430195323 44.80756836919504, -113.34063130194447 44.779000369168436, -113.31868030192403 44.78022836916958, -113.25715430186673 44.81048636919776, -113.24033830185107 44.81184136919902, -113.13827430175601 44.761439369152086, -113.12743130174591 44.73737936912967, -113.10170330172195 44.715173369108996, -113.0989563017194 44.69591636909106, -113.07314430169536 44.67552536907207, -113.0542893016778 44.62428936902435, -113.08303730170456 44.582681368985604, -113.03966030166417 44.55629436896103, -113.03782130166246 44.532959368939295, -113.00771330163442 44.51061236891848, -113.02030930164615 44.48177636889163, -113.00665830163344 44.45261536886447, -113.01201430163843 44.43771536885059, -112.98524930161349 44.435540368848564, -112.93828130156976 44.407192368822166, -112.88730730152228 44.3928523688088, -112.8707813015069 44.36997836878751, -112.84427530148221 44.35363936877229, -112.81739630145718 44.36420236878213, -112.8187103014584 44.394819368810644, -112.82669130146583 44.4210843688351, -112.79622830143747 44.45801136886949, -112.77986330142222 44.47392236888431, -112.73371230137924 44.48432036889399, -112.71432630136118 44.49693536890574, -112.65318930130424 44.48080236889072, -112.53932430119819 44.47749736888764, -112.50183930116329 44.462997368874134, -112.45851930112295 44.46883436887957, -112.42075330108777 44.44928436886136, -112.36758330103825 44.44927036886135, -112.3405773010131 44.49718036890597, -112.3425073010149 44.52510036893197, -112.28234130095886 44.54170236894744, -112.25667530093496 44.55997236896445, -112.2303983009105 44.559491368964004, -112.21776330089872 44.53849536894445, -112.19965830088186 44.531449368937885, -112.12419030081158 44.52825336893491, -112.09989730078895 44.518231368925576, -112.0593673007512 44.528611368935245, -112.02707730072113 44.52284336892987, -112.02361330071791 44.53504336894123, -111.97781830067525 44.52967636893624, -111.9403863006404 44.54972636895491, -111.87250230057717 44.556265368961, -111.80783730051695 44.503982368912304, -111.79260830050276 44.518462368925796, -111.76691830047884 44.51882536892613, -111.71699730043235 44.53376036894004, -111.68486230040241 44.55075236895587, -111.60524830032827 44.54298936894864, -111.56723130029286 44.55286636895784, -111.49024130022117 44.528697368935326, -111.48257330021403 44.53614336894226, -111.45932530019238 44.53792136894391, -111.46282730019563 44.549942368955115, -111.49290430022364 44.55118936895627, -111.51452630024379 44.59319736899539, -111.50174730023188 44.615971369016606, -111.50769030023741 44.63768836903683, -111.47016830020247 44.640710369039645, -111.45826530019139 44.652555369050674, -111.46069230019364 44.67002336906694, -111.48080430021237 44.691416369086866, -111.47542530020736 44.702162369096875, -111.44363230017775 44.71317936910714, -111.39508430013254 44.70886936910313, -111.38495930012311 44.73769436912997, -111.37230930011133 44.745087369136854, -111.34997730009053 44.72617736911924, -111.31922130006188 44.72786436912081, -111.3154753000584 44.7051933690997, -111.29566830003995 44.68293836907897, -111.27020830001624 44.673802369070465, -111.27066530001667 44.64221236904105, -111.22397129997319 44.62690836902679, -111.2197972999693 44.61798136901848, -111.23423329998273 44.60256236900412, -111.21950729996902 44.57317036897675, -111.17876429993107 44.564851368968995, -111.17024229992315 44.54518636895068, -111.13435929988972 44.52790236893458, -111.12891829988466 44.500757368909305, -111.09463029985272 44.48612436889567, -111.0515602998126 44.473323368883754, -111.05040529981153 43.98255336842669, -111.04677129980816 43.515528367991735, -111.04749829980882 43.28473436777679, -111.04921529981043 43.01988336753013, -111.04678029980816 42.50325236704899, -111.04869729980994 41.99620336657675, -111.49458630022521 42.000171366580446, -112.10051430078953 42.00230036658243, -112.14711630083293 41.999054366579415, -112.98957530161753 42.00114636658136, -114.03907230259495 41.995391366576, -114.26947130280954 41.995924366576496, -115.02486330351303 41.99650636657704, -115.94754430437234 41.99459936657526, -116.99231330534536 41.99479436657545, -117.0188643053701 41.99479436657545, -117.02629530537702 43.67903136814401))) +VT Vermont MULTIPOLYGON (((-73.25806026461467 42.74605836727511, -73.26927526462511 42.747481367276436, -73.29616926465016 42.80354936732866, -73.27958326463471 42.8371033673599, -73.27600526463138 42.940294367456005, -73.25007126460723 43.31085436780112, -73.23839126459634 43.512832367989226, -73.25998426461646 43.55938236803258, -73.29140226464573 43.57503336804716, -73.28173626463672 43.593187368064065, -73.29410426464824 43.619653368088706, -73.30353426465702 43.62471436809342, -73.36368526471304 43.61499836808437, -73.38811426473579 43.569143368041665, -73.41832026476392 43.582479368054095, -73.42296026476825 43.63211436810032, -73.37098926471984 43.71428136817684, -73.35666926470651 43.75655836821622, -73.35899726470868 43.77842736823658, -73.38474026473266 43.80450836826087, -73.37512126472369 43.88597736833674, -73.40533426475183 43.9148073683636, -73.41740626476307 43.98819736843194, -73.40825126475454 44.0182223684599, -73.43600026478039 44.04567936848548, -73.43521526477966 44.063897368502445, -73.40875726475501 44.10661036854222, -73.4078652647542 44.136227368569806, -73.38206226473015 44.17210736860322, -73.37733226472575 44.20124736863036, -73.30532526465869 44.26014236868521, -73.32978826468147 44.367390368785095, -73.29999526465373 44.40553336882061, -73.29331926464751 44.43285336884606, -73.33445226468581 44.54432836894988, -73.34781226469826 44.55397136895886, -73.37129626472013 44.579167368982326, -73.38182526472994 44.61980736902018, -73.37013626471905 44.63434936903372, -73.3730972647218 44.6612763690588, -73.35815126470789 44.680368369076575, -73.37315826472187 44.724236369117435, -73.32678626467867 44.79929336918734, -73.36905426471805 44.819118369205796, -73.38230626473039 44.847933369232635, -73.33641426468765 44.93260436931149, -73.350758264701 44.98197336935747, -73.34472326469538 45.006138369379975, -73.18854626454993 45.00848636938216, -72.54723126395265 45.005370369379264, -71.90186826335162 45.0073403693811, -71.50537226298235 45.0133513693867, -71.54092726301546 44.976563369352434, -71.51697726299317 44.94369636932182, -71.50636526298328 44.899671369280824, -71.57510126304729 44.81601936920291, -71.58350126305511 44.77919736916862, -71.63113326309947 44.741710369133706, -71.60767826307763 44.67786236907425, -71.58874926306 44.650599369048855, -71.5680272630407 44.6374463690366, -71.55410226302773 44.59658936899855, -71.53679126301161 44.57893136898211, -71.5922882630633 44.55120336895628, -71.5914412630625 44.5388743689448, -71.57524326304743 44.52580536893263, -71.58661926305801 44.49453736890351, -71.61422326308373 44.47450736888486, -71.63655426310453 44.47673136888693, -71.64770926311492 44.46917436887989, -71.656399263123 44.440137368852845, -71.67688426314209 44.42134236883534, -71.76657026322562 44.39824836881384, -71.79772926325462 44.384172368800726, -71.82119726327649 44.35036036876923, -71.83481626328917 44.3441993687635, -71.92836126337629 44.33611236875596, -71.9389052633861 44.32578636874635, -71.99443326343783 44.32754836874799, -72.03549526347607 44.299434368721805, -72.05956626349848 44.26149436868647, -72.04439026348435 44.23437936866122, -72.05928226349822 44.1821763686126, -72.04472426348467 44.15643536858863, -72.03492026347553 44.12074636855539, -72.04951526348913 44.100452368536494, -72.03244726347323 44.096099368532435, -72.03472826347536 44.08337436852058, -72.07691926351464 44.03204036847278, -72.08520426352236 44.00892436845125, -72.10990926354538 43.9892293684329, -72.11280826354808 43.97651536842106, -72.09171126352842 43.95799136840381, -72.11320426354844 43.93916636838628, -72.12164926355631 43.909217368358384, -72.17008926360141 43.878917368330164, -72.18483626361515 43.80169036825825, -72.20609226363494 43.764635368223736, -72.21912326364708 43.75069236821075, -72.2600552636852 43.73530036819642, -72.30404026372616 43.69853036816217, -72.33308526375322 43.59736436806796, -72.37349826379085 43.57237436804468, -72.39499826381088 43.517554367993625, -72.38251526379925 43.48462936796296, -72.39624826381204 43.410156367893606, -72.41213926382684 43.37712536786284, -72.39762826381333 43.351006367838515, -72.41023126382507 43.323404367812806, -72.40241926381779 43.307382367797885, -72.43559826384869 43.23225336772792, -72.45239826386434 43.15602236765692, -72.43760526385056 43.1162703676199, -72.44346426385601 43.079039367585224, -72.46175226387305 43.046504367554924, -72.45715926386877 42.99960336751124, -72.47334126388384 42.9761433674894, -72.50426326391263 42.965584367479565, -72.5202172639275 42.9516723674666, -72.52481026393178 42.91261436743023, -72.55342826395842 42.860643367381826, -72.53891726394491 42.80773336733255, -72.51306826392084 42.789259367315346, -72.50726926391545 42.768732367296224, -72.47932226388942 42.761588367289576, -72.46217126387344 42.74684036727584, -72.45577026386748 42.725852367256294, -72.92299726430262 42.73736436726702, -73.01969526439268 42.74039636726984, -73.25806026461467 42.74605836727511))) +MN Minnesota MULTIPOLYGON (((-91.73036628181835 43.49957136797688, -92.07753228214168 43.49915336797649, -92.45316928249152 43.499462367976776, -92.55800828258914 43.50025936797752, -93.02721128302613 43.501278367978465, -93.05438028305143 43.50145736797863, -93.50083028346722 43.50048836797773, -93.65369928360958 43.500762367977984, -93.97395028390784 43.50029836797755, -94.24678728416194 43.4989483679763, -94.45523828435608 43.498102367975505, -94.8598392847329 43.5000303679773, -94.92046428478936 43.49937136797669, -95.39655828523276 43.50033436797759, -95.46477528529628 43.499541367976846, -95.86691228567081 43.49894436797629, -96.0610392858516 43.49853336797591, -96.46045428622358 43.49971836797701, -96.45660228621999 43.848741368302065, -96.45739728622074 44.19906136862833, -96.45510628621861 44.53834336894431, -96.45671828622011 44.62880836902856, -96.45521728621871 44.801347369189244, -96.4560802862195 44.97199436934818, -96.45449628621803 45.27519536963055, -96.45760228622093 45.298850369652584, -96.47759228623954 45.328509369680205, -96.53254928629073 45.37513236972363, -96.60508428635828 45.39652436974355, -96.69316928644032 45.4106383697567, -96.7380322864821 45.45819536980099, -96.76924628651116 45.5174783698562, -96.84308728657994 45.584090369918236, -96.85499028659102 45.609122369941545, -96.83279628657036 45.65068736998026, -96.65739128640699 45.738970370062475, -96.60461028635784 45.80826437012701, -96.58795528634232 45.81785437013595, -96.56692128632274 45.93411037024421, -96.56180228631797 45.947683370256854, -96.57621528633139 46.0212793703254, -96.55193128630877 46.09552937039455, -96.57116628632669 46.17717437047059, -96.58789028634227 46.191918370484316, -96.58645628634093 46.2154133705062, -96.59818328635185 46.23868237052787, -96.60207428635547 46.33632437061881, -96.61486128636739 46.3508123706323, -96.65210128640207 46.35943337064033, -96.68822828643572 46.41221837068949, -96.70968228645569 46.42716837070341, -96.71489428646055 46.46871837074211, -96.74031628648423 46.4894323707614, -96.75122728649438 46.58861937085378, -96.77104128651284 46.59998337086436, -96.78431728652521 46.624112370886834, -96.79024628653073 46.6297733708921, -96.79369528653393 46.67880437093777, -96.78155628652263 46.70704437096407, -96.78038228652154 46.76231237101554, -96.7971972865372 46.812033371061844, -96.76825028651024 46.84486137109242, -96.77806128651937 46.86734937111336, -96.75691128649969 46.92278037116499, -96.76306828650542 46.936261371177544, -96.78792528652856 46.93218437117375, -96.78971028653022 46.948202371188664, -96.80188728654157 46.95584337119578, -96.79342528653369 46.96964137120863, -96.81677228655543 46.96977937120876, -96.82453128656266 47.003436371240106, -96.83529628657269 47.010231371246434, -96.82260828656086 47.033932371268506, -96.82696428656492 47.07883237131033, -96.81915128655764 47.09260437132315, -96.83916428657629 47.15188637137836, -96.82649128656448 47.17006337139529, -96.83706528657433 47.240458371460846, -96.84962328658602 47.25684337147611, -96.83771428657494 47.2938843715106, -96.84674728658335 47.3146023715299, -96.83846128657564 47.34224337155564, -96.85063128658696 47.36095437157307, -96.8398272865769 47.38411737159464, -96.85000528658638 47.408936371617756, -96.86724828660245 47.41308737162162, -96.8558272865918 47.43675337164366, -96.86668428660191 47.46153737166674, -96.85161528658789 47.50061937170314, -96.86068728659633 47.521356371722455, -96.84918828658562 47.54456837174408, -96.85866428659445 47.56297837176122, -96.85221728658844 47.601151371796774, -96.87333528660811 47.61525537180991, -96.8894252866231 47.67392537186454, -96.92365928665498 47.71409437190196, -96.93201228666275 47.763506371947976, -96.9578302866868 47.79444037197678, -96.98389328671108 47.809661371990956, -96.97723128670486 47.82802937200807, -97.0003402867264 47.87019737204734, -97.02056628674522 47.87556937205234, -97.01533128674035 47.917890372091755, -97.04805328677082 47.95492437212624, -97.06707128678855 48.04816437221308, -97.09272128681243 48.07034437223374, -97.0990302868183 48.10097237226226, -97.12187328683957 48.11636937227661, -97.12091828683869 48.1427743723012, -97.13651328685322 48.14839837230643, -97.11606528683417 48.15922337231652, -97.13744328685408 48.16776937232447, -97.13629128685301 48.17522737233142, -97.13727528685392 48.19506337234989, -97.13082828684792 48.20374237235798, -97.11089928682935 48.20760537236157, -97.13975428685623 48.22175537237475, -97.10923528682781 48.22804937238061, -97.12755428684487 48.23352337238571, -97.12378428684136 48.259173372409606, -97.13665528685334 48.264483372414546, -97.11171428683012 48.277876372427016, -97.11268328683101 48.286147372434726, -97.13051328684763 48.29304037244114, -97.11372128683199 48.294882372442856, -97.11475128683294 48.303618372451, -97.1326342868496 48.31096937245784, -97.11259128683093 48.319926372466185, -97.13713628685379 48.32599137247183, -97.1311232868482 48.361491372504894, -97.15039628686614 48.3632153725065, -97.13378628685068 48.3724543725151, -97.135205286852 48.38441037252623, -97.15881928687399 48.38820637252977, -97.12912428684633 48.4078853725481, -97.14982328686561 48.40999137255006, -97.1516472868673 48.41961237255902, -97.12260128684025 48.416110372555764, -97.1196332868375 48.43710237257531, -97.14361328685983 48.43810937257625, -97.13459428685142 48.51731437265001, -97.14832728686422 48.51795137265061, -97.13938528685588 48.534648372666155, -97.15553728687092 48.53839837266965, -97.1604352868755 48.545078372675874, -97.14661828686262 48.54953737268002, -97.16794328688249 48.56226337269187, -97.15212728686775 48.572856372701736, -97.1581922868734 48.583640372711784, -97.14081228685721 48.586905372714824, -97.14471828686085 48.61402437274008, -97.12295828684059 48.62076837274636, -97.12744428684476 48.62979437275477, -97.1076302868263 48.629946372754915, -97.09716928681657 48.67452937279643, -97.1167392868348 48.695243372815725, -97.11010128682861 48.708583372828144, -97.13480628685163 48.72623837284459, -97.13250228684947 48.747218372864126, -97.14789828686382 48.75565337287198, -97.13924628685575 48.76354237287933, -97.14751628686346 48.781170372895744, -97.17394428688807 48.801514372914696, -97.16471228687948 48.81036837292294, -97.1804222868941 48.81553737292775, -97.17120428688553 48.83598037294679, -97.17572728688974 48.87375737298198, -97.21636928692759 48.931830373036064, -97.22943628693976 48.999987373099536, -96.40691528617373 48.999982373099535, -95.27665728512109 48.99999137309954, -95.15775028501035 48.99999637309955, -95.15186728500487 49.37173037344575, -94.83203928470701 49.33080637340764, -94.68125028456657 48.87716137298514, -94.69443228457885 48.77761537289244, -94.57031228446326 48.71367637283289, -94.43063428433317 48.7107853728302, -94.29233728420436 48.70771137282733, -94.23082728414708 48.65198737277544, -93.84390428378673 48.62473737275006, -93.81268528375766 48.52540837265755, -93.78110628372825 48.51159037264468, -93.51413928347961 48.534271372665806, -93.46533928343416 48.54952037268001, -93.45776928342711 48.592710372720234, -93.30423628328413 48.637163372761634, -93.09144228308595 48.62658437275178, -92.94692628295135 48.62835537275343, -92.7290002827484 48.54021137267134, -92.6418202826672 48.54034937267147, -92.62638028265282 48.50282437263652, -92.69882128272029 48.49472137262897, -92.70664328272757 48.460370372596984, -92.49752928253282 48.44007237257807, -92.45634528249447 48.40216937254277, -92.47332228251028 48.357499372501174, -92.37011628241416 48.22077937237384, -92.27691828232736 48.24434037239578, -92.30027228234911 48.29831137244605, -92.27613128232663 48.35231937249635, -92.12596228218678 48.3667563725098, -92.03518328210222 48.355508372499315, -91.9795342820504 48.25039837240143, -91.78881528187279 48.20614537236021, -91.71193828180118 48.19677537235149, -91.70373128179354 48.11483537227518, -91.56877528166785 48.104457372265514, -91.57156228167045 48.0435713722088, -91.23944628136114 48.08129837224394, -91.02714828116342 48.19533937235015, -90.86449528101194 48.25419837240497, -90.74336528089913 48.088443372250595, -90.5674552807353 48.12169937228157, -90.55683528072541 48.092750372254606, -90.1452702803421 48.11277037227325, -90.02670028023168 48.08607937224839, -89.98702028019473 48.023556372190164, -89.90038928011404 47.99250537216125, -89.74931027997334 48.0264843721929, -89.53067327976972 48.00165637216977, -89.62564527985818 47.9925613721613, -89.63637327986817 47.95939037213041, -89.99967728020651 47.82456437200484, -90.50963328068146 47.70993837189809, -91.02147528115815 47.4610583716663, -91.46865728157461 47.12493537135326, -91.8009692818841 46.927086371169, -92.08849228215188 46.79189737104309, -92.21462428226934 46.668204370927896, -92.30314828235178 46.66657537092638, -92.287271282337 46.658786370919124, -92.28868528233832 46.415984370692996, -92.28894428233856 46.15660037045143, -92.28937028233896 46.07323137037378, -92.32737228237436 46.056878370358554, -92.34622528239191 46.022596370326625, -92.36496328240936 46.01624837032071, -92.42499928246528 46.02550437032933, -92.46234528250005 45.98119737028807, -92.52397728255745 45.98258337028936, -92.55267228258418 45.9512693702602, -92.66620828268992 45.91570337022708, -92.7062402827272 45.89095837020403, -92.73409728275314 45.84498037016121, -92.7487622827668 45.837302370154056, -92.77910728279507 45.763340370085174, -92.83363628284584 45.73089037005495, -92.86001928287041 45.71056237003602, -92.88539728289405 45.64495536997492, -92.87683128288607 45.57883636991335, -92.83503728284715 45.56340236989897, -92.7621752827793 45.56426336989977, -92.72815428274761 45.54724236988392, -92.68542128270781 45.470053369812035, -92.6548172826793 45.45522136979822, -92.64497528267015 45.43945236978353, -92.64875128267366 45.395466369742564, -92.6848692827073 45.3630763697124, -92.70738428272827 45.318201369670604, -92.74659328276478 45.297603369651426, -92.755419282773 45.21237636957205, -92.76258328277967 45.18661236954806, -92.74493528276324 45.15642236951994, -92.74542228276368 45.1130043694795, -92.7967622828115 45.06561036943536, -92.76299128278005 45.02211936939486, -92.7671262827839 45.00100536937519, -92.74976828276773 44.93565536931433, -92.75392628277162 44.915002369295095, -92.77187128278833 44.899496369280655, -92.76426328278124 44.862234369245954, -92.76102828277823 44.83537136922094, -92.80558428281972 44.746160369137854, -92.73714528275598 44.713594369107525, -92.63036728265654 44.64265236904146, -92.60897328263661 44.61029236901132, -92.5092152825437 44.575159368978596, -92.34087228238693 44.5528353689578, -92.32047828236793 44.540491368946306, -92.29668728234577 44.49218236890132, -92.24910028230146 44.45621636886782, -92.20613728226144 44.43839436885122, -92.09133328215452 44.415589368829984, -91.97238628204374 44.36448736878239, -91.93886828201254 44.33911136875876, -91.92275428199753 44.31752036873865, -91.92234928199714 44.28834136871147, -91.8886942819658 44.25749536868275, -91.84874428192859 44.191187368620994, -91.75321928183963 44.137227368570734, -91.65223328174558 44.066895368505236, -91.6017862816986 44.04082236848096, -91.56916228166821 44.034955368475494, -91.52842028163028 44.034215368474804, -91.42590228153479 43.98561936842954, -91.37335728148585 43.94719136839375, -91.29194828141004 43.847190368300616, -91.251105281372 43.788075368245565, -91.25891628137927 43.722395368184394, -91.25838928137878 43.67732236814242, -91.23299028135513 43.59889036806938, -91.24055828136218 43.54871236802264, -91.22356628134635 43.500808367978024, -91.61109928170727 43.50062636797786, -91.73036628181835 43.49957136797688))) +OR Oregon MULTIPOLYGON (((-121.441509309489 41.99433436657502, -122.28470531027429 42.000764366581, -123.22210231114731 42.00219136658233, -123.51320431141842 41.99783336657828, -123.81914631170335 41.99294836657373, -124.20644431206405 41.997648366578105, -124.35224631219984 42.09867736667219, -124.41506231225834 42.245894366809296, -124.43781831227955 42.429608366980396, -124.39176331223663 42.55302736709534, -124.40107831224532 42.62269936716022, -124.55961731239297 42.83245736735557, -124.4853463123238 42.955454367470125, -124.386772312232 43.261589367755235, -124.40607631224998 43.3001973677912, -124.27399431212697 43.45910536793919, -124.22600431208227 43.60500436807507, -124.15832531201923 43.85711836830987, -124.11831931198198 44.269515368693945, -124.05440531192245 44.6621393690596, -124.07556831194216 44.81473836920172, -124.00757231187885 45.03610336940788, -123.95660731183138 45.292965369647106, -123.98056031185368 45.485084369826026, -123.93667431181281 45.50796636984734, -123.8921083117713 45.47405036981576, -123.85950731174094 45.499082369839066, -123.9534153118284 45.568528369903746, -123.93607631181226 45.70283537002882, -123.97662931185002 45.77548237009648, -123.95627431183107 45.87104137018548, -123.99650531186853 45.94192237025149, -123.92118731179838 46.01232337031706, -123.97734031185068 46.20270637049437, -123.79409631168002 46.11144837040938, -123.77708331166417 46.14443037044009, -123.82097831170506 46.19364937048593, -123.76141431164959 46.209939370501104, -123.71716131160838 46.16989337046381, -123.67024631156468 46.1744983704681, -123.517029311422 46.23609137052546, -123.36355731127905 46.144154370439836, -123.30471731122425 46.14473737044038, -123.24879931117218 46.14402037043971, -123.2124373111383 46.17000637046391, -123.17619631110456 46.18358637047656, -123.11855431105087 46.17931037047258, -123.05059631098759 46.155736370450626, -122.97416931091641 46.110483370408474, -122.89975731084711 46.07932937037946, -122.87541731082445 46.0271833703309, -122.8077413107614 45.94389037025333, -122.80622331076 45.90407237021624, -122.78407331073936 45.867886370182546, -122.78451631073978 45.8504493701663, -122.78800931074304 45.800343370119634, -122.76428831072094 45.760568370082595, -122.77255131072863 45.72768537005197, -122.76054131071746 45.649397369979056, -122.69632331065765 45.63104536996197, -122.65120931061563 45.606830369939416, -122.56542931053573 45.59481836992823, -122.43715431041628 45.56477936990025, -122.35645731034111 45.56617136990155, -122.30315031029147 45.54309236988006, -122.24492231023724 45.54811236988473, -122.08203731008555 45.590504369924204, -122.00001131000914 45.61782436994965, -121.97265930998367 45.63577636996637, -121.92682030994098 45.642028369972195, -121.88828330990509 45.67685637000463, -121.81104130983316 45.70068337002682, -121.7586943097844 45.68971637001661, -121.70641730973571 45.688793370015745, -121.52905430957054 45.71956737004441, -121.44255230948997 45.6949673700215, -121.42202930947087 45.690603370017435, -121.36781430942037 45.699686370025894, -121.31997730937582 45.696642370023056, -121.27639130933522 45.67834037000601, -121.21427130927736 45.66564536999419, -121.20330830926716 45.657287369986406, -121.19205430925669 45.61324236994538, -121.17431630924017 45.60051636993353, -121.12520430919443 45.60705936993963, -121.07353030914629 45.64661036997646, -121.033482309109 45.65284436998227, -120.96847830904846 45.6451543699751, -120.94857330902992 45.65031636997991, -120.90793730899208 45.6354773699661, -120.86141930894875 45.66518636999376, -120.69699430879562 45.71050937003597, -120.65840330875969 45.73261237005656, -120.62375730872742 45.743610370066804, -120.57008230867743 45.74091837006429, -120.49915630861136 45.695630370022116, -120.44338330855942 45.6892793700162, -120.28363530841065 45.71658337004163, -120.20744530833969 45.71978437004461, -120.1559083082917 45.76126137008324, -120.06864830821043 45.78020237010088, -119.9943203081412 45.81114037012969, -119.86973530802518 45.83169837014884, -119.83355630799147 45.84160937015807, -119.67844530784703 45.852539370168245, -119.62211630779456 45.899410370211896, -119.58929430776399 45.91331537022485, -119.51222030769222 45.8992003702117, -119.4388613076239 45.91426837022574, -119.37944130756856 45.91761037022885, -119.30276330749714 45.932662370242866, -119.17874230738164 45.922351370233265, -119.14025030734578 45.92570837023639, -119.03222130724518 45.96627437027417, -118.98213330719852 45.99905837030471, -117.99252730627688 46.0016393703071, -117.98267730626772 45.99988037030547, -117.60282630591395 46.00026837030583, -117.4816633058011 45.99983437030543, -116.91913230527722 45.995175370301084, -116.89819730525772 45.98051637028743, -116.85647230521886 45.9035973702158, -116.79126230515813 45.84586737016203, -116.77370730514178 45.81976337013772, -116.7031803050761 45.819169370137175, -116.65439830503067 45.78063037010128, -116.56063230494334 45.74742437007035, -116.5282753049132 45.71072837003618, -116.51491530490075 45.664491369993115, -116.47041830485932 45.60625736993888, -116.4785513048669 45.56605836990144, -116.55450330493763 45.49364736983401, -116.56577230494813 45.45986336980254, -116.6722653050473 45.335410369686635, -116.68881330506271 45.26235036961859, -116.73658530510721 45.13730736950214, -116.76126830513019 45.10630036947326, -116.77809230514586 45.0994803694669, -116.78721030515436 45.075752369444814, -116.80730730517307 45.049755369420595, -116.85451330521704 45.016945369390044, -116.84809730521106 45.0000423693743, -116.85588730521832 44.9799653693556, -116.84815930521111 44.97174136934794, -116.83139630519551 44.97263336934877, -116.84755630521056 44.954850369332206, -116.83539630519923 44.92014436929989, -116.86707630522874 44.86860836925189, -116.89736730525695 44.84855536923321, -116.90962030526836 44.82894036921495, -116.95149430530736 44.776035369165676, -117.03957230538938 44.749115369140604, -117.06651330541447 44.697557369092586, -117.07935430542643 44.68933636908493, -117.13050430547406 44.572523368976135, -117.14394030548658 44.55928736896381, -117.14516030548772 44.534655368940875, -117.18739130552706 44.511805368919596, -117.20396230554249 44.485785368895364, -117.22441030556152 44.47298736888344, -117.21722130555483 44.427855368841406, -117.23692130557318 44.38998236880613, -117.20160230554029 44.33943836875906, -117.21745530555505 44.30066536872295, -117.21357230555142 44.2847193687081, -117.17072330551153 44.25333236867887, -117.14327930548598 44.25063236867636, -117.11269230545747 44.26980536869421, -117.10056030544618 44.26707836869167, -117.08138730542832 44.243846368670035, -117.05202730540098 44.23155636865859, -117.0303523053808 44.249336368675145, -116.99270730534573 44.24706336867303, -116.9761273053303 44.22518236865265, -116.98187130533564 44.19784236862719, -116.91305130527155 44.17730436860806, -116.9022543052615 44.1463133685792, -116.94688630530305 44.093025368529574, -116.96344330531849 44.09029836852703, -116.97681730533094 44.07389436851176, -116.93359330529069 44.01420236845617, -116.96795730532268 43.96319536840866, -116.95971630531501 43.92857736837642, -116.97814130533217 43.90444136835394, -116.97814830533218 43.8734693683251, -116.98577030533927 43.85935136831195, -117.01622030536763 43.852972368306006, -117.0105053053623 43.83976936829371, -117.02762630537825 43.83156736828607, -117.0371173053871 43.8001423682568, -117.02379430537468 43.753701368213555, -117.02629530537702 43.67903136814401, -117.0188643053701 41.99479436657545, -118.18531730645644 41.99663736657716, -119.31094230750476 41.98913536657017, -119.35169230754272 41.98885336656991, -119.9934593081404 41.98920536657024, -120.87190830895852 41.98767236656881, -121.441509309489 41.99433436657502))) +NH New Hampshire MULTIPOLYGON (((-72.27991726370371 42.720467367251274, -72.45577026386748 42.725852367256294, -72.46217126387344 42.74684036727584, -72.47932226388942 42.761588367289576, -72.50726926391545 42.768732367296224, -72.51306826392084 42.789259367315346, -72.53891726394491 42.80773336733255, -72.55342826395842 42.860643367381826, -72.52481026393178 42.91261436743023, -72.5202172639275 42.9516723674666, -72.50426326391263 42.965584367479565, -72.47334126388384 42.9761433674894, -72.45715926386877 42.99960336751124, -72.46175226387305 43.046504367554924, -72.44346426385601 43.079039367585224, -72.43760526385056 43.1162703676199, -72.45239826386434 43.15602236765692, -72.43559826384869 43.23225336772792, -72.40241926381779 43.307382367797885, -72.41023126382507 43.323404367812806, -72.39762826381333 43.351006367838515, -72.41213926382684 43.37712536786284, -72.39624826381204 43.410156367893606, -72.38251526379925 43.48462936796296, -72.39499826381088 43.517554367993625, -72.37349826379085 43.57237436804468, -72.33308526375322 43.59736436806796, -72.30404026372616 43.69853036816217, -72.2600552636852 43.73530036819642, -72.21912326364708 43.75069236821075, -72.20609226363494 43.764635368223736, -72.18483626361515 43.80169036825825, -72.17008926360141 43.878917368330164, -72.12164926355631 43.909217368358384, -72.11320426354844 43.93916636838628, -72.09171126352842 43.95799136840381, -72.11280826354808 43.97651536842106, -72.10990926354538 43.9892293684329, -72.08520426352236 44.00892436845125, -72.07691926351464 44.03204036847278, -72.03472826347536 44.08337436852058, -72.03244726347323 44.096099368532435, -72.04951526348913 44.100452368536494, -72.03492026347553 44.12074636855539, -72.04472426348467 44.15643536858863, -72.05928226349822 44.1821763686126, -72.04439026348435 44.23437936866122, -72.05956626349848 44.26149436868647, -72.03549526347607 44.299434368721805, -71.99443326343783 44.32754836874799, -71.9389052633861 44.32578636874635, -71.92836126337629 44.33611236875596, -71.83481626328917 44.3441993687635, -71.82119726327649 44.35036036876923, -71.79772926325462 44.384172368800726, -71.76657026322562 44.39824836881384, -71.67688426314209 44.42134236883534, -71.656399263123 44.440137368852845, -71.64770926311492 44.46917436887989, -71.63655426310453 44.47673136888693, -71.61422326308373 44.47450736888486, -71.58661926305801 44.49453736890351, -71.57524326304743 44.52580536893263, -71.5914412630625 44.5388743689448, -71.5922882630633 44.55120336895628, -71.53679126301161 44.57893136898211, -71.55410226302773 44.59658936899855, -71.5680272630407 44.6374463690366, -71.58874926306 44.650599369048855, -71.60767826307763 44.67786236907425, -71.63113326309947 44.741710369133706, -71.58350126305511 44.77919736916862, -71.57510126304729 44.81601936920291, -71.50636526298328 44.899671369280824, -71.51697726299317 44.94369636932182, -71.54092726301546 44.976563369352434, -71.50537226298235 45.0133513693867, -71.50299926298014 45.059890369430036, -71.43041026291253 45.116992369483214, -71.40252226288656 45.202803369563135, -71.44656026292758 45.23608236959413, -71.38637826287153 45.23493036959306, -71.2972352627885 45.2934943696476, -71.15308926265426 45.23796936959589, -71.08750926259319 45.301469369655024, -71.02872626253844 44.66853836906556, -71.00859626251969 44.28214636870571, -70.9844422624972 43.79116336824844, -70.97387426248736 43.571830368044175, -70.95652426247119 43.56414336803701, -70.94961926246476 43.548953368022865, -70.96426826247841 43.53198936800707, -70.95927826247376 43.51638836799253, -70.97079126248448 43.47021136794953, -70.96148326247581 43.43812636791965, -70.97909926249223 43.39618436788059, -70.96969926248347 43.36638036785283, -70.90580126242396 43.30206936779294, -70.90108626241957 43.28102036777334, -70.81320726233773 43.235222367730685, -70.83054826235387 43.15917436765986, -70.81866826234281 43.12187136762512, -70.88474826240434 43.12770636763055, -70.87463126239493 43.10152736760617, -70.9054162624236 43.08402136758987, -70.88649426240598 43.05888336756645, -70.81042726233514 43.08974036759519, -70.73413926226408 43.05876336756634, -70.81388026233834 42.86706536738781, -70.84974026237174 42.86342936738443, -70.89811126241679 42.88687736740626, -70.92133626243843 42.88514936740465, -71.02542626253536 42.851171367373006, -71.06556426257275 42.80431936732937, -71.12060426262401 42.81828136734238, -71.18106126268032 42.80731736733216, -71.18634726268523 42.73876036726831, -71.24047926273565 42.743555367272776, -71.25241126274676 42.7260693672565, -71.28719426277915 42.698603367230916, -71.90094226335076 42.70537836723723, -71.93021626337801 42.70720936723893, -72.27991726370371 42.720467367251274))) +IA Iowa MULTIPOLYGON (((-91.12013228125002 40.70544336537464, -91.12930328125856 40.68218936535298, -91.16264428128962 40.65635236532892, -91.21506028133842 40.64385936531728, -91.26221128138235 40.639587365313304, -91.3757622814881 40.60348036527968, -91.41127128152117 40.5730123652513, -91.4130262815228 40.54803436522804, -91.38225528149414 40.52853836520988, -91.37494628148734 40.50369736518675, -91.38555128149721 40.447294365134226, -91.37290828148544 40.403032365093, -91.38590928149755 40.39240536508311, -91.41896828152834 40.38691936507799, -91.44874728155607 40.37194636506405, -91.47703828158241 40.39101236508181, -91.49031428159478 40.390806365081616, -91.50037728160414 40.405160365094986, -91.52769128162959 40.41016936509965, -91.52960728163137 40.43508636512286, -91.53884628163998 40.44128836512863, -91.53320828163473 40.45544136514181, -91.57938328167774 40.463760365149554, -91.58602828168392 40.48451936516889, -91.61686028171263 40.50487336518785, -91.62253628171793 40.532903365213954, -91.69208128178269 40.551677365231434, -91.68995928178072 40.58120236525893, -91.71697628180587 40.593435365270324, -91.74171128182891 40.60978436528555, -91.94637028201952 40.60826636528414, -92.19317428224937 40.60008836527652, -92.36151328240615 40.59957636527604, -92.6464322826715 40.591462365268484, -92.71781528273797 40.58966736526682, -93.10093828309479 40.58434736526186, -93.37027128334563 40.58049136525827, -93.56291028352504 40.58081336525857, -93.78630328373309 40.578448365256364, -94.01805928394893 40.57402236525225, -94.23839228415413 40.570966365249404, -94.48523128438401 40.57420536525242, -94.63987628452804 40.575744365253854, -94.9206162847895 40.57721836525522, -95.21742828506592 40.58189236525958, -95.38255528521971 40.58433436526185, -95.7674792855782 40.58904836526624, -95.75754628556895 40.62090436529591, -95.76799928557868 40.6431173653166, -95.87661628567984 40.73043636539792, -95.85179028565672 40.79260036545581, -95.84643528565174 40.848332365507716, -95.83439628564052 40.87030036552818, -95.83654128564253 40.901108365556865, -95.83760328564351 40.97425836562499, -95.8608972856652 41.002650365651434, -95.85953928566394 41.035002365681564, -95.87880428568188 41.065871365710315, -95.85827428566276 41.10918736575066, -95.87668528567991 41.1642023658019, -95.85980128566418 41.16686536580437, -95.85919828566362 41.1805373658171, -95.91610028571661 41.194063365829706, -95.92225028572234 41.20785436584255, -95.91098128571184 41.22524536585874, -95.93023028572978 41.302056365930284, -95.91120228571205 41.308469365936254, -95.89759128569938 41.28686336591613, -95.88910728569148 41.30138936592966, -95.94289528574157 41.34007736596569, -95.94005628573892 41.394805366016655, -95.93506528573428 41.4623813660796, -95.95318528575115 41.47238736608891, -96.00689728580117 41.481954366097824, -96.01345128580728 41.49299436610811, -95.99668828579166 41.51151736612536, -95.99396528578913 41.528103366140805, -96.00459228579903 41.53666336614877, -96.05017228584148 41.524335366137294, -96.0858402858747 41.537522366149574, -96.09193628588038 41.56314536617344, -96.08083528587004 41.57600036618541, -96.11130728589842 41.59900636620684, -96.09930628588724 41.65468036625869, -96.12026428590676 41.68409436628608, -96.12220228590856 41.694913366296156, -96.08555728587443 41.70498736630554, -96.09977128588767 41.73156336633029, -96.09932128588726 41.75297536635023, -96.07641728586592 41.79146936638608, -96.13562328592106 41.86262036645235, -96.15997028594374 41.90415136649102, -96.1458702859306 41.924907366510354, -96.14732828593196 41.96625436654887, -96.18521728596725 41.9806853665623, -96.20284228598366 41.99661536657714, -96.23609328601464 42.00125836658147, -96.23872528601709 42.02843836660678, -96.265483286042 42.04889736662583, -96.2851232860603 42.12345236669526, -96.35216528612273 42.16818536673692, -96.3635122861333 42.21404236677964, -96.33770828610926 42.22952236679405, -96.33265828610456 42.26030736682272, -96.34288128611408 42.282081366843, -96.36870028613814 42.29802336685785, -96.38978128615777 42.3287893668865, -96.4241752861898 42.349279366905584, -96.41176128617823 42.38091836693505, -96.4176282861837 42.41477736696658, -96.39789028616532 42.441793366991746, -96.39607428616362 42.4674013670156, -96.43939428620396 42.48924036703593, -96.48024328624201 42.51713036706191, -96.48933728625049 42.56402836710558, -96.50094228626129 42.57388536711476, -96.48849828624971 42.580480367120906, -96.51284428627237 42.629755367166794, -96.54116528629875 42.66240536719721, -96.56303928631912 42.66851336720289, -96.62654028637826 42.70835436724, -96.64070928639146 42.74860336727748, -96.63298028638427 42.776835367303775, -96.60087528635437 42.799558367324934, -96.58764528634204 42.8353813673583, -96.57312628632852 42.83434736735734, -96.55621128631276 42.846660367368806, -96.53751128629536 42.896906367415596, -96.54426328630164 42.913866367431396, -96.51493528627432 42.952382367467266, -96.51714828627638 42.986458367499, -96.4990202862595 43.01205036752283, -96.52001028627905 43.051508367559585, -96.47957328624139 43.06188436756925, -96.46209428622511 43.075582367582, -96.46080528622392 43.08787236759345, -96.45150528621525 43.12630836762925, -96.47311428623537 43.20908236770634, -96.48724528624854 43.217909367714554, -96.558605286315 43.22548936772162, -96.5669912863228 43.23963336773479, -96.5595672863159 43.25326336774748, -96.57072228632627 43.26361236775712, -96.5791312863341 43.29007436778177, -96.5405632862982 43.307659367798145, -96.52289428628174 43.356966367844066, -96.52505328628375 43.38422536786945, -96.55770828631415 43.40072736788482, -96.5891132863434 43.435539367917244, -96.58379628633845 43.48192036796044, -96.59831528635198 43.499849367977134, -96.46045428622358 43.49971836797701, -96.0610392858516 43.49853336797591, -95.86691228567081 43.49894436797629, -95.46477528529628 43.499541367976846, -95.39655828523276 43.50033436797759, -94.92046428478936 43.49937136797669, -94.8598392847329 43.5000303679773, -94.45523828435608 43.498102367975505, -94.24678728416194 43.4989483679763, -93.97395028390784 43.50029836797755, -93.65369928360958 43.500762367977984, -93.50083028346722 43.50048836797773, -93.05438028305143 43.50145736797863, -93.02721128302613 43.501278367978465, -92.55800828258914 43.50025936797752, -92.45316928249152 43.499462367976776, -92.07753228214168 43.49915336797649, -91.73036628181835 43.49957136797688, -91.61109928170727 43.50062636797786, -91.22356628134635 43.500808367978024, -91.23590328135784 43.464684367944386, -91.21091628133458 43.42405136790654, -91.19824328132277 43.37051336785668, -91.17704828130303 43.35394636784125, -91.07849828121125 43.31329736780339, -91.0664282812 43.28068336777302, -91.06905228120245 43.2578983677518, -91.16135428128841 43.14757636764905, -91.16857128129513 43.08288836758881, -91.15975228128691 43.08118236758722, -91.1522142812799 43.00131636751284, -91.1391212812677 42.9258933674426, -91.09342828122514 42.871440367391884, -91.08203028121454 42.783365367309855, -91.06616828119977 42.744913367274044, -90.99918228113738 42.70705836723879, -90.91940928106308 42.68067736721422, -90.89254528103807 42.678240367211956, -90.74561028090122 42.65700136719217, -90.69479128085389 42.63792836717441, -90.66438028082557 42.57139136711244, -90.63921928080214 42.55571436709784, -90.62570728078956 42.52856236707255, -90.63845628080142 42.509363367054675, -90.65189928081395 42.49470036704102, -90.64847328081075 42.47564736702327, -90.60595528077116 42.460564367009226, -90.56371128073181 42.421843366973164, -90.49117128066426 42.388791366942385, -90.4417252806182 42.360083366915646, -90.42780928060525 42.34064536689754, -90.41811228059622 42.26393936682611, -90.40730128058614 42.24266136680629, -90.36785828054941 42.210226366776084, -90.32373028050831 42.197337366764074, -90.231063280422 42.159741366729065, -90.19170228038536 42.12271036669458, -90.17621428037093 42.120524366692536, -90.16677628036214 42.103767366676934, -90.16822628036348 42.061066366637164, -90.15066328034713 42.03345336661145, -90.14279628033981 41.98398936656538, -90.15464528035083 41.93080236651585, -90.19596528038932 41.80616736639977, -90.25543828044471 41.78176936637705, -90.30501628049089 41.756497366353514, -90.32615728051057 41.7227683663221, -90.34126228052465 41.64912236625351, -90.33947628052297 41.602831366210395, -90.34849428053138 41.586882366195546, -90.42313528060089 41.56730536617731, -90.43509828061204 41.543612366155244, -90.45512628063068 41.527579366140316, -90.54097528071064 41.52600336613885, -90.6008382807664 41.50961836612359, -90.65892928082049 41.46235036607956, -90.70835428086653 41.450093366068145, -90.78004228093329 41.44985236606793, -90.84428428099312 41.44465236606308, -90.94980028109138 41.4212633660413, -91.00084228113893 41.43111236605047, -91.02763728116388 41.42353636604342, -91.05593528119023 41.40140736602281, -91.07342928120653 41.33492536596089, -91.1024962812336 41.267848365898416, -91.10167228123282 41.231552365864616, -91.05646628119072 41.17629036581315, -91.01840228115528 41.16585736580343, -90.99048528112928 41.14440436578346, -90.95793028109895 41.10439336574619, -90.95479428109604 41.07039736571453, -90.96085128110168 40.9505413656029, -90.98341928112269 40.923965365578155, -91.0493532811841 40.87962336553686, -91.08905028122108 40.833767365494154, -91.09289528122466 40.761587365426934, -91.12013228125002 40.70544336537464))) +MA Massachusetts MULTIPOLYGON (((-71.31932826280908 41.77219536636813, -71.33979826282815 41.78442536637952, -71.34548326283344 41.813161366406284, -71.33454226282325 41.85790336644796, -71.34249326283066 41.8757833664646, -71.3330862628219 41.89603136648346, -71.38395326286927 41.88843936647639, -71.38240526286783 41.97926336656098, -71.37864426286433 42.013713366593066, -71.49743026297496 42.00925336658891, -71.79783126325472 42.00427436658427, -71.80234026325893 42.01797736659704, -72.09497126353146 42.02579936660432, -72.13634626356999 42.026402366604884, -72.50757226391572 42.030766366608944, -72.571226263975 42.030125366608345, -72.58190726398496 42.02160736660041, -72.6078252640091 42.02280036660153, -72.60952626401067 42.03053636660873, -72.75589426414699 42.03384736661181, -72.76757526415787 42.00216736658231, -72.81767926420453 41.99718536657767, -72.8164512642034 42.0335073666115, -73.00609526438001 42.036009366613825, -73.04563226441682 42.0363103666141, -73.4842302648253 42.04742836662446, -73.49884026483892 42.07746036665243, -73.35082426470106 42.50475536705038, -73.25806026461467 42.74605836727511, -73.01969526439268 42.74039636726984, -72.92299726430262 42.73736436726702, -72.45577026386748 42.725852367256294, -72.27991726370371 42.720467367251274, -71.93021626337801 42.70720936723893, -71.90094226335076 42.70537836723723, -71.28719426277915 42.698603367230916, -71.25241126274676 42.7260693672565, -71.24047926273565 42.743555367272776, -71.18634726268523 42.73876036726831, -71.18106126268032 42.80731736733216, -71.12060426262401 42.81828136734238, -71.06556426257275 42.80431936732937, -71.02542626253536 42.851171367373006, -70.92133626243843 42.88514936740465, -70.89811126241679 42.88687736740626, -70.84974026237174 42.86342936738443, -70.81388026233834 42.86706536738781, -70.73969526226927 42.663523367198245, -70.59319926213283 42.64630536718221, -70.63345226217031 42.582642367122915, -70.81312826233764 42.5464363670892, -70.8936042624126 42.44806836699759, -70.96062226247501 42.43239336698299, -71.0341622625435 42.2856283668463, -70.92320426244017 42.2345173667987, -70.89267126241172 42.265766366827805, -70.82466126234839 42.26050736682291, -70.77459526230176 42.248640366811856, -70.68603726221929 42.15316636672294, -70.61870326215657 41.96818936655066, -70.5403382620836 41.930951366515984, -70.53770526208115 41.80576236639939, -70.4235112619748 41.74362236634152, -70.27383426183539 41.72166336632107, -70.34112726189807 41.7118133663119, -70.20525926177153 41.712573366312604, -70.01921426159826 41.78151936637681, -70.00044826158079 41.856350366446506, -70.10049726167396 42.00219436658233, -70.255148261818 42.060119366636286, -70.13509026170618 42.0724943666478, -70.05047126162737 42.026298366604784, -69.964170261547 41.90409436649097, -69.9177802615038 41.7676533663639, -69.95442326153791 41.67149536627434, -70.39761626195067 41.61257136621947, -70.43291926198356 41.5697563661796, -70.63713926217375 41.5398043661517, -70.66488826219958 41.556127366166905, -70.61976126215757 41.735636366334084, -70.83943026236214 41.62669236623262, -70.89212826241122 41.63391236623934, -71.00118526251279 41.52012436613337, -71.11713226262077 41.49306236610817, -71.1412122626432 41.65527336625924, -71.19880826269684 41.67850036628087, -71.22897626272494 41.70769436630806, -71.26662826276001 41.74974336634722, -71.31932826280908 41.77219536636813)), ((-70.60433126214319 41.42966336604913, -70.56769426210907 41.46456636608163, -70.55283126209522 41.41738836603769, -70.57585726211667 41.410285366031076, -70.51515726206014 41.39866036602025, -70.48614126203312 41.34156136596707, -70.73867626226831 41.33415536596017, -70.76971326229722 41.29816436592665, -70.84392026236632 41.34859936597363, -70.78252426230915 41.35251736597728, -70.77092626229835 41.32498036595163, -70.7517692622805 41.38216936600489, -70.66748826220201 41.45493736607266, -70.60584226214459 41.474663366091036, -70.60433126214319 41.42966336604913)), ((-70.0317162616099 41.31193136593947, -70.00650826158642 41.32477436595144, -70.02662026160516 41.33721036596302, -70.08763326166198 41.29684836592543, -70.03448626161249 41.34971836597467, -70.04926426162625 41.391961366014016, -69.96598026154868 41.294891365923604, -69.96844426155097 41.25181636588349, -70.10310526167639 41.23827936587088, -70.21326826177899 41.270205365900615, -70.20709626177323 41.29408736592286, -70.09787226167151 41.27763136590753, -70.0317162616099 41.31193136593947))) +NE Nebraska MULTIPOLYGON (((-101.40739329083078 40.001003364718585, -102.05153529143068 39.99891836471664, -102.04754529142697 40.34264436503676, -102.04762029142704 40.43107736511912, -102.04603129142556 40.69731936536708, -102.04699229142645 40.74313036540974, -102.04773929142715 40.99807136564717, -102.62125729196129 41.00021436564917, -102.65227129199016 40.99812436564722, -103.38295629267067 41.00031636564926, -103.57231629284702 40.99964836564864, -104.0517052932935 41.003211365651964, -104.05401229329564 41.3880853660104, -104.05550029329702 41.56422236617444, -104.05361529329527 41.69821836629923, -104.05351329329517 41.99981536658012, -104.05621929329769 42.61466936715274, -104.05619929329767 43.00306236751447, -103.50146429278104 42.99861836751033, -103.00587529231949 42.99935436751102, -102.78838429211693 42.99530336750724, -102.08670129146344 42.98988736750219, -101.23173729066718 42.98684336749936, -100.19814228970458 42.99109536750332, -99.53279028908491 42.992335367504474, -99.25397128882526 42.99238936750453, -98.49765128812088 42.991778367503954, -98.45744428808342 42.93716036745309, -98.39120428802174 42.92013536743723, -98.31033928794642 42.881794367401525, -98.1678262878137 42.839571367362204, -98.14486928779232 42.83579436735869, -98.12311728777206 42.820223367344184, -98.12182028777084 42.80836036733314, -98.03314028768825 42.769192367296654, -97.99514428765288 42.76681236729444, -97.96355828762346 42.773690367300844, -97.92947728759172 42.7923243673182, -97.88994128755489 42.831271367354475, -97.88865928755371 42.855807367377324, -97.8186432874885 42.86658736738737, -97.79702828746836 42.849597367371544, -97.77218628744522 42.846164367368345, -97.72525028740152 42.85800836737937, -97.68575228736474 42.83683736735966, -97.63497028731744 42.86128536738242, -97.57065428725754 42.847990367370045, -97.50613228719745 42.86013636738136, -97.48315928717605 42.857157367378576, -97.45726328715193 42.85044336737233, -97.38930628708864 42.86743336738815, -97.3114142870161 42.86177136738288, -97.27145728697889 42.85001436737193, -97.24318928695256 42.85182636737362, -97.2244432869351 42.84120236736372, -97.21183128692336 42.81257336733706, -97.16142228687642 42.798619367324065, -97.13046928684759 42.773923367301066, -97.01513928674018 42.759542367287665, -96.97959328670707 42.758313367286526, -96.97000328669814 42.75206536728071, -96.97786928670547 42.72730836725765, -96.97077328669886 42.721147367251916, -96.9082342866406 42.73169936726174, -96.81014028654926 42.70408436723602, -96.81043728654953 42.68134136721484, -96.7993442865392 42.67001936720429, -96.72265828646778 42.66859236720296, -96.6990602864458 42.657715367192836, -96.69459628644165 42.64116336717742, -96.7152732864609 42.62190736715949, -96.71405928645977 42.61230236715054, -96.6366722863877 42.5507313670932, -96.62929428638083 42.52269336706709, -96.60546728635863 42.50723636705269, -96.58475328633935 42.51828736706298, -96.5472152863044 42.52049936706504, -96.49470128625548 42.488459367035205, -96.43939428620396 42.48924036703593, -96.39607428616362 42.4674013670156, -96.39789028616532 42.441793366991746, -96.4176282861837 42.41477736696658, -96.41176128617823 42.38091836693505, -96.4241752861898 42.349279366905584, -96.38978128615777 42.3287893668865, -96.36870028613814 42.29802336685785, -96.34288128611408 42.282081366843, -96.33265828610456 42.26030736682272, -96.33770828610926 42.22952236679405, -96.3635122861333 42.21404236677964, -96.35216528612273 42.16818536673692, -96.2851232860603 42.12345236669526, -96.265483286042 42.04889736662583, -96.23872528601709 42.02843836660678, -96.23609328601464 42.00125836658147, -96.20284228598366 41.99661536657714, -96.18521728596725 41.9806853665623, -96.14732828593196 41.96625436654887, -96.1458702859306 41.924907366510354, -96.15997028594374 41.90415136649102, -96.13562328592106 41.86262036645235, -96.07641728586592 41.79146936638608, -96.09932128588726 41.75297536635023, -96.09977128588767 41.73156336633029, -96.08555728587443 41.70498736630554, -96.12220228590856 41.694913366296156, -96.12026428590676 41.68409436628608, -96.09930628588724 41.65468036625869, -96.11130728589842 41.59900636620684, -96.08083528587004 41.57600036618541, -96.09193628588038 41.56314536617344, -96.0858402858747 41.537522366149574, -96.05017228584148 41.524335366137294, -96.00459228579903 41.53666336614877, -95.99396528578913 41.528103366140805, -95.99668828579166 41.51151736612536, -96.01345128580728 41.49299436610811, -96.00689728580117 41.481954366097824, -95.95318528575115 41.47238736608891, -95.93506528573428 41.4623813660796, -95.94005628573892 41.394805366016655, -95.94289528574157 41.34007736596569, -95.88910728569148 41.30138936592966, -95.89759128569938 41.28686336591613, -95.91120228571205 41.308469365936254, -95.93023028572978 41.302056365930284, -95.91098128571184 41.22524536585874, -95.92225028572234 41.20785436584255, -95.91610028571661 41.194063365829706, -95.85919828566362 41.1805373658171, -95.85980128566418 41.16686536580437, -95.87668528567991 41.1642023658019, -95.85827428566276 41.10918736575066, -95.87880428568188 41.065871365710315, -95.85953928566394 41.035002365681564, -95.8608972856652 41.002650365651434, -95.83760328564351 40.97425836562499, -95.83654128564253 40.901108365556865, -95.83439628564052 40.87030036552818, -95.84643528565174 40.848332365507716, -95.85179028565672 40.79260036545581, -95.87661628567984 40.73043636539792, -95.76799928557868 40.6431173653166, -95.75754628556895 40.62090436529591, -95.7674792855782 40.58904836526624, -95.76341228557442 40.5497073652296, -95.73703628554985 40.53237336521346, -95.69206628550796 40.52412936520578, -95.68741328550364 40.56117036524027, -95.67569328549271 40.565835365244624, -95.66294428548085 40.55872936523801, -95.6580602854763 40.53033236521156, -95.68497028550136 40.512205365194674, -95.69536128551104 40.48533836516965, -95.63681728545652 40.396390365086816, -95.63418528545407 40.358800365051806, -95.61620128543731 40.34649736504035, -95.61793328543892 40.3314183650263, -95.64555328546464 40.32234636501785, -95.64682728546583 40.309109365005526, -95.59553228541806 40.309776365006144, -95.547137285373 40.266215364965575, -95.4768222853075 40.22685536492892, -95.46663628529802 40.21325536491625, -95.46095228529272 40.17399536487969, -95.42247628525689 40.13174336484035, -95.39281328522927 40.11541636482514, -95.38454228522156 40.09536236480646, -95.40378428523948 40.080379364792506, -95.41376428524877 40.04811136476245, -95.39053228522714 40.043750364758395, -95.37124428520917 40.02875136474442, -95.3450672851848 40.024974364740906, -95.30869728515093 39.999407364717094, -95.32970128517049 39.99259536471075, -95.78070028559051 39.99348936471158, -96.00125328579593 39.99515936471314, -96.24059828601882 39.99450336471253, -96.45403828621761 39.99417236471221, -96.80142028654113 39.9944763647125, -96.90828728664066 39.996154364714066, -97.36191228706313 39.997380364715205, -97.81658928748658 39.999729364717396, -97.92958828759183 39.9984523647162, -98.26416528790342 39.99843436471619, -98.50447928812723 39.99712936471497, -98.72063228832855 39.99846136471621, -99.06474728864902 39.9983383647161, -99.17820128875468 39.999577364717254, -99.62785928917346 40.002987364720425, -100.18091028968853 40.00047836471809, -100.19111128969803 40.00058536471819, -100.73504929020461 39.99917236471687, -100.75485629022306 40.00019836471783, -101.32214829075139 40.00182136471934, -101.40739329083078 40.001003364718585))) +NY New York MULTIPOLYGON (((-79.76323527067309 42.267327366829264, -79.44402027037579 42.41936136697085, -79.35488427029279 42.49346136703986, -79.14223327009474 42.57461636711544, -79.04375227000301 42.69924636723151, -78.85920026983113 42.79274536731859, -78.93655126990318 42.97423136748762, -78.88279326985311 43.022357367532436, -78.92559626989298 43.06662636757366, -79.06111427001919 43.090605367596, -79.0393252699989 43.14473936764641, -79.06223927002023 43.26821636776141, -78.46465326946368 43.37199336785806, -77.9920092690235 43.36557136785208, -77.74500726879346 43.335170367823764, -77.5757112686358 43.24154736773657, -77.37731626845103 43.27571336776839, -76.91452726802002 43.27859636777107, -76.73682926785453 43.34273336783081, -76.71847126783743 43.323442367812845, -76.61962826774537 43.41415236789732, -76.45465526759173 43.500721367977945, -76.22276426737577 43.55415336802771, -76.18457026734019 43.63319736810132, -76.20566626735985 43.68270036814743, -76.23999226739181 43.83512736828939, -76.19371826734871 43.91249036836143, -76.12906626728851 43.932208368379804, -76.13452226729358 44.01322936845526, -76.201542267356 44.06559836850403, -76.2968832674448 44.042017368482064, -76.36288126750625 44.09835436853454, -75.84803026702677 44.3902623688064, -75.75865726694353 44.51753336892493, -75.32886226654325 44.8106293691979, -74.9684692662076 44.94862536932641, -74.73610726599121 44.99291636936766, -74.02153926532571 44.99084736936574, -73.34472326469538 45.006138369379975, -73.350758264701 44.98197336935747, -73.33641426468765 44.93260436931149, -73.38230626473039 44.847933369232635, -73.36905426471805 44.819118369205796, -73.32678626467867 44.79929336918734, -73.37315826472187 44.724236369117435, -73.35815126470789 44.680368369076575, -73.3730972647218 44.6612763690588, -73.37013626471905 44.63434936903372, -73.38182526472994 44.61980736902018, -73.37129626472013 44.579167368982326, -73.34781226469826 44.55397136895886, -73.33445226468581 44.54432836894988, -73.29331926464751 44.43285336884606, -73.29999526465373 44.40553336882061, -73.32978826468147 44.367390368785095, -73.30532526465869 44.26014236868521, -73.37733226472575 44.20124736863036, -73.38206226473015 44.17210736860322, -73.4078652647542 44.136227368569806, -73.40875726475501 44.10661036854222, -73.43521526477966 44.063897368502445, -73.43600026478039 44.04567936848548, -73.40825126475454 44.0182223684599, -73.41740626476307 43.98819736843194, -73.40533426475183 43.9148073683636, -73.37512126472369 43.88597736833674, -73.38474026473266 43.80450836826087, -73.35899726470868 43.77842736823658, -73.35666926470651 43.75655836821622, -73.37098926471984 43.71428136817684, -73.42296026476825 43.63211436810032, -73.41832026476392 43.582479368054095, -73.38811426473579 43.569143368041665, -73.36368526471304 43.61499836808437, -73.30353426465702 43.62471436809342, -73.29410426464824 43.619653368088706, -73.28173626463672 43.593187368064065, -73.29140226464573 43.57503336804716, -73.25998426461646 43.55938236803258, -73.23839126459634 43.512832367989226, -73.25007126460723 43.31085436780112, -73.27600526463138 42.940294367456005, -73.27958326463471 42.8371033673599, -73.29616926465016 42.80354936732866, -73.26927526462511 42.747481367276436, -73.25806026461467 42.74605836727511, -73.35082426470106 42.50475536705038, -73.49884026483892 42.07746036665243, -73.4842302648253 42.04742836662446, -73.51714726485596 41.665686366268936, -73.5303922648683 41.52274536613581, -73.54429326488125 41.365298365989176, -73.5502592648868 41.29362036592242, -73.47812026481962 41.210755365845245, -73.72523726504976 41.10035436574243, -73.65372426498315 41.01261736566072, -73.65315126498263 40.998392365647476, -73.7800412651008 40.886688365543435, -73.79634626511599 40.83233436549281, -73.91986226523102 40.80280436546532, -74.0061832653114 40.7040023653733, -74.00626026531148 40.737730365404715, -73.97706126528429 40.79748736546036, -73.92239426523338 40.88604036554284, -73.90896626522087 40.927314365581275, -73.89614826520894 40.960871365612526, -73.89669726520944 40.9985293656476, -74.21303826550407 41.12361136576409, -74.24235926553136 41.137626365777145, -74.3719812656521 41.19585036583137, -74.70006226595764 41.350573365975464, -74.70527326596249 41.37505936599827, -74.74043726599524 41.401635366023015, -74.74004026599486 41.42205936604204, -74.75482626600864 41.43014636604957, -74.792799266044 41.42991736604936, -74.86406626611038 41.44715436606541, -74.89527926613945 41.444671366063105, -74.8985592661425 41.461894366079136, -74.93256426617417 41.48435036610006, -74.97178826621071 41.48360236609936, -75.01488726625084 41.53955636615147, -75.02508726626034 41.56580136617591, -75.06986526630205 41.604478366211936, -75.07245126630445 41.61308036621995, -75.05132526628478 41.637314366242514, -75.06540126629788 41.714836366314714, -75.05697026629004 41.72670836632577, -75.06131826629408 41.77026036636633, -75.09715526632746 41.77904136637451, -75.09682626632716 41.797207366391426, -75.07984326631134 41.8141483664072, -75.11777726634666 41.83698636642848, -75.12475126635316 41.849182366439834, -75.14828026637507 41.85578936644598, -75.1712842663965 41.867839366457204, -75.25451526647402 41.868873366458175, -75.28369026650118 41.947603366531496, -75.3240662665388 41.96127536654423, -75.3456572665589 41.99284536657363, -75.3828132665935 41.99835636657876, -75.47973226668377 41.996367366576905, -76.10483426726593 41.99949836657983, -76.14502026730337 42.0006543665809, -76.56391526769349 42.003011366583095, -76.92839526803293 42.00253436658265, -76.96857326807036 42.00298136658307, -77.61284726867038 41.9988293665792, -77.74500826879347 41.997333366577806, -78.20426226922118 41.998200366578615, -78.30508826931508 41.999420366579756, -78.9185382698864 41.999846366580144, -79.05948927001766 42.00115736658137, -79.61236727053257 42.000585366580836, -79.76165927067161 42.003105366583185, -79.76323527067309 42.267327366829264)), ((-73.75220926507488 40.594587365271394, -73.92759026523822 40.557650365236995, -73.76139526508344 40.61823836529342, -73.76493526508673 40.63693336531084, -73.8460602651623 40.652600365325426, -73.91573426522717 40.631131365305436, -73.87981426519373 40.590269365267375, -74.00403926530942 40.58125936525899, -74.02772126533146 40.63933636531307, -73.9556072652643 40.73938236540625, -73.89901726521161 40.79711736546002, -73.75391826507648 40.78885136545232, -73.74947726507234 40.84499836550461, -73.59827226493151 40.90314436555876, -73.47808926481959 40.87974436553697, -73.4306482647754 40.92255636557684, -73.21452326457413 40.90104136555681, -73.14097926450563 40.9513963656037, -73.02126926439414 40.968433365619575, -72.6315722640312 40.981285365631535, -72.31703126373827 41.149333365788046, -72.28114926370485 41.14253536578171, -72.35427926377295 41.110202365751604, -72.41634526383076 41.026040365673225, -72.55097126395614 40.966180365617475, -72.60481526400629 40.90530036556078, -72.47610926388641 40.920148365574605, -72.29308226371596 41.02401736567134, -72.20335026363239 41.03537436568192, -72.07701126351473 41.0005743656495, -71.92370026337196 41.084871365728006, -71.86998626332192 41.07450736571836, -71.9187022633673 41.03057436567744, -72.52116426392838 40.815041365476716, -73.42252626476784 40.66132536533355, -73.75220926507488 40.594587365271394)), ((-73.29305926464727 40.62638236530101, -73.29114426464548 40.633077365307244, -73.24043726459826 40.63307636530725, -73.05102326442186 40.67516736534644, -72.87690626425969 40.73734636540435, -72.7821992641715 40.7641333654293, -72.75732626414832 40.76795936543286, -72.76402526415457 40.75839236542396, -72.95631526433365 40.70003836536961, -73.03093426440314 40.67134136534288, -73.24905126460628 40.62542436530012, -73.29305926464727 40.62638236530101)), ((-74.23693926552632 40.5060033651889, -74.23694026552633 40.537905365218606, -74.16629826546053 40.624497365299256, -74.07286626537352 40.6495633653226, -74.05919326536078 40.601709365278026, -74.1229992654202 40.54474136522498, -74.19364226548599 40.510562365193145, -74.23693926552632 40.5060033651889))) +PA Pennsylvania MULTIPOLYGON (((-77.47579326854274 39.719623364456524, -78.0959482691203 39.725461364461964, -78.33455026934251 39.72409636446069, -78.3847832693893 39.72374836446036, -78.81775826979255 39.72311536445977, -78.93017326989724 39.72233736445905, -79.39661027033164 39.71931336445624, -79.48097127041021 39.720274364457126, -79.76513227067485 39.721807364458556, -79.91826827081748 39.721667364458426, -80.42908227129321 39.719842364456724, -80.52426927138185 39.721209364458005, -80.52465027138221 39.95841936467892, -80.5249622713825 40.02282536473891, -80.52604527138351 40.16252136486901, -80.5235642713812 40.403033365092995, -80.52435727138193 40.47878436516355, -80.52199927137974 40.63720336531109, -80.52030627137816 40.854168365513154, -80.52092427137873 40.8972703655533, -80.52293227138061 41.12962736576969, -80.51999627137788 41.48928836610465, -80.52392527138153 41.49510236611007, -80.52264427138034 41.850774366441314, -80.52059227137843 41.986872366568065, -79.76323527067309 42.267327366829264, -79.76165927067161 42.003105366583185, -79.61236727053257 42.000585366580836, -79.05948927001766 42.00115736658137, -78.9185382698864 41.999846366580144, -78.30508826931508 41.999420366579756, -78.20426226922118 41.998200366578615, -77.74500826879347 41.997333366577806, -77.61284726867038 41.9988293665792, -76.96857326807036 42.00298136658307, -76.92839526803293 42.00253436658265, -76.56391526769349 42.003011366583095, -76.14502026730337 42.0006543665809, -76.10483426726593 41.99949836657983, -75.47973226668377 41.996367366576905, -75.3828132665935 41.99835636657876, -75.3456572665589 41.99284536657363, -75.3240662665388 41.96127536654423, -75.28369026650118 41.947603366531496, -75.25451526647402 41.868873366458175, -75.1712842663965 41.867839366457204, -75.14828026637507 41.85578936644598, -75.12475126635316 41.849182366439834, -75.11777726634666 41.83698636642848, -75.07984326631134 41.8141483664072, -75.09682626632716 41.797207366391426, -75.09715526632746 41.77904136637451, -75.06131826629408 41.77026036636633, -75.05697026629004 41.72670836632577, -75.06540126629788 41.714836366314714, -75.05132526628478 41.637314366242514, -75.07245126630445 41.61308036621995, -75.06986526630205 41.604478366211936, -75.02508726626034 41.56580136617591, -75.01488726625084 41.53955636615147, -74.97178826621071 41.48360236609936, -74.93256426617417 41.48435036610006, -74.8985592661425 41.461894366079136, -74.89527926613945 41.444671366063105, -74.86406626611038 41.44715436606541, -74.792799266044 41.42991736604936, -74.75482626600864 41.43014636604957, -74.74004026599486 41.42205936604204, -74.74043726599524 41.401635366023015, -74.70527326596249 41.37505936599827, -74.70006226595764 41.350573365975464, -74.79166326604295 41.31196436593951, -74.79414326604525 41.29521436592391, -74.82519626607417 41.28270636591226, -74.86641126611256 41.226817365860214, -74.86288626610929 41.20677136584154, -74.9147682661576 41.14110536578038, -74.9499942661904 41.111854365753146, -74.98459526622263 41.099380365741524, -74.98888326622662 41.081761365725114, -74.96629126620559 41.082676365725966, -75.00115126623805 41.06248536570716, -75.03525626626981 41.02820336567524, -75.06997926630216 41.01071636565895, -75.11661926634558 41.0002483656492, -75.13930226636671 40.977527365628035, -75.13552526636319 40.96293636561445, -75.07973626631124 40.903348365558955, -75.0736852663056 40.88462636554152, -75.05648826628959 40.8720453655298, -75.05461926628784 40.855673365514555, -75.09954226632968 40.83928536549929, -75.08921126632006 40.82139036548263, -75.10054126633061 40.79165936545493, -75.13031926635834 40.772707365437284, -75.1703132663956 40.77480936543924, -75.19364426641732 40.74800336541428, -75.18775426641184 40.723857365391794, -75.20535526642823 40.68606136535659, -75.1840602664084 40.669792365341436, -75.20891726643154 40.65073836532369, -75.19793826642132 40.6342053653083, -75.2003872664236 40.61474336529017, -75.1935132664172 40.58376836526132, -75.19757226642098 40.570684365249136, -75.18228226640674 40.5567993652362, -75.12452626635294 40.564798365243654, -75.07978626631129 40.545356365225544, -75.06367926629628 40.52100336520287, -75.07011826630227 40.45625436514257, -75.05745326629048 40.420171365108956, -75.02126626625679 40.40132336509141, -75.00047526623742 40.4086213650982, -74.97284126621169 40.40444836509432, -74.95018826619058 40.345473365039396, -74.93250326617411 40.333774365028496, -74.92115026616354 40.31403336501011, -74.88065926612583 40.29959136499666, -74.84276326609054 40.24845236494903, -74.73882426599374 40.177725364883166, -74.7254802659813 40.1493063648567, -74.74629426600069 40.12435836483346, -74.82902226607774 40.11616136482583, -74.8719242661177 40.07805636479034, -74.95620126619619 40.05801436477168, -74.98348526622159 40.034073364749375, -75.04567526627952 40.00763436472475, -75.06804526630035 39.98539136470404, -75.08458726631575 39.97573236469505, -75.11096326634032 39.97669036469594, -75.13986426636724 39.95591936467659, -75.14715826637403 39.93474036465687, -75.13580526636346 39.89688736462162, -75.14290126637006 39.881602364607375, -75.18560526640984 39.877405364603476, -75.24699526646701 39.85040536457832, -75.25374026647329 39.84553736457379, -75.34593226655915 39.84851636457657, -75.42046826662857 39.798983364530436, -75.46998626667468 39.826547364556106, -75.58344326678035 39.84011936456875, -75.64399426683674 39.83830636456706, -75.69477126688403 39.820457364550435, -75.74559226693137 39.77492936450803, -75.77492726695868 39.72455236446112, -75.79109426697374 39.72386636446048, -76.13922326729796 39.722229364458954, -76.23312226738541 39.7218533644586, -76.569834267699 39.72026536445712, -76.7904912679045 39.72125636445804, -76.99681226809665 39.72089136445771, -77.22105126830549 39.72067936445751, -77.46443326853216 39.720073364456944, -77.47579326854274 39.719623364456524))) +CT Connecticut MULTIPOLYGON (((-73.5303922648683 41.52274536613581, -73.51714726485596 41.665686366268936, -73.4842302648253 42.04742836662446, -73.04563226441682 42.0363103666141, -73.00609526438001 42.036009366613825, -72.8164512642034 42.0335073666115, -72.81767926420453 41.99718536657767, -72.76757526415787 42.00216736658231, -72.75589426414699 42.03384736661181, -72.60952626401067 42.03053636660873, -72.6078252640091 42.02280036660153, -72.58190726398496 42.02160736660041, -72.571226263975 42.030125366608345, -72.50757226391572 42.030766366608944, -72.13634626356999 42.026402366604884, -72.09497126353146 42.02579936660432, -71.80234026325893 42.01797736659704, -71.79783126325472 42.00427436658427, -71.7882492632458 41.72160336632101, -71.79260526324985 41.64175836624665, -71.79019426324761 41.60130736620898, -71.8027432632593 41.415829366036235, -71.84599526329959 41.40385436602509, -71.83686926329108 41.34196136596745, -71.84777226330124 41.32534836595197, -71.86667826331885 41.32276936594957, -72.2814162637051 41.2811453659108, -72.32635526374695 41.28964136591872, -72.37841226379544 41.35834836598271, -72.3781532637952 41.27810236590797, -72.52724526393405 41.26370236589456, -72.90673426428746 41.270063365900484, -73.10441826447158 41.16103936579895, -73.65315126498263 40.998392365647476, -73.65372426498315 41.01261736566072, -73.72523726504976 41.10035436574243, -73.47812026481962 41.210755365845245, -73.5502592648868 41.29362036592242, -73.54429326488125 41.365298365989176, -73.5303922648683 41.52274536613581))) +RI Rhode Island MULTIPOLYGON (((-71.79019426324761 41.60130736620898, -71.79260526324985 41.64175836624665, -71.7882492632458 41.72160336632101, -71.79783126325472 42.00427436658427, -71.49743026297496 42.00925336658891, -71.37864426286433 42.013713366593066, -71.38240526286783 41.97926336656098, -71.38395326286927 41.88843936647639, -71.3330862628219 41.89603136648346, -71.34249326283066 41.8757833664646, -71.33454226282325 41.85790336644796, -71.34548326283344 41.813161366406284, -71.33979826282815 41.78442536637952, -71.31932826280908 41.77219536636813, -71.26662826276001 41.74974336634722, -71.22897626272494 41.70769436630806, -71.28400126277619 41.67954936628185, -71.36738726285384 41.741350366339404, -71.39358026287823 41.761155366357855, -71.36901226285535 41.70329136630396, -71.41924726290215 41.65221236625639, -71.42731826290965 41.48668936610223, -71.48988826296792 41.39208536601413, -71.72226426318434 41.32726436595375, -71.86667826331885 41.32276936594957, -71.84777226330124 41.32534836595197, -71.83686926329108 41.34196136596745, -71.84599526329959 41.40385436602509, -71.8027432632593 41.415829366036235, -71.79019426324761 41.60130736620898)), ((-71.19880826269684 41.67850036628087, -71.1412122626432 41.65527336625924, -71.11713226262077 41.49306236610817, -71.19993726269789 41.46331836608047, -71.19880826269684 41.67850036628087)), ((-71.26916926276238 41.62126836622757, -71.21944726271606 41.63564236624096, -71.23867326273397 41.474849366091206, -71.28800726277991 41.483619366099376, -71.3495252628372 41.4458573660642, -71.26916926276238 41.62126836622757))) +NJ New Jersey MULTIPOLYGON (((-75.48928026669266 39.714858364452084, -75.47597426668027 39.72008436445695, -75.47476826667913 39.741832364477204, -75.46039426666576 39.763362364497254, -75.42764726663525 39.77824336451112, -75.41175426662045 39.78977036452186, -75.42046826662857 39.798983364530436, -75.34593226655915 39.84851636457657, -75.25374026647329 39.84553736457379, -75.24699526646701 39.85040536457832, -75.18560526640984 39.877405364603476, -75.14290126637006 39.881602364607375, -75.13580526636346 39.89688736462162, -75.14715826637403 39.93474036465687, -75.13986426636724 39.95591936467659, -75.11096326634032 39.97669036469594, -75.08458726631575 39.97573236469505, -75.06804526630035 39.98539136470404, -75.04567526627952 40.00763436472475, -74.98348526622159 40.034073364749375, -74.95620126619619 40.05801436477168, -74.8719242661177 40.07805636479034, -74.82902226607774 40.11616136482583, -74.74629426600069 40.12435836483346, -74.7254802659813 40.1493063648567, -74.73882426599374 40.177725364883166, -74.84276326609054 40.24845236494903, -74.88065926612583 40.29959136499666, -74.92115026616354 40.31403336501011, -74.93250326617411 40.333774365028496, -74.95018826619058 40.345473365039396, -74.97284126621169 40.40444836509432, -75.00047526623742 40.4086213650982, -75.02126626625679 40.40132336509141, -75.05745326629048 40.420171365108956, -75.07011826630227 40.45625436514257, -75.06367926629628 40.52100336520287, -75.07978626631129 40.545356365225544, -75.12452626635294 40.564798365243654, -75.18228226640674 40.5567993652362, -75.19757226642098 40.570684365249136, -75.1935132664172 40.58376836526132, -75.2003872664236 40.61474336529017, -75.19793826642132 40.6342053653083, -75.20891726643154 40.65073836532369, -75.1840602664084 40.669792365341436, -75.20535526642823 40.68606136535659, -75.18775426641184 40.723857365391794, -75.19364426641732 40.74800336541428, -75.1703132663956 40.77480936543924, -75.13031926635834 40.772707365437284, -75.10054126633061 40.79165936545493, -75.08921126632006 40.82139036548263, -75.09954226632968 40.83928536549929, -75.05461926628784 40.855673365514555, -75.05648826628959 40.8720453655298, -75.0736852663056 40.88462636554152, -75.07973626631124 40.903348365558955, -75.13552526636319 40.96293636561445, -75.13930226636671 40.977527365628035, -75.11661926634558 41.0002483656492, -75.06997926630216 41.01071636565895, -75.03525626626981 41.02820336567524, -75.00115126623805 41.06248536570716, -74.96629126620559 41.082676365725966, -74.98888326622662 41.081761365725114, -74.98459526622263 41.099380365741524, -74.9499942661904 41.111854365753146, -74.9147682661576 41.14110536578038, -74.86288626610929 41.20677136584154, -74.86641126611256 41.226817365860214, -74.82519626607417 41.28270636591226, -74.79414326604525 41.29521436592391, -74.79166326604295 41.31196436593951, -74.70006226595764 41.350573365975464, -74.3719812656521 41.19585036583137, -74.24235926553136 41.137626365777145, -74.21303826550407 41.12361136576409, -73.89669726520944 40.9985293656476, -73.89614826520894 40.960871365612526, -73.90896626522087 40.927314365581275, -73.92239426523338 40.88604036554284, -73.97706126528429 40.79748736546036, -74.00626026531148 40.737730365404715, -74.0061832653114 40.7040023653733, -74.12905826542585 40.647072365320284, -74.11553126541325 40.70562636537481, -74.14685826544243 40.67547936534673, -74.20825326549961 40.59118736526823, -74.27891026556541 40.514303365196625, -74.2689152655561 40.46374836514954, -74.22450326551474 40.44358436513076, -74.12188526541917 40.451458365138095, -73.97844026528557 40.323616365019035, -74.0392312653422 40.1018423648125, -74.09142626539081 40.11608536482576, -74.08377326538367 40.088181364799766, -74.03429426533759 40.091367364802736, -74.04979026535203 40.056856364770596, -74.12218026541944 40.05156136476566, -74.07733326537767 40.042273364757015, -74.15922826545395 39.87860536460459, -74.17142726546531 39.71827436445527, -74.237675265527 39.624046364367516, -74.3233422656068 39.57208636431912, -74.32885026561192 39.52362736427399, -74.41238826568973 39.542621364291676, -74.40111926567923 39.50262736425443, -74.46041826573445 39.426756364183774, -74.44750126572242 39.381075364141225, -74.65823426591868 39.287251364053844, -74.62252726588542 39.28163236404862, -74.62458726588734 39.250828364019924, -74.80229226605285 39.02637336381089, -74.87925326612452 38.98984336377686, -74.87630126612177 38.95668236374598, -74.9681252662073 38.971738363760004, -74.89020226613472 39.113860363892364, -74.91665426615936 39.170638363945244, -75.0144072662504 39.19836336397106, -75.1199582663487 39.18469136395833, -75.4156722666241 39.37497136413555, -75.55276326675178 39.490514364243154, -75.51668926671819 39.56656836431398, -75.57023426676805 39.617735364361636, -75.48928026669266 39.714858364452084))) +IN Indiana MULTIPOLYGON (((-86.34160627679967 38.17728836302011, -86.36435027682086 38.19329036303502, -86.38830727684316 38.19480836303643, -86.38710127684205 38.16802136301148, -86.34312427680109 38.15555936299988, -86.3354182767939 38.14402836298913, -86.34403927680194 38.13427036298005, -86.39367727684817 38.12329436296983, -86.40718127686074 38.10821836295578, -86.45252427690298 38.12975536297584, -86.46484627691444 38.12915636297529, -86.4743372769233 38.11170736295904, -86.44252127689366 38.088698362937606, -86.44246727689361 38.07599536292578, -86.45836727690842 38.0591613629101, -86.50311427695009 38.0516483629031, -86.51909127696497 38.04704836289882, -86.52783427697311 38.01869336287241, -86.53084827697592 37.987477362843336, -86.51690127696293 37.94224236280121, -86.52273827696837 37.927871362787826, -86.54108727698545 37.9215153627819, -86.58178427702336 37.92566536278577, -86.59831027703875 37.921072362781494, -86.61478227705409 37.857975362722726, -86.64556827708276 37.84600036271158, -86.66592427710172 37.847381362712866, -86.67067027710614 37.86064136272521, -86.66030827709649 37.902573362764265, -86.66865527710426 37.91319636277416, -86.68912627712332 37.9118533627729, -86.72887627716034 37.89462136275686, -86.75382527718358 37.898359362760345, -86.8028152772292 37.97880036283526, -86.82630727725109 37.99155936284714, -86.86327227728552 37.986920362842824, -86.90007827731979 37.95369736281188, -86.93157327734912 37.938040362797295, -86.98903127740263 37.93061636279038, -87.0131562774251 37.92476436278493, -87.03648027744683 37.90800536276932, -87.07130827747926 37.80713636267538, -87.10642727751197 37.78425136265407, -87.13187927753567 37.78973636265918, -87.15808027756007 37.82696736269385, -87.17578027757655 37.83864036270472, -87.22676227762403 37.84911836271448, -87.27274627766687 37.87081936273469, -87.31055927770208 37.89371836275602, -87.38755027777378 37.93496936279443, -87.45228827783407 37.93652036279588, -87.50480327788298 37.91562736277642, -87.60432527797568 37.97115736282814, -87.62713727799692 37.923454362783716, -87.59471827796672 37.89076636275327, -87.59363427796572 37.86491036272919, -87.6075882779787 37.843819362709546, -87.65169627801978 37.82817536269498, -87.68471727805054 37.83637236270261, -87.67972127804589 37.89704936275912, -87.70940827807354 37.89975436276164, -87.72820027809104 37.89458536275683, -87.75378227811487 37.898128362760126, -87.82364727817993 37.87825536274161, -87.85718727821117 37.89094736275344, -87.89903627825014 37.92459736278478, -87.92189527827144 37.91990936278041, -87.93448427828315 37.90420436276578, -87.93684927828535 37.875223362738794, -87.91022827826056 37.8386133627047, -87.92017027826982 37.809728362677795, -87.93961027828793 37.79955136266832, -87.95873827830574 37.776224362646595, -88.01122327835462 37.801352362669995, -88.03560727837733 37.805728362674074, -88.08606227842432 37.81765736268518, -88.08929727842734 37.83129436269788, -88.04216927838344 37.82756736269441, -88.0342722783761 37.843791362709524, -88.07577027841474 37.86785436273193, -88.10149027843869 37.89535136275754, -88.10011627843741 37.906215362767654, -88.04490027838598 37.89604936275819, -88.02662027836897 37.90580336276727, -88.03047327837255 37.917636362778296, -88.08403327842244 37.92370536278395, -88.07897527841773 37.94404536280289, -88.06465427840439 37.92982836278965, -88.0418032783831 37.93454336279404, -88.04254327838379 37.95631036281431, -88.02173727836441 37.97510136283181, -88.02924427837141 38.00828136286272, -88.0217292783644 38.03357736288628, -88.04150627838283 38.03834936289071, -88.04312327838433 38.04516636289706, -88.03476127837655 38.05413036290541, -87.97532627832119 38.073352362923316, -87.96489727831148 38.09679436294515, -88.01236127835568 38.09239236294105, -88.01857927836147 38.10334836295125, -87.97353427831952 38.13180536297776, -87.95059927829816 38.13695936298255, -87.93202127828086 38.15757336300175, -87.93231927828114 38.17117736301442, -87.97796027832365 38.20076036304197, -87.98604027833117 38.234860363073736, -87.98005027832559 38.241131363079575, -87.92595027827521 38.304818363138885, -87.91368127826378 38.302392363136626, -87.9141392782642 38.28109436311679, -87.88849627824032 38.30070536313505, -87.88347627823565 38.31559836314892, -87.87406927822688 38.31683436315008, -87.86303627821661 38.28540836312081, -87.85011227820458 38.286144363121494, -87.83453327819007 38.35257036318336, -87.78404827814305 38.378170363207204, -87.7484562781099 38.418011363244304, -87.73898027810108 38.44552736326993, -87.75868827811944 38.45714336328075, -87.75612427811704 38.46617236328916, -87.6928442780581 38.48158036330351, -87.67993527804609 38.50405336332444, -87.65355927802152 38.50049036332112, -87.65141527801953 38.51541736333502, -87.6729692780396 38.54747136336488, -87.65288027802089 38.57391936338951, -87.64061927800947 38.593225363407484, -87.61985127799014 38.599256363413105, -87.62867127799835 38.62296436343518, -87.62521527799512 38.64285836345371, -87.58850127796093 38.67221536348105, -87.5439132779194 38.68602136349391, -87.50833627788627 38.73668036354108, -87.50802327788598 38.7697683635719, -87.51904827789625 38.7767453635784, -87.50790927788587 38.79560536359597, -87.55052927792556 38.85793636365402, -87.55908127793353 38.86985636366512, -87.53922227791504 38.90490536369776, -87.53020427790663 38.93196336372296, -87.5334922779097 38.96374636375256, -87.54792727792315 38.97712036376501, -87.59188127796408 38.99412636378085, -87.58177227795467 38.9957853637824, -87.58534327795799 39.06247736384451, -87.61203127798285 39.08464736386516, -87.63089227800042 39.08901536386922, -87.63169327800117 39.10398336388317, -87.66228727802965 39.113509363892035, -87.65948027802703 39.13069336390804, -87.67035227803716 39.14671936392297, -87.64428227801288 39.16854636394329, -87.60795027797904 39.19610736396896, -87.59423227796627 39.19816736397088, -87.58861727796103 39.20850536398051, -87.5845882779573 39.24879136401803, -87.60692027797809 39.25820236402679, -87.61582427798638 39.28145636404845, -87.61064327798155 39.297699364063575, -87.62526227799518 39.30744136407265, -87.5976882779695 39.338305364101394, -87.54023727791598 39.35056236411281, -87.53858927791445 39.47748336423101, -87.53559727791166 39.60937636435385, -87.53579327791185 39.88733936461272, -87.53535727791144 40.16623136487246, -87.53569527791176 40.48328236516774, -87.53719127791315 40.494646365178326, -87.53269627790895 40.7454483654119, -87.53205227790836 41.00996336565825, -87.5317652779081 41.173790365810824, -87.53248427790876 41.30133836592961, -87.53268627790895 41.46975036608646, -87.52990627790636 41.7236263663229, -87.46371127784471 41.67162436627447, -87.41930727780336 41.676366366278884, -87.44197427782447 41.65811336626189, -87.39474627778048 41.634191366239605, -87.23385427763064 41.62618836623216, -86.94246027735926 41.71650336631626, -86.83482927725902 41.765504366361895, -86.52518127697064 41.76554036636193, -86.23456527669998 41.76486436636131, -86.06830227654514 41.76462836636108, -85.79922727629454 41.76353536636007, -85.65945927616437 41.76262736635922, -85.297209275827 41.763581366360114, -85.19314027573007 41.762867366359444, -84.82600827538816 41.761875366358524, -84.78847827535321 41.76095936635767, -84.79037727535497 41.69749436629856, -84.7913702753559 41.53049236614303, -84.79189727535639 41.427899366047484, -84.79097527535554 41.28381836591329, -84.7915862753561 41.25313236588472, -84.79052727535512 40.98834136563811, -84.79102327535558 40.93770836559095, -84.79306127535747 40.72886036539645, -84.79325227535766 40.588738365265954, -84.79455627535887 40.35305036504645, -84.79538827535964 40.3195003650152, -84.80356427536726 40.013990364730674, -84.80614927536966 39.9171663646405, -84.80869627537204 39.73329936446926, -84.81103727537422 39.56405036431164, -84.81110527537429 39.513163364264244, -84.81202527537513 39.312333364077205, -84.81207027537518 39.30302936406854, -84.81148027537463 39.102585363881865, -84.82786127538989 39.10368736388289, -84.88670827544469 39.065045363846906, -84.88999627544776 39.05064836383349, -84.87629327543499 39.03289536381696, -84.84422527540512 39.005831363791756, -84.83444427539602 38.98277536377028, -84.84631627540708 38.95463136374407, -84.87588027543461 38.9276043637189, -84.87525427543403 38.90943136370197, -84.85974327541958 38.90204236369509, -84.80322427536694 38.89719036369057, -84.78866727535339 38.884385363678646, -84.78744627535225 38.86664336366212, -84.82442627538668 38.83446336363215, -84.81878027538143 38.79341036359392, -84.97561127552748 38.78064136358203, -85.02507327557356 38.7642913635668, -85.06845427561396 38.75042436355389, -85.11965727566164 38.71413936352009, -85.16093327570009 38.69517636350243, -85.20516227574127 38.69581736350303, -85.27139427580296 38.744376363548255, -85.3350092758622 38.73700636354139, -85.41818627593968 38.73841736354271, -85.44669027596622 38.72484036353006, -85.45367927597273 38.69467436350197, -85.42440427594546 38.58484036339968, -85.41746127593899 38.561475363377916, -85.43237027595288 38.537016363355136, -85.46638227598456 38.51817536333759, -85.50720027602257 38.471419363294046, -85.61264027612077 38.446670363271, -85.6435932761496 38.38368836321234, -85.6542282761595 38.337753363169554, -85.6813892761848 38.300953363135285, -85.74692627624583 38.27031536310675, -85.78621127628242 38.282391363117995, -85.80655127630136 38.286179363121526, -85.83990727633243 38.27629136311232, -85.85233527634401 38.23856136307718, -85.91207427639964 38.18000136302264, -85.91475127640213 38.06487436291542, -85.93087227641715 38.03404936288671, -85.95858227644295 38.011840362866025, -86.00666327648773 38.00176736285665, -86.03162027651098 37.99295036284843, -86.05271527653062 37.966784362824065, -86.1049862765793 38.01133636286556, -86.19062127665906 38.01775836287154, -86.25215527671637 38.040721362892924, -86.27769927674015 38.05817336290918, -86.29144027675295 38.078489362928096, -86.29767427675876 38.15030436299499, -86.34160627679967 38.17728836302011))) +NV Nevada MULTIPOLYGON (((-119.15245030735716 38.411801363238524, -119.3188253075121 38.52710836334591, -119.57568730775132 38.70291036350964, -119.88934130804344 38.92225136371391, -119.99525430814208 38.99410636378083, -119.99515030814197 39.06349136384546, -119.99454130814141 39.10613136388517, -119.99552730814233 39.15871336393414, -119.99530430814212 39.31154536407647, -119.99601130814278 39.44350136419936, -119.99616530814293 39.72061036445744, -119.99632430814307 41.17756636581434, -119.9934593081404 41.98920536657024, -119.35169230754272 41.98885336656991, -119.31094230750476 41.98913536657017, -118.18531730645644 41.99663736657716, -117.0188643053701 41.99479436657545, -116.99231330534536 41.99479436657545, -115.94754430437234 41.99459936657526, -115.02486330351303 41.99650636657704, -114.26947130280954 41.995924366576496, -114.03907230259495 41.995391366576, -114.03815130259409 40.997686365646814, -114.03810830259405 40.111046364821064, -114.03984430259567 39.90877836463269, -114.0401053025959 39.538685364288014, -114.04426730259979 38.678996363487364, -114.04509030260056 38.571095363386874, -114.04727330260259 38.137652362983204, -114.04726030260258 37.59847836248105, -114.04393930259948 36.99653836192046, -114.04371630259928 36.84184936177639, -114.03739230259339 36.21602336119354, -114.04510530260056 36.19397836117301, -114.10777530265894 36.12109036110513, -114.12902330267872 36.04173036103122, -114.20676930275113 36.017255361008424, -114.233472302776 36.01833136100943, -114.30758730284502 36.06223336105032, -114.30385730284155 36.08710836107348, -114.31609530285294 36.11143836109614, -114.34423430287916 36.137480361120396, -114.38080330291321 36.15099136113298, -114.44394530297203 36.1210533611051, -114.46661330299312 36.1247113611085, -114.5305733030527 36.15509036113679, -114.59893530311636 36.13833536112119, -114.62161030313749 36.141966361124574, -114.71276130322238 36.10518136109032, -114.7281503032367 36.08596236107242, -114.72896630323746 36.058753361047074, -114.71767330322695 36.036758361026585, -114.7362123032442 35.987648360980856, -114.69927630320981 35.91161236091004, -114.66160030317472 35.88047336088104, -114.66246230317552 35.870960360872175, -114.68986730320105 35.84744236085027, -114.68273930319441 35.76470336077322, -114.68882030320007 35.73259536074332, -114.66509130317797 35.69309936070653, -114.66848630318114 35.65639936067235, -114.65406630316771 35.64658436066321, -114.63986630315449 35.611348360630394, -114.65313430316684 35.5848333606057, -114.64979230316374 35.54663736057013, -114.6722153031846 35.515754360541365, -114.64539630315963 35.450760360480835, -114.58958430310764 35.358378360394795, -114.58789030310608 35.304768360344866, -114.5595833030797 35.22018336026609, -114.56104030308107 35.17434636022341, -114.57225530309151 35.14006736019148, -114.58261630310116 35.132560360184485, -114.62644130314197 35.13390636018575, -114.6359093031508 35.11865536017154, -114.59563230311329 35.07605836013187, -114.63378030314881 35.041863360100024, -114.62106830313698 34.99891436006002, -115.62619730407307 35.795698360802085, -115.88576930431482 36.0012263609935, -117.16042330550194 36.95959436188605, -117.83868630613361 37.45729836234957, -118.4174193066726 37.886676362749455, -119.15245030735716 38.411801363238524))) +UT Utah MULTIPOLYGON (((-114.04727330260259 38.137652362983204, -114.04509030260056 38.571095363386874, -114.04426730259979 38.678996363487364, -114.0401053025959 39.538685364288014, -114.03984430259567 39.90877836463269, -114.03810830259405 40.111046364821064, -114.03815130259409 40.997686365646814, -114.03907230259495 41.995391366576, -112.98957530161753 42.00114636658136, -112.14711630083293 41.999054366579415, -112.10051430078953 42.00230036658243, -111.49458630022521 42.000171366580446, -111.04869729980994 41.99620336657675, -111.05106829981216 41.57859236618782, -111.05165129981269 41.25842536588965, -111.0510222998121 40.99658336564579, -110.06318529889211 40.997892365647004, -110.00216529883528 40.997599365646735, -109.04831429794694 40.998433365647514, -109.04615529794494 40.66529136533725, -109.05126329794969 40.2105113649137, -109.05255129795088 39.65738236439856, -109.0535282979518 39.51817036426891, -109.05141729794983 39.360966364122504, -109.05394829795219 38.49465136331568, -109.05586129795397 38.2449203630831, -109.04346429794242 38.15293336299743, -109.04320629794219 37.88742036275015, -109.04560229794441 37.63082036251117, -109.0484802979471 36.99664136192055, -109.99707629883055 36.99206736191629, -110.45223629925445 36.991746361915986, -110.48408929928411 37.003926361927334, -110.7400632995225 37.002488361926, -111.3561643000963 37.001709361925265, -112.23725830091688 36.995492361919474, -112.54252130120118 36.99799436192181, -112.89998330153409 36.99622736192016, -114.04393930259948 36.99653836192046, -114.04726030260258 37.59847836248105, -114.04727330260259 38.137652362983204))) +CA California MULTIPOLYGON (((-121.66522030969736 38.16928536301266, -121.78236230980644 38.06677536291719, -121.90276630991858 38.0729093629229, -121.98454930999475 38.13950036298492, -122.23224331022544 38.071079362921196, -122.2730013102634 38.15941836300347, -122.3157593103032 38.205933363046796, -122.33890731032477 38.19358236303529, -122.2853543102749 38.15931136300337, -122.27277231026318 38.09748436294579, -122.39846431038023 38.16133736300526, -122.42920231040887 38.11380736296099, -122.4889353104645 38.113414362960626, -122.52864831050148 38.150671362995325, -122.4745453104511 38.08545736293459, -122.5064503104808 38.01865236287237, -122.44178131042058 37.98295536283913, -122.49002231046552 37.931767362791454, -122.45825931043592 37.8342213627006, -122.51572531048944 37.822106362689325, -122.66639231062976 37.90691936276831, -122.69172331065336 37.89439236275665, -122.82219331077488 38.007672362862145, -122.92118131086706 38.03062336288352, -122.95659731090004 37.990757362846395, -123.01073031095046 37.99446636284985, -122.93927231088391 38.15326536299774, -122.99464931093547 38.29722736313181, -123.0487963109859 38.294141363128944, -123.12154431105367 38.43360036325882, -123.29794131121794 38.54733336336474, -123.52388631142837 38.75765936356063, -123.72190131161278 38.92477136371626, -123.68344731157697 39.04180636382526, -123.8137183116983 39.34780636411024, -123.75465131164329 39.551879364300305, -123.78353231167019 39.687108364426244, -123.83810831172102 39.826397364555966, -124.0076383118789 39.998580364716325, -124.09456031195985 40.10037736481113, -124.34530631219337 40.252430364952744, -124.33610731218481 40.327555365022704, -124.39263831223747 40.43523736512299, -124.10944631197371 40.97821136562868, -124.14970331201121 41.12883236576896, -124.07160231193848 41.31383236594125, -124.05795431192576 41.458164366075664, -124.1442103120061 41.72719336632622, -124.2430993120982 41.77675736637238, -124.20750131206503 41.84832736643904, -124.20644431206405 41.997648366578105, -123.81914631170335 41.99294836657373, -123.51320431141842 41.99783336657828, -123.22210231114731 42.00219136658233, -122.28470531027429 42.000764366581, -121.441509309489 41.99433436657502, -120.87190830895852 41.98767236656881, -119.9934593081404 41.98920536657024, -119.99632430814307 41.17756636581434, -119.99616530814293 39.72061036445744, -119.99601130814278 39.44350136419936, -119.99530430814212 39.31154536407647, -119.99552730814233 39.15871336393414, -119.99454130814141 39.10613136388517, -119.99515030814197 39.06349136384546, -119.99525430814208 38.99410636378083, -119.88934130804344 38.92225136371391, -119.57568730775132 38.70291036350964, -119.3188253075121 38.52710836334591, -119.15245030735716 38.411801363238524, -118.4174193066726 37.886676362749455, -117.83868630613361 37.45729836234957, -117.16042330550194 36.95959436188605, -115.88576930431482 36.0012263609935, -115.62619730407307 35.795698360802085, -114.62106830313698 34.99891436006002, -114.63227630314742 34.997651360058846, -114.62100730313692 34.943609360008516, -114.63047530314574 34.919501359986064, -114.62726330314274 34.875533359945116, -114.5702173030896 34.83186035990444, -114.54204030306337 34.759958359837476, -114.52555330304801 34.74891135982719, -114.49780430302218 34.74475735982332, -114.46563730299222 34.70987335979083, -114.42227030295183 34.61089535969865, -114.43430230296303 34.59896335968754, -114.40974230294016 34.58372335967334, -114.3768283029095 34.536563359629426, -114.38386230291606 34.47708535957403, -114.3765073029092 34.45967935955782, -114.33263630286835 34.454873359553346, -114.30286530284062 34.43575435953554, -114.2833943028225 34.41206935951348, -114.2578423027987 34.40548835950735, -114.18208030272814 34.36520635946984, -114.15341530270143 34.33644735944305, -114.13412730268348 34.31454835942266, -114.12523030267519 34.272621359383606, -114.14991230269818 34.266979359378354, -114.23577630277813 34.186222359303144, -114.28536830282434 34.17123135928918, -114.32279930285918 34.1412973592613, -114.41016630294055 34.10265435922531, -114.42402930295347 34.07833235920266, -114.42898030295808 34.02984435915751, -114.51820830304118 33.96506335909717, -114.5256323030481 33.95241335908539, -114.49818830302253 33.925036359059895, -114.52096230304375 33.862926359002046, -114.51172230303513 33.84196535898253, -114.5211223030439 33.82603135896769, -114.50455830302846 33.7717143589171, -114.5102873030338 33.74320035889055, -114.49567630302019 33.70836935885811, -114.53643330305815 33.682735358834236, -114.52526330304775 33.66550435881818, -114.52717030304953 33.622136358777794, -114.5402473030617 33.58050735873903, -114.52942030305162 33.56007335872, -114.5870613031053 33.50944535867285, -114.59808630311556 33.48612735865113, -114.621089303137 33.468599358634805, -114.63057330314584 33.439425358607636, -114.64509230315934 33.419116358588724, -114.7249363032337 33.41105935858121, -114.70360330321384 33.352418358526606, -114.73542730324348 33.3057083584831, -114.67769330318971 33.268016358447994, -114.68771130319904 33.23925835842121, -114.6800513031919 33.224595358407555, -114.6781203031901 33.16725035835415, -114.70946330321931 33.122375358312354, -114.71135530322107 33.09538235828722, -114.66395130317692 33.038922358234636, -114.6451593031594 33.044412358239754, -114.63396730314898 33.03356735822965, -114.6099253031266 33.027002358223534, -114.55908930307925 33.03678235823264, -114.52062730304343 33.02770735822419, -114.46838730299478 32.9777893581777, -114.47644430300228 32.9359083581387, -114.4614363029883 32.84542235805443, -114.52621930304863 32.80991235802135, -114.53507730305688 32.788047358000995, -114.53009530305225 32.7714113579855, -114.54318730306444 32.77123235798533, -114.54300430306427 32.76074935797557, -114.56158230308156 32.760753357975574, -114.56075130308079 32.74893635796457, -114.57221030309148 32.74882935796447, -114.57195930309123 32.73743935795386, -114.60352230312063 32.73588635795241, -114.60394230312102 32.72628535794347, -114.69404030320493 32.74142535795757, -114.71269530322232 32.7350133579516, -114.72204930323102 32.720857357938414, -116.10697330452084 32.619470357843994, -117.12809830547184 32.53578135776605, -117.19981230553861 32.71844235793617, -117.12060630546486 32.60287235782853, -117.12452930546851 32.67893135789937, -117.19877430553765 32.73893435795525, -117.24820730558369 32.68009435790045, -117.28532530561826 32.85122035805983, -117.2548683055899 32.88817235809424, -117.3284393056584 33.11148235830221, -117.4101443057345 33.2340893584164, -117.59733130590884 33.39453435856583, -118.10671730638325 33.74756435889461, -118.24661630651353 33.77392535891916, -118.28689230655104 33.703907358853954, -118.40508930666113 33.738450358886126, -118.42895430668335 33.77544835892058, -118.38817530664537 33.812324358954925, -118.41211030666766 33.88296735902071, -118.5418543067885 34.0372513591644, -118.78811530701785 34.018257359146716, -118.9393603071587 34.04008135916704, -119.21633430741664 34.146340359266, -119.26676730746362 34.238098359351454, -119.48301030766501 34.374862359478826, -119.60629330777982 34.41643535951755, -119.8694333080249 34.404796359506705, -120.01149530815721 34.46166135955966, -120.14016330827704 34.4719023595692, -120.45620230857136 34.44249935954182, -120.50940630862092 34.52137435961528, -120.64129330874374 34.57233735966274, -120.60162730870681 34.704022359785384, -120.63167330873479 34.75990635983743, -120.60815930871289 34.85561535992656, -120.6659463087667 34.90380935997145, -120.64433930874658 34.97263736003555, -120.6167653087209 35.07481636013071, -120.63841030874106 35.140028360191444, -120.86134230894868 35.209253360255914, -120.8835973089694 35.25940536030262, -120.84999630893812 35.36453736040053, -120.87521230896161 35.42776536045942, -120.99194830907032 35.456581360486254, -121.14655930921431 35.62932236064714, -121.27026130932953 35.663535360679, -121.3290803093843 35.80103436080705, -121.44554130949277 35.879850360880454, -121.68981130972026 36.18113436116105, -121.88227730989951 36.306943361278215, -121.9552833099675 36.582773361535104, -121.91142030992665 36.6404273615888, -121.86738130988563 36.60771336155833, -121.80856430983084 36.64822136159606, -121.76139130978692 36.8189903617551, -121.79171230981515 36.85032736178428, -121.88353630990068 36.96209836188838, -122.06133231006626 36.94750636187479, -122.17344231017067 37.00086936192449, -122.2746333102649 37.106782362023125, -122.4146383103953 37.23912636214638, -122.38925331037166 37.35241236225188, -122.44146331042029 37.479482362370234, -122.5056823104801 37.52290436241067, -122.49820831047313 37.70025436257584, -122.49821431047314 37.78294236265285, -122.40093131038253 37.808625362676764, -122.34647131033182 37.725223362599095, -122.36633131035032 37.702450362577885, -122.35967131034411 37.60978636249159, -122.08930831009232 37.452541362345144, -121.97533730998617 37.46072036235276, -122.09302331009577 37.49731336238683, -122.19973231019516 37.735201362608386, -122.3124133103001 37.77846236264868, -122.30755331029557 37.8917633627542, -122.37149731035512 37.90934536277057, -122.37968431036275 37.97344536283027, -122.29552231028437 38.01479536286878, -122.00062331000973 38.05715136290823, -121.69895630972877 38.023496362876884, -121.65775030969039 38.08610136293519, -121.57688530961508 38.09413836294267, -121.56954530960826 38.063667362914295, -121.5474733095877 38.06347336291411, -121.57283430961131 38.113798362960985, -121.55414930959391 38.13736136298293, -121.6595813096921 38.09646536294484, -121.66522030969736 38.16928536301266)), ((-119.86782330802339 34.07522835919977, -119.66792230783722 34.02134335914959, -119.57258930774844 34.05578135918166, -119.52309530770233 34.034590359161925, -119.5393773077175 34.00649635913576, -119.71253930787879 33.96528435909738, -119.84727530800426 33.968416359100296, -119.88906130804318 34.004669359134056, -119.87398730802914 34.0318753591594, -119.92769030807915 34.05918035918482, -119.86782330802339 34.07522835919977)), ((-120.16738630830238 33.92416235905908, -120.23854830836866 34.01088535913985, -120.04680130819008 34.04110535916799, -119.9633863081124 33.94776335908106, -120.10917930824817 33.89481435903175, -120.16738630830238 33.92416235905908)), ((-118.59478030683778 33.48081835864618, -118.36239530662135 33.41101135858117, -118.2945913065582 33.33444835850987, -118.30403630656701 33.30749435848476, -118.45538630670796 33.324786358500866, -118.48134230673213 33.41955235858913, -118.55643430680206 33.434482358603034, -118.59478030683778 33.48081835864618)), ((-118.3509583066107 32.81919535803, -118.42010630667511 32.806114358017815, -118.51167730676039 32.892076358097874, -118.59951730684219 33.02102235821796, -118.5714863068161 33.03597135823189, -118.54158530678825 32.98738435818664, -118.3509583066107 32.81919535803))) +OH Ohio MULTIPOLYGON (((-83.27275527394158 38.609257363422415, -83.29004327395768 38.59663836341066, -83.30653127397304 38.596317363410364, -83.32032527398589 38.60656336341991, -83.33002327399491 38.63198836344358, -83.37142227403348 38.654997363465014, -83.45361627411002 38.66377436347319, -83.5000732741533 38.69013736349774, -83.52655627417795 38.696111363503306, -83.61837827426346 38.67797236348641, -83.63324127427731 38.664972363474305, -83.64318927428657 38.63586236344719, -83.65575527429827 38.62388036343603, -83.67853027431948 38.620928363433286, -83.71282527435143 38.6355533634469, -83.77022327440488 38.650819363461125, -83.79046527442374 38.69384436350119, -83.83753227446758 38.71188036351799, -83.85755227448621 38.74491836354876, -83.91253927453742 38.757960363560905, -83.96216327458365 38.77764736357924, -84.05380127466898 38.76373536356628, -84.08886727470164 38.76550436356793, -84.1767522747835 38.78849836358935, -84.22870227483187 38.81269036361188, -84.23529427483801 38.874555363669494, -84.26152527486245 38.917477363709466, -84.2901362748891 38.944538363734665, -84.31331527491068 39.01407436379943, -84.34577927494091 39.03781236382154, -84.39131227498332 39.03574436381962, -84.4197402750098 39.04733736383041, -84.42568327501533 39.08472436386523, -84.44491827503325 39.11182736389047, -84.49205327507714 39.107363363886314, -84.51530127509879 39.09419536387405, -84.59306827517122 39.07026536385176, -84.62264827519877 39.074934363856116, -84.66748727524053 39.08962436386979, -84.74287527531074 39.14206336391863, -84.78992727535456 39.107033363886, -84.81148027537463 39.102585363881865, -84.81207027537518 39.30302936406854, -84.81202527537513 39.312333364077205, -84.81110527537429 39.513163364264244, -84.81103727537422 39.56405036431164, -84.80869627537204 39.73329936446926, -84.80614927536966 39.9171663646405, -84.80356427536726 40.013990364730674, -84.79538827535964 40.3195003650152, -84.79455627535887 40.35305036504645, -84.79325227535766 40.588738365265954, -84.79306127535747 40.72886036539645, -84.79102327535558 40.93770836559095, -84.79052727535512 40.98834136563811, -84.7915862753561 41.25313236588472, -84.79097527535554 41.28381836591329, -84.79189727535639 41.427899366047484, -84.7913702753559 41.53049236614303, -84.79037727535497 41.69749436629856, -84.38439327497687 41.70715036630755, -84.35920827495342 41.708039366308384, -83.86863927449654 41.715993366315786, -83.76395427439904 41.71704236631676, -83.4826912741371 41.725130366324294, -83.15374627383075 41.62608936623206, -83.00343327369076 41.538193366150196, -82.79583027349742 41.537648366149696, -82.78470727348706 41.50741736612154, -83.07039827375313 41.45611036607376, -82.90893227360274 41.42946836604894, -82.71694627342394 41.45052436606855, -82.54883727326738 41.39133736601343, -82.34138227307417 41.43150136605084, -82.01560527277077 41.51531036612889, -81.96190827272076 41.50191836611641, -81.73850227251269 41.49115436610639, -81.47826327227033 41.6317163662373, -81.36226427216229 41.724283366323505, -80.9997722718247 41.85025736644083, -80.52059227137843 41.986872366568065, -80.52264427138034 41.850774366441314, -80.52392527138153 41.49510236611007, -80.51999627137788 41.48928836610465, -80.52293227138061 41.12962736576969, -80.52092427137873 40.8972703655533, -80.52030627137816 40.854168365513154, -80.52199927137974 40.63720336531109, -80.57441627142856 40.615974365291315, -80.61154927146313 40.620063365295124, -80.63733827148715 40.61398236528946, -80.66772727151546 40.582137365259804, -80.66862027151629 40.568279365246894, -80.63344027148352 40.53920436521982, -80.6252532714759 40.50446436518747, -80.60183027145409 40.480539365165185, -80.62784827147831 40.39822636508852, -80.62924427147962 40.388663365079616, -80.609247271461 40.37327536506528, -80.60451727145659 40.306244365002854, -80.61468827146606 40.27650236497516, -80.65011327149905 40.245679364946454, -80.67855727152555 40.19415136489846, -80.70089027154634 40.16818136487427, -80.70206527154744 40.154090364861155, -80.73823927158112 40.03566436475086, -80.73888827158173 39.983476364702256, -80.76306027160425 39.9470153646683, -80.75888727160036 39.92126636464432, -80.76812727160896 39.91331336463691, -80.79602127163494 39.91983936464299, -80.80784027164594 39.91590336463932, -80.81213627164995 39.90490136462908, -80.79084927163012 39.87234736459876, -80.79852527163727 39.85672236458421, -80.82591627166279 39.83966736456833, -80.81910427165644 39.80900136453977, -80.87072727170452 39.75999336449412, -80.85645327169122 39.73633536447209, -80.83229827166873 39.71883436445579, -80.83278727166919 39.703400364441414, -80.8634142716977 39.68035136441995, -80.8727462717064 39.66241136440324, -80.88111027171419 39.62408136436754, -80.91259027174351 39.607353364351965, -80.93261127176216 39.606941364351584, -80.98364627180968 39.581805364328176, -81.03256827185524 39.544142364293094, -81.03738327185972 39.532664364282404, -81.09824527191641 39.49645136424868, -81.11709027193396 39.467784364221984, -81.18056727199308 39.43780036419406, -81.20030527201146 39.41589636417366, -81.22494827203441 39.40835836416664, -81.23762127204621 39.388472364148114, -81.28401727208943 39.38707236414682, -81.33883627214048 39.35364436411568, -81.37591627217502 39.34569036410827, -81.43397827222908 39.40602336416446, -81.44795627224211 39.41102736416912, -81.46500827225799 39.40685836416524, -81.54064827232843 39.35270936411481, -81.55738827234403 39.332655364096134, -81.57268527235827 39.26591736403398, -81.66752227244659 39.27049536403824, -81.68952627246708 39.26022636402868, -81.69790327247489 39.22002036399123, -81.72307427249832 39.213268363984945, -81.75891027253171 39.17575136395, -81.74470327251848 39.12587536390355, -81.75356127252672 39.09472036387454, -81.78636127255727 39.07725736385828, -81.81956527258819 39.07701736385805, -81.82427327259258 39.06641636384818, -81.81346227258251 39.044108363827405, -81.77567927254732 39.016829363801996, -81.78173027255296 38.968529363757014, -81.76229727253485 38.9301813637213, -81.78322527255435 38.923562363715135, -81.82377727259211 38.94846736373833, -81.84091327260808 38.93788936372847, -81.86680027263219 38.88570936367988, -81.8926952726563 38.87345336366847, -81.9152482726773 38.884446363678705, -81.93185127269277 38.894742363688295, -81.8986082726618 38.9322243637232, -81.92783027268902 38.984271363771676, -81.93773327269824 38.991175363778105, -81.97518727273312 38.99300636377981, -81.99967827275593 39.01526136380053, -82.04288527279617 39.01413936379949, -82.05850327281073 38.989065363776135, -82.08501627283542 38.97719836376508, -82.10120727285049 38.95209436374171, -82.13931727288599 38.899398363692626, -82.1460992728923 38.838787363636186, -82.19772227294038 38.80461936360436, -82.2167502729581 38.77893936358045, -82.18397327292757 38.71030336351652, -82.18897727293223 38.677893363486334, -82.17365727291796 38.63219036344377, -82.18424727292783 38.59503236340917, -82.21365927295523 38.58483536339967, -82.27089727300853 38.594890363409036, -82.2899712730263 38.580081363395244, -82.3142402730489 38.46522936328828, -82.3291792730628 38.4419523632666, -82.39476427312388 38.42847036325405, -82.41489127314263 38.430392363255834, -82.49498727321723 38.40583236323296, -82.54754827326617 38.400511363228006, -82.57541927329214 38.40390236323117, -82.58660427330256 38.412519363239184, -82.61374327332783 38.472668363295206, -82.66976027337999 38.50214036332265, -82.69557927340405 38.539142363357115, -82.74194527344723 38.553066363370085, -82.8023642735035 38.55728836337401, -82.82699227352643 38.571662363387404, -82.85385627355146 38.60045836341422, -82.8600292735572 38.65239536346259, -82.8800112735758 38.683301363491374, -82.87319127356946 38.71900636352463, -82.89031227358541 38.74277536354676, -82.92130427361427 38.74641436355015, -82.97248327366194 38.71964336352522, -83.02694327371265 38.71451236352044, -83.06088027374426 38.68572636349363, -83.11124327379116 38.66483336347417, -83.14315027382088 38.619339363431806, -83.181939273857 38.60984136342296, -83.24501327391575 38.6241723634363, -83.27275527394158 38.609257363422415))) +IL Illinois MULTIPOLYGON (((-88.07159127841085 37.51103836239962, -88.08791027842605 37.47632136236729, -88.3117422786345 37.44290336233617, -88.35921427867872 37.40936136230492, -88.41989327873523 37.42034336231515, -88.46768627877974 37.40080836229696, -88.51136527882042 37.29690536220019, -88.5014692788112 37.25783636216381, -88.45073927876396 37.20572436211528, -88.4225552787377 37.15696536206986, -88.45051127876374 37.09872736201562, -88.47684127878827 37.07220036199092, -88.4907432788012 37.06823736198723, -88.51731727882596 37.06482636198405, -88.55931927886508 37.072871361991545, -88.61426827891626 37.10910236202528, -88.68842127898532 37.13546536204984, -88.73916627903257 37.14123636205521, -88.74656027903946 37.152161362065385, -88.86335027914824 37.20224736211203, -88.93256727921269 37.218459362127135, -88.9932402792692 37.22008836212865, -89.06510427933613 37.18591136209682, -89.11689327938436 37.112188362028164, -89.14641927941186 37.09323736201051, -89.16962127943347 37.064287361983546, -89.17440427943792 37.02576236194767, -89.15031627941549 36.99849136192228, -89.1299302793965 36.98816536191266, -89.19358427945578 36.98682236191141, -89.21012627947118 37.029023361950706, -89.23775327949691 37.04178336196259, -89.26413027952148 37.087174362004866, -89.28431127954028 37.0912943620087, -89.30336927955803 37.08543436200324, -89.309777279564 37.06095936198045, -89.26431927952166 37.02778336194955, -89.26207627951958 37.00873636193181, -89.28284327953891 36.999257361922986, -89.31105827956519 37.00973236193274, -89.38302827963221 37.04926336196956, -89.38007027962946 37.099133362016005, -89.42388027967026 37.13725336205151, -89.44060627968584 37.16536736207769, -89.46830427971163 37.22431636213258, -89.46539827970894 37.253781362160026, -89.48968327973155 37.25605136216214, -89.51397627975417 37.276452362181146, -89.51397727975417 37.30501236220775, -89.50067227974178 37.32949136223054, -89.46883327971213 37.33945936223982, -89.43582827968139 37.35576636225501, -89.42766527967379 37.411068362306516, -89.45371427969805 37.45323536234579, -89.49487727973639 37.49177536238168, -89.5250682797645 37.5720063624564, -89.5134632797537 37.61597836249735, -89.51927727975911 37.65042536252943, -89.5134712797537 37.679890362556876, -89.5216192797613 37.69484836257081, -89.58153527981709 37.706155362581335, -89.66656127989627 37.74550536261798, -89.67596027990503 37.78402136265386, -89.69115827991918 37.804846362673246, -89.728551279954 37.84104336270696, -89.85182228006882 37.90511536276664, -89.8611532800775 37.90553936276703, -89.86692128008288 37.89192836275435, -89.9006592801143 37.87595636273947, -89.93798328014906 37.87809736274147, -89.97902328018728 37.91193736277299, -89.95833828016802 37.96368636282118, -90.01092228021699 37.96937136282648, -90.04203528024597 37.99325836284872, -90.11945328031807 38.0323253628851, -90.13482728033239 38.054004362905296, -90.2076442804002 38.08895936293785, -90.25417728044354 38.122223362968825, -90.28975328047667 38.16687036301041, -90.33683528052052 38.188767363030806, -90.36488928054665 38.234353363073254, -90.36946628055091 38.32361336315639, -90.35880728054099 38.36538336319529, -90.33972528052321 38.39090036321905, -90.30195828048804 38.42741036325306, -90.26589928045445 38.518741363338115, -90.26134428045022 38.53282036335123, -90.24105728043132 38.5628573633792, -90.18381928037802 38.61032236342341, -90.18368928037789 38.65882236346857, -90.20235028039527 38.70041336350731, -90.19668128039 38.72401536352929, -90.1635072803591 38.77314736357505, -90.13528528033281 38.78553336358658, -90.12183428032029 38.800559363600584, -90.11322828031227 38.83051536362848, -90.13292028033061 38.85307936364949, -90.2440382804341 38.91455736370675, -90.2790432804667 38.924765363716254, -90.3198532805047 38.92495636371643, -90.41318628059163 38.962378363751284, -90.4699572806445 38.959227363748354, -90.53054528070092 38.89165936368542, -90.57044828073809 38.87137736366653, -90.62733528079107 38.88084536367535, -90.66899928082987 38.93530336372607, -90.70619328086451 39.03784136382157, -90.70771228086592 39.05822736384055, -90.69052228084992 39.093749363873634, -90.71686028087444 39.144259363920675, -90.71831728087581 39.19592136396879, -90.73246228088898 39.224794363995684, -90.73820728089433 39.24785836401716, -90.77946928093276 39.29685036406279, -90.85062428099903 39.35049936411275, -90.94802428108973 39.40063236415944, -91.03647528117212 39.44445836420026, -91.06452128119822 39.4740303642278, -91.09375028122545 39.52897336427897, -91.15632928128373 39.55263936430101, -91.20338928132756 39.60006736434518, -91.31781228143413 39.68596236442518, -91.36723728148016 39.72468536446124, -91.37356928148606 39.76131836449535, -91.38186328149378 39.803817364534936, -91.44934028155662 39.86309436459014, -91.4511412815583 39.885288364610815, -91.43420328154252 39.90187436462626, -91.43054028153911 39.921882364644894, -91.4473952815548 39.94611036466746, -91.4874432815921 40.00579836472305, -91.50416028160768 40.06675736477982, -91.51628428161897 40.134589364842995, -91.50670128161003 40.200504364904376, -91.49908728160295 40.2514223649518, -91.48684928159155 40.30966836500605, -91.44874728155607 40.37194636506405, -91.41896828152834 40.38691936507799, -91.38590928149755 40.39240536508311, -91.37290828148544 40.403032365093, -91.38555128149721 40.447294365134226, -91.37494628148734 40.50369736518675, -91.38225528149414 40.52853836520988, -91.4130262815228 40.54803436522804, -91.41127128152117 40.5730123652513, -91.3757622814881 40.60348036527968, -91.26221128138235 40.639587365313304, -91.21506028133842 40.64385936531728, -91.16264428128962 40.65635236532892, -91.12930328125856 40.68218936535298, -91.12013228125002 40.70544336537464, -91.09289528122466 40.761587365426934, -91.08905028122108 40.833767365494154, -91.0493532811841 40.87962336553686, -90.98341928112269 40.923965365578155, -90.96085128110168 40.9505413656029, -90.95479428109604 41.07039736571453, -90.95793028109895 41.10439336574619, -90.99048528112928 41.14440436578346, -91.01840228115528 41.16585736580343, -91.05646628119072 41.17629036581315, -91.10167228123282 41.231552365864616, -91.1024962812336 41.267848365898416, -91.07342928120653 41.33492536596089, -91.05593528119023 41.40140736602281, -91.02763728116388 41.42353636604342, -91.00084228113893 41.43111236605047, -90.94980028109138 41.4212633660413, -90.84428428099312 41.44465236606308, -90.78004228093329 41.44985236606793, -90.70835428086653 41.450093366068145, -90.65892928082049 41.46235036607956, -90.6008382807664 41.50961836612359, -90.54097528071064 41.52600336613885, -90.45512628063068 41.527579366140316, -90.43509828061204 41.543612366155244, -90.42313528060089 41.56730536617731, -90.34849428053138 41.586882366195546, -90.33947628052297 41.602831366210395, -90.34126228052465 41.64912236625351, -90.32615728051057 41.7227683663221, -90.30501628049089 41.756497366353514, -90.25543828044471 41.78176936637705, -90.19596528038932 41.80616736639977, -90.15464528035083 41.93080236651585, -90.14279628033981 41.98398936656538, -90.15066328034713 42.03345336661145, -90.16822628036348 42.061066366637164, -90.16677628036214 42.103767366676934, -90.17621428037093 42.120524366692536, -90.19170228038536 42.12271036669458, -90.231063280422 42.159741366729065, -90.32373028050831 42.197337366764074, -90.36785828054941 42.210226366776084, -90.40730128058614 42.24266136680629, -90.41811228059622 42.26393936682611, -90.42780928060525 42.34064536689754, -90.4417252806182 42.360083366915646, -90.49117128066426 42.388791366942385, -90.56371128073181 42.421843366973164, -90.60595528077116 42.460564367009226, -90.64847328081075 42.47564736702327, -90.65189928081395 42.49470036704102, -90.63845628080142 42.509363367054675, -90.42010328059807 42.50836536705374, -89.92369128013574 42.504115367049785, -89.8347392800529 42.50346836704918, -89.4006132796486 42.49750236704362, -89.35955927961037 42.49791736704401, -88.93918727921886 42.49087936703746, -88.76505827905669 42.4909223670375, -88.70662327900227 42.48967136703634, -88.2979892786217 42.49198836703849, -88.19479027852559 42.489631367036296, -87.79738227815547 42.48915236703585, -87.83701527819238 42.31423536687295, -87.76030227812093 42.156482366726024, -87.6706062780374 42.059852366636036, -87.61267627798345 41.84736536643814, -87.52990627790636 41.7236263663229, -87.53268627790895 41.46975036608646, -87.53248427790876 41.30133836592961, -87.5317652779081 41.173790365810824, -87.53205227790836 41.00996336565825, -87.53269627790895 40.7454483654119, -87.53719127791315 40.494646365178326, -87.53569527791176 40.48328236516774, -87.53535727791144 40.16623136487246, -87.53579327791185 39.88733936461272, -87.53559727791166 39.60937636435385, -87.53858927791445 39.47748336423101, -87.54023727791598 39.35056236411281, -87.5976882779695 39.338305364101394, -87.62526227799518 39.30744136407265, -87.61064327798155 39.297699364063575, -87.61582427798638 39.28145636404845, -87.60692027797809 39.25820236402679, -87.5845882779573 39.24879136401803, -87.58861727796103 39.20850536398051, -87.59423227796627 39.19816736397088, -87.60795027797904 39.19610736396896, -87.64428227801288 39.16854636394329, -87.67035227803716 39.14671936392297, -87.65948027802703 39.13069336390804, -87.66228727802965 39.113509363892035, -87.63169327800117 39.10398336388317, -87.63089227800042 39.08901536386922, -87.61203127798285 39.08464736386516, -87.58534327795799 39.06247736384451, -87.58177227795467 38.9957853637824, -87.59188127796408 38.99412636378085, -87.54792727792315 38.97712036376501, -87.5334922779097 38.96374636375256, -87.53020427790663 38.93196336372296, -87.53922227791504 38.90490536369776, -87.55908127793353 38.86985636366512, -87.55052927792556 38.85793636365402, -87.50790927788587 38.79560536359597, -87.51904827789625 38.7767453635784, -87.50802327788598 38.7697683635719, -87.50833627788627 38.73668036354108, -87.5439132779194 38.68602136349391, -87.58850127796093 38.67221536348105, -87.62521527799512 38.64285836345371, -87.62867127799835 38.62296436343518, -87.61985127799014 38.599256363413105, -87.64061927800947 38.593225363407484, -87.65288027802089 38.57391936338951, -87.6729692780396 38.54747136336488, -87.65141527801953 38.51541736333502, -87.65355927802152 38.50049036332112, -87.67993527804609 38.50405336332444, -87.6928442780581 38.48158036330351, -87.75612427811704 38.46617236328916, -87.75868827811944 38.45714336328075, -87.73898027810108 38.44552736326993, -87.7484562781099 38.418011363244304, -87.78404827814305 38.378170363207204, -87.83453327819007 38.35257036318336, -87.85011227820458 38.286144363121494, -87.86303627821661 38.28540836312081, -87.87406927822688 38.31683436315008, -87.88347627823565 38.31559836314892, -87.88849627824032 38.30070536313505, -87.9141392782642 38.28109436311679, -87.91368127826378 38.302392363136626, -87.92595027827521 38.304818363138885, -87.98005027832559 38.241131363079575, -87.98604027833117 38.234860363073736, -87.97796027832365 38.20076036304197, -87.93231927828114 38.17117736301442, -87.93202127828086 38.15757336300175, -87.95059927829816 38.13695936298255, -87.97353427831952 38.13180536297776, -88.01857927836147 38.10334836295125, -88.01236127835568 38.09239236294105, -87.96489727831148 38.09679436294515, -87.97532627832119 38.073352362923316, -88.03476127837655 38.05413036290541, -88.04312327838433 38.04516636289706, -88.04150627838283 38.03834936289071, -88.0217292783644 38.03357736288628, -88.02924427837141 38.00828136286272, -88.02173727836441 37.97510136283181, -88.04254327838379 37.95631036281431, -88.0418032783831 37.93454336279404, -88.06465427840439 37.92982836278965, -88.07897527841773 37.94404536280289, -88.08403327842244 37.92370536278395, -88.03047327837255 37.917636362778296, -88.02662027836897 37.90580336276727, -88.04490027838598 37.89604936275819, -88.10011627843741 37.906215362767654, -88.10149027843869 37.89535136275754, -88.07577027841474 37.86785436273193, -88.0342722783761 37.843791362709524, -88.04216927838344 37.82756736269441, -88.08929727842734 37.83129436269788, -88.08606227842432 37.81765736268518, -88.03560727837733 37.805728362674074, -88.0725042784117 37.73544636260861, -88.13367027846866 37.70079036257634, -88.15940427849263 37.660733362539034, -88.15766427849101 37.628526362509035, -88.13420227846916 37.583620362467215, -88.07159127841085 37.51103836239962))) +DC District of Columbia MULTIPOLYGON (((-77.007930268107 38.96666736375528, -76.91090426801665 38.89010036368397, -77.04514726814168 38.7882343635891, -77.03494626813217 38.81402836361312, -77.04488826814143 38.82947736362751, -77.04010426813697 38.838526363635935, -77.03877726813573 38.862543363658304, -77.06758626816257 38.88621236368035, -77.07864926817287 38.91571136370783, -77.12232826821355 38.93217136372316, -77.04208826813883 38.99354136378031, -77.007930268107 38.96666736375528))) +DE Delaware MULTIPOLYGON (((-75.70707326689549 38.5575913633743, -75.71071226689888 38.649665363460045, -75.7245902669118 38.83028336362826, -75.75257626693787 39.141660363918255, -75.761313266946 39.24786436401716, -75.7643192669488 39.29595936406196, -75.77235326695629 39.38311836414313, -75.79109426697374 39.72386636446048, -75.77492726695868 39.72455236446112, -75.74559226693137 39.77492936450803, -75.69477126688403 39.820457364550435, -75.64399426683674 39.83830636456706, -75.58344326678035 39.84011936456875, -75.46998626667468 39.826547364556106, -75.42046826662857 39.798983364530436, -75.41175426662045 39.78977036452186, -75.42764726663525 39.77824336451112, -75.46039426666576 39.763362364497254, -75.47476826667913 39.741832364477204, -75.47597426668027 39.72008436445695, -75.48928026669266 39.714858364452084, -75.61037426680544 39.61290536435713, -75.56264326676099 39.56683536431423, -75.5898362667863 39.46388036421834, -75.51521726671682 39.367051364128166, -75.40212226661149 39.25775036402637, -75.39736826660706 39.07314936385445, -75.32448826653918 39.012499363797964, -75.30753526652339 38.94602436373606, -75.19057126641447 38.80878236360824, -75.08276226631405 38.799924363599985, -75.04562326627946 38.449602363273726, -75.06792426630024 38.450075363274166, -75.09272126632332 38.450563363274625, -75.34984226656279 38.45532236327905, -75.69880226688778 38.46318236328637, -75.70707326689549 38.5575913633743))) +WV West Virginia MULTIPOLYGON (((-79.23166327017802 38.48049636330249, -79.27235927021592 38.43730636326227, -79.3169992702575 38.412633363239294, -79.48634727041521 38.46214536328541, -79.53651327046194 38.55380536337077, -79.64240627056056 38.592355363406675, -79.66943027058572 38.550177363367396, -79.66561427058217 38.520778363340014, -79.69265327060735 38.500354363320994, -79.68409227059938 38.43023836325569, -79.72003527063285 38.39468536322258, -79.73282927064477 38.351840363182674, -79.76400427067381 38.353991363184676, -79.80032927070764 38.31432636314774, -79.80277827070991 38.29887036313335, -79.78651127069476 38.28511836312054, -79.79362227070139 38.26866636310521, -79.83115227073634 38.25027936308809, -79.91616127081551 38.17926436302196, -79.91034027081008 38.16260636300644, -79.93532727083335 38.12130836296798, -79.9282922708268 38.10331136295122, -79.95751327085402 38.06736536291774, -79.96649327086239 38.038621362890964, -80.00049927089405 37.989870362845565, -80.05480727094464 37.95564836281369, -80.10649027099277 37.91465836277552, -80.11850727100396 37.891278362753745, -80.1600052710426 37.87722836274066, -80.17222027105399 37.86018436272479, -80.1715942710534 37.84296836270875, -80.22373527110196 37.80236436267094, -80.220546271099 37.778858362649046, -80.25468927113079 37.757232362628905, -80.25003327112645 37.726052362599866, -80.30310927117588 37.68267136255946, -80.29570027116898 37.67150236254906, -80.30486227117751 37.65224636253113, -80.30093227117385 37.64054736252024, -80.25442227113054 37.640703362520384, -80.21892827109748 37.62426636250507, -80.24639327112307 37.59689636247958, -80.31672127118856 37.566718362451475, -80.32590627119711 37.53340136242045, -80.30830327118072 37.52837036241576, -80.28073027115504 37.53625936242311, -80.28791627116173 37.51115136239973, -80.34751127121723 37.49117736238112, -80.35215727122156 37.47610136236708, -80.38830627125523 37.46572536235742, -80.42537827128976 37.43490636232872, -80.47476427133574 37.422821362317464, -80.48679727134696 37.43386036232774, -80.48788127134796 37.460597362352644, -80.50876527136741 37.4750473623661, -80.54275527139907 37.46921036236066, -80.59749127145005 37.4460543623391, -80.70520727155036 37.38837836228538, -80.72973727157321 37.39271936228943, -80.74632427158866 37.38773736228478, -80.74768927158993 37.37908136227672, -80.76299527160418 37.37141436226958, -80.77002227161073 37.386195362283345, -80.79924427163795 37.391753362288526, -80.79961127163828 37.413062362308374, -80.8505252716857 37.42346036231805, -80.87735827171069 37.38869736228568, -80.84841827168374 37.35094336225052, -80.85542927169027 37.33941136223978, -80.93418327176362 37.30137036220435, -80.96789227179501 37.291791362195426, -80.97853527180492 37.29647536219979, -80.98593627181181 37.30624136220889, -81.02493227184813 37.2860613621901, -81.14073727195598 37.27492536217972, -81.22293327203253 37.2402143621474, -81.31187327211536 37.29370736219721, -81.35879527215907 37.338952362239354, -81.39094627218901 37.31115436221346, -81.40334427220056 37.282624362186894, -81.47536027226762 37.254422362160625, -81.49553327228641 37.252850362159165, -81.50553627229573 37.234372362141954, -81.55665427234334 37.20635236211586, -81.66588527244507 37.20491036211452, -81.70172827247845 37.23543436214294, -81.73845627251265 37.250491362156964, -81.75185427252514 37.272257362177236, -81.79265927256313 37.287153362191106, -81.81538127258429 37.27953936218402, -81.8388892726062 37.285505362189575, -81.85868127262462 37.30703136220963, -81.86381527262941 37.32545636222678, -81.89715827266046 37.34058836224088, -81.92682227268809 37.37172736226988, -81.92073327268241 37.415516362310655, -81.98820227274524 37.46658636235822, -81.97642227273428 37.482905362373415, -81.9479932727078 37.49302636238285, -81.93545027269612 37.50664436239553, -81.95957527271858 37.531172362418374, -81.97657427273442 37.543253362429624, -82.02635127278077 37.53051936241776, -82.049134272802 37.55145336243726, -82.05566527280808 37.52534236241294, -82.08439227283483 37.548310362434336, -82.14250927288896 37.557452362442845, -82.1465222728927 37.56592136245074, -82.13747327288426 37.569896362454436, -82.13178127287897 37.590537362473654, -82.1593102729046 37.59356936247649, -82.18554927292904 37.64066736252035, -82.20544027294757 37.62401636250484, -82.23837127297824 37.65677636253535, -82.29562527303156 37.66905836254679, -82.32940127306301 37.74417136261674, -82.3194982730538 37.75842636263002, -82.33984627307274 37.78440036265421, -82.40580527313418 37.81171936267965, -82.4215082731488 37.87235636273613, -82.43760727316379 37.89485436275707, -82.5002092732221 37.922262362782604, -82.49339627321575 37.94251336280146, -82.48017427320343 37.95439636281253, -82.47577927319934 37.97590736283256, -82.52467827324487 38.01566236286959, -82.5932082733087 38.10996236295741, -82.64612827335799 38.14633036299128, -82.64715827335895 38.169435363012795, -82.61376327332785 38.178095363020866, -82.60664527332122 38.19382636303551, -82.61622827333014 38.23881136307741, -82.58911327330489 38.245388363083535, -82.57457927329135 38.25597336309339, -82.58004927329645 38.29251036312742, -82.57229827328923 38.30781136314167, -82.59823927331338 38.36846436319816, -82.58660427330256 38.412519363239184, -82.57541927329214 38.40390236323117, -82.54754827326617 38.400511363228006, -82.49498727321723 38.40583236323296, -82.41489127314263 38.430392363255834, -82.39476427312388 38.42847036325405, -82.3291792730628 38.4419523632666, -82.3142402730489 38.46522936328828, -82.2899712730263 38.580081363395244, -82.27089727300853 38.594890363409036, -82.21365927295523 38.58483536339967, -82.18424727292783 38.59503236340917, -82.17365727291796 38.63219036344377, -82.18897727293223 38.677893363486334, -82.18397327292757 38.71030336351652, -82.2167502729581 38.77893936358045, -82.19772227294038 38.80461936360436, -82.1460992728923 38.838787363636186, -82.13931727288599 38.899398363692626, -82.10120727285049 38.95209436374171, -82.08501627283542 38.97719836376508, -82.05850327281073 38.989065363776135, -82.04288527279617 39.01413936379949, -81.99967827275593 39.01526136380053, -81.97518727273312 38.99300636377981, -81.93773327269824 38.991175363778105, -81.92783027268902 38.984271363771676, -81.8986082726618 38.9322243637232, -81.93185127269277 38.894742363688295, -81.9152482726773 38.884446363678705, -81.8926952726563 38.87345336366847, -81.86680027263219 38.88570936367988, -81.84091327260808 38.93788936372847, -81.82377727259211 38.94846736373833, -81.78322527255435 38.923562363715135, -81.76229727253485 38.9301813637213, -81.78173027255296 38.968529363757014, -81.77567927254732 39.016829363801996, -81.81346227258251 39.044108363827405, -81.82427327259258 39.06641636384818, -81.81956527258819 39.07701736385805, -81.78636127255727 39.07725736385828, -81.75356127252672 39.09472036387454, -81.74470327251848 39.12587536390355, -81.75891027253171 39.17575136395, -81.72307427249832 39.213268363984945, -81.69790327247489 39.22002036399123, -81.68952627246708 39.26022636402868, -81.66752227244659 39.27049536403824, -81.57268527235827 39.26591736403398, -81.55738827234403 39.332655364096134, -81.54064827232843 39.35270936411481, -81.46500827225799 39.40685836416524, -81.44795627224211 39.41102736416912, -81.43397827222908 39.40602336416446, -81.37591627217502 39.34569036410827, -81.33883627214048 39.35364436411568, -81.28401727208943 39.38707236414682, -81.23762127204621 39.388472364148114, -81.22494827203441 39.40835836416664, -81.20030527201146 39.41589636417366, -81.18056727199308 39.43780036419406, -81.11709027193396 39.467784364221984, -81.09824527191641 39.49645136424868, -81.03738327185972 39.532664364282404, -81.03256827185524 39.544142364293094, -80.98364627180968 39.581805364328176, -80.93261127176216 39.606941364351584, -80.91259027174351 39.607353364351965, -80.88111027171419 39.62408136436754, -80.8727462717064 39.66241136440324, -80.8634142716977 39.68035136441995, -80.83278727166919 39.703400364441414, -80.83229827166873 39.71883436445579, -80.85645327169122 39.73633536447209, -80.87072727170452 39.75999336449412, -80.81910427165644 39.80900136453977, -80.82591627166279 39.83966736456833, -80.79852527163727 39.85672236458421, -80.79084927163012 39.87234736459876, -80.81213627164995 39.90490136462908, -80.80784027164594 39.91590336463932, -80.79602127163494 39.91983936464299, -80.76812727160896 39.91331336463691, -80.75888727160036 39.92126636464432, -80.76306027160425 39.9470153646683, -80.73888827158173 39.983476364702256, -80.73823927158112 40.03566436475086, -80.70206527154744 40.154090364861155, -80.70089027154634 40.16818136487427, -80.67855727152555 40.19415136489846, -80.65011327149905 40.245679364946454, -80.61468827146606 40.27650236497516, -80.60451727145659 40.306244365002854, -80.609247271461 40.37327536506528, -80.62924427147962 40.388663365079616, -80.62784827147831 40.39822636508852, -80.60183027145409 40.480539365165185, -80.6252532714759 40.50446436518747, -80.63344027148352 40.53920436521982, -80.66862027151629 40.568279365246894, -80.66772727151546 40.582137365259804, -80.63733827148715 40.61398236528946, -80.61154927146313 40.620063365295124, -80.57441627142856 40.615974365291315, -80.52199927137974 40.63720336531109, -80.52435727138193 40.47878436516355, -80.5235642713812 40.403033365092995, -80.52604527138351 40.16252136486901, -80.5249622713825 40.02282536473891, -80.52465027138221 39.95841936467892, -80.52426927138185 39.721209364458005, -80.42908227129321 39.719842364456724, -79.91826827081748 39.721667364458426, -79.76513227067485 39.721807364458556, -79.48097127041021 39.720274364457126, -79.48986527041849 39.19739536397016, -79.46119227039179 39.21326436398494, -79.44928227038069 39.212093363983854, -79.38484727032069 39.26930036403713, -79.34619427028468 39.292092364058355, -79.29527327023726 39.30054136406622, -79.27982227022287 39.32524336408923, -79.26016827020457 39.34864136411102, -79.1630182701141 39.3934953641528, -79.15812727010953 39.41396036417186, -79.13140027008464 39.41703136417472, -79.1040782700592 39.44730636420291, -79.09671527005234 39.46462836421904, -79.10459727005968 39.47087236422486, -79.07062927002805 39.47084936422483, -79.06441127002226 39.48582536423878, -79.04885427000777 39.48381536423691, -78.97043626993474 39.43852536419473, -78.95539126992072 39.46045836421516, -78.87081526984196 39.525790364276006, -78.8381142698115 39.56331836431096, -78.80655026978211 39.56682336431422, -78.82241226979687 39.5856983643318, -78.79847126977458 39.61541836435948, -78.79815026977428 39.63083336437383, -78.77270526975059 39.64424136438632, -78.76761626974584 39.6266143643699, -78.73238326971303 39.62696536437023, -78.73049826971128 39.62154436436518, -78.73625126971663 39.608792364353306, -78.77374326975155 39.60161736434662, -78.7614512697401 39.58179236432816, -78.73271826971335 39.57664236432336, -78.71631526969807 39.55957236430747, -78.6664252696516 39.53692936428638, -78.64914426963551 39.537998364287375, -78.63708226962427 39.52994936427987, -78.60436626959381 39.53568336428522, -78.56418826955638 39.521073364271615, -78.50878326950479 39.52515936427542, -78.48127826947918 39.519937364270554, -78.45581126945545 39.5337353642834, -78.44587026944619 39.54831836429699, -78.42082226942287 39.549409364298, -78.46181626946104 39.580834364327266, -78.45063126945062 39.59270536433832, -78.4039992694072 39.58761336433358, -78.43189426943317 39.620952364364626, -78.38463626938916 39.61449436435862, -78.37767026938268 39.63131736437428, -78.35678126936322 39.63237036437526, -78.34792326935498 39.640590364382916, -78.27301626928521 39.618409364362265, -78.25772626927098 39.641167364383456, -78.22923026924443 39.65856636439966, -78.22759826924292 39.67398836441402, -78.20430426922121 39.67593836441584, -78.18297226920136 39.69464136443326, -78.09433826911881 39.67560036441553, -78.02641826905555 39.622867364366414, -77.99520526902648 39.59896936434416, -77.96423626899764 39.611325364355665, -77.94497926897971 39.58601136433209, -77.93545826897083 39.591939364337605, -77.94754326898209 39.6150133643591, -77.93860926897376 39.61821836436208, -77.90325326894084 39.596124364341506, -77.89074126892919 39.60070136434577, -77.88843726892705 39.61657036436055, -77.85552326889639 39.602166364347134, -77.84240726888417 39.605374364350126, -77.8398672688818 39.57274036431973, -77.852959268894 39.56545436431294, -77.885171268924 39.564451364312006, -77.88991626892842 39.55809236430609, -77.86956126890946 39.54591236429474, -77.86463226890487 39.51465136426563, -77.84384926888552 39.53193136428172, -77.83546426887771 39.525610364275835, -77.82892526887161 39.52925336427923, -77.82526326886821 39.51203836426319, -77.84787726888926 39.50200536425385, -77.82518726886813 39.49390736424631, -77.77155126881819 39.498115364250225, -77.79949826884422 39.48082736423413, -77.78510926883081 39.45910236421389, -77.80419026884859 39.463138364217656, -77.79579826884077 39.45091636420627, -77.80469426884905 39.44001836419612, -77.8022752688468 39.43231636418895, -77.75698626880462 39.42516336418228, -77.74083426878958 39.403439364162054, -77.73723326878623 39.396195364155304, -77.75622326880391 39.378476364138805, -77.74545026879387 39.36037236412194, -77.75430026880213 39.33859436410167, -77.75008926879819 39.3268183640907, -77.72746726877713 39.3177963640823, -77.75945826880692 39.28464336405142, -77.7682322688151 39.246550364015945, -77.80544926884976 39.19660636396942, -77.82004426886334 39.14172536391831, -77.83068026887325 39.132181363909424, -78.03332826906198 39.26563936403372, -78.22950826924469 39.39111336415058, -78.27688126928881 39.4234643641807, -78.34754626935462 39.45699836421194, -78.35023126935712 39.380828364140996, -78.36547426937132 39.36168636412317, -78.34392826935125 39.35095636411317, -78.34084626934839 39.34145836410433, -78.41354726941609 39.25754036402618, -78.39912726940265 39.24495236401445, -78.42306926942496 39.2121433639839, -78.42406826942589 39.19762836397038, -78.40236226940567 39.1705943639452, -78.43056926943194 39.14862636392474, -78.44797926944815 39.11903636389718, -78.48525026948288 39.11194436389058, -78.5016002694981 39.09368436387358, -78.53665126953074 39.05713236383953, -78.56417926955638 39.035145363819055, -78.54920226954243 39.0234883638082, -78.55320826954616 39.0139363637993, -78.59869626958853 38.967306363755874, -78.63084726961847 38.97971236376743, -78.64696926963349 38.95055336374027, -78.68022726966446 38.92168436371338, -78.71898626970055 38.90499136369784, -78.72414326970535 38.93032436372143, -78.73773226971801 38.92928236372046, -78.74925326972874 38.91149136370389, -78.79305526976954 38.88021936367477, -78.81586126979077 38.833745363631486, -78.86656026983799 38.763404363565975, -78.98745326995058 38.84676136364361, -79.0337422699937 38.799959363600024, -79.0548002700133 38.79063336359134, -79.05655527001494 38.76205336356472, -79.08723427004351 38.70726836351369, -79.08854627004473 38.659205363468935, -79.12106427007502 38.663767363473184, -79.12742727008094 38.65824436346804, -79.23166327017802 38.48049636330249))) +MD Maryland MULTIPOLYGON (((-75.71071226689888 38.649665363460045, -75.70707326689549 38.5575913633743, -75.69880226688778 38.46318236328637, -75.34984226656279 38.45532236327905, -75.09272126632332 38.450563363274625, -75.15487326638122 38.36973936319934, -75.15061726637725 38.27388136311007, -75.26249926648146 38.20153336304269, -75.37306826658443 38.0690413629193, -75.37242026658382 38.01683336287068, -75.62608426682006 37.99654136285178, -75.64786626684035 37.9702553628273, -75.86538526704292 37.979780362836166, -75.76920626695336 38.09737136294568, -75.8974512670728 38.175057363018034, -75.83772626701717 38.2317163630708, -75.86132526703915 38.24016636307867, -75.79382626697628 38.263724363100614, -75.89461326707016 38.258995363096204, -75.87209226704918 38.35735136318781, -75.88648126706258 38.37558136320479, -75.94958426712135 38.282177363117796, -75.9949422671636 38.28264636311823, -76.02046426718736 38.3220173631549, -76.06512026722895 38.25905736309627, -76.29394226744205 38.43705736326204, -76.29165326743993 38.47885136330096, -76.191881267347 38.54346336336114, -76.2507212674018 38.59520136340932, -76.03159726719772 38.57204036338776, -76.02772226719412 38.6221233634344, -76.04658226721168 38.59197636340632, -76.07565926723876 38.610900363423944, -76.1237032672835 38.70809436351446, -76.17370826733008 38.7092133635155, -76.22298126737597 38.762908363565515, -76.26679126741676 38.77000436357213, -76.33729526748243 38.679494363487834, -76.35020426749445 38.699143363506124, -76.27208826742171 38.83411536363183, -76.19484326734977 38.765372363567806, -76.16552326732246 38.78872536358956, -76.1140392672745 38.88557036367975, -76.07553226723864 38.88966336368357, -76.10256426726382 38.89813236369145, -76.09516426725693 38.94824436373813, -76.11353626727404 38.920829363712585, -76.19934226735396 38.973467363761614, -76.11095226727163 39.11870536389688, -76.22144626737453 39.093029363872965, -76.23856726739048 39.130935363908264, -76.21811226737144 39.20496236397721, -76.11204526727265 39.32140736408566, -76.03709126720284 39.35848036412018, -75.84939926702805 39.37925136413953, -75.97846426714824 39.394663364153885, -75.95230326712388 39.471295364225256, -75.97443026714448 39.524137364274466, -76.03108026719724 39.57004136431722, -76.07817826724111 39.54247536429155, -76.15420026731191 39.40204636416075, -76.22633826737909 39.374998364135564, -76.36371026750703 39.3933883641527, -76.39872126753964 39.23125236400169, -76.53098126766281 39.242726364012384, -76.60371526773055 39.259460364027966, -76.56481926769433 39.231553364001975, -76.57666726770536 39.19822836397094, -76.60701826773364 39.181092363954974, -76.59482626772227 39.158796363934215, -76.56360526769319 39.19637436396921, -76.42361626756282 39.11846436389665, -76.47171826760763 38.90835136370097, -76.54880526767941 38.759089363561955, -76.52493126765718 38.709751363516006, -76.50857126764194 38.52222136334136, -76.38548226752731 38.39140436321952, -76.4051292675456 38.346143363177376, -76.42113626756051 38.3206233631536, -76.4715982676075 38.33578336316772, -76.51975726765237 38.41026136323708, -76.64693726777081 38.450548363274606, -76.34345026748817 38.21318736305355, -76.32983826747548 38.04583036289768, -76.57695026770563 38.22276436306247, -76.75992726787604 38.23440936307331, -76.86387326797285 38.39147136321959, -76.90827026801419 38.29997836313437, -76.97272526807421 38.33115536316341, -77.00209226810158 38.426977363252654, -77.2206262683051 38.39078736321895, -77.25557726833765 38.41371736324031, -77.27745926835803 38.487220363308765, -77.1296902682204 38.64824236345872, -77.12481526821587 38.67791536348636, -77.09284726818609 38.70409936351074, -77.0815782681756 38.71539436352126, -77.05682026815253 38.712136363518226, -77.04616926814262 38.718895363524524, -77.04514726814168 38.7882343635891, -76.91090426801665 38.89010036368397, -77.007930268107 38.96666736375528, -77.04208826813883 38.99354136378031, -77.12232826821355 38.93217136372316, -77.15174726824095 38.96488936375363, -77.24343226832633 38.97598936376396, -77.25569226833775 39.02768136381211, -77.32430626840166 39.062696363844715, -77.34622626842207 39.06862036385023, -77.43274626850265 39.066884363848615, -77.45940426852748 39.080944363861704, -77.4789592685457 39.10406436388324, -77.51275826857716 39.11675936389506, -77.5163282685805 39.15754936393306, -77.47834726854512 39.1770373639512, -77.46170726852962 39.218735363990035, -77.46466726853238 39.229160363999746, -77.49377326855948 39.250014364019165, -77.5419012686043 39.26904236403689, -77.56867326862924 39.29849536406432, -77.61623626867353 39.29981836406555, -77.67930226873227 39.31878136408321, -77.72746726877713 39.3177963640823, -77.75008926879819 39.3268183640907, -77.75430026880213 39.33859436410167, -77.74545026879387 39.36037236412194, -77.75622326880391 39.378476364138805, -77.73723326878623 39.396195364155304, -77.74083426878958 39.403439364162054, -77.75698626880462 39.42516336418228, -77.8022752688468 39.43231636418895, -77.80469426884905 39.44001836419612, -77.79579826884077 39.45091636420627, -77.80419026884859 39.463138364217656, -77.78510926883081 39.45910236421389, -77.79949826884422 39.48082736423413, -77.77155126881819 39.498115364250225, -77.82518726886813 39.49390736424631, -77.84787726888926 39.50200536425385, -77.82526326886821 39.51203836426319, -77.82892526887161 39.52925336427923, -77.83546426887771 39.525610364275835, -77.84384926888552 39.53193136428172, -77.86463226890487 39.51465136426563, -77.86956126890946 39.54591236429474, -77.88991626892842 39.55809236430609, -77.885171268924 39.564451364312006, -77.852959268894 39.56545436431294, -77.8398672688818 39.57274036431973, -77.84240726888417 39.605374364350126, -77.85552326889639 39.602166364347134, -77.88843726892705 39.61657036436055, -77.89074126892919 39.60070136434577, -77.90325326894084 39.596124364341506, -77.93860926897376 39.61821836436208, -77.94754326898209 39.6150133643591, -77.93545826897083 39.591939364337605, -77.94497926897971 39.58601136433209, -77.96423626899764 39.611325364355665, -77.99520526902648 39.59896936434416, -78.02641826905555 39.622867364366414, -78.09433826911881 39.67560036441553, -78.18297226920136 39.69464136443326, -78.20430426922121 39.67593836441584, -78.22759826924292 39.67398836441402, -78.22923026924443 39.65856636439966, -78.25772626927098 39.641167364383456, -78.27301626928521 39.618409364362265, -78.34792326935498 39.640590364382916, -78.35678126936322 39.63237036437526, -78.37767026938268 39.63131736437428, -78.38463626938916 39.61449436435862, -78.43189426943317 39.620952364364626, -78.4039992694072 39.58761336433358, -78.45063126945062 39.59270536433832, -78.46181626946104 39.580834364327266, -78.42082226942287 39.549409364298, -78.44587026944619 39.54831836429699, -78.45581126945545 39.5337353642834, -78.48127826947918 39.519937364270554, -78.50878326950479 39.52515936427542, -78.56418826955638 39.521073364271615, -78.60436626959381 39.53568336428522, -78.63708226962427 39.52994936427987, -78.64914426963551 39.537998364287375, -78.6664252696516 39.53692936428638, -78.71631526969807 39.55957236430747, -78.73271826971335 39.57664236432336, -78.7614512697401 39.58179236432816, -78.77374326975155 39.60161736434662, -78.73625126971663 39.608792364353306, -78.73049826971128 39.62154436436518, -78.73238326971303 39.62696536437023, -78.76761626974584 39.6266143643699, -78.77270526975059 39.64424136438632, -78.79815026977428 39.63083336437383, -78.79847126977458 39.61541836435948, -78.82241226979687 39.5856983643318, -78.80655026978211 39.56682336431422, -78.8381142698115 39.56331836431096, -78.87081526984196 39.525790364276006, -78.95539126992072 39.46045836421516, -78.97043626993474 39.43852536419473, -79.04885427000777 39.48381536423691, -79.06441127002226 39.48582536423878, -79.07062927002805 39.47084936422483, -79.10459727005968 39.47087236422486, -79.09671527005234 39.46462836421904, -79.1040782700592 39.44730636420291, -79.13140027008464 39.41703136417472, -79.15812727010953 39.41396036417186, -79.1630182701141 39.3934953641528, -79.26016827020457 39.34864136411102, -79.27982227022287 39.32524336408923, -79.29527327023726 39.30054136406622, -79.34619427028468 39.292092364058355, -79.38484727032069 39.26930036403713, -79.44928227038069 39.212093363983854, -79.46119227039179 39.21326436398494, -79.48986527041849 39.19739536397016, -79.48097127041021 39.720274364457126, -79.39661027033164 39.71931336445624, -78.93017326989724 39.72233736445905, -78.81775826979255 39.72311536445977, -78.3847832693893 39.72374836446036, -78.33455026934251 39.72409636446069, -78.0959482691203 39.725461364461964, -77.47579326854274 39.719623364456524, -77.46443326853216 39.720073364456944, -77.22105126830549 39.72067936445751, -76.99681226809665 39.72089136445771, -76.7904912679045 39.72125636445804, -76.569834267699 39.72026536445712, -76.23312226738541 39.7218533644586, -76.13922326729796 39.722229364458954, -75.79109426697374 39.72386636446048, -75.77235326695629 39.38311836414313, -75.7643192669488 39.29595936406196, -75.761313266946 39.24786436401716, -75.75257626693787 39.141660363918255, -75.7245902669118 38.83028336362826, -75.71071226689888 38.649665363460045)), ((-76.292804267441 38.90783636370049, -76.29418626744229 38.96768036375622, -76.33874326748378 38.956774363746064, -76.31413026746085 38.94203836373234, -76.32230826746847 38.91220036370456, -76.34222126748702 38.9241703637157, -76.32938726747507 38.87600336367085, -76.37524026751777 38.85421836365055, -76.35647426750029 38.95830036374748, -76.29949026744723 39.04070736382424, -76.2478222673991 38.97900936376678, -76.24640926739778 38.923694363715256, -76.27318926742272 38.949343363739146, -76.292804267441 38.90783636370049)), ((-75.06792426630024 38.450075363274166, -75.04562326627946 38.449602363273726, -75.0873202663183 38.32305936315588, -75.06792426630024 38.450075363274166)), ((-75.27035726648877 38.027709362880806, -75.24409626646431 38.038023362890414, -75.20938826643199 38.094297362942825, -75.16437326639006 38.20496236304589, -75.09402726632455 38.32031636315332, -75.17281226639793 38.12430636297077, -75.24221926646256 38.028647362881685, -75.27035726648877 38.027709362880806))) +CO Colorado MULTIPOLYGON (((-102.0444562914241 37.641474362521095, -102.04201029142182 37.38627936228343, -102.03720729141735 36.98899436191343, -102.99770929231188 36.9985233619223, -103.07786629238653 36.99976036192345, -103.99363529323941 36.994469361918526, -105.14617229431279 36.99320736191736, -105.21309129437512 36.99260436191679, -105.71346029484111 36.994560361918616, -105.99200029510052 36.9922893619165, -106.47217729554772 36.991504361915766, -106.86124929591008 36.989501361913895, -106.8903702959372 36.99908336192283, -107.4108202964219 36.997525361921376, -107.47246029647931 36.99877636192254, -108.37247329731751 36.999471361923185, -109.0484802979471 36.99664136192055, -109.04560229794441 37.63082036251117, -109.04320629794219 37.88742036275015, -109.04346429794242 38.15293336299743, -109.05586129795397 38.2449203630831, -109.05394829795219 38.49465136331568, -109.05141729794983 39.360966364122504, -109.0535282979518 39.51817036426891, -109.05255129795088 39.65738236439856, -109.05126329794969 40.2105113649137, -109.04615529794494 40.66529136533725, -109.04831429794694 40.998433365647514, -107.91867129689489 41.00337536565211, -107.30405129632247 41.00013336564909, -106.86543829591398 40.99845736564753, -106.3291252954145 41.001289365650166, -106.20347129529748 41.00008536564905, -105.2787972944363 40.99634936564557, -104.93449329411565 40.99428936564365, -104.0517052932935 41.003211365651964, -103.57231629284702 40.99964836564864, -103.38295629267067 41.00031636564926, -102.65227129199016 40.99812436564722, -102.62125729196129 41.00021436564917, -102.04773929142715 40.99807136564717, -102.04699229142645 40.74313036540974, -102.04603129142556 40.69731936536708, -102.04762029142704 40.43107736511912, -102.04754529142697 40.34264436503676, -102.05153529143068 39.99891836471664, -102.04944229142873 39.56869336431596, -102.04880129142813 39.562803364310476, -102.04787429142728 39.12675336390437, -102.0489722914283 39.03700336382079, -102.04756829142698 38.69255036349999, -102.047584291427 38.61549936342823, -102.0455492914251 38.26334336310026, -102.04606129142559 38.25382236309139, -102.04397629142365 37.734398362607635, -102.0444562914241 37.641474362521095))) +KY Kentucky MULTIPOLYGON (((-86.51066827695712 36.655074361602445, -86.77053527719914 36.65210036159967, -87.06818427747635 36.65081136159847, -87.11270227751781 36.65130736159893, -87.34661127773566 36.64927736159704, -87.6406552780095 36.64521736159326, -87.69352827805875 36.64448836159258, -87.85353727820777 36.64152236158982, -87.87071127822377 36.669423361615806, -88.07134127841061 36.67968336162536, -88.04109127838244 36.58272136153506, -88.03507927837684 36.538200361493594, -88.042763278384 36.49657036145482, -88.49602527880613 36.49820736145635, -88.51268127882165 36.49954636145759, -88.8107182790992 36.49904536145713, -88.82635927911377 36.499908361457926, -88.83037227911751 36.49985436145788, -89.34666727959835 36.50261036146045, -89.41478427966179 36.50267936146051, -89.41821027966498 36.510625361467916, -89.37395127962377 36.61624736156628, -89.36362127961414 36.625761361575144, -89.34239527959437 36.62890836157807, -89.3223452795757 36.62207636157171, -89.28349527953952 36.575309361528156, -89.24168427950057 36.56932836152258, -89.21012827947119 36.58195436153434, -89.20018727946193 36.631357361580356, -89.17716127944048 36.65306236160057, -89.16789927943186 36.67162836161786, -89.19756327945949 36.71342536165679, -89.19636527945838 36.72747836166987, -89.1772692794406 36.760982361701075, -89.15143527941653 36.75909736169932, -89.12554027939241 36.7680883617077, -89.12590627939275 36.7924683617304, -89.16444427942865 36.80447636174158, -89.17353127943711 36.82943936176483, -89.16656527943061 36.8434763617779, -89.12965327939624 36.86649436179934, -89.10503427937331 36.953922361880764, -89.10721627937535 36.97750436190273, -89.1299302793965 36.98816536191266, -89.15031627941549 36.99849136192228, -89.17440427943792 37.02576236194767, -89.16962127943347 37.064287361983546, -89.14641927941186 37.09323736201051, -89.11689327938436 37.112188362028164, -89.06510427933613 37.18591136209682, -88.9932402792692 37.22008836212865, -88.93256727921269 37.218459362127135, -88.86335027914824 37.20224736211203, -88.74656027903946 37.152161362065385, -88.73916627903257 37.14123636205521, -88.68842127898532 37.13546536204984, -88.61426827891626 37.10910236202528, -88.55931927886508 37.072871361991545, -88.51731727882596 37.06482636198405, -88.4907432788012 37.06823736198723, -88.47684127878827 37.07220036199092, -88.45051127876374 37.09872736201562, -88.4225552787377 37.15696536206986, -88.45073927876396 37.20572436211528, -88.5014692788112 37.25783636216381, -88.51136527882042 37.29690536220019, -88.46768627877974 37.40080836229696, -88.41989327873523 37.42034336231515, -88.35921427867872 37.40936136230492, -88.3117422786345 37.44290336233617, -88.08791027842605 37.47632136236729, -88.07159127841085 37.51103836239962, -88.13420227846916 37.583620362467215, -88.15766427849101 37.628526362509035, -88.15940427849263 37.660733362539034, -88.13367027846866 37.70079036257634, -88.0725042784117 37.73544636260861, -88.03560727837733 37.805728362674074, -88.01122327835462 37.801352362669995, -87.95873827830574 37.776224362646595, -87.93961027828793 37.79955136266832, -87.92017027826982 37.809728362677795, -87.91022827826056 37.8386133627047, -87.93684927828535 37.875223362738794, -87.93448427828315 37.90420436276578, -87.92189527827144 37.91990936278041, -87.89903627825014 37.92459736278478, -87.85718727821117 37.89094736275344, -87.82364727817993 37.87825536274161, -87.75378227811487 37.898128362760126, -87.72820027809104 37.89458536275683, -87.70940827807354 37.89975436276164, -87.67972127804589 37.89704936275912, -87.68471727805054 37.83637236270261, -87.65169627801978 37.82817536269498, -87.6075882779787 37.843819362709546, -87.59363427796572 37.86491036272919, -87.59471827796672 37.89076636275327, -87.62713727799692 37.923454362783716, -87.60432527797568 37.97115736282814, -87.50480327788298 37.91562736277642, -87.45228827783407 37.93652036279588, -87.38755027777378 37.93496936279443, -87.31055927770208 37.89371836275602, -87.27274627766687 37.87081936273469, -87.22676227762403 37.84911836271448, -87.17578027757655 37.83864036270472, -87.15808027756007 37.82696736269385, -87.13187927753567 37.78973636265918, -87.10642727751197 37.78425136265407, -87.07130827747926 37.80713636267538, -87.03648027744683 37.90800536276932, -87.0131562774251 37.92476436278493, -86.98903127740263 37.93061636279038, -86.93157327734912 37.938040362797295, -86.90007827731979 37.95369736281188, -86.86327227728552 37.986920362842824, -86.82630727725109 37.99155936284714, -86.8028152772292 37.97880036283526, -86.75382527718358 37.898359362760345, -86.72887627716034 37.89462136275686, -86.68912627712332 37.9118533627729, -86.66865527710426 37.91319636277416, -86.66030827709649 37.902573362764265, -86.67067027710614 37.86064136272521, -86.66592427710172 37.847381362712866, -86.64556827708276 37.84600036271158, -86.61478227705409 37.857975362722726, -86.59831027703875 37.921072362781494, -86.58178427702336 37.92566536278577, -86.54108727698545 37.9215153627819, -86.52273827696837 37.927871362787826, -86.51690127696293 37.94224236280121, -86.53084827697592 37.987477362843336, -86.52783427697311 38.01869336287241, -86.51909127696497 38.04704836289882, -86.50311427695009 38.0516483629031, -86.45836727690842 38.0591613629101, -86.44246727689361 38.07599536292578, -86.44252127689366 38.088698362937606, -86.4743372769233 38.11170736295904, -86.46484627691444 38.12915636297529, -86.45252427690298 38.12975536297584, -86.40718127686074 38.10821836295578, -86.39367727684817 38.12329436296983, -86.34403927680194 38.13427036298005, -86.3354182767939 38.14402836298913, -86.34312427680109 38.15555936299988, -86.38710127684205 38.16802136301148, -86.38830727684316 38.19480836303643, -86.36435027682086 38.19329036303502, -86.34160627679967 38.17728836302011, -86.29767427675876 38.15030436299499, -86.29144027675295 38.078489362928096, -86.27769927674015 38.05817336290918, -86.25215527671637 38.040721362892924, -86.19062127665906 38.01775836287154, -86.1049862765793 38.01133636286556, -86.05271527653062 37.966784362824065, -86.03162027651098 37.99295036284843, -86.00666327648773 38.00176736285665, -85.95858227644295 38.011840362866025, -85.93087227641715 38.03404936288671, -85.91475127640213 38.06487436291542, -85.91207427639964 38.18000136302264, -85.85233527634401 38.23856136307718, -85.83990727633243 38.27629136311232, -85.80655127630136 38.286179363121526, -85.78621127628242 38.282391363117995, -85.74692627624583 38.27031536310675, -85.6813892761848 38.300953363135285, -85.6542282761595 38.337753363169554, -85.6435932761496 38.38368836321234, -85.61264027612077 38.446670363271, -85.50720027602257 38.471419363294046, -85.46638227598456 38.51817536333759, -85.43237027595288 38.537016363355136, -85.41746127593899 38.561475363377916, -85.42440427594546 38.58484036339968, -85.45367927597273 38.69467436350197, -85.44669027596622 38.72484036353006, -85.41818627593968 38.73841736354271, -85.3350092758622 38.73700636354139, -85.27139427580296 38.744376363548255, -85.20516227574127 38.69581736350303, -85.16093327570009 38.69517636350243, -85.11965727566164 38.71413936352009, -85.06845427561396 38.75042436355389, -85.02507327557356 38.7642913635668, -84.97561127552748 38.78064136358203, -84.81878027538143 38.79341036359392, -84.82442627538668 38.83446336363215, -84.78744627535225 38.86664336366212, -84.78866727535339 38.884385363678646, -84.80322427536694 38.89719036369057, -84.85974327541958 38.90204236369509, -84.87525427543403 38.90943136370197, -84.87588027543461 38.9276043637189, -84.84631627540708 38.95463136374407, -84.83444427539602 38.98277536377028, -84.84422527540512 39.005831363791756, -84.87629327543499 39.03289536381696, -84.88999627544776 39.05064836383349, -84.88670827544469 39.065045363846906, -84.82786127538989 39.10368736388289, -84.81148027537463 39.102585363881865, -84.78992727535456 39.107033363886, -84.74287527531074 39.14206336391863, -84.66748727524053 39.08962436386979, -84.62264827519877 39.074934363856116, -84.59306827517122 39.07026536385176, -84.51530127509879 39.09419536387405, -84.49205327507714 39.107363363886314, -84.44491827503325 39.11182736389047, -84.42568327501533 39.08472436386523, -84.4197402750098 39.04733736383041, -84.39131227498332 39.03574436381962, -84.34577927494091 39.03781236382154, -84.31331527491068 39.01407436379943, -84.2901362748891 38.944538363734665, -84.26152527486245 38.917477363709466, -84.23529427483801 38.874555363669494, -84.22870227483187 38.81269036361188, -84.1767522747835 38.78849836358935, -84.08886727470164 38.76550436356793, -84.05380127466898 38.76373536356628, -83.96216327458365 38.77764736357924, -83.91253927453742 38.757960363560905, -83.85755227448621 38.74491836354876, -83.83753227446758 38.71188036351799, -83.79046527442374 38.69384436350119, -83.77022327440488 38.650819363461125, -83.71282527435143 38.6355533634469, -83.67853027431948 38.620928363433286, -83.65575527429827 38.62388036343603, -83.64318927428657 38.63586236344719, -83.63324127427731 38.664972363474305, -83.61837827426346 38.67797236348641, -83.52655627417795 38.696111363503306, -83.5000732741533 38.69013736349774, -83.45361627411002 38.66377436347319, -83.37142227403348 38.654997363465014, -83.33002327399491 38.63198836344358, -83.32032527398589 38.60656336341991, -83.30653127397304 38.596317363410364, -83.29004327395768 38.59663836341066, -83.27275527394158 38.609257363422415, -83.24501327391575 38.6241723634363, -83.181939273857 38.60984136342296, -83.14315027382088 38.619339363431806, -83.11124327379116 38.66483336347417, -83.06088027374426 38.68572636349363, -83.02694327371265 38.71451236352044, -82.97248327366194 38.71964336352522, -82.92130427361427 38.74641436355015, -82.89031227358541 38.74277536354676, -82.87319127356946 38.71900636352463, -82.8800112735758 38.683301363491374, -82.8600292735572 38.65239536346259, -82.85385627355146 38.60045836341422, -82.82699227352643 38.571662363387404, -82.8023642735035 38.55728836337401, -82.74194527344723 38.553066363370085, -82.69557927340405 38.539142363357115, -82.66976027337999 38.50214036332265, -82.61374327332783 38.472668363295206, -82.58660427330256 38.412519363239184, -82.59823927331338 38.36846436319816, -82.57229827328923 38.30781136314167, -82.58004927329645 38.29251036312742, -82.57457927329135 38.25597336309339, -82.58911327330489 38.245388363083535, -82.61622827333014 38.23881136307741, -82.60664527332122 38.19382636303551, -82.61376327332785 38.178095363020866, -82.64715827335895 38.169435363012795, -82.64612827335799 38.14633036299128, -82.5932082733087 38.10996236295741, -82.52467827324487 38.01566236286959, -82.47577927319934 37.97590736283256, -82.48017427320343 37.95439636281253, -82.49339627321575 37.94251336280146, -82.5002092732221 37.922262362782604, -82.43760727316379 37.89485436275707, -82.4215082731488 37.87235636273613, -82.40580527313418 37.81171936267965, -82.33984627307274 37.78440036265421, -82.3194982730538 37.75842636263002, -82.32940127306301 37.74417136261674, -82.29562527303156 37.66905836254679, -82.23837127297824 37.65677636253535, -82.20544027294757 37.62401636250484, -82.18554927292904 37.64066736252035, -82.1593102729046 37.59356936247649, -82.13178127287897 37.590537362473654, -82.13747327288426 37.569896362454436, -82.1465222728927 37.56592136245074, -82.14250927288896 37.557452362442845, -82.08439227283483 37.548310362434336, -82.05566527280808 37.52534236241294, -82.049134272802 37.55145336243726, -82.02635127278077 37.53051936241776, -81.97657427273442 37.543253362429624, -81.95957527271858 37.531172362418374, -82.28895127302535 37.3048613622076, -82.35384227308577 37.260519362166306, -82.40588527313425 37.250704362157165, -82.55004027326851 37.199378362109364, -82.56802227328525 37.19391936210428, -82.71909627342595 37.11001736202614, -82.72137727342808 37.0931173620104, -82.7091702734167 37.07548236199398, -82.72005727342685 37.065929361985084, -82.72359827343014 37.033992361955335, -82.81222227351267 37.0056003619289, -82.86656027356328 36.97458536190001, -82.86063227355775 36.9321623618605, -82.87804327357398 36.89369436182467, -82.95080527364175 36.86407836179709, -83.04663427373099 36.858793361792166, -83.06795227375085 36.85099636178491, -83.12822027380697 36.779152361718, -83.12439127380341 36.751167361691934, -83.13851327381656 36.74005936168159, -83.20365627387723 36.73426036167619, -83.32138327398687 36.70953336165316, -83.38585527404692 36.68821936163331, -83.40415027406395 36.672327361618514, -83.46022127411618 36.66183236160873, -83.53089527418199 36.66148136160841, -83.64680227428994 36.61697736156696, -83.67517727431637 36.59870436154994, -83.6956082743354 36.58424936153648, -83.93560027455891 36.59129036154304, -84.00674627462516 36.59208836154378, -84.25448827485589 36.59545236154692, -84.25677727485802 36.59549836154696, -84.78187127534706 36.605076361555874, -84.79105727535561 36.60543836155621, -84.99846127554876 36.62098236157069, -85.27249827580398 36.625616361575005, -85.3000942758297 36.62610136157546, -85.43737427595754 36.6181993615681, -85.78547627628174 36.626685361576, -85.98061027646347 36.633112361581986, -86.19899227666686 36.64329036159147, -86.41544327686844 36.650932361598585, -86.51066827695712 36.655074361602445)), ((-89.53327227977215 36.49817036145632, -89.56706427980362 36.51879936147553, -89.5682312798047 36.54146936149664, -89.55621427979351 36.55780336151185, -89.5304422797695 36.56461636151819, -89.49320227973483 36.55917736151313, -89.48174927972416 36.54783636150257, -89.47144927971456 36.52561636148187, -89.48175727972416 36.50475836146245, -89.47589727971871 36.49860936145672, -89.53327227977215 36.49817036145632))) +KS Kansas MULTIPOLYGON (((-95.07193128493041 37.00147836192505, -95.40662228524212 37.00061536192425, -95.52601928535333 37.00101836192462, -95.78574828559522 36.99811436192192, -95.9579612857556 37.00008336192376, -96.00604928580039 36.99833336192212, -96.51918728627828 37.000577361924215, -96.74869628649203 37.00016636192383, -97.13769328685432 36.9998083619235, -97.46540528715951 36.99646736192039, -97.80425028747509 36.99856736192234, -98.10452928775474 36.99867136192244, -98.3471432879807 36.9990613619228, -98.54021928816051 36.99837636192217, -98.99951628858827 36.998072361921885, -99.43747328899615 36.99455836191861, -99.54463928909595 36.99546336191945, -99.99926128951935 36.99541736191941, -100.08857428960253 36.997652361921496, -100.63424529011073 36.99783236192166, -100.95058729040535 36.99666136192057, -101.07160429051805 36.99746636192132, -101.55367629096702 36.9966933619206, -102.02451929140553 36.988875361913315, -102.03720729141735 36.98899436191343, -102.04201029142182 37.38627936228343, -102.0444562914241 37.641474362521095, -102.04397629142365 37.734398362607635, -102.04606129142559 38.25382236309139, -102.0455492914251 38.26334336310026, -102.047584291427 38.61549936342823, -102.04756829142698 38.69255036349999, -102.0489722914283 39.03700336382079, -102.04787429142728 39.12675336390437, -102.04880129142813 39.562803364310476, -102.04944229142873 39.56869336431596, -102.05153529143068 39.99891836471664, -101.40739329083078 40.001003364718585, -101.32214829075139 40.00182136471934, -100.75485629022306 40.00019836471783, -100.73504929020461 39.99917236471687, -100.19111128969803 40.00058536471819, -100.18091028968853 40.00047836471809, -99.62785928917346 40.002987364720425, -99.17820128875468 39.999577364717254, -99.06474728864902 39.9983383647161, -98.72063228832855 39.99846136471621, -98.50447928812723 39.99712936471497, -98.26416528790342 39.99843436471619, -97.92958828759183 39.9984523647162, -97.81658928748658 39.999729364717396, -97.36191228706313 39.997380364715205, -96.90828728664066 39.996154364714066, -96.80142028654113 39.9944763647125, -96.45403828621761 39.99417236471221, -96.24059828601882 39.99450336471253, -96.00125328579593 39.99515936471314, -95.78070028559051 39.99348936471158, -95.32970128517049 39.99259536471075, -95.30869728515093 39.999407364717094, -95.24096128508785 39.94210536466373, -95.20759728505676 39.938176364660066, -95.19396328504408 39.910180364633995, -95.15055128500364 39.908054364632015, -95.10072228495723 39.86986536459645, -95.06324628492233 39.86653836459335, -95.03350628489463 39.87784436460388, -95.02177228488371 39.8969783646217, -94.96502328483085 39.90082336462528, -94.93824328480592 39.89608136462087, -94.9365112848043 39.84938636457738, -94.92387628479253 39.833131364562234, -94.89832428476873 39.82833236455777, -94.88850528475959 39.81740036454759, -94.89932328476966 39.79377536452559, -94.93326728480127 39.782773364515336, -94.935114284803 39.77542636450849, -94.9218002847906 39.75784136449212, -94.87706728474895 39.76067936449476, -94.87118528474346 39.75411836448865, -94.87786028474967 39.73930536447486, -94.90567828477559 39.726755364463166, -94.93085628479903 39.72702636446342, -94.95314228481979 39.73650136447225, -94.96178628482784 39.73203836446808, -94.97857028484347 39.68498836442427, -95.02829228488977 39.66191336440278, -95.0560172849156 39.62568936436904, -95.05361328491337 39.586776364332806, -95.10898828496494 39.56069236430851, -95.10203728495846 39.53284836428257, -95.04759928490776 39.48532836423832, -95.04051128490116 39.462940364217474, -94.98620428485059 39.43946136419561, -94.95849428482478 39.41144736416952, -94.92574828479428 39.3812663641414, -94.8982812847687 39.380640364140824, -94.91134328478086 39.340121364103084, -94.90768128477745 39.323028364087165, -94.8811072847527 39.28604636405272, -94.83347628470834 39.26176636403011, -94.82081928469655 39.21100436398284, -94.7900492846679 39.19688336396969, -94.73053128461247 39.171256363945815, -94.67551428456123 39.174922363949236, -94.64640728453412 39.15842736393387, -94.61265328450268 39.15164936392756, -94.60122428449205 39.14122736391785, -94.60813728449848 39.11280136389138, -94.60928128449954 39.04466736382793, -94.61246928450251 38.837109363634625, -94.61314828450314 38.73722236354159, -94.61871728450834 38.471473363294095, -94.61905328450865 38.39203236322011, -94.61733028450703 38.055784362906955, -94.61673528450649 38.0303873628833, -94.61929328450887 37.67986936255686, -94.6189962845086 37.65037436252939, -94.61876428450837 37.36076636225967, -94.61897728450857 37.3277323622289, -94.62066428451014 37.060147361979695, -94.62037928450988 36.99704636192092, -95.03274528489392 37.0007793619244, -95.07193128493041 37.00147836192505))) +VA Virginia MULTIPOLYGON (((-79.14406327009644 36.54619836150104, -79.21680327016418 36.54992136150451, -79.51004827043728 36.54779536150253, -79.71720127063021 36.548028361502745, -80.02382227091577 36.54516336150007, -80.04786327093817 36.54727236150204, -80.4350922712988 36.551181361505684, -80.61084127146248 36.55743036151151, -80.837953271674 36.56356836151722, -80.9032402717348 36.56534236151887, -81.34512127214633 36.572988361525994, -81.66983527244875 36.58976736154162, -81.65227227243238 36.6076733615583, -81.82889827259689 36.61159636156195, -81.91829427268014 36.61360836156382, -81.92930327269039 36.59595036154738, -82.15418127289983 36.59515036154663, -82.21666127295802 36.59407236154563, -82.29685827303271 36.59180136154352, -82.61083927332513 36.591545361543275, -82.84982227354769 36.59104136154281, -82.98669727367516 36.59128936154303, -83.210926273884 36.58808936154006, -83.24838827391889 36.58993536154178, -83.2750312739437 36.60046736155158, -83.46421027411989 36.59884036155007, -83.67517727431637 36.59870436154994, -83.64680227428994 36.61697736156696, -83.53089527418199 36.66148136160841, -83.46022127411618 36.66183236160873, -83.40415027406395 36.672327361618514, -83.38585527404692 36.68821936163331, -83.32138327398687 36.70953336165316, -83.20365627387723 36.73426036167619, -83.13851327381656 36.74005936168159, -83.12439127380341 36.751167361691934, -83.12822027380697 36.779152361718, -83.06795227375085 36.85099636178491, -83.04663427373099 36.858793361792166, -82.95080527364175 36.86407836179709, -82.87804327357398 36.89369436182467, -82.86063227355775 36.9321623618605, -82.86656027356328 36.97458536190001, -82.81222227351267 37.0056003619289, -82.72359827343014 37.033992361955335, -82.72005727342685 37.065929361985084, -82.7091702734167 37.07548236199398, -82.72137727342808 37.0931173620104, -82.71909627342595 37.11001736202614, -82.56802227328525 37.19391936210428, -82.55004027326851 37.199378362109364, -82.40588527313425 37.250704362157165, -82.35384227308577 37.260519362166306, -82.28895127302535 37.3048613622076, -81.95957527271858 37.531172362418374, -81.93545027269612 37.50664436239553, -81.9479932727078 37.49302636238285, -81.97642227273428 37.482905362373415, -81.98820227274524 37.46658636235822, -81.92073327268241 37.415516362310655, -81.92682227268809 37.37172736226988, -81.89715827266046 37.34058836224088, -81.86381527262941 37.32545636222678, -81.85868127262462 37.30703136220963, -81.8388892726062 37.285505362189575, -81.81538127258429 37.27953936218402, -81.79265927256313 37.287153362191106, -81.75185427252514 37.272257362177236, -81.73845627251265 37.250491362156964, -81.70172827247845 37.23543436214294, -81.66588527244507 37.20491036211452, -81.55665427234334 37.20635236211586, -81.50553627229573 37.234372362141954, -81.49553327228641 37.252850362159165, -81.47536027226762 37.254422362160625, -81.40334427220056 37.282624362186894, -81.39094627218901 37.31115436221346, -81.35879527215907 37.338952362239354, -81.31187327211536 37.29370736219721, -81.22293327203253 37.2402143621474, -81.14073727195598 37.27492536217972, -81.02493227184813 37.2860613621901, -80.98593627181181 37.30624136220889, -80.97853527180492 37.29647536219979, -80.96789227179501 37.291791362195426, -80.93418327176362 37.30137036220435, -80.85542927169027 37.33941136223978, -80.84841827168374 37.35094336225052, -80.87735827171069 37.38869736228568, -80.8505252716857 37.42346036231805, -80.79961127163828 37.413062362308374, -80.79924427163795 37.391753362288526, -80.77002227161073 37.386195362283345, -80.76299527160418 37.37141436226958, -80.74768927158993 37.37908136227672, -80.74632427158866 37.38773736228478, -80.72973727157321 37.39271936228943, -80.70520727155036 37.38837836228538, -80.59749127145005 37.4460543623391, -80.54275527139907 37.46921036236066, -80.50876527136741 37.4750473623661, -80.48788127134796 37.460597362352644, -80.48679727134696 37.43386036232774, -80.47476427133574 37.422821362317464, -80.42537827128976 37.43490636232872, -80.38830627125523 37.46572536235742, -80.35215727122156 37.47610136236708, -80.34751127121723 37.49117736238112, -80.28791627116173 37.51115136239973, -80.28073027115504 37.53625936242311, -80.30830327118072 37.52837036241576, -80.32590627119711 37.53340136242045, -80.31672127118856 37.566718362451475, -80.24639327112307 37.59689636247958, -80.21892827109748 37.62426636250507, -80.25442227113054 37.640703362520384, -80.30093227117385 37.64054736252024, -80.30486227117751 37.65224636253113, -80.29570027116898 37.67150236254906, -80.30310927117588 37.68267136255946, -80.25003327112645 37.726052362599866, -80.25468927113079 37.757232362628905, -80.220546271099 37.778858362649046, -80.22373527110196 37.80236436267094, -80.1715942710534 37.84296836270875, -80.17222027105399 37.86018436272479, -80.1600052710426 37.87722836274066, -80.11850727100396 37.891278362753745, -80.10649027099277 37.91465836277552, -80.05480727094464 37.95564836281369, -80.00049927089405 37.989870362845565, -79.96649327086239 38.038621362890964, -79.95751327085402 38.06736536291774, -79.9282922708268 38.10331136295122, -79.93532727083335 38.12130836296798, -79.91034027081008 38.16260636300644, -79.91616127081551 38.17926436302196, -79.83115227073634 38.25027936308809, -79.79362227070139 38.26866636310521, -79.78651127069476 38.28511836312054, -79.80277827070991 38.29887036313335, -79.80032927070764 38.31432636314774, -79.76400427067381 38.353991363184676, -79.73282927064477 38.351840363182674, -79.72003527063285 38.39468536322258, -79.68409227059938 38.43023836325569, -79.69265327060735 38.500354363320994, -79.66561427058217 38.520778363340014, -79.66943027058572 38.550177363367396, -79.64240627056056 38.592355363406675, -79.53651327046194 38.55380536337077, -79.48634727041521 38.46214536328541, -79.3169992702575 38.412633363239294, -79.27235927021592 38.43730636326227, -79.23166327017802 38.48049636330249, -79.12742727008094 38.65824436346804, -79.12106427007502 38.663767363473184, -79.08854627004473 38.659205363468935, -79.08723427004351 38.70726836351369, -79.05655527001494 38.76205336356472, -79.0548002700133 38.79063336359134, -79.0337422699937 38.799959363600024, -78.98745326995058 38.84676136364361, -78.86656026983799 38.763404363565975, -78.81586126979077 38.833745363631486, -78.79305526976954 38.88021936367477, -78.74925326972874 38.91149136370389, -78.73773226971801 38.92928236372046, -78.72414326970535 38.93032436372143, -78.71898626970055 38.90499136369784, -78.68022726966446 38.92168436371338, -78.64696926963349 38.95055336374027, -78.63084726961847 38.97971236376743, -78.59869626958853 38.967306363755874, -78.55320826954616 39.0139363637993, -78.54920226954243 39.0234883638082, -78.56417926955638 39.035145363819055, -78.53665126953074 39.05713236383953, -78.5016002694981 39.09368436387358, -78.48525026948288 39.11194436389058, -78.44797926944815 39.11903636389718, -78.43056926943194 39.14862636392474, -78.40236226940567 39.1705943639452, -78.42406826942589 39.19762836397038, -78.42306926942496 39.2121433639839, -78.39912726940265 39.24495236401445, -78.41354726941609 39.25754036402618, -78.34084626934839 39.34145836410433, -78.34392826935125 39.35095636411317, -78.36547426937132 39.36168636412317, -78.35023126935712 39.380828364140996, -78.34754626935462 39.45699836421194, -78.27688126928881 39.4234643641807, -78.22950826924469 39.39111336415058, -78.03332826906198 39.26563936403372, -77.83068026887325 39.132181363909424, -77.82004426886334 39.14172536391831, -77.80544926884976 39.19660636396942, -77.7682322688151 39.246550364015945, -77.75945826880692 39.28464336405142, -77.72746726877713 39.3177963640823, -77.67930226873227 39.31878136408321, -77.61623626867353 39.29981836406555, -77.56867326862924 39.29849536406432, -77.5419012686043 39.26904236403689, -77.49377326855948 39.250014364019165, -77.46466726853238 39.229160363999746, -77.46170726852962 39.218735363990035, -77.47834726854512 39.1770373639512, -77.5163282685805 39.15754936393306, -77.51275826857716 39.11675936389506, -77.4789592685457 39.10406436388324, -77.45940426852748 39.080944363861704, -77.43274626850265 39.066884363848615, -77.34622626842207 39.06862036385023, -77.32430626840166 39.062696363844715, -77.25569226833775 39.02768136381211, -77.24343226832633 38.97598936376396, -77.15174726824095 38.96488936375363, -77.12232826821355 38.93217136372316, -77.07864926817287 38.91571136370783, -77.06758626816257 38.88621236368035, -77.03877726813573 38.862543363658304, -77.04010426813697 38.838526363635935, -77.04488826814143 38.82947736362751, -77.03494626813217 38.81402836361312, -77.04514726814168 38.7882343635891, -77.04616926814262 38.718895363524524, -77.05682026815253 38.712136363518226, -77.0815782681756 38.71539436352126, -77.09284726818609 38.70409936351074, -77.12481526821587 38.67791536348636, -77.1296902682204 38.64824236345872, -77.19696126828306 38.62281736343505, -77.19445126828072 38.6608833634705, -77.2272962683113 38.650839363461145, -77.30332326838212 38.50203336332255, -77.33818926841458 38.43694836326194, -77.28918526836895 38.362796363192885, -77.32152626839907 38.34410936317548, -77.24040126832351 38.331497363163734, -77.05423226815013 38.37547636320469, -76.99905426809875 38.280402363116146, -76.93615526804017 38.20260336304369, -76.5952832677227 38.12035236296708, -76.54871126767932 38.074240362924144, -76.55772226768772 38.025459362878706, -76.57337026770229 38.00330036285807, -76.52422026765652 38.012874362866995, -76.36741426751048 37.95708036281503, -76.25886626740939 37.8901583627527, -76.25158826740261 37.850306362715585, -76.32420726747024 37.79894536266775, -76.30961126745665 37.719245362593526, -76.35667026750048 37.70026536257585, -76.32272626746887 37.67794836255507, -76.34453826748917 37.62305936250395, -76.50676026764026 37.65652336253511, -76.5801362677086 37.77025436264103, -76.63145326775638 37.79648736266546, -76.77153226788684 37.916810362777525, -76.8181882679303 37.91964136278016, -76.73203426785005 37.79861936266745, -76.68141226780291 37.77489336264536, -76.56917126769838 37.642046362521626, -76.31430926746103 37.55133536243715, -76.34830626749269 37.52528536241289, -76.51252826764564 37.55271336243843, -76.43385026757235 37.515338362403625, -76.35533326749923 37.51588936240414, -76.2542552674051 37.3903253622872, -76.27485526742427 37.33046036223144, -76.30063626744828 37.3347103622354, -76.33868526748373 37.39368436229033, -76.44653826758417 37.45810436235032, -76.46360626760007 37.41903136231393, -76.41675226755643 37.41227436230764, -76.40342326754401 37.37316736227122, -76.45522126759225 37.37763136227537, -76.39240626753376 37.29356736219708, -76.46080726759746 37.2555753621617, -76.65316626777661 37.41234436230771, -76.70436126782428 37.41863636231356, -76.66966126779197 37.37179136226993, -76.59471526772217 37.291442362195106, -76.4243372675635 37.20744136211687, -76.41266326755262 37.15253736206574, -76.39654226753761 37.173174362084964, -76.36345126750679 37.146571362060186, -76.33698426748214 37.17715236208866, -76.28533826743404 37.12224036203752, -76.3953592675365 37.10785336202412, -76.27859426742776 37.07448936199305, -76.29300626744119 37.020635361942894, -76.38422026752613 36.990561361914885, -76.42578626756485 36.965407361891465, -76.53079426766264 37.06778936198681, -76.51494026764787 37.08851436200611, -76.56416626769372 37.117917362033495, -76.5681182676974 37.08032036199848, -76.62459326775 37.132421362047005, -76.60970726773613 37.178723362090125, -76.64777126777159 37.22598436213414, -76.69683026781728 37.232668362140366, -76.74578226786286 37.193537362103925, -76.79561126790927 37.24053436214769, -76.85685426796631 37.24404836215096, -76.87517326798337 37.323092362224585, -76.8781102679861 37.259574362165424, -76.94117726804484 37.23675836214417, -76.900549268007 37.20120236211106, -76.79707626791064 37.20745036211688, -76.72889026784713 37.15081736206414, -76.68564526780686 37.19813336210821, -76.67121726779342 37.14786036206138, -76.66532026778793 37.05428236197423, -76.57750326770613 37.02464236194663, -76.61304926773924 36.99499136191901, -76.55472126768493 37.00634336192958, -76.48918126762389 36.96187136188817, -76.51684626764965 36.91233436184203, -76.48184926761705 36.91923436184846, -76.48628926762119 36.895717361826556, -76.56018926769002 36.841949361776486, -76.56152426769125 36.79576536173347, -76.50686626764036 36.86962136180225, -76.41047326755059 36.901561361831995, -76.34781026749222 36.913489361843105, -76.34158426748643 36.8603353617936, -76.39375526753501 36.83607436177101, -76.40085126754163 36.826286361761895, -76.31710026746362 36.84599236178025, -76.29236426744059 36.82849036176395, -76.30728126745447 36.9421483618698, -76.2838892674327 36.96288136188911, -76.20199126735642 36.935217361863344, -76.19132526734649 36.90458936183482, -76.11808826727828 36.93176436186013, -75.99501426716365 36.92328136185223, -75.8778112670545 36.5560283615102, -75.90163126707668 36.5563523615105, -75.89249926706819 36.59917536155038, -75.95044826712216 36.721716361664505, -75.99831426716673 36.556805361510925, -76.02681926719328 36.55687036151098, -76.06151226722558 36.60374436155463, -76.04561126721077 36.5571063615112, -76.12705026728662 36.5573153615114, -76.32991626747555 36.556208361510365, -76.49722826763139 36.555964361510135, -76.56325526769287 36.555404361509616, -76.92131426802634 36.5543093615086, -76.92381626802867 36.554298361508586, -77.1770422682645 36.556437361510575, -77.31974626839741 36.55406836150837, -77.76363826881082 36.553589361507925, -77.89856826893647 36.55309236150747, -78.0513812690788 36.55262136150702, -78.32096926932986 36.54567536150056, -78.45852926945798 36.54162336149678, -78.73711626971743 36.54621436150106, -78.79642826977268 36.54367436149869, -79.14406327009644 36.54619836150104)), ((-75.27035726648877 38.027709362880806, -75.24221926646256 38.028647362881685, -75.29849626651497 37.96299836282054, -75.33882026655253 37.88890736275154, -75.38572026659621 37.87577736273931, -75.34445126655777 37.902037362763764, -75.37821226658922 37.901098362762895, -75.34632826655952 37.91892036277949, -75.27035726648877 38.027709362880806)), ((-75.86702426704446 37.55231436243806, -75.94075726711313 37.56168636244679, -75.92921426710238 37.586015362469446, -75.886930267063 37.58047736246429, -75.90564626708043 37.592306362475306, -75.79937426698146 37.711922362586705, -75.78225426696551 37.78996136265938, -75.69573526688492 37.82464336269169, -75.6863582668762 37.858250362722984, -75.73363026692023 37.930694362790454, -75.65809826684988 37.94130636280033, -75.64786626684035 37.9702553628273, -75.62608426682006 37.99654136285178, -75.37242026658382 38.01683336287068, -75.61757026681214 37.697262362573056, -75.58955426678604 37.67732336255449, -75.6991432668881 37.58964536247283, -75.64991726684227 37.559888362445115, -75.7271742669142 37.55831636244365, -75.75615026694119 37.51067536239928, -75.70491826689349 37.49360936238339, -75.81267726699384 37.469179362360634, -75.82013826700079 37.42634136232074, -75.79042026697311 37.40824536230389, -75.82632626700655 37.41828436231324, -75.89676226707215 37.36753036226597, -75.93104026710408 37.14264436205653, -75.97063826714096 37.126374362041375, -76.01812726718518 37.30891836221138, -75.93410326710693 37.48477636237516, -75.9651022671358 37.479485362370234, -75.9543602671258 37.52196436240979, -75.9304112671035 37.55702136244244, -75.86702426704446 37.55231436243806))) +MO Missouri MULTIPOLYGON (((-89.10503427937331 36.953922361880764, -89.12965327939624 36.86649436179934, -89.16656527943061 36.8434763617779, -89.17353127943711 36.82943936176483, -89.16444427942865 36.80447636174158, -89.12590627939275 36.7924683617304, -89.12554027939241 36.7680883617077, -89.15143527941653 36.75909736169932, -89.1772692794406 36.760982361701075, -89.19636527945838 36.72747836166987, -89.19756327945949 36.71342536165679, -89.16789927943186 36.67162836161786, -89.17716127944048 36.65306236160057, -89.20018727946193 36.631357361580356, -89.21012827947119 36.58195436153434, -89.24168427950057 36.56932836152258, -89.28349527953952 36.575309361528156, -89.3223452795757 36.62207636157171, -89.34239527959437 36.62890836157807, -89.36362127961414 36.625761361575144, -89.37395127962377 36.61624736156628, -89.41821027966498 36.510625361467916, -89.41478427966179 36.50267936146051, -89.44859127969328 36.45644236141745, -89.47090827971407 36.44601736140774, -89.49206427973377 36.465524361425906, -89.47589727971871 36.49860936145672, -89.48175727972416 36.50475836146245, -89.47144927971456 36.52561636148187, -89.48174927972416 36.54783636150257, -89.49320227973483 36.55917736151313, -89.5304422797695 36.56461636151819, -89.55621427979351 36.55780336151185, -89.5682312798047 36.54146936149664, -89.56706427980362 36.51879936147553, -89.53327227977215 36.49817036145632, -89.51609827975615 36.47187236143182, -89.54525827978331 36.44102336140309, -89.52008027975985 36.40112236136593, -89.51940927975923 36.3559963613239, -89.54463227978272 36.34578836131439, -89.60576827983967 36.3548173613228, -89.6228742798556 36.334847361304206, -89.60684427984066 36.308103361279294, -89.54231327978056 36.280932361253996, -89.53545427977417 36.26460536123879, -89.54172527978001 36.257346361232024, -89.6181592798512 36.24096636121678, -89.6706662799001 36.2549613612298, -89.69462327992241 36.25220336122724, -89.69573727992345 36.240863361216675, -89.67686927990587 36.220935361198116, -89.61863927985165 36.18381136116354, -89.58953227982454 36.152089361134, -89.5895012798245 36.1298613611133, -89.66746827989712 36.09938636108492, -89.67824927990716 36.08304036106969, -89.68892227991711 36.025867361016445, -89.72183627994775 35.99995136099231, -89.96329128017263 35.99690836098948, -90.2835542804709 35.99122836098418, -90.37906228055985 35.98965636098272, -90.3153392805005 36.09172336107778, -90.28485128047211 36.11597236110036, -90.2638012804525 36.118829361103025, -90.23493928042562 36.137155361120094, -90.23232228042319 36.1612133611425, -90.21932128041108 36.17263136115313, -90.16140528035714 36.19700636117583, -90.13131328032911 36.21213536118992, -90.11001228030928 36.2580593612327, -90.06618728026845 36.272338361245986, -90.04984528025324 36.30053636127225, -90.06772928026989 36.325395361295406, -90.05029528025366 36.362668361330115, -90.05215728025539 36.3826153613487, -90.08027228028158 36.39745036136251, -90.11692528031571 36.40497636136952, -90.12392928032223 36.42262636138595, -90.11732228031609 36.45395536141513, -90.13737228033476 36.457476361418415, -90.15025928034676 36.491873361450445, -90.22447328041588 36.49281136145132, -90.5817322807486 36.49102236144965, -90.804434280956 36.48926536144802, -91.1339562812629 36.488015361446855, -91.41179628152166 36.49110136144973, -91.45298928156002 36.49043836144911, -91.68856028177942 36.49101836144965, -92.12764228218833 36.491435361450044, -92.14631928220574 36.49166036145025, -92.5230502825566 36.490921361449566, -92.7776352827937 36.48998336144869, -92.8522752828632 36.489884361448595, -93.29732428327769 36.49068136144933, -93.32834628330659 36.490261361448944, -93.59644928355627 36.489958361448664, -93.85752028379942 36.48978636144851, -94.0810522840076 36.49102436144966, -94.61725728450698 36.489414361448155, -94.62107328451053 36.67054336161685, -94.62168428451109 36.76360736170352, -94.62037928450988 36.99704636192092, -94.62066428451014 37.060147361979695, -94.61897728450857 37.3277323622289, -94.61876428450837 37.36076636225967, -94.6189962845086 37.65037436252939, -94.61929328450887 37.67986936255686, -94.61673528450649 38.0303873628833, -94.61733028450703 38.055784362906955, -94.61905328450865 38.39203236322011, -94.61871728450834 38.471473363294095, -94.61314828450314 38.73722236354159, -94.61246928450251 38.837109363634625, -94.60928128449954 39.04466736382793, -94.60813728449848 39.11280136389138, -94.60122428449205 39.14122736391785, -94.61265328450268 39.15164936392756, -94.64640728453412 39.15842736393387, -94.67551428456123 39.174922363949236, -94.73053128461247 39.171256363945815, -94.7900492846679 39.19688336396969, -94.82081928469655 39.21100436398284, -94.83347628470834 39.26176636403011, -94.8811072847527 39.28604636405272, -94.90768128477745 39.323028364087165, -94.91134328478086 39.340121364103084, -94.8982812847687 39.380640364140824, -94.92574828479428 39.3812663641414, -94.95849428482478 39.41144736416952, -94.98620428485059 39.43946136419561, -95.04051128490116 39.462940364217474, -95.04759928490776 39.48532836423832, -95.10203728495846 39.53284836428257, -95.10898828496494 39.56069236430851, -95.05361328491337 39.586776364332806, -95.0560172849156 39.62568936436904, -95.02829228488977 39.66191336440278, -94.97857028484347 39.68498836442427, -94.96178628482784 39.73203836446808, -94.95314228481979 39.73650136447225, -94.93085628479903 39.72702636446342, -94.90567828477559 39.726755364463166, -94.87786028474967 39.73930536447486, -94.87118528474346 39.75411836448865, -94.87706728474895 39.76067936449476, -94.9218002847906 39.75784136449212, -94.935114284803 39.77542636450849, -94.93326728480127 39.782773364515336, -94.89932328476966 39.79377536452559, -94.88850528475959 39.81740036454759, -94.89832428476873 39.82833236455777, -94.92387628479253 39.833131364562234, -94.9365112848043 39.84938636457738, -94.93824328480592 39.89608136462087, -94.96502328483085 39.90082336462528, -95.02177228488371 39.8969783646217, -95.03350628489463 39.87784436460388, -95.06324628492233 39.86653836459335, -95.10072228495723 39.86986536459645, -95.15055128500364 39.908054364632015, -95.19396328504408 39.910180364633995, -95.20759728505676 39.938176364660066, -95.24096128508785 39.94210536466373, -95.30869728515093 39.999407364717094, -95.3450672851848 40.024974364740906, -95.37124428520917 40.02875136474442, -95.39053228522714 40.043750364758395, -95.41376428524877 40.04811136476245, -95.40378428523948 40.080379364792506, -95.38454228522156 40.09536236480646, -95.39281328522927 40.11541636482514, -95.42247628525689 40.13174336484035, -95.46095228529272 40.17399536487969, -95.46663628529802 40.21325536491625, -95.4768222853075 40.22685536492892, -95.547137285373 40.266215364965575, -95.59553228541806 40.309776365006144, -95.64682728546583 40.309109365005526, -95.64555328546464 40.32234636501785, -95.61793328543892 40.3314183650263, -95.61620128543731 40.34649736504035, -95.63418528545407 40.358800365051806, -95.63681728545652 40.396390365086816, -95.69536128551104 40.48533836516965, -95.68497028550136 40.512205365194674, -95.6580602854763 40.53033236521156, -95.66294428548085 40.55872936523801, -95.67569328549271 40.565835365244624, -95.68741328550364 40.56117036524027, -95.69206628550796 40.52412936520578, -95.73703628554985 40.53237336521346, -95.76341228557442 40.5497073652296, -95.7674792855782 40.58904836526624, -95.38255528521971 40.58433436526185, -95.21742828506592 40.58189236525958, -94.9206162847895 40.57721836525522, -94.63987628452804 40.575744365253854, -94.48523128438401 40.57420536525242, -94.23839228415413 40.570966365249404, -94.01805928394893 40.57402236525225, -93.78630328373309 40.578448365256364, -93.56291028352504 40.58081336525857, -93.37027128334563 40.58049136525827, -93.10093828309479 40.58434736526186, -92.71781528273797 40.58966736526682, -92.6464322826715 40.591462365268484, -92.36151328240615 40.59957636527604, -92.19317428224937 40.60008836527652, -91.94637028201952 40.60826636528414, -91.74171128182891 40.60978436528555, -91.71697628180587 40.593435365270324, -91.68995928178072 40.58120236525893, -91.69208128178269 40.551677365231434, -91.62253628171793 40.532903365213954, -91.61686028171263 40.50487336518785, -91.58602828168392 40.48451936516889, -91.57938328167774 40.463760365149554, -91.53320828163473 40.45544136514181, -91.53884628163998 40.44128836512863, -91.52960728163137 40.43508636512286, -91.52769128162959 40.41016936509965, -91.50037728160414 40.405160365094986, -91.49031428159478 40.390806365081616, -91.47703828158241 40.39101236508181, -91.44874728155607 40.37194636506405, -91.48684928159155 40.30966836500605, -91.49908728160295 40.2514223649518, -91.50670128161003 40.200504364904376, -91.51628428161897 40.134589364842995, -91.50416028160768 40.06675736477982, -91.4874432815921 40.00579836472305, -91.4473952815548 39.94611036466746, -91.43054028153911 39.921882364644894, -91.43420328154252 39.90187436462626, -91.4511412815583 39.885288364610815, -91.44934028155662 39.86309436459014, -91.38186328149378 39.803817364534936, -91.37356928148606 39.76131836449535, -91.36723728148016 39.72468536446124, -91.31781228143413 39.68596236442518, -91.20338928132756 39.60006736434518, -91.15632928128373 39.55263936430101, -91.09375028122545 39.52897336427897, -91.06452128119822 39.4740303642278, -91.03647528117212 39.44445836420026, -90.94802428108973 39.40063236415944, -90.85062428099903 39.35049936411275, -90.77946928093276 39.29685036406279, -90.73820728089433 39.24785836401716, -90.73246228088898 39.224794363995684, -90.71831728087581 39.19592136396879, -90.71686028087444 39.144259363920675, -90.69052228084992 39.093749363873634, -90.70771228086592 39.05822736384055, -90.70619328086451 39.03784136382157, -90.66899928082987 38.93530336372607, -90.62733528079107 38.88084536367535, -90.57044828073809 38.87137736366653, -90.53054528070092 38.89165936368542, -90.4699572806445 38.959227363748354, -90.41318628059163 38.962378363751284, -90.3198532805047 38.92495636371643, -90.2790432804667 38.924765363716254, -90.2440382804341 38.91455736370675, -90.13292028033061 38.85307936364949, -90.11322828031227 38.83051536362848, -90.12183428032029 38.800559363600584, -90.13528528033281 38.78553336358658, -90.1635072803591 38.77314736357505, -90.19668128039 38.72401536352929, -90.20235028039527 38.70041336350731, -90.18368928037789 38.65882236346857, -90.18381928037802 38.61032236342341, -90.24105728043132 38.5628573633792, -90.26134428045022 38.53282036335123, -90.26589928045445 38.518741363338115, -90.30195828048804 38.42741036325306, -90.33972528052321 38.39090036321905, -90.35880728054099 38.36538336319529, -90.36946628055091 38.32361336315639, -90.36488928054665 38.234353363073254, -90.33683528052052 38.188767363030806, -90.28975328047667 38.16687036301041, -90.25417728044354 38.122223362968825, -90.2076442804002 38.08895936293785, -90.13482728033239 38.054004362905296, -90.11945328031807 38.0323253628851, -90.04203528024597 37.99325836284872, -90.01092228021699 37.96937136282648, -89.95833828016802 37.96368636282118, -89.97902328018728 37.91193736277299, -89.93798328014906 37.87809736274147, -89.9006592801143 37.87595636273947, -89.86692128008288 37.89192836275435, -89.8611532800775 37.90553936276703, -89.85182228006882 37.90511536276664, -89.728551279954 37.84104336270696, -89.69115827991918 37.804846362673246, -89.67596027990503 37.78402136265386, -89.66656127989627 37.74550536261798, -89.58153527981709 37.706155362581335, -89.5216192797613 37.69484836257081, -89.5134712797537 37.679890362556876, -89.51927727975911 37.65042536252943, -89.5134632797537 37.61597836249735, -89.5250682797645 37.5720063624564, -89.49487727973639 37.49177536238168, -89.45371427969805 37.45323536234579, -89.42766527967379 37.411068362306516, -89.43582827968139 37.35576636225501, -89.46883327971213 37.33945936223982, -89.50067227974178 37.32949136223054, -89.51397727975417 37.30501236220775, -89.51397627975417 37.276452362181146, -89.48968327973155 37.25605136216214, -89.46539827970894 37.253781362160026, -89.46830427971163 37.22431636213258, -89.44060627968584 37.16536736207769, -89.42388027967026 37.13725336205151, -89.38007027962946 37.099133362016005, -89.38302827963221 37.04926336196956, -89.31105827956519 37.00973236193274, -89.28284327953891 36.999257361922986, -89.26207627951958 37.00873636193181, -89.26431927952166 37.02778336194955, -89.309777279564 37.06095936198045, -89.30336927955803 37.08543436200324, -89.28431127954028 37.0912943620087, -89.26413027952148 37.087174362004866, -89.23775327949691 37.04178336196259, -89.21012627947118 37.029023361950706, -89.19358427945578 36.98682236191141, -89.1299302793965 36.98816536191266, -89.10721627937535 36.97750436190273, -89.10503427937331 36.953922361880764))) +AZ Arizona MULTIPOLYGON (((-114.52062730304343 33.02770735822419, -114.55908930307925 33.03678235823264, -114.6099253031266 33.027002358223534, -114.63396730314898 33.03356735822965, -114.6451593031594 33.044412358239754, -114.66395130317692 33.038922358234636, -114.71135530322107 33.09538235828722, -114.70946330321931 33.122375358312354, -114.6781203031901 33.16725035835415, -114.6800513031919 33.224595358407555, -114.68771130319904 33.23925835842121, -114.67769330318971 33.268016358447994, -114.73542730324348 33.3057083584831, -114.70360330321384 33.352418358526606, -114.7249363032337 33.41105935858121, -114.64509230315934 33.419116358588724, -114.63057330314584 33.439425358607636, -114.621089303137 33.468599358634805, -114.59808630311556 33.48612735865113, -114.5870613031053 33.50944535867285, -114.52942030305162 33.56007335872, -114.5402473030617 33.58050735873903, -114.52717030304953 33.622136358777794, -114.52526330304775 33.66550435881818, -114.53643330305815 33.682735358834236, -114.49567630302019 33.70836935885811, -114.5102873030338 33.74320035889055, -114.50455830302846 33.7717143589171, -114.5211223030439 33.82603135896769, -114.51172230303513 33.84196535898253, -114.52096230304375 33.862926359002046, -114.49818830302253 33.925036359059895, -114.5256323030481 33.95241335908539, -114.51820830304118 33.96506335909717, -114.42898030295808 34.02984435915751, -114.42402930295347 34.07833235920266, -114.41016630294055 34.10265435922531, -114.32279930285918 34.1412973592613, -114.28536830282434 34.17123135928918, -114.23577630277813 34.186222359303144, -114.14991230269818 34.266979359378354, -114.12523030267519 34.272621359383606, -114.13412730268348 34.31454835942266, -114.15341530270143 34.33644735944305, -114.18208030272814 34.36520635946984, -114.2578423027987 34.40548835950735, -114.2833943028225 34.41206935951348, -114.30286530284062 34.43575435953554, -114.33263630286835 34.454873359553346, -114.3765073029092 34.45967935955782, -114.38386230291606 34.47708535957403, -114.3768283029095 34.536563359629426, -114.40974230294016 34.58372335967334, -114.43430230296303 34.59896335968754, -114.42227030295183 34.61089535969865, -114.46563730299222 34.70987335979083, -114.49780430302218 34.74475735982332, -114.52555330304801 34.74891135982719, -114.54204030306337 34.759958359837476, -114.5702173030896 34.83186035990444, -114.62726330314274 34.875533359945116, -114.63047530314574 34.919501359986064, -114.62100730313692 34.943609360008516, -114.63227630314742 34.997651360058846, -114.62106830313698 34.99891436006002, -114.63378030314881 35.041863360100024, -114.59563230311329 35.07605836013187, -114.6359093031508 35.11865536017154, -114.62644130314197 35.13390636018575, -114.58261630310116 35.132560360184485, -114.57225530309151 35.14006736019148, -114.56104030308107 35.17434636022341, -114.5595833030797 35.22018336026609, -114.58789030310608 35.304768360344866, -114.58958430310764 35.358378360394795, -114.64539630315963 35.450760360480835, -114.6722153031846 35.515754360541365, -114.64979230316374 35.54663736057013, -114.65313430316684 35.5848333606057, -114.63986630315449 35.611348360630394, -114.65406630316771 35.64658436066321, -114.66848630318114 35.65639936067235, -114.66509130317797 35.69309936070653, -114.68882030320007 35.73259536074332, -114.68273930319441 35.76470336077322, -114.68986730320105 35.84744236085027, -114.66246230317552 35.870960360872175, -114.66160030317472 35.88047336088104, -114.69927630320981 35.91161236091004, -114.7362123032442 35.987648360980856, -114.71767330322695 36.036758361026585, -114.72896630323746 36.058753361047074, -114.7281503032367 36.08596236107242, -114.71276130322238 36.10518136109032, -114.62161030313749 36.141966361124574, -114.59893530311636 36.13833536112119, -114.5305733030527 36.15509036113679, -114.46661330299312 36.1247113611085, -114.44394530297203 36.1210533611051, -114.38080330291321 36.15099136113298, -114.34423430287916 36.137480361120396, -114.31609530285294 36.11143836109614, -114.30385730284155 36.08710836107348, -114.30758730284502 36.06223336105032, -114.233472302776 36.01833136100943, -114.20676930275113 36.017255361008424, -114.12902330267872 36.04173036103122, -114.10777530265894 36.12109036110513, -114.04510530260056 36.19397836117301, -114.03739230259339 36.21602336119354, -114.04371630259928 36.84184936177639, -114.04393930259948 36.99653836192046, -112.89998330153409 36.99622736192016, -112.54252130120118 36.99799436192181, -112.23725830091688 36.995492361919474, -111.3561643000963 37.001709361925265, -110.7400632995225 37.002488361926, -110.48408929928411 37.003926361927334, -110.45223629925445 36.991746361915986, -109.99707629883055 36.99206736191629, -109.0484802979471 36.99664136192055, -109.0478462979465 35.99666436098925, -109.04664129794538 34.95464636001879, -109.04865229794726 34.59178035968085, -109.05034929794884 33.7833023589279, -109.050526297949 33.20516435838946, -109.05134629794976 32.779550357993074, -109.04949529794804 32.44204435767875, -109.04561529794442 31.34345335665561, -110.45257829925477 31.33766035665021, -111.07196429983162 31.335634356648328, -111.36952130010873 31.431531356737636, -113.32911130193375 32.04362135730769, -114.82176130332388 32.487169357720774, -114.80939430331236 32.6160443578408, -114.72204930323102 32.720857357938414, -114.71269530322232 32.7350133579516, -114.69404030320493 32.74142535795757, -114.60394230312102 32.72628535794347, -114.60352230312063 32.73588635795241, -114.57195930309123 32.73743935795386, -114.57221030309148 32.74882935796447, -114.56075130308079 32.74893635796457, -114.56158230308156 32.760753357975574, -114.54300430306427 32.76074935797557, -114.54318730306444 32.77123235798533, -114.53009530305225 32.7714113579855, -114.53507730305688 32.788047358000995, -114.52621930304863 32.80991235802135, -114.4614363029883 32.84542235805443, -114.47644430300228 32.9359083581387, -114.46838730299478 32.9777893581777, -114.52062730304343 33.02770735822419))) +OK Oklahoma MULTIPOLYGON (((-94.43932228434126 34.929151359995046, -94.44596128434745 34.7356083598148, -94.45262428435365 34.508432359603226, -94.46169128436209 34.19676535931296, -94.46858528436852 33.93931135907319, -94.47669128437606 33.63208135878706, -94.50081628439852 33.62316235877876, -94.5107652844078 33.63092535878598, -94.52526128442129 33.621136358776866, -94.51819628441471 33.643124358797344, -94.5504012844447 33.63280935878774, -94.56235628445584 33.635650358790386, -94.56240228445589 33.64294435879717, -94.54213828443702 33.64836135880222, -94.54562528444026 33.661735358814674, -94.57666928446918 33.65227135880586, -94.58859428448028 33.65556235880893, -94.58536728447727 33.66224635881515, -94.56541628445869 33.66312735881597, -94.56093028445451 33.67202735882426, -94.57871428447108 33.67058535882292, -94.58531428447722 33.67909535883084, -94.60115328449197 33.66572135881839, -94.63194628452065 33.68401135883542, -94.6389732845272 33.670217358822576, -94.65874828454561 33.663850358816646, -94.66963628455575 33.66617335881881, -94.66816328455438 33.67157135882384, -94.64453528453238 33.677762358829604, -94.65568928454276 33.69240335884324, -94.66866728455486 33.69664835884719, -94.69119728457584 33.690399358841375, -94.74186528462302 33.701377358851595, -94.75469028463496 33.707881358857655, -94.74232328462345 33.71915735886816, -94.76293028464264 33.716906358866055, -94.74998328463059 33.7368153588846, -94.78337028466167 33.73377435888177, -94.78224128466063 33.74237635888978, -94.764388284644 33.75295135889963, -94.783722284662 33.753370358900014, -94.80343728468037 33.73969135888728, -94.81937528469521 33.74951335889642, -94.85809628473127 33.74942935889635, -94.8818552847534 33.77507235892023, -94.91409928478343 33.78970535893386, -94.90876628477847 33.80358635894679, -94.91845628478748 33.81630435895863, -94.94062028480813 33.815915358958264, -94.94010928480765 33.84093235898157, -94.9601292848263 33.84818435898832, -94.96892728483449 33.86632235900521, -94.98950428485365 33.85629035899587, -95.01299628487553 33.870053359008686, -95.03758628489844 33.866559359005436, -95.04308728490356 33.88455335902219, -95.06336628492244 33.8968013590336, -95.06370228492275 33.917756359053115, -95.0838292849415 33.88856935902593, -95.08994028494719 33.89702335903381, -95.08249428494025 33.91856035905386, -95.09558628495245 33.921845359056924, -95.11945228497468 33.912388359048116, -95.12690628498162 33.91725235905265, -95.12819628498282 33.94097535907474, -95.14854428500178 33.94365335907723, -95.2342702850816 33.96496935909708, -95.25152128509768 33.936550359070615, -95.2512232850974 33.905128359041356, -95.26384928510916 33.89790735903463, -95.27758328512195 33.91804535905338, -95.2866622851304 33.88700835902448, -95.30218828514487 33.88673035902422, -95.33646028517678 33.89722035903399, -95.33027228517102 33.871024359009596, -95.45184128528425 33.86585835900478, -95.46835928529963 33.88653735902404, -95.49909128532825 33.88182235901965, -95.51312228534131 33.89784035903457, -95.54427428537032 33.8858463590234, -95.54773028537355 33.8932623590303, -95.52697028535421 33.89792035903464, -95.51981328534754 33.90674735904286, -95.54655528537245 33.90413735904043, -95.56301328538778 33.93617735907027, -95.6063122854281 33.94465635907817, -95.61507028543626 33.936794359070845, -95.61322428543454 33.92034135905552, -95.63373228545363 33.9202073590554, -95.69995028551531 33.89492635903186, -95.74710928555923 33.90349735903983, -95.76094228557211 33.893541359030564, -95.76449728557542 33.879106359017115, -95.7687612855794 33.85150335899141, -95.7957252856045 33.864774359003775, -95.82622128563291 33.84312535898361, -95.84680528565208 33.84113835898176, -95.93332828573266 33.89062835902785, -95.94332328574197 33.89007135902733, -95.95901628575659 33.86513935900411, -95.97764828577394 33.858051358997514, -95.99446428578959 33.87547635901374, -96.00287228579742 33.873489359011884, -96.00204828579666 33.8570783589966, -96.01432428580809 33.84430735898471, -96.0270042858199 33.856121358995715, -96.04823028583967 33.84137735898198, -96.09178028588023 33.84467735898505, -96.10970128589692 33.82935735897079, -96.14922328593373 33.835690358976684, -96.16946428595257 33.829083358970536, -96.18338828596555 33.815892358958244, -96.1809852859633 33.80853435895139, -96.1547772859389 33.824044358965835, -96.1416772859267 33.820420358962465, -96.16157528594523 33.79832935894189, -96.16907428595222 33.769457358915, -96.18728628596918 33.758684358904965, -96.21280728599294 33.756792358903205, -96.27833828605398 33.77348935891875, -96.28994328606478 33.76203435890809, -96.30105028607512 33.7141533588635, -96.31653828608955 33.70190435885209, -96.34785028611871 33.705631358855555, -96.37108328614035 33.74049735888803, -96.41973028618565 33.78842835893267, -96.4876412862489 33.77823235892318, -96.50101628626136 33.78819235893245, -96.51084328627051 33.81578735895815, -96.56240428631853 33.82552235896721, -96.60146828635492 33.84305835898355, -96.61443928636699 33.86300135900212, -96.58476028633935 33.89624535903308, -96.6665122864155 33.913644359049286, -96.67797928642617 33.904424359040696, -96.69365728644077 33.84800635898816, -96.71195328645781 33.83397235897509, -96.7491022864924 33.831840358973096, -96.79787128653783 33.870051359008684, -96.81439728655322 33.871871359010385, -96.84429028658106 33.85813435899759, -96.8612962865969 33.861781359000986, -96.87921928661359 33.88410435902178, -96.88313328661724 33.92469235905958, -96.89873628663176 33.95012735908326, -96.92985028666074 33.9618733590942, -96.93648728666692 33.947949359081235, -96.96847128669671 33.93742135907143, -96.98814828671503 33.944303359077836, -96.98799528671489 33.876525359014714, -97.0061382867318 33.850616358990585, -97.02588328675019 33.840664358981314, -97.07118828679238 33.856830358996376, -97.08246528680287 33.85120335899113, -97.07853528679922 33.83791335897875, -97.05031328677293 33.823551358965375, -97.08795828680799 33.80767535895059, -97.08375428680408 33.74251835888991, -97.09078828681062 33.731776358879905, -97.11585228683397 33.72603835887456, -97.15276428686835 33.728773358877106, -97.18945528690251 33.752874358899554, -97.20861328692037 33.81975235896184, -97.19530728690796 33.83626135897722, -97.16888528688337 33.84789635898805, -97.16446028687925 33.86325035900235, -97.18805928690122 33.89930535903593, -97.21162628692316 33.90579035904197, -97.24635628695552 33.89433935903131, -97.25098028695982 33.8730723590115, -97.26420228697214 33.858832358998235, -97.27257228697992 33.872675359011126, -97.31438228701887 33.8959413590328, -97.31525228701967 33.8704943590091, -97.34210028704469 33.8620173590012, -97.36361628706472 33.83112735897244, -97.4104162871083 33.820812358962826, -97.453035287148 33.83631535897727, -97.45736028715203 33.89053235902776, -97.46306028715733 33.90248335903889, -97.47783128717109 33.90780835904385, -97.51850428720897 33.916871359052294, -97.55489028724286 33.90400435904031, -97.57597028726249 33.90263135903903, -97.59265628727803 33.917985359053326, -97.60048428728533 33.969535359101336, -97.67137128735133 33.98871135911919, -97.70456728738226 33.9716443591033, -97.72932628740531 33.93939135907326, -97.75667028743078 33.93219735906656, -97.7905152874623 33.890556359027784, -97.85285728752037 33.857171358996695, -97.87006228753638 33.85521435899487, -97.909377287573 33.87412335901248, -97.95504828761554 33.88357935902128, -97.9766932876357 33.902603359039006, -97.97644228763546 33.9121513590479, -97.95099728761176 33.932616359066955, -97.96331128762323 33.948748359081975, -97.94806728760904 33.95984935909232, -97.95053928761133 33.97125835910294, -97.98299528764156 34.001382359131, -98.02380628767956 33.98708135911768, -98.05587328770943 33.9898963591203, -98.08652228773798 34.00541035913475, -98.11100528776078 34.06991535919482, -98.09444128774535 34.134649359255114, -98.11518628776467 34.149079359268555, -98.13718228778517 34.138524359258724, -98.17316428781866 34.115461359237244, -98.27732428791568 34.12296435924423, -98.32081428795618 34.13951235925964, -98.35073028798404 34.14221335926216, -98.38458328801556 34.115873359237625, -98.39128228802181 34.08732435921104, -98.40746428803688 34.08254835920659, -98.42167028805011 34.06592435919111, -98.44851928807512 34.05446935918044, -98.49985228812292 34.06650835919165, -98.557914288177 34.1054283592279, -98.57666828819445 34.14202235926198, -98.60758428822325 34.1514893592708, -98.62633028824071 34.15852735927735, -98.662059288274 34.147129359266735, -98.68255228829307 34.150089359269494, -98.70563228831458 34.13080635925154, -98.77887728838279 34.132053359252694, -98.81141028841309 34.146026359265704, -98.89168928848785 34.16091035927957, -98.95285728854482 34.194653359311, -98.9965442885855 34.209583359324895, -99.03557028862184 34.199009359315056, -99.07878428866209 34.208446359323844, -99.1283002887082 34.20155635931742, -99.1765112887531 34.21281635932791, -99.19084028876645 34.22382135933816, -99.2049552887796 34.255730359367874, -99.19666328877187 34.305205359413954, -99.20584928878043 34.33207535943898, -99.25446528882571 34.36829435947271, -99.26753528883788 34.39836435950072, -99.32365928889016 34.41278735951415, -99.36456928892825 34.45027235954906, -99.39315728895488 34.42907035952931, -99.39452228895615 34.39682235949928, -99.41032328897086 34.36918535947354, -99.43874328899733 34.36478335946944, -99.47980628903558 34.38360035948696, -99.50250428905672 34.4041453595061, -99.55423228910489 34.41525635951645, -99.57821928912723 34.40898835951061, -99.58558928913409 34.384934359488206, -99.60181728914921 34.36863435947303, -99.68527728922693 34.3775203594813, -99.77806028931334 34.444064359543276, -99.83030828936201 34.50184635959709, -99.86094928939055 34.51869435961278, -99.88097728940919 34.5482423596403, -99.93228728945698 34.579173359669106, -99.94512028946893 34.57963435966954, -99.97248028949441 34.56192635965304, -99.99647528951677 34.56238435965347, -99.99926028951936 34.74724335982563, -99.99645528951675 35.03105136008995, -99.99757028951778 35.18223536023075, -99.99474328951514 35.424622360456496, -100.0003922895204 35.61885636063739, -99.99812328951829 35.88383736088417, -99.99755328951777 36.05759136104599, -100.00155028952149 36.492554361451084, -100.00727328952682 36.493912361452345, -100.54983929003212 36.48947936144822, -100.95734129041163 36.48963736144837, -101.09010229053528 36.48805036144689, -101.62075529102948 36.4920313614506, -102.03465829141497 36.492981361451484, -102.16567329153699 36.49023436144893, -102.9974012923116 36.49237036145091, -102.99770929231188 36.9985233619223, -102.03720729141735 36.98899436191343, -102.02451929140553 36.988875361913315, -101.55367629096702 36.9966933619206, -101.07160429051805 36.99746636192132, -100.95058729040535 36.99666136192057, -100.63424529011073 36.99783236192166, -100.08857428960253 36.997652361921496, -99.99926128951935 36.99541736191941, -99.54463928909595 36.99546336191945, -99.43747328899615 36.99455836191861, -98.99951628858827 36.998072361921885, -98.54021928816051 36.99837636192217, -98.3471432879807 36.9990613619228, -98.10452928775474 36.99867136192244, -97.80425028747509 36.99856736192234, -97.46540528715951 36.99646736192039, -97.13769328685432 36.9998083619235, -96.74869628649203 37.00016636192383, -96.51918728627828 37.000577361924215, -96.00604928580039 36.99833336192212, -95.9579612857556 37.00008336192376, -95.78574828559522 36.99811436192192, -95.52601928535333 37.00101836192462, -95.40662228524212 37.00061536192425, -95.07193128493041 37.00147836192505, -95.03274528489392 37.0007793619244, -94.62037928450988 36.99704636192092, -94.62168428451109 36.76360736170352, -94.62107328451053 36.67054336161685, -94.61725728450698 36.489414361448155, -94.60745328449784 36.478790361438264, -94.55311328444724 36.16452536114558, -94.54241728443728 36.10683536109185, -94.48593528438467 35.760310360769125, -94.46848528436841 35.64108836065809, -94.42855228433123 35.40054636043407, -94.43932228434126 34.929151359995046))) +NC North Carolina MULTIPOLYGON (((-83.98845427460813 34.989151360050926, -84.11815227472891 34.98830736005014, -84.32377327492041 34.989090360050874, -84.29095927488986 35.21062236025719, -84.22586327482924 35.261683360304744, -84.17964227478619 35.24106936028555, -84.10156027471346 35.2456333602898, -84.04268927465864 35.27265836031496, -84.03077127464753 35.29260536033354, -84.029115274646 35.325374360364066, -84.00621727462467 35.372943360408364, -84.01255627463057 35.40770636044074, -83.9546082745766 35.45554436048529, -83.90991227453497 35.47656436050487, -83.88112527450816 35.51067236053663, -83.83009827446065 35.51914936054453, -83.77577427441005 35.55269336057577, -83.67276627431411 35.56506236058729, -83.61375027425916 35.57183136059359, -83.56092227420996 35.55526836057817, -83.50568327415851 35.559645360582245, -83.45817327411426 35.59737336061738, -83.38697227404795 35.6253133606434, -83.34290327400691 35.65335536066952, -83.29829127396536 35.65642336067238, -83.25899927392877 35.69110636070468, -83.25317727392334 35.70080336071371, -83.24372427391454 35.718313360730015, -83.18522027386005 35.72898336073995, -83.14353327382123 35.762782360771425, -83.1180572737975 35.76390736077248, -83.05982827374328 35.78267636078996, -82.98687427367534 35.774091360781966, -82.96261927365275 35.7919523607986, -82.90668927360066 35.87231736087344, -82.9139382736074 35.927969360925275, -82.89584227359056 35.94846236094436, -82.85613727355357 35.94752836094349, -82.80853527350924 35.92097536091876, -82.77630827347923 35.95667736095201, -82.77346327347658 35.98760736098082, -82.76309527346692 35.99965036099203, -82.64375527335578 36.051829361040625, -82.62790927334102 36.05444636104306, -82.604264273319 36.04309436103249, -82.59209427330767 36.02255636101336, -82.60566627332031 36.00365436099575, -82.59916527331426 35.963405360958276, -82.5540052732722 35.95621636095158, -82.50679427322822 35.97265036096688, -82.47505527319866 35.9932843609861, -82.40828327313648 36.0754263610626, -82.37371327310429 36.098807361084376, -82.3117832730466 36.122260361106214, -82.26216027300039 36.120487361104566, -82.20758427294956 36.14712736112938, -82.15390127289956 36.1397373611225, -82.11792527286606 36.09637436108211, -82.07760227282851 36.10026036108573, -82.02029527277514 36.12983436111327, -81.93295127269378 36.2634443612377, -81.91099427267335 36.290875361263254, -81.83041027259829 36.33477936130414, -81.73032427250509 36.329467361299194, -81.70929027248549 36.33385036130328, -81.7402132725143 36.36198236132948, -81.74090827251494 36.39190736135735, -81.69811527247508 36.47190036143185, -81.70263227247929 36.51946036147614, -81.66983527244875 36.58976736154162, -81.34512127214633 36.572988361525994, -80.9032402717348 36.56534236151887, -80.837953271674 36.56356836151722, -80.61084127146248 36.55743036151151, -80.4350922712988 36.551181361505684, -80.04786327093817 36.54727236150204, -80.02382227091577 36.54516336150007, -79.71720127063021 36.548028361502745, -79.51004827043728 36.54779536150253, -79.21680327016418 36.54992136150451, -79.14406327009644 36.54619836150104, -78.79642826977268 36.54367436149869, -78.73711626971743 36.54621436150106, -78.45852926945798 36.54162336149678, -78.32096926932986 36.54567536150056, -78.0513812690788 36.55262136150702, -77.89856826893647 36.55309236150747, -77.76363826881082 36.553589361507925, -77.31974626839741 36.55406836150837, -77.1770422682645 36.556437361510575, -76.92381626802867 36.554298361508586, -76.92131426802634 36.5543093615086, -76.56325526769287 36.555404361509616, -76.49722826763139 36.555964361510135, -76.32991626747555 36.556208361510365, -76.12705026728662 36.5573153615114, -76.04561126721077 36.5571063615112, -76.03286126719891 36.51452736147155, -76.09071726725278 36.50372036146148, -75.97572126714569 36.43637036139876, -75.96941126713982 36.41527536137911, -76.00125826716948 36.419070361382644, -75.95090126712257 36.365628361332874, -75.92776826710103 36.42340136138668, -75.92423426709773 36.35110636131935, -75.79968726698175 36.11297936109757, -75.79848026698062 36.072982361060326, -75.85479726703306 36.10582936109091, -75.91340626708765 36.24496136122049, -75.9571552671284 36.25961236123413, -75.94157626711389 36.29449736126663, -76.00861926717633 36.319753361290154, -75.9568262671281 36.19393136117297, -75.98098126715058 36.169886361150574, -76.18282126733857 36.31539536128609, -76.21855826737185 36.29676436126874, -76.11235826727294 36.17457836115494, -76.14158726730017 36.147848361130045, -76.23463326738681 36.163519361144644, -76.29858526744638 36.214387361192024, -76.27516126742456 36.11053036109529, -76.48019226761551 36.079952361066816, -76.42008526755953 36.058766361047084, -76.52267326765508 36.00732936099918, -76.59366626772119 36.01029336100194, -76.64868426777244 36.0658683610537, -76.63287526775771 36.03727736102707, -76.68982326781075 36.04977036103871, -76.72618026784461 36.15698036113855, -76.68840826780944 36.29467336126679, -76.7763182678913 36.35848436132622, -76.92376126802861 36.39259836135799, -76.74102226785843 36.31532236128602, -76.7071682678269 36.266288361240356, -76.7447362678619 36.23407336121035, -76.76034526787643 36.144750361127166, -76.6934312678141 35.99313036098596, -76.74079426785822 35.93678736093348, -76.69688626781732 35.94170436093806, -76.40912826754933 35.97762936097152, -76.37113926751395 35.9325053609295, -76.21342026736706 35.97703736097097, -76.08928226725145 35.963073360957964, -76.02568726719223 35.920585360918395, -76.07555226723866 35.756964360766005, -76.04270426720807 35.68401436069807, -76.16694626732378 35.697007360710174, -76.1043822672655 35.66380536067925, -76.02084426718771 35.66925936068433, -75.98749126715666 35.89286736089258, -75.8176812669985 35.923684360921285, -75.74858426693415 35.869508360870825, -75.7289892669159 35.66534636068069, -75.77867326696217 35.578859360600134, -75.8911222670669 35.6314373606491, -76.0526082672173 35.41477536044732, -76.1812522673371 35.34170236037927, -76.49845126763252 35.41638336044882, -76.53340226766507 35.45036536048047, -76.45808226759492 35.504591360530966, -76.44617326758383 35.55103136057422, -76.51859526765128 35.57781036059916, -76.49218826762669 35.541952360565766, -76.63785326776235 35.520501360545786, -76.62842126775357 35.438063360469016, -76.70502926782491 35.41210136044484, -77.10344426819596 35.55034836057358, -76.98285426808366 35.436663360467705, -76.69455226781515 35.35059436038755, -76.61416726774029 35.27308636031536, -76.59085926771859 35.31224736035183, -76.5406272676718 35.30385436034402, -76.50677526764026 35.24893336029287, -76.63974126776411 35.17268636022186, -76.60487526773163 35.13872636019023, -76.62387326774933 35.06451336012111, -76.67766226779942 35.02424836008362, -76.84912526795911 34.98238036004462, -76.94115526804482 35.02758736008673, -76.94291026804645 35.07019436012641, -77.0475522681439 35.09231536014701, -77.1043472681968 35.08814536014312, -77.11026026820231 35.06619536012268, -77.00085826810042 35.053046360110436, -76.91277326801838 34.93663036000201, -76.64670126777058 34.906495359973945, -76.66971226779202 34.97015836003324, -76.52942626766136 34.974797360037556, -76.44467426758243 35.0168213600767, -76.4236992675629 34.94641036001112, -76.36365226750698 34.9432753600082, -76.32904426747474 34.97612036003879, -76.31434826746106 34.94897936001352, -76.4695462676056 34.78522335986101, -76.62496326775035 34.71991535980018, -77.05019926814637 34.69907935978078, -77.14863026823805 34.7644933598417, -77.12906726821983 34.68507535976774, -77.15627426824517 34.66079935974513, -77.53832626860098 34.457175359555485, -77.5864552686458 34.42110435952189, -77.6094202686672 34.43521135953503, -77.60230926866056 34.41279635951416, -77.75022826879832 34.305215359413964, -77.86409426890437 34.19290835930937, -77.89410926893233 34.0693513591943, -77.92646726896247 34.062207359187646, -77.9604422689941 34.189413359306116, -77.95823626899205 33.99275335912296, -78.0345182690631 33.91446535905005, -78.5794532695706 33.88216435901997, -78.65545326964138 33.94884535908207, -79.07425727003142 34.30473835941352, -79.44691327037849 34.619222359706406, -79.45574127038671 34.634252359720406, -79.66728227058373 34.80082035987553, -79.68573827060091 34.80541235987981, -79.91973627081885 34.80807435988228, -80.32506527119634 34.814916359888656, -80.56133527141637 34.81537935988909, -80.79985627163852 34.81626035988991, -80.7854442716251 34.94078836000588, -80.83995927167587 35.00216636006305, -80.89451027172667 35.0598803601168, -80.92759227175748 35.10139436015547, -81.03968527186187 35.03734536009581, -81.06535027188578 35.06662536012308, -81.02824027185122 35.10555136015934, -81.04883927187039 35.132153360184105, -81.04909927187065 35.151672360202284, -81.32262527212538 35.16389136021367, -81.36198027216203 35.16298636021283, -81.76518127253755 35.18259636023109, -81.87041627263555 35.183237360231686, -81.97127227272948 35.18840036023649, -82.21001027295182 35.193241360241004, -82.2781652730153 35.19512136024275, -82.32060927305483 35.184303360232676, -82.35070027308285 35.192788360240584, -82.35996227309148 35.183064360231526, -82.37121627310196 35.18283936023131, -82.38945027311894 35.20835636025508, -82.43776127316393 35.16967636021906, -82.46658627319077 35.17361736022272, -82.5244792732447 35.154677360205085, -82.56987627328698 35.14960736020036, -82.65434427336564 35.11957436017239, -82.68590027339503 35.12158036017426, -82.68788427339688 35.09791836015222, -82.69720827340556 35.09134936014611, -82.77120127347447 35.08553736014069, -82.88755627358283 35.0554733601127, -83.00714627369422 35.02429336008366, -83.10615727378642 35.00036636006138, -83.51288727416522 34.99211536005369, -83.54929727419913 34.98962836005137, -83.93789927456105 34.98947736005123, -83.98845427460813 34.989151360050926)), ((-76.02681926719328 36.55687036151098, -75.99831426716673 36.556805361510925, -75.91156426708594 36.54268436149777, -75.92445026709794 36.474131361433926, -75.9769272671468 36.47817036143769, -75.97593626714588 36.518079361474854, -76.02681926719328 36.55687036151098)), ((-75.90163126707668 36.5563523615105, -75.8778112670545 36.5560283615102, -75.7727882669567 36.229418361206015, -75.54457826674415 35.788538360795414, -75.7023592668911 36.05002836103895, -75.74049226692661 36.05048836103938, -75.78280626696602 36.22535536120223, -75.90163126707668 36.5563523615105)), ((-75.49082426669409 35.67067836068565, -75.53323326673359 35.769034360777255, -75.4565802666622 35.6175773606362, -75.52589326672675 35.22809436027346, -75.74889826693445 35.190001360237986, -75.69117126688069 35.235164360280045, -75.52108026672227 35.281534360323235, -75.47502026667938 35.56467536058693, -75.49082426669409 35.67067836068565)), ((-76.01662826718379 35.06960536012586, -75.97531326714531 35.11635536016939, -75.85354926703191 35.16745536021699, -75.76331126694787 35.19245836024027, -75.81115026699241 35.164194360213955, -75.90356226707848 35.132664360184584, -76.00249726717063 35.06960536012586, -76.01662826718379 35.06960536012586)), ((-76.54391926767487 34.587994359677324, -76.55479126768499 34.61082435969858, -76.53739526766878 34.61408635970162, -76.48412526761918 34.69779535977958, -76.43193826757057 34.760848359838306, -76.37431826751691 34.81303335988691, -76.28733926743591 34.87717535994664, -76.468904267605 34.693446359775535, -76.54391926767487 34.587994359677324))) +TN Tennessee MULTIPOLYGON (((-83.9546082745766 35.45554436048529, -84.01255627463057 35.40770636044074, -84.00621727462467 35.372943360408364, -84.029115274646 35.325374360364066, -84.03077127464753 35.29260536033354, -84.04268927465864 35.27265836031496, -84.10156027471346 35.2456333602898, -84.17964227478619 35.24106936028555, -84.22586327482924 35.261683360304744, -84.29095927488986 35.21062236025719, -84.32377327492041 34.989090360050874, -84.61868427519508 34.988759360050565, -84.77113427533706 34.99075736005243, -84.80041727536432 34.99283236005436, -84.96785727552027 34.992683360054215, -84.97279327552486 34.99262936005417, -85.26771727579954 34.98914936005093, -85.35994427588543 34.989978360051694, -85.4673842759855 34.99012336005183, -85.60896027611734 34.99016436005187, -85.86956727636004 34.99238436005394, -86.30350027676418 34.99546436005681, -86.31305227677308 34.99527336005663, -86.78237227721017 34.997075360058304, -86.83342227725771 34.9982463600594, -87.20758827760618 35.007960360068445, -87.22276427762031 35.00734636006787, -87.60781327797892 35.010546360070855, -87.9860782783312 35.016033360075966, -88.19496227852575 35.013544360073645, -88.19399327852484 35.004453360065185, -88.35172727867175 35.00383236006461, -88.383146278701 35.00504136006573, -88.7850432790753 35.003182360063995, -88.81254827910091 35.00243836006331, -89.00619627928127 35.00023436006125, -89.19813427946002 35.000883360061856, -89.34237327959436 34.99980536006085, -89.64655827987765 35.000733360061716, -89.7172702799435 34.999261360060345, -90.30544828049129 35.00078836006176, -90.29190628047867 35.048551360106245, -90.19580428038917 35.04099036009921, -90.16917628036437 35.0779193601336, -90.178439280373 35.108738360162306, -90.16456828036009 35.12970336018183, -90.14382328034077 35.136626360188274, -90.08301628028413 35.12514036017758, -90.064628280267 35.14747436019838, -90.06252228026504 35.167005360216564, -90.07339428027517 35.19192236023977, -90.06905328027112 35.21282636025924, -90.09019528029081 35.254486360298046, -90.10603428030556 35.263935360306846, -90.15221628034858 35.26414536030704, -90.169840280365 35.282653360324275, -90.1570832803531 35.30633136034633, -90.10643828030595 35.31477236035418, -90.09879328029882 35.34567836038297, -90.10571328030527 35.366067360401956, -90.08722628028805 35.38159336041642, -90.0755682802772 35.40661336043972, -90.08525028028622 35.418365360450665, -90.11233528031144 35.41777436045011, -90.13256228033028 35.40768536044072, -90.14026028033744 35.38313036041785, -90.1679102803632 35.38433936041898, -90.17277028036771 35.42380136045573, -90.13736828033475 35.44260736047325, -90.10205128030186 35.47365136050216, -90.08232028028348 35.47828936050647, -90.0749352802766 35.47242636050102, -90.07402728027576 35.42659036045833, -90.06038528026305 35.41349436044613, -90.04687328025047 35.41718736044957, -89.99965328020649 35.44553736047597, -90.04190628024584 35.51252136053836, -90.040991280245 35.54292836056668, -90.03314028023767 35.552495360575584, -89.9896742801972 35.56175636058421, -89.96236028017177 35.532373360556846, -89.94763428015804 35.52698236055183, -89.93126128014279 35.529313360554, -89.92174728013394 35.546140360569666, -89.95811828016781 35.57867436059996, -89.9571332801669 35.60318336062279, -89.87752628009275 35.633414360650946, -89.86392228008009 35.6298253606476, -89.84928128006645 35.64530136066202, -89.85733028007394 35.67114136068608, -89.86526528008133 35.673384360688175, -89.89348728010762 35.656050360672026, -89.92982728014147 35.676344360690926, -89.95212128016223 35.712564360724656, -89.95112128016129 35.734345360744946, -89.90986828012288 35.754914360764104, -89.85995528007639 35.74826936075792, -89.82712428004581 35.7583473607673, -89.79998628002053 35.774300360782156, -89.79046428001168 35.805630360811335, -89.75987727998319 35.81749736082239, -89.73601927996097 35.80711436081272, -89.70090827992827 35.827590360831785, -89.70151827992883 35.84211336084531, -89.75779427998124 35.87149336087268, -89.76635527998921 35.884177360884486, -89.76299027998608 35.89688736089633, -89.73805627996286 35.915087360913276, -89.71476327994117 35.91150136090994, -89.66472827989458 35.885721360885924, -89.64941627988031 35.89436236089397, -89.64547927987664 35.91387336091215, -89.66427127989415 35.937894360934514, -89.71321527993973 35.96639736096106, -89.72183627994775 35.99995136099231, -89.68892227991711 36.025867361016445, -89.67824927990716 36.08304036106969, -89.66746827989712 36.09938636108492, -89.5895012798245 36.1298613611133, -89.58953227982454 36.152089361134, -89.61863927985165 36.18381136116354, -89.67686927990587 36.220935361198116, -89.69573727992345 36.240863361216675, -89.69462327992241 36.25220336122724, -89.6706662799001 36.2549613612298, -89.6181592798512 36.24096636121678, -89.54172527978001 36.257346361232024, -89.53545427977417 36.26460536123879, -89.54231327978056 36.280932361253996, -89.60684427984066 36.308103361279294, -89.6228742798556 36.334847361304206, -89.60576827983967 36.3548173613228, -89.54463227978272 36.34578836131439, -89.51940927975923 36.3559963613239, -89.52008027975985 36.40112236136593, -89.54525827978331 36.44102336140309, -89.51609827975615 36.47187236143182, -89.53327227977215 36.49817036145632, -89.47589727971871 36.49860936145672, -89.49206427973377 36.465524361425906, -89.47090827971407 36.44601736140774, -89.44859127969328 36.45644236141745, -89.41478427966179 36.50267936146051, -89.34666727959835 36.50261036146045, -88.83037227911751 36.49985436145788, -88.82635927911377 36.499908361457926, -88.8107182790992 36.49904536145713, -88.51268127882165 36.49954636145759, -88.49602527880613 36.49820736145635, -88.042763278384 36.49657036145482, -88.03507927837684 36.538200361493594, -88.04109127838244 36.58272136153506, -88.07134127841061 36.67968336162536, -87.87071127822377 36.669423361615806, -87.85353727820777 36.64152236158982, -87.69352827805875 36.64448836159258, -87.6406552780095 36.64521736159326, -87.34661127773566 36.64927736159704, -87.11270227751781 36.65130736159893, -87.06818427747635 36.65081136159847, -86.77053527719914 36.65210036159967, -86.51066827695712 36.655074361602445, -86.41544327686844 36.650932361598585, -86.19899227666686 36.64329036159147, -85.98061027646347 36.633112361581986, -85.78547627628174 36.626685361576, -85.43737427595754 36.6181993615681, -85.3000942758297 36.62610136157546, -85.27249827580398 36.625616361575005, -84.99846127554876 36.62098236157069, -84.79105727535561 36.60543836155621, -84.78187127534706 36.605076361555874, -84.25677727485802 36.59549836154696, -84.25448827485589 36.59545236154692, -84.00674627462516 36.59208836154378, -83.93560027455891 36.59129036154304, -83.6956082743354 36.58424936153648, -83.67517727431637 36.59870436154994, -83.46421027411989 36.59884036155007, -83.2750312739437 36.60046736155158, -83.24838827391889 36.58993536154178, -83.210926273884 36.58808936154006, -82.98669727367516 36.59128936154303, -82.84982227354769 36.59104136154281, -82.61083927332513 36.591545361543275, -82.29685827303271 36.59180136154352, -82.21666127295802 36.59407236154563, -82.15418127289983 36.59515036154663, -81.92930327269039 36.59595036154738, -81.91829427268014 36.61360836156382, -81.82889827259689 36.61159636156195, -81.65227227243238 36.6076733615583, -81.66983527244875 36.58976736154162, -81.70263227247929 36.51946036147614, -81.69811527247508 36.47190036143185, -81.74090827251494 36.39190736135735, -81.7402132725143 36.36198236132948, -81.70929027248549 36.33385036130328, -81.73032427250509 36.329467361299194, -81.83041027259829 36.33477936130414, -81.91099427267335 36.290875361263254, -81.93295127269378 36.2634443612377, -82.02029527277514 36.12983436111327, -82.07760227282851 36.10026036108573, -82.11792527286606 36.09637436108211, -82.15390127289956 36.1397373611225, -82.20758427294956 36.14712736112938, -82.26216027300039 36.120487361104566, -82.3117832730466 36.122260361106214, -82.37371327310429 36.098807361084376, -82.40828327313648 36.0754263610626, -82.47505527319866 35.9932843609861, -82.50679427322822 35.97265036096688, -82.5540052732722 35.95621636095158, -82.59916527331426 35.963405360958276, -82.60566627332031 36.00365436099575, -82.59209427330767 36.02255636101336, -82.604264273319 36.04309436103249, -82.62790927334102 36.05444636104306, -82.64375527335578 36.051829361040625, -82.76309527346692 35.99965036099203, -82.77346327347658 35.98760736098082, -82.77630827347923 35.95667736095201, -82.80853527350924 35.92097536091876, -82.85613727355357 35.94752836094349, -82.89584227359056 35.94846236094436, -82.9139382736074 35.927969360925275, -82.90668927360066 35.87231736087344, -82.96261927365275 35.7919523607986, -82.98687427367534 35.774091360781966, -83.05982827374328 35.78267636078996, -83.1180572737975 35.76390736077248, -83.14353327382123 35.762782360771425, -83.18522027386005 35.72898336073995, -83.24372427391454 35.718313360730015, -83.25317727392334 35.70080336071371, -83.25899927392877 35.69110636070468, -83.29829127396536 35.65642336067238, -83.34290327400691 35.65335536066952, -83.38697227404795 35.6253133606434, -83.45817327411426 35.59737336061738, -83.50568327415851 35.559645360582245, -83.56092227420996 35.55526836057817, -83.61375027425916 35.57183136059359, -83.67276627431411 35.56506236058729, -83.77577427441005 35.55269336057577, -83.83009827446065 35.51914936054453, -83.88112527450816 35.51067236053663, -83.90991227453497 35.47656436050487, -83.9546082745766 35.45554436048529))) +TX Texas MULTIPOLYGON (((-105.99888629510694 31.39394035670263, -106.21328529530662 31.478246356781142, -106.38358129546522 31.733872357019216, -106.61498629568072 31.81783435709741, -106.64407929570783 31.895205357169466, -106.63260529569713 31.97222035724119, -106.6500622957134 31.980329357248745, -106.62362529568877 32.001088357268074, -103.05841329236841 32.00202235726895, -103.02265729233511 34.745332359823855, -103.02728629233943 36.49159136145019, -100.00727328952682 36.493912361452345, -99.99647528951677 34.56238435965347, -99.93228728945698 34.579173359669106, -99.68527728922693 34.3775203594813, -99.60181728914921 34.36863435947303, -99.57821928912723 34.40898835951061, -99.55423228910489 34.41525635951645, -99.43874328899733 34.36478335946944, -99.41032328897086 34.36918535947354, -99.39315728895488 34.42907035952931, -99.36456928892825 34.45027235954906, -99.32365928889016 34.41278735951415, -99.26753528883788 34.39836435950072, -99.25446528882571 34.36829435947271, -99.20584928878043 34.33207535943898, -99.2049552887796 34.255730359367874, -99.1765112887531 34.21281635932791, -99.03557028862184 34.199009359315056, -98.9965442885855 34.209583359324895, -98.89168928848785 34.16091035927957, -98.77887728838279 34.132053359252694, -98.70563228831458 34.13080635925154, -98.62633028824071 34.15852735927735, -98.57666828819445 34.14202235926198, -98.557914288177 34.1054283592279, -98.49985228812292 34.06650835919165, -98.44851928807512 34.05446935918044, -98.39128228802181 34.08732435921104, -98.38458328801556 34.115873359237625, -98.35073028798404 34.14221335926216, -98.17316428781866 34.115461359237244, -98.11518628776467 34.149079359268555, -98.09444128774535 34.134649359255114, -98.11100528776078 34.06991535919482, -98.08652228773798 34.00541035913475, -98.02380628767956 33.98708135911768, -97.98299528764156 34.001382359131, -97.95053928761133 33.97125835910294, -97.96331128762323 33.948748359081975, -97.95099728761176 33.932616359066955, -97.97644228763546 33.9121513590479, -97.95504828761554 33.88357935902128, -97.85285728752037 33.857171358996695, -97.67137128735133 33.98871135911919, -97.60048428728533 33.969535359101336, -97.57597028726249 33.90263135903903, -97.51850428720897 33.916871359052294, -97.46306028715733 33.90248335903889, -97.453035287148 33.83631535897727, -97.4104162871083 33.820812358962826, -97.36361628706472 33.83112735897244, -97.31525228701967 33.8704943590091, -97.31438228701887 33.8959413590328, -97.26420228697214 33.858832358998235, -97.24635628695552 33.89433935903131, -97.21162628692316 33.90579035904197, -97.18805928690122 33.89930535903593, -97.16446028687925 33.86325035900235, -97.20861328692037 33.81975235896184, -97.18945528690251 33.752874358899554, -97.15276428686835 33.728773358877106, -97.09078828681062 33.731776358879905, -97.08795828680799 33.80767535895059, -97.05031328677293 33.823551358965375, -97.08246528680287 33.85120335899113, -97.0061382867318 33.850616358990585, -96.98799528671489 33.876525359014714, -96.98814828671503 33.944303359077836, -96.96847128669671 33.93742135907143, -96.92985028666074 33.9618733590942, -96.89873628663176 33.95012735908326, -96.8612962865969 33.861781359000986, -96.79787128653783 33.870051359008684, -96.7491022864924 33.831840358973096, -96.69365728644077 33.84800635898816, -96.6665122864155 33.913644359049286, -96.58476028633935 33.89624535903308, -96.61443928636699 33.86300135900212, -96.60146828635492 33.84305835898355, -96.51084328627051 33.81578735895815, -96.4876412862489 33.77823235892318, -96.41973028618565 33.78842835893267, -96.34785028611871 33.705631358855555, -96.31653828608955 33.70190435885209, -96.27833828605398 33.77348935891875, -96.21280728599294 33.756792358903205, -96.16907428595222 33.769457358915, -96.1416772859267 33.820420358962465, -96.1809852859633 33.80853435895139, -96.16946428595257 33.829083358970536, -96.10970128589692 33.82935735897079, -96.0270042858199 33.856121358995715, -96.01432428580809 33.84430735898471, -96.00287228579742 33.873489359011884, -95.97764828577394 33.858051358997514, -95.94332328574197 33.89007135902733, -95.84680528565208 33.84113835898176, -95.7957252856045 33.864774359003775, -95.7687612855794 33.85150335899141, -95.74710928555923 33.90349735903983, -95.69995028551531 33.89492635903186, -95.61322428543454 33.92034135905552, -95.6063122854281 33.94465635907817, -95.56301328538778 33.93617735907027, -95.54655528537245 33.90413735904043, -95.51981328534754 33.90674735904286, -95.54427428537032 33.8858463590234, -95.51312228534131 33.89784035903457, -95.49909128532825 33.88182235901965, -95.46835928529963 33.88653735902404, -95.45184128528425 33.86585835900478, -95.33027228517102 33.871024359009596, -95.33646028517678 33.89722035903399, -95.2866622851304 33.88700835902448, -95.27758328512195 33.91804535905338, -95.26384928510916 33.89790735903463, -95.2512232850974 33.905128359041356, -95.2342702850816 33.96496935909708, -95.12819628498282 33.94097535907474, -95.11945228497468 33.912388359048116, -95.08249428494025 33.91856035905386, -95.0838292849415 33.88856935902593, -95.06370228492275 33.917756359053115, -95.03758628489844 33.866559359005436, -94.96892728483449 33.86632235900521, -94.94010928480765 33.84093235898157, -94.94062028480813 33.815915358958264, -94.91845628478748 33.81630435895863, -94.91409928478343 33.78970535893386, -94.85809628473127 33.74942935889635, -94.80343728468037 33.73969135888728, -94.764388284644 33.75295135889963, -94.78337028466167 33.73377435888177, -94.74998328463059 33.7368153588846, -94.75469028463496 33.707881358857655, -94.65568928454276 33.69240335884324, -94.64453528453238 33.677762358829604, -94.66963628455575 33.66617335881881, -94.6389732845272 33.670217358822576, -94.63194628452065 33.68401135883542, -94.60115328449197 33.66572135881839, -94.58531428447722 33.67909535883084, -94.56093028445451 33.67202735882426, -94.58859428448028 33.65556235880893, -94.54562528444026 33.661735358814674, -94.56235628445584 33.635650358790386, -94.51819628441471 33.643124358797344, -94.52526128442129 33.621136358776866, -94.43611728433827 33.63656135879123, -94.45175728435284 33.60446435876134, -94.40677228431095 33.573604358732595, -94.37082928427746 33.590160358748015, -94.39546528430041 33.56042135872032, -94.37095928427759 33.547802358708566, -94.32895028423846 33.57325435873227, -94.30258228421391 33.55705435871718, -94.27918228419212 33.58945235874736, -94.27474228418798 33.56185735872166, -94.23743328415324 33.592543358750234, -94.22323428414 33.585840358743994, -94.2355642841515 33.56165635872147, -94.21108028412868 33.558108358718165, -94.20554128412353 33.5852003587434, -94.15971028408084 33.5938943587515, -94.15536028407679 33.56720635872664, -94.08684628401299 33.58407535874235, -94.03611628396574 33.55603435871623, -94.03525528396494 31.994679357262108, -94.0100782839415 31.9893003572571, -93.97017528390433 31.92333235719566, -93.91811128385584 31.909870357183124, -93.92365028386101 31.892762357167193, -93.89944928383846 31.894623357168925, -93.86501028380638 31.817442357097043, -93.83451428377799 31.802187357082836, -93.81513528375994 31.71252335699933, -93.79245228373881 31.71156835699844, -93.81977428376426 31.61826735691155, -93.83576528377915 31.615364356908845, -93.8328052837764 31.590360356885558, -93.78031328372751 31.53391335683299, -93.70597728365827 31.520747356820728, -93.71917628367056 31.49558235679729, -93.75142728370061 31.485680356788066, -93.72696628367783 31.459654356763828, -93.6985992836514 31.461638356765675, -93.68767328364123 31.40631135671415, -93.66419628361936 31.398510356706886, -93.66125128361662 31.372577356682733, -93.6350352835922 31.374009356684063, -93.68176628363572 31.31286335662712, -93.6120542835708 31.270218356587403, -93.61117628356999 31.24237335656147, -93.59072128355093 31.229873356549827, -93.5941162835541 31.18038635650374, -93.52909628349354 31.185961356508933, -93.52850128349299 31.16313035648767, -93.54436328350776 31.15935435648415, -93.52826428349277 31.126114356453193, -93.56015628352247 31.10072635642955, -93.51717028348244 31.074861356405464, -93.52591328349058 31.057171356388984, -93.50738928347333 31.039099356372155, -93.56806728352984 31.01311735634796, -93.57262928353408 30.97637235631374, -93.53236028349659 30.960926356299353, -93.52579128349046 30.93601435627615, -93.54979428351282 30.925080356265966, -93.54668928350993 30.90553035624776, -93.5686702835304 30.886431356229973, -93.55085528351381 30.828542356176058, -93.61862928357692 30.745989356099177, -93.61778128357614 30.687003356044244, -93.69305328364624 30.640243356000692, -93.69286928364608 30.61599735597811, -93.6717582836264 30.598033355961384, -93.71798528366946 30.587582355951646, -93.73547928368575 30.54571935591266, -93.70563228365796 30.52306035589156, -93.7150232836667 30.48883135585968, -93.69674128364967 30.44283535581684, -93.7427312836925 30.409027355785355, -93.75950728370813 30.354350355734432, -93.72994128368059 30.30512235568859, -93.69937728365213 30.297593355681574, -93.71500828366669 30.22051335560979, -93.69982628365256 30.151017355545065, -93.68330728363716 30.148440355542665, -93.71602328366764 30.095878355493713, -93.71264428366449 30.06073135546098, -93.76036728370893 30.006176355410172, -93.85744728379935 29.990867355395913, -93.85650028379847 29.964815355371652, -93.95193628388735 29.818579355235457, -93.83512528377855 29.674792355101545, -94.06558128399318 29.674297355101086, -94.68271228456793 29.43313835487649, -94.7667432846462 29.36422735481231, -94.78544428466361 29.383495354830252, -94.68210928456737 29.475343354915793, -94.57288528446564 29.533283354969754, -94.50147228439914 29.517754354955294, -94.46998528436981 29.557009354991852, -94.51100228440802 29.54537735498102, -94.56463028445796 29.579227355012545, -94.78828328466625 29.53878635497488, -94.7066172845902 29.658741355086597, -94.70047528458447 29.754791355176053, -94.73592328461748 29.793207355211827, -94.82961528470474 29.76008135518098, -94.88736328475854 29.668766355095933, -94.93279028480083 29.682436355108663, -95.08847228494582 29.804205355222074, -95.04060428490125 29.71180635513602, -94.98953928485369 29.679928355106327, -95.01432728487677 29.559494354994165, -94.91135728478088 29.500564354939286, -94.98301528484761 29.46075835490221, -94.94395828481123 29.46491235490608, -94.95270928481939 29.424466354868414, -94.913645284783 29.420345354864573, -94.91719328478631 29.44805435489038, -94.89133628476223 29.399557354845214, -94.81555028469165 29.371166354818772, -94.89167228476254 29.394065354840098, -94.89898728476935 29.309011354760884, -94.9513342848181 29.326157354776853, -95.06657228492543 29.196116354655743, -95.16073028501312 29.200271354659613, -95.16498828501709 29.117790354582798, -95.19755128504741 29.10546535457132, -95.24861828509498 28.978637354453202, -95.52680728535405 28.80349635429009, -95.68326428549977 28.727214354219043, -95.67155228548886 28.752941354243006, -95.786592285596 28.739132354230144, -95.9375492857366 28.690720354185057, -95.95638728575413 28.622942354121932, -95.70238428551758 28.719247354211625, -96.20682828598737 28.488663353996877, -95.9918882857872 28.59669535409749, -95.98399028577984 28.6534013541503, -96.23783328601625 28.571595354074113, -96.2392752860176 28.597389354098137, -96.15771528594163 28.61150235411128, -96.24070128601892 28.635130354133285, -96.15130528593566 28.762938354252316, -96.21241828599258 28.686989354181584, -96.28621928606131 28.661995354158307, -96.2706242860468 28.709249354202313, -96.32640428609874 28.63436135413257, -96.36440828613414 28.618254354117568, -96.39202628615986 28.67052335416625, -96.39297928616074 28.726298354218194, -96.42733628619274 28.71228335420514, -96.44992728621378 28.755304354245204, -96.43250928619756 28.69751935419139, -96.40364628617068 28.719763354212105, -96.41903528618501 28.63893735413683, -96.3756462861446 28.61036235411022, -96.49145628625246 28.557220354060725, -96.43740728620212 28.59726535409802, -96.45463528621816 28.656206354152914, -96.48352128624506 28.598330354099012, -96.51214728627173 28.60845635410844, -96.51198628627158 28.649815354146963, -96.57065028632621 28.6365403541346, -96.5724652863279 28.808442354294694, -96.57673828633189 28.690961354185283, -96.59175328634586 28.71763035421012, -96.6467702863971 28.714413354207124, -96.66026728640968 28.679348354174465, -96.60696028636004 28.623908354122833, -96.61060028636342 28.559217354062586, -96.56695828632277 28.574374354076703, -96.48683228624814 28.50650035401349, -96.56344928631951 28.46990635397941, -96.51875528627788 28.46110635397121, -96.47675428623876 28.499733354007187, -96.39097528615888 28.434339353946285, -96.66156828641088 28.30654735382727, -96.70262228644913 28.340479353858868, -96.70407128645047 28.396166353910733, -96.74102928648489 28.403738353917785, -96.78735528652804 28.477785353986746, -96.82413828656229 28.449920353960795, -96.78859928652919 28.44653435395764, -96.75936328650197 28.411192353924726, -96.7756222865171 28.39191135390677, -96.85375628658987 28.405277353919217, -96.78849328652909 28.352753353870302, -96.79359828653385 28.271657353794772, -96.77819428651951 28.22963535375564, -96.9511712866806 28.114646353648546, -96.91298628664504 28.2570823537812, -96.97557128670333 28.21103735373832, -96.94133728667144 28.187059353715988, -96.97537228670313 28.11533635364919, -97.03388328675763 28.137687353670003, -97.02383528674828 28.200083353728118, -97.13210428684911 28.130717353663513, -97.13568328685244 28.16209935369274, -97.16826128688278 28.15974935369055, -97.1573272868726 28.116672353650436, -97.26055428696874 28.06501735360233, -97.24150328695099 28.04894735358736, -97.27056328697806 28.0262273535662, -97.12334528684094 28.054560353592585, -97.02667328675092 28.108041353642395, -97.0240712867485 28.020532353560895, -97.19573228690837 27.812525353367175, -97.24729228695638 27.822624353376582, -97.21360828692501 27.831415353384767, -97.28375428699034 27.87144735342205, -97.36131528706258 27.840257353393, -97.34588928704821 27.873480353423943, -97.47962628717276 27.853264353405116, -97.4969522871889 27.875769353426076, -97.5219692872122 27.863927353415047, -97.48008328717319 27.820585353374682, -97.38881228708819 27.831730353385062, -97.39683028709565 27.77114635332864, -97.3180632870223 27.71253435327405, -97.34977928705183 27.71563735327694, -97.32028328702437 27.690944353253943, -97.35363228705542 27.641112353207532, -97.39948528709813 27.633498353200444, -97.34777228704996 27.631752353198817, -97.3094802870143 27.70817335326999, -97.25006128695897 27.689143353252266, -97.33172728703502 27.562636353134447, -97.41252828711028 27.321345352909727, -97.5007032871924 27.319988352908464, -97.50780828719901 27.439531353019795, -97.52865028721843 27.344420352931216, -97.60038228728523 27.300455352890275, -97.7503492874249 27.41998335300159, -97.68027928735964 27.294693352884906, -97.78501728745718 27.28804035287871, -97.54842428723684 27.23053035282515, -97.4274812871242 27.26545535285768, -97.50376728719525 27.081868352686698, -97.47926028717242 26.996838352607504, -97.56883128725585 26.978188352590138, -97.55831728724606 26.84638735246739, -97.49583728718785 26.79411735241871, -97.42611528712293 26.518569352162086, -97.47496828716842 26.47715035212351, -97.42144728711858 26.38540735203807, -97.3689552870697 26.359409352013856, -97.35361928705541 26.182802351849375, -97.25337328696205 26.068672351743086, -97.27657528698366 26.00263335168158, -97.21334828692477 26.009425351687906, -97.17247428688671 25.954927351637153, -97.30739928701236 25.965482351646983, -97.30469028700983 25.939022351622338, -97.38124628708114 25.917379351602182, -97.38589928708546 25.845721351535445, -97.43460728713083 25.84555735153529, -97.59035328727589 25.93358935161728, -97.57520128726178 25.95452935163678, -97.61318928729715 25.962359351644075, -97.6482402873298 26.023801351701294, -97.86770828753419 26.06049635173547, -98.04035228769497 26.059750351734777, -98.07663128772876 26.034982351711708, -98.08349828773517 26.066113351740704, -98.20097928784458 26.055732351731034, -98.29223728792957 26.098459351770828, -98.27164528791039 26.121249351792052, -98.29256628792987 26.133162351803147, -98.32822628796308 26.112000351783436, -98.34748428798102 26.15903235182724, -98.38481528801579 26.156383351824772, -98.45368928807993 26.221261351885197, -98.48881528811265 26.201895351867158, -98.60026828821644 26.26080335192202, -98.67821928828904 26.242404351904884, -98.82013628842121 26.375413352028758, -98.90920328850416 26.360671352015032, -98.93957628853245 26.395651352047608, -99.1070362886884 26.41986935207016, -99.10178028868351 26.488676352134245, -99.1689892887461 26.54606135218769, -99.16612828874344 26.580220352219502, -99.28583728885492 26.857678352477905, -99.39083528895272 26.94694335256104, -99.39303228895476 26.995861352606596, -99.45538128901283 27.02895835263742, -99.43747528899615 27.19950235279625, -99.46559028902233 27.270186352862083, -99.54390828909527 27.3189543529075, -99.49081328904583 27.49105135306778, -99.52706128907958 27.504579353080377, -99.54950728910049 27.612919353181276, -99.71481828925445 27.66184935322685, -99.81605528934872 27.78039435333725, -99.87506328940368 27.79797235335362, -99.9421892894662 27.98716235352982, -99.99364328951413 28.003739353545257, -100.09726228961063 28.154555353685716, -100.21441628971974 28.20220635373009, -100.22380828972848 28.2417273537669, -100.29826628979782 28.280622353803125, -100.29323928979315 28.32062735384038, -100.3519192898478 28.394447353909133, -100.37712028987126 28.4789133539878, -100.34615128984242 28.501072354008436, -100.4198842899111 28.54445135404883, -100.40352628989585 28.589991354091246, -100.49826428998409 28.661243354157605, -100.59014929006966 28.894469354374813, -100.64758529012316 28.922595354401007, -100.66913229014322 29.080312354547893, -100.7689742902362 29.166807354628446, -100.79735729026264 29.24273635469916, -101.00943129046014 29.37348235482093, -101.06773729051444 29.473776354914335, -101.26181129069519 29.526692354963615, -101.25496929068882 29.628964355058866, -101.30931329073944 29.58112435501431, -101.30624729073658 29.65264435508092, -101.36878629079483 29.657373355085323, -101.41648729083924 29.74564135516753, -101.40166329082544 29.770111355190316, -101.44881329086935 29.760791355181638, -101.47085629088988 29.788895355207814, -101.5387352909531 29.763222355183903, -101.54434429095832 29.81032235522777, -101.58188129099328 29.765354355185888, -101.64006429104747 29.75716335517826, -101.7594912911587 29.787367355206392, -101.80560429120165 29.780199355199713, -101.81949829121459 29.814324355231495, -101.92462729131249 29.788701355207632, -101.97372429135822 29.818971355235824, -102.06440229144266 29.78476935520397, -102.32475129168513 29.88030935529295, -102.3679802917254 29.845483355260512, -102.38521529174145 29.768141355188483, -102.50352129185163 29.78564935520479, -102.55237329189713 29.749694355171304, -102.57692629191999 29.778441355198076, -102.63803929197691 29.73253235515532, -102.676790292013 29.74441835516639, -102.80516029213256 29.530343354967016, -102.82264029214883 29.412045354856843, -102.88344829220546 29.353572354802388, -102.90876429222904 29.269406354724, -102.86660929218978 29.229241354686593, -102.98853929230334 29.19106735465104, -103.15391129245735 28.978891354453438, -103.2670372925627 29.00766235448023, -103.28080029257552 28.9865823544606, -103.33597029262691 29.05054535452017, -103.37590329266409 29.032314354503193, -103.47453129275596 29.072338354540467, -103.52669629280453 29.14684835460986, -103.72077929298528 29.190832354650823, -103.74031929300348 29.230548354687812, -103.78262529304288 29.229994354687296, -103.76822929302948 29.281438354735208, -103.7874632930474 29.267457354722186, -104.04610529328828 29.328313354778864, -104.16485929339888 29.40090535484647, -104.20521229343645 29.48422835492407, -104.37807429359744 29.550794354986063, -104.53572929374427 29.67964235510606, -104.57804129378367 29.808107355225705, -104.67485229387384 29.909449355320085, -104.69697729389445 30.057462355457936, -104.6752402938742 30.149120355543296, -104.70309729390014 30.23864135562667, -104.81444429400385 30.35061835573096, -104.80696029399688 30.376596355755154, -104.8534852940402 30.39241135576988, -104.8911692940753 30.570700355935926, -104.98742529416495 30.641467356001833, -104.99803929417483 30.684474356041886, -105.06106029423353 30.68801035604518, -105.21484429437675 30.812223356160864, -105.25869129441759 30.79779135614742, -105.28810429444498 30.83208635617936, -105.31428829446936 30.81664435616498, -105.39082129454064 30.85321735619904, -105.40957529455811 30.902645356245074, -105.55489729469345 30.99841835633427, -105.60373329473893 31.086558356416354, -105.77025029489401 31.170908356494913, -105.99888629510694 31.39394035670263)), ((-94.91362828478299 29.2578103547132, -94.76757528464697 29.34268635479225, -94.74860028462929 29.319727354770865, -95.1056212849618 29.097200354563622, -94.91362828478299 29.2578103547132)), ((-96.39813328616555 28.34612835386413, -96.8348892865723 28.066615353603815, -96.80410428654363 28.17245035370238, -96.73916928648316 28.183823353712974, -96.53239128629058 28.318528353838428, -96.46330528622624 28.326115353845495, -96.42280628618852 28.391720353906592, -96.39813328616555 28.34612835386413)), ((-96.94023028667041 28.046227353584825, -96.8726862866075 28.131695353664426, -96.83768928657491 28.10213235363689, -96.85407028659017 28.049696353588057, -97.04987228677253 27.841258353393933, -97.02469528674908 27.914681353462313, -96.94965228667918 27.98482235352764, -96.97326628670118 28.001149353542843, -96.94023028667041 28.046227353584825)), ((-97.35938028706077 27.284040352874985, -97.37964328707965 27.21077735280675, -97.37635628707659 27.284965352875844, -97.33576928703879 27.441138353021294, -97.24893928695792 27.581449353151967, -97.25894928696724 27.652061353217732, -97.20384928691593 27.612379353180774, -97.17044728688482 27.707771353269614, -97.07556028679645 27.811579353366294, -97.1133032868316 27.81952135337369, -97.05383228677621 27.83077735338417, -97.22398228693467 27.57432335314533, -97.35938028706077 27.284040352874985)), ((-97.30138728700676 26.601365352239192, -97.35828228705975 26.70698535233756, -97.39557028709447 26.922320352538108, -97.4011722870997 27.111554352714343, -97.37879628707886 27.204773352801162, -97.38159328708146 26.949354352563283, -97.35828328705975 26.80300035242698, -97.23236128694248 26.41849035206888, -97.19524228690791 26.259593351920895, -97.17958628689333 26.072276351746442, -97.22656228693708 26.348900352004065, -97.30138728700676 26.601365352239192))) +NM New Mexico MULTIPOLYGON (((-109.04949529794804 32.44204435767875, -109.05134629794976 32.779550357993074, -109.050526297949 33.20516435838946, -109.05034929794884 33.7833023589279, -109.04865229794726 34.59178035968085, -109.04664129794538 34.95464636001879, -109.0478462979465 35.99666436098925, -109.0484802979471 36.99664136192055, -108.37247329731751 36.999471361923185, -107.47246029647931 36.99877636192254, -107.4108202964219 36.997525361921376, -106.8903702959372 36.99908336192283, -106.86124929591008 36.989501361913895, -106.47217729554772 36.991504361915766, -105.99200029510052 36.9922893619165, -105.71346029484111 36.994560361918616, -105.21309129437512 36.99260436191679, -105.14617229431279 36.99320736191736, -103.99363529323941 36.994469361918526, -103.07786629238653 36.99976036192345, -102.99770929231188 36.9985233619223, -102.9974012923116 36.49237036145091, -103.02728629233943 36.49159136145019, -103.0240482923364 36.05606136104457, -103.02261229233507 35.742327360752384, -103.02229429233478 35.62364836064185, -103.02615129233837 35.17726536022612, -103.02525129233753 34.96478036002823, -103.02265729233511 34.745332359823855, -103.02964629234162 34.30782035941639, -103.03325829234498 33.82618135896783, -103.03873629235008 33.565843358725374, -103.04310129235415 33.37783135855027, -103.04933129235995 32.953639358155215, -103.0600182923699 32.5155453577472, -103.05564029236584 32.08511635734634, -103.05841329236841 32.00202235726895, -103.33254929262372 32.004281357271054, -103.72944429299336 32.006229357272865, -103.981377293228 32.006015357272666, -104.0192972932633 32.00740335727396, -104.85106829403796 32.00326535727011, -104.92230529410429 32.00438235727115, -106.003240295111 32.00165835726861, -106.37838729546039 32.00074735726776, -106.62362529568877 32.001088357268074, -106.6500622957134 31.980329357248745, -106.63260529569713 31.97222035724119, -106.63374929569821 31.914101357187064, -106.64407929570783 31.895205357169466, -106.61612329568179 31.84474035712247, -106.61498629568072 31.81783435709741, -106.53951429561045 31.786305357068045, -107.28356729630339 31.78508335706691, -108.20325529715991 31.786903357068603, -108.2106472971668 31.34385335665598, -109.04561529794442 31.34345335665561, -109.04949529794804 32.44204435767875))) +AL Alabama MULTIPOLYGON (((-85.07006727561546 31.98070335724909, -85.11515027565744 31.907424357180847, -85.13556727567646 31.854884357131915, -85.13156127567272 31.783814357065726, -85.13016527567143 31.778853357061106, -85.11528727565758 31.731566357017066, -85.11867427566072 31.708571356995648, -85.11120527565377 31.684242356972995, -85.05928527560542 31.621265356914343, -85.04272127559 31.554389356852056, -85.04269827558997 31.519660356819713, -85.06631227561196 31.476089356779134, -85.0614062756074 31.440663356746143, -85.0879422756321 31.367234356677756, -85.0825632756271 31.332334356645255, -85.08122827562585 31.303080356618008, -85.10336127564646 31.271436356588538, -85.09360327563738 31.22707435654722, -85.10295727564609 31.19692235651914, -85.09336727563716 31.172211356496128, -85.06866227561414 31.162364356486954, -85.03806827558566 31.126713356453752, -85.01699527556603 31.080102356410343, -85.0016072755517 31.00125335633691, -85.4850102760019 31.001001356336673, -85.48659727600338 31.000998356336673, -86.03182227651116 30.99332735632953, -86.18147627665054 30.995225356331296, -86.38391927683908 30.99153835632786, -86.70185227713517 30.998092356333963, -86.77936127720736 30.998191356334058, -87.16311727756477 31.003157356338683, -87.59858027797031 31.00263035633819, -87.5898672779622 30.954361356293237, -87.62571127799559 30.8769023562211, -87.61591527798646 30.848296356194457, -87.54190027791753 30.785695356136156, -87.52660327790329 30.748491356101507, -87.46014027784139 30.70580235606175, -87.41889427780298 30.692810356049648, -87.39864527778411 30.668015356026558, -87.39328127777912 30.62009835598193, -87.42206727780592 30.556493355922694, -87.44535327782762 30.531389355899314, -87.4188162778029 30.481700355853036, -87.40525127779027 30.440360355814537, -87.46644027784725 30.35972135573944, -87.58756827796006 30.319254355701748, -87.5934052779655 30.278415355663714, -87.79533027815356 30.233931355622286, -88.00256027834655 30.233604355621978, -87.77994127813922 30.272638355658334, -87.75750327811834 30.299422355683276, -87.90346527825426 30.421296355796784, -87.9133852782635 30.62118435598294, -88.0197892783626 30.7441903560975, -88.13568127847053 30.337158355718422, -88.3203262786425 30.404293355780947, -88.40141527871802 30.393551355770942, -88.41724227873276 30.7364573560903, -88.4291992787439 31.00069535633639, -88.4345632787489 31.12087935644832, -88.45080327876401 31.435617356741442, -88.46509727877732 31.702245356989756, -88.47295227878465 31.888876357163575, -88.43772427875183 32.22775535747918, -88.42579227874072 32.30922435755505, -88.39383227871096 32.58047035780767, -88.3480412786683 32.924758358128315, -88.33946627866032 32.987497358186744, -88.30482927862806 33.288894358467445, -88.2745862785999 33.538801358700184, -88.24819527857532 33.7427263588901, -88.2026442785329 34.05912235918477, -88.19934927852982 34.090448359213944, -88.16761327850027 34.32414735943159, -88.15125627848504 34.46527335956303, -88.13640127847121 34.58049735967034, -88.09046827842843 34.89562935996383, -88.10888627844558 34.89993635996784, -88.14310527847745 34.93031235999613, -88.19399327852484 35.004453360065185, -88.19496227852575 35.013544360073645, -87.9860782783312 35.016033360075966, -87.60781327797892 35.010546360070855, -87.22276427762031 35.00734636006787, -87.20758827760618 35.007960360068445, -86.83342227725771 34.9982463600594, -86.78237227721017 34.997075360058304, -86.31305227677308 34.99527336005663, -86.30350027676418 34.99546436005681, -85.86956727636004 34.99238436005394, -85.60896027611734 34.99016436005187, -85.58305827609321 34.86232235993281, -85.53469227604818 34.62248835970945, -85.52583427603993 34.58468535967424, -85.5118562760269 34.52301435961681, -85.46028627597887 34.290161359399946, -85.41656727593816 34.08692035921066, -85.39573827591876 33.959829359092296, -85.38401127590784 33.90540935904161, -85.33528727586247 33.65492335880833, -85.30498027583424 33.49059435865529, -85.29382527582385 33.425875358595015, -85.23384627576799 33.12923735831875, -85.23350327576767 33.120139358310276, -85.18071927571852 32.871813358079, -85.16230127570135 32.80744535801906, -85.12809027566949 32.777070357990766, -85.13330027567434 32.75631535797144, -85.12488527566651 32.744383357960324, -85.11386827565624 32.73438935795102, -85.10773327565053 32.68997235790965, -85.09047527563446 32.67615235789678, -85.10380327564688 32.645910357868615, -85.0863242756306 32.628451357852356, -85.08414927562858 32.60300435782865, -85.07077427561612 32.5812533578084, -84.99565227554615 32.518928357750355, -84.98981527554072 32.45483635769067, -84.96538527551796 32.42945035766702, -84.97096227552316 32.39681235763663, -84.98448927553576 32.38709335762758, -84.97166327552381 32.37150335761305, -85.00209027555215 32.347078357590306, -85.00533227555518 32.32959235757402, -84.92107127547669 32.29313735754007, -84.89460327545204 32.26873535751734, -84.89401627545149 32.25917635750844, -84.90536127546207 32.24955535749948, -84.92367927547913 32.24738935749747, -84.91600427547198 32.228556357479924, -84.9283712754835 32.21797835747007, -84.97574427552762 32.21224835746474, -84.9603852755133 32.19192835744581, -85.00782627555749 32.17887835743366, -85.0243822755729 32.166275357421924, -85.05331327559986 32.12663735738501, -85.04618727559321 32.09089535735172, -85.05665527560296 32.069644357331924, -85.06201027560796 32.05001035731364, -85.056700275603 32.01737635728325, -85.07006727561546 31.98070335724909))) +MS Mississippi MULTIPOLYGON (((-88.45080327876401 31.435617356741442, -88.4345632787489 31.12087935644832, -88.4291992787439 31.00069535633639, -88.41724227873276 30.7364573560903, -88.40141527871802 30.393551355770942, -88.39922527871597 30.35288635573307, -88.46423727877652 30.326076355708103, -88.57776027888225 30.380749355759022, -88.68326427898052 30.342322355723233, -88.87378627915795 30.430276355805148, -88.93022327921051 30.416801355792597, -88.88572627916906 30.398289355775354, -89.27612127953265 30.314840355697637, -89.27352827953024 30.37238635575123, -89.33504627958753 30.380423355758715, -89.35753127960847 30.365284355744617, -89.31854227957216 30.318853355701375, -89.41561427966256 30.256485355643292, -89.43812127968353 30.200967355591587, -89.57388427980996 30.19493535558597, -89.61000327984361 30.241419355629258, -89.60631027984016 30.247828355635228, -89.62166127985446 30.25696435564374, -89.62594227985845 30.290355355674834, -89.63917227987076 30.29582935567993, -89.63708227986882 30.311843355694847, -89.6185882798516 30.323760355705943, -89.6201982798531 30.34342935572426, -89.63345127986544 30.355307355735327, -89.64668927987778 30.35529035573531, -89.65467027988521 30.37906535575745, -89.67536927990449 30.40007435577702, -89.67546227990456 30.445352355819185, -89.68345027991201 30.46271835583536, -89.69459827992239 30.46818635584045, -89.69568127992339 30.47824635584982, -89.7131842799397 30.481416355852772, -89.71905927994517 30.49603735586639, -89.73231927995752 30.49783835586807, -89.75517827997881 30.51562235588463, -89.77279627999522 30.55124735591781, -89.79084828001203 30.553943355920318, -89.82030728003946 30.624270355985814, -89.8055362800257 30.649456356009274, -89.81935428003858 30.65124535601094, -89.82952428004805 30.67087435602922, -89.84544728006288 30.666252356024913, -89.83539228005351 30.675882356033885, -89.84178528005947 30.67951935603727, -89.84134328005905 30.70055035605686, -89.83072328004917 30.703781356059867, -89.84405228006158 30.712425356067918, -89.83561428005372 30.72936235608369, -89.82339928004234 30.73305435608713, -89.82556628004436 30.742648356096062, -89.81335128003299 30.748168356101203, -89.82468928004354 30.789724356139907, -89.81093328003074 30.811699356160375, -89.79656728001736 30.81265235616126, -89.79609428001692 30.829105356176584, -89.77480027999708 30.830532356177912, -89.78502428000661 30.86157935620683, -89.76585127998875 30.862084356207298, -89.76331127998638 30.90047135624305, -89.74680027997101 30.902794356245213, -89.74575527997003 30.910107356252023, -89.7580542799815 30.92104335626221, -89.74047527996511 30.926109356266927, -89.74854027997263 30.949848356289035, -89.73952227996423 30.96540035630352, -89.71982327994589 30.975493356312917, -89.72678127995236 30.984616356321414, -89.72362327994942 31.001524356337164, -89.7327172799579 31.00744535634268, -89.8335582800518 31.007184356342435, -90.25937728044838 31.007370356342605, -90.34366028052688 31.00539035634076, -90.5426532807122 31.002330356337914, -90.5602552807286 31.00170635633733, -90.82971428097954 31.001545356337182, -91.05701228119123 31.000418356336134, -91.17920728130504 31.00046135633617, -91.632297281727 31.00136535633701, -91.6277732817228 31.011960356346883, -91.5727872816716 31.03264835636615, -91.5520812816523 31.058159356389908, -91.56497528166432 31.082135356412238, -91.62011428171567 31.12769435645467, -91.59148828168901 31.178482356501966, -91.60096428169783 31.21392935653498, -91.6369982817314 31.24110435656029, -91.64368228173761 31.27111835658824, -91.6342142817288 31.277694356594367, -91.55691928165682 31.270469356587636, -91.5170782816197 31.28306935659937, -91.50247528160611 31.298858356614076, -91.50575628160917 31.323456356636985, -91.54279028164365 31.3469863566589, -91.54440728164516 31.368874356679285, -91.534573281636 31.382750356692206, -91.5593772816591 31.38823035669731, -91.56773128166688 31.421406356728205, -91.55247228165267 31.4330993567391, -91.53480228163622 31.43433535674025, -91.53416928163563 31.409238356716877, -91.52301428162524 31.392091356700906, -91.49470828159888 31.37524935668522, -91.48083828158596 31.377780356687577, -91.46592228157206 31.40406935671206, -91.47329228157892 31.420374356727244, -91.50790028161116 31.45308335675771, -91.50648228160983 31.525687356825326, -91.50295728160656 31.534880356833888, -91.46447328157072 31.542866356841326, -91.42357828153263 31.56274635685984, -91.40425228151463 31.586353356881826, -91.415384281525 31.60259235689695, -91.49715128160115 31.604358356898594, -91.50887728161207 31.621946356914975, -91.50780928161107 31.643870356935395, -91.49776928160172 31.650895356941938, -91.4573772815641 31.626966356919652, -91.40840328151849 31.62553035691831, -91.38918428150059 31.65460535694539, -91.38794828149945 31.716682357003204, -91.36507428147814 31.751741357035854, -91.37049928148319 31.753475357037473, -91.3399122814547 31.758542357042188, -91.28262128140135 31.74988735703413, -91.263989281384 31.759763357043326, -91.26268528138279 31.773927357056518, -91.33625728145131 31.76362235704692, -91.36713428148006 31.770867357053667, -91.34723628146153 31.795832357076918, -91.33484628144998 31.843478357121292, -91.30347328142076 31.86314435713961, -91.2926472814107 31.86149235713807, -91.27680028139594 31.827533357106443, -91.25072928137165 31.81882135709833, -91.24138328136294 31.83538735711376, -91.26469228138465 31.865586357141883, -91.24448128136584 31.87867235715407, -91.20154228132584 31.91444935718739, -91.16314328129008 31.988448357256306, -91.10811028123882 31.9919843572596, -91.07248828120565 32.021213357286825, -91.07324328120636 32.032150357297006, -91.08699228121915 32.04381135730787, -91.14312328127143 32.066259357328775, -91.14569428127383 32.085828357347, -91.12572728125524 32.088399357349395, -91.0894102812214 32.05699835732015, -91.06511828119879 32.05870735732174, -91.07392228120699 32.09414835735475, -91.0411912811765 32.10782335736748, -91.01139028114875 32.134213357392056, -91.0039362811418 32.169413357424844, -91.02452128116097 32.17005035742544, -91.05458128118897 32.18468335743906, -91.04541828118043 32.158824357414986, -91.05415428118857 32.13454435739237, -91.08311628121555 32.14873135740558, -91.10882028123949 32.13514335739293, -91.15665028128403 32.14493535740205, -91.16695828129363 32.172141357427385, -91.1573752812847 32.206014357458926, -91.11606128124623 32.22575535747732, -91.1006792812319 32.21503635746733, -91.08802228122012 32.232537357483636, -91.06257028119641 32.23289235748396, -91.04175628117703 32.24958835749951, -90.97732428111702 32.223554357475265, -90.97112228111125 32.26921435751779, -90.98392428112317 32.28728035753461, -90.98087228112033 32.29780035754441, -90.97176328111185 32.30384735755004, -90.92935028107235 32.29755335754418, -90.91647928106036 32.30546435755155, -90.87545528102214 32.37979535762078, -90.88525928103128 32.381500357622365, -90.915029281059 32.346043357589345, -90.98467228112386 32.35654135759912, -90.99896928113718 32.36637835760828, -91.00931528114681 32.39722735763701, -90.97009128111029 32.41916035765744, -90.96559028110609 32.44017935767701, -90.98755528112655 32.45310635768905, -91.0270152811633 32.44255935767923, -91.05861728119272 32.447140357683494, -91.11779228124784 32.49870935773153, -91.11885228124883 32.52420635775527, -91.08889128122092 32.548775357778155, -91.03730828117288 32.49709535773002, -91.01979028115657 32.490954357724306, -90.99215628113083 32.49542135772846, -90.99517728113365 32.5117823577437, -91.063194281197 32.54229835777212, -91.07337228120647 32.561749357790234, -91.05897528119307 32.576526357804, -91.03243228116834 32.58280935780985, -90.99876328113699 32.61560335784039, -90.99623728113464 32.626112357850175, -91.00798728114557 32.642808357865725, -91.02757228116381 32.64163735786464, -91.04773728118259 32.61448935783935, -91.06391928119767 32.60652435783194, -91.1111002812416 32.597663357823684, -91.14637228127445 32.64498635786775, -91.13966528126821 32.663308357884816, -91.0591352811932 32.72365035794102, -91.09781728122924 32.74952835796512, -91.13657528126534 32.751256357966724, -91.15645028128384 32.76281135797749, -91.14225928127063 32.841342358050625, -91.0796352812123 32.8772903580841, -91.07569828120864 32.953838358155394, -91.09278128122455 32.987746358186975, -91.11192428124238 32.98747535818672, -91.13246328126151 32.97534835817543, -91.13004428125926 32.93759135814027, -91.137285281266 32.91791235812194, -91.16980928129628 32.905148358110054, -91.19842128132294 32.91428835811856, -91.20927028133303 32.93597835813876, -91.16197428128899 33.00041835819878, -91.16224128128924 33.01316235821065, -91.16078428128787 33.02183335821872, -91.15679428128416 33.040555358236155, -91.1240932812537 33.047395358242525, -91.11789828124795 33.065693358259566, -91.14689828127494 33.09077435828293, -91.1906462813157 33.113345358303945, -91.19561328132032 33.14058535832932, -91.17773728130366 33.15040835833847, -91.12143828125124 33.131190358320566, -91.09596328122751 33.14520535833362, -91.08642628121864 33.16172335834901, -91.09211028122392 33.22581635840869, -91.05464928118903 33.2459003584274, -91.0405342811759 33.28204035846106, -91.05393928118838 33.29369335847191, -91.07643128120932 33.29247635847078, -91.10301328123408 33.24932935843059, -91.12261328125233 33.268623358448565, -91.14185528127025 33.32250135849874, -91.1305332812597 33.359518358533215, -91.10704928123783 33.39352235856488, -91.07879728121152 33.410295358580505, -91.06162228119553 33.43191235860064, -91.06108828119503 33.46012535862691, -91.07386828120694 33.466320358632686, -91.08590828121815 33.46297135862956, -91.09923728123056 33.4150133585849, -91.13774328126642 33.388994358560666, -91.18509328131051 33.391946358563416, -91.20427428132838 33.41441435858434, -91.19894128132341 33.422226358591615, -91.1306252812598 33.44323835861118, -91.11982128124973 33.452946358620224, -91.11906628124903 33.46978735863591, -91.12890828125819 33.49330435865781, -91.16508828129189 33.511893358675124, -91.17429028130046 33.50448135866822, -91.17184028129817 33.466758358633086, -91.18188128130753 33.447502358615154, -91.2329622813551 33.443557358611486, -91.2272622813498 33.459567358626394, -91.20775328133162 33.47351035863938, -91.18051628130625 33.512126358675346, -91.18295728130853 33.5234633586859, -91.20421328132832 33.53861835870001, -91.21359828133707 33.539388358700734, -91.22774328135024 33.55646235871663, -91.2268432813494 33.59059235874842, -91.18791728131315 33.5747923587337, -91.16813328129473 33.57735635873609, -91.15076128127855 33.616272358772335, -91.15451528128204 33.63714235879177, -91.20542028132945 33.670054358822426, -91.21525528133861 33.690832358841774, -91.21179128133538 33.709074358858764, -91.16341128129032 33.71842435886747, -91.12115828125097 33.67763935882949, -91.08387928121626 33.66269735881557, -91.03794128117347 33.68332735883479, -91.0389332811744 33.70560135885553, -91.05632228119059 33.71946735886844, -91.10467828123562 33.70834335885809, -91.12905528125833 33.712550358862, -91.13811128126676 33.723334358872044, -91.14300228127132 33.7719283589173, -91.13709728126582 33.780195358925, -91.10552628123642 33.7765483589216, -91.06650028120008 33.786635358931, -91.04351228117866 33.76966435891519, -91.01854028115541 33.76408335891, -90.99548328113393 33.77166035891705, -90.98414628112337 33.78545035892989, -90.99047828112927 33.79900735894252, -91.02896228116511 33.816695358958995, -91.0549262811893 33.84363335898408, -91.0614802811954 33.86718835900602, -91.01857228115544 33.93641335907049, -91.07581728120876 33.97474935910619, -91.088963281221 33.99457335912466, -91.06980528120314 34.00620135913549, -91.03116928116717 33.98580535911649, -91.00965328114712 33.99063435912099, -91.00036828113848 33.96847935910036, -90.98692428112597 33.960923359093314, -90.96489728110545 33.9675683590995, -90.96123528110203 33.978981359110136, -90.9753812811152 33.99471335912479, -90.97347328111343 34.01110435914005, -90.95057728109211 34.03139535915895, -90.88645028103238 34.04081835916772, -90.86643828101376 34.101059359223825, -90.90641828105099 34.1028553592255, -90.94235428108445 34.1260483592471, -90.95345528109479 34.15590835927491, -90.92902528107204 34.185754359302706, -90.84671628099538 34.14765135926722, -90.82897028097885 34.14876535926826, -90.80761528095897 34.16627835928457, -90.82302728097332 34.19065035930727, -90.92159428106511 34.20493535932057, -90.9338172810765 34.23478035934836, -90.92854528107159 34.250298359362816, -90.86351828101103 34.21926735933392, -90.83146628098118 34.22963935934358, -90.82394428097417 34.2774443593881, -90.80652628095795 34.29945135940859, -90.79263328094501 34.30006135940916, -90.7583602809131 34.27908135938962, -90.74786328090332 34.3178233594257, -90.76196428091644 34.36401835946873, -90.75541828091035 34.37226935947641, -90.68759028084719 34.37797635948173, -90.68124228084127 34.36350435946825, -90.68948128084895 34.32024935942796, -90.6794402808396 34.318079359425944, -90.65791828081954 34.330111359437154, -90.65734628081901 34.36601435947059, -90.60389428076924 34.40470335950662, -90.57922828074626 34.43310335953307, -90.57450528074186 34.45404935955258, -90.59015528075645 34.49660935959221, -90.5804502807474 34.5203243596143, -90.56578628073375 34.53261135962575, -90.53725128070717 34.54343035963582, -90.53072028070109 34.555751359647296, -90.57771928074486 34.604845359693016, -90.58809528075453 34.627916359714504, -90.57940528074643 34.645711359731074, -90.56116228072943 34.700386359781994, -90.53916628070895 34.686047359768644, -90.54765028071685 34.65190635973684, -90.53906728070886 34.63699535972296, -90.50891428068078 34.638166359724046, -90.46632628064111 34.67214035975569, -90.47008028064461 34.70435435978569, -90.51366828068521 34.702168359783656, -90.53338328070357 34.71335235979407, -90.54784928071705 34.790434359865856, -90.52736328069795 34.80742135988168, -90.51614728068752 34.80570035988008, -90.50138428067376 34.78993135986539, -90.4988362806714 34.765884359843, -90.51707128068837 34.748470359826776, -90.50452028067669 34.72995435980953, -90.48602628065946 34.72693335980672, -90.45153228062733 34.7412993598201, -90.44896928062495 34.7608493598383, -90.46680728064156 34.799761359874545, -90.45200528062777 34.82531535989835, -90.47481828064903 34.85782335992862, -90.47062928064513 34.88102035995023, -90.43818828061491 34.886277359955116, -90.42794128060537 34.872739359942514, -90.43364828061068 34.835451359907786, -90.42241028060022 34.83236535990491, -90.4040302805831 34.84113535991308, -90.34152128052489 34.860674359931274, -90.32292028050756 34.85036335992167, -90.30164928048775 34.85187435992308, -90.29954328048579 34.865057359935356, -90.29636928048284 34.88278735995187, -90.2668042804553 34.896608359964745, -90.24293928043308 34.9208273599873, -90.2419932804322 34.93900036000422, -90.24826428043804 34.94985636001434, -90.29960428048584 34.97857636004108, -90.30544828049129 35.00078836006176, -89.7172702799435 34.999261360060345, -89.64655827987765 35.000733360061716, -89.34237327959436 34.99980536006085, -89.19813427946002 35.000883360061856, -89.00619627928127 35.00023436006125, -88.81254827910091 35.00243836006331, -88.7850432790753 35.003182360063995, -88.383146278701 35.00504136006573, -88.35172727867175 35.00383236006461, -88.19399327852484 35.004453360065185, -88.14310527847745 34.93031235999613, -88.10888627844558 34.89993635996784, -88.09046827842843 34.89562935996383, -88.13640127847121 34.58049735967034, -88.15125627848504 34.46527335956303, -88.16761327850027 34.32414735943159, -88.19934927852982 34.090448359213944, -88.2026442785329 34.05912235918477, -88.24819527857532 33.7427263588901, -88.2745862785999 33.538801358700184, -88.30482927862806 33.288894358467445, -88.33946627866032 32.987497358186744, -88.3480412786683 32.924758358128315, -88.39383227871096 32.58047035780767, -88.42579227874072 32.30922435755505, -88.43772427875183 32.22775535747918, -88.47295227878465 31.888876357163575, -88.46509727877732 31.702245356989756, -88.45080327876401 31.435617356741442))) +GA Georgia MULTIPOLYGON (((-85.13016527567143 31.778853357061106, -85.13156127567272 31.783814357065726, -85.13556727567646 31.854884357131915, -85.11515027565744 31.907424357180847, -85.07006727561546 31.98070335724909, -85.056700275603 32.01737635728325, -85.06201027560796 32.05001035731364, -85.05665527560296 32.069644357331924, -85.04618727559321 32.09089535735172, -85.05331327559986 32.12663735738501, -85.0243822755729 32.166275357421924, -85.00782627555749 32.17887835743366, -84.9603852755133 32.19192835744581, -84.97574427552762 32.21224835746474, -84.9283712754835 32.21797835747007, -84.91600427547198 32.228556357479924, -84.92367927547913 32.24738935749747, -84.90536127546207 32.24955535749948, -84.89401627545149 32.25917635750844, -84.89460327545204 32.26873535751734, -84.92107127547669 32.29313735754007, -85.00533227555518 32.32959235757402, -85.00209027555215 32.347078357590306, -84.97166327552381 32.37150335761305, -84.98448927553576 32.38709335762758, -84.97096227552316 32.39681235763663, -84.96538527551796 32.42945035766702, -84.98981527554072 32.45483635769067, -84.99565227554615 32.518928357750355, -85.07077427561612 32.5812533578084, -85.08414927562858 32.60300435782865, -85.0863242756306 32.628451357852356, -85.10380327564688 32.645910357868615, -85.09047527563446 32.67615235789678, -85.10773327565053 32.68997235790965, -85.11386827565624 32.73438935795102, -85.12488527566651 32.744383357960324, -85.13330027567434 32.75631535797144, -85.12809027566949 32.777070357990766, -85.16230127570135 32.80744535801906, -85.18071927571852 32.871813358079, -85.23350327576767 33.120139358310276, -85.23384627576799 33.12923735831875, -85.29382527582385 33.425875358595015, -85.30498027583424 33.49059435865529, -85.33528727586247 33.65492335880833, -85.38401127590784 33.90540935904161, -85.39573827591876 33.959829359092296, -85.41656727593816 34.08692035921066, -85.46028627597887 34.290161359399946, -85.5118562760269 34.52301435961681, -85.52583427603993 34.58468535967424, -85.53469227604818 34.62248835970945, -85.58305827609321 34.86232235993281, -85.60896027611734 34.99016436005187, -85.4673842759855 34.99012336005183, -85.35994427588543 34.989978360051694, -85.26771727579954 34.98914936005093, -84.97279327552486 34.99262936005417, -84.96785727552027 34.992683360054215, -84.80041727536432 34.99283236005436, -84.77113427533706 34.99075736005243, -84.61868427519508 34.988759360050565, -84.32377327492041 34.989090360050874, -84.11815227472891 34.98830736005014, -83.98845427460813 34.989151360050926, -83.93789927456105 34.98947736005123, -83.54929727419913 34.98962836005137, -83.51288727416522 34.99211536005369, -83.10615727378642 35.00036636006138, -83.1004502737811 34.984162360046284, -83.11554227379517 34.95468736001883, -83.12140127380061 34.96089336002461, -83.12731527380613 34.95437436001854, -83.11310127379289 34.93612536000154, -83.12563627380456 34.94079036000589, -83.13756227381567 34.93047535999628, -83.15502627383194 34.93228035999796, -83.15835327383503 34.91765135998434, -83.18218027385723 34.910647359977816, -83.20351327387709 34.88417035995316, -83.21942827389192 34.88918235995783, -83.23280327390437 34.87382135994352, -83.24307327391394 34.87808135994749, -83.23568827390706 34.86238435993287, -83.25030627392067 34.85016635992149, -83.25042127392078 34.83971035991175, -83.26777127393694 34.839230359911305, -83.27011427393913 34.81507935988881, -83.30275327396951 34.80553135987992, -83.32269027398809 34.78724435986289, -83.32342427398876 34.752233359830285, -83.35033427401383 34.72738135980714, -83.35068527401415 34.70964735979062, -83.33979027400402 34.67769235976086, -83.29889527396593 34.66294535974713, -83.23698727390827 34.61332135970091, -83.16487927384111 34.59893735968751, -83.15895027383559 34.576831359666926, -83.13736627381549 34.56786735965858, -83.10812127378826 34.53501635962798, -83.07902127376116 34.518972359613045, -83.05499527373878 34.490061359586115, -83.00794927369496 34.4708283595682, -82.98196327367076 34.476497359573486, -82.90505527359913 34.477985359574866, -82.86804327356467 34.45754335955583, -82.84409227354236 34.41267535951404, -82.83643927353523 34.37104635947527, -82.80858327350929 34.33990035944627, -82.78287027348534 34.290515359400274, -82.76417027346793 34.28096035939137, -82.7580282734622 34.233373359347055, -82.74259327344782 34.205553359321144, -82.73578127344149 34.169796359287844, -82.66035527337124 34.108356359230626, -82.60294427331777 34.034636359161965, -82.59613827331144 34.01342035914221, -82.57360827329045 33.96890435910075, -82.57661527329326 33.95928735909179, -82.51753827323823 33.93102935906548, -82.4566312731815 33.8782243590163, -82.4245252731516 33.86025435899956, -82.39059627312001 33.85414035899387, -82.36570827309683 33.83600935897698, -82.35131127308343 33.83539235897641, -82.31111827304599 33.80391435894709, -82.30551027304077 33.78264835892729, -82.26621827300417 33.76159535890768, -82.234898272975 33.690339358841314, -82.21420627295574 33.68073435883237, -82.19218727293523 33.62384035877938, -82.16713227291189 33.61521535877135, -82.13897927288566 33.59390735875151, -82.11640327286464 33.59477635875231, -82.0656812728174 33.57386535873284, -82.03854327279213 33.54750535870829, -82.020140272775 33.53873235870012, -81.99653427275301 33.52049035868313, -81.98091727273847 33.490736358655425, -81.93638327269699 33.47101935863706, -81.9166382726786 33.451333358618726, -81.9272742726885 33.436143358604575, -81.91356327267573 33.4154413585853, -81.94033627270066 33.40816335857852, -81.92580927268715 33.37655935854909, -81.94506627270508 33.377147358549635, -81.93671227269729 33.35043735852476, -81.91141227267373 33.34949535852388, -81.91209127267436 33.33219635850777, -81.89348327265704 33.335237358510604, -81.87687427264157 33.30683735848415, -81.86554427263101 33.315668358492374, -81.84010727260733 33.308344358485556, -81.86071427262651 33.29709135847507, -81.82657327259471 33.26942435844931, -81.83984027260708 33.27330835845292, -81.83679627260425 33.260613358441105, -81.85396327262023 33.24350135842516, -81.81076427258 33.22644235840928, -81.80156327257143 33.20792635839203, -81.77983427255118 33.217368358400826, -81.76987827254192 33.21388135839758, -81.75959327253234 33.19538135838035, -81.7634082725359 33.16983535835656, -81.74037427251444 33.14469735833315, -81.70427927248082 33.122939358312884, -81.61096227239392 33.08787535828023, -81.59582527237981 33.07079035826432, -81.56003527234648 33.06081535825503, -81.54766027233497 33.04368335823907, -81.52960027231813 33.0439273582393, -81.50874927229873 33.0127933582103, -81.49273527228381 33.00481335820287, -81.49790027228862 32.959676358160834, -81.50984027229974 32.95541935815687, -81.5102362723001 32.947221358149235, -81.4770482722692 32.897571358102994, -81.465031272258 32.89772835810314, -81.48320527227493 32.876092358082985, -81.45853927225195 32.87140035807862, -81.45531927224896 32.84457635805364, -81.43233127222756 32.84168135805094, -81.42396127221976 32.83177135804171, -81.43030927222567 32.820305358031035, -81.42083327221684 32.80949435802096, -81.4302402722256 32.786153357999225, -81.4160722722124 32.756728357971824, -81.42303727221889 32.74981235796538, -81.40762627220454 32.74180635795793, -81.42053527221657 32.70156735792045, -81.40719127220414 32.686702357906604, -81.39947827219696 32.650815357873185, -81.41210527220872 32.62560935784971, -81.38490627218339 32.595883357822025, -81.36626727216603 32.58836535781502, -81.36670227216644 32.581979357809075, -81.35148927215226 32.58352835781052, -81.34040427214194 32.571360357799186, -81.29898327210336 32.567287357795394, -81.27430227208038 32.554814357783776, -81.2679852720745 32.53392935776432, -81.23624027204492 32.520614357751924, -81.19515727200667 32.464560357699725, -81.19992727201111 32.420316357658514, -81.17825227199093 32.38682935762733, -81.17912327199173 32.371781357613315, -81.15747927197158 32.33874035758254, -81.14188427195705 32.3484673575916, -81.13189027194774 32.33261835757684, -81.12404827194044 32.27664435752471, -81.1481732719629 32.25771335750708, -81.14769227196246 32.2244463574761, -81.11471827193175 32.19059335744457, -81.11911227193585 32.1176143573766, -81.10487527192258 32.10544635736527, -80.8947532717269 32.00599435727265, -80.97355627180029 31.94792835721857, -80.9708752717978 31.89031435716491, -81.13985127195517 31.86434035714072, -81.17999827199255 31.90589135717942, -81.20725827201794 31.900120357174046, -81.19730227200867 31.91989535719246, -81.20391027201482 31.928432357200414, -81.23968327204814 31.903415357177114, -81.28429427208968 31.949428357219965, -81.24494727205304 31.894691357168988, -81.20648827201722 31.920650357193164, -81.2201052720299 31.893140357167546, -81.18025027199279 31.897672357171764, -81.14146827195667 31.85351635713064, -81.03901127186124 31.82336035710256, -81.06104227188176 31.777543357059884, -81.13682427195234 31.727073357012884, -81.17401227198697 31.799811357080625, -81.1963662720078 31.784844357066685, -81.17517727198806 31.73580235702101, -81.28972927209475 31.79966535708049, -81.13493727195058 31.646070356937443, -81.18718927199924 31.599898356894442, -81.2407192720491 31.64017335693195, -81.23914527204764 31.556883356854378, -81.19477027200631 31.5051523568062, -81.20857127201916 31.466897356770573, -81.31306627211647 31.337597356650154, -81.36558127216539 31.344554356656634, -81.41034427220707 31.31148035662583, -81.39477127219257 31.264090356581697, -81.38881327218702 31.297149356612486, -81.30083527210509 31.27581935659262, -81.31024927211385 31.242695356561768, -81.38100627217975 31.148945356474457, -81.52838827231702 31.131128356457864, -81.5252592723141 31.086548356416344, -81.47533727226761 31.043823356376556, -81.53542927232357 31.076756356407227, -81.49085527228206 30.985812356322526, -81.52856127231718 30.962119356300462, -81.48482727227645 30.94490035628443, -81.52926927231783 30.864778356209808, -81.49838227228906 30.75751435610991, -81.5285952723172 30.721452356076327, -81.53659127232466 30.70657735606247, -81.60117027238479 30.724887356079524, -81.60477127238815 30.716321356071546, -81.62798127240977 30.731774356085936, -81.64247727242326 30.72908135608343, -81.71676927249246 30.7453693560986, -81.736675272511 30.763888356115846, -81.75771027253059 30.769631356121195, -81.77670827254828 30.7615843561137, -81.80319827257296 30.78808535613838, -81.87300227263796 30.799084356148626, -81.8991412726623 30.828308356175842, -81.9075182726701 30.81347535616203, -81.9438052727039 30.82424935617206, -81.95302927271248 30.820431356168505, -81.96155127272043 30.796007356145758, -81.98148027273899 30.778351356129313, -82.01553827277071 30.791319356141393, -82.01296727276831 30.76425635611619, -82.03188127278592 30.757532356109927, -82.04491127279806 30.650910356010627, -82.01365227276895 30.598690355961992, -82.00580127276164 30.570990355936196, -82.0225092727772 30.47771735584933, -82.03512027278894 30.44287835581688, -82.04609927279917 30.434068355808677, -82.03835427279195 30.3789043557573, -82.05276727280538 30.36379435574323, -82.16463927290957 30.361291355740896, -82.1802342729241 30.368631355747734, -82.20556527294768 30.423853355799164, -82.19918727294174 30.49001435586078, -82.21936727296054 30.502970355872847, -82.23839627297826 30.531444355899367, -82.22103927296209 30.56707635593255, -82.41209227314003 30.57730735594208, -82.46313527318756 30.58268935594709, -82.58295727329916 30.58905335595302, -82.69635627340477 30.595720355959227, -83.1324402738109 30.62134135598309, -83.30131527396819 30.63328535599421, -83.31060027397683 30.634303355995158, -83.60905627425478 30.65078435601051, -83.73784427437472 30.66049135601955, -84.00073027461956 30.675537356033562, -84.07556227468925 30.678577356036392, -84.2816632748812 30.69041935604742, -84.37444827496762 30.694092356050845, -84.86300327542261 30.71266435606814, -84.86458327542408 30.714503356069855, -84.88828927544617 30.74388935609722, -84.91534327547136 30.754089356106718, -84.92689527548212 30.776088356127207, -84.9325642754874 30.80262535615192, -84.92692627548215 30.846922356193176, -84.93777627549225 30.894957356237914, -84.96901227552135 30.927093356267843, -84.97356727552558 30.9636643563019, -85.00014227555033 30.97931935631648, -85.0016072755517 31.00125335633691, -85.01699527556603 31.080102356410343, -85.03806827558566 31.126713356453752, -85.06866227561414 31.162364356486954, -85.09336727563716 31.172211356496128, -85.10295727564609 31.19692235651914, -85.09360327563738 31.22707435654722, -85.10336127564646 31.271436356588538, -85.08122827562585 31.303080356618008, -85.0825632756271 31.332334356645255, -85.0879422756321 31.367234356677756, -85.0614062756074 31.440663356746143, -85.06631227561196 31.476089356779134, -85.04269827558997 31.519660356819713, -85.04272127559 31.554389356852056, -85.05928527560542 31.621265356914343, -85.11120527565377 31.684242356972995, -85.11867427566072 31.708571356995648, -85.11528727565758 31.731566357017066, -85.13016527567143 31.778853357061106)), ((-81.48505527227665 30.903883356246226, -81.41640527221271 30.97060035630836, -81.40305227220028 30.938803356278747, -81.45571627224933 30.716427356071645, -81.47946027227144 30.736883356090694, -81.46988727226253 30.860259356205596, -81.50330527229366 30.881735356225597, -81.48505527227665 30.903883356246226))) +SC South Carolina MULTIPOLYGON (((-81.75959327253234 33.19538135838035, -81.76987827254192 33.21388135839758, -81.77983427255118 33.217368358400826, -81.80156327257143 33.20792635839203, -81.81076427258 33.22644235840928, -81.85396327262023 33.24350135842516, -81.83679627260425 33.260613358441105, -81.83984027260708 33.27330835845292, -81.82657327259471 33.26942435844931, -81.86071427262651 33.29709135847507, -81.84010727260733 33.308344358485556, -81.86554427263101 33.315668358492374, -81.87687427264157 33.30683735848415, -81.89348327265704 33.335237358510604, -81.91209127267436 33.33219635850777, -81.91141227267373 33.34949535852388, -81.93671227269729 33.35043735852476, -81.94506627270508 33.377147358549635, -81.92580927268715 33.37655935854909, -81.94033627270066 33.40816335857852, -81.91356327267573 33.4154413585853, -81.9272742726885 33.436143358604575, -81.9166382726786 33.451333358618726, -81.93638327269699 33.47101935863706, -81.98091727273847 33.490736358655425, -81.99653427275301 33.52049035868313, -82.020140272775 33.53873235870012, -82.03854327279213 33.54750535870829, -82.0656812728174 33.57386535873284, -82.11640327286464 33.59477635875231, -82.13897927288566 33.59390735875151, -82.16713227291189 33.61521535877135, -82.19218727293523 33.62384035877938, -82.21420627295574 33.68073435883237, -82.234898272975 33.690339358841314, -82.26621827300417 33.76159535890768, -82.30551027304077 33.78264835892729, -82.31111827304599 33.80391435894709, -82.35131127308343 33.83539235897641, -82.36570827309683 33.83600935897698, -82.39059627312001 33.85414035899387, -82.4245252731516 33.86025435899956, -82.4566312731815 33.8782243590163, -82.51753827323823 33.93102935906548, -82.57661527329326 33.95928735909179, -82.57360827329045 33.96890435910075, -82.59613827331144 34.01342035914221, -82.60294427331777 34.034636359161965, -82.66035527337124 34.108356359230626, -82.73578127344149 34.169796359287844, -82.74259327344782 34.205553359321144, -82.7580282734622 34.233373359347055, -82.76417027346793 34.28096035939137, -82.78287027348534 34.290515359400274, -82.80858327350929 34.33990035944627, -82.83643927353523 34.37104635947527, -82.84409227354236 34.41267535951404, -82.86804327356467 34.45754335955583, -82.90505527359913 34.477985359574866, -82.98196327367076 34.476497359573486, -83.00794927369496 34.4708283595682, -83.05499527373878 34.490061359586115, -83.07902127376116 34.518972359613045, -83.10812127378826 34.53501635962798, -83.13736627381549 34.56786735965858, -83.15895027383559 34.576831359666926, -83.16487927384111 34.59893735968751, -83.23698727390827 34.61332135970091, -83.29889527396593 34.66294535974713, -83.33979027400402 34.67769235976086, -83.35068527401415 34.70964735979062, -83.35033427401383 34.72738135980714, -83.32342427398876 34.752233359830285, -83.32269027398809 34.78724435986289, -83.30275327396951 34.80553135987992, -83.27011427393913 34.81507935988881, -83.26777127393694 34.839230359911305, -83.25042127392078 34.83971035991175, -83.25030627392067 34.85016635992149, -83.23568827390706 34.86238435993287, -83.24307327391394 34.87808135994749, -83.23280327390437 34.87382135994352, -83.21942827389192 34.88918235995783, -83.20351327387709 34.88417035995316, -83.18218027385723 34.910647359977816, -83.15835327383503 34.91765135998434, -83.15502627383194 34.93228035999796, -83.13756227381567 34.93047535999628, -83.12563627380456 34.94079036000589, -83.11310127379289 34.93612536000154, -83.12731527380613 34.95437436001854, -83.12140127380061 34.96089336002461, -83.11554227379517 34.95468736001883, -83.1004502737811 34.984162360046284, -83.10615727378642 35.00036636006138, -83.00714627369422 35.02429336008366, -82.88755627358283 35.0554733601127, -82.77120127347447 35.08553736014069, -82.69720827340556 35.09134936014611, -82.68788427339688 35.09791836015222, -82.68590027339503 35.12158036017426, -82.65434427336564 35.11957436017239, -82.56987627328698 35.14960736020036, -82.5244792732447 35.154677360205085, -82.46658627319077 35.17361736022272, -82.43776127316393 35.16967636021906, -82.38945027311894 35.20835636025508, -82.37121627310196 35.18283936023131, -82.35996227309148 35.183064360231526, -82.35070027308285 35.192788360240584, -82.32060927305483 35.184303360232676, -82.2781652730153 35.19512136024275, -82.21001027295182 35.193241360241004, -81.97127227272948 35.18840036023649, -81.87041627263555 35.183237360231686, -81.76518127253755 35.18259636023109, -81.36198027216203 35.16298636021283, -81.32262527212538 35.16389136021367, -81.04909927187065 35.151672360202284, -81.04883927187039 35.132153360184105, -81.02824027185122 35.10555136015934, -81.06535027188578 35.06662536012308, -81.03968527186187 35.03734536009581, -80.92759227175748 35.10139436015547, -80.89451027172667 35.0598803601168, -80.83995927167587 35.00216636006305, -80.7854442716251 34.94078836000588, -80.79985627163852 34.81626035988991, -80.56133527141637 34.81537935988909, -80.32506527119634 34.814916359888656, -79.91973627081885 34.80807435988228, -79.68573827060091 34.80541235987981, -79.66728227058373 34.80082035987553, -79.45574127038671 34.634252359720406, -79.44691327037849 34.619222359706406, -79.07425727003142 34.30473835941352, -78.65545326964138 33.94884535908207, -78.5794532695706 33.88216435901997, -78.62259226961078 33.86570835900464, -78.58593126957663 33.8535313589933, -78.85488126982712 33.71636235886555, -79.00069526996292 33.57262935873169, -79.12086627007483 33.43077835859958, -79.1501502701021 33.31725635849386, -79.15811527010952 33.342433358517304, -79.27084627021452 33.29703835847503, -79.20191127015032 33.18368835836946, -79.22956227017606 33.14150535833018, -79.34875527028707 33.154994358342734, -79.29783427023965 33.138961358327805, -79.28787727023037 33.10469835829589, -79.41061827034468 33.013868358211305, -79.58235727050463 33.0160133582133, -79.61723327053711 32.98096835818066, -79.58764627050955 32.92510635812864, -79.6068122705274 32.89924335810455, -79.75232027066292 32.79423535800675, -79.90748627080742 32.790707358003466, -79.79985927070719 32.929956358133154, -79.9071412708071 32.85938935806743, -79.93025027082864 32.914221358118496, -79.96211927085831 32.90441035810936, -79.94798427084514 32.81079935802218, -79.89165527079268 32.73403035795069, -79.8963932707971 32.67742135789796, -79.99661727089044 32.60578735783125, -80.21080327108992 32.561601357790096, -80.29065427116429 32.504070357736516, -80.34717427121691 32.51195535774386, -80.39086827125762 32.65540135787745, -80.41599227128101 32.66916035789027, -80.39980327126594 32.504960357737346, -80.48070727134129 32.51043435774244, -80.55039427140619 32.55784135778659, -80.53888227139547 32.50986635774191, -80.64641127149561 32.51887935775031, -80.64355827149295 32.49846035773129, -80.48607227134627 32.431031357668495, -80.44279727130598 32.37350735761492, -80.46039227132236 32.318685357563865, -80.62602827147663 32.27282135752115, -80.67801427152504 32.28566535753311, -80.7419632715846 32.360212357602535, -80.79938227163807 32.47330735770787, -80.78478627162448 32.50505235773743, -80.83051727166708 32.516281357747886, -80.86717727170121 32.532695357763174, -80.82186627165902 32.40071035764026, -80.78056127162054 32.248123357498145, -80.89291427172518 32.06817335733056, -81.10487527192258 32.10544635736527, -81.11911227193585 32.1176143573766, -81.11471827193175 32.19059335744457, -81.14769227196246 32.2244463574761, -81.1481732719629 32.25771335750708, -81.12404827194044 32.27664435752471, -81.13189027194774 32.33261835757684, -81.14188427195705 32.3484673575916, -81.15747927197158 32.33874035758254, -81.17912327199173 32.371781357613315, -81.17825227199093 32.38682935762733, -81.19992727201111 32.420316357658514, -81.19515727200667 32.464560357699725, -81.23624027204492 32.520614357751924, -81.2679852720745 32.53392935776432, -81.27430227208038 32.554814357783776, -81.29898327210336 32.567287357795394, -81.34040427214194 32.571360357799186, -81.35148927215226 32.58352835781052, -81.36670227216644 32.581979357809075, -81.36626727216603 32.58836535781502, -81.38490627218339 32.595883357822025, -81.41210527220872 32.62560935784971, -81.39947827219696 32.650815357873185, -81.40719127220414 32.686702357906604, -81.42053527221657 32.70156735792045, -81.40762627220454 32.74180635795793, -81.42303727221889 32.74981235796538, -81.4160722722124 32.756728357971824, -81.4302402722256 32.786153357999225, -81.42083327221684 32.80949435802096, -81.43030927222567 32.820305358031035, -81.42396127221976 32.83177135804171, -81.43233127222756 32.84168135805094, -81.45531927224896 32.84457635805364, -81.45853927225195 32.87140035807862, -81.48320527227493 32.876092358082985, -81.465031272258 32.89772835810314, -81.4770482722692 32.897571358102994, -81.5102362723001 32.947221358149235, -81.50984027229974 32.95541935815687, -81.49790027228862 32.959676358160834, -81.49273527228381 33.00481335820287, -81.50874927229873 33.0127933582103, -81.52960027231813 33.0439273582393, -81.54766027233497 33.04368335823907, -81.56003527234648 33.06081535825503, -81.59582527237981 33.07079035826432, -81.61096227239392 33.08787535828023, -81.70427927248082 33.122939358312884, -81.74037427251444 33.14469735833315, -81.7634082725359 33.16983535835656, -81.75959327253234 33.19538135838035)), ((-80.76780527160867 32.25864835750795, -80.71908327156329 32.27220435752058, -80.66661627151443 32.22011335747206, -80.8192672716566 32.10469835736457, -80.76780527160867 32.25864835750795))) +AR Arkansas MULTIPOLYGON (((-94.46169128436209 34.19676535931296, -94.45262428435365 34.508432359603226, -94.44596128434745 34.7356083598148, -94.43932228434126 34.929151359995046, -94.42855228433123 35.40054636043407, -94.46848528436841 35.64108836065809, -94.48593528438467 35.760310360769125, -94.54241728443728 36.10683536109185, -94.55311328444724 36.16452536114558, -94.60745328449784 36.478790361438264, -94.61725728450698 36.489414361448155, -94.0810522840076 36.49102436144966, -93.85752028379942 36.48978636144851, -93.59644928355627 36.489958361448664, -93.32834628330659 36.490261361448944, -93.29732428327769 36.49068136144933, -92.8522752828632 36.489884361448595, -92.7776352827937 36.48998336144869, -92.5230502825566 36.490921361449566, -92.14631928220574 36.49166036145025, -92.12764228218833 36.491435361450044, -91.68856028177942 36.49101836144965, -91.45298928156002 36.49043836144911, -91.41179628152166 36.49110136144973, -91.1339562812629 36.488015361446855, -90.804434280956 36.48926536144802, -90.5817322807486 36.49102236144965, -90.22447328041588 36.49281136145132, -90.15025928034676 36.491873361450445, -90.13737228033476 36.457476361418415, -90.11732228031609 36.45395536141513, -90.12392928032223 36.42262636138595, -90.11692528031571 36.40497636136952, -90.08027228028158 36.39745036136251, -90.05215728025539 36.3826153613487, -90.05029528025366 36.362668361330115, -90.06772928026989 36.325395361295406, -90.04984528025324 36.30053636127225, -90.06618728026845 36.272338361245986, -90.11001228030928 36.2580593612327, -90.13131328032911 36.21213536118992, -90.16140528035714 36.19700636117583, -90.21932128041108 36.17263136115313, -90.23232228042319 36.1612133611425, -90.23493928042562 36.137155361120094, -90.2638012804525 36.118829361103025, -90.28485128047211 36.11597236110036, -90.3153392805005 36.09172336107778, -90.37906228055985 35.98965636098272, -90.2835542804709 35.99122836098418, -89.96329128017263 35.99690836098948, -89.72183627994775 35.99995136099231, -89.71321527993973 35.96639736096106, -89.66427127989415 35.937894360934514, -89.64547927987664 35.91387336091215, -89.64941627988031 35.89436236089397, -89.66472827989458 35.885721360885924, -89.71476327994117 35.91150136090994, -89.73805627996286 35.915087360913276, -89.76299027998608 35.89688736089633, -89.76635527998921 35.884177360884486, -89.75779427998124 35.87149336087268, -89.70151827992883 35.84211336084531, -89.70090827992827 35.827590360831785, -89.73601927996097 35.80711436081272, -89.75987727998319 35.81749736082239, -89.79046428001168 35.805630360811335, -89.79998628002053 35.774300360782156, -89.82712428004581 35.7583473607673, -89.85995528007639 35.74826936075792, -89.90986828012288 35.754914360764104, -89.95112128016129 35.734345360744946, -89.95212128016223 35.712564360724656, -89.92982728014147 35.676344360690926, -89.89348728010762 35.656050360672026, -89.86526528008133 35.673384360688175, -89.85733028007394 35.67114136068608, -89.84928128006645 35.64530136066202, -89.86392228008009 35.6298253606476, -89.87752628009275 35.633414360650946, -89.9571332801669 35.60318336062279, -89.95811828016781 35.57867436059996, -89.92174728013394 35.546140360569666, -89.93126128014279 35.529313360554, -89.94763428015804 35.52698236055183, -89.96236028017177 35.532373360556846, -89.9896742801972 35.56175636058421, -90.03314028023767 35.552495360575584, -90.040991280245 35.54292836056668, -90.04190628024584 35.51252136053836, -89.99965328020649 35.44553736047597, -90.04687328025047 35.41718736044957, -90.06038528026305 35.41349436044613, -90.07402728027576 35.42659036045833, -90.0749352802766 35.47242636050102, -90.08232028028348 35.47828936050647, -90.10205128030186 35.47365136050216, -90.13736828033475 35.44260736047325, -90.17277028036771 35.42380136045573, -90.1679102803632 35.38433936041898, -90.14026028033744 35.38313036041785, -90.13256228033028 35.40768536044072, -90.11233528031144 35.41777436045011, -90.08525028028622 35.418365360450665, -90.0755682802772 35.40661336043972, -90.08722628028805 35.38159336041642, -90.10571328030527 35.366067360401956, -90.09879328029882 35.34567836038297, -90.10643828030595 35.31477236035418, -90.1570832803531 35.30633136034633, -90.169840280365 35.282653360324275, -90.15221628034858 35.26414536030704, -90.10603428030556 35.263935360306846, -90.09019528029081 35.254486360298046, -90.06905328027112 35.21282636025924, -90.07339428027517 35.19192236023977, -90.06252228026504 35.167005360216564, -90.064628280267 35.14747436019838, -90.08301628028413 35.12514036017758, -90.14382328034077 35.136626360188274, -90.16456828036009 35.12970336018183, -90.178439280373 35.108738360162306, -90.16917628036437 35.0779193601336, -90.19580428038917 35.04099036009921, -90.29190628047867 35.048551360106245, -90.30544828049129 35.00078836006176, -90.29960428048584 34.97857636004108, -90.24826428043804 34.94985636001434, -90.2419932804322 34.93900036000422, -90.24293928043308 34.9208273599873, -90.2668042804553 34.896608359964745, -90.29636928048284 34.88278735995187, -90.29954328048579 34.865057359935356, -90.30164928048775 34.85187435992308, -90.32292028050756 34.85036335992167, -90.34152128052489 34.860674359931274, -90.4040302805831 34.84113535991308, -90.42241028060022 34.83236535990491, -90.43364828061068 34.835451359907786, -90.42794128060537 34.872739359942514, -90.43818828061491 34.886277359955116, -90.47062928064513 34.88102035995023, -90.47481828064903 34.85782335992862, -90.45200528062777 34.82531535989835, -90.46680728064156 34.799761359874545, -90.44896928062495 34.7608493598383, -90.45153228062733 34.7412993598201, -90.48602628065946 34.72693335980672, -90.50452028067669 34.72995435980953, -90.51707128068837 34.748470359826776, -90.4988362806714 34.765884359843, -90.50138428067376 34.78993135986539, -90.51614728068752 34.80570035988008, -90.52736328069795 34.80742135988168, -90.54784928071705 34.790434359865856, -90.53338328070357 34.71335235979407, -90.51366828068521 34.702168359783656, -90.47008028064461 34.70435435978569, -90.46632628064111 34.67214035975569, -90.50891428068078 34.638166359724046, -90.53906728070886 34.63699535972296, -90.54765028071685 34.65190635973684, -90.53916628070895 34.686047359768644, -90.56116228072943 34.700386359781994, -90.57940528074643 34.645711359731074, -90.58809528075453 34.627916359714504, -90.57771928074486 34.604845359693016, -90.53072028070109 34.555751359647296, -90.53725128070717 34.54343035963582, -90.56578628073375 34.53261135962575, -90.5804502807474 34.5203243596143, -90.59015528075645 34.49660935959221, -90.57450528074186 34.45404935955258, -90.57922828074626 34.43310335953307, -90.60389428076924 34.40470335950662, -90.65734628081901 34.36601435947059, -90.65791828081954 34.330111359437154, -90.6794402808396 34.318079359425944, -90.68948128084895 34.32024935942796, -90.68124228084127 34.36350435946825, -90.68759028084719 34.37797635948173, -90.75541828091035 34.37226935947641, -90.76196428091644 34.36401835946873, -90.74786328090332 34.3178233594257, -90.7583602809131 34.27908135938962, -90.79263328094501 34.30006135940916, -90.80652628095795 34.29945135940859, -90.82394428097417 34.2774443593881, -90.83146628098118 34.22963935934358, -90.86351828101103 34.21926735933392, -90.92854528107159 34.250298359362816, -90.9338172810765 34.23478035934836, -90.92159428106511 34.20493535932057, -90.82302728097332 34.19065035930727, -90.80761528095897 34.16627835928457, -90.82897028097885 34.14876535926826, -90.84671628099538 34.14765135926722, -90.92902528107204 34.185754359302706, -90.95345528109479 34.15590835927491, -90.94235428108445 34.1260483592471, -90.90641828105099 34.1028553592255, -90.86643828101376 34.101059359223825, -90.88645028103238 34.04081835916772, -90.95057728109211 34.03139535915895, -90.97347328111343 34.01110435914005, -90.9753812811152 33.99471335912479, -90.96123528110203 33.978981359110136, -90.96489728110545 33.9675683590995, -90.98692428112597 33.960923359093314, -91.00036828113848 33.96847935910036, -91.00965328114712 33.99063435912099, -91.03116928116717 33.98580535911649, -91.06980528120314 34.00620135913549, -91.088963281221 33.99457335912466, -91.07581728120876 33.97474935910619, -91.01857228115544 33.93641335907049, -91.0614802811954 33.86718835900602, -91.0549262811893 33.84363335898408, -91.02896228116511 33.816695358958995, -90.99047828112927 33.79900735894252, -90.98414628112337 33.78545035892989, -90.99548328113393 33.77166035891705, -91.01854028115541 33.76408335891, -91.04351228117866 33.76966435891519, -91.06650028120008 33.786635358931, -91.10552628123642 33.7765483589216, -91.13709728126582 33.780195358925, -91.14300228127132 33.7719283589173, -91.13811128126676 33.723334358872044, -91.12905528125833 33.712550358862, -91.10467828123562 33.70834335885809, -91.05632228119059 33.71946735886844, -91.0389332811744 33.70560135885553, -91.03794128117347 33.68332735883479, -91.08387928121626 33.66269735881557, -91.12115828125097 33.67763935882949, -91.16341128129032 33.71842435886747, -91.21179128133538 33.709074358858764, -91.21525528133861 33.690832358841774, -91.20542028132945 33.670054358822426, -91.15451528128204 33.63714235879177, -91.15076128127855 33.616272358772335, -91.16813328129473 33.57735635873609, -91.18791728131315 33.5747923587337, -91.2268432813494 33.59059235874842, -91.22774328135024 33.55646235871663, -91.21359828133707 33.539388358700734, -91.20421328132832 33.53861835870001, -91.18295728130853 33.5234633586859, -91.18051628130625 33.512126358675346, -91.20775328133162 33.47351035863938, -91.2272622813498 33.459567358626394, -91.2329622813551 33.443557358611486, -91.18188128130753 33.447502358615154, -91.17184028129817 33.466758358633086, -91.17429028130046 33.50448135866822, -91.16508828129189 33.511893358675124, -91.12890828125819 33.49330435865781, -91.11906628124903 33.46978735863591, -91.11982128124973 33.452946358620224, -91.1306252812598 33.44323835861118, -91.19894128132341 33.422226358591615, -91.20427428132838 33.41441435858434, -91.18509328131051 33.391946358563416, -91.13774328126642 33.388994358560666, -91.09923728123056 33.4150133585849, -91.08590828121815 33.46297135862956, -91.07386828120694 33.466320358632686, -91.06108828119503 33.46012535862691, -91.06162228119553 33.43191235860064, -91.07879728121152 33.410295358580505, -91.10704928123783 33.39352235856488, -91.1305332812597 33.359518358533215, -91.14185528127025 33.32250135849874, -91.12261328125233 33.268623358448565, -91.10301328123408 33.24932935843059, -91.07643128120932 33.29247635847078, -91.05393928118838 33.29369335847191, -91.0405342811759 33.28204035846106, -91.05464928118903 33.2459003584274, -91.09211028122392 33.22581635840869, -91.08642628121864 33.16172335834901, -91.09596328122751 33.14520535833362, -91.12143828125124 33.131190358320566, -91.17773728130366 33.15040835833847, -91.19561328132032 33.14058535832932, -91.1906462813157 33.113345358303945, -91.14689828127494 33.09077435828293, -91.11789828124795 33.065693358259566, -91.1240932812537 33.047395358242525, -91.15679428128416 33.040555358236155, -91.16078428128787 33.02183335821872, -91.16224128128924 33.01316235821065, -91.25472728137537 33.013601358211055, -91.42764428153642 33.013545358211005, -91.4544702815614 33.01399935821142, -92.06344128212855 33.01015135820784, -92.71723628273745 33.01683935821407, -92.97898928298122 33.01827435821541, -93.23254328321735 33.019375358216436, -93.47907028344696 33.02152835821843, -93.51191528347755 33.02128735821822, -93.80993128375509 33.02272935821956, -94.03893128396837 33.0234223582202, -94.03669128396628 33.27045335845027, -94.03611628396574 33.55603435871623, -94.0616222839895 33.57733535873607, -94.08684628401299 33.58407535874235, -94.09889328402421 33.57312035873215, -94.15536028407679 33.56720635872664, -94.15971028408084 33.5938943587515, -94.20554128412353 33.5852003587434, -94.21108028412868 33.558108358718165, -94.2355642841515 33.56165635872147, -94.22323428414 33.585840358743994, -94.23743328415324 33.592543358750234, -94.27474228418798 33.56185735872166, -94.27227828418569 33.584726358742955, -94.27918228419212 33.58945235874736, -94.29901928421059 33.57997235873853, -94.30258228421391 33.55705435871718, -94.32895028423846 33.57325435873227, -94.37095928427759 33.547802358708566, -94.39546528430041 33.56042135872032, -94.37250828427904 33.57278035873183, -94.37082928427746 33.590160358748015, -94.37931428428537 33.59344435875107, -94.3936192842987 33.57507735873397, -94.40677228431095 33.573604358732595, -94.42867028433133 33.59725835875463, -94.44353228434518 33.596621358754035, -94.45175728435284 33.60446435876134, -94.43653628433866 33.616961358772976, -94.43611728433827 33.63656135879123, -94.47669128437606 33.63208135878706, -94.46858528436852 33.93931135907319, -94.46169128436209 34.19676535931296))) +LA Louisiana MULTIPOLYGON (((-93.70752428365972 30.239578355627543, -93.69937728365213 30.297593355681574, -93.72994128368059 30.30512235568859, -93.75934728370798 30.34107735572207, -93.75950728370813 30.354350355734432, -93.74800228369742 30.367615355746786, -93.75511328370403 30.38199335576018, -93.7427312836925 30.409027355785355, -93.72170528367292 30.433183355807852, -93.69674128364967 30.44283535581684, -93.70359328365606 30.462715355835357, -93.69814628365098 30.470249355842373, -93.7150232836667 30.48883135585968, -93.70744728365965 30.496443355866766, -93.71481028366651 30.50531635587503, -93.70563228365796 30.52306035589156, -93.73547928368575 30.54571935591266, -93.71805428366953 30.56835535593374, -93.71798528366946 30.587582355951646, -93.69359428364675 30.599037355962317, -93.6717582836264 30.598033355961384, -93.69286928364608 30.61599735597811, -93.68475928363851 30.623626355985216, -93.69305328364624 30.640243356000692, -93.67814528363236 30.63989435600037, -93.6601632836156 30.673060356031257, -93.61778128357614 30.687003356044244, -93.61258528357129 30.71053035606615, -93.61796528357631 30.732749356086845, -93.60782528356687 30.732211356086346, -93.61862928357692 30.745989356099177, -93.58534828354593 30.77238435612376, -93.58204528354285 30.802239356151563, -93.55085528351381 30.828542356176058, -93.55581428351843 30.842540356189097, -93.56661828352848 30.845346356191712, -93.55297628351579 30.860480356205805, -93.56101728352327 30.872077356216607, -93.5686702835304 30.886431356229973, -93.56464928352665 30.902128356244592, -93.54668928350993 30.90553035624776, -93.54979428351282 30.925080356265966, -93.53015528349454 30.927167356267912, -93.52579128349046 30.93601435627615, -93.53236028349659 30.960926356299353, -93.53751028350138 30.95707935629577, -93.54884828351194 30.97038435630816, -93.57262928353408 30.97637235631374, -93.56112428352337 30.99188335632818, -93.57101928353259 30.99746435633338, -93.56806728352984 31.01311735634796, -93.5651142835271 31.018256356352744, -93.54729128351049 31.014334356349092, -93.50738928347333 31.039099356372155, -93.52591328349058 31.057171356388984, -93.51717028348244 31.074861356405464, -93.54427828350768 31.082563356412635, -93.54329428350677 31.094941356424165, -93.56015628352247 31.10072635642955, -93.55685228351939 31.109532356437754, -93.53526028349928 31.11626135644402, -93.52826428349277 31.126114356453193, -93.53767928350153 31.13262935645926, -93.54436328350776 31.15935435648415, -93.52850128349299 31.16313035648767, -93.53719128350109 31.176527356500145, -93.5271052834917 31.178263356501763, -93.52909628349354 31.185961356508933, -93.55076428351373 31.19111635651373, -93.57711728353827 31.172328356496237, -93.5941162835541 31.18038635650374, -93.60309628356246 31.19925335652131, -93.59072128355093 31.229873356549827, -93.61117628356999 31.24237335656147, -93.6120542835708 31.270218356587403, -93.61663228357507 31.275989356592778, -93.63100628358845 31.274088356591008, -93.6457702836022 31.290447356606244, -93.65630628361201 31.2868553566029, -93.68176628363572 31.31286335662712, -93.67721928363149 31.328570356641748, -93.6350352835922 31.374009356684063, -93.66125128361662 31.372577356682733, -93.66419628361936 31.398510356706886, -93.68767328364123 31.40631135671415, -93.6946232836477 31.41610335672327, -93.69631028364927 31.42791735673427, -93.68718528364077 31.438311356743952, -93.70210828365467 31.446431356751514, -93.6985992836514 31.461638356765675, -93.72696628367783 31.459654356763828, -93.75142728370061 31.485680356788066, -93.75061828369985 31.490736356792777, -93.71917628367056 31.49558235679729, -93.70597728365827 31.520747356820728, -93.73184228368237 31.522055356821944, -93.74772728369716 31.537896356836697, -93.76348928371183 31.530902356830182, -93.78031328372751 31.53391335683299, -93.81070228375582 31.559240356856577, -93.81650828376122 31.577287356873384, -93.8328052837764 31.590360356885558, -93.83576528377915 31.615364356908845, -93.81977428376426 31.61826735691155, -93.81491428375973 31.64814135693937, -93.806613283752 31.65394135694477, -93.81203028375705 31.674740356964143, -93.79245228373881 31.71156835699844, -93.80895528375419 31.707738356994874, -93.81513528375994 31.71252335699933, -93.81017628375533 31.730524357016094, -93.83134828377504 31.75345235703745, -93.82225428376657 31.77480835705734, -93.83451428377799 31.802187357082836, -93.86501028380638 31.817442357097043, -93.8775912838181 31.85028235712763, -93.8814512838217 31.871588357147473, -93.8927132838322 31.87023435714621, -93.89944928383846 31.894623357168925, -93.92365028386101 31.892762357167193, -93.91811128385584 31.909870357183124, -93.93591928387242 31.909624357182896, -93.97017528390433 31.92333235719566, -93.97740028391107 31.94632735721708, -94.00458428393638 31.978108357246676, -94.0100782839415 31.9893003572571, -94.03525528396494 31.994679357262108, -94.03495528396466 32.199609357452964, -94.03541828396509 32.3893813576297, -94.04038228396972 32.69495735791429, -94.04178528397102 32.88248535808894, -94.03893128396837 33.0234223582202, -93.80993128375509 33.02272935821956, -93.51191528347755 33.02128735821822, -93.47907028344696 33.02152835821843, -93.23254328321735 33.019375358216436, -92.97898928298122 33.01827435821541, -92.71723628273745 33.01683935821407, -92.06344128212855 33.01015135820784, -91.4544702815614 33.01399935821142, -91.42764428153642 33.013545358211005, -91.25472728137537 33.013601358211055, -91.16224128128924 33.01316235821065, -91.16197428128899 33.00041835819878, -91.20927028133303 32.93597835813876, -91.19842128132294 32.91428835811856, -91.16980928129628 32.905148358110054, -91.137285281266 32.91791235812194, -91.13004428125926 32.93759135814027, -91.13246328126151 32.97534835817543, -91.11192428124238 32.98747535818672, -91.09278128122455 32.987746358186975, -91.07569828120864 32.953838358155394, -91.0796352812123 32.8772903580841, -91.14225928127063 32.841342358050625, -91.15645028128384 32.76281135797749, -91.13657528126534 32.751256357966724, -91.09781728122924 32.74952835796512, -91.0591352811932 32.72365035794102, -91.13966528126821 32.663308357884816, -91.14637228127445 32.64498635786775, -91.1111002812416 32.597663357823684, -91.06391928119767 32.60652435783194, -91.04773728118259 32.61448935783935, -91.02757228116381 32.64163735786464, -91.00798728114557 32.642808357865725, -90.99623728113464 32.626112357850175, -90.99876328113699 32.61560335784039, -91.03243228116834 32.58280935780985, -91.05897528119307 32.576526357804, -91.07337228120647 32.561749357790234, -91.063194281197 32.54229835777212, -90.99517728113365 32.5117823577437, -90.99215628113083 32.49542135772846, -91.01979028115657 32.490954357724306, -91.03730828117288 32.49709535773002, -91.08889128122092 32.548775357778155, -91.11885228124883 32.52420635775527, -91.11779228124784 32.49870935773153, -91.05861728119272 32.447140357683494, -91.0270152811633 32.44255935767923, -90.98755528112655 32.45310635768905, -90.96559028110609 32.44017935767701, -90.97009128111029 32.41916035765744, -91.00931528114681 32.39722735763701, -90.99896928113718 32.36637835760828, -90.98467228112386 32.35654135759912, -90.915029281059 32.346043357589345, -90.88525928103128 32.381500357622365, -90.87545528102214 32.37979535762078, -90.91647928106036 32.30546435755155, -90.92935028107235 32.29755335754418, -90.97176328111185 32.30384735755004, -90.98087228112033 32.29780035754441, -90.98392428112317 32.28728035753461, -90.97112228111125 32.26921435751779, -90.97732428111702 32.223554357475265, -91.04175628117703 32.24958835749951, -91.06257028119641 32.23289235748396, -91.08802228122012 32.232537357483636, -91.1006792812319 32.21503635746733, -91.11606128124623 32.22575535747732, -91.1573752812847 32.206014357458926, -91.16695828129363 32.172141357427385, -91.15665028128403 32.14493535740205, -91.10882028123949 32.13514335739293, -91.08311628121555 32.14873135740558, -91.05415428118857 32.13454435739237, -91.04541828118043 32.158824357414986, -91.05458128118897 32.18468335743906, -91.02452128116097 32.17005035742544, -91.0039362811418 32.169413357424844, -91.01139028114875 32.134213357392056, -91.0411912811765 32.10782335736748, -91.07392228120699 32.09414835735475, -91.06511828119879 32.05870735732174, -91.0894102812214 32.05699835732015, -91.12572728125524 32.088399357349395, -91.14569428127383 32.085828357347, -91.14312328127143 32.066259357328775, -91.08699228121915 32.04381135730787, -91.07324328120636 32.032150357297006, -91.07248828120565 32.021213357286825, -91.10811028123882 31.9919843572596, -91.16314328129008 31.988448357256306, -91.20154228132584 31.91444935718739, -91.24448128136584 31.87867235715407, -91.26469228138465 31.865586357141883, -91.24138328136294 31.83538735711376, -91.25072928137165 31.81882135709833, -91.27680028139594 31.827533357106443, -91.2926472814107 31.86149235713807, -91.30347328142076 31.86314435713961, -91.33484628144998 31.843478357121292, -91.34723628146153 31.795832357076918, -91.36713428148006 31.770867357053667, -91.33625728145131 31.76362235704692, -91.26268528138279 31.773927357056518, -91.263989281384 31.759763357043326, -91.28262128140135 31.74988735703413, -91.3399122814547 31.758542357042188, -91.37049928148319 31.753475357037473, -91.36507428147814 31.751741357035854, -91.38794828149945 31.716682357003204, -91.38918428150059 31.65460535694539, -91.40840328151849 31.62553035691831, -91.4573772815641 31.626966356919652, -91.49776928160172 31.650895356941938, -91.50780928161107 31.643870356935395, -91.50887728161207 31.621946356914975, -91.49715128160115 31.604358356898594, -91.415384281525 31.60259235689695, -91.40425228151463 31.586353356881826, -91.42357828153263 31.56274635685984, -91.46447328157072 31.542866356841326, -91.50295728160656 31.534880356833888, -91.50648228160983 31.525687356825326, -91.50790028161116 31.45308335675771, -91.47329228157892 31.420374356727244, -91.46592228157206 31.40406935671206, -91.48083828158596 31.377780356687577, -91.49470828159888 31.37524935668522, -91.52301428162524 31.392091356700906, -91.53416928163563 31.409238356716877, -91.53480228163622 31.43433535674025, -91.55247228165267 31.4330993567391, -91.56773128166688 31.421406356728205, -91.5593772816591 31.38823035669731, -91.534573281636 31.382750356692206, -91.54440728164516 31.368874356679285, -91.54279028164365 31.3469863566589, -91.50575628160917 31.323456356636985, -91.50247528160611 31.298858356614076, -91.5170782816197 31.28306935659937, -91.55691928165682 31.270469356587636, -91.6342142817288 31.277694356594367, -91.64368228173761 31.27111835658824, -91.6369982817314 31.24110435656029, -91.60096428169783 31.21392935653498, -91.59148828168901 31.178482356501966, -91.62011428171567 31.12769435645467, -91.56497528166432 31.082135356412238, -91.5520812816523 31.058159356389908, -91.5727872816716 31.03264835636615, -91.6277732817228 31.011960356346883, -91.632297281727 31.00136535633701, -91.17920728130504 31.00046135633617, -91.05701228119123 31.000418356336134, -90.82971428097954 31.001545356337182, -90.5602552807286 31.00170635633733, -90.5426532807122 31.002330356337914, -90.34366028052688 31.00539035634076, -90.25937728044838 31.007370356342605, -89.8335582800518 31.007184356342435, -89.7327172799579 31.00744535634268, -89.72362327994942 31.001524356337164, -89.72678127995236 30.984616356321414, -89.71982327994589 30.975493356312917, -89.73952227996423 30.96540035630352, -89.74854027997263 30.949848356289035, -89.74047527996511 30.926109356266927, -89.7580542799815 30.92104335626221, -89.74575527997003 30.910107356252023, -89.74680027997101 30.902794356245213, -89.76331127998638 30.90047135624305, -89.76585127998875 30.862084356207298, -89.78502428000661 30.86157935620683, -89.77480027999708 30.830532356177912, -89.79609428001692 30.829105356176584, -89.79656728001736 30.81265235616126, -89.81093328003074 30.811699356160375, -89.82468928004354 30.789724356139907, -89.81335128003299 30.748168356101203, -89.82556628004436 30.742648356096062, -89.82339928004234 30.73305435608713, -89.83561428005372 30.72936235608369, -89.84405228006158 30.712425356067918, -89.83072328004917 30.703781356059867, -89.84134328005905 30.70055035605686, -89.84178528005947 30.67951935603727, -89.83539228005351 30.675882356033885, -89.84544728006288 30.666252356024913, -89.82952428004805 30.67087435602922, -89.81935428003858 30.65124535601094, -89.8055362800257 30.649456356009274, -89.82030728003946 30.624270355985814, -89.79084828001203 30.553943355920318, -89.77279627999522 30.55124735591781, -89.75517827997881 30.51562235588463, -89.73231927995752 30.49783835586807, -89.71905927994517 30.49603735586639, -89.7131842799397 30.481416355852772, -89.69568127992339 30.47824635584982, -89.69459827992239 30.46818635584045, -89.68345027991201 30.46271835583536, -89.67546227990456 30.445352355819185, -89.67536927990449 30.40007435577702, -89.65467027988521 30.37906535575745, -89.64668927987778 30.35529035573531, -89.63345127986544 30.355307355735327, -89.6201982798531 30.34342935572426, -89.6185882798516 30.323760355705943, -89.63708227986882 30.311843355694847, -89.63917227987076 30.29582935567993, -89.62594227985845 30.290355355674834, -89.62166127985446 30.25696435564374, -89.60631027984016 30.247828355635228, -89.61000327984361 30.241419355629258, -89.57388427980996 30.19493535558597, -89.72856027995402 30.181013355573, -89.75921727998256 30.23109335561964, -89.94353628015423 30.26985335565574, -90.07556128027719 30.368978355748055, -90.2397512804301 30.38095135575921, -90.30902728049462 30.303846355687398, -90.4245302806022 30.18587735557753, -90.39556728057522 30.092080355490175, -90.27598028046384 30.06205335546221, -90.1115462803107 30.041610355443172, -89.99054828019801 30.053664355454398, -89.89122628010551 30.15609135554979, -89.79826528001894 30.105371355502555, -89.74008827996475 30.158928355552433, -89.72492827995063 30.1210953555172, -89.66920127989873 30.163382355556582, -89.64939427988028 30.12242635551844, -89.7168402799431 30.05522635545585, -89.84896328006616 30.01068535541437, -89.82084828003997 29.951290355359056, -89.71501627994141 29.969403355375924, -89.71220227993878 29.897527355308984, -89.62741427985982 29.87567935528864, -89.58586327982113 29.89815735530957, -89.57437827981043 30.008960355412764, -89.43585427968141 30.044405355445775, -89.45362327969796 29.985733355391133, -89.37779327962734 29.951286355359052, -89.43104827967694 29.940277355348798, -89.40220227965007 29.845945355260945, -89.42115527966773 29.82809835524432, -89.36403927961453 29.79677435521515, -89.41742527966426 29.782937355202264, -89.48223827972461 29.830948355246978, -89.54050027977887 29.754731355175995, -89.6505872798814 29.76690135518733, -89.59287727982765 29.710864355135143, -89.61183727984532 29.697747355122925, -89.51194327975227 29.66461435509207, -89.47918927972178 29.636171355065578, -89.59795127983237 29.665157355092575, -89.67670427990572 29.70296135512778, -89.69532827992307 29.69407935511951, -89.63526127986712 29.6265313550566, -89.7283192799538 29.646176355074896, -89.74854527997263 29.6373783550667, -89.72320827994903 29.606027355037504, -89.77177827999427 29.610246355041433, -89.54462927978273 29.47168535491239, -89.53707627977569 29.40145335484698, -89.38452227963361 29.397938354843706, -89.3370582795894 29.34089335479058, -89.26477527952208 29.35066335479968, -89.26255627952001 29.297809354750456, -89.19340027945562 29.349047354798174, -89.1299372793965 29.290887354744008, -89.12022527938747 29.21188435467043, -89.03326327930647 29.223413354681167, -89.09827527936702 29.163443354625315, -89.0218032792958 29.14711835461011, -89.05775327932928 29.085278354552518, -89.12654227939335 29.135309354599116, -89.11140527937924 29.083017354550414, -89.15402427941893 29.057217354526387, -89.14439527940998 29.01667835448863, -89.24116227950009 29.121169354585945, -89.25749627951531 29.059463354528475, -89.39489227964327 28.939655354416896, -89.2632882795207 29.148212354611132, -89.31909027957266 29.18018835464091, -89.3397342795919 29.104495354570417, -89.38866227963746 29.10037835456658, -89.39313427964163 29.14626535460932, -89.46707327971049 29.216321354674562, -89.45911727970308 29.255736354711267, -89.49319727973482 29.234995354691954, -89.61959227985254 29.279575354733474, -89.61071827984426 29.33175835478207, -89.79494428001584 29.322540354773487, -89.75370627997744 29.37428835482168, -89.8217462800408 29.420912354865102, -89.81752728003687 29.47762535491792, -89.96673828017583 29.472678354913313, -89.97192628018067 29.503541354942058, -90.00669528021305 29.493936354933112, -90.11308128031213 29.553848354988908, -90.13729028033468 29.533811354970247, -90.15179328034819 29.595307355027522, -90.20814628040067 29.544730354980416, -90.17413328036899 29.495941354934978, -90.03608428024042 29.447157354889544, -90.05532528025834 29.428283354871965, -90.0299422802347 29.374208354821604, -90.05594328025892 29.351431354800393, -90.03300128023756 29.30887235476076, -90.11163928031078 29.321725354772727, -90.07787828027935 29.214574354672934, -90.04311028024696 29.223676354681412, -90.07780228027927 29.176442354637423, -90.22776228041894 29.098674354564995, -90.26395728045264 29.184649354645067, -90.24291428043304 29.254741354710344, -90.2788192804665 29.275158354729356, -90.28409928047141 29.245534354701768, -90.34764628053058 29.312951354764557, -90.39643028057603 29.27234735472674, -90.40682928058571 29.3259913547767, -90.45051628062639 29.352442354801333, -90.47647228065057 29.303941354756162, -90.61109528077594 29.305036354757185, -90.5831332807499 29.260928354716107, -90.62126528078541 29.22296535468075, -90.65005128081222 29.254292354709925, -90.63812028080112 29.162571354624504, -90.68385828084371 29.18192035464252, -90.67679428083713 29.14027735460374, -90.78289828093595 29.126943354591322, -90.77268928092644 29.160625354622688, -90.83937928098855 29.182340354642914, -90.88263928102884 29.13741235460107, -90.92041328106401 29.181909354642514, -90.81429328096519 29.221006354678927, -90.81855028096915 29.256802354712264, -90.89734928104254 29.267664354722378, -90.93652728107902 29.343517354793022, -91.07838528121114 29.36001835480839, -91.1021902812333 29.314134354765656, -91.2137352813372 29.40592335485114, -91.26272528138283 29.48958735492906, -91.43302528154142 29.552582354987727, -91.54786528164838 29.53168635496827, -91.54849028164897 29.642129355071127, -91.64354728173748 29.643964355072836, -91.61576828171162 29.769138355189412, -91.86325628194211 29.725839355149088, -91.8811782819588 29.76595535518645, -91.84663128192662 29.808397355225978, -91.82393328190548 29.78689235520595, -91.82750328190882 29.839041355254516, -91.9670862820388 29.84188835525717, -91.97332728204462 29.806057355223796, -92.1371512821972 29.730741355153654, -92.13010128219062 29.7735263551935, -92.19969828225544 29.76312035518381, -92.05975728212512 29.607014355038423, -92.29737428234641 29.541571354977474, -92.60742528263518 29.588626355021297, -93.23365728321839 29.788993355207904, -93.72199128367319 29.758793355179776, -93.80182028374753 29.72586535514911, -93.89990228383888 29.80998135522745, -93.79145428373788 29.850520355265203, -93.76036728370893 30.006176355410172, -93.71264428366449 30.06073135546098, -93.71602328366764 30.095878355493713, -93.70854628366067 30.114950355511475, -93.69708728364999 30.118139355514444, -93.6988032836516 30.14143435553614, -93.68612328363979 30.141461355536165, -93.68330728363716 30.148440355542665, -93.69982628365256 30.151017355545065, -93.6963312836493 30.175884355568222, -93.70452528365692 30.181068355573053, -93.71500828366669 30.22051335560979, -93.70752428365972 30.239578355627543)), ((-92.0163672820847 29.59647835502861, -91.90254928197871 29.650931355079322, -91.76984728185512 29.578615355011976, -91.70161628179157 29.577266355010718, -91.76496428185057 29.53425335497066, -91.75811328184419 29.49451335493365, -91.84908928192891 29.487083354926728, -92.0163672820847 29.59647835502861)), ((-91.34131928145602 29.341911354791527, -91.300493281418 29.31645735476782, -91.22655328134913 29.381399354828304, -91.18927528131441 29.297611354750266, -91.1615642812886 29.323720354774586, -91.1712242812976 29.283676354737292, -91.18802428131325 29.2847583547383, -91.20046028132484 29.30798535475993, -91.1950592813198 29.273673354727975, -91.15259228128025 29.266533354721325, -91.16366328129057 29.245267354701518, -91.13469328126358 29.259925354715172, -91.12830728125763 29.22699935468451, -91.27616228139533 29.25402835470968, -91.34131928145602 29.341911354791527)), ((-90.9345742810772 29.2590943547144, -90.970846281111 29.242095354698566, -90.95362528109494 29.2730573547274, -90.9813822811208 29.276348354730466, -90.98038228111987 29.219952354677943, -90.9449812810869 29.22639235468394, -90.96202528110277 29.185799354646136, -91.00324028114116 29.184316354644757, -90.99456628113307 29.22480235468246, -91.04444828117954 29.211258354669845, -91.03310428116897 29.275629354729794, -91.06768928120118 29.253119354708833, -91.05555728118988 29.1909153546509, -91.12256128125229 29.227085354684586, -91.1275132812569 29.293514354746453, -91.007369281145 29.297544354750208, -90.99895328113716 29.32380035477466, -90.9345742810772 29.2590943547144))) +FL Florida MULTIPOLYGON (((-80.7856622716253 28.785194354273045, -80.76241527160364 28.736334354227537, -80.83210427166854 28.786186354273966, -80.85070527168587 28.785700354273516, -80.74719027158946 28.398992353913364, -80.49224427135204 27.87017835342087, -80.50935827136797 27.825708353379454, -80.48185327134235 27.84572135339809, -80.4013772712674 27.703585353265716, -80.35737827122642 27.55566235312795, -80.23963827111677 27.264647352856926, -80.19009127107063 27.185684352783383, -80.2239892711022 27.215066352810748, -80.28963527116333 27.241338352835214, -80.32679127119793 27.248262352841664, -80.29042027116407 27.212853352808686, -80.22127327109966 27.202842352799365, -80.14796727103139 27.10906935271203, -80.09036327097775 26.97404335258628, -80.11461027100033 26.973837352586088, -80.050911270941 26.797197352421577, -80.08469527097247 26.32637735198309, -80.1277812710126 25.97753635165821, -80.19309927107342 25.760032351455642, -80.30145627117435 25.613751351319408, -80.32999127120092 25.490015351204168, -80.30197527117483 25.401200351121453, -80.41681627128177 25.249902350980545, -80.4208072712855 25.192219350926823, -80.55187627140756 25.212318350945544, -80.69382527153977 25.152299350889646, -80.85680127169155 25.185631350920687, -80.97587727180245 25.130501350869345, -81.11901627193575 25.13418835087278, -81.14823027196296 25.164690350901186, -81.18378427199607 25.26887935099822, -81.14056927195583 25.320765351046543, -81.01156027183568 25.21442935094751, -80.95102727177931 25.202537350936435, -80.915274271746 25.246725350977588, -80.97428127180096 25.32246035104812, -81.1433232719584 25.39682735111738, -81.25837527206555 25.68110035138213, -81.19994727201113 25.710422351409438, -81.25620727206352 25.803102351495752, -81.5307422723192 25.91465835159965, -81.71829327249388 25.923581351607957, -81.70569527248215 26.00017235167929, -81.79471727256505 26.111162351782657, -81.81385827258288 26.28446735194406, -81.84935127261593 26.332197351988512, -81.86421227262977 26.439554352088496, -81.94201827270224 26.46756235211458, -81.96811927272654 26.51738235216098, -81.9287732726899 26.534980352177367, -81.88427627264846 26.642987352277956, -81.77391427254568 26.710265352340613, -81.8971022726604 26.66376735229731, -81.9444522727045 26.550719352192026, -82.02147327277623 26.524680352167778, -82.08366027283415 26.71579035234576, -82.06827127281981 26.766970352393425, -82.05176727280445 26.866709352486314, -82.09787227284738 26.921785352537608, -81.99144027274826 26.963056352576046, -81.97919427273686 27.031680352639956, -81.99285127274958 27.031676352639952, -82.01268827276805 26.97655035258861, -82.15321027289892 26.93706535255184, -82.25745927299602 27.00440935261456, -82.28217927301904 27.024557352633323, -82.25758227299613 26.9979073526085, -82.1764952729206 26.91369335253007, -82.1538282728995 26.790128352414992, -82.28984027302617 26.849886352470648, -82.35543127308726 26.948896352562855, -82.39817127312706 26.99851535260907, -82.36866827309959 26.947938352561966, -82.34362827307626 26.903632352520702, -82.38003627311018 26.947296352561366, -82.50693027322835 27.23699135283117, -82.53113127325089 27.260277352852853, -82.51448327323538 27.210453352806454, -82.56995727328705 27.274280352865894, -82.53274027325239 27.331802352919468, -82.56556227328295 27.386681352970577, -82.68592527339506 27.473844353051753, -82.63888927335125 27.503459353079336, -82.66582927337633 27.49358735307014, -82.68170627339113 27.524429353098867, -82.48826727321097 27.478067353055685, -82.51419927323512 27.51198935308728, -82.42717727315407 27.522859353097402, -82.57557127329228 27.512324353087592, -82.63876727335114 27.536638353110234, -82.56960527328673 27.552713353125206, -82.55426227327243 27.582239353152705, -82.62637627333959 27.55519435312752, -82.54004127325919 27.608106353176794, -82.5525002732708 27.64401435321024, -82.40437927313285 27.79162835334771, -82.39881727312766 27.906219353454432, -82.46099827318557 27.94015535348604, -82.48313127320618 27.82194735337595, -82.51059827323176 27.831232353384596, -82.53899527325821 27.935728353481917, -82.64556527335746 28.02884735356864, -82.65068427336223 28.007163353548446, -82.69833927340662 28.046169353584773, -82.67271927338275 28.010514353551564, -82.70066627340879 27.97535335351882, -82.6447412733567 27.966584353510655, -82.7254852734319 27.94056235348642, -82.56426427328175 27.87846235342858, -82.62365327333706 27.848527353400705, -82.64461927335658 27.715725353277023, -82.67832627338798 27.705587353267582, -82.79383827349555 27.829654353383127, -82.72816327343439 27.71777335327893, -82.74100327344635 27.685868353249216, -82.84428527354254 27.850641353402672, -82.77914427348188 28.17302735370292, -82.67347627338346 28.428510353940858, -82.63607527334862 28.692749354186947, -82.68138027339081 28.80838235429464, -82.63651927334904 28.81427835430013, -82.63661927334914 28.88470835436572, -82.75532227345968 29.00866035448116, -82.8021572735033 29.155132354617574, -83.03674727372179 29.179387354640163, -83.07392827375641 29.265652354720505, -83.14220627382 29.299651354752168, -83.10899527378906 29.32818235477874, -83.1746332738502 29.343679354793174, -83.23432827390579 29.43393735487723, -83.38003127404149 29.519874354957267, -83.40497427406471 29.669602355096714, -83.5504482742002 29.73732335515978, -83.65418227429682 29.910961355321497, -83.97173827459255 30.07748335547658, -84.07462527468839 30.099948355497503, -84.14785527475658 30.081725355480533, -84.23307127483595 30.108111355505105, -84.3539252749485 30.069624355469262, -84.36041627495455 29.977390355383363, -84.43769027502651 29.991791355396774, -84.43310427502225 29.959545355366743, -84.33893827493455 29.947141355355193, -84.34691127494197 29.910168355320756, -84.46453827505151 29.92962735533888, -84.85803027541799 29.746860355168664, -84.92851327548362 29.77797235519764, -84.98828327553929 29.719921355143576, -85.21476027575021 29.701557355126475, -85.36487927589002 29.68301935510921, -85.40960427593167 29.776766355196514, -85.41405227593582 29.86306735527689, -85.39299427591621 29.875413355288387, -85.4025462759251 29.794365355212907, -85.35804327588366 29.691254355116875, -85.30658927583573 29.701710355126615, -85.30052427583009 29.809796355227277, -85.38479227590857 29.923801355333453, -85.62849727613553 30.092591355490654, -85.56852827607969 30.09829335549596, -85.47135827598919 30.02186335542478, -85.41501327593672 30.031552355433803, -85.4323862759529 30.04575435544703, -85.38269427590662 30.02427035542702, -85.38265627590658 30.036286355438214, -85.3956722759187 30.058567355458962, -85.46431627598263 30.05116335545207, -85.52971627604354 30.131686355527062, -85.70982927621128 30.178773355570915, -85.66605827617052 30.251689355638824, -85.60017627610917 30.25115135563832, -85.56947527608057 30.311004355694067, -85.71713127621808 30.265062355651278, -85.75270827625121 30.29692935568096, -85.85042027634222 30.280359355665524, -85.82994227632315 30.232814355621244, -85.75791927625608 30.22894535561764, -85.72639327622672 30.128842355524412, -85.98701327646943 30.27443035566, -86.38745927684238 30.387659355765457, -86.50531427695213 30.409973355786235, -86.38810827684298 30.406012355782547, -86.24003327670508 30.399887355776844, -86.24156627670651 30.428527355803517, -86.11464027658829 30.385802355763726, -86.12293427659601 30.426461355801592, -86.21960827668605 30.48785435585877, -86.38787927684277 30.462167355834847, -86.45263927690308 30.501237355871233, -86.61023627704985 30.423651355798974, -86.79034727721759 30.417963355793677, -87.19338227759295 30.355221355735246, -86.93251127734999 30.46356535583615, -87.01440027742626 30.514434355883523, -86.98619327739999 30.5904303559543, -87.01958027743109 30.58746635595154, -87.06927227747737 30.450564355824042, -87.12453327752883 30.564666355930306, -87.17155527757262 30.557735355923853, -87.16010227756196 30.465033355837516, -87.27389727766794 30.35738435573726, -87.4240802778078 30.323671355705862, -87.409256277794 30.402239355779034, -87.34680727773583 30.431498355806283, -87.34739527773638 30.457169355830192, -87.4188162778029 30.481700355853036, -87.44535327782762 30.531389355899314, -87.42206727780592 30.556493355922694, -87.39328127777912 30.62009835598193, -87.39864527778411 30.668015356026558, -87.41889427780298 30.692810356049648, -87.46014027784139 30.70580235606175, -87.52660327790329 30.748491356101507, -87.54190027791753 30.785695356136156, -87.61591527798646 30.848296356194457, -87.62571127799559 30.8769023562211, -87.5898672779622 30.954361356293237, -87.59858027797031 31.00263035633819, -87.16311727756477 31.003157356338683, -86.77936127720736 30.998191356334058, -86.70185227713517 30.998092356333963, -86.38391927683908 30.99153835632786, -86.18147627665054 30.995225356331296, -86.03182227651116 30.99332735632953, -85.48659727600338 31.000998356336673, -85.4850102760019 31.001001356336673, -85.0016072755517 31.00125335633691, -85.00014227555033 30.97931935631648, -84.97356727552558 30.9636643563019, -84.96901227552135 30.927093356267843, -84.93777627549225 30.894957356237914, -84.92692627548215 30.846922356193176, -84.9325642754874 30.80262535615192, -84.92689527548212 30.776088356127207, -84.91534327547136 30.754089356106718, -84.88828927544617 30.74388935609722, -84.86458327542408 30.714503356069855, -84.86300327542261 30.71266435606814, -84.37444827496762 30.694092356050845, -84.2816632748812 30.69041935604742, -84.07556227468925 30.678577356036392, -84.00073027461956 30.675537356033562, -83.73784427437472 30.66049135601955, -83.60905627425478 30.65078435601051, -83.31060027397683 30.634303355995158, -83.30131527396819 30.63328535599421, -83.1324402738109 30.62134135598309, -82.69635627340477 30.595720355959227, -82.58295727329916 30.58905335595302, -82.46313527318756 30.58268935594709, -82.41209227314003 30.57730735594208, -82.22103927296209 30.56707635593255, -82.23839627297826 30.531444355899367, -82.21936727296054 30.502970355872847, -82.19918727294174 30.49001435586078, -82.20556527294768 30.423853355799164, -82.1802342729241 30.368631355747734, -82.16463927290957 30.361291355740896, -82.05276727280538 30.36379435574323, -82.03835427279195 30.3789043557573, -82.04609927279917 30.434068355808677, -82.03512027278894 30.44287835581688, -82.0225092727772 30.47771735584933, -82.00580127276164 30.570990355936196, -82.01365227276895 30.598690355961992, -82.04491127279806 30.650910356010627, -82.03188127278592 30.757532356109927, -82.01296727276831 30.76425635611619, -82.01553827277071 30.791319356141393, -81.98148027273899 30.778351356129313, -81.96155127272043 30.796007356145758, -81.95302927271248 30.820431356168505, -81.9438052727039 30.82424935617206, -81.9075182726701 30.81347535616203, -81.8991412726623 30.828308356175842, -81.87300227263796 30.799084356148626, -81.80319827257296 30.78808535613838, -81.77670827254828 30.7615843561137, -81.75771027253059 30.769631356121195, -81.736675272511 30.763888356115846, -81.71676927249246 30.7453693560986, -81.64247727242326 30.72908135608343, -81.62798127240977 30.731774356085936, -81.60477127238815 30.716321356071546, -81.60117027238479 30.724887356079524, -81.53659127232466 30.70657735606247, -81.5285952723172 30.721452356076327, -81.49878427228944 30.598605355961915, -81.51811727230745 30.556212355922433, -81.45752827225103 30.45476435582795, -81.4807982722727 30.380540355758825, -81.44326027223774 30.357187355737075, -81.43276727222796 30.246781355634255, -81.30275827210689 29.913052355323444, -81.31649027211967 29.82924035524539, -81.24378427205195 29.73794335516036, -81.23376627204263 29.669024355096177, -81.10988027192725 29.43023935487379, -81.0970542719153 29.351799354800736, -80.7856622716253 28.785194354273045)), ((-86.83388227725814 30.399735355776702, -86.79155327721871 30.403969355780646, -86.62082527705971 30.4145513557905, -86.53475627697955 30.406791355783273, -86.52277027696839 30.401147355778015, -86.5326432769776 30.39338835577079, -86.73864127716944 30.40255835577933, -86.79296427722004 30.39056535576816, -86.8345842772588 30.38703835576488, -87.24234827763856 30.321431355703776, -87.26704627766155 30.321432355703777, -87.29032427768324 30.33271935571429, -87.2860892776793 30.339772355720857, -87.2021402776011 30.33483435571626, -87.13934927754262 30.351766355732025, -87.04764127745722 30.36940135574845, -86.92912327734685 30.38139435575962, -86.83388227725814 30.399735355776702)), ((-80.73583327157888 28.788844354276442, -80.7633302716045 28.822067354307386, -80.81718027165465 28.89539035437567, -80.89107927172347 29.013393354485572, -80.91628727174695 29.071822354539986, -80.89909827173094 29.06151135453038, -80.8624382716968 28.9916253544653, -80.73583327157888 28.788844354276442)), ((-80.72589927156963 28.784366354272272, -80.57968927143347 28.590154354091396, -80.52594827138341 28.463462353973405, -80.58765627144089 28.409260353922928, -80.62163027147253 28.412659353926095, -80.57744627143138 28.548653354052746, -80.59912927145157 28.60392235410422, -80.6600432715083 28.618651354117937, -80.69188127153795 28.58835035408972, -80.78044527162044 28.618960354118226, -80.78593027162555 28.68771635418226, -80.73499527157811 28.706617354199864, -80.75406827159587 28.736884354228053, -80.64119727149075 28.657346354153976, -80.72589927156963 28.784366354272272)), ((-80.68862427153492 28.581764354083585, -80.65379427150248 28.600890354101395, -80.60919327146095 28.57356635407595, -80.66273027151081 28.42741035393983, -80.66711027151489 28.301841353822887, -80.60557127145758 28.144944353676763, -80.72104327156511 28.385401353900708, -80.68862427153492 28.581764354083585)), ((-82.10194127285118 26.586077352224954, -82.0669532728186 26.497564352142522, -82.097456272847 26.49394235213915, -82.13570927288262 26.642630352277624, -82.18331027292696 26.683432352315624, -82.12865227287605 26.693691352325178, -82.10194127285118 26.586077352224954)), ((-80.24945327112592 25.35493735107837, -80.35566527122482 25.158233350895173, -80.58781927144103 24.956376350707178, -80.35306327122241 25.21153235094481, -80.3302972712012 25.26798135099738, -80.36160127123036 25.296499351023943, -80.24945327112592 25.35493735107837))) +MI Michigan MULTIPOLYGON (((-88.49752727880752 48.17379537233009, -88.62532727892655 48.03316737219912, -88.9015472791838 47.960248372131204, -89.02862227930216 47.85065537202914, -89.13988527940577 47.824076372004384, -89.19291627945516 47.84461337202352, -89.20178727946342 47.88385737206006, -89.15609927942087 47.93922837211163, -88.49752727880752 48.17379537233009)), ((-88.50068127881046 47.290180371507155, -88.437901278752 47.35589637156836, -88.21139227854104 47.44783537165398, -87.78812027814685 47.47079337167536, -87.70438327806886 47.41595037162429, -87.7375102780997 47.393024371602934, -87.9170422782669 47.358007371570324, -88.22227927855118 47.200752371423874, -88.41284327872866 46.98809437122581, -88.47066427878251 47.111472371340724, -88.59426227889762 47.13476537136241, -88.5956322788989 47.24359337146377, -88.50068127881046 47.290180371507155)), ((-85.859844276351 45.969469370277146, -85.91495527640232 45.957978370266446, -85.91710427640432 45.91819237022939, -86.06789127654476 45.964210370272255, -86.25931927672303 45.94692937025616, -86.31563827677549 45.90568237021774, -86.34379527680171 45.83439637015135, -86.45827527690832 45.762747370084625, -86.52939027697455 45.74896137007178, -86.52201027696769 45.724094370048626, -86.57612427701808 45.71017437003566, -86.62978427706805 45.621233369952826, -86.68505327711954 45.650048369979665, -86.69691927713058 45.69251137001921, -86.5847352770261 45.81387937013224, -86.7614692771907 45.82606737014359, -86.90162427732123 45.71477837003995, -87.12375927752811 45.69624637002269, -87.26070727765565 45.55480236989096, -87.33222727772225 45.42394236976909, -87.58386427795662 45.16273336952582, -87.59251427796467 45.108501369475306, -87.67281427803945 45.14067236950527, -87.7296692780924 45.17660436953874, -87.7362002780985 45.19907236955966, -87.72162827808492 45.211672369571396, -87.71966827808309 45.23677136959477, -87.70514227806956 45.247086369604375, -87.70447127806894 45.27220536962777, -87.64536227801389 45.34816936969852, -87.64368427801233 45.36185636971126, -87.68959827805509 45.39126936973865, -87.76003827812069 45.352897369702916, -87.82800827818399 45.35832136970797, -87.84128227819636 45.34614936969663, -87.86209627821574 45.370165369719004, -87.86853527822174 45.37207236972078, -87.8739742782268 45.36208536971148, -87.88361027823578 45.36585436971499, -87.84953127820404 45.40611736975249, -87.86026727821404 45.44509836978879, -87.81361427817059 45.466460369808686, -87.78938527814802 45.499067369839054, -87.8051412781627 45.544525369881384, -87.82860227818455 45.5685913699038, -87.78631227814516 45.56851936990373, -87.7750752781347 45.600387369933415, -87.7760452781356 45.613200369945346, -87.81993827817648 45.65445036998376, -87.81705427817379 45.66539036999395, -87.78094527814017 45.67591537000375, -87.77747327813692 45.684101370011376, -87.80115627815898 45.70132437002742, -87.80155327815935 45.71139137003679, -87.84236227819736 45.722418370047066, -87.87362927822647 45.750699370073406, -87.96917927831547 45.76644837008807, -87.99007027833493 45.795046370114704, -88.05163927839226 45.78611237010638, -88.08873427842681 45.791532370111426, -88.12994927846519 45.81940237013738, -88.12178627845759 45.8348783701518, -88.0654212784051 45.8736423701879, -88.09576427843336 45.89180337020481, -88.09385027843157 45.920615370231644, -88.11139027844791 45.926287370236935, -88.15043827848427 45.93629337024625, -88.18019427851199 45.95351637026229, -88.2149922785444 45.94790137025706, -88.25716827858368 45.9670553702749, -88.29915227862278 45.96194437027014, -88.32132327864343 45.96671237027458, -88.3699382786887 45.994587370300536, -88.40352227871998 45.98342237029014, -88.45431927876729 46.00076037030629, -88.48381427879475 45.99915137030479, -88.49408327880433 46.01296037031766, -88.51561327882438 46.01860937032291, -88.54835827885486 46.019300370323556, -88.57535727888002 46.008959370313924, -88.59753627890068 46.01551637032003, -88.6155022789174 45.99412037030011, -88.64366927894363 45.99338837029943, -88.67738427897504 46.020144370324346, -88.70360527899946 46.01892337032321, -88.72640927902069 46.02958137033313, -88.7730172790641 46.02114737032528, -88.77748027906826 46.032614370335956, -88.79381527908347 46.036360370339445, -88.80439727909332 46.026804370330545, -88.92519527920582 46.07360137037413, -88.9853012792618 46.10039137039908, -89.09980627936845 46.14564237044122, -89.9251362801371 46.30402537058873, -90.1116592803108 46.34042937062263, -90.11517728031409 46.36515537064566, -90.14179728033888 46.39389937067243, -90.16139128035712 46.44238037071758, -90.21152628040382 46.50629537077711, -90.25840128044747 46.508789370779425, -90.26978528045808 46.52248037079218, -90.30018128048638 46.52505137079457, -90.30239328048845 46.544296370812496, -90.31370828049899 46.55156337081927, -90.38552528056586 46.53965737080817, -90.40820028058698 46.568610370835145, -90.01886428022439 46.678633370937604, -89.88625228010088 46.76893537102171, -89.79124428001239 46.824713371073656, -89.38671827963566 46.850208371097395, -89.21459227947535 46.92337837116554, -89.12518727939208 46.99660637123374, -88.99487527927072 46.9971033712342, -88.92968827921001 47.03092637126571, -88.88483227916824 47.104554371334274, -88.62950027893044 47.225812371447205, -88.61810427891983 47.13111437135902, -88.51121527882027 47.106506371336096, -88.51299527882193 47.03258937126726, -88.44116427875504 46.99073437122827, -88.4459642787595 46.92830437117013, -88.47652327878797 46.855151371102004, -88.44661727876012 46.79939637105008, -88.17782727850978 46.94589037118651, -88.18918827852036 46.90095837114467, -88.03668527837834 46.91186537115482, -87.90065427825165 46.90976137115287, -87.66376627803103 46.83685137108496, -87.37153927775887 46.50799137077868, -87.11067927751593 46.501473370772615, -87.00640227741881 46.53629337080504, -86.87138227729307 46.444359370719425, -86.75949527718886 46.48663137075879, -86.63822027707592 46.42226337069884, -86.46239227691217 46.56108537082814, -86.14810927661946 46.67305337093241, -86.09673927657163 46.65526837091585, -85.85753627634885 46.69481537095268, -85.50385027601945 46.67417437093346, -85.2300942757645 46.756785371010395, -84.95475927550807 46.770951371023585, -85.02697127557532 46.694339370952235, -85.01897527556788 46.5490243708169, -85.0516552755983 46.50557637077644, -85.0166392755657 46.476444370749306, -84.93132027548624 46.48784337075992, -84.80365327536734 46.444054370719144, -84.62981527520544 46.48294337075536, -84.57266727515221 46.40792637068549, -84.41596727500628 46.48065837075323, -84.31161427490909 46.48866937076069, -84.18164627478805 46.24872037053722, -84.27313427487326 46.20730937049865, -84.24703127484895 46.17144737046526, -84.11973527473039 46.17610837046959, -84.02957827464643 46.128943370425674, -84.06198127467661 46.094470370393566, -83.9895012746091 46.02598537032978, -83.90195227452757 46.00590237031108, -83.90646027453177 45.96023937026855, -84.11327227472438 45.97853837028559, -84.35448527494903 45.99919037030483, -84.50163527508606 45.97834237028541, -84.61684527519336 46.03823037034118, -84.68902227526058 46.03591837033903, -84.73173227530036 45.855679370171174, -84.85110027541153 45.89063637020373, -85.0616292756076 46.02475137032863, -85.37824327590246 46.100047370398755, -85.50954627602475 46.101911370400494, -85.65538127616057 45.97287037028032, -85.859844276351 45.969469370277146)), ((-83.85468027448354 46.01403137031865, -83.80110527443365 45.98841237029479, -83.75642027439203 46.02733837033104, -83.67359227431488 46.03619237033929, -83.68031427432115 46.071794370372444, -83.7324482743697 46.084108370383916, -83.64988727429281 46.10397137040241, -83.58949827423658 46.088518370388016, -83.53399127418487 46.01179037031656, -83.47318927412825 45.98754737029398, -83.51615927416827 45.9257143702364, -83.57981327422755 45.91750137022875, -83.62970527427402 45.95359637026236, -83.80488127443716 45.93676437024669, -83.8528102744818 45.9974493703032, -83.8858912745126 45.970852370278436, -83.85468027448354 46.01403137031865)), ((-86.83482927725902 41.765504366361895, -86.6175922770567 41.907448366494094, -86.4988332769461 42.126446366698055, -86.3742782768301 42.249421366812584, -86.28498027674694 42.42232436697361, -86.21785427668442 42.7748253673019, -86.27383727673656 43.12104536762435, -86.46320127691291 43.475166367954145, -86.54130127698565 43.66318736812926, -86.44781127689858 43.772665368231216, -86.4043452768581 43.766642368225604, -86.43410127688581 43.7814583682394, -86.42881427688089 43.82012336827542, -86.45954827690952 43.95018436839654, -86.43814727688958 43.94559236839227, -86.51860227696451 44.053619368492875, -86.38642327684141 44.18320436861356, -86.2719542767348 44.351228368770045, -86.23803827670322 44.52227336892934, -86.2586272767224 44.70073136909554, -86.10848427658256 44.73444236912694, -86.08291827655874 44.77792936916744, -86.09796427657277 44.85061236923513, -86.06745427654435 44.898257369279506, -85.79575627629131 44.9859743693612, -85.61021527611851 45.19652736955729, -85.56551427607688 45.18056036954242, -85.65300627615837 44.95836236933548, -85.63803927614443 44.77843536916791, -85.52608127604016 44.76316236915369, -85.45135127597055 44.860540369244376, -85.38486927590864 45.010603369384135, -85.39024427591364 45.21159336957132, -85.37325327589782 45.273541369629015, -85.3054752758347 45.32038336967264, -85.09286227563669 45.37022536971906, -84.98589327553707 45.37317836972181, -84.92167427547726 45.409899369756005, -85.0818152756264 45.464650369807, -85.12044727566237 45.56977936990491, -85.07801927562286 45.63018536996117, -84.98341227553476 45.68371337001102, -84.97203827552416 45.73774537006133, -84.72418627529333 45.78030437010098, -84.4652752750522 45.653637369983, -84.32145827491826 45.665607369994156, -84.20556027481032 45.63090536996184, -84.13522927474482 45.57134336990636, -84.10590727471751 45.498749369838755, -83.92289227454707 45.49177336983226, -83.7828092744166 45.40944936975559, -83.71231827435096 45.41239436975833, -83.59236327423923 45.34950236969976, -83.49583227414934 45.360802369710285, -83.48959827414353 45.3289373696806, -83.39401927405451 45.27290736962843, -83.42076127407942 45.25718236961378, -83.39869527405887 45.213641369573224, -83.31270727397879 45.098620369466104, -83.44444127410148 45.052773369423406, -83.43397227409173 45.01112836938462, -83.46490327412053 44.99788336937229, -83.42935527408743 44.926297369305615, -83.31972427398533 44.86064636924448, -83.28081227394908 44.70318336909783, -83.32003627398562 44.515460368922994, -83.35696327402 44.33513336875505, -83.52915027418037 44.261274368686266, -83.56823727421677 44.17011836860137, -83.59840427424487 44.07049336850859, -83.70480227434396 43.99716536844029, -83.87361527450118 43.96284236840833, -83.91837627454287 43.916997368365635, -83.93812127456125 43.69828336816194, -83.6991642743387 43.59964236807008, -83.65461527429721 43.607420368077314, -83.53090927418201 43.7259433681877, -83.49424827414786 43.70284136816619, -83.46640827412193 43.74574036820614, -83.36716327402951 43.84445236829807, -83.32602627399119 43.94045936838749, -82.94015427363182 44.069959368508094, -82.80597827350687 44.033564368474195, -82.72790227343415 43.97250636841733, -82.61848727333225 43.787866368245375, -82.60573827332037 43.694568368158485, -82.50382027322546 43.17225336767204, -82.41983627314724 42.97246536748597, -82.47195227319578 42.89868236741725, -82.47323827319697 42.76289636729079, -82.51817927323883 42.634052367170796, -82.64587727335775 42.631728367168634, -82.6340152733467 42.6693823672037, -82.72980627343593 42.681226367214734, -82.8204072735203 42.63579436717242, -82.8023612735035 42.61292636715112, -82.88813827358338 42.495756367042, -82.87490727357105 42.458067367006905, -82.9293892736218 42.3630403669184, -83.10758827378775 42.29270536685289, -83.19387327386812 42.11574936668809, -83.19006627386457 42.03397936661194, -83.4826912741371 41.725130366324294, -83.76395427439904 41.71704236631676, -83.86863927449654 41.715993366315786, -84.35920827495342 41.708039366308384, -84.38439327497687 41.70715036630755, -84.79037727535497 41.69749436629856, -84.78847827535321 41.76095936635767, -84.82600827538816 41.761875366358524, -85.19314027573007 41.762867366359444, -85.297209275827 41.763581366360114, -85.65945927616437 41.76262736635922, -85.79922727629454 41.76353536636007, -86.06830227654514 41.76462836636108, -86.23456527669998 41.76486436636131, -86.52518127697064 41.76554036636193, -86.83482927725902 41.765504366361895))) +AK Alaska MULTIPOLYGON (((-161.33378534664158 58.73324838216434, -161.76527234704344 58.55169938199526, -162.17360934742374 58.64892438208581, -161.65779534694335 58.799759382226284, -161.8572453471291 59.02809738243894, -161.56805534685975 59.10282738250854, -161.9944623472569 59.143374382546305, -161.70750634698965 59.495885382874604, -162.15367734740516 60.24478138357207, -162.47451334770398 60.29701038362071, -161.8817183471519 60.70146238399739, -162.7022673479161 60.26034138358656, -162.5114613477384 59.99950538334364, -164.11031834922744 59.834771383190215, -165.1464573501924 60.44475138375831, -164.9859133500429 60.54336938385015, -165.42758335045423 60.554474383860494, -164.93927234999944 60.92669738420715, -164.27179934937783 60.78309938407342, -164.43148634952655 60.5525433838587, -163.45369734861592 60.67783938397539, -163.93122134906065 60.851445384137065, -163.67954334882626 60.9911683842672, -163.96009134908752 60.854778384140175, -164.9383433499986 60.95243938423113, -165.07424835012517 60.90614238418801, -164.76789734983984 61.11031538437816, -165.37232535040278 61.20002838446171, -165.2100973502517 61.262811384520184, -165.1529063501984 61.41613638466298, -164.7184433497938 61.62475738485727, -165.16290135020773 61.431098384676915, -165.28984035032596 61.333076384585624, -165.22425735026488 61.27391138453052, -165.4098303504377 61.2075273844687, -165.3753693504056 61.06947638434013, -166.2001263511737 61.588065384823096, -165.76486335076834 61.68778738491597, -166.10096335108136 61.815287385034715, -165.59180735060718 61.85029938506732, -165.70571635071326 62.112804385311804, -165.08324935013354 62.52892138569934, -164.57601534966113 62.424482385602076, -164.8573943499232 62.56447738573245, -164.4815883495732 62.745040385900616, -164.79492934986501 62.610872385775664, -164.88021334994446 62.83475738598417, -164.31663134941957 63.01060338614794, -164.59023234967438 63.13282438626177, -164.3830223494814 63.21976738634274, -163.06384434825281 63.059226386193224, -162.31440434755487 63.54036338664132, -161.15412434647425 63.511764386614686, -160.7888703461341 63.74011038682735, -160.9639083462971 64.23705738729016, -161.54088434683445 64.38567538742858, -160.82005334616315 64.61485338764201, -160.99285134632407 64.93790438794288, -162.7806473479891 64.3361933873825, -163.15702734833962 64.65591438768026, -163.39064234855718 64.59231338762103, -163.03981334823044 64.51536638754936, -163.17840934835954 64.4067533874482, -165.0312303500851 64.44310438748207, -166.23955635121044 64.59532038762381, -166.38987935135043 64.89059638789882, -166.70044235163968 64.9922583879935, -166.92183135184587 65.13084438812257, -166.96129935188262 65.20975638819607, -166.05406435103768 65.25117438823463, -167.459919352347 65.41807838839009, -168.06750435291286 65.57949338854041, -168.12443235296587 65.6736433886281, -164.35638534945662 66.59402638948526, -163.93662134906566 66.60772638949803, -163.62776034877803 66.56653638945966, -163.94081534906957 66.58014538947234, -163.85717434899166 66.2762403891893, -164.19024634930187 66.19038738910935, -163.65912534880724 66.06984438899708, -161.06716934639329 66.13209538905505, -161.12938534645122 66.3390543892478, -161.91273334718076 66.273762389187, -161.9088893471772 66.53460438942992, -162.63417534785268 66.86209538973492, -162.48336834771223 66.95543838982186, -161.57524834686646 66.44654938934792, -160.23329234561666 66.39908338930371, -160.24302134562572 66.64352138953136, -161.50942334680516 66.53322438942864, -161.90058834716945 66.72766538960973, -161.5197793468148 66.98655238985083, -163.72474434886834 67.11012638996593, -164.02290334914602 67.54625139037209, -164.70986534978582 67.82763039063414, -166.83079535176108 68.35008839112072, -166.31495935128066 68.39871339116601, -166.2350103512062 68.87428139160892, -164.32779134942996 68.92987639166068, -163.27371134844827 69.2932343919991, -162.9659963481617 69.77771739245031, -161.9558193472209 70.30302239293954, -161.7130533469948 70.27026539290904, -162.12412534737766 70.15497839280167, -160.15371534554257 70.60418139322002, -159.9231243453278 70.53807439315844, -160.13221634552252 70.3178003929533, -159.77306734518805 70.19167439283584, -159.81755234522947 70.49501539311834, -159.67747434509903 70.46633839309163, -159.28894834473718 70.53004839315096, -160.12117634551225 70.60445939322028, -157.88388634342863 70.85589639345444, -156.48569434212644 71.40623539396698, -155.5504033412554 71.11735039369793, -156.18590534184725 70.91790139351218, -155.97698334165267 70.75540839336085, -155.1048073408404 71.14848939372695, -154.19778533999568 70.77599339338002, -152.43856633835728 70.86962939346722, -152.21882033815263 70.81074739341238, -152.4971163384118 70.64351439325665, -152.07573433801934 70.58019839319768, -152.62600733853185 70.55239839317179, -151.2234343372256 70.37075939300263, -149.49786033561853 70.52248639314394, -144.97058533140216 69.96867139262815, -143.2833493298308 70.11815339276737, -141.00566032770953 69.64219439232409, -140.99738532770183 60.306829383629854, -139.06978632590662 60.35191038367184, -139.19060332601913 60.08857738342659, -137.59264832453093 59.23825338263467, -137.46743232441432 58.905722382324974, -136.81078632380274 59.16487838256633, -136.5857753235932 59.16294438256453, -136.34572732336966 59.60245738297386, -135.4754413225591 59.801613383159335, -133.43172632065577 58.458846381908785, -131.82583931916017 56.59661038017445, -130.0902983175438 56.11775237972847, -129.9922353174525 55.281382378949544, -130.92776931832378 54.80909937850969, -131.01030931840063 55.00383437869105, -130.72028031813053 55.07660537875883, -130.46336231789127 55.32744937899245, -131.05780631844488 55.12243237880151, -130.61558531803303 55.29577337896295, -130.86585931826613 55.30826637897458, -130.9178133183145 55.81131037944308, -131.20281231857993 55.973511379594136, -131.0119923184022 56.10602437971755, -131.9172463192453 55.85796737948653, -131.964175319289 55.498242379151506, -132.1775253194877 55.58990837923688, -131.96195631928694 56.165192379772655, -131.49196131884923 56.220467379824136, -132.54948831983413 56.62743038020315, -132.36390931966127 56.819939380382436, -132.77060132004004 56.84354038040441, -132.793097320061 57.087706380631815, -133.55479632077038 57.17881938071667, -133.0453133202959 57.366872380891806, -133.43394532065784 57.346591380872916, -133.31283332054505 57.58937338109903, -133.6434183208529 57.704657381206395, -133.00477432025815 57.50938438102453, -133.54701532076314 57.91048838139809, -133.12308032036833 57.85716838134843, -133.56895832078357 57.922435381409215, -133.69310532089918 57.78716238128323, -133.85757532105237 57.953544381438185, -133.67257132088008 58.14716638161851, -134.06620132124667 58.085492381561075, -133.77091032097167 58.51801138196389, -134.17646932134937 58.1963263816643, -134.51178632166165 58.353556381810726, -134.7632033218958 58.38187938183711, -135.34655732243908 59.46855338284915, -135.5546253226329 59.318001382708935, -135.3570823224489 59.204943382603645, -135.30654632240183 59.08327638249033, -135.5523993226308 59.22854638262562, -135.08734432219768 58.23271038169818, -135.48292232256608 58.47632138192506, -135.91738332297072 58.382704381837875, -136.07019832311303 58.81738938224271, -135.7713403228347 58.89989838231955, -136.1641183232005 59.033207382443706, -136.22377432325607 58.749055382179066, -137.05601132403115 59.06394238247233, -136.90577832389124 58.926812382344615, -137.03187932400868 58.91263938233141, -137.12743032409765 58.821532382246566, -136.57546432358362 58.838208382262096, -136.03100432307653 58.38298338183814, -136.50711932351996 58.44129138189244, -136.36378032338646 58.29824438175921, -136.65604332365865 58.214897381681595, -138.60507032547383 59.11692138252167, -138.44533832532505 59.191365382591, -139.8374833266216 59.5330343829092, -139.47141832628068 59.70746738307166, -139.48781532629593 59.98469138332984, -139.28724432610915 59.571081382944634, -139.28031332610269 59.82996638318574, -138.89449632574338 59.806340383163736, -139.5153493263216 60.050525383391154, -140.4050563271502 59.69771138306257, -141.45032932812367 59.88096938323324, -141.2609513279473 59.976542383322254, -141.39265632806996 60.13820038347281, -143.8889313303948 59.99001238333479, -144.93837833137218 60.30111938362454, -144.6133863310695 60.71502738401002, -145.35140033175682 60.351658383671605, -145.94228133230712 60.46749838377949, -145.62777133201422 60.671387383969375, -146.25562433259896 60.63777538393807, -146.0428333324008 60.79808638408738, -146.65537533297126 60.69917038399525, -146.09185733244644 60.83369338412054, -146.75621733306517 60.9491843842281, -146.30287033264295 61.130300384396776, -147.36482633363198 60.8839103841673, -147.54872133380326 61.15390438441876, -147.86733733409997 60.83196638411893, -148.05427033427407 60.94913538422805, -147.72758933396983 61.27695038453335, -148.7018683348772 60.78914738407905, -148.1995623344094 60.625481383926626, -148.48983933467974 60.57575938388032, -148.68625233486264 60.44770038376105, -147.93903833416675 60.46168038377407, -148.3912333345879 60.28349738360813, -148.11231133432813 60.22742638355591, -148.43206933462594 59.95216538329955, -149.27742533541323 59.866935383220174, -149.41910633554517 60.11776238345377, -149.52797933564656 59.716106383079705, -149.72573433583074 59.962480383309156, -149.74572533584936 59.658044383025626, -150.03631233612 59.795815383153936, -150.95946833697974 59.201780382600695, -151.97403533792465 59.27043638266464, -150.99489133701275 59.77661638313606, -151.87130133782895 59.743269383105, -151.3061083373026 60.38496838370263, -151.4111453374004 60.7269253840211, -150.441125336497 61.02971638430309, -149.03023433518302 60.84719438413311, -150.066392336148 61.153882384418736, -149.2444313353825 61.49222938473385, -149.99804433608435 61.23972438449868, -150.57278533661963 61.36445038461484, -151.7452833377116 60.915826384197025, -152.42448533834414 60.291348383615436, -153.10531833897824 60.28882138361308, -152.58212733849098 60.081056383419586, -153.27412533913545 59.83324138318879, -153.0102733388897 59.8293813831852, -153.22826133909274 59.64324938301185, -153.4510343393002 59.78851438314714, -154.26294834005637 59.14153338254459, -153.26153433912373 58.8571103822797, -154.1053873399096 58.48125538192966, -154.33554434012396 58.076521381552716, -155.03626334077657 58.01901638149916, -156.5479083421844 57.31510138084359, -156.337058341988 57.283717380814366, -156.55066234218697 56.97675738052848, -158.42510934393266 56.443100380031474, -158.652025344144 56.26365837986436, -158.1225753436509 56.23283237983565, -158.44203334394842 55.992826379612126, -158.47591034398 56.183935379790114, -158.63062834412406 56.19921337980434, -158.67202634416262 55.95420937957616, -159.54562934497625 55.88030237950733, -159.6257023450508 55.57251337922068, -159.84316034525332 55.85029837947939, -161.24560634655947 55.34803637901162, -161.4875503467848 55.480259379134765, -161.14061934646168 55.532219379183154, -161.56452434685647 55.62192237926669, -161.9697783472339 55.101073378781614, -162.43792234766988 55.03365237871883, -162.64813534786566 55.29440337896167, -162.56449734778778 54.95439437864501, -163.18646134836703 55.13883437881678, -163.04646834823666 54.93660937862845, -163.36224834853073 54.81104837851151, -163.3250673484961 55.12078137879997, -161.78399934706087 55.89109237951738, -160.87646434621567 55.989721379609236, -161.0278883463567 55.895831379521795, -160.7981373461427 55.70999737934872, -160.25174734563387 55.76972937940435, -160.57149534593165 55.92889737955259, -160.36954534574357 56.269175379869495, -158.86401234434143 56.89254338045006, -159.0276423444938 56.794211380358476, -158.64262634413524 56.76032938032692, -158.65097634414303 57.052545380599064, -157.94014634348102 57.49118038100758, -157.6807123432394 57.566749381077955, -157.65931334321948 57.47395838099154, -157.39432434297268 57.494251381010436, -157.7087623432655 57.64257938114858, -157.6120953431755 58.08897238156432, -157.1407233427365 58.1617563816321, -157.55129334311886 58.39230938184682, -156.94046534255 58.735095382166065, -156.7813373424018 59.15066038255309, -158.201041343724 58.60619038204601, -158.5669033440647 58.811740382237446, -158.49467834399746 58.99868838241155, -157.99493734353203 58.9042503823236, -158.53915134403888 59.174526382575316, -158.91441234438838 58.768124382196824, -158.84048234431953 58.40172538185559, -159.62938934505425 58.95172838236782, -159.92135334532617 58.770333382198885, -160.3288713457057 59.05894738246767, -161.33378534664158 58.73324838216434)), ((-172.2826423568385 60.30175938362513, -172.60178235713573 60.32397338364582, -173.04685135755022 60.537015383844235, -172.9193463574315 60.60285438390555, -172.2826423568385 60.30175938362513)), ((-166.11143935109112 60.40947038372545, -165.54284835056157 59.9786313833242, -166.26781535123675 59.84307938319795, -166.1047573510849 59.75724238311801, -167.45313435234067 60.206678383536584, -166.11143935109112 60.40947038372545)), ((-164.17809134929055 54.603271378318006, -164.6472633497275 54.38993037811932, -164.95364235001284 54.586309378302204, -163.77061434891107 55.055223378738916, -163.53199634868884 55.04551437872988, -163.36197334853048 54.775495378478396, -163.0506033482405 54.667442378377764, -164.17809134929055 54.603271378318006)), ((-166.64521935158825 53.52274237731168, -167.50075835238502 53.255752377063025, -167.84470535270535 53.303251377107266, -166.70826935164698 53.716631377492256, -167.16275135207025 53.85275137761903, -166.2169453511894 53.92746137768861, -166.64521935158825 53.52274237731168)), ((-166.2213533511935 53.703867377480364, -166.2952373512623 53.79220237756264, -166.09195135107296 53.83858237760583, -166.2213533511935 53.703867377480364)), ((-167.79725335266116 53.49465337728552, -168.47231235328985 53.045981376867665, -169.10957735388337 52.81812337665546, -168.3539393531796 53.47464837726689, -167.79725335266116 53.49465337728552)), ((-174.16132935858818 52.417346376282204, -174.10097135853195 52.102619375989086, -174.72214835911046 52.00092137589438, -175.3382693596843 52.012841375905474, -174.16132935858818 52.417346376282204)), ((-176.94108436117702 51.583032375505184, -176.77417736102157 51.94388337584125, -176.42885336069997 51.83500337573985, -176.43219836070307 51.72889137564103, -176.94108436117702 51.583032375505184)), ((-177.91031436207967 51.59047537551212, -177.95779136212388 51.76327137567305, -178.21759836236586 51.87522037577731, -177.62198736181116 51.850798375754565, -177.91031436207967 51.59047537551212)), ((-171.08694535572494 63.43185638654026, -171.85362635643895 63.50767038661087, -171.6814583562786 63.792128386875795, -168.69289635349529 63.3021913864195, -169.6562733543925 62.943274386085236, -171.08694535572494 63.43185638654026)), ((-146.09897533245305 60.39222138370938, -146.60425533292363 60.237497383565284, -146.48814633281552 60.36693938368584, -146.72619733303722 60.37415038369255, -146.09897533245305 60.39222138370938)), ((-146.93983233323618 60.28582338361029, -147.47186533373167 59.86799438322116, -147.91232033414187 59.790178383148685, -147.19554433347432 60.35271238367259, -146.93983233323618 60.28582338361029)), ((-152.09321933803562 58.359562381816325, -152.0824243380256 58.155653381626415, -152.78915433868377 57.99176838147379, -153.23358833909768 58.168458381638345, -152.6602233385637 58.476515381925246, -152.09321933803562 58.359562381816325)), ((-133.9575753211455 57.299930380829466, -134.61423532175706 57.00910038055861, -134.55760232170434 57.391329380914584, -134.30646132147044 57.38854838091199, -134.6625943218021 57.6071633811156, -134.95846532207764 58.40743538186091, -134.6876043218254 58.16243038163273, -134.17091432134418 58.15938438162989, -133.79228432099157 57.59770738110679, -134.3114823214751 58.091600381566764, -133.84200132103786 57.46020938097873, -134.08144732126087 57.50104938101677, -133.9575753211455 57.299930380829466)), ((-134.51761532166708 58.33771638179598, -134.26149632142855 58.194662381662745, -134.68485932182284 58.30271638176338, -134.51761532166708 58.33771638179598)), ((-135.88779032294315 57.98768238146998, -135.3587143224504 57.72019838122087, -134.91705732203908 57.752988381251406, -134.8134413219426 57.48104038099813, -135.80598032286696 57.76297338126071, -135.54875432262742 57.459084380977686, -135.8417873229003 57.387967380911455, -136.41630032343537 57.82045338131424, -136.0326823230781 57.84267138133493, -136.43406632345193 58.10738438158146, -135.79683032285845 58.27714738173957, -135.48428932256735 58.155208381626004, -135.7943253228561 57.9815803814643, -135.40097532248978 58.13909538161099, -134.90763632203033 57.928822381415166, -135.2362133223363 57.779649381276236, -135.88779032294315 57.98768238146998)), ((-153.392819339246 57.15781538069711, -154.15173833995277 56.745306380312925, -153.7400733395694 57.13004838067125, -154.468707340248 57.12616938066763, -154.10341733990776 57.11559538065779, -154.30008034009094 56.84808638040865, -154.80927234056514 57.33899238086584, -154.21870834001516 57.667611381171895, -153.63034133946718 57.268684380800366, -153.8825783397021 57.642328381148346, -153.58341433942348 57.61176538111988, -153.93062833974685 57.81039138130487, -153.178085339046 57.70342038120524, -153.27807933913914 58.0045593814857, -152.15356133809183 57.603663381112334, -152.95889133884185 57.52005738103447, -152.63613133854125 57.31697838084534, -153.392819339246 57.15781538069711)), ((-134.65539032179538 56.162662379770296, -135.04843132216143 56.52794138011049, -134.8495363219762 56.685156380256906, -135.3706353224615 56.8326803803943, -135.16622232227115 57.03435938058213, -135.67430132274433 57.3460283808724, -135.4712273225552 57.35048038087654, -135.51598032259687 57.50686738102219, -134.8361983219638 57.24771038078083, -134.65539032179538 56.162662379770296)), ((-135.7020713227702 57.316583380844975, -135.5478863226266 57.12907538067034, -135.83956732289823 56.987685380538665, -135.8487373229068 57.3162953808447, -135.7020713227702 57.316583380844975)), ((-133.0533903203034 56.97714738052885, -132.9331133201914 56.629636380205206, -133.35366232058306 56.8382613803995, -133.0836643203316 56.52353438010639, -133.57731732079137 56.433241380022295, -133.6745243208819 56.85882138041865, -134.01979432120345 57.01438038056352, -133.0533903203034 56.97714738052885)), ((-133.96505332115248 56.08128437969451, -134.05423432123553 56.312115379909486, -134.22255832139228 56.06627837968053, -134.2825833214482 56.35572837995011, -134.03035532121328 56.477961380063945, -134.39507832155294 56.721027380290316, -134.1086543212862 56.84271238040365, -134.26536932143216 56.936598380491084, -133.92756632111755 56.80159338036535, -134.02646132120967 56.646869380221254, -133.71950832092378 56.766324380332506, -133.96505332115248 56.08128437969451)), ((-132.80365332007082 56.78604038035086, -132.53254931981834 56.577433380156585, -132.9417223201994 56.5093753800932, -132.80365332007082 56.78604038035086)), ((-132.33780431963697 56.47964838006551, -132.00532031932732 56.336315379932024, -131.92335031925097 56.19686137980215, -132.30389131960538 56.231852379834734, -132.33780431963697 56.47964838006551)), ((-132.70477031997873 56.455755380043264, -132.67891131995464 56.26519437986579, -133.05811632030782 56.341866379937194, -132.94199532019968 56.4474233800355, -132.70477031997873 56.455755380043264)), ((-132.47362931976346 55.49563137914908, -131.97027231929468 55.22602637889799, -132.22024231952747 54.99215037868017, -131.9647133192895 55.02547937871122, -132.00558831932756 54.69020637839897, -132.5991673198804 54.968249378657916, -132.46028431975105 55.04326037872777, -132.64304231992125 55.24992337892024, -133.22416832046247 55.28270637895078, -132.8491473201132 55.351309379014666, -133.12916232037398 55.489098379142995, -132.91001332016987 55.62767937927206, -133.3547753205841 55.609642379255256, -133.13812732038232 55.88602437951266, -133.2600813204959 56.15213337976049, -133.61896132083015 56.207130379811716, -133.61228732082392 56.34796537994288, -133.1900493204307 56.32992337992607, -132.1458463194582 55.480185379134696, -132.54167931982684 55.622674379267394, -132.6797193199554 55.452418379108835, -132.47362931976346 55.49563137914908)), ((-132.39197231968743 56.3357563799315, -132.4800183197694 56.189628379795415, -132.12946131944295 55.927985379551735, -132.69752831997198 56.107412379718845, -132.39197231968743 56.3357563799315)), ((-133.28727332052125 56.1285193797385, -133.319218320551 55.99351637961277, -133.79172932099104 55.92072637954498, -133.61950232083063 56.1304523797403, -133.28727332052125 56.1285193797385)), ((-131.6063913189558 55.319646378985176, -131.82529031915965 55.454910379111155, -131.57392531892555 55.906013379531274, -131.2333593186084 55.953515379575514, -130.93697531833234 55.64187537928528, -131.1444803185256 55.196600378870585, -131.22752431860295 55.405755379065376, -131.46085231882023 55.28103437894922, -131.27171431864411 55.43714837909461, -131.35057131871753 55.64464237928785, -131.6063913189558 55.319646378985176)), ((-131.8211403191558 55.412410379071574, -131.6183213189669 55.283261378951295, -131.72668331906783 55.13437437881263, -131.8244613191589 55.21131437888429, -131.8211403191558 55.412410379071574)), ((-131.46890731882775 55.235479378906795, -131.35666031872321 55.03521537872028, -131.5997273189496 54.99493037868277, -131.58530031893616 55.251591378921795, -131.46890731882775 55.235479378906795)), ((-133.10385332035042 55.245203378915846, -133.08135832032946 55.08547437876709, -132.6702723199466 54.663810378374386, -133.15027032039364 54.94379737863514, -133.10385332035042 55.245203378915846))) diff --git a/modules/spatial-lucene/src/test/resources/data/world-cities-points.txt b/modules/spatial-lucene/src/test/resources/data/world-cities-points.txt new file mode 100644 index 00000000000..eeb02e66f56 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/data/world-cities-points.txt @@ -0,0 +1,2680 @@ +#id name shape +G292223 Dubai 55.280000 25.252220 +G292672 Sharjah 55.391110 25.362220 +G292913 Al ‘Ayn 55.760560 24.191670 +G292932 `Ajmān 55.435040 25.411110 +G292968 Abu Dhabi 54.366670 24.466670 +G1133616 Mazār-e Sharīf 67.110870 36.709040 +G1135689 Kunduz 68.857000 36.728960 +G1138336 Kandahār 65.710130 31.613320 +G1138958 Kabul 69.172330 34.528130 +G1139715 Jalālābād 70.451530 34.426470 +G1140026 Herāt 62.199670 34.348170 +G3183875 Tirana 19.818890 41.327500 +G616052 Yerevan 44.513610 40.181110 +G2240449 Luanda 13.234440 -8.838330 +G3347939 Lobito 13.545560 -12.348060 +G3348313 Huambo 15.739170 -12.776110 +G3351663 Benguela 13.407220 -12.578330 +G3429577 Resistencia -58.983330 -27.450000 +G3429652 Quilmes -58.269440 -34.720280 +G3429886 Posadas -55.883330 -27.383330 +G3430863 Mar del Plata -57.550000 -38.000000 +G3432043 La Plata -57.948890 -34.931390 +G3433899 Formosa -58.183330 -26.183330 +G3435217 Corrientes -58.833330 -27.466670 +G3435910 Buenos Aires -58.377230 -34.613150 +G3835869 Santiago del Estero -64.266670 -27.783330 +G3836277 Santa Fe de la Vera Cruz -60.700000 -31.633330 +G3836564 San Salvador de Jujuy -65.300000 -24.183330 +G3836873 San Miguel de Tucumán -65.216670 -26.816670 +G3837056 San Luis -66.350000 -33.300000 +G3837213 San Juan -68.536390 -31.537500 +G3837702 San Fernando del Valle de Catamarca -65.783330 -28.466670 +G3838233 Salta -65.416670 -24.783330 +G3838583 Rosario -60.666390 -32.951110 +G3838874 Río Cuarto -64.350000 -33.133330 +G3841956 Paraná -60.533330 -31.733330 +G3843123 Neuquén -68.066670 -38.950000 +G3844421 Mendoza -68.816670 -32.883330 +G3848950 La Rioja -66.850000 -29.433330 +G3860259 Córdoba -64.183330 -31.400000 +G3865086 Bahía Blanca -62.283330 -38.716670 +G2761369 Vienna 16.372080 48.208490 +G2766824 Salzburg 13.043990 47.799410 +G2772400 Linz 14.286110 48.306390 +G2778067 Graz 15.450000 47.066670 +G7279909 Linz-Wels-Steyr 14.183690 48.154580 +G2063523 Perth 115.833330 -31.933330 +G2078025 Adelaide 138.600000 -34.933330 +G2147714 Sydney 151.207320 -33.867850 +G2155472 Newcastle 151.776470 -32.927150 +G2158177 Melbourne 144.963320 -37.814000 +G2165087 Gold Coast 153.433330 -28.000000 +G2165796 Geelong West 144.350000 -38.133330 +G2165798 Geelong 144.360690 -38.147110 +G2171507 Wollongong 150.883330 -34.433330 +G2172517 Canberra 149.128070 -35.283460 +G2172797 Cairns 145.766670 -16.916670 +G2174003 Brisbane 153.028090 -27.467940 +G7280463 North Shore 152.901850 -31.402370 +G7281838 Logan City 153.109440 -27.639170 +G584923 Sumqayıt 49.668610 40.589720 +G586523 Kirowabad 46.360560 40.682780 +G587084 Baku 49.892010 40.377670 +G3186573 Zenica 17.906390 44.201390 +G3191281 Sarajevo 18.356440 43.848640 +G3204541 Banja Luka 17.185560 44.775830 +G1185098 Tungi 90.405830 23.890000 +G1185099 Sylhet 91.871670 24.896670 +G1185106 Jamālpur 89.933330 24.916670 +G1185117 Narsingdi 90.718060 23.920830 +G1185128 Rājshāhi 88.600000 24.366670 +G1185155 Nārāyanganj 90.501110 23.623330 +G1185162 Mymensingh 90.400000 24.750000 +G1185186 Comilla 91.204440 23.457780 +G1185188 Rangpur 89.250000 25.750000 +G1185241 Dhaka 90.407440 23.710400 +G1192366 Pār Naogaon 88.950840 24.802870 +G1203891 Dinājpur 88.638640 25.627150 +G1205733 Chittagong 91.836390 22.333060 +G1336134 Cox’s Bāzār 91.979770 21.453240 +G1336135 Khulna 89.567230 22.813480 +G1336137 Barisāl 90.371110 22.701940 +G1336140 Jessore 89.213150 23.168690 +G1336144 Tāngāil 89.916670 24.250000 +G1337233 Bogra 89.366670 24.850000 +G6545349 Saidpur 88.891690 25.777690 +G2792413 Liège 5.567490 50.633730 +G2797656 Gent 3.716670 51.050000 +G2800481 Charleroi 4.452480 50.409470 +G2800866 Brussels 4.348780 50.850450 +G2803138 Antwerpen 4.403460 51.219890 +G2357048 Ouagadougou -1.538340 12.364230 +G2362344 Bobo-Dioulasso -4.297900 11.177150 +G726050 Varna 27.916670 43.216670 +G727011 Sofia 23.324150 42.697510 +G727523 Ruse 25.970830 43.856390 +G728193 Plovdiv 24.750000 42.150000 +G732770 Burgas 27.467810 42.506060 +G425378 Bujumbura 29.364400 -3.382200 +G2392087 Porto-Novo 2.603590 6.496460 +G2392204 Parakou 2.616670 9.350000 +G2394560 Djougou 1.666940 9.705000 +G2394819 Cotonou 2.433330 6.350000 +G2395914 Abomey-Calavi 2.350000 6.450000 +G3903320 Tarija -64.729560 -21.535490 +G3903987 Sucre -65.262740 -19.033320 +G3904906 Santa Cruz de la Sierra -63.166670 -17.800000 +G3909234 Oruro -67.150000 -17.983330 +G3911925 La Paz -68.150000 -16.500000 +G3919968 Cochabamba -66.156800 -17.389500 +G3386496 Teresina -42.801940 -5.089170 +G3387296 Sobral -40.349720 -3.686110 +G3388368 São Luís -44.302780 -2.529720 +G3389353 Santarém -54.708330 -2.443060 +G3390760 Recife -34.881110 -8.053890 +G3392242 Petrolina -40.500830 -9.398610 +G3392740 Paulista -34.873060 -7.940830 +G3392998 Parnamirim -35.262780 -5.915560 +G3393536 Olinda -34.855280 -8.008890 +G3394023 Natal -35.209440 -5.795000 +G3394682 Mossoró -37.344170 -5.187500 +G3395473 Maracanaú -38.625560 -3.876670 +G3395981 Maceió -35.735280 -9.665830 +G3396016 Macapá -51.066390 0.038890 +G3397147 Juazeiro do Norte -39.315280 -7.213060 +G3397277 João Pessoa -34.863060 -7.115000 +G3397838 Jaboatão -35.001390 -8.180280 +G3398269 Imperatriz -47.491670 -5.526390 +G3399415 Fortaleza -38.543060 -3.717220 +G3402429 Caucaia -38.653060 -3.736110 +G3402655 Caruaru -35.976110 -8.283330 +G3403642 Campina Grande -35.881110 -7.230560 +G3405870 Belém -48.504440 -1.455830 +G3407327 Arapiraca -36.661110 -9.752500 +G3407669 Ananindeua -48.372220 -1.365560 +G3444876 Volta Redonda -44.104170 -22.523060 +G3444914 Vitória da Conquista -40.839440 -14.866110 +G3444924 Vitória -40.337780 -20.319440 +G3445026 Vila Velha -40.292500 -20.329720 +G3445156 Viamão -51.023330 -30.081110 +G3445451 Várzea Grande -56.132500 -15.646670 +G3445831 Uberlândia -48.277220 -18.918610 +G3445839 Uberaba -47.931940 -19.748330 +G3446682 Taubaté -45.555280 -23.026390 +G3447186 Taboão da Serra -46.791670 -23.626110 +G3447212 Suzano -46.310830 -23.542500 +G3447259 Sumaré -47.266940 -22.821940 +G3447399 Sorocaba -47.458060 -23.501670 +G3447624 Sete Lagoas -44.246670 -19.465830 +G3447779 Serra -40.307780 -20.128610 +G3448136 São Vicente -46.391940 -23.963060 +G3448439 São Paulo -46.636110 -23.547500 +G3448622 São Leopoldo -51.147220 -29.760280 +G3448636 São José dos Campos -45.886940 -23.179440 +G3448639 São José do Rio Preto -49.379440 -20.819720 +G3448742 São José -49.166670 -28.233330 +G3448877 São João de Meriti -43.372220 -22.803890 +G3449319 São Carlos -47.890830 -22.017500 +G3449344 São Bernardo do Campo -46.565000 -23.693890 +G3449433 Santos -46.333610 -23.960830 +G3449701 Santo André -46.538330 -23.663890 +G3450083 Santa Maria -53.806940 -29.684170 +G3450144 Santa Luzia -43.851390 -19.769720 +G3450404 Santa Bárbara d'Oeste -47.413610 -22.753610 +G3450554 Salvador -38.510830 -12.971110 +G3450909 Rondonópolis -54.635560 -16.470830 +G3451138 Rio Grande -52.098610 -32.035000 +G3451190 Rio de Janeiro -43.207500 -22.902780 +G3451234 Rio Claro -47.561390 -22.411390 +G3451328 Ribeirão Preto -47.810280 -21.177500 +G3451353 Ribeirão das Neves -44.086670 -19.766940 +G3452324 Presidente Prudente -51.388890 -22.125560 +G3452465 Praia Grande -46.402780 -24.005830 +G3452925 Porto Alegre -51.230000 -30.033060 +G3453186 Ponta Grossa -50.161940 -25.095000 +G3453643 Piracicaba -47.649170 -22.725280 +G3454031 Petrópolis -43.178610 -22.505000 +G3454244 Pelotas -52.342500 -31.771940 +G3454857 Passo Fundo -52.406670 -28.262780 +G3455775 Osasco -46.791670 -23.532500 +G3456068 Novo Hamburgo -51.130560 -29.678330 +G3456160 Nova Iguaçu -43.451110 -22.759170 +G3456166 Nova Friburgo -42.531110 -22.281940 +G3456223 Nossa Senhora do Socorro -37.126110 -10.855000 +G3456283 Niterói -43.103610 -22.883330 +G3456814 Montes Claros -43.861670 -16.735000 +G3457001 Mogi das Cruzes -46.188330 -23.522780 +G3457381 Mauá -46.461390 -23.667780 +G3457671 Maringá -51.938610 -23.425280 +G3457692 Marília -49.945830 -22.213890 +G3458449 Londrina -51.162780 -23.310280 +G3458575 Limeira -47.401670 -22.564720 +G3458930 Lages -50.326110 -27.816110 +G3459462 Jundiaí -46.884170 -23.186390 +G3459505 Juiz de Fora -43.350280 -21.764170 +G3459712 Joinville -48.845560 -26.304440 +G3460370 Jacareí -45.965830 -23.305280 +G3460644 Itaquaquecetuba -46.348330 -23.486110 +G3460718 Itapevi -46.934170 -23.548890 +G3460748 Itapecerica da Serra -46.849170 -23.716940 +G3460845 Itajaí -48.661940 -26.907780 +G3460949 Itabuna -39.280280 -14.785560 +G3460950 Itaboraí -42.859440 -22.744440 +G3461144 Ipatinga -42.536670 -19.468330 +G3461311 Indaiatuba -47.218060 -23.090280 +G3461408 Ilhéus -39.049440 -14.788890 +G3461655 Hortolândia -47.220000 -22.858330 +G3461786 Guarulhos -46.533330 -23.462780 +G3461789 Guarujá -46.256390 -23.993060 +G3461879 Guarapuava -51.458060 -25.395280 +G3462089 Gravataí -50.991940 -29.944440 +G3462315 Governador Valadares -41.949440 -18.851110 +G3462377 Goiânia -49.253890 -16.678610 +G3462980 Francisco Morato -46.745280 -23.281670 +G3463011 Franca -47.400830 -20.538610 +G3463030 Foz do Iguaçu -54.588060 -25.547780 +G3463237 Florianópolis -48.549170 -27.596670 +G3463422 Ferraz de Vasconcelos -46.368610 -23.540830 +G3463478 Feira de Santana -38.966670 -12.266670 +G3464305 Embu -46.852220 -23.648890 +G3464374 Duque de Caxias -43.311670 -22.785560 +G3464460 Dourados -54.805560 -22.221110 +G3464688 Divinópolis -44.883890 -20.138890 +G3464739 Diadema -46.622780 -23.686110 +G3464975 Curitiba -49.273060 -25.427780 +G3465038 Cuiabá -56.096670 -15.596110 +G3465196 Criciúma -49.369720 -28.677500 +G3465284 Cotia -46.919170 -23.603890 +G3465624 Contagem -44.053610 -19.931670 +G3465927 Colombo -49.224170 -25.291670 +G3466296 Chapecó -52.618330 -27.096390 +G3466537 Caxias do Sul -51.179440 -29.168060 +G3466779 Cascavel -53.455280 -24.955830 +G3466998 Carapicuíba -46.835560 -23.522500 +G3467467 Canoas -51.183610 -29.917780 +G3467693 Campos -41.300000 -21.750000 +G3467747 Campo Grande -54.646390 -20.442780 +G3467865 Campinas -47.060830 -22.905560 +G3468031 Camaçari -38.324170 -12.697500 +G3468376 Cachoeiro de Itapemirim -41.112780 -20.848890 +G3469058 Brasília -47.929720 -15.779720 +G3469968 Blumenau -49.066110 -26.919440 +G3470044 Betim -44.198330 -19.967780 +G3470127 Belo Horizonte -43.937780 -19.920830 +G3470142 Belford Roxo -43.399440 -22.764170 +G3470279 Bauru -49.060560 -22.314720 +G3470353 Barueri -46.876110 -23.510560 +G3470583 Barreiras -44.990000 -12.152780 +G3470636 Barra Mansa -44.171390 -22.544170 +G3471766 Araraquara -48.175560 -21.794440 +G3471859 Araçatuba -50.432780 -21.208890 +G3471872 Aracaju -37.071670 -10.911110 +G3472177 Angra dos Reis -44.318060 -23.006670 +G3472287 Anápolis -48.952780 -16.326670 +G3472343 Americana -47.331390 -22.739170 +G3474574 Palmas -48.360280 -10.212780 +G3662574 Rio Branco -67.810000 -9.974720 +G3662762 Porto Velho -63.903890 -8.761940 +G3663517 Manaus -60.025000 -3.101940 +G3664980 Boa Vista -60.673330 2.819720 +G6316406 Aparecida de Goiânia -49.243890 -16.823330 +G6317344 Jaboatão dos Guararapes -35.014720 -8.112780 +G3571824 Nassau -77.343060 25.058230 +G933773 Gaborone 25.908590 -24.654510 +G620127 Vitsyebsk 30.194440 55.192500 +G625144 Minsk 27.566670 53.900000 +G625665 Mahilyow 30.336390 53.913890 +G627904 Hrodna 23.814720 53.681390 +G627907 Homyel’ 30.983330 52.441670 +G629634 Brest 23.700000 52.100000 +G630429 Baranavichy 26.033330 53.133330 +G630468 Babruysk 29.233330 53.150000 +G5881791 Abbotsford -122.252570 49.057980 +G5894171 Barrie -79.666340 44.400110 +G5907364 Brampton -79.766330 43.683410 +G5911592 Burlington -79.837130 43.386210 +G5911606 Burnaby -122.952630 49.266360 +G5913490 Calgary -114.085290 51.050110 +G5946768 Edmonton -113.468710 53.550140 +G5959974 Gatineau -75.701640 45.477230 +G5964700 Greater Sudbury -80.990010 46.490000 +G5969785 Hamilton -79.949640 43.233410 +G5992996 Kitchener -80.482990 43.450100 +G6050610 Laval -73.692000 45.569950 +G6058560 London -81.233040 42.983390 +G6059891 Longueuil -73.518060 45.531210 +G6075357 Mississauga -79.658300 43.578900 +G6077243 Montréal -73.587810 45.508840 +G6091104 North York -79.416300 43.766810 +G6094578 Oshawa -78.849570 43.900120 +G6094817 Ottawa -75.698120 45.411170 +G6119109 Regina -104.617800 50.450080 +G6122085 Richmond -123.136830 49.170030 +G6141256 Saskatoon -106.634520 52.116790 +G6159905 Surrey -122.825090 49.106350 +G6167865 Toronto -79.416300 43.700110 +G6173331 Vancouver -123.119340 49.249660 +G6173577 Vaughan -79.532910 43.833410 +G6174041 Victoria -123.369300 48.432940 +G6182962 Windsor -83.016540 42.300080 +G6183235 Winnipeg -97.147040 49.884400 +G6324729 Halifax -63.572390 44.645330 +G6325494 Québec -71.214540 46.812280 +G7602078 Ladner -123.082410 49.089380 +G204405 Uvira 29.145830 -3.406670 +G204953 Tshikapa 20.800000 -6.416670 +G207570 Mwene-Ditu 23.450000 -7.000000 +G209228 Mbuji-Mayi 23.600000 -6.150000 +G212730 Kisangani 25.200000 0.516670 +G214481 Kananga 22.417780 -5.895830 +G216449 Gandajika 23.950000 -6.750000 +G217562 Butembo 29.283330 0.150000 +G217831 Bukavu 28.860830 -2.508330 +G922704 Lubumbashi 27.466670 -11.666670 +G922741 Likasi 26.733330 -10.981390 +G922773 Kolwezi 25.472500 -10.716670 +G2312895 Mbandaka 18.266670 0.066670 +G2313002 Matadi 13.450000 -5.816670 +G2314302 Kinshasa 15.321460 -4.324590 +G2314705 Kikwit 18.818060 -5.038610 +G2593460 Masina 15.391390 -4.383610 +G2389853 Bangui 18.554960 4.361220 +G2255414 Pointe-Noire 11.846110 -4.794720 +G2260535 Brazzaville 15.283270 -4.266900 +G2657896 Zürich 8.550000 47.366670 +G2660646 Genève 6.145690 46.202220 +G2661604 Basel 7.600000 47.566670 +G2279755 Yamoussoukro -5.283330 6.816670 +G2282006 San-Pédro -6.616670 4.733330 +G2286304 Korhogo -5.633330 9.450000 +G2290486 Daloa -6.451940 6.874720 +G2290956 Bouaké -5.033060 7.683330 +G2293521 Abobo -4.020560 5.418890 +G2293538 Abidjan -4.028060 5.341110 +G3868121 Viña del Mar -71.551830 -33.024570 +G3868626 Valparaíso -71.627250 -33.039320 +G3870011 Temuco -72.600000 -38.733330 +G3870282 Talcahuano -73.116670 -36.716670 +G3870294 Talca -71.666670 -35.433330 +G3871336 Santiago -70.566560 -33.426280 +G3872348 San Bernardo -70.716670 -33.600000 +G3873775 Rancagua -70.744440 -34.170830 +G3874960 Puerto Montt -72.936940 -41.471670 +G3875024 Puente Alto -70.583330 -33.616670 +G3884373 La Serena -71.254170 -29.907780 +G3887127 Iquique -70.143060 -20.220830 +G3893629 Coquimbo -71.343610 -29.953330 +G3893894 Concepción -73.049770 -36.826990 +G3895088 Chillán -72.103440 -36.606640 +G3899361 Arica -70.304170 -18.475000 +G3899539 Antofagasta -70.400000 -23.650000 +G7281017 La Pintana -70.634190 -33.583310 +G2220957 Yaoundé 11.516670 3.866670 +G2224827 Ngaoundéré 13.583330 7.316670 +G2226275 Mokolo 13.801880 10.739780 +G2228373 Maroua 14.315920 10.590950 +G2229152 Loum 9.735100 4.718200 +G2229798 Kousséri 15.030630 12.076890 +G2231320 Garoua 13.400000 9.300000 +G2232239 Edéa 10.133330 3.800000 +G2232593 Douala 9.708400 4.046900 +G2234359 Bertoua 13.683330 4.583330 +G2234974 Bamenda 10.158240 5.952660 +G2235189 Bafoussam 10.417860 5.473660 +G1280849 Kashi 75.979720 39.454720 +G1529102 Urunchi 87.583330 43.800000 +G1529114 Turpan 89.166670 42.933330 +G1529195 Shihezi 86.033330 44.300000 +G1529376 Korla 86.146940 41.759720 +G1529569 Changji 87.316670 44.016670 +G1529641 Aral 81.263610 40.515560 +G1529660 Aksu 80.264440 41.123060 +G1783621 Zunyi 106.907220 27.686670 +G1783633 Zoucheng 116.965560 35.400560 +G1783745 Zigong 104.776890 29.341620 +G1783763 Zhuzhou 113.150000 27.833330 +G1783873 Zhumadian 114.029440 32.979440 +G1783934 Shangqiu 115.650000 34.450000 +G1784130 Zhoukou 114.633330 33.633330 +G1784554 Zhicheng 111.504720 30.295560 +G1784580 Yizheng 119.178890 32.269170 +G1784642 Zhenjiang 119.434170 32.209170 +G1784658 Zhengzhou 113.648610 34.757780 +G1784853 Zhaoqing 112.459720 23.051160 +G1784990 Zhanjiang 110.342710 21.281450 +G1785018 Zhangzhou 117.655560 24.513330 +G1785286 Zibo 118.063330 36.790560 +G1785294 Anyang 114.328890 36.099440 +G1785453 Zaozhuang 117.554170 34.864720 +G1785462 Zaoyang 112.754170 32.127220 +G1785725 Yunfu 112.037300 22.930560 +G1785738 Yuncheng 110.992780 35.023060 +G1785974 Yuci 112.731940 37.680280 +G1786067 Yuanlin 112.885950 30.415130 +G1786640 Yingcheng 113.550000 30.950000 +G1786657 Yinchuan 106.273060 38.468060 +G1786746 Yichun 114.400000 27.833330 +G1786764 Yichang 111.284720 30.714440 +G1786770 Yibin 104.623830 28.766670 +G1787093 Yantai 121.400000 37.533330 +G1787227 Yangzhou 119.435830 32.397220 +G1787323 Yangshuo 110.489670 24.780810 +G1787351 Yangquan 113.563330 37.857500 +G1787746 Yancheng 120.125280 33.385560 +G1787824 Tongshan 117.157070 34.180450 +G1787858 Xuri 117.966670 28.466670 +G1788046 Xuchang 113.816670 34.016670 +G1788450 Xinzhou 112.733330 38.409170 +G1788534 Xinyang 114.065560 32.122780 +G1788572 Xinxiang 113.867220 35.308890 +G1788618 Xintai 117.751940 35.900560 +G1788694 Xinpu 119.159440 34.599720 +G1788852 Xining 101.766670 36.616670 +G1788927 Xingtai 114.494170 37.063060 +G1789137 Xindi 113.466670 29.816670 +G1789273 Sanshui 112.891610 23.154860 +G1790254 Xiaogan 113.900000 30.916670 +G1790353 Xianyang 108.702610 34.337780 +G1790371 Xiantao 113.400000 30.383330 +G1790396 Xianning 114.216670 29.883330 +G1790437 Zhuhai 113.567780 22.276940 +G1790492 Xiangtan 112.900000 27.850000 +G1790587 Xiangfan 112.145000 32.041670 +G1790630 Xi’an 108.928610 34.258330 +G1790645 Xiamen 118.081870 24.479790 +G1790840 Wuzhou 111.316670 23.483330 +G1790894 Wuxue 115.552500 29.850580 +G1790923 Wuxi 120.288570 31.568870 +G1791121 Changde 111.678060 29.032220 +G1791236 Wuhu 118.375480 31.336570 +G1791247 Wuhan 114.266670 30.583330 +G1791249 Wuhai 106.812220 39.664720 +G1791388 Wenzhou 120.666820 27.999420 +G1791636 Weinan 109.508910 34.503550 +G1791673 Weihai 122.113610 37.501670 +G1791681 Weifang 119.101940 36.710000 +G1791748 Wanxian 108.389720 30.803890 +G1792260 Wafangdian 122.008060 39.618330 +G1792520 Tongzhou 116.599440 39.905280 +G1792621 Wusong 117.783330 30.950000 +G1792947 Tianjin 117.176670 39.142220 +G1793346 Tangshan 118.183330 39.633330 +G1793424 Tanggu 117.646940 39.021110 +G1793505 Taizhou 119.910630 32.493330 +G1793511 Taiyuan 112.560280 37.869440 +G1793724 Tai’an 117.120000 36.185280 +G1793743 Suzhou 116.978890 33.636110 +G1793879 Suizhou 113.363060 31.711110 +G1794903 Shiyan 110.778060 32.647500 +G1794904 Shiyan 110.783330 32.566670 +G1795060 Shiqi 113.385210 22.516820 +G1795196 Tongchuan 109.089720 35.080560 +G1795270 Shijiazhuang 114.478610 38.041390 +G1795565 Shenzhen 114.068300 22.545540 +G1795816 Shashi 112.244720 30.307220 +G1795855 Shaoxing 120.581110 30.001670 +G1795874 Shaoguan 113.583330 24.800000 +G1795928 Shanwei 115.347500 22.781990 +G1795940 Shantou 116.714790 23.368140 +G1796236 Shanghai 121.458060 31.222220 +G1796663 Sanming 117.618610 26.248610 +G1797121 Jieyang 116.364160 23.528860 +G1797132 Rizhao 119.455280 35.427500 +G1797353 Quanzhou 118.585830 24.913890 +G1797595 Qinhuangdao 119.588330 39.931670 +G1797873 Huaiyin 119.019170 33.588610 +G1797929 Qingdao 120.371940 36.098610 +G1797945 Qingyuan 113.033330 23.700000 +G1798422 Puyang 115.005280 35.702780 +G1798425 Puyang 119.886110 29.460280 +G1798449 Putian 119.010280 25.439440 +G1798654 Pingxiang 113.850000 27.616670 +G1798827 Pingdingshan 113.301190 33.738470 +G1798998 Dadukou 101.705390 26.547900 +G1799397 Ningbo 121.549450 29.878190 +G1799491 Neijiang 105.062160 29.583540 +G1799629 Nanyang 112.532780 32.994720 +G1799722 Nantong 120.874720 32.030280 +G1799846 Nanping 118.173610 26.645000 +G1799869 Nanning 108.316670 22.816670 +G1799962 Nanjing 118.777780 32.061670 +G1800146 Nanchong 106.084740 30.795080 +G1800163 Nanchang 115.883330 28.683330 +G1800627 Mianyang 104.754240 31.459340 +G1800657 Mentougou 116.091670 39.939170 +G1801757 Luqiao 121.377150 28.580840 +G1801792 Luoyang 112.453610 34.683610 +G1801934 Luohe 114.035280 33.571670 +G1802204 Luancheng 114.651670 37.879170 +G1802238 Loudi 111.994440 27.734440 +G1802875 Liuyang 113.633330 28.150000 +G1803318 Linyi 118.342780 35.063060 +G1803331 Linxia 103.206390 35.600280 +G1803422 Linhai 121.116670 28.850000 +G1803567 Linfen 111.518890 36.088890 +G1803791 Licheng 113.828360 23.295540 +G1803834 Liaocheng 115.964720 36.443890 +G1804153 Leshan 103.763860 29.562280 +G1804386 Laohekou 111.667780 32.385830 +G1804430 Lanzhou 103.792220 36.056390 +G1804540 Langfang 116.694720 39.509720 +G1804586 Laiyang 120.713610 36.975830 +G1804651 Kunming 102.718330 25.038890 +G1804850 Kaiyuan 103.303720 23.697670 +G1804879 Kaifeng 114.348330 34.791110 +G1805179 Jiujiang 115.983330 29.733330 +G1805298 Jinzhou 121.716670 39.100000 +G1805518 Jining 116.581390 35.405000 +G1805540 Jingzhou 112.190280 30.350280 +G1805611 Jingmen 112.204720 31.033610 +G1805618 Jingling 113.100000 30.650000 +G1805680 Jingdezhen 117.207890 29.294700 +G1805741 Jincheng 112.832780 35.502220 +G1805753 Jinan 116.997220 36.668330 +G1805953 Jiaxing 120.748330 30.765560 +G1805987 Jiaozuo 113.233060 35.239720 +G1806096 Jiaozhou 120.003330 36.283890 +G1806299 Jiangmen 113.083330 22.583330 +G1806408 Yangjiang 111.966670 21.850000 +G1806445 Ji’an 114.979270 27.117160 +G1806466 Guangyuan 105.823000 32.442020 +G1806535 Huzhou 120.096390 30.866110 +G1806696 Humen 113.673060 22.818980 +G1806776 Huizhou 114.400000 23.083330 +G1806882 Xinhui 113.048200 22.456000 +G1807143 Huangyan 121.259440 28.647780 +G1807234 Huangshi 115.100000 30.216670 +G1807508 Huanggang 116.999610 23.677040 +G1807681 Huainan 116.996940 32.626390 +G1807700 Huaibei 116.791670 33.974440 +G1808198 Heze 115.441110 35.243060 +G1808316 Yiyang 112.328330 28.589170 +G1808370 Hengyang 112.615000 26.888060 +G1808392 Hengshui 115.701110 37.732220 +G1808722 Hefei 117.280830 31.863890 +G1808770 Hebi 114.192500 35.899170 +G1808926 Hangzhou 120.168890 30.255280 +G1808931 Hangu 117.789170 39.248890 +G1808963 Handan 114.467780 36.600560 +G1809061 Jiaojiang 121.442780 28.680280 +G1809078 Haikou 110.341670 20.045830 +G1809412 Guli 120.033330 28.883330 +G1809461 Guiyang 106.716670 26.583330 +G1809498 Guilin 110.286390 25.281940 +G1809858 Guangzhou 113.250000 23.116670 +G1809879 Guangshui 113.997800 31.619900 +G1810295 Gaozhou 110.846070 21.939240 +G1810437 Gaoping 106.102940 30.775760 +G1810458 Gaomi 119.752780 36.383330 +G1810821 Fuzhou 119.306110 26.061390 +G1810845 Fuyang 115.816670 32.900000 +G1810979 Fuling 107.391940 29.702220 +G1811103 Foshan 113.131480 23.026770 +G1811619 Ezhou 114.833330 30.400000 +G1812101 Dongying 118.485560 37.456390 +G1812521 Donghai 115.642040 22.945940 +G1812545 Dongguan 113.744720 23.048890 +G1812728 Dingzhou 114.995560 38.513060 +G1812955 Dezhou 116.292500 37.448610 +G1812961 Deyang 104.381980 31.130190 +G1813253 Dayan 100.220720 26.868790 +G1814082 Daliang 113.247010 22.850420 +G1814087 Dalian 121.602220 38.912220 +G1814757 Chuzhou 118.297780 32.321940 +G1814786 Yangchun 111.783330 22.166670 +G1814906 Chongqing 106.552780 29.562780 +G1815059 Chenzhou 113.033330 25.800000 +G1815286 Chengdu 104.066670 30.666670 +G1815302 Chenghua 116.770070 23.461320 +G1815395 Chaozhou 116.637860 23.665130 +G1815456 Changzhou 119.966670 31.783330 +G1815463 Changzhi 111.738610 35.208890 +G1815577 Changsha 112.966670 28.200000 +G1816080 Cangzhou 116.866670 38.316670 +G1816234 Bozhou 115.770280 33.877220 +G1816265 Boshan 117.833330 36.483330 +G1816440 Bengbu 117.360830 32.940830 +G1816670 Beijing 116.397230 39.907500 +G1816705 Beihai 109.100000 21.483330 +G1816971 Baoding 115.490280 38.851110 +G1817240 Baiyin 104.208060 36.558330 +G1817720 Shangyu 120.871110 30.015560 +G1817968 Anshun 105.933330 26.250000 +G1817993 Anqing 117.050560 30.509170 +G1818116 Anbu 116.680920 23.448950 +G1886760 Suzhou 120.618060 31.311390 +G1915223 Zhongshan 110.582910 21.322560 +G1919014 Lianghu 120.898450 29.991520 +G1927639 Yueyang 113.091940 29.333330 +G2033168 Zhaodong 125.983330 46.083330 +G2033196 Zhangjiakou 114.879440 40.810000 +G2033370 Yingkou 122.224720 40.668060 +G2033413 Yichun 128.900000 47.700000 +G2033467 Yanji 129.507780 42.907500 +G2033574 Xuanhua 115.044720 40.610280 +G2034312 Ulan Hot 122.083330 46.083330 +G2034400 Tongliao 122.265280 43.612500 +G2034439 Tieling 123.841390 42.293060 +G2034655 Suihua 126.996940 46.640560 +G2034714 Siping 124.368610 43.163330 +G2034786 Shuangyashan 131.153890 46.636110 +G2034937 Shenyang 123.432780 41.792220 +G2035225 Ranghulu 124.866670 46.650000 +G2035261 Qitaihe 130.850000 45.800000 +G2035265 Qiqihar 123.967220 47.340830 +G2035513 Panshan 122.049440 41.188060 +G2035644 Nanpiao 120.747920 41.098220 +G2035715 Mudanjiang 129.600000 44.583330 +G2035980 Longfeng 125.116670 46.550000 +G2036109 Liaoyuan 125.135830 42.903610 +G2036113 Liaoyang 123.173060 41.271940 +G2036389 Jixi 130.966670 45.300000 +G2036401 Jiutai 125.832780 44.152500 +G2036427 Jinzhou 121.141670 41.107780 +G2036434 Lianshan 120.853270 40.764320 +G2036458 Jining 113.105830 41.027500 +G2036502 Jilin 126.560280 43.850830 +G2036581 Jiamusi 130.350000 46.833330 +G2036670 Hulan Ergi 123.633330 47.204170 +G2036892 Hohhot 111.652220 40.810560 +G2036920 Hengshan 130.916670 45.200000 +G2036986 Hegang 130.366670 47.400000 +G2037013 Harbin 126.650000 45.750000 +G2037078 Hailar 119.700000 49.200000 +G2037086 Haicheng 122.741670 40.851940 +G2037346 Fuxin 121.658890 42.015560 +G2037355 Fushun 123.923330 41.855830 +G2037620 Dongling 123.575830 41.814440 +G2037799 Datong 113.291390 40.093610 +G2037860 Daqing 125.000000 46.583330 +G2037886 Dandong 124.394720 40.129170 +G2038067 Chifeng 118.963610 42.268330 +G2038087 Chengde 117.936110 40.972500 +G2038120 Chaoyang 120.458610 41.570280 +G2038180 Changchun 125.322780 43.880000 +G2038300 Benxi 123.765000 41.288610 +G2038342 Beipiao 120.779170 41.791940 +G2038432 Baotou 109.822220 40.652220 +G2038569 Baicheng 122.816670 45.616670 +G2038584 Baishan 126.428610 41.943060 +G2038632 Anshan 122.990000 41.123610 +G2038650 Anda 125.316670 46.400000 +G7158935 东海岛 110.396130 21.024480 +G7283386 Changshu City 120.742210 31.646150 +G7304020 Fenghuang 109.599610 27.935570 +G7602670 Zhu Cheng City 119.402590 35.995020 +G3665900 Villavicencio -73.626640 4.142000 +G3666304 Valledupar -73.250560 10.476940 +G3666645 Tuluá -76.200000 4.086670 +G3667849 Soledad -74.766670 10.917220 +G3667905 Soacha -74.221390 4.587220 +G3667983 Sincelejo -75.397780 9.304720 +G3668605 Santa Marta -74.201670 11.247220 +G3671916 Popayán -76.613160 2.438230 +G3672486 Pereira -75.696110 4.813330 +G3672778 Pasto -77.281110 1.213610 +G3673164 Palmira -76.303610 3.539440 +G3673899 Neiva -75.281880 2.927300 +G3674453 Montería -75.890000 8.757500 +G3674962 Medellín -75.536110 6.291390 +G3675443 Manizales -75.520560 5.070000 +G3680450 Itagüí -75.611390 6.171940 +G3680656 Ibagué -75.232220 4.438890 +G3682385 Floridablanca -73.089720 7.064720 +G3682631 Envigado -75.563890 6.173060 +G3685095 Dos Quebradas -75.672500 4.834720 +G3685533 Cúcuta -72.505280 7.883330 +G3687238 Cartagena -75.514440 10.399720 +G3687925 Cali -76.522500 3.437220 +G3688451 Buenaventura -77.069720 3.893330 +G3688465 Bucaramanga -73.125830 7.129720 +G3688689 Bogotá -74.081750 4.609710 +G3688928 Bello -75.562220 6.338890 +G3689147 Barranquilla -74.796390 10.963890 +G3689169 Barrancabermeja -73.854720 7.065280 +G3689560 Armenia -75.681110 4.533890 +G3621849 San José -84.083330 9.933330 +G3536729 Santiago de Cuba -75.821940 20.024720 +G3537906 Santa Clara -79.966670 22.400000 +G3544091 Pinar del Río -83.698060 22.417500 +G3550598 Las Tunas -76.951110 20.961670 +G3553478 Havana -82.383040 23.133020 +G3556969 Holguín -76.263060 20.887220 +G3557689 Guantánamo -75.209170 20.144440 +G3564124 Cienfuegos -80.435560 22.146110 +G3566067 Camagüey -77.916940 21.380830 +G3567597 Bayamo -76.643330 20.379170 +G146268 Nicosia 33.366670 35.166670 +G146384 Limassol 33.033330 34.675000 +G3067696 Praha 14.420760 50.088040 +G3068160 Plzeň 13.377590 49.747470 +G3068799 Ostrava 18.282040 49.834650 +G3078610 Brno 16.607960 49.195220 +G2805753 Wuppertal 7.183330 51.266670 +G2809346 Wiesbaden 8.250000 50.083330 +G2825297 Stuttgart 9.177020 48.782320 +G2831580 Solingen 7.083330 51.183330 +G2842647 Saarbrücken 7.000000 49.233330 +G2844588 Rostock 12.140490 54.088700 +G2848756 Berlin Reinickendorf 13.333330 52.566670 +G2855598 Berlin Pankow 13.401860 52.569260 +G2856883 Osnabrück 8.050000 52.266670 +G2857458 Oldenburg 8.200000 53.166670 +G2860410 Oberhausen 6.850000 51.466670 +G2861650 Nuremberg 11.068330 49.447780 +G2864072 Neue Neustadt 11.633330 52.150000 +G2864118 Neuß 6.683330 51.200000 +G2867543 Münster 7.625710 51.962360 +G2867714 München 11.575490 48.137430 +G2867838 Mülheim an der Ruhr 6.883330 51.433330 +G2869894 Mönchengladbach 6.433330 51.200000 +G2873891 Mannheim 8.464720 49.488330 +G2874225 Mainz 8.271110 50.000000 +G2874545 Magdeburg 11.666670 52.166670 +G2875376 Ludwigshafen am Rhein 8.435280 49.481110 +G2875601 Lübeck 10.687290 53.868930 +G2878234 Leverkusen 7.000000 51.033330 +G2879139 Leipzig 12.371290 51.339620 +G2884509 Krefeld 6.566670 51.333330 +G2886242 Köln 6.950000 50.933330 +G2891122 Kiel 10.134890 54.321330 +G2892518 Kassel 9.500000 51.316670 +G2892794 Karlsruhe 8.385830 49.004720 +G2905891 Herne 7.216670 51.550000 +G2910685 Harburg 9.983330 53.466670 +G2910831 Hannover 9.733220 52.370520 +G2911240 Hamm 7.820890 51.680330 +G2911285 Wandsbek 10.100000 53.566670 +G2911287 Marienthal 10.083330 53.566670 +G2911293 Eimsbüttel 9.983330 53.566670 +G2911296 Altona 9.933330 53.550000 +G2911298 Hamburg 10.000000 53.550000 +G2911522 Halle 12.000000 51.500000 +G2912621 Hagen 7.466670 51.350000 +G2921466 Gelsenkirchen 7.050000 51.516670 +G2925177 Freiburg 7.852220 47.995900 +G2925533 Frankfurt am Main 8.683330 50.116670 +G2928810 Essen 7.016670 51.450000 +G2929670 Erfurt 11.033330 50.983330 +G2934246 Düsseldorf 6.776160 51.221720 +G2934691 Duisburg 6.750000 51.433330 +G2935022 Dresden 13.738320 51.050890 +G2935517 Dortmund 7.450000 51.516670 +G2940132 Chemnitz 12.916670 50.833330 +G2944388 Bremen 8.807770 53.075160 +G2945024 Braunschweig 10.533330 52.266670 +G2946447 Bonn 7.100000 50.733330 +G2947416 Bochum 7.216670 51.483330 +G2949186 Bielefeld 8.533330 52.033330 +G2950159 Berlin 13.410530 52.524370 +G2954172 Augsburg 10.883330 48.366670 +G3247449 Aachen 6.083420 50.776640 +G6545310 Berlin Mitte 13.404890 52.520030 +G6941055 Bochum-Hordel 7.175600 51.501680 +G7289614 Halle Neustadt 11.916050 51.479240 +G7290245 Berlin Steglitz Zehlendorf 13.241830 52.434850 +G7290251 Berlin Wilmersdorf 13.290970 52.500970 +G7290252 Berlin Spandau 13.199210 52.551100 +G223817 Djibouti 43.144680 11.587670 +G2618425 Copenhagen 12.565530 55.675940 +G2624652 Århus 10.210760 56.156740 +G3492908 Santo Domingo -69.988570 18.500120 +G3492914 Santiago de los Caballeros -70.700000 19.450000 +G3493032 San Pedro de Macorís -69.297180 18.461560 +G3500957 La Romana -68.972850 18.427340 +G3511540 San Cristóbal -70.100000 18.416670 +G2474141 Boumerdas 3.477170 36.766390 +G2479536 Skikda 6.909210 36.876170 +G2481007 Sidi Bel Abbès -0.630850 35.189940 +G2485926 Oran -0.641670 35.691110 +G2498766 El Achir 4.627440 36.063860 +G2498954 Ech Chettia 1.255380 36.195910 +G2501152 Constantine 6.614720 36.365000 +G2505329 Bejaïa 5.084330 36.755870 +G2505572 Batna 6.174140 35.555970 +G2505854 Bab Ezzouar 3.182910 36.726150 +G2506999 Annaba 7.766670 36.900000 +G2507480 Algiers 3.041970 36.752500 +G3651297 Santo Domingo de los Colorados -79.150000 -0.250000 +G3652462 Quito -78.524950 -0.229850 +G3652941 Portoviejo -80.450000 -1.050000 +G3654410 Manta -80.733330 -0.950000 +G3654533 Machala -79.966670 -3.266670 +G3657509 Guayaquil -79.900000 -2.166670 +G3658192 Durán -79.833330 -2.200000 +G3658666 Cuenca -78.983330 -2.883330 +G3660689 Ambato -78.616750 -1.249080 +G588409 Tallinn 24.753530 59.436960 +G347497 Tanda 30.998060 30.791110 +G347591 Ṭalkha 31.373890 31.053060 +G347796 Sūhāj 31.700000 26.550000 +G350550 Qinā 32.727220 26.170000 +G354775 Kafr ad Dawwār 30.128430 31.133850 +G355795 Hilwan 31.333330 29.850000 +G358448 Damanhûr 30.466670 31.033330 +G358619 Port Said 32.307500 31.280560 +G359173 Banī Suwayf 31.088890 29.063890 +G359280 Banhā 31.187500 30.460830 +G359493 Az Zaqāzīq 31.510280 30.591390 +G359783 Asyūţ 31.182780 27.182780 +G359792 Aswān 32.898890 24.087500 +G359796 Suez 32.550000 29.966670 +G360502 Luxor 32.642100 25.698930 +G360630 Cairo 31.249670 30.062630 +G360686 Al Minyā 30.744440 28.119440 +G360761 Al Manşūrah 31.376670 31.043060 +G360829 Al Maḩallah al Kubrá 31.166940 30.976110 +G360995 Al Jīzah 31.212220 30.008610 +G361055 Ismailia 32.277220 30.605280 +G361058 Alexandria 29.919170 31.198060 +G361320 Al Fayyūm 30.840000 29.307780 +G411165 Idfu 32.874720 24.980280 +G2462881 Laâyoune / El Aaiún -13.203150 27.162240 +G343300 Asmara 38.933330 15.333330 +G2509954 Valencia -0.377390 39.469750 +G2510911 Sevilla -5.986940 37.377220 +G2511174 Santa Cruz de Tenerife -16.254620 28.468240 +G2511401 La Laguna -16.316670 28.483330 +G2512989 Palma 2.650240 39.569390 +G2513416 Murcia -1.116670 37.983330 +G2514256 Málaga -4.420340 36.720160 +G2515270 Las Palmas de Gran Canaria -15.416670 28.100000 +G2516326 Jerez de la Frontera -6.133330 36.683330 +G2517117 Granada -3.606670 37.188170 +G2518559 Elx -0.701070 38.262180 +G2519240 Córdoba -4.766670 37.883330 +G2519752 Castelló de la Plana -0.033330 39.983330 +G2520058 Cartagena -0.983330 37.600000 +G2521886 Almería -2.459740 36.838140 +G2521978 Alicante -0.481490 38.345170 +G2522258 Albacete -1.850000 38.983330 +G3104324 Zaragoza -0.877340 41.656060 +G3104499 Vitoria-Gasteiz -2.666670 42.850000 +G3105976 Vigo -8.716670 42.233330 +G3106672 Valladolid -4.716670 41.650000 +G3108286 Terrassa 2.016670 41.566670 +G3109718 Santander -3.804440 43.464720 +G3110044 San Sebastián -1.974990 43.312830 +G3111108 Salamanca -5.650000 40.966670 +G3111199 Sabadell 2.109420 41.543290 +G3114472 Pamplona -1.643230 42.816870 +G3114711 Oviedo -5.844760 43.360290 +G3116025 Móstoles -3.864960 40.322340 +G3117735 Madrid -3.702560 40.416500 +G3118150 Logroño -2.450000 42.466670 +G3118594 Leganés -3.763500 40.327180 +G3119841 A Coruña -8.396000 43.371350 +G3120619 L'Hospitalet de Llobregat 2.100280 41.359670 +G3121424 Gijón -5.664440 43.541110 +G3121437 Getafe -3.732950 40.305710 +G3121960 Fuenlabrada -3.800000 40.283330 +G3127461 Burgos -3.700000 42.350000 +G3128026 Bilbao -2.925280 43.262710 +G3128760 Barcelona 2.158990 41.388790 +G3129028 Badalona 2.247410 41.450040 +G3130564 Alcorcón -3.824870 40.345820 +G3130616 Alcalá de Henares -3.366670 40.483330 +G6252065 Nou Barris 2.177270 41.441630 +G6544100 Eixample 2.161790 41.388960 +G6544105 Sant Martí 2.199330 41.418140 +G330186 Nazrēt 39.266670 8.550000 +G331180 Mek’elē 39.475280 13.496670 +G336014 Gonder 37.466670 12.600000 +G338832 Dirē Dawa 41.866110 9.593060 +G342884 Bahir Dar 37.383330 11.600000 +G344979 Addis Ababa 38.746890 9.024970 +G632453 Vantaa 25.040990 60.294140 +G633679 Turku 22.268690 60.451480 +G634963 Tampere 23.787120 61.499110 +G658225 Helsinki 24.935450 60.169520 +G660158 Espoo 24.652200 60.205200 +G2972315 Toulouse 1.443670 43.604260 +G2972328 Toulon 5.933330 43.116670 +G2973783 Strasbourg 7.742960 48.583420 +G2980291 Saint-Étienne 4.400000 45.433330 +G2983990 Rennes -1.683330 48.083330 +G2984114 Reims 4.033330 49.250000 +G2988507 Paris 2.348800 48.853410 +G2990440 Nice 7.266080 43.703130 +G2990969 Nantes -1.553360 47.217250 +G2992166 Montpellier 3.883330 43.600000 +G2995469 Marseille 5.381070 43.296950 +G2996944 Lyon 4.850000 45.750000 +G2998324 Lille 3.066670 50.633330 +G3003796 Le Havre 0.107670 49.493800 +G3014728 Grenoble 5.716670 45.166670 +G3031582 Bordeaux -0.566670 44.833330 +G3037656 Angers -0.550000 47.466670 +G2399697 Libreville 9.450000 0.383330 +G2633691 Wolverhampton -2.122960 52.585470 +G2634853 Walsall -1.983960 52.585280 +G2636389 Swindon -1.781160 51.557970 +G2636432 Swansea -3.943230 51.620790 +G2636503 Sutton -0.200000 51.350000 +G2636531 Sunderland -1.382220 54.904650 +G2636841 Stoke-on-Trent -2.185380 53.004150 +G2637433 Southend-on-Sea 0.714330 51.537820 +G2637487 Southampton -1.404280 50.903950 +G2638077 Sheffield -1.465900 53.382970 +G2639577 Reading -0.971130 51.456250 +G2639912 Preston -2.716670 53.766670 +G2639996 Portsmouth -1.091250 50.798990 +G2640101 Poole -2.000000 50.716670 +G2640194 Plymouth -4.143050 50.371530 +G2640729 Oxford -1.255960 51.752220 +G2641170 Nottingham -1.150470 52.953600 +G2641181 Norwich 1.298340 52.627830 +G2641430 Northampton -0.883330 52.250000 +G2641673 Newcastle upon Tyne -1.613960 54.973280 +G2642465 Milton Keynes -0.755830 52.041720 +G2643123 Manchester -2.237430 53.480950 +G2643339 Luton -0.417480 51.879670 +G2643741 City of London -0.091840 51.512790 +G2643743 London -0.125740 51.508530 +G2644210 Liverpool -2.977940 53.410580 +G2644668 Leicester -1.131690 52.638600 +G2644688 Leeds -1.547850 53.796480 +G2645425 Hull -0.335250 53.744600 +G2646003 Islington -0.103040 51.536220 +G2648579 Glasgow -4.257630 55.865150 +G2650225 Edinburgh -3.196480 55.952060 +G2650752 Dundee -2.966670 56.500000 +G2650839 Dudley -2.083330 52.500000 +G2651347 Derby -1.476630 52.922770 +G2652221 Coventry -1.512170 52.406560 +G2653822 Cardiff -3.180000 51.480000 +G2654675 Bristol -2.596650 51.455230 +G2654993 Bradford -1.752060 53.793910 +G2655095 Bournemouth -1.879500 50.720480 +G2655603 Birmingham -1.899830 52.481420 +G2655984 Belfast -5.933330 54.583330 +G2657832 Aberdeen -2.098140 57.143690 +G7535661 London Borough of Harrow -0.333330 51.566670 +G611717 Tbilisi 44.833680 41.694110 +G613607 K'ut'aisi 42.699740 42.249610 +G2294700 Tema -0.016670 5.616670 +G2294877 Tamale -0.833330 9.400000 +G2294915 Takoradi -1.750000 4.883330 +G2298890 Kumasi -1.616670 6.683330 +G2306079 Achiaman -0.333330 5.700000 +G2306104 Accra -0.196900 5.556020 +G2422465 Conakry -13.677290 9.537950 +G2422488 Camayenne -13.687780 9.535000 +G2309527 Malabo 8.783330 3.750000 +G2310046 Bata 9.750000 1.850000 +G255274 Piraeus 23.637080 37.947450 +G255683 Pátrai 21.734440 38.244440 +G264371 Athens 23.716220 37.979450 +G734077 Thessaloníki 22.943890 40.640280 +G3587902 Villa Nueva -90.587500 14.526940 +G3592519 Mixco -90.606390 14.633330 +G3598132 Guatemala City -90.513270 14.640720 +G2374775 Bissau -15.583330 11.850000 +G3378644 Georgetown -58.155270 6.804480 +G1819609 Kowloon 114.183330 22.316670 +G1819729 Hong Kong 114.157690 22.285520 +G3600949 Tegucigalpa -87.206810 14.081800 +G3601782 San Pedro Sula -88.033330 15.500000 +G3186886 Zagreb 15.977980 45.814440 +G3190261 Split 16.439150 43.508910 +G6618983 Zagreb - Centar 15.977530 45.813130 +G3718426 Port-au-Prince -72.335000 18.539170 +G3719028 Pétionville -72.285280 18.512500 +G3726786 Delmas 73 -72.302780 18.544720 +G3727135 Croix des Bouquets -72.225000 18.575000 +G3728338 Carrefour -72.399220 18.541140 +G715429 Szeged 20.148240 46.253000 +G717582 Miskolc 20.783330 48.100000 +G721472 Debrecen 21.633330 47.533330 +G3046526 Pécs 18.233330 46.083330 +G3054643 Budapest 19.039910 47.498010 +G6942354 Nagyvárad 21.927340 47.060530 +G1213614 Sunggal 98.615100 3.576500 +G1214189 Percut 98.864000 3.625300 +G1214191 Perbaungan 98.956000 3.567900 +G1214204 Pematangsiantar 99.068700 2.959500 +G1214520 Medan 98.666670 3.583330 +G1215355 Binjai 98.485400 3.600100 +G1215502 Banda Aceh 95.322200 5.557700 +G1621177 Yogyakarta 110.360830 -7.782780 +G1622786 Makassar 119.422100 -5.140000 +G1624494 Tegal 109.140200 -6.869400 +G1624647 Tasikmalaya 108.200000 -7.333330 +G1624917 Bandarlampung 105.258030 -5.425440 +G1625084 Tangerang 106.630000 -6.178060 +G1625812 Surakarta 110.831670 -7.556110 +G1625822 Surabaya 112.750830 -7.249170 +G1626100 Sumedang Utara 107.916670 -6.850000 +G1626381 Sukabumi 106.926670 -6.918060 +G1626560 Soreang 107.518330 -7.033060 +G1626801 Situbondo 114.009760 -7.706230 +G1627549 Serang 106.150200 -6.114900 +G1627896 Semarang 110.420300 -6.993200 +G1629001 Samarinda 117.150000 -0.500000 +G1629131 Salatiga 110.492780 -7.331940 +G1629710 Rengasdengklok 107.298060 -6.159170 +G1630328 Purwokerto 109.234440 -7.421390 +G1630333 Purwodadi 110.915800 -7.086800 +G1630341 Purwakarta 107.443330 -6.556940 +G1630634 Probolinggo 113.215900 -7.754300 +G1630789 Pontianak 109.333330 -0.033330 +G1630997 Plumbon 108.472780 -6.705000 +G1631648 Pemalang 109.366670 -6.900000 +G1631761 Pekanbaru 101.450000 0.533330 +G1631766 Pekalongan 109.675300 -6.888600 +G1632033 Pasuruan 112.907500 -7.645300 +G1632228 Pasarkemis 106.530280 -6.170280 +G1632276 Parung 106.733060 -6.421390 +G1632937 Pamulang 106.738330 -6.342780 +G1633034 Palu 119.870700 -0.891700 +G1633070 Palembang 104.745800 -2.916730 +G1633419 Padang 100.354270 -0.949240 +G1635882 Mataram 116.116670 -8.583330 +G1636544 Manado 124.845500 1.487000 +G1636556 Mamuju 118.888500 -2.674800 +G1636722 Malang 112.630400 -7.979700 +G1636930 Madiun 111.523900 -7.629800 +G1637510 Loa Janan 117.095030 -0.582950 +G1638063 Lembang 107.617500 -6.811670 +G1638284 Lawang 112.694700 -7.835300 +G1638868 Labuhanbajo 119.887700 -8.496400 +G1640344 Kendari 122.498890 -3.945000 +G1640660 Kediri 112.016670 -7.816670 +G1642588 Jember 113.703170 -8.166040 +G1642858 Jambi 103.616670 -1.600000 +G1642911 Jakarta 106.845130 -6.214620 +G1645524 Depok 106.818610 -6.400000 +G1645528 Denpasar 115.216670 -8.650000 +G1645895 Curug 106.556390 -6.265830 +G1646170 Cirebon 108.557000 -6.706300 +G1646194 Ciputat 106.695560 -6.237500 +G1646448 Cimahi 107.542500 -6.872220 +G1646494 Cileungsi 106.959170 -6.394720 +G1647003 Cibinong 106.854170 -6.481670 +G1647383 Ciampea 106.700830 -6.554720 +G1648473 Bogor 106.789170 -6.594440 +G1649150 Bengkulu 102.265540 -3.800440 +G1649378 Bekasi 106.989600 -6.234900 +G1650213 Banjarmasin 114.591000 -3.324420 +G1650227 Banjaran 107.587780 -7.045280 +G1650357 Bandung 107.618610 -6.903890 +G1650527 Balikpapan 116.828870 -1.267530 +G1651531 Ambon 128.200000 -3.716670 +G1985663 Cikupa 106.508330 -6.236390 +G2057087 Kupang 123.583330 -10.166670 +G2964506 Dún Laoghaire -6.135860 53.293950 +G2964574 Dublin -6.267190 53.343990 +G2965140 Cork -8.470610 51.897970 +G281184 Jerusalem 35.225300 31.779020 +G293397 Tel Aviv 34.766670 32.066670 +G293703 Rishon LeẔiyyon 34.804440 31.964170 +G294071 Netanya 34.857780 32.333610 +G294751 H̱olon 34.772220 32.011390 +G294801 Haifa 34.989170 32.815560 +G295530 Beersheba 34.791300 31.251810 +G295629 Ashdod 34.650000 31.816670 +G6693674 Petah Tikva 34.885030 32.091740 +G7498240 West Jerusalem 35.219610 31.781990 +G1252797 Yamunānagar 77.283330 30.100000 +G1252948 Warangal 79.583330 18.000000 +G1253084 Vizianagaram 83.416670 18.116670 +G1253102 Vishākhapatnam 83.300000 17.700000 +G1253133 Virār 72.800000 19.466670 +G1253184 Vijayawāda 80.616670 16.516670 +G1253237 Verāval 70.366670 20.900000 +G1253286 Vellore 79.133330 12.933330 +G1253405 Benares 83.000000 25.333330 +G1253573 Vadodara 73.200000 22.300000 +G1253747 Unnāo 80.500000 26.533330 +G1253894 Ulhāsnagar 73.150000 19.216670 +G1253914 Ujjain 75.766670 23.183330 +G1253986 Udaipur 73.691830 24.571170 +G1254089 Tumkūr 77.101670 13.342220 +G1254163 Thiruvananthapuram 76.916670 8.483330 +G1254187 Trichūr 76.216670 10.516670 +G1254241 Tonk 75.783330 26.166670 +G1254348 Tiruppūr 77.350000 11.100000 +G1254360 Tirupati 79.416670 13.650000 +G1254361 Tirunelveli 77.700000 8.733330 +G1254388 Tiruchchirāppalli 78.683330 10.816670 +G1254649 Thanjāvūr 79.150000 10.800000 +G1254661 Thāne 72.966670 19.200000 +G1254745 Teni 77.483330 10.000000 +G1255349 Surendranagar 71.683330 22.700000 +G1255364 Sūrat 72.833330 21.166670 +G1255634 Srīnagar 74.816670 34.083330 +G1255744 Sonīpat 77.016670 28.983330 +G1255969 Sītāpur 80.683330 27.566670 +G1256052 Sirsa 75.016670 29.533330 +G1256237 Shimla 77.166670 31.100000 +G1256287 Silchar 92.800000 24.816670 +G1256320 Sīkar 75.150000 27.616670 +G1256422 Shrīrāmpur 88.342220 22.752780 +G1256436 Solāpur 75.916670 17.683330 +G1256451 Shivpurī 77.650000 25.433330 +G1256515 Shimoga 75.566670 13.916670 +G1256525 Shiliguri 88.433330 26.700000 +G1256728 Shāhjahānpur 79.916670 27.883330 +G1257022 Satna 80.833330 24.583330 +G1257416 Sāngli 74.564170 16.854380 +G1257540 Sambhal 78.550000 28.583330 +G1257542 Sambalpur 83.966670 21.450000 +G1257629 Salem 78.166670 11.650000 +G1257806 Sahāranpur 77.550000 29.966670 +G1257845 Sāgar 78.716670 23.833330 +G1258076 Rohtak 76.566670 28.900000 +G1258182 Rewa 81.300000 24.533330 +G1258342 Ratlām 75.066670 23.316670 +G1258526 Rānchī 85.333330 23.350000 +G1258599 Rāmpur 79.033330 28.816670 +G1258831 Rāj Nāndgaon 81.033330 21.100000 +G1258847 Rājkot 70.783330 22.300000 +G1258932 Rājahmundry 81.783330 16.983330 +G1258980 Raipur 81.633330 21.233330 +G1259004 Raigarh Fort 73.433330 18.250000 +G1259009 Rāiganj 88.116670 25.616670 +G1259012 Rāichūr 77.366670 16.200000 +G1259064 Rāe Bareli 81.233330 26.216670 +G1259091 Quilon 76.600000 8.883330 +G1259166 Pūrnia 87.466670 25.783330 +G1259184 Puri 85.850000 19.800000 +G1259229 Pune 73.855350 18.519570 +G1259239 Punāsa 76.400000 22.233330 +G1259312 Proddatūr 78.550000 14.733330 +G1259425 Pondicherry 79.830000 11.930000 +G1259652 Pimpri 73.800000 18.616670 +G1260086 Patna 85.116670 25.600000 +G1260107 Patiāla 76.400280 30.326670 +G1260137 Pathānkot 75.650000 32.283330 +G1260341 Parbhani 76.783330 19.266670 +G1260476 Pānīpat 76.968060 29.388890 +G1260482 Pānihāti 88.374440 22.694170 +G1260692 Pallāvaram 80.183610 12.976110 +G1260716 Pāli 73.333330 25.766670 +G1261039 Orai 79.466670 25.983330 +G1261045 Ongole 80.050000 15.500000 +G1261258 Nizāmābād 78.116670 18.666670 +G1261481 New Delhi 77.224450 28.635760 +G1261529 Nellore 79.966670 14.433330 +G1261731 Nāsik 73.800000 19.983330 +G1261913 Nāngloi Jāt 77.066670 28.683330 +G1261927 Nandyāl 78.483330 15.483330 +G1262131 Naihāti 88.416940 22.902780 +G1262180 Nāgpur 79.100000 21.150000 +G1262204 Nāgercoil 77.433330 8.166670 +G1262292 Nadiād 72.866670 22.700000 +G1262321 Mysore 76.649720 12.307220 +G1262330 Muzaffarpur 85.400000 26.116670 +G1262332 Muzaffarnagar 77.683330 29.466670 +G1262395 Murwāra 80.400000 23.850000 +G1262482 Munger 86.466670 25.383330 +G1262771 Morena 78.000000 26.496940 +G1262801 Morādābād 78.783330 28.833330 +G1262995 Mirzāpur 82.583330 25.150000 +G1263214 Meerut 77.700000 28.983330 +G1263220 Medinīpur 87.333330 22.433330 +G1263311 Mau 83.550000 25.950000 +G1263364 Mathura 77.683330 27.500000 +G1263780 Mangalore 74.883330 12.866670 +G1264115 Mālegaon 74.533330 20.550000 +G1264521 Madurai 78.116670 9.933330 +G1264527 Chennai 80.278470 13.087840 +G1264543 Madhyamgram 88.450000 22.700000 +G1264637 Machilīpatnam 81.133330 16.166670 +G1264728 Ludhiāna 75.850000 30.900000 +G1264733 Lucknow 80.916670 26.850000 +G1264773 Loni 77.283330 28.750000 +G1265014 Lātūr 76.583330 18.400000 +G1265711 Kulti 86.850000 23.733330 +G1265767 Kūkatpalli 78.416670 17.483330 +G1265873 Calicut 75.766670 11.250000 +G1266049 Kota 75.833330 25.183330 +G1266122 Korba 82.683330 22.350000 +G1266285 Kolhāpur 74.216670 16.700000 +G1266976 Kharagpur 87.333330 22.333330 +G1267031 Khandwa 76.333330 21.833330 +G1267076 Khammam 80.150000 17.250000 +G1267480 Katihār 87.583330 25.533330 +G1267708 Karnāl 76.983330 29.683330 +G1267755 Karīmnagar 79.150000 18.433330 +G1267995 Kānpur 80.350000 26.466670 +G1268159 Kānchipuram 79.716670 12.833330 +G1268257 Kāmārhāti 88.374720 22.671110 +G1268295 Kalyān 73.150000 19.250000 +G1268561 Kākināda 82.216670 16.933330 +G1268773 Jūnāgadh 70.466670 21.516670 +G1268782 Jalandhar 75.579170 31.325560 +G1268865 Jodhpur 73.030000 26.286670 +G1268907 Jīnd 76.316670 29.316670 +G1269006 Jhānsi 78.583330 25.433330 +G1269135 Jaunpur 82.683330 25.733330 +G1269280 Jāmuria 87.083330 23.700000 +G1269300 Jamshedpur 86.183330 22.800000 +G1269317 Jāmnagar 70.066670 22.466670 +G1269321 Jammu 74.866670 32.733330 +G1269395 Jālna 75.883330 19.833330 +G1269407 Jālgaon 75.566670 21.016670 +G1269515 Jaipur 75.816670 26.916670 +G1269633 Jabalpur 79.950060 23.166970 +G1269723 Ingrāj Bāzār 88.150000 25.000000 +G1269743 Indore 75.833300 22.717920 +G1269771 Imphāl 93.950000 24.816670 +G1269834 Ichalkaranji 74.466670 16.700000 +G1269843 Hyderābād 78.474440 17.375280 +G1269910 Hugli 88.402500 22.895560 +G1269920 Hubli 75.166670 15.350000 +G1269935 Hospet 76.400000 15.266670 +G1269937 Hoshiārpur 75.917220 31.532220 +G1270022 Hisār 75.716670 29.166670 +G1270351 Haridwār 78.166670 29.966670 +G1270393 Hāpur 77.783330 28.716670 +G1270396 Hāora 88.310280 22.589170 +G1270407 Hanumāngarh 74.316670 29.583330 +G1270583 Gwalior 78.179170 26.223610 +G1270642 Gurgaon 77.033330 28.466670 +G1270668 Guntūr 80.450000 16.300000 +G1270711 Guna 77.316670 24.650000 +G1270752 Gulbarga 76.833330 17.333330 +G1270926 Gorakhpur 75.683330 29.450000 +G1270927 Gorakhpur 83.373890 26.755000 +G1271308 Ghāziābād 77.433330 28.666670 +G1271439 Gaya 85.000000 24.783330 +G1271476 Guwāhāti 91.750950 26.186170 +G1271685 Gangānagar 73.883330 29.916670 +G1271715 Gāndhīnagar 72.683330 23.216670 +G1271850 Gadag 75.616670 15.416670 +G1271885 Fīrozābād 78.416670 27.150000 +G1271912 Fatehpur 80.800000 25.933330 +G1271942 Farrukhābād 79.566670 27.400000 +G1271951 Farīdābād 77.316670 28.433330 +G1271976 Faizābād 82.133330 26.783330 +G1271987 Etāwah 79.023900 26.776900 +G1272051 Elūru 81.100000 16.700000 +G1272175 Durgāpur 87.316670 23.483330 +G1272181 Durg 81.283330 21.183330 +G1272423 Dombivli 73.083330 19.216670 +G1272543 Dindigul 77.950000 10.350000 +G1272691 Dhule 74.783330 20.900000 +G1272979 Dhanbād 86.450000 23.800000 +G1273066 Dewās 76.066670 22.966670 +G1273294 Delhi 77.216670 28.666670 +G1273313 Dehra Dūn 78.033330 30.316670 +G1273491 Darbhanga 85.900000 26.166670 +G1273581 Dānāpur 85.050000 25.633330 +G1273780 Cuttack 85.879270 20.464970 +G1273802 Cuddalore 79.750000 11.750000 +G1273865 Coimbatore 76.966670 11.000000 +G1273874 Cochin 76.233330 9.966670 +G1274693 Chandrapur 79.300000 19.950000 +G1274746 Chandīgarh 76.793300 30.734300 +G1274784 Chandannagar 88.377220 22.869170 +G1275004 Calcutta 88.369720 22.569720 +G1275068 Burhānpur 76.233330 21.300000 +G1275120 Bulandshahr 77.850000 28.400000 +G1275163 Budaun 79.116670 28.050000 +G1275198 Brahmapur 84.783330 19.316670 +G1275248 Borivli 72.850000 19.233330 +G1275339 Mumbai 72.847940 19.014410 +G1275362 Bokāro 85.966670 23.783330 +G1275637 Bilāspur 82.150000 22.083330 +G1275665 Bīkāner 73.300000 28.016670 +G1275701 Bijāpur 75.700000 16.833330 +G1275716 Bihār Sharīf 85.516670 25.183330 +G1275738 Bīdar 77.550000 17.900000 +G1275778 Bhusāwal 75.766670 21.050000 +G1275817 Bhubaneshwar 85.833330 20.233330 +G1275841 Bhopāl 77.400000 23.266670 +G1275899 Bhiwāni 76.133330 28.783330 +G1275901 Bhiwandi 73.066670 19.300000 +G1275926 Bhind 78.788330 26.564170 +G1275960 Bhīlwāra 74.633330 25.350000 +G1275971 Bhilai 81.433330 21.216670 +G1276032 Bhāvnagar 72.150000 21.766670 +G1276058 Bhātpāra 88.408890 22.871390 +G1276070 Bhatinda 74.950000 30.200000 +G1276100 Bharūch 72.966670 21.700000 +G1276128 Bharatpur 77.483330 27.216670 +G1276300 Bhāgalpur 87.000000 25.250000 +G1276321 Bhadrāvati 75.716670 13.866670 +G1276509 Bellary 76.933330 15.150000 +G1276533 Belgaum 74.500000 15.866670 +G1277013 Bareilly 79.416670 28.350000 +G1277029 Barddhamān 87.850000 23.250000 +G1277065 Bārāsat 88.516670 22.716670 +G1277082 Baranagar 88.365280 22.643330 +G1277333 Bengalore 77.603290 12.976230 +G1277397 Bānda 80.333330 25.483330 +G1277539 Bāli 88.340280 22.646110 +G1277799 Bahraich 81.600000 27.583330 +G1277820 Baharampur 88.250000 24.100000 +G1277835 Bahādurgarh 76.916670 28.683330 +G1278130 Āvadi 80.101670 13.115560 +G1278149 Aurangābād 75.333330 19.883330 +G1278314 Āsansol 86.983330 23.683330 +G1278483 Ara 84.666670 25.566670 +G1278672 Anantapur 77.600000 14.683330 +G1278708 Amroha 78.466670 28.916670 +G1278710 Amritsar 74.865560 31.633060 +G1278718 Amrāvati 77.750000 20.933330 +G1278840 Ambattūr 80.162220 13.098330 +G1278903 Amarnāth 73.166670 19.200000 +G1278946 Alwar 76.600000 27.566670 +G1278985 Alleppey 76.326400 9.490040 +G1278994 Allahābād 81.850000 25.450000 +G1279017 Alīgarh 78.083330 27.883330 +G1279064 Alandur 80.206110 13.002500 +G1279105 Akola 77.000000 20.733330 +G1279159 Ajmer 74.633330 26.450000 +G1279186 Āīzawl 92.716670 23.733330 +G1279228 Ahmadnagar 74.733330 19.083330 +G1279233 Ahmadābād 72.616670 23.033330 +G1279259 Āgra 78.016670 27.183330 +G1279290 Agartala 91.275000 23.836390 +G1279335 Ādoni 77.283330 15.633330 +G1344377 Haldia 88.109750 22.060460 +G1348818 Nangi 88.215280 22.508330 +G6943660 Shivaji Nagar 73.852630 18.530170 +G7279746 Noida 77.330000 28.580000 +G7279754 Singrauli 82.675350 24.199730 +G7284820 Jaigaon 89.375580 26.847660 +G7302826 Lal Bahadur Nagar 78.557570 17.347690 +G7302833 Gajuwaka 83.216670 17.700000 +G7302845 Quthbullapur 78.458180 17.501070 +G7302856 Serilingampalle 78.301960 17.493130 +G91597 Sāmarrā’ 43.875620 34.200960 +G94787 Kirkuk 44.392220 35.468060 +G94824 Karbalā’ 44.008470 32.611440 +G95446 Arbīl 44.010620 36.192570 +G97990 Ba‘qūbah 44.655450 33.748460 +G98182 Baghdad 44.400880 33.340580 +G98463 As Sulaymānīyah 45.437490 35.561130 +G98530 As Samāwah 45.294400 31.331980 +G98717 Ar Ramādī 43.305840 33.422570 +G98854 An Nāşirīyah 46.261020 31.052050 +G98860 An Najaf al Ashraf 44.339760 31.998540 +G99071 Al Mawşil al Jadīdah 43.097770 36.334640 +G99072 Mosul 43.118890 36.335000 +G99131 Al Kūt 45.819020 32.514700 +G99347 Al Ḩillah 44.435260 32.480140 +G99454 Al Fallūjah 43.779510 33.353800 +G99532 Al Başrah 47.788850 30.534880 +G99608 Al ‘Amārah 47.139600 31.840640 +G99762 Ad Dīwānīyah 44.930630 31.990510 +G100077 Abū Ghurayb 44.185000 33.308330 +G388349 Al Başrat al Qadīmah 47.814910 30.497210 +G14256 Āzādshahr 48.570730 34.790880 +G23814 Kahrīz 47.055300 34.383800 +G32767 Qarchak 51.568890 35.439440 +G111453 Zanjān 48.478700 36.673600 +G111822 Yazd 54.367500 31.897220 +G112214 Varāmīn 51.645700 35.324200 +G112931 Tehrān 51.421510 35.694390 +G113646 Tabrīz 46.291900 38.080000 +G114259 Sīrjān 55.681400 29.452000 +G115019 Shīrāz 52.538800 29.603600 +G116667 Sāveh 50.356600 35.021300 +G116996 Shari-i-Tajan 53.056520 36.562970 +G117392 Saqqez 46.273500 36.249920 +G117574 Sanandaj 46.992300 35.314400 +G118063 Sabzevār 57.681910 36.212600 +G118743 Rasht 49.583190 37.280770 +G119208 Qom 50.876400 34.640100 +G119505 Qazvīn 50.004900 36.279700 +G121801 Orūmīyeh 45.076050 37.552740 +G122285 Neyshābūr 58.795760 36.213290 +G122438 Naz̧arābād 50.607500 35.952100 +G124665 Mashhad 59.606200 36.297000 +G125185 Malāyer 48.823500 34.296900 +G125446 Mahābād 45.722200 36.763100 +G126972 Khvoy 44.952100 38.550300 +G127319 Khorramshahr 48.166400 30.439700 +G127349 Khorramābād 48.355830 33.487780 +G128226 Kermānshāh 47.065000 34.314170 +G128234 Kermān 57.081230 30.293680 +G128477 Kāshān 51.436440 33.983080 +G128747 Karaj 51.010300 35.835500 +G132144 Hamadān 48.514560 34.799220 +G132892 Gorgān 54.434750 36.838660 +G139817 Bandar Būshehr 50.838500 28.968400 +G139889 Būkān 46.208900 36.521000 +G140044 Borūjerd 48.751600 33.897300 +G140380 Bojnūrd 57.329030 37.474730 +G140463 Bīrjand 59.221140 32.866280 +G141681 Bandar ‘Abbās 56.280800 27.186500 +G142363 Bābol 52.678950 36.551320 +G143083 Ardabīl 48.293300 38.249800 +G143127 Arāk 49.689160 34.091740 +G143534 Āmol 52.350720 36.469610 +G144448 Ahvāz 48.669300 31.320300 +G145459 Ābādān 48.304300 30.339200 +G418606 Najafābād 51.366800 32.634400 +G418710 Khomeynī Shahr 51.521130 32.700180 +G418863 Eşfahān 51.677610 32.657220 +G1159301 Zāhedān 60.862900 29.496300 +G2523630 Reggio di Calabria 15.661290 38.110470 +G2523920 Palermo 13.359760 38.115820 +G2524170 Messina 15.549690 38.193270 +G2525068 Catania 15.087190 37.502130 +G2525473 Cagliari 9.134620 39.207380 +G3164527 Verona 10.997790 45.434190 +G3164603 Venice 12.326670 45.438610 +G3165185 Trieste 13.780000 45.648610 +G3165524 Torino 7.686820 45.070490 +G3165926 Taranto 17.229720 40.476110 +G3169070 Roma 12.483900 41.894740 +G3169921 Prato 11.090920 43.884250 +G3171457 Parma 10.328980 44.802660 +G3171728 Padova 11.881810 45.415190 +G3172394 Napoli 14.250000 40.833330 +G3173331 Modena 10.925390 44.647830 +G3173435 Milano 9.189510 45.464270 +G3173529 Mestre 12.242500 45.490280 +G3174659 Livorno 10.316000 43.542640 +G3176219 Genova 8.933860 44.406320 +G3176885 Foggia 15.549250 41.460930 +G3176959 Florence 11.250000 43.766670 +G3181554 Brescia 10.227270 45.524780 +G3181928 Bologna 11.338750 44.493810 +G3182351 Bari 16.851180 41.117730 +G3489297 New Kingston -76.783190 18.007470 +G3489854 Kingston -76.793580 17.997020 +G246013 Wādī as Sīr 35.816670 31.950000 +G248946 Irbid 35.850000 32.555560 +G250090 Az Zarqā’ 36.087960 32.072750 +G250441 Amman 35.945030 31.955220 +G1847963 Atsugi 139.359720 35.438890 +G1847966 Akashi 134.983330 34.633330 +G1848254 Yono 139.633330 35.883330 +G1848313 Yokosuka 139.667220 35.283610 +G1848354 Yokohama-shi 139.642500 35.447780 +G1848373 Yokkaichi 136.616670 34.966670 +G1848522 Yao 135.600000 34.616670 +G1849053 Utsunomiya-shi 139.883610 36.565830 +G1849372 Uji 135.800000 34.883330 +G1849498 Ube 131.251110 33.943060 +G1849796 Tsu-shi 136.508610 34.730280 +G1849814 Toyota 137.150000 35.083330 +G1849837 Toyonaka 135.469320 34.782440 +G1849846 Toyohashi 137.383330 34.766670 +G1849876 Toyama-shi 137.211390 36.695280 +G1849892 Tottori 134.233330 35.500000 +G1850147 Tokyo 139.581300 35.614880 +G1850158 Tokushima-shi 134.559440 34.065830 +G1850181 Tokorozawa 139.469030 35.799160 +G1850692 Nishi-Tokyo-shi 139.538300 35.725260 +G1850910 Takatsuki 135.616780 34.848330 +G1851002 Takasaki 139.016670 36.333330 +G1851012 Takarazuka 135.356970 34.799360 +G1851032 Takaoka 137.016670 36.750000 +G1851100 Takamatsu-shi 134.043330 34.340280 +G1851307 Tachikawa 139.418060 35.692780 +G1851348 Suzuka 136.583330 34.883330 +G1851483 Suita 135.515670 34.761430 +G1851604 Sōka 139.804440 35.820280 +G1851717 Shizuoka-shi 138.383060 34.976940 +G1852140 Shinagawa-ku 139.730170 35.609020 +G1852225 Shimonoseki 130.950000 33.950000 +G1852383 Shimminatochō 135.200000 34.183330 +G1852899 Sasebo 129.722780 33.159170 +G1853195 Sakai 135.466670 34.583330 +G1853295 Sagamihara 139.354440 35.553060 +G1853303 Saga-shi 130.298800 33.249320 +G1853483 Oyama 139.800000 36.300000 +G1853574 Ōtsu-shi 135.868330 35.004440 +G1853677 Ōta 139.366670 36.300000 +G1853909 Ōsaka-shi 135.502180 34.693740 +G1854376 Okazaki 137.166670 34.950000 +G1854383 Okayama-shi 133.935000 34.661670 +G1854487 Ōita-shi 131.612500 33.238060 +G1854703 Ōgaki 136.616670 35.350000 +G1854747 Odawara 139.159720 35.255560 +G1854902 Numazu 138.866670 35.100000 +G1855207 Nishinomiya 135.333330 34.716670 +G1855431 Niigata-shi 139.023610 37.902220 +G1855503 Nerima 139.650000 35.733330 +G1855612 Nara-shi 135.804850 34.685050 +G1856035 Naha-shi 127.681110 26.212500 +G1856057 Nagoya-shi 136.906410 35.181470 +G1856177 Nagasaki-shi 129.873610 32.744720 +G1856184 Nagareyama 139.902660 35.856300 +G1856199 Nagaoka 138.850000 37.450000 +G1856215 Nagano-shi 138.181110 36.651390 +G1856717 Miyazaki-shi 131.423890 31.911110 +G1856942 Mitaka-shi 139.559630 35.683510 +G1857144 Minami-rinkan 139.450000 35.483330 +G1857519 Matsumoto 137.966670 36.233330 +G1857550 Matsue-shi 133.050560 35.472220 +G1857553 Matsudo 139.900000 35.783330 +G1857843 Maebashi-shi 139.060830 36.391110 +G1857871 Machida 139.450830 35.540280 +G1857910 Kyoto 135.753850 35.021070 +G1858088 Kurume 130.516670 33.316670 +G1858296 Kure 132.566670 34.233330 +G1858311 Kurashiki 133.766670 34.583330 +G1858421 Kumamoto-shi 130.741670 32.789720 +G1858428 Kumagaya 139.383330 36.133330 +G1858729 Koshigaya 139.783330 35.883330 +G1858926 Komaki 136.916670 35.283330 +G1859100 Kōfu-shi 138.568330 35.663890 +G1859116 Kodaira 139.483890 35.726390 +G1859146 Kōchi-shi 133.531110 33.559720 +G1859171 Kōbe-shi 135.183000 34.691300 +G1859307 Kitakyūshū 130.833330 33.833330 +G1859383 Kishiwada 135.366670 34.466670 +G1859642 Kawasaki 139.717220 35.520560 +G1859675 Kawanishi 135.416670 34.816670 +G1859730 Kawaguchi 139.720560 35.805000 +G1859740 Kawagoe 139.485280 35.908610 +G1859884 Kasukabe 139.753610 35.976390 +G1859891 Kasugai 136.972290 35.247620 +G1859924 Kashiwa 139.968890 35.854440 +G1860243 Kanazawa-shi 136.625560 36.594440 +G1860437 Kami-renjaku 139.550000 35.683330 +G1860672 Kamakura 139.550280 35.308890 +G1860704 Kakogawa 134.850000 34.766670 +G1860827 Kagoshima-shi 130.558140 31.560180 +G1861107 Izumi 135.433330 34.483330 +G1861310 Itami 135.401260 34.784270 +G1861949 Ichinomiya 136.800000 35.300000 +G1861968 Ichikawa 139.924720 35.719720 +G1862033 Ibaraki 135.568280 34.816410 +G1862415 Hiroshima-shi 132.459370 34.396270 +G1862462 Hiratsuka 139.342220 35.323060 +G1862540 Hirakata 135.649140 34.813520 +G1862599 Hino 139.400280 35.673060 +G1862627 Himeji 134.700000 34.816670 +G1863289 Hamamatsu 137.733330 34.700000 +G1863431 Hadano 139.223610 35.371110 +G1863440 Hachiōji 139.323890 35.655830 +G1863641 Gifu-shi 136.760390 35.422910 +G1863905 Funabashi 139.983330 35.693060 +G1863917 Fukuyama 133.366670 34.483330 +G1863967 Fukuoka-shi 130.418060 33.606390 +G1863985 Fukui-shi 136.222570 36.064430 +G1864092 Fujisawa 139.470000 35.341940 +G1864134 Fuji 138.683330 35.166670 +G1864154 Fuchū 139.483330 35.666670 +G1864518 Chōfu 139.552220 35.655560 +G1864624 Chigasaki 139.403890 35.326110 +G1865005 Ashikaga 139.450000 36.333330 +G1865294 Anjō 137.080540 34.958280 +G1865387 Amagasaki 135.416670 34.716670 +G1865714 Ageo 139.588610 35.969720 +G1907146 Sayama 139.412120 35.852950 +G1926004 Wakayama-shi 135.167500 34.226110 +G1926099 Matsuyama-shi 132.765740 33.839160 +G2110556 Yamagata-shi 140.363330 38.240560 +G2110683 Tsukuba 140.100000 36.200000 +G2111149 Sendai-shi 140.871940 38.268890 +G2111220 Sakura 140.233330 35.716670 +G2111687 Narashino 140.033330 35.683330 +G2111834 Morioka-shi 141.152500 39.703610 +G2111901 Mito-shi 140.446670 36.341390 +G2112141 Kōriyama 140.383330 37.400000 +G2112312 Katsuta 140.533330 36.383330 +G2112539 Iwaki 140.883330 37.050000 +G2112664 Ichihara 140.083330 35.516670 +G2112708 Hitachi 140.650000 36.600000 +G2112923 Fukushima-shi 140.467780 37.750000 +G2113015 Chiba-shi 140.123330 35.604720 +G2113126 Akita 140.116670 39.716670 +G2113719 Akita-shi 140.103330 39.718060 +G2127733 Tomakomai 141.603330 42.636940 +G2128295 Sapporo-shi 141.346940 43.064170 +G2128815 Obihiro 143.204440 42.917220 +G2129376 Kushiro 144.374720 42.975000 +G2130057 Hirosaki 140.472500 40.593060 +G2130188 Hakodate 140.736670 41.775830 +G2130203 Hachinohe 141.500000 40.500000 +G2130629 Asahikawa 142.370280 43.767780 +G2130658 Aomori-shi 140.740000 40.824440 +G6697563 Neyagawa 135.627590 34.766150 +G6822096 Hitachi-Naka 140.534790 36.396590 +G6825489 Jōetsu 138.236420 37.148280 +G6940394 Saitama 139.656570 35.908070 +G7279570 Higashimurayama-shi 139.468520 35.754590 +G184622 Nakuru 36.066670 -0.283330 +G184745 Nairobi 36.816670 -1.283330 +G186301 Mombasa 39.660500 -4.055000 +G191245 Kisumu 34.750000 -0.100000 +G198629 Eldoret 35.269920 0.520360 +G1527534 Osh 72.790000 40.529440 +G1528675 Bishkek 74.590000 42.870000 +G1821306 Phnom Penh 104.916010 11.562450 +G1831142 Sihanoukville 103.529580 10.609320 +G1831797 Bătdâmbâng 103.198220 13.102710 +G1866923 Wŏnsan 127.443610 39.152780 +G1869446 Songnim 125.645000 38.754170 +G1870883 Sariwŏn 125.755830 38.507220 +G1871859 Pyongyang 125.754320 39.033850 +G1873757 Namp’o 125.407780 38.737500 +G1876373 Kaesŏng 126.554440 37.970830 +G1877030 Hŭngnam 127.618610 39.831670 +G1877449 Hamhŭng 127.536390 39.918330 +G1877615 Haeju 125.714720 38.040560 +G2040893 Sinŭiju 124.398060 40.100560 +G2043572 Kanggye-si 126.585230 40.969460 +G2044757 Ch’ŏngjin 129.775830 41.795560 +G1832157 Yŏsu 127.737780 34.744170 +G1832847 Yangju 127.061690 37.833110 +G1833105 Wŏnju 127.945280 37.351390 +G1833747 Ulsan 129.316670 35.537220 +G1833788 Ŭijŏngbu 127.047400 37.741500 +G1835235 Taejŏn 127.419720 36.321390 +G1835329 Taegu 128.591110 35.870280 +G1835553 Suwŏn 127.008890 37.291110 +G1835648 Sunch’ŏn 127.489470 34.948080 +G1835848 Seoul 126.977830 37.568260 +G1838524 Pusan 129.040280 35.102780 +G1838716 Puch’ŏn 126.783060 37.498890 +G1839071 P’ohang 129.365000 36.032220 +G1839652 Osan 127.070560 37.152220 +G1841066 Mokp’o 126.388610 34.793610 +G1841245 Masan 128.572500 35.208060 +G1841603 Kyŏngju 129.211670 35.842780 +G1841811 Kwangju 126.915560 35.154720 +G1841988 Kuri 127.139400 37.598600 +G1842025 Kunsan 126.711390 35.978610 +G1842225 Kumi 128.336000 36.113600 +G1842485 Goyang 126.835000 37.656390 +G1842943 Kimhae 128.881110 35.234170 +G1843137 Kangnŭng 128.896110 37.755560 +G1843491 Iksan 126.954440 35.943890 +G1843564 Inch’ŏn 126.731670 37.453610 +G1843702 Ich'ŏn 127.442500 37.279170 +G1843847 Hwaseong 126.816900 37.206820 +G1845136 Ch’unch’ŏn 127.734170 37.874720 +G1845457 Chŏnju 127.148890 35.821940 +G1845604 Ch’ŏngju 127.489720 36.637220 +G1845759 Ch’ŏnan 127.152200 36.806500 +G1846052 Chinju 128.084720 35.192780 +G1846266 Cheju 126.521940 33.509720 +G1846326 Ch’angwŏn 128.681110 35.228060 +G1846898 Anyang 126.926940 37.392500 +G1846918 Ansan 126.821940 37.323610 +G1897000 Sŏngnam 127.137780 37.438610 +G1948005 Kwangmyŏng 126.866390 37.477220 +G608668 Oral 51.366670 51.233330 +G609655 Karagandy 54.866670 50.066670 +G610529 Atyrau 51.883330 47.116670 +G610611 Aqtöbe 57.207180 50.279690 +G1516905 Taraz 71.366670 42.900000 +G1518262 Temirtau 72.948330 50.054440 +G1518543 Taldyqorghan 77.916670 45.000000 +G1518980 Shymkent 69.600000 42.300000 +G1519422 Semey 80.227500 50.411110 +G1519922 Qyzylorda 65.509170 44.852780 +G1519928 Qostanay 63.583330 53.166670 +G1519942 Qaraghandy 73.099440 49.798890 +G1520172 Petropavlovsk 69.162780 54.875280 +G1520240 Pavlodar 76.950000 52.300000 +G1520316 Ust’-Kamenogorsk 82.610280 49.978890 +G1526273 Astana 71.445980 51.180100 +G1526384 Almaty 76.950000 43.250000 +G1651944 Vientiane 102.600000 17.966670 +G266826 Tripoli 35.849720 34.436670 +G268064 Sidon 35.368890 33.563060 +G268743 Ra’s Bayrūt 35.483330 33.900000 +G276781 Beirut 35.494420 33.888940 +G1234633 Moratuwa 79.881600 6.773000 +G1242833 Jaffna 80.013700 9.656700 +G1246321 Galkissa 79.863000 6.829300 +G1248991 Colombo 79.847780 6.931940 +G2274895 Monrovia -10.796900 6.300540 +G593116 Vilnius 25.279800 54.689160 +G598098 Klaipėda 21.117500 55.717220 +G598316 Kaunas 23.900000 54.900000 +G456172 Riga 24.105890 56.946000 +G88319 Banghāzī 20.066670 32.116670 +G89055 Al Bayḑā’ 21.755060 32.762720 +G2210221 Tarhūnah 13.633200 32.435020 +G2210247 Tripoli 13.187460 32.875190 +G2214846 Mişrātah 15.092540 32.375350 +G2216885 Ḩārat az Zāwiyah 12.715000 32.763060 +G2219905 Al Khums 14.266670 32.650000 +G2528910 Tétouan -5.372420 35.571090 +G2530335 Tangier -5.813650 35.780580 +G2537763 Salé -6.816600 34.038920 +G2537881 Safi -9.237180 32.299390 +G2538475 Rabat -6.832550 34.013250 +G2540483 Oujda -1.907640 34.680520 +G2542051 Mohammedia -7.394420 33.706590 +G2542715 Meknès -5.547270 33.893520 +G2542997 Marrakech -8.008280 31.631480 +G2544248 Khouribga -6.906300 32.881080 +G2544571 Kenitra -6.580200 34.261010 +G2548885 Fès -4.999800 34.037150 +G2553604 Casablanca -7.619160 33.592780 +G2555745 Beni Mellal -6.349840 32.337250 +G2561668 Agadir -9.598150 30.420180 +G617239 Tiraspol 29.643330 46.840280 +G618426 Chişinău 28.857500 47.005560 +G1053384 Toamasina 49.383330 -18.166670 +G1062663 Mahajanga 46.316670 -15.716670 +G1064890 Fianarantsoa 47.083330 -21.433330 +G1070940 Antananarivo 47.530980 -18.914330 +G785842 Skopje 21.433330 42.000000 +G2460596 Bamako -8.000000 12.650000 +G1293960 Taunggyi 97.033330 20.783330 +G1295765 Akyab 92.900000 20.150000 +G1298824 Rangoon 96.156110 16.805280 +G1300466 Bago 96.479720 17.336670 +G1308465 Mawlamyine 97.625560 16.491390 +G1308522 Monywa 95.133330 22.116670 +G1309611 Myeik 98.600000 12.433330 +G1309793 Meiktila 95.866670 20.866670 +G1311874 Mandalay 96.083590 21.974730 +G1328421 Pathein 94.733330 16.783330 +G6611854 Nay Pyi Taw 96.129720 19.745000 +G2028462 Ulaanbaatar 106.883240 47.907710 +G1821274 Macau 113.546110 22.200560 +G2377450 Nouakchott -15.949750 18.100330 +G934154 Port Louis 57.498890 -20.161940 +G927967 Lilongwe 33.783330 -13.983330 +G931755 Blantyre 35.013870 -15.786820 +G3514450 Xochimilco -99.107500 19.262220 +G3514519 Xico -98.933330 19.266670 +G3514663 Alvaro Obregón -99.225000 19.373330 +G3514670 Villahermosa -92.916670 17.983330 +G3514674 Gustavo A. Madero -99.095830 19.478610 +G3514783 Veracruz -96.133330 19.200000 +G3515001 Tuxtla Gutiérrez -93.116670 16.750000 +G3515302 Toluca -99.667220 19.288330 +G3515428 Tlalpan -99.166670 19.283330 +G3515431 Tlalnepantla -99.221670 19.526940 +G3515463 Tlahuac -99.003330 19.281670 +G3515807 Cuautitlán Izcalli -99.246670 19.646940 +G3516109 Tehuacán -97.383330 18.450000 +G3516266 Tapachula -92.283330 14.900000 +G3516355 Tampico -97.850000 22.216670 +G3518135 San Pablo de las Salinas -99.096390 19.665830 +G3520339 Reynosa -98.283330 26.083330 +G3521081 Puebla de Zaragoza -98.200000 19.050000 +G3521168 Poza Rica de Hidalgo -97.459460 20.533150 +G3522210 Pachuca de Soto -98.733290 20.116970 +G3522507 Oaxaca de Juárez -96.716670 17.050000 +G3522551 Nuevo Laredo -99.516670 27.500000 +G3522732 Nicolás Romero -99.313060 19.621940 +G3522790 Naucalpan de Juárez -99.239630 19.478510 +G3523183 Minatitlán -94.516670 17.983330 +G3523303 Metepec -99.607780 19.253610 +G3523349 Mérida -89.616670 20.966670 +G3523466 Heroica Matamoros -97.500000 25.883330 +G3523760 Magdalena Contreras -99.233330 19.283330 +G3523908 Los Reyes -98.966670 19.350000 +G3526485 Jiutepec -99.183330 18.866670 +G3526617 Jalapa Enríquez -96.916670 19.533330 +G3526682 Ixtapaluca -98.883330 19.316670 +G3526683 Iztapalapa -99.051940 19.351110 +G3526700 Iztacalco -99.084720 19.396670 +G3529612 Ecatepec -99.052500 19.601110 +G3529947 Cuernavaca -99.250000 18.916670 +G3530049 Cuajimalpa -99.301110 19.355830 +G3530139 Coyoacán -99.160280 19.328890 +G3530517 Coatzacoalcos -94.416670 18.150000 +G3530569 Coacalco -99.110280 19.631670 +G3530580 Ciudad Victoria -99.133330 23.733330 +G3530589 Ciudad Nezahualcóyotl -99.033060 19.413610 +G3530594 Ciudad Madero -97.833330 22.266670 +G3530597 Mexico City -99.127660 19.428470 +G3530757 Cholula -98.303520 19.064060 +G3530870 Chilpancingo de los Bravos -99.500000 17.550000 +G3531200 Chalco de Díaz Covarrubias -98.900000 19.266670 +G3531673 Cancún -86.846560 21.174290 +G3531732 Campeche -90.533330 19.850000 +G3532497 Azcapotzalco -99.183610 19.488890 +G3532624 Ciudad López Mateos -99.261390 19.558330 +G3533462 Acapulco de Juárez -99.890100 16.863360 +G3827406 Benito Juarez -99.165000 19.385000 +G3827407 Venustiano Carranza -99.099170 19.430000 +G3827408 Miguel Hidalgo -99.202780 19.422500 +G3827409 Cuauhtémoc -99.156940 19.417220 +G3979770 Zapopan -103.400000 20.716670 +G3980760 Uruapan del Progreso -102.066670 19.416670 +G3981254 Torreón -103.433330 25.550000 +G3981369 Tonalá -103.233330 20.616670 +G3981461 Tlaquepaque -103.316670 20.650000 +G3981609 Tijuana -117.016670 32.533330 +G3981941 Tepic -104.900000 21.500000 +G3982912 Soledad Díez Gutiérrez -100.950000 22.200000 +G3984583 Santa Catarina -100.458130 25.673250 +G3985241 San Nicolás de los Garza -100.300000 25.750000 +G3985606 San Luis Potosí -100.983330 22.150000 +G3988086 Saltillo -101.000000 25.416670 +G3991164 Querétaro -100.383330 20.600000 +G3991328 Puerto Vallarta -105.230660 20.620410 +G3995402 Morelia -101.184430 19.700780 +G3995465 Monterrey -100.316670 25.666670 +G3995523 Monclova -101.416670 26.900000 +G3996069 Mexicali -115.468330 32.651940 +G3996322 Mazatlán -106.416670 23.216670 +G3997479 Los Mochis -108.966670 25.766670 +G3998655 León -101.666670 21.116670 +G4000900 La Paz -110.300000 24.166670 +G4004330 Irapuato -101.350000 20.683330 +G4004886 Heroica Nogales -110.933330 31.333330 +G4004898 Hermosillo -110.966670 29.066670 +G4005492 Guadalupe -100.250000 25.683330 +G4005539 Guadalajara -103.333330 20.666670 +G4005775 Gómez Palacio -103.500000 25.566670 +G4005867 General Escobedo -100.333330 25.816670 +G4006702 Ensenada -116.616670 31.866670 +G4011743 Durango -104.666670 24.033330 +G4012176 Culiacán -107.389720 24.799440 +G4013704 Ciudad Obregón -109.933330 27.483330 +G4013708 Ciudad Juárez -106.483330 31.733330 +G4014338 Chihuahua -106.083330 28.633330 +G4014875 Celaya -100.816670 20.516670 +G4018390 Apodaca -100.200000 25.766670 +G4019233 Aguascalientes -102.300000 21.883330 +G7280708 Colonia del Valle -99.162040 19.386110 +G1732687 Batu Pahat 102.933330 1.850000 +G1732745 Sekudai 103.666670 1.533330 +G1732752 Johor Bahru 103.757800 1.465500 +G1732811 Kluang 103.332800 2.025100 +G1732903 Shah Alam 101.532810 3.085070 +G1732905 Klang 101.450000 3.033330 +G1733432 Kota Kinabalu 116.066670 5.983330 +G1734052 Sandakan 118.117900 5.840200 +G1734199 Tawau 117.900000 4.250000 +G1734393 Kulim 100.561770 5.364990 +G1734586 Taiping 100.733330 4.850000 +G1734634 Ipoh 101.082900 4.584100 +G1734705 Kuala Terengganu 103.140800 5.330200 +G1734759 Melaka 102.248060 2.196940 +G1734810 Seremban 101.933330 2.716670 +G1735079 Bukit Mertajam 100.466700 5.363010 +G1735106 George Town 100.335430 5.411230 +G1735158 Petaling Jaya 101.606710 3.107260 +G1735161 Kuala Lumpur 101.686530 3.141200 +G1735227 Kuantan 103.326000 3.807700 +G1735498 Sungai Petani 100.487720 5.647000 +G1735634 Kuching 110.333330 1.550000 +G1735902 Sibu 111.816670 2.300000 +G1736309 Alor Setar 100.360140 6.121040 +G1736376 Kota Bharu 102.238600 6.133280 +G1737486 Bintulu 113.033330 3.166670 +G1738050 Miri 113.983330 4.383330 +G1771023 Kampung Baru Subang 101.533330 3.150000 +G1028434 Quelimane 36.888330 -17.878610 +G1033356 Nampula 39.266600 -15.116460 +G1035025 Cidade de Nacala 40.672780 -14.542780 +G1039854 Matola 32.458890 -25.962220 +G1040652 Maputo 32.589170 -25.965280 +G1049261 Chimoio 33.483330 -19.116390 +G1052373 Beira 34.838890 -19.843610 +G3352136 Windhoek 17.083230 -22.559410 +G2437798 Zinder 8.988370 13.804870 +G2440485 Niamey 2.111780 13.512500 +G2441291 Maradi 7.101740 13.500000 +G2317765 Zaria 7.725180 11.113240 +G2319133 Warri 5.750000 5.516670 +G2320576 Umuahia 7.489590 5.526270 +G2320831 Ugep 8.081200 5.808600 +G2322794 Abuja 7.180830 9.175830 +G2322911 Sokoto 5.239020 13.060920 +G2323390 Saki 3.383330 8.666670 +G2323411 Shagamu 3.647760 6.843230 +G2323675 Sapele 5.676660 5.894050 +G2324774 Port Harcourt 7.013400 4.777420 +G2325200 Oyo 3.933330 7.850000 +G2325314 Owo 5.586810 7.196200 +G2325330 Owerri 7.030410 5.483330 +G2326016 Onitsha 6.788450 6.145430 +G2326171 Ondo 4.833330 7.100000 +G2328765 Nnewi 6.914780 6.019860 +G2329821 Mubi 13.264360 10.267610 +G2330100 Minna 6.556940 9.613890 +G2331140 Makurdi 8.512100 7.741100 +G2331447 Maiduguri 13.160270 11.846440 +G2332459 Lagos 3.395830 6.453060 +G2334327 Kishi 3.850000 9.083330 +G2334802 Katsina 7.600630 12.989430 +G2335204 Kano 8.513810 11.994350 +G2335727 Kaduna 7.438280 10.522240 +G2335953 Jos 8.900000 9.916670 +G2336056 Jimeta 12.466670 9.283330 +G2336905 Iwo 4.183330 7.633330 +G2337207 Ise-Ekiti 5.428100 7.463200 +G2337490 Inisa 4.333330 7.850000 +G2337639 Ilorin 4.550000 8.500000 +G2337704 Ilesa 4.733330 7.616670 +G2337765 Ila Orangun 4.900000 8.016670 +G2338106 Ikot-Ekpene 7.710820 5.179380 +G2338273 Ikire 4.183330 7.350000 +G2338385 Ijero-Ekiti 5.074200 7.813900 +G2338400 Ijebu-Ode 3.915880 6.816090 +G2339354 Ibadan 3.896390 7.387780 +G2339937 Gusau 6.661350 12.162780 +G2340451 Gombe 11.167290 10.289690 +G2343279 Enugu 7.494300 6.440200 +G2343983 Effon Alaiye 4.916670 7.650000 +G2344082 Ebute Ikorodu 3.488180 6.600860 +G2345521 Damaturu 11.960800 11.747000 +G2346229 Calabar 8.322000 4.951700 +G2347209 Bida 6.016670 9.083330 +G2347283 Benin City 5.627490 6.335040 +G2347470 Bauchi 9.843270 10.313440 +G2348773 Awka 7.074110 6.210090 +G2350841 Akure 5.193120 7.252560 +G2352778 Abuja 7.489760 9.057350 +G2352947 Abeokuta 3.350000 7.150000 +G2353151 Aba 7.366670 5.106580 +G3617763 Managua -86.250400 12.132820 +G2745912 Utrecht 5.122220 52.090830 +G2746301 Tilburg 5.091300 51.555510 +G2747373 Den Haag 4.298610 52.076670 +G2747891 Rotterdam 4.479170 51.922500 +G2750053 Nijmegen 5.852780 51.842500 +G2755251 Groningen 6.566670 53.219170 +G2756071 Enschede 6.895830 52.218330 +G2756253 Eindhoven 5.477780 51.440830 +G2758401 Breda 4.775960 51.586560 +G2759794 Amsterdam 4.889690 52.374030 +G2759879 Almere Stad 5.214130 52.370250 +G3143244 Oslo 10.746090 59.912730 +G3161732 Bergen 5.324150 60.392990 +G1282898 Pokhara 83.968510 28.266890 +G1282931 Pātan 85.333330 27.666670 +G1283240 Kathmandu 85.320600 27.701690 +G1283582 Birātnagar 87.283370 26.483100 +G2179537 Wellington 174.775570 -41.286640 +G2185964 North Shore 174.750000 -36.800000 +G2187404 Manukau City 174.879860 -36.992820 +G2190324 Hamilton 175.283330 -37.783330 +G2192362 Christchurch 172.633330 -43.533330 +G2193733 Auckland 174.766670 -36.866670 +G7302484 Waitakere 174.657730 -36.917540 +G286621 Şalālah 54.092370 17.015050 +G287286 Muscat 58.593330 23.613330 +G288764 Bawshar 58.410630 23.558270 +G288967 As Sīb 58.182500 23.680280 +G3701329 San Miguelito -79.500000 9.033330 +G3703443 Panamá -79.519730 8.993600 +G3691175 Trujillo -79.029980 -8.115990 +G3691674 Sullana -80.685280 -4.903890 +G3693345 Pucallpa -74.553870 -8.379150 +G3693528 Piura -80.633330 -5.200000 +G3696183 Iquitos -73.247220 -3.748060 +G3698304 Chimbote -78.578330 -9.085280 +G3698350 Chiclayo -79.841670 -6.773610 +G3928128 Tacna -70.248330 -18.005560 +G3936456 Lima -77.028240 -12.043180 +G3937513 Juliaca -70.133330 -15.500000 +G3938527 Ica -75.730830 -14.065280 +G3939459 Huancayo -75.233330 -12.066670 +G3941584 Cusco -71.978060 -13.518330 +G3943789 Chincha Alta -76.132350 -13.409850 +G3946083 Callao -77.150000 -12.066670 +G3947322 Arequipa -71.535000 -16.398890 +G2088122 Port Moresby 147.179720 -9.443140 +G1679432 Zamboanga 122.073890 6.910280 +G1681602 Toledo 123.641940 10.379170 +G1682598 Taytay 121.139400 14.567800 +G1682812 Tarlac 120.598610 15.488890 +G1687687 Santol 120.567500 15.162220 +G1687894 Santa Rosa 121.111390 14.312220 +G1688749 San Pedro 121.047300 14.359500 +G1688830 San Pablo 121.325830 14.066940 +G1689395 San Jose del Monte 121.045280 14.813890 +G1690039 San Fernando 120.689800 15.028600 +G1692685 Puerto Princesa 118.735280 9.739170 +G1695743 Panalanoy 125.006390 11.251110 +G1697175 Olongapo 120.282780 14.829170 +G1699802 Meycauayan 120.960830 14.736940 +G1701472 Mantampay 124.216670 8.166670 +G1701500 Mansilingan 122.978890 10.631110 +G1701668 Manila 120.982200 14.604200 +G1701947 Mandaue City 123.922220 10.323610 +G1702540 Malolos 120.811670 14.841940 +G1704703 Mabalacat 120.573600 15.221600 +G1705357 Lucena 121.617220 13.931390 +G1706090 Lipa 121.173890 13.939440 +G1706684 Libertad 125.501940 8.944170 +G1706889 Legaspi 123.734440 13.137220 +G1707267 Lapu-Lapu City 123.949440 10.310280 +G1710914 Imus 120.936670 14.429720 +G1711005 Iloilo 122.564440 10.696940 +G1711082 Iligan City 124.400000 8.250000 +G1712051 Guyong 120.979720 14.838610 +G1715348 Davao 125.612780 7.073060 +G1715430 Dasmariñas 120.936670 14.329440 +G1716771 Cotabato 124.246390 7.223610 +G1717512 Cebu City 123.890710 10.316720 +G1720681 Calamba 121.165280 14.211670 +G1720840 Cainta 121.122200 14.578600 +G1721080 Cagayan de Oro 124.647220 8.482220 +G1721906 Cabanatuan 120.967500 15.486940 +G1725094 Binangonan 121.192900 14.464600 +G1726280 Batangas 121.060000 13.759440 +G1728930 Baguio 120.593060 16.416390 +G1729085 Bago City 122.833330 10.533330 +G1729524 Bacoor 120.942500 14.457780 +G1729564 Bacolod City 122.950000 10.666670 +G1730501 Antipolo 121.175280 14.586390 +G1730737 Angeles City 120.583330 15.150000 +G1164408 Sukkur 68.866670 27.700000 +G1164909 Siālkot 74.543130 32.510100 +G1165108 Shikārpur 68.637890 27.957060 +G1165221 Sheikhupura 73.978330 31.713060 +G1166000 Sargodha 72.671110 32.083610 +G1166548 Montgomery 73.100000 30.666670 +G1166652 Sādiqābād 70.133330 28.300000 +G1166993 Rāwalpindi 73.067900 33.600700 +G1167528 Quetta 67.012500 30.187220 +G1168197 Peshāwar 71.580180 34.008370 +G1168718 Okāra 73.445830 30.808060 +G1169116 Nawābshāh 68.410520 26.252890 +G1169605 Muzaffargarh 71.192130 30.075370 +G1169692 Murīdke 74.261670 31.802500 +G1169825 Multān 71.475280 30.195560 +G1170295 Mīrpur Khās 69.015900 25.525100 +G1170395 Mingāora 72.362200 34.775000 +G1170880 Mardān 72.045830 34.198330 +G1172128 Lārkāna 68.216670 27.550000 +G1172451 Lahore 74.343610 31.549720 +G1173055 Kotli 73.916670 33.516670 +G1173491 Kohāt 71.442220 33.586940 +G1174625 Kasūr 74.446670 31.115560 +G1174872 Karachi 67.082200 24.905600 +G1175088 Kamoke 74.224440 31.974440 +G1175864 Jhelum 73.726370 32.933130 +G1175892 Jhang Sadr 72.316040 31.273960 +G1176515 Jacobābād 68.433160 28.286730 +G1176615 Islāmābād 73.043290 33.721480 +G1176734 Hyderābād 68.369900 25.382300 +G1177384 Hāfizābād 73.685450 32.067860 +G1177654 Gujrāt 74.089590 32.572760 +G1177662 Gujrānwāla 74.188310 32.161670 +G1179400 Faisalābād 73.083330 31.416670 +G1180289 Dera Ghāzi Khān 70.634770 30.056140 +G1181096 Chiniot 72.978890 31.720000 +G1182092 Būrewāla 72.650000 30.166670 +G1182637 Bhimbar 74.079260 32.975680 +G1183880 Bahāwalpur 71.683330 29.400000 +G756135 Warsaw 21.011780 52.229770 +G759734 Rzeszów 21.999010 50.041320 +G760778 Radom 21.147140 51.402530 +G763166 Olsztyn 20.483330 53.783330 +G765876 Lublin 22.566670 51.250000 +G769250 Kielce 20.627520 50.870330 +G776069 Białystok 23.150000 53.133330 +G3080985 Zabrze 18.785760 50.324920 +G3081368 Wrocław 17.033330 51.100000 +G3083271 Toruń 18.598140 53.013750 +G3083829 Szczecin 14.553020 53.428940 +G3085128 Sosnowiec 19.103850 50.286820 +G3088171 Poznań 16.966670 52.416670 +G3093133 Litzmannstadt 19.466670 51.750000 +G3094802 Kraków 19.916670 50.083330 +G3096472 Katowice 19.016670 50.266670 +G3099230 Gliwice 18.666670 50.283330 +G3099424 Gdynia 18.531880 54.518890 +G3099434 Gdańsk 18.646370 54.352050 +G3100946 Częstochowa 19.124090 50.796460 +G3101950 Bytom 18.966670 50.350000 +G3102014 Bydgoszcz 18.007620 53.123500 +G3103402 Bielsko-Biała 19.033330 49.816670 +G4562831 Bayamón -66.155720 18.398560 +G4563243 Carolina -65.957390 18.380780 +G4566880 Ponce -66.614060 18.011080 +G4568127 San Juan -66.105720 18.466330 +G281124 Khān Yūnis 34.306270 31.340180 +G281129 Jabālyā 34.486340 31.527220 +G281133 Gaza 34.466670 31.500000 +G285066 Hebron 35.100000 31.533330 +G7303419 East Jerusalem 35.233880 31.783360 +G2267057 Lisbon -9.133330 38.716670 +G2271772 Amadora -9.230830 38.753820 +G2735943 Porto -8.616670 41.150000 +G3437056 San Lorenzo -57.533330 -25.333330 +G3439214 Capiatá -57.416670 -25.350000 +G3439389 Asunción -57.635910 -25.300660 +G289888 Ar Rayyān 51.424440 25.291940 +G290030 Doha 51.522450 25.279320 +G665087 Timişoara 21.227220 45.749440 +G667268 Sibiu 24.150000 45.800000 +G670474 Ploieşti 26.016670 44.950000 +G670609 Piteşti 24.866670 44.850000 +G671768 Oradea 21.933330 47.066670 +G675810 Iaşi 27.600000 47.166670 +G677697 Galaţi 28.050000 45.450000 +G680332 Craiova 23.800000 44.316670 +G680963 Constanţa 28.650000 44.183330 +G681290 Cluj-Napoca 23.600000 46.766670 +G683506 Bucureşti 26.106260 44.432250 +G683844 Braşov 25.606130 45.648610 +G683902 Brăila 27.983330 45.266670 +G685948 Bacău 26.900000 46.566670 +G686254 Arad 21.316670 46.183330 +G783920 Zemun 20.401110 44.843060 +G787657 Niš 21.903330 43.324720 +G792680 Belgrade 20.465130 44.804010 +G3194360 Novi Sad 19.836940 45.251670 +G462444 Zlatoust 59.650830 55.171110 +G463829 Zelenograd 37.181390 55.982500 +G466806 Yoshkar-Ola 47.890780 56.638770 +G468902 Yaroslavl' 39.873680 57.629870 +G472045 Voronezh 39.192270 51.669900 +G472231 Volzhskiy 44.771670 48.790560 +G472459 Vologda 39.888600 59.218700 +G472757 Volgograd 44.585830 48.804720 +G472761 Volgodonsk 42.151390 47.513610 +G473247 Vladimir 40.398060 56.142780 +G473249 Vladikavkaz 44.667780 43.036670 +G479123 Ul'yanovsk 48.400000 54.333330 +G479561 Ufa 56.037500 54.775000 +G480060 Tver' 35.893060 56.861940 +G480562 Tula 37.611110 54.204440 +G482283 Tol’yatti 49.412500 53.523330 +G484646 Tambov 41.433890 52.731670 +G484907 Taganrog 38.890800 47.227300 +G484972 Syzran’ 48.474440 53.173060 +G485239 Syktyvkar 50.812220 61.666670 +G487495 Sterlitamak 55.954300 53.629500 +G487846 Stavropol’ 41.973330 45.042780 +G487928 Staryy Oskol 37.841670 51.296670 +G491422 Sochi 39.730280 43.600000 +G491687 Smolensk 32.040100 54.781800 +G496015 Shakhty 40.205830 47.712220 +G496285 Severodvinsk 39.847500 64.572220 +G498677 Saratov 46.033330 51.566670 +G498698 Saransk 45.174900 54.183800 +G498817 Saint Petersburg 30.264170 59.894440 +G499099 Samara 50.150000 53.200000 +G499292 Salavat 55.936500 53.358000 +G500004 Rybinsk 38.842590 58.044600 +G500096 Ryazan’ 39.691600 54.626900 +G501175 Rostov-na-Donu 39.713890 47.236390 +G504341 Pskov 28.349600 57.813600 +G508101 Podol’sk 37.544170 55.423890 +G509820 Petrozavodsk 34.346910 61.784910 +G511196 Perm’ 56.250000 58.000000 +G511565 Penza 45.000000 53.194400 +G514734 Orsk 58.570000 51.225280 +G515003 Orenburg 55.098800 51.772700 +G515012 Orël 36.080280 52.965830 +G518255 Novorossiysk 37.770830 44.723890 +G518970 Novocherkassk 40.093890 47.418060 +G519336 Velikiy Novgorod 31.283330 58.516670 +G520494 Nizhniy Tagil 59.965000 57.919440 +G520555 Nizhniy Novgorod 44.002050 56.328670 +G521118 Nizhnekamsk 51.822100 55.637600 +G523064 Nazran’ 44.765000 43.226110 +G523523 Nal’chik 43.618890 43.498060 +G523750 Naberezhnyye Chelny 52.410100 55.735400 +G523812 Mytishchi 37.730760 55.911630 +G524305 Murmansk 33.081940 68.971670 +G524901 Moscow 37.615560 55.752220 +G528293 Maykop 40.105830 44.607780 +G532096 Makhachkala 47.502220 42.975280 +G532288 Magnitogorsk 59.047220 53.418610 +G532615 Lyubertsy 37.893220 55.677190 +G535121 Lipetsk 39.574500 52.599500 +G538560 Kursk 36.193890 51.730280 +G542420 Krasnodar 38.972500 45.048800 +G543460 Kovrov 41.319170 56.357220 +G543878 Kostroma 40.926110 57.767220 +G548408 Kirov 49.658330 58.596940 +G551487 Kazan’ 49.124800 55.787700 +G553915 Kaluga 36.275420 54.529300 +G554234 Kaliningrad 20.500000 54.710000 +G554840 Izhevsk 53.233330 56.850000 +G555312 Ivanovo 40.985830 56.994170 +G558418 Groznyy 45.700280 43.308330 +G563464 Engel's 46.116670 51.500000 +G563708 Dzerzhinsk 43.463060 56.238890 +G569223 Cherepovets 37.900000 59.133330 +G569696 Cheboksary 47.251940 56.132220 +G571476 Bryansk 34.380560 53.287500 +G577206 Berezniki 56.794720 59.409720 +G578072 Belgorod 36.587000 50.603000 +G579464 Balashikha 37.958060 55.809450 +G579492 Balakovo 47.794110 52.024660 +G580497 Astrakhan’ 48.049170 46.349440 +G580922 Armavir 41.120280 44.989720 +G581049 Arkhangel’sk 40.548610 64.547220 +G1486209 Yekaterinburg 60.612500 56.857500 +G1488754 Tyumen’ 65.527220 57.152220 +G1489425 Tomsk 84.966670 56.500000 +G1490624 Surgut 73.416670 61.250000 +G1493467 Rubtsovsk 81.250000 51.500000 +G1494114 Prokop’yevsk 86.719000 53.905900 +G1496153 Omsk 73.400000 55.000000 +G1496747 Novosibirsk 82.934440 55.041110 +G1496990 Novokuznetsk 87.109900 53.755700 +G1497543 Nizhnevartovsk 76.553100 60.934400 +G1498894 Miass 60.108330 55.045000 +G1501321 Kurgan 65.333330 55.450000 +G1502026 Krasnoyarsk 92.791670 56.009720 +G1503901 Kemerovo 86.083330 55.333330 +G1504826 Kamensk-Ural’skiy 61.925870 56.413310 +G1508291 Chelyabinsk 61.429720 55.154440 +G1510018 Biysk 85.207220 52.536390 +G1510853 Barnaul 83.763610 53.360560 +G1512236 Abakan 91.429170 53.715560 +G2013159 Yakutsk 129.733060 62.033890 +G2013348 Vladivostok 131.873530 43.105620 +G2014006 Ussuriysk 132.009440 43.802500 +G2014407 Ulan-Ude 107.609790 51.826050 +G2021851 Komsomol’sk-na-Amure 137.015240 50.551990 +G2022890 Khabarovsk 135.092780 48.480830 +G2023469 Irkutsk 104.296390 52.297780 +G2025339 Chita 113.550000 52.033330 +G2026609 Blagoveshchensk 127.533330 50.266670 +G2027667 Angarsk 103.886390 52.536670 +G2051523 Bratsk 101.614170 56.132500 +G2056752 Khabarovsk Vtoroy 135.135560 48.443060 +G2119441 Yuzhno-Sakhalinsk 142.733660 46.958120 +G2122104 Petropavlovsk-Kamchatskiy 158.648300 53.045200 +G202061 Kigali 30.058850 -1.949950 +G100425 Yanbu‘ al Baḩr 38.048610 24.085280 +G101628 Tabūk 36.583330 28.383330 +G101760 Sulţānah 39.583330 24.500000 +G103630 Najrān 44.184170 17.505560 +G104515 Mecca 39.826110 21.426670 +G105072 Khamīs Mushayt 42.729170 18.306390 +G105343 Jiddah 39.219170 21.516940 +G106281 Hayil 41.696940 27.516390 +G107304 Buraydah 43.971670 26.331670 +G107968 Tayif 40.415830 21.270280 +G108410 Riyadh 46.721850 24.687730 +G109101 Al Mubarraz 49.580830 25.410000 +G109223 Medina 39.614170 24.468610 +G109323 Al Khubar 50.208330 26.279440 +G109435 Al Jubayl 49.661390 27.004720 +G109571 Al Hufūf 49.586670 25.378330 +G110336 Ad Dammām 50.114170 26.425830 +G110690 Abhā 42.505280 18.216390 +G364103 Wad Medani 33.498900 14.405600 +G365137 Omdurman 32.437220 15.636110 +G370737 Malakal 31.656110 9.536940 +G371760 Kūstī 32.666670 13.166670 +G372753 Kassala 36.400100 15.457000 +G373303 Juba 31.582470 4.851650 +G377039 Port Sudan 37.216390 19.615830 +G379003 El Obeid 30.216670 13.183330 +G379252 Khartoum 32.533610 15.546650 +G379303 El Geneina 22.450000 13.450000 +G379555 El Fasher 25.350000 13.633330 +G380174 Ed Damazin 34.359200 11.789100 +G2673730 Stockholm 18.064900 59.332580 +G2692969 Malmö 13.000730 55.605870 +G2711537 Göteborg 11.966790 57.707160 +G1880252 Singapore 103.850070 1.289670 +G3196359 Ljubljana 14.505130 46.051080 +G724443 Košice 21.250000 48.716670 +G3060972 Bratislava 17.106740 48.148160 +G2409306 Freetown -13.229940 8.484000 +G2410048 Bo -11.738330 7.964720 +G2243940 Ziguinchor -16.271940 12.583330 +G2244799 Thiès Nones -16.966670 14.783330 +G2246452 Saint-Louis -16.489620 16.017930 +G2246678 Pikine -17.400000 14.750000 +G2251339 Grand Dakar -17.455280 14.708890 +G2253354 Dakar -17.444060 14.693700 +G53654 Mogadishu 45.343750 2.037110 +G55671 Chisimayu 42.545360 -0.358170 +G56399 Jamaame 42.750560 0.072220 +G57289 Hargeysa 44.065000 9.560000 +G64435 Berbera 45.016390 10.435560 +G3383330 Paramaribo -55.166820 5.866380 +G3583096 Soyapango -89.151390 13.734720 +G3583334 Santa Ana -89.559720 13.994170 +G3583361 San Salvador -89.187180 13.689350 +G3583446 San Miquel -88.183330 13.483330 +G3584399 Mejicanos -89.213060 13.740280 +G169577 Hums 36.723390 34.726820 +G170017 Ḩamāh 36.757830 35.131790 +G170063 Aleppo 37.158610 36.202780 +G170654 Damascus 36.291280 33.510200 +G170794 Dayr az Zawr 40.150000 35.333330 +G172955 Ar Raqqah 39.016670 35.950000 +G173576 Latakia 35.783330 35.516670 +G2427123 N'Djamena 15.034790 12.110580 +G2365267 Lomé 1.212270 6.137480 +G1152473 Lampang 99.492770 18.292320 +G1153671 Chiang Mai 98.984680 18.790380 +G1605239 Udon Thani 102.785890 17.415670 +G1606250 Si Racha 100.931110 13.173720 +G1606590 Samut Prakan 100.596750 13.599340 +G1607508 Phra Pradaeng 100.533620 13.658540 +G1608048 Pak Kret 100.498830 13.913010 +G1608133 Mueang Nonthaburi 100.514770 13.860750 +G1608529 Nakhon Ratchasima 102.101960 14.970660 +G1609350 Bangkok 100.516670 13.750000 +G1610780 Hat Yai 100.476680 7.008360 +G1611110 Chon Buri 100.983450 13.362200 +G1221874 Dushanbe 68.779050 38.535750 +G162183 Ashgabat 58.383330 37.950000 +G601734 Daşoguz 59.966670 41.833330 +G1219649 Türkmenabat 63.575000 39.101390 +G2464470 Tunis 10.165790 36.818970 +G2464915 Sousse 10.636990 35.825390 +G2467454 Sfax 10.760280 34.740560 +G298033 Viranşehir 39.763060 37.235280 +G298117 Van 43.383110 38.492390 +G298299 Uşak 29.405800 38.673510 +G298333 Şanlıurfa 38.793920 37.167080 +G299817 Tarsus 34.878400 36.918760 +G300614 Siverek 39.316670 37.755020 +G300619 Sivas 37.016110 39.748330 +G303195 Osmaniye 36.247780 37.074170 +G304531 Mercin 34.617920 36.795260 +G304827 Manisa 27.426460 38.612020 +G304922 Malatya 38.316670 38.350180 +G305268 Kütahya 29.983330 39.424170 +G306571 Konya 32.482500 37.865560 +G307084 Kızıltepe 40.585000 37.193330 +G307654 Kırıkkale 33.506390 39.845280 +G308464 Kayseri 35.485280 38.732220 +G310859 Kahramanmaraş 36.926400 37.584700 +G311046 İzmir 27.138380 38.412730 +G311073 Isparta 30.552220 37.764440 +G311111 İskenderun 36.173470 36.587180 +G314830 Gaziantep 37.382500 37.059440 +G315202 Eskişehir 30.520560 39.776670 +G315368 Erzurum 41.276940 39.908610 +G315808 Elazığ 39.223210 38.674310 +G316541 Diyarbakır 40.218890 37.915830 +G317109 Denizli 29.087500 37.774170 +G321836 Batman 41.132210 37.887380 +G322165 Balıkesir 27.886110 39.649170 +G322830 Aydın 27.839630 37.845010 +G323777 Antalya 30.689720 36.912500 +G323779 Antioch 36.157220 36.206550 +G323786 Ankara 32.854270 39.919870 +G324496 Aksaray 34.025370 38.372550 +G325330 Adıyaman 38.276290 37.764410 +G325363 Adana 35.328890 37.001670 +G442301 Batikent 32.730830 39.968330 +G737071 Zeytinburnu 28.904170 40.994410 +G738377 Umraniye 29.124760 41.016430 +G738648 Trabzon 39.726940 41.005000 +G739549 Şişli 28.987170 41.060460 +G740264 Samsun 36.330000 41.286670 +G741763 Maltepe 29.155070 40.935670 +G745028 İzmit 29.916940 40.766940 +G745044 İstanbul 28.949660 41.013840 +G747014 Gebze 29.430680 40.802760 +G747323 Esenyurt 28.675280 41.033330 +G747340 Esenler 28.876190 41.043500 +G748879 Çorum 34.953330 40.548890 +G748893 Çorlu 27.800000 41.159170 +G750269 Bursa 29.061110 40.191670 +G751324 Bağcılar 28.856710 41.039030 +G752850 Adapazarı 30.403330 40.780560 +G6947637 Ataşehir 29.116700 40.983300 +G6947639 Başakşehir 28.802030 41.093070 +G6947641 Büyükçekmece 28.585020 41.020720 +G6955677 Çankaya 32.862680 39.917900 +G7627067 Bahçelievler 28.859800 41.002310 +G7628416 Sultangazi 28.868470 41.106520 +G7628419 Sultanbeyli 29.270670 40.960720 +G7628420 Sancaktepe 29.231870 41.002440 +G7701384 Karabağlar 27.135200 38.373960 +G1668341 Taipei 121.531850 25.047760 +G1668399 Taichung 120.683900 24.146900 +G1670029 Banqiao 121.467190 25.014270 +G1673820 Kaohsiung 120.313330 22.616260 +G1674504 Hualian 121.604440 23.976940 +G1675151 Xinzhushi 120.968610 24.803610 +G1678228 Keelung 121.741900 25.128250 +G6695168 Tainan City 120.168110 23.024760 +G6696918 Taoyuan City 121.296960 24.993680 +G148730 Zanzibar 39.197930 -6.163940 +G149606 Tanga 39.100000 -5.066670 +G152224 Mwanza 32.900000 -2.516670 +G153209 Moshi 37.333330 -3.350000 +G153220 Morogoro 37.666670 -6.816670 +G154380 Mbeya 33.450000 -8.900000 +G157738 Kigoma 29.626670 -4.876940 +G160196 Dodoma 35.737920 -6.174860 +G160263 Dar es Salaam 39.269510 -6.823490 +G161325 Arusha 36.683330 -3.366670 +G686967 Zhytomyr 28.666670 50.250000 +G687700 Zaporizhzhya 35.183330 47.816670 +G689558 Vinnytsya 28.483330 49.233330 +G691650 Ternopil’ 25.608750 49.551600 +G692194 Sumy 34.781940 50.919720 +G693805 Simferopol’ 34.105580 44.958440 +G694423 Sevastopol’ 33.522400 44.588830 +G695594 Rivne 26.250000 50.616670 +G696643 Poltava 34.566670 49.583330 +G698740 Odesa 30.732620 46.477470 +G700569 Mykolayiv 32.000000 46.966670 +G701404 Melitopol’ 35.373060 46.842220 +G701822 Mariupol' 37.500000 47.066670 +G702320 Makiyivka 37.966670 48.033330 +G702550 L'viv 24.023240 49.838260 +G702569 Luts’k 25.333330 50.750000 +G702658 Luhans’k 39.333330 48.566670 +G703448 Kiev 30.523800 50.454660 +G703845 Kryvyy Rih 33.350000 47.916670 +G704147 Kremenchuk 33.419720 49.097250 +G704508 Kramators’k 37.533330 48.716670 +G705812 Kirovohrad 32.263060 48.504170 +G706369 Khmel’nyts’kyy 27.000000 49.416670 +G706448 Kherson 32.600000 46.633330 +G706483 Kharkiv 36.250000 50.000000 +G706524 Kerch 36.467980 45.357990 +G707471 Ivano-Frankivs’k 24.709720 48.921500 +G707753 Horlivka 38.050000 48.300000 +G709717 Donets’k 37.800000 48.000000 +G709930 Dnipropetrovsk 34.983330 48.450000 +G709932 Dniprodzerzhyns’k 34.616670 48.500000 +G710719 Chernivtsi 25.933330 48.300000 +G710735 Chernihiv 31.300000 51.500000 +G710791 Cherkasy 32.066670 49.433330 +G712165 Bila Tserkva 30.116670 49.783330 +G232422 Kampala 32.582190 0.316280 +G4049979 Birmingham -86.802490 33.520660 +G4068590 Huntsville -86.586100 34.730370 +G4076598 Mobile -88.043050 30.694360 +G4076784 Montgomery -86.299970 32.366810 +G4119403 Little Rock -92.289590 34.746480 +G4140963 Washington, D. C. -77.036370 38.895110 +G4155966 Fort Lauderdale -80.143380 26.122310 +G4158476 Hialeah -80.278110 25.857600 +G4160021 Jacksonville -81.655650 30.332180 +G4164138 Miami -80.193660 25.774270 +G4167147 Orlando -81.379240 28.538340 +G4171563 Saint Petersburg -82.679270 27.770860 +G4174715 Tallahassee -84.280730 30.438260 +G4174757 Tampa -82.458430 27.947520 +G4180439 Atlanta -84.387980 33.749000 +G4188985 Columbus -84.987710 32.460980 +G4259418 Indianapolis -86.158040 39.768380 +G4281730 Wichita -97.337540 37.692240 +G4297983 Lexington -84.477720 37.988690 +G4297999 Lexington-Fayette -84.458550 38.049800 +G4299276 Louisville -85.759410 38.254240 +G4315588 Baton Rouge -91.154550 30.450750 +G4335045 New Orleans -90.075070 29.954650 +G4341513 Shreveport -93.750180 32.525150 +G4347778 Baltimore -76.612190 39.290380 +G4393217 Kansas City -94.578570 39.099730 +G4407066 Saint Louis -90.197890 38.627270 +G4409896 Springfield -93.298240 37.215330 +G4431410 Jackson -90.184810 32.298760 +G4460243 Charlotte -80.843130 35.227090 +G4464368 Durham -78.898620 35.994030 +G4469146 Greensboro -79.791980 36.072640 +G4487042 Raleigh -78.638610 35.772100 +G4498303 West Raleigh -78.663890 35.786820 +G4499612 Winston-Salem -80.244220 36.099860 +G4508722 Cincinnati -84.456890 39.162000 +G4509177 Columbus -82.998790 39.961180 +G4509884 Dayton -84.191610 39.758950 +G4544349 Oklahoma City -97.516430 35.467560 +G4553433 Tulsa -95.992780 36.153980 +G4560349 Philadelphia -75.163790 39.952340 +G4612862 Chattanooga -85.309680 35.045630 +G4619947 East Chattanooga -85.249120 35.065350 +G4634946 Knoxville -83.920740 35.960640 +G4641239 Memphis -90.048980 35.149530 +G4644585 Nashville -86.784440 36.165890 +G4645421 New South Memphis -90.056760 35.086760 +G4671240 Arlington -97.108070 32.735690 +G4671654 Austin -97.743060 30.267150 +G4676740 Brownsville -97.497480 25.901750 +G4683416 Corpus Christi -97.396380 27.800580 +G4684888 Dallas -96.806670 32.783060 +G4691930 Fort Worth -97.320850 32.725410 +G4693003 Garland -96.638880 32.912620 +G4699066 Houston -95.363270 29.763280 +G4700168 Irving -96.948890 32.814020 +G4705349 Laredo -99.507540 27.506410 +G4719457 Plano -96.698890 33.019840 +G4726206 San Antonio -98.493630 29.424120 +G4744709 Arlington -77.104280 38.881010 +G4752186 Chesapeake -76.274940 36.819040 +G4776024 Newport News -76.428000 36.978760 +G4776222 Norfolk -76.285220 36.846810 +G4781708 Richmond -77.460260 37.553760 +G4791259 Virginia Beach -75.977980 36.852930 +G4853828 Des Moines -93.609110 41.600540 +G4883817 Aurora -88.320070 41.760580 +G4887398 Chicago -87.650050 41.850030 +G4907959 Rockford -89.094000 42.271130 +G4920423 Fort Wayne -85.128860 41.130600 +G4930956 Boston -71.059770 42.358430 +G4951305 South Boston -71.049490 42.333430 +G4951788 Springfield -72.589810 42.101480 +G4956184 Worcester -71.802290 42.262590 +G4990729 Detroit -83.045750 42.331430 +G4994358 Grand Rapids -85.668090 42.963360 +G5037649 Minneapolis -93.263840 44.979970 +G5045360 Saint Paul -93.093270 44.944410 +G5072006 Lincoln -96.666960 40.800000 +G5074472 Omaha -95.937790 41.258610 +G5099836 Jersey City -74.077640 40.728160 +G5101798 Newark -74.172370 40.735660 +G5102466 Paterson -74.171810 40.916770 +G5110302 Brooklyn -73.949580 40.650100 +G5110629 Buffalo -78.878370 42.886450 +G5115985 East New York -73.882360 40.666770 +G5125771 Manhattan -73.966250 40.783430 +G5128581 New York City -74.005970 40.714270 +G5134086 Rochester -77.615560 43.154780 +G5145215 Yonkers -73.898750 40.931210 +G5145476 Akron -81.519010 41.081440 +G5150529 Cleveland -81.695410 41.499500 +G5174035 Toledo -83.555210 41.663940 +G5206379 Pittsburgh -79.995890 40.440620 +G5224151 Providence -71.412830 41.823990 +G5261457 Madison -89.401230 43.073050 +G5263045 Milwaukee -87.906470 43.038900 +G5289282 Chandler -111.841250 33.306160 +G5295903 Gilbert -111.789030 33.352830 +G5295985 Glendale -112.185990 33.538650 +G5304391 Mesa -111.822640 33.422270 +G5308655 Phoenix -112.074040 33.448380 +G5313457 Scottsdale -111.899030 33.509210 +G5317058 Tempe -111.909310 33.414770 +G5317071 Tempe Junction -111.943480 33.414210 +G5318313 Tucson -110.926480 32.221740 +G5323810 Anaheim -117.914500 33.835290 +G5325738 Bakersfield -119.018710 35.373290 +G5336899 Chula Vista -117.084200 32.640050 +G5339631 Corona -117.566440 33.875290 +G5349755 Fontana -117.435050 34.092230 +G5350734 Fremont -121.988570 37.548270 +G5350937 Fresno -119.772370 36.747730 +G5351515 Garden Grove -117.941450 33.773910 +G5352423 Glendale -118.255080 34.142510 +G5357527 Hollywood -118.326740 34.098340 +G5358705 Huntington Beach -117.999230 33.660300 +G5359777 Irvine -117.823110 33.669460 +G5367929 Long Beach -118.189230 33.766960 +G5368361 Los Angeles -118.243680 34.052230 +G5373900 Modesto -120.996880 37.639100 +G5374732 Moreno Valley -117.230590 33.937520 +G5377613 North Glendale -118.264520 34.160560 +G5378538 Oakland -122.270800 37.804370 +G5378771 Oceanside -117.379480 33.195870 +G5379439 Ontario -117.650890 34.063340 +G5380184 Oxnard -119.177050 34.197500 +G5380202 Oxnard Shores -119.241500 34.190840 +G5384170 Pomona -117.752280 34.055290 +G5385955 Rancho Cucamonga -117.593110 34.106400 +G5387877 Riverside -117.396160 33.953350 +G5389489 Sacramento -121.494400 38.581570 +G5391710 San Bernardino -117.289770 34.108340 +G5391811 San Diego -117.157260 32.715330 +G5391959 San Francisco -122.419420 37.774930 +G5392171 San Jose -121.894960 37.339390 +G5392900 Santa Ana -117.867830 33.745570 +G5393049 Santa Clarita -118.542590 34.391660 +G5393287 Santa Rosa -122.714430 38.440470 +G5399020 Stockton -121.290780 37.957700 +G5412347 Aurora -104.831920 39.729430 +G5417598 Colorado Springs -104.821360 38.833880 +G5419384 Denver -104.984700 39.739150 +G5454711 Albuquerque -106.651140 35.084490 +G5505411 Henderson -114.981940 36.039700 +G5506956 Las Vegas -115.137220 36.174970 +G5509952 Paradise -115.146660 36.097190 +G5511077 Reno -119.813800 39.529630 +G5512909 Spring Valley -115.245000 36.108030 +G5513343 Sunrise Manor -115.073060 36.211080 +G5516233 Amarillo -101.831300 35.222000 +G5520993 El Paso -106.486930 31.758720 +G5525577 Lubbock -101.855170 33.577860 +G5746545 Portland -122.676210 45.523450 +G5780993 Salt Lake City -111.891050 40.760780 +G5809844 Seattle -122.332070 47.606210 +G5811696 Spokane -117.426050 47.658780 +G5812944 Tacoma -122.444290 47.252880 +G5814616 Vancouver -122.661490 45.638730 +G5856195 Honolulu -157.858330 21.306940 +G5879400 Anchorage -149.900280 61.218060 +G3441575 Montevideo -56.167350 -34.833460 +G601294 Nukus 59.610280 42.453060 +G1216265 Samarqand 66.959720 39.654170 +G1216311 Qarshi 65.800000 38.866670 +G1217662 Buxoro 64.428610 39.774720 +G1512473 Urganch 60.633330 41.550000 +G1512569 Tashkent 69.216270 41.264650 +G1512979 Qo‘qon 70.942500 40.528610 +G1513157 Namangan 71.672570 40.998300 +G1513886 Jizzax 67.842220 40.115830 +G1514019 Farg`ona 71.784320 40.384210 +G1514210 Chirchiq 69.582220 41.468890 +G1514588 Andijon 72.343890 40.783060 +G3487903 Alto Barinas -70.226100 8.593100 +G3625549 Valencia -68.007650 10.162020 +G3625829 Turmero -67.472880 10.223880 +G3627047 Santa Teresa -66.663610 10.231390 +G3628473 San Cristóbal -72.225000 7.766940 +G3629672 Puerto La Cruz -64.616670 10.216670 +G3629706 Puerto Cabello -68.012500 10.473060 +G3630297 Petare -66.816670 10.483330 +G3631412 Ocumare del Tuy -66.771670 10.121670 +G3631741 Mucumpiz -71.133330 8.416670 +G3632308 Mérida -71.145000 8.598330 +G3632998 Maracay -67.595830 10.246940 +G3633009 Maracaibo -71.640560 10.631670 +G3639898 Guatire -66.533330 10.466670 +G3640049 Guarenas -66.616670 10.466670 +G3640465 Guacara -67.877000 10.226090 +G3641351 El Tigre -64.245440 8.887520 +G3644768 Cumaná -64.166670 10.466670 +G3644918 Cúa -66.885280 10.162220 +G3645213 Coro -69.673440 11.404500 +G3645528 Ciudad Guayana -62.641020 8.351220 +G3645532 Ciudad Bolívar -63.540860 8.129230 +G3646738 Caracas -66.916670 10.500000 +G3647651 Cabimas -71.446110 10.401940 +G3648439 Baruta -66.883330 10.433330 +G3648522 Barquisimeto -69.322780 10.073890 +G3648559 Barcelona -64.700000 10.133330 +G3778045 Maturín -63.176670 9.750000 +G1562414 Vũng Tàu 107.066670 10.350000 +G1562798 Vinh 105.666670 18.666670 +G1566083 Thành phố Hồ Chí Minh 106.666670 10.750000 +G1568510 Rạch Giá 105.083330 10.016670 +G1568574 Quy Nhơn 109.233330 13.766670 +G1571058 Phan Thiết 108.100000 10.933330 +G1572151 Nha Trang 109.183330 12.250000 +G1573517 Nam Ðịnh 106.166670 20.416670 +G1575627 Long Xuyên 105.416670 10.383330 +G1580240 Huế 107.600000 16.466670 +G1581130 Hà Nội 105.841170 21.024500 +G1581298 Haiphong 106.682220 20.856110 +G1583992 Turan 108.220830 16.067780 +G1584071 Ðà Lạt 108.441930 11.946460 +G1586203 Cần Thơ 105.783330 10.033330 +G1586296 Cần Duộc 106.666670 10.616670 +G1587923 Biên Hòa 106.816670 10.950000 +G786712 Prizren 20.739720 42.213890 +G786714 Pristina 21.166880 42.672720 +G70225 Ta‘izz 44.020910 13.579520 +G71137 Sanaa 44.206670 15.354720 +G74477 Ibb 44.183330 13.966670 +G78754 Al Mukallā 49.124240 14.542480 +G79415 Al Ḩudaydah 42.954520 14.797810 +G415189 Aden 45.036670 12.779440 +G936374 Roodepoort 27.872500 -26.162500 +G939270 Witbank 29.233330 -25.866670 +G940316 Westonaria 27.650000 -26.316670 +G940909 Welkom 26.733330 -27.983330 +G942470 Vryheid 30.800000 -27.766670 +G944385 Vereeniging 27.933330 -26.666670 +G944986 Vanderbijlpark 27.816670 -26.700000 +G946877 Uitenhage 25.402220 -33.765280 +G949880 Tembisa 28.226940 -25.998890 +G952865 Springs 28.400000 -26.250000 +G953781 Soweto 27.866670 -26.266670 +G962367 Richards Bay 32.100000 -28.800000 +G964137 Pretoria 28.187830 -25.744860 +G964420 Port Elizabeth 25.583330 -33.966670 +G965301 Pietermaritzburg 30.383330 -29.616670 +G971421 Newcastle 29.933330 -27.750000 +G976361 Middelburg 29.466670 -25.783330 +G986822 Krugersdorp 27.766670 -26.100000 +G989921 Klerksdorp 26.666670 -26.866670 +G993800 Johannesburg 28.043630 -26.202270 +G1002145 George 22.450000 -33.966670 +G1006984 East London 27.911620 -33.015290 +G1007311 Durban 31.016670 -29.850000 +G1014073 Carletonville 27.400000 -26.366670 +G1016181 Brakpan 28.366670 -26.233330 +G1016670 Botshabelo 26.733330 -29.233330 +G1017780 Boksburg 28.250000 -26.216670 +G1018725 Bloemfontein 26.200000 -29.133330 +G1020098 Benoni 28.316670 -26.183330 +G1105776 Midrand 28.137780 -25.963610 +G1105777 Centurion 28.170560 -25.874440 +G3363613 Noorder-Paarl 18.966670 -33.716670 +G3369157 Cape Town 18.416670 -33.916670 +G901344 Ndola 28.636590 -12.958670 +G909137 Lusaka 28.286360 -15.408090 +G911148 Kitwe 28.200000 -12.816670 +G916095 Kabwe 28.451740 -14.443220 +G884979 Mutare 32.670860 -18.970700 +G890299 Harare 31.053890 -17.829350 +G894701 Bulawayo 28.583330 -20.150000 +G1106542 Chitungwiza 31.075550 -18.012740 diff --git a/modules/spatial-lucene/src/test/resources/states-Intersects-BBox.txt b/modules/spatial-lucene/src/test/resources/states-Intersects-BBox.txt new file mode 100644 index 00000000000..7663afabb97 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/states-Intersects-BBox.txt @@ -0,0 +1,3 @@ +WY CO @ Intersects(-106.964844 39.460938 -105.734375 42.800781) +TX @ Intersects(-99.669922 30.583984 -98.439453 32.253906) +MS TX LA @ Intersects(-95.363281 29.792969 -90.133789 32.473633) diff --git a/modules/spatial-lucene/src/test/resources/states-IsWithin-BBox.txt b/modules/spatial-lucene/src/test/resources/states-IsWithin-BBox.txt new file mode 100644 index 00000000000..a343d66dd98 --- /dev/null +++ b/modules/spatial-lucene/src/test/resources/states-IsWithin-BBox.txt @@ -0,0 +1,4 @@ +KS @ IsWithin(-103.493164 36.208984 -93.825195 41.086914) +WA @ IsWithin(-126.916016 44.36084 -115.314453 50.688965) +MA CT RI @ IsWithin(-73.894043 40.825195 -69.521484 43.198242) +AL GA @ IsWithin(-89.472656 29.311523 -80.244141 35.90332) \ No newline at end of file