From a989611515de243995027f8ceda44b89facc227f Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Mon, 21 Mar 2016 16:13:47 -0700 Subject: [PATCH] Upgrade to Clipper 3eb6a85910aff --- Makefile | 2 +- clipper/clipper.cpp | 560 +++++++++++++----- clipper/clipper.hpp | 15 +- geometry.cc | 12 +- .../out/-z4_-yname.json | 4 +- tests/tl_2015_us_county/out/-z8.json | 2 +- 6 files changed, 434 insertions(+), 161 deletions(-) diff --git a/Makefile b/Makefile index f2b4ccf..58ffce0 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ MANDIR ?= $(PREFIX)/share/man/man1/ # inherit from env if set CC := $(CC) -CXX := $(CXX) +CXX := $(CXX) -std=c++11 CFLAGS := $(CFLAGS) CXXFLAGS := $(CXXFLAGS) LDFLAGS := $(LDFLAGS) diff --git a/clipper/clipper.cpp b/clipper/clipper.cpp index 7b7f63d..9703298 100644 --- a/clipper/clipper.cpp +++ b/clipper/clipper.cpp @@ -1704,6 +1704,17 @@ bool Clipper::ExecuteInternal() if (m_StrictSimple) { DoSimplePolygons(); + m_StrictSimple = false; + for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) + { + OutRec *outRec = m_PolyOuts[i]; + if (!outRec->Pts || outRec->IsOpen) + { + continue; + } + FixupOutPolygon(*outRec); + } + m_StrictSimple = true; } } @@ -2651,9 +2662,13 @@ OutPt* Clipper::GetLastOutPt(TEdge *e) void Clipper::ProcessHorizontals() { - TEdge* horzEdge; - while (PopEdgeFromSEL(horzEdge)) - ProcessHorizontal(horzEdge); + m_Maxima.sort(); + TEdge* horzEdge; + while (PopEdgeFromSEL(horzEdge)) + { + ProcessHorizontal(horzEdge); + } + m_Maxima.clear(); } //------------------------------------------------------------------------------ @@ -3180,6 +3195,7 @@ void Clipper::DoMaxima(TEdge *e) void Clipper::ProcessEdgesAtTopOfScanbeam(const cInt topY) { TEdge* e = m_ActiveEdges; + MaximaList next_maxima; while( e ) { //1. process maxima, treating them as if they're 'bent' horizontal edges, @@ -3194,7 +3210,11 @@ void Clipper::ProcessEdgesAtTopOfScanbeam(const cInt topY) if(IsMaximaEdge) { - if (m_StrictSimple) m_Maxima.push_back(e->Top.X); + if (m_StrictSimple) + { + m_Maxima.push_back(e->Top.X); + next_maxima.push_back(e->Top.X); + } TEdge* ePrev = e->PrevInAEL; DoMaxima(e); if( !ePrev ) e = m_ActiveEdges; @@ -3244,11 +3264,25 @@ void Clipper::ProcessEdgesAtTopOfScanbeam(const cInt topY) e = e->NextInAEL; } } + if (m_StrictSimple) + { + MinimaList::iterator lm = m_CurrentLM; + while (lm != m_MinimaList.end() && lm->Y == topY) + { + if (lm->LeftBound && lm->RightBound) + { + m_Maxima.push_back(lm->LeftBound->Bot.X); + } + ++lm; + } + } //3. Process horizontals at the Top of the scanbeam ... - m_Maxima.sort(); ProcessHorizontals(); - m_Maxima.clear(); + if (m_StrictSimple && !next_maxima.empty()) + { + m_Maxima.insert(m_Maxima.end(), next_maxima.begin(), next_maxima.end()); + } //4. Promote intermediate vertices ... e = m_ActiveEdges; @@ -4466,6 +4500,264 @@ struct OutPtIntersect //----------------------------------------------------------------------------- +bool Clipper::FindIntersectLoop(std::unordered_multimap & dupeRec, + std::list > & iList, + OutRec * outRec_parent, + int idx_origin, + int idx_prev, + int idx_search) +{ + auto range = dupeRec.equal_range(idx_search); + // Check for direct connection + for (auto it = range.first; it != range.second; ++it) + { + OutRec * itRec = GetOutRec(it->second.op2->Idx); + if (itRec->Idx == idx_prev) + { + continue; + } + if (itRec->Idx == idx_origin && (outRec_parent == itRec || outRec_parent == ParseFirstLeft(itRec->FirstLeft))) + { + iList.emplace_front(idx_search, it->second); + return true; + } + } + // Check for connection through chain of other intersections + for (auto it = range.first; it != range.second; ++it) + { + OutRec * itRec = GetOutRec(it->second.op2->Idx); + if (itRec->Idx == idx_search || itRec->Idx == idx_prev || + (outRec_parent != itRec && outRec_parent != ParseFirstLeft(itRec->FirstLeft))) + { + continue; + } + if (FindIntersectLoop(dupeRec, iList, outRec_parent, idx_origin, idx_search, itRec->Idx)) + { + iList.emplace_front(idx_search, it->second); + return true; + } + } + return false; +} + +//----------------------------------------------------------------------------- + +bool Clipper::FixIntersects(std::unordered_multimap & dupeRec, + OutPt * op_j, + OutPt * op_k, + OutRec * outRec_j, + OutRec * outRec_k) +{ + if (!outRec_j->IsHole && !outRec_k->IsHole) + { + // Both are not holes, return nothing to do. + return false; + } + OutRec * outRec_origin; + OutRec * outRec_search; + OutRec * outRec_parent; + OutPt * op_origin_1; + OutPt * op_origin_2; + if (!outRec_j->IsHole) + { + outRec_origin = outRec_j; + outRec_parent = outRec_origin; + outRec_search = outRec_k; + op_origin_1 = op_j; + op_origin_2 = op_k; + } + else if (!outRec_k->IsHole) + { + outRec_origin = outRec_k; + outRec_parent = outRec_origin; + outRec_search = outRec_k; + outRec_search = outRec_j; + op_origin_1 = op_k; + op_origin_2 = op_j; + + } + else // both are holes + { + // Order doesn't matter + outRec_origin = outRec_j; + outRec_parent = ParseFirstLeft(outRec_origin->FirstLeft); + outRec_search = outRec_k; + outRec_search = outRec_k; + op_origin_1 = op_j; + op_origin_2 = op_k; + } + if (outRec_parent != ParseFirstLeft(outRec_search->FirstLeft)) + { + // The two holes do not have the same parent, do not add them + // simply return! + return false; + } + bool found = false; + std::list > iList; + auto range = dupeRec.equal_range(outRec_search->Idx); + // Check for direct connection + for (auto it = range.first; it != range.second; ++it) + { + OutRec * itRec = GetOutRec(it->second.op2->Idx); + if (itRec->Idx == outRec_origin->Idx) + { + found = true; + if (op_origin_1->Pt != it->second.op2->Pt) + { + iList.emplace_back(outRec_search->Idx, it->second); + break; + } + } + } + if (!found) + { + // Check for connection through chain of other intersections + for (auto it = range.first; it != range.second; ++it) + { + OutRec * itRec = GetOutRec(it->second.op2->Idx); + if (itRec->IsHole && (outRec_parent == itRec || outRec_parent == ParseFirstLeft(itRec->FirstLeft)) && + FindIntersectLoop(dupeRec, iList, outRec_parent, outRec_origin->Idx, outRec_search->Idx, itRec->Idx)) + { + found = true; + iList.emplace_front(outRec_search->Idx, it->second); + break; + } + } + } + if (!found) + { + OutPtIntersect intPt_origin = { op_origin_1, op_origin_2 }; + OutPtIntersect intPt_search = { op_origin_2, op_origin_1 }; + dupeRec.emplace(outRec_origin->Idx, intPt_origin); + dupeRec.emplace(outRec_search->Idx, intPt_search); + return false; + } + + if (iList.empty()) + { + return false; + } + // Switch + OutPt * op_origin_1_next = op_origin_1->Next; + OutPt * op_origin_2_next = op_origin_2->Next; + op_origin_1->Next = op_origin_2_next; + op_origin_2->Next = op_origin_1_next; + op_origin_1_next->Prev = op_origin_2; + op_origin_2_next->Prev = op_origin_1; + + for (auto iRing : iList) + { + OutPt * op_search_1 = iRing.second.op1; + OutPt * op_search_2 = iRing.second.op2; + OutPt * op_search_1_next = op_search_1->Next; + OutPt * op_search_2_next = op_search_2->Next; + op_search_1->Next = op_search_2_next; + op_search_2->Next = op_search_1_next; + op_search_1_next->Prev = op_search_2; + op_search_2_next->Prev = op_search_1; + } + + OutRec * outRec_new = CreateOutRec(); + outRec_new->IsHole = false; + if (outRec_origin->IsHole == ((Area(op_origin_1) > 0) && m_ReverseOutput)) + { + outRec_origin->Pts = op_origin_1; + outRec_new->Pts = op_origin_2; + } + else + { + outRec_origin->Pts = op_origin_2; + outRec_new->Pts = op_origin_1; + } + + UpdateOutPtIdxs(*outRec_origin); + UpdateOutPtIdxs(*outRec_new); + + outRec_origin->BottomPt = 0; + + std::list > move_list; + for (auto iRing : iList) + { + OutRec * outRec_itr = GetOutRec(iRing.first); + int itr_idx = outRec_itr->Idx; + outRec_itr->Pts = 0; + outRec_itr->BottomPt = 0; + outRec_itr->Idx = outRec_origin->Idx; + if (outRec_origin->IsHole) + { + outRec_itr->FirstLeft = ParseFirstLeft(outRec_origin->FirstLeft); + } + else + { + outRec_itr->FirstLeft = outRec_origin; + } + outRec_itr->IsHole = outRec_origin->IsHole; + if (m_UsingPolyTree) + { + FixupFirstLefts3(outRec_itr, outRec_origin); + } + auto range_itr = dupeRec.equal_range(itr_idx); + if (range_itr.first != range_itr.second) + { + for (auto it = range_itr.first; it != range_itr.second; ++it) + { + OutRec * itRec1 = GetOutRec(it->second.op1->Idx); + OutRec * itRec2 = GetOutRec(it->second.op2->Idx); + if (!(itRec1->Idx == outRec_new->Idx && itRec2->Idx == outRec_origin->Idx) && + !(itRec2->Idx == outRec_new->Idx && itRec1->Idx == outRec_origin->Idx) && + (itRec1->IsHole || itRec2->IsHole)) + { + move_list.emplace_back(itRec1->Idx, it->second); + } + } + dupeRec.erase(itr_idx); + } + } + if (outRec_origin->IsHole) + { + outRec_new->FirstLeft = outRec_origin; + } + else + { + outRec_new->FirstLeft = outRec_origin->FirstLeft; + } + auto range_itr = dupeRec.equal_range(outRec_origin->Idx); + for (auto it = range_itr.first; it != range_itr.second;) + { + OutRec * itRec1 = GetOutRec(it->second.op1->Idx); + OutRec * itRec2 = GetOutRec(it->second.op2->Idx); + if (!(itRec1->Idx == outRec_origin->Idx) && + (itRec1->IsHole || itRec2->IsHole)) + { + move_list.emplace_back(itRec1->Idx, it->second); + it = dupeRec.erase(it); + } + else + { + ++it; + } + } + + if (m_UsingPolyTree) + { + if (outRec_origin->IsHole) + { + FixupFirstLefts2(outRec_new, outRec_origin); + } + else + { + FixupFirstLefts1(outRec_origin, outRec_new); + } + } + if (!move_list.empty()) + { + dupeRec.insert(move_list.begin(), move_list.end()); + } + return true; +} + +//----------------------------------------------------------------------------- + void Clipper::DoSimplePolygons() { std::vector < OutPt*> m_OutPts; @@ -4485,7 +4777,8 @@ void Clipper::DoSimplePolygons() } } std::stable_sort(m_OutPts.begin(), m_OutPts.end(), SortOutPt); - std::list dupeRec; + std::unordered_multimap dupeRec; + dupeRec.reserve(m_PolyOuts.size()); std::size_t count = 0; for (std::size_t i = 1; i < m_OutPts.size(); ++i) { @@ -4501,13 +4794,11 @@ void Clipper::DoSimplePolygons() if (m_OutPts[j]->Idx < 0) continue; OutRec * outRec_j = GetOutRec(m_OutPts[j]->Idx); int idx_j = outRec_j->Idx; - bool hole_j = outRec_j->IsHole; for (std::size_t k = j + 1; k < i; ++k) { if (m_OutPts[k]->Idx < 0) continue; OutRec * outRec_k = GetOutRec(m_OutPts[k]->Idx); int idx_k = outRec_k->Idx; - bool hole_k = outRec_k->IsHole; if (idx_k == idx_j) { OutPt * op = m_OutPts[j]; @@ -4529,158 +4820,127 @@ void Clipper::DoSimplePolygons() UpdateOutPtIdxs(*outrec2); if (Poly2ContainsPoly1(outrec2->Pts, outrec->Pts)) { - //OutRec2 is contained by OutRec1 ... - outrec2->IsHole = !outrec->IsHole; - outrec2->FirstLeft = outrec; - if (m_UsingPolyTree) FixupFirstLefts2(outrec2, outrec); + //OutRec2 is contained by OutRec1 ... + outrec2->IsHole = !outrec->IsHole; + outrec2->FirstLeft = outrec; + if (m_UsingPolyTree) + { + FixupFirstLefts2(outrec2, outrec); + } + auto range = dupeRec.equal_range(idx_k); + std::list > move_list; + for (auto it = range.first; it != range.second;) + { + OutRec * itRec = GetOutRec(it->second.op1->Idx); + if (itRec->Idx != idx_k) + { + OutRec * itRec2 = GetOutRec(it->second.op2->Idx); + if (itRec->IsHole || itRec2->IsHole) + { + move_list.emplace_back(itRec->Idx, it->second); + } + it = dupeRec.erase(it); + } + else + { + ++it; + } + } + if (!move_list.empty()) + { + dupeRec.insert(move_list.begin(), move_list.end()); + } + OutPtIntersect intPt1 = { op, op2 }; + OutPtIntersect intPt2 = { op2, op }; + dupeRec.emplace(idx_k, intPt1); + dupeRec.emplace(outrec2->Idx, intPt2); } else if (Poly2ContainsPoly1(outrec->Pts, outrec2->Pts)) { - //OutRec1 is contained by OutRec2 ... - outrec2->IsHole = outrec->IsHole; - outrec->IsHole = !outrec2->IsHole; - outrec2->FirstLeft = outrec->FirstLeft; - outrec->FirstLeft = outrec2; - if (m_UsingPolyTree) FixupFirstLefts2(outrec, outrec2); + //OutRec1 is contained by OutRec2 ... + outrec2->IsHole = outrec->IsHole; + outrec->IsHole = !outrec2->IsHole; + outrec2->FirstLeft = outrec->FirstLeft; + outrec->FirstLeft = outrec2; + if (m_UsingPolyTree) + { + FixupFirstLefts2(outrec, outrec2); + } + auto range = dupeRec.equal_range(idx_k); + std::list > move_list; + for (auto it = range.first; it != range.second;) + { + OutRec * itRec = GetOutRec(it->second.op1->Idx); + if (itRec->Idx != idx_k) + { + OutRec * itRec2 = GetOutRec(it->second.op2->Idx); + if (itRec->IsHole || itRec2->IsHole) + { + move_list.emplace_back(itRec->Idx, it->second); + } + it = dupeRec.erase(it); + } + else + { + ++it; + } + } + if (!move_list.empty()) + { + dupeRec.insert(move_list.begin(), move_list.end()); + } + OutPtIntersect intPt1 = { op, op2 }; + OutPtIntersect intPt2 = { op2, op }; + dupeRec.emplace(idx_k, intPt1); + dupeRec.emplace(outrec2->Idx, intPt2); } else { - //the 2 polygons are separate ... - outrec2->IsHole = outrec->IsHole; - outrec2->FirstLeft = outrec->FirstLeft; - if (m_UsingPolyTree) FixupFirstLefts1(outrec, outrec2); + //the 2 polygons are separate ... + outrec2->IsHole = outrec->IsHole; + outrec2->FirstLeft = outrec->FirstLeft; + if (m_UsingPolyTree) + { + FixupFirstLefts1(outrec, outrec2); + } + auto range = dupeRec.equal_range(idx_k); + std::list > move_list; + for (auto it = range.first; it != range.second;) + { + OutRec * itRec = GetOutRec(it->second.op1->Idx); + if (itRec->Idx != idx_k) + { + OutRec * itRec2 = GetOutRec(it->second.op2->Idx); + if (itRec->IsHole || itRec2->IsHole) + { + move_list.emplace_back(itRec->Idx, it->second); + } + it = dupeRec.erase(it); + } + else + { + ++it; + } + } + if (!move_list.empty()) + { + dupeRec.insert(move_list.begin(), move_list.end()); + } + if (outrec2->IsHole) + { + OutPtIntersect intPt1 = { op, op2 }; + OutPtIntersect intPt2 = { op2, op }; + dupeRec.emplace(idx_k, intPt1); + dupeRec.emplace(outrec2->Idx, intPt2); + } } - OutPtIntersect intPt = { op, op2 }; - dupeRec.push_back(intPt); } continue; } - bool found = false; - if (hole_k != hole_j) + if (FixIntersects(dupeRec, m_OutPts[j], m_OutPts[k], outRec_j, outRec_k)) { - auto dupe = dupeRec.begin(); - while (dupe != dupeRec.end()) - { - int idx1 = GetOutRec(dupe->op1->Idx)->Idx; - int idx2 = GetOutRec(dupe->op2->Idx)->Idx; - if ((idx1 == idx_j && idx2 == idx_k) || - (idx2 == idx_j && idx1 == idx_k)) - { - found = true; - if (dupe->op1->Pt == m_OutPts[j]->Pt) - { - break; - } - OutPt* op1 = dupe->op1; - OutPt* op2 = dupe->op2; - OutPt* op1_next = op1->Next; - OutPt* op2_next = op2->Next; - OutPt* op1b; - OutPt* op2b; - OutRec* outRec1; - OutRec* outRec2; - bool one_is_j = false; - if (idx1 == idx_j) - { - one_is_j = true; - outRec1 = outRec_j; - outRec2 = outRec_k; - op1b = m_OutPts[j]; - op2b = m_OutPts[k]; - } - else - { - outRec1 = outRec_k; - outRec2 = outRec_j; - op1b = m_OutPts[k]; - op2b = m_OutPts[j]; - } - OutPt* op1b_next = op1b->Next; - OutPt* op2b_next = op2b->Next; - op2b->Next= op1b_next; - op1b->Next = op2b_next; - op2b_next->Prev = op1b; - op1b_next->Prev = op2b; - op2->Next= op1_next; - op1->Next = op2_next; - op2_next->Prev = op1; - op1_next->Prev = op2; - bool holeState = (Area(op1b) > 0) && m_ReverseOutput; - if (outRec1->IsHole == holeState) // outRec1 is "parent" - { - outRec1->Pts = op1b; - outRec1->BottomPt = 0; - outRec2->Pts = 0; - outRec2->BottomPt = 0; - outRec2->Idx = outRec1->Idx; - outRec2->FirstLeft = outRec1; - outRec2->IsHole = outRec1->IsHole; - if (m_UsingPolyTree) FixupFirstLefts3(outRec2, outRec1); - OutRec * outRec3 = CreateOutRec(); - outRec3->Pts = op2b; - outRec3->IsHole = outRec1->IsHole; - UpdateOutPtIdxs(*outRec1); - UpdateOutPtIdxs(*outRec3); - outRec3->FirstLeft = outRec1->FirstLeft; - //fixup FirstLeft pointers that may need reassigning to OutRec3 - if (m_UsingPolyTree) FixupFirstLefts1(outRec1, outRec3); - PointCount(outRec1->Pts); - PointCount(outRec3->Pts); - if (one_is_j) - { - outRec_k = outRec3; - hole_k = outRec3->IsHole; - } - else - { - outRec_j = outRec3; - hole_j = outRec3->IsHole; - } - } - else - { - outRec2->Pts = op2b; - outRec2->BottomPt = 0; - outRec1->Pts = 0; - outRec1->BottomPt = 0; - outRec1->Idx = outRec2->Idx; - outRec1->FirstLeft = outRec2; - outRec1->IsHole = outRec2->IsHole; - if (m_UsingPolyTree) FixupFirstLefts3(outRec1, outRec2); - OutRec * outRec3 = CreateOutRec(); - outRec3->Pts = op1b; - outRec3->IsHole = outRec2->IsHole; - UpdateOutPtIdxs(*outRec2); - UpdateOutPtIdxs(*outRec3); - outRec3->FirstLeft = outRec2->FirstLeft; - //fixup FirstLeft pointers that may need reassigning to OutRec3 - if (m_UsingPolyTree) FixupFirstLefts1(outRec2, outRec3); - PointCount(outRec2->Pts); - PointCount(outRec3->Pts); - if (one_is_j) - { - outRec_j = outRec3; - hole_j = outRec3->IsHole; - } - else - { - outRec_k = outRec3; - hole_k = outRec3->IsHole; - } - } - dupe = dupeRec.erase(dupe); - break; - } - else - { - ++dupe; - } - } - } - if (!found) - { - OutPtIntersect intPt = { m_OutPts[j], m_OutPts[k] }; - dupeRec.push_back(intPt); + outRec_j = GetOutRec(m_OutPts[j]->Idx); + idx_j = outRec_j->Idx; } } } diff --git a/clipper/clipper.hpp b/clipper/clipper.hpp index 1f85797..6f3bbe1 100644 --- a/clipper/clipper.hpp +++ b/clipper/clipper.hpp @@ -58,6 +58,7 @@ #include #include #include +#include #if defined(CLIPPER_IMPL_INCLUDE) #include CLIPPER_IMPL_INCLUDE #endif @@ -77,7 +78,7 @@ enum PolyFillType { pftEvenOdd, pftNonZero, pftPositive, pftNegative }; static cInt const loRange = 0x7FFF; static cInt const hiRange = 0x7FFF; #else - typedef signed long long cInt; + typedef std::int64_t cInt; static cInt const loRange = 0x3FFFFFFF; static cInt const hiRange = 0x3FFFFFFFFFFFFFFFLL; typedef signed long long long64; //used by Int128 class @@ -235,6 +236,7 @@ struct LocalMinimum; struct OutPt; struct OutRec; struct Join; +struct OutPtIntersect; typedef std::vector < OutRec* > PolyOutList; typedef std::vector < TEdge* > EdgeList; @@ -377,6 +379,17 @@ private: bool JoinPoints(Join *j, OutRec* outRec1, OutRec* outRec2); void JoinCommonEdges(); void DoSimplePolygons(); + bool FindIntersectLoop(std::unordered_multimap & dupeRec, + std::list > & iList, + OutRec * outRec_parent, + int idx_origin, + int idx_prev, + int idx_search); + bool FixIntersects(std::unordered_multimap & dupeRec, + OutPt * op_j, + OutPt * op_k, + OutRec * outRec_j, + OutRec * outRec_k); void FixupFirstLefts1(OutRec* OldOutRec, OutRec* NewOutRec); void FixupFirstLefts2(OutRec* InnerOutRec, OutRec* OuterOutRec); void FixupFirstLefts3(OutRec* OldOutRec, OutRec* NewOutRec); diff --git a/geometry.cc b/geometry.cc index 94755d4..59d587e 100644 --- a/geometry.cc +++ b/geometry.cc @@ -21,10 +21,10 @@ extern "C" { drawvec decode_geometry(char **meta, int z, unsigned tx, unsigned ty, int detail, long long *bbox, unsigned initial_x, unsigned initial_y) { drawvec out; - bbox[0] = LONG_LONG_MAX; - bbox[1] = LONG_LONG_MAX; - bbox[2] = LONG_LONG_MIN; - bbox[3] = LONG_LONG_MIN; + bbox[0] = LLONG_MAX; + bbox[1] = LLONG_MAX; + bbox[2] = LLONG_MIN; + bbox[3] = LLONG_MIN; long long wx = initial_x, wy = initial_y; @@ -169,7 +169,7 @@ drawvec shrink_lines(drawvec &geom, int z, int detail, int basezoom, long long * long long d = sqrt(dx * dx + dy * dy); long long n; - long long next = LONG_LONG_MAX; + long long next = LLONG_MAX; for (n = *here; n < *here + d; n = next) { int within; @@ -995,7 +995,7 @@ std::vector chop_polygon(std::vector &geoms) { for (unsigned i = 0; i < geoms.size(); i++) { if (geoms[i].size() > 700) { long long midx = 0, midy = 0, count = 0; - long long maxx = LONG_LONG_MIN, maxy = LONG_LONG_MIN, minx = LONG_LONG_MAX, miny = LONG_LONG_MAX; + long long maxx = LLONG_MIN, maxy = LLONG_MIN, minx = LLONG_MAX, miny = LLONG_MAX; for (unsigned j = 0; j < geoms[i].size(); j++) { if (geoms[i][j].op == VT_MOVETO || geoms[i][j].op == VT_LINETO) { diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json index 88bb2ed..6219c4d 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json @@ -352,7 +352,7 @@ , { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ] ], [ [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ] ], [ [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ] ], [ [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ] ], [ [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ] ], [ [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ] ] ], [ [ [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ] ], [ [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ] ], [ [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ] ], [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ] ], [ [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ] ], [ [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ] ], [ [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ] ], [ [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ] ], [ [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ] ] ], [ [ [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ] ], [ [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ] ], [ [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ] ], [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ] ] ] } } , @@ -860,7 +860,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in" }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ], [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ], [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ], [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ], [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ], [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ], [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ], [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ], [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ], [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ], [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ], [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ], [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ], [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -88.242188, 79.375806 ], [ -88.242188, 79.302640 ], [ -88.242188, 79.167206 ], [ -88.242188, 79.117538 ], [ -88.242188, 78.920832 ], [ -88.242188, 78.874289 ], [ -88.242188, 78.853070 ], [ -88.242188, 78.836065 ], [ -88.242188, 78.806246 ], [ -88.242188, 78.801980 ], [ -88.242188, 78.767792 ], [ -88.242188, 78.754945 ], [ -88.242188, 78.677557 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 80.159956 ], [ -88.242188, 79.706834 ], [ -88.242188, 79.383905 ], [ -88.242188, 79.375806 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ], [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ], [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ], [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ], [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ], [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ], [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ], [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ], [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ], [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ], [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ], [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ], [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ], [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ] } } , diff --git a/tests/tl_2015_us_county/out/-z8.json b/tests/tl_2015_us_county/out/-z8.json index 70c0acc..6f1b4bf 100644 --- a/tests/tl_2015_us_county/out/-z8.json +++ b/tests/tl_2015_us_county/out/-z8.json @@ -156,7 +156,7 @@ { "type": "FeatureCollection", "properties": { "layer": "somerset" }, "features": [ { "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875668 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805589 ], [ -70.339966, 45.805589 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ], [ -69.724731, 45.879493 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ] ], [ [ -69.797516, 45.784524 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.797173, 45.784285 ], [ -69.797516, 45.784524 ] ] ], [ [ [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.794769, 45.757703 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.805589 ], [ -69.713058, 45.805589 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.784764 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.783806 ] ] ], [ [ [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ] ], [ [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.784045 ] ] ], [ [ [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792366, 45.783806 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ] ], [ [ -69.796143, 45.785243 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785243 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ] ], [ [ -69.797516, 45.784524 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.797173, 45.784285 ], [ -69.797516, 45.784524 ] ] ], [ [ [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.794769, 45.757703 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.805589 ], [ -69.713058, 45.805589 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.784764 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ] ] ], [ [ [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ] ], [ [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.784045 ] ] ], [ [ [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792366, 45.783806 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ] ], [ [ -69.796143, 45.785243 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785243 ] ] ] ] } } ] } ] } ,