diff --git a/benchmarks/curve.bench.ts b/benchmarks/curve.bench.ts index 1c298d4..3ec1ed9 100644 --- a/benchmarks/curve.bench.ts +++ b/benchmarks/curve.bench.ts @@ -3,7 +3,6 @@ // Copyright (c) A5 contributors // Benchmarks for the space-filling curve: s -> cell decode, cell -> s encode, -// and fractional-point location (IJToS). // // CI runs these same files against both the PR and its merge-base, so they // must run on either side of the L-system migration: the adapters below pick @@ -105,19 +104,3 @@ describe('tripleToS', () => { ); } }); - -describe('IJToS', () => { - const values = sampleS(15, N); - const ijs: IJ[] = new Array(N); - for (let i = 0; i < N; i++) { - ijs[i] = centroidIJ(tripleOf(values[i], 15, 'uv')); - } - let i = 0; - bench( - 'IJToS res 15', - () => { - lattice.IJToS(ijs[i++ & (N - 1)], 15, 'uv'); - }, - BENCH_OPTS - ); -}); diff --git a/modules/core/cell.ts b/modules/core/cell.ts index 1ee590d..cdc20cb 100644 --- a/modules/core/cell.ts +++ b/modules/core/cell.ts @@ -7,16 +7,30 @@ glMatrix.setMatrixArrayType(Float64Array as any); import type {Cartesian, Face, LonLat, Spherical} from './coordinate-systems'; import {FaceToIJ, fromLonLat, toLonLat, toPolar, normalizeLongitudes} from './coordinate-transforms'; -import {findNearestOrigin, findNearestOriginCartesian, quintantToSegment, segmentToQuintant} from './origin'; +import { + findNearestOrigin, + findNearestOrigins, + QUINTANT_TO_ORIENTATION, + QUINTANT_TO_SEGMENT, + SEGMENT_TO_ORIENTATION, + SEGMENT_TO_QUINTANT +} from './origin'; import {DodecahedronProjection} from '../projections/dodecahedron'; -import {A5Cell, OriginId} from './utils'; +import {A5Cell, Origin, OriginId} from './utils'; import {PentagonShape} from '../geometry/pentagon'; -import {getFaceVertices, getPentagonCenter, getPentagonVertices, getQuintantPolar, getQuintantVertices} from './tiling'; +import { + cellMarginScaled, + getFaceVertices, + getPentagonCenter, + getPentagonVertices, + getQuintantPolar, + getQuintantVertices +} from './tiling'; import {PI_OVER_5} from './constants'; -import {IJToS, sToCell} from '../lattice'; -import {deserialize, serialize, FIRST_HILBERT_RESOLUTION, WORLD_CELL} from './serialization'; -import {getGlobalCellNeighbors} from '../traversal/global-neighbors'; -import {Spiral, SPIRAL_SAMPLE_COUNT} from '../utils/spiral'; +import {roundToTriple, sToCell, tripleFlavor, tripleInBounds, tripleToS} from '../lattice'; +import type {Triple} from '../lattice'; +import {deserialize, serialize, FIRST_HILBERT_RESOLUTION, MAX_RESOLUTION, WORLD_CELL} from './serialization'; +import {NEIGHBOR_DELTAS} from '../traversal/neighbors'; // Reuse these objects to avoid allocation const rotation = mat2.create(); @@ -34,12 +48,6 @@ let _lastResult: { resolution: number; } | null = null; -/** Update the single-entry cache with a successful (cell, cellId) pair. */ -function cacheResult(cell: A5Cell, cellId: bigint, resolution: number): bigint { - _lastResult = {cellId, pentagon: _getPentagon(cell), originId: cell.origin.id, resolution}; - return cellId; -} - export function lonLatToCell(lonLat: LonLat, resolution: number): bigint { return sphericalToCell(fromLonLat(lonLat), resolution); } @@ -51,6 +59,9 @@ export function lonLatToCell(lonLat: LonLat, resolution: number): bigint { * inverse/forward round-trip in dense-sample loops where the input already * comes from the authalic Cartesian space (e.g. polygon-fill boundary slerp). */ +// Scratch for the fast path's scaled quintant-frame point +const _scaledPoint = vec2.create(); + export function sphericalToCell(spherical: Spherical, resolution: number): bigint { // Resolution -1 represents WORLD_CELL, which covers the entire world if (resolution === -1) { @@ -58,122 +69,182 @@ export function sphericalToCell(spherical: Spherical, resolution: number): bigin } if (resolution < FIRST_HILBERT_RESOLUTION) { - // For low resolutions there is no Hilbert curve, so we can just return as the result is exact - return serialize(_sphericalToEstimate(spherical, resolution)); + // For low resolutions there is no Hilbert curve: the cell is determined by + // the face (and quintant) alone, so the lookup is exact. + const origin = findNearestOrigin(spherical); + const dodecPoint = dodecahedron.forward(spherical, origin.id); + const quintant = getQuintantPolar(toPolar(dodecPoint)); + const segment = QUINTANT_TO_SEGMENT[origin.id * 5 + quintant]; + return serialize({S: 0n, segment, origin, resolution}); } - // Try the cached pentagon first — skips the full estimate pipeline when - // consecutive calls land in the same cell (common in dense-sample loops). + // Try the cached pentagon first — skips the full lookup when consecutive + // calls land in the same cell (common in dense-sample loops). if (_lastResult && _lastResult.resolution === resolution) { const projected = dodecahedron.forward(spherical, _lastResult.originId); if (_lastResult.pentagon.containsPoint(projected as Face) > 0) return _lastResult.cellId; } - // Try the original point's projection-based estimate. Common case for - // non-boundary points. - const firstEstimate = _sphericalToEstimate(spherical, resolution); - const firstKey = serialize(firstEstimate); - const firstDistance = a5cellContainsPoint(firstEstimate, spherical); - if (firstDistance > 0) return cacheResult(firstEstimate, firstKey, resolution); + // Fast path: locate the containing pentagon directly. Round to the leaf + // triangle, get the closed-form flavor, and test the pentagon geometrically + // in the scaled quintant frame; the triangular and pentagonal lattices are + // not congruent, but the containing pentagon is always the triangle's cell + // or one of its fixed neighbor deltas (verified exhaustively), so at most + // one 7-candidate walk resolves it — then a single curve encode. + const origin = findNearestOrigin(spherical); + const dodecPoint = dodecahedron.forward(spherical, origin.id); + const quintant = getQuintantPolar(toPolar(dodecPoint)); + const best = _lookupInQuintant(dodecPoint, origin, quintant, resolution); + if (best !== null && best.margin > 0) return _acceptCandidate(best); + // No strictly-containing pentagon in the assigned frame: the point sits on a + // cell boundary or within float noise of a quintant/face seam. + return _sphericalToCellBoundary(spherical, resolution, origin, quintant, best); +} - // Spiral search: perturb the point in the tangent plane to find nearby - // estimate cells (see modules/utils/spiral.ts). - const hilbertResolution = 1 + resolution - FIRST_HILBERT_RESOLUTION; - const scale = SPIRAL_SCALE_RAD / Math.pow(2, hilbertResolution); - const estimateSet = new Set([firstKey]); - const cells: {cellId: bigint; distance: number}[] = [{cellId: firstKey, distance: firstDistance}]; - - const spiral = new Spiral(spherical, scale); - for (let i = 0; i < SPIRAL_SAMPLE_COUNT; i++) { - const estimate = _cartesianToEstimate(spiral.sample(_spiralOut, i), resolution); - const estimateKey = serialize(estimate); - if (estimateSet.has(estimateKey)) continue; - estimateSet.add(estimateKey); - const distance = a5cellContainsPoint(estimate, spherical); - if (distance > 0) return cacheResult(estimate, estimateKey, resolution); - cells.push({cellId: estimateKey, distance}); +// The best cell for `dodecPoint` (face frame of `origin`) within one quintant: +// round to the leaf triangle, closed-form flavor, geometric margin, and — when +// the triangle's cell doesn't strictly contain the point — the best of its +// fixed neighbor deltas. margin > 0 ⇔ the unique strictly-containing pentagon. +interface CellCandidate { + margin: number; + cellId: bigint; + triple: Triple; + flavor: number; + quintant: number; + hilbertResolution: number; + originId: OriginId; + resolution: number; +} + +function _lookupInQuintant( + dodecPoint: Face, + origin: Origin, + quintant: number, + resolution: number +): CellCandidate | null { + const globalQuintant = origin.id * 5 + quintant; + const segment = QUINTANT_TO_SEGMENT[globalQuintant]; + const orientation = QUINTANT_TO_ORIENTATION[globalQuintant]; + + // Res-30 ids can only encode quintants 0-41 (by design: 64 bits cannot fit + // res 30 globally, so A5 covers the populous region). In the unsupported + // quintants, answer at the finest representable resolution instead — the + // res-29 cell CONTAINING the point. (Previously the cap lived only in + // serialize, which swapped in the res-29 parent of a res-30 search result — + // a cell that fails to contain the query point ~44% of the time there.) + if (resolution === MAX_RESOLUTION && 5 * origin.id + ((segment - origin.firstQuintant + 5) % 5) > 41) { + resolution = MAX_RESOLUTION - 1; } - // Spiral exhausted without finding a strict container. This is reachable - // for points right at the polar singularity at very high resolutions, - // where re-projecting any tangent sample snaps back to a small set of - // cells while the geometrically-containing cell is offset by one - // adjacency step. Fall back to direct neighbours of the closest spiral - // candidate, which always finds it. - cells.sort((a, b) => b.distance - a.distance); - const K = Math.min(3, cells.length); - for (let k = 0; k < K; k++) { - const neighbors = getGlobalCellNeighbors(cells[k].cellId); - for (let n = 0; n < neighbors.length; n++) { - const neighborKey = neighbors[n]; - if (estimateSet.has(neighborKey)) continue; - estimateSet.add(neighborKey); - const neighborCell = deserialize(neighborKey); - const distance = a5cellContainsPoint(neighborCell, spherical); - if (distance > 0) return cacheResult(neighborCell, neighborKey, resolution); - cells.push({cellId: neighborKey, distance}); + vec2.copy(_scaledPoint, dodecPoint); + if (quintant !== 0) { + mat2.fromRotation(rotation, -2 * PI_OVER_5 * quintant); + vec2.transformMat2(_scaledPoint, _scaledPoint, rotation); + } + const hilbertResolution = 1 + resolution - FIRST_HILBERT_RESOLUTION; + const scale = 2 ** hilbertResolution; + const px = _scaledPoint[0] * scale; + const py = _scaledPoint[1] * scale; + const ij = FaceToIJ([px, py] as Face); + + const base = roundToTriple(ij, hilbertResolution); + let triple = base; + let flavor = tripleFlavor(base); + let margin = cellMarginScaled(px, py, base.x, base.y, flavor); + if (margin <= 0) { + // All deltas are relative to the ROUNDED triple (the containing pentagon + // is always among its fixed neighbors), not to intermediate best cells. + const deltas = NEIGHBOR_DELTAS[flavor].all; + const maxRow = scale - 1; + for (let i = 0; i < deltas.length; i++) { + const d = deltas[i]; + const neighbor = {x: base.x + d.x, y: base.y + d.y, z: base.z + d.z}; + if (!tripleInBounds(neighbor, maxRow)) continue; + const neighborFlavor = tripleFlavor(neighbor); + const neighborMargin = cellMarginScaled(px, py, neighbor.x, neighbor.y, neighborFlavor); + if (neighborMargin > margin) { + triple = neighbor; + flavor = neighborFlavor; + margin = neighborMargin; + if (margin > 0) break; + } } } - - // True fallback: closest cell wins, even if technically just outside. - cells.sort((a, b) => b.distance - a.distance); - const fallbackKey = cells[0].cellId; - return cacheResult(deserialize(fallbackKey), fallbackKey, resolution); + const S = tripleToS(triple, hilbertResolution, orientation); + if (S === null) return null; + const cellId = serialize({S, segment, origin, resolution}); + return {margin, cellId, triple, flavor, quintant, hilbertResolution, originId: origin.id, resolution}; } -// Spiral perturbation radius at hilbertResolution=1 (in radians of tangent -// offset). For higher resolutions we scale by 1/2^hilbertResolution. Tuned -// empirically (see SPIRAL_SAMPLE_COUNT in utils/spiral.ts). -const SPIRAL_SCALE_RAD = (70 * Math.PI) / 180; - -// Reusable output buffer for spiral.sample() — written once per iteration, -// consumed immediately by _cartesianToEstimate. Single-threaded JS makes -// this safe; ports use stack allocation or per-call locals. -const _spiralOut = vec3.create() as unknown as Cartesian; - -// The IJToS function uses the triangular lattice which only approximates the pentagon lattice -// Thus these functions only return a cell nearby, and we need to search the neighborhood to find the correct cell -// TODO: Implement a more accurate function - -function _sphericalToEstimate(spherical: Spherical, resolution: number): A5Cell { - const origin = {...findNearestOrigin(spherical)}; - const dodecPoint = dodecahedron.forward(spherical, origin.id); - return _faceToEstimate(dodecPoint, origin, resolution); +/** Cache the winning pentagon for the dense-sample fast accept and return its id. */ +function _acceptCandidate(c: CellCandidate): bigint { + _lastResult = { + cellId: c.cellId, + pentagon: getPentagonVertices(c.hilbertResolution, c.quintant, c.triple, c.flavor), + originId: c.originId, + resolution: c.resolution + }; + return c.cellId; } -function _cartesianToEstimate(cartesian: Cartesian, resolution: number): A5Cell { - const origin = {...findNearestOriginCartesian(cartesian)}; - const dodecPoint = dodecahedron.forwardCartesian(cartesian, origin.id); - return _faceToEstimate(dodecPoint, origin, resolution); -} +// Tie margin tolerance: containment margins are cross products of unit-scale +// pentagon edges against coordinates of magnitude up to 2^hilbertResolution, +// so their float noise is ~2^(hilbertResolution - 52); 2^-44 gives a wide +// safety factor while staying geometrically negligible (cells are unit-size +// in the scaled frame). +const TIE_EPS = 2 ** -44; -function _faceToEstimate(dodecPoint: Face, origin: A5Cell['origin'], resolution: number): A5Cell { - const polar = toPolar(dodecPoint); - const quintant = getQuintantPolar(polar); - const {segment, orientation} = quintantToSegment(quintant, origin); - if (resolution < FIRST_HILBERT_RESOLUTION) { - // For low resolutions there is no Hilbert curve - return {S: 0n, segment, origin, resolution}; +/** + * Boundary resolution: the point has no strictly-containing pentagon in its + * assigned frame — it lies on a cell edge, or within float noise of a quintant + * or face seam (where the containing cell belongs to a neighboring frame). + * Deterministically rerun the same lookup in every frame that could own the + * point — all 5 quintants of the 3 nearest faces (a dodecahedron vertex joins + * 3 faces; a face center joins 5 quintants). A strictly-containing pentagon is + * unique, so the first strict hit wins; if none exists the point is exactly on + * a boundary shared by the near-best candidates, and the tie-break is the cell + * that comes FIRST ALONG THE CURVE — the lowest cell id (origin/segment occupy + * the top id bits in curve order, so numeric order is curve order globally). + */ +function _sphericalToCellBoundary( + spherical: Spherical, + resolution: number, + firstOrigin: Origin, + firstQuintant: number, + first: CellCandidate | null +): bigint { + const candidates: CellCandidate[] = first !== null ? [first] : []; + for (const origin of findNearestOrigins(spherical, 3)) { + const dodecPoint = dodecahedron.forward(spherical, origin.id); + // Try this origin's assigned quintant first, then its gamma-adjacent + // neighbors: seam points resolve in the adjacent frame, so this order + // finds the strict container in 1-2 lookups instead of scanning all 5. + const q0 = getQuintantPolar(toPolar(dodecPoint)); + for (const dq of [0, 1, 4, 2, 3]) { + const quintant = (q0 + dq) % 5; + if (origin.id === firstOrigin.id && quintant === firstQuintant) continue; + const c = _lookupInQuintant(dodecPoint, origin, quintant, resolution); + if (c === null) continue; + if (c.margin > 0) return _acceptCandidate(c); + candidates.push(c); + } } - - // Rotate into right fifth - if (quintant !== 0) { - const extraAngle = 2 * PI_OVER_5 * quintant; - mat2.fromRotation(rotation, -extraAngle); - vec2.transformMat2(dodecPoint, dodecPoint, rotation); + let best = -Infinity; + for (const c of candidates) if (c.margin > best) best = c.margin; + const eps = TIE_EPS * 2 ** (1 + resolution - FIRST_HILBERT_RESOLUTION); + let winner: CellCandidate | null = null; + for (const c of candidates) { + if (c.margin >= best - eps && (winner === null || c.cellId < winner.cellId)) winner = c; } - - const hilbertResolution = 1 + resolution - FIRST_HILBERT_RESOLUTION; - vec2.scale(dodecPoint, dodecPoint, 2 ** hilbertResolution); - - const ij = FaceToIJ(dodecPoint); - let S = IJToS(ij, hilbertResolution, orientation); - return {S, segment, origin, resolution}; + if (winner === null) throw new Error('sphericalToCell: no candidate cell found'); + return _acceptCandidate(winner); } // TODO move into tiling.ts export function _getPentagon({S, segment, origin, resolution}: A5Cell): PentagonShape { - const {quintant, orientation} = segmentToQuintant(segment, origin); + const globalQuintant = origin.id * 5 + segment; + const quintant = SEGMENT_TO_QUINTANT[globalQuintant]; + const orientation = SEGMENT_TO_ORIENTATION[globalQuintant]; if (resolution === FIRST_HILBERT_RESOLUTION - 1) { const out = getQuintantVertices(quintant); return out; @@ -191,7 +262,9 @@ export function cellToSpherical(cell: bigint): Spherical { if (resolution >= FIRST_HILBERT_RESOLUTION) { // Fast path: the pentagon center is O(1) from (triple, flavor) — no need // to construct the pentagon itself. - const {quintant, orientation} = segmentToQuintant(segment, origin); + const globalQuintant = origin.id * 5 + segment; + const quintant = SEGMENT_TO_QUINTANT[globalQuintant]; + const orientation = SEGMENT_TO_ORIENTATION[globalQuintant]; const hilbertResolution = resolution - FIRST_HILBERT_RESOLUTION + 1; const {triple, flavor} = sToCell(S, hilbertResolution, orientation); const center = getPentagonCenter(hilbertResolution, quintant, triple, flavor); diff --git a/modules/core/origin.ts b/modules/core/origin.ts index 004c7c9..b872780 100644 --- a/modules/core/origin.ts +++ b/modules/core/origin.ts @@ -114,6 +114,38 @@ export function segmentToQuintant(segment: number, origin: Origin): {quintant: n return {quintant, orientation}; } +// Lookup tables for the two mappings above, built once at startup — there are +// only 60 (origin, quintant) pairs. Indexed by origin.id * 5 + quintant +// (resp. + segment, the global quintant number as encoded in serialized cell +// ids). Call sites read these directly: a pair of flat array loads that V8 +// cannot pessimize, unlike the object-returning functions (a cold second call +// site to quintantToSegment measurably degraded the optimized hot path). +export const QUINTANT_TO_SEGMENT = new Uint8Array(60); +export const QUINTANT_TO_ORIENTATION: Orientation[] = new Array(60); +export const SEGMENT_TO_QUINTANT = new Uint8Array(60); +export const SEGMENT_TO_ORIENTATION: Orientation[] = new Array(60); +for (const origin of origins) { + for (let i = 0; i < 5; i++) { + const {segment, orientation} = quintantToSegment(i, origin); + QUINTANT_TO_SEGMENT[origin.id * 5 + i] = segment; + QUINTANT_TO_ORIENTATION[origin.id * 5 + i] = orientation; + const s2q = segmentToQuintant(i, origin); + SEGMENT_TO_QUINTANT[origin.id * 5 + i] = s2q.quintant; + SEGMENT_TO_ORIENTATION[origin.id * 5 + i] = s2q.orientation; + } +} + +/** + * The `count` origins nearest to a point, by haversine distance, nearest first. + * Used by the boundary resolution in sphericalToCell: a point on (or within + * float noise of) a face seam or dodecahedron vertex may belong to a cell of + * the 2nd- or 3rd-nearest face. + */ +export function findNearestOrigins(point: Spherical, count: number): Origin[] { + const sorted = [...origins].sort((a, b) => haversine(point, a.axis) - haversine(point, b.axis)); + return sorted.slice(0, count); +} + /** * Find the nearest origin to a point on the sphere * Uses haversine formula to calculate great-circle distance @@ -136,25 +168,6 @@ export function isNearestOrigin(point: Spherical, origin: Origin): boolean { return haversine(point, origin.axis) > 0.49999999; } -/** - * Same as `findNearestOrigin` but takes a Cartesian unit vector. The - * argmin of `1 − a·b` matches the argmin of haversine, so this returns - * the same origin without any spherical-trig conversions. - */ -export function findNearestOriginCartesian(c: Cartesian): Origin { - let minDistance = Infinity; - let nearest = origins[0]; - for (const origin of origins) { - const ax = origin.axisCartesian; - const distance = 1 - (c[0] * ax[0] + c[1] * ax[1] + c[2] * ax[2]); - if (distance < minDistance) { - minDistance = distance; - nearest = origin; - } - } - return nearest; -} - /** * Modified haversine formula to calculate great-circle distance. * Retruns the "angle" between the two points. We need to minimize this to find the nearest origin diff --git a/modules/core/tiling.ts b/modules/core/tiling.ts index 38e93b6..37a0286 100644 --- a/modules/core/tiling.ts +++ b/modules/core/tiling.ts @@ -36,6 +36,51 @@ const FLAVOR_CENTERS = [0, 1, 2, 3].map(flavor => { return p.getCenter(); }); +// The base PENTAGON under each flavor's orientation ops, flattened to +// [x0,y0,...,x4,y4] for the allocation-free containment test below. +const FLAVOR_PENTAGONS = [0, 1, 2, 3].map(flavor => { + const p = PENTAGON.clone(); + if (flavor & 1) p.rotate180(); + if (flavor & 2) p.reflectY(); + const verts = p.getVertices(); + const flat = new Float64Array(10); + for (let i = 0; i < 5; i++) { + flat[i * 2] = verts[i][0]; + flat[i * 2 + 1] = verts[i][1]; + } + return flat; +}); + +/** + * Signed containment margin of a point in the pentagon of (triple, flavor) + * (> 0 ⇔ strictly inside; the most-violated-edge cross product otherwise), + * tested in the SCALED quintant-0 frame (face coords rotated into quintant 0 and scaled + * by 2^resolution — the frame `_faceToEstimate` works in). In this frame the + * cell's pentagon is the flavor-oriented base pentagon translated by + * BASIS·(x+y, -x+(flavor&1)), so the test needs no curve decode, no + * re-projection, and — pentagons being unit-size here — stays well-conditioned + * at every resolution. + */ +export function cellMarginScaled(px: number, py: number, x: number, y: number, flavor: number): number { + const rx = x + y; + const ry = -x + (flavor & 1); + const tx = BASIS[0] * rx + BASIS[2] * ry; + const ty = BASIS[1] * rx + BASIS[3] * ry; + const pent = FLAVOR_PENTAGONS[flavor]; + let margin = Infinity; + for (let i = 0; i < 5; i++) { + const j = i === 4 ? 0 : i + 1; + const v1x = pent[i * 2] + tx; + const v1y = pent[i * 2 + 1] + ty; + const v2x = pent[j * 2] + tx; + const v2y = pent[j * 2 + 1] + ty; + // (v1 - v2) × (p - v1): < 0 ⇒ strictly outside this edge + const cross = (v1x - v2x) * (py - v1y) - (v1y - v2y) * (px - v1x); + if (cross < margin) margin = cross; + } + return margin; +} + /** * Get pentagon vertices for a cell. * diff --git a/modules/lattice/compat.ts b/modules/lattice/compat.ts index f21d38f..727a42b 100644 --- a/modules/lattice/compat.ts +++ b/modules/lattice/compat.ts @@ -228,7 +228,7 @@ export function compatTripleToS(t: Triple, resolution: number, orientation: Orie raw = {x: raw.z, y: raw.y, z: raw.x}; } const ab = tripleToAB(raw); - const sGeo = axiomTargetToS(ORIGINAL, ab.a, ab.b, resolution, AXIOM_W, true)[0]; + const sGeo = axiomTargetToS(ORIGINAL, ab.a, ab.b, resolution, AXIOM_W)[0]; const digits = digitsOf(sGeo, resolution); inverseShift(digits, rec.invertJ, rec.flipIJ); const v = packDigits(digits); diff --git a/modules/lattice/curve.ts b/modules/lattice/curve.ts index 12bf81d..9f4826b 100644 --- a/modules/lattice/curve.ts +++ b/modules/lattice/curve.ts @@ -7,17 +7,43 @@ // (sToCell / sToTriple) and triple.ts (tripleToS). import type {IJ} from '../core/coordinate-systems'; -import type {Orientation} from './types'; -import {sumPointToS} from './lsystem'; +import type {Orientation, Triple} from './types'; +import {tripleToSLattice} from './lsystem'; +import {POW2} from './lsystem/tables'; /** - * Fractional IJ point -> curve position `s` of the containing cell, by direct - * L-system descent. The IJ plane maps onto the L-system's corner-sum frame by - * the exact affine map target = (12*(i+j), -12*j) — derived by matching cell - * centroids across the two frames (parity-0 cell (x,y,z): centroid (x+y+1/3, - * -x+1/3) in IJ, corner sum (12y+8, 12x-4); parity-1: (x+y-1/3, -x+2/3) and - * (12y+4, 12x-8); both fit sum = (12(i+j), -12j) exactly), and validated - * against the old-engine discretization over all resolutions and orientations. + * Locate the lattice triangle containing a fractional IJ point, as a triple. + * + * The triples tile the IJ plane as triangles: the unit square (m, n) = + * (floor(i), floor(j)) splits along the diagonal u+v = 1 into a lower triangle + * (the parity-0 cell (-n, m+n, -m), centroid (m+1/3, n+1/3)) and an upper + * triangle (the parity-1 cell (-n, m+n+1, -m), centroid (m+2/3, n+2/3)) — the + * centroid correspondences were derived from the exact IJ <-> corner-sum + * affine map target = (12*(i+j), -12*j) and validated against the old-engine + * discretization over all resolutions and orientations. Point location is two floors + one + * diagonal comparison. Points exactly on a triangle edge have no unique cell; + * the >= tie-break below is the fixed convention. + * + * The result is clamped into quintant bounds (m >= 0, n >= 0, m+n+parity <= + * maxRow, equivalent to tripleInBounds): a point slightly outside the quintant + * (as the estimate path can produce near quintant edges) must still map to a + * valid cell for the exact encode. */ -export const IJToS = (ij: IJ, resolution: number, orientation: Orientation = 'uv'): bigint => - sumPointToS(12 * (ij[0] + ij[1]), -12 * ij[1], resolution, orientation); +export function roundToTriple(ij: IJ, resolution: number): Triple { + const maxRow = POW2[resolution] - 1; + let m = Math.floor(ij[0]); + let n = Math.floor(ij[1]); + let parity = ij[0] - m + (ij[1] - n) >= 1 ? 1 : 0; + if (m < 0) m = 0; + if (n < 0) n = 0; + if (m + n + parity > maxRow) { + parity = 0; + if (m + n > maxRow) { + const over = m + n - maxRow; + const dm = Math.min(m, over); + m -= dm; + n -= over - dm; + } + } + return {x: -n, y: m + n + parity, z: -m}; +} diff --git a/modules/lattice/index.ts b/modules/lattice/index.ts index 2ddb067..c94ba8c 100644 --- a/modules/lattice/index.ts +++ b/modules/lattice/index.ts @@ -2,28 +2,21 @@ // SPDX-License-Identifier: Apache-2.0 // Copyright (c) A5 contributors -// The canonical A5 curve is currently the ORIGINAL construction (compat.ts): -// the two-motif quaternary L-system with the shiftDigits recode on top, so -// cell IDs remain bit-identical to previous releases. The non-self-intersecting -// L-system curve (lsystem.ts / curve.ts) powers the machinery underneath and is -// fully implemented and pinned by fixtures (tests/lattice/lsystem.test.ts); -// making it canonical is a planned follow-up — a breaking change of all cell -// IDs that swaps the exports below to lsystem.ts/curve.ts and regenerates the -// fixtures. +// The canonical A5 curve is the non-self-intersecting L-system curve +// (lsystem/ + curve.ts): point location via roundToTriple, s <-> cell mappings via +// sToCell / sToTriple / tripleToS. This is a breaking change from previous +// releases — cell IDs differ from the original construction. The original curve +// remains available bit-for-bit via the compat* exports below for migration. export type {Orientation} from './types'; -export { - compatSToCell as sToCell, - compatSToTriple as sToTriple, - compatTripleToS as tripleToS, - compatIJToS as IJToS -} from './compat'; +export {roundToTriple} from './curve'; +export {sToCell, sToTriple} from './lsystem'; export type {Cell} from './lsystem'; export type {Triple} from './triple'; -export {tripleParity, tripleInBounds} from './triple'; +export {tripleParity, tripleInBounds, tripleFlavor, tripleToS} from './triple'; -// Also exported under their own names, so the old-curve behavior stays pinned -// explicitly (tests/lattice/compat.test.ts) across the future canonical swap. +// The ORIGINAL (pre-L-system) curve, bit-for-bit, for the migration path — +// same cells, same pentagon flavors, old visiting order (tests/lattice/compat.test.ts). export {compatSToCell, compatSToTriple, compatTripleToS, compatIJToS} from './compat'; diff --git a/modules/lattice/lsystem/index.ts b/modules/lattice/lsystem/index.ts index 8af19d9..406f7e9 100644 --- a/modules/lattice/lsystem/index.ts +++ b/modules/lattice/lsystem/index.ts @@ -133,61 +133,16 @@ export function axiomLeafCell( }; } -// ---------- inverse: descend by which child's convex footprint contains the target ---------- -// `ta`/`tb` is the target in the corner-sum frame (= 3x the (a,b) point frame): -// a cell's corner sum for the exact triple path, or 3x a fractional point for -// direct point location. For each footprint edge we cross the UNIT edge direction -// with (target - corner); > 0 for every edge means the target is inside. -// -// Early exits (exact for both target kinds): the children tile the parent, so a -// strictly-inside child (min cross > 0) is unique and ends the scan; and an edge -// cross that is both <= 0 and <= the best score so far can neither be strictly -// inside nor win the argmax fallback, so the edge loop aborts. Targets on a -// boundary (fractional points only) fall through to the argmax, matching the -// exhaustive scan. -function insideScore( - t: CurveTables, - motif: number, - flip: number, - lvl: number, - posA: number, - posB: number, - ta: number, - tb: number, - best: number -): number { - const scale = POW2[lvl - 1]; - const edges = t.fpEdges[motif * 2 + flip]; - // posA/posB are fixed across this hull; fold 3*pos into the target once. - const ra = ta - 3 * posA; - const rb = tb - 3 * posB; - let minCross = Infinity; - for (let e = 0; e < edges.length; e += 4) { - const dta = ra - edges[e] * scale; - const dtb = rb - edges[e + 1] * scale; - const cross = edges[e + 2] * dtb - edges[e + 3] * dta; - if (cross < minCross) { - minCross = cross; - if (minCross <= 0 && minCross <= best) return minCross; - } - } - return minCross; -} - -// Shared descent for both leaf modes. `exact` targets are corner sums of real -// cells (leaf resolved by exact sum match); fractional targets resolve the leaf -// by point-in-cell over the 4 level-1 triangles. Internal; also used by compat.ts. +// ---------- inverse: descend by the branchless child classifier ---------- +// Shared descent: the target is the corner sum of a real cell, which is +// strictly interior at every level, so the branchless classifier is provably +// the containing child (and the leaf resolves by exact sum match). Fractional +// point location no longer descends at all — sphericalToCell rounds to a triple +// (see curve.ts roundToTriple). Internal; also used by compat.ts. // // Returns [s, leafFlavor]. Callers that only need `s` take [0]. -export function axiomTargetToS( - t: CurveTables, - ta: number, - tb: number, - R: number, - axiom: number, - exact: boolean -): [bigint, number] { - const {childToken, childFlip, childOffA, childOffB, leafSum, leafTri} = t; +export function axiomTargetToS(t: CurveTables, ta: number, tb: number, R: number, axiom: number): [bigint, number] { + const {childToken, childFlip, childOffA, childOffB, leafSum} = t; let motif = axiom, flip = 0; let posA = 0, @@ -197,37 +152,7 @@ export function axiomTargetToS( for (let L = R; L >= 2; L--) { const scale = POW2[L - 2]; const sign = flip ? -scale : scale; - // Exact targets (real cell corner sums) are strictly interior at every level, - // so the branchless classifier is provably the containing child. Fractional - // targets can sit on a child boundary, where the classifier's tie-break can - // differ from the argmax, so keep the exact argmax scan for that path - // (only sumPointToS uses it — compat locates points via the old sign tests). - let bestD: number; - if (exact) { - bestD = classify(t, motif * 2 + flip, ta - 3 * posA, tb - 3 * posB, scale); - } else { - bestD = 0; - let bestScore = -Infinity; - for (let d = 0; d < 4; d++) { - const ci = motif * 4 + d; - const score = insideScore( - t, - childToken[ci], - flip ^ childFlip[ci], - L - 1, - posA + childOffA[ci] * sign, - posB + childOffB[ci] * sign, - ta, - tb, - bestScore - ); - if (score > bestScore) { - bestScore = score; - bestD = d; - if (score > 0) break; // strictly inside: the unique containing child - } - } - } + const bestD = classify(t, motif * 2 + flip, ta - 3 * posA, tb - 3 * posB, scale); const ci = motif * 4 + bestD; posA += childOffA[ci] * sign; posB += childOffB[ci] * sign; @@ -237,40 +162,18 @@ export function axiomTargetToS( if (idx < LO_DIGITS) sLo += bestD * POW4[idx]; else sHi += bestD * POW4[idx - LO_DIGITS]; } - // level 1: pick the leaf cell, by exact corner-sum match or point-in-cell + // level 1: pick the leaf cell by exact corner-sum match const base = motif * 2 + flip; - let d0 = 0; - if (exact) { - const relA = ta - 3 * posA, - relB = tb - 3 * posB; - d0 = -1; - for (let d = 0; d < 4; d++) { - if (leafSum[base * 8 + d * 2] === relA && leafSum[base * 8 + d * 2 + 1] === relB) { - d0 = d; - break; - } - } - if (d0 < 0) throw new Error(`lsystem inverse: no leaf match for corner sum (${ta},${tb})`); - } else { - const ra = ta - 3 * posA, - rb = tb - 3 * posB; - let bestScore = -Infinity; - for (let d = 0; d < 4; d++) { - let minCross = Infinity; - for (let e = 0; e < 3; e++) { - const o = base * 48 + d * 12 + e * 4; - const dta = ra - leafTri[o]; - const dtb = rb - leafTri[o + 1]; - const cross = leafTri[o + 2] * dtb - leafTri[o + 3] * dta; - if (cross < minCross) minCross = cross; - } - if (minCross > bestScore) { - bestScore = minCross; - d0 = d; - if (minCross > 0) break; - } + const relA = ta - 3 * posA, + relB = tb - 3 * posB; + let d0 = -1; + for (let d = 0; d < 4; d++) { + if (leafSum[base * 8 + d * 2] === relA && leafSum[base * 8 + d * 2 + 1] === relB) { + d0 = d; + break; } } + if (d0 < 0) throw new Error(`lsystem inverse: no leaf match for corner sum (${ta},${tb})`); sLo += d0; const s = R > LO_DIGITS ? (BigInt(sHi) << LO_BITS) | BigInt(sLo) : BigInt(sLo); return [s, t.leafFlavor[base * 4 + d0]]; @@ -330,20 +233,6 @@ export function tripleToSLattice(triple: Triple, resolution: number, orientation const rec = ORIENT[orientation]; const ab = tripleToAB(triple); const tauSum = rec.isB ? 12 * POW2[resolution] : 0; - const sAxiom = axiomTargetToS(A5, ab.a - tauSum, ab.b + tauSum, resolution, rec.axiom, true)[0]; - return rec.reverse ? N - 1n - sAxiom : sAxiom; -} - -/** - * Fractional point -> the curve position `s` of the containing cell, by direct - * descent. The target is given in the corner-sum frame (= 3x the L-system (a,b) - * point frame); callers map their coordinate system into it (for the IJ plane - * the exact affine map is target = (12*(i+j), -12*j), see curve.ts). - */ -export function sumPointToS(ta: number, tb: number, resolution: number, orientation: Orientation = 'uv'): bigint { - const N = 1n << BigInt(2 * resolution); - const rec = ORIENT[orientation]; - const tauSum = rec.isB ? 12 * POW2[resolution] : 0; - const sAxiom = axiomTargetToS(A5, ta - tauSum, tb + tauSum, resolution, rec.axiom, false)[0]; + const sAxiom = axiomTargetToS(A5, ab.a - tauSum, ab.b + tauSum, resolution, rec.axiom)[0]; return rec.reverse ? N - 1n - sAxiom : sAxiom; } diff --git a/modules/lattice/lsystem/tables.ts b/modules/lattice/lsystem/tables.ts index 785ec80..c0b2613 100644 --- a/modules/lattice/lsystem/tables.ts +++ b/modules/lattice/lsystem/tables.ts @@ -34,10 +34,8 @@ export interface CurveTables { childOffB: Float64Array; // footprint hulls per (motif, flip): edge list [3*c0.a, 3*c0.b, d.a, d.b]*E fpEdges: Float64Array[]; - // leaf tables per (motif, flip): 4 host cells as corner sums, point-in-cell - // triangle edges, and pentagon flavors + // leaf tables per (motif, flip): 4 host cells as corner sums and pentagon flavors leafSum: Float64Array; - leafTri: Float64Array; leafFlavor: Uint8Array; // Branchless child classifier per state k = motif*2+flip: 3 separating lines // (classSep[k*9 ..] = [nx0,ny0,c0, nx1,ny1,c1, nx2,ny2,c2]) evaluated against @@ -242,11 +240,8 @@ export function compileGrammar(rules: Record, draws: Record 0 on every edge // - the cell's pentagon flavor const leafSum = new Float64Array(motifCount * 2 * 8); - const leafTri = new Float64Array(motifCount * 2 * 48); const leafFlavor = new Uint8Array(motifCount * 2 * 4); for (const m of allMotifs) { const drawStr = toDraws(m, 1); @@ -260,18 +255,6 @@ export function compileGrammar(rules: Record, draws: Record, draws: Record(); // Left and right quintant on the same face (A, B) @@ -89,7 +89,9 @@ export function getGlobalCellNeighbors(cellId: bigint, options?: {edgeOnly?: boo if (resolution === 1) return getRes1Neighbors(origin, segment, edgeOnly); const hilbertRes = resolution - FIRST_HILBERT_RESOLUTION + 1; - const {quintant: sourceQuintant, orientation: sourceOrientation} = segmentToQuintant(segment, origin); + const globalQuintant = origin.id * 5 + segment; + const sourceQuintant = SEGMENT_TO_QUINTANT[globalQuintant]; + const sourceOrientation = SEGMENT_TO_ORIENTATION[globalQuintant]; // Triple coordinates are orientation-independent const {triple, flavor} = sToCell(S, hilbertRes, sourceOrientation); diff --git a/modules/traversal/lattice-boundary.ts b/modules/traversal/lattice-boundary.ts index 4b3cd9e..c8858ff 100644 --- a/modules/traversal/lattice-boundary.ts +++ b/modules/traversal/lattice-boundary.ts @@ -6,7 +6,7 @@ import type {Orientation, Triple} from '../lattice'; import {tripleToS, tripleInBounds} from '../lattice'; import type {Origin} from '../core/utils'; import {serialize} from '../core/serialization'; -import {quintantToSegment, origins} from '../core/origin'; +import {origins, QUINTANT_TO_ORIENTATION, QUINTANT_TO_SEGMENT} from '../core/origin'; import {FACE_ADJACENCY} from '../core/face-adjacency'; /** Neighbor delta: [dx, dy, dz, isEdgeSharing] */ @@ -113,7 +113,9 @@ export function getBoundaryNeighbors(ctx: BoundaryContext, edgeOnly: boolean, sk // Left edge (z=0): neighbor in previous quintant at swapped [0, y, x] if (triple.z === 0) { const targetQuintant = (sourceQuintant - 1 + 5) % 5; - const {segment, orientation} = quintantToSegment(targetQuintant, origin); + const globalQuintant = origin.id * 5 + targetQuintant; + const segment = QUINTANT_TO_SEGMENT[globalQuintant]; + const orientation = QUINTANT_TO_ORIENTATION[globalQuintant]; pushDeltas( out, {x: 0, y: triple.y, z: triple.x}, @@ -129,7 +131,9 @@ export function getBoundaryNeighbors(ctx: BoundaryContext, edgeOnly: boolean, sk // Right edge (x=0): neighbor in next quintant at swapped [z, y, 0] if (triple.x === 0) { const targetQuintant = (sourceQuintant + 1) % 5; - const {segment, orientation} = quintantToSegment(targetQuintant, origin); + const globalQuintant = origin.id * 5 + targetQuintant; + const segment = QUINTANT_TO_SEGMENT[globalQuintant]; + const orientation = QUINTANT_TO_ORIENTATION[globalQuintant]; pushDeltas( out, {x: triple.z, y: triple.y, z: 0}, @@ -146,7 +150,9 @@ export function getBoundaryNeighbors(ctx: BoundaryContext, edgeOnly: boolean, sk if (triple.y === maxRow) { const [adjFaceId, adjQuintant] = FACE_ADJACENCY[origin.id][sourceQuintant]; const adjOrigin = origins[adjFaceId]; - const {segment, orientation} = quintantToSegment(adjQuintant, adjOrigin); + const globalQuintant = adjOrigin.id * 5 + adjQuintant; + const segment = QUINTANT_TO_SEGMENT[globalQuintant]; + const orientation = QUINTANT_TO_ORIENTATION[globalQuintant]; pushDeltas( out, {x: triple.z, y: maxRow, z: triple.x}, @@ -165,7 +171,9 @@ export function getBoundaryNeighbors(ctx: BoundaryContext, edgeOnly: boolean, sk if (q === sourceQuintant) continue; const distance = Math.min((q - sourceQuintant + 5) % 5, (sourceQuintant - q + 5) % 5); if (edgeOnly && distance !== 1) continue; - const {segment, orientation} = quintantToSegment(q, origin); + const globalQuintant = origin.id * 5 + q; + const segment = QUINTANT_TO_SEGMENT[globalQuintant]; + const orientation = QUINTANT_TO_ORIENTATION[globalQuintant]; pushTriple(out, triple, orientation, origin, segment, ctx); } } @@ -178,17 +186,18 @@ export function getBoundaryNeighbors(ctx: BoundaryContext, edgeOnly: boolean, sk const prevQuintant = (sourceQuintant - 1 + 5) % 5; const [prevAdjFaceId, prevAdjQuintant] = FACE_ADJACENCY[origin.id][prevQuintant]; const prevAdjOrigin = origins[prevAdjFaceId]; - const {segment: prevAdjSegment, orientation: prevAdjOrientation} = quintantToSegment( - prevAdjQuintant, - prevAdjOrigin - ); + const prevAdjGlobalQuintant = prevAdjOrigin.id * 5 + prevAdjQuintant; + const prevAdjSegment = QUINTANT_TO_SEGMENT[prevAdjGlobalQuintant]; + const prevAdjOrientation = QUINTANT_TO_ORIENTATION[prevAdjGlobalQuintant]; pushTriple(out, triple, prevAdjOrientation, prevAdjOrigin, prevAdjSegment, ctx); // Vertex neighbor 2: adjacent quintant on the primary cross-face const [crossFaceId, crossQuintant] = FACE_ADJACENCY[origin.id][sourceQuintant]; const crossOrigin = origins[crossFaceId]; const nextCrossQuintant = (crossQuintant + 1) % 5; - const {segment: crossSegment, orientation: crossOrientation} = quintantToSegment(nextCrossQuintant, crossOrigin); + const crossGlobalQuintant = crossOrigin.id * 5 + nextCrossQuintant; + const crossSegment = QUINTANT_TO_SEGMENT[crossGlobalQuintant]; + const crossOrientation = QUINTANT_TO_ORIENTATION[crossGlobalQuintant]; pushTriple(out, triple, crossOrientation, crossOrigin, crossSegment, ctx); } diff --git a/modules/traversal/lattice-flood-fill.ts b/modules/traversal/lattice-flood-fill.ts index ec9bb3e..ede211d 100644 --- a/modules/traversal/lattice-flood-fill.ts +++ b/modules/traversal/lattice-flood-fill.ts @@ -6,7 +6,7 @@ import type {Orientation} from '../lattice'; import {sToTriple, tripleToS} from '../lattice'; import type {Origin} from '../core/utils'; import {deserialize, serialize, FIRST_HILBERT_RESOLUTION} from '../core/serialization'; -import {segmentToQuintant} from '../core/origin'; +import {SEGMENT_TO_ORIENTATION} from '../core/origin'; /** Per-quintant context needed to convert triples back to cell IDs. */ interface QuintantCtx { @@ -67,7 +67,7 @@ function cellToQuintantKey( yStride: number ): {quintantIdx: number; key: number; ctx: QuintantCtx} { const {origin, segment, S} = deserialize(cellId); - const {orientation} = segmentToQuintant(segment, origin); + const orientation = SEGMENT_TO_ORIENTATION[origin.id * 5 + segment]; const triple = sToTriple(S, hilbertRes, orientation); const parity = triple.x + triple.y + triple.z; // 0 or 1 return { diff --git a/modules/traversal/lattice-neighbors.ts b/modules/traversal/lattice-neighbors.ts index 7546193..1963791 100644 --- a/modules/traversal/lattice-neighbors.ts +++ b/modules/traversal/lattice-neighbors.ts @@ -6,7 +6,7 @@ import type {Orientation, Triple} from '../lattice'; import {sToTriple, tripleToS, tripleParity, tripleInBounds} from '../lattice'; import type {Origin} from '../core/utils'; import {deserialize, serialize, FIRST_HILBERT_RESOLUTION} from '../core/serialization'; -import {segmentToQuintant} from '../core/origin'; +import {SEGMENT_TO_ORIENTATION, SEGMENT_TO_QUINTANT} from '../core/origin'; import {getGlobalCellNeighbors} from './global-neighbors'; import {type BoundaryContext, getBoundaryNeighbors} from './lattice-boundary'; @@ -30,7 +30,9 @@ function decodeSource(cellId: bigint): LatticeSource | null { if (resolution < FIRST_HILBERT_RESOLUTION) return null; const hilbertRes = resolution - FIRST_HILBERT_RESOLUTION + 1; - const {quintant, orientation} = segmentToQuintant(segment, origin); + const globalQuintant = origin.id * 5 + segment; + const quintant = SEGMENT_TO_QUINTANT[globalQuintant]; + const orientation = SEGMENT_TO_ORIENTATION[globalQuintant]; const triple = sToTriple(S, hilbertRes, orientation); return { diff --git a/modules/utils/spiral.ts b/modules/utils/spiral.ts deleted file mode 100644 index 6d81edf..0000000 --- a/modules/utils/spiral.ts +++ /dev/null @@ -1,91 +0,0 @@ -// A5 -// SPDX-License-Identifier: Apache-2.0 -// Copyright (c) A5 contributors - -import {vec3, quat, glMatrix} from 'gl-matrix'; -glMatrix.setMatrixArrayType(Float64Array as any); - -import type {Cartesian, Spherical} from '../core/coordinate-systems'; -import {toCartesian} from '../core/coordinate-transforms'; - -/** - * Number of perturbed sample points the spiral can produce. Tuned on a - * corpus of ~3500 spherical points × 8 resolutions, such that the spiral - * hits a strictly-containing cell within these many iterations for all - * but a handful of points right at the polar singularity at very high - * resolutions. - */ -export const SPIRAL_SAMPLE_COUNT = 24; - -/** - * Azimuthal step between consecutive samples in the rotated tangent plane. - * 1.4 rad (~80°) sits on a flat plateau of the parameter sweep. - */ -const ANGLE_STEP_RAD = 1.4; - -// Precomputed unit-direction spiral at the canonical pole's tangent plane -// (z=0). Each entry is the tangent direction of one sample. The pattern -// is independent of resolution; per spiral the directions are rotated to -// the input point's tangent plane via a single quaternion. -const POLE: vec3 = vec3.fromValues(0, 0, 1); -const SPIRAL_DIRECTIONS: vec3[] = (() => { - const out: vec3[] = []; - for (let i = 0; i < SPIRAL_SAMPLE_COUNT; i++) { - const a = (i + 1) * ANGLE_STEP_RAD; - out.push(vec3.fromValues(Math.cos(a), Math.sin(a), 0)); - } - return out; -})(); - -/** - * Lazy spiral sampler around a center point on the unit sphere — used by - * `sphericalToCell` to discover nearby cells when the projection-based - * estimate lands in the wrong one. - * - * Construction precomputes the pole→center quaternion. `sample(i)` - * rotates the i-th cached direction into the tangent plane at `center`, - * scales by the appropriate radius, and returns a Cartesian point near - * the unit sphere — the consumer of the spiral (the dodecahedron - * projection) wants Cartesian anyway, so we skip the spherical - * round-trip entirely. The point is slightly off the unit sphere by - * O(R²); downstream callers either tolerate this or normalise. - * - * All state is per-instance (no module-level mutable scratch), so each - * thread/task can hold its own without locking. - */ -export class Spiral { - private c0: Cartesian; - private q: quat; - private scaleRad: number; - private scratch: vec3; - - /** - * Initialise a spiral around `center` on the unit sphere. The - * tangent-plane radius of the outermost sample is `scaleRad`; - * intermediate samples scale linearly between 0 and that. - * `quat.rotationTo` handles the antipode case internally. - */ - constructor(center: Spherical, scaleRad: number) { - this.c0 = toCartesian(center); - this.q = quat.create(); - quat.rotationTo(this.q, POLE, this.c0 as unknown as vec3); - this.scaleRad = scaleRad; - this.scratch = vec3.create(); - } - - /** - * Write the i-th spiral sample (0 ≤ i < SPIRAL_SAMPLE_COUNT) into - * `out` and return it. Sample i sits at tangent-plane offset of - * magnitude `(i+1)/(SPIRAL_SAMPLE_COUNT+1) · scaleRad` from `center`, - * rotated by azimuth `(i+1) · 1.4 rad` in `center`'s tangent frame. - * - * `out` is supplied by the caller so the same buffer can be reused - * across all samples in a search, avoiding per-iteration allocation. - */ - sample(out: Cartesian, i: number): Cartesian { - vec3.transformQuat(this.scratch, SPIRAL_DIRECTIONS[i], this.q); - const R = ((i + 1) / (SPIRAL_SAMPLE_COUNT + 1)) * this.scaleRad; - vec3.scaleAndAdd(out as unknown as vec3, this.c0 as unknown as vec3, this.scratch, R); - return out; - } -} diff --git a/scripts/fixtures/lattice/curve.cjs b/scripts/fixtures/lattice/curve.cjs index a7a0515..24c1746 100644 --- a/scripts/fixtures/lattice/curve.cjs +++ b/scripts/fixtures/lattice/curve.cjs @@ -1,6 +1,6 @@ const fs = require('fs'); const path = require('path'); -const {sToCell, tripleToS, tripleParity, tripleInBounds, IJToS} = require('../../a5-test.cjs'); +const {sToCell, tripleToS, tripleParity, tripleInBounds, roundToTriple} = require('../../a5-test.cjs'); const outputDir = path.join(__dirname, '../../../tests/fixtures/lattice'); const outputPath = path.join(outputDir, 'curve.json'); @@ -46,7 +46,7 @@ for (const resolution of resolutions) { } console.log(` sToCell: ${sToCellFixtures.length} cases (all round-trips verified)`); -// --- IJToS: fractional IJ point -> s of the containing cell --- +// --- pointToS: fractional IJ point -> s of the containing cell (roundToTriple + encode) --- // Deterministic sample points, as fractions of the quintant triangle // (i >= 0, j >= 0, i + j <= 2^resolution) const pointFractions = [ @@ -67,9 +67,9 @@ for (const resolution of resolutions) { for (const [fi, fj] of pointFractions) { const i = fi * n; const j = fj * n; - const s = IJToS([i, j], resolution, orientation); + const s = tripleToS(roundToTriple([i, j], resolution), resolution, orientation); if (s < 0n || s >= BigInt(numCells)) { - console.error(` ERROR: IJToS(${i},${j}) out of range for res=${resolution}, ori=${orientation}: ${s}`); + console.error(` ERROR: pointToS(${i},${j}) out of range for res=${resolution}, ori=${orientation}: ${s}`); process.exit(1); } // Cross-check: the containing cell's centroid must map back to the same s @@ -78,10 +78,10 @@ for (const resolution of resolutions) { const parity = tripleParity(triple); const ci = triple.x + triple.y + (parity === 0 ? 1 / 3 : -1 / 3); const cj = -triple.x + (parity === 0 ? 1 / 3 : 2 / 3); - const sCentroid = IJToS([ci, cj], resolution, orientation); + const sCentroid = tripleToS(roundToTriple([ci, cj], resolution), resolution, orientation); if (sCentroid !== s) { console.error( - ` ERROR: IJToS centroid cross-check failed for (${i},${j}) res=${resolution}, ori=${orientation}: ${s} vs ${sCentroid}` + ` ERROR: pointToS centroid cross-check failed for (${i},${j}) res=${resolution}, ori=${orientation}: ${s} vs ${sCentroid}` ); process.exit(1); } @@ -89,7 +89,7 @@ for (const resolution of resolutions) { } } } -console.log(` IJToS: ${ijToSFixtures.length} cases (all centroid cross-checks verified)`); +console.log(` pointToS: ${ijToSFixtures.length} cases (all centroid cross-checks verified)`); // --- tripleInBounds --- const maxRow = 15; // resolution 4: 2^4 - 1 @@ -118,7 +118,7 @@ console.log(` tripleInBounds: ${boundsCases.length} cases (all verified)`); const fixtures = { sToCell: sToCellFixtures, - IJToS: ijToSFixtures, + pointToS: ijToSFixtures, tripleInBounds: boundsCases }; diff --git a/scripts/fixtures/lattice/lsystem.cjs b/scripts/fixtures/lattice/lsystem.cjs index 4fd4c66..baf8e3b 100644 --- a/scripts/fixtures/lattice/lsystem.cjs +++ b/scripts/fixtures/lattice/lsystem.cjs @@ -1,6 +1,6 @@ const fs = require('fs'); const path = require('path'); -const {lsystemSToCell, lsystemTripleToS, lsystemIJToS, tripleParity} = require('../../a5-test.cjs'); +const {lsystemSToCell, lsystemTripleToS, roundToTriple, tripleParity} = require('../../a5-test.cjs'); const outputDir = path.join(__dirname, '../../../tests/fixtures/lattice'); const outputPath = path.join(outputDir, 'lsystem.json'); @@ -50,7 +50,7 @@ for (const resolution of resolutions) { } console.log(` lsystemSToCell: ${sToCellFixtures.length} cases (all round-trips verified)`); -// --- IJToS: fractional IJ point -> s of the containing cell --- +// --- pointToS: fractional IJ point -> s of the containing cell (roundToTriple + encode) --- // Deterministic sample points, as fractions of the quintant triangle // (i >= 0, j >= 0, i + j <= 2^resolution) const pointFractions = [ @@ -71,9 +71,9 @@ for (const resolution of resolutions) { for (const [fi, fj] of pointFractions) { const i = fi * n; const j = fj * n; - const s = lsystemIJToS([i, j], resolution, orientation); + const s = lsystemTripleToS(roundToTriple([i, j], resolution), resolution, orientation); if (s < 0n || s >= BigInt(numCells)) { - console.error(` ERROR: lsystemIJToS(${i},${j}) out of range for res=${resolution}, ori=${orientation}: ${s}`); + console.error(` ERROR: pointToS(${i},${j}) out of range for res=${resolution}, ori=${orientation}: ${s}`); process.exit(1); } // Cross-check: the containing cell's centroid must map back to the same s @@ -82,10 +82,10 @@ for (const resolution of resolutions) { const parity = tripleParity(triple); const ci = triple.x + triple.y + (parity === 0 ? 1 / 3 : -1 / 3); const cj = -triple.x + (parity === 0 ? 1 / 3 : 2 / 3); - const sCentroid = lsystemIJToS([ci, cj], resolution, orientation); + const sCentroid = lsystemTripleToS(roundToTriple([ci, cj], resolution), resolution, orientation); if (sCentroid !== s) { console.error( - ` ERROR: lsystemIJToS centroid cross-check failed for (${i},${j}) res=${resolution}, ori=${orientation}: ${s} vs ${sCentroid}` + ` ERROR: pointToS centroid cross-check failed for (${i},${j}) res=${resolution}, ori=${orientation}: ${s} vs ${sCentroid}` ); process.exit(1); } @@ -93,8 +93,8 @@ for (const resolution of resolutions) { } } } -console.log(` lsystemIJToS: ${ijToSFixtures.length} cases (all centroid cross-checks verified)`); +console.log(` pointToS: ${ijToSFixtures.length} cases (all centroid cross-checks verified)`); fs.mkdirSync(outputDir, {recursive: true}); -fs.writeFileSync(outputPath, JSON.stringify({sToCell: sToCellFixtures, IJToS: ijToSFixtures}, null, 2)); +fs.writeFileSync(outputPath, JSON.stringify({sToCell: sToCellFixtures, pointToS: ijToSFixtures}, null, 2)); console.log(` Wrote fixtures to ${outputPath}`); diff --git a/scripts/fixtures/utils/spiral.cjs b/scripts/fixtures/utils/spiral.cjs deleted file mode 100644 index 34809df..0000000 --- a/scripts/fixtures/utils/spiral.cjs +++ /dev/null @@ -1,64 +0,0 @@ -const fs = require('fs'); -const path = require('path'); -const {Spiral, SPIRAL_SAMPLE_COUNT} = require('../../a5-test.cjs'); - -const outputDir = path.join(__dirname, '../../../tests/fixtures/utils'); -const outputPath = path.join(outputDir, 'spiral.json'); - -// Each case: a center point in spherical (theta, phi) and a scale (radians). -// Scales mimic those used by sphericalToCell at various hilbertResolutions: -// scale = (70° in rad) / 2^hilbertResolution. -const SCALE_BASE = (70 * Math.PI) / 180; -const cases = [ - // Equator-ish point (no degenerate orientation). - {name: 'equator_low_res', center: [0.5, Math.PI / 2], scaleRad: SCALE_BASE}, - {name: 'equator_high_res', center: [0.5, Math.PI / 2], scaleRad: SCALE_BASE / 64}, - // Mid-latitudes. - {name: 'midlat_north', center: [1.0, Math.PI / 4], scaleRad: SCALE_BASE / 4}, - {name: 'midlat_south', center: [-2.5, (3 * Math.PI) / 4], scaleRad: SCALE_BASE / 16}, - // Canonical pole — quat.rotationTo identity case. - {name: 'north_pole', center: [0, 0.001], scaleRad: SCALE_BASE / 8}, - // Antipode of canonical pole — quat.rotationTo's special-case path. - {name: 'south_pole', center: [0, Math.PI - 0.001], scaleRad: SCALE_BASE / 8}, - // Right at the pole (numerically): exercises the antipode branch precisely. - {name: 'south_pole_exact', center: [0, Math.PI], scaleRad: SCALE_BASE / 1024} -]; - -const fixtures = cases.map(c => { - const spiral = new Spiral(c.center, c.scaleRad); - const out = new Float64Array(3); - const samples = []; - for (let i = 0; i < SPIRAL_SAMPLE_COUNT; i++) { - spiral.sample(out, i); - samples.push([out[0], out[1], out[2]]); - } - return { - name: c.name, - center: c.center, - scaleRad: c.scaleRad, - sampleCount: samples.length, - samples - }; -}); - -console.log('Generating utils/spiral fixtures...'); -console.log(` SPIRAL_SAMPLE_COUNT = ${SPIRAL_SAMPLE_COUNT}`); -for (const f of fixtures) { - console.log( - ` ${f.name}: center=[${f.center[0].toFixed(4)}, ${f.center[1].toFixed(4)}] scale=${f.scaleRad.toExponential(2)} samples=${f.sampleCount}` - ); -} - -fs.mkdirSync(outputDir, {recursive: true}); -fs.writeFileSync( - outputPath, - JSON.stringify( - { - sampleCount: SPIRAL_SAMPLE_COUNT, - spiral: fixtures - }, - null, - 2 - ) -); -console.log(` Wrote fixtures to ${outputPath}`); diff --git a/scripts/generate-fixtures.cjs b/scripts/generate-fixtures.cjs index f4bd908..2f8da64 100644 --- a/scripts/generate-fixtures.cjs +++ b/scripts/generate-fixtures.cjs @@ -26,7 +26,6 @@ require('./fixtures/core/compact.cjs'); // Utils generators require('./fixtures/utils/great-circle.cjs'); -require('./fixtures/utils/spiral.cjs'); // Region generators require('./fixtures/regions/polygon.cjs'); diff --git a/scripts/sync_fixtures.py b/scripts/sync_fixtures.py index 5e2d698..b6f14f9 100644 --- a/scripts/sync_fixtures.py +++ b/scripts/sync_fixtures.py @@ -50,6 +50,10 @@ (PY_ROOT, "tests/core/fixtures/tiling.json"), (RS_ROOT, "tests/fixtures/tiling.json"), ], + "tests/fixtures/serialization.json": [ + (PY_ROOT, "tests/core/fixtures/serialization.json"), + (RS_ROOT, "tests/fixtures/serialization.json"), + ], # Lattice fixtures "tests/fixtures/lattice/curve.json": [ @@ -82,6 +86,18 @@ (PY_ROOT, "tests/traversal/fixtures/quintant-neighbors.json"), (RS_ROOT, "tests/fixtures/traversal/quintant-neighbors.json"), ], + "tests/fixtures/traversal/lattice-flood-fill.json": [ + (PY_ROOT, "tests/traversal/fixtures/lattice-flood-fill.json"), + (RS_ROOT, "tests/fixtures/traversal/lattice-flood-fill.json"), + ], + "tests/fixtures/traversal/lattice-neighbors.json": [ + (PY_ROOT, "tests/traversal/fixtures/lattice-neighbors.json"), + (RS_ROOT, "tests/fixtures/traversal/lattice-neighbors.json"), + ], + "tests/fixtures/traversal/line.json": [ + (PY_ROOT, "tests/traversal/fixtures/line.json"), + (RS_ROOT, "tests/fixtures/traversal/line.json"), + ], # Geometry fixtures "tests/geometry/fixtures/pentagon.json": [ @@ -98,9 +114,8 @@ ], # Region fixtures - # NOTE: not yet synced to PY_ROOT — the Python port still uses the old - # single-ring polygon_to_cells; add the PY entry when porting hole support. "tests/fixtures/regions/polygon.json": [ + (PY_ROOT, "tests/regions/fixtures/polygon.json"), (RS_ROOT, "tests/fixtures/regions/polygon.json"), ], diff --git a/tests/fixtures/cell-to-lonlat.json b/tests/fixtures/cell-to-lonlat.json index 72001e9..93d1c25 100644 --- a/tests/fixtures/cell-to-lonlat.json +++ b/tests/fixtures/cell-to-lonlat.json @@ -17,7 +17,7 @@ 35.677369792795794 ], "resolution": 8, - "cell_id": "872f880000000000", + "cell_id": "872fb80000000000", "center_lonlat": [ 139.62350637919997, 35.63157147255161 @@ -29,7 +29,7 @@ 35.677369792795794 ], "resolution": 12, - "cell_id": "872f937800000000", + "cell_id": "872fae1800000000", "center_lonlat": [ 139.76867809739872, 35.67600097803834 @@ -41,7 +41,7 @@ 35.677369792795794 ], "resolution": 16, - "cell_id": "872f938388000000", + "cell_id": "872fae73b8000000", "center_lonlat": [ 139.76297049600976, 35.6775299174842 @@ -53,7 +53,7 @@ 35.677369792795794 ], "resolution": 20, - "cell_id": "872f938393780000", + "cell_id": "872fae73ae180000", "center_lonlat": [ 139.76240307455004, 35.67735665532112 @@ -65,7 +65,7 @@ 35.677369792795794 ], "resolution": 4, - "cell_id": "75b8000000000000", + "cell_id": "75f8000000000000", "center_lonlat": [ 78.76278431609035, 35.245063054446746 @@ -77,7 +77,7 @@ 35.677369792795794 ], "resolution": 8, - "cell_id": "76dd780000000000", + "cell_id": "76e2780000000000", "center_lonlat": [ 80.8826559344318, 35.596348117234115 @@ -89,7 +89,7 @@ 35.677369792795794 ], "resolution": 12, - "cell_id": "76dd001800000000", + "cell_id": "76e2002800000000", "center_lonlat": [ 80.75955927262851, 35.67243303878112 @@ -101,7 +101,7 @@ 35.677369792795794 ], "resolution": 16, - "cell_id": "76dd001408000000", + "cell_id": "76e2002bf8000000", "center_lonlat": [ 80.76275601893087, 35.677287763322845 @@ -113,7 +113,7 @@ 35.677369792795794 ], "resolution": 20, - "cell_id": "76dd00140df80000", + "cell_id": "76e2002bf1080000", "center_lonlat": [ 80.76239261869227, 35.677374783286595 @@ -125,7 +125,7 @@ 35.677369792795794 ], "resolution": 4, - "cell_id": "2488000000000000", + "cell_id": "24a8000000000000", "center_lonlat": [ -83.75823808317773, 35.58901515202695 @@ -137,7 +137,7 @@ 35.677369792795794 ], "resolution": 8, - "cell_id": "2498a80000000000", + "cell_id": "2497480000000000", "center_lonlat": [ -80.81428213457912, 35.605794941766504 @@ -149,7 +149,7 @@ 35.677369792795794 ], "resolution": 12, - "cell_id": "2498a7e800000000", + "cell_id": "24974ab800000000", "center_lonlat": [ -80.76193540226967, 35.681931108601866 @@ -161,7 +161,7 @@ 35.677369792795794 ], "resolution": 16, - "cell_id": "2498a7e5f8000000", + "cell_id": "24974aba08000000", "center_lonlat": [ -80.7630999644536, 35.677373493949084 @@ -173,7 +173,7 @@ 35.677369792795794 ], "resolution": 20, - "cell_id": "2498a7e613e80000", + "cell_id": "24974ab9ec280000", "center_lonlat": [ -80.7623626198839, 35.67735881436766 @@ -185,7 +185,7 @@ 35.677369792795794 ], "resolution": 4, - "cell_id": "df38000000000000", + "cell_id": "df18000000000000", "center_lonlat": [ -142.22672802011118, 35.587031704321205 @@ -197,7 +197,7 @@ 35.677369792795794 ], "resolution": 8, - "cell_id": "de57380000000000", + "cell_id": "de16280000000000", "center_lonlat": [ -139.77768931114798, 35.71037187423982 @@ -209,7 +209,7 @@ 35.677369792795794 ], "resolution": 12, - "cell_id": "de5737c800000000", + "cell_id": "de16283800000000", "center_lonlat": [ -139.76670201730929, 35.674414339304576 @@ -221,7 +221,7 @@ 35.677369792795794 ], "resolution": 16, - "cell_id": "de5737c3d8000000", + "cell_id": "de162833e8000000", "center_lonlat": [ -139.76227611480203, 35.677538274160106 @@ -233,7 +233,7 @@ 35.677369792795794 ], "resolution": 20, - "cell_id": "de5737c3d3e80000", + "cell_id": "de162833e7280000", "center_lonlat": [ -139.7624026099707, 35.67738447477849 @@ -257,7 +257,7 @@ 35 ], "resolution": 8, - "cell_id": "7f0eb80000000000", + "cell_id": "7f0c380000000000", "center_lonlat": [ 87.10410878481241, 35.03359803473627 @@ -269,7 +269,7 @@ 35 ], "resolution": 12, - "cell_id": "76fbebe800000000", + "cell_id": "76f1414800000000", "center_lonlat": [ 86.99349536442298, 34.99954151699924 @@ -281,7 +281,7 @@ 35 ], "resolution": 16, - "cell_id": "76fbebece8000000", + "cell_id": "76f1414c48000000", "center_lonlat": [ 86.9995934563351, 34.999830575324424 @@ -293,7 +293,7 @@ 35 ], "resolution": 20, - "cell_id": "76fbebecec080000", + "cell_id": "76f1414c4c080000", "center_lonlat": [ 86.99997459095403, 35.000009906527275 @@ -317,7 +317,7 @@ 35 ], "resolution": 8, - "cell_id": "7f0e080000000000", + "cell_id": "7f0cf80000000000", "center_lonlat": [ 88.03477152602773, 35.07945263542183 @@ -329,7 +329,7 @@ 35 ], "resolution": 12, - "cell_id": "7f04a0a800000000", + "cell_id": "7f0b4f4800000000", "center_lonlat": [ 88.00080016226019, 35.00202354167482 @@ -341,7 +341,7 @@ 35 ], "resolution": 16, - "cell_id": "7f04a0aeb8000000", + "cell_id": "7f0b4f47b8000000", "center_lonlat": [ 87.99960110191302, 34.99976824793107 @@ -353,7 +353,7 @@ 35 ], "resolution": 20, - "cell_id": "7f04a0aeb7f80000", + "cell_id": "7f0b4f47b4080000", "center_lonlat": [ 87.99995943718955, 34.99999027778291 @@ -377,7 +377,7 @@ 0 ], "resolution": 8, - "cell_id": "a7bc680000000000", + "cell_id": "a7b1980000000000", "center_lonlat": [ 89.9921389407915, 0.06034007096322963 @@ -389,7 +389,7 @@ 0 ], "resolution": 12, - "cell_id": "a7bc52f800000000", + "cell_id": "a7b1baf800000000", "center_lonlat": [ 89.99713709492244, 0.0026426965800389586 @@ -401,7 +401,7 @@ 0 ], "resolution": 16, - "cell_id": "a7bc52d368000000", + "cell_id": "a7b1bad368000000", "center_lonlat": [ 89.99966386686435, 0.00007767227344969716 @@ -413,7 +413,7 @@ 0 ], "resolution": 20, - "cell_id": "a7bc52d354d80000", + "cell_id": "a7b1bad35ed80000", "center_lonlat": [ 90.0000038100543, 0.000029585327680062587 @@ -437,7 +437,7 @@ 30 ], "resolution": 8, - "cell_id": "7c13d80000000000", + "cell_id": "7c13e80000000000", "center_lonlat": [ 119.93462713595272, 30.059609320146475 @@ -449,7 +449,7 @@ 30 ], "resolution": 12, - "cell_id": "7c13dbd800000000", + "cell_id": "7c13e7e800000000", "center_lonlat": [ 119.99610917188903, 29.996789107600556 @@ -461,7 +461,7 @@ 30 ], "resolution": 16, - "cell_id": "7c13dbd9e8000000", + "cell_id": "7c13e7e9e8000000", "center_lonlat": [ 119.99947057704458, 30.000071350378775 @@ -473,7 +473,7 @@ 30 ], "resolution": 20, - "cell_id": "7c13dbd9ede80000", + "cell_id": "7c13e7e9ed180000", "center_lonlat": [ 119.99996421100184, 30.000008711533837 @@ -497,7 +497,7 @@ -30 ], "resolution": 8, - "cell_id": "8fc7380000000000", + "cell_id": "8fc3180000000000", "center_lonlat": [ 150.08686389088433, -30.05395068146772 @@ -509,7 +509,7 @@ -30 ], "resolution": 12, - "cell_id": "8fc7382800000000", + "cell_id": "8fc31fd800000000", "center_lonlat": [ 150.00207396509222, -30.000347026370502 @@ -521,7 +521,7 @@ -30 ], "resolution": 16, - "cell_id": "8fc7382998000000", + "cell_id": "8fc31fd9a8000000", "center_lonlat": [ 150.00037601854785, -29.999670451795073 @@ -533,7 +533,7 @@ -30 ], "resolution": 20, - "cell_id": "8fc7382990a80000", + "cell_id": "8fc31fd9ac580000", "center_lonlat": [ 149.99999808025723, -29.999998752933465 @@ -557,7 +557,7 @@ 35 ], "resolution": 8, - "cell_id": "ea87280000000000", + "cell_id": "ea82e80000000000", "center_lonlat": [ 169.88623918986286, 35.02754701912999 @@ -569,7 +569,7 @@ 35 ], "resolution": 12, - "cell_id": "ea87337800000000", + "cell_id": "ea82f37800000000", "center_lonlat": [ 170.00348986573437, 35.002718193714465 @@ -581,7 +581,7 @@ 35 ], "resolution": 16, - "cell_id": "ea8733acc8000000", + "cell_id": "ea82f384c8000000", "center_lonlat": [ 170.00032051025823, 34.999828296295235 @@ -593,7 +593,7 @@ 35 ], "resolution": 20, - "cell_id": "ea8733acc5080000", + "cell_id": "ea82f384c5080000", "center_lonlat": [ 169.99996812059777, 34.99999969033825 @@ -641,7 +641,7 @@ 0 ], "resolution": 16, - "cell_id": "e45745dea8000000", + "cell_id": "e45745de88000000", "center_lonlat": [ 178.9997440537153, 0.00009598076086926035 @@ -653,7 +653,7 @@ 0 ], "resolution": 20, - "cell_id": "e45745dd05980000", + "cell_id": "e45745dd32680000", "center_lonlat": [ 179.0000079771258, 0.0000031005765019001743 @@ -677,7 +677,7 @@ 35 ], "resolution": 8, - "cell_id": "ec3d680000000000", + "cell_id": "ec31680000000000", "center_lonlat": [ -170.0337173313443, 34.86808709618724 @@ -689,7 +689,7 @@ 35 ], "resolution": 12, - "cell_id": "ec3d788800000000", + "cell_id": "ec3178a800000000", "center_lonlat": [ -169.99787161048005, 34.99956943901616 @@ -701,7 +701,7 @@ 35 ], "resolution": 16, - "cell_id": "ec3d7888b8000000", + "cell_id": "ec3178a888000000", "center_lonlat": [ -170.0001197620391, 35.00031936949359 @@ -713,7 +713,7 @@ 35 ], "resolution": 20, - "cell_id": "ec3d78886c780000", + "cell_id": "ec3178a86e080000", "center_lonlat": [ -170.00000844222876, 34.999964025402896 @@ -761,7 +761,7 @@ 0 ], "resolution": 16, - "cell_id": "e45d17acc8000000", + "cell_id": "e45d1784c8000000", "center_lonlat": [ -178.99949961205778, 0.0003732947645867457 @@ -773,7 +773,7 @@ 0 ], "resolution": 20, - "cell_id": "e45d17accfe80000", + "cell_id": "e45d1784cfe80000", "center_lonlat": [ -178.99999596181084, 0.000001973980422064866 @@ -785,7 +785,7 @@ 80 ], "resolution": 4, - "cell_id": "528000000000000", + "cell_id": "518000000000000", "center_lonlat": [ 99.47281468352145, 78.87769348991482 @@ -797,7 +797,7 @@ 80 ], "resolution": 8, - "cell_id": "452b80000000000", + "cell_id": "453b80000000000", "center_lonlat": [ 100.26331583737755, 80.04672543386918 @@ -809,7 +809,7 @@ 80 ], "resolution": 12, - "cell_id": "452b60800000000", + "cell_id": "453b5f800000000", "center_lonlat": [ 99.97111534596036, 79.99831165427123 @@ -821,7 +821,7 @@ 80 ], "resolution": 16, - "cell_id": "452b60578000000", + "cell_id": "453b5fa78000000", "center_lonlat": [ 100.00228934537006, 79.99976999626797 @@ -833,7 +833,7 @@ 80 ], "resolution": 20, - "cell_id": "452b6072a180000", + "cell_id": "453b5f8e2880000", "center_lonlat": [ 100.00012246549193, 79.99998487805685 @@ -845,7 +845,7 @@ -70 ], "resolution": 4, - "cell_id": "c4f8000000000000", + "cell_id": "c4c8000000000000", "center_lonlat": [ 129.91328227758618, -71.17978748792397 @@ -857,7 +857,7 @@ -70 ], "resolution": 8, - "cell_id": "c612d80000000000", + "cell_id": "c64e680000000000", "center_lonlat": [ 130.1710548883549, -70.03880017816462 @@ -869,7 +869,7 @@ -70 ], "resolution": 12, - "cell_id": "c612d57800000000", + "cell_id": "c64e67b800000000", "center_lonlat": [ 130.0122949580321, -69.9981748048732 @@ -881,7 +881,7 @@ -70 ], "resolution": 16, - "cell_id": "c612d57408000000", + "cell_id": "c64e67b808000000", "center_lonlat": [ 130.0004932083781, -69.99964239411541 @@ -893,7 +893,7 @@ -70 ], "resolution": 20, - "cell_id": "c612d57421e80000", + "cell_id": "c64e67b832080000", "center_lonlat": [ 130.00004700384306, -69.99999934791488 @@ -917,7 +917,7 @@ 0 ], "resolution": 8, - "cell_id": "4f05d80000000000", + "cell_id": "4f0a280000000000", "center_lonlat": [ 0.011401187809724433, -0.03093911093324804 @@ -929,7 +929,7 @@ 0 ], "resolution": 12, - "cell_id": "4f05dce800000000", + "cell_id": "4f0a22c800000000", "center_lonlat": [ 0.0037369117221714987, -0.0038472046061282265 @@ -941,7 +941,7 @@ 0 ], "resolution": 16, - "cell_id": "4f05dccc58000000", + "cell_id": "4f0a22d228000000", "center_lonlat": [ 0.0003020515398475254, -0.00016955906605060878 @@ -953,7 +953,7 @@ 0 ], "resolution": 20, - "cell_id": "4f05dccc72680000", + "cell_id": "4f0a22d20e880000", "center_lonlat": [ -0.00002666749014679226, 0.000013718472854690512 @@ -965,7 +965,7 @@ 40.7484 ], "resolution": 4, - "cell_id": "2618000000000000", + "cell_id": "2648000000000000", "center_lonlat": [ -71.36577194825946, 40.86339686079075 @@ -977,7 +977,7 @@ 40.7484 ], "resolution": 8, - "cell_id": "2610780000000000", + "cell_id": "264f780000000000", "center_lonlat": [ -73.94200712434372, 40.67687991896999 @@ -989,7 +989,7 @@ 40.7484 ], "resolution": 12, - "cell_id": "2610738800000000", + "cell_id": "264f74c800000000", "center_lonlat": [ -73.99211087138201, 40.74945854109684 @@ -1001,7 +1001,7 @@ 40.7484 ], "resolution": 16, - "cell_id": "2610762858000000", + "cell_id": "264f7a2c58000000", "center_lonlat": [ -73.985148586317, 40.74847025497772 @@ -1013,7 +1013,7 @@ 40.7484 ], "resolution": 20, - "cell_id": "2610762843380000", + "cell_id": "264f7a2c41c80000", "center_lonlat": [ -73.98571096764101, 40.74838402210003 @@ -1025,7 +1025,7 @@ 48.8566 ], "resolution": 4, - "cell_id": "63c8000000000000", + "cell_id": "63d8000000000000", "center_lonlat": [ 2.688643261662264, 50.24851194473617 @@ -1037,7 +1037,7 @@ 48.8566 ], "resolution": 8, - "cell_id": "63c2280000000000", + "cell_id": "63d9d80000000000", "center_lonlat": [ 2.388584520911081, 48.95373154845205 @@ -1049,7 +1049,7 @@ 48.8566 ], "resolution": 12, - "cell_id": "63c20d0800000000", + "cell_id": "63d9f20800000000", "center_lonlat": [ 2.3537900596836607, 48.85392423022734 @@ -1061,7 +1061,7 @@ 48.8566 ], "resolution": 16, - "cell_id": "63c20d14f8000000", + "cell_id": "63d9f22b08000000", "center_lonlat": [ 2.352348598797562, 48.856764983271376 @@ -1073,7 +1073,7 @@ 48.8566 ], "resolution": 20, - "cell_id": "63c20d14f7780000", + "cell_id": "63d9f22b07480000", "center_lonlat": [ 2.3521704552154006, 48.85658793308943 @@ -1097,7 +1097,7 @@ -33.8688 ], "resolution": 8, - "cell_id": "8f7ee80000000000", + "cell_id": "8f5b280000000000", "center_lonlat": [ 151.345475724705, -33.835991868453874 @@ -1109,7 +1109,7 @@ -33.8688 ], "resolution": 12, - "cell_id": "8f7ec72800000000", + "cell_id": "8f5b332800000000", "center_lonlat": [ 151.2122272875916, -33.86844190700691 @@ -1121,7 +1121,7 @@ -33.8688 ], "resolution": 16, - "cell_id": "8f7ec72a78000000", + "cell_id": "8f5b332658000000", "center_lonlat": [ 151.20904864284483, -33.86898879711463 @@ -1133,7 +1133,7 @@ -33.8688 ], "resolution": 20, - "cell_id": "8f7ec72a76480000", + "cell_id": "8f5b332656080000", "center_lonlat": [ 151.2092537328581, -33.86879671540891 diff --git a/tests/fixtures/lattice/curve.json b/tests/fixtures/lattice/curve.json index 4713785..8b53433 100644 --- a/tests/fixtures/lattice/curve.json +++ b/tests/fixtures/lattice/curve.json @@ -16,9 +16,9 @@ "orientation": "uv", "x": -1, "y": 2, - "z": 0, - "parity": 1, - "flavor": 3 + "z": -1, + "parity": 0, + "flavor": 0 }, { "s": 12, @@ -154,9 +154,9 @@ "s": 32, "resolution": 3, "orientation": "vu", - "x": -2, + "x": -3, "y": 3, - "z": -1, + "z": 0, "parity": 0, "flavor": 2 }, @@ -196,9 +196,9 @@ "orientation": "vu", "x": -1, "y": 2, - "z": 0, - "parity": 1, - "flavor": 3 + "z": -1, + "parity": 0, + "flavor": 0 }, { "s": 0, @@ -224,11 +224,11 @@ "s": 12, "resolution": 3, "orientation": "uw", - "x": -1, - "y": 5, + "x": 0, + "y": 4, "z": -3, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 19, @@ -244,31 +244,31 @@ "s": 25, "resolution": 3, "orientation": "uw", - "x": -2, - "y": 5, + "x": -3, + "y": 6, "z": -2, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 32, "resolution": 3, "orientation": "uw", - "x": 0, - "y": 4, + "x": -1, + "y": 5, "z": -4, "parity": 0, - "flavor": 0 + "flavor": 2 }, { "s": 38, "resolution": 3, "orientation": "uw", - "x": -1, - "y": 6, + "x": 0, + "y": 5, "z": -5, "parity": 0, - "flavor": 0 + "flavor": 2 }, { "s": 44, @@ -284,21 +284,21 @@ "s": 51, "resolution": 3, "orientation": "uw", - "x": -5, - "y": 7, + "x": -4, + "y": 6, "z": -2, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 57, "resolution": 3, "orientation": "uw", - "x": -4, - "y": 5, - "z": -1, - "parity": 0, - "flavor": 2 + "x": -5, + "y": 6, + "z": 0, + "parity": 1, + "flavor": 3 }, { "s": 0, @@ -314,21 +314,21 @@ "s": 6, "resolution": 3, "orientation": "wu", - "x": -4, - "y": 5, - "z": -1, - "parity": 0, - "flavor": 2 + "x": -5, + "y": 6, + "z": 0, + "parity": 1, + "flavor": 3 }, { "s": 12, "resolution": 3, "orientation": "wu", - "x": -5, - "y": 7, + "x": -4, + "y": 6, "z": -2, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 19, @@ -344,31 +344,31 @@ "s": 25, "resolution": 3, "orientation": "wu", - "x": -1, - "y": 6, + "x": 0, + "y": 5, "z": -5, "parity": 0, - "flavor": 0 + "flavor": 2 }, { "s": 32, "resolution": 3, "orientation": "wu", - "x": -3, - "y": 7, + "x": -2, + "y": 6, "z": -3, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 38, "resolution": 3, "orientation": "wu", - "x": -2, - "y": 5, + "x": -3, + "y": 6, "z": -2, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 44, @@ -384,11 +384,11 @@ "s": 51, "resolution": 3, "orientation": "wu", - "x": -1, - "y": 5, + "x": 0, + "y": 4, "z": -3, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 57, @@ -435,10 +435,10 @@ "resolution": 3, "orientation": "vw", "x": -1, - "y": 5, - "z": -3, + "y": 4, + "z": -2, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 25, @@ -575,10 +575,10 @@ "resolution": 3, "orientation": "wv", "x": -1, - "y": 5, - "z": -3, + "y": 4, + "z": -2, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 51, @@ -614,11 +614,11 @@ "s": 102, "resolution": 5, "orientation": "uv", - "x": -6, - "y": 9, - "z": -3, + "x": -5, + "y": 10, + "z": -5, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 204, @@ -645,10 +645,10 @@ "resolution": 5, "orientation": "uv", "x": -12, - "y": 19, - "z": -6, - "parity": 1, - "flavor": 1 + "y": 17, + "z": -5, + "parity": 0, + "flavor": 2 }, { "s": 512, @@ -665,10 +665,10 @@ "resolution": 5, "orientation": "uv", "x": -22, - "y": 25, - "z": -3, + "y": 24, + "z": -2, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 716, @@ -745,18 +745,18 @@ "resolution": 5, "orientation": "vu", "x": -22, - "y": 25, - "z": -3, + "y": 24, + "z": -2, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 512, "resolution": 5, "orientation": "vu", - "x": -8, + "x": -15, "y": 15, - "z": -7, + "z": 0, "parity": 0, "flavor": 2 }, @@ -765,10 +765,10 @@ "resolution": 5, "orientation": "vu", "x": -12, - "y": 19, - "z": -6, - "parity": 1, - "flavor": 1 + "y": 17, + "z": -5, + "parity": 0, + "flavor": 2 }, { "s": 716, @@ -794,11 +794,11 @@ "s": 921, "resolution": 5, "orientation": "vu", - "x": -6, - "y": 9, - "z": -3, + "x": -5, + "y": 10, + "z": -5, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 0, @@ -824,11 +824,11 @@ "s": 204, "resolution": 5, "orientation": "uw", - "x": -6, - "y": 18, - "z": -12, - "parity": 0, - "flavor": 0 + "x": -3, + "y": 17, + "z": -13, + "parity": 1, + "flavor": 1 }, { "s": 307, @@ -836,57 +836,57 @@ "orientation": "uw", "x": -12, "y": 14, - "z": -1, - "parity": 1, - "flavor": 3 + "z": -2, + "parity": 0, + "flavor": 0 }, { "s": 409, "resolution": 5, "orientation": "uw", - "x": -10, - "y": 21, + "x": -14, + "y": 24, "z": -10, - "parity": 1, - "flavor": 1 + "parity": 0, + "flavor": 0 }, { "s": 512, "resolution": 5, "orientation": "uw", - "x": 0, - "y": 16, + "x": -7, + "y": 23, "z": -16, "parity": 0, - "flavor": 0 + "flavor": 2 }, { "s": 614, "resolution": 5, "orientation": "uw", - "x": -5, - "y": 26, + "x": -1, + "y": 23, "z": -21, - "parity": 0, - "flavor": 0 + "parity": 1, + "flavor": 1 }, { "s": 716, "resolution": 5, "orientation": "uw", - "x": -10, + "x": -8, "y": 30, - "z": -20, - "parity": 0, - "flavor": 0 + "z": -21, + "parity": 1, + "flavor": 3 }, { "s": 819, "resolution": 5, "orientation": "uw", - "x": -20, - "y": 30, - "z": -9, + "x": -16, + "y": 28, + "z": -11, "parity": 1, "flavor": 3 }, @@ -894,9 +894,9 @@ "s": 921, "resolution": 5, "orientation": "uw", - "x": -16, - "y": 21, - "z": -5, + "x": -22, + "y": 25, + "z": -3, "parity": 0, "flavor": 2 }, @@ -914,9 +914,9 @@ "s": 102, "resolution": 5, "orientation": "wu", - "x": -16, - "y": 21, - "z": -5, + "x": -22, + "y": 25, + "z": -3, "parity": 0, "flavor": 2 }, @@ -924,9 +924,9 @@ "s": 204, "resolution": 5, "orientation": "wu", - "x": -20, - "y": 30, - "z": -9, + "x": -16, + "y": 28, + "z": -11, "parity": 1, "flavor": 3 }, @@ -934,41 +934,41 @@ "s": 307, "resolution": 5, "orientation": "wu", - "x": -10, + "x": -8, "y": 30, - "z": -20, - "parity": 0, - "flavor": 0 + "z": -21, + "parity": 1, + "flavor": 3 }, { "s": 409, "resolution": 5, "orientation": "wu", - "x": -5, - "y": 26, + "x": -1, + "y": 23, "z": -21, - "parity": 0, - "flavor": 0 + "parity": 1, + "flavor": 1 }, { "s": 512, "resolution": 5, "orientation": "wu", - "x": -15, - "y": 31, + "x": -8, + "y": 24, "z": -15, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 614, "resolution": 5, "orientation": "wu", - "x": -10, - "y": 21, + "x": -14, + "y": 24, "z": -10, - "parity": 1, - "flavor": 1 + "parity": 0, + "flavor": 0 }, { "s": 716, @@ -976,19 +976,19 @@ "orientation": "wu", "x": -12, "y": 14, - "z": -1, - "parity": 1, - "flavor": 3 + "z": -2, + "parity": 0, + "flavor": 0 }, { "s": 819, "resolution": 5, "orientation": "wu", - "x": -6, - "y": 18, - "z": -12, - "parity": 0, - "flavor": 0 + "x": -3, + "y": 17, + "z": -13, + "parity": 1, + "flavor": 1 }, { "s": 921, @@ -1035,8 +1035,8 @@ "resolution": 5, "orientation": "vw", "x": -7, - "y": 19, - "z": -12, + "y": 17, + "z": -10, "parity": 0, "flavor": 2 }, @@ -1045,10 +1045,10 @@ "resolution": 5, "orientation": "vw", "x": -1, - "y": 6, - "z": -4, + "y": 7, + "z": -5, "parity": 1, - "flavor": 3 + "flavor": 1 }, { "s": 512, @@ -1165,18 +1165,18 @@ "resolution": 5, "orientation": "wv", "x": -1, - "y": 6, - "z": -4, + "y": 7, + "z": -5, "parity": 1, - "flavor": 3 + "flavor": 1 }, { "s": 716, "resolution": 5, "orientation": "wv", "x": -7, - "y": 19, - "z": -12, + "y": 17, + "z": -10, "parity": 0, "flavor": 2 }, @@ -1214,11 +1214,11 @@ "s": 1638, "resolution": 7, "orientation": "uv", - "x": -25, - "y": 38, - "z": -12, - "parity": 1, - "flavor": 3 + "x": -21, + "y": 42, + "z": -21, + "parity": 0, + "flavor": 0 }, { "s": 3276, @@ -1244,11 +1244,11 @@ "s": 6553, "resolution": 7, "orientation": "uv", - "x": -51, - "y": 76, - "z": -25, - "parity": 0, - "flavor": 0 + "x": -49, + "y": 71, + "z": -21, + "parity": 1, + "flavor": 1 }, { "s": 8192, @@ -1264,11 +1264,11 @@ "s": 9830, "resolution": 7, "orientation": "uv", - "x": -89, - "y": 102, - "z": -12, + "x": -88, + "y": 99, + "z": -10, "parity": 1, - "flavor": 3 + "flavor": 1 }, { "s": 11468, @@ -1295,10 +1295,10 @@ "resolution": 7, "orientation": "uv", "x": -3, - "y": 76, - "z": -73, - "parity": 0, - "flavor": 0 + "y": 78, + "z": -74, + "parity": 1, + "flavor": 3 }, { "s": 0, @@ -1315,10 +1315,10 @@ "resolution": 7, "orientation": "vu", "x": -3, - "y": 76, - "z": -73, - "parity": 0, - "flavor": 0 + "y": 78, + "z": -74, + "parity": 1, + "flavor": 3 }, { "s": 3276, @@ -1344,19 +1344,19 @@ "s": 6553, "resolution": 7, "orientation": "vu", - "x": -89, - "y": 102, - "z": -12, + "x": -88, + "y": 99, + "z": -10, "parity": 1, - "flavor": 3 + "flavor": 1 }, { "s": 8192, "resolution": 7, "orientation": "vu", - "x": -32, + "x": -63, "y": 63, - "z": -31, + "z": 0, "parity": 0, "flavor": 2 }, @@ -1364,11 +1364,11 @@ "s": 9830, "resolution": 7, "orientation": "vu", - "x": -51, - "y": 76, - "z": -25, - "parity": 0, - "flavor": 0 + "x": -49, + "y": 71, + "z": -21, + "parity": 1, + "flavor": 1 }, { "s": 11468, @@ -1394,11 +1394,11 @@ "s": 14745, "resolution": 7, "orientation": "vu", - "x": -25, - "y": 38, - "z": -12, - "parity": 1, - "flavor": 3 + "x": -21, + "y": 42, + "z": -21, + "parity": 0, + "flavor": 0 }, { "s": 0, @@ -1424,28 +1424,28 @@ "s": 3276, "resolution": 7, "orientation": "uw", - "x": -25, - "y": 77, - "z": -51, - "parity": 1, - "flavor": 1 + "x": -15, + "y": 67, + "z": -52, + "parity": 0, + "flavor": 2 }, { "s": 4915, "resolution": 7, "orientation": "uw", - "x": -51, - "y": 57, - "z": -6, - "parity": 0, - "flavor": 2 + "x": -48, + "y": 60, + "z": -11, + "parity": 1, + "flavor": 3 }, { "s": 6553, "resolution": 7, "orientation": "uw", - "x": -42, - "y": 85, + "x": -56, + "y": 99, "z": -42, "parity": 1, "flavor": 1 @@ -1454,18 +1454,18 @@ "s": 8192, "resolution": 7, "orientation": "uw", - "x": 0, - "y": 64, + "x": -31, + "y": 95, "z": -64, "parity": 0, - "flavor": 0 + "flavor": 2 }, { "s": 9830, "resolution": 7, "orientation": "uw", - "x": -21, - "y": 106, + "x": -7, + "y": 92, "z": -85, "parity": 0, "flavor": 0 @@ -1474,31 +1474,31 @@ "s": 11468, "resolution": 7, "orientation": "uw", - "x": -41, - "y": 125, - "z": -83, + "x": -33, + "y": 120, + "z": -86, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 13107, "resolution": 7, "orientation": "uw", - "x": -83, - "y": 121, - "z": -38, - "parity": 0, - "flavor": 2 + "x": -67, + "y": 113, + "z": -45, + "parity": 1, + "flavor": 1 }, { "s": 14745, "resolution": 7, "orientation": "uw", - "x": -64, - "y": 85, - "z": -21, - "parity": 0, - "flavor": 2 + "x": -89, + "y": 102, + "z": -12, + "parity": 1, + "flavor": 3 }, { "s": 0, @@ -1514,38 +1514,38 @@ "s": 1638, "resolution": 7, "orientation": "wu", - "x": -64, - "y": 85, - "z": -21, - "parity": 0, - "flavor": 2 + "x": -89, + "y": 102, + "z": -12, + "parity": 1, + "flavor": 3 }, { "s": 3276, "resolution": 7, "orientation": "wu", - "x": -83, - "y": 121, - "z": -38, - "parity": 0, - "flavor": 2 + "x": -67, + "y": 113, + "z": -45, + "parity": 1, + "flavor": 1 }, { "s": 4915, "resolution": 7, "orientation": "wu", - "x": -41, - "y": 125, - "z": -83, + "x": -33, + "y": 120, + "z": -86, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 6553, "resolution": 7, "orientation": "wu", - "x": -21, - "y": 106, + "x": -7, + "y": 92, "z": -85, "parity": 0, "flavor": 0 @@ -1554,18 +1554,18 @@ "s": 8192, "resolution": 7, "orientation": "wu", - "x": -63, - "y": 127, + "x": -32, + "y": 96, "z": -63, "parity": 1, - "flavor": 1 + "flavor": 3 }, { "s": 9830, "resolution": 7, "orientation": "wu", - "x": -42, - "y": 85, + "x": -56, + "y": 99, "z": -42, "parity": 1, "flavor": 1 @@ -1574,21 +1574,21 @@ "s": 11468, "resolution": 7, "orientation": "wu", - "x": -51, - "y": 57, - "z": -6, - "parity": 0, - "flavor": 2 + "x": -48, + "y": 60, + "z": -11, + "parity": 1, + "flavor": 3 }, { "s": 13107, "resolution": 7, "orientation": "wu", - "x": -25, - "y": 77, - "z": -51, - "parity": 1, - "flavor": 1 + "x": -15, + "y": 67, + "z": -52, + "parity": 0, + "flavor": 2 }, { "s": 14745, @@ -1615,10 +1615,10 @@ "resolution": 7, "orientation": "vw", "x": -44, - "y": 115, - "z": -70, - "parity": 1, - "flavor": 1 + "y": 113, + "z": -69, + "parity": 0, + "flavor": 2 }, { "s": 3276, @@ -1634,21 +1634,21 @@ "s": 4915, "resolution": 7, "orientation": "vw", - "x": -28, - "y": 78, - "z": -50, + "x": -30, + "y": 71, + "z": -41, "parity": 0, - "flavor": 0 + "flavor": 2 }, { "s": 6553, "resolution": 7, "orientation": "vw", - "x": -6, - "y": 25, - "z": -19, + "x": -7, + "y": 28, + "z": -21, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 8192, @@ -1764,21 +1764,21 @@ "s": 9830, "resolution": 7, "orientation": "wv", - "x": -6, - "y": 25, - "z": -19, + "x": -7, + "y": 28, + "z": -21, "parity": 0, - "flavor": 2 + "flavor": 0 }, { "s": 11468, "resolution": 7, "orientation": "wv", - "x": -28, - "y": 78, - "z": -50, + "x": -30, + "y": 71, + "z": -41, "parity": 0, - "flavor": 0 + "flavor": 2 }, { "s": 13107, @@ -1795,19 +1795,19 @@ "resolution": 7, "orientation": "wv", "x": -44, - "y": 115, - "z": -70, - "parity": 1, - "flavor": 1 + "y": 113, + "z": -69, + "parity": 0, + "flavor": 2 } ], - "IJToS": [ + "pointToS": [ { "i": 0.8, "j": 1.6, "resolution": 3, "orientation": "uv", - "s": 6 + "s": 5 }, { "i": 2.4, @@ -1856,14 +1856,14 @@ "j": 2, "resolution": 3, "orientation": "uv", - "s": 54 + "s": 50 }, { "i": 0.8, "j": 1.6, "resolution": 3, "orientation": "vu", - "s": 57 + "s": 58 }, { "i": 2.4, @@ -1912,7 +1912,7 @@ "j": 2, "resolution": 3, "orientation": "vu", - "s": 9 + "s": 13 }, { "i": 0.8, @@ -1926,35 +1926,35 @@ "j": 1.2, "resolution": 3, "orientation": "uw", - "s": 11 + "s": 8 }, { "i": 0.4, "j": 4.8, "resolution": 3, "orientation": "uw", - "s": 58 + "s": 55 }, { "i": 3.6, "j": 3.6, "resolution": 3, "orientation": "uw", - "s": 31 + "s": 26 }, { "i": 5.6, "j": 0.8, "resolution": 3, "orientation": "uw", - "s": 35 + "s": 39 }, { "i": 2.64, "j": 2.64, "resolution": 3, "orientation": "uw", - "s": 25 + "s": 28 }, { "i": 0.088, @@ -1968,7 +1968,7 @@ "j": 2, "resolution": 3, "orientation": "uw", - "s": 37 + "s": 45 }, { "i": 0.8, @@ -1982,35 +1982,35 @@ "j": 1.2, "resolution": 3, "orientation": "wu", - "s": 52 + "s": 55 }, { "i": 0.4, "j": 4.8, "resolution": 3, "orientation": "wu", - "s": 5 + "s": 8 }, { "i": 3.6, "j": 3.6, "resolution": 3, "orientation": "wu", - "s": 32 + "s": 37 }, { "i": 5.6, "j": 0.8, "resolution": 3, "orientation": "wu", - "s": 28 + "s": 24 }, { "i": 2.64, "j": 2.64, "resolution": 3, "orientation": "wu", - "s": 38 + "s": 35 }, { "i": 0.088, @@ -2024,7 +2024,7 @@ "j": 2, "resolution": 3, "orientation": "wu", - "s": 26 + "s": 18 }, { "i": 0.8, @@ -2038,7 +2038,7 @@ "j": 1.2, "resolution": 3, "orientation": "vw", - "s": 21 + "s": 20 }, { "i": 0.4, @@ -2066,7 +2066,7 @@ "j": 2.64, "resolution": 3, "orientation": "vw", - "s": 43 + "s": 41 }, { "i": 0.088, @@ -2080,7 +2080,7 @@ "j": 2, "resolution": 3, "orientation": "vw", - "s": 9 + "s": 7 }, { "i": 0.8, @@ -2094,7 +2094,7 @@ "j": 1.2, "resolution": 3, "orientation": "wv", - "s": 42 + "s": 43 }, { "i": 0.4, @@ -2122,7 +2122,7 @@ "j": 2.64, "resolution": 3, "orientation": "wv", - "s": 20 + "s": 22 }, { "i": 0.088, @@ -2136,14 +2136,14 @@ "j": 2, "resolution": 3, "orientation": "wv", - "s": 54 + "s": 56 }, { "i": 3.2, "j": 6.4, "resolution": 5, "orientation": "uv", - "s": 102 + "s": 89 }, { "i": 9.6, @@ -2157,7 +2157,7 @@ "j": 19.2, "resolution": 5, "orientation": "uv", - "s": 537 + "s": 534 }, { "i": 14.4, @@ -2171,14 +2171,14 @@ "j": 3.2, "resolution": 5, "orientation": "uv", - "s": 947 + "s": 948 }, { "i": 10.56, "j": 10.56, "resolution": 5, "orientation": "uv", - "s": 273 + "s": 281 }, { "i": 0.352, @@ -2192,14 +2192,14 @@ "j": 8, "resolution": 5, "orientation": "uv", - "s": 873 + "s": 810 }, { "i": 3.2, "j": 6.4, "resolution": 5, "orientation": "vu", - "s": 921 + "s": 934 }, { "i": 9.6, @@ -2213,7 +2213,7 @@ "j": 19.2, "resolution": 5, "orientation": "vu", - "s": 486 + "s": 489 }, { "i": 14.4, @@ -2227,14 +2227,14 @@ "j": 3.2, "resolution": 5, "orientation": "vu", - "s": 76 + "s": 75 }, { "i": 10.56, "j": 10.56, "resolution": 5, "orientation": "vu", - "s": 750 + "s": 742 }, { "i": 0.352, @@ -2248,49 +2248,49 @@ "j": 8, "resolution": 5, "orientation": "vu", - "s": 150 + "s": 213 }, { "i": 3.2, "j": 6.4, "resolution": 5, "orientation": "uw", - "s": 86 + "s": 89 }, { "i": 9.6, "j": 4.8, "resolution": 5, "orientation": "uw", - "s": 184 + "s": 139 }, { "i": 1.6, "j": 19.2, "resolution": 5, "orientation": "uw", - "s": 937 + "s": 886 }, { "i": 14.4, "j": 14.4, "resolution": 5, "orientation": "uw", - "s": 504 + "s": 431 }, { "i": 22.4, "j": 3.2, "resolution": 5, "orientation": "uw", - "s": 563 + "s": 628 }, { "i": 10.56, "j": 10.56, "resolution": 5, "orientation": "uw", - "s": 409 + "s": 454 }, { "i": 0.352, @@ -2304,49 +2304,49 @@ "j": 8, "resolution": 5, "orientation": "uw", - "s": 603 + "s": 725 }, { "i": 3.2, "j": 6.4, "resolution": 5, "orientation": "wu", - "s": 937 + "s": 934 }, { "i": 9.6, "j": 4.8, "resolution": 5, "orientation": "wu", - "s": 839 + "s": 884 }, { "i": 1.6, "j": 19.2, "resolution": 5, "orientation": "wu", - "s": 86 + "s": 137 }, { "i": 14.4, "j": 14.4, "resolution": 5, "orientation": "wu", - "s": 519 + "s": 592 }, { "i": 22.4, "j": 3.2, "resolution": 5, "orientation": "wu", - "s": 460 + "s": 395 }, { "i": 10.56, "j": 10.56, "resolution": 5, "orientation": "wu", - "s": 614 + "s": 569 }, { "i": 0.352, @@ -2360,7 +2360,7 @@ "j": 8, "resolution": 5, "orientation": "wu", - "s": 420 + "s": 298 }, { "i": 3.2, @@ -2374,7 +2374,7 @@ "j": 4.8, "resolution": 5, "orientation": "vw", - "s": 348 + "s": 331 }, { "i": 1.6, @@ -2388,7 +2388,7 @@ "j": 14.4, "resolution": 5, "orientation": "vw", - "s": 762 + "s": 760 }, { "i": 22.4, @@ -2402,7 +2402,7 @@ "j": 10.56, "resolution": 5, "orientation": "vw", - "s": 699 + "s": 665 }, { "i": 0.352, @@ -2416,7 +2416,7 @@ "j": 8, "resolution": 5, "orientation": "vw", - "s": 159 + "s": 116 }, { "i": 3.2, @@ -2430,7 +2430,7 @@ "j": 4.8, "resolution": 5, "orientation": "wv", - "s": 675 + "s": 692 }, { "i": 1.6, @@ -2444,7 +2444,7 @@ "j": 14.4, "resolution": 5, "orientation": "wv", - "s": 261 + "s": 263 }, { "i": 22.4, @@ -2458,7 +2458,7 @@ "j": 10.56, "resolution": 5, "orientation": "wv", - "s": 324 + "s": 358 }, { "i": 0.352, @@ -2472,161 +2472,161 @@ "j": 8, "resolution": 5, "orientation": "wv", - "s": 864 + "s": 907 }, { "i": 12.8, "j": 25.6, "resolution": 7, "orientation": "uv", - "s": 1638 + "s": 1433 }, { "i": 38.4, "j": 19.2, "resolution": 7, "orientation": "uv", - "s": 2227 + "s": 2228 }, { "i": 6.4, "j": 76.8, "resolution": 7, "orientation": "uv", - "s": 8601 + "s": 8550 }, { "i": 57.6, "j": 57.6, "resolution": 7, "orientation": "uv", - "s": 5381 + "s": 5383 }, { "i": 89.6, "j": 12.8, "resolution": 7, "orientation": "uv", - "s": 15163 + "s": 15179 }, { "i": 42.24, "j": 42.24, "resolution": 7, "orientation": "uv", - "s": 4368 + "s": 4504 }, { "i": 1.408, "j": 2.176, "resolution": 7, "orientation": "uv", - "s": 31 + "s": 16 }, { "i": 76.8, "j": 32, "resolution": 7, "orientation": "uv", - "s": 13979 + "s": 12965 }, { "i": 12.8, "j": 25.6, "resolution": 7, "orientation": "vu", - "s": 14745 + "s": 14950 }, { "i": 38.4, "j": 19.2, "resolution": 7, "orientation": "vu", - "s": 14156 + "s": 14155 }, { "i": 6.4, "j": 76.8, "resolution": 7, "orientation": "vu", - "s": 7782 + "s": 7833 }, { "i": 57.6, "j": 57.6, "resolution": 7, "orientation": "vu", - "s": 11002 + "s": 11000 }, { "i": 89.6, "j": 12.8, "resolution": 7, "orientation": "vu", - "s": 1220 + "s": 1204 }, { "i": 42.24, "j": 42.24, "resolution": 7, "orientation": "vu", - "s": 12015 + "s": 11879 }, { "i": 1.408, "j": 2.176, "resolution": 7, "orientation": "vu", - "s": 16352 + "s": 16367 }, { "i": 76.8, "j": 32, "resolution": 7, "orientation": "vu", - "s": 2404 + "s": 3418 }, { "i": 12.8, "j": 25.6, "resolution": 7, "orientation": "uw", - "s": 1381 + "s": 1433 }, { "i": 38.4, "j": 19.2, "resolution": 7, "orientation": "uw", - "s": 2952 + "s": 2228 }, { "i": 6.4, "j": 76.8, "resolution": 7, "orientation": "uw", - "s": 14997 + "s": 14182 }, { "i": 57.6, "j": 57.6, "resolution": 7, "orientation": "uw", - "s": 8071 + "s": 6904 }, { "i": 89.6, "j": 12.8, "resolution": 7, "orientation": "uw", - "s": 9011 + "s": 10059 }, { "i": 42.24, "j": 42.24, "resolution": 7, "orientation": "uw", - "s": 6552 + "s": 7271 }, { "i": 1.408, @@ -2640,49 +2640,49 @@ "j": 32, "resolution": 7, "orientation": "uw", - "s": 9652 + "s": 11610 }, { "i": 12.8, "j": 25.6, "resolution": 7, "orientation": "wu", - "s": 15002 + "s": 14950 }, { "i": 38.4, "j": 19.2, "resolution": 7, "orientation": "wu", - "s": 13431 + "s": 14155 }, { "i": 6.4, "j": 76.8, "resolution": 7, "orientation": "wu", - "s": 1386 + "s": 2201 }, { "i": 57.6, "j": 57.6, "resolution": 7, "orientation": "wu", - "s": 8312 + "s": 9479 }, { "i": 89.6, "j": 12.8, "resolution": 7, "orientation": "wu", - "s": 7372 + "s": 6324 }, { "i": 42.24, "j": 42.24, "resolution": 7, "orientation": "wu", - "s": 9831 + "s": 9112 }, { "i": 1.408, @@ -2696,7 +2696,7 @@ "j": 32, "resolution": 7, "orientation": "wu", - "s": 6731 + "s": 4773 }, { "i": 12.8, @@ -2710,7 +2710,7 @@ "j": 19.2, "resolution": 7, "orientation": "vw", - "s": 5572 + "s": 5300 }, { "i": 6.4, @@ -2724,21 +2724,21 @@ "j": 57.6, "resolution": 7, "orientation": "vw", - "s": 12207 + "s": 12167 }, { "i": 89.6, "j": 12.8, "resolution": 7, "orientation": "vw", - "s": 3148 + "s": 3147 }, { "i": 42.24, "j": 42.24, "resolution": 7, "orientation": "vw", - "s": 11194 + "s": 10648 }, { "i": 1.408, @@ -2752,7 +2752,7 @@ "j": 32, "resolution": 7, "orientation": "vw", - "s": 2548 + "s": 1871 }, { "i": 12.8, @@ -2766,7 +2766,7 @@ "j": 19.2, "resolution": 7, "orientation": "wv", - "s": 10811 + "s": 11083 }, { "i": 6.4, @@ -2780,21 +2780,21 @@ "j": 57.6, "resolution": 7, "orientation": "wv", - "s": 4176 + "s": 4216 }, { "i": 89.6, "j": 12.8, "resolution": 7, "orientation": "wv", - "s": 13235 + "s": 13236 }, { "i": 42.24, "j": 42.24, "resolution": 7, "orientation": "wv", - "s": 5189 + "s": 5735 }, { "i": 1.408, @@ -2808,7 +2808,7 @@ "j": 32, "resolution": 7, "orientation": "wv", - "s": 13835 + "s": 14512 } ], "tripleInBounds": [ diff --git a/tests/fixtures/lattice/lsystem.json b/tests/fixtures/lattice/lsystem.json index fb11015..89a8c31 100644 --- a/tests/fixtures/lattice/lsystem.json +++ b/tests/fixtures/lattice/lsystem.json @@ -1801,7 +1801,7 @@ "flavor": 2 } ], - "IJToS": [ + "pointToS": [ { "i": 0.8, "j": 1.6, @@ -1968,7 +1968,7 @@ "j": 2, "resolution": 3, "orientation": "uw", - "s": 33 + "s": 45 }, { "i": 0.8, @@ -2024,7 +2024,7 @@ "j": 2, "resolution": 3, "orientation": "wu", - "s": 30 + "s": 18 }, { "i": 0.8, @@ -2080,7 +2080,7 @@ "j": 2, "resolution": 3, "orientation": "vw", - "s": 9 + "s": 7 }, { "i": 0.8, @@ -2136,7 +2136,7 @@ "j": 2, "resolution": 3, "orientation": "wv", - "s": 54 + "s": 56 }, { "i": 3.2, @@ -2304,7 +2304,7 @@ "j": 8, "resolution": 5, "orientation": "uw", - "s": 543 + "s": 725 }, { "i": 3.2, @@ -2360,7 +2360,7 @@ "j": 8, "resolution": 5, "orientation": "wu", - "s": 480 + "s": 298 }, { "i": 3.2, @@ -2416,7 +2416,7 @@ "j": 8, "resolution": 5, "orientation": "vw", - "s": 159 + "s": 116 }, { "i": 3.2, @@ -2472,7 +2472,7 @@ "j": 8, "resolution": 5, "orientation": "wv", - "s": 864 + "s": 907 }, { "i": 12.8, @@ -2640,7 +2640,7 @@ "j": 32, "resolution": 7, "orientation": "uw", - "s": 8692 + "s": 11610 }, { "i": 12.8, @@ -2696,7 +2696,7 @@ "j": 32, "resolution": 7, "orientation": "wu", - "s": 7691 + "s": 4773 }, { "i": 12.8, @@ -2752,7 +2752,7 @@ "j": 32, "resolution": 7, "orientation": "vw", - "s": 2548 + "s": 1871 }, { "i": 12.8, @@ -2808,7 +2808,7 @@ "j": 32, "resolution": 7, "orientation": "wv", - "s": 13835 + "s": 14512 } ] } \ No newline at end of file diff --git a/tests/fixtures/regions/polygon.json b/tests/fixtures/regions/polygon.json index 5fd4a24..5c2eea6 100644 --- a/tests/fixtures/regions/polygon.json +++ b/tests/fixtures/regions/polygon.json @@ -20,12 +20,12 @@ ], "resolution": 5, "cells": [ - "3ede000000000000", + "3eee000000000000", "3ef2000000000000", "3ef6000000000000", "3efa000000000000", - "3f6e000000000000", - "3f7a000000000000", + "3f5e000000000000", + "3f62000000000000", "3f86000000000000", "3f8a000000000000", "3f8e000000000000", @@ -40,11 +40,11 @@ "3fb6000000000000", "3fba000000000000", "3fbe000000000000", + "3fc2000000000000", "3fc6000000000000", "3fca000000000000", - "3fce000000000000", - "3fd2000000000000", "3fda000000000000", + "3fde000000000000", "3fe2000000000000", "3fe6000000000000", "3fea000000000000", @@ -74,15 +74,15 @@ ], "resolution": 5, "cells": [ - "4912000000000000", - "491a000000000000", - "491e000000000000", + "4916000000000000", + "4926000000000000", "492a000000000000", + "492e000000000000", "4932000000000000", "4936000000000000", "493a000000000000", "493e000000000000", - "4946000000000000", + "494a000000000000", "496a000000000000", "496e000000000000", "4976000000000000", @@ -97,9 +97,6 @@ "499a000000000000", "499e000000000000", "49a2000000000000", - "49a6000000000000", - "49aa000000000000", - "49ae000000000000", "49b2000000000000", "49b6000000000000", "49ba000000000000", @@ -117,18 +114,21 @@ "49ea000000000000", "49ee000000000000", "49f2000000000000", - "4b06000000000000", + "49f6000000000000", + "49fa000000000000", + "49fe000000000000", + "4b1e000000000000", "4b22000000000000", - "4b2a000000000000", + "4b26000000000000", "4b2e000000000000", - "4b3a000000000000", - "4f6a000000000000", - "4f7e000000000000", - "4fc2000000000000", - "4fc6000000000000", - "4fca000000000000", - "4fce000000000000", + "4b36000000000000", + "4f8e000000000000", + "4f92000000000000", "4fd2000000000000", + "4fd6000000000000", + "4fda000000000000", + "4fde000000000000", + "4fe2000000000000", "6cd6000000000000", "6cee000000000000" ] @@ -172,35 +172,35 @@ "5176000000000000", "517a000000000000", "517e000000000000", - "51c2000000000000", - "51ca000000000000", - "51ce000000000000", - "51d6000000000000", - "51de000000000000", - "634a000000000000", - "634e000000000000", - "6356000000000000", - "635a000000000000", - "635e000000000000", - "6362000000000000", - "6366000000000000", - "636a000000000000", - "636e000000000000", - "6372000000000000", + "5182000000000000", + "5186000000000000", + "518a000000000000", + "5196000000000000", + "519e000000000000", "6376000000000000", - "637a000000000000", "637e000000000000", + "6382000000000000", + "6386000000000000", + "638a000000000000", + "638e000000000000", + "6392000000000000", + "6396000000000000", + "639a000000000000", + "639e000000000000", "63a2000000000000", + "63a6000000000000", "63aa000000000000", - "63c2000000000000", - "63c6000000000000", - "63ca000000000000", + "63b2000000000000", + "63b6000000000000", "63ce000000000000", "63d2000000000000", "63d6000000000000", "63da000000000000", "63de000000000000", "63e2000000000000", + "63e6000000000000", + "63ea000000000000", + "63ee000000000000", "63f2000000000000", "63f6000000000000", "63fa000000000000", @@ -246,29 +246,13 @@ "517d800000000000", "517e800000000000", "517f800000000000", - "634f800000000000", - "6360800000000000", - "6362800000000000", - "6363800000000000", - "6368800000000000", - "636a800000000000", - "637f800000000000", - "63c0800000000000", - "63c1800000000000", - "63c2800000000000", - "63c3800000000000", - "63c4800000000000", - "63c5800000000000", - "63c6800000000000", - "63c7800000000000", - "63c8800000000000", - "63c9800000000000", - "63ca800000000000", - "63cb800000000000", - "63cc800000000000", - "63cd800000000000", - "63ce800000000000", - "63cf800000000000", + "638f800000000000", + "6390800000000000", + "6393800000000000", + "6394800000000000", + "6395800000000000", + "6396800000000000", + "63b3800000000000", "63d0800000000000", "63d1800000000000", "63d2800000000000", @@ -283,9 +267,25 @@ "63db800000000000", "63dc800000000000", "63dd800000000000", - "63f9800000000000", - "63fa800000000000", - "63fb800000000000" + "63de800000000000", + "63df800000000000", + "63e0800000000000", + "63e1800000000000", + "63e2800000000000", + "63e3800000000000", + "63e4800000000000", + "63e5800000000000", + "63e6800000000000", + "63e7800000000000", + "63e8800000000000", + "63e9800000000000", + "63ea800000000000", + "63eb800000000000", + "63ec800000000000", + "63ed800000000000", + "63f5800000000000", + "63f6800000000000", + "63f7800000000000" ] }, { @@ -323,7 +323,7 @@ "c38000000000000", "c48000000000000", "ca8000000000000", - "5118000000000000", + "5128000000000000", "5138000000000000", "5148000000000000", "5158000000000000", @@ -337,12 +337,12 @@ "51d8000000000000", "51e8000000000000", "51f8000000000000", - "5308000000000000", "5328000000000000", - "5358000000000000", + "5338000000000000", + "5348000000000000", "6138000000000000", "6318000000000000", - "6338000000000000", + "6328000000000000", "6348000000000000", "6358000000000000", "6368000000000000", @@ -419,7 +419,7 @@ "8d18000000000000", "8d28000000000000", "8d38000000000000", - "8db8000000000000", + "8df8000000000000", "8e08000000000000", "8e18000000000000", "8e28000000000000", @@ -436,9 +436,9 @@ "8ed8000000000000", "8ee8000000000000", "8ef8000000000000", + "8f08000000000000", "8f18000000000000", "8f28000000000000", - "8f38000000000000", "8f48000000000000", "8f58000000000000", "8f68000000000000", @@ -450,16 +450,16 @@ "9098000000000000", "90a8000000000000", "90b8000000000000", + "90c8000000000000", "90d8000000000000", - "90e8000000000000", "90f8000000000000", - "9208000000000000", - "9218000000000000", - "9228000000000000", - "9238000000000000", + "9248000000000000", + "9258000000000000", + "9268000000000000", + "9278000000000000", "9288000000000000", + "a0c8000000000000", "a0d8000000000000", - "a0e8000000000000", "a0f8000000000000", "a108000000000000", "a118000000000000", @@ -470,12 +470,12 @@ "a168000000000000", "a178000000000000", "a188000000000000", - "a198000000000000", - "a1a8000000000000", "a1c8000000000000", + "a1d8000000000000", + "a1e8000000000000", "a208000000000000", - "a218000000000000", - "a248000000000000" + "a248000000000000", + "a258000000000000" ] }, { @@ -530,9 +530,9 @@ "ece0000000000000", "ed20000000000000", "ed60000000000000", - "eda0000000000000", - "ee20000000000000", - "efa0000000000000" + "ede0000000000000", + "ee60000000000000", + "ef60000000000000" ] }, { @@ -567,11 +567,11 @@ ], "resolution": 6, "cells": [ - "5141800000000000", + "5143800000000000", "5144800000000000", "5145800000000000", "5146800000000000", - "5147800000000000", + "5148800000000000", "5149800000000000", "514a800000000000", "514b800000000000", @@ -583,10 +583,10 @@ "5151800000000000", "5152800000000000", "5153800000000000", - "5158800000000000", - "515a800000000000", "515b800000000000", + "515d800000000000", "515e800000000000", + "515f800000000000", "5160800000000000", "5161800000000000", "5162800000000000", @@ -619,108 +619,108 @@ "517d800000000000", "517e800000000000", "517f800000000000", - "5190800000000000", - "51c0800000000000", - "51c1800000000000", - "51c2800000000000", - "51c3800000000000", - "51c8800000000000", - "51c9800000000000", - "51ca800000000000", - "51cb800000000000", - "51cd800000000000", - "51ce800000000000", - "51cf800000000000", - "51d4800000000000", - "51d5800000000000", - "51d6800000000000", - "51d7800000000000", - "51d9800000000000", - "51dc800000000000", - "51dd800000000000", - "51df800000000000", - "6347800000000000", - "6348800000000000", - "6349800000000000", - "634a800000000000", - "634b800000000000", - "634c800000000000", - "634d800000000000", - "634e800000000000", - "634f800000000000", - "6350800000000000", - "6357800000000000", - "6358800000000000", - "6359800000000000", - "635a800000000000", - "635b800000000000", - "635d800000000000", - "635e800000000000", - "635f800000000000", - "6360800000000000", - "6361800000000000", - "6362800000000000", - "6363800000000000", - "6364800000000000", - "6365800000000000", - "6366800000000000", - "6367800000000000", - "6368800000000000", - "6369800000000000", - "636a800000000000", - "636b800000000000", - "636c800000000000", - "636d800000000000", - "636e800000000000", - "636f800000000000", + "5180800000000000", + "5181800000000000", + "5182800000000000", + "5183800000000000", + "5184800000000000", + "5185800000000000", + "5186800000000000", + "5187800000000000", + "5188800000000000", + "5189800000000000", + "518a800000000000", + "5194800000000000", + "5195800000000000", + "5196800000000000", + "5197800000000000", + "5198800000000000", + "519c800000000000", + "519d800000000000", + "519f800000000000", + "51cc800000000000", "6370800000000000", - "6371800000000000", - "6372800000000000", - "6373800000000000", "6374800000000000", "6375800000000000", "6376800000000000", - "6377800000000000", - "6378800000000000", - "6379800000000000", - "637a800000000000", - "637b800000000000", "637c800000000000", "637d800000000000", - "637e800000000000", "637f800000000000", + "6380800000000000", + "6381800000000000", + "6382800000000000", + "6383800000000000", + "6384800000000000", + "6385800000000000", + "6386800000000000", + "6387800000000000", + "6388800000000000", + "6389800000000000", + "638a800000000000", + "638b800000000000", + "638c800000000000", + "638d800000000000", + "638e800000000000", + "638f800000000000", + "6390800000000000", + "6391800000000000", + "6392800000000000", + "6393800000000000", + "6394800000000000", + "6395800000000000", + "6396800000000000", + "6397800000000000", + "6398800000000000", + "6399800000000000", + "639a800000000000", + "639b800000000000", + "639c800000000000", + "639d800000000000", + "639e800000000000", + "639f800000000000", "63a0800000000000", + "63a1800000000000", "63a2800000000000", - "63a3800000000000", + "63a4800000000000", + "63a5800000000000", + "63a6800000000000", + "63a7800000000000", "63a8800000000000", - "63a9800000000000", - "63aa800000000000", - "63ae800000000000", - "63c0800000000000", - "63c1800000000000", - "63c2800000000000", - "63c3800000000000", - "63c4800000000000", - "63c5800000000000", - "63c6800000000000", - "63c7800000000000", + "63af800000000000", + "63b0800000000000", + "63b1800000000000", + "63b2800000000000", + "63b3800000000000", + "63b4800000000000", + "63b5800000000000", + "63b6800000000000", + "63b7800000000000", + "63b8800000000000", "63c8800000000000", - "63c9800000000000", - "63ca800000000000", - "63cb800000000000", - "63cc800000000000", "63cd800000000000", "63ce800000000000", "63cf800000000000", + "63d0800000000000", "63d1800000000000", "63d2800000000000", "63d3800000000000", + "63d4800000000000", + "63d5800000000000", + "63d6800000000000", + "63d7800000000000", "63d8800000000000", + "63d9800000000000", + "63da800000000000", "63db800000000000", - "63e0800000000000", + "63dc800000000000", + "63dd800000000000", + "63de800000000000", + "63df800000000000", "63e1800000000000", "63e2800000000000", - "63e4800000000000" + "63e3800000000000", + "63e8800000000000", + "63eb800000000000" ] }, { @@ -772,27 +772,27 @@ "515e000000000000", "5162000000000000", "5166000000000000", - "5192000000000000", - "51de000000000000", - "634a000000000000", - "634e000000000000", - "6356000000000000", - "635a000000000000", - "635e000000000000", - "6362000000000000", - "6366000000000000", - "636e000000000000", - "6372000000000000", + "519e000000000000", + "51ce000000000000", "6376000000000000", - "637a000000000000", + "637e000000000000", + "6382000000000000", + "6386000000000000", + "638a000000000000", + "6396000000000000", + "639a000000000000", + "639e000000000000", "63a2000000000000", + "63a6000000000000", "63aa000000000000", - "63ca000000000000", + "63b2000000000000", + "63b6000000000000", "63ce000000000000", + "63d2000000000000", "63d6000000000000", - "63da000000000000", - "63de000000000000", - "63e2000000000000", + "63e6000000000000", + "63ea000000000000", + "63ee000000000000", "63f2000000000000", "63f6000000000000", "63fa000000000000", @@ -831,56 +831,56 @@ ], "resolution": 6, "cells": [ + "5159800000000000", + "515a800000000000", "515b800000000000", - "515d800000000000", - "515e800000000000", "515f800000000000", + "5161800000000000", + "5162800000000000", "5163800000000000", - "5165800000000000", - "5166800000000000", "5167800000000000", "5168800000000000", "5169800000000000", "516a800000000000", - "516d800000000000", + "516e800000000000", "516f800000000000", "5170800000000000", "5171800000000000", "5172800000000000", "5173800000000000", "5174800000000000", - "5175800000000000", "5176800000000000", + "5177800000000000", "5178800000000000", - "634f800000000000", - "6360800000000000", - "6362800000000000", - "63c7800000000000", + "6395800000000000", + "6396800000000000", + "63b3800000000000", "63c8800000000000", - "63c9800000000000", - "63ca800000000000", - "63cb800000000000", - "63cc800000000000", "63cd800000000000", "63ce800000000000", "63cf800000000000", "63d0800000000000", + "63d1800000000000", + "63d2800000000000", "63d3800000000000", "63d4800000000000", "63d5800000000000", "63d6800000000000", "63d7800000000000", - "63d8800000000000", - "63d9800000000000", - "63da800000000000", - "63db800000000000", - "63dc800000000000", - "63dd800000000000", - "63de800000000000", + "63df800000000000", "63e0800000000000", - "63e1800000000000", - "63e2800000000000", + "63e3800000000000", "63e4800000000000", + "63e5800000000000", + "63e6800000000000", + "63e7800000000000", + "63e8800000000000", + "63e9800000000000", + "63ea800000000000", + "63eb800000000000", + "63ec800000000000", + "63ed800000000000", + "63ee800000000000", "63f1800000000000", "63f2800000000000", "63f3800000000000", @@ -892,7 +892,7 @@ "63f9800000000000", "63fa800000000000", "63fb800000000000", - "63fc800000000000" + "63fd800000000000" ] }, { @@ -930,216 +930,216 @@ "517ee00000000000", "517fa00000000000", "517fe00000000000", - "51c0200000000000", - "51c0600000000000", - "51c0a00000000000", - "51c0e00000000000", - "51c2600000000000", - "51c2e00000000000", - "51d5200000000000", - "51d5600000000000", - "51d5a00000000000", - "51d5e00000000000", - "51d7200000000000", - "6343200000000000", - "6346a00000000000", - "6346e00000000000", - "6347600000000000", - "6347a00000000000", - "6347e00000000000", - "6348600000000000", - "6348a00000000000", - "6348e00000000000", - "6349200000000000", - "6349600000000000", - "6349a00000000000", - "6349e00000000000", - "634a200000000000", - "634a600000000000", - "634aa00000000000", - "634ae00000000000", - "634b200000000000", - "634b600000000000", - "634ba00000000000", - "634be00000000000", - "634c200000000000", - "634c600000000000", - "634ca00000000000", - "634ce00000000000", - "634d200000000000", - "634d600000000000", - "634da00000000000", - "634de00000000000", - "634e200000000000", - "634e600000000000", - "634ea00000000000", - "634ee00000000000", - "634f200000000000", - "634f600000000000", - "634fa00000000000", - "634fe00000000000", - "6350200000000000", - "6350600000000000", - "6350a00000000000", - "6352200000000000", - "6357e00000000000", - "6358200000000000", - "6358a00000000000", - "6358e00000000000", - "635a200000000000", - "6360200000000000", - "6360600000000000", - "6360a00000000000", - "6360e00000000000", - "6361200000000000", - "6361600000000000", - "6361a00000000000", - "6361e00000000000", - "6362200000000000", - "6362600000000000", - "6362a00000000000", - "6362e00000000000", - "6363200000000000", - "6363600000000000", - "6363a00000000000", - "6363e00000000000", - "6364200000000000", - "6364600000000000", - "6364a00000000000", - "6364e00000000000", - "6365200000000000", - "6365600000000000", - "6365a00000000000", - "6365e00000000000", - "6366200000000000", - "6366600000000000", - "6366a00000000000", - "6366e00000000000", - "6367200000000000", - "6367600000000000", - "6367a00000000000", - "6367e00000000000", - "6368200000000000", - "6368600000000000", - "6368a00000000000", - "6368e00000000000", - "6369200000000000", - "6369600000000000", - "6369a00000000000", - "6369e00000000000", - "636a200000000000", - "636a600000000000", - "636aa00000000000", - "636ae00000000000", - "636b200000000000", - "636b600000000000", - "636ba00000000000", - "636be00000000000", - "636c200000000000", - "636c600000000000", - "636ca00000000000", - "636ce00000000000", - "636d200000000000", - "636d600000000000", - "636e200000000000", - "636e600000000000", - "636ee00000000000", - "6372a00000000000", - "6373200000000000", - "6373600000000000", - "6373a00000000000", - "6373e00000000000", - "6375600000000000", - "6375a00000000000", - "6375e00000000000", - "6376200000000000", - "6376600000000000", - "6376a00000000000", - "6376e00000000000", - "6377200000000000", - "6377600000000000", - "6377a00000000000", - "6377e00000000000", - "6378200000000000", - "6378600000000000", - "6378a00000000000", - "6378e00000000000", - "6379200000000000", - "6379600000000000", - "6379a00000000000", - "6379e00000000000", - "637ae00000000000", - "637b200000000000", - "637b600000000000", - "637ba00000000000", - "637be00000000000", - "637c200000000000", + "5180200000000000", + "5180600000000000", + "5180a00000000000", + "5180e00000000000", + "5181200000000000", + "5181a00000000000", + "5195200000000000", + "5195600000000000", + "5195a00000000000", + "5195e00000000000", + "5196200000000000", + "6375a00000000000", "637c600000000000", "637ca00000000000", "637ce00000000000", "637d200000000000", "637d600000000000", - "637da00000000000", - "637de00000000000", - "637e200000000000", - "637e600000000000", - "637ea00000000000", - "637ee00000000000", - "637f200000000000", - "637f600000000000", - "637fa00000000000", - "637fe00000000000", - "63a2200000000000", - "63a2a00000000000", - "63a3200000000000", - "63a3600000000000", - "63a3e00000000000", + "6380e00000000000", + "6381200000000000", + "6381600000000000", + "6381a00000000000", + "6381e00000000000", + "6382200000000000", + "6382600000000000", + "6382a00000000000", + "6382e00000000000", + "6383200000000000", + "6383600000000000", + "6383a00000000000", + "6383e00000000000", + "6384200000000000", + "6384600000000000", + "6384a00000000000", + "6384e00000000000", + "6385600000000000", + "6389600000000000", + "6389a00000000000", + "6389e00000000000", + "638a200000000000", + "638a600000000000", + "638aa00000000000", + "638ae00000000000", + "638b200000000000", + "638b600000000000", + "638ba00000000000", + "638be00000000000", + "638c200000000000", + "638c600000000000", + "638ca00000000000", + "638ce00000000000", + "638d200000000000", + "638d600000000000", + "638da00000000000", + "638de00000000000", + "638e200000000000", + "638e600000000000", + "638ea00000000000", + "638ee00000000000", + "638f200000000000", + "638f600000000000", + "638fa00000000000", + "638fe00000000000", + "6390200000000000", + "6390600000000000", + "6390a00000000000", + "6390e00000000000", + "6391200000000000", + "6391600000000000", + "6391a00000000000", + "6391e00000000000", + "6392200000000000", + "6392600000000000", + "6392a00000000000", + "6392e00000000000", + "6393200000000000", + "6393600000000000", + "6393a00000000000", + "6393e00000000000", + "6394200000000000", + "6394600000000000", + "6394a00000000000", + "6394e00000000000", + "6395200000000000", + "6395600000000000", + "6395a00000000000", + "6395e00000000000", + "6396200000000000", + "6396600000000000", + "6396a00000000000", + "6396e00000000000", + "6397200000000000", + "6397600000000000", + "6397a00000000000", + "6397e00000000000", + "6398200000000000", + "6398600000000000", + "6398a00000000000", + "6398e00000000000", + "6399200000000000", + "6399600000000000", + "6399a00000000000", + "6399e00000000000", + "639a200000000000", + "639a600000000000", + "639aa00000000000", + "639ae00000000000", + "639b200000000000", + "639b600000000000", + "639ba00000000000", + "639be00000000000", + "639c200000000000", + "639c600000000000", + "639ca00000000000", + "639ce00000000000", + "639d200000000000", + "639d600000000000", + "639da00000000000", + "639ea00000000000", + "639ee00000000000", + "63a5600000000000", + "63a7200000000000", + "63a7600000000000", + "63a7e00000000000", "63a8200000000000", - "63c0200000000000", - "63c0600000000000", - "63c0a00000000000", - "63c0e00000000000", - "63c2200000000000", - "63c2a00000000000", + "63aee00000000000", + "63af200000000000", + "63af600000000000", + "63afe00000000000", + "63b0200000000000", + "63b0600000000000", + "63b0a00000000000", + "63b0e00000000000", + "63b1200000000000", + "63b1600000000000", + "63b1a00000000000", + "63b1e00000000000", + "63b2200000000000", + "63b2600000000000", + "63b2a00000000000", + "63b2e00000000000", + "63b3200000000000", + "63b3600000000000", + "63b3a00000000000", + "63b3e00000000000", + "63b4200000000000", + "63b4600000000000", + "63b4a00000000000", + "63b4e00000000000", + "63b5200000000000", + "63b5600000000000", + "63b5e00000000000", + "63b6200000000000", + "63b6600000000000", + "63b6a00000000000", + "63b6e00000000000", + "63b7200000000000", + "63b7600000000000", + "63b7a00000000000", + "63b7e00000000000", + "63b8200000000000", + "63b8600000000000", + "63b8a00000000000", + "63b9200000000000", + "63b9600000000000", + "63bc600000000000", + "63c7e00000000000", "63c8200000000000", + "63c8600000000000", "63c8a00000000000", "63c8e00000000000", - "63c9a00000000000", - "63c9e00000000000", - "63ca200000000000", - "63ca600000000000", - "63caa00000000000", - "63cae00000000000", - "63cc200000000000", - "63cc600000000000", - "63cca00000000000", - "63cd200000000000", + "63c9600000000000", "63cd600000000000", "63cda00000000000", "63cde00000000000", + "63ce200000000000", + "63ce600000000000", + "63cea00000000000", "63cee00000000000", "63cf200000000000", "63cf600000000000", "63cfa00000000000", "63cfe00000000000", - "63dbe00000000000", - "63e0200000000000", - "63e0600000000000", - "63e0a00000000000", - "63e0e00000000000", - "63e1200000000000", - "63e1600000000000", - "63e1a00000000000", - "63e1e00000000000", - "63e2200000000000", - "63e2600000000000", - "63e2e00000000000", - "63e4200000000000", - "63e4600000000000", - "63e4a00000000000", - "63e4e00000000000", - "63e5200000000000", - "63eee00000000000" + "63d0200000000000", + "63d0600000000000", + "63d0a00000000000", + "63d0e00000000000", + "63d1200000000000", + "63d1600000000000", + "63d1a00000000000", + "63d1e00000000000", + "63d2200000000000", + "63d2600000000000", + "63d2a00000000000", + "63d3a00000000000", + "63d5200000000000", + "63d5600000000000", + "63d5a00000000000", + "63d5e00000000000", + "63d6200000000000", + "63d6600000000000", + "63d7200000000000", + "63d7600000000000", + "63d7e00000000000", + "63d9600000000000", + "63d9e00000000000", + "63da200000000000", + "63da600000000000", + "63daa00000000000", + "63dae00000000000", + "63eb200000000000" ] }, { @@ -1183,7 +1183,7 @@ ], "resolution": 3, "cells": [ - "a1e0000000000000" + "a1a0000000000000" ] }, { @@ -1226,16 +1226,16 @@ ], "resolution": 6, "cells": [ - "515d800000000000", - "515e800000000000", - "515f800000000000", - "5167800000000000", - "5168800000000000", - "516d800000000000", + "5159800000000000", + "515a800000000000", + "515b800000000000", + "5162800000000000", + "516a800000000000", + "516e800000000000", "516f800000000000", "5170800000000000", - "5171800000000000", "5172800000000000", + "5173800000000000", "5174800000000000", "5175800000000000", "5176800000000000", @@ -1248,62 +1248,53 @@ "517d800000000000", "517e800000000000", "517f800000000000", - "51c0800000000000", - "51c1800000000000", - "51c2800000000000", - "51c3800000000000", - "51d5800000000000", - "51d6800000000000", - "51d7800000000000", - "6348800000000000", - "6349800000000000", - "634a800000000000", - "634b800000000000", - "634c800000000000", - "634d800000000000", - "634e800000000000", - "634f800000000000", - "6358800000000000", - "635a800000000000", - "635b800000000000", - "635e800000000000", - "6360800000000000", - "6361800000000000", - "6362800000000000", - "6363800000000000", - "6364800000000000", - "6365800000000000", - "6366800000000000", - "6367800000000000", - "6368800000000000", - "6369800000000000", - "636a800000000000", - "636b800000000000", - "636c800000000000", - "636d800000000000", - "636e800000000000", - "636f800000000000", - "6376800000000000", - "6377800000000000", - "6379800000000000", - "637b800000000000", - "637c800000000000", - "637d800000000000", - "637e800000000000", - "637f800000000000", - "63c0800000000000", - "63c1800000000000", - "63c2800000000000", - "63c3800000000000", - "63c4800000000000", - "63c5800000000000", - "63c6800000000000", + "5180800000000000", + "5181800000000000", + "5182800000000000", + "5183800000000000", + "5195800000000000", + "5196800000000000", + "5197800000000000", + "6381800000000000", + "6382800000000000", + "638a800000000000", + "638b800000000000", + "638c800000000000", + "638d800000000000", + "638e800000000000", + "638f800000000000", + "6390800000000000", + "6391800000000000", + "6392800000000000", + "6393800000000000", + "6394800000000000", + "6395800000000000", + "6396800000000000", + "6397800000000000", + "6398800000000000", + "6399800000000000", + "639a800000000000", + "639b800000000000", + "639c800000000000", + "639d800000000000", + "639e800000000000", + "639f800000000000", + "63a1800000000000", + "63a4800000000000", + "63a5800000000000", + "63a7800000000000", + "63b0800000000000", + "63b1800000000000", + "63b2800000000000", + "63b3800000000000", + "63b4800000000000", + "63b5800000000000", + "63b6800000000000", + "63b7800000000000", "63c7800000000000", "63c8800000000000", "63c9800000000000", - "63ca800000000000", "63cb800000000000", - "63cc800000000000", "63cd800000000000", "63ce800000000000", "63cf800000000000", @@ -1322,19 +1313,28 @@ "63dc800000000000", "63dd800000000000", "63de800000000000", + "63df800000000000", "63e0800000000000", "63e1800000000000", "63e2800000000000", + "63e3800000000000", "63e4800000000000", "63e5800000000000", "63e6800000000000", + "63e7800000000000", + "63e8800000000000", + "63e9800000000000", + "63ea800000000000", + "63eb800000000000", + "63ec800000000000", + "63ed800000000000", "63ee800000000000", - "63f2800000000000", + "63f3800000000000", + "63f4800000000000", + "63f5800000000000", + "63f6800000000000", "63f7800000000000", - "63f8800000000000", - "63f9800000000000", - "63fa800000000000", - "63fb800000000000" + "63f8800000000000" ] }, { @@ -1377,16 +1377,16 @@ ], "resolution": 7, "cells": [ - "515ee00000000000", - "515f600000000000", - "515fa00000000000", - "515fe00000000000", - "5167a00000000000", - "5167e00000000000", - "5168200000000000", - "5168600000000000", - "5168a00000000000", - "5168e00000000000", + "515a600000000000", + "515aa00000000000", + "515ae00000000000", + "515b200000000000", + "5162a00000000000", + "5162e00000000000", + "5169600000000000", + "516a200000000000", + "516a600000000000", + "516aa00000000000", "516ae00000000000", "516b200000000000", "516c600000000000", @@ -1408,13 +1408,13 @@ "5170600000000000", "5170a00000000000", "5170e00000000000", - "5171200000000000", - "5171600000000000", - "5171a00000000000", - "5171e00000000000", - "5172200000000000", "5172600000000000", "5172a00000000000", + "5172e00000000000", + "5173200000000000", + "5173600000000000", + "5173a00000000000", + "5173e00000000000", "5174200000000000", "5174600000000000", "5174a00000000000", @@ -1444,139 +1444,86 @@ "517aa00000000000", "517ae00000000000", "517b200000000000", - "517b600000000000", - "517ba00000000000", - "517be00000000000", - "517c200000000000", - "517c600000000000", - "517ca00000000000", - "517ce00000000000", - "517d200000000000", - "517d600000000000", - "517da00000000000", - "517de00000000000", - "517e200000000000", - "517e600000000000", - "517ea00000000000", - "517ee00000000000", - "517f200000000000", - "517f600000000000", - "517fa00000000000", - "517fe00000000000", - "51c0200000000000", - "51c0600000000000", - "51c0a00000000000", - "51c0e00000000000", - "51c1200000000000", - "51c1600000000000", - "51c1a00000000000", - "51c1e00000000000", - "51c2200000000000", - "51c2600000000000", - "51c2a00000000000", - "51c2e00000000000", - "51c3200000000000", - "51c3600000000000", - "51c3a00000000000", - "51c3e00000000000", - "51c8200000000000", - "51c8600000000000", - "51c8a00000000000", - "51c8e00000000000", - "51c9200000000000", - "51c9600000000000", - "51c9a00000000000", - "51c9e00000000000", - "51ca200000000000", - "51ca600000000000", - "51caa00000000000", - "51cae00000000000", - "51cb200000000000", - "51cb600000000000", - "51cba00000000000", - "51cbe00000000000", - "51cce00000000000", - "51cd200000000000", - "51ce200000000000", - "51cea00000000000", - "51cee00000000000", - "51d4200000000000", - "51d4600000000000", - "51d4a00000000000", - "51d4e00000000000", - "51d5200000000000", - "51d5600000000000", - "51d5a00000000000", - "51d5e00000000000", - "51d6200000000000", - "51d6600000000000", - "51d6a00000000000", - "51d6e00000000000", - "51d7200000000000", - "51d7600000000000", - "51d7a00000000000", - "51d7e00000000000", - "634fe00000000000", - "6360200000000000", - "637de00000000000", - "637ea00000000000", - "637f200000000000", - "637f600000000000", - "637fe00000000000", - "63c0200000000000", - "63c0600000000000", - "63c1200000000000", - "63c1600000000000", - "63c1a00000000000", - "63c1e00000000000", - "63c2e00000000000", - "63c3200000000000", - "63c3a00000000000", - "63c4200000000000", - "63c4600000000000", - "63c4a00000000000", - "63c4e00000000000", - "63c5200000000000", - "63c5600000000000", - "63c5a00000000000", - "63c5e00000000000", - "63c6200000000000", - "63c6600000000000", - "63c6a00000000000", - "63c6e00000000000", - "63c7200000000000", - "63c7600000000000", - "63c7a00000000000", - "63c7e00000000000", - "63c8e00000000000", - "63c9200000000000", - "63c9600000000000", - "63c9a00000000000", - "63c9e00000000000", - "63ca200000000000", - "63ca600000000000", - "63caa00000000000", - "63cae00000000000", - "63cb200000000000", - "63cb600000000000", - "63cba00000000000", - "63cbe00000000000", - "63cc200000000000", - "63cc600000000000", - "63cca00000000000", - "63cce00000000000", - "63cd200000000000", - "63cd600000000000", - "63cda00000000000", - "63cde00000000000", - "63ce200000000000", - "63ce600000000000", - "63cea00000000000", + "517b600000000000", + "517ba00000000000", + "517be00000000000", + "517c200000000000", + "517c600000000000", + "517ca00000000000", + "517ce00000000000", + "517d200000000000", + "517d600000000000", + "517da00000000000", + "517de00000000000", + "517e200000000000", + "517e600000000000", + "517ea00000000000", + "517ee00000000000", + "517f200000000000", + "517f600000000000", + "517fa00000000000", + "517fe00000000000", + "5180200000000000", + "5180600000000000", + "5180a00000000000", + "5180e00000000000", + "5181200000000000", + "5181600000000000", + "5181a00000000000", + "5181e00000000000", + "5182200000000000", + "5182600000000000", + "5182a00000000000", + "5182e00000000000", + "5183200000000000", + "5183600000000000", + "5183a00000000000", + "5183e00000000000", + "5184200000000000", + "5184600000000000", + "5184a00000000000", + "5184e00000000000", + "5185200000000000", + "5185600000000000", + "5185a00000000000", + "5185e00000000000", + "5186200000000000", + "5186600000000000", + "5186a00000000000", + "5186e00000000000", + "5187200000000000", + "5187600000000000", + "5187a00000000000", + "5187e00000000000", + "5188200000000000", + "5188a00000000000", + "5188e00000000000", + "518ae00000000000", + "518b600000000000", + "5194200000000000", + "5194600000000000", + "5194a00000000000", + "5194e00000000000", + "5195200000000000", + "5195600000000000", + "5195a00000000000", + "5195e00000000000", + "5196200000000000", + "5196600000000000", + "5196a00000000000", + "5196e00000000000", + "5197200000000000", + "5197600000000000", + "5197a00000000000", + "5197e00000000000", + "638de00000000000", + "638e200000000000", + "638f600000000000", + "638fa00000000000", + "638fe00000000000", + "6396a00000000000", + "63b3e00000000000", "63cee00000000000", - "63cf200000000000", - "63cf600000000000", - "63cfa00000000000", - "63cfe00000000000", "63d0200000000000", "63d0600000000000", "63d0a00000000000", @@ -1606,21 +1553,12 @@ "63d6a00000000000", "63d6e00000000000", "63d7200000000000", - "63d7600000000000", - "63d7a00000000000", - "63d7e00000000000", - "63d8200000000000", - "63d8600000000000", "63d8a00000000000", "63d8e00000000000", "63d9200000000000", - "63d9600000000000", - "63d9a00000000000", - "63d9e00000000000", - "63da200000000000", - "63da600000000000", "63daa00000000000", "63dae00000000000", + "63db200000000000", "63db600000000000", "63dba00000000000", "63dbe00000000000", @@ -1630,22 +1568,84 @@ "63dce00000000000", "63dd200000000000", "63dd600000000000", + "63dda00000000000", "63dde00000000000", "63de200000000000", + "63de600000000000", + "63dea00000000000", + "63dee00000000000", + "63df200000000000", + "63df600000000000", + "63dfa00000000000", + "63dfe00000000000", + "63e0200000000000", + "63e0600000000000", + "63e0a00000000000", + "63e0e00000000000", "63e1200000000000", - "63f8e00000000000", - "63f9200000000000", - "63f9600000000000", - "63f9a00000000000", - "63f9e00000000000", - "63fa200000000000", - "63fa600000000000", - "63faa00000000000", - "63fae00000000000", - "63fb200000000000", - "63fb600000000000", - "63fba00000000000", - "63fbe00000000000" + "63e1600000000000", + "63e1a00000000000", + "63e1e00000000000", + "63e2200000000000", + "63e2600000000000", + "63e2a00000000000", + "63e2e00000000000", + "63e3200000000000", + "63e3600000000000", + "63e3a00000000000", + "63e3e00000000000", + "63e4200000000000", + "63e4600000000000", + "63e4a00000000000", + "63e4e00000000000", + "63e5200000000000", + "63e5600000000000", + "63e5a00000000000", + "63e5e00000000000", + "63e6200000000000", + "63e6600000000000", + "63e6a00000000000", + "63e6e00000000000", + "63e7200000000000", + "63e7600000000000", + "63e7a00000000000", + "63e7e00000000000", + "63e8200000000000", + "63e8600000000000", + "63e8a00000000000", + "63e8e00000000000", + "63e9200000000000", + "63e9600000000000", + "63e9a00000000000", + "63e9e00000000000", + "63ea200000000000", + "63ea600000000000", + "63eaa00000000000", + "63eae00000000000", + "63eb200000000000", + "63eb600000000000", + "63ebe00000000000", + "63ec200000000000", + "63ec600000000000", + "63eca00000000000", + "63ece00000000000", + "63ed200000000000", + "63eda00000000000", + "63ede00000000000", + "63ee200000000000", + "63f4200000000000", + "63f5200000000000", + "63f5600000000000", + "63f5a00000000000", + "63f5e00000000000", + "63f6200000000000", + "63f6600000000000", + "63f6a00000000000", + "63f6e00000000000", + "63f7200000000000", + "63f7600000000000", + "63f7a00000000000", + "63f7e00000000000" ] }, { @@ -1688,8 +1688,8 @@ ], "resolution": 6, "cells": [ - "6361800000000000", - "6364800000000000" + "6397800000000000", + "6398800000000000" ] }, { @@ -1716,60 +1716,60 @@ ], "resolution": 9, "cells": [ - "634d320000000000", - "634d360000000000", - "634d3a0000000000", - "634d3e0000000000", - "634d420000000000", - "634d460000000000", - "634d4a0000000000", - "634d4e0000000000", - "634d560000000000", - "634d620000000000", - "634d660000000000", - "634d6a0000000000", - "634f720000000000", - "634f760000000000", - "634f7a0000000000", - "634f7e0000000000", - "634f9a0000000000", - "634fa20000000000", - "634fa60000000000", - "634faa0000000000", - "634fae0000000000", - "634fb20000000000", - "634fb60000000000", - "634fba0000000000", - "634fbe0000000000", - "6360420000000000", - "6360460000000000", - "63604e0000000000", - "6360520000000000", - "6360560000000000", - "63605a0000000000", - "6360720000000000", - "6360760000000000", - "63607e0000000000", - "6361020000000000", - "6361060000000000", - "63610a0000000000", - "63610e0000000000", - "6361120000000000", - "6361160000000000", - "63611a0000000000", - "63611e0000000000", - "6361220000000000", - "6361260000000000", - "63612a0000000000", - "63612e0000000000", - "6361320000000000", - "6361360000000000", - "63613a0000000000", - "63613e0000000000", - "6361420000000000", - "6361460000000000", - "63614e0000000000", - "6364be0000000000" + "6396c20000000000", + "6396ca0000000000", + "6396ce0000000000", + "6396d20000000000", + "6396d60000000000", + "6396da0000000000", + "6396f20000000000", + "6396f60000000000", + "6396fe0000000000", + "6397020000000000", + "6397060000000000", + "63970a0000000000", + "63970e0000000000", + "6397120000000000", + "6397160000000000", + "63971a0000000000", + "63971e0000000000", + "6397220000000000", + "6397260000000000", + "63972a0000000000", + "63972e0000000000", + "6397320000000000", + "6397360000000000", + "63973a0000000000", + "63973e0000000000", + "6397420000000000", + "6397460000000000", + "63974a0000000000", + "63986a0000000000", + "63b2320000000000", + "63b2360000000000", + "63b23a0000000000", + "63b23e0000000000", + "63b2420000000000", + "63b2460000000000", + "63b24a0000000000", + "63b24e0000000000", + "63b2520000000000", + "63b2560000000000", + "63b25e0000000000", + "63b26a0000000000", + "63b35e0000000000", + "63b3620000000000", + "63b3660000000000", + "63b36a0000000000", + "63b36e0000000000", + "63b3720000000000", + "63b3760000000000", + "63b37a0000000000", + "63b37e0000000000", + "63b3820000000000", + "63b3860000000000", + "63b38a0000000000", + "63b38e0000000000" ] }, { @@ -1796,64 +1796,64 @@ ], "resolution": 10, "cells": [ - "26105b8000000000", - "2610658000000000", - "2610668000000000", - "2610678000000000", - "2610688000000000", - "2610698000000000", - "26106a8000000000", - "26106b8000000000", - "26106c8000000000", - "26106d8000000000", - "26106e8000000000", - "26106f8000000000", - "2610708000000000", - "2610718000000000", - "2610728000000000", - "2610738000000000", - "2610748000000000", - "2610758000000000", - "2610768000000000", - "2610778000000000", - "2610788000000000", - "2610798000000000", - "26107a8000000000", - "26107b8000000000", - "26107c8000000000", - "26107d8000000000", - "26107e8000000000", - "26107f8000000000", - "2610a08000000000", - "2610a28000000000", - "2610a38000000000", - "2610a68000000000", - "2610a78000000000", - "2610a88000000000", - "2610a98000000000", - "2610aa8000000000", - "2610ab8000000000", - "2610c08000000000", - "26114d8000000000", - "26114f8000000000", - "2611508000000000", - "2611528000000000", - "2612178000000000", - "26121a8000000000", - "26121b8000000000", - "26121c8000000000", - "26121d8000000000", - "26121e8000000000", - "26121f8000000000", - "2612278000000000", - "2612288000000000", - "2612298000000000", - "26122a8000000000", - "26122b8000000000", - "26122c8000000000", - "26122d8000000000", - "26122e8000000000", - "26122f8000000000" + "264d4e8000000000", + "264d4f8000000000", + "264d508000000000", + "264d538000000000", + "264ed48000000000", + "264ed88000000000", + "264ed98000000000", + "264eda8000000000", + "264edb8000000000", + "264edc8000000000", + "264edd8000000000", + "264ede8000000000", + "264edf8000000000", + "264ee08000000000", + "264ee18000000000", + "264ee28000000000", + "264ee38000000000", + "264ee48000000000", + "264ee78000000000", + "264ee88000000000", + "264f148000000000", + "264f158000000000", + "264f168000000000", + "264f178000000000", + "264f188000000000", + "264f198000000000", + "264f1c8000000000", + "264f1d8000000000", + "264f1f8000000000", + "264f448000000000", + "264f658000000000", + "264f668000000000", + "264f678000000000", + "264f688000000000", + "264f698000000000", + "264f6a8000000000", + "264f6b8000000000", + "264f6c8000000000", + "264f6d8000000000", + "264f6e8000000000", + "264f6f8000000000", + "264f708000000000", + "264f718000000000", + "264f728000000000", + "264f738000000000", + "264f748000000000", + "264f758000000000", + "264f768000000000", + "264f778000000000", + "264f788000000000", + "264f798000000000", + "264f7a8000000000", + "264f7b8000000000", + "264f7c8000000000", + "264f7d8000000000", + "264f7e8000000000", + "264f7f8000000000", + "264f808000000000" ] }, { @@ -1967,28 +1967,28 @@ "c0aa00000000000", "c0ae00000000000", "c0b200000000000", - "5144200000000000", - "5144600000000000", - "5144a00000000000", - "5144e00000000000", - "5145a00000000000", - "5146200000000000", - "5146600000000000", - "5146a00000000000", - "5146e00000000000", - "5147200000000000", - "5147600000000000", - "5147a00000000000", - "5147e00000000000", + "5148600000000000", + "5149200000000000", + "5149600000000000", + "5149a00000000000", + "5149e00000000000", + "514a200000000000", + "514a600000000000", + "514aa00000000000", + "514ae00000000000", + "514b200000000000", + "514b600000000000", + "514ba00000000000", + "514be00000000000", "514c600000000000", - "514ce00000000000", + "514d200000000000", "514d600000000000", + "514da00000000000", + "514de00000000000", "514e200000000000", - "514e600000000000", - "514ea00000000000", "514ee00000000000", "514f200000000000", - "5154600000000000", + "5154a00000000000", "5154e00000000000", "5155200000000000", "5155600000000000", @@ -2002,109 +2002,109 @@ "5157600000000000", "5157a00000000000", "5157e00000000000", + "5158200000000000", + "5158600000000000", + "5158a00000000000", + "5158e00000000000", "5159200000000000", - "515c200000000000", - "515c600000000000", - "515ca00000000000", + "5159600000000000", + "5159a00000000000", + "5159e00000000000", + "515a200000000000", + "515a600000000000", + "515aa00000000000", + "515ae00000000000", + "515ba00000000000", "515ce00000000000", - "515d200000000000", - "515d600000000000", - "515da00000000000", - "515de00000000000", - "515e600000000000", - "515f200000000000", - "515f600000000000", - "515fa00000000000", - "515fe00000000000", - "516b600000000000", + "516ba00000000000", "516c200000000000", - "5170200000000000", - "5175600000000000", - "5175e00000000000", - "5190200000000000", - "5195600000000000", - "5195e00000000000", - "5197200000000000", - "5197e00000000000", - "51c5200000000000", - "51c6200000000000", - "51c6600000000000", - "51c6a00000000000", - "51c6e00000000000", - "51c7a00000000000", + "5173e00000000000", + "5174200000000000", + "5174e00000000000", + "5189600000000000", + "5189a00000000000", + "5189e00000000000", + "518a200000000000", + "518a600000000000", + "518aa00000000000", + "518ba00000000000", + "518be00000000000", + "518c600000000000", + "518d200000000000", + "518d600000000000", + "518da00000000000", + "518de00000000000", + "518f200000000000", + "5190a00000000000", + "5190e00000000000", + "5191200000000000", + "5191a00000000000", + "5191e00000000000", + "51b8a00000000000", + "51ba600000000000", + "51bb600000000000", + "51bbe00000000000", + "51ca600000000000", + "51cae00000000000", + "51cb200000000000", + "51cbe00000000000", "51cc200000000000", - "51cca00000000000", - "51cd600000000000", - "51cda00000000000", - "51cde00000000000", - "51cf200000000000", - "51cf600000000000", - "51cfe00000000000", - "51d0600000000000", - "51d0e00000000000", - "51d2200000000000", - "51d2600000000000", - "51d2e00000000000", - "51e4600000000000", - "51e4a00000000000", - "51e5a00000000000", - "51e7600000000000", - "636a200000000000", - "63c0a00000000000", - "63c1a00000000000", - "63c1e00000000000", - "63c2e00000000000", - "63c4200000000000", - "63c5200000000000", - "63c5600000000000", - "63c5a00000000000", - "63c5e00000000000", - "63c6200000000000", - "63c6600000000000", - "63c7200000000000", - "63c7600000000000", - "63d0200000000000", - "63d0600000000000", - "63d0a00000000000", - "63d0e00000000000", - "63d1200000000000", - "63d1600000000000", - "63d1a00000000000", - "63d1e00000000000", - "63d2200000000000", - "63d2600000000000", - "63d2a00000000000", - "63d2e00000000000", - "63d3200000000000", - "63d3600000000000", - "63d3a00000000000", - "63d3e00000000000", - "63d4200000000000", - "63d4600000000000", - "63d4a00000000000", - "63d4e00000000000", - "63d5200000000000", - "63d5600000000000", - "63d5a00000000000", - "63d5e00000000000", - "63d6200000000000", - "63d6600000000000", - "63d6a00000000000", - "63d6e00000000000", - "63d7200000000000", - "63d7600000000000", - "63d7a00000000000", - "63dc600000000000", - "63dce00000000000", + "6390600000000000", + "63d9200000000000", + "63da600000000000", + "63dba00000000000", + "63dbe00000000000", + "63dc200000000000", "63dd200000000000", + "63dd600000000000", + "63dda00000000000", + "63dde00000000000", + "63de200000000000", + "63de600000000000", + "63df200000000000", + "63df600000000000", + "63e0200000000000", + "63e0600000000000", + "63e0a00000000000", + "63e0e00000000000", + "63e1200000000000", + "63e1600000000000", + "63e1a00000000000", + "63e1e00000000000", + "63e2200000000000", + "63e2600000000000", + "63e2a00000000000", + "63e2e00000000000", + "63e3200000000000", + "63e3600000000000", + "63e3a00000000000", + "63e3e00000000000", + "63e4200000000000", + "63e4600000000000", + "63e4a00000000000", + "63e4e00000000000", + "63e5200000000000", + "63e5600000000000", + "63e5a00000000000", + "63e5e00000000000", + "63e6200000000000", + "63e6600000000000", + "63e6a00000000000", + "63e6e00000000000", + "63e7200000000000", + "63e7600000000000", + "63e7a00000000000", + "63eca00000000000", + "63ece00000000000", + "63ed200000000000", "63f1200000000000", "63f1600000000000", "63f1a00000000000", "63f1e00000000000", + "63f2200000000000", "63f2600000000000", "63f2a00000000000", "63f2e00000000000", - "63f3200000000000", "63f3600000000000", "63f3a00000000000", "63f3e00000000000", @@ -2209,15 +2209,15 @@ "643f200000000000", "643f600000000000", "643fa00000000000", - "6445e00000000000", - "6a81e00000000000", + "6440a00000000000", + "6a81200000000000", + "6a84200000000000", "6a84600000000000", + "6a84a00000000000", + "6a84e00000000000", "6a85200000000000", - "6a85600000000000", - "6a85a00000000000", "6a85e00000000000", - "6a86a00000000000", - "6a86e00000000000", + "6a86600000000000", "6a87200000000000", "6a87600000000000", "6a87a00000000000", @@ -2261,14 +2261,14 @@ "6a98a00000000000", "6a98e00000000000", "6a99200000000000", - "6a99a00000000000", + "6a99600000000000", "6a99e00000000000", "6a9a600000000000", - "6a9aa00000000000", "6a9ba00000000000", + "6a9be00000000000", "6a9c200000000000", - "6a9fa00000000000", - "6a9fe00000000000", + "6a9ce00000000000", + "6a9da00000000000", "6aa2a00000000000", "6aa8200000000000", "6aa8600000000000", @@ -2366,9 +2366,9 @@ ], "resolution": 30, "cells": [ - "a2bdf362a699bdad", - "a2bdf362a699bdaf", - "a2bdf362a699bdc7" + "a2b61367f73ebdbd", + "a2b61367f73ebdc1", + "a2b61367f73ebdc3" ] }, { @@ -2416,11 +2416,11 @@ "c00800000000000", "c02800000000000", "c03800000000000", - "5141800000000000", + "5143800000000000", "5144800000000000", "5145800000000000", "5146800000000000", - "5147800000000000", + "5148800000000000", "5149800000000000", "514a800000000000", "514b800000000000", @@ -2465,109 +2465,109 @@ "5172800000000000", "5173800000000000", "5174800000000000", - "5175800000000000", + "5177800000000000", "517b800000000000", - "5190800000000000", - "51c0800000000000", - "51c1800000000000", - "51c2800000000000", - "51c3800000000000", - "51c8800000000000", - "51c9800000000000", - "51ca800000000000", - "51cb800000000000", - "51cd800000000000", - "51ce800000000000", - "51cf800000000000", - "51d4800000000000", - "51d5800000000000", - "51d6800000000000", - "51d7800000000000", - "51d9800000000000", - "51dc800000000000", - "51dd800000000000", - "51df800000000000", - "6346800000000000", - "6347800000000000", - "6348800000000000", - "6349800000000000", - "634a800000000000", - "634b800000000000", - "634c800000000000", - "634d800000000000", - "634e800000000000", - "634f800000000000", - "6350800000000000", - "6357800000000000", - "6358800000000000", - "6359800000000000", - "635a800000000000", - "635b800000000000", - "635d800000000000", - "635e800000000000", - "635f800000000000", - "6360800000000000", - "6361800000000000", - "6362800000000000", - "6363800000000000", - "6364800000000000", - "6365800000000000", - "6366800000000000", - "6367800000000000", - "6368800000000000", - "6369800000000000", - "636a800000000000", - "636b800000000000", - "636c800000000000", - "636d800000000000", - "636e800000000000", - "636f800000000000", + "5180800000000000", + "5181800000000000", + "5182800000000000", + "5183800000000000", + "5184800000000000", + "5185800000000000", + "5186800000000000", + "5187800000000000", + "5188800000000000", + "5189800000000000", + "518a800000000000", + "5194800000000000", + "5195800000000000", + "5196800000000000", + "5197800000000000", + "5198800000000000", + "519c800000000000", + "519d800000000000", + "519f800000000000", + "51cc800000000000", "6370800000000000", - "6371800000000000", - "6372800000000000", - "6373800000000000", "6374800000000000", "6375800000000000", "6376800000000000", - "6377800000000000", - "6378800000000000", - "6379800000000000", - "637a800000000000", - "637b800000000000", "637c800000000000", "637d800000000000", - "637e800000000000", + "637f800000000000", + "6380800000000000", + "6381800000000000", + "6382800000000000", + "6383800000000000", + "6384800000000000", + "6385800000000000", + "6386800000000000", + "6387800000000000", + "6388800000000000", + "6389800000000000", + "638a800000000000", + "638b800000000000", + "638c800000000000", + "638d800000000000", + "638e800000000000", + "6390800000000000", + "6391800000000000", + "6392800000000000", + "6393800000000000", + "6394800000000000", + "6395800000000000", + "6396800000000000", + "6397800000000000", + "6398800000000000", + "6399800000000000", + "639a800000000000", + "639b800000000000", + "639c800000000000", + "639d800000000000", + "639e800000000000", + "639f800000000000", "63a0800000000000", + "63a1800000000000", "63a2800000000000", - "63a3800000000000", + "63a4800000000000", + "63a5800000000000", + "63a6800000000000", + "63a7800000000000", "63a8800000000000", - "63a9800000000000", - "63aa800000000000", - "63ae800000000000", + "63af800000000000", + "63b0800000000000", + "63b1800000000000", + "63b2800000000000", + "63b3800000000000", + "63b4800000000000", + "63b5800000000000", + "63b6800000000000", + "63b7800000000000", + "63b8800000000000", + "63b9800000000000", + "63c7800000000000", "63c8800000000000", - "63ca800000000000", - "63cb800000000000", - "63cc800000000000", + "63c9800000000000", "63cd800000000000", "63ce800000000000", "63cf800000000000", + "63d0800000000000", + "63d1800000000000", + "63d2800000000000", + "63d3800000000000", + "63d4800000000000", "63d5800000000000", - "63d6800000000000", "63d7800000000000", - "63d8800000000000", - "63d9800000000000", - "63da800000000000", - "63db800000000000", - "63dc800000000000", - "63dd800000000000", - "63de800000000000", - "63df800000000000", - "63e0800000000000", - "63e1800000000000", - "63e2800000000000", - "63e4800000000000", "63e5800000000000", + "63e6800000000000", + "63e7800000000000", + "63e8800000000000", + "63e9800000000000", + "63ea800000000000", + "63eb800000000000", + "63ec800000000000", + "63ed800000000000", "63ee800000000000", + "63ef800000000000", "63f1800000000000", "63f2800000000000", "63f3800000000000", @@ -2675,11 +2675,18 @@ "5182000000000000", "5186000000000000", "518a000000000000", + "518e000000000000", "5192000000000000", "5196000000000000", "519a000000000000", "519e000000000000", "51a2000000000000", + "51a6000000000000", + "51aa000000000000", + "51ae000000000000", + "51b6000000000000", + "51ba000000000000", + "51be000000000000", "51c2000000000000", "51c6000000000000", "51ca000000000000", @@ -2687,29 +2694,26 @@ "51d2000000000000", "51d6000000000000", "51da000000000000", - "51de000000000000", - "51e2000000000000", - "51e6000000000000", - "51ea000000000000", - "51f2000000000000", - "51f6000000000000", - "51fa000000000000", - "51fe000000000000", - "6136000000000000", + "51ee000000000000", + "613a000000000000", "613e000000000000", "6142000000000000", - "614a000000000000", + "6146000000000000", + "6312000000000000", + "6316000000000000", + "631a000000000000", "631e000000000000", - "6332000000000000", - "6336000000000000", - "633a000000000000", - "633e000000000000", - "6342000000000000", + "6322000000000000", "6346000000000000", "634a000000000000", + "634e000000000000", "6352000000000000", - "6356000000000000", + "635a000000000000", "635e000000000000", + "6362000000000000", + "6366000000000000", + "636a000000000000", + "636e000000000000", "6372000000000000", "6376000000000000", "637a000000000000", @@ -2717,14 +2721,10 @@ "6382000000000000", "6386000000000000", "638a000000000000", - "6396000000000000", - "639a000000000000", - "639e000000000000", + "638e000000000000", "63a2000000000000", - "63a6000000000000", "63aa000000000000", "63ae000000000000", - "63b2000000000000", "63b6000000000000", "63ba000000000000", "63be000000000000", @@ -2741,7 +2741,7 @@ "63ea000000000000", "63ee000000000000", "63f2000000000000", - "63f6000000000000", + "63fa000000000000", "63fe000000000000", "6402000000000000", "6406000000000000", @@ -2820,35 +2820,35 @@ "5176000000000000", "517a000000000000", "517e000000000000", - "51c2000000000000", - "51ca000000000000", - "51ce000000000000", - "51d6000000000000", - "51de000000000000", - "634a000000000000", - "634e000000000000", - "6356000000000000", - "635a000000000000", - "635e000000000000", - "6362000000000000", - "6366000000000000", - "636a000000000000", - "636e000000000000", - "6372000000000000", + "5182000000000000", + "5186000000000000", + "518a000000000000", + "5196000000000000", + "519e000000000000", "6376000000000000", - "637a000000000000", "637e000000000000", + "6382000000000000", + "6386000000000000", + "638a000000000000", + "638e000000000000", + "6392000000000000", + "6396000000000000", + "639a000000000000", + "639e000000000000", "63a2000000000000", + "63a6000000000000", "63aa000000000000", - "63c2000000000000", - "63c6000000000000", - "63ca000000000000", + "63b2000000000000", + "63b6000000000000", "63ce000000000000", "63d2000000000000", "63d6000000000000", "63da000000000000", "63de000000000000", "63e2000000000000", + "63e6000000000000", + "63ea000000000000", + "63ee000000000000", "63f2000000000000", "63f6000000000000", "63fa000000000000", @@ -2905,11 +2905,11 @@ ], "resolution": 6, "cells": [ - "5141800000000000", + "5143800000000000", "5144800000000000", "5145800000000000", "5146800000000000", - "5147800000000000", + "5148800000000000", "5149800000000000", "514a800000000000", "514b800000000000", @@ -2921,10 +2921,10 @@ "5151800000000000", "5152800000000000", "5153800000000000", - "5158800000000000", - "515a800000000000", "515b800000000000", + "515d800000000000", "515e800000000000", + "515f800000000000", "5160800000000000", "5161800000000000", "5162800000000000", @@ -2957,95 +2957,95 @@ "517d800000000000", "517e800000000000", "517f800000000000", - "5190800000000000", - "51c0800000000000", - "51c1800000000000", - "51c2800000000000", - "51c3800000000000", - "51c8800000000000", - "51c9800000000000", - "51ca800000000000", - "51cb800000000000", - "51cd800000000000", - "51ce800000000000", - "51cf800000000000", - "51d9800000000000", - "51dd800000000000", - "51df800000000000", - "6347800000000000", - "6348800000000000", - "6349800000000000", - "634a800000000000", - "634b800000000000", - "634c800000000000", - "634d800000000000", - "634e800000000000", - "634f800000000000", - "6350800000000000", - "6357800000000000", - "6358800000000000", - "6359800000000000", - "635a800000000000", - "635b800000000000", - "635d800000000000", - "635e800000000000", - "635f800000000000", - "6360800000000000", - "6361800000000000", - "6362800000000000", - "6363800000000000", - "6364800000000000", - "6365800000000000", - "6366800000000000", - "6367800000000000", - "6368800000000000", - "6369800000000000", - "636a800000000000", - "636b800000000000", - "636c800000000000", - "636d800000000000", - "636e800000000000", - "636f800000000000", + "5180800000000000", + "5181800000000000", + "5182800000000000", + "5183800000000000", + "5184800000000000", + "5185800000000000", + "5186800000000000", + "5187800000000000", + "5188800000000000", + "5189800000000000", + "518a800000000000", + "5198800000000000", + "519d800000000000", + "519f800000000000", + "51cc800000000000", "6370800000000000", - "6377800000000000", - "6378800000000000", - "6379800000000000", - "637a800000000000", - "637b800000000000", + "6374800000000000", + "6375800000000000", + "6376800000000000", "637c800000000000", + "637d800000000000", "637f800000000000", + "6380800000000000", + "6381800000000000", + "6382800000000000", + "6383800000000000", + "6386800000000000", + "638b800000000000", + "638c800000000000", + "638f800000000000", + "6390800000000000", + "6391800000000000", + "6392800000000000", + "6393800000000000", + "6394800000000000", + "6395800000000000", + "6396800000000000", + "6397800000000000", + "6398800000000000", + "6399800000000000", + "639a800000000000", + "639b800000000000", + "639c800000000000", + "639d800000000000", + "639e800000000000", + "639f800000000000", "63a0800000000000", + "63a1800000000000", "63a2800000000000", - "63a3800000000000", + "63a4800000000000", + "63a5800000000000", + "63a6800000000000", + "63a7800000000000", "63a8800000000000", - "63a9800000000000", - "63aa800000000000", - "63ae800000000000", - "63c0800000000000", - "63c1800000000000", - "63c2800000000000", - "63c3800000000000", - "63c4800000000000", - "63c5800000000000", - "63c6800000000000", - "63c7800000000000", + "63af800000000000", + "63b0800000000000", + "63b1800000000000", + "63b2800000000000", + "63b3800000000000", + "63b4800000000000", + "63b5800000000000", + "63b6800000000000", + "63b7800000000000", + "63b8800000000000", "63c8800000000000", - "63c9800000000000", - "63ca800000000000", - "63cb800000000000", - "63cc800000000000", "63cd800000000000", "63ce800000000000", "63cf800000000000", + "63d0800000000000", "63d1800000000000", "63d2800000000000", "63d3800000000000", + "63d4800000000000", + "63d5800000000000", + "63d6800000000000", + "63d7800000000000", "63d8800000000000", + "63d9800000000000", + "63da800000000000", "63db800000000000", - "63e0800000000000", + "63dc800000000000", + "63dd800000000000", + "63de800000000000", + "63df800000000000", "63e1800000000000", "63e2800000000000", - "63e4800000000000" + "63e3800000000000", + "63e8800000000000", + "63eb800000000000" ] }, { @@ -3090,39 +3090,39 @@ ], "resolution": 6, "cells": [ - "515f800000000000", - "5167800000000000", - "5168800000000000", + "515a800000000000", + "5162800000000000", + "516a800000000000", "516b800000000000", "5170800000000000", - "5171800000000000", "5172800000000000", - "5190800000000000", - "5195800000000000", - "51c4800000000000", - "51c8800000000000", - "51c9800000000000", - "51cd800000000000", - "51cf800000000000", - "51d8800000000000", - "51d9800000000000", - "51da800000000000", - "51dc800000000000", - "634f800000000000", - "6360800000000000", - "6362800000000000", - "6366800000000000", - "6369800000000000", - "637c800000000000", - "637e800000000000", - "63ca800000000000", - "63ce800000000000", + "5173800000000000", + "5184800000000000", + "5185800000000000", + "5189800000000000", + "518a800000000000", + "518e800000000000", + "5198800000000000", + "5199800000000000", + "519a800000000000", + "519c800000000000", + "51cb800000000000", + "51cc800000000000", + "638c800000000000", + "638d800000000000", + "6392800000000000", + "6395800000000000", + "6396800000000000", + "639a800000000000", + "63b3800000000000", + "63d3800000000000", "63d5800000000000", - "63d6800000000000", - "63d7800000000000", - "63d8800000000000", - "63f9800000000000", - "63fa800000000000" + "63e5800000000000", + "63e6800000000000", + "63e7800000000000", + "63e8800000000000", + "63f5800000000000", + "63f7800000000000" ] }, { @@ -3205,13 +3205,13 @@ "c0c600000000000", "c2fe00000000000", "c30200000000000", - "5136600000000000", - "5136a00000000000", - "5136e00000000000", - "5137200000000000", - "5137600000000000", - "5137a00000000000", - "513ae00000000000", + "5132600000000000", + "5132a00000000000", + "5132e00000000000", + "5133200000000000", + "5133600000000000", + "5133a00000000000", + "5134e00000000000", "513c600000000000", "513ca00000000000", "513ce00000000000", @@ -3407,11 +3407,11 @@ "516c600000000000", "516ca00000000000", "516ce00000000000", + "516d200000000000", "516d600000000000", "516da00000000000", "516de00000000000", "516e200000000000", - "516e600000000000", "516ea00000000000", "516ee00000000000", "516f200000000000", @@ -3439,52 +3439,27 @@ "5174a00000000000", "5174e00000000000", "5175200000000000", - "5175600000000000", - "5175a00000000000", - "5175e00000000000", - "5176200000000000", - "5176600000000000", - "5176a00000000000", - "5177200000000000", - "5178200000000000", - "5178600000000000", - "5178a00000000000", - "5178e00000000000", - "5179200000000000", - "5179600000000000", - "5180200000000000", - "5180600000000000", - "5180a00000000000", - "5180e00000000000", - "5181200000000000", - "5181600000000000", - "5181a00000000000", - "5181e00000000000", - "5182200000000000", - "5182600000000000", - "5182a00000000000", - "5182e00000000000", - "5183200000000000", - "5183600000000000", - "5183a00000000000", - "5183e00000000000", + "5176600000000000", + "5176a00000000000", + "5176e00000000000", + "5177200000000000", + "5177600000000000", + "5177a00000000000", + "5177e00000000000", + "5178200000000000", + "5178600000000000", + "5178a00000000000", + "5178e00000000000", + "5179200000000000", + "5179600000000000", "5184200000000000", "5184600000000000", "5184a00000000000", - "5184e00000000000", "5185200000000000", "5185600000000000", "5185a00000000000", "5185e00000000000", - "5186200000000000", - "5186600000000000", - "5186a00000000000", - "5186e00000000000", - "5187200000000000", - "5187600000000000", "5187a00000000000", - "5187e00000000000", - "5188200000000000", "5188600000000000", "5188a00000000000", "5188e00000000000", @@ -3497,12 +3472,18 @@ "518aa00000000000", "518ae00000000000", "518b200000000000", + "518b600000000000", "518ba00000000000", + "518be00000000000", + "518c200000000000", "518c600000000000", + "518ca00000000000", + "518ce00000000000", "518d200000000000", "518d600000000000", "518da00000000000", "518de00000000000", + "518e200000000000", "518e600000000000", "518ea00000000000", "518ee00000000000", @@ -3527,21 +3508,6 @@ "5193a00000000000", "5193e00000000000", "5194200000000000", - "5194600000000000", - "5194a00000000000", - "5194e00000000000", - "5195200000000000", - "5195600000000000", - "5195a00000000000", - "5195e00000000000", - "5196200000000000", - "5196600000000000", - "5196a00000000000", - "5196e00000000000", - "5197200000000000", - "5197600000000000", - "5197a00000000000", - "5197e00000000000", "5198200000000000", "5198600000000000", "5198a00000000000", @@ -3559,11 +3525,6 @@ "519ba00000000000", "519be00000000000", "519c200000000000", - "519c600000000000", - "519ca00000000000", - "519ce00000000000", - "519d200000000000", - "519d600000000000", "519da00000000000", "519de00000000000", "519e200000000000", @@ -3578,22 +3539,122 @@ "51a0600000000000", "51a0a00000000000", "51a0e00000000000", + "51a1200000000000", + "51a1600000000000", + "51a1a00000000000", + "51a1e00000000000", "51a2200000000000", "51a2600000000000", "51a2a00000000000", "51a2e00000000000", + "51a3200000000000", "51a3600000000000", "51a3a00000000000", "51a3e00000000000", + "51a4200000000000", + "51a4600000000000", + "51a4a00000000000", + "51a4e00000000000", + "51a5200000000000", + "51a5600000000000", + "51a5a00000000000", + "51a5e00000000000", + "51a6200000000000", + "51a6600000000000", + "51a6a00000000000", + "51a6e00000000000", + "51a7200000000000", + "51a7600000000000", + "51a7a00000000000", + "51a7e00000000000", "51a8200000000000", + "51a8600000000000", + "51a8a00000000000", + "51a8e00000000000", + "51a9200000000000", + "51a9600000000000", + "51a9a00000000000", + "51a9e00000000000", + "51aa200000000000", + "51aa600000000000", + "51aaa00000000000", + "51aae00000000000", + "51ab200000000000", + "51ab600000000000", + "51aba00000000000", + "51abe00000000000", + "51ac200000000000", + "51ac600000000000", + "51aca00000000000", + "51ad600000000000", + "51ada00000000000", + "51ade00000000000", + "51ae200000000000", + "51ae600000000000", + "51aea00000000000", + "51aee00000000000", + "51af200000000000", + "51af600000000000", + "51afa00000000000", + "51afe00000000000", + "51b0200000000000", + "51b0a00000000000", + "51b0e00000000000", + "51b1200000000000", + "51b6200000000000", + "51b6600000000000", + "51b7200000000000", + "51b7600000000000", + "51b7a00000000000", + "51b7e00000000000", + "51b8200000000000", + "51b8600000000000", + "51b8a00000000000", + "51b8e00000000000", + "51b9200000000000", + "51b9600000000000", + "51b9a00000000000", + "51b9e00000000000", + "51ba200000000000", + "51ba600000000000", + "51baa00000000000", + "51bae00000000000", + "51bb200000000000", + "51bb600000000000", + "51bba00000000000", + "51bbe00000000000", + "51bc200000000000", + "51bc600000000000", + "51bca00000000000", + "51bce00000000000", "51bd200000000000", + "51bd600000000000", "51bda00000000000", "51bde00000000000", + "51be200000000000", + "51be600000000000", "51bea00000000000", + "51bee00000000000", "51bf200000000000", "51bf600000000000", "51bfa00000000000", "51bfe00000000000", + "51c0200000000000", + "51c0600000000000", + "51c0a00000000000", + "51c0e00000000000", + "51c1200000000000", + "51c1600000000000", + "51c1a00000000000", + "51c1e00000000000", + "51c2200000000000", + "51c2600000000000", + "51c2a00000000000", + "51c2e00000000000", + "51c3200000000000", + "51c3600000000000", + "51c3a00000000000", + "51c3e00000000000", "51c4200000000000", "51c4600000000000", "51c4a00000000000", @@ -3613,11 +3674,19 @@ "51c8200000000000", "51c8600000000000", "51c8a00000000000", + "51c8e00000000000", "51c9200000000000", "51c9600000000000", "51c9a00000000000", "51c9e00000000000", + "51ca200000000000", + "51ca600000000000", + "51caa00000000000", + "51cae00000000000", + "51cb200000000000", "51cb600000000000", + "51cba00000000000", + "51cbe00000000000", "51cc200000000000", "51cc600000000000", "51cca00000000000", @@ -3626,6 +3695,7 @@ "51cd600000000000", "51cda00000000000", "51cde00000000000", + "51ce200000000000", "51ce600000000000", "51cea00000000000", "51cee00000000000", @@ -3650,6 +3720,21 @@ "51d3a00000000000", "51d3e00000000000", "51d4200000000000", + "51d4600000000000", + "51d4a00000000000", + "51d4e00000000000", + "51d5200000000000", + "51d5600000000000", + "51d5a00000000000", + "51d5e00000000000", + "51d6200000000000", + "51d6600000000000", + "51d6a00000000000", + "51d6e00000000000", + "51d7200000000000", + "51d7600000000000", + "51d7a00000000000", + "51d7e00000000000", "51d8200000000000", "51d8600000000000", "51d8a00000000000", @@ -3659,63 +3744,32 @@ "51d9a00000000000", "51d9e00000000000", "51da200000000000", - "51da600000000000", - "51daa00000000000", "51dae00000000000", "51db200000000000", "51db600000000000", "51dba00000000000", "51dbe00000000000", + "51dc200000000000", "51dc600000000000", + "51dca00000000000", + "51dce00000000000", "51dd200000000000", + "51dd600000000000", "51dda00000000000", - "51de200000000000", + "51dde00000000000", "51de600000000000", "51dea00000000000", "51dee00000000000", "51df200000000000", - "51df600000000000", - "51dfa00000000000", - "51dfe00000000000", - "51e0200000000000", - "51e0600000000000", - "51e0a00000000000", - "51e0e00000000000", - "51e1200000000000", - "51e1600000000000", - "51e1a00000000000", - "51e1e00000000000", - "51e2200000000000", - "51e2600000000000", - "51e2a00000000000", - "51e2e00000000000", - "51e3200000000000", - "51e3600000000000", - "51e3a00000000000", - "51e3e00000000000", - "51e4200000000000", - "51e4600000000000", - "51e4a00000000000", "51e4e00000000000", - "51e5200000000000", - "51e5600000000000", - "51e5a00000000000", - "51e5e00000000000", - "51e6200000000000", - "51e6600000000000", - "51e6a00000000000", - "51e6e00000000000", - "51e7200000000000", - "51e7600000000000", - "51e7a00000000000", - "51e7e00000000000", - "51e8200000000000", - "51e8600000000000", - "51e8a00000000000", - "51e8e00000000000", - "51ea200000000000", - "51ea600000000000", + "51ed600000000000", + "51eda00000000000", "51ede00000000000", + "51ee200000000000", + "51ee600000000000", + "51eea00000000000", + "51eee00000000000", + "51ef200000000000", "51ef600000000000", "51efa00000000000", "51efe00000000000", @@ -3723,78 +3777,24 @@ "51f0600000000000", "51f0a00000000000", "51f0e00000000000", - "51f1200000000000", - "51f1600000000000", - "51f1a00000000000", - "51f1e00000000000", - "51f2200000000000", - "51f2600000000000", - "51f2a00000000000", "51f2e00000000000", "51f3200000000000", "51f3600000000000", - "51f3a00000000000", "51f3e00000000000", - "51f4200000000000", - "51f4600000000000", - "51f4a00000000000", - "51f4e00000000000", - "51f5200000000000", - "51f5600000000000", - "51f5a00000000000", - "51f5e00000000000", - "51f6200000000000", - "51f6600000000000", - "51f6a00000000000", - "51f6e00000000000", - "51f7200000000000", - "51f7600000000000", - "51f7a00000000000", - "51f7e00000000000", - "51f8200000000000", - "51f8600000000000", - "51f8a00000000000", - "51f8e00000000000", - "51f9200000000000", - "51f9600000000000", - "51f9a00000000000", - "51f9e00000000000", - "51fa200000000000", - "51fa600000000000", - "51faa00000000000", - "51fb600000000000", - "51fba00000000000", - "51fbe00000000000", - "51fc200000000000", - "51fc600000000000", - "51fca00000000000", - "51fce00000000000", - "51fd200000000000", - "51fd600000000000", - "51fda00000000000", - "51fde00000000000", - "51fe200000000000", - "51fe600000000000", - "51fea00000000000", - "51fee00000000000", - "51ff200000000000", - "51ff600000000000", - "51ffa00000000000", - "51ffe00000000000", - "5300200000000000", - "5300a00000000000", - "5355600000000000", - "5355e00000000000", - "6137200000000000", + "533fa00000000000", + "533fe00000000000", + "5340200000000000", + "5340e00000000000", + "613b200000000000", "613c200000000000", "613c600000000000", "613ca00000000000", "613ce00000000000", "613d200000000000", "613d600000000000", - "613da00000000000", - "613e200000000000", "613e600000000000", + "613ea00000000000", + "613ee00000000000", "613f200000000000", "613f600000000000", "613fa00000000000", @@ -3815,68 +3815,63 @@ "6143600000000000", "6143a00000000000", "6143e00000000000", + "6144200000000000", "6144600000000000", + "6144a00000000000", + "6144e00000000000", "6145200000000000", "6145600000000000", + "6145a00000000000", "6145e00000000000", - "6148200000000000", - "6148600000000000", - "6148a00000000000", - "6148e00000000000", - "6149200000000000", - "6149600000000000", - "6149a00000000000", - "6149e00000000000", + "6146200000000000", + "6146600000000000", + "6146a00000000000", + "6146e00000000000", + "6147600000000000", + "6147a00000000000", + "6147e00000000000", "614a200000000000", - "614a600000000000", "614aa00000000000", - "614b200000000000", - "614b600000000000", + "614ae00000000000", "614ba00000000000", - "614be00000000000", - "6163e00000000000", + "6173e00000000000", + "6318200000000000", + "6318600000000000", "6318a00000000000", "6318e00000000000", - "6319600000000000", - "6319a00000000000", - "6319e00000000000", - "631a200000000000", - "631a600000000000", - "631aa00000000000", - "631ae00000000000", - "631c600000000000", - "631d200000000000", "631d600000000000", - "631de00000000000", + "631e200000000000", + "631e600000000000", + "631ea00000000000", + "631ee00000000000", "631f200000000000", "631f600000000000", "631fa00000000000", "631fe00000000000", - "6330200000000000", - "6330600000000000", - "6330a00000000000", - "6330e00000000000", - "6331200000000000", - "6331600000000000", - "6331a00000000000", - "6331e00000000000", - "6332200000000000", - "6334200000000000", - "6334600000000000", - "6334a00000000000", - "6334e00000000000", - "6341a00000000000", - "6341e00000000000", - "6342200000000000", - "6342600000000000", - "6342a00000000000", + "6320200000000000", + "6320600000000000", + "6320a00000000000", + "6320e00000000000", + "6321200000000000", + "6321a00000000000", + "6321e00000000000", + "6322200000000000", + "6325200000000000", + "6325600000000000", + "6325a00000000000", + "6325e00000000000", + "6326200000000000", + "6326600000000000", + "6326a00000000000", + "6327200000000000", + "6327600000000000", "6342e00000000000", "6343200000000000", "6343600000000000", - "6343a00000000000", "6343e00000000000", "6344200000000000", "6344600000000000", + "6344a00000000000", "6344e00000000000", "6345200000000000", "6345600000000000", @@ -3942,18 +3937,6 @@ "6354600000000000", "6354a00000000000", "6354e00000000000", - "6355200000000000", - "6355600000000000", - "6355a00000000000", - "6355e00000000000", - "6356200000000000", - "6356600000000000", - "6356a00000000000", - "6356e00000000000", - "6357200000000000", - "6357600000000000", - "6357a00000000000", - "6357e00000000000", "6358200000000000", "6358600000000000", "6358a00000000000", @@ -3972,10 +3955,6 @@ "635be00000000000", "635c200000000000", "635c600000000000", - "635ca00000000000", - "635ce00000000000", - "635d200000000000", - "635d600000000000", "635da00000000000", "635de00000000000", "635e200000000000", @@ -3996,18 +3975,54 @@ "6361e00000000000", "6362200000000000", "6362600000000000", + "6362a00000000000", "6362e00000000000", + "6363200000000000", + "6363600000000000", + "6363a00000000000", + "6363e00000000000", "6364200000000000", "6364600000000000", "6364a00000000000", "6364e00000000000", "6365200000000000", + "6365600000000000", + "6365a00000000000", "6365e00000000000", + "6366200000000000", + "6366600000000000", + "6366a00000000000", + "6366e00000000000", + "6367200000000000", + "6367600000000000", + "6367a00000000000", + "6367e00000000000", + "6368200000000000", + "6368600000000000", + "6368a00000000000", + "6368e00000000000", + "6369200000000000", + "6369600000000000", + "6369a00000000000", + "6369e00000000000", + "636a200000000000", + "636a600000000000", + "636aa00000000000", + "636ae00000000000", + "636b200000000000", + "636b600000000000", + "636ba00000000000", + "636be00000000000", + "636c200000000000", + "636c600000000000", + "636ca00000000000", "636ce00000000000", "636d200000000000", "636d600000000000", "636da00000000000", "636de00000000000", + "636e200000000000", + "636e600000000000", "636ea00000000000", "636ee00000000000", "636f200000000000", @@ -4019,13 +4034,33 @@ "6370a00000000000", "6370e00000000000", "6371200000000000", + "6371600000000000", + "6371a00000000000", + "6371e00000000000", "6372200000000000", "6372600000000000", "6372a00000000000", + "6372e00000000000", "6373200000000000", "6373600000000000", "6373a00000000000", "6373e00000000000", + "6374200000000000", + "6374600000000000", + "6374a00000000000", + "6374e00000000000", + "6375200000000000", + "6375600000000000", + "6375a00000000000", + "6375e00000000000", + "6376200000000000", + "6376600000000000", + "6376a00000000000", + "6376e00000000000", + "6377200000000000", + "6377600000000000", + "6377a00000000000", + "6377e00000000000", "6378200000000000", "6378600000000000", "6378a00000000000", @@ -4039,14 +4074,30 @@ "637aa00000000000", "637ae00000000000", "637b200000000000", + "637b600000000000", "637ba00000000000", + "637be00000000000", + "637c200000000000", + "637c600000000000", + "637ca00000000000", + "637ce00000000000", + "637d200000000000", + "637d600000000000", + "637da00000000000", + "637de00000000000", + "637e200000000000", + "637e600000000000", + "637ea00000000000", + "637ee00000000000", + "637f200000000000", + "637f600000000000", + "637fa00000000000", + "637fe00000000000", "6380200000000000", "6380600000000000", "6380a00000000000", "6380e00000000000", "6381200000000000", - "6381600000000000", - "6381a00000000000", "6381e00000000000", "6382200000000000", "6382600000000000", @@ -4060,7 +4111,6 @@ "6384600000000000", "6384a00000000000", "6384e00000000000", - "6385200000000000", "6385600000000000", "6385a00000000000", "6385e00000000000", @@ -4069,39 +4119,7 @@ "6386a00000000000", "6386e00000000000", "6387200000000000", - "6387600000000000", - "6387a00000000000", - "6387e00000000000", - "6388200000000000", - "6388600000000000", - "6388a00000000000", - "6388e00000000000", - "6389200000000000", - "6389600000000000", - "6389a00000000000", - "6389e00000000000", - "638a200000000000", - "638a600000000000", - "638aa00000000000", - "638ae00000000000", - "638b200000000000", - "638b600000000000", - "638ba00000000000", - "638be00000000000", - "638ce00000000000", - "638e200000000000", - "638e600000000000", - "638ea00000000000", - "6393200000000000", - "6393600000000000", - "6393a00000000000", - "6393e00000000000", - "6394200000000000", - "6394600000000000", - "6394a00000000000", - "6394e00000000000", "6395200000000000", - "6395600000000000", "6395a00000000000", "6395e00000000000", "6396200000000000", @@ -4113,23 +4131,12 @@ "6397a00000000000", "6397e00000000000", "6398200000000000", + "6398600000000000", "6398a00000000000", - "6399600000000000", + "6398e00000000000", + "6399200000000000", "6399e00000000000", - "639a200000000000", - "639a600000000000", - "639aa00000000000", - "639ae00000000000", - "639b200000000000", - "639b600000000000", - "639ba00000000000", - "639be00000000000", - "639c200000000000", "639c600000000000", - "639ca00000000000", - "639ce00000000000", - "639d200000000000", - "639d600000000000", "639da00000000000", "639de00000000000", "639e200000000000", @@ -4250,7 +4257,6 @@ "63bae00000000000", "63bb200000000000", "63bb600000000000", - "63bba00000000000", "63bbe00000000000", "63bc200000000000", "63bc600000000000", @@ -4262,15 +4268,23 @@ "63bde00000000000", "63be200000000000", "63be600000000000", - "63bea00000000000", - "63bee00000000000", - "63bf200000000000", - "63bf600000000000", - "63bfa00000000000", - "63bfe00000000000", - "63c3200000000000", + "63c1600000000000", + "63c1a00000000000", + "63c1e00000000000", + "63c2200000000000", + "63c2600000000000", + "63c4600000000000", + "63c4a00000000000", + "63c4e00000000000", + "63c5200000000000", + "63c5600000000000", + "63c5a00000000000", + "63c5e00000000000", + "63c6200000000000", + "63c6600000000000", "63c6a00000000000", "63c6e00000000000", + "63c7200000000000", "63c7600000000000", "63c7a00000000000", "63c7e00000000000", @@ -4284,7 +4298,6 @@ "63c9e00000000000", "63ca200000000000", "63ca600000000000", - "63caa00000000000", "63cae00000000000", "63cb200000000000", "63cb600000000000", @@ -4312,7 +4325,12 @@ "63d0e00000000000", "63d1200000000000", "63d1600000000000", + "63d1a00000000000", + "63d1e00000000000", "63d2200000000000", + "63d2600000000000", + "63d2a00000000000", + "63d2e00000000000", "63d3200000000000", "63d3600000000000", "63d3a00000000000", @@ -4333,35 +4351,9 @@ "63d7600000000000", "63d7a00000000000", "63d7e00000000000", - "63d8200000000000", - "63d8600000000000", "63d8a00000000000", - "63d8e00000000000", - "63d9200000000000", - "63d9600000000000", - "63d9a00000000000", - "63d9e00000000000", - "63da200000000000", - "63da600000000000", - "63daa00000000000", - "63dae00000000000", - "63db200000000000", - "63db600000000000", - "63dba00000000000", - "63dbe00000000000", - "63dc200000000000", - "63dc600000000000", - "63dca00000000000", - "63dce00000000000", - "63dd200000000000", - "63dd600000000000", - "63dda00000000000", - "63dde00000000000", - "63de200000000000", - "63de600000000000", "63dea00000000000", "63dee00000000000", - "63df200000000000", "63df600000000000", "63dfa00000000000", "63dfe00000000000", @@ -4370,11 +4362,6 @@ "63e0a00000000000", "63e0e00000000000", "63e1200000000000", - "63e1600000000000", - "63e1a00000000000", - "63e1e00000000000", - "63e2200000000000", - "63e2600000000000", "63e2a00000000000", "63e2e00000000000", "63e3200000000000", @@ -4396,11 +4383,24 @@ "63e7200000000000", "63e7600000000000", "63e7a00000000000", + "63e7e00000000000", "63e8200000000000", "63e8600000000000", "63e8a00000000000", + "63e8e00000000000", "63e9200000000000", "63e9600000000000", + "63e9a00000000000", + "63e9e00000000000", + "63ea200000000000", + "63ea600000000000", + "63eaa00000000000", + "63eae00000000000", + "63eb200000000000", + "63eb600000000000", + "63eba00000000000", + "63ebe00000000000", + "63ec200000000000", "63ec600000000000", "63eca00000000000", "63ece00000000000", @@ -4535,11 +4535,11 @@ "c00800000000000", "c02800000000000", "c03800000000000", - "5141800000000000", + "5143800000000000", "5144800000000000", "5145800000000000", "5146800000000000", - "5147800000000000", + "5148800000000000", "5149800000000000", "514a800000000000", "514b800000000000", @@ -4584,109 +4584,109 @@ "5172800000000000", "5173800000000000", "5174800000000000", - "5175800000000000", + "5177800000000000", "517b800000000000", - "5190800000000000", - "51c0800000000000", - "51c1800000000000", - "51c2800000000000", - "51c3800000000000", - "51c8800000000000", - "51c9800000000000", - "51ca800000000000", - "51cb800000000000", - "51cd800000000000", - "51ce800000000000", - "51cf800000000000", - "51d4800000000000", - "51d5800000000000", - "51d6800000000000", - "51d7800000000000", - "51d9800000000000", - "51dc800000000000", - "51dd800000000000", - "51df800000000000", - "6346800000000000", - "6347800000000000", - "6348800000000000", - "6349800000000000", - "634a800000000000", - "634b800000000000", - "634c800000000000", - "634d800000000000", - "634e800000000000", - "634f800000000000", - "6350800000000000", - "6357800000000000", - "6358800000000000", - "6359800000000000", - "635a800000000000", - "635b800000000000", - "635d800000000000", - "635e800000000000", - "635f800000000000", - "6360800000000000", - "6361800000000000", - "6362800000000000", - "6363800000000000", - "6364800000000000", - "6365800000000000", - "6366800000000000", - "6367800000000000", - "6368800000000000", - "6369800000000000", - "636a800000000000", - "636b800000000000", - "636c800000000000", - "636d800000000000", - "636e800000000000", - "636f800000000000", + "5180800000000000", + "5181800000000000", + "5182800000000000", + "5183800000000000", + "5184800000000000", + "5185800000000000", + "5186800000000000", + "5187800000000000", + "5188800000000000", + "5189800000000000", + "518a800000000000", + "5194800000000000", + "5195800000000000", + "5196800000000000", + "5197800000000000", + "5198800000000000", + "519c800000000000", + "519d800000000000", + "519f800000000000", + "51cc800000000000", "6370800000000000", - "6371800000000000", - "6372800000000000", - "6373800000000000", "6374800000000000", "6375800000000000", "6376800000000000", - "6377800000000000", - "6378800000000000", - "6379800000000000", - "637a800000000000", - "637b800000000000", "637c800000000000", "637d800000000000", - "637e800000000000", + "637f800000000000", + "6380800000000000", + "6381800000000000", + "6382800000000000", + "6383800000000000", + "6384800000000000", + "6385800000000000", + "6386800000000000", + "6387800000000000", + "6388800000000000", + "6389800000000000", + "638a800000000000", + "638b800000000000", + "638c800000000000", + "638d800000000000", + "638e800000000000", + "6390800000000000", + "6391800000000000", + "6392800000000000", + "6393800000000000", + "6394800000000000", + "6395800000000000", + "6396800000000000", + "6397800000000000", + "6398800000000000", + "6399800000000000", + "639a800000000000", + "639b800000000000", + "639c800000000000", + "639d800000000000", + "639e800000000000", + "639f800000000000", "63a0800000000000", + "63a1800000000000", "63a2800000000000", - "63a3800000000000", + "63a4800000000000", + "63a5800000000000", + "63a6800000000000", + "63a7800000000000", "63a8800000000000", - "63a9800000000000", - "63aa800000000000", - "63ae800000000000", + "63af800000000000", + "63b0800000000000", + "63b1800000000000", + "63b2800000000000", + "63b3800000000000", + "63b4800000000000", + "63b5800000000000", + "63b6800000000000", + "63b7800000000000", + "63b8800000000000", + "63b9800000000000", + "63c7800000000000", "63c8800000000000", - "63ca800000000000", - "63cb800000000000", - "63cc800000000000", + "63c9800000000000", "63cd800000000000", "63ce800000000000", "63cf800000000000", + "63d0800000000000", + "63d1800000000000", + "63d2800000000000", + "63d3800000000000", + "63d4800000000000", "63d5800000000000", - "63d6800000000000", "63d7800000000000", - "63d8800000000000", - "63d9800000000000", - "63da800000000000", - "63db800000000000", - "63dc800000000000", - "63dd800000000000", - "63de800000000000", - "63df800000000000", - "63e0800000000000", - "63e1800000000000", - "63e2800000000000", - "63e4800000000000", "63e5800000000000", + "63e6800000000000", + "63e7800000000000", + "63e8800000000000", + "63e9800000000000", + "63ea800000000000", + "63eb800000000000", + "63ec800000000000", + "63ed800000000000", "63ee800000000000", + "63ef800000000000", "63f1800000000000", "63f2800000000000", "63f3800000000000", diff --git a/tests/fixtures/serialization.json b/tests/fixtures/serialization.json index 5b0323c..a9c643e 100644 --- a/tests/fixtures/serialization.json +++ b/tests/fixtures/serialization.json @@ -51,295 +51,295 @@ "1a80000000000000", "5320000000000000", "2aa0000000000000", - "c1e0000000000000", + "c1a0000000000000", "6c20000000000000", "23a0000000000000", "d2e0000000000000", "76a0000000000000", "41e0000000000000", - "2db8000000000000", + "2da8000000000000", "e098000000000000", - "7518000000000000", + "7528000000000000", "9f08000000000000", - "9518000000000000", - "9d88000000000000", - "c348000000000000", - "3a58000000000000", + "9508000000000000", + "9dd8000000000000", + "c378000000000000", + "3a18000000000000", "64d6000000000000", - "dfa6000000000000", + "dfaa000000000000", "8ffa000000000000", "b13e000000000000", - "51aa000000000000", + "51e6000000000000", "3d2000000000000", "bc6000000000000", - "5912000000000000", + "590e000000000000", "2156800000000000", - "272c800000000000", - "2a4d800000000000", - "8811800000000000", - "ee66800000000000", - "58e6800000000000", - "305f800000000000", - "aece800000000000", + "273c800000000000", + "2a0a800000000000", + "8812800000000000", + "ee39800000000000", + "58e9800000000000", + "3050800000000000", + "aec8800000000000", "80b1600000000000", - "d9fa200000000000", - "a038a00000000000", - "9ca3200000000000", - "7799600000000000", - "d433600000000000", - "1bb5a00000000000", + "d9ad600000000000", + "a020a00000000000", + "9cb3a00000000000", + "775da00000000000", + "d42d600000000000", + "1bbb600000000000", "3222a00000000000", "66cbc80000000000", - "26dde80000000000", - "3322b80000000000", - "9280880000000000", - "ebb6180000000000", + "26e2e80000000000", + "3322a80000000000", + "9280a80000000000", + "eb96180000000000", "66dd980000000000", - "8f67580000000000", + "8f68b80000000000", "6fae880000000000", - "c072860000000000", - "75678a0000000000", - "2dacf20000000000", - "bd5fea0000000000", + "c0be720000000000", + "7577360000000000", + "2db1060000000000", + "bd703e0000000000", "11ddda0000000000", - "a15620000000000", - "ccba1a0000000000", + "a141e0000000000", + "ccba160000000000", "4662ce0000000000", - "3b2c1f8000000000", + "3b3c208000000000", "59d1d48000000000", - "35fdcb8000000000", - "90a8548000000000", - "5647af8000000000", + "35a9c88000000000", + "90be248000000000", + "5607f08000000000", "6c03628000000000", "d352e88000000000", - "2b5df48000000000", - "ae53de2000000000", - "1b75b0a000000000", - "30aea0a000000000", - "bd6d01a000000000", - "45d3b56000000000", - "4e1d622000000000", + "2b4d648000000000", + "ae13ee2000000000", + "1b7545e000000000", + "30a9b66000000000", + "bd52ab6000000000", + "45d3bbe000000000", + "4e426a2000000000", "654c48e000000000", "a652e46000000000", "1a90fa0800000000", - "51941c3800000000", - "91b249b800000000", - "1bf6271800000000", - "a2942a1800000000", + "51c8333800000000", + "91f5ba0800000000", + "1bf6277800000000", + "a284ea3800000000", "5b33154800000000", - "94586cd800000000", - "826d650800000000", - "b6ba6e3200000000", - "c89f623a00000000", - "504fd23200000000", - "52dd57a00000000", - "7b82607200000000", - "82a79a5e00000000", - "48475cbe00000000", - "61c274c200000000", - "ab096cdf80000000", + "945814d800000000", + "826d64f800000000", + "b6b896ee00000000", + "c89f61e200000000", + "509c192e00000000", + "519197a00000000", + "7b82af4200000000", + "828a248a00000000", + "4890b37e00000000", + "618c872600000000", + "ab09512080000000", "8551d93380000000", - "266ce26980000000", - "d76e771f80000000", - "c7ded57f80000000", - "7404106580000000", + "2631325680000000", + "d762570f80000000", + "c7eed97f80000000", + "74042ae580000000", "e967369d80000000", - "53b22c3b80000000", - "d25451e920000000", - "c21d138be0000000", - "2923b23660000000", - "68e4def9e0000000", - "7d798a65e0000000", - "1dc3070220000000", - "4d6a31d4a0000000", - "573d2048a0000000", - "3597d03cf8000000", - "309b87b4e8000000", - "3f8bbff058000000", - "4fcc3d2228000000", - "7006f1bd48000000", - "c3e131e438000000", + "53b12eb480000000", + "d254793ea0000000", + "c242278820000000", + "291e313a20000000", + "68e4decf20000000", + "7d528b45e0000000", + "1dc3046920000000", + "4d7ab7db60000000", + "57169fbb60000000", + "35ca6fc368000000", + "309a44ca28000000", + "3f8b555f78000000", + "4fd27ed5d8000000", + "700aac8c48000000", + "c3e1131b38000000", "1390dc1308000000", - "ed6d00a9c8000000", - "58c31e9f32000000", - "ddeb3d1aa2000000", - "c963436b7a000000", - "1e4aca5896000000", - "431842c5ae000000", - "eac29e9fea000000", - "663b87e0da000000", + "ed7d0076c8000000", + "58c31e29f2000000", + "ddb47dd612000000", + "c962ab6b7a000000", + "1e4ad7f562000000", + "431842c772000000", + "eac29e2942000000", + "6621b24f82000000", "6ad3ece636000000", - "41f6fcbb6b800000", - "ceb80a3ac4800000", - "ca9dac0644800000", - "736f331827800000", - "a43d082fe800000", - "97d576e988800000", - "2bfd13799e800000", - "79e6e97ac8800000", - "13206d7c20200000", - "9bfa99542fa00000", - "516d4e5565600000", - "85adcb6d54a00000", - "6a316b169f600000", - "28e1cda6f3e00000", - "a7d1a0390a600000", - "724c3e96caa00000", - "b6d3fedfc780000", - "eae3017cdd980000", - "21d9af61f5580000", - "667670f1e5680000", - "6236fbb238580000", - "1563a4c56c180000", - "35da6065dfc80000", - "51860de25b080000", - "671d8de9c6fe0000", - "b3afe78e4cea0000", - "11389813a1a20000", - "3e87e905565a0000", - "67d4de98bcea0000", - "7738b286d4660000", - "1a70b79947560000", - "8ad557bdea1e0000", - "bbe1886535868000", - "634f6302f8948000", - "ab5f73a4030d8000", - "551f5983e9868000", - "a85db0bf34d38000", - "c8c0962b23258000", - "ce3fda45b1878000", + "41c9565363800000", + "ceb80a3abb800000", + "ca9da40658800000", + "7360713563800000", + "a43d372fe800000", + "97d429bd88800000", + "2bfdd8b9a1800000", + "79b9295d1a800000", + "1323057c23e00000", + "9bf82603d7a00000", + "516e38502d200000", + "85adcb6d53600000", + "6a315c6de0a00000", + "28dcc5a2f2600000", + "a7d176890a600000", + "720bc29639a00000", + "b6d3fe5fc780000", + "eaeec17cdd980000", + "2198d0530bf80000", + "667670f1e8180000", + "627ac93a3c580000", + "15620bb014180000", + "359a20a1d6880000", + "51d1f11d58f80000", + "671d8de2b6fe0000", + "b373caf082c20000", + "112367ce0c4e0000", + "3eae4a52fd260000", + "67d4aea75cea0000", + "77114c79249a0000", + "1a765fe6e4be0000", + "8aea5716b4e20000", + "bbe15465b55d8000", + "63b39496f3648000", + "ab5c83a4030d8000", + "5523a67cde798000", + "a85245c044d38000", + "c8c091d123248000", + "ce3fdba746478000", "5dde7034279f8000", - "7bdb44111fc9a000", - "c32c6bbd9a61e000", - "252f8d8345d12000", - "16733bba751ca000", - "64e4f1cba9696000", - "9204289709caa000", - "e21cb034e52e6000", - "1fe4510b596ae000", - "2d1bc307239ce800", - "a85f8007146a5800", - "54c23d6ffc404800", - "de5c7d2401b59800", - "653eedbc7562a800", - "c124debe43fe7800", - "981ee36493483800", - "d0ff6e1e3157d800", - "e73fdd61a71a7600", - "a14bab871e652e00", - "b468c9f595ddf600", - "76d2ce572c9dfe00", - "36e6df6410c44a00", - "a7032a27aa58ae00", - "cd5648ea53963e00", - "a527150815d86600", - "8755cebd9ded7180", - "c9af50737ccd980", - "cf8c699a0f4c6d80", - "6b5f80b2089f1780", - "19f93389a77b0d80", - "d03ac1e46584ed80", - "728414fa09a18980", - "403256edb701b480", - "9347e04aebf168e0", - "b6b9a4b9789d40e0", - "e7e8dd655066e760", - "bf6b45850f69a1a0", - "271ce8dc66c87ee0", - "a3bd80e70258b2a0", - "8be89b55b18ac5e0", - "1c8fc2d4c126cf60", - "3f5d823ebdbf7f68", - "c6a59952cfff2008", - "3d336c31673b858", - "1fb48397e3065ca8", - "562cc7091f266958", - "54a2e7ca58a791d8", - "123b63f3b88252c8", - "a16c36e19cfbf0c8", - "1f9e9a08dfee05c2", - "a4e0ea690e7de712", - "3e6d2ce1e273e72a", - "b8e12843725a328e", - "8c3f35d7a0210a8a", - "3615ee35e7a1c9f2", - "b8e51075b7e31e76", - "b44fc77997ef86e6", - "37bd3d1d431532a4", - "cc608c17aeb4b41b", - "93a2995410129469", - "9e5b9fbbb97ae00d", - "aa8937c3f4cc50ff" + "7bd86cdb0fca6000", + "c32325d672ace000", + "251af28375d2a000", + "16733998a8cba000", + "64e4f1cb82122000", + "9253c76766776000", + "e2439c38c96ba000", + "1fe4798b5990e000", + "2d141807239d2800", + "a850e0047e5fb800", + "54e6316c023f4800", + "de1c3de7fc886800", + "653ee5bc756d0800", + "c118cd4242547800", + "981e6e9491c81800", + "d0ff6e13417c2800", + "e73fdd6c4ada7600", + "a1445b870e65ee00", + "b468b9f5aa220a00", + "76edc49853210200", + "36d9ecd6b3136600", + "a7032a27afb57200", + "cd567b15ac69c200", + "a52717881725da00", + "8754be9d9de57180", + "c990acec8332680", + "cf8c6995f0b39280", + "6b50e0b2089f1c80", + "19cfb389a78c5280", + "d03ac1e45b5eee80", + "72ac3cf5f56f5880", + "4032569e4801b480", + "93b81fb8fc0d1520", + "b6ba4b52236a3fa0", + "e7ebad6aaf99caa0", + "bf6caf5f8f6e7760", + "2722c11365178120", + "a3bc80873ea4b9a0", + "8bc16065b8744a20", + "1c8fc2eec126cf60", + "3f4dbddb41558fa8", + "c6a1d5827fff3008", + "3d336c3168c44f8", + "1fb483973b065178", + "566c78f2df357968", + "54b22bce54879228", + "123b63f39b7d8d48", + "a16c32dcbc6c0f18", + "1f9fe764dc33871a", + "a4e0eb9e8e72277a", + "3e319481e2bdb8da", + "b8e1a863725b428e", + "8c25d596dfeec57a", + "364b1215b85cca0e", + "b8e5184b48e31e7a", + "b449777997e7b16a", + "37bd507018e84c1c", + "cc588c6ac2b489f1", + "93247734100af473", + "9e7ba024272c8d5d", + "aa96d65c6f33a701" ], "res30Locations": [ { "lon": -0.1276, "lat": 51.5074, "name": "London", - "hex": "c6c233d3108a860f", + "hex": "c72e4dd2eb957921", "resolution": 30 }, { "lon": -73.9857, "lat": 40.7484, "name": "New York", - "hex": "4c20ec50870a8987", + "hex": "4c9ef458823b764f", "resolution": 30 }, { "lon": 139.6917, "lat": 35.6895, "name": "Tokyo", - "hex": "397c21a383a22934", + "hex": "397d9f569c5dd434", "resolution": 30 }, { "lon": -155.5, "lat": 19.9, "name": "Hawaii Big Island", - "hex": "e034b8a6996e5f9a", + "hex": "e03790b496a45f56", "resolution": 29 }, { "lon": -157.8, "lat": 21.3, "name": "Oahu", - "hex": "e03bc1fbb7bc4d52", + "hex": "e03e81fbe717b1ba", "resolution": 29 }, { "lon": 0, "lat": -85, "name": "Antarctica Weddell Sea", - "hex": "b80eff0c12648c86", + "hex": "b80ec051ba648c8a", "resolution": 29 }, { "lon": 90, "lat": -80, "name": "Antarctica East", - "hex": "b7b9a407b85f146a", + "hex": "b79a4bf19b09d5a6", "resolution": 29 }, { "lon": -75, "lat": -80, "name": "Antarctica West", - "hex": "be76922a668ac4b6", + "hex": "be79ea2b99d71eb6", "resolution": 29 }, { "lon": 180, "lat": -75, "name": "Antarctica Ross", - "hex": "c511c2098ec7797a", + "hex": "c52e3cf2bc48b906", "resolution": 29 }, { "lon": -135, "lat": -78, "name": "Antarctica Pacific", - "hex": "c39210cdc12df6aa", + "hex": "c392ece2bd963256", "resolution": 29 } ] diff --git a/tests/fixtures/traversal/cap.json b/tests/fixtures/traversal/cap.json index 34d5158..d19712c 100644 --- a/tests/fixtures/traversal/cap.json +++ b/tests/fixtures/traversal/cap.json @@ -44,19 +44,20 @@ "cellId": "620000000000000", "radius": 1000000, "cells": [ - "1a0000000000000", - "1e0000000000000", "4e0000000000000", + "5e0000000000000", "620000000000000", "660000000000000", - "6a0000000000000" + "6a0000000000000", + "6e0000000000000", + "8320000000000000" ] }, { "cellId": "7e0000000000000", "radius": 1000000, "cells": [ - "760000000000000", + "7a0000000000000", "7e0000000000000", "820000000000000", "6560000000000000", @@ -70,7 +71,7 @@ "cells": [ "1fe0000000000000", "2020000000000000", - "20a0000000000000", + "2060000000000000", "2960000000000000", "2ea0000000000000", "d420000000000000" @@ -82,9 +83,9 @@ "cellId": "402000000000000", "radius": 500000, "compactedCells": [ - "38e000000000000", - "3e2000000000000", - "3e6000000000000", + "3ba000000000000", + "3ea000000000000", + "3ee000000000000", "3f6000000000000", "3fa000000000000", "3fe000000000000", @@ -113,14 +114,14 @@ "2156000000000000", "215a000000000000", "215e000000000000", - "27de000000000000", + "27c6000000000000", "27ee000000000000", "27f2000000000000", "27f6000000000000", "27fa000000000000", "27fe000000000000", "2802000000000000", - "280a000000000000", + "2806000000000000", "3aaa000000000000", "5bf2000000000000", "5bf6000000000000", @@ -144,10 +145,10 @@ "715a000000000000", "715e000000000000", "77f2000000000000", - "77f6000000000000", + "77fa000000000000", "77fe000000000000", "7802000000000000", - "780a000000000000", + "7806000000000000", "780e000000000000", "7ea2000000000000", "7ea6000000000000", @@ -169,14 +170,14 @@ "cellId": "402000000000000", "radius": 1000000, "compactedCells": [ - "23e000000000000", - "382000000000000", - "386000000000000", - "38a000000000000", - "38e000000000000", - "392000000000000", - "396000000000000", - "39a000000000000", + "226000000000000", + "39e000000000000", + "3a2000000000000", + "3a6000000000000", + "3ae000000000000", + "3b2000000000000", + "3b6000000000000", + "3ba000000000000", "3be000000000000", "3c2000000000000", "3d2000000000000", @@ -191,19 +192,19 @@ "426000000000000", "42a000000000000", "42e000000000000", + "432000000000000", "436000000000000", - "43a000000000000", "43e000000000000", "442000000000000", "446000000000000", "44a000000000000", "44e000000000000", "452000000000000", - "456000000000000", + "45a000000000000", "45e000000000000", "462000000000000", "982000000000000", - "986000000000000", + "98e000000000000", "992000000000000", "996000000000000", "99a000000000000", @@ -229,7 +230,7 @@ "dc2000000000000", "dc6000000000000", "dca000000000000", - "1196000000000000", + "1192000000000000", "119a000000000000", "119e000000000000", "11a8000000000000", @@ -247,7 +248,7 @@ "cellId": "5c02000000000000", "radius": 1000000, "compactedCells": [ - "2146000000000000", + "214a000000000000", "214e000000000000", "2158000000000000", "2162000000000000", @@ -257,26 +258,26 @@ "2176000000000000", "217a000000000000", "217e000000000000", - "2742000000000000", - "274a000000000000", - "274e000000000000", - "2762000000000000", + "2796000000000000", + "27b2000000000000", + "27b6000000000000", + "27be000000000000", "27c2000000000000", "27c6000000000000", "27ca000000000000", "27ce000000000000", - "27d8000000000000", - "27e2000000000000", - "27e6000000000000", - "27ea000000000000", - "27ee000000000000", + "27d2000000000000", + "27d6000000000000", + "27da000000000000", + "27de000000000000", + "27e8000000000000", "27f8000000000000", "2808000000000000", "2812000000000000", + "2816000000000000", + "281a000000000000", + "281e000000000000", "2822000000000000", - "2826000000000000", - "282a000000000000", - "282e000000000000", "283a000000000000", "3a8a000000000000", "3a8e000000000000", @@ -285,7 +286,7 @@ "3a9e000000000000", "3aa8000000000000", "3ab2000000000000", - "3aba000000000000", + "3ab6000000000000", "5b92000000000000", "5b96000000000000", "5bc2000000000000", @@ -308,11 +309,11 @@ "5c36000000000000", "5c3a000000000000", "5c3e000000000000", + "5c42000000000000", "5c46000000000000", "5c4a000000000000", - "5c4e000000000000", - "5ca2000000000000", - "5ca6000000000000", + "5caa000000000000", + "5cae000000000000", "5cba000000000000" ] }, @@ -333,15 +334,15 @@ "7176000000000000", "717a000000000000", "717e000000000000", - "7192000000000000", + "71ce000000000000", "77c6000000000000", "77ca000000000000", - "77ce000000000000", "77d2000000000000", "77d6000000000000", - "77da000000000000", "77de000000000000", + "77e2000000000000", "77e6000000000000", + "77ea000000000000", "77ee000000000000", "77f8000000000000", "7808000000000000", @@ -350,12 +351,12 @@ "781a000000000000", "781e000000000000", "7822000000000000", - "7826000000000000", "782a000000000000", "782e000000000000", "7832000000000000", "7836000000000000", "783a000000000000", + "783e000000000000", "7e86000000000000", "7e8a000000000000", "7e8e000000000000", @@ -364,11 +365,11 @@ "7e9e000000000000", "7ea8000000000000", "7eb2000000000000", - "7eba000000000000", - "a75e000000000000", - "a7b2000000000000", + "7eb6000000000000", + "a752000000000000", "a7b6000000000000", "a7ba000000000000", + "a7be000000000000", "a7c2000000000000", "a7c6000000000000", "a7ca000000000000", diff --git a/tests/fixtures/traversal/global-neighbors.json b/tests/fixtures/traversal/global-neighbors.json index a70fdab..db0a31b 100644 --- a/tests/fixtures/traversal/global-neighbors.json +++ b/tests/fixtures/traversal/global-neighbors.json @@ -126,7 +126,7 @@ "fe0000000000000", "1020000000000000", "15a0000000000000", - "2620000000000000", + "2660000000000000", "26a0000000000000", "5d60000000000000" ], @@ -188,20 +188,20 @@ }, "output": { "neighbors": [ - "1628000000000000", - "1638000000000000", - "1648000000000000", + "15f8000000000000", + "1618000000000000", "1658000000000000", - "1668000000000000", - "1798000000000000", - "17a8000000000000" + "24a8000000000000", + "24b8000000000000", + "24c8000000000000", + "2658000000000000" ], "edgeNeighbors": [ - "1628000000000000", - "1638000000000000", + "15f8000000000000", + "1618000000000000", "1658000000000000", - "1668000000000000", - "17a8000000000000" + "24b8000000000000", + "24c8000000000000" ] } }, @@ -217,7 +217,7 @@ "2420000000000000", "24a0000000000000", "24e0000000000000", - "2620000000000000" + "2660000000000000" ], "edgeNeighbors": [ "15e0000000000000", @@ -332,7 +332,7 @@ "17e8000000000000", "1808000000000000", "1818000000000000", - "1878000000000000", + "1848000000000000", "1e58000000000000", "23f8000000000000", "2408000000000000" @@ -558,15 +558,15 @@ "output": { "neighbors": [ "2156000000000000", - "215e000000000000", - "27f6000000000000", + "215a000000000000", + "27fa000000000000", "2802000000000000", "5bfe000000000000", "5c02000000000000" ], "edgeNeighbors": [ "2156000000000000", - "27f6000000000000", + "27fa000000000000", "2802000000000000", "5bfe000000000000", "5c02000000000000" @@ -581,15 +581,15 @@ "neighbors": [ "2156000000000000", "27fe000000000000", - "280a000000000000", - "3aa2000000000000", + "2806000000000000", + "3aa6000000000000", "3aaa000000000000", "5bfe000000000000" ], "edgeNeighbors": [ "2156000000000000", "27fe000000000000", - "280a000000000000", + "2806000000000000", "3aaa000000000000", "5bfe000000000000" ] @@ -789,7 +789,7 @@ "neighbors": [ "2020000000000000", "2960000000000000", - "29e0000000000000", + "29a0000000000000", "2e60000000000000", "d3e0000000000000", "d420000000000000" @@ -930,20 +930,20 @@ }, "output": { "neighbors": [ - "3548000000000000", "3558000000000000", "3568000000000000", + "3c08000000000000", "3c28000000000000", "3c38000000000000", - "3c98000000000000", - "3cb8000000000000" + "4e88000000000000", + "4ea8000000000000" ], "edgeNeighbors": [ - "3548000000000000", - "3568000000000000", + "3558000000000000", + "3c08000000000000", "3c28000000000000", "3c38000000000000", - "3cb8000000000000" + "4e88000000000000" ] } }, @@ -953,20 +953,20 @@ }, "output": { "neighbors": [ + "3560000000000000", + "35e0000000000000", + "3c20000000000000", "3ca0000000000000", "3ce0000000000000", - "3e20000000000000", - "3ea0000000000000", - "3ee0000000000000", - "4ce0000000000000", - "4e20000000000000" + "4e60000000000000", + "4ea0000000000000" ], "edgeNeighbors": [ + "3560000000000000", + "3c20000000000000", "3ca0000000000000", "3ce0000000000000", - "3ea0000000000000", - "3ee0000000000000", - "4e20000000000000" + "4e60000000000000" ] } }, @@ -1024,20 +1024,20 @@ }, "output": { "neighbors": [ - "3d6e000000000000", - "3d7a000000000000", - "3d7e000000000000", + "3d8a000000000000", + "3d8e000000000000", + "3d92000000000000", + "3dbe000000000000", + "3dc6000000000000", "3dca000000000000", - "3dd6000000000000", - "427a000000000000", - "4282000000000000" + "3dee000000000000" ], "edgeNeighbors": [ - "3d7a000000000000", - "3d7e000000000000", + "3d8e000000000000", + "3d92000000000000", + "3dc6000000000000", "3dca000000000000", - "3dd6000000000000", - "427a000000000000" + "3dee000000000000" ] } }, @@ -1095,7 +1095,7 @@ }, "output": { "neighbors": [ - "3e2000000000000", + "3ee000000000000", "3fa000000000000", "3fe000000000000", "406000000000000", @@ -1119,7 +1119,7 @@ }, "output": { "neighbors": [ - "388000000000000", + "3b8000000000000", "3e8000000000000", "3f8000000000000", "418000000000000", @@ -1215,20 +1215,20 @@ }, "output": { "neighbors": [ - "446000000000000", + "44a000000000000", "452000000000000", - "52e000000000000", + "51a000000000000", "97e000000000000", - "986000000000000", - "992000000000000", + "982000000000000", + "996000000000000", "99e000000000000" ], "edgeNeighbors": [ - "446000000000000", + "44a000000000000", "452000000000000", - "52e000000000000", - "986000000000000", - "992000000000000" + "51a000000000000", + "982000000000000", + "996000000000000" ] } }, @@ -1267,7 +1267,7 @@ "4a0000000000000", "520000000000000", "560000000000000", - "5a0000000000000", + "5e0000000000000", "960000000000000", "9a0000000000000" ], @@ -1410,20 +1410,20 @@ }, "output": { "neighbors": [ - "50d8000000000000", - "50f8000000000000", "5108000000000000", + "5118000000000000", + "5128000000000000", + "51f8000000000000", "5218000000000000", - "5228000000000000", - "6958000000000000", - "6b08000000000000" + "5248000000000000", + "5318000000000000" ], "edgeNeighbors": [ - "50f8000000000000", - "5108000000000000", + "5118000000000000", + "5128000000000000", "5218000000000000", - "5228000000000000", - "6b08000000000000" + "5248000000000000", + "5318000000000000" ] } }, @@ -1433,20 +1433,20 @@ }, "output": { "neighbors": [ - "5060000000000000", - "50e0000000000000", "5120000000000000", + "51e0000000000000", "5260000000000000", "52a0000000000000", - "6960000000000000", - "6b20000000000000" + "5320000000000000", + "5360000000000000", + "53a0000000000000" ], "edgeNeighbors": [ - "50e0000000000000", "5120000000000000", "5260000000000000", "52a0000000000000", - "6b20000000000000" + "5320000000000000", + "5360000000000000" ] } }, @@ -1503,18 +1503,18 @@ }, "output": { "neighbors": [ - "52c2000000000000", - "52ca000000000000", - "52ce000000000000", - "52e2000000000000", - "548e000000000000", + "5432000000000000", + "5436000000000000", + "5496000000000000", + "549a000000000000", + "549e000000000000", "54a6000000000000", "54aa000000000000" ], "edgeNeighbors": [ - "52ca000000000000", - "52ce000000000000", - "548e000000000000", + "5432000000000000", + "549a000000000000", + "549e000000000000", "54a6000000000000", "54aa000000000000" ] @@ -1648,7 +1648,7 @@ "53f8000000000000", "5408000000000000", "59a8000000000000", - "5f88000000000000", + "5fb8000000000000", "5fe8000000000000", "5ff8000000000000", "6018000000000000", @@ -1767,15 +1767,15 @@ "be0000000000000", "c20000000000000", "5160000000000000", - "51e0000000000000", - "6360000000000000", + "51a0000000000000", + "63a0000000000000", "6aa0000000000000" ], "edgeNeighbors": [ "be0000000000000", "c20000000000000", "5160000000000000", - "6360000000000000", + "63a0000000000000", "6aa0000000000000" ] } @@ -1790,14 +1790,14 @@ "c08000000000000", "5158000000000000", "5178000000000000", - "63d8000000000000", + "63e8000000000000", "6aa8000000000000" ], "edgeNeighbors": [ "bf8000000000000", "c08000000000000", "5158000000000000", - "63d8000000000000", + "63e8000000000000", "6aa8000000000000" ] } @@ -1811,15 +1811,15 @@ "bfe000000000000", "c02000000000000", "5156000000000000", - "515e000000000000", - "63f6000000000000", + "515a000000000000", + "63fa000000000000", "6aaa000000000000" ], "edgeNeighbors": [ "bfe000000000000", "c02000000000000", "5156000000000000", - "63f6000000000000", + "63fa000000000000", "6aaa000000000000" ] } @@ -1908,14 +1908,14 @@ "4802000000000000", "6ff2000000000000", "6ffe000000000000", - "700a000000000000", + "7006000000000000", "abfe000000000000", "ac02000000000000" ], "edgeNeighbors": [ "4802000000000000", "6ffe000000000000", - "700a000000000000", + "7006000000000000", "abfe000000000000", "ac02000000000000" ] @@ -1952,7 +1952,7 @@ }, "output": { "neighbors": [ - "6788000000000000", + "67b8000000000000", "67e8000000000000", "67f8000000000000", "6808000000000000", @@ -2072,15 +2072,15 @@ "output": { "neighbors": [ "7160000000000000", - "71e0000000000000", - "7760000000000000", + "71a0000000000000", + "77a0000000000000", "7820000000000000", "7ea0000000000000", "a820000000000000" ], "edgeNeighbors": [ "7160000000000000", - "7760000000000000", + "77a0000000000000", "7820000000000000", "7ea0000000000000", "a820000000000000" @@ -2095,14 +2095,14 @@ "neighbors": [ "7158000000000000", "7178000000000000", - "77d8000000000000", + "77e8000000000000", "7808000000000000", "7ea8000000000000", "a808000000000000" ], "edgeNeighbors": [ "7158000000000000", - "77d8000000000000", + "77e8000000000000", "7808000000000000", "7ea8000000000000", "a808000000000000" @@ -2187,7 +2187,7 @@ }, "output": { "neighbors": [ - "760000000000000", + "7a0000000000000", "820000000000000", "8e0000000000000", "6560000000000000", @@ -2195,7 +2195,7 @@ "8020000000000000" ], "edgeNeighbors": [ - "760000000000000", + "7a0000000000000", "820000000000000", "6560000000000000", "7fe0000000000000", @@ -2209,7 +2209,7 @@ }, "output": { "neighbors": [ - "7d8000000000000", + "7e8000000000000", "808000000000000", "818000000000000", "6558000000000000", @@ -2217,7 +2217,7 @@ "8008000000000000" ], "edgeNeighbors": [ - "7d8000000000000", + "7e8000000000000", "808000000000000", "6558000000000000", "7ff8000000000000", @@ -2231,7 +2231,7 @@ }, "output": { "neighbors": [ - "7f6000000000000", + "7fa000000000000", "802000000000000", "80e000000000000", "6556000000000000", @@ -2239,7 +2239,7 @@ "8002000000000000" ], "edgeNeighbors": [ - "7f6000000000000", + "7fa000000000000", "802000000000000", "6556000000000000", "7ffe000000000000", @@ -2491,20 +2491,20 @@ }, "output": { "neighbors": [ - "8cd8000000000000", - "8cf8000000000000", "8d08000000000000", + "8d18000000000000", + "8d28000000000000", + "8df8000000000000", "8e18000000000000", - "8e28000000000000", - "a108000000000000", - "a208000000000000" + "8e48000000000000", + "8f18000000000000" ], "edgeNeighbors": [ - "8cf8000000000000", - "8d08000000000000", + "8d18000000000000", + "8d28000000000000", "8e18000000000000", - "8e28000000000000", - "a108000000000000" + "8e48000000000000", + "8f18000000000000" ] } }, @@ -2514,20 +2514,20 @@ }, "output": { "neighbors": [ - "8c60000000000000", - "8ce0000000000000", "8d20000000000000", + "8de0000000000000", "8e60000000000000", "8ea0000000000000", - "a120000000000000", - "a220000000000000" + "8f20000000000000", + "8f60000000000000", + "8fa0000000000000" ], "edgeNeighbors": [ - "8ce0000000000000", "8d20000000000000", "8e60000000000000", "8ea0000000000000", - "a120000000000000" + "8f20000000000000", + "8f60000000000000" ] } }, @@ -2634,17 +2634,17 @@ }, "output": { "neighbors": [ - "921e000000000000", - "922e000000000000", - "9232000000000000", - "923a000000000000", + "8c72000000000000", + "8c76000000000000", + "8c7a000000000000", + "8c8e000000000000", "925e000000000000", "9266000000000000", "926a000000000000" ], "edgeNeighbors": [ - "922e000000000000", - "923a000000000000", + "8c76000000000000", + "8c7a000000000000", "925e000000000000", "9266000000000000", "926a000000000000" @@ -2730,7 +2730,7 @@ "output": { "neighbors": [ "99a0000000000000", - "9e20000000000000", + "9e60000000000000", "9ea0000000000000", "c7e0000000000000", "c820000000000000", @@ -3134,15 +3134,15 @@ "neighbors": [ "4420000000000000", "ad60000000000000", - "ade0000000000000", - "b360000000000000", + "ada0000000000000", + "b3a0000000000000", "b420000000000000", "baa0000000000000" ], "edgeNeighbors": [ "4420000000000000", "ad60000000000000", - "b360000000000000", + "b3a0000000000000", "b420000000000000", "baa0000000000000" ] @@ -3157,14 +3157,14 @@ "4408000000000000", "ad58000000000000", "ad78000000000000", - "b3d8000000000000", + "b3e8000000000000", "b408000000000000", "baa8000000000000" ], "edgeNeighbors": [ "4408000000000000", "ad58000000000000", - "b3d8000000000000", + "b3e8000000000000", "b408000000000000", "baa8000000000000" ] @@ -3176,7 +3176,7 @@ }, "output": { "neighbors": [ - "b3d8000000000000", + "b3c8000000000000", "b3e8000000000000", "b3f8000000000000", "b428000000000000", @@ -3185,7 +3185,7 @@ "baa8000000000000" ], "edgeNeighbors": [ - "b3d8000000000000", + "b3e8000000000000", "b3f8000000000000", "b428000000000000", "b438000000000000", @@ -3200,7 +3200,7 @@ "output": { "neighbors": [ "b320000000000000", - "b360000000000000", + "b3a0000000000000", "b3e0000000000000", "b460000000000000", "b4a0000000000000", @@ -3208,7 +3208,7 @@ "baa0000000000000" ], "edgeNeighbors": [ - "b360000000000000", + "b3a0000000000000", "b3e0000000000000", "b460000000000000", "b4a0000000000000", @@ -3274,7 +3274,7 @@ "b7fa000000000000", "b802000000000000", "b806000000000000", - "b81e000000000000", + "b812000000000000", "be56000000000000", "c3fe000000000000", "c402000000000000" @@ -3370,14 +3370,14 @@ "3002000000000000", "bff2000000000000", "bffe000000000000", - "c00a000000000000", + "c006000000000000", "cffe000000000000", "d002000000000000" ], "edgeNeighbors": [ "3002000000000000", "bffe000000000000", - "c00a000000000000", + "c006000000000000", "cffe000000000000", "d002000000000000" ] @@ -3414,7 +3414,7 @@ }, "output": { "neighbors": [ - "b788000000000000", + "b7b8000000000000", "b7e8000000000000", "b7f8000000000000", "b808000000000000", @@ -3536,15 +3536,15 @@ "9960000000000000", "9ea0000000000000", "c160000000000000", - "c1e0000000000000", - "c760000000000000", + "c1a0000000000000", + "c7a0000000000000", "cea0000000000000" ], "edgeNeighbors": [ "9960000000000000", "9ea0000000000000", "c160000000000000", - "c760000000000000", + "c7a0000000000000", "cea0000000000000" ] } @@ -3559,14 +3559,14 @@ "9ea8000000000000", "c158000000000000", "c178000000000000", - "c7d8000000000000", + "c7e8000000000000", "cea8000000000000" ], "edgeNeighbors": [ "9958000000000000", "9ea8000000000000", "c158000000000000", - "c7d8000000000000", + "c7e8000000000000", "cea8000000000000" ] } @@ -3602,20 +3602,20 @@ }, "output": { "neighbors": [ + "ca32000000000000", + "ca3e000000000000", "cb82000000000000", "cb86000000000000", "cb8e000000000000", - "cb92000000000000", - "cb9a000000000000", - "d822000000000000", - "d82a000000000000" + "cb96000000000000", + "cb9a000000000000" ], "edgeNeighbors": [ + "ca32000000000000", "cb82000000000000", "cb86000000000000", "cb8e000000000000", - "cb92000000000000", - "d822000000000000" + "cb9a000000000000" ] } }, @@ -3750,20 +3750,20 @@ }, "output": { "neighbors": [ - "c988000000000000", - "c9e8000000000000", - "c9f8000000000000", - "ca18000000000000", - "d8f8000000000000", + "d8c8000000000000", + "d8d8000000000000", + "d8e8000000000000", + "d9f8000000000000", "da18000000000000", - "da28000000000000" + "da48000000000000", + "dad8000000000000" ], "edgeNeighbors": [ - "c9e8000000000000", - "c9f8000000000000", - "d8f8000000000000", + "d8d8000000000000", + "d8e8000000000000", "da18000000000000", - "da28000000000000" + "da48000000000000", + "dad8000000000000" ] } }, @@ -3773,20 +3773,20 @@ }, "output": { "neighbors": [ - "c960000000000000", - "c9a0000000000000", - "c9e0000000000000", - "ca20000000000000", "d8e0000000000000", + "d9e0000000000000", "da60000000000000", - "daa0000000000000" + "daa0000000000000", + "dae0000000000000", + "e320000000000000", + "e3a0000000000000" ], "edgeNeighbors": [ - "c9a0000000000000", - "c9e0000000000000", "d8e0000000000000", "da60000000000000", - "daa0000000000000" + "daa0000000000000", + "dae0000000000000", + "e320000000000000" ] } }, diff --git a/tests/fixtures/traversal/grid-disk.json b/tests/fixtures/traversal/grid-disk.json index 2c52f36..8028b2d 100644 --- a/tests/fixtures/traversal/grid-disk.json +++ b/tests/fixtures/traversal/grid-disk.json @@ -461,16 +461,16 @@ "cellId": "620000000000000", "k": 1, "cells": [ - "1a0000000000000", - "1e0000000000000", "4e0000000000000", "620000000000000", "660000000000000", - "6a0000000000000" + "6a0000000000000", + "6e0000000000000", + "8320000000000000" ], "extraVertexCells": [ - "160000000000000", - "220000000000000" + "5e0000000000000", + "83a0000000000000" ] }, { @@ -508,7 +508,7 @@ "cellId": "5c20000000000000", "k": 1, "cells": [ - "2760000000000000", + "27a0000000000000", "27e0000000000000", "5be0000000000000", "5c20000000000000", @@ -533,7 +533,7 @@ ], "extraVertexCells": [ "6020000000000000", - "6220000000000000" + "6260000000000000" ] }, { @@ -565,7 +565,7 @@ ], "extraVertexCells": [ "8820000000000000", - "8a20000000000000" + "8a60000000000000" ] }, { @@ -645,7 +645,7 @@ "4e0000000000000", "520000000000000", "560000000000000", - "5a0000000000000", + "5e0000000000000", "960000000000000", "9a0000000000000", "9e0000000000000", @@ -656,7 +656,7 @@ "extraVertexCells": [ "1e0000000000000", "2e0000000000000", - "620000000000000", + "660000000000000", "a20000000000000", "d60000000000000", "de0000000000000", @@ -669,30 +669,31 @@ "cellId": "620000000000000", "k": 2, "cells": [ - "120000000000000", "160000000000000", "1a0000000000000", "1e0000000000000", "220000000000000", - "260000000000000", "4a0000000000000", "4e0000000000000", "5a0000000000000", + "5e0000000000000", "620000000000000", "660000000000000", "6a0000000000000", "6e0000000000000", + "82e0000000000000", "8320000000000000", + "8360000000000000", "83a0000000000000", - "83e0000000000000", - "eea0000000000000" + "83e0000000000000" ], "extraVertexCells": [ - "2a0000000000000", - "3a0000000000000", - "420000000000000", - "e960000000000000", - "ee60000000000000" + "460000000000000", + "560000000000000", + "8060000000000000", + "8260000000000000", + "8420000000000000", + "8460000000000000" ] }, { @@ -710,7 +711,7 @@ "bf60000000000000", "bfe0000000000000", "c020000000000000", - "c0a0000000000000", + "c060000000000000", "cfe0000000000000", "d020000000000000", "d060000000000000" @@ -759,7 +760,7 @@ "k": 2, "cells": [ "2160000000000000", - "21e0000000000000", + "21a0000000000000", "2720000000000000", "2760000000000000", "27a0000000000000", @@ -777,8 +778,8 @@ ], "extraVertexCells": [ "2560000000000000", - "25e0000000000000", - "3a60000000000000", + "25a0000000000000", + "3a20000000000000", "5a20000000000000", "5b20000000000000", "5ee0000000000000" @@ -802,7 +803,7 @@ "6060000000000000", "60a0000000000000", "60e0000000000000", - "61a0000000000000", + "61e0000000000000", "6220000000000000", "6260000000000000" ], @@ -834,11 +835,11 @@ "e960000000000000", "e9a0000000000000", "e9e0000000000000", - "ee20000000000000", + "ee60000000000000", "eea0000000000000" ], "extraVertexCells": [ - "660000000000000", + "620000000000000", "8220000000000000", "8320000000000000", "86e0000000000000", @@ -864,7 +865,7 @@ "8860000000000000", "88a0000000000000", "88e0000000000000", - "89a0000000000000", + "89e0000000000000", "8a20000000000000", "8a60000000000000" ], @@ -885,10 +886,10 @@ "7160000000000000", "71a0000000000000", "71e0000000000000", - "7760000000000000", + "77a0000000000000", "77e0000000000000", "7820000000000000", - "78a0000000000000", + "7860000000000000", "7ea0000000000000", "a760000000000000", "a7a0000000000000", @@ -900,7 +901,7 @@ ], "extraVertexCells": [ "78e0000000000000", - "7e20000000000000", + "7e60000000000000", "a4e0000000000000", "a9e0000000000000" ] @@ -948,7 +949,7 @@ "3060000000000000", "bfe0000000000000", "c020000000000000", - "c0a0000000000000", + "c060000000000000", "cf60000000000000", "cfa0000000000000", "cfe0000000000000", diff --git a/tests/fixtures/traversal/lattice-flood-fill.json b/tests/fixtures/traversal/lattice-flood-fill.json index 94693f0..5d8f8d4 100644 --- a/tests/fixtures/traversal/lattice-flood-fill.json +++ b/tests/fixtures/traversal/lattice-flood-fill.json @@ -7,15 +7,15 @@ "5172000000000000" ], "firewallCells": [ - "5146000000000000", + "514a000000000000", "514e000000000000", "5152000000000000", "5156000000000000", "516e000000000000", "517e000000000000", - "63c2000000000000", - "63ca000000000000", + "63d6000000000000", "63da000000000000", + "63ea000000000000", "63f2000000000000", "63fe000000000000", "6aae000000000000", @@ -40,16 +40,16 @@ "5172000000000000" ], "firewallCells": [ - "5182000000000000", - "518a000000000000", + "518e000000000000", "519a000000000000", "51c6000000000000", + "51d6000000000000", "51da000000000000", - "634a000000000000", - "635a000000000000", - "636e000000000000", - "6376000000000000", - "63e6000000000000", + "638a000000000000", + "639e000000000000", + "63a6000000000000", + "63b6000000000000", + "63ca000000000000", "640a000000000000", "6432000000000000", "6a56000000000000", @@ -73,8 +73,8 @@ "517a000000000000" ], "frontierCells": [ - "515a000000000000", - "5162000000000000", + "515e000000000000", + "5166000000000000", "516a000000000000", "517a000000000000" ] @@ -84,21 +84,21 @@ "resolution": 5, "seedCells": [ "5172000000000000", - "515e000000000000", + "515a000000000000", "5172000000000000" ], "firewallCells": [ "5152000000000000", "5156000000000000", - "515a000000000000", + "515e000000000000", "5162000000000000", "5166000000000000", "516a000000000000", "5176000000000000", "517a000000000000", - "63c6000000000000", - "63d2000000000000", - "63d6000000000000", + "63de000000000000", + "63e2000000000000", + "63e6000000000000", "63f2000000000000", "63f6000000000000", "63fa000000000000", @@ -113,19 +113,19 @@ "name": "res3_small_ring", "resolution": 3, "seedCells": [ - "4de0000000000000" + "4da0000000000000" ], "firewallCells": [ "4ce0000000000000", "4d60000000000000", - "4e60000000000000", - "4f60000000000000", - "55e0000000000000", - "5660000000000000", + "4e20000000000000", + "4fa0000000000000", + "55a0000000000000", + "5620000000000000", "5720000000000000" ], "interiorCells": [ - "4da0000000000000", + "4de0000000000000", "4ee0000000000000", "4f20000000000000" ], diff --git a/tests/fixtures/traversal/lattice-neighbors.json b/tests/fixtures/traversal/lattice-neighbors.json index f42c1cf..68fc185 100644 --- a/tests/fixtures/traversal/lattice-neighbors.json +++ b/tests/fixtures/traversal/lattice-neighbors.json @@ -785,7 +785,7 @@ ], "supersetNeighbors": [ "11a8000000000000", - "388000000000000", + "3b8000000000000", "3e8000000000000", "3f8000000000000", "3f8000000000000", @@ -801,30 +801,30 @@ "cell": "608000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "1e8000000000000", - "1f8000000000000", - "4f8000000000000", - "618000000000000" + "4e8000000000000", + "618000000000000", + "648000000000000" ], "supersetNeighbors": [ - "188000000000000", - "1e8000000000000", - "1f8000000000000", - "218000000000000", - "4a8000000000000", "4c8000000000000", "4d8000000000000", - "4f8000000000000", + "4e8000000000000", + "5e8000000000000", + "5f8000000000000", "618000000000000", - "628000000000000", - "648000000000000" + "638000000000000", + "648000000000000", + "658000000000000", + "668000000000000", + "678000000000000", + "6d8000000000000" ] }, { "cell": "7f8000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "7d8000000000000", + "7e8000000000000", "8008000000000000", "808000000000000" ], @@ -844,7 +844,7 @@ "resolution": 4, "edgeOnlyNeighbors": [ "1ff8000000000000", - "2028000000000000", + "2018000000000000", "2958000000000000" ], "supersetNeighbors": [ @@ -862,23 +862,23 @@ "cell": "2208000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "20f8000000000000", - "2108000000000000", + "2128000000000000", "2218000000000000", - "2908000000000000" + "2248000000000000" ], "supersetNeighbors": [ - "20d8000000000000", - "20e8000000000000", - "20f8000000000000", "2108000000000000", "2118000000000000", "2128000000000000", + "21e8000000000000", + "21f8000000000000", "2218000000000000", - "2228000000000000", + "2238000000000000", "2248000000000000", - "2908000000000000", - "2a08000000000000" + "2258000000000000", + "2268000000000000", + "2278000000000000", + "2318000000000000" ] }, { @@ -931,10 +931,10 @@ "edgeOnlyNeighbors": [ "31f8000000000000", "3218000000000000", - "32a8000000000000" + "32b8000000000000" ], "supersetNeighbors": [ - "3158000000000000", + "3178000000000000", "3188000000000000", "31d8000000000000", "31e8000000000000", @@ -944,8 +944,8 @@ "3278000000000000", "3288000000000000", "3298000000000000", - "32a8000000000000", - "32f8000000000000" + "32b8000000000000", + "32c8000000000000" ] }, { @@ -962,7 +962,7 @@ "33d8000000000000", "33e8000000000000", "3408000000000000", - "3428000000000000", + "3418000000000000", "bc08000000000000", "bc18000000000000", "bc38000000000000" @@ -973,7 +973,7 @@ "resolution": 4, "edgeOnlyNeighbors": [ "3558000000000000", - "3c28000000000000", + "3c18000000000000", "4ea8000000000000" ], "supersetNeighbors": [ @@ -991,23 +991,23 @@ "cell": "3e08000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "3508000000000000", - "3cf8000000000000", - "3d08000000000000", - "3e18000000000000" + "3d28000000000000", + "3e18000000000000", + "3e48000000000000" ], "supersetNeighbors": [ - "3508000000000000", - "3608000000000000", - "3cd8000000000000", - "3ce8000000000000", - "3cf8000000000000", "3d08000000000000", "3d18000000000000", "3d28000000000000", + "3de8000000000000", + "3df8000000000000", "3e18000000000000", - "3e28000000000000", - "3e48000000000000" + "3e38000000000000", + "3e48000000000000", + "3e58000000000000", + "3e68000000000000", + "3e78000000000000", + "3f18000000000000" ] }, { @@ -1028,7 +1028,7 @@ "4008000000000000", "4008000000000000", "4018000000000000", - "4078000000000000", + "4048000000000000", "4658000000000000", "4bf8000000000000", "4c08000000000000", @@ -1039,13 +1039,13 @@ "cell": "5c08000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "27d8000000000000", + "27e8000000000000", "27f8000000000000", "5bf8000000000000", "5c28000000000000" ], "supersetNeighbors": [ - "27d8000000000000", + "27c8000000000000", "27e8000000000000", "27f8000000000000", "5be8000000000000", @@ -1059,23 +1059,23 @@ "cell": "5e08000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "5e28000000000000", + "5e18000000000000", "5e58000000000000", - "5fa8000000000000" + "60b8000000000000", + "60c8000000000000" ], "supersetNeighbors": [ + "5df8000000000000", "5e18000000000000", "5e28000000000000", "5e38000000000000", "5e48000000000000", "5e58000000000000", "5e68000000000000", - "5ef8000000000000", - "5f08000000000000", - "5f78000000000000", - "5f98000000000000", - "5fa8000000000000", - "5fb8000000000000" + "60a8000000000000", + "60b8000000000000", + "60c8000000000000", + "6258000000000000" ] }, { @@ -1096,7 +1096,7 @@ "59a8000000000000", "59b8000000000000", "59c8000000000000", - "5f88000000000000", + "5fb8000000000000", "5fd8000000000000", "5fe8000000000000", "6008000000000000", @@ -1119,7 +1119,7 @@ "67f8000000000000", "6818000000000000", "6828000000000000", - "6878000000000000", + "6848000000000000", "6e38000000000000", "6e48000000000000", "6e58000000000000", @@ -1133,7 +1133,7 @@ "resolution": 4, "edgeOnlyNeighbors": [ "6468000000000000", - "69b8000000000000", + "69a8000000000000", "6a18000000000000" ], "supersetNeighbors": [ @@ -1141,8 +1141,8 @@ "6738000000000000", "6988000000000000", "6998000000000000", - "69b8000000000000", - "69e8000000000000", + "69a8000000000000", + "69f8000000000000", "6a18000000000000", "6a28000000000000", "6a78000000000000" @@ -1153,14 +1153,14 @@ "resolution": 4, "edgeOnlyNeighbors": [ "5008000000000000", - "5028000000000000", + "5018000000000000", "6bd8000000000000", "6c08000000000000" ], "supersetNeighbors": [ "5008000000000000", "5018000000000000", - "5028000000000000", + "5038000000000000", "6bc8000000000000", "6bd8000000000000", "6be8000000000000", @@ -1192,23 +1192,23 @@ "cell": "8608000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "8628000000000000", + "8618000000000000", "8658000000000000", - "87a8000000000000" + "88b8000000000000", + "88c8000000000000" ], "supersetNeighbors": [ + "85f8000000000000", "8618000000000000", "8628000000000000", "8638000000000000", "8648000000000000", "8658000000000000", "8668000000000000", - "86f8000000000000", - "8708000000000000", - "8778000000000000", - "8798000000000000", - "87a8000000000000", - "87b8000000000000" + "88a8000000000000", + "88b8000000000000", + "88c8000000000000", + "8a58000000000000" ] }, { @@ -1229,7 +1229,7 @@ "81a8000000000000", "81b8000000000000", "81c8000000000000", - "8788000000000000", + "87b8000000000000", "87d8000000000000", "87e8000000000000", "8808000000000000", @@ -1260,23 +1260,23 @@ "cell": "9a08000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "9a28000000000000", + "9a18000000000000", "9a58000000000000", - "9ba8000000000000" + "9cb8000000000000", + "9cc8000000000000" ], "supersetNeighbors": [ + "99f8000000000000", "9a18000000000000", "9a28000000000000", "9a38000000000000", "9a48000000000000", "9a58000000000000", "9a68000000000000", - "9af8000000000000", - "9b08000000000000", - "9b78000000000000", - "9b98000000000000", - "9ba8000000000000", - "9bb8000000000000" + "9ca8000000000000", + "9cb8000000000000", + "9cc8000000000000", + "9e58000000000000" ] }, { @@ -1297,7 +1297,7 @@ "95a8000000000000", "95b8000000000000", "95c8000000000000", - "9b88000000000000", + "9bb8000000000000", "9bd8000000000000", "9be8000000000000", "9c08000000000000", @@ -1329,10 +1329,10 @@ "edgeOnlyNeighbors": [ "a9f8000000000000", "aa18000000000000", - "aaa8000000000000" + "aab8000000000000" ], "supersetNeighbors": [ - "a958000000000000", + "a978000000000000", "a988000000000000", "a9d8000000000000", "a9e8000000000000", @@ -1342,8 +1342,8 @@ "aa78000000000000", "aa88000000000000", "aa98000000000000", - "aaa8000000000000", - "aaf8000000000000" + "aab8000000000000", + "aac8000000000000" ] }, { @@ -1351,32 +1351,32 @@ "resolution": 4, "edgeOnlyNeighbors": [ "7008000000000000", - "7028000000000000", + "7018000000000000", "abd8000000000000", "ac08000000000000" ], "supersetNeighbors": [ "7008000000000000", "7018000000000000", - "7028000000000000", + "7038000000000000", "abc8000000000000", "abd8000000000000", "abe8000000000000", "ac08000000000000", - "ac28000000000000" + "ac18000000000000" ] }, { "cell": "b408000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "b3d8000000000000", + "b3e8000000000000", "b3f8000000000000", "b428000000000000", "baa8000000000000" ], "supersetNeighbors": [ - "b3d8000000000000", + "b3c8000000000000", "b3e8000000000000", "b3f8000000000000", "b418000000000000", @@ -1390,23 +1390,23 @@ "cell": "b608000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "b628000000000000", + "b618000000000000", "b658000000000000", - "b7a8000000000000" + "c4b8000000000000", + "c4c8000000000000" ], "supersetNeighbors": [ + "b5f8000000000000", "b618000000000000", "b628000000000000", "b638000000000000", "b648000000000000", "b658000000000000", "b668000000000000", - "b6f8000000000000", - "b708000000000000", - "b778000000000000", - "b798000000000000", - "b7a8000000000000", - "b7b8000000000000" + "c4a8000000000000", + "c4b8000000000000", + "c4c8000000000000", + "c658000000000000" ] }, { @@ -1421,13 +1421,13 @@ "c408000000000000" ], "supersetNeighbors": [ - "b788000000000000", + "b7b8000000000000", "b7d8000000000000", "b7e8000000000000", "b808000000000000", "b808000000000000", "b818000000000000", - "b878000000000000", + "b848000000000000", "be58000000000000", "c3f8000000000000", "c408000000000000", @@ -1459,10 +1459,10 @@ "edgeOnlyNeighbors": [ "d1f8000000000000", "d218000000000000", - "d2a8000000000000" + "d2b8000000000000" ], "supersetNeighbors": [ - "d158000000000000", + "d178000000000000", "d188000000000000", "d1d8000000000000", "d1e8000000000000", @@ -1472,8 +1472,8 @@ "d278000000000000", "d288000000000000", "d298000000000000", - "d2a8000000000000", - "d2f8000000000000" + "d2b8000000000000", + "d2c8000000000000" ] }, { @@ -1493,7 +1493,7 @@ "d3d8000000000000", "d3e8000000000000", "d408000000000000", - "d428000000000000" + "d418000000000000" ] }, { @@ -1501,7 +1501,7 @@ "resolution": 4, "edgeOnlyNeighbors": [ "1bf8000000000000", - "dc28000000000000", + "dc18000000000000", "e2a8000000000000" ], "supersetNeighbors": [ @@ -1519,23 +1519,23 @@ "cell": "de08000000000000", "resolution": 4, "edgeOnlyNeighbors": [ - "1b08000000000000", - "dcf8000000000000", - "dd08000000000000", - "de18000000000000" + "dd28000000000000", + "de18000000000000", + "de48000000000000" ], "supersetNeighbors": [ - "1958000000000000", - "1b08000000000000", - "dcd8000000000000", - "dce8000000000000", - "dcf8000000000000", "dd08000000000000", "dd18000000000000", "dd28000000000000", + "dde8000000000000", + "ddf8000000000000", "de18000000000000", - "de28000000000000", - "de48000000000000" + "de38000000000000", + "de48000000000000", + "de58000000000000", + "de68000000000000", + "de78000000000000", + "df18000000000000" ] }, { @@ -1576,7 +1576,7 @@ ], "supersetNeighbors": [ "11aa800000000000", - "3f8800000000000", + "3fb800000000000", "3fe800000000000", "3ff800000000000", "3ff800000000000", @@ -1592,30 +1592,30 @@ "cell": "600800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "1fe800000000000", - "1ff800000000000", - "4ff800000000000", - "601800000000000" + "4e5800000000000", + "601800000000000", + "615800000000000" ], "supersetNeighbors": [ - "1f8800000000000", - "1fe800000000000", - "1ff800000000000", - "215800000000000", - "4aa800000000000", - "4fc800000000000", - "4fd800000000000", - "4ff800000000000", + "4e3800000000000", + "4e4800000000000", + "4e5800000000000", + "5ea800000000000", + "5ff800000000000", "601800000000000", "602800000000000", - "604800000000000" + "603800000000000", + "614800000000000", + "615800000000000", + "617800000000000", + "6da800000000000" ] }, { "cell": "7ff800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "7fd800000000000", + "7fe800000000000", "8000800000000000", "800800000000000" ], @@ -1635,7 +1635,7 @@ "resolution": 6, "edgeOnlyNeighbors": [ "1fff800000000000", - "2002800000000000", + "2001800000000000", "2955800000000000" ], "supersetNeighbors": [ @@ -1653,23 +1653,23 @@ "cell": "2200800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "20ff800000000000", - "2100800000000000", + "2125800000000000", "2201800000000000", - "2900800000000000" + "2215800000000000" ], "supersetNeighbors": [ - "20fd800000000000", - "20fe800000000000", - "20ff800000000000", - "2100800000000000", - "2101800000000000", - "2102800000000000", + "2123800000000000", + "2124800000000000", + "2125800000000000", + "21ea800000000000", + "21ff800000000000", "2201800000000000", "2202800000000000", - "2204800000000000", - "2900800000000000", - "2a00800000000000" + "2203800000000000", + "2214800000000000", + "2215800000000000", + "2217800000000000", + "231a800000000000" ] }, { @@ -1722,21 +1722,21 @@ "edgeOnlyNeighbors": [ "31ff800000000000", "3201800000000000", - "32aa800000000000" + "32bf800000000000" ], "supersetNeighbors": [ - "3155800000000000", + "317f800000000000", "3180800000000000", "31fd800000000000", "31fe800000000000", "31ff800000000000", "3201800000000000", "3202800000000000", - "3207800000000000", - "32a8800000000000", - "32a9800000000000", - "32aa800000000000", - "32ff800000000000" + "3204800000000000", + "32bd800000000000", + "32be800000000000", + "32bf800000000000", + "32c0800000000000" ] }, { @@ -1753,7 +1753,7 @@ "33fd800000000000", "33fe800000000000", "3400800000000000", - "3402800000000000", + "3401800000000000", "bc00800000000000", "bc01800000000000", "bc03800000000000" @@ -1764,7 +1764,7 @@ "resolution": 6, "edgeOnlyNeighbors": [ "3555800000000000", - "3c02800000000000", + "3c01800000000000", "4eaa800000000000" ], "supersetNeighbors": [ @@ -1782,23 +1782,23 @@ "cell": "3e00800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "3500800000000000", - "3cff800000000000", - "3d00800000000000", - "3e01800000000000" + "3d25800000000000", + "3e01800000000000", + "3e15800000000000" ], "supersetNeighbors": [ - "3500800000000000", - "3600800000000000", - "3cfd800000000000", - "3cfe800000000000", - "3cff800000000000", - "3d00800000000000", - "3d01800000000000", - "3d02800000000000", + "3d23800000000000", + "3d24800000000000", + "3d25800000000000", + "3dea800000000000", + "3dff800000000000", "3e01800000000000", "3e02800000000000", - "3e04800000000000" + "3e03800000000000", + "3e14800000000000", + "3e15800000000000", + "3e17800000000000", + "3f1a800000000000" ] }, { @@ -1819,7 +1819,7 @@ "4000800000000000", "4000800000000000", "4001800000000000", - "4007800000000000", + "4004800000000000", "4655800000000000", "4bff800000000000", "4c00800000000000", @@ -1830,13 +1830,13 @@ "cell": "5c00800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "27fd800000000000", + "27fe800000000000", "27ff800000000000", "5bff800000000000", "5c02800000000000" ], "supersetNeighbors": [ - "27fd800000000000", + "27fc800000000000", "27fe800000000000", "27ff800000000000", "5bfe800000000000", @@ -1850,23 +1850,23 @@ "cell": "5e00800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "5e02800000000000", + "5e01800000000000", "5e55800000000000", - "5faa800000000000" + "60bf800000000000", + "60c0800000000000" ], "supersetNeighbors": [ + "5dff800000000000", "5e01800000000000", "5e02800000000000", "5e03800000000000", "5e54800000000000", "5e55800000000000", "5e56800000000000", - "5eff800000000000", - "5f00800000000000", - "5f7f800000000000", - "5fa9800000000000", - "5faa800000000000", - "5fab800000000000" + "60be800000000000", + "60bf800000000000", + "60c0800000000000", + "6255800000000000" ] }, { @@ -1887,7 +1887,7 @@ "59aa800000000000", "59ab800000000000", "59ac800000000000", - "5ff8800000000000", + "5ffb800000000000", "5ffd800000000000", "5ffe800000000000", "6000800000000000", @@ -1910,7 +1910,7 @@ "67ff800000000000", "6801800000000000", "6802800000000000", - "6807800000000000", + "6804800000000000", "6e53800000000000", "6e54800000000000", "6e55800000000000", @@ -1924,19 +1924,19 @@ "resolution": 6, "edgeOnlyNeighbors": [ "646a800000000000", - "69bf800000000000", + "69aa800000000000", "6a01800000000000" ], "supersetNeighbors": [ "646a800000000000", "673f800000000000", - "69bc800000000000", - "69bd800000000000", - "69bf800000000000", - "69ea800000000000", + "69a8800000000000", + "69a9800000000000", + "69aa800000000000", + "69ff800000000000", "6a01800000000000", "6a02800000000000", - "6a07800000000000" + "6a04800000000000" ] }, { @@ -1944,14 +1944,14 @@ "resolution": 6, "edgeOnlyNeighbors": [ "5000800000000000", - "5002800000000000", + "5001800000000000", "6bfd800000000000", "6c00800000000000" ], "supersetNeighbors": [ "5000800000000000", "5001800000000000", - "5002800000000000", + "5003800000000000", "6bfc800000000000", "6bfd800000000000", "6bfe800000000000", @@ -1983,23 +1983,23 @@ "cell": "8600800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "8602800000000000", + "8601800000000000", "8655800000000000", - "87aa800000000000" + "88bf800000000000", + "88c0800000000000" ], "supersetNeighbors": [ + "85ff800000000000", "8601800000000000", "8602800000000000", "8603800000000000", "8654800000000000", "8655800000000000", "8656800000000000", - "86ff800000000000", - "8700800000000000", - "877f800000000000", - "87a9800000000000", - "87aa800000000000", - "87ab800000000000" + "88be800000000000", + "88bf800000000000", + "88c0800000000000", + "8a55800000000000" ] }, { @@ -2020,7 +2020,7 @@ "81aa800000000000", "81ab800000000000", "81ac800000000000", - "87f8800000000000", + "87fb800000000000", "87fd800000000000", "87fe800000000000", "8800800000000000", @@ -2051,23 +2051,23 @@ "cell": "9a00800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "9a02800000000000", + "9a01800000000000", "9a55800000000000", - "9baa800000000000" + "9cbf800000000000", + "9cc0800000000000" ], "supersetNeighbors": [ + "99ff800000000000", "9a01800000000000", "9a02800000000000", "9a03800000000000", "9a54800000000000", "9a55800000000000", "9a56800000000000", - "9aff800000000000", - "9b00800000000000", - "9b7f800000000000", - "9ba9800000000000", - "9baa800000000000", - "9bab800000000000" + "9cbe800000000000", + "9cbf800000000000", + "9cc0800000000000", + "9e55800000000000" ] }, { @@ -2088,7 +2088,7 @@ "95aa800000000000", "95ab800000000000", "95ac800000000000", - "9bf8800000000000", + "9bfb800000000000", "9bfd800000000000", "9bfe800000000000", "9c00800000000000", @@ -2120,21 +2120,21 @@ "edgeOnlyNeighbors": [ "a9ff800000000000", "aa01800000000000", - "aaaa800000000000" + "aabf800000000000" ], "supersetNeighbors": [ - "a955800000000000", + "a97f800000000000", "a980800000000000", "a9fd800000000000", "a9fe800000000000", "a9ff800000000000", "aa01800000000000", "aa02800000000000", - "aa07800000000000", - "aaa8800000000000", - "aaa9800000000000", - "aaaa800000000000", - "aaff800000000000" + "aa04800000000000", + "aabd800000000000", + "aabe800000000000", + "aabf800000000000", + "aac0800000000000" ] }, { @@ -2142,32 +2142,32 @@ "resolution": 6, "edgeOnlyNeighbors": [ "7000800000000000", - "7002800000000000", + "7001800000000000", "abfd800000000000", "ac00800000000000" ], "supersetNeighbors": [ "7000800000000000", "7001800000000000", - "7002800000000000", + "7003800000000000", "abfc800000000000", "abfd800000000000", "abfe800000000000", "ac00800000000000", - "ac02800000000000" + "ac01800000000000" ] }, { "cell": "b400800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "b3fd800000000000", + "b3fe800000000000", "b3ff800000000000", "b402800000000000", "baaa800000000000" ], "supersetNeighbors": [ - "b3fd800000000000", + "b3fc800000000000", "b3fe800000000000", "b3ff800000000000", "b401800000000000", @@ -2181,23 +2181,23 @@ "cell": "b600800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "b602800000000000", + "b601800000000000", "b655800000000000", - "b7aa800000000000" + "c4bf800000000000", + "c4c0800000000000" ], "supersetNeighbors": [ + "b5ff800000000000", "b601800000000000", "b602800000000000", "b603800000000000", "b654800000000000", "b655800000000000", "b656800000000000", - "b6ff800000000000", - "b700800000000000", - "b77f800000000000", - "b7a9800000000000", - "b7aa800000000000", - "b7ab800000000000" + "c4be800000000000", + "c4bf800000000000", + "c4c0800000000000", + "c655800000000000" ] }, { @@ -2212,13 +2212,13 @@ "c400800000000000" ], "supersetNeighbors": [ - "b7f8800000000000", + "b7fb800000000000", "b7fd800000000000", "b7fe800000000000", "b800800000000000", "b800800000000000", "b801800000000000", - "b807800000000000", + "b804800000000000", "be55800000000000", "c3ff800000000000", "c400800000000000", @@ -2250,21 +2250,21 @@ "edgeOnlyNeighbors": [ "d1ff800000000000", "d201800000000000", - "d2aa800000000000" + "d2bf800000000000" ], "supersetNeighbors": [ - "d155800000000000", + "d17f800000000000", "d180800000000000", "d1fd800000000000", "d1fe800000000000", "d1ff800000000000", "d201800000000000", "d202800000000000", - "d207800000000000", - "d2a8800000000000", - "d2a9800000000000", - "d2aa800000000000", - "d2ff800000000000" + "d204800000000000", + "d2bd800000000000", + "d2be800000000000", + "d2bf800000000000", + "d2c0800000000000" ] }, { @@ -2284,7 +2284,7 @@ "d3fd800000000000", "d3fe800000000000", "d400800000000000", - "d402800000000000" + "d401800000000000" ] }, { @@ -2292,7 +2292,7 @@ "resolution": 6, "edgeOnlyNeighbors": [ "1bff800000000000", - "dc02800000000000", + "dc01800000000000", "e2aa800000000000" ], "supersetNeighbors": [ @@ -2310,23 +2310,23 @@ "cell": "de00800000000000", "resolution": 6, "edgeOnlyNeighbors": [ - "1b00800000000000", - "dcff800000000000", - "dd00800000000000", - "de01800000000000" + "dd25800000000000", + "de01800000000000", + "de15800000000000" ], "supersetNeighbors": [ - "1955800000000000", - "1b00800000000000", - "dcfd800000000000", - "dcfe800000000000", - "dcff800000000000", - "dd00800000000000", - "dd01800000000000", - "dd02800000000000", + "dd23800000000000", + "dd24800000000000", + "dd25800000000000", + "ddea800000000000", + "ddff800000000000", "de01800000000000", "de02800000000000", - "de04800000000000" + "de03800000000000", + "de14800000000000", + "de15800000000000", + "de17800000000000", + "df1a800000000000" ] }, { diff --git a/tests/fixtures/traversal/line.json b/tests/fixtures/traversal/line.json index 00b9122..ac109b8 100644 --- a/tests/fixtures/traversal/line.json +++ b/tests/fixtures/traversal/line.json @@ -13,7 +13,7 @@ "resolution": 3, "cells": [ "5160000000000000", - "6360000000000000", + "63a0000000000000", "63e0000000000000" ] }, @@ -31,7 +31,7 @@ "cells": [ "5160000000000000", "6320000000000000", - "6360000000000000", + "63a0000000000000", "63e0000000000000", "6a60000000000000", "6ae0000000000000" @@ -66,10 +66,10 @@ ], "resolution": 3, "cells": [ - "4de0000000000000", + "4da0000000000000", "4f20000000000000", - "4fa0000000000000", - "55e0000000000000", + "4f60000000000000", + "55a0000000000000", "56e0000000000000" ] } diff --git a/tests/fixtures/traversal/quintant-neighbors.json b/tests/fixtures/traversal/quintant-neighbors.json index 9404227..c8660ad 100644 --- a/tests/fixtures/traversal/quintant-neighbors.json +++ b/tests/fixtures/traversal/quintant-neighbors.json @@ -22,11 +22,11 @@ "neighbors": [ 1633, 1634, - 1636, + 1635, 1637, 1639, 1640, - 1643 + 1641 ] } }, @@ -74,13 +74,13 @@ }, "output": { "neighbors": [ - 6545, - 6551, + 6532, + 6542, + 6546, + 6547, + 6548, 6552, - 6554, - 6555, - 6557, - 6559 + 6554 ] } }, @@ -92,9 +92,9 @@ }, "output": { "neighbors": [ - 7164, - 7167, - 7850, + 6824, + 6826, + 8191, 8193, 8194 ] @@ -109,12 +109,12 @@ "output": { "neighbors": [ 9825, - 9826, + 9827, 9828, 9829, 9831, 9832, - 9835 + 9838 ] } }, @@ -162,13 +162,13 @@ }, "output": { "neighbors": [ - 14737, - 14743, 14744, 14746, 14747, - 14749, - 14751 + 14748, + 14750, + 14768, + 14771 ] } }, @@ -198,8 +198,8 @@ 1635, 1637, 1639, - 1641, - 1643 + 1640, + 1641 ] } }, @@ -211,13 +211,13 @@ }, "output": { "neighbors": [ + 3275, 3277, - 3278, - 3288, - 3290, - 3291, - 3300, - 3310 + 3319, + 3320, + 3321, + 3340, + 3369 ] } }, @@ -229,13 +229,13 @@ }, "output": { "neighbors": [ + 4822, + 4851, + 4870, + 4871, + 4872, 4914, - 4918, - 4920, - 4921, - 4923, - 4963, - 4968 + 4916 ] } }, @@ -247,12 +247,12 @@ }, "output": { "neighbors": [ - 6549, + 6545, 6551, 6552, 6554, + 6555, 6556, - 6557, 6558 ] } @@ -265,9 +265,13 @@ }, "output": { "neighbors": [ - 4095, + 3667, + 3668, + 3669, + 8191, 8193, - 8194 + 8533, + 11690 ] } }, @@ -280,12 +284,12 @@ "output": { "neighbors": [ 9825, - 9826, 9827, + 9828, 9829, 9831, - 9833, - 9835 + 9832, + 9838 ] } }, @@ -297,13 +301,13 @@ }, "output": { "neighbors": [ + 11465, + 11467, 11469, 11470, - 11480, - 11482, - 11483, - 11492, - 11502 + 11472, + 11473, + 11474 ] } }, @@ -315,13 +319,13 @@ }, "output": { "neighbors": [ + 13093, + 13100, + 13101, + 13103, + 13104, 13106, - 13110, - 13112, - 13113, - 13115, - 13155, - 13160 + 13108 ] } }, @@ -333,13 +337,13 @@ }, "output": { "neighbors": [ - 5732, - 5734, 14741, - 14742, + 14743, 14744, 14746, - 14747 + 14747, + 14748, + 14749 ] } }, @@ -364,13 +368,13 @@ }, "output": { "neighbors": [ - 1632, - 1634, + 1612, + 1615, + 1633, + 1635, 1636, 1637, - 1639, - 1640, - 1646 + 1639 ] } }, @@ -418,12 +422,12 @@ }, "output": { "neighbors": [ - 6548, + 6545, 6551, 6552, 6554, 6555, - 6557, + 6556, 6558 ] } @@ -436,13 +440,9 @@ }, "output": { "neighbors": [ - 8194, - 8195, - 9556, - 9557, - 9558, - 15017, - 15018 + 8191, + 8193, + 9557 ] } }, @@ -454,13 +454,13 @@ }, "output": { "neighbors": [ - 9824, - 9826, - 9828, 9829, 9831, - 9832, - 9838 + 9835, + 9836, + 9837, + 9841, + 9851 ] } }, @@ -508,11 +508,11 @@ }, "output": { "neighbors": [ - 14740, + 14742, 14743, 14744, 14746, - 14747, + 14748, 14749, 14750 ] @@ -539,13 +539,13 @@ }, "output": { "neighbors": [ - 1632, - 1634, + 1612, + 1615, + 1633, + 1635, 1636, 1637, - 1639, - 1640, - 1646 + 1639 ] } }, @@ -575,13 +575,13 @@ }, "output": { "neighbors": [ - 4901, - 4908, 4909, + 4910, 4911, - 4912, + 4913, 4914, - 4916 + 4916, + 4918 ] } }, @@ -593,12 +593,12 @@ }, "output": { "neighbors": [ - 6548, + 6545, 6551, 6552, 6554, 6555, - 6557, + 6556, 6558 ] } @@ -634,7 +634,7 @@ 9828, 9829, 9831, - 9835, + 9833, 9836 ] } @@ -701,7 +701,7 @@ }, "output": { "neighbors": [ - 2 + 1 ] } }, @@ -713,13 +713,13 @@ }, "output": { "neighbors": [ + 1634, + 1635, 1636, 1637, 1639, - 1641, - 1642, - 10649, - 10651 + 1640, + 1642 ] } }, @@ -731,13 +731,13 @@ }, "output": { "neighbors": [ - 3223, - 3228, - 3268, - 3270, - 3271, - 3273, - 3277 + 3275, + 3277, + 3279, + 3280, + 3282, + 3283, + 3290 ] } }, @@ -749,13 +749,13 @@ }, "output": { "neighbors": [ - 4881, - 4891, - 4900, - 4901, - 4903, + 4909, + 4910, + 4911, 4913, - 4914 + 4914, + 4916, + 4918 ] } }, @@ -767,12 +767,12 @@ }, "output": { "neighbors": [ - 6548, - 6550, + 6545, + 6551, 6552, 6554, + 6555, 6556, - 6557, 6558 ] } @@ -785,11 +785,13 @@ }, "output": { "neighbors": [ - 4093, - 4095, - 4096, + 4691, + 4692, + 4693, + 8191, 8193, - 8194 + 8533, + 12714 ] } }, @@ -802,12 +804,12 @@ "output": { "neighbors": [ 9825, - 9826, 9827, + 9828, 9829, 9831, 9832, - 9834 + 9838 ] } }, @@ -819,13 +821,13 @@ }, "output": { "neighbors": [ - 11415, - 11420, - 11460, - 11462, - 11463, - 11465, - 11469 + 11467, + 11469, + 11511, + 11512, + 11513, + 11532, + 11561 ] } }, @@ -837,13 +839,13 @@ }, "output": { "neighbors": [ - 13073, - 13083, - 13092, - 13093, - 13095, - 13105, - 13106 + 13014, + 13043, + 13062, + 13063, + 13064, + 13106, + 13108 ] } }, @@ -855,8 +857,8 @@ }, "output": { "neighbors": [ - 14740, 14742, + 14743, 14744, 14746, 14748, @@ -940,7 +942,7 @@ "output": { "neighbors": [ 6547, - 6548, + 6550, 6552, 6554, 6555, @@ -957,13 +959,13 @@ }, "output": { "neighbors": [ - 5461, + 6143, 6144, 8190, 8191, 8193, 8194, - 10922 + 11263 ] } }, @@ -976,12 +978,12 @@ "output": { "neighbors": [ 9825, - 9826, + 9827, 9828, 9829, 9831, 9832, - 9835 + 9838 ] } }, @@ -993,13 +995,13 @@ }, "output": { "neighbors": [ + 11465, 11467, 11469, - 11471, + 11470, 11472, - 11474, - 11475, - 11482 + 11473, + 11474 ] } }, @@ -1029,13 +1031,13 @@ }, "output": { "neighbors": [ - 14737, - 14743, 14744, 14746, 14747, - 14749, - 14751 + 14748, + 14750, + 14768, + 14771 ] } } diff --git a/tests/fixtures/utils/spiral.json b/tests/fixtures/utils/spiral.json deleted file mode 100644 index 31770e0..0000000 --- a/tests/fixtures/utils/spiral.json +++ /dev/null @@ -1,922 +0,0 @@ -{ - "sampleCount": 24, - "spiral": [ - { - "name": "equator_low_res", - "center": [ - 0.5, - 1.5707963267948966 - ], - "scaleRad": 1.2217304763960306, - "sampleCount": 24, - "samples": [ - [ - 0.8592298767674167, - 0.5130199024921893, - -0.030377594290314974 - ], - [ - 0.8426400791141796, - 0.5433873212729783, - 0.06512077656001185 - ], - [ - 0.9148233953693096, - 0.41125665130529765, - 0.12433795987699575 - ], - [ - 0.9643467756177951, - 0.320604717242963, - -0.07388590566845617 - ], - [ - 0.8523821698752342, - 0.5255545476694466, - -0.23862537384598662 - ], - [ - 0.7371564685853693, - 0.736473768747596, - 0.013488523264033932 - ], - [ - 0.8571715263536136, - 0.5167876835312797, - 0.33942493682702113 - ], - [ - 1.0568877406349833, - 0.15120962113883324, - 0.11388064343824085 - ], - [ - 0.9723962969776923, - 0.3058701711981002, - -0.39285256311328254 - ], - [ - 0.6892626877051473, - 0.824142746695878, - -0.29073308814980336 - ], - [ - 0.6912810877682496, - 0.820448083163242, - 0.3714399735473625 - ], - [ - 1.034478856131609, - 0.1922288035776924, - 0.4866235408258444 - ], - [ - 1.1555359968457009, - -0.029364790054826506, - -0.25976948623764173 - ], - [ - 0.7962909340111833, - 0.628228867063702, - -0.6628246771335342 - ], - [ - 0.5272594048781216, - 1.120687752282203, - 0.058323129832977556 - ], - [ - 0.8434613038097045, - 0.5418840719186447, - 0.7786616836418222 - ], - [ - 1.2622915510811414, - -0.22477951934265727, - 0.2151376188717562 - ], - [ - 1.0544374453881014, - 0.15569486616989459, - -0.7985598205229467 - ], - [ - 0.5110726767144722, - 1.1503173646722942, - -0.5269867815804341 - ], - [ - 0.5499305294069579, - 1.0791885317995793, - 0.698719347130111 - ], - [ - 1.1657232673435338, - -0.04801247470308101, - 0.8318536697321097 - ], - [ - 1.340612936107934, - -0.3681458403806175, - -0.4723501947745631 - ], - [ - 0.7265543249421229, - 0.7558808735758038, - -1.0789444015039178 - ], - [ - 0.3188866816065695, - 1.502111449149764, - 0.1325743968310346 - ] - ] - }, - { - "name": "equator_high_res", - "center": [ - 0.5, - 1.5707963267948966 - ], - "scaleRad": 0.019089538693687978, - "sampleCount": 24, - "samples": [ - [ - 0.8772958011853266, - 0.4799504505399528, - -0.0004746499107861112 - ], - [ - 0.8770365855969947, - 0.48042494145840264, - 0.0010175121337502454 - ], - [ - 0.8781644499134812, - 0.4783603997401576, - 0.001942780623078119 - ], - [ - 0.8789382527298637, - 0.47694396327043365, - -0.0011544672760695673 - ], - [ - 0.8771888057651362, - 0.48014630437084743, - -0.0037285214663434806 - ], - [ - 0.8753884041824821, - 0.4834419172001935, - 0.00021075817600059048 - ], - [ - 0.8772636394601109, - 0.4800093221186886, - 0.005303514637922266 - ], - [ - 0.8803842053082573, - 0.4742971648938066, - 0.0017793850537225736 - ], - [ - 0.8790640265011122, - 0.47671373598848266, - -0.006138321298644979 - ], - [ - 0.8746400638562286, - 0.48481174498063545, - -0.004542704502340617 - ], - [ - 0.8746716013572146, - 0.484754015862938, - 0.0058037495866776 - ], - [ - 0.8800340664878921, - 0.47493808961941375, - 0.00760349282540388 - ], - [ - 0.8819255843115498, - 0.4714756897189057, - -0.004058898222463091 - ], - [ - 0.8763123802047604, - 0.4817505906113827, - -0.010356635580211413 - ], - [ - 0.8721087625620564, - 0.48944526069292177, - 0.0009112989036403346 - ], - [ - 0.8770494172328623, - 0.48040145318724115, - 0.01216658880690353 - ], - [ - 0.8835936398464785, - 0.4684223345737833, - 0.003361525294871251 - ], - [ - 0.8803459194450247, - 0.47436724684741693, - -0.012477497195670983 - ], - [ - 0.8718558449344993, - 0.4899082233865169, - -0.008234168462194224 - ], - [ - 0.8724629988828194, - 0.48879683537288077, - 0.010917489798908043 - ], - [ - 0.8820847604130784, - 0.4711843196462767, - 0.012997713589564273 - ], - [ - 0.8848174114875221, - 0.4661822358075652, - -0.007380471793352487 - ], - [ - 0.8752227456880564, - 0.48374515321313427, - -0.016858506273498653 - ], - [ - 0.8688529387609384, - 0.4954050059564774, - 0.002071474950484976 - ] - ] - }, - { - "name": "midlat_north", - "center": [ - 1, - 0.7853981633974483 - ], - "scaleRad": 0.30543261909900765, - "sampleCount": 24, - "samples": [ - [ - 0.38234718600687434, - 0.6042759806208212, - 0.699149791176292 - ], - [ - 0.35990713415418873, - 0.6045633965869189, - 0.7110323513571545 - ], - [ - 0.3698727342410847, - 0.57208278864789, - 0.7329794050557719 - ], - [ - 0.42082006569390695, - 0.5655111378584363, - 0.7109822967343594 - ], - [ - 0.41882272925159836, - 0.6206870658928512, - 0.6656325171668246 - ], - [ - 0.338898255099781, - 0.6497321755620524, - 0.6843752786824556 - ], - [ - 0.31345748213072633, - 0.5807640538732328, - 0.756155664233776 - ], - [ - 0.41294048880816536, - 0.5165122894218026, - 0.7564707620811132 - ], - [ - 0.48205641938685245, - 0.5833063399467031, - 0.6629220048427674 - ], - [ - 0.3812124566641663, - 0.6887113096394145, - 0.6287130046353663 - ], - [ - 0.2595093838506648, - 0.644351693349448, - 0.7317967910303931 - ], - [ - 0.3376150135904654, - 0.500865880311964, - 0.8103352921708828 - ], - [ - 0.5105095880343125, - 0.5020270833929673, - 0.7159428313125037 - ], - [ - 0.4809202634349959, - 0.6708050451405387, - 0.5899082467902665 - ], - [ - 0.2698400107911132, - 0.7299034090926872, - 0.6542258386404538 - ], - [ - 0.2283709915895613, - 0.5572986932461711, - 0.821873514887739 - ], - [ - 0.45371803359091584, - 0.4285099421388191, - 0.8084899854548875 - ], - [ - 0.5807369040235977, - 0.57750650105708, - 0.6144851050922486 - ], - [ - 0.3732456785737941, - 0.77481742056507, - 0.560561675402909 - ], - [ - 0.1581388593546318, - 0.678797742483164, - 0.7575821694961132 - ], - [ - 0.31186275501272415, - 0.4261816446972503, - 0.8870939184082799 - ], - [ - 0.6033595423554643, - 0.4427197738834949, - 0.7156811672262327 - ], - [ - 0.5375745012530645, - 0.7257951765099824, - 0.513025227270064 - ], - [ - 0.19579060507121035, - 0.8075358515051173, - 0.6289094539406496 - ] - ] - }, - { - "name": "midlat_south", - "center": [ - -2.5, - 2.356194490192345 - ], - "scaleRad": 0.07635815477475191, - "sampleCount": 24, - "samples": [ - [ - -0.5690073210435174, - -0.4224390765764791, - -0.7055389600164214 - ], - [ - -0.56761831386935, - -0.41767756801398265, - -0.7095013842744574 - ], - [ - -0.5595276166947774, - -0.4226100256559954, - -0.7130312562326223 - ], - [ - -0.5610881009198458, - -0.43393597768725756, - -0.7050028179354346 - ], - [ - -0.5758077624308886, - -0.42870868436376514, - -0.6963386445533591 - ], - [ - -0.5784023034176528, - -0.40930906535398204, - -0.7058701754602508 - ], - [ - -0.5581776134493592, - -0.40994620346842464, - -0.7216917470078948 - ], - [ - -0.5473855384063996, - -0.43654051634793545, - -0.7144217944672144 - ], - [ - -0.5698790815566483, - -0.44531135498901403, - -0.6911521340654692 - ], - [ - -0.5916582942984122, - -0.4148454216587999, - -0.6919368683920444 - ], - [ - -0.5717664590328977, - -0.3930208961424905, - -0.7209344546270426 - ], - [ - -0.5382522241470498, - -0.4220041591077474, - -0.7304384950438897 - ], - [ - -0.5498626861479182, - -0.45839629051680836, - -0.6993571722461391 - ], - [ - -0.593354445857491, - -0.43745058513862445, - -0.6770494476664068 - ], - [ - -0.5954671120349563, - -0.38775002629090777, - -0.705101296724211 - ], - [ - -0.5463020469017189, - -0.39403058018863535, - -0.7407308377049986 - ], - [ - -0.526365020677912, - -0.45281235480103943, - -0.721524006317905 - ], - [ - -0.5747664537989494, - -0.4666452341670765, - -0.6744689155037928 - ], - [ - -0.6143125000822129, - -0.4056641882361174, - -0.6792823084966743 - ], - [ - -0.5744132124036608, - -0.368624197373242, - -0.7334147687563376 - ], - [ - -0.5164687315583552, - -0.423073413073352, - -0.7472502820521664 - ], - [ - -0.5399679312711415, - -0.4831598972915009, - -0.6924639639320771 - ], - [ - -0.6118567352478972, - -0.44461920186894155, - -0.6579362397901789 - ], - [ - -0.6115224730390689, - -0.36535861442175394, - -0.7056392823882329 - ] - ] - }, - { - "name": "north_pole", - "center": [ - 0, - 0.001 - ], - "scaleRad": 0.15271630954950383, - "sampleCount": 24, - "samples": [ - [ - 0.00203827002566926, - 0.006019769840415706, - 0.9999995000000417 - ], - [ - -0.010511417658027686, - 0.00409265232276999, - 0.9999995000000417 - ], - [ - -0.007984498968889902, - -0.015972460254691363, - 0.9999995000000417 - ], - [ - 0.01995064923791001, - -0.015424753804413441, - 0.9999995000000417 - ], - [ - 0.024026633842205516, - 0.02006651375596285, - 0.9999995000000417 - ], - [ - -0.01803292341009756, - 0.031322685933186704, - 0.9999995000000417 - ], - [ - -0.038785554810114, - -0.015670855240955565, - 0.9999995000000417 - ], - [ - 0.010920688992693071, - -0.0478516509404969, - 0.9999995000000417 - ], - [ - 0.05594678598551987, - 0.0018485235674714504, - 0.9999995000000417 - ], - [ - 0.00935280117043957, - 0.06051275982972531, - 0.9999995000000417 - ], - [ - -0.06303383932890251, - 0.020368091391522097, - 0.9999995000000417 - ], - [ - -0.03276950437047895, - -0.06506206168625647, - 0.9999995000000417 - ], - [ - 0.06424032522241231, - -0.04803127499679504, - 0.9999995000000417 - ], - [ - 0.06354896764770196, - 0.058322301690142124, - 0.9999995000000417 - ], - [ - -0.04918831491890472, - 0.07666257688860607, - 0.9999995000000417 - ], - [ - -0.0886826456712132, - -0.03885647153071181, - 0.9999995000000417 - ], - [ - 0.02548849595956586, - -0.10091844113676374, - 0.9999995000000417 - ], - [ - 0.11070713072818218, - 0.00738991354177867, - 0.9999995000000417 - ], - [ - 0.012995564639018546, - 0.11544284417628632, - 0.9999995000000417 - ], - [ - -0.1166044925299554, - 0.03309738578078151, - 0.9999995000000417 - ], - [ - -0.05423494507889407, - -0.11578123950351657, - 0.9999995000000417 - ], - [ - 0.11069458266631874, - -0.07763932841190255, - 0.9999995000000417 - ], - [ - 0.10047931761889148, - 0.09921610594378376, - 0.9999995000000417 - ], - [ - -0.08338010735741264, - 0.11989079468678306, - 0.9999995000000417 - ] - ] - }, - { - "name": "south_pole", - "center": [ - 0, - 3.1405926535897932 - ], - "scaleRad": 0.15271630954950383, - "sampleCount": 24, - "samples": [ - [ - -0.00003827035900256441, - 0.006019769840415706, - -0.9999995000000417 - ], - [ - 0.012511417324694381, - 0.00409265232276999, - -0.9999995000000417 - ], - [ - 0.009984498635556597, - -0.015972460254691363, - -0.9999995000000417 - ], - [ - -0.017950649571243312, - -0.015424753804413441, - -0.9999995000000417 - ], - [ - -0.02202663417553882, - 0.02006651375596285, - -0.9999995000000417 - ], - [ - 0.020032923076764256, - 0.031322685933186704, - -0.9999995000000417 - ], - [ - 0.04078555447678069, - -0.015670855240955565, - -0.9999995000000417 - ], - [ - -0.008920689326026377, - -0.0478516509404969, - -0.9999995000000417 - ], - [ - -0.05394678631885318, - 0.0018485235674714504, - -0.9999995000000417 - ], - [ - -0.007352801503772874, - 0.06051275982972531, - -0.9999995000000417 - ], - [ - 0.06503383899556921, - 0.020368091391522097, - -0.9999995000000417 - ], - [ - 0.03476950403714565, - -0.06506206168625647, - -0.9999995000000417 - ], - [ - -0.06224032555574561, - -0.04803127499679504, - -0.9999995000000417 - ], - [ - -0.061548967981035256, - 0.058322301690142124, - -0.9999995000000417 - ], - [ - 0.051188314585571416, - 0.07666257688860607, - -0.9999995000000417 - ], - [ - 0.0906826453378799, - -0.03885647153071181, - -0.9999995000000417 - ], - [ - -0.023488496292899164, - -0.10091844113676374, - -0.9999995000000417 - ], - [ - -0.10870713106151549, - 0.00738991354177867, - -0.9999995000000417 - ], - [ - -0.010995564972351851, - 0.11544284417628632, - -0.9999995000000417 - ], - [ - 0.1186044921966221, - 0.03309738578078151, - -0.9999995000000417 - ], - [ - 0.05623494474556077, - -0.11578123950351657, - -0.9999995000000417 - ], - [ - -0.10869458299965204, - -0.07763932841190255, - -0.9999995000000417 - ], - [ - -0.09847931795222478, - 0.09921610594378376, - -0.9999995000000417 - ], - [ - 0.08538010702407933, - 0.11989079468678306, - -0.9999995000000417 - ] - ] - }, - { - "name": "south_pole_exact", - "center": [ - 0, - 3.141592653589793 - ], - "scaleRad": 0.0011930961683554986, - "sampleCount": 24, - "samples": [ - [ - -0.000008111485877501899, - 0.000047029451878247704, - -1 - ], - [ - 0.00008993294915138049, - 0.00003197384627164055, - -1 - ], - [ - 0.00007019139689249155, - -0.00012478484573977627, - -1 - ], - [ - -0.00014805194847313275, - -0.00012050588909698001, - -1 - ], - [ - -0.0001798955781941914, - 0.00015676963871845976, - -1 - ], - [ - 0.00014869471283942637, - 0.00024470848385302113, - -1 - ], - [ - 0.0003108246456520548, - -0.00012242855656996535, - -1 - ], - [ - -0.00007750538405737543, - -0.000373841022972632, - -1 - ], - [ - -0.0004292717668138348, - 0.000014441590370870706, - -1 - ], - [ - -0.00006525626044601995, - 0.000472755936169729, - -1 - ], - [ - 0.0005002643684550902, - 0.00015912571399626639, - -1 - ], - [ - 0.000263824251592406, - -0.0005082973569238787, - -1 - ], - [ - -0.0004940650421020569, - -0.00037524433591246126, - -1 - ], - [ - -0.0004886638110496323, - 0.00045564298195423534, - -1 - ], - [ - 0.0003920962090019823, - 0.000598926381942235, - -1 - ], - [ - 0.0007006456680043924, - -0.000303566183833686, - -1 - ], - [ - -0.0001913163759860691, - -0.0007884253213809667, - -1 - ], - [ - -0.000857086960115884, - 0.00005773369954514586, - -1 - ], - [ - -0.0000937153500442932, - 0.0009018972201272369, - -1 - ], - [ - 0.0009187850965883159, - 0.00025857332641235554, - -1 - ], - [ - 0.0004315230071268991, - -0.0009045409336212232, - -1 - ], - [ - -0.0008569889283825758, - -0.0006065572532179887, - -1 - ], - [ - -0.0007771821701995504, - 0.0007751258276858106, - -1 - ], - [ - 0.0006592195874278255, - 0.0009366468334904926, - -1 - ] - ] - } - ] -} \ No newline at end of file diff --git a/tests/integration/wireframe-3.json b/tests/integration/wireframe-3.json index 50edb67..3aaee02 100644 --- a/tests/integration/wireframe-3.json +++ b/tests/integration/wireframe-3.json @@ -234,27 +234,27 @@ [ [ 123, - 74.36057237196528 + 58.39714590743121 ], [ - 120.54125089451111, - 68.9918681535092 + 124.98162306824895, + 63.849287515407056 ], [ - 124.98162306824895, - 63.84928751540707 + 120.54125089451111, + 68.9918681535092 ], [ - 136.20468816978394, - 65.93364649815369 + 109.79531183021612, + 65.9336464981537 ], [ - 137.2272404283944, - 71.36374064060091 + 113.92645376860008, + 60.7137025016718 ], [ 123, - 74.36057237196528 + 58.39714590743121 ] ] ] @@ -271,27 +271,27 @@ [ [ 123, - 58.39714590743121 - ], - [ - 124.98162306824895, - 63.849287515407056 + 74.36057237196528 ], [ 120.54125089451111, 68.9918681535092 ], [ - 109.79531183021612, - 65.9336464981537 + 124.98162306824895, + 63.84928751540707 ], [ - 113.92645376860008, - 60.7137025016718 + 136.20468816978394, + 65.93364649815369 + ], + [ + 137.2272404283944, + 71.36374064060091 ], [ 123, - 58.39714590743121 + 74.36057237196528 ] ] ] @@ -307,28 +307,28 @@ "coordinates": [ [ [ - 159, - 71.63831857176568 - ], - [ - 149.05230089413004, - 67.1780285093276 + 142.47726943706164, + 56.87074422653197 ], [ 147.8686978246073, 61.781280419764386 ], [ - 159, - 62.29494457557203 + 149.05230089413004, + 67.1780285093276 ], [ - 164.88922652871554, - 66.51647821230704 + 136.20468816978394, + 65.93364649815369 ], [ - 159, - 71.63831857176568 + 135.55536846386212, + 60.44033209336555 + ], + [ + 142.47726943706164, + 56.87074422653197 ] ] ] @@ -344,28 +344,28 @@ "coordinates": [ [ [ - 142.47726943706164, - 56.87074422653197 - ], - [ - 147.8686978246073, - 61.781280419764386 + 159, + 71.63831857176568 ], [ 149.05230089413004, 67.1780285093276 ], [ - 136.20468816978394, - 65.93364649815369 + 147.8686978246073, + 61.781280419764386 ], [ - 135.55536846386212, - 60.44033209336555 + 159, + 62.29494457557203 ], [ - 142.47726943706164, - 56.87074422653197 + 164.88922652871554, + 66.51647821230704 + ], + [ + 159, + 71.63831857176568 ] ] ] @@ -492,28 +492,28 @@ "coordinates": [ [ [ - 103.52273056293836, - 56.870744226531954 - ], - [ - 101.61275057729273, - 62.34393105971 + 87, + 71.63831857176568 ], [ 92.88922652871554, 66.51647821230705 ], [ - 87, - 62.29494457557203 + 101.61275057729273, + 62.343931059710016 ], [ - 94.09166205123802, - 57.81563497087593 + 109.79531183021612, + 65.9336464981537 ], [ - 103.52273056293836, - 56.870744226531954 + 103.4811076489068, + 70.95171673152534 + ], + [ + 87, + 71.63831857176568 ] ] ] @@ -529,28 +529,28 @@ "coordinates": [ [ [ - 87, - 71.63831857176568 + 103.52273056293836, + 56.870744226531954 ], [ - 92.88922652871554, - 66.51647821230705 + 101.61275057729273, + 62.34393105971 ], [ - 101.61275057729273, - 62.343931059710016 + 92.88922652871554, + 66.51647821230705 ], [ - 109.79531183021612, - 65.9336464981537 + 87, + 62.29494457557203 ], [ - 103.4811076489068, - 70.95171673152534 + 94.09166205123802, + 57.81563497087593 ], [ - 87, - 71.63831857176568 + 103.52273056293836, + 56.870744226531954 ] ] ] @@ -3008,28 +3008,28 @@ "coordinates": [ [ [ - -93, - 8.162533854955067 - ], - [ - -90.64442556562278, - 3.10983996664447 + -83.9878460377891, + -5.539553971242925 ], [ -86.25122597713244, -0.42630945444008767 ], [ - -83.8521767775203, - 4.0621400945523005 + -90.64442556562278, + 3.10983996664447 ], [ - -87.61169797676752, - 8.16987845107548 + -93, + -1.251328966632106 ], [ - -93, - 8.162533854955067 + -89.19978324083445, + -5.549226566225722 + ], + [ + -83.9878460377891, + -5.539553971242925 ] ] ] @@ -3045,28 +3045,28 @@ "coordinates": [ [ [ - -83.9878460377891, - -5.539553971242925 - ], - [ - -86.25122597713244, - -0.42630945444008767 + -93, + 8.162533854955067 ], [ -90.64442556562278, 3.10983996664447 ], [ - -93, - -1.251328966632106 + -86.25122597713244, + -0.42630945444008767 ], [ - -89.19978324083445, - -5.549226566225722 + -83.8521767775203, + 4.0621400945523005 ], [ - -83.9878460377891, - -5.539553971242925 + -87.61169797676752, + 8.16987845107548 + ], + [ + -93, + 8.162533854955067 ] ] ] @@ -3193,28 +3193,28 @@ "coordinates": [ [ [ - -66.0121539622109, - 5.539553971242925 - ], - [ - -68.04460765925705, - 10.828943190607772 + -74.36878034136026, + 19.765749214107952 ], [ -72.20058374954289, 14.463481187019147 ], [ - -74.67618398940124, - 9.762942861013203 + -68.04460765925705, + 10.828943190607772 ], [ - -71.11430036573398, - 5.5063008094177865 + -65.58826631565478, + 15.528436771949771 ], [ - -66.0121539622109, - 5.539553971242925 + -68.4780862096332, + 19.642797754009656 + ], + [ + -74.36878034136026, + 19.765749214107952 ] ] ] @@ -3230,28 +3230,28 @@ "coordinates": [ [ [ - -74.36878034136026, - 19.765749214107952 - ], - [ - -72.20058374954289, - 14.463481187019147 + -66.0121539622109, + 5.539553971242925 ], [ -68.04460765925705, 10.828943190607772 ], [ - -65.58826631565478, - 15.528436771949771 + -72.20058374954289, + 14.463481187019147 ], [ - -68.4780862096332, - 19.642797754009656 + -74.67618398940124, + 9.762942861013203 ], [ - -74.36878034136026, - 19.765749214107952 + -71.11430036573398, + 5.5063008094177865 + ], + [ + -66.0121539622109, + 5.539553971242925 ] ] ] @@ -3267,28 +3267,28 @@ "coordinates": [ [ [ - -75, - 0 - ], - [ - -77.13917795701809, - 5.143241322392131 + -83.57914260098369, + 13.628636133967648 ], [ -81.39859782947053, 8.603481919068038 ], [ - -83.8521767775203, - 4.0621400945523005 + -77.13917795701809, + 5.143241322392131 ], [ - -80.15725099387515, - -0.10314939756247994 + -74.67618398940124, + 9.762942861013203 ], [ - -75, - 0 + -78.28440890215518, + 13.94531397116376 + ], + [ + -83.57914260098369, + 13.628636133967648 ] ] ] @@ -3304,28 +3304,28 @@ "coordinates": [ [ [ - -83.57914260098369, - 13.628636133967648 - ], - [ - -81.39859782947053, - 8.603481919068038 + -75, + 0 ], [ -77.13917795701809, 5.143241322392131 ], [ - -74.67618398940124, - 9.762942861013203 + -81.39859782947053, + 8.603481919068038 ], [ - -78.28440890215518, - 13.94531397116376 + -83.8521767775203, + 4.0621400945523005 ], [ - -83.57914260098369, - 13.628636133967648 + -80.15725099387515, + -0.10314939756247994 + ], + [ + -75, + 0 ] ] ] @@ -3785,28 +3785,28 @@ "coordinates": [ [ [ - -75.64135569994602, - 30.465727352728223 - ], - [ - -69.33908541304464, - 30.34324917904292 + -57, + 31.832359041336087 ], [ -63.49431779429307, 32.546966500935476 ], [ - -67.10713910985169, - 36.82925957785007 + -69.33908541304464, + 30.34324917904292 ], [ - -73.59753304818116, - 35.33321153398975 + -66.00708988602287, + 26.118384205901382 ], [ - -75.64135569994602, - 30.465727352728223 + -59.94852481906753, + 27.346979608405157 + ], + [ + -57, + 31.832359041336087 ] ] ] @@ -3822,28 +3822,28 @@ "coordinates": [ [ [ - -57, - 31.832359041336087 - ], - [ - -63.49431779429307, - 32.546966500935476 + -75.64135569994602, + 30.465727352728223 ], [ -69.33908541304464, 30.34324917904292 ], [ - -66.00708988602287, - 26.118384205901382 + -63.49431779429307, + 32.546966500935476 ], [ - -59.94852481906753, - 27.346979608405157 + -67.10713910985169, + 36.82925957785007 ], [ - -57, - 31.832359041336087 + -73.59753304818116, + 35.33321153398975 + ], + [ + -75.64135569994602, + 30.465727352728223 ] ] ] @@ -3859,28 +3859,28 @@ "coordinates": [ [ [ - -78.78835881211404, - 40.90439811308671 + -57, + 42.37830150075416 ], [ - -71.28909434162085, - 40.975588175816924 + -64.59291246997742, + 43.158562576936596 ], [ - -64.59291246997748, - 43.158562576936596 + -71.28909434162085, + 40.975588175816924 ], [ - -69.21851395810796, - 47.279743783018084 + -67.10713910985169, + 36.82925957785007 ], [ - -76.20930683638824, - 46.13014415306687 + -60.32529676701586, + 37.97887688454019 ], [ - -78.78835881211404, - 40.90439811308671 + -57, + 42.37830150075416 ] ] ] @@ -3896,28 +3896,28 @@ "coordinates": [ [ [ - -57, - 42.37830150075416 - ], - [ - -64.59291246997742, - 43.158562576936596 + -78.78835881211404, + 40.90439811308671 ], [ -71.28909434162085, 40.975588175816924 ], [ - -67.10713910985169, - 36.82925957785007 + -64.59291246997748, + 43.158562576936596 ], [ - -60.32529676701586, - 37.97887688454019 + -69.21851395810796, + 47.279743783018084 ], [ - -57, - 42.37830150075416 + -76.20930683638824, + 46.13014415306687 + ], + [ + -78.78835881211404, + 40.90439811308671 ] ] ] @@ -4044,28 +4044,28 @@ "coordinates": [ [ [ - -57, - 21.27100957285517 - ], - [ - -62.95091516772004, - 21.873324381037982 + -74.36878034136026, + 19.765749214107952 ], [ -68.4780862096332, 19.642797754009656 ], [ - -65.58826631565478, - 15.528436771949746 + -62.95091516772004, + 21.873324381037982 ], [ - -59.78106949391383, - 16.783191210521874 + -66.00708988602287, + 26.118384205901382 ], [ - -57, - 21.27100957285517 + -71.90106314419495, + 24.600893533663328 + ], + [ + -74.36878034136026, + 19.765749214107952 ] ] ] @@ -4081,28 +4081,28 @@ "coordinates": [ [ [ - -74.36878034136026, - 19.765749214107952 - ], - [ - -68.4780862096332, - 19.642797754009656 + -57, + 21.27100957285517 ], [ -62.95091516772004, 21.873324381037982 ], [ - -66.00708988602287, - 26.118384205901382 + -68.4780862096332, + 19.642797754009656 ], [ - -71.90106314419495, - 24.600893533663328 + -65.58826631565478, + 15.528436771949746 ], [ - -74.36878034136026, - 19.765749214107952 + -59.78106949391383, + 16.783191210521874 + ], + [ + -57, + 21.27100957285517 ] ] ] @@ -6560,28 +6560,28 @@ "coordinates": [ [ [ - -42.7883588121141, - -40.904398113086714 - ], - [ - -35.74518258553974, - -42.67606053192684 + -21, + -42.37830150075417 ], [ -28.363435456125558, -41.43520069460249 ], [ - -31.107139109851687, - -36.82925957785007 + -35.74518258553974, + -42.67606053192684 ], [ - -38.02365696949073, - -37.06600414949624 + -33.21851395810796, + -47.27974378301812 ], [ - -42.7883588121141, - -40.904398113086714 + -24.88083905763574, + -46.76638952775175 + ], + [ + -21, + -42.37830150075417 ] ] ] @@ -6597,28 +6597,28 @@ "coordinates": [ [ [ - -21, - -42.37830150075417 - ], - [ - -28.363435456125558, - -41.43520069460249 + -42.7883588121141, + -40.904398113086714 ], [ -35.74518258553974, -42.67606053192684 ], [ - -33.21851395810796, - -47.27974378301812 + -28.363435456125558, + -41.43520069460249 ], [ - -24.88083905763574, - -46.76638952775175 + -31.107139109851687, + -36.82925957785007 ], [ - -21, - -42.37830150075417 + -38.02365696949073, + -37.06600414949624 + ], + [ + -42.7883588121141, + -40.904398113086714 ] ] ] @@ -6740,6 +6740,43 @@ "properties": { "cellIdHex": "35a0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -38.368780341360264, + -19.765749214107966 + ], + [ + -32.55917537940525, + -21.380387629741143 + ], + [ + -26.901745879528903, + -20.137164788518362 + ], + [ + -29.588266315654778, + -15.528436771949783 + ], + [ + -34.71086314054935, + -15.432569513598844 + ], + [ + -38.368780341360264, + -19.765749214107966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "35e0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -6775,35 +6812,35 @@ { "type": "Feature", "properties": { - "cellIdHex": "35e0000000000000" + "cellIdHex": "3620000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -38.368780341360264, - -19.765749214107966 + -39.641355699946075, + -30.46572735272821 ], [ - -32.55917537940525, - -21.380387629741143 + -33.57344707838553, + -32.1048342777988 ], [ - -26.901745879528903, - -20.137164788518362 + -27.373134860952177, + -30.793715935971445 ], [ - -29.588266315654778, - -15.528436771949783 + -30.007089886022868, + -26.118384205901382 ], [ - -34.71086314054935, - -15.432569513598844 + -36.08422626292304, + -26.362455496801513 ], [ - -38.368780341360264, - -19.765749214107966 + -39.641355699946075, + -30.46572735272821 ] ] ] @@ -6812,7 +6849,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "3620000000000000" + "cellIdHex": "3660000000000000" }, "geometry": { "type": "Polygon", @@ -6846,43 +6883,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "3660000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -39.641355699946075, - -30.46572735272821 - ], - [ - -33.57344707838553, - -32.1048342777988 - ], - [ - -27.373134860952177, - -30.793715935971445 - ], - [ - -30.007089886022868, - -26.118384205901382 - ], - [ - -36.08422626292304, - -26.362455496801513 - ], - [ - -39.641355699946075, - -30.46572735272821 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -7337,28 +7337,28 @@ "coordinates": [ [ [ - -47.57914260098369, - -13.628636133967648 - ], - [ - -43.88193456505019, - -9.549361382649163 + -39, + 0 ], [ -42.633243593839666, -4.214635756699458 ], [ - -47.8521767775203, - -4.0621400945523005 + -43.88193456505019, + -9.549361382649163 ], [ - -50.078700882406736, - -9.076711467300175 + -38.67618398940124, + -9.762942861013215 ], [ - -47.57914260098369, - -13.628636133967648 + -36.59654827278672, + -4.5858694444802 + ], + [ + -39, + 0 ] ] ] @@ -7374,28 +7374,28 @@ "coordinates": [ [ [ - -39, - 0 - ], - [ - -42.633243593839666, - -4.214635756699458 + -47.57914260098369, + -13.628636133967648 ], [ -43.88193456505019, -9.549361382649163 ], [ - -38.67618398940124, - -9.762942861013215 + -42.633243593839666, + -4.214635756699458 ], [ - -36.59654827278672, - -4.5858694444802 + -47.8521767775203, + -4.0621400945523005 ], [ - -39, - 0 + -50.078700882406736, + -9.076711467300175 + ], + [ + -47.57914260098369, + -13.628636133967648 ] ] ] @@ -7411,28 +7411,28 @@ "coordinates": [ [ [ - -57, - -8.162533854955054 - ], - [ - -53.13421270677924, - -3.9695459436732334 + -47.98784603778904, + 5.539553971242925 ], [ -51.742809287812975, 1.3089274893843277 ], [ - -57, - 1.251328966632106 + -53.13421270677924, + -3.9695459436732334 ], [ - -59.35557443437722, - -3.10983996664447 + -47.8521767775203, + -4.0621400945523005 ], [ - -57, - -8.162533854955054 + -45.63997348195528, + 1.0136972426827464 + ], + [ + -47.98784603778904, + 5.539553971242925 ] ] ] @@ -7448,28 +7448,28 @@ "coordinates": [ [ [ - -47.98784603778904, - 5.539553971242925 - ], - [ - -51.742809287812975, - 1.3089274893843277 + -57, + -8.162533854955054 ], [ -53.13421270677924, -3.9695459436732334 ], [ - -47.8521767775203, - -4.0621400945523005 + -51.742809287812975, + 1.3089274893843277 ], [ - -45.63997348195528, - 1.0136972426827464 + -57, + 1.251328966632106 ], [ - -47.98784603778904, - 5.539553971242925 + -59.35557443437722, + -3.10983996664447 + ], + [ + -57, + -8.162533854955054 ] ] ] @@ -7596,28 +7596,28 @@ "coordinates": [ [ [ - -30.012153962210903, - -5.539553971242937 - ], - [ - -33.53222374775896, - -9.900718579752139 + -38.368780341360264, + -19.765749214107977 ], [ -34.71086314054935, -15.432569513598844 ], [ - -29.588266315654778, - -15.528436771949783 + -33.53222374775896, + -9.900718579752139 ], [ - -27.558021553926437, - -10.142420241197168 + -38.67618398940124, + -9.762942861013215 ], [ - -30.012153962210903, - -5.539553971242937 + -40.771919517371146, + -14.932275940698919 + ], + [ + -38.368780341360264, + -19.765749214107977 ] ] ] @@ -7633,28 +7633,28 @@ "coordinates": [ [ [ - -38.368780341360264, - -19.765749214107977 - ], - [ - -34.71086314054935, - -15.432569513598844 + -30.012153962210903, + -5.539553971242937 ], [ -33.53222374775896, -9.900718579752139 ], [ - -38.67618398940124, - -9.762942861013215 + -34.71086314054935, + -15.432569513598844 ], [ - -40.771919517371146, - -14.932275940698919 + -29.588266315654778, + -15.528436771949783 ], [ - -38.368780341360264, - -19.765749214107977 + -27.558021553926437, + -10.142420241197168 + ], + [ + -30.012153962210903, + -5.539553971242937 ] ] ] @@ -7744,28 +7744,28 @@ "coordinates": [ [ [ - -57, - -8.162533854955054 + -66.0121539622109, + 5.539553971242925 ], [ - -59.35557443437722, - -3.10983996664447 + -63.748774022867565, + 0.42630945444010043 ], [ - -63.748774022867565, - 0.42630945444008767 + -59.35557443437722, + -3.10983996664447 ], [ - -66.1478232224797, - -4.0621400945523005 + -57, + 1.2513289666321188 ], [ - -62.388302023232484, - -8.169878451075492 + -60.80021675916555, + 5.549226566225722 ], [ - -57, - -8.162533854955054 + -66.0121539622109, + 5.539553971242925 ] ] ] @@ -7781,28 +7781,28 @@ "coordinates": [ [ [ - -66.0121539622109, - 5.539553971242925 - ], - [ - -63.748774022867565, - 0.42630945444010043 + -57, + -8.162533854955054 ], [ -59.35557443437722, -3.10983996664447 ], [ - -57, - 1.2513289666321188 + -63.748774022867565, + 0.42630945444008767 ], [ - -60.80021675916555, - 5.549226566225722 + -66.1478232224797, + -4.0621400945523005 ], [ - -66.0121539622109, - 5.539553971242925 + -62.388302023232484, + -8.169878451075492 + ], + [ + -57, + -8.162533854955054 ] ] ] @@ -7924,6 +7924,43 @@ "properties": { "cellIdHex": "29a0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.63121965863974, + -19.765749214107966 + ], + [ + -77.79941625045711, + -14.463481187019147 + ], + [ + -81.95539234074295, + -10.828943190607772 + ], + [ + -84.41173368434528, + -15.528436771949783 + ], + [ + -81.5219137903668, + -19.642797754009642 + ], + [ + -75.63121965863974, + -19.765749214107966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "29e0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -7959,35 +7996,35 @@ { "type": "Feature", "properties": { - "cellIdHex": "29e0000000000000" + "cellIdHex": "2a20000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -75.63121965863974, - -19.765749214107966 + -66.42085739901631, + -13.628636133967648 ], [ - -77.79941625045711, - -14.463481187019147 + -68.60140217052941, + -8.60348191906805 ], [ - -81.95539234074295, - -10.828943190607772 + -72.86082204298191, + -5.143241322392158 ], [ - -84.41173368434528, - -15.528436771949783 + -75.32381601059876, + -9.762942861013215 ], [ - -81.5219137903668, - -19.642797754009642 + -71.71559109784482, + -13.945313971163772 ], [ - -75.63121965863974, - -19.765749214107966 + -66.42085739901631, + -13.628636133967648 ] ] ] @@ -7996,7 +8033,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "2a20000000000000" + "cellIdHex": "2a60000000000000" }, "geometry": { "type": "Polygon", @@ -8030,43 +8067,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "2a60000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.42085739901631, - -13.628636133967648 - ], - [ - -68.60140217052941, - -8.60348191906805 - ], - [ - -72.86082204298191, - -5.143241322392158 - ], - [ - -75.32381601059876, - -9.762942861013215 - ], - [ - -71.71559109784482, - -13.945313971163772 - ], - [ - -66.42085739901631, - -13.628636133967648 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -8928,28 +8928,28 @@ "coordinates": [ [ [ - -3.631219658639793, - -19.765749214107952 - ], - [ - -9.521913790366852, - -19.642797754009656 + -21, + -21.27100957285517 ], [ -15.04908483227996, -21.873324381037982 ], [ - -11.992910113977132, - -26.118384205901382 + -9.521913790366852, + -19.642797754009642 ], [ - -6.09893685580505, - -24.600893533663314 + -12.411733684345222, + -15.528436771949758 ], [ - -3.631219658639793, - -19.765749214107952 + -18.218930506086167, + -16.783191210521874 + ], + [ + -21, + -21.27100957285517 ] ] ] @@ -8965,28 +8965,28 @@ "coordinates": [ [ [ - -21, - -21.27100957285517 + -3.631219658639793, + -19.765749214107952 ], [ - -15.04908483227996, - -21.873324381037982 + -9.521913790366852, + -19.642797754009656 ], [ - -9.521913790366852, - -19.642797754009642 + -15.04908483227996, + -21.873324381037982 ], [ - -12.411733684345222, - -15.528436771949758 + -11.992910113977132, + -26.118384205901382 ], [ - -18.218930506086167, - -16.783191210521874 + -6.09893685580505, + -24.600893533663314 ], [ - -21, - -21.27100957285517 + -3.631219658639793, + -19.765749214107952 ] ] ] @@ -9113,28 +9113,28 @@ "coordinates": [ [ [ - -21, - -42.37830150075417 - ], - [ - -13.407087530022523, - -43.15856257693659 + 0.7883588121139837, + -40.904398113086714 ], [ -6.710905658379147, -40.97558817581691 ], [ - -10.892860890148313, - -36.82925957785007 + -13.407087530022523, + -43.15856257693659 ], [ - -17.674703232984143, - -37.9788768845402 + -8.781486041892094, + -47.27974378301809 ], [ - -21, - -42.37830150075417 + -1.7906931636117633, + -46.130144153066865 + ], + [ + 0.7883588121139837, + -40.904398113086714 ] ] ] @@ -9150,28 +9150,28 @@ "coordinates": [ [ [ - 0.7883588121139837, - -40.904398113086714 - ], - [ - -6.710905658379147, - -40.97558817581691 + -21, + -42.37830150075417 ], [ -13.407087530022523, -43.15856257693659 ], [ - -8.781486041892094, - -47.27974378301809 + -6.710905658379147, + -40.97558817581691 ], [ - -1.7906931636117633, - -46.130144153066865 + -10.892860890148313, + -36.82925957785007 ], [ - 0.7883588121139837, - -40.904398113086714 + -17.674703232984143, + -37.9788768845402 + ], + [ + -21, + -42.37830150075417 ] ] ] @@ -9187,28 +9187,28 @@ "coordinates": [ [ [ - -21, - -31.832359041336087 - ], - [ - -14.505682205706876, - -32.546966500935476 + -2.358644300053925, + -30.46572735272821 ], [ -8.6609145869553, -30.34324917904292 ], [ - -11.992910113977132, - -26.118384205901382 + -14.505682205706876, + -32.546966500935476 ], [ - -18.05147518093247, - -27.346979608405157 + -10.892860890148313, + -36.82925957785007 ], [ - -21, - -31.832359041336087 + -4.402466951818724, + -35.33321153398974 + ], + [ + -2.358644300053925, + -30.46572735272821 ] ] ] @@ -9224,28 +9224,28 @@ "coordinates": [ [ [ - -2.358644300053925, - -30.46572735272821 - ], - [ - -8.6609145869553, - -30.34324917904292 + -21, + -31.832359041336087 ], [ -14.505682205706876, -32.546966500935476 ], [ - -10.892860890148313, - -36.82925957785007 + -8.6609145869553, + -30.34324917904292 ], [ - -4.402466951818724, - -35.33321153398974 + -11.992910113977132, + -26.118384205901382 ], [ - -2.358644300053925, - -30.46572735272821 + -18.05147518093247, + -27.346979608405157 + ], + [ + -21, + -31.832359041336087 ] ] ] @@ -10704,28 +10704,28 @@ "coordinates": [ [ [ - 33.63121965863979, - -19.765749214107966 - ], - [ - 37.28913685945065, - -15.432569513598844 + 41.98784603778904, + -5.539553971242925 ], [ 38.46777625224104, -9.900718579752139 ], [ - 33.32381601059876, - -9.762942861013228 + 37.28913685945065, + -15.432569513598844 ], [ - 31.22808048262891, - -14.932275940698919 + 42.41173368434522, + -15.528436771949796 ], [ - 33.63121965863979, - -19.765749214107966 + 44.44197844607356, + -10.14242024119718 + ], + [ + 41.98784603778904, + -5.539553971242925 ] ] ] @@ -10741,28 +10741,28 @@ "coordinates": [ [ [ - 41.98784603778904, - -5.539553971242925 - ], - [ - 38.46777625224104, - -9.900718579752139 + 33.63121965863979, + -19.765749214107966 ], [ 37.28913685945065, -15.432569513598844 ], [ - 42.41173368434522, - -15.528436771949796 + 38.46777625224104, + -9.900718579752139 ], [ - 44.44197844607356, - -10.14242024119718 + 33.32381601059876, + -9.762942861013228 ], [ - 41.98784603778904, - -5.539553971242925 + 31.22808048262891, + -14.932275940698919 + ], + [ + 33.63121965863979, + -19.765749214107966 ] ] ] @@ -10889,28 +10889,28 @@ "coordinates": [ [ [ - 24.01215396221096, - 5.5395539712429125 - ], - [ - 20.25719071218714, - 1.308927489384315 + 15, + -8.162533854955067 ], [ 18.865787293220706, -3.9695459436732463 ], [ - 24.1478232224797, - -4.0621400945523005 + 20.25719071218714, + 1.308927489384315 ], [ - 26.36002651804472, - 1.0136972426827335 + 15, + 1.251328966632093 ], [ - 24.01215396221096, - 5.5395539712429125 + 12.644425565622782, + -3.10983996664447 + ], + [ + 15, + -8.162533854955067 ] ] ] @@ -10926,28 +10926,28 @@ "coordinates": [ [ [ - 15, - -8.162533854955067 - ], - [ - 18.865787293220706, - -3.9695459436732463 + 24.01215396221096, + 5.5395539712429125 ], [ 20.25719071218714, 1.308927489384315 ], [ - 15, - 1.251328966632093 + 18.865787293220706, + -3.9695459436732463 ], [ - 12.644425565622782, - -3.10983996664447 + 24.1478232224797, + -4.0621400945523005 ], [ - 15, - -8.162533854955067 + 26.36002651804472, + 1.0136972426827335 + ], + [ + 24.01215396221096, + 5.5395539712429125 ] ] ] @@ -10963,28 +10963,28 @@ "coordinates": [ [ [ - 33, - 0 - ], - [ - 29.366756406160334, - -4.214635756699471 + 24.420857399016313, + -13.628636133967648 ], [ 28.118065434949813, -9.549361382649176 ], [ - 33.32381601059876, - -9.762942861013228 + 29.366756406160334, + -4.214635756699471 ], [ - 35.40345172721322, - -4.585869444480213 + 24.1478232224797, + -4.0621400945523005 ], [ - 33, - 0 + 21.921299117593207, + -9.076711467300175 + ], + [ + 24.420857399016313, + -13.628636133967648 ] ] ] @@ -11000,28 +11000,28 @@ "coordinates": [ [ [ - 24.420857399016313, - -13.628636133967648 - ], - [ - 28.118065434949813, - -9.549361382649176 + 33, + 0 ], [ 29.366756406160334, -4.214635756699471 ], [ - 24.1478232224797, - -4.0621400945523005 + 28.118065434949813, + -9.549361382649176 ], [ - 21.921299117593207, - -9.076711467300175 + 33.32381601059876, + -9.762942861013228 ], [ - 24.420857399016313, - -13.628636133967648 + 35.40345172721322, + -4.585869444480213 + ], + [ + 33, + 0 ] ] ] @@ -11481,28 +11481,28 @@ "coordinates": [ [ [ - 5.579142600983687, - -13.628636133967648 - ], - [ - 3.3985978294706456, - -8.603481919068038 + -3, + 0 ], [ -0.8608220429819085, -5.143241322392146 ], [ - -3.3238160105987617, - -9.762942861013215 + 3.3985978294706456, + -8.603481919068038 ], [ - 0.2844089021551781, - -13.945313971163772 + 5.852176777520299, + -4.0621400945523005 ], [ - 5.579142600983687, - -13.628636133967648 + 2.157250993875209, + 0.10314939756246717 + ], + [ + -3, + 0 ] ] ] @@ -11518,28 +11518,28 @@ "coordinates": [ [ [ - -3, - 0 - ], - [ - -0.8608220429819085, - -5.143241322392146 + 5.579142600983687, + -13.628636133967648 ], [ 3.3985978294706456, -8.603481919068038 ], [ - 5.852176777520299, - -4.0621400945523005 + -0.8608220429819085, + -5.143241322392146 ], [ - 2.157250993875209, - 0.10314939756246717 + -3.3238160105987617, + -9.762942861013215 ], [ - -3, - 0 + 0.2844089021551781, + -13.945313971163772 + ], + [ + 5.579142600983687, + -13.628636133967648 ] ] ] @@ -11555,28 +11555,28 @@ "coordinates": [ [ [ - -3.631219658639793, - -19.765749214107966 - ], - [ - -5.7994162504571705, - -14.463481187019163 + -11.98784603778904, + -5.539553971242925 ], [ -9.955392340742947, -10.828943190607784 ], [ - -12.411733684345222, - -15.528436771949796 + -5.7994162504571705, + -14.463481187019163 ], [ - -9.521913790366852, - -19.642797754009642 + -3.3238160105987617, + -9.762942861013215 ], [ - -3.631219658639793, - -19.765749214107966 + -6.885699634266075, + -5.506300809417799 + ], + [ + -11.98784603778904, + -5.539553971242925 ] ] ] @@ -11592,28 +11592,28 @@ "coordinates": [ [ [ - -11.98784603778904, - -5.539553971242925 - ], - [ - -9.955392340742947, - -10.828943190607784 + -3.631219658639793, + -19.765749214107966 ], [ -5.7994162504571705, -14.463481187019163 ], [ - -3.3238160105987617, - -9.762942861013215 + -9.955392340742947, + -10.828943190607784 ], [ - -6.885699634266075, - -5.506300809417799 + -12.411733684345222, + -15.528436771949796 ], [ - -11.98784603778904, - -5.539553971242925 + -9.521913790366852, + -19.642797754009642 + ], + [ + -3.631219658639793, + -19.765749214107966 ] ] ] @@ -11740,28 +11740,28 @@ "coordinates": [ [ [ - 5.987846037789041, - 5.5395539712429125 - ], - [ - 8.251225977132435, - 0.42630945444008767 + 15, + -8.162533854955054 ], [ 12.644425565622782, -3.10983996664447 ], [ - 15, - 1.251328966632093 + 8.251225977132435, + 0.42630945444008767 ], [ - 11.19978324083445, - 5.5492265662256965 + 5.852176777520299, + -4.0621400945523005 ], [ - 5.987846037789041, - 5.5395539712429125 + 9.611697976767573, + -8.169878451075492 + ], + [ + 15, + -8.162533854955054 ] ] ] @@ -11777,28 +11777,28 @@ "coordinates": [ [ [ - 15, - -8.162533854955054 - ], - [ - 12.644425565622782, - -3.10983996664447 + 5.987846037789041, + 5.5395539712429125 ], [ 8.251225977132435, 0.42630945444008767 ], [ - 5.852176777520299, - -4.0621400945523005 + 12.644425565622782, + -3.10983996664447 ], [ - 9.611697976767573, - -8.169878451075492 + 15, + 1.251328966632093 ], [ - 15, - -8.162533854955054 + 11.19978324083445, + 5.5492265662256965 + ], + [ + 5.987846037789041, + 5.5395539712429125 ] ] ] @@ -12660,43 +12660,6 @@ "properties": { "cellIdHex": "61a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -21, - 42.39894636280652 - ], - [ - -19.687105879733735, - 47.76170008770642 - ], - [ - -22.44945565043008, - 52.91846231840442 - ], - [ - -29.339381440482327, - 49.98534085570772 - ], - [ - -27.35465571568659, - 44.69516379727326 - ], - [ - -21, - 42.39894636280652 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "61e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -12732,35 +12695,35 @@ { "type": "Feature", "properties": { - "cellIdHex": "6220000000000000" + "cellIdHex": "61e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -35.21164118788596, - 40.90439811308672 + -21, + 42.39894636280652 ], [ - -35.37045192590489, - 46.57890392027435 + -19.687105879733735, + 47.76170008770642 ], [ - -39.54485244440184, - 51.267463838904355 + -22.44945565043008, + 52.91846231840442 ], [ - -44.78148604189204, - 47.27974378301808 + -29.339381440482327, + 49.98534085570772 ], [ - -42.25481741446026, - 42.67606053192684 + -27.35465571568659, + 44.69516379727326 ], [ - -35.21164118788596, - 40.90439811308672 + -21, + 42.39894636280652 ] ] ] @@ -12769,7 +12732,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "6260000000000000" + "cellIdHex": "6220000000000000" }, "geometry": { "type": "Polygon", @@ -12803,6 +12766,43 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "6260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -35.21164118788596, + 40.90439811308672 + ], + [ + -35.37045192590489, + 46.57890392027435 + ], + [ + -39.54485244440184, + 51.267463838904355 + ], + [ + -44.78148604189204, + 47.27974378301808 + ], + [ + -42.25481741446026, + 42.67606053192684 + ], + [ + -35.21164118788596, + 40.90439811308672 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -12924,28 +12924,28 @@ "coordinates": [ [ [ - -1.5227305629383636, - 56.87074422653197 + -6.788358812113984, + 40.90439811308671 ], [ - -5.130441412301366, - 51.72230227360569 + -4.209306836388237, + 46.13014415306687 ], [ - -4.209306836388123, - 46.130144153066865 + -5.130441412301366, + 51.722302273605685 ], [ - 2.7814860418920944, - 47.27974378301808 + -12.660618559517616, + 49.985340855707705 ], [ - 4.285132989958015, - 52.91107866300976 + -12.196616921395389, + 44.45585692899723 ], [ - -1.5227305629383636, - 56.87074422653197 + -6.788358812113984, + 40.90439811308671 ] ] ] @@ -12961,28 +12961,28 @@ "coordinates": [ [ [ - -6.788358812113984, - 40.90439811308671 + -1.5227305629383636, + 56.87074422653197 ], [ - -4.209306836388237, - 46.13014415306687 + -5.130441412301366, + 51.72230227360569 ], [ - -5.130441412301366, - 51.722302273605685 + -4.209306836388123, + 46.130144153066865 ], [ - -12.660618559517616, - 49.985340855707705 + 2.7814860418920944, + 47.27974378301808 ], [ - -12.196616921395389, - 44.45585692899723 + 4.285132989958015, + 52.91107866300976 ], [ - -6.788358812113984, - 40.90439811308671 + -1.5227305629383636, + 56.87074422653197 ] ] ] @@ -13072,28 +13072,28 @@ "coordinates": [ [ [ - -2.368780341360207, - 19.765749214107938 - ], - [ - 3.5219137903668525, - 19.642797754009642 + 15, + 21.271009572855146 ], [ 9.04908483227996, 21.873324381037957 ], [ - 5.992910113977132, - 26.118384205901382 + 3.5219137903668525, + 19.64279775400963 ], [ - 0.09893685580505007, - 24.600893533663303 + 6.411733684345222, + 15.528436771949746 ], [ - -2.368780341360207, - 19.765749214107938 + 12.218930506086167, + 16.783191210521874 + ], + [ + 15, + 21.271009572855146 ] ] ] @@ -13109,28 +13109,28 @@ "coordinates": [ [ [ - 15, - 21.271009572855146 + -2.368780341360207, + 19.765749214107938 ], [ - 9.04908483227996, - 21.873324381037957 + 3.5219137903668525, + 19.642797754009642 ], [ - 3.5219137903668525, - 19.64279775400963 + 9.04908483227996, + 21.873324381037957 ], [ - 6.411733684345222, - 15.528436771949746 + 5.992910113977132, + 26.118384205901382 ], [ - 12.218930506086167, - 16.783191210521874 + 0.09893685580505007, + 24.600893533663303 ], [ - 15, - 21.271009572855146 + -2.368780341360207, + 19.765749214107938 ] ] ] @@ -13257,28 +13257,28 @@ "coordinates": [ [ [ - 15, - 42.378301500754155 - ], - [ - 7.407087530022636, - 43.158562576936596 + -6.788358812113984, + 40.90439811308671 ], [ 0.7109056583791471, 40.97558817581692 ], [ - 4.892860890148313, - 36.82925957785007 + 7.407087530022636, + 43.158562576936596 ], [ - 11.674703232984143, - 37.97887688454019 + 2.7814860418920944, + 47.27974378301808 ], [ - 15, - 42.378301500754155 + -4.209306836388123, + 46.130144153066865 + ], + [ + -6.788358812113984, + 40.90439811308671 ] ] ] @@ -13294,28 +13294,28 @@ "coordinates": [ [ [ - -6.788358812113984, - 40.90439811308671 - ], - [ - 0.7109056583791471, - 40.97558817581692 + 15, + 42.378301500754155 ], [ 7.407087530022636, 43.158562576936596 ], [ - 2.7814860418920944, - 47.27974378301808 + 0.7109056583791471, + 40.97558817581692 ], [ - -4.209306836388123, - 46.130144153066865 + 4.892860890148313, + 36.82925957785007 ], [ - -6.788358812113984, - 40.90439811308671 + 11.674703232984143, + 37.97887688454019 + ], + [ + 15, + 42.378301500754155 ] ] ] @@ -13331,28 +13331,28 @@ "coordinates": [ [ [ - 15, - 31.832359041336073 - ], - [ - 8.50568220570699, - 32.546966500935476 + -3.641355699946075, + 30.46572735272821 ], [ 2.660914586955414, 30.34324917904292 ], [ - 5.992910113977132, - 26.118384205901382 + 8.50568220570699, + 32.546966500935476 ], [ - 12.05147518093247, - 27.34697960840513 + 4.892860890148313, + 36.82925957785007 ], [ - 15, - 31.832359041336073 + -1.5975330481811625, + 35.33321153398974 + ], + [ + -3.641355699946075, + 30.46572735272821 ] ] ] @@ -13368,28 +13368,28 @@ "coordinates": [ [ [ - -3.641355699946075, - 30.46572735272821 - ], - [ - 2.660914586955414, - 30.34324917904292 + 15, + 31.832359041336073 ], [ 8.50568220570699, 32.546966500935476 ], [ - 4.892860890148313, - 36.82925957785007 + 2.660914586955414, + 30.34324917904292 ], [ - -1.5975330481811625, - 35.33321153398974 + 5.992910113977132, + 26.118384205901382 ], [ - -3.641355699946075, - 30.46572735272821 + 12.05147518093247, + 27.34697960840513 + ], + [ + 15, + 31.832359041336073 ] ] ] @@ -13849,28 +13849,28 @@ "coordinates": [ [ [ - -11.579142600983687, - 13.628636133967635 - ], - [ - -9.398597829470532, - 8.603481919068038 + -3, + 0 ], [ -5.1391779570180915, 5.143241322392131 ], [ - -2.6761839894012383, - 9.762942861013203 + -9.398597829470532, + 8.603481919068038 ], [ - -6.284408902155178, - 13.94531397116376 + -11.852176777520299, + 4.062140094552287 ], [ - -11.579142600983687, - 13.628636133967635 + -8.157250993875095, + -0.10314939756247994 + ], + [ + -3, + 0 ] ] ] @@ -13886,28 +13886,28 @@ "coordinates": [ [ [ - -3, - 0 - ], - [ - -5.1391779570180915, - 5.143241322392131 + -11.579142600983687, + 13.628636133967635 ], [ -9.398597829470532, 8.603481919068038 ], [ - -11.852176777520299, - 4.062140094552287 + -5.1391779570180915, + 5.143241322392131 ], [ - -8.157250993875095, - -0.10314939756247994 + -2.6761839894012383, + 9.762942861013203 ], [ - -3, - 0 + -6.284408902155178, + 13.94531397116376 + ], + [ + -11.579142600983687, + 13.628636133967635 ] ] ] @@ -13923,28 +13923,28 @@ "coordinates": [ [ [ - -2.368780341360207, - 19.765749214107938 - ], - [ - -0.20058374954282954, - 14.463481187019134 + 5.987846037789041, + 5.5395539712429125 ], [ 3.9553923407429465, 10.82894319060776 ], [ - 6.411733684345222, - 15.528436771949746 + -0.20058374954282954, + 14.463481187019134 ], [ - 3.5219137903668525, - 19.642797754009642 + -2.6761839894012383, + 9.762942861013203 ], [ - -2.368780341360207, - 19.765749214107938 + 0.885699634266075, + 5.5063008094177865 + ], + [ + 5.987846037789041, + 5.5395539712429125 ] ] ] @@ -13960,28 +13960,28 @@ "coordinates": [ [ [ - 5.987846037789041, - 5.5395539712429125 - ], - [ - 3.9553923407429465, - 10.82894319060776 + -2.368780341360207, + 19.765749214107938 ], [ -0.20058374954282954, 14.463481187019134 ], [ - -2.6761839894012383, - 9.762942861013203 + 3.9553923407429465, + 10.82894319060776 ], [ - 0.885699634266075, - 5.5063008094177865 + 6.411733684345222, + 15.528436771949746 ], [ - 5.987846037789041, - 5.5395539712429125 + 3.5219137903668525, + 19.642797754009642 + ], + [ + -2.368780341360207, + 19.765749214107938 ] ] ] @@ -14108,28 +14108,28 @@ "coordinates": [ [ [ - -11.98784603778904, - -5.539553971242925 - ], - [ - -14.251225977132435, - -0.42630945444010043 + -21, + 8.162533854955054 ], [ -18.644425565622782, 3.1098399666444574 ], [ - -21, - -1.2513289666321188 + -14.251225977132435, + -0.42630945444010043 ], [ - -17.19978324083445, - -5.549226566225735 + -11.852176777520299, + 4.062140094552287 ], [ - -11.98784603778904, - -5.539553971242925 + -15.611697976767573, + 8.169878451075492 + ], + [ + -21, + 8.162533854955054 ] ] ] @@ -14145,28 +14145,28 @@ "coordinates": [ [ [ - -21, - 8.162533854955054 - ], - [ - -18.644425565622782, - 3.1098399666444574 + -11.98784603778904, + -5.539553971242925 ], [ -14.251225977132435, -0.42630945444010043 ], [ - -11.852176777520299, - 4.062140094552287 + -18.644425565622782, + 3.1098399666444574 ], [ - -15.611697976767573, - 8.169878451075492 + -21, + -1.2513289666321188 ], [ - -21, - 8.162533854955054 + -17.19978324083445, + -5.549226566225735 + ], + [ + -11.98784603778904, + -5.539553971242925 ] ] ] @@ -16032,28 +16032,28 @@ "coordinates": [ [ [ - 51, - 8.16253385495504 - ], - [ - 53.35557443437722, - 3.1098399666444574 + 60.01215396221096, + -5.539553971242925 ], [ 57.748774022867565, -0.42630945444010043 ], [ - 60.1478232224797, - 4.062140094552287 + 53.35557443437722, + 3.1098399666444574 ], [ - 56.38830202323254, - 8.16987845107548 + 51, + -1.2513289666321188 ], [ - 51, - 8.16253385495504 + 54.80021675916555, + -5.549226566225735 + ], + [ + 60.01215396221096, + -5.539553971242925 ] ] ] @@ -16069,28 +16069,28 @@ "coordinates": [ [ [ - 60.01215396221096, - -5.539553971242925 - ], - [ - 57.748774022867565, - -0.42630945444010043 + 51, + 8.16253385495504 ], [ 53.35557443437722, 3.1098399666444574 ], [ - 51, - -1.2513289666321188 + 57.748774022867565, + -0.42630945444010043 ], [ - 54.80021675916555, - -5.549226566225735 + 60.1478232224797, + 4.062140094552287 ], [ - 60.01215396221096, - -5.539553971242925 + 56.38830202323254, + 8.16987845107548 + ], + [ + 51, + 8.16253385495504 ] ] ] @@ -16212,43 +16212,6 @@ "properties": { "cellIdHex": "71a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.98784603778904, - 5.539553971242925 - ], - [ - 75.95539234074295, - 10.828943190607772 - ], - [ - 71.79941625045717, - 14.463481187019147 - ], - [ - 69.32381601059876, - 9.762942861013203 - ], - [ - 72.88569963426608, - 5.506300809417799 - ], - [ - 77.98784603778904, - 5.539553971242925 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "71e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -16284,35 +16247,35 @@ { "type": "Feature", "properties": { - "cellIdHex": "7220000000000000" + "cellIdHex": "71e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 69, - 0 + 77.98784603778904, + 5.539553971242925 ], [ - 66.86082204298191, - 5.143241322392131 + 75.95539234074295, + 10.828943190607772 ], [ - 62.601402170529354, - 8.603481919068038 + 71.79941625045717, + 14.463481187019147 ], [ - 60.1478232224797, - 4.062140094552287 + 69.32381601059876, + 9.762942861013203 ], [ - 63.84274900612479, - -0.10314939756247994 + 72.88569963426608, + 5.506300809417799 ], [ - 69, - 0 + 77.98784603778904, + 5.539553971242925 ] ] ] @@ -16321,7 +16284,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "7260000000000000" + "cellIdHex": "7220000000000000" }, "geometry": { "type": "Polygon", @@ -16355,6 +16318,43 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "7260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69, + 0 + ], + [ + 66.86082204298191, + 5.143241322392131 + ], + [ + 62.601402170529354, + 8.603481919068038 + ], + [ + 60.1478232224797, + 4.062140094552287 + ], + [ + 63.84274900612479, + -0.10314939756247994 + ], + [ + 69, + 0 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -16809,28 +16809,28 @@ "coordinates": [ [ [ - 68.35864430005392, - 30.465727352728223 - ], - [ - 74.6609145869553, - 30.34324917904293 + 87, + 31.832359041336087 ], [ 80.50568220570699, 32.546966500935476 ], [ - 76.89286089014831, - 36.829259577850074 + 74.6609145869553, + 30.34324917904293 ], [ - 70.40246695181872, - 35.33321153398975 + 77.99291011397713, + 26.118384205901382 ], [ - 68.35864430005392, - 30.465727352728223 + 84.05147518093247, + 27.346979608405157 + ], + [ + 87, + 31.832359041336087 ] ] ] @@ -16846,28 +16846,28 @@ "coordinates": [ [ [ - 87, - 31.832359041336087 - ], - [ - 80.50568220570699, - 32.546966500935476 + 68.35864430005392, + 30.465727352728223 ], [ 74.6609145869553, 30.34324917904293 ], [ - 77.99291011397713, - 26.118384205901382 + 80.50568220570699, + 32.546966500935476 ], [ - 84.05147518093247, - 27.346979608405157 + 76.89286089014831, + 36.829259577850074 ], [ - 87, - 31.832359041336087 + 70.40246695181872, + 35.33321153398975 + ], + [ + 68.35864430005392, + 30.465727352728223 ] ] ] @@ -16883,28 +16883,28 @@ "coordinates": [ [ [ - 65.2116411878859, - 40.90439811308673 - ], - [ - 72.71090565837915, - 40.975588175816924 + 87, + 42.37830150075416 ], [ 79.40708753002252, 43.15856257693659 ], [ - 74.78148604189198, - 47.27974378301812 + 72.71090565837915, + 40.975588175816924 ], [ - 67.79069316361176, - 46.13014415306687 + 76.89286089014831, + 36.829259577850074 ], [ - 65.2116411878859, - 40.90439811308673 + 83.67470323298414, + 37.978876884540206 + ], + [ + 87, + 42.37830150075416 ] ] ] @@ -16920,28 +16920,28 @@ "coordinates": [ [ [ - 87, - 42.37830150075416 - ], - [ - 79.40708753002252, - 43.15856257693659 + 65.2116411878859, + 40.90439811308673 ], [ 72.71090565837915, 40.975588175816924 ], [ - 76.89286089014831, - 36.829259577850074 + 79.40708753002252, + 43.15856257693659 ], [ - 83.67470323298414, - 37.978876884540206 + 74.78148604189198, + 47.27974378301812 ], [ - 87, - 42.37830150075416 + 67.79069316361176, + 46.13014415306687 + ], + [ + 65.2116411878859, + 40.90439811308673 ] ] ] @@ -17068,28 +17068,28 @@ "coordinates": [ [ [ - 87, - 21.27100957285517 + 69.63121965863968, + 19.765749214107966 ], [ - 81.04908483227996, - 21.873324381037982 + 75.52191379036685, + 19.642797754009656 ], [ - 75.52191379036685, - 19.642797754009642 + 81.04908483227996, + 21.873324381037982 ], [ - 78.41173368434522, - 15.528436771949758 + 77.99291011397713, + 26.118384205901382 ], [ - 84.21893050608617, - 16.78319121052189 + 72.09893685580505, + 24.600893533663328 ], [ - 87, - 21.27100957285517 + 69.63121965863968, + 19.765749214107966 ] ] ] @@ -17105,28 +17105,28 @@ "coordinates": [ [ [ - 69.63121965863968, - 19.765749214107966 - ], - [ - 75.52191379036685, - 19.642797754009656 + 87, + 21.27100957285517 ], [ 81.04908483227996, 21.873324381037982 ], [ - 77.99291011397713, - 26.118384205901382 + 75.52191379036685, + 19.642797754009642 ], [ - 72.09893685580505, - 24.600893533663328 + 78.41173368434522, + 15.528436771949758 ], [ - 69.63121965863968, - 19.765749214107966 + 84.21893050608617, + 16.78319121052189 + ], + [ + 87, + 21.27100957285517 ] ] ] @@ -18585,28 +18585,28 @@ "coordinates": [ [ [ - 132.4208573990163, - 13.628636133967648 - ], - [ - 134.6014021705294, - 8.60348191906805 + 141, + 0 ], [ 138.8608220429819, 5.143241322392146 ], [ - 141.32381601059876, - 9.762942861013215 + 134.6014021705294, + 8.60348191906805 ], [ - 137.71559109784482, - 13.945313971163772 + 132.1478232224797, + 4.0621400945523005 ], [ - 132.4208573990163, - 13.628636133967648 + 135.8427490061248, + -0.10314939756246717 + ], + [ + 141, + 0 ] ] ] @@ -18622,28 +18622,28 @@ "coordinates": [ [ [ - 141, - 0 - ], - [ - 138.8608220429819, - 5.143241322392146 + 132.4208573990163, + 13.628636133967648 ], [ 134.6014021705294, 8.60348191906805 ], [ - 132.1478232224797, - 4.0621400945523005 + 138.8608220429819, + 5.143241322392146 ], [ - 135.8427490061248, - -0.10314939756246717 + 141.32381601059876, + 9.762942861013215 ], [ - 141, - 0 + 137.71559109784482, + 13.945313971163772 + ], + [ + 132.4208573990163, + 13.628636133967648 ] ] ] @@ -18659,28 +18659,28 @@ "coordinates": [ [ [ - 141.63121965863974, - 19.765749214107966 - ], - [ - 143.79941625045706, - 14.463481187019147 + 149.9878460377891, + 5.539553971242925 ], [ 147.9553923407429, 10.828943190607772 ], [ - 150.41173368434522, - 15.528436771949783 + 143.79941625045706, + 14.463481187019147 ], [ - 147.5219137903668, - 19.642797754009656 + 141.32381601059876, + 9.762942861013215 ], [ - 141.63121965863974, - 19.765749214107966 + 144.88569963426596, + 5.506300809417799 + ], + [ + 149.9878460377891, + 5.539553971242925 ] ] ] @@ -18696,28 +18696,28 @@ "coordinates": [ [ [ - 149.9878460377891, - 5.539553971242925 - ], - [ - 147.9553923407429, - 10.828943190607772 + 141.63121965863974, + 19.765749214107966 ], [ 143.79941625045706, 14.463481187019147 ], [ - 141.32381601059876, - 9.762942861013215 + 147.9553923407429, + 10.828943190607772 ], [ - 144.88569963426596, - 5.506300809417799 + 150.41173368434522, + 15.528436771949783 ], [ - 149.9878460377891, - 5.539553971242925 + 147.5219137903668, + 19.642797754009656 + ], + [ + 141.63121965863974, + 19.765749214107966 ] ] ] @@ -18844,28 +18844,28 @@ "coordinates": [ [ [ - 132.0121539622109, - -5.5395539712429125 + 123, + 8.162533854955067 ], [ - 129.74877402286756, - -0.42630945444008767 + 125.35557443437722, + 3.1098399666444827 ], [ - 125.35557443437716, - 3.10983996664447 + 129.74877402286756, + -0.42630945444008767 ], [ - 123, - -1.251328966632093 + 132.1478232224797, + 4.0621400945523005 ], [ - 126.80021675916555, - -5.54922656622571 + 128.38830202323254, + 8.169878451075492 ], [ - 132.0121539622109, - -5.5395539712429125 + 123, + 8.162533854955067 ] ] ] @@ -18881,28 +18881,28 @@ "coordinates": [ [ [ - 123, - 8.162533854955067 - ], - [ - 125.35557443437722, - 3.1098399666444827 + 132.0121539622109, + -5.5395539712429125 ], [ 129.74877402286756, -0.42630945444008767 ], [ - 132.1478232224797, - 4.0621400945523005 + 125.35557443437716, + 3.10983996664447 ], [ - 128.38830202323254, - 8.169878451075492 + 123, + -1.251328966632093 ], [ - 123, - 8.162533854955067 + 126.80021675916555, + -5.54922656622571 + ], + [ + 132.0121539622109, + -5.5395539712429125 ] ] ] @@ -18992,28 +18992,28 @@ "coordinates": [ [ [ - 104.36878034136026, - 19.765749214107977 - ], - [ - 100.71086314054935, - 15.432569513598832 + 96.0121539622109, + 5.539553971242925 ], [ 99.53222374775896, 9.900718579752127 ], [ - 104.67618398940124, - 9.762942861013215 + 100.71086314054935, + 15.432569513598832 ], [ - 106.77191951737115, - 14.932275940698919 + 95.58826631565478, + 15.528436771949783 ], [ - 104.36878034136026, - 19.765749214107977 + 93.55802155392638, + 10.142420241197168 + ], + [ + 96.0121539622109, + 5.539553971242925 ] ] ] @@ -19029,28 +19029,28 @@ "coordinates": [ [ [ - 96.0121539622109, - 5.539553971242925 - ], - [ - 99.53222374775896, - 9.900718579752127 + 104.36878034136026, + 19.765749214107977 ], [ 100.71086314054935, 15.432569513598832 ], [ - 95.58826631565478, - 15.528436771949783 + 99.53222374775896, + 9.900718579752127 ], [ - 93.55802155392638, - 10.142420241197168 + 104.67618398940124, + 9.762942861013215 ], [ - 96.0121539622109, - 5.539553971242925 + 106.77191951737115, + 14.932275940698919 + ], + [ + 104.36878034136026, + 19.765749214107977 ] ] ] @@ -19177,28 +19177,28 @@ "coordinates": [ [ [ - 113.98784603778904, - -5.5395539712429125 - ], - [ - 117.74280928781297, - -1.308927489384315 + 123, + 8.162533854955067 ], [ 119.13421270677924, 3.9695459436732463 ], [ - 113.8521767775203, - 4.0621400945523005 + 117.74280928781297, + -1.308927489384315 ], [ - 111.63997348195528, - -1.0136972426827335 + 123, + -1.251328966632093 ], [ - 113.98784603778904, - -5.5395539712429125 + 125.35557443437716, + 3.10983996664447 + ], + [ + 123, + 8.162533854955067 ] ] ] @@ -19214,28 +19214,28 @@ "coordinates": [ [ [ - 123, - 8.162533854955067 - ], - [ - 119.13421270677924, - 3.9695459436732463 + 113.98784603778904, + -5.5395539712429125 ], [ 117.74280928781297, -1.308927489384315 ], [ - 123, - -1.251328966632093 + 119.13421270677924, + 3.9695459436732463 ], [ - 125.35557443437716, - 3.10983996664447 + 113.8521767775203, + 4.0621400945523005 ], [ - 123, - 8.162533854955067 + 111.63997348195528, + -1.0136972426827335 + ], + [ + 113.98784603778904, + -5.5395539712429125 ] ] ] @@ -19251,28 +19251,28 @@ "coordinates": [ [ [ - 105, - 0 - ], - [ - 108.63324359383967, - 4.214635756699471 + 113.57914260098369, + 13.628636133967648 ], [ 109.88193456505019, 9.549361382649163 ], [ - 104.67618398940124, - 9.762942861013215 + 108.63324359383967, + 4.214635756699471 ], [ - 102.59654827278672, - 4.5858694444802 + 113.8521767775203, + 4.0621400945523005 ], [ - 105, - 0 + 116.07870088240679, + 9.076711467300175 + ], + [ + 113.57914260098369, + 13.628636133967648 ] ] ] @@ -19288,28 +19288,28 @@ "coordinates": [ [ [ - 113.57914260098369, - 13.628636133967648 - ], - [ - 109.88193456505019, - 9.549361382649163 + 105, + 0 ], [ 108.63324359383967, 4.214635756699471 ], [ - 113.8521767775203, - 4.0621400945523005 + 109.88193456505019, + 9.549361382649163 ], [ - 116.07870088240679, - 9.076711467300175 + 104.67618398940124, + 9.762942861013215 ], [ - 113.57914260098369, - 13.628636133967648 + 102.59654827278672, + 4.5858694444802 + ], + [ + 105, + 0 ] ] ] @@ -19764,43 +19764,6 @@ "properties": { "cellIdHex": "7da0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 105.64135569994608, - 30.46572735272821 - ], - [ - 99.57344707838553, - 32.10483427779879 - ], - [ - 93.37313486095212, - 30.793715935971456 - ], - [ - 96.00708988602287, - 26.118384205901382 - ], - [ - 102.08422626292304, - 26.362455496801513 - ], - [ - 105.64135569994608, - 30.46572735272821 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "7de0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -19836,35 +19799,35 @@ { "type": "Feature", "properties": { - "cellIdHex": "7e20000000000000" + "cellIdHex": "7de0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 104.36878034136026, - 19.765749214107966 + 105.64135569994608, + 30.46572735272821 ], [ - 98.55917537940525, - 21.380387629741133 + 99.57344707838553, + 32.10483427779879 ], [ - 92.9017458795289, - 20.137164788518362 + 93.37313486095212, + 30.793715935971456 ], [ - 95.58826631565478, - 15.528436771949783 + 96.00708988602287, + 26.118384205901382 ], [ - 100.71086314054935, - 15.432569513598832 + 102.08422626292304, + 26.362455496801513 ], [ - 104.36878034136026, - 19.765749214107966 + 105.64135569994608, + 30.46572735272821 ] ] ] @@ -19873,7 +19836,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "7e60000000000000" + "cellIdHex": "7e20000000000000" }, "geometry": { "type": "Polygon", @@ -19907,6 +19870,43 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "7e60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 104.36878034136026, + 19.765749214107966 + ], + [ + 98.55917537940525, + 21.380387629741133 + ], + [ + 92.9017458795289, + 20.137164788518362 + ], + [ + 95.58826631565478, + 15.528436771949783 + ], + [ + 100.71086314054935, + 15.432569513598832 + ], + [ + 104.36878034136026, + 19.765749214107966 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -20028,28 +20028,28 @@ "coordinates": [ [ [ - 87, - 42.37830150075416 - ], - [ - 94.36343545612556, - 41.435200694602486 + 108.78835881211404, + 40.90439811308673 ], [ 101.74518258553974, 42.676060531926844 ], [ - 99.21851395810802, - 47.27974378301812 + 94.36343545612556, + 41.435200694602486 ], [ - 90.88083905763574, - 46.766389527751734 + 97.10713910985169, + 36.82925957785007 ], [ - 87, - 42.37830150075416 + 104.02365696949073, + 37.06600414949623 + ], + [ + 108.78835881211404, + 40.90439811308673 ] ] ] @@ -20065,28 +20065,28 @@ "coordinates": [ [ [ - 108.78835881211404, - 40.90439811308673 - ], - [ - 101.74518258553974, - 42.676060531926844 + 87, + 42.37830150075416 ], [ 94.36343545612556, 41.435200694602486 ], [ - 97.10713910985169, - 36.82925957785007 + 101.74518258553974, + 42.676060531926844 ], [ - 104.02365696949073, - 37.06600414949623 + 99.21851395810802, + 47.27974378301812 ], [ - 108.78835881211404, - 40.90439811308673 + 90.88083905763574, + 46.766389527751734 + ], + [ + 87, + 42.37830150075416 ] ] ] @@ -21546,27 +21546,27 @@ [ [ 159, - -42.398946362806555 + -58.39714590743123 ], [ - 157.68710587973368, - -47.76170008770643 + 160.44945565043002, + -52.91846231840442 ], [ - 160.44945565043002, - -52.91846231840445 + 157.68710587973368, + -47.76170008770643 ], [ - 167.33938144048233, - -49.98534085570774 + 150.66061855951762, + -49.98534085570771 ], [ - 165.3546557156866, - -44.69516379727326 + 151.16469649469258, + -55.52245846635906 ], [ 159, - -42.398946362806555 + -58.39714590743123 ] ] ] @@ -21583,27 +21583,27 @@ [ [ 159, - -58.39714590743123 - ], - [ - 160.44945565043002, - -52.91846231840442 + -42.398946362806555 ], [ 157.68710587973368, -47.76170008770643 ], [ - 150.66061855951762, - -49.98534085570771 + 160.44945565043002, + -52.91846231840445 ], [ - 151.16469649469258, - -55.52245846635906 + 167.33938144048233, + -49.98534085570774 + ], + [ + 165.3546557156866, + -44.69516379727326 ], [ 159, - -58.39714590743123 + -42.398946362806555 ] ] ] @@ -21619,28 +21619,28 @@ "coordinates": [ [ [ - 173.2116411878859, - -40.904398113086714 - ], - [ - 173.3704519259049, - -46.578903920274364 + 178.47726943706164, + -56.870744226531976 ], [ 177.54485244440184, -51.267463838904355 ], [ - 182.78148604189204, - -47.27974378301809 + 173.3704519259049, + -46.578903920274364 ], [ - 180.25481741446026, - -42.67606053192684 + 167.33938144048233, + -49.98534085570774 ], [ - 173.2116411878859, - -40.904398113086714 + 169.85642605446066, + -55.278738559214055 + ], + [ + 178.47726943706164, + -56.870744226531976 ] ] ] @@ -21656,28 +21656,28 @@ "coordinates": [ [ [ - 178.47726943706164, - -56.870744226531976 - ], - [ - 177.54485244440184, - -51.267463838904355 + 173.2116411878859, + -40.904398113086714 ], [ 173.3704519259049, -46.578903920274364 ], [ - 167.33938144048233, - -49.98534085570774 + 177.54485244440184, + -51.267463838904355 ], [ - 169.85642605446066, - -55.278738559214055 + 182.78148604189204, + -47.27974378301809 ], [ - 178.47726943706164, - -56.870744226531976 + 180.25481741446026, + -42.67606053192684 + ], + [ + 173.2116411878859, + -40.904398113086714 ] ] ] @@ -21804,28 +21804,28 @@ "coordinates": [ [ [ - 139.52273056293836, - -56.870744226531976 + 144.78835881211404, + -40.904398113086714 ], [ - 143.13044141230137, - -51.72230227360571 + 142.20930683638824, + -46.130144153066865 ], [ - 142.20930683638818, - -46.130144153066865 + 143.13044141230137, + -51.72230227360571 ], [ - 135.21851395810796, - -47.27974378301806 + 150.66061855951762, + -49.98534085570771 ], [ - 133.71486701004198, - -52.91107866300977 + 150.19661692139545, + -44.45585692899725 ], [ - 139.52273056293836, - -56.870744226531976 + 144.78835881211404, + -40.904398113086714 ] ] ] @@ -21841,28 +21841,28 @@ "coordinates": [ [ [ - 144.78835881211404, - -40.904398113086714 - ], - [ - 142.20930683638824, - -46.130144153066865 + 139.52273056293836, + -56.870744226531976 ], [ 143.13044141230137, -51.72230227360571 ], [ - 150.66061855951762, - -49.98534085570771 + 142.20930683638818, + -46.130144153066865 ], [ - 150.19661692139545, - -44.45585692899725 + 135.21851395810796, + -47.27974378301806 ], [ - 144.78835881211404, - -40.904398113086714 + 133.71486701004198, + -52.91107866300977 + ], + [ + 139.52273056293836, + -56.870744226531976 ] ] ] @@ -21947,43 +21947,6 @@ "properties": { "cellIdHex": "8c60000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 140.36878034136026, - -19.765749214107938 - ], - [ - 134.4780862096332, - -19.642797754009642 - ], - [ - 128.95091516772004, - -21.873324381037968 - ], - [ - 132.00708988602287, - -26.118384205901382 - ], - [ - 137.90106314419495, - -24.600893533663314 - ], - [ - 140.36878034136026, - -19.765749214107938 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "8ca0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -22016,6 +21979,43 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "8ca0000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 140.36878034136026, + -19.765749214107938 + ], + [ + 134.4780862096332, + -19.642797754009642 + ], + [ + 128.95091516772004, + -21.873324381037968 + ], + [ + 132.00708988602287, + -26.118384205901382 + ], + [ + 137.90106314419495, + -24.600893533663314 + ], + [ + 140.36878034136026, + -19.765749214107938 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -22137,28 +22137,28 @@ "coordinates": [ [ [ - 123, - -42.37830150075417 - ], - [ - 130.59291246997748, - -43.15856257693659 + 144.78835881211398, + -40.904398113086714 ], [ 137.28909434162085, -40.97558817581691 ], [ - 133.1071391098517, - -36.82925957785007 + 130.59291246997748, + -43.15856257693659 ], [ - 126.32529676701586, - -37.9788768845402 + 135.21851395810796, + -47.27974378301806 ], [ - 123, - -42.37830150075417 + 142.20930683638818, + -46.130144153066865 + ], + [ + 144.78835881211398, + -40.904398113086714 ] ] ] @@ -22174,28 +22174,28 @@ "coordinates": [ [ [ - 144.78835881211398, - -40.904398113086714 - ], - [ - 137.28909434162085, - -40.97558817581691 + 123, + -42.37830150075417 ], [ 130.59291246997748, -43.15856257693659 ], [ - 135.21851395810796, - -47.27974378301806 + 137.28909434162085, + -40.97558817581691 ], [ - 142.20930683638818, - -46.130144153066865 + 133.1071391098517, + -36.82925957785007 ], [ - 144.78835881211398, - -40.904398113086714 + 126.32529676701586, + -37.9788768845402 + ], + [ + 123, + -42.37830150075417 ] ] ] @@ -22211,28 +22211,28 @@ "coordinates": [ [ [ - 123, - -31.83235904133611 - ], - [ - 129.49431779429307, - -32.546966500935504 + 141.64135569994608, + -30.46572735272821 ], [ 135.3390854130447, -30.34324917904292 ], [ - 132.00708988602287, - -26.118384205901382 + 129.49431779429307, + -32.546966500935504 ], [ - 125.94852481906753, - -27.346979608405157 + 133.1071391098517, + -36.82925957785007 ], [ - 123, - -31.83235904133611 + 139.59753304818122, + -35.33321153398977 + ], + [ + 141.64135569994608, + -30.46572735272821 ] ] ] @@ -22248,28 +22248,28 @@ "coordinates": [ [ [ - 141.64135569994608, - -30.46572735272821 - ], - [ - 135.3390854130447, - -30.34324917904292 + 123, + -31.83235904133611 ], [ 129.49431779429307, -32.546966500935504 ], [ - 133.1071391098517, - -36.82925957785007 + 135.3390854130447, + -30.34324917904292 ], [ - 139.59753304818122, - -35.33321153398977 + 132.00708988602287, + -26.118384205901382 ], [ - 141.64135569994608, - -30.46572735272821 + 125.94852481906753, + -27.346979608405157 + ], + [ + 123, + -31.83235904133611 ] ] ] @@ -22729,28 +22729,28 @@ "coordinates": [ [ [ - 149.5791426009837, - -13.628636133967648 - ], - [ - 147.39859782947053, - -8.603481919068038 + 141, + 0 ], [ 143.1391779570181, -5.143241322392146 ], [ - 140.67618398940124, - -9.762942861013215 + 147.39859782947053, + -8.603481919068038 ], [ - 144.28440890215518, - -13.94531397116376 + 149.8521767775203, + -4.0621400945523005 ], [ - 149.5791426009837, - -13.628636133967648 + 146.15725099387515, + 0.10314939756246717 + ], + [ + 141, + 0 ] ] ] @@ -22766,28 +22766,28 @@ "coordinates": [ [ [ - 141, - 0 - ], - [ - 143.1391779570181, - -5.143241322392146 + 149.5791426009837, + -13.628636133967648 ], [ 147.39859782947053, -8.603481919068038 ], [ - 149.8521767775203, - -4.0621400945523005 + 143.1391779570181, + -5.143241322392146 ], [ - 146.15725099387515, - 0.10314939756246717 + 140.67618398940124, + -9.762942861013215 ], [ - 141, - 0 + 144.28440890215518, + -13.94531397116376 + ], + [ + 149.5791426009837, + -13.628636133967648 ] ] ] @@ -22803,28 +22803,28 @@ "coordinates": [ [ [ - 140.36878034136026, - -19.765749214107952 - ], - [ - 138.2005837495429, - -14.463481187019147 + 132.0121539622109, + -5.539553971242925 ], [ 134.04460765925705, -10.828943190607772 ], [ - 131.58826631565478, - -15.528436771949746 + 138.2005837495429, + -14.463481187019147 ], [ - 134.4780862096332, - -19.642797754009642 + 140.67618398940124, + -9.762942861013215 ], [ - 140.36878034136026, - -19.765749214107952 + 137.11430036573398, + -5.506300809417799 + ], + [ + 132.0121539622109, + -5.539553971242925 ] ] ] @@ -22840,28 +22840,28 @@ "coordinates": [ [ [ - 132.0121539622109, - -5.539553971242925 - ], - [ - 134.04460765925705, - -10.828943190607772 + 140.36878034136026, + -19.765749214107952 ], [ 138.2005837495429, -14.463481187019147 ], [ - 140.67618398940124, - -9.762942861013215 + 134.04460765925705, + -10.828943190607772 ], [ - 137.11430036573398, - -5.506300809417799 + 131.58826631565478, + -15.528436771949746 ], [ - 132.0121539622109, - -5.539553971242925 + 134.4780862096332, + -19.642797754009642 + ], + [ + 140.36878034136026, + -19.765749214107952 ] ] ] @@ -22983,43 +22983,6 @@ "properties": { "cellIdHex": "9360000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 149.98784603778904, - 5.539553971242925 - ], - [ - 152.25122597713244, - 0.42630945444010043 - ], - [ - 156.64442556562278, - -3.10983996664447 - ], - [ - 159, - 1.2513289666321188 - ], - [ - 155.19978324083445, - 5.549226566225722 - ], - [ - 149.98784603778904, - 5.539553971242925 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "93a0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -23052,6 +23015,43 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "93a0000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 149.98784603778904, + 5.539553971242925 + ], + [ + 152.25122597713244, + 0.42630945444010043 + ], + [ + 156.64442556562278, + -3.10983996664447 + ], + [ + 159, + 1.2513289666321188 + ], + [ + 155.19978324083445, + 5.549226566225722 + ], + [ + 149.98784603778904, + 5.539553971242925 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -24320,28 +24320,28 @@ "coordinates": [ [ [ - 68.36878034136032, - -19.765749214107966 - ], - [ - 62.47808620963315, - -19.642797754009667 + 51, + -21.271009572855185 ], [ 56.95091516772004, -21.873324381037982 ], [ - 60.00708988602287, - -26.118384205901407 + 62.47808620963315, + -19.642797754009656 ], [ - 65.90106314419495, - -24.600893533663328 + 59.58826631565478, + -15.528436771949771 ], [ - 68.36878034136032, - -19.765749214107966 + 53.78106949391383, + -16.78319121052189 + ], + [ + 51, + -21.271009572855185 ] ] ] @@ -24357,28 +24357,28 @@ "coordinates": [ [ [ - 51, - -21.271009572855185 + 68.36878034136032, + -19.765749214107966 ], [ - 56.95091516772004, - -21.873324381037982 + 62.47808620963315, + -19.642797754009667 ], [ - 62.47808620963315, - -19.642797754009656 + 56.95091516772004, + -21.873324381037982 ], [ - 59.58826631565478, - -15.528436771949771 + 60.00708988602287, + -26.118384205901407 ], [ - 53.78106949391383, - -16.78319121052189 + 65.90106314419495, + -24.600893533663328 ], [ - 51, - -21.271009572855185 + 68.36878034136032, + -19.765749214107966 ] ] ] @@ -24505,28 +24505,28 @@ "coordinates": [ [ [ - 51, - -42.37830150075417 - ], - [ - 58.59291246997748, - -43.15856257693662 + 72.78835881211398, + -40.904398113086714 ], [ 65.28909434162085, -40.97558817581693 ], [ - 61.10713910985169, - -36.82925957785007 + 58.592912469977364, + -43.15856257693659 ], [ - 54.32529676701586, - -37.9788768845402 + 63.218513958107906, + -47.27974378301809 ], [ - 51, - -42.37830150075417 + 70.20930683638824, + -46.130144153066865 + ], + [ + 72.78835881211398, + -40.904398113086714 ] ] ] @@ -24542,28 +24542,28 @@ "coordinates": [ [ [ - 72.78835881211398, - -40.904398113086714 + 51, + -42.37830150075417 ], [ - 65.28909434162085, - -40.97558817581693 + 58.59291246997748, + -43.15856257693662 ], [ - 58.592912469977364, - -43.15856257693659 + 65.28909434162085, + -40.97558817581693 ], [ - 63.218513958107906, - -47.27974378301809 + 61.10713910985169, + -36.82925957785007 ], [ - 70.20930683638824, - -46.130144153066865 + 54.32529676701586, + -37.9788768845402 ], [ - 72.78835881211398, - -40.904398113086714 + 51, + -42.37830150075417 ] ] ] @@ -24579,28 +24579,28 @@ "coordinates": [ [ [ - 51, - -31.83235904133611 - ], - [ - 57.494317794293124, - -32.546966500935504 + 69.64135569994608, + -30.46572735272821 ], [ 63.3390854130447, -30.34324917904292 ], [ - 60.00708988602287, - -26.118384205901407 + 57.494317794293124, + -32.546966500935504 ], [ - 53.94852481906753, - -27.346979608405157 + 61.10713910985169, + -36.82925957785007 ], [ - 51, - -31.83235904133611 + 67.59753304818128, + -35.33321153398977 + ], + [ + 69.64135569994608, + -30.46572735272821 ] ] ] @@ -24616,28 +24616,28 @@ "coordinates": [ [ [ - 69.64135569994608, - -30.46572735272821 - ], - [ - 63.3390854130447, - -30.34324917904292 + 51, + -31.83235904133611 ], [ 57.494317794293124, -32.546966500935504 ], [ - 61.10713910985169, - -36.82925957785007 + 63.3390854130447, + -30.34324917904292 ], [ - 67.59753304818128, - -35.33321153398977 + 60.00708988602287, + -26.118384205901407 ], [ - 69.64135569994608, - -30.46572735272821 + 53.94852481906753, + -27.346979608405157 + ], + [ + 51, + -31.83235904133611 ] ] ] @@ -25098,27 +25098,27 @@ [ [ 87, - -42.39894636280653 - ], - [ - 85.68710587973362, - -47.76170008770643 + -58.39714590743121 ], [ 88.44945565043002, -52.91846231840442 ], [ - 95.33938144048227, + 85.68710587973362, + -47.76170008770643 + ], + [ + 78.66061855951762, -49.98534085570771 ], [ - 93.35465571568659, - -44.69516379727326 + 79.16469649469263, + -55.52245846635906 ], [ 87, - -42.39894636280653 + -58.39714590743121 ] ] ] @@ -25135,27 +25135,27 @@ [ [ 87, - -58.39714590743121 - ], - [ - 88.44945565043002, - -52.91846231840442 + -42.39894636280653 ], [ 85.68710587973362, -47.76170008770643 ], [ - 78.66061855951762, + 88.44945565043002, + -52.91846231840442 + ], + [ + 95.33938144048227, -49.98534085570771 ], [ - 79.16469649469263, - -55.52245846635906 + 93.35465571568659, + -44.69516379727326 ], [ 87, - -58.39714590743121 + -42.39894636280653 ] ] ] @@ -25171,28 +25171,28 @@ "coordinates": [ [ [ - 101.2116411878859, - -40.904398113086714 - ], - [ - 101.37045192590489, - -46.578903920274364 + 106.47726943706164, + -56.870744226531976 ], [ 105.54485244440184, -51.267463838904355 ], [ - 110.78148604189198, - -47.27974378301809 + 101.37045192590489, + -46.578903920274364 ], [ - 108.25481741446026, - -42.67606053192684 + 95.33938144048227, + -49.98534085570771 ], [ - 101.2116411878859, - -40.904398113086714 + 97.8564260544606, + -55.278738559214055 + ], + [ + 106.47726943706164, + -56.870744226531976 ] ] ] @@ -25208,28 +25208,28 @@ "coordinates": [ [ [ - 106.47726943706164, - -56.870744226531976 - ], - [ - 105.54485244440184, - -51.267463838904355 + 101.2116411878859, + -40.904398113086714 ], [ 101.37045192590489, -46.578903920274364 ], [ - 95.33938144048227, - -49.98534085570771 + 105.54485244440184, + -51.267463838904355 ], [ - 97.8564260544606, - -55.278738559214055 + 110.78148604189198, + -47.27974378301809 ], [ - 106.47726943706164, - -56.870744226531976 + 108.25481741446026, + -42.67606053192684 + ], + [ + 101.2116411878859, + -40.904398113086714 ] ] ] @@ -25356,28 +25356,28 @@ "coordinates": [ [ [ - 67.52273056293836, - -56.870744226531976 - ], - [ - 71.13044141230137, - -51.72230227360571 + 72.78835881211398, + -40.904398113086714 ], [ 70.20930683638824, -46.130144153066865 ], [ - 63.218513958107906, - -47.27974378301809 + 71.13044141230137, + -51.72230227360571 ], [ - 61.714867010041985, - -52.91107866300977 + 78.66061855951762, + -49.98534085570771 ], [ - 67.52273056293836, - -56.870744226531976 + 78.19661692139539, + -44.45585692899725 + ], + [ + 72.78835881211398, + -40.904398113086714 ] ] ] @@ -25393,28 +25393,28 @@ "coordinates": [ [ [ - 72.78835881211398, - -40.904398113086714 - ], - [ - 70.20930683638824, - -46.130144153066865 + 67.52273056293836, + -56.870744226531976 ], [ 71.13044141230137, -51.72230227360571 ], [ - 78.66061855951762, - -49.98534085570771 + 70.20930683638824, + -46.130144153066865 ], [ - 78.19661692139539, - -44.45585692899725 + 63.218513958107906, + -47.27974378301809 ], [ - 72.78835881211398, - -40.904398113086714 + 61.714867010041985, + -52.91107866300977 + ], + [ + 67.52273056293836, + -56.870744226531976 ] ] ] @@ -25504,28 +25504,28 @@ "coordinates": [ [ [ - 101.2116411878859, - -40.904398113086714 - ], - [ - 108.25481741446026, - -42.67606053192684 + 123, + -42.37830150075417 ], [ 115.63656454387444, -41.43520069460249 ], [ - 112.89286089014826, - -36.82925957785007 + 108.25481741446026, + -42.67606053192684 ], [ - 105.97634303050927, - -37.06600414949624 + 110.78148604189198, + -47.27974378301812 ], [ - 101.2116411878859, - -40.904398113086714 + 119.11916094236426, + -46.76638952775172 + ], + [ + 123, + -42.37830150075417 ] ] ] @@ -25541,28 +25541,28 @@ "coordinates": [ [ [ - 123, - -42.37830150075417 - ], - [ - 115.63656454387444, - -41.43520069460249 + 101.2116411878859, + -40.904398113086714 ], [ 108.25481741446026, -42.67606053192684 ], [ - 110.78148604189198, - -47.27974378301812 + 115.63656454387444, + -41.43520069460249 ], [ - 119.11916094236426, - -46.76638952775172 + 112.89286089014826, + -36.82925957785007 ], [ - 123, - -42.37830150075417 + 105.97634303050927, + -37.06600414949624 + ], + [ + 101.2116411878859, + -40.904398113086714 ] ] ] @@ -25689,28 +25689,28 @@ "coordinates": [ [ [ - 123, - -21.27100957285516 - ], - [ - 117.0982541204711, - -20.13716478851835 + 105.63121965863968, + -19.765749214107952 ], [ 111.44082462059475, -21.38038762974112 ], [ - 113.99291011397713, - -26.118384205901382 + 117.0982541204711, + -20.13716478851835 ], [ - 120.09132917183672, - -25.604851733521752 + 114.41173368434522, + -15.528436771949746 ], [ - 123, - -21.27100957285516 + 109.28913685945065, + -15.43256951359882 + ], + [ + 105.63121965863968, + -19.765749214107952 ] ] ] @@ -25726,28 +25726,28 @@ "coordinates": [ [ [ - 105.63121965863968, - -19.765749214107952 - ], - [ - 111.44082462059475, - -21.38038762974112 + 123, + -21.27100957285516 ], [ 117.0982541204711, -20.13716478851835 ], [ - 114.41173368434522, - -15.528436771949746 + 111.44082462059475, + -21.38038762974112 ], [ - 109.28913685945065, - -15.43256951359882 + 113.99291011397713, + -26.118384205901382 ], [ - 105.63121965863968, - -19.765749214107952 + 120.09132917183672, + -25.604851733521752 + ], + [ + 123, + -21.27100957285516 ] ] ] @@ -25763,28 +25763,28 @@ "coordinates": [ [ [ - 123, - -31.83235904133611 - ], - [ - 116.62686513904782, - -30.793715935971445 + 104.35864430005392, + -30.46572735272821 ], [ 110.42655292161442, -32.1048342777988 ], [ - 112.89286089014826, - -36.82925957785007 + 116.62686513904782, + -30.793715935971445 ], [ - 119.75452741470451, - -36.24012601872457 + 113.99291011397713, + -26.118384205901382 ], [ - 123, - -31.83235904133611 + 107.91577373707696, + -26.362455496801513 + ], + [ + 104.35864430005392, + -30.46572735272821 ] ] ] @@ -25800,28 +25800,28 @@ "coordinates": [ [ [ - 104.35864430005392, - -30.46572735272821 - ], - [ - 110.42655292161442, - -32.1048342777988 + 123, + -31.83235904133611 ], [ 116.62686513904782, -30.793715935971445 ], [ - 113.99291011397713, - -26.118384205901382 + 110.42655292161442, + -32.1048342777988 ], [ - 107.91577373707696, - -26.362455496801513 + 112.89286089014826, + -36.82925957785007 ], [ - 104.35864430005392, - -30.46572735272821 + 119.75452741470451, + -36.24012601872457 + ], + [ + 123, + -31.83235904133611 ] ] ] @@ -28464,28 +28464,28 @@ "coordinates": [ [ [ - -93, - -71.6383185717657 - ], - [ - -98.88922652871554, - -66.51647821230704 + -109.52273056293836, + -56.870744226531976 ], [ -107.61275057729273, -62.34393105971 ], [ - -115.79531183021612, - -65.9336464981537 + -98.88922652871554, + -66.51647821230704 ], [ - -109.4811076489068, - -70.95171673152534 + -92.99999999999994, + -62.29494457557202 ], [ - -93, - -71.6383185717657 + -100.09166205123807, + -57.81563497087593 + ], + [ + -109.52273056293836, + -56.870744226531976 ] ] ] @@ -28501,28 +28501,28 @@ "coordinates": [ [ [ - -109.52273056293836, - -56.870744226531976 - ], - [ - -107.61275057729273, - -62.34393105971 + -93, + -71.6383185717657 ], [ -98.88922652871554, -66.51647821230704 ], [ - -92.99999999999994, - -62.29494457557202 + -107.61275057729273, + -62.34393105971 ], [ - -100.09166205123807, - -57.81563497087593 + -115.79531183021612, + -65.9336464981537 ], [ - -109.52273056293836, - -56.870744226531976 + -109.4811076489068, + -70.95171673152534 + ], + [ + -93, + -71.6383185717657 ] ] ] @@ -28644,43 +28644,6 @@ "properties": { "cellIdHex": "c1a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -148.47726943706164, - -56.870744226531976 - ], - [ - -153.86869782460735, - -61.781280419764386 - ], - [ - -155.0523008941301, - -67.17802850932762 - ], - [ - -142.20468816978388, - -65.93364649815369 - ], - [ - -141.55536846386212, - -60.44033209336555 - ], - [ - -148.47726943706164, - -56.870744226531976 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "c1e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -28716,35 +28679,35 @@ { "type": "Feature", "properties": { - "cellIdHex": "c220000000000000" + "cellIdHex": "c1e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -129, - -58.39714590743121 + -148.47726943706164, + -56.870744226531976 ], [ - -130.98162306824895, - -63.84928751540707 + -153.86869782460735, + -61.781280419764386 ], [ - -126.54125089451111, - -68.9918681535092 + -155.0523008941301, + -67.17802850932762 ], [ - -115.79531183021612, - -65.9336464981537 + -142.20468816978388, + -65.93364649815369 ], [ - -119.92645376860008, - -60.71370250167179 + -141.55536846386212, + -60.44033209336555 ], [ - -129, - -58.39714590743121 + -148.47726943706164, + -56.870744226531976 ] ] ] @@ -28753,7 +28716,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "c260000000000000" + "cellIdHex": "c220000000000000" }, "geometry": { "type": "Polygon", @@ -28787,6 +28750,43 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "c260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -129, + -58.39714590743121 + ], + [ + -130.98162306824895, + -63.84928751540707 + ], + [ + -126.54125089451111, + -68.9918681535092 + ], + [ + -115.79531183021612, + -65.9336464981537 + ], + [ + -119.92645376860008, + -60.71370250167179 + ], + [ + -129, + -58.39714590743121 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -29242,27 +29242,27 @@ [ [ 159, - -74.36057237196529 + -58.39714590743123 ], [ - 161.4587491054889, - -68.9918681535092 + 157.01837693175105, + -63.8492875154071 ], [ - 157.018376931751, - -63.8492875154071 + 161.4587491054889, + -68.9918681535092 ], [ - 145.79531183021612, + 172.20468816978388, -65.9336464981537 ], [ - 144.77275957160566, - -71.36374064060091 + 168.07354623139992, + -60.71370250167184 ], [ 159, - -74.36057237196529 + -58.39714590743123 ] ] ] @@ -29279,27 +29279,27 @@ [ [ 159, - -58.39714590743123 - ], - [ - 157.01837693175105, - -63.8492875154071 + -74.36057237196529 ], [ 161.4587491054889, -68.9918681535092 ], [ - 172.20468816978388, + 157.018376931751, + -63.8492875154071 + ], + [ + 145.79531183021612, -65.9336464981537 ], [ - 168.07354623139992, - -60.71370250167184 + 144.77275957160566, + -71.36374064060091 ], [ 159, - -58.39714590743123 + -74.36057237196529 ] ] ] @@ -29315,28 +29315,28 @@ "coordinates": [ [ [ - 123, - -71.6383185717657 + 139.52273056293836, + -56.870744226531976 ], [ - 132.9476991058699, - -67.17802850932765 + 134.13130217539265, + -61.781280419764414 ], [ - 134.13130217539265, - -61.781280419764386 + 132.9476991058699, + -67.17802850932765 ], [ - 123, - -62.29494457557204 + 145.79531183021612, + -65.9336464981537 ], [ - 117.11077347128446, - -66.51647821230704 + 146.44463153613788, + -60.44033209336555 ], [ - 123, - -71.6383185717657 + 139.52273056293836, + -56.870744226531976 ] ] ] @@ -29352,28 +29352,28 @@ "coordinates": [ [ [ - 139.52273056293836, - -56.870744226531976 - ], - [ - 134.13130217539265, - -61.781280419764414 + 123, + -71.6383185717657 ], [ 132.9476991058699, -67.17802850932765 ], [ - 145.79531183021612, - -65.9336464981537 + 134.13130217539265, + -61.781280419764386 ], [ - 146.44463153613788, - -60.44033209336555 + 123, + -62.29494457557204 ], [ - 139.52273056293836, - -56.870744226531976 + 117.11077347128446, + -66.51647821230704 + ], + [ + 123, + -71.6383185717657 ] ] ] @@ -29500,28 +29500,28 @@ "coordinates": [ [ [ - -181.52273056293836, - -56.870744226531976 + -165.00000000000006, + -71.6383185717657 ], [ - -179.6127505772928, - -62.34393105971 + -170.88922652871554, + -66.51647821230706 ], [ - -170.88922652871554, - -66.51647821230704 + -179.6127505772928, + -62.34393105971 ], [ - -165.00000000000006, - -62.29494457557204 + -187.79531183021612, + -65.9336464981537 ], [ - -172.09166205123807, - -57.81563497087593 + -181.4811076489068, + -70.95171673152534 ], [ - -181.52273056293836, - -56.870744226531976 + -165.00000000000006, + -71.6383185717657 ] ] ] @@ -29537,28 +29537,28 @@ "coordinates": [ [ [ - -165.00000000000006, - -71.6383185717657 - ], - [ - -170.88922652871554, - -66.51647821230706 + -181.52273056293836, + -56.870744226531976 ], [ -179.6127505772928, -62.34393105971 ], [ - -187.79531183021612, - -65.9336464981537 + -170.88922652871554, + -66.51647821230704 ], [ - -181.4811076489068, - -70.95171673152534 + -165.00000000000006, + -62.29494457557204 ], [ - -165.00000000000006, - -71.6383185717657 + -172.09166205123807, + -57.81563497087593 + ], + [ + -181.52273056293836, + -56.870744226531976 ] ] ] @@ -30240,28 +30240,28 @@ "coordinates": [ [ [ - -110.36878034136026, - -19.765749214107966 - ], - [ - -106.71086314054935, - -15.43256951359882 + -102.01215396221096, + -5.539553971242925 ], [ -105.53222374775902, -9.900718579752127 ], [ - -110.6761839894013, - -9.762942861013203 + -106.71086314054935, + -15.43256951359882 ], [ - -112.7719195173712, - -14.932275940698906 + -101.58826631565478, + -15.528436771949783 ], [ - -110.36878034136026, - -19.765749214107966 + -99.55802155392638, + -10.142420241197168 + ], + [ + -102.01215396221096, + -5.539553971242925 ] ] ] @@ -30277,28 +30277,28 @@ "coordinates": [ [ [ - -102.01215396221096, - -5.539553971242925 - ], - [ - -105.53222374775902, - -9.900718579752127 + -110.36878034136026, + -19.765749214107966 ], [ -106.71086314054935, -15.43256951359882 ], [ - -101.58826631565478, - -15.528436771949783 + -105.53222374775902, + -9.900718579752127 ], [ - -99.55802155392638, - -10.142420241197168 + -110.6761839894013, + -9.762942861013203 ], [ - -102.01215396221096, - -5.539553971242925 + -112.7719195173712, + -14.932275940698906 + ], + [ + -110.36878034136026, + -19.765749214107966 ] ] ] @@ -30425,28 +30425,28 @@ "coordinates": [ [ [ - -119.9878460377891, - 5.539553971242925 - ], - [ - -123.74280928781297, - 1.3089274893843406 + -129, + -8.162533854955054 ], [ -125.1342127067793, -3.9695459436732334 ], [ - -119.8521767775203, - -4.062140094552287 + -123.74280928781297, + 1.3089274893843406 ], [ - -117.63997348195528, - 1.0136972426827464 + -129, + 1.2513289666321188 ], [ - -119.9878460377891, - 5.539553971242925 + -131.35557443437722, + -3.1098399666444574 + ], + [ + -129, + -8.162533854955054 ] ] ] @@ -30462,28 +30462,28 @@ "coordinates": [ [ [ - -129, - -8.162533854955054 - ], - [ - -125.1342127067793, - -3.9695459436732334 + -119.9878460377891, + 5.539553971242925 ], [ -123.74280928781297, 1.3089274893843406 ], [ - -129, - 1.2513289666321188 + -125.1342127067793, + -3.9695459436732334 ], [ - -131.35557443437722, - -3.1098399666444574 + -119.8521767775203, + -4.062140094552287 ], [ - -129, - -8.162533854955054 + -117.63997348195528, + 1.0136972426827464 + ], + [ + -119.9878460377891, + 5.539553971242925 ] ] ] @@ -30499,28 +30499,28 @@ "coordinates": [ [ [ - -111, - 0 - ], - [ - -114.63324359383967, - -4.214635756699458 + -119.57914260098369, + -13.628636133967635 ], [ -115.88193456505019, -9.549361382649163 ], [ - -110.6761839894013, - -9.762942861013203 + -114.63324359383967, + -4.214635756699458 ], [ - -108.59654827278672, - -4.5858694444802 + -119.8521767775203, + -4.062140094552287 ], [ - -111, - 0 + -122.07870088240679, + -9.076711467300163 + ], + [ + -119.57914260098369, + -13.628636133967635 ] ] ] @@ -30536,28 +30536,28 @@ "coordinates": [ [ [ - -119.57914260098369, - -13.628636133967635 - ], - [ - -115.88193456505019, - -9.549361382649163 + -111, + 0 ], [ -114.63324359383967, -4.214635756699458 ], [ - -119.8521767775203, - -4.062140094552287 + -115.88193456505019, + -9.549361382649163 ], [ - -122.07870088240679, - -9.076711467300163 + -110.6761839894013, + -9.762942861013203 ], [ - -119.57914260098369, - -13.628636133967635 + -108.59654827278672, + -4.5858694444802 + ], + [ + -111, + 0 ] ] ] @@ -31012,43 +31012,6 @@ "properties": { "cellIdHex": "d9a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -138.4208573990163, - -13.628636133967635 - ], - [ - -140.60140217052947, - -8.603481919068026 - ], - [ - -144.8608220429819, - -5.143241322392131 - ], - [ - -147.32381601059876, - -9.762942861013215 - ], - [ - -143.71559109784482, - -13.94531397116376 - ], - [ - -138.4208573990163, - -13.628636133967635 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "d9e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -31084,35 +31047,35 @@ { "type": "Feature", "properties": { - "cellIdHex": "da20000000000000" + "cellIdHex": "d9e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -147.63121965863974, - -19.765749214107966 + -138.4208573990163, + -13.628636133967635 ], [ - -149.79941625045717, - -14.463481187019163 + -140.60140217052947, + -8.603481919068026 ], [ - -153.95539234074295, - -10.828943190607784 + -144.8608220429819, + -5.143241322392131 ], [ - -156.41173368434522, - -15.528436771949771 + -147.32381601059876, + -9.762942861013215 ], [ - -153.5219137903668, - -19.642797754009656 + -143.71559109784482, + -13.94531397116376 ], [ - -147.63121965863974, - -19.765749214107966 + -138.4208573990163, + -13.628636133967635 ] ] ] @@ -31121,7 +31084,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "da60000000000000" + "cellIdHex": "da20000000000000" }, "geometry": { "type": "Polygon", @@ -31155,6 +31118,43 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "da60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -147.63121965863974, + -19.765749214107966 + ], + [ + -149.79941625045717, + -14.463481187019163 + ], + [ + -153.95539234074295, + -10.828943190607784 + ], + [ + -156.41173368434522, + -15.528436771949771 + ], + [ + -153.5219137903668, + -19.642797754009656 + ], + [ + -147.63121965863974, + -19.765749214107966 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -31276,28 +31276,28 @@ "coordinates": [ [ [ - -138.0121539622109, - 5.539553971242925 - ], - [ - -135.74877402286756, - 0.42630945444010043 + -129, + -8.162533854955054 ], [ -131.35557443437722, -3.1098399666444574 ], [ - -129, - 1.2513289666321188 + -135.74877402286756, + 0.42630945444010043 ], [ - -132.8002167591656, - 5.549226566225722 + -138.1478232224797, + -4.062140094552287 ], [ - -138.0121539622109, - 5.539553971242925 + -134.38830202323248, + -8.16987845107548 + ], + [ + -129, + -8.162533854955054 ] ] ] @@ -31313,28 +31313,28 @@ "coordinates": [ [ [ - -129, - -8.162533854955054 - ], - [ - -131.35557443437722, - -3.1098399666444574 + -138.0121539622109, + 5.539553971242925 ], [ -135.74877402286756, 0.42630945444010043 ], [ - -138.1478232224797, - -4.062140094552287 + -131.35557443437722, + -3.1098399666444574 ], [ - -134.38830202323248, - -8.16987845107548 + -129, + 1.2513289666321188 ], [ - -129, - -8.162533854955054 + -132.8002167591656, + 5.549226566225722 + ], + [ + -138.0121539622109, + 5.539553971242925 ] ] ] @@ -32608,28 +32608,28 @@ "coordinates": [ [ [ - -146.36878034136026, - 19.765749214107952 - ], - [ - -140.4780862096332, - 19.642797754009656 + -129, + 21.27100957285517 ], [ -134.95091516772004, 21.873324381037982 ], [ - -138.00708988602287, - 26.118384205901382 + -140.4780862096332, + 19.642797754009642 ], [ - -143.90106314419495, - 24.600893533663314 + -137.58826631565478, + 15.528436771949758 ], [ - -146.36878034136026, - 19.765749214107952 + -131.78106949391383, + 16.783191210521874 + ], + [ + -129, + 21.27100957285517 ] ] ] @@ -32645,28 +32645,28 @@ "coordinates": [ [ [ - -129, - 21.27100957285517 + -146.36878034136026, + 19.765749214107952 ], [ - -134.95091516772004, - 21.873324381037982 + -140.4780862096332, + 19.642797754009656 ], [ - -140.4780862096332, - 19.642797754009642 + -134.95091516772004, + 21.873324381037982 ], [ - -137.58826631565478, - 15.528436771949758 + -138.00708988602287, + 26.118384205901382 ], [ - -131.78106949391383, - 16.783191210521874 + -143.90106314419495, + 24.600893533663314 ], [ - -129, - 21.27100957285517 + -146.36878034136026, + 19.765749214107952 ] ] ] @@ -32793,28 +32793,28 @@ "coordinates": [ [ [ - -129, - 42.37830150075416 - ], - [ - -136.59291246997748, - 43.15856257693659 + -150.7883588121141, + 40.90439811308672 ], [ -143.28909434162085, 40.975588175816924 ], [ - -139.10713910985174, - 36.82925957785007 + -136.59291246997748, + 43.15856257693659 ], [ - -132.32529676701586, - 37.97887688454019 + -141.21851395810796, + 47.279743783018084 ], [ - -129, - 42.37830150075416 + -148.20930683638824, + 46.13014415306687 + ], + [ + -150.7883588121141, + 40.90439811308672 ] ] ] @@ -32830,28 +32830,28 @@ "coordinates": [ [ [ - -150.7883588121141, - 40.90439811308672 - ], - [ - -143.28909434162085, - 40.975588175816924 + -129, + 42.37830150075416 ], [ -136.59291246997748, 43.15856257693659 ], [ - -141.21851395810796, - 47.279743783018084 + -143.28909434162085, + 40.975588175816924 ], [ - -148.20930683638824, - 46.13014415306687 + -139.10713910985174, + 36.82925957785007 ], [ - -150.7883588121141, - 40.90439811308672 + -132.32529676701586, + 37.97887688454019 + ], + [ + -129, + 42.37830150075416 ] ] ] @@ -32867,28 +32867,28 @@ "coordinates": [ [ [ - -129, - 31.832359041336087 - ], - [ - -135.49431779429312, - 32.546966500935476 + -147.64135569994608, + 30.46572735272821 ], [ -141.3390854130447, 30.34324917904292 ], [ - -138.00708988602287, - 26.118384205901382 + -135.49431779429312, + 32.546966500935476 ], [ - -131.94852481906753, - 27.346979608405157 + -139.10713910985174, + 36.82925957785005 ], [ - -129, - 31.832359041336087 + -145.59753304818122, + 35.33321153398975 + ], + [ + -147.64135569994608, + 30.46572735272821 ] ] ] @@ -32904,28 +32904,28 @@ "coordinates": [ [ [ - -147.64135569994608, - 30.46572735272821 - ], - [ - -141.3390854130447, - 30.34324917904292 + -129, + 31.832359041336087 ], [ -135.49431779429312, 32.546966500935476 ], [ - -139.10713910985174, - 36.82925957785005 + -141.3390854130447, + 30.34324917904292 ], [ - -145.59753304818122, - 35.33321153398975 + -138.00708988602287, + 26.118384205901382 ], [ - -147.64135569994608, - 30.46572735272821 + -131.94852481906753, + 27.346979608405157 + ], + [ + -129, + 31.832359041336087 ] ] ] @@ -33385,28 +33385,28 @@ "coordinates": [ [ [ - -155.5791426009837, - 13.628636133967648 + -147, + 1.277934125108471e-14 ], [ - -153.3985978294706, - 8.603481919068038 + -149.13917795701815, + 5.143241322392146 ], [ - -149.1391779570181, - 5.143241322392146 + -153.3985978294706, + 8.603481919068038 ], [ - -146.67618398940124, - 9.762942861013215 + -155.8521767775203, + 4.062140094552287 ], [ - -150.28440890215518, - 13.94531397116376 + -152.1572509938752, + -0.10314939756246717 ], [ - -155.5791426009837, - 13.628636133967648 + -147, + 1.277934125108471e-14 ] ] ] @@ -33422,28 +33422,28 @@ "coordinates": [ [ [ - -147, - 1.277934125108471e-14 - ], - [ - -149.13917795701815, - 5.143241322392146 + -155.5791426009837, + 13.628636133967648 ], [ -153.3985978294706, 8.603481919068038 ], [ - -155.8521767775203, - 4.062140094552287 + -149.1391779570181, + 5.143241322392146 ], [ - -152.1572509938752, - -0.10314939756246717 + -146.67618398940124, + 9.762942861013215 ], [ - -147, - 1.277934125108471e-14 + -150.28440890215518, + 13.94531397116376 + ], + [ + -155.5791426009837, + 13.628636133967648 ] ] ] @@ -33459,28 +33459,28 @@ "coordinates": [ [ [ - -146.36878034136026, - 19.765749214107966 + -138.0121539622109, + 5.539553971242925 ], [ - -144.2005837495429, - 14.463481187019163 + -140.0446076592571, + 10.828943190607784 ], [ - -140.0446076592571, - 10.828943190607772 + -144.2005837495429, + 14.463481187019163 ], [ - -137.58826631565478, - 15.528436771949796 + -146.67618398940124, + 9.762942861013215 ], [ - -140.4780862096332, - 19.642797754009642 + -143.11430036573398, + 5.506300809417799 ], [ - -146.36878034136026, - 19.765749214107966 + -138.0121539622109, + 5.539553971242925 ] ] ] @@ -33496,28 +33496,28 @@ "coordinates": [ [ [ - -138.0121539622109, - 5.539553971242925 - ], - [ - -140.0446076592571, - 10.828943190607784 + -146.36878034136026, + 19.765749214107966 ], [ -144.2005837495429, 14.463481187019163 ], [ - -146.67618398940124, - 9.762942861013215 + -140.0446076592571, + 10.828943190607772 ], [ - -143.11430036573398, - 5.506300809417799 + -137.58826631565478, + 15.528436771949796 ], [ - -138.0121539622109, - 5.539553971242925 + -140.4780862096332, + 19.642797754009642 + ], + [ + -146.36878034136026, + 19.765749214107966 ] ] ] @@ -33644,28 +33644,28 @@ "coordinates": [ [ [ - -155.9878460377891, - -5.539553971242937 - ], - [ - -158.25122597713244, - -0.42630945444010043 + -165, + 8.16253385495504 ], [ -162.64442556562278, 3.1098399666444574 ], [ - -165, - -1.2513289666321314 + -158.25122597713244, + -0.42630945444010043 ], [ - -161.19978324083445, - -5.549226566225735 + -155.8521767775203, + 4.062140094552287 ], [ - -155.9878460377891, - -5.539553971242937 + -159.61169797676752, + 8.16987845107548 + ], + [ + -165, + 8.16253385495504 ] ] ] @@ -33681,28 +33681,28 @@ "coordinates": [ [ [ - -165, - 8.16253385495504 - ], - [ - -162.64442556562278, - 3.1098399666444574 + -155.9878460377891, + -5.539553971242937 ], [ -158.25122597713244, -0.42630945444010043 ], [ - -155.8521767775203, - 4.062140094552287 + -162.64442556562278, + 3.1098399666444574 ], [ - -159.61169797676752, - 8.16987845107548 + -165, + -1.2513289666321314 ], [ - -165, - 8.16253385495504 + -161.19978324083445, + -5.549226566225735 + ], + [ + -155.9878460377891, + -5.539553971242937 ] ] ] @@ -35162,27 +35162,27 @@ [ [ -165, - 42.39894636280654 - ], - [ - -163.68710587973368, - 47.76170008770643 + 58.39714590743121 ], [ -166.44945565043002, 52.91846231840442 ], [ - -173.33938144048233, - 49.98534085570772 + -163.68710587973368, + 47.76170008770643 ], [ - -171.35465571568665, - 44.69516379727327 + -156.66061855951767, + 49.98534085570773 + ], + [ + -157.16469649469258, + 55.52245846635904 ], [ -165, - 42.39894636280654 + 58.39714590743121 ] ] ] @@ -35199,27 +35199,27 @@ [ [ -165, - 58.39714590743121 - ], - [ - -166.44945565043002, - 52.91846231840442 + 42.39894636280654 ], [ -163.68710587973368, 47.76170008770643 ], [ - -156.66061855951767, - 49.98534085570773 + -166.44945565043002, + 52.91846231840442 ], [ - -157.16469649469258, - 55.52245846635904 + -173.33938144048233, + 49.98534085570772 + ], + [ + -171.35465571568665, + 44.69516379727327 ], [ -165, - 58.39714590743121 + 42.39894636280654 ] ] ] @@ -35235,28 +35235,28 @@ "coordinates": [ [ [ - 180.78835881211404, - 40.90439811308672 + -184.47726943706164, + 56.87074422653197 ], [ - 180.62954807409506, - 46.57890392027435 + -183.54485244440184, + 51.267463838904355 ], [ - 176.45514755559816, - 51.267463838904355 + -179.37045192590494, + 46.57890392027435 ], [ - 171.21851395810796, - 47.2797437830181 + -173.33938144048233, + 49.98534085570772 ], [ - 173.74518258553974, - 42.676060531926844 + -175.8564260544607, + 55.27873855921404 ], [ - 180.78835881211404, - 40.90439811308672 + -184.47726943706164, + 56.87074422653197 ] ] ] @@ -35272,28 +35272,28 @@ "coordinates": [ [ [ - -184.47726943706164, - 56.87074422653197 + 180.78835881211404, + 40.90439811308672 ], [ - -183.54485244440184, - 51.267463838904355 + 180.62954807409506, + 46.57890392027435 ], [ - -179.37045192590494, - 46.57890392027435 + 176.45514755559816, + 51.267463838904355 ], [ - -173.33938144048233, - 49.98534085570772 + 171.21851395810796, + 47.2797437830181 ], [ - -175.8564260544607, - 55.27873855921404 + 173.74518258553974, + 42.676060531926844 ], [ - -184.47726943706164, - 56.87074422653197 + 180.78835881211404, + 40.90439811308672 ] ] ] @@ -35420,28 +35420,28 @@ "coordinates": [ [ [ - -145.52273056293836, - 56.870744226531954 - ], - [ - -149.13044141230137, - 51.722302273605706 + -150.7883588121141, + 40.90439811308672 ], [ -148.20930683638824, 46.13014415306687 ], [ - -141.21851395810796, - 47.27974378301808 + -149.13044141230137, + 51.722302273605706 ], [ - -139.71486701004198, - 52.911078663009754 + -156.66061855951767, + 49.98534085570773 ], [ - -145.52273056293836, - 56.870744226531954 + -156.19661692139545, + 44.45585692899723 + ], + [ + -150.7883588121141, + 40.90439811308672 ] ] ] @@ -35457,28 +35457,28 @@ "coordinates": [ [ [ - -150.7883588121141, - 40.90439811308672 - ], - [ - -148.20930683638824, - 46.13014415306687 + -145.52273056293836, + 56.870744226531954 ], [ -149.13044141230137, 51.722302273605706 ], [ - -156.66061855951767, - 49.98534085570773 + -148.20930683638824, + 46.13014415306687 ], [ - -156.19661692139545, - 44.45585692899723 + -141.21851395810796, + 47.27974378301808 ], [ - -150.7883588121141, - 40.90439811308672 + -139.71486701004198, + 52.911078663009754 + ], + [ + -145.52273056293836, + 56.870744226531954 ] ] ] diff --git a/tests/integration/wireframe-auto-edges-3.json b/tests/integration/wireframe-auto-edges-3.json index b3b6b12..e6aa9c2 100644 --- a/tests/integration/wireframe-auto-edges-3.json +++ b/tests/integration/wireframe-auto-edges-3.json @@ -1068,183 +1068,6 @@ "properties": { "cellIdHex": "5a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123, - 74.36057237196528 - ], - [ - 122.6050858332568, - 73.6933804248158 - ], - [ - 122.24102579155982, - 73.02502249547538 - ], - [ - 121.90436058675812, - 72.35553520083602 - ], - [ - 121.59212662530206, - 71.68494585339144 - ], - [ - 121.30177075235815, - 71.01327403105246 - ], - [ - 121.03108191871121, - 70.34053283137355 - ], - [ - 120.77813599611432, - 69.66672988098554 - ], - [ - 120.54125089451111, - 68.9918681535092 - ], - [ - 121.20945636696331, - 68.35840689066393 - ], - [ - 121.8400464290753, - 67.72201077397622 - ], - [ - 122.43599968389805, - 67.08283105304935 - ], - [ - 123, - 66.4410004053617 - ], - [ - 123.53447057520657, - 65.79663514206754 - ], - [ - 124.04160361517688, - 65.14983711276179 - ], - [ - 124.52338623009467, - 64.50069535348311 - ], - [ - 124.98162306824895, - 63.84928751540707 - ], - [ - 126.28291271483658, - 64.1509814377108 - ], - [ - 127.61380497331834, - 64.44156676139019 - ], - [ - 128.9741547869271, - 64.72071110032046 - ], - [ - 130.36370819169872, - 64.98808658208014 - ], - [ - 131.78209515948174, - 65.2433723412634 - ], - [ - 133.22882317186668, - 65.48625724371827 - ], - [ - 134.7032717495481, - 65.71644283461667 - ], - [ - 136.20468816978394, - 65.93364649815369 - ], - [ - 136.30682820101663, - 66.61561180289453 - ], - [ - 136.4150057866848, - 67.29661781367882 - ], - [ - 136.52977190514918, - 67.97668782985058 - ], - [ - 136.65174659345894, - 68.65584419928469 - ], - [ - 136.7816301020381, - 69.33410821906882 - ], - [ - 136.92021628046388, - 70.0115000140451 - ], - [ - 137.06840873208625, - 70.68803838797433 - ], - [ - 137.2272404283944, - 71.36374064060091 - ], - [ - 135.71089266824947, - 71.78125221217884 - ], - [ - 134.12500297362874, - 72.18811688375865 - ], - [ - 132.46668827559483, - 72.58358414723797 - ], - [ - 130.73318275270282, - 72.96685720435626 - ], - [ - 128.92190308073293, - 73.33709439890845 - ], - [ - 127.03052465726512, - 73.69341202117485 - ], - [ - 125.05706877488763, - 74.03488879415603 - ], - [ - 123, - 74.36057237196528 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "5e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -1420,175 +1243,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "620000000000000" + "cellIdHex": "5e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 159, - 71.63831857176568 + 123, + 74.36057237196528 ], [ - 157.50626926274606, - 71.10688650844509 + 122.6050858332568, + 73.6933804248158 ], [ - 156.09409887880446, - 70.56718488344166 + 122.24102579155982, + 73.02502249547538 ], [ - 154.75800789146734, - 70.01963741881146 + 121.90436058675812, + 72.35553520083602 ], [ - 153.4928946580394, - 69.46465709191152 + 121.59212662530206, + 71.68494585339144 ], [ - 152.29401607511716, - 68.90264043838974 + 121.30177075235815, + 71.01327403105246 ], [ - 151.15696684644251, - 68.3339640659157 + 121.03108191871121, + 70.34053283137355 ], [ - 150.07765886770028, - 67.75898273080979 + 120.77813599611432, + 69.66672988098554 ], [ - 149.05230089413004, - 67.1780285093276 + 120.54125089451111, + 68.9918681535092 ], [ - 148.87518949417415, - 66.50716238725461 + 121.20945636696331, + 68.35840689066393 ], [ - 148.70777533533084, - 65.83526712621756 + 121.8400464290753, + 67.72201077397622 ], [ - 148.54928510487093, - 65.16232652980904 + 122.43599968389805, + 67.08283105304935 ], [ - 148.39902540171641, - 64.48832292540706 + 123, + 66.4410004053617 ], [ - 148.25637269597962, - 63.81323730149786 + 123.53447057520657, + 65.79663514206754 ], [ - 148.12076476218283, - 63.13704942337843 + 124.04160361517688, + 65.14983711276179 ], [ - 147.99169334031888, - 62.45973793071075 + 124.52338623009467, + 64.50069535348311 ], [ - 147.8686978246073, - 61.781280419764386 + 124.98162306824895, + 63.84928751540707 ], [ - 149.23454907913253, - 61.885828240999544 + 126.28291271483658, + 64.1509814377108 ], [ - 150.6098130326651, - 61.97866250145241 + 127.61380497331834, + 64.44156676139019 ], [ - 151.99345758927484, - 62.05983802470211 + 128.9741547869271, + 64.72071110032046 ], [ - 153.38442699433142, - 62.12943982383805 + 130.36370819169872, + 64.98808658208014 ], [ - 154.78164863352868, - 62.18758453272284 + 131.78209515948174, + 65.2433723412634 ], [ - 156.1840401901395, - 62.23442175824432 + 133.22882317186668, + 65.48625724371827 ], [ - 157.59051707028152, - 62.270135348695014 + 134.7032717495481, + 65.71644283461667 ], [ - 159, - 62.29494457557203 + 136.20468816978394, + 65.93364649815369 ], [ - 159.6372595877636, - 62.83387325278842 + 136.30682820101663, + 66.61561180289453 ], [ - 160.29971542713844, - 63.36991067152425 + 136.4150057866848, + 67.29661781367882 ], [ - 160.98877301957594, - 63.90291558272342 + 136.52977190514918, + 67.97668782985058 ], [ - 161.70593191493492, - 64.43273307815619 + 136.65174659345894, + 68.65584419928469 ], [ - 162.45279208172752, - 64.95919332374994 + 136.7816301020381, + 69.33410821906882 ], [ - 163.231060528436, - 65.48211017005151 + 136.92021628046388, + 70.0115000140451 ], [ - 164.04255812233941, - 66.0012796297689 + 137.06840873208625, + 70.68803838797433 ], [ - 164.88922652871554, - 66.51647821230704 + 137.2272404283944, + 71.36374064060091 ], [ - 164.29642393256336, - 67.16659763209445 + 135.71089266824947, + 71.78125221217884 ], [ - 163.66945515339677, - 67.81414929337839 + 134.12500297362874, + 72.18811688375865 ], [ - 163.0053892198398, - 68.4590230803993 + 132.46668827559483, + 72.58358414723797 ], [ - 162.30096360613243, - 69.10109499918785 + 130.73318275270282, + 72.96685720435626 ], [ - 161.5525380573746, - 69.74022578634873 + 128.92190308073293, + 73.33709439890845 ], [ - 160.75604084418478, - 70.37625943803496 + 127.03052465726512, + 73.69341202117485 ], [ - 159.90690602616024, - 71.00902169776889 + 125.05706877488763, + 74.03488879415603 ], [ - 159, - 71.63831857176568 + 123, + 74.36057237196528 ] ] ] @@ -1597,7 +1420,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "660000000000000" + "cellIdHex": "620000000000000" }, "geometry": { "type": "Polygon", @@ -1771,6 +1594,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "660000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 159, + 71.63831857176568 + ], + [ + 157.50626926274606, + 71.10688650844509 + ], + [ + 156.09409887880446, + 70.56718488344166 + ], + [ + 154.75800789146734, + 70.01963741881146 + ], + [ + 153.4928946580394, + 69.46465709191152 + ], + [ + 152.29401607511716, + 68.90264043838974 + ], + [ + 151.15696684644251, + 68.3339640659157 + ], + [ + 150.07765886770028, + 67.75898273080979 + ], + [ + 149.05230089413004, + 67.1780285093276 + ], + [ + 148.87518949417415, + 66.50716238725461 + ], + [ + 148.70777533533084, + 65.83526712621756 + ], + [ + 148.54928510487093, + 65.16232652980904 + ], + [ + 148.39902540171641, + 64.48832292540706 + ], + [ + 148.25637269597962, + 63.81323730149786 + ], + [ + 148.12076476218283, + 63.13704942337843 + ], + [ + 147.99169334031888, + 62.45973793071075 + ], + [ + 147.8686978246073, + 61.781280419764386 + ], + [ + 149.23454907913253, + 61.885828240999544 + ], + [ + 150.6098130326651, + 61.97866250145241 + ], + [ + 151.99345758927484, + 62.05983802470211 + ], + [ + 153.38442699433142, + 62.12943982383805 + ], + [ + 154.78164863352868, + 62.18758453272284 + ], + [ + 156.1840401901395, + 62.23442175824432 + ], + [ + 157.59051707028152, + 62.270135348695014 + ], + [ + 159, + 62.29494457557203 + ], + [ + 159.6372595877636, + 62.83387325278842 + ], + [ + 160.29971542713844, + 63.36991067152425 + ], + [ + 160.98877301957594, + 63.90291558272342 + ], + [ + 161.70593191493492, + 64.43273307815619 + ], + [ + 162.45279208172752, + 64.95919332374994 + ], + [ + 163.231060528436, + 65.48211017005151 + ], + [ + 164.04255812233941, + 66.0012796297689 + ], + [ + 164.88922652871554, + 66.51647821230704 + ], + [ + 164.29642393256336, + 67.16659763209445 + ], + [ + 163.66945515339677, + 67.81414929337839 + ], + [ + 163.0053892198398, + 68.4590230803993 + ], + [ + 162.30096360613243, + 69.10109499918785 + ], + [ + 161.5525380573746, + 69.74022578634873 + ], + [ + 160.75604084418478, + 70.37625943803496 + ], + [ + 159.90690602616024, + 71.00902169776889 + ], + [ + 159, + 71.63831857176568 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -2312,168 +2312,168 @@ "coordinates": [ [ [ - 103.52273056293836, - 56.870744226531954 + 87, + 71.63831857176568 ], [ - 103.31841642789982, - 57.56045332701848 + 87.90690602616024, + 71.00902169776889 ], [ - 103.10549593885503, - 58.248552793055154 + 88.75604084418478, + 70.37625943803496 ], [ - 102.88341828929248, - 58.935055896542245 + 89.55253805737459, + 69.74022578634873 ], [ - 102.65158507214022, - 59.61997377551145 + 90.30096360613243, + 69.10109499918785 ], [ - 102.40934507368536, - 60.303315267010895 + 91.0053892198398, + 68.45902308039932 ], [ - 102.15598837599191, - 60.985086715908466 + 91.66945515339671, + 67.81414929337839 ], [ - 101.89073965942828, - 61.665291756064896 + 92.29642393256336, + 67.16659763209448 ], [ - 101.61275057729273, - 62.34393105971 + 92.88922652871554, + 66.51647821230705 ], [ - 100.66838636885291, - 62.88990425281016 + 94.14025835283684, + 66.0214209270993 ], [ - 99.68622730007598, - 63.42947562754163 + 95.34105701996862, + 65.51815898072273 ], [ - 98.6644068091498, - 63.96237612921199 + 96.49389680133851, + 65.00701997101402 ], [ - 97.60097459828353, + 97.60097459828359, 64.48832292540706 ], [ - 96.49389680133851, - 65.00701997101403 + 98.6644068091498, + 63.962376129212004 ], [ - 95.34105701996862, - 65.51815898072273 + 99.68622730007598, + 63.42947562754163 ], [ - 94.14025835283684, - 66.0214209270993 + 100.66838636885291, + 62.88990425281016 ], [ - 92.88922652871554, - 66.51647821230705 + 101.61275057729273, + 62.343931059710016 ], [ - 92.04255812233941, - 66.0012796297689 + 102.51791397154653, + 62.815156326906425 ], [ - 91.23106052843593, - 65.48211017005151 + 103.45415808275186, + 63.28056120483306 ], [ - 90.45279208172758, - 64.95919332374994 + 104.42271898855046, + 63.73986302079267 ], [ - 89.70593191493492, - 64.43273307815619 + 105.42486197033759, + 64.1927612943047 ], [ - 88.988773019576, - 63.90291558272342 + 106.461877249189, + 64.63893700281545 ], [ - 88.2997154271385, - 63.36991067152425 + 107.5350746297508, + 65.07805189595295 ], [ - 87.63725958776365, - 62.83387325278839 + 108.6457769004179, + 65.50974787997366 ], [ - 87, - 62.29494457557203 + 109.79531183021612, + 65.9336464981537 ], [ - 88.00516474454895, - 61.7552169177632 + 109.15288950370143, + 66.57351320264306 ], [ - 88.97323776222856, - 61.209384908509534 + 108.47503661598847, + 67.21016713455502 ], [ - 89.90590112119548, - 60.65762076053908 + 107.75889737786088, + 67.8434420659657 ], [ - 90.8047592195216, - 60.10009481926227 + 107.00132045714008, + 68.47315107676572 ], [ - 91.67134153137192, - 59.536973948693856 + 106.1988229228607, + 69.09908406470016 ], [ - 92.5071053419606, - 58.96842032190809 + 105.34754941490189, + 69.72100493823773 ], [ - 93.31343848061209, - 58.39459053391123 + 104.4432259393887, + 70.33864846233841 ], [ - 94.09166205123802, - 57.81563497087593 + 103.4811076489068, + 70.95171673152534 ], [ - 95.29725773145879, - 57.73363039134111 + 101.49826318675485, + 71.0974043105194 ], [ - 96.49654431266356, - 57.641357525094804 + 99.48673865259389, + 71.22592731839136 ], [ - 97.68883667516604, - 57.53876939806614 + 97.44961654011854, + 71.3372005050578 ], [ - 98.87346631424202, - 57.425838176075885 + 95.39018696733484, + 71.43122502269509 ], [ - 100.04978434795379, - 57.30255426149907 + 93.31190658866979, + 71.50809644109906 ], [ - 101.21716428257355, - 57.16892536221863 + 91.21835136647132, + 71.56801229833852 ], [ - 102.37500451586288, - 57.02497553759138 + 89.11316436615505, + 71.61127908266229 ], [ - 103.52273056293836, - 56.870744226531954 + 87, + 71.63831857176568 ] ] ] @@ -2489,168 +2489,168 @@ "coordinates": [ [ [ - 87, - 71.63831857176568 + 103.52273056293836, + 56.870744226531954 ], [ - 87.90690602616024, - 71.00902169776889 + 103.31841642789982, + 57.56045332701848 ], [ - 88.75604084418478, - 70.37625943803496 + 103.10549593885503, + 58.248552793055154 ], [ - 89.55253805737459, - 69.74022578634873 + 102.88341828929248, + 58.935055896542245 ], [ - 90.30096360613243, - 69.10109499918785 + 102.65158507214022, + 59.61997377551145 ], [ - 91.0053892198398, - 68.45902308039932 + 102.40934507368536, + 60.303315267010895 ], [ - 91.66945515339671, - 67.81414929337839 + 102.15598837599191, + 60.985086715908466 ], [ - 92.29642393256336, - 67.16659763209448 + 101.89073965942828, + 61.665291756064896 ], [ - 92.88922652871554, - 66.51647821230705 + 101.61275057729273, + 62.34393105971 ], [ - 94.14025835283684, - 66.0214209270993 + 100.66838636885291, + 62.88990425281016 ], [ - 95.34105701996862, - 65.51815898072273 + 99.68622730007598, + 63.42947562754163 ], [ - 96.49389680133851, - 65.00701997101402 + 98.6644068091498, + 63.96237612921199 ], [ - 97.60097459828359, + 97.60097459828353, 64.48832292540706 ], [ - 98.6644068091498, - 63.962376129212004 + 96.49389680133851, + 65.00701997101403 ], [ - 99.68622730007598, - 63.42947562754163 + 95.34105701996862, + 65.51815898072273 ], [ - 100.66838636885291, - 62.88990425281016 + 94.14025835283684, + 66.0214209270993 ], [ - 101.61275057729273, - 62.343931059710016 + 92.88922652871554, + 66.51647821230705 ], [ - 102.51791397154653, - 62.815156326906425 + 92.04255812233941, + 66.0012796297689 ], [ - 103.45415808275186, - 63.28056120483306 + 91.23106052843593, + 65.48211017005151 ], [ - 104.42271898855046, - 63.73986302079267 + 90.45279208172758, + 64.95919332374994 ], [ - 105.42486197033759, - 64.1927612943047 + 89.70593191493492, + 64.43273307815619 ], [ - 106.461877249189, - 64.63893700281545 + 88.988773019576, + 63.90291558272342 ], [ - 107.5350746297508, - 65.07805189595295 + 88.2997154271385, + 63.36991067152425 ], [ - 108.6457769004179, - 65.50974787997366 + 87.63725958776365, + 62.83387325278839 ], [ - 109.79531183021612, - 65.9336464981537 + 87, + 62.29494457557203 ], [ - 109.15288950370143, - 66.57351320264306 + 88.00516474454895, + 61.7552169177632 ], [ - 108.47503661598847, - 67.21016713455502 + 88.97323776222856, + 61.209384908509534 ], [ - 107.75889737786088, - 67.8434420659657 + 89.90590112119548, + 60.65762076053908 ], [ - 107.00132045714008, - 68.47315107676572 + 90.8047592195216, + 60.10009481926227 ], [ - 106.1988229228607, - 69.09908406470016 + 91.67134153137192, + 59.536973948693856 ], [ - 105.34754941490189, - 69.72100493823773 + 92.5071053419606, + 58.96842032190809 ], [ - 104.4432259393887, - 70.33864846233841 + 93.31343848061209, + 58.39459053391123 ], [ - 103.4811076489068, - 70.95171673152534 + 94.09166205123802, + 57.81563497087593 ], [ - 101.49826318675485, - 71.0974043105194 + 95.29725773145879, + 57.73363039134111 ], [ - 99.48673865259389, - 71.22592731839136 + 96.49654431266356, + 57.641357525094804 ], [ - 97.44961654011854, - 71.3372005050578 + 97.68883667516604, + 57.53876939806614 ], [ - 95.39018696733484, - 71.43122502269509 + 98.87346631424202, + 57.425838176075885 ], [ - 93.31190658866979, - 71.50809644109906 + 100.04978434795379, + 57.30255426149907 ], [ - 91.21835136647132, - 71.56801229833852 + 101.21716428257355, + 57.16892536221863 ], [ - 89.11316436615505, - 71.61127908266229 + 102.37500451586288, + 57.02497553759138 ], [ - 87, - 71.63831857176568 + 103.52273056293836, + 56.870744226531954 ] ] ] @@ -14348,168 +14348,168 @@ "coordinates": [ [ [ - -93, - 8.162533854955067 + -83.9878460377891, + -5.539553971242925 ], [ - -92.70114835751014, - 7.530390021971784 + -84.27179009258805, + -4.896562751656485 ], [ - -92.40370472917846, - 6.898735635532036 + -84.55527321574971, + -4.254708312632609 ], [ - -92.10759779950115, - 6.267375132306939 + -84.83838098643838, + -3.613970768281407 ], [ - -91.8127527265242, - 5.636140955798851 + -85.12119804730247, + -2.9743298550319404 ], [ - -91.51909227703186, - 5.00488848560826 + -85.4038082252464, + -2.335764856516269 ], [ - -91.22653762288371, - 4.373492007958605 + -85.6862946501746, + -1.6982545161551712 ], [ - -90.93500889540144, - 3.741841488224458 + -85.96873987211757, + -1.0617769353137823 ], [ - -90.64442556562278, - 3.10983996664447 + -86.25122597713244, + -0.42630945444008767 ], [ - -90.09054039831994, - 2.665248288661092 + -86.79618136864428, + 0.014556886277891262 ], [ - -89.53815089678824, - 2.2218651838138572 + -87.34217111059314, + 0.4554068187673719 ], [ - -88.98719274483108, - 1.7794162308255073 + -87.88928113430757, + 0.8963863812880651 ], [ -88.43759490858952, 1.337660587380447 ], [ - -87.88928113430757, - 0.8963863812880651 + -88.98719274483108, + 1.7794162308255073 ], [ - -87.34217111059314, - 0.4554068187673719 + -89.53815089678824, + 2.2218651838138572 ], [ - -86.79618136864428, - 0.014556886277891262 + -90.09054039832, + 2.665248288661079 ], [ - -86.25122597713244, - -0.42630945444008767 + -90.64442556562278, + 3.10983996664447 ], [ - -85.95420544961951, - 0.13292275320976288 + -90.94161017972095, + 2.563360867460993 ], [ - -85.65640906057939, - 0.6925672169305065 + -91.2379323223023, + 2.0173791374190486 ], [ - -85.35781235039065, - 1.2526762337456798 + -91.53342987355842, + 1.471833293128459 ], [ - -85.05839361624635, - 1.8133037611419598 + -91.82814266251029, + 0.9266645541039044 ], [ - -84.75813417887747, - 2.374505485660123 + -92.12211225624816, + 0.3818166846820636 ], [ - -84.45701868276075, - 2.9363388920133953 + -92.41538177941652, + -0.16276415527486818 ], [ - -84.15503543362189, - 3.4988633322726352 + -92.70799576025479, + -0.7071295512160308 ], [ - -83.8521767775203, - 4.0621400945523005 + -93, + -1.251328966632106 ], [ - -84.31746791790601, - 4.578278183193922 + -92.52244998720118, + -1.7910707032452284 ], [ - -84.7838687250674, - 5.093527371445836 + -92.0457609965282, + -2.3296810820991354 ], [ - -85.25148660361958, - 5.6079385184327935 + -91.56987053247093, + -2.8673976099778504 ], [ - -85.72043037936982, - 6.1215707773920744 + -91.09470917416314, + -3.4044316034361413 ], [ - -86.19081044224527, - 6.634493101618335 + -90.62020174768475, + -3.94097154090935 ], [ - -86.66273886730596, - 7.146786076626593 + -90.14626825635509, + -4.477185926411791 ], [ - -87.13632949902149, - 7.658544161959716 + -89.67282461710903, + -5.0132257437538845 ], [ - -87.61169797676752, - 8.16987845107548 + -89.19978324083445, + -5.549226566225722 ], [ - -88.28187834759257, - 8.155493059284444 + -88.54660983427107, + -5.553211251936413 ], [ - -88.95322879198409, - 8.144050026715409 + -87.89385992730263, + -5.5553932800526935 ], [ - -89.62567169742158, - 8.135956991156363 + -87.24156791086705, + -5.555941070749144 ], [ - -90.29910963485702, - 8.131655257677641 + -86.58976312057973, + -5.5550155248441495 ], [ - -90.97342251735921, - 8.131622689803509 + -85.93847020659268, + -5.552770373117133 ], [ - -91.64846439790091, - 8.13637681882015 + -85.28770947910164, + -5.549352511082709 ], [ - -92.32405986601009, - 8.146478176724946 + -84.63749723083197, + -5.544902319538789 ], [ - -93, - 8.162533854955067 + -83.9878460377891, + -5.539553971242925 ] ] ] @@ -14525,168 +14525,168 @@ "coordinates": [ [ [ - -83.9878460377891, - -5.539553971242925 + -93, + 8.162533854955067 ], [ - -84.27179009258805, - -4.896562751656485 + -92.70114835751014, + 7.530390021971784 ], [ - -84.55527321574971, - -4.254708312632609 + -92.40370472917846, + 6.898735635532036 ], [ - -84.83838098643838, - -3.613970768281407 + -92.10759779950115, + 6.267375132306939 ], [ - -85.12119804730247, - -2.9743298550319404 + -91.8127527265242, + 5.636140955798851 ], [ - -85.4038082252464, - -2.335764856516269 + -91.51909227703186, + 5.00488848560826 ], [ - -85.6862946501746, - -1.6982545161551712 + -91.22653762288371, + 4.373492007958605 ], [ - -85.96873987211757, - -1.0617769353137823 + -90.93500889540144, + 3.741841488224458 ], [ - -86.25122597713244, - -0.42630945444008767 + -90.64442556562278, + 3.10983996664447 ], [ - -86.79618136864428, - 0.014556886277891262 + -90.09054039831994, + 2.665248288661092 ], [ - -87.34217111059314, - 0.4554068187673719 + -89.53815089678824, + 2.2218651838138572 ], [ - -87.88928113430757, - 0.8963863812880651 + -88.98719274483108, + 1.7794162308255073 ], [ -88.43759490858952, 1.337660587380447 ], [ - -88.98719274483108, - 1.7794162308255073 + -87.88928113430757, + 0.8963863812880651 ], [ - -89.53815089678824, - 2.2218651838138572 + -87.34217111059314, + 0.4554068187673719 ], [ - -90.09054039832, - 2.665248288661079 + -86.79618136864428, + 0.014556886277891262 ], [ - -90.64442556562278, - 3.10983996664447 + -86.25122597713244, + -0.42630945444008767 ], [ - -90.94161017972095, - 2.563360867460993 + -85.95420544961951, + 0.13292275320976288 ], [ - -91.2379323223023, - 2.0173791374190486 + -85.65640906057939, + 0.6925672169305065 ], [ - -91.53342987355842, - 1.471833293128459 + -85.35781235039065, + 1.2526762337456798 ], [ - -91.82814266251029, - 0.9266645541039044 + -85.05839361624635, + 1.8133037611419598 ], [ - -92.12211225624816, - 0.3818166846820636 + -84.75813417887747, + 2.374505485660123 ], [ - -92.41538177941652, - -0.16276415527486818 + -84.45701868276075, + 2.9363388920133953 ], [ - -92.70799576025479, - -0.7071295512160308 + -84.15503543362189, + 3.4988633322726352 ], [ - -93, - -1.251328966632106 + -83.8521767775203, + 4.0621400945523005 ], [ - -92.52244998720118, - -1.7910707032452284 + -84.31746791790601, + 4.578278183193922 ], [ - -92.0457609965282, - -2.3296810820991354 + -84.7838687250674, + 5.093527371445836 ], [ - -91.56987053247093, - -2.8673976099778504 + -85.25148660361958, + 5.6079385184327935 ], [ - -91.09470917416314, - -3.4044316034361413 + -85.72043037936982, + 6.1215707773920744 ], [ - -90.62020174768475, - -3.94097154090935 + -86.19081044224527, + 6.634493101618335 ], [ - -90.14626825635509, - -4.477185926411791 + -86.66273886730596, + 7.146786076626593 ], [ - -89.67282461710903, - -5.0132257437538845 + -87.13632949902149, + 7.658544161959716 ], [ - -89.19978324083445, - -5.549226566225722 + -87.61169797676752, + 8.16987845107548 ], [ - -88.54660983427107, - -5.553211251936413 + -88.28187834759257, + 8.155493059284444 ], [ - -87.89385992730263, - -5.5553932800526935 + -88.95322879198409, + 8.144050026715409 ], [ - -87.24156791086705, - -5.555941070749144 + -89.62567169742158, + 8.135956991156363 ], [ - -86.58976312057973, - -5.5550155248441495 + -90.29910963485702, + 8.131655257677641 ], [ - -85.93847020659268, - -5.552770373117133 + -90.97342251735921, + 8.131622689803509 ], [ - -85.28770947910164, - -5.549352511082709 + -91.64846439790091, + 8.13637681882015 ], [ - -84.63749723083197, - -5.544902319538789 + -92.32405986601009, + 8.146478176724946 ], [ - -83.9878460377891, - -5.539553971242925 + -93, + 8.162533854955067 ] ] ] @@ -15228,183 +15228,6 @@ "properties": { "cellIdHex": "21a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.0121539622109, - 5.539553971242925 - ], - [ - -66.26778454759733, - 6.2002352376515875 - ], - [ - -66.52268784597499, - 6.860955982163673 - ], - [ - -66.77699467383246, - 7.521763356203536 - ], - [ - -67.03084140138776, - 8.182707095310416 - ], - [ - -67.28437092418523, - 8.843839729456498 - ], - [ - -67.53773377524004, - 9.50521681291712 - ], - [ - -67.79108940463954, - 10.166897174738569 - ], - [ - -68.04460765925705, - 10.828943190607772 - ], - [ - -68.56090520656716, - 11.288138118190982 - ], - [ - -69.07794072672078, - 11.745971561108755 - ], - [ - -69.59580207692079, - 12.202427742880495 - ], - [ - -70.11457722173401, - 12.657490651991083 - ], - [ - -70.63435431793812, - 13.111144041777466 - ], - [ - -71.15522180608303, - 13.5633714332974 - ], - [ - -71.67726851045524, - 14.014156121733944 - ], - [ - -72.20058374954289, - 14.463481187019147 - ], - [ - -72.50833890861128, - 13.870415941730746 - ], - [ - -72.81697210049435, - 13.279046558152672 - ], - [ - -73.12625940907805, - 12.68931082623332 - ], - [ - -73.43600010740516, - 12.101146082906693 - ], - [ - -73.74601460642134, - 11.51448950120835 - ], - [ - -74.05614258597171, - 10.929278334586273 - ], - [ - -74.36624129254352, - 10.345450122295205 - ], - [ - -74.67618398940124, - 9.762942861013203 - ], - [ - -74.2294064363299, - 9.234822247725184 - ], - [ - -73.783257831377, - 8.705552210331334 - ], - [ - -73.33764407224169, - 8.175142108423033 - ], - [ - -72.89247106384772, - 7.643601043061667 - ], - [ - -72.44764463721418, - 7.110937868474658 - ], - [ - -72.00307046915566, - 6.577161205037902 - ], - [ - -71.5586540023952, - 6.042279453371794 - ], - [ - -71.11430036573398, - 5.5063008094177865 - ], - [ - -70.4746819498518, - 5.515792438583863 - ], - [ - -69.83565668587738, - 5.523864823148147 - ], - [ - -69.19719215675508, - 5.53046201575198 - ], - [ - -68.55925603070227, - 5.535530954551204 - ], - [ - -67.92181610126522, - 5.539021279190039 - ], - [ - -67.28484032049619, - 5.540885159501452 - ], - [ - -66.64829682596093, - 5.541077135992371 - ], - [ - -66.0121539622109, - 5.539553971242925 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "21e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -15580,175 +15403,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "2220000000000000" + "cellIdHex": "21e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -75, - 0 + -66.0121539622109, + 5.539553971242925 ], [ - -75.26978398788174, - 0.645556216024974 + -66.26778454759733, + 6.2002352376515875 ], [ - -75.538719195991, - 1.2903190246036744 + -66.52268784597499, + 6.860955982163673 ], [ - -75.80688958944131, - 1.9343059453843463 + -66.77699467383246, + 7.521763356203536 ], [ - -76.07437857709868, - 2.5775348316392543 + -67.03084140138776, + 8.182707095310416 ], [ - -76.34126916495205, - 3.2200239120750207 + -67.28437092418523, + 8.843839729456498 ], [ - -76.60764411572302, - 3.861791839732973 + -67.53773377524004, + 9.50521681291712 ], [ - -76.87358611656293, - 4.50285774905343 + -67.79108940463954, + 10.166897174738569 ], [ - -77.13917795701809, - 5.143241322392131 + -68.04460765925705, + 10.828943190607772 ], [ - -77.66805813888288, - 5.580514035405847 + -68.56090520656716, + 11.288138118190982 ], [ - -78.19776514756427, - 6.016414688115981 + -69.07794072672078, + 11.745971561108755 ], [ - -78.72839092622229, - 6.450948356044848 + -69.59580207692079, + 12.202427742880495 ], [ - -79.26002837519957, - 6.88412251681717 + -70.11457722173401, + 12.657490651991083 ], [ - -79.79277154677857, - 7.315947442795506 + -70.63435431793812, + 13.111144041777466 ], [ - -80.32671585854746, - 7.7464366681473695 + -71.15522180608303, + 13.5633714332974 ], [ - -80.86195832779134, - 8.175607546454666 + -71.67726851045524, + 14.014156121733944 ], [ - -81.39859782947053, - 8.603481919068038 + -72.20058374954289, + 14.463481187019147 ], [ - -81.70808299623343, - 8.031727091468568 + -72.50833890861128, + 13.870415941730746 ], [ - -82.01684063123798, - 7.461291957500545 + -72.81697210049435, + 13.279046558152672 ], [ - -82.32482551988403, - 6.8920976387159705 + -73.12625940907805, + 12.68931082623332 ], [ - -82.63200174447775, - 6.324067602238388 + -73.43600010740516, + 12.101146082906693 ], [ - -82.93834173718346, - 5.757127637480502 + -73.74601460642134, + 11.51448950120835 ], [ - -83.24382543508847, - 5.191205820788224 + -74.05614258597171, + 10.929278334586273 ], [ - -83.54843952633644, - 4.6262324705053555 + -74.36624129254352, + 10.345450122295205 ], [ - -83.8521767775203, - 4.0621400945523005 + -74.67618398940124, + 9.762942861013203 ], [ - -83.38788916554512, - 3.5450692961007224 + -74.2294064363299, + 9.234822247725184 ], [ - -82.92450004944487, - 3.027027994738247 + -73.783257831377, + 8.705552210331334 ], [ - -82.46190534084855, - 2.5079835515986555 + -73.33764407224169, + 8.175142108423033 ], [ - -82.00000173529583, - 1.9879077598264348 + -72.89247106384772, + 7.643601043061667 ], [ - -81.53868655497001, - 1.466776237175104 + -72.44764463721418, + 7.110937868474658 ], [ - -81.07785759526018, - 0.9445679133708005 + -72.00307046915566, + 6.577161205037902 ], [ - -80.61741297549707, - 0.421264596085337 + -71.5586540023952, + 6.042279453371794 ], [ - -80.15725099387515, - -0.10314939756247994 + -71.11430036573398, + 5.5063008094177865 ], [ - -79.51007161843097, - -0.08934807197419792 + -70.4746819498518, + 5.515792438583863 ], [ - -78.86364511575084, - -0.07560620233202364 + -69.83565668587738, + 5.523864823148147 ], [ - -78.21795756821666, - -0.062030051362952865 + -69.19719215675508, + 5.53046201575198 ], [ - -77.57299324123971, - -0.04872058831839688 + -68.55925603070227, + 5.535530954551204 ], [ - -76.92873477282956, - -0.03577378813442822 + -67.92181610126522, + 5.539021279190039 ], [ - -76.28516334602284, - -0.023280913104942243 + -67.28484032049619, + 5.540885159501452 ], [ - -75.64225884554867, - -0.01132877806060274 + -66.64829682596093, + 5.541077135992371 ], [ - -75, - 0 + -66.0121539622109, + 5.539553971242925 ] ] ] @@ -15757,7 +15580,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "2260000000000000" + "cellIdHex": "2220000000000000" }, "geometry": { "type": "Polygon", @@ -15931,6 +15754,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "2260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75, + 0 + ], + [ + -75.26978398788174, + 0.645556216024974 + ], + [ + -75.538719195991, + 1.2903190246036744 + ], + [ + -75.80688958944131, + 1.9343059453843463 + ], + [ + -76.07437857709868, + 2.5775348316392543 + ], + [ + -76.34126916495205, + 3.2200239120750207 + ], + [ + -76.60764411572302, + 3.861791839732973 + ], + [ + -76.87358611656293, + 4.50285774905343 + ], + [ + -77.13917795701809, + 5.143241322392131 + ], + [ + -77.66805813888288, + 5.580514035405847 + ], + [ + -78.19776514756427, + 6.016414688115981 + ], + [ + -78.72839092622229, + 6.450948356044848 + ], + [ + -79.26002837519957, + 6.88412251681717 + ], + [ + -79.79277154677857, + 7.315947442795506 + ], + [ + -80.32671585854746, + 7.7464366681473695 + ], + [ + -80.86195832779134, + 8.175607546454666 + ], + [ + -81.39859782947053, + 8.603481919068038 + ], + [ + -81.70808299623343, + 8.031727091468568 + ], + [ + -82.01684063123798, + 7.461291957500545 + ], + [ + -82.32482551988403, + 6.8920976387159705 + ], + [ + -82.63200174447775, + 6.324067602238388 + ], + [ + -82.93834173718346, + 5.757127637480502 + ], + [ + -83.24382543508847, + 5.191205820788224 + ], + [ + -83.54843952633644, + 4.6262324705053555 + ], + [ + -83.8521767775203, + 4.0621400945523005 + ], + [ + -83.38788916554512, + 3.5450692961007224 + ], + [ + -82.92450004944487, + 3.027027994738247 + ], + [ + -82.46190534084855, + 2.5079835515986555 + ], + [ + -82.00000173529583, + 1.9879077598264348 + ], + [ + -81.53868655497001, + 1.466776237175104 + ], + [ + -81.07785759526018, + 0.9445679133708005 + ], + [ + -80.61741297549707, + 0.421264596085337 + ], + [ + -80.15725099387515, + -0.10314939756247994 + ], + [ + -79.51007161843097, + -0.08934807197419792 + ], + [ + -78.86364511575084, + -0.07560620233202364 + ], + [ + -78.21795756821666, + -0.062030051362952865 + ], + [ + -77.57299324123971, + -0.04872058831839688 + ], + [ + -76.92873477282956, + -0.03577378813442822 + ], + [ + -76.28516334602284, + -0.023280913104942243 + ], + [ + -75.64225884554867, + -0.01132877806060274 + ], + [ + -75, + 0 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -18060,6 +18060,183 @@ "properties": { "cellIdHex": "25a0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57, + 31.832359041336087 + ], + [ + -57.810335372280406, + 31.938398148952622 + ], + [ + -58.62114836017008, + 32.03966944539289 + ], + [ + -59.4324086676541, + 32.13616896353093 + ], + [ + -60.24408528757169, + 32.22789297397679 + ], + [ + -61.05614663734195, + 32.314837967607545 + ], + [ + -61.86856070618876, + 32.397000631546376 + ], + [ + -62.68129521550122, + 32.47437781747659 + ], + [ + -63.49431779429307, + 32.546966500935476 + ], + [ + -64.24256400127308, + 32.28795965427349 + ], + [ + -64.98563587774458, + 32.02410234253843 + ], + [ + -65.72359081927897, + 31.75547039557303 + ], + [ + -66.45649257601144, + 31.482138275789108 + ], + [ + -67.18441157095276, + 31.204179065899996 + ], + [ + -67.90742529974818, + 30.92166447008943 + ], + [ + -68.62561882884569, + 30.634664832587035 + ], + [ + -69.33908541304464, + 30.34324917904292 + ], + [ + -68.90297145069889, + 29.817509611348882 + ], + [ + -68.47306323014794, + 29.29088776493135 + ], + [ + -68.04904297821372, + 28.763500256156945 + ], + [ + -67.6306070167742, + 28.235451757095355 + ], + [ + -67.21746511804264, + 27.706836137865213 + ], + [ + -66.80933986363107, + 27.1777374982444 + ], + [ + -66.40596601305879, + 26.648231099444637 + ], + [ + -66.00708988602287, + 26.118384205901382 + ], + [ + -65.25934554699495, + 26.288347863309184 + ], + [ + -64.50893252606613, + 26.453736372755746 + ], + [ + -63.75580889705759, + 26.614495359129286 + ], + [ + -62.99993978100554, + 26.77057104673945 + ], + [ + -62.24129671912419, + 26.92191012503988 + ], + [ + -61.47985713632363, + 27.06845964665534 + ], + [ + -60.71560387967605, + 27.210166951020653 + ], + [ + -59.94852481906753, + 27.346979608405157 + ], + [ + -59.59322676044144, + 27.91389605819596 + ], + [ + -59.23457970449658, + 28.479164902383836 + ], + [ + -58.87236342035703, + 29.042715414843645 + ], + [ + -58.506357424306884, + 29.604479180256902 + ], + [ + -58.1363406578854, + 30.164389721873253 + ], + [ + -57.76209117423957, + 30.72238214920248 + ], + [ + -57.38338583250078, + 31.278392823788284 + ], + [ + -57, + 31.832359041336087 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "25e0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -18235,7 +18412,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "25e0000000000000" + "cellIdHex": "2620000000000000" }, "geometry": { "type": "Polygon", @@ -18243,167 +18420,167 @@ [ [ -57, - 31.832359041336087 + 42.37830150075416 ], [ - -57.810335372280406, - 31.938398148952622 + -57.939623950006535, + 42.498922439869055 ], [ - -58.62114836017008, - 32.03966944539289 + -58.88203369312282, + 42.61309680557351 ], [ - -59.4324086676541, - 32.13616896353093 + -59.827190643314964, + 42.720755934293194 ], [ - -60.24408528757169, - 32.22789297397679 + -60.775056912400146, + 42.82182667002338 ], [ - -61.05614663734195, - 32.314837967607545 + -61.72559583221755, + 42.91623066511017 ], [ - -61.86856070618876, - 32.397000631546376 + -62.678772525389036, + 43.003883559255385 ], [ - -62.68129521550122, - 32.47437781747659 + -63.634554528291915, + 43.084694014223565 ], [ - -63.49431779429307, - 32.546966500935476 + -64.59291246997742, + 43.158562576936596 ], [ - -64.24256400127308, - 32.28795965427349 + -65.45840651420536, + 42.90541610926601 ], [ - -64.98563587774458, - 32.02410234253843 + -66.3156987327377, + 42.646396143578976 ], [ - -65.72359081927897, - 31.75547039557303 + -67.16481328380405, + 42.381623975517805 ], [ - -66.45649257601144, - 31.482138275789108 + -68.00578215503924, + 42.11121902793486 ], [ - -67.18441157095276, - 31.204179065899996 + -68.83864479650867, + 41.83529873987633 ], [ - -67.90742529974818, - 30.92166447008943 + -69.66344776254869, + 41.55397845747509 ], [ - -68.62561882884569, - 30.634664832587035 + -70.48024436514078, + 41.267371325230066 ], [ - -69.33908541304464, - 30.34324917904292 + -71.28909434162085, + 40.975588175816924 ], [ - -68.90297145069889, - 29.817509611348882 + -70.72740475817335, + 40.469135977389314 ], [ - -68.47306323014794, - 29.29088776493135 + -70.17784271751145, + 39.95863781328699 ], [ - -68.04904297821372, - 28.763500256156945 + -69.63989031067172, + 39.444460141040246 ], [ - -67.6306070167742, - 28.235451757095355 + -69.11304314587846, + 38.92693989100173 ], [ - -67.21746511804264, - 27.706836137865213 + -68.59681132852927, + 38.4063867074794 ], [ - -66.80933986363107, - 27.1777374982444 + -68.09072014389147, + 37.88308503825152 ], [ - -66.40596601305879, - 26.648231099444637 + -67.59431049100317, + 37.35729607875372 ], [ - -66.00708988602287, - 26.118384205901382 + -67.10713910985169, + 36.82925957785007 ], [ - -65.25934554699495, - 26.288347863309184 + -66.27497846719359, + 36.992666296933734 ], [ - -64.50893252606613, - 26.453736372755746 + -65.4382771861525, + 37.15058817528357 ], [ - -63.75580889705759, - 26.614495359129286 + -64.59707581391399, + 37.302952611056895 ], [ - -62.99993978100554, - 26.77057104673945 + -63.75141931729024, + 37.4496870148169 ], [ - -62.24129671912419, - 26.92191012503988 + -62.90135709819208, + 37.5907188797037 ], [ - -61.47985713632363, - 27.06845964665534 + -62.0469430018606, + 37.72597585158081 ], [ - -60.71560387967605, - 27.210166951020653 + -61.188235316997634, + 37.855385799220855 ], [ - -59.94852481906753, - 27.346979608405157 + -60.32529676701586, + 37.97887688454019 ], [ - -59.59322676044144, - 27.91389605819596 + -59.93442538537488, + 38.537081820194224 ], [ - -59.23457970449658, - 28.479164902383836 + -59.53705733162121, + 39.09302434364567 ], [ - -58.87236342035703, - 29.042715414843645 + -59.13290717074722, + 39.6466555558433 ], [ - -58.506357424306884, - 29.604479180256902 + -58.72168359878083, + 40.19792492578674 ], [ - -58.1363406578854, - 30.164389721873253 + -58.30308901702341, + 40.74678002529752 ], [ - -57.76209117423957, - 30.72238214920248 + -57.87681911100458, + 41.29316626807382 ], [ - -57.38338583250078, - 31.278392823788284 + -57.442562434601314, + 41.83702665162222 ], [ -57, - 31.832359041336087 + 42.37830150075416 ] ] ] @@ -18412,7 +18589,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "2620000000000000" + "cellIdHex": "2660000000000000" }, "geometry": { "type": "Polygon", @@ -18586,183 +18763,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "2660000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -57, - 42.37830150075416 - ], - [ - -57.939623950006535, - 42.498922439869055 - ], - [ - -58.88203369312282, - 42.61309680557351 - ], - [ - -59.827190643314964, - 42.720755934293194 - ], - [ - -60.775056912400146, - 42.82182667002338 - ], - [ - -61.72559583221755, - 42.91623066511017 - ], - [ - -62.678772525389036, - 43.003883559255385 - ], - [ - -63.634554528291915, - 43.084694014223565 - ], - [ - -64.59291246997742, - 43.158562576936596 - ], - [ - -65.45840651420536, - 42.90541610926601 - ], - [ - -66.3156987327377, - 42.646396143578976 - ], - [ - -67.16481328380405, - 42.381623975517805 - ], - [ - -68.00578215503924, - 42.11121902793486 - ], - [ - -68.83864479650867, - 41.83529873987633 - ], - [ - -69.66344776254869, - 41.55397845747509 - ], - [ - -70.48024436514078, - 41.267371325230066 - ], - [ - -71.28909434162085, - 40.975588175816924 - ], - [ - -70.72740475817335, - 40.469135977389314 - ], - [ - -70.17784271751145, - 39.95863781328699 - ], - [ - -69.63989031067172, - 39.444460141040246 - ], - [ - -69.11304314587846, - 38.92693989100173 - ], - [ - -68.59681132852927, - 38.4063867074794 - ], - [ - -68.09072014389147, - 37.88308503825152 - ], - [ - -67.59431049100317, - 37.35729607875372 - ], - [ - -67.10713910985169, - 36.82925957785007 - ], - [ - -66.27497846719359, - 36.992666296933734 - ], - [ - -65.4382771861525, - 37.15058817528357 - ], - [ - -64.59707581391399, - 37.302952611056895 - ], - [ - -63.75141931729024, - 37.4496870148169 - ], - [ - -62.90135709819208, - 37.5907188797037 - ], - [ - -62.0469430018606, - 37.72597585158081 - ], - [ - -61.188235316997634, - 37.855385799220855 - ], - [ - -60.32529676701586, - 37.97887688454019 - ], - [ - -59.93442538537488, - 38.537081820194224 - ], - [ - -59.53705733162121, - 39.09302434364567 - ], - [ - -59.13290717074722, - 39.6466555558433 - ], - [ - -58.72168359878083, - 40.19792492578674 - ], - [ - -58.30308901702341, - 40.74678002529752 - ], - [ - -57.87681911100458, - 41.29316626807382 - ], - [ - -57.442562434601314, - 41.83702665162222 - ], - [ - -57, - 42.37830150075416 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -19304,168 +19304,168 @@ "coordinates": [ [ [ - -57, - 21.27100957285517 + -74.36878034136026, + 19.765749214107952 ], [ - -57.744694147907126, - 21.36027233039878 + -73.63004557488603, + 19.76212919146411 ], [ - -58.48915143725958, - 21.445532390258858 + -72.89228171096363, + 19.7552974947138 ], [ - -59.2333716974656, - 21.526794472204557 + -72.1553173869014, + 19.745165949584045 ], [ - -59.97735470359635, - 21.60406361678073 + -71.4190073117332, + 19.731660977058525 ], [ - -60.72110030162173, - 21.677345210969445 + -70.68322774180513, + 19.714720627079494 ], [ - -61.4646085461294, - 21.746645016668637 + -69.94787284641347, + 19.69429229573705 ], [ - -62.20787985272068, - 21.811969202676785 + -69.21285176546502, + 19.670330952804132 ], [ - -62.95091516772004, - 21.873324381037982 + -68.4780862096332, + 19.642797754009656 ], [ - -63.6474571214369, - 21.606975189861085 + -67.79114277242292, + 19.933090334027135 ], [ - -64.34195871611894, - 21.336812405433907 + -67.10361549430968, + 20.220422827416208 ], [ - -65.03460811548763, - 21.062948590774777 + -66.41519753532737, + 20.504614891202102 ], [ -65.72561194773937, 20.7855052935926 ], [ - -66.41519753532737, - 20.504614891202102 + -65.03460811548763, + 21.062948590774777 ], [ - -67.10361549430968, - 20.220422827416197 + -64.34195871611894, + 21.336812405433907 ], [ - -67.79114277242292, - 19.93309033402712 + -63.6474571214369, + 21.606975189861085 ], [ - -68.4780862096332, - 19.642797754009656 + -62.95091516772004, + 21.873324381037982 ], [ - -68.10916213432523, - 19.1282992786855 + -63.321743549049074, + 22.404212941506128 ], [ - -67.74274771089489, - 18.613850628821204 + -63.69538863138541, + 22.9350888560876 ], [ - -67.37867960351764, - 18.099458347308452 + -64.07203148365852, + 23.46592676163621 ], [ - -67.01680126278131, - 17.585126846827592 + -64.45186052357411, + 23.996697696004823 ], [ - -66.65696244945525, - 17.07085868293248 + -64.83507196658337, + 24.52736871990067 ], [ - -66.29901879043138, - 16.556654794863714 + -65.2218702970049, + 25.057902499560104 ], [ - -65.94283136448723, - 16.04251471807537 + -65.61246876164353, + 25.588256845971678 ], [ - -65.58826631565478, - 15.528436771949746 + -66.00708988602287, + 26.118384205901382 ], [ - -64.86274023987568, - 15.696541008965939 + -66.75221525331767, + 25.94390055026972 ], [ - -64.13751260884885, - 15.861719396959536 + -67.49478001325963, + 25.764953048081967 ], [ - -63.41235492146717, - 16.023807704898434 + -68.23485221759972, + 25.581599146912225 ], [ - -62.68706132504201, - 16.182658449084318 + -68.97251083843764, + 25.393897970011984 ], [ - -61.96144605704296, - 16.338138352238424 + -69.70784724746119, + 25.20191080714578 ], [ - -61.23534123247009, - 16.490126224956356 + -70.44096700030491, + 25.00570175012071 ], [ - -60.5085949244031, - 16.638511193215383 + -71.17199200115573, + 24.805338518102342 ], [ - -59.78106949391383, - 16.783191210521874 + -71.90106314419495, + 24.600893533663328 ], [ - -59.43798211853709, - 17.346562268742066 + -72.20047148691822, + 23.99428822528476 ], [ - -59.09400721963732, - 17.909490195958924 + -72.50161250129537, + 23.38770950651952 ], [ - -58.74893564522449, - 18.471846827363596 + -72.80488880308974, + 22.781415392146638 ], [ - -58.40256122061163, - 19.033510617911343 + -73.1107216276971, + 22.17569638132987 ], [ - -58.05468046448516, - 19.594366117856698 + -73.41955234355419, + 21.57087936278443 ], [ - -57.70509231090438, - 20.15430347664278 + -73.73184400631152, + 20.967331944966677 ], [ - -57.3535978374905, - 20.71321797346121 + -74.04808294179855, + 20.365467250374323 ], [ - -57, - 21.27100957285517 + -74.36878034136026, + 19.765749214107952 ] ] ] @@ -19481,168 +19481,168 @@ "coordinates": [ [ [ - -74.36878034136026, - 19.765749214107952 + -57, + 21.27100957285517 ], [ - -73.63004557488603, - 19.76212919146411 + -57.744694147907126, + 21.36027233039878 ], [ - -72.89228171096363, - 19.7552974947138 + -58.48915143725958, + 21.445532390258858 ], [ - -72.1553173869014, - 19.745165949584045 + -59.2333716974656, + 21.526794472204557 ], [ - -71.4190073117332, - 19.731660977058525 + -59.97735470359635, + 21.60406361678073 ], [ - -70.68322774180513, - 19.714720627079494 + -60.72110030162173, + 21.677345210969445 ], [ - -69.94787284641347, - 19.69429229573705 + -61.4646085461294, + 21.746645016668637 ], [ - -69.21285176546502, - 19.670330952804132 + -62.20787985272068, + 21.811969202676785 ], [ - -68.4780862096332, - 19.642797754009656 + -62.95091516772004, + 21.873324381037982 ], [ - -67.79114277242292, - 19.933090334027135 + -63.6474571214369, + 21.606975189861085 ], [ - -67.10361549430968, - 20.220422827416208 + -64.34195871611894, + 21.336812405433907 ], [ - -66.41519753532737, - 20.504614891202102 + -65.03460811548763, + 21.062948590774777 ], [ -65.72561194773937, 20.7855052935926 ], [ - -65.03460811548763, - 21.062948590774777 + -66.41519753532737, + 20.504614891202102 ], [ - -64.34195871611894, - 21.336812405433907 + -67.10361549430968, + 20.220422827416197 ], [ - -63.6474571214369, - 21.606975189861085 + -67.79114277242292, + 19.93309033402712 ], [ - -62.95091516772004, - 21.873324381037982 + -68.4780862096332, + 19.642797754009656 ], [ - -63.321743549049074, - 22.404212941506128 + -68.10916213432523, + 19.1282992786855 ], [ - -63.69538863138541, - 22.9350888560876 + -67.74274771089489, + 18.613850628821204 ], [ - -64.07203148365852, - 23.46592676163621 + -67.37867960351764, + 18.099458347308452 ], [ - -64.45186052357411, - 23.996697696004823 + -67.01680126278131, + 17.585126846827592 ], [ - -64.83507196658337, - 24.52736871990067 + -66.65696244945525, + 17.07085868293248 ], [ - -65.2218702970049, - 25.057902499560104 + -66.29901879043138, + 16.556654794863714 ], [ - -65.61246876164353, - 25.588256845971678 + -65.94283136448723, + 16.04251471807537 ], [ - -66.00708988602287, - 26.118384205901382 + -65.58826631565478, + 15.528436771949746 ], [ - -66.75221525331767, - 25.94390055026972 + -64.86274023987568, + 15.696541008965939 ], [ - -67.49478001325963, - 25.764953048081967 + -64.13751260884885, + 15.861719396959536 ], [ - -68.23485221759972, - 25.581599146912225 + -63.41235492146717, + 16.023807704898434 ], [ - -68.97251083843764, - 25.393897970011984 + -62.68706132504201, + 16.182658449084318 ], [ - -69.70784724746119, - 25.20191080714578 + -61.96144605704296, + 16.338138352238424 ], [ - -70.44096700030491, - 25.00570175012071 + -61.23534123247009, + 16.490126224956356 ], [ - -71.17199200115573, - 24.805338518102342 + -60.5085949244031, + 16.638511193215383 ], [ - -71.90106314419495, - 24.600893533663328 + -59.78106949391383, + 16.783191210521874 ], [ - -72.20047148691822, - 23.99428822528476 + -59.43798211853709, + 17.346562268742066 ], [ - -72.50161250129537, - 23.38770950651952 + -59.09400721963732, + 17.909490195958924 ], [ - -72.80488880308974, - 22.781415392146638 + -58.74893564522449, + 18.471846827363596 ], [ - -73.1107216276971, - 22.17569638132987 + -58.40256122061163, + 19.033510617911343 ], [ - -73.41955234355419, - 21.57087936278443 + -58.05468046448516, + 19.594366117856698 ], [ - -73.73184400631152, - 20.967331944966677 + -57.70509231090438, + 20.15430347664278 ], [ - -74.04808294179855, - 20.365467250374323 + -57.3535978374905, + 20.71321797346121 ], [ - -74.36878034136026, - 19.765749214107952 + -57, + 21.27100957285517 ] ] ] @@ -31340,168 +31340,168 @@ "coordinates": [ [ [ - -42.7883588121141, - -40.904398113086714 + -21, + -42.37830150075417 ], [ - -41.92658809773616, - -41.14857436118394 + -21.936118738828554, + -42.28385129983738 ], [ - -41.05966528298245, - -41.38615911616741 + -22.867961259201934, + -42.18255502487402 ], [ - -40.18748286898756, - -41.61723278615241 + -23.795416111341865, + -42.07448703477159 ], [ - -39.30995272379715, - -41.84184794378837 + -24.71837831218545, + -41.95972220341343 ], [ - -38.427004381300264, - -42.06003446985104 + -25.636749496696666, + -41.83833575925767 ], [ - -37.53858363336167, - -42.27180361956395 + -26.550438058092823, + -41.7104031150009 ], [ - -36.644651364400545, - -42.47715126902027 + -27.459359279026103, + -41.57599968585802 ], [ - -35.74518258553974, - -42.67606053192684 + -28.363435456125558, + -41.43520069460249 ], [ - -34.80076487410935, - -42.54624327782248 + -29.26535267658386, + -41.613799468904986 ], [ - -33.86282309363082, - -42.408614544116 + -30.172974563526566, + -41.786136765465685 ], [ - -32.93120871931035, - -42.263507433395596 + -31.08641204674899, + -41.952015564923585 ], [ -32.00578215503924, -42.11121902793486 ], [ - -31.08641204674899, - -41.952015564923585 + -32.93120871931035, + -42.263507433395596 ], [ - -30.172974563526566, - -41.786136765465685 + -33.86282309363082, + -42.408614544116 ], [ - -29.26535267658386, - -41.613799468904986 + -34.80076487410935, + -42.54624327782248 ], [ - -28.363435456125558, - -41.43520069460249 + -35.74518258553974, + -42.67606053192684 ], [ - -28.72645975701937, - -40.866380285834595 + -35.451112343226555, + -43.25728022407646 ], [ - -29.083167024604336, - -40.295531106979 + -35.15144905639556, + -43.836846200576524 ], [ - -29.43385670791588, - -39.72267989022345 + -34.8458910334092, + -44.41476570866769 ], [ - -29.77882226352483, - -39.147852128574364 + -34.534128683286326, + -44.99104363219952 ], [ - -30.118351806293617, - -38.57107237890203 + -34.215843564027296, + -45.565682298831845 ], [ - -30.452728761801723, - -37.992364581363454 + -33.890707415855616, + -46.138681293123916 ], [ - -30.78223252250376, - -37.41175239852572 + -33.55838117429039, + -46.710037272457626 ], [ - -31.107139109851687, - -36.82925957785007 + -33.21851395810796, + -47.27974378301812 ], [ - -31.96880355834378, - -36.878537465046556 + -32.163033086206326, + -47.24677418802078 ], [ - -32.83128778830559, - -36.92229510782253 + -31.11123690531906, + -47.204411370082525 ], [ - -33.69458657677126, - -36.960489651725965 + -30.063176043872886, + -47.152925045583444 ], [ - -34.55870140541663, - -36.993072113670046 + -29.01890384730774, + -47.092557962266596 ], [ - -35.42364163926936, - -37.01998606714153 + -27.97847596423628, + -47.02352968436799 ], [ - -36.2894258925204, - -37.04116602319403 + -26.941949872266946, + -46.94603979604272 ], [ - -37.156083618547086, - -37.05653542520471 + -25.909384370372777, + -46.8602706196257 ], [ - -38.02365696949073, - -37.06600414949624 + -24.88083905763574, + -46.76638952775175 ], [ - -38.5729501958773, - -37.56550354605933 + -24.358143684904007, + -46.22557370755463 ], [ - -39.13436966265522, - -38.060512872930914 + -23.847254800373435, + -45.6821502612817 ], [ - -39.708458689729355, - -38.550531438483986 + -23.34761211182672, + -45.136342300374906 ], [ - -40.295769344101814, - -39.035007726335486 + -22.85867736039654, + -44.588357247593 ], [ - -40.89685903721215, - -39.513334539181606 + -22.379933943948345, + -44.038387867905435 ], [ - -41.51228622640036, - -39.98484375688581 + -21.910886440509557, + -43.48661323805234 ], [ - -42.142605063190274, - -40.4488007019546 + -21.451060053855144, + -42.93319965713203 ], [ - -42.7883588121141, - -40.904398113086714 + -21, + -42.37830150075417 ] ] ] @@ -31517,168 +31517,168 @@ "coordinates": [ [ [ - -21, - -42.37830150075417 + -42.7883588121141, + -40.904398113086714 ], [ - -21.936118738828554, - -42.28385129983738 + -41.92658809773616, + -41.14857436118394 ], [ - -22.867961259201934, - -42.18255502487402 + -41.05966528298245, + -41.38615911616741 ], [ - -23.795416111341865, - -42.07448703477159 + -40.18748286898756, + -41.61723278615241 ], [ - -24.71837831218545, - -41.95972220341343 + -39.30995272379715, + -41.84184794378837 ], [ - -25.636749496696666, - -41.83833575925767 + -38.427004381300264, + -42.06003446985104 ], [ - -26.550438058092823, - -41.7104031150009 + -37.53858363336167, + -42.27180361956395 ], [ - -27.459359279026103, - -41.57599968585802 + -36.644651364400545, + -42.47715126902027 ], [ - -28.363435456125558, - -41.43520069460249 + -35.74518258553974, + -42.67606053192684 ], [ - -29.26535267658386, - -41.613799468904986 + -34.80076487410935, + -42.54624327782248 ], [ - -30.172974563526566, - -41.786136765465685 + -33.86282309363082, + -42.408614544116 ], [ - -31.08641204674899, - -41.952015564923585 + -32.93120871931035, + -42.263507433395596 ], [ -32.00578215503924, -42.11121902793486 ], [ - -32.93120871931035, - -42.263507433395596 + -31.08641204674899, + -41.952015564923585 ], [ - -33.86282309363082, - -42.408614544116 + -30.172974563526566, + -41.786136765465685 ], [ - -34.80076487410935, - -42.54624327782248 + -29.26535267658386, + -41.613799468904986 ], [ - -35.74518258553974, - -42.67606053192684 + -28.363435456125558, + -41.43520069460249 ], [ - -35.451112343226555, - -43.25728022407646 + -28.72645975701937, + -40.866380285834595 ], [ - -35.15144905639556, - -43.836846200576524 + -29.083167024604336, + -40.295531106979 ], [ - -34.8458910334092, - -44.41476570866769 + -29.43385670791588, + -39.72267989022345 ], [ - -34.534128683286326, - -44.99104363219952 + -29.77882226352483, + -39.147852128574364 ], [ - -34.215843564027296, - -45.565682298831845 + -30.118351806293617, + -38.57107237890203 ], [ - -33.890707415855616, - -46.138681293123916 + -30.452728761801723, + -37.992364581363454 ], [ - -33.55838117429039, - -46.710037272457626 + -30.78223252250376, + -37.41175239852572 ], [ - -33.21851395810796, - -47.27974378301812 + -31.107139109851687, + -36.82925957785007 ], [ - -32.163033086206326, - -47.24677418802078 + -31.96880355834378, + -36.878537465046556 ], [ - -31.11123690531906, - -47.204411370082525 + -32.83128778830559, + -36.92229510782253 ], [ - -30.063176043872886, - -47.152925045583444 + -33.69458657677126, + -36.960489651725965 ], [ - -29.01890384730774, - -47.092557962266596 + -34.55870140541663, + -36.993072113670046 ], [ - -27.97847596423628, - -47.02352968436799 + -35.42364163926936, + -37.01998606714153 ], [ - -26.941949872266946, - -46.94603979604272 + -36.2894258925204, + -37.04116602319403 ], [ - -25.909384370372777, - -46.8602706196257 + -37.156083618547086, + -37.05653542520471 ], [ - -24.88083905763574, - -46.76638952775175 + -38.02365696949073, + -37.06600414949624 ], [ - -24.358143684904007, - -46.22557370755463 + -38.5729501958773, + -37.56550354605933 ], [ - -23.847254800373435, - -45.6821502612817 + -39.13436966265522, + -38.060512872930914 ], [ - -23.34761211182672, - -45.136342300374906 + -39.708458689729355, + -38.550531438483986 ], [ - -22.85867736039654, - -44.588357247593 + -40.295769344101814, + -39.035007726335486 ], [ - -22.379933943948345, - -44.038387867905435 + -40.89685903721215, + -39.513334539181606 ], [ - -21.910886440509557, - -43.48661323805234 + -41.51228622640036, + -39.98484375688581 ], [ - -21.451060053855144, - -42.93319965713203 + -42.142605063190274, + -40.4488007019546 ], [ - -21, - -42.37830150075417 + -42.7883588121141, + -40.904398113086714 ] ] ] @@ -32220,183 +32220,6 @@ "properties": { "cellIdHex": "35a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -21, - -21.27100957285517 - ], - [ - -21.743856311061336, - -21.1445643316594 - ], - [ - -22.485832719943573, - -21.013627611471165 - ], - [ - -23.22598293513397, - -20.878258484479932 - ], - [ - -23.96436758354264, - -20.73851814594297 - ], - [ - -24.70105488766751, - -20.594470268877764 - ], - [ - -25.43612143676944, - -20.446181427293297 - ], - [ - -26.16965306836778, - -20.29372160226705 - ], - [ - -26.901745879528903, - -20.137164788518362 - ], - [ - -27.60684465204895, - -20.30422316798286 - ], - [ - -28.312513366520477, - -20.467973481530382 - ], - [ - -29.018765039081472, - -20.62840455173058 - ], - [ - -29.725611947739367, - -20.7855052935926 - ], - [ - -30.43306569427665, - -20.93926473348562 - ], - [ - -31.141137274366997, - -21.089672029966017 - ], - [ - -31.84983715758699, - -21.236716496944144 - ], - [ - -32.55917537940525, - -21.380387629741143 - ], - [ - -32.23983060898746, - -21.97382255018627 - ], - [ - -31.92117598261507, - -22.567259162930156 - ], - [ - -31.602903908620192, - -23.16050809898655 - ], - [ - -31.284715579397528, - -23.753396537845486 - ], - [ - -30.966320226133803, - -24.345766646986494 - ], - [ - -30.647434395563323, - -24.93747414876025 - ], - [ - -30.327781249320083, - -25.528387004446458 - ], - [ - -30.007089886022868, - -26.118384205901382 - ], - [ - -29.245715310174432, - -26.0689898450879 - ], - [ - -28.484032229827505, - -26.01537752420747 - ], - [ - -27.72206293111128, - -25.957541898180313 - ], - [ - -26.959829287712864, - -25.895477978771684 - ], - [ - -26.1973526975886, - -25.829181128494586 - ], - [ - -25.434654022161794, - -25.758647053896865 - ], - [ - -24.67175352764025, - -25.683871798232737 - ], - [ - -23.90867082816328, - -25.604851733521752 - ], - [ - -23.535995287147557, - -25.06311027085928 - ], - [ - -23.166260871268378, - -24.521322329435705 - ], - [ - -22.79928812611047, - -23.979516316177897 - ], - [ - -22.434904038458853, - -23.437717587283096 - ], - [ - -22.07294168141891, - -22.895948702973644 - ], - [ - -21.71323987512642, - -22.35422966186825 - ], - [ - -21.355642862569766, - -21.812578116686275 - ], - [ - -21, - -21.27100957285517 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "35e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -32572,7 +32395,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "3620000000000000" + "cellIdHex": "35e0000000000000" }, "geometry": { "type": "Polygon", @@ -32580,167 +32403,167 @@ [ [ -21, - -31.832359041336087 + -21.27100957285517 ], [ - -21.808442881014116, - -31.72119465954957 + -21.743856311061336, + -21.1445643316594 ], [ - -22.613573923224067, - -31.604582790778075 + -22.485832719943573, + -21.013627611471165 ], [ - -23.41535908629737, - -31.482580550439312 + -23.22598293513397, + -20.878258484479932 ], [ - -24.21376753648633, - -31.3552451344781 + -23.96436758354264, + -20.73851814594297 ], [ - -25.008771734758056, - -31.22263377455108 + -24.70105488766751, + -20.594470268877764 ], [ - -25.800347530084082, - -31.084803692958324 + -25.43612143676944, + -20.446181427293297 ], [ - -26.588474260000112, - -30.94181205743925 + -26.16965306836778, + -20.29372160226705 ], [ - -27.373134860952177, - -30.793715935971445 + -26.901745879528903, + -20.137164788518362 ], [ - -28.140935797592874, - -30.971856296684983 + -27.60684465204895, + -20.30422316798286 ], [ - -28.910743268692215, - -31.145995798417903 + -28.312513366520477, + -20.467973481530382 ], [ - -29.682585570708056, - -31.316101351178638 + -29.018765039081472, + -20.62840455173058 ], [ - -30.456492576011442, - -31.482138275789122 + -29.725611947739367, + -20.7855052935926 ], [ - -31.232496174977825, - -31.644070044283826 + -30.43306569427665, + -20.93926473348562 ], [ - -32.01063078876376, - -31.801857964474127 + -31.141137274366997, + -21.089672029966017 ], [ - -32.790933965866486, - -31.955460795521123 + -31.84983715758699, + -21.236716496944144 ], [ - -33.57344707838553, - -32.1048342777988 + -32.55917537940525, + -21.380387629741143 ], [ - -33.27555799919543, - -32.70136119911469 + -32.23983060898746, + -21.97382255018627 ], [ - -32.975242039812656, - -33.29625538990687 + -31.92117598261507, + -22.567259162930156 ], [ - -32.67222472521365, - -33.889475001208375 + -31.602903908620192, + -23.16050809898655 ], [ - -32.36623404454747, - -34.4809826048604 + -31.284715579397528, + -23.753396537845486 ], [ - -32.056999640572656, - -35.070744452831775 + -30.966320226133803, + -24.345766646986494 ], [ - -31.744252029095776, - -35.6587298085537 + -30.647434395563323, + -24.93747414876025 ], [ - -31.427721844776897, - -36.244910341584635 + -30.327781249320083, + -25.528387004446458 ], [ - -31.107139109851687, - -36.82925957785007 + -30.007089886022868, + -26.118384205901382 ], [ - -30.246305348420094, - -36.77449924548529 + -29.245715310174432, + -26.0689898450879 ], [ - -29.386317971972687, - -36.7142900926262 + -28.484032229827505, + -26.01537752420747 ], [ - -28.52719669165151, - -36.64866229494072 + -27.72206293111128, + -25.957541898180313 ], [ - -27.668964546924713, - -36.577643179194254 + -26.959829287712864, + -25.895477978771684 ], [ - -26.81164730088949, - -36.501257721210855 + -26.1973526975886, + -25.829181128494586 ], [ - -25.95527290412872, - -36.41952896020167 + -25.434654022161794, + -25.758647053896865 ], [ - -25.09987101743252, - -36.33247834423667 + -24.67175352764025, + -25.683871798232737 ], [ - -24.245472585295374, - -36.240126018724595 + -23.90867082816328, + -25.604851733521752 ], [ - -23.820113947983145, - -35.69150739527282 + -23.535995287147557, + -25.06311027085928 ], [ - -23.400969532048293, - -35.14203838030867 + -23.166260871268378, + -24.521322329435705 ], [ - -22.987727535531803, - -34.591817385473256 + -22.79928812611047, + -23.979516316177897 ], [ - -22.58008885974175, - -34.04093498053776 + -22.434904038458853, + -23.437717587283096 ], [ - -22.1777665700713, - -33.48947446435056 + -22.07294168141891, + -22.895948702973644 ], [ - -21.780485362778563, - -32.93751239492885 + -21.71323987512642, + -22.35422966186825 ], [ - -21.387981040669956, - -32.38511908152551 + -21.355642862569766, + -21.812578116686275 ], [ -21, - -31.832359041336087 + -21.27100957285517 ] ] ] @@ -32749,7 +32572,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "3660000000000000" + "cellIdHex": "3620000000000000" }, "geometry": { "type": "Polygon", @@ -32923,6 +32746,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "3660000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21, + -31.832359041336087 + ], + [ + -21.808442881014116, + -31.72119465954957 + ], + [ + -22.613573923224067, + -31.604582790778075 + ], + [ + -23.41535908629737, + -31.482580550439312 + ], + [ + -24.21376753648633, + -31.3552451344781 + ], + [ + -25.008771734758056, + -31.22263377455108 + ], + [ + -25.800347530084082, + -31.084803692958324 + ], + [ + -26.588474260000112, + -30.94181205743925 + ], + [ + -27.373134860952177, + -30.793715935971445 + ], + [ + -28.140935797592874, + -30.971856296684983 + ], + [ + -28.910743268692215, + -31.145995798417903 + ], + [ + -29.682585570708056, + -31.316101351178638 + ], + [ + -30.456492576011442, + -31.482138275789122 + ], + [ + -31.232496174977825, + -31.644070044283826 + ], + [ + -32.01063078876376, + -31.801857964474127 + ], + [ + -32.790933965866486, + -31.955460795521123 + ], + [ + -33.57344707838553, + -32.1048342777988 + ], + [ + -33.27555799919543, + -32.70136119911469 + ], + [ + -32.975242039812656, + -33.29625538990687 + ], + [ + -32.67222472521365, + -33.889475001208375 + ], + [ + -32.36623404454747, + -34.4809826048604 + ], + [ + -32.056999640572656, + -35.070744452831775 + ], + [ + -31.744252029095776, + -35.6587298085537 + ], + [ + -31.427721844776897, + -36.244910341584635 + ], + [ + -31.107139109851687, + -36.82925957785007 + ], + [ + -30.246305348420094, + -36.77449924548529 + ], + [ + -29.386317971972687, + -36.7142900926262 + ], + [ + -28.52719669165151, + -36.64866229494072 + ], + [ + -27.668964546924713, + -36.577643179194254 + ], + [ + -26.81164730088949, + -36.501257721210855 + ], + [ + -25.95527290412872, + -36.41952896020167 + ], + [ + -25.09987101743252, + -36.33247834423667 + ], + [ + -24.245472585295374, + -36.240126018724595 + ], + [ + -23.820113947983145, + -35.69150739527282 + ], + [ + -23.400969532048293, + -35.14203838030867 + ], + [ + -22.987727535531803, + -34.591817385473256 + ], + [ + -22.58008885974175, + -34.04093498053776 + ], + [ + -22.1777665700713, + -33.48947446435056 + ], + [ + -21.780485362778563, + -32.93751239492885 + ], + [ + -21.387981040669956, + -32.38511908152551 + ], + [ + -21, + -31.832359041336087 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -35052,183 +35052,6 @@ "properties": { "cellIdHex": "39a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -47.57914260098369, - -13.628636133967648 - ], - [ - -47.11137263388912, - -13.12338321387245 - ], - [ - -46.64540958383179, - -12.616791121470994 - ], - [ - -46.1811506492088, - -12.108862681306892 - ], - [ - -45.718494882217385, - -11.599602221359675 - ], - [ - -45.257342903337985, - -11.08901521501351 - ], - [ - -44.79759665898541, - -10.57710800205716 - ], - [ - -44.33915921303179, - -10.063887570103404 - ], - [ - -43.88193456505019, - -9.549361382649163 - ], - [ - -43.7266577139323, - -8.883272401048556 - ], - [ - -43.57130032451664, - -8.217073218024888 - ], - [ - -43.41578246233155, - -7.550707512934453 - ], - [ - -43.26002837519957, - -6.8841225168171825 - ], - [ - -43.1039657701059, - -6.217268577321624 - ], - [ - -42.94752520234039, - -5.550098782143663 - ], - [ - -42.79063955530228, - -4.882568632135537 - ], - [ - -42.633243593839666, - -4.214635756699458 - ], - [ - -43.282198069660126, - -4.19530922734038 - ], - [ - -43.93209599682319, - -4.175784543894638 - ], - [ - -44.58295642871218, - -4.15618818885544 - ], - [ - -45.23479605008259, - -4.136654494876469 - ], - [ - -45.8876288323425, - -4.117326201624 - ], - [ - -46.54146564925503, - -4.098355053680612 - ], - [ - -47.19631384892449, - -4.0799024423746 - ], - [ - -47.8521767775203, - -4.0621400945523005 - ], - [ - -48.12889403879001, - -4.692194599103664 - ], - [ - -48.40591265264044, - -5.321303661511359 - ], - [ - -48.6833099899128, - -5.949478247111185 - ], - [ - -48.96116356179414, - -6.576729207887634 - ], - [ - -49.239551117721476, - -7.203067307364873 - ], - [ - -49.5185507455102, - -7.82850325207988 - ], - [ - -49.79824097446806, - -8.453047731318334 - ], - [ - -50.078700882406736, - -9.076711467300175 - ], - [ - -49.768843301111474, - -9.639131671517525 - ], - [ - -49.45809375830822, - -10.203189238206138 - ], - [ - -49.146507944490054, - -10.768997874378385 - ], - [ - -48.834156284787525, - -11.3366762327466 - ], - [ - -48.52112604548239, - -11.906347991720851 - ], - [ - -48.207523756050705, - -12.478141889983645 - ], - [ - -47.89347799567918, - -13.052191701566452 - ], - [ - -47.57914260098369, - -13.628636133967648 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "39e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -35404,175 +35227,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "3a20000000000000" + "cellIdHex": "39e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -57, - -8.162533854955054 + -47.57914260098369, + -13.628636133967648 ], [ - -56.51013007321973, - -7.632638306363437 + -47.11137263388912, + -13.12338321387245 ], [ - -56.02227463420854, - -7.105227039304281 + -46.64540958383179, + -12.616791121470994 ], [ - -55.53639489164618, - -6.579797248668193 + -46.1811506492088, + -12.108862681306892 ], [ - -55.05243322102069, - -6.055924525227419 + -45.718494882217385, + -11.599602221359675 ], [ - -54.57031841864978, - -5.533248762274437 + -45.257342903337985, + -11.08901521501351 ], [ - -54.08996951980578, - -5.011462926353223 + -44.79759665898541, + -10.57710800205716 ], [ - -53.61129858058797, - -4.490304047677754 + -44.33915921303179, + -10.063887570103404 ], [ - -53.13421270677924, - -3.9695459436732334 + -43.88193456505019, + -9.549361382649163 ], [ - -52.95970283774409, - -3.3128721235315823 + -43.7266577139323, + -8.883272401048556 ], [ - -52.78546487039199, - -2.6553488698728347 + -43.57130032451664, + -8.217073218024888 ], [ - -52.611446359984654, - -1.996952752350532 + -43.41578246233155, + -7.550707512934453 ], [ - -52.43759490858952, - -1.337660587380447 + -43.26002837519957, + -6.8841225168171825 ], [ - -52.26385809203714, - -0.6774493631903968 + -43.1039657701059, + -6.217268577321624 ], [ - -52.09018338716038, - -0.016296175764814826 + -42.94752520234039, + -5.550098782143663 ], [ - -51.916518099017935, - 0.6458218262692901 + -42.79063955530228, + -4.882568632135537 ], [ - -51.742809287812975, - 1.3089274893843277 + -42.633243593839666, + -4.214635756699458 ], [ - -52.39837286739191, - 1.3104883739514692 + -43.282198069660126, + -4.19530922734038 ], [ - -53.05450569449863, - 1.3100135169908165 + -43.93209599682319, + -4.175784543894638 ], [ - -53.711160130451844, - 1.3072847436009933 + -44.58295642871218, + -4.15618818885544 ], [ - -54.36828071004925, - 1.3020720326691986 + -45.23479605008259, + -4.136654494876469 ], [ - -55.02580343370971, - 1.2941328570588206 + -45.8876288323425, + -4.117326201624 ], [ - -55.68365500373716, - 1.2832114931899046 + -46.54146564925503, + -4.098355053680612 ], [ - -56.34175200121848, - 1.2690382998854672 + -47.19631384892449, + -4.0799024423746 ], [ - -57, - 1.251328966632106 + -47.8521767775203, + -4.0621400945523005 ], [ - -57.29200423974521, - 0.7071295512160308 + -48.12889403879001, + -4.692194599103664 ], [ - -57.584618220583536, - 0.16276415527486818 + -48.40591265264044, + -5.321303661511359 ], [ - -57.87788774375184, - -0.3818166846820636 + -48.6833099899128, + -5.949478247111185 ], [ - -58.17185733748971, - -0.9266645541039044 + -48.96116356179414, + -6.576729207887634 ], [ - -58.46657012644164, - -1.4718332931284461 + -49.239551117721476, + -7.203067307364873 ], [ - -58.7620676776977, - -2.017379137419062 + -49.5185507455102, + -7.82850325207988 ], [ - -59.0583898202791, - -2.5633608674609807 + -49.79824097446806, + -8.453047731318334 ], [ - -59.35557443437722, - -3.10983996664447 + -50.078700882406736, + -9.076711467300175 ], [ - -59.06499110459856, - -3.741841488224458 + -49.768843301111474, + -9.639131671517525 ], [ - -58.77346237711629, - -4.373492007958605 + -49.45809375830822, + -10.203189238206138 ], [ - -58.48090772296814, - -5.00488848560826 + -49.146507944490054, + -10.768997874378385 ], [ - -58.187247273475805, - -5.636140955798851 + -48.834156284787525, + -11.3366762327466 ], [ - -57.89240220049885, - -6.267375132306939 + -48.52112604548239, + -11.906347991720851 ], [ - -57.59629527082154, - -6.898735635532036 + -48.207523756050705, + -12.478141889983645 ], [ - -57.298851642489865, - -7.530390021971772 + -47.89347799567918, + -13.052191701566452 ], [ - -57, - -8.162533854955054 + -47.57914260098369, + -13.628636133967648 ] ] ] @@ -35581,7 +35404,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "3a60000000000000" + "cellIdHex": "3a20000000000000" }, "geometry": { "type": "Polygon", @@ -35755,6 +35578,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "3a60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57, + -8.162533854955054 + ], + [ + -56.51013007321973, + -7.632638306363437 + ], + [ + -56.02227463420854, + -7.105227039304281 + ], + [ + -55.53639489164618, + -6.579797248668193 + ], + [ + -55.05243322102069, + -6.055924525227419 + ], + [ + -54.57031841864978, + -5.533248762274437 + ], + [ + -54.08996951980578, + -5.011462926353223 + ], + [ + -53.61129858058797, + -4.490304047677754 + ], + [ + -53.13421270677924, + -3.9695459436732334 + ], + [ + -52.95970283774409, + -3.3128721235315823 + ], + [ + -52.78546487039199, + -2.6553488698728347 + ], + [ + -52.611446359984654, + -1.996952752350532 + ], + [ + -52.43759490858952, + -1.337660587380447 + ], + [ + -52.26385809203714, + -0.6774493631903968 + ], + [ + -52.09018338716038, + -0.016296175764814826 + ], + [ + -51.916518099017935, + 0.6458218262692901 + ], + [ + -51.742809287812975, + 1.3089274893843277 + ], + [ + -52.39837286739191, + 1.3104883739514692 + ], + [ + -53.05450569449863, + 1.3100135169908165 + ], + [ + -53.711160130451844, + 1.3072847436009933 + ], + [ + -54.36828071004925, + 1.3020720326691986 + ], + [ + -55.02580343370971, + 1.2941328570588206 + ], + [ + -55.68365500373716, + 1.2832114931899046 + ], + [ + -56.34175200121848, + 1.2690382998854672 + ], + [ + -57, + 1.251328966632106 + ], + [ + -57.29200423974521, + 0.7071295512160308 + ], + [ + -57.584618220583536, + 0.16276415527486818 + ], + [ + -57.87788774375184, + -0.3818166846820636 + ], + [ + -58.17185733748971, + -0.9266645541039044 + ], + [ + -58.46657012644164, + -1.4718332931284461 + ], + [ + -58.7620676776977, + -2.017379137419062 + ], + [ + -59.0583898202791, + -2.5633608674609807 + ], + [ + -59.35557443437722, + -3.10983996664447 + ], + [ + -59.06499110459856, + -3.741841488224458 + ], + [ + -58.77346237711629, + -4.373492007958605 + ], + [ + -58.48090772296814, + -5.00488848560826 + ], + [ + -58.187247273475805, + -5.636140955798851 + ], + [ + -57.89240220049885, + -6.267375132306939 + ], + [ + -57.59629527082154, + -6.898735635532036 + ], + [ + -57.298851642489865, + -7.530390021971772 + ], + [ + -57, + -8.162533854955054 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -36296,168 +36296,168 @@ "coordinates": [ [ [ - -30.012153962210903, - -5.539553971242937 + -38.368780341360264, + -19.765749214107977 ], [ - -30.452386688092588, - -6.087793807803679 + -37.90140687049427, + -19.225785625727074 ], [ - -30.892346144741964, - -6.635154413511085 + -37.43749584183229, + -18.685412401380855 ], [ - -31.3321366150264, - -7.181633078390155 + -36.97672599289342, + -18.144588368280502 ], [ - -31.771862524876497, - -7.7272273077118685 + -36.51881076559812, + -17.60327707188238 ], [ - -32.21162860961692, - -8.271934838413262 + -36.06349204783288, + -17.06144630435919 ], [ - -32.65154009197863, - -8.815753660725935 + -35.6105352155015, + -16.519067651621338 ], [ - -33.09170287427963, - -9.358682045737744 + -35.159725169462774, + -15.976116072179927 ], [ - -33.53222374775896, - -9.900718579752139 + -34.71086314054935, + -15.432569513598844 ], [ - -33.67737019605238, - -10.588577127466564 + -34.55946369837375, + -14.736667324306048 ], [ - -33.822672151249776, - -11.277258787061955 + -34.4098459201964, + -14.042272970301052 ], [ - -33.968332892530384, - -11.96686190975542 + -34.26165509351574, + -13.349255364037285 ], [ -34.11457722173395, - -12.657490651991083 + -12.657490651991097 ], [ - -34.26165509351574, - -13.349255364037285 + -33.968332892530384, + -11.966861909755407 ], [ - -34.4098459201964, - -14.042272970301052 + -33.822672151249776, + -11.277258787061955 ], [ - -34.55946369837375, - -14.73666732430606 + -33.67737019605238, + -10.588577127466564 ], [ - -34.71086314054935, - -15.432569513598844 + -33.53222374775896, + -9.900718579752139 ], [ - -34.06842667997307, - -15.452327485475811 + -34.17256670648305, + -9.88903205662129 ], [ - -33.4266869250165, - -15.469948271005148 + -34.81358684311812, + -9.875639674799217 ], [ - -32.78559476458082, - -15.48538607898192 + -35.455323702594114, + -9.860598657256064 ], [ - -32.145103107130694, - -15.498598325219582 + -36.09781745861352, + -9.843969918200445 ], [ - -31.50516680970344, - -15.509545341788561 + -36.741108867767366, + -9.825818363993019 ], [ - -30.865742604133743, - -15.518190115739825 + -37.38523921097328, + -9.806213221338936 ], [ - -30.226789021506193, - -15.5244980540551 + -38.03025022035325, + -9.785228395433947 ], [ - -29.588266315654778, - -15.528436771949783 + -38.67618398940124, + -9.762942861013215 ], [ - -29.329826899739658, - -14.851750552251774 + -38.93592918577667, + -10.409013093694051 ], [ - -29.07334314816751, - -14.176223586850702 + -39.19601553594839, + -11.054993179670094 ], [ - -28.818465341841943, - -13.50176120965943 + -39.45657645100175, + -11.7009359705366 ], [ - -28.56487718047481, - -12.828273363583511 + -39.71775449767881, + -12.346898615736352 ], [ - -28.31229110539192, - -12.155674492187925 + -39.97970315563538, + -12.992943138130645 ], [ - -28.060444328802873, - -11.483883385302695 + -40.24258894961929, + -13.639137096939216 ], [ - -27.80909544908377, - -10.812822995957783 + -40.50659405641642, + -14.28555435148957 ], [ - -27.558021553926437, - -10.142420241197168 + -40.771919517371146, + -14.932275940698919 ], [ - -27.866358387631976, - -9.565200386362434 + -40.46338629722612, + -15.527609686251594 ], [ - -28.174420088726265, - -8.988583391237466 + -40.15632672608666, + -16.12531269776455 ], [ - -28.482109072305434, - -8.41253334488512 + -39.85110418311319, + -16.725469782291118 ], [ - -28.78933690645914, - -7.837014663183404 + -39.548127859128726, + -17.328162705110365 ], [ - -29.09602367418313, - -7.261992101872231 + -39.24785796639458, + -17.933469014606075 ], [ - -29.402097380050975, - -6.687430765950824 + -38.95081152607969, + -18.54146064245088 ], [ - -29.70749339868064, - -6.113296115912781 + -38.65756878828313, + -19.15220224104705 ], [ - -30.012153962210903, - -5.539553971242937 + -38.368780341360264, + -19.765749214107977 ] ] ] @@ -36473,168 +36473,168 @@ "coordinates": [ [ [ - -38.368780341360264, - -19.765749214107977 + -30.012153962210903, + -5.539553971242937 ], [ - -37.90140687049427, - -19.225785625727074 + -30.452386688092588, + -6.087793807803679 ], [ - -37.43749584183229, - -18.685412401380855 + -30.892346144741964, + -6.635154413511085 ], [ - -36.97672599289342, - -18.144588368280502 + -31.3321366150264, + -7.181633078390155 ], [ - -36.51881076559812, - -17.60327707188238 + -31.771862524876497, + -7.7272273077118685 ], [ - -36.06349204783288, - -17.06144630435919 + -32.21162860961692, + -8.271934838413262 ], [ - -35.6105352155015, - -16.519067651621338 + -32.65154009197863, + -8.815753660725935 ], [ - -35.159725169462774, - -15.976116072179927 + -33.09170287427963, + -9.358682045737744 ], [ - -34.71086314054935, - -15.432569513598844 + -33.53222374775896, + -9.900718579752139 ], [ - -34.55946369837375, - -14.736667324306048 + -33.67737019605238, + -10.588577127466564 ], [ - -34.4098459201964, - -14.042272970301052 + -33.822672151249776, + -11.277258787061955 ], [ - -34.26165509351574, - -13.349255364037285 + -33.968332892530384, + -11.96686190975542 ], [ -34.11457722173395, - -12.657490651991097 + -12.657490651991083 ], [ - -33.968332892530384, - -11.966861909755407 + -34.26165509351574, + -13.349255364037285 ], [ - -33.822672151249776, - -11.277258787061955 + -34.4098459201964, + -14.042272970301052 ], [ - -33.67737019605238, - -10.588577127466564 + -34.55946369837375, + -14.73666732430606 ], [ - -33.53222374775896, - -9.900718579752139 + -34.71086314054935, + -15.432569513598844 ], [ - -34.17256670648305, - -9.88903205662129 + -34.06842667997307, + -15.452327485475811 ], [ - -34.81358684311812, - -9.875639674799217 + -33.4266869250165, + -15.469948271005148 ], [ - -35.455323702594114, - -9.860598657256064 + -32.78559476458082, + -15.48538607898192 ], [ - -36.09781745861352, - -9.843969918200445 + -32.145103107130694, + -15.498598325219582 ], [ - -36.741108867767366, - -9.825818363993019 + -31.50516680970344, + -15.509545341788561 ], [ - -37.38523921097328, - -9.806213221338936 + -30.865742604133743, + -15.518190115739825 ], [ - -38.03025022035325, - -9.785228395433947 + -30.226789021506193, + -15.5244980540551 ], [ - -38.67618398940124, - -9.762942861013215 + -29.588266315654778, + -15.528436771949783 ], [ - -38.93592918577667, - -10.409013093694051 + -29.329826899739658, + -14.851750552251774 ], [ - -39.19601553594839, - -11.054993179670094 + -29.07334314816751, + -14.176223586850702 ], [ - -39.45657645100175, - -11.7009359705366 + -28.818465341841943, + -13.50176120965943 ], [ - -39.71775449767881, - -12.346898615736352 + -28.56487718047481, + -12.828273363583511 ], [ - -39.97970315563538, - -12.992943138130645 + -28.31229110539192, + -12.155674492187925 ], [ - -40.24258894961929, - -13.639137096939216 + -28.060444328802873, + -11.483883385302695 ], [ - -40.50659405641642, - -14.28555435148957 + -27.80909544908377, + -10.812822995957783 ], [ - -40.771919517371146, - -14.932275940698919 + -27.558021553926437, + -10.142420241197168 ], [ - -40.46338629722612, - -15.527609686251594 + -27.866358387631976, + -9.565200386362434 ], [ - -40.15632672608666, - -16.12531269776455 + -28.174420088726265, + -8.988583391237466 ], [ - -39.85110418311319, - -16.725469782291118 + -28.482109072305434, + -8.41253334488512 ], [ - -39.548127859128726, - -17.328162705110365 + -28.78933690645914, + -7.837014663183404 ], [ - -39.24785796639458, - -17.933469014606075 + -29.09602367418313, + -7.261992101872231 ], [ - -38.95081152607969, - -18.54146064245088 + -29.402097380050975, + -6.687430765950824 ], [ - -38.65756878828313, - -19.15220224104705 + -29.70749339868064, + -6.113296115912781 ], [ - -38.368780341360264, - -19.765749214107977 + -30.012153962210903, + -5.539553971242937 ] ] ] @@ -37004,168 +37004,168 @@ "coordinates": [ [ [ - -57, - -8.162533854955054 + -66.0121539622109, + 5.539553971242925 ], [ - -57.298851642489865, - -7.530390021971772 + -65.72820990741195, + 4.896562751656497 ], [ - -57.59629527082154, - -6.898735635532036 + -65.44472678425029, + 4.254708312632609 ], [ - -57.89240220049885, - -6.267375132306939 + -65.16161901356156, + 3.613970768281394 ], [ - -58.187247273475805, - -5.636140955798851 + -64.87880195269753, + 2.9743298550319404 ], [ - -58.48090772296814, - -5.00488848560826 + -64.5961917747536, + 2.335764856516269 ], [ - -58.77346237711629, - -4.373492007958605 + -64.3137053498254, + 1.6982545161551712 ], [ - -59.06499110459856, - -3.7418414882244706 + -64.03126012788243, + 1.0617769353137694 ], [ - -59.35557443437722, - -3.10983996664447 + -63.748774022867565, + 0.42630945444010043 ], [ - -59.909459601680055, - -2.665248288661092 + -63.203818631355716, + -0.014556886277891262 ], [ - -60.46184910321176, - -2.2218651838138572 + -62.65782888940686, + -0.4554068187673719 ], [ - -61.01280725516892, - -1.7794162308255073 + -62.110718865692434, + -0.8963863812880779 ], [ -61.56240509141048, -1.3376605873804597 ], [ - -62.110718865692434, - -0.8963863812880779 + -61.01280725516892, + -1.7794162308255073 ], [ - -62.65782888940686, - -0.4554068187673846 + -60.46184910321176, + -2.2218651838138443 ], [ - -63.203818631355716, - -0.014556886277891262 + -59.90945960168, + -2.665248288661092 ], [ - -63.748774022867565, - 0.42630945444008767 + -59.35557443437722, + -3.10983996664447 ], [ - -64.04579455038049, - -0.13292275320977567 + -59.0583898202791, + -2.5633608674609807 ], [ - -64.34359093942061, - -0.6925672169305193 + -58.7620676776977, + -2.017379137419062 ], [ - -64.64218764960935, - -1.2526762337456925 + -58.46657012644164, + -1.4718332931284461 ], [ - -64.94160638375365, - -1.8133037611419724 + -58.17185733748971, + -0.9266645541039044 ], [ - -65.24186582112253, - -2.3745054856601358 + -57.87788774375184, + -0.3818166846820636 ], [ - -65.54298131723925, - -2.9363388920133953 + -57.584618220583536, + 0.16276415527486818 ], [ - -65.84496456637805, - -3.498863332272648 + -57.29200423974521, + 0.7071295512160436 ], [ - -66.1478232224797, - -4.0621400945523005 + -57, + 1.2513289666321188 ], [ - -65.68253208209399, - -4.578278183193922 + -57.477550012798815, + 1.7910707032452415 ], [ - -65.2161312749326, - -5.093527371445848 + -57.9542390034718, + 2.3296810820991354 ], [ - -64.74851339638042, - -5.607938518432806 + -58.43012946752907, + 2.8673976099778504 ], [ - -64.27956962063018, - -6.1215707773920744 + -58.90529082583686, + 3.4044316034361413 ], [ - -63.809189557754735, - -6.634493101618335 + -59.379798252315254, + 3.94097154090935 ], [ - -63.33726113269398, - -7.146786076626605 + -59.85373174364497, + 4.477185926411791 ], [ - -62.863670500978515, - -7.658544161959716 + -60.32717538289097, + 5.013225743753897 ], [ - -62.388302023232484, - -8.169878451075492 + -60.80021675916555, + 5.549226566225722 ], [ - -61.71812165240743, - -8.155493059284456 + -61.45339016572893, + 5.553211251936413 ], [ - -61.04677120801591, - -8.144050026715409 + -62.10614007269737, + 5.5553932800526935 ], [ - -60.37432830257842, - -8.135956991156377 + -62.75843208913295, + 5.555941070749144 ], [ - -59.70089036514298, - -8.131655257677641 + -63.41023687942027, + 5.5550155248441495 ], [ - -59.02657748264079, - -8.131622689803509 + -64.06152979340732, + 5.552770373117133 ], [ - -58.35153560209909, - -8.13637681882015 + -64.71229052089836, + 5.549352511082709 ], [ - -57.67594013398991, - -8.146478176724946 + -65.36250276916803, + 5.544902319538789 ], [ - -57, - -8.162533854955054 + -66.0121539622109, + 5.539553971242925 ] ] ] @@ -37181,168 +37181,168 @@ "coordinates": [ [ [ - -66.0121539622109, - 5.539553971242925 + -57, + -8.162533854955054 ], [ - -65.72820990741195, - 4.896562751656497 + -57.298851642489865, + -7.530390021971772 ], [ - -65.44472678425029, - 4.254708312632609 + -57.59629527082154, + -6.898735635532036 ], [ - -65.16161901356156, - 3.613970768281394 + -57.89240220049885, + -6.267375132306939 ], [ - -64.87880195269753, - 2.9743298550319404 + -58.187247273475805, + -5.636140955798851 ], [ - -64.5961917747536, - 2.335764856516269 + -58.48090772296814, + -5.00488848560826 ], [ - -64.3137053498254, - 1.6982545161551712 + -58.77346237711629, + -4.373492007958605 ], [ - -64.03126012788243, - 1.0617769353137694 + -59.06499110459856, + -3.7418414882244706 ], [ - -63.748774022867565, - 0.42630945444010043 + -59.35557443437722, + -3.10983996664447 ], [ - -63.203818631355716, - -0.014556886277891262 + -59.909459601680055, + -2.665248288661092 ], [ - -62.65782888940686, - -0.4554068187673719 + -60.46184910321176, + -2.2218651838138572 ], [ - -62.110718865692434, - -0.8963863812880779 + -61.01280725516892, + -1.7794162308255073 ], [ -61.56240509141048, -1.3376605873804597 ], [ - -61.01280725516892, - -1.7794162308255073 + -62.110718865692434, + -0.8963863812880779 ], [ - -60.46184910321176, - -2.2218651838138443 + -62.65782888940686, + -0.4554068187673846 ], [ - -59.90945960168, - -2.665248288661092 + -63.203818631355716, + -0.014556886277891262 ], [ - -59.35557443437722, - -3.10983996664447 + -63.748774022867565, + 0.42630945444008767 ], [ - -59.0583898202791, - -2.5633608674609807 + -64.04579455038049, + -0.13292275320977567 ], [ - -58.7620676776977, - -2.017379137419062 + -64.34359093942061, + -0.6925672169305193 ], [ - -58.46657012644164, - -1.4718332931284461 + -64.64218764960935, + -1.2526762337456925 ], [ - -58.17185733748971, - -0.9266645541039044 + -64.94160638375365, + -1.8133037611419724 ], [ - -57.87788774375184, - -0.3818166846820636 + -65.24186582112253, + -2.3745054856601358 ], [ - -57.584618220583536, - 0.16276415527486818 + -65.54298131723925, + -2.9363388920133953 ], [ - -57.29200423974521, - 0.7071295512160436 + -65.84496456637805, + -3.498863332272648 ], [ - -57, - 1.2513289666321188 + -66.1478232224797, + -4.0621400945523005 ], [ - -57.477550012798815, - 1.7910707032452415 + -65.68253208209399, + -4.578278183193922 ], [ - -57.9542390034718, - 2.3296810820991354 + -65.2161312749326, + -5.093527371445848 ], [ - -58.43012946752907, - 2.8673976099778504 + -64.74851339638042, + -5.607938518432806 ], [ - -58.90529082583686, - 3.4044316034361413 + -64.27956962063018, + -6.1215707773920744 ], [ - -59.379798252315254, - 3.94097154090935 + -63.809189557754735, + -6.634493101618335 ], [ - -59.85373174364497, - 4.477185926411791 + -63.33726113269398, + -7.146786076626605 ], [ - -60.32717538289097, - 5.013225743753897 + -62.863670500978515, + -7.658544161959716 ], [ - -60.80021675916555, - 5.549226566225722 + -62.388302023232484, + -8.169878451075492 ], [ - -61.45339016572893, - 5.553211251936413 + -61.71812165240743, + -8.155493059284456 ], [ - -62.10614007269737, - 5.5553932800526935 + -61.04677120801591, + -8.144050026715409 ], [ - -62.75843208913295, - 5.555941070749144 + -60.37432830257842, + -8.135956991156377 ], [ - -63.41023687942027, - 5.5550155248441495 + -59.70089036514298, + -8.131655257677641 ], [ - -64.06152979340732, - 5.552770373117133 + -59.02657748264079, + -8.131622689803509 ], [ - -64.71229052089836, - 5.549352511082709 + -58.35153560209909, + -8.13637681882015 ], [ - -65.36250276916803, - 5.544902319538789 + -57.67594013398991, + -8.146478176724946 ], [ - -66.0121539622109, - 5.539553971242925 + -57, + -8.162533854955054 ] ] ] @@ -37884,183 +37884,6 @@ "properties": { "cellIdHex": "29a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -83.9878460377891, - -5.539553971242925 - ], - [ - -83.73221545240267, - -6.2002352376515875 - ], - [ - -83.47731215402501, - -6.860955982163673 - ], - [ - -83.22300532616754, - -7.521763356203536 - ], - [ - -82.96915859861224, - -8.182707095310416 - ], - [ - -82.71562907581477, - -8.843839729456498 - ], - [ - -82.46226622475996, - -9.50521681291712 - ], - [ - -82.20891059536046, - -10.166897174738569 - ], - [ - -81.95539234074295, - -10.828943190607772 - ], - [ - -81.43909479343284, - -11.288138118190982 - ], - [ - -80.92205927327922, - -11.745971561108743 - ], - [ - -80.40419792307921, - -12.202427742880483 - ], - [ - -79.88542277826599, - -12.657490651991068 - ], - [ - -79.36564568206188, - -13.111144041777466 - ], - [ - -78.84477819391697, - -13.5633714332974 - ], - [ - -78.32273148954476, - -14.014156121733944 - ], - [ - -77.79941625045711, - -14.463481187019147 - ], - [ - -77.49166109138872, - -13.870415941730746 - ], - [ - -77.18302789950565, - -13.279046558152672 - ], - [ - -76.87374059092195, - -12.689310826233333 - ], - [ - -76.56399989259484, - -12.101146082906693 - ], - [ - -76.25398539357866, - -11.51448950120835 - ], - [ - -75.94385741402829, - -10.929278334586273 - ], - [ - -75.63375870745648, - -10.345450122295217 - ], - [ - -75.32381601059876, - -9.762942861013215 - ], - [ - -75.7705935636701, - -9.234822247725184 - ], - [ - -76.216742168623, - -8.705552210331346 - ], - [ - -76.66235592775831, - -8.175142108423033 - ], - [ - -77.10752893615228, - -7.643601043061667 - ], - [ - -77.55235536278582, - -7.110937868474658 - ], - [ - -77.99692953084434, - -6.577161205037902 - ], - [ - -78.4413459976048, - -6.042279453371794 - ], - [ - -78.88569963426602, - -5.506300809417799 - ], - [ - -79.5253180501482, - -5.515792438583863 - ], - [ - -80.16434331412268, - -5.52386482314816 - ], - [ - -80.80280784324492, - -5.53046201575198 - ], - [ - -81.44074396929773, - -5.535530954551204 - ], - [ - -82.07818389873478, - -5.539021279190039 - ], - [ - -82.71515967950381, - -5.540885159501452 - ], - [ - -83.35170317403907, - -5.541077135992371 - ], - [ - -83.9878460377891, - -5.539553971242925 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "29e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -38236,175 +38059,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "2a20000000000000" + "cellIdHex": "29e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -75, - 0 + -83.9878460377891, + -5.539553971242925 ], [ - -74.73021601211826, - -0.645556216024974 + -83.73221545240267, + -6.2002352376515875 ], [ - -74.46128080400894, - -1.290319024603687 + -83.47731215402501, + -6.860955982163673 ], [ - -74.19311041055869, - -1.9343059453843592 + -83.22300532616754, + -7.521763356203536 ], [ - -73.92562142290132, - -2.577534831639267 + -82.96915859861224, + -8.182707095310416 ], [ - -73.65873083504795, - -3.2200239120750336 + -82.71562907581477, + -8.843839729456498 ], [ - -73.39235588427698, - -3.861791839732986 + -82.46226622475996, + -9.50521681291712 ], [ - -73.12641388343707, - -4.502857749053442 + -82.20891059536046, + -10.166897174738569 ], [ - -72.86082204298191, - -5.143241322392146 + -81.95539234074295, + -10.828943190607772 ], [ - -72.33194186111712, - -5.5805140354058596 + -81.43909479343284, + -11.288138118190982 ], [ - -71.80223485243573, - -6.016414688115995 + -80.92205927327922, + -11.745971561108743 ], [ - -71.27160907377765, - -6.4509483560448615 + -80.40419792307921, + -12.202427742880483 ], [ - -70.73997162480043, - -6.8841225168171825 + -79.88542277826599, + -12.657490651991068 ], [ - -70.20722845322138, - -7.315947442795518 + -79.36564568206188, + -13.111144041777466 ], [ - -69.67328414145254, - -7.746436668147383 + -78.84477819391697, + -13.5633714332974 ], [ - -69.13804167220866, - -8.175607546454678 + -78.32273148954476, + -14.014156121733944 ], [ - -68.60140217052941, - -8.60348191906805 + -77.79941625045711, + -14.463481187019147 ], [ - -68.29191700376657, - -8.03172709146858 + -77.49166109138872, + -13.870415941730746 ], [ - -67.98315936876202, - -7.461291957500558 + -77.18302789950565, + -13.279046558152672 ], [ - -67.67517448011597, - -6.892097638715984 + -76.87374059092195, + -12.689310826233333 ], [ - -67.36799825552225, - -6.324067602238401 + -76.56399989259484, + -12.101146082906693 ], [ - -67.06165826281654, - -5.757127637480515 + -76.25398539357866, + -11.51448950120835 ], [ - -66.75617456491153, - -5.191205820788237 + -75.94385741402829, + -10.929278334586273 ], [ - -66.45156047366356, - -4.626232470505368 + -75.63375870745648, + -10.345450122295217 ], [ - -66.1478232224797, - -4.0621400945523005 + -75.32381601059876, + -9.762942861013215 ], [ - -66.61211083445488, - -3.5450692961007224 + -75.7705935636701, + -9.234822247725184 ], [ - -67.07549995055513, - -3.0270279947382597 + -76.216742168623, + -8.705552210331346 ], [ - -67.53809465915145, - -2.5079835515986684 + -76.66235592775831, + -8.175142108423033 ], [ - -67.99999826470417, - -1.9879077598264348 + -77.10752893615228, + -7.643601043061667 ], [ - -68.46131344502999, - -1.4667762371751167 + -77.55235536278582, + -7.110937868474658 ], [ - -68.92214240473982, - -0.9445679133708131 + -77.99692953084434, + -6.577161205037902 ], [ - -69.38258702450293, - -0.4212645960853498 + -78.4413459976048, + -6.042279453371794 ], [ - -69.84274900612479, - 0.10314939756246717 + -78.88569963426602, + -5.506300809417799 ], [ - -70.48992838156903, - 0.08934807197418514 + -79.5253180501482, + -5.515792438583863 ], [ - -71.13635488424916, - 0.07560620233202364 + -80.16434331412268, + -5.52386482314816 ], [ - -71.78204243178334, - 0.06203005136292731 + -80.80280784324492, + -5.53046201575198 ], [ - -72.42700675876029, - 0.048720588318384106 + -81.44074396929773, + -5.535530954551204 ], [ - -73.07126522717044, - 0.03577378813441544 + -82.07818389873478, + -5.539021279190039 ], [ - -73.71483665397716, - 0.02328091310492946 + -82.71515967950381, + -5.540885159501452 ], [ - -74.35774115445133, - 0.01132877806058996 + -83.35170317403907, + -5.541077135992371 ], [ - -75, - 0 + -83.9878460377891, + -5.539553971242925 ] ] ] @@ -38413,7 +38236,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "2a60000000000000" + "cellIdHex": "2a20000000000000" }, "geometry": { "type": "Polygon", @@ -38587,6 +38410,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "2a60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75, + 0 + ], + [ + -74.73021601211826, + -0.645556216024974 + ], + [ + -74.46128080400894, + -1.290319024603687 + ], + [ + -74.19311041055869, + -1.9343059453843592 + ], + [ + -73.92562142290132, + -2.577534831639267 + ], + [ + -73.65873083504795, + -3.2200239120750336 + ], + [ + -73.39235588427698, + -3.861791839732986 + ], + [ + -73.12641388343707, + -4.502857749053442 + ], + [ + -72.86082204298191, + -5.143241322392146 + ], + [ + -72.33194186111712, + -5.5805140354058596 + ], + [ + -71.80223485243573, + -6.016414688115995 + ], + [ + -71.27160907377765, + -6.4509483560448615 + ], + [ + -70.73997162480043, + -6.8841225168171825 + ], + [ + -70.20722845322138, + -7.315947442795518 + ], + [ + -69.67328414145254, + -7.746436668147383 + ], + [ + -69.13804167220866, + -8.175607546454678 + ], + [ + -68.60140217052941, + -8.60348191906805 + ], + [ + -68.29191700376657, + -8.03172709146858 + ], + [ + -67.98315936876202, + -7.461291957500558 + ], + [ + -67.67517448011597, + -6.892097638715984 + ], + [ + -67.36799825552225, + -6.324067602238401 + ], + [ + -67.06165826281654, + -5.757127637480515 + ], + [ + -66.75617456491153, + -5.191205820788237 + ], + [ + -66.45156047366356, + -4.626232470505368 + ], + [ + -66.1478232224797, + -4.0621400945523005 + ], + [ + -66.61211083445488, + -3.5450692961007224 + ], + [ + -67.07549995055513, + -3.0270279947382597 + ], + [ + -67.53809465915145, + -2.5079835515986684 + ], + [ + -67.99999826470417, + -1.9879077598264348 + ], + [ + -68.46131344502999, + -1.4667762371751167 + ], + [ + -68.92214240473982, + -0.9445679133708131 + ], + [ + -69.38258702450293, + -0.4212645960853498 + ], + [ + -69.84274900612479, + 0.10314939756246717 + ], + [ + -70.48992838156903, + 0.08934807197418514 + ], + [ + -71.13635488424916, + 0.07560620233202364 + ], + [ + -71.78204243178334, + 0.06203005136292731 + ], + [ + -72.42700675876029, + 0.048720588318384106 + ], + [ + -73.07126522717044, + 0.03577378813441544 + ], + [ + -73.71483665397716, + 0.02328091310492946 + ], + [ + -74.35774115445133, + 0.01132877806058996 + ], + [ + -75, + 0 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -42668,168 +42668,168 @@ "coordinates": [ [ [ - -3.631219658639793, - -19.765749214107952 + -21, + -21.27100957285517 ], [ - -4.369954425113974, - -19.76212919146411 + -20.255305852092874, + -21.36027233039878 ], [ - -5.10771828903637, - -19.7552974947138 + -19.51084856274042, + -21.445532390258872 ], [ - -5.844682613098598, - -19.74516594958406 + -18.7666283025344, + -21.526794472204557 ], [ - -6.580992688266861, - -19.731660977058525 + -18.022645296403653, + -21.604063616780746 ], [ - -7.316772258194874, - -19.714720627079494 + -17.278899698378268, + -21.67734521096946 ], [ - -8.052127153586525, - -19.69429229573705 + -16.53539145387049, + -21.74664501666865 ], [ - -8.787148234534925, - -19.670330952804147 + -15.79212014727932, + -21.811969202676785 ], [ - -9.521913790366852, - -19.642797754009656 + -15.04908483227996, + -21.873324381037982 ], [ - -10.208857227577028, - -19.933090334027135 + -14.3525428785631, + -21.6069751898611 ], [ - -10.896384505690321, - -20.220422827416208 + -13.658041283881062, + -21.336812405433907 ], [ - -11.58480246467252, - -20.504614891202117 + -12.965391884512314, + -21.06294859077479 ], [ -12.274388052260633, -20.7855052935926 ], [ - -12.965391884512314, - -21.06294859077479 + -11.584802464672634, + -20.504614891202117 ], [ - -13.658041283881062, - -21.336812405433907 + -10.896384505690321, + -20.220422827416208 ], [ - -14.3525428785631, - -21.6069751898611 + -10.208857227577028, + -19.933090334027135 ], [ - -15.04908483227996, - -21.873324381037982 + -9.521913790366852, + -19.642797754009642 ], [ - -14.678256450950926, - -22.404212941506128 + -9.890837865674712, + -19.1282992786855 ], [ - -14.304611368614587, - -22.9350888560876 + -10.257252289105054, + -18.61385062882122 ], [ - -13.92796851634148, - -23.465926761636226 + -10.62132039648236, + -18.099458347308452 ], [ - -13.548139476425831, - -23.996697696004823 + -10.983198737218686, + -17.585126846827592 ], [ - -13.164928033416572, - -24.52736871990067 + -11.34303755054475, + -17.07085868293248 ], [ - -12.778129702995102, - -25.057902499560104 + -11.700981209568681, + -16.5566547948637 ], [ - -12.387531238356473, - -25.588256845971678 + -12.057168635512767, + -16.04251471807538 ], [ - -11.992910113977132, - -26.118384205901382 + -12.411733684345222, + -15.528436771949758 ], [ - -11.247784746682328, - -25.94390055026972 + -13.13725976012438, + -15.696541008965951 ], [ - -10.505219986740371, - -25.76495304808198 + -13.862487391151149, + -15.861719396959549 ], [ - -9.765147782400277, - -25.58159914691221 + -14.587645078532887, + -16.02380770489845 ], [ - -9.027489161562244, - -25.393897970011974 + -15.31293867495799, + -16.182658449084318 ], [ - -8.292152752538868, - -25.20191080714579 + -16.038553942957037, + -16.33813835223845 ], [ - -7.559032999695091, - -25.00570175012071 + -16.76465876752991, + -16.490126224956366 ], [ - -6.828007998844214, - -24.805338518102342 + -17.49140507559696, + -16.638511193215393 ], [ - -6.09893685580505, - -24.600893533663314 + -18.218930506086167, + -16.783191210521874 ], [ - -5.799528513081782, - -23.99428822528476 + -18.562017881462907, + -17.346562268742066 ], [ - -5.4983874987046875, - -23.38770950651953 + -18.90599278036268, + -17.909490195958924 ], [ - -5.195111196910261, - -22.781415392146638 + -19.251064354775508, + -18.471846827363606 ], [ - -4.889278372302897, - -22.17569638132987 + -19.597438779388312, + -19.033510617911354 ], [ - -4.580447656445813, - -21.57087936278443 + -19.945319535514727, + -19.594366117856698 ], [ - -4.268155993688424, - -20.967331944966677 + -20.294907689095567, + -20.15430347664279 ], [ - -3.9519170582013885, - -20.365467250374323 + -20.646402162509503, + -20.713217973461223 ], [ - -3.631219658639793, - -19.765749214107952 + -21, + -21.27100957285517 ] ] ] @@ -42845,168 +42845,168 @@ "coordinates": [ [ [ - -21, - -21.27100957285517 + -3.631219658639793, + -19.765749214107952 ], [ - -20.255305852092874, - -21.36027233039878 + -4.369954425113974, + -19.76212919146411 ], [ - -19.51084856274042, - -21.445532390258872 + -5.10771828903637, + -19.7552974947138 ], [ - -18.7666283025344, - -21.526794472204557 + -5.844682613098598, + -19.74516594958406 ], [ - -18.022645296403653, - -21.604063616780746 + -6.580992688266861, + -19.731660977058525 ], [ - -17.278899698378268, - -21.67734521096946 + -7.316772258194874, + -19.714720627079494 ], [ - -16.53539145387049, - -21.74664501666865 + -8.052127153586525, + -19.69429229573705 ], [ - -15.79212014727932, - -21.811969202676785 + -8.787148234534925, + -19.670330952804147 ], [ - -15.04908483227996, - -21.873324381037982 + -9.521913790366852, + -19.642797754009656 ], [ - -14.3525428785631, - -21.6069751898611 + -10.208857227577028, + -19.933090334027135 ], [ - -13.658041283881062, - -21.336812405433907 + -10.896384505690321, + -20.220422827416208 ], [ - -12.965391884512314, - -21.06294859077479 + -11.58480246467252, + -20.504614891202117 ], [ -12.274388052260633, -20.7855052935926 ], [ - -11.584802464672634, - -20.504614891202117 + -12.965391884512314, + -21.06294859077479 ], [ - -10.896384505690321, - -20.220422827416208 + -13.658041283881062, + -21.336812405433907 ], [ - -10.208857227577028, - -19.933090334027135 + -14.3525428785631, + -21.6069751898611 ], [ - -9.521913790366852, - -19.642797754009642 + -15.04908483227996, + -21.873324381037982 ], [ - -9.890837865674712, - -19.1282992786855 + -14.678256450950926, + -22.404212941506128 ], [ - -10.257252289105054, - -18.61385062882122 + -14.304611368614587, + -22.9350888560876 ], [ - -10.62132039648236, - -18.099458347308452 + -13.92796851634148, + -23.465926761636226 ], [ - -10.983198737218686, - -17.585126846827592 + -13.548139476425831, + -23.996697696004823 ], [ - -11.34303755054475, - -17.07085868293248 + -13.164928033416572, + -24.52736871990067 ], [ - -11.700981209568681, - -16.5566547948637 + -12.778129702995102, + -25.057902499560104 ], [ - -12.057168635512767, - -16.04251471807538 + -12.387531238356473, + -25.588256845971678 ], [ - -12.411733684345222, - -15.528436771949758 + -11.992910113977132, + -26.118384205901382 ], [ - -13.13725976012438, - -15.696541008965951 + -11.247784746682328, + -25.94390055026972 ], [ - -13.862487391151149, - -15.861719396959549 + -10.505219986740371, + -25.76495304808198 ], [ - -14.587645078532887, - -16.02380770489845 + -9.765147782400277, + -25.58159914691221 ], [ - -15.31293867495799, - -16.182658449084318 + -9.027489161562244, + -25.393897970011974 ], [ - -16.038553942957037, - -16.33813835223845 + -8.292152752538868, + -25.20191080714579 ], [ - -16.76465876752991, - -16.490126224956366 + -7.559032999695091, + -25.00570175012071 ], [ - -17.49140507559696, - -16.638511193215393 + -6.828007998844214, + -24.805338518102342 ], [ - -18.218930506086167, - -16.783191210521874 + -6.09893685580505, + -24.600893533663314 ], [ - -18.562017881462907, - -17.346562268742066 + -5.799528513081782, + -23.99428822528476 ], [ - -18.90599278036268, - -17.909490195958924 + -5.4983874987046875, + -23.38770950651953 ], [ - -19.251064354775508, - -18.471846827363606 + -5.195111196910261, + -22.781415392146638 ], [ - -19.597438779388312, - -19.033510617911354 + -4.889278372302897, + -22.17569638132987 ], [ - -19.945319535514727, - -19.594366117856698 + -4.580447656445813, + -21.57087936278443 ], [ - -20.294907689095567, - -20.15430347664279 + -4.268155993688424, + -20.967331944966677 ], [ - -20.646402162509503, - -20.713217973461223 + -3.9519170582013885, + -20.365467250374323 ], [ - -21, - -21.27100957285517 + -3.631219658639793, + -19.765749214107952 ] ] ] @@ -43548,183 +43548,6 @@ "properties": { "cellIdHex": "3da0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -21, - -42.37830150075417 - ], - [ - -20.060376049993465, - -42.49892243986907 - ], - [ - -19.11796630687718, - -42.6130968055735 - ], - [ - -18.17280935668498, - -42.72075593429318 - ], - [ - -17.224943087599854, - -42.82182667002339 - ], - [ - -16.27440416778245, - -42.91623066511016 - ], - [ - -15.321227474610964, - -43.00388355925537 - ], - [ - -14.365445471708085, - -43.084694014223565 - ], - [ - -13.407087530022523, - -43.15856257693659 - ], - [ - -12.541593485794692, - -42.905416109266014 - ], - [ - -11.684301267262299, - -42.64639614357898 - ], - [ - -10.835186716195949, - -42.38162397551779 - ], - [ - -9.994217844960758, - -42.11121902793486 - ], - [ - -9.161355203491325, - -41.835298739876315 - ], - [ - -8.336552237451315, - -41.55397845747508 - ], - [ - -7.519755634859166, - -41.26737132523007 - ], - [ - -6.710905658379147, - -40.97558817581691 - ], - [ - -7.272595241826593, - -40.469135977389314 - ], - [ - -7.822157282488547, - -39.958637813286984 - ], - [ - -8.360109689328283, - -39.44446014104024 - ], - [ - -8.886956854121536, - -38.92693989100172 - ], - [ - -9.40318867147073, - -38.40638670747937 - ], - [ - -9.90927985610847, - -37.88308503825151 - ], - [ - -10.40568950899683, - -37.357296078753734 - ], - [ - -10.892860890148313, - -36.82925957785007 - ], - [ - -11.725021532806409, - -36.99266629693375 - ], - [ - -12.561722813847496, - -37.15058817528356 - ], - [ - -13.402924186086011, - -37.30295261105689 - ], - [ - -14.248580682709758, - -37.44968701481688 - ], - [ - -15.09864290180792, - -37.5907188797037 - ], - [ - -15.953056998139346, - -37.7259758515808 - ], - [ - -16.811764683002366, - -37.85538579922086 - ], - [ - -17.674703232984143, - -37.9788768845402 - ], - [ - -18.06557461462512, - -38.53708182019422 - ], - [ - -18.462942668378673, - -39.09302434364565 - ], - [ - -18.86709282925267, - -39.64665555584331 - ], - [ - -19.278316401219172, - -40.19792492578673 - ], - [ - -19.696910982976533, - -40.746780025297525 - ], - [ - -20.12318088899542, - -41.29316626807381 - ], - [ - -20.557437565398686, - -41.83702665162222 - ], - [ - -21, - -42.37830150075417 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "3de0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -43900,7 +43723,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "3e20000000000000" + "cellIdHex": "3de0000000000000" }, "geometry": { "type": "Polygon", @@ -43908,167 +43731,167 @@ [ [ -21, - -31.832359041336087 + -42.37830150075417 ], [ - -20.189664627719594, - -31.938398148952622 + -20.060376049993465, + -42.49892243986907 ], [ - -19.378851639829918, - -32.03966944539289 + -19.11796630687718, + -42.6130968055735 ], [ - -18.567591332345955, - -32.13616896353091 + -18.17280935668498, + -42.72075593429318 ], [ - -17.755914712428307, - -32.22789297397681 + -17.224943087599854, + -42.82182667002339 ], [ - -16.943853362658047, - -32.314837967607545 + -16.27440416778245, + -42.91623066511016 ], [ - -16.131439293811127, - -32.39700063154639 + -15.321227474610964, + -43.00388355925537 ], [ - -15.318704784498777, - -32.47437781747656 + -14.365445471708085, + -43.084694014223565 ], [ - -14.505682205706876, - -32.546966500935476 + -13.407087530022523, + -43.15856257693659 ], [ - -13.757435998726805, - -32.28795965427349 + -12.541593485794692, + -42.905416109266014 ], [ - -13.014364122255415, - -32.02410234253843 + -11.684301267262299, + -42.64639614357898 ], [ - -12.276409180720975, - -31.75547039557303 + -10.835186716195949, + -42.38162397551779 ], [ - -11.543507423988558, - -31.482138275789122 + -9.994217844960758, + -42.11121902793486 ], [ - -10.815588429047239, - -31.20417906590002 + -9.161355203491325, + -41.835298739876315 ], [ - -10.092574700251816, - -30.921664470089443 + -8.336552237451315, + -41.55397845747508 ], [ - -9.374381171154255, - -30.63466483258702 + -7.519755634859166, + -41.26737132523007 ], [ - -8.6609145869553, - -30.34324917904292 + -6.710905658379147, + -40.97558817581691 ], [ - -9.097028549301058, - -29.817509611348882 + -7.272595241826593, + -40.469135977389314 ], [ - -9.526936769852, - -29.290887764931338 + -7.822157282488547, + -39.958637813286984 ], [ - -9.95095702178628, - -28.76350025615696 + -8.360109689328283, + -39.44446014104024 ], [ - -10.369392983225794, - -28.235451757095355 + -8.886956854121536, + -38.92693989100172 ], [ - -10.782534881957304, - -27.706836137865224 + -9.40318867147073, + -38.40638670747937 ], [ - -11.190660136368933, - -27.17773749824441 + -9.90927985610847, + -37.88308503825151 ], [ - -11.594033986941213, - -26.648231099444637 + -10.40568950899683, + -37.357296078753734 ], [ - -11.992910113977132, - -26.118384205901382 + -10.892860890148313, + -36.82925957785007 ], [ - -12.74065445300505, - -26.288347863309184 + -11.725021532806409, + -36.99266629693375 ], [ - -13.491067473933867, - -26.453736372755746 + -12.561722813847496, + -37.15058817528356 ], [ - -14.244191102942295, - -26.614495359129275 + -13.402924186086011, + -37.30295261105689 ], [ - -15.000060218994463, - -26.770571046739462 + -14.248580682709758, + -37.44968701481688 ], [ - -15.758703280875807, - -26.92191012503988 + -15.09864290180792, + -37.5907188797037 ], [ - -16.52014286367637, - -27.06845964665534 + -15.953056998139346, + -37.7259758515808 ], [ - -17.28439612032389, - -27.210166951020653 + -16.811764683002366, + -37.85538579922086 ], [ - -18.05147518093247, - -27.346979608405157 + -17.674703232984143, + -37.9788768845402 ], [ - -18.40677323955856, - -27.913896058195945 + -18.06557461462512, + -38.53708182019422 ], [ - -18.765420295503418, - -28.479164902383836 + -18.462942668378673, + -39.09302434364565 ], [ - -19.127636579642967, - -29.042715414843656 + -18.86709282925267, + -39.64665555584331 ], [ - -19.493642575693002, - -29.604479180256902 + -19.278316401219172, + -40.19792492578673 ], [ - -19.8636593421146, - -30.16438972187324 + -19.696910982976533, + -40.746780025297525 ], [ - -20.237908825760428, - -30.722382149202467 + -20.12318088899542, + -41.29316626807381 ], [ - -20.616614167499165, - -31.278392823788298 + -20.557437565398686, + -41.83702665162222 ], [ -21, - -31.832359041336087 + -42.37830150075417 ] ] ] @@ -44077,7 +43900,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "3e60000000000000" + "cellIdHex": "3e20000000000000" }, "geometry": { "type": "Polygon", @@ -44251,6 +44074,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "3e60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21, + -31.832359041336087 + ], + [ + -20.189664627719594, + -31.938398148952622 + ], + [ + -19.378851639829918, + -32.03966944539289 + ], + [ + -18.567591332345955, + -32.13616896353091 + ], + [ + -17.755914712428307, + -32.22789297397681 + ], + [ + -16.943853362658047, + -32.314837967607545 + ], + [ + -16.131439293811127, + -32.39700063154639 + ], + [ + -15.318704784498777, + -32.47437781747656 + ], + [ + -14.505682205706876, + -32.546966500935476 + ], + [ + -13.757435998726805, + -32.28795965427349 + ], + [ + -13.014364122255415, + -32.02410234253843 + ], + [ + -12.276409180720975, + -31.75547039557303 + ], + [ + -11.543507423988558, + -31.482138275789122 + ], + [ + -10.815588429047239, + -31.20417906590002 + ], + [ + -10.092574700251816, + -30.921664470089443 + ], + [ + -9.374381171154255, + -30.63466483258702 + ], + [ + -8.6609145869553, + -30.34324917904292 + ], + [ + -9.097028549301058, + -29.817509611348882 + ], + [ + -9.526936769852, + -29.290887764931338 + ], + [ + -9.95095702178628, + -28.76350025615696 + ], + [ + -10.369392983225794, + -28.235451757095355 + ], + [ + -10.782534881957304, + -27.706836137865224 + ], + [ + -11.190660136368933, + -27.17773749824441 + ], + [ + -11.594033986941213, + -26.648231099444637 + ], + [ + -11.992910113977132, + -26.118384205901382 + ], + [ + -12.74065445300505, + -26.288347863309184 + ], + [ + -13.491067473933867, + -26.453736372755746 + ], + [ + -14.244191102942295, + -26.614495359129275 + ], + [ + -15.000060218994463, + -26.770571046739462 + ], + [ + -15.758703280875807, + -26.92191012503988 + ], + [ + -16.52014286367637, + -27.06845964665534 + ], + [ + -17.28439612032389, + -27.210166951020653 + ], + [ + -18.05147518093247, + -27.346979608405157 + ], + [ + -18.40677323955856, + -27.913896058195945 + ], + [ + -18.765420295503418, + -28.479164902383836 + ], + [ + -19.127636579642967, + -29.042715414843656 + ], + [ + -19.493642575693002, + -29.604479180256902 + ], + [ + -19.8636593421146, + -30.16438972187324 + ], + [ + -20.237908825760428, + -30.722382149202467 + ], + [ + -20.616614167499165, + -31.278392823788298 + ], + [ + -21, + -31.832359041336087 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -51164,168 +51164,168 @@ "coordinates": [ [ [ - 33.63121965863979, - -19.765749214107966 + 41.98784603778904, + -5.539553971242925 ], [ - 34.09859312950573, - -19.225785625727074 + 41.54761331190741, + -6.087793807803679 ], [ - 34.56250415816771, - -18.685412401380855 + 41.107653855258036, + -6.635154413511085 ], [ - 35.02327400710658, - -18.144588368280502 + 40.66786338497354, + -7.181633078390155 ], [ - 35.48118923440188, - -17.60327707188238 + 40.2281374751235, + -7.7272273077118685 ], [ - 35.936507952167176, - -17.061446304359205 + 39.78837139038308, + -8.271934838413262 ], [ - 36.3894647844985, - -16.51906765162135 + 39.34845990802137, + -8.815753660725935 ], [ - 36.84027483053717, - -15.976116072179927 + 38.90829712572031, + -9.358682045737744 ], [ - 37.28913685945065, - -15.432569513598844 + 38.46777625224104, + -9.900718579752139 ], [ - 37.44053630162625, - -14.736667324306048 + 38.32262980394762, + -10.588577127466564 ], [ - 37.5901540798036, - -14.042272970301052 + 38.177327848750224, + -11.27725878706197 ], [ - 37.73834490648426, - -13.349255364037285 + 38.031667107469616, + -11.96686190975542 ], [ 37.88542277826605, - -12.657490651991097 + -12.657490651991083 ], [ - 38.031667107469616, - -11.96686190975542 + 37.73834490648426, + -13.349255364037285 ], [ - 38.17732784875011, - -11.27725878706197 + 37.5901540798036, + -14.042272970301052 ], [ - 38.32262980394762, - -10.588577127466564 + 37.44053630162625, + -14.73666732430606 ], [ - 38.46777625224104, - -9.900718579752139 + 37.28913685945065, + -15.432569513598844 ], [ - 37.82743329351695, - -9.889032056621302 + 37.93157332002693, + -15.452327485475811 ], [ - 37.18641315688183, - -9.875639674799217 + 38.5733130749835, + -15.46994827100516 ], [ - 36.544676297405886, - -9.860598657256064 + 39.214405235419235, + -15.48538607898192 ], [ - 35.90218254138642, - -9.843969918200445 + 39.854896892869306, + -15.498598325219582 ], [ - 35.258891132232634, - -9.825818363993031 + 40.494833190296504, + -15.509545341788561 ], [ - 34.61476078902683, - -9.806213221338936 + 41.13425739586626, + -15.518190115739825 ], [ - 33.96974977964669, - -9.785228395433947 + 41.77321097849381, + -15.5244980540551 ], [ - 33.32381601059876, - -9.762942861013228 + 42.41173368434522, + -15.528436771949796 ], [ - 33.06407081422333, - -10.409013093694051 + 42.670173100260286, + -14.851750552251774 ], [ - 32.80398446405161, - -11.054993179670094 + 42.92665685183249, + -14.176223586850702 ], [ - 32.54342354899825, - -11.700935970536587 + 43.18153465815806, + -13.50176120965943 ], [ - 32.28224550232119, - -12.346898615736352 + 43.43512281952519, + -12.828273363583511 ], [ - 32.020296844364566, - -12.992943138130645 + 43.68770889460802, + -12.155674492187938 ], [ - 31.75741105038071, - -13.639137096939228 + 43.93955567119713, + -11.483883385302695 ], [ - 31.49340594358364, - -14.285554351489582 + 44.190904550916116, + -10.812822995957795 ], [ - 31.22808048262891, - -14.932275940698919 + 44.44197844607356, + -10.14242024119718 ], [ - 31.53661370277382, - -15.527609686251594 + 44.133641612368024, + -9.565200386362434 ], [ - 31.843673273913282, - -16.12531269776455 + 43.825579911273735, + -8.988583391237466 ], [ - 32.14889581688681, - -16.725469782291118 + 43.517890927694566, + -8.412533344885132 ], [ - 32.451872140871274, - -17.328162705110376 + 43.210663093540916, + -7.837014663183404 ], [ - 32.75214203360542, - -17.933469014606075 + 42.90397632581687, + -7.261992101872231 ], [ - 33.04918847392037, - -18.54146064245088 + 42.59790261994908, + -6.687430765950824 ], [ - 33.34243121171687, - -19.15220224104705 + 42.29250660131936, + -6.113296115912781 ], [ - 33.63121965863979, - -19.765749214107966 + 41.98784603778904, + -5.539553971242925 ] ] ] @@ -51341,168 +51341,168 @@ "coordinates": [ [ [ - 41.98784603778904, - -5.539553971242925 + 33.63121965863979, + -19.765749214107966 ], [ - 41.54761331190741, - -6.087793807803679 + 34.09859312950573, + -19.225785625727074 ], [ - 41.107653855258036, - -6.635154413511085 + 34.56250415816771, + -18.685412401380855 ], [ - 40.66786338497354, - -7.181633078390155 + 35.02327400710658, + -18.144588368280502 ], [ - 40.2281374751235, - -7.7272273077118685 + 35.48118923440188, + -17.60327707188238 ], [ - 39.78837139038308, - -8.271934838413262 + 35.936507952167176, + -17.061446304359205 ], [ - 39.34845990802137, - -8.815753660725935 + 36.3894647844985, + -16.51906765162135 ], [ - 38.90829712572031, - -9.358682045737744 + 36.84027483053717, + -15.976116072179927 ], [ - 38.46777625224104, - -9.900718579752139 + 37.28913685945065, + -15.432569513598844 ], [ - 38.32262980394762, - -10.588577127466564 + 37.44053630162625, + -14.736667324306048 ], [ - 38.177327848750224, - -11.27725878706197 + 37.5901540798036, + -14.042272970301052 ], [ - 38.031667107469616, - -11.96686190975542 + 37.73834490648426, + -13.349255364037285 ], [ 37.88542277826605, - -12.657490651991083 + -12.657490651991097 ], [ - 37.73834490648426, - -13.349255364037285 + 38.031667107469616, + -11.96686190975542 ], [ - 37.5901540798036, - -14.042272970301052 + 38.17732784875011, + -11.27725878706197 ], [ - 37.44053630162625, - -14.73666732430606 + 38.32262980394762, + -10.588577127466564 ], [ - 37.28913685945065, - -15.432569513598844 + 38.46777625224104, + -9.900718579752139 ], [ - 37.93157332002693, - -15.452327485475811 + 37.82743329351695, + -9.889032056621302 ], [ - 38.5733130749835, - -15.46994827100516 + 37.18641315688183, + -9.875639674799217 ], [ - 39.214405235419235, - -15.48538607898192 + 36.544676297405886, + -9.860598657256064 ], [ - 39.854896892869306, - -15.498598325219582 + 35.90218254138642, + -9.843969918200445 ], [ - 40.494833190296504, - -15.509545341788561 + 35.258891132232634, + -9.825818363993031 ], [ - 41.13425739586626, - -15.518190115739825 + 34.61476078902683, + -9.806213221338936 ], [ - 41.77321097849381, - -15.5244980540551 + 33.96974977964669, + -9.785228395433947 ], [ - 42.41173368434522, - -15.528436771949796 + 33.32381601059876, + -9.762942861013228 ], [ - 42.670173100260286, - -14.851750552251774 + 33.06407081422333, + -10.409013093694051 ], [ - 42.92665685183249, - -14.176223586850702 + 32.80398446405161, + -11.054993179670094 ], [ - 43.18153465815806, - -13.50176120965943 + 32.54342354899825, + -11.700935970536587 ], [ - 43.43512281952519, - -12.828273363583511 + 32.28224550232119, + -12.346898615736352 ], [ - 43.68770889460802, - -12.155674492187938 + 32.020296844364566, + -12.992943138130645 ], [ - 43.93955567119713, - -11.483883385302695 + 31.75741105038071, + -13.639137096939228 ], [ - 44.190904550916116, - -10.812822995957795 + 31.49340594358364, + -14.285554351489582 ], [ - 44.44197844607356, - -10.14242024119718 + 31.22808048262891, + -14.932275940698919 ], [ - 44.133641612368024, - -9.565200386362434 + 31.53661370277382, + -15.527609686251594 ], [ - 43.825579911273735, - -8.988583391237466 + 31.843673273913282, + -16.12531269776455 ], [ - 43.517890927694566, - -8.412533344885132 + 32.14889581688681, + -16.725469782291118 ], [ - 43.210663093540916, - -7.837014663183404 + 32.451872140871274, + -17.328162705110376 ], [ - 42.90397632581687, - -7.261992101872231 + 32.75214203360542, + -17.933469014606075 ], [ - 42.59790261994908, - -6.687430765950824 + 33.04918847392037, + -18.54146064245088 ], [ - 42.29250660131936, - -6.113296115912781 + 33.34243121171687, + -19.15220224104705 ], [ - 41.98784603778904, - -5.539553971242925 + 33.63121965863979, + -19.765749214107966 ] ] ] @@ -52044,183 +52044,6 @@ "properties": { "cellIdHex": "49a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.01215396221096, - 5.5395539712429125 - ], - [ - 23.543603922596503, - 5.0083937210814735 - ], - [ - 23.075025538559203, - 4.478017630542148 - ], - [ - 22.606314686039013, - 3.948374722313949 - ], - [ - 22.137368123447573, - 3.419408278661703 - ], - [ - 21.668083475566505, - 2.8910551088748115 - ], - [ - 21.198359243650316, - 2.3632447023815013 - ], - [ - 20.728094848135697, - 1.8358982472226881 - ], - [ - 20.25719071218714, - 1.308927489384315 - ], - [ - 20.083481900982065, - 0.6458218262692901 - ], - [ - 19.909816612839677, - -0.016296175764827607 - ], - [ - 19.73614190796286, - -0.6774493631904095 - ], - [ - 19.562405091410483, - -1.3376605873804597 - ], - [ - 19.38855364001529, - -1.996952752350545 - ], - [ - 19.214535129608066, - -2.6553488698728347 - ], - [ - 19.04029716225591, - -3.3128721235315823 - ], - [ - 18.865787293220706, - -3.9695459436732463 - ], - [ - 19.52920346919302, - -3.9740936906688304 - ], - [ - 20.191799713278442, - -3.981178330148658 - ], - [ - 20.853522537045023, - -3.9905139361273845 - ], - [ - 21.514328708824905, - -4.001832516138981 - ], - [ - 22.17418416744306, - -4.01488282638369 - ], - [ - 22.83306303936763, - -4.029429260903227 - ], - [ - 23.4909467502481, - -4.045250811444719 - ], - [ - 24.1478232224797, - -4.0621400945523005 - ], - [ - 24.42431645798831, - -3.4311290495609765 - ], - [ - 24.700663045837473, - -2.7991502175327474 - ], - [ - 24.97694051018277, - -2.1661921917062075 - ], - [ - 25.253226615917242, - -1.532243396145345 - ], - [ - 25.529599463663885, - -0.8972920790912999 - ], - [ - 25.806137585455645, - -0.2613263082885105 - ], - [ - 26.08292004145369, - 0.3756660320218461 - ], - [ - 26.36002651804472, - 1.0136972426827335 - ], - [ - 26.064020214027096, - 1.580040329675098 - ], - [ - 25.768784200785262, - 2.146125995764998 - ], - [ - 25.474296285497076, - 2.711996785024191 - ], - [ - 25.180532056338734, - 3.277694319908723 - ], - [ - 24.887465030806766, - 3.8432593346234527 - ], - [ - 24.595066787836686, - 4.408731708328153 - ], - [ - 24.30330708503402, - 4.9741504980567 - ], - [ - 24.01215396221096, - 5.5395539712429125 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "49e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -52396,175 +52219,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "4a20000000000000" + "cellIdHex": "49e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 33, - 0 + 24.01215396221096, + 5.5395539712429125 ], [ - 32.54580868240123, - -0.5310724057521976 + 23.543603922596503, + 5.0083937210814735 ], [ - 32.09182293104959, - -1.060939551557448 + 23.075025538559203, + 4.478017630542148 ], [ - 31.63794450252226, - -1.5895975332289516 + 22.606314686039013, + 3.948374722313949 ], [ - 31.184075708653836, - -2.1170427308839903 + 22.137368123447573, + 3.419408278661703 ], [ - 30.73011930804455, - -2.6432718489965294 + 21.668083475566505, + 2.8910551088748115 ], [ - 30.275978395339052, - -3.168281965954307 + 21.198359243650316, + 2.3632447023815013 ], [ - 29.821556287496946, - -3.692070594738634 + 20.728094848135697, + 1.8358982472226881 ], [ - 29.366756406160334, - -4.214635756699471 + 20.25719071218714, + 1.308927489384315 ], [ - 29.209360444697722, - -4.882568632135537 + 20.083481900982065, + 0.6458218262692901 ], [ - 29.05247479765967, - -5.550098782143663 + 19.909816612839677, + -0.016296175764827607 ], [ - 28.8960342298941, - -6.217268577321612 + 19.73614190796286, + -0.6774493631904095 ], [ - 28.739971624800432, - -6.8841225168171825 + 19.562405091410483, + -1.3376605873804597 ], [ - 28.58421753766845, - -7.550707512934453 + 19.38855364001529, + -1.996952752350545 ], [ - 28.428699675483358, - -8.217073218024888 + 19.214535129608066, + -2.6553488698728347 ], [ - 28.273342286067646, - -8.883272401048544 + 19.04029716225591, + -3.3128721235315823 ], [ - 28.118065434949813, - -9.549361382649176 + 18.865787293220706, + -3.9695459436732463 ], [ - 28.772892255098554, - -9.57843985604468 + 19.52920346919302, + -3.9740936906688304 ], [ - 29.426465160394628, - -9.607092613099738 + 20.191799713278442, + -3.981178330148658 ], [ - 30.078822900367868, - -9.635180855186489 + 20.853522537045023, + -3.9905139361273845 ], [ - 30.730005564865223, - -9.662575634479998 + 21.514328708824905, + -4.001832516138981 ], [ - 31.380054235861394, - -9.689157050390264 + 22.17418416744306, + -4.01488282638369 ], [ - 32.029010688619564, - -9.714813516199449 + 22.83306303936763, + -4.029429260903227 ], [ - 32.676917136014936, - -9.739441089552034 + 23.4909467502481, + -4.045250811444719 ], [ - 33.32381601059876, - -9.762942861013228 + 24.1478232224797, + -4.0621400945523005 ], [ - 33.583345767777814, - -9.116733427807851 + 24.42431645798831, + -3.4311290495609765 ], [ - 33.84277932454779, - -8.470339103107024 + 24.700663045837473, + -2.7991502175327474 ], [ - 34.1022304726082, - -7.823717180049912 + 24.97694051018277, + -2.1661921917062075 ], [ - 34.36180842997646, - -7.176827605625989 + 25.253226615917242, + -1.532243396145345 ], [ - 34.62161858808258, - -6.529632692281432 + 25.529599463663885, + -0.8972920790912999 ], [ - 34.8817631556858, - -5.882096865730695 + 25.806137585455645, + -0.2613263082885105 ], [ - 35.14234171817213, - -5.234186444131015 + 26.08292004145369, + 0.3756660320218461 ], [ - 35.40345172721322, - -4.585869444480213 + 26.36002651804472, + 1.0136972426827335 ], [ - 35.10000594128633, - -4.011085234725343 + 26.064020214027096, + 1.580040329675098 ], [ - 34.797383957900706, - -3.436825732891527 + 25.768784200785262, + 2.146125995764998 ], [ - 34.49561029235815, - -2.863049330605956 + 25.474296285497076, + 2.711996785024191 ], [ - 34.19470453756696, - -2.289715029829303 + 25.180532056338734, + 3.277694319908723 ], [ - 33.89468173256557, - -1.7167824397092957 + 24.887465030806766, + 3.8432593346234527 ], [ - 33.59555270045735, - -1.1442117709619075 + 24.595066787836686, + 4.408731708328153 ], [ - 33.297324358137985, - -0.5719638281265822 + 24.30330708503402, + 4.9741504980567 ], [ - 33, - 0 + 24.01215396221096, + 5.5395539712429125 ] ] ] @@ -52573,7 +52396,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "4a60000000000000" + "cellIdHex": "4a20000000000000" }, "geometry": { "type": "Polygon", @@ -52747,6 +52570,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "4a60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 33, + 0 + ], + [ + 32.54580868240123, + -0.5310724057521976 + ], + [ + 32.09182293104959, + -1.060939551557448 + ], + [ + 31.63794450252226, + -1.5895975332289516 + ], + [ + 31.184075708653836, + -2.1170427308839903 + ], + [ + 30.73011930804455, + -2.6432718489965294 + ], + [ + 30.275978395339052, + -3.168281965954307 + ], + [ + 29.821556287496946, + -3.692070594738634 + ], + [ + 29.366756406160334, + -4.214635756699471 + ], + [ + 29.209360444697722, + -4.882568632135537 + ], + [ + 29.05247479765967, + -5.550098782143663 + ], + [ + 28.8960342298941, + -6.217268577321612 + ], + [ + 28.739971624800432, + -6.8841225168171825 + ], + [ + 28.58421753766845, + -7.550707512934453 + ], + [ + 28.428699675483358, + -8.217073218024888 + ], + [ + 28.273342286067646, + -8.883272401048544 + ], + [ + 28.118065434949813, + -9.549361382649176 + ], + [ + 28.772892255098554, + -9.57843985604468 + ], + [ + 29.426465160394628, + -9.607092613099738 + ], + [ + 30.078822900367868, + -9.635180855186489 + ], + [ + 30.730005564865223, + -9.662575634479998 + ], + [ + 31.380054235861394, + -9.689157050390264 + ], + [ + 32.029010688619564, + -9.714813516199449 + ], + [ + 32.676917136014936, + -9.739441089552034 + ], + [ + 33.32381601059876, + -9.762942861013228 + ], + [ + 33.583345767777814, + -9.116733427807851 + ], + [ + 33.84277932454779, + -8.470339103107024 + ], + [ + 34.1022304726082, + -7.823717180049912 + ], + [ + 34.36180842997646, + -7.176827605625989 + ], + [ + 34.62161858808258, + -6.529632692281432 + ], + [ + 34.8817631556858, + -5.882096865730695 + ], + [ + 35.14234171817213, + -5.234186444131015 + ], + [ + 35.40345172721322, + -4.585869444480213 + ], + [ + 35.10000594128633, + -4.011085234725343 + ], + [ + 34.797383957900706, + -3.436825732891527 + ], + [ + 34.49561029235815, + -2.863049330605956 + ], + [ + 34.19470453756696, + -2.289715029829303 + ], + [ + 33.89468173256557, + -1.7167824397092957 + ], + [ + 33.59555270045735, + -1.1442117709619075 + ], + [ + 33.297324358137985, + -0.5719638281265822 + ], + [ + 33, + 0 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -54876,183 +54876,6 @@ "properties": { "cellIdHex": "4da0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.579142600983687, - -13.628636133967648 - ], - [ - 5.303792733914179, - -13.002746034453729 - ], - [ - 5.029413812224902, - -12.376251432117138 - ], - [ - 4.755914929701703, - -11.74913082912652 - ], - [ - 4.483207756552019, - -11.121364333331133 - ], - [ - 4.211206114278298, - -10.492933345721061 - ], - [ - 3.939825623192746, - -9.863820310405211 - ], - [ - 3.6689834052582455, - -9.234008513297548 - ], - [ - 3.3985978294706456, - -8.603481919068038 - ], - [ - 2.861958327791399, - -8.175607546454678 - ], - [ - 2.326715858547459, - -7.7464366681473695 - ], - [ - 1.7927715467785674, - -7.315947442795518 - ], - [ - 1.2600283751995676, - -6.88412251681717 - ], - [ - 0.728390926222346, - -6.4509483560448615 - ], - [ - 0.19776514756426877, - -6.016414688115981 - ], - [ - -0.3319418611171159, - -5.580514035405847 - ], - [ - -0.8608220429819085, - -5.143241322392146 - ], - [ - -1.1664644023428536, - -5.717321523379236 - ], - [ - -1.4728453159269748, - -6.292255639087746 - ], - [ - -1.779924762990504, - -6.8680986425411 - ], - [ - -2.087655001447274, - -7.4449065555474645 - ], - [ - -2.3959798414575744, - -8.022736425852877 - ], - [ - -2.7048338464040853, - -8.601646293856085 - ], - [ - -3.0141414541275253, - -9.18169514716392 - ], - [ - -3.3238160105987617, - -9.762942861013215 - ], - [ - -2.8763153174394347, - -10.28990442188784 - ], - [ - -2.427997118213625, - -10.815697024934172 - ], - [ - -1.9787667859937983, - -11.340310481399507 - ], - [ - -1.5285293425013151, - -11.863734315589355 - ], - [ - -1.0771893631724652, - -12.385957764485884 - ], - [ - -0.6246508763457541, - -12.906969781353348 - ], - [ - -0.17081725485729748, - -13.426759044313485 - ], - [ - 0.2844089021551781, - -13.945313971163772 - ], - [ - 0.9404788534830004, - -13.90731505951831 - ], - [ - 1.5980664765629626, - -13.868501904231413 - ], - [ - 2.257238887502126, - -13.829033834593622 - ], - [ - 2.918062667059985, - -13.789085668592772 - ], - [ - 3.580603193439856, - -13.748849484199871 - ], - [ - 4.244923826789318, - -13.708536612122595 - ], - [ - 4.911084916988898, - -13.668379879030143 - ], - [ - 5.579142600983687, - -13.628636133967648 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "4de0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -55228,175 +55051,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "4e20000000000000" + "cellIdHex": "4de0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -3.631219658639793, - -19.765749214107966 + 5.579142600983687, + -13.628636133967648 ], [ - -3.9149475063387627, - -19.09844430847657 + 5.303792733914179, + -13.002746034453729 ], [ - -4.193902273201161, - -18.432713723067852 + 5.029413812224902, + -12.376251432117138 ], [ - -4.468762973520256, - -17.768404416390695 + 4.755914929701703, + -11.74913082912652 ], [ - -4.740109416886298, - -17.10537278396115 + 4.483207756552019, + -11.121364333331133 ], [ - -5.008440823587989, - -16.443484826667962 + 4.211206114278298, + -10.492933345721061 ], [ - -5.27419051252275, - -15.782615938070585 + 3.939825623192746, + -9.863820310405211 ], [ - -5.537737579425766, - -15.122650471068722 + 3.6689834052582455, + -9.234008513297548 ], [ - -5.7994162504571705, - -14.463481187019163 + 3.3985978294706456, + -8.603481919068038 ], [ - -6.322731489544822, - -14.014156121733944 + 2.861958327791399, + -8.175607546454678 ], [ - -6.844778193916909, - -13.563371433297412 + 2.326715858547459, + -7.7464366681473695 ], [ - -7.365645682061881, - -13.111144041777466 + 1.7927715467785674, + -7.315947442795518 ], [ - -7.885422778266047, - -12.657490651991083 + 1.2600283751995676, + -6.88412251681717 ], [ - -8.40419792307921, - -12.202427742880495 + 0.728390926222346, + -6.4509483560448615 ], [ - -8.922059273279274, - -11.745971561108755 + 0.19776514756426877, + -6.016414688115981 ], [ - -9.439094793432787, - -11.288138118190995 + -0.3319418611171159, + -5.580514035405847 ], [ - -9.955392340742947, - -10.828943190607784 + -0.8608220429819085, + -5.143241322392146 ], [ - -10.26417952841075, - -11.412488048170637 + -1.1664644023428536, + -5.717321523379236 ], [ - -10.57281380622544, - -11.99705537195785 + -1.4728453159269748, + -6.292255639087746 ], [ - -10.881143256306814, - -12.582690091959567 + -1.779924762990504, + -6.8680986425411 ], [ - -11.18900036232958, - -13.16943709760907 + -2.087655001447274, + -7.4449065555474645 ], [ - -11.496200717204601, - -13.757341113162747 + -2.3959798414575744, + -8.022736425852877 ], [ - -11.802541625161211, - -14.346446552647892 + -2.7048338464040853, + -8.601646293856085 ], [ - -12.107800590432475, - -14.936797351541555 + -3.0141414541275253, + -9.18169514716392 ], [ - -12.411733684345222, - -15.528436771949796 + -3.3238160105987617, + -9.762942861013215 ], [ - -12.057168635512767, - -16.042514718075395 + -2.8763153174394347, + -10.28990442188784 ], [ - -11.700981209568681, - -16.5566547948637 + -2.427997118213625, + -10.815697024934172 ], [ - -11.34303755054475, - -17.070858682932496 + -1.9787667859937983, + -11.340310481399507 ], [ - -10.983198737218686, - -17.585126846827592 + -1.5285293425013151, + -11.863734315589355 ], [ - -10.62132039648236, - -18.099458347308452 + -1.0771893631724652, + -12.385957764485884 ], [ - -10.257252289105054, - -18.61385062882122 + -0.6246508763457541, + -12.906969781353348 ], [ - -9.890837865674712, - -19.128299278685514 + -0.17081725485729748, + -13.426759044313485 ], [ - -9.521913790366852, - -19.642797754009642 + 0.2844089021551781, + -13.945313971163772 ], [ - -8.787148234534925, - -19.670330952804132 + 0.9404788534830004, + -13.90731505951831 ], [ - -8.052127153586525, - -19.69429229573705 + 1.5980664765629626, + -13.868501904231413 ], [ - -7.316772258194874, - -19.714720627079494 + 2.257238887502126, + -13.829033834593622 ], [ - -6.580992688266861, - -19.731660977058525 + 2.918062667059985, + -13.789085668592772 ], [ - -5.844682613098598, - -19.745165949584045 + 3.580603193439856, + -13.748849484199871 ], [ - -5.10771828903637, - -19.7552974947138 + 4.244923826789318, + -13.708536612122595 ], [ - -4.369954425113974, - -19.76212919146411 + 4.911084916988898, + -13.668379879030143 ], [ - -3.631219658639793, - -19.765749214107966 + 5.579142600983687, + -13.628636133967648 ] ] ] @@ -55405,7 +55228,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "4e60000000000000" + "cellIdHex": "4e20000000000000" }, "geometry": { "type": "Polygon", @@ -55579,6 +55402,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "4e60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.631219658639793, + -19.765749214107966 + ], + [ + -3.9149475063387627, + -19.09844430847657 + ], + [ + -4.193902273201161, + -18.432713723067852 + ], + [ + -4.468762973520256, + -17.768404416390695 + ], + [ + -4.740109416886298, + -17.10537278396115 + ], + [ + -5.008440823587989, + -16.443484826667962 + ], + [ + -5.27419051252275, + -15.782615938070585 + ], + [ + -5.537737579425766, + -15.122650471068722 + ], + [ + -5.7994162504571705, + -14.463481187019163 + ], + [ + -6.322731489544822, + -14.014156121733944 + ], + [ + -6.844778193916909, + -13.563371433297412 + ], + [ + -7.365645682061881, + -13.111144041777466 + ], + [ + -7.885422778266047, + -12.657490651991083 + ], + [ + -8.40419792307921, + -12.202427742880495 + ], + [ + -8.922059273279274, + -11.745971561108755 + ], + [ + -9.439094793432787, + -11.288138118190995 + ], + [ + -9.955392340742947, + -10.828943190607784 + ], + [ + -10.26417952841075, + -11.412488048170637 + ], + [ + -10.57281380622544, + -11.99705537195785 + ], + [ + -10.881143256306814, + -12.582690091959567 + ], + [ + -11.18900036232958, + -13.16943709760907 + ], + [ + -11.496200717204601, + -13.757341113162747 + ], + [ + -11.802541625161211, + -14.346446552647892 + ], + [ + -12.107800590432475, + -14.936797351541555 + ], + [ + -12.411733684345222, + -15.528436771949796 + ], + [ + -12.057168635512767, + -16.042514718075395 + ], + [ + -11.700981209568681, + -16.5566547948637 + ], + [ + -11.34303755054475, + -17.070858682932496 + ], + [ + -10.983198737218686, + -17.585126846827592 + ], + [ + -10.62132039648236, + -18.099458347308452 + ], + [ + -10.257252289105054, + -18.61385062882122 + ], + [ + -9.890837865674712, + -19.128299278685514 + ], + [ + -9.521913790366852, + -19.642797754009642 + ], + [ + -8.787148234534925, + -19.670330952804132 + ], + [ + -8.052127153586525, + -19.69429229573705 + ], + [ + -7.316772258194874, + -19.714720627079494 + ], + [ + -6.580992688266861, + -19.731660977058525 + ], + [ + -5.844682613098598, + -19.745165949584045 + ], + [ + -5.10771828903637, + -19.7552974947138 + ], + [ + -4.369954425113974, + -19.76212919146411 + ], + [ + -3.631219658639793, + -19.765749214107966 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -56120,168 +56120,168 @@ "coordinates": [ [ [ - 5.987846037789041, - 5.5395539712429125 + 15, + -8.162533854955054 ], [ - 6.2717900925880485, - 4.896562751656485 + 14.701148357510192, + -7.530390021971784 ], [ - 6.555273215749708, - 4.254708312632595 + 14.403704729178457, + -6.898735635532036 ], [ - 6.8383809864384375, - 3.613970768281394 + 14.10759779950115, + -6.267375132306952 ], [ - 7.121198047302414, - 2.9743298550319404 + 13.812752726524195, + -5.636140955798851 ], [ - 7.403808225246394, - 2.3357648565162563 + 13.51909227703186, + -5.004888485608272 ], [ - 7.686294650174659, - 1.6982545161551712 + 13.226537622883711, + -4.373492007958605 ], [ - 7.968739872117567, - 1.0617769353137565 + 12.935008895401552, + -3.7418414882244706 ], [ - 8.251225977132435, - 0.42630945444008767 + 12.644425565622782, + -3.10983996664447 ], [ - 8.796181368644284, - -0.01455688627790404 + 12.090540398319945, + -2.665248288661092 ], [ - 9.342171110593199, - -0.4554068187673846 + 11.538150896788238, + -2.2218651838138572 ], [ - 9.889281134307566, - -0.8963863812880779 + 10.987192744831077, + -1.77941623082552 ], [ 10.437594908589517, -1.3376605873804597 ], [ - 10.987192744831077, - -1.77941623082552 + 9.889281134307566, + -0.8963863812880779 ], [ - 11.538150896788238, - -2.2218651838138572 + 9.342171110593199, + -0.4554068187673846 ], [ - 12.090540398319945, - -2.665248288661092 + 8.796181368644284, + -0.01455688627790404 ], [ - 12.644425565622782, - -3.10983996664447 + 8.251225977132435, + 0.42630945444008767 ], [ - 12.94161017972101, - -2.563360867460993 + 7.954205449619508, + -0.13292275320977567 ], [ - 13.2379323223023, - -2.017379137419062 + 7.656409060579335, + -0.6925672169305193 ], [ - 13.533429873558362, - -1.471833293128459 + 7.357812350390645, + -1.2526762337456925 ], [ - 13.828142662510345, - -0.9266645541039171 + 7.058393616246349, + -1.8133037611419724 ], [ - 14.122112256248101, - -0.3818166846820636 + 6.758134178877526, + -2.3745054856601358 ], [ - 14.41538177941652, - 0.1627641552748554 + 6.45701868276069, + -2.9363388920133953 ], [ - 14.70799576025479, - 0.7071295512160181 + 6.155035433621947, + -3.498863332272648 ], [ - 15, - 1.251328966632093 + 5.852176777520299, + -4.0621400945523005 ], [ - 14.522449987201185, - 1.7910707032452156 + 6.317467917906015, + -4.578278183193922 ], [ - 14.045760996528202, - 2.329681082099123 + 6.78386872506735, + -5.093527371445836 ], [ - 13.569870532470986, - 2.867397609977837 + 7.251486603619583, + -5.607938518432806 ], [ - 13.0947091741632, - 3.4044316034361284 + 7.720430379369873, + -6.1215707773920744 ], [ - 12.620201747684746, - 3.9409715409093375 + 8.190810442245265, + -6.634493101618335 ], [ - 12.146268256355143, - 4.477185926411779 + 8.662738867305961, + -7.146786076626605 ], [ - 11.672824617108972, - 5.0132257437538845 + 9.136329499021485, + -7.658544161959716 ], [ - 11.19978324083445, - 5.5492265662256965 + 9.611697976767573, + -8.169878451075492 ], [ - 10.546609834271067, - 5.553211251936401 + 10.28187834759251, + -8.155493059284456 ], [ - 9.893859927302628, - 5.555393280052681 + 10.953228791984088, + -8.144050026715409 ], [ - 9.241567910867047, - 5.555941070749131 + 11.62567169742158, + -8.135956991156377 ], [ - 8.589763120579846, - 5.555015524844137 + 12.299109634857018, + -8.131655257677641 ], [ - 7.938470206592683, - 5.55277037311712 + 12.973422517359268, + -8.131622689803521 ], [ - 7.287709479101636, - 5.549352511082697 + 13.648464397900852, + -8.13637681882015 ], [ - 6.637497230831968, - 5.544902319538776 + 14.324059866010089, + -8.146478176724946 ], [ - 5.987846037789041, - 5.5395539712429125 + 15, + -8.162533854955054 ] ] ] @@ -56297,168 +56297,168 @@ "coordinates": [ [ [ - 15, - -8.162533854955054 + 5.987846037789041, + 5.5395539712429125 ], [ - 14.701148357510192, - -7.530390021971784 + 6.2717900925880485, + 4.896562751656485 ], [ - 14.403704729178457, - -6.898735635532036 + 6.555273215749708, + 4.254708312632595 ], [ - 14.10759779950115, - -6.267375132306952 + 6.8383809864384375, + 3.613970768281394 ], [ - 13.812752726524195, - -5.636140955798851 + 7.121198047302414, + 2.9743298550319404 ], [ - 13.51909227703186, - -5.004888485608272 + 7.403808225246394, + 2.3357648565162563 ], [ - 13.226537622883711, - -4.373492007958605 + 7.686294650174659, + 1.6982545161551712 ], [ - 12.935008895401552, - -3.7418414882244706 + 7.968739872117567, + 1.0617769353137565 ], [ - 12.644425565622782, - -3.10983996664447 + 8.251225977132435, + 0.42630945444008767 ], [ - 12.090540398319945, - -2.665248288661092 + 8.796181368644284, + -0.01455688627790404 ], [ - 11.538150896788238, - -2.2218651838138572 + 9.342171110593199, + -0.4554068187673846 ], [ - 10.987192744831077, - -1.77941623082552 + 9.889281134307566, + -0.8963863812880779 ], [ 10.437594908589517, -1.3376605873804597 ], [ - 9.889281134307566, - -0.8963863812880779 + 10.987192744831077, + -1.77941623082552 ], [ - 9.342171110593199, - -0.4554068187673846 + 11.538150896788238, + -2.2218651838138572 ], [ - 8.796181368644284, - -0.01455688627790404 + 12.090540398319945, + -2.665248288661092 ], [ - 8.251225977132435, - 0.42630945444008767 + 12.644425565622782, + -3.10983996664447 ], [ - 7.954205449619508, - -0.13292275320977567 + 12.94161017972101, + -2.563360867460993 ], [ - 7.656409060579335, - -0.6925672169305193 + 13.2379323223023, + -2.017379137419062 ], [ - 7.357812350390645, - -1.2526762337456925 + 13.533429873558362, + -1.471833293128459 ], [ - 7.058393616246349, - -1.8133037611419724 + 13.828142662510345, + -0.9266645541039171 ], [ - 6.758134178877526, - -2.3745054856601358 + 14.122112256248101, + -0.3818166846820636 ], [ - 6.45701868276069, - -2.9363388920133953 + 14.41538177941652, + 0.1627641552748554 ], [ - 6.155035433621947, - -3.498863332272648 + 14.70799576025479, + 0.7071295512160181 ], [ - 5.852176777520299, - -4.0621400945523005 + 15, + 1.251328966632093 ], [ - 6.317467917906015, - -4.578278183193922 + 14.522449987201185, + 1.7910707032452156 ], [ - 6.78386872506735, - -5.093527371445836 + 14.045760996528202, + 2.329681082099123 ], [ - 7.251486603619583, - -5.607938518432806 + 13.569870532470986, + 2.867397609977837 ], [ - 7.720430379369873, - -6.1215707773920744 + 13.0947091741632, + 3.4044316034361284 ], [ - 8.190810442245265, - -6.634493101618335 + 12.620201747684746, + 3.9409715409093375 ], [ - 8.662738867305961, - -7.146786076626605 + 12.146268256355143, + 4.477185926411779 ], [ - 9.136329499021485, - -7.658544161959716 + 11.672824617108972, + 5.0132257437538845 ], [ - 9.611697976767573, - -8.169878451075492 + 11.19978324083445, + 5.5492265662256965 ], [ - 10.28187834759251, - -8.155493059284456 + 10.546609834271067, + 5.553211251936401 ], [ - 10.953228791984088, - -8.144050026715409 + 9.893859927302628, + 5.555393280052681 ], [ - 11.62567169742158, - -8.135956991156377 + 9.241567910867047, + 5.555941070749131 ], [ - 12.299109634857018, - -8.131655257677641 + 8.589763120579846, + 5.555015524844137 ], [ - 12.973422517359268, - -8.131622689803521 + 7.938470206592683, + 5.55277037311712 ], [ - 13.648464397900852, - -8.13637681882015 + 7.287709479101636, + 5.549352511082697 ], [ - 14.324059866010089, - -8.146478176724946 + 6.637497230831968, + 5.544902319538776 ], [ - 15, - -8.162533854955054 + 5.987846037789041, + 5.5395539712429125 ] ] ] @@ -60540,6 +60540,183 @@ "properties": { "cellIdHex": "61a0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21, + 58.39714590743121 + ], + [ + -21.20224854480091, + 57.7098160689096 + ], + [ + -21.397672377963545, + 57.023245103684765 + ], + [ + -21.586716904087893, + 56.33741170724404 + ], + [ + -21.76979068196613, + 55.652293108336906 + ], + [ + -21.94726913528416, + 54.96786512448908 + ], + [ + -22.11949781700139, + 54.28410219175384 + ], + [ + -22.286795286633946, + 53.60097736925616 + ], + [ + -22.44945565043008, + 52.91846231840441 + ], + [ + -22.072683181426555, + 52.27566357129351 + ], + [ + -21.705854305951334, + 51.63237305328779 + ], + [ + -21.348453626131118, + 50.988587863690285 + ], + [ + -21, + 50.344298964796785 + ], + [ + -20.660044150933118, + 49.69949104060679 + ], + [ + -20.32816655176532, + 49.05414226133656 + ], + [ + -20.00397557170561, + 48.40822394298013 + ], + [ + -19.687105879733735, + 47.76170008770642 + ], + [ + -18.838661463848894, + 48.066413026730146 + ], + [ + -17.98141943484825, + 48.363434557603284 + ], + [ + -17.115515286074015, + 48.65279397174959 + ], + [ + -16.241080851905053, + 48.93451547294737 + ], + [ + -15.358245598258918, + 49.20861839533168 + ], + [ + -14.467137818676747, + 49.47511743236965 + ], + [ + -13.567885742347016, + 49.73402287478261 + ], + [ + -12.660618559517616, + 49.985340855707705 + ], + [ + -12.72137076072545, + 50.676227253291856 + ], + [ + -12.782724527991832, + 51.3673382439208 + ], + [ + -12.844694921130099, + 52.058745091098615 + ], + [ + -12.907302428665503, + 52.750515048575515 + ], + [ + -12.97057279486853, + 53.44271189047214 + ], + [ + -13.03453694926759, + 54.13539636906916 + ], + [ + -13.099231029860675, + 54.82862661172426 + ], + [ + -13.164696494692635, + 55.52245846635904 + ], + [ + -14.083466796739572, + 55.90854149237178 + ], + [ + -15.019334841859063, + 56.28723508906757 + ], + [ + -15.972426381799323, + 56.65841897896523 + ], + [ + -16.942859784328903, + 57.02196802160571 + ], + [ + -17.930743915223957, + 57.377752253633076 + ], + [ + -18.936175936264704, + 57.725636962580886 + ], + [ + -19.959239021998428, + 58.0654827959763 + ], + [ + -21, + 58.39714590743121 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "61e0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -60715,175 +60892,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "61e0000000000000" + "cellIdHex": "6220000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -21, - 58.39714590743121 + -40.477269437061636, + 56.87074422653197 ], [ - -21.20224854480091, - 57.7098160689096 + -40.338314623666065, + 56.170935828881056 ], [ - -21.397672377963545, - 57.023245103684765 + -40.20670013832586, + 55.471088143934985 ], [ - -21.586716904087893, - 56.33741170724404 + -40.08191974785325, + 54.771142116567745 ], [ - -21.76979068196613, - 55.652293108336906 + -39.96349972717013, + 54.07103316625274 ], [ - -21.94726913528416, - 54.96786512448908 + -39.850994537145766, + 53.37069088251728 ], [ - -22.11949781700139, - 54.28410219175384 + -39.74398280459354, + 52.67003864219135 ], [ - -22.286795286633946, - 53.60097736925616 + -39.64206352909878, + 51.96899314209124 ], [ - -22.44945565043008, - 52.91846231840441 + -39.54485244440184, + 51.267463838904355 ], [ - -22.072683181426555, - 52.27566357129351 + -38.97477594277575, + 50.6879694707026 ], [ - -21.705854305951334, - 51.63237305328779 + -38.41970195401086, + 50.10639851975505 ], [ - -21.348453626131118, - 50.988587863690285 + -37.87898888394545, + 49.52285922712051 ], [ - -21, - 50.344298964796785 + -37.35202596759984, + 48.93745201687548 ], [ - -20.660044150933118, - 49.69949104060679 + -36.83823167642606, + 48.35026996422031 ], [ - -20.32816655176532, - 49.05414226133656 + -36.33705218099283, + 47.76139922108006 ], [ - -20.00397557170561, - 48.40822394298013 + -35.847959870089085, + 47.170919400449165 ], [ - -19.687105879733735, - 47.76170008770642 + -35.37045192590489, + 46.57890392027435 ], [ - -18.838661463848894, - 48.066413026730146 + -34.66495633177328, + 47.03016577923109 ], [ - -17.98141943484825, - 48.363434557603284 + -33.94538822427387, + 47.474183208466584 ], [ - -17.115515286074015, - 48.65279397174959 + -33.21189218025597, + 47.910944327579855 ], [ - -16.241080851905053, - 48.93451547294737 + -32.46459454276123, + 48.340435424039875 ], [ - -15.358245598258918, - 49.20861839533168 + -31.703605322123963, + 48.76264056301848 ], [ - -14.467137818676747, - 49.47511743236965 + -30.929020032463995, + 49.17754125197614 ], [ - -13.567885742347016, - 49.73402287478261 + -30.140921470144463, + 49.58511615541522 ], [ - -12.660618559517616, + -29.339381440482327, 49.985340855707705 ], [ - -12.72137076072545, - 50.676227253291856 + -29.62024795536422, + 50.64694995589668 ], [ - -12.782724527991832, - 51.3673382439208 + -29.909722613497934, + 51.30861209534406 ], [ - -12.844694921130099, - 52.058745091098615 + -30.2082793611836, + 51.97031405322992 ], [ - -12.907302428665503, - 52.750515048575515 + -30.51642592221731, + 52.63203969531607 ], [ - -12.97057279486853, - 53.44271189047214 + -30.8347068298595, + 53.29376970791102 ], [ - -13.03453694926759, - 54.13539636906916 + -31.163706778750054, + 53.955481297462796 ], [ - -13.099231029860675, - 54.82862661172426 + -31.504054335820797, + 54.61714785190728 ], [ - -13.164696494692635, - 55.52245846635904 + -31.856426054460712, + 55.27873855921404 ], [ - -14.083466796739572, - 55.90854149237178 + -32.899031686881244, + 55.507972314069555 ], [ - -15.019334841859063, - 56.28723508906757 + -33.952108167710435, + 55.72871214539305 ], [ - -15.972426381799323, - 56.65841897896523 + -35.01544187805166, + 55.94088620769548 ], [ - -16.942859784328903, - 57.02196802160571 + -36.08880212157669, + 56.14442222754387 ], [ - -17.930743915223957, - 57.377752253633076 + -37.1719405855095, + 56.33924783527236 ], [ - -18.936175936264704, - 57.725636962580886 + -38.26459090086939, + 56.52529090481526 ], [ - -19.959239021998428, - 58.0654827959763 + -39.36646830849634, + 56.70247990012776 ], [ - -21, - 58.39714590743121 + -40.477269437061636, + 56.87074422653197 ] ] ] @@ -60892,7 +61069,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "6220000000000000" + "cellIdHex": "6260000000000000" }, "geometry": { "type": "Polygon", @@ -61066,183 +61243,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "6260000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -40.477269437061636, - 56.87074422653197 - ], - [ - -40.338314623666065, - 56.170935828881056 - ], - [ - -40.20670013832586, - 55.471088143934985 - ], - [ - -40.08191974785325, - 54.771142116567745 - ], - [ - -39.96349972717013, - 54.07103316625274 - ], - [ - -39.850994537145766, - 53.37069088251728 - ], - [ - -39.74398280459354, - 52.67003864219135 - ], - [ - -39.64206352909878, - 51.96899314209124 - ], - [ - -39.54485244440184, - 51.267463838904355 - ], - [ - -38.97477594277575, - 50.6879694707026 - ], - [ - -38.41970195401086, - 50.10639851975505 - ], - [ - -37.87898888394545, - 49.52285922712051 - ], - [ - -37.35202596759984, - 48.93745201687548 - ], - [ - -36.83823167642606, - 48.35026996422031 - ], - [ - -36.33705218099283, - 47.76139922108006 - ], - [ - -35.847959870089085, - 47.170919400449165 - ], - [ - -35.37045192590489, - 46.57890392027435 - ], - [ - -34.66495633177328, - 47.03016577923109 - ], - [ - -33.94538822427387, - 47.474183208466584 - ], - [ - -33.21189218025597, - 47.910944327579855 - ], - [ - -32.46459454276123, - 48.340435424039875 - ], - [ - -31.703605322123963, - 48.76264056301848 - ], - [ - -30.929020032463995, - 49.17754125197614 - ], - [ - -30.140921470144463, - 49.58511615541522 - ], - [ - -29.339381440482327, - 49.985340855707705 - ], - [ - -29.62024795536422, - 50.64694995589668 - ], - [ - -29.909722613497934, - 51.30861209534406 - ], - [ - -30.2082793611836, - 51.97031405322992 - ], - [ - -30.51642592221731, - 52.63203969531607 - ], - [ - -30.8347068298595, - 53.29376970791102 - ], - [ - -31.163706778750054, - 53.955481297462796 - ], - [ - -31.504054335820797, - 54.61714785190728 - ], - [ - -31.856426054460712, - 55.27873855921404 - ], - [ - -32.899031686881244, - 55.507972314069555 - ], - [ - -33.952108167710435, - 55.72871214539305 - ], - [ - -35.01544187805166, - 55.94088620769548 - ], - [ - -36.08880212157669, - 56.14442222754387 - ], - [ - -37.1719405855095, - 56.33924783527236 - ], - [ - -38.26459090086939, - 56.52529090481526 - ], - [ - -39.36646830849634, - 56.70247990012776 - ], - [ - -40.477269437061636, - 56.87074422653197 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -61784,168 +61784,168 @@ "coordinates": [ [ [ - -1.5227305629383636, - 56.87074422653197 + -6.788358812113984, + 40.90439811308671 ], [ - -2.0315580415615386, - 56.23106135195438 + -6.490039107038683, + 41.56305336607696 ], [ - -2.521970660913439, - 55.590102531853795 + -6.185751011234515, + 42.21997205699532 ], [ - -2.994990430318694, - 54.94796442830572 + -5.875036103590901, + 42.87526886648155 ], [ - -3.4515705074944663, - 54.30473360770508 + -5.557444513616474, + 43.52903798879164 ], [ - -3.8926006700806965, - 53.660487321749535 + -5.2325290038114645, + 44.18135589124764 ], [ - -4.3189123390047826, - 53.01529419366314 + -4.8998400183252215, + 44.83228351241982 ], [ - -4.731283193106606, - 52.36921481707615 + -4.558921436453261, + 45.48186801122973 ], [ - -5.130441412301366, - 51.72230227360569 + -4.209306836388237, + 46.13014415306687 ], [ - -5.006022468193692, - 51.027615834712044 + -4.314406731471877, + 46.83472904063175 ], [ - -4.884106930223652, - 50.33200986648408 + -4.42267245217306, + 47.537335442684835 ], [ - -4.764735821753561, - 49.63534030556226 + -4.533912742455868, + 48.238177502739084 ], [ -4.6479740324002705, - 48.93745201687547 + 48.93745201687546 ], [ - -4.533912742455868, - 48.238177502739084 + -4.764735821753561, + 49.63534030556225 ], [ - -4.42267245217306, - 47.537335442684835 + -4.884106930223652, + 50.33200986648407 ], [ - -4.314406731471763, - 46.83472904063176 + -5.006022468193692, + 51.027615834712044 ], [ - -4.209306836388123, - 46.130144153066865 + -5.130441412301366, + 51.722302273605685 ], [ - -3.348487528000078, - 46.29631064250516 + -6.096783549982547, + 51.53187761926233 ], [ - -2.483757929864737, - 46.45603063445289 + -7.056277526486156, + 51.33379573080659 ], [ - -1.6152082269610446, - 46.60932193274887 + -8.008758243840475, + 51.12807443480633 ], [ - -0.7429312580513852, - 46.756198837044806 + -8.954067211991287, + 50.91472948513697 ], [ - 0.1329772193801091, - 46.89667247174303 + -9.892052071055332, + 50.69377429821493 ], [ - 1.0124183101247581, - 47.03075109682092 + -10.822566051153672, + 50.465219688039035 ], [ - 1.895289804660706, - 47.15844040167466 + -11.745467368929212, + 50.22907360165587 ], [ - 2.7814860418920944, - 47.27974378301808 + -12.660618559517616, + 49.985340855707705 ], [ - 2.949391020940311, - 47.98921558777708 + -12.600458581588782, + 49.29460316147574 ], [ - 3.121869559880224, - 48.69684419664169 + -12.540887622775017, + 48.6039329348543 ], [ - 3.2994963425951482, - 49.40277407852904 + -12.481909196603965, + 47.913242749704295 ], [ - 3.482843849189294, - 50.10713576802994 + -12.423534303201905, + 47.22243799460534 ], [ - 3.6724882093221822, - 50.810046923517156 + -12.365782430940499, + 46.53141569505374 ], [ - 3.869014720989526, - 51.511613232290166 + -12.308682847688715, + 45.84006311226595 ], [ - 4.073023159819513, - 52.211929175417666 + -12.252276257198446, + 45.148256067705866 ], [ - 4.285132989958015, - 52.91107866300976 + -12.196616921395389, + 44.45585692899723 ], [ - 3.6211805245325195, - 53.42362989311591 + -11.474251479895202, + 44.041723240624385 ], [ - 2.9401703602065936, - 53.93135891202086 + -10.76428211901191, + 43.619235019447515 ], [ - 2.241795931742786, - 54.43416919789364 + -10.067077801972573, + 43.18831419682945 ], [ - 1.5257294165985513, - 54.93196003118566 + -9.383045750107044, + 42.748880612430085 ], [ - 0.7916221894049613, - 55.42462607672503 + -8.712635484650946, + 42.300852917166665 ], [ - 0.039105342094444495, - 55.91205696943879 + -8.056343178407587, + 41.84414965820928 ], [ - -0.7322097160795238, - 56.39413690370068 + -7.41471633508786, + 41.37869057186096 ], [ - -1.5227305629383636, - 56.87074422653197 + -6.788358812113984, + 40.90439811308671 ] ] ] @@ -61961,168 +61961,168 @@ "coordinates": [ [ [ - -6.788358812113984, - 40.90439811308671 + -1.5227305629383636, + 56.87074422653197 ], [ - -6.490039107038683, - 41.56305336607696 + -2.0315580415615386, + 56.23106135195438 ], [ - -6.185751011234515, - 42.21997205699532 + -2.521970660913439, + 55.590102531853795 ], [ - -5.875036103590901, - 42.87526886648155 + -2.994990430318694, + 54.94796442830572 ], [ - -5.557444513616474, - 43.52903798879164 + -3.4515705074944663, + 54.30473360770508 ], [ - -5.2325290038114645, - 44.18135589124764 + -3.8926006700806965, + 53.660487321749535 ], [ - -4.8998400183252215, - 44.83228351241982 + -4.3189123390047826, + 53.01529419366314 ], [ - -4.558921436453261, - 45.48186801122973 + -4.731283193106606, + 52.36921481707615 ], [ - -4.209306836388237, - 46.13014415306687 + -5.130441412301366, + 51.72230227360569 ], [ - -4.314406731471877, - 46.83472904063175 + -5.006022468193692, + 51.027615834712044 ], [ - -4.42267245217306, - 47.537335442684835 + -4.884106930223652, + 50.33200986648408 ], [ - -4.533912742455868, - 48.238177502739084 + -4.764735821753561, + 49.63534030556226 ], [ -4.6479740324002705, - 48.93745201687546 + 48.93745201687547 ], [ - -4.764735821753561, - 49.63534030556225 + -4.533912742455868, + 48.238177502739084 ], [ - -4.884106930223652, - 50.33200986648407 + -4.42267245217306, + 47.537335442684835 ], [ - -5.006022468193692, - 51.027615834712044 + -4.314406731471763, + 46.83472904063176 ], [ - -5.130441412301366, - 51.722302273605685 + -4.209306836388123, + 46.130144153066865 ], [ - -6.096783549982547, - 51.53187761926233 + -3.348487528000078, + 46.29631064250516 ], [ - -7.056277526486156, - 51.33379573080659 + -2.483757929864737, + 46.45603063445289 ], [ - -8.008758243840475, - 51.12807443480633 + -1.6152082269610446, + 46.60932193274887 ], [ - -8.954067211991287, - 50.91472948513697 + -0.7429312580513852, + 46.756198837044806 ], [ - -9.892052071055332, - 50.69377429821493 + 0.1329772193801091, + 46.89667247174303 ], [ - -10.822566051153672, - 50.465219688039035 + 1.0124183101247581, + 47.03075109682092 ], [ - -11.745467368929212, - 50.22907360165587 + 1.895289804660706, + 47.15844040167466 ], [ - -12.660618559517616, - 49.985340855707705 + 2.7814860418920944, + 47.27974378301808 ], [ - -12.600458581588782, - 49.29460316147574 + 2.949391020940311, + 47.98921558777708 ], [ - -12.540887622775017, - 48.6039329348543 + 3.121869559880224, + 48.69684419664169 ], [ - -12.481909196603965, - 47.913242749704295 + 3.2994963425951482, + 49.40277407852904 ], [ - -12.423534303201905, - 47.22243799460534 + 3.482843849189294, + 50.10713576802994 ], [ - -12.365782430940499, - 46.53141569505374 + 3.6724882093221822, + 50.810046923517156 ], [ - -12.308682847688715, - 45.84006311226595 + 3.869014720989526, + 51.511613232290166 ], [ - -12.252276257198446, - 45.148256067705866 + 4.073023159819513, + 52.211929175417666 ], [ - -12.196616921395389, - 44.45585692899723 + 4.285132989958015, + 52.91107866300976 ], [ - -11.474251479895202, - 44.041723240624385 + 3.6211805245325195, + 53.42362989311591 ], [ - -10.76428211901191, - 43.619235019447515 + 2.9401703602065936, + 53.93135891202086 ], [ - -10.067077801972573, - 43.18831419682945 + 2.241795931742786, + 54.43416919789364 ], [ - -9.383045750107044, - 42.748880612430085 + 1.5257294165985513, + 54.93196003118566 ], [ - -8.712635484650946, - 42.300852917166665 + 0.7916221894049613, + 55.42462607672503 ], [ - -8.056343178407587, - 41.84414965820928 + 0.039105342094444495, + 55.91205696943879 ], [ - -7.41471633508786, - 41.37869057186096 + -0.7322097160795238, + 56.39413690370068 ], [ - -6.788358812113984, - 40.90439811308671 + -1.5227305629383636, + 56.87074422653197 ] ] ] @@ -62492,168 +62492,168 @@ "coordinates": [ [ [ - -2.368780341360207, - 19.765749214107938 + 15, + 21.271009572855146 ], [ - -1.6300455748860259, - 19.762129191464098 + 14.255305852092988, + 21.360272330398768 ], [ - -0.8922817109636298, - 19.7552974947138 + 13.51084856274042, + 21.445532390258833 ], [ - -0.15531738690140173, - 19.745165949584045 + 12.7666283025344, + 21.526794472204532 ], [ - 0.5809926882668606, - 19.731660977058514 + 12.022645296403653, + 21.604063616780707 ], [ - 1.3167722581948738, - 19.714720627079494 + 11.278899698378268, + 21.677345210969435 ], [ - 2.0521271535865253, - 19.694292295737025 + 10.535391453870602, + 21.746645016668626 ], [ - 2.7871482345350387, - 19.67033095280412 + 9.79212014727932, + 21.811969202676774 ], [ - 3.5219137903668525, - 19.642797754009642 + 9.04908483227996, + 21.873324381037957 ], [ - 4.2088572275770275, - 19.93309033402712 + 8.3525428785631, + 21.606975189861075 ], [ - 4.896384505690321, - 20.220422827416197 + 7.658041283881062, + 21.336812405433893 ], [ - 5.584802464672634, - 20.504614891202102 + 6.965391884512428, + 21.062948590774766 ], [ 6.274388052260633, - 20.785505293592585 + 20.785505293592575 ], [ - 6.965391884512428, - 21.062948590774777 + 5.584802464672634, + 20.504614891202102 ], [ - 7.658041283881062, - 21.336812405433893 + 4.896384505690321, + 20.220422827416197 ], [ - 8.3525428785631, - 21.606975189861085 + 4.2088572275770275, + 19.93309033402711 ], [ - 9.04908483227996, - 21.873324381037957 + 3.5219137903668525, + 19.64279775400963 ], [ - 8.67825645095104, - 22.404212941506113 + 3.890837865674712, + 19.12829927868549 ], [ - 8.304611368614587, - 22.935088856087585 + 4.257252289105054, + 18.61385062882119 ], [ - 7.92796851634148, - 23.46592676163621 + 4.621320396482361, + 18.09945834730844 ], [ - 7.548139476425831, - 23.99669769600481 + 4.983198737218686, + 17.585126846827578 ], [ - 7.164928033416572, - 24.527368719900657 + 5.34303755054475, + 17.07085868293247 ], [ - 6.778129702995102, - 25.057902499560093 + 5.700981209568681, + 16.556654794863686 ], [ - 6.387531238356473, - 25.588256845971678 + 6.057168635512767, + 16.042514718075356 ], [ - 5.992910113977132, - 26.118384205901382 + 6.411733684345222, + 15.528436771949746 ], [ - 5.247784746682328, - 25.94390055026972 + 7.13725976012438, + 15.696541008965927 ], [ - 4.5052199867403715, - 25.764953048081967 + 7.862487391151149, + 15.861719396959511 ], [ - 3.765147782400277, - 25.581599146912197 + 8.587645078532887, + 16.023807704898434 ], [ - 3.0274891615623574, - 25.393897970011974 + 9.312938674958104, + 16.182658449084304 ], [ - 2.2921527525388683, - 25.201910807145765 + 10.03855394295715, + 16.338138352238424 ], [ - 1.5590329996950913, - 25.005701750120696 + 10.764658767529909, + 16.49012622495634 ], [ - 0.8280079988442139, - 24.805338518102328 + 11.491405075596958, + 16.63851119321537 ], [ - 0.09893685580505007, - 24.600893533663303 + 12.218930506086167, + 16.783191210521874 ], [ - -0.20047148691821803, - 23.994288225284745 + 12.562017881462907, + 17.346562268742037 ], [ - -0.5016125012953125, - 23.387709506519506 + 12.90599278036268, + 17.9094901959589 ], [ - -0.8048888030897388, - 22.781415392146613 + 13.251064354775508, + 18.47184682736358 ], [ - -1.110721627697103, - 22.175696381329857 + 13.597438779388312, + 19.03351061791133 ], [ - -1.4195523435541872, - 21.57087936278442 + 13.945319535514841, + 19.59436611785667 ], [ - -1.7318440063115759, - 20.967331944966666 + 14.29490768909568, + 20.154303476642767 ], [ - -2.0480829417986115, - 20.36546725037431 + 14.646402162509503, + 20.71321797346121 ], [ - -2.368780341360207, - 19.765749214107938 + 15, + 21.271009572855146 ] ] ] @@ -62669,168 +62669,168 @@ "coordinates": [ [ [ - 15, - 21.271009572855146 + -2.368780341360207, + 19.765749214107938 ], [ - 14.255305852092988, - 21.360272330398768 + -1.6300455748860259, + 19.762129191464098 ], [ - 13.51084856274042, - 21.445532390258833 + -0.8922817109636298, + 19.7552974947138 ], [ - 12.7666283025344, - 21.526794472204532 + -0.15531738690140173, + 19.745165949584045 ], [ - 12.022645296403653, - 21.604063616780707 + 0.5809926882668606, + 19.731660977058514 ], [ - 11.278899698378268, - 21.677345210969435 + 1.3167722581948738, + 19.714720627079494 ], [ - 10.535391453870602, - 21.746645016668626 + 2.0521271535865253, + 19.694292295737025 ], [ - 9.79212014727932, - 21.811969202676774 + 2.7871482345350387, + 19.67033095280412 ], [ - 9.04908483227996, - 21.873324381037957 + 3.5219137903668525, + 19.642797754009642 ], [ - 8.3525428785631, - 21.606975189861075 + 4.2088572275770275, + 19.93309033402712 ], [ - 7.658041283881062, - 21.336812405433893 + 4.896384505690321, + 20.220422827416197 ], [ - 6.965391884512428, - 21.062948590774766 + 5.584802464672634, + 20.504614891202102 ], [ 6.274388052260633, - 20.785505293592575 + 20.785505293592585 ], [ - 5.584802464672634, - 20.504614891202102 + 6.965391884512428, + 21.062948590774777 ], [ - 4.896384505690321, - 20.220422827416197 + 7.658041283881062, + 21.336812405433893 ], [ - 4.2088572275770275, - 19.93309033402711 + 8.3525428785631, + 21.606975189861085 ], [ - 3.5219137903668525, - 19.64279775400963 + 9.04908483227996, + 21.873324381037957 ], [ - 3.890837865674712, - 19.12829927868549 + 8.67825645095104, + 22.404212941506113 ], [ - 4.257252289105054, - 18.61385062882119 + 8.304611368614587, + 22.935088856087585 ], [ - 4.621320396482361, - 18.09945834730844 + 7.92796851634148, + 23.46592676163621 ], [ - 4.983198737218686, - 17.585126846827578 + 7.548139476425831, + 23.99669769600481 ], [ - 5.34303755054475, - 17.07085868293247 + 7.164928033416572, + 24.527368719900657 ], [ - 5.700981209568681, - 16.556654794863686 + 6.778129702995102, + 25.057902499560093 ], [ - 6.057168635512767, - 16.042514718075356 + 6.387531238356473, + 25.588256845971678 ], [ - 6.411733684345222, - 15.528436771949746 + 5.992910113977132, + 26.118384205901382 ], [ - 7.13725976012438, - 15.696541008965927 + 5.247784746682328, + 25.94390055026972 ], [ - 7.862487391151149, - 15.861719396959511 + 4.5052199867403715, + 25.764953048081967 ], [ - 8.587645078532887, - 16.023807704898434 + 3.765147782400277, + 25.581599146912197 ], [ - 9.312938674958104, - 16.182658449084304 + 3.0274891615623574, + 25.393897970011974 ], [ - 10.03855394295715, - 16.338138352238424 + 2.2921527525388683, + 25.201910807145765 ], [ - 10.764658767529909, - 16.49012622495634 + 1.5590329996950913, + 25.005701750120696 ], [ - 11.491405075596958, - 16.63851119321537 + 0.8280079988442139, + 24.805338518102328 ], [ - 12.218930506086167, - 16.783191210521874 + 0.09893685580505007, + 24.600893533663303 ], [ - 12.562017881462907, - 17.346562268742037 + -0.20047148691821803, + 23.994288225284745 ], [ - 12.90599278036268, - 17.9094901959589 + -0.5016125012953125, + 23.387709506519506 ], [ - 13.251064354775508, - 18.47184682736358 + -0.8048888030897388, + 22.781415392146613 ], [ - 13.597438779388312, - 19.03351061791133 + -1.110721627697103, + 22.175696381329857 ], [ - 13.945319535514841, - 19.59436611785667 + -1.4195523435541872, + 21.57087936278442 ], [ - 14.29490768909568, - 20.154303476642767 + -1.7318440063115759, + 20.967331944966666 ], [ - 14.646402162509503, - 20.71321797346121 + -2.0480829417986115, + 20.36546725037431 ], [ - 15, - 21.271009572855146 + -2.368780341360207, + 19.765749214107938 ] ] ] @@ -63372,183 +63372,6 @@ "properties": { "cellIdHex": "51a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15, - 42.378301500754155 - ], - [ - 14.060376049993465, - 42.498922439869055 - ], - [ - 13.117966306877179, - 42.613096805573505 - ], - [ - 12.172809356685093, - 42.72075593429318 - ], - [ - 11.224943087599854, - 42.82182667002338 - ], - [ - 10.27440416778245, - 42.91623066511017 - ], - [ - 9.321227474610964, - 43.00388355925541 - ], - [ - 8.365445471708085, - 43.08469401422355 - ], - [ - 7.407087530022636, - 43.158562576936596 - ], - [ - 6.541593485794692, - 42.90541610926601 - ], - [ - 5.684301267262299, - 42.64639614357896 - ], - [ - 4.835186716195949, - 42.381623975517805 - ], - [ - 3.994217844960758, - 42.11121902793485 - ], - [ - 3.1613552034913255, - 41.83529873987631 - ], - [ - 2.336552237451315, - 41.55397845747508 - ], - [ - 1.5197556348592798, - 41.267371325230066 - ], - [ - 0.7109056583791471, - 40.97558817581692 - ], - [ - 1.2725952418265933, - 40.469135977389314 - ], - [ - 1.822157282488547, - 39.95863781328698 - ], - [ - 2.360109689328283, - 39.444460141040246 - ], - [ - 2.886956854121536, - 38.92693989100173 - ], - [ - 3.40318867147073, - 38.4063867074794 - ], - [ - 3.909279856108469, - 37.8830850382515 - ], - [ - 4.405689508996829, - 37.35729607875372 - ], - [ - 4.892860890148313, - 36.82925957785007 - ], - [ - 5.725021532806409, - 36.992666296933734 - ], - [ - 6.561722813847496, - 37.150588175283566 - ], - [ - 7.402924186086011, - 37.30295261105689 - ], - [ - 8.248580682709758, - 37.4496870148169 - ], - [ - 9.098642901808034, - 37.5907188797037 - ], - [ - 9.953056998139346, - 37.72597585158082 - ], - [ - 10.811764683002366, - 37.855385799220855 - ], - [ - 11.674703232984143, - 37.97887688454019 - ], - [ - 12.06557461462512, - 38.53708182019422 - ], - [ - 12.462942668378787, - 39.09302434364566 - ], - [ - 12.867092829252783, - 39.6466555558433 - ], - [ - 13.278316401219172, - 40.19792492578672 - ], - [ - 13.696910982976533, - 40.74678002529752 - ], - [ - 14.123180888995421, - 41.2931662680738 - ], - [ - 14.557437565398686, - 41.83702665162221 - ], - [ - 15, - 42.378301500754155 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "51e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -63724,7 +63547,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "5220000000000000" + "cellIdHex": "51e0000000000000" }, "geometry": { "type": "Polygon", @@ -63732,167 +63555,167 @@ [ [ 15, - 31.832359041336073 + 42.378301500754155 ], [ - 14.189664627719594, - 31.938398148952594 + 14.060376049993465, + 42.498922439869055 ], [ - 13.378851639829918, - 32.03966944539289 + 13.117966306877179, + 42.613096805573505 ], [ - 12.567591332345955, - 32.13616896353093 + 12.172809356685093, + 42.72075593429318 ], [ - 11.755914712428307, - 32.22789297397679 + 11.224943087599854, + 42.82182667002338 ], [ - 10.943853362658047, - 32.314837967607545 + 10.27440416778245, + 42.91623066511017 ], [ - 10.13143929381124, - 32.397000631546376 + 9.321227474610964, + 43.00388355925541 ], [ - 9.318704784498777, - 32.47437781747659 + 8.365445471708085, + 43.08469401422355 ], [ - 8.50568220570699, - 32.546966500935476 + 7.407087530022636, + 43.158562576936596 ], [ - 7.757435998726919, - 32.28795965427348 + 6.541593485794692, + 42.90541610926601 ], [ - 7.014364122255415, - 32.02410234253843 + 5.684301267262299, + 42.64639614357896 ], [ - 6.276409180720975, - 31.75547039557303 + 4.835186716195949, + 42.381623975517805 ], [ - 5.543507423988558, - 31.482138275789097 + 3.994217844960758, + 42.11121902793485 ], [ - 4.815588429047239, - 31.204179065899996 + 3.1613552034913255, + 41.83529873987631 ], [ - 4.0925747002518165, - 30.921664470089418 + 2.336552237451315, + 41.55397845747508 ], [ - 3.374381171154255, - 30.634664832587035 + 1.5197556348592798, + 41.267371325230066 ], [ - 2.660914586955414, - 30.34324917904292 + 0.7109056583791471, + 40.97558817581692 ], [ - 3.0970285493011716, - 29.817509611348868 + 1.2725952418265933, + 40.469135977389314 ], [ - 3.526936769852, - 29.290887764931338 + 1.822157282488547, + 39.95863781328698 ], [ - 3.95095702178628, - 28.763500256156945 + 2.360109689328283, + 39.444460141040246 ], [ - 4.369392983225794, - 28.235451757095355 + 2.886956854121536, + 38.92693989100173 ], [ - 4.782534881957417, - 27.706836137865213 + 3.40318867147073, + 38.4063867074794 ], [ - 5.190660136368933, - 27.177737498244387 + 3.909279856108469, + 37.8830850382515 ], [ - 5.594033986941213, - 26.648231099444626 + 4.405689508996829, + 37.35729607875372 ], [ - 5.992910113977132, - 26.118384205901382 + 4.892860890148313, + 36.82925957785007 ], [ - 6.74065445300505, - 26.288347863309184 + 5.725021532806409, + 36.992666296933734 ], [ - 7.491067473933867, - 26.45373637275573 + 6.561722813847496, + 37.150588175283566 ], [ - 8.244191102942409, - 26.614495359129275 + 7.402924186086011, + 37.30295261105689 ], [ - 9.000060218994463, - 26.770571046739438 + 8.248580682709758, + 37.4496870148169 ], [ - 9.758703280875807, - 26.92191012503988 + 9.098642901808034, + 37.5907188797037 ], [ - 10.52014286367637, - 27.06845964665534 + 9.953056998139346, + 37.72597585158082 ], [ - 11.28439612032389, - 27.210166951020625 + 10.811764683002366, + 37.855385799220855 ], [ - 12.05147518093247, - 27.34697960840513 + 11.674703232984143, + 37.97887688454019 ], [ - 12.40677323955856, - 27.913896058195945 + 12.06557461462512, + 38.53708182019422 ], [ - 12.765420295503418, - 28.479164902383825 + 12.462942668378787, + 39.09302434364566 ], [ - 13.127636579642967, - 29.04271541484363 + 12.867092829252783, + 39.6466555558433 ], [ - 13.493642575693116, - 29.60447918025689 + 13.278316401219172, + 40.19792492578672 ], [ - 13.863659342114602, - 30.16438972187324 + 13.696910982976533, + 40.74678002529752 ], [ - 14.237908825760428, - 30.722382149202467 + 14.123180888995421, + 41.2931662680738 ], [ - 14.616614167499165, - 31.278392823788284 + 14.557437565398686, + 41.83702665162221 ], [ 15, - 31.832359041336073 + 42.378301500754155 ] ] ] @@ -63901,7 +63724,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "5260000000000000" + "cellIdHex": "5220000000000000" }, "geometry": { "type": "Polygon", @@ -64075,6 +63898,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "5260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15, + 31.832359041336073 + ], + [ + 14.189664627719594, + 31.938398148952594 + ], + [ + 13.378851639829918, + 32.03966944539289 + ], + [ + 12.567591332345955, + 32.13616896353093 + ], + [ + 11.755914712428307, + 32.22789297397679 + ], + [ + 10.943853362658047, + 32.314837967607545 + ], + [ + 10.13143929381124, + 32.397000631546376 + ], + [ + 9.318704784498777, + 32.47437781747659 + ], + [ + 8.50568220570699, + 32.546966500935476 + ], + [ + 7.757435998726919, + 32.28795965427348 + ], + [ + 7.014364122255415, + 32.02410234253843 + ], + [ + 6.276409180720975, + 31.75547039557303 + ], + [ + 5.543507423988558, + 31.482138275789097 + ], + [ + 4.815588429047239, + 31.204179065899996 + ], + [ + 4.0925747002518165, + 30.921664470089418 + ], + [ + 3.374381171154255, + 30.634664832587035 + ], + [ + 2.660914586955414, + 30.34324917904292 + ], + [ + 3.0970285493011716, + 29.817509611348868 + ], + [ + 3.526936769852, + 29.290887764931338 + ], + [ + 3.95095702178628, + 28.763500256156945 + ], + [ + 4.369392983225794, + 28.235451757095355 + ], + [ + 4.782534881957417, + 27.706836137865213 + ], + [ + 5.190660136368933, + 27.177737498244387 + ], + [ + 5.594033986941213, + 26.648231099444626 + ], + [ + 5.992910113977132, + 26.118384205901382 + ], + [ + 6.74065445300505, + 26.288347863309184 + ], + [ + 7.491067473933867, + 26.45373637275573 + ], + [ + 8.244191102942409, + 26.614495359129275 + ], + [ + 9.000060218994463, + 26.770571046739438 + ], + [ + 9.758703280875807, + 26.92191012503988 + ], + [ + 10.52014286367637, + 27.06845964665534 + ], + [ + 11.28439612032389, + 27.210166951020625 + ], + [ + 12.05147518093247, + 27.34697960840513 + ], + [ + 12.40677323955856, + 27.913896058195945 + ], + [ + 12.765420295503418, + 28.479164902383825 + ], + [ + 13.127636579642967, + 29.04271541484363 + ], + [ + 13.493642575693116, + 29.60447918025689 + ], + [ + 13.863659342114602, + 30.16438972187324 + ], + [ + 14.237908825760428, + 30.722382149202467 + ], + [ + 14.616614167499165, + 31.278392823788284 + ], + [ + 15, + 31.832359041336073 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -66204,183 +66204,6 @@ "properties": { "cellIdHex": "55a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -11.579142600983687, - 13.628636133967635 - ], - [ - -11.303792733914179, - 13.002746034453729 - ], - [ - -11.029413812224902, - 12.376251432117138 - ], - [ - -10.755914929701703, - 11.749130829126505 - ], - [ - -10.48320775655202, - 11.121364333331133 - ], - [ - -10.211206114278298, - 10.492933345721061 - ], - [ - -9.939825623192633, - 9.863820310405211 - ], - [ - -9.668983405258246, - 9.234008513297548 - ], - [ - -9.398597829470532, - 8.603481919068038 - ], - [ - -8.861958327791399, - 8.175607546454666 - ], - [ - -8.326715858547459, - 7.7464366681473695 - ], - [ - -7.792771546778567, - 7.315947442795506 - ], - [ - -7.260028375199568, - 6.88412251681717 - ], - [ - -6.728390926222346, - 6.450948356044848 - ], - [ - -6.197765147564269, - 6.016414688115981 - ], - [ - -5.668058138882884, - 5.580514035405847 - ], - [ - -5.1391779570180915, - 5.143241322392131 - ], - [ - -4.833535597657146, - 5.717321523379223 - ], - [ - -4.5271546840729116, - 6.292255639087746 - ], - [ - -4.220075237009496, - 6.8680986425411 - ], - [ - -3.912344998552726, - 7.444906555547451 - ], - [ - -3.6040201585424256, - 8.022736425852864 - ], - [ - -3.2951661535959147, - 8.601646293856072 - ], - [ - -2.9858585458724747, - 9.181695147163907 - ], - [ - -2.6761839894012383, - 9.762942861013203 - ], - [ - -3.1236846825605653, - 10.289904421887828 - ], - [ - -3.572002881786375, - 10.815697024934158 - ], - [ - -4.021233214006202, - 11.340310481399495 - ], - [ - -4.471470657498685, - 11.863734315589328 - ], - [ - -4.922810636827535, - 12.385957764485871 - ], - [ - -5.375349123654246, - 12.906969781353336 - ], - [ - -5.8291827451427025, - 13.426759044313485 - ], - [ - -6.284408902155178, - 13.94531397116376 - ], - [ - -6.940478853483, - 13.90731505951831 - ], - [ - -7.598066476562963, - 13.868501904231401 - ], - [ - -8.257238887502126, - 13.829033834593607 - ], - [ - -8.918062667059985, - 13.78908566859276 - ], - [ - -9.580603193439856, - 13.748849484199871 - ], - [ - -10.244923826789318, - 13.708536612122582 - ], - [ - -10.911084916988898, - 13.668379879030143 - ], - [ - -11.579142600983687, - 13.628636133967635 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "55e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -66556,175 +66379,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "5620000000000000" + "cellIdHex": "55e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -2.368780341360207, - 19.765749214107938 + -11.579142600983687, + 13.628636133967635 ], [ - -2.0850524936611237, - 19.098444308476555 + -11.303792733914179, + 13.002746034453729 ], [ - -1.8060977267988392, - 18.432713723067828 + -11.029413812224902, + 12.376251432117138 ], [ - -1.5312370264797437, - 17.76840441639068 + -10.755914929701703, + 11.749130829126505 ], [ - -1.2598905831137017, - 17.10537278396114 + -10.48320775655202, + 11.121364333331133 ], [ - -0.9915591764120109, - 16.44348482666795 + -10.211206114278298, + 10.492933345721061 ], [ - -0.7258094874771359, - 15.782615938070572 + -9.939825623192633, + 9.863820310405211 ], [ - -0.46226242057423406, - 15.122650471068695 + -9.668983405258246, + 9.234008513297548 ], [ - -0.20058374954282954, - 14.463481187019134 + -9.398597829470532, + 8.603481919068038 ], [ - 0.32273148954482167, - 14.01415612173393 + -8.861958327791399, + 8.175607546454666 ], [ - 0.8447781939170227, - 13.563371433297387 + -8.326715858547459, + 7.7464366681473695 ], [ - 1.3656456820618814, - 13.111144041777454 + -7.792771546778567, + 7.315947442795506 ], [ - 1.8854227782660473, - 12.657490651991068 + -7.260028375199568, + 6.88412251681717 ], [ - 2.4041979230792094, - 12.202427742880483 + -6.728390926222346, + 6.450948356044848 ], [ - 2.922059273279274, - 11.74597156110873 + -6.197765147564269, + 6.016414688115981 ], [ - 3.439094793432787, - 11.28813811819097 + -5.668058138882884, + 5.580514035405847 ], [ - 3.9553923407429465, - 10.82894319060776 + -5.1391779570180915, + 5.143241322392131 ], [ - 4.26417952841075, - 11.412488048170625 + -4.833535597657146, + 5.717321523379223 ], [ - 4.57281380622544, - 11.997055371957826 + -4.5271546840729116, + 6.292255639087746 ], [ - 4.881143256306814, - 12.582690091959554 + -4.220075237009496, + 6.8680986425411 ], [ - 5.18900036232958, - 13.169437097609045 + -3.912344998552726, + 7.444906555547451 ], [ - 5.4962007172046015, - 13.75734111316272 + -3.6040201585424256, + 8.022736425852864 ], [ - 5.802541625161211, - 14.346446552647867 + -3.2951661535959147, + 8.601646293856072 ], [ - 6.1078005904324755, - 14.93679735154153 + -2.9858585458724747, + 9.181695147163907 ], [ - 6.411733684345222, - 15.528436771949746 + -2.6761839894012383, + 9.762942861013203 ], [ - 6.057168635512767, - 16.04251471807537 + -3.1236846825605653, + 10.289904421887828 ], [ - 5.700981209568681, - 16.556654794863686 + -3.572002881786375, + 10.815697024934158 ], [ - 5.34303755054475, - 17.07085868293247 + -4.021233214006202, + 11.340310481399495 ], [ - 4.983198737218686, - 17.585126846827578 + -4.471470657498685, + 11.863734315589328 ], [ - 4.621320396482361, - 18.09945834730844 + -4.922810636827535, + 12.385957764485871 ], [ - 4.257252289105054, - 18.613850628821204 + -5.375349123654246, + 12.906969781353336 ], [ - 3.890837865674712, - 19.12829927868549 + -5.8291827451427025, + 13.426759044313485 ], [ - 3.5219137903668525, - 19.642797754009642 + -6.284408902155178, + 13.94531397116376 ], [ - 2.7871482345350387, - 19.67033095280412 + -6.940478853483, + 13.90731505951831 ], [ - 2.0521271535865253, - 19.694292295737025 + -7.598066476562963, + 13.868501904231401 ], [ - 1.3167722581948738, - 19.714720627079494 + -8.257238887502126, + 13.829033834593607 ], [ - 0.5809926882668606, - 19.731660977058514 + -8.918062667059985, + 13.78908566859276 ], [ - -0.15531738690140173, - 19.745165949584045 + -9.580603193439856, + 13.748849484199871 ], [ - -0.8922817109636298, - 19.7552974947138 + -10.244923826789318, + 13.708536612122582 ], [ - -1.6300455748860259, - 19.762129191464098 + -10.911084916988898, + 13.668379879030143 ], [ - -2.368780341360207, - 19.765749214107938 + -11.579142600983687, + 13.628636133967635 ] ] ] @@ -66733,7 +66556,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "5660000000000000" + "cellIdHex": "5620000000000000" }, "geometry": { "type": "Polygon", @@ -66907,6 +66730,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "5660000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.368780341360207, + 19.765749214107938 + ], + [ + -2.0850524936611237, + 19.098444308476555 + ], + [ + -1.8060977267988392, + 18.432713723067828 + ], + [ + -1.5312370264797437, + 17.76840441639068 + ], + [ + -1.2598905831137017, + 17.10537278396114 + ], + [ + -0.9915591764120109, + 16.44348482666795 + ], + [ + -0.7258094874771359, + 15.782615938070572 + ], + [ + -0.46226242057423406, + 15.122650471068695 + ], + [ + -0.20058374954282954, + 14.463481187019134 + ], + [ + 0.32273148954482167, + 14.01415612173393 + ], + [ + 0.8447781939170227, + 13.563371433297387 + ], + [ + 1.3656456820618814, + 13.111144041777454 + ], + [ + 1.8854227782660473, + 12.657490651991068 + ], + [ + 2.4041979230792094, + 12.202427742880483 + ], + [ + 2.922059273279274, + 11.74597156110873 + ], + [ + 3.439094793432787, + 11.28813811819097 + ], + [ + 3.9553923407429465, + 10.82894319060776 + ], + [ + 4.26417952841075, + 11.412488048170625 + ], + [ + 4.57281380622544, + 11.997055371957826 + ], + [ + 4.881143256306814, + 12.582690091959554 + ], + [ + 5.18900036232958, + 13.169437097609045 + ], + [ + 5.4962007172046015, + 13.75734111316272 + ], + [ + 5.802541625161211, + 14.346446552647867 + ], + [ + 6.1078005904324755, + 14.93679735154153 + ], + [ + 6.411733684345222, + 15.528436771949746 + ], + [ + 6.057168635512767, + 16.04251471807537 + ], + [ + 5.700981209568681, + 16.556654794863686 + ], + [ + 5.34303755054475, + 17.07085868293247 + ], + [ + 4.983198737218686, + 17.585126846827578 + ], + [ + 4.621320396482361, + 18.09945834730844 + ], + [ + 4.257252289105054, + 18.613850628821204 + ], + [ + 3.890837865674712, + 19.12829927868549 + ], + [ + 3.5219137903668525, + 19.642797754009642 + ], + [ + 2.7871482345350387, + 19.67033095280412 + ], + [ + 2.0521271535865253, + 19.694292295737025 + ], + [ + 1.3167722581948738, + 19.714720627079494 + ], + [ + 0.5809926882668606, + 19.731660977058514 + ], + [ + -0.15531738690140173, + 19.745165949584045 + ], + [ + -0.8922817109636298, + 19.7552974947138 + ], + [ + -1.6300455748860259, + 19.762129191464098 + ], + [ + -2.368780341360207, + 19.765749214107938 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -67448,168 +67448,168 @@ "coordinates": [ [ [ - -11.98784603778904, - -5.539553971242925 + -21, + 8.162533854955054 ], [ - -12.271790092588049, - -4.896562751656497 + -20.701148357510192, + 7.530390021971772 ], [ - -12.555273215749708, - -4.254708312632621 + -20.403704729178344, + 6.898735635532024 ], [ - -12.838380986438438, - -3.613970768281407 + -20.107597799501036, + 6.267375132306927 ], [ - -13.121198047302414, - -2.9743298550319537 + -19.812752726524195, + 5.6361409557988384 ], [ - -13.403808225246394, - -2.335764856516269 + -19.51909227703186, + 5.00488848560826 ], [ - -13.68629465017466, - -1.6982545161551839 + -19.22653762288371, + 4.373492007958605 ], [ - -13.968739872117567, - -1.0617769353137823 + -18.935008895401438, + 3.741841488224458 ], [ - -14.251225977132435, - -0.42630945444010043 + -18.644425565622782, + 3.1098399666444574 ], [ - -14.796181368644284, - 0.01455688627787848 + -18.090540398319945, + 2.665248288661079 ], [ - -15.342171110593085, - 0.45540681876735906 + -17.53815089678824, + 2.2218651838138443 ], [ - -15.889281134307566, - 0.8963863812880525 + -16.987192744831077, + 1.7794162308254944 ], [ -16.437594908589517, 1.337660587380447 ], [ - -16.987192744831077, - 1.7794162308254944 + -15.889281134307566, + 0.8963863812880525 ], [ - -17.53815089678824, - 2.2218651838138315 + -15.342171110593085, + 0.45540681876735906 ], [ - -18.090540398319945, - 2.6652482886610662 + -14.796181368644284, + 0.01455688627787848 ], [ - -18.644425565622782, - 3.1098399666444574 + -14.251225977132435, + -0.42630945444010043 ], [ - -18.941610179720897, - 2.5633608674609674 + -13.954205449619508, + 0.1329227532097501 ], [ - -19.2379323223023, - 2.0173791374190486 + -13.656409060579335, + 0.6925672169304937 ], [ - -19.53342987355836, - 1.4718332931284461 + -13.357812350390532, + 1.2526762337456798 ], [ - -19.828142662510345, - 0.9266645541039044 + -13.058393616246349, + 1.8133037611419598 ], [ - -20.1221122562481, - 0.38181668468205077 + -12.758134178877526, + 2.374505485660123 ], [ - -20.41538177941652, - -0.16276415527488097 + -12.45701868276069, + 2.9363388920133824 ], [ - -20.70799576025479, - -0.7071295512160436 + -12.155035433621833, + 3.4988633322726352 ], [ - -21, - -1.2513289666321188 + -11.852176777520299, + 4.062140094552287 ], [ - -20.522449987201185, - -1.7910707032452415 + -12.317467917906015, + 4.578278183193922 ], [ - -20.0457609965282, - -2.3296810820991483 + -12.78386872506735, + 5.093527371445836 ], [ - -19.569870532470986, - -2.8673976099778757 + -13.251486603619583, + 5.6079385184327935 ], [ - -19.0947091741632, - -3.404431603436154 + -13.720430379369873, + 6.121570777392062 ], [ - -18.620201747684746, - -3.9409715409093757 + -14.190810442245265, + 6.634493101618335 ], [ - -18.14626825635503, - -4.477185926411791 + -14.662738867305961, + 7.146786076626593 ], [ - -17.672824617108972, - -5.013225743753909 + -15.136329499021485, + 7.658544161959716 ], [ - -17.19978324083445, - -5.549226566225735 + -15.611697976767573, + 8.169878451075492 ], [ - -16.546609834271067, - -5.5532112519364265 + -16.28187834759251, + 8.155493059284444 ], [ - -15.893859927302628, - -5.5553932800526935 + -16.95322879198409, + 8.144050026715396 ], [ - -15.241567910867047, - -5.5559410707491566 + -17.62567169742158, + 8.135956991156363 ], [ - -14.589763120579732, - -5.555015524844163 + -18.299109634857018, + 8.131655257677629 ], [ - -13.938470206592683, - -5.552770373117146 + -18.973422517359268, + 8.131622689803509 ], [ - -13.287709479101636, - -5.549352511082723 + -19.648464397900852, + 8.136376818820137 ], [ - -12.637497230831968, - -5.544902319538802 + -20.32405986601009, + 8.146478176724932 ], [ - -11.98784603778904, - -5.539553971242925 + -21, + 8.162533854955054 ] ] ] @@ -67625,168 +67625,168 @@ "coordinates": [ [ [ - -21, - 8.162533854955054 + -11.98784603778904, + -5.539553971242925 ], [ - -20.701148357510192, - 7.530390021971772 + -12.271790092588049, + -4.896562751656497 ], [ - -20.403704729178344, - 6.898735635532024 + -12.555273215749708, + -4.254708312632621 ], [ - -20.107597799501036, - 6.267375132306927 + -12.838380986438438, + -3.613970768281407 ], [ - -19.812752726524195, - 5.6361409557988384 + -13.121198047302414, + -2.9743298550319537 ], [ - -19.51909227703186, - 5.00488848560826 + -13.403808225246394, + -2.335764856516269 ], [ - -19.22653762288371, - 4.373492007958605 + -13.68629465017466, + -1.6982545161551839 ], [ - -18.935008895401438, - 3.741841488224458 + -13.968739872117567, + -1.0617769353137823 ], [ - -18.644425565622782, - 3.1098399666444574 + -14.251225977132435, + -0.42630945444010043 ], [ - -18.090540398319945, - 2.665248288661079 + -14.796181368644284, + 0.01455688627787848 ], [ - -17.53815089678824, - 2.2218651838138443 + -15.342171110593085, + 0.45540681876735906 ], [ - -16.987192744831077, - 1.7794162308254944 + -15.889281134307566, + 0.8963863812880525 ], [ -16.437594908589517, 1.337660587380447 ], [ - -15.889281134307566, - 0.8963863812880525 + -16.987192744831077, + 1.7794162308254944 ], [ - -15.342171110593085, - 0.45540681876735906 + -17.53815089678824, + 2.2218651838138315 ], [ - -14.796181368644284, - 0.01455688627787848 + -18.090540398319945, + 2.6652482886610662 ], [ - -14.251225977132435, - -0.42630945444010043 + -18.644425565622782, + 3.1098399666444574 ], [ - -13.954205449619508, - 0.1329227532097501 + -18.941610179720897, + 2.5633608674609674 ], [ - -13.656409060579335, - 0.6925672169304937 + -19.2379323223023, + 2.0173791374190486 ], [ - -13.357812350390532, - 1.2526762337456798 + -19.53342987355836, + 1.4718332931284461 ], [ - -13.058393616246349, - 1.8133037611419598 + -19.828142662510345, + 0.9266645541039044 ], [ - -12.758134178877526, - 2.374505485660123 + -20.1221122562481, + 0.38181668468205077 ], [ - -12.45701868276069, - 2.9363388920133824 + -20.41538177941652, + -0.16276415527488097 ], [ - -12.155035433621833, - 3.4988633322726352 + -20.70799576025479, + -0.7071295512160436 ], [ - -11.852176777520299, - 4.062140094552287 + -21, + -1.2513289666321188 ], [ - -12.317467917906015, - 4.578278183193922 + -20.522449987201185, + -1.7910707032452415 ], [ - -12.78386872506735, - 5.093527371445836 + -20.0457609965282, + -2.3296810820991483 ], [ - -13.251486603619583, - 5.6079385184327935 + -19.569870532470986, + -2.8673976099778757 ], [ - -13.720430379369873, - 6.121570777392062 + -19.0947091741632, + -3.404431603436154 ], [ - -14.190810442245265, - 6.634493101618335 + -18.620201747684746, + -3.9409715409093757 ], [ - -14.662738867305961, - 7.146786076626593 + -18.14626825635503, + -4.477185926411791 ], [ - -15.136329499021485, - 7.658544161959716 + -17.672824617108972, + -5.013225743753909 ], [ - -15.611697976767573, - 8.169878451075492 + -17.19978324083445, + -5.549226566225735 ], [ - -16.28187834759251, - 8.155493059284444 + -16.546609834271067, + -5.5532112519364265 ], [ - -16.95322879198409, - 8.144050026715396 + -15.893859927302628, + -5.5553932800526935 ], [ - -17.62567169742158, - 8.135956991156363 + -15.241567910867047, + -5.5559410707491566 ], [ - -18.299109634857018, - 8.131655257677629 + -14.589763120579732, + -5.555015524844163 ], [ - -18.973422517359268, - 8.131622689803509 + -13.938470206592683, + -5.552770373117146 ], [ - -19.648464397900852, - 8.136376818820137 + -13.287709479101636, + -5.549352511082723 ], [ - -20.32405986601009, - 8.146478176724932 + -12.637497230831968, + -5.544902319538802 ], [ - -21, - 8.162533854955054 + -11.98784603778904, + -5.539553971242925 ] ] ] @@ -76652,168 +76652,168 @@ "coordinates": [ [ [ - 51, - 8.16253385495504 + 60.01215396221096, + -5.539553971242925 ], [ - 51.29885164248981, - 7.530390021971758 + 59.72820990741195, + -4.896562751656497 ], [ - 51.59629527082154, - 6.898735635532024 + 59.44472678425029, + -4.254708312632621 ], [ - 51.89240220049885, - 6.267375132306927 + 59.16161901356156, + -3.613970768281407 ], [ - 52.187247273475805, - 5.6361409557988384 + 58.878801952697586, + -2.9743298550319537 ], [ - 52.48090772296814, - 5.00488848560826 + 58.596191774753606, + -2.335764856516282 ], [ - 52.77346237711629, - 4.373492007958592 + 58.313705349825455, + -1.6982545161551839 ], [ - 53.06499110459856, - 3.741841488224458 + 58.03126012788243, + -1.0617769353137823 ], [ - 53.35557443437722, - 3.1098399666444574 + 57.748774022867565, + -0.42630945444010043 ], [ - 53.909459601680055, - 2.665248288661079 + 57.203818631355716, + 0.014556886277865702 ], [ - 54.46184910321176, - 2.2218651838138443 + 56.6578288894068, + 0.45540681876735906 ], [ - 55.01280725516892, - 1.7794162308254944 + 56.110718865692434, + 0.8963863812880525 ], [ 55.56240509141048, 1.337660587380447 ], [ - 56.110718865692434, - 0.8963863812880525 + 55.01280725516892, + 1.7794162308254944 ], [ - 56.6578288894068, - 0.45540681876735906 + 54.46184910321176, + 2.2218651838138443 ], [ - 57.203818631355716, - 0.01455688627787848 + 53.909459601680055, + 2.665248288661079 ], [ - 57.748774022867565, - -0.42630945444010043 + 53.35557443437722, + 3.1098399666444574 ], [ - 58.04579455038049, - 0.1329227532097501 + 53.0583898202791, + 2.5633608674609674 ], [ - 58.34359093942055, - 0.6925672169304937 + 52.7620676776977, + 2.0173791374190486 ], [ - 58.642187649609355, - 1.2526762337456798 + 52.46657012644164, + 1.4718332931284461 ], [ - 58.94160638375365, - 1.8133037611419598 + 52.171857337489655, + 0.9266645541038917 ], [ - 59.241865821122474, - 2.374505485660123 + 51.8778877437519, + 0.38181668468203794 ], [ - 59.54298131723931, - 2.9363388920133824 + 51.58461822058348, + -0.16276415527488097 ], [ - 59.84496456637817, - 3.4988633322726352 + 51.29200423974521, + -0.7071295512160564 ], [ - 60.1478232224797, - 4.062140094552287 + 51, + -1.2513289666321188 ], [ - 59.682532082093985, - 4.57827818319391 + 51.477550012798815, + -1.7910707032452415 ], [ - 59.21613127493265, - 5.0935273714458225 + 51.9542390034718, + -2.3296810820991616 ], [ - 58.74851339638042, - 5.6079385184327935 + 52.430129467529014, + -2.8673976099778757 ], [ - 58.27956962063013, - 6.121570777392062 + 52.9052908258368, + -3.4044316034361413 ], [ - 57.809189557754735, - 6.634493101618335 + 53.379798252315254, + -3.940971540909363 ], [ - 57.33726113269404, - 7.146786076626593 + 53.85373174364497, + -4.477185926411804 ], [ - 56.863670500978515, - 7.658544161959716 + 54.32717538289103, + -5.013225743753909 ], [ - 56.38830202323254, - 8.16987845107548 + 54.80021675916555, + -5.549226566225735 ], [ - 55.71812165240749, - 8.155493059284444 + 55.45339016572893, + -5.5532112519364265 ], [ - 55.04677120801591, - 8.144050026715384 + 56.10614007269737, + -5.555393280052707 ], [ - 54.37432830257842, - 8.13595699115635 + 56.75843208913295, + -5.5559410707491566 ], [ - 53.70089036514298, - 8.131655257677629 + 57.41023687942027, + -5.555015524844163 ], [ - 53.02657748264073, - 8.131622689803509 + 58.06152979340732, + -5.552770373117146 ], [ - 52.35153560209915, - 8.136376818820137 + 58.712290520898364, + -5.549352511082723 ], [ - 51.67594013398991, - 8.146478176724932 + 59.36250276916803, + -5.544902319538789 ], [ - 51, - 8.16253385495504 + 60.01215396221096, + -5.539553971242925 ] ] ] @@ -76829,168 +76829,168 @@ "coordinates": [ [ [ - 60.01215396221096, - -5.539553971242925 + 51, + 8.16253385495504 ], [ - 59.72820990741195, - -4.896562751656497 + 51.29885164248981, + 7.530390021971758 ], [ - 59.44472678425029, - -4.254708312632621 + 51.59629527082154, + 6.898735635532024 ], [ - 59.16161901356156, - -3.613970768281407 + 51.89240220049885, + 6.267375132306927 ], [ - 58.878801952697586, - -2.9743298550319537 + 52.187247273475805, + 5.6361409557988384 ], [ - 58.596191774753606, - -2.335764856516282 + 52.48090772296814, + 5.00488848560826 ], [ - 58.313705349825455, - -1.6982545161551839 + 52.77346237711629, + 4.373492007958592 ], [ - 58.03126012788243, - -1.0617769353137823 + 53.06499110459856, + 3.741841488224458 ], [ - 57.748774022867565, - -0.42630945444010043 + 53.35557443437722, + 3.1098399666444574 ], [ - 57.203818631355716, - 0.014556886277865702 + 53.909459601680055, + 2.665248288661079 ], [ - 56.6578288894068, - 0.45540681876735906 + 54.46184910321176, + 2.2218651838138443 ], [ - 56.110718865692434, - 0.8963863812880525 + 55.01280725516892, + 1.7794162308254944 ], [ 55.56240509141048, 1.337660587380447 ], [ - 55.01280725516892, - 1.7794162308254944 + 56.110718865692434, + 0.8963863812880525 ], [ - 54.46184910321176, - 2.2218651838138443 + 56.6578288894068, + 0.45540681876735906 ], [ - 53.909459601680055, - 2.665248288661079 + 57.203818631355716, + 0.01455688627787848 ], [ - 53.35557443437722, - 3.1098399666444574 + 57.748774022867565, + -0.42630945444010043 ], [ - 53.0583898202791, - 2.5633608674609674 + 58.04579455038049, + 0.1329227532097501 ], [ - 52.7620676776977, - 2.0173791374190486 + 58.34359093942055, + 0.6925672169304937 ], [ - 52.46657012644164, - 1.4718332931284461 + 58.642187649609355, + 1.2526762337456798 ], [ - 52.171857337489655, - 0.9266645541038917 + 58.94160638375365, + 1.8133037611419598 ], [ - 51.8778877437519, - 0.38181668468203794 + 59.241865821122474, + 2.374505485660123 ], [ - 51.58461822058348, - -0.16276415527488097 + 59.54298131723931, + 2.9363388920133824 ], [ - 51.29200423974521, - -0.7071295512160564 + 59.84496456637817, + 3.4988633322726352 ], [ - 51, - -1.2513289666321188 + 60.1478232224797, + 4.062140094552287 ], [ - 51.477550012798815, - -1.7910707032452415 + 59.682532082093985, + 4.57827818319391 ], [ - 51.9542390034718, - -2.3296810820991616 + 59.21613127493265, + 5.0935273714458225 ], [ - 52.430129467529014, - -2.8673976099778757 + 58.74851339638042, + 5.6079385184327935 ], [ - 52.9052908258368, - -3.4044316034361413 + 58.27956962063013, + 6.121570777392062 ], [ - 53.379798252315254, - -3.940971540909363 + 57.809189557754735, + 6.634493101618335 ], [ - 53.85373174364497, - -4.477185926411804 + 57.33726113269404, + 7.146786076626593 ], [ - 54.32717538289103, - -5.013225743753909 + 56.863670500978515, + 7.658544161959716 ], [ - 54.80021675916555, - -5.549226566225735 + 56.38830202323254, + 8.16987845107548 ], [ - 55.45339016572893, - -5.5532112519364265 + 55.71812165240749, + 8.155493059284444 ], [ - 56.10614007269737, - -5.555393280052707 + 55.04677120801591, + 8.144050026715384 ], [ - 56.75843208913295, - -5.5559410707491566 + 54.37432830257842, + 8.13595699115635 ], [ - 57.41023687942027, - -5.555015524844163 + 53.70089036514298, + 8.131655257677629 ], [ - 58.06152979340732, - -5.552770373117146 + 53.02657748264073, + 8.131622689803509 ], [ - 58.712290520898364, - -5.549352511082723 + 52.35153560209915, + 8.136376818820137 ], [ - 59.36250276916803, - -5.544902319538789 + 51.67594013398991, + 8.146478176724932 ], [ - 60.01215396221096, - -5.539553971242925 + 51, + 8.16253385495504 ] ] ] @@ -77532,183 +77532,6 @@ "properties": { "cellIdHex": "71a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.98784603778904, - 5.539553971242925 - ], - [ - 77.73221545240267, - 6.2002352376515875 - ], - [ - 77.47731215402496, - 6.860955982163673 - ], - [ - 77.2230053261676, - 7.521763356203548 - ], - [ - 76.96915859861224, - 8.182707095310416 - ], - [ - 76.71562907581472, - 8.843839729456498 - ], - [ - 76.46226622476001, - 9.505216812917132 - ], - [ - 76.20891059536052, - 10.166897174738569 - ], - [ - 75.95539234074295, - 10.828943190607772 - ], - [ - 75.4390947934329, - 11.288138118190995 - ], - [ - 74.92205927327916, - 11.745971561108755 - ], - [ - 74.40419792307921, - 12.202427742880495 - ], - [ - 73.88542277826605, - 12.657490651991083 - ], - [ - 73.36564568206188, - 13.111144041777454 - ], - [ - 72.84477819391691, - 13.5633714332974 - ], - [ - 72.32273148954482, - 14.014156121733944 - ], - [ - 71.79941625045717, - 14.463481187019147 - ], - [ - 71.49166109138878, - 13.870415941730746 - ], - [ - 71.18302789950565, - 13.279046558152672 - ], - [ - 70.8737405909219, - 12.68931082623332 - ], - [ - 70.5639998925949, - 12.101146082906693 - ], - [ - 70.25398539357866, - 11.51448950120835 - ], - [ - 69.94385741402834, - 10.929278334586273 - ], - [ - 69.63375870745654, - 10.345450122295205 - ], - [ - 69.32381601059876, - 9.762942861013203 - ], - [ - 69.7705935636701, - 9.234822247725184 - ], - [ - 70.216742168623, - 8.705552210331334 - ], - [ - 70.66235592775831, - 8.175142108423033 - ], - [ - 71.10752893615233, - 7.643601043061667 - ], - [ - 71.55235536278587, - 7.110937868474658 - ], - [ - 71.99692953084434, - 6.577161205037902 - ], - [ - 72.4413459976048, - 6.042279453371794 - ], - [ - 72.88569963426608, - 5.506300809417799 - ], - [ - 73.52531805014826, - 5.515792438583863 - ], - [ - 74.16434331412256, - 5.523864823148147 - ], - [ - 74.80280784324498, - 5.53046201575198 - ], - [ - 75.44074396929773, - 5.535530954551204 - ], - [ - 76.07818389873478, - 5.539021279190039 - ], - [ - 76.71515967950381, - 5.540885159501466 - ], - [ - 77.35170317403913, - 5.541077135992371 - ], - [ - 77.98784603778904, - 5.539553971242925 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "71e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -77884,175 +77707,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "7220000000000000" + "cellIdHex": "71e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 69, - 0 + 77.98784603778904, + 5.539553971242925 ], [ - 68.73021601211826, - 0.6455562160249614 + 77.73221545240267, + 6.2002352376515875 ], [ - 68.461280804009, - 1.2903190246036744 + 77.47731215402496, + 6.860955982163673 ], [ - 68.19311041055869, - 1.9343059453843463 + 77.2230053261676, + 7.521763356203548 ], [ - 67.92562142290126, - 2.5775348316392543 + 76.96915859861224, + 8.182707095310416 ], [ - 67.658730835048, - 3.2200239120750207 + 76.71562907581472, + 8.843839729456498 ], [ - 67.39235588427698, - 3.861791839732986 + 76.46226622476001, + 9.505216812917132 ], [ - 67.12641388343707, - 4.50285774905343 + 76.20891059536052, + 10.166897174738569 ], [ - 66.86082204298191, - 5.143241322392131 + 75.95539234074295, + 10.828943190607772 ], [ - 66.33194186111712, - 5.580514035405847 + 75.4390947934329, + 11.288138118190995 ], [ - 65.80223485243573, - 6.016414688115981 + 74.92205927327916, + 11.745971561108755 ], [ - 65.27160907377765, - 6.450948356044848 + 74.40419792307921, + 12.202427742880495 ], [ - 64.73997162480043, - 6.88412251681717 + 73.88542277826605, + 12.657490651991083 ], [ - 64.20722845322143, - 7.315947442795506 + 73.36564568206188, + 13.111144041777454 ], [ - 63.67328414145254, - 7.7464366681473695 + 72.84477819391691, + 13.5633714332974 ], [ - 63.1380416722086, - 8.175607546454666 + 72.32273148954482, + 14.014156121733944 ], [ - 62.601402170529354, - 8.603481919068038 + 71.79941625045717, + 14.463481187019147 ], [ - 62.29191700376657, - 8.031727091468568 + 71.49166109138878, + 13.870415941730746 ], [ - 61.98315936876202, - 7.461291957500545 + 71.18302789950565, + 13.279046558152672 ], [ - 61.67517448011597, - 6.8920976387159705 + 70.8737405909219, + 12.68931082623332 ], [ - 61.36799825552225, - 6.324067602238388 + 70.5639998925949, + 12.101146082906693 ], [ - 61.061658262816536, - 5.757127637480502 + 70.25398539357866, + 11.51448950120835 ], [ - 60.75617456491159, - 5.191205820788224 + 69.94385741402834, + 10.929278334586273 ], [ - 60.45156047366356, - 4.6262324705053555 + 69.63375870745654, + 10.345450122295205 ], [ - 60.1478232224797, - 4.062140094552287 + 69.32381601059876, + 9.762942861013203 ], [ - 60.612110834454825, - 3.5450692961007095 + 69.7705935636701, + 9.234822247725184 ], [ - 61.07549995055513, - 3.027027994738247 + 70.216742168623, + 8.705552210331334 ], [ - 61.5380946591514, - 2.5079835515986555 + 70.66235592775831, + 8.175142108423033 ], [ - 61.99999826470412, - 1.987907759826422 + 71.10752893615233, + 7.643601043061667 ], [ - 62.46131344502999, - 1.466776237175104 + 71.55235536278587, + 7.110937868474658 ], [ - 62.922142404739816, - 0.9445679133708005 + 71.99692953084434, + 6.577161205037902 ], [ - 63.38258702450298, - 0.421264596085337 + 72.4413459976048, + 6.042279453371794 ], [ - 63.84274900612479, - -0.10314939756247994 + 72.88569963426608, + 5.506300809417799 ], [ - 64.48992838156903, - -0.08934807197419792 + 73.52531805014826, + 5.515792438583863 ], [ - 65.13635488424916, - -0.07560620233202364 + 74.16434331412256, + 5.523864823148147 ], [ - 65.78204243178334, - -0.062030051362952865 + 74.80280784324498, + 5.53046201575198 ], [ - 66.42700675876029, - -0.04872058831839688 + 75.44074396929773, + 5.535530954551204 ], [ - 67.07126522717044, - -0.03577378813442822 + 76.07818389873478, + 5.539021279190039 ], [ - 67.71483665397716, - -0.023280913104942243 + 76.71515967950381, + 5.540885159501466 ], [ - 68.35774115445133, - -0.01132877806060274 + 77.35170317403913, + 5.541077135992371 ], [ - 69, - 0 + 77.98784603778904, + 5.539553971242925 ] ] ] @@ -78061,7 +77884,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "7260000000000000" + "cellIdHex": "7220000000000000" }, "geometry": { "type": "Polygon", @@ -78235,6 +78058,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "7260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69, + 0 + ], + [ + 68.73021601211826, + 0.6455562160249614 + ], + [ + 68.461280804009, + 1.2903190246036744 + ], + [ + 68.19311041055869, + 1.9343059453843463 + ], + [ + 67.92562142290126, + 2.5775348316392543 + ], + [ + 67.658730835048, + 3.2200239120750207 + ], + [ + 67.39235588427698, + 3.861791839732986 + ], + [ + 67.12641388343707, + 4.50285774905343 + ], + [ + 66.86082204298191, + 5.143241322392131 + ], + [ + 66.33194186111712, + 5.580514035405847 + ], + [ + 65.80223485243573, + 6.016414688115981 + ], + [ + 65.27160907377765, + 6.450948356044848 + ], + [ + 64.73997162480043, + 6.88412251681717 + ], + [ + 64.20722845322143, + 7.315947442795506 + ], + [ + 63.67328414145254, + 7.7464366681473695 + ], + [ + 63.1380416722086, + 8.175607546454666 + ], + [ + 62.601402170529354, + 8.603481919068038 + ], + [ + 62.29191700376657, + 8.031727091468568 + ], + [ + 61.98315936876202, + 7.461291957500545 + ], + [ + 61.67517448011597, + 6.8920976387159705 + ], + [ + 61.36799825552225, + 6.324067602238388 + ], + [ + 61.061658262816536, + 5.757127637480502 + ], + [ + 60.75617456491159, + 5.191205820788224 + ], + [ + 60.45156047366356, + 4.6262324705053555 + ], + [ + 60.1478232224797, + 4.062140094552287 + ], + [ + 60.612110834454825, + 3.5450692961007095 + ], + [ + 61.07549995055513, + 3.027027994738247 + ], + [ + 61.5380946591514, + 2.5079835515986555 + ], + [ + 61.99999826470412, + 1.987907759826422 + ], + [ + 62.46131344502999, + 1.466776237175104 + ], + [ + 62.922142404739816, + 0.9445679133708005 + ], + [ + 63.38258702450298, + 0.421264596085337 + ], + [ + 63.84274900612479, + -0.10314939756247994 + ], + [ + 64.48992838156903, + -0.08934807197419792 + ], + [ + 65.13635488424916, + -0.07560620233202364 + ], + [ + 65.78204243178334, + -0.062030051362952865 + ], + [ + 66.42700675876029, + -0.04872058831839688 + ], + [ + 67.07126522717044, + -0.03577378813442822 + ], + [ + 67.71483665397716, + -0.023280913104942243 + ], + [ + 68.35774115445133, + -0.01132877806060274 + ], + [ + 69, + 0 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -80364,6 +80364,183 @@ "properties": { "cellIdHex": "75a0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 87, + 31.832359041336087 + ], + [ + 86.1896646277196, + 31.938398148952622 + ], + [ + 85.37885163982992, + 32.039669445392875 + ], + [ + 84.56759133234596, + 32.13616896353093 + ], + [ + 83.75591471242831, + 32.22789297397679 + ], + [ + 82.94385336265805, + 32.31483796760756 + ], + [ + 82.13143929381124, + 32.397000631546376 + ], + [ + 81.31870478449878, + 32.47437781747659 + ], + [ + 80.50568220570699, + 32.546966500935476 + ], + [ + 79.75743599872692, + 32.28795965427348 + ], + [ + 79.01436412225542, + 32.02410234253843 + ], + [ + 78.27640918072098, + 31.75547039557303 + ], + [ + 77.54350742398856, + 31.482138275789097 + ], + [ + 76.81558842904724, + 31.204179065899996 + ], + [ + 76.09257470025182, + 30.92166447008943 + ], + [ + 75.37438117115425, + 30.634664832587045 + ], + [ + 74.6609145869553, + 30.34324917904293 + ], + [ + 75.09702854930106, + 29.817509611348882 + ], + [ + 75.526936769852, + 29.29088776493135 + ], + [ + 75.95095702178628, + 28.763500256156945 + ], + [ + 76.3693929832258, + 28.235451757095355 + ], + [ + 76.78253488195742, + 27.706836137865213 + ], + [ + 77.19066013636893, + 27.1777374982444 + ], + [ + 77.59403398694121, + 26.648231099444637 + ], + [ + 77.99291011397713, + 26.118384205901382 + ], + [ + 78.74065445300505, + 26.288347863309184 + ], + [ + 79.49106747393387, + 26.453736372755746 + ], + [ + 80.24419110294241, + 26.614495359129275 + ], + [ + 81.00006021899446, + 26.77057104673945 + ], + [ + 81.7587032808758, + 26.92191012503988 + ], + [ + 82.52014286367637, + 27.068459646655356 + ], + [ + 83.28439612032389, + 27.210166951020653 + ], + [ + 84.05147518093247, + 27.346979608405157 + ], + [ + 84.40677323955856, + 27.91389605819596 + ], + [ + 84.76542029550342, + 28.479164902383836 + ], + [ + 85.12763657964297, + 29.04271541484363 + ], + [ + 85.49364257569312, + 29.604479180256902 + ], + [ + 85.8636593421146, + 30.164389721873253 + ], + [ + 86.23790882576043, + 30.72238214920248 + ], + [ + 86.61661416749916, + 31.278392823788284 + ], + [ + 87, + 31.832359041336087 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "75e0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -80539,7 +80716,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "75e0000000000000" + "cellIdHex": "7620000000000000" }, "geometry": { "type": "Polygon", @@ -80547,167 +80724,167 @@ [ [ 87, - 31.832359041336087 + 42.37830150075416 ], [ - 86.1896646277196, - 31.938398148952622 + 86.06037604999347, + 42.498922439869055 ], [ - 85.37885163982992, - 32.039669445392875 + 85.11796630687718, + 42.613096805573505 ], [ - 84.56759133234596, - 32.13616896353093 + 84.17280935668498, + 42.72075593429318 ], [ - 83.75591471242831, - 32.22789297397679 + 83.22494308759985, + 42.82182667002338 ], [ - 82.94385336265805, - 32.31483796760756 + 82.27440416778245, + 42.91623066511017 ], [ - 82.13143929381124, - 32.397000631546376 + 81.32122747461096, + 43.00388355925541 ], [ - 81.31870478449878, - 32.47437781747659 + 80.36544547170809, + 43.08469401422355 ], [ - 80.50568220570699, - 32.546966500935476 + 79.40708753002252, + 43.15856257693659 ], [ - 79.75743599872692, - 32.28795965427348 + 78.54159348579458, + 42.90541610926601 ], [ - 79.01436412225542, - 32.02410234253843 + 77.6843012672623, + 42.64639614357896 ], [ - 78.27640918072098, - 31.75547039557303 + 76.83518671619595, + 42.38162397551781 ], [ - 77.54350742398856, - 31.482138275789097 + 75.99421784496076, + 42.11121902793486 ], [ - 76.81558842904724, - 31.204179065899996 + 75.16135520349133, + 41.83529873987632 ], [ - 76.09257470025182, - 30.92166447008943 + 74.33655223745131, + 41.55397845747508 ], [ - 75.37438117115425, - 30.634664832587045 + 73.51975563485928, + 41.26737132523007 ], [ - 74.6609145869553, - 30.34324917904293 + 72.71090565837915, + 40.975588175816924 ], [ - 75.09702854930106, - 29.817509611348882 + 73.2725952418266, + 40.469135977389314 ], [ - 75.526936769852, - 29.29088776493135 + 73.82215728248855, + 39.95863781328699 ], [ - 75.95095702178628, - 28.763500256156945 + 74.36010968932828, + 39.444460141040246 ], [ - 76.3693929832258, - 28.235451757095355 + 74.88695685412154, + 38.92693989100173 ], [ - 76.78253488195742, - 27.706836137865213 + 75.40318867147073, + 38.406386707479406 ], [ - 77.19066013636893, - 27.1777374982444 + 75.90927985610847, + 37.8830850382515 ], [ - 77.59403398694121, - 26.648231099444637 + 76.40568950899683, + 37.357296078753734 ], [ - 77.99291011397713, - 26.118384205901382 + 76.89286089014831, + 36.829259577850074 ], [ - 78.74065445300505, - 26.288347863309184 + 77.72502153280641, + 36.99266629693374 ], [ - 79.49106747393387, - 26.453736372755746 + 78.5617228138475, + 37.15058817528357 ], [ - 80.24419110294241, - 26.614495359129275 + 79.40292418608601, + 37.302952611056895 ], [ - 81.00006021899446, - 26.77057104673945 + 80.24858068270976, + 37.4496870148169 ], [ - 81.7587032808758, - 26.92191012503988 + 81.09864290180792, + 37.5907188797037 ], [ - 82.52014286367637, - 27.068459646655356 + 81.95305699813935, + 37.72597585158083 ], [ - 83.28439612032389, - 27.210166951020653 + 82.81176468300237, + 37.85538579922086 ], [ - 84.05147518093247, - 27.346979608405157 + 83.67470323298414, + 37.978876884540206 ], [ - 84.40677323955856, - 27.91389605819596 + 84.06557461462512, + 38.537081820194224 ], [ - 84.76542029550342, - 28.479164902383836 + 84.46294266837867, + 39.09302434364567 ], [ - 85.12763657964297, - 29.04271541484363 + 84.86709282925278, + 39.6466555558433 ], [ - 85.49364257569312, - 29.604479180256902 + 85.27831640121917, + 40.19792492578672 ], [ - 85.8636593421146, - 30.164389721873253 + 85.69691098297653, + 40.74678002529752 ], [ - 86.23790882576043, - 30.72238214920248 + 86.12318088899542, + 41.293166268073804 ], [ - 86.61661416749916, - 31.278392823788284 + 86.55743756539869, + 41.83702665162222 ], [ 87, - 31.832359041336087 + 42.37830150075416 ] ] ] @@ -80716,7 +80893,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "7620000000000000" + "cellIdHex": "7660000000000000" }, "geometry": { "type": "Polygon", @@ -80890,183 +81067,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "7660000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 87, - 42.37830150075416 - ], - [ - 86.06037604999347, - 42.498922439869055 - ], - [ - 85.11796630687718, - 42.613096805573505 - ], - [ - 84.17280935668498, - 42.72075593429318 - ], - [ - 83.22494308759985, - 42.82182667002338 - ], - [ - 82.27440416778245, - 42.91623066511017 - ], - [ - 81.32122747461096, - 43.00388355925541 - ], - [ - 80.36544547170809, - 43.08469401422355 - ], - [ - 79.40708753002252, - 43.15856257693659 - ], - [ - 78.54159348579458, - 42.90541610926601 - ], - [ - 77.6843012672623, - 42.64639614357896 - ], - [ - 76.83518671619595, - 42.38162397551781 - ], - [ - 75.99421784496076, - 42.11121902793486 - ], - [ - 75.16135520349133, - 41.83529873987632 - ], - [ - 74.33655223745131, - 41.55397845747508 - ], - [ - 73.51975563485928, - 41.26737132523007 - ], - [ - 72.71090565837915, - 40.975588175816924 - ], - [ - 73.2725952418266, - 40.469135977389314 - ], - [ - 73.82215728248855, - 39.95863781328699 - ], - [ - 74.36010968932828, - 39.444460141040246 - ], - [ - 74.88695685412154, - 38.92693989100173 - ], - [ - 75.40318867147073, - 38.406386707479406 - ], - [ - 75.90927985610847, - 37.8830850382515 - ], - [ - 76.40568950899683, - 37.357296078753734 - ], - [ - 76.89286089014831, - 36.829259577850074 - ], - [ - 77.72502153280641, - 36.99266629693374 - ], - [ - 78.5617228138475, - 37.15058817528357 - ], - [ - 79.40292418608601, - 37.302952611056895 - ], - [ - 80.24858068270976, - 37.4496870148169 - ], - [ - 81.09864290180792, - 37.5907188797037 - ], - [ - 81.95305699813935, - 37.72597585158083 - ], - [ - 82.81176468300237, - 37.85538579922086 - ], - [ - 83.67470323298414, - 37.978876884540206 - ], - [ - 84.06557461462512, - 38.537081820194224 - ], - [ - 84.46294266837867, - 39.09302434364567 - ], - [ - 84.86709282925278, - 39.6466555558433 - ], - [ - 85.27831640121917, - 40.19792492578672 - ], - [ - 85.69691098297653, - 40.74678002529752 - ], - [ - 86.12318088899542, - 41.293166268073804 - ], - [ - 86.55743756539869, - 41.83702665162222 - ], - [ - 87, - 42.37830150075416 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -81608,168 +81608,168 @@ "coordinates": [ [ [ - 87, - 21.27100957285517 + 69.63121965863968, + 19.765749214107966 ], [ - 86.25530585209287, - 21.36027233039878 + 70.36995442511397, + 19.76212919146411 ], [ - 85.51084856274042, - 21.445532390258858 + 71.10771828903637, + 19.7552974947138 ], [ - 84.7666283025344, - 21.526794472204543 + 71.8446826130986, + 19.745165949584045 ], [ - 84.02264529640365, - 21.60406361678073 + 72.58099268826686, + 19.731660977058525 ], [ - 83.27889969837827, - 21.677345210969445 + 73.31677225819476, + 19.714720627079494 ], [ - 82.5353914538706, - 21.746645016668637 + 74.05212715358653, + 19.69429229573704 ], [ - 81.79212014727932, - 21.811969202676774 + 74.78714823453492, + 19.670330952804132 ], [ - 81.04908483227996, - 21.873324381037982 + 75.52191379036685, + 19.642797754009656 ], [ - 80.3525428785631, - 21.6069751898611 + 76.20885722757703, + 19.933090334027135 ], [ - 79.65804128388106, - 21.336812405433893 + 76.89638450569032, + 20.220422827416208 ], [ - 78.96539188451231, - 21.062948590774777 + 77.58480246467263, + 20.504614891202117 ], [ 78.27438805226063, 20.7855052935926 ], [ - 77.58480246467263, - 20.504614891202117 + 78.96539188451231, + 21.062948590774777 ], [ - 76.89638450569032, - 20.220422827416197 + 79.65804128388106, + 21.336812405433907 ], [ - 76.20885722757703, - 19.93309033402712 + 80.3525428785631, + 21.6069751898611 ], [ - 75.52191379036685, - 19.642797754009642 + 81.04908483227996, + 21.873324381037982 ], [ - 75.89083786567471, - 19.1282992786855 + 80.67825645095093, + 22.404212941506128 ], [ - 76.25725228910505, - 18.61385062882122 + 80.30461136861459, + 22.9350888560876 ], [ - 76.62132039648236, - 18.099458347308452 + 79.92796851634148, + 23.465926761636226 ], [ - 76.98319873721869, - 17.585126846827592 + 79.54813947642583, + 23.996697696004823 ], [ - 77.34303755054475, - 17.07085868293248 + 79.16492803341657, + 24.52736871990067 ], [ - 77.70098120956857, - 16.556654794863714 + 78.7781297029951, + 25.057902499560104 ], [ - 78.05716863551277, - 16.04251471807537 + 78.38753123835647, + 25.588256845971678 ], [ - 78.41173368434522, - 15.528436771949758 + 77.99291011397713, + 26.118384205901382 ], [ - 79.13725976012427, - 15.696541008965939 + 77.24778474668233, + 25.94390055026972 ], [ - 79.86248739115115, - 15.861719396959536 + 76.50521998674037, + 25.764953048081967 ], [ - 80.58764507853289, - 16.02380770489846 + 75.76514778240028, + 25.581599146912225 ], [ - 81.31293867495799, - 16.182658449084304 + 75.02748916156224, + 25.393897970011984 ], [ - 82.03855394295704, - 16.33813835223845 + 74.29215275253887, + 25.20191080714578 ], [ - 82.76465876752991, - 16.490126224956356 + 73.55903299969509, + 25.00570175012071 ], [ - 83.49140507559696, - 16.638511193215383 + 72.82800799884421, + 24.805338518102328 ], [ - 84.21893050608617, - 16.78319121052189 + 72.09893685580505, + 24.600893533663328 ], [ - 84.5620178814629, - 17.346562268742066 + 71.79952851308178, + 23.99428822528476 ], [ - 84.90599278036268, - 17.909490195958924 + 71.49838749870469, + 23.38770950651953 ], [ - 85.25106435477551, - 18.471846827363596 + 71.19511119691026, + 22.781415392146638 ], [ - 85.59743877938831, - 19.033510617911343 + 70.8892783723029, + 22.175696381329857 ], [ - 85.94531953551484, - 19.594366117856698 + 70.58044765644581, + 21.57087936278443 ], [ - 86.29490768909557, - 20.15430347664278 + 70.26815599368842, + 20.967331944966677 ], [ - 86.6464021625095, - 20.713217973461223 + 69.95191705820139, + 20.365467250374323 ], [ - 87, - 21.27100957285517 + 69.63121965863968, + 19.765749214107966 ] ] ] @@ -81785,168 +81785,168 @@ "coordinates": [ [ [ - 69.63121965863968, - 19.765749214107966 + 87, + 21.27100957285517 ], [ - 70.36995442511397, - 19.76212919146411 + 86.25530585209287, + 21.36027233039878 ], [ - 71.10771828903637, - 19.7552974947138 + 85.51084856274042, + 21.445532390258858 ], [ - 71.8446826130986, - 19.745165949584045 + 84.7666283025344, + 21.526794472204543 ], [ - 72.58099268826686, - 19.731660977058525 + 84.02264529640365, + 21.60406361678073 ], [ - 73.31677225819476, - 19.714720627079494 + 83.27889969837827, + 21.677345210969445 ], [ - 74.05212715358653, - 19.69429229573704 + 82.5353914538706, + 21.746645016668637 ], [ - 74.78714823453492, - 19.670330952804132 + 81.79212014727932, + 21.811969202676774 ], [ - 75.52191379036685, - 19.642797754009656 + 81.04908483227996, + 21.873324381037982 ], [ - 76.20885722757703, - 19.933090334027135 + 80.3525428785631, + 21.6069751898611 ], [ - 76.89638450569032, - 20.220422827416208 + 79.65804128388106, + 21.336812405433893 ], [ - 77.58480246467263, - 20.504614891202117 + 78.96539188451231, + 21.062948590774777 ], [ 78.27438805226063, 20.7855052935926 ], [ - 78.96539188451231, - 21.062948590774777 + 77.58480246467263, + 20.504614891202117 ], [ - 79.65804128388106, - 21.336812405433907 + 76.89638450569032, + 20.220422827416197 ], [ - 80.3525428785631, - 21.6069751898611 + 76.20885722757703, + 19.93309033402712 ], [ - 81.04908483227996, - 21.873324381037982 + 75.52191379036685, + 19.642797754009642 ], [ - 80.67825645095093, - 22.404212941506128 + 75.89083786567471, + 19.1282992786855 ], [ - 80.30461136861459, - 22.9350888560876 + 76.25725228910505, + 18.61385062882122 ], [ - 79.92796851634148, - 23.465926761636226 + 76.62132039648236, + 18.099458347308452 ], [ - 79.54813947642583, - 23.996697696004823 + 76.98319873721869, + 17.585126846827592 ], [ - 79.16492803341657, - 24.52736871990067 + 77.34303755054475, + 17.07085868293248 ], [ - 78.7781297029951, - 25.057902499560104 + 77.70098120956857, + 16.556654794863714 ], [ - 78.38753123835647, - 25.588256845971678 + 78.05716863551277, + 16.04251471807537 ], [ - 77.99291011397713, - 26.118384205901382 + 78.41173368434522, + 15.528436771949758 ], [ - 77.24778474668233, - 25.94390055026972 + 79.13725976012427, + 15.696541008965939 ], [ - 76.50521998674037, - 25.764953048081967 + 79.86248739115115, + 15.861719396959536 ], [ - 75.76514778240028, - 25.581599146912225 + 80.58764507853289, + 16.02380770489846 ], [ - 75.02748916156224, - 25.393897970011984 + 81.31293867495799, + 16.182658449084304 ], [ - 74.29215275253887, - 25.20191080714578 + 82.03855394295704, + 16.33813835223845 ], [ - 73.55903299969509, - 25.00570175012071 + 82.76465876752991, + 16.490126224956356 ], [ - 72.82800799884421, - 24.805338518102328 + 83.49140507559696, + 16.638511193215383 ], [ - 72.09893685580505, - 24.600893533663328 + 84.21893050608617, + 16.78319121052189 ], [ - 71.79952851308178, - 23.99428822528476 + 84.5620178814629, + 17.346562268742066 ], [ - 71.49838749870469, - 23.38770950651953 + 84.90599278036268, + 17.909490195958924 ], [ - 71.19511119691026, - 22.781415392146638 + 85.25106435477551, + 18.471846827363596 ], [ - 70.8892783723029, - 22.175696381329857 + 85.59743877938831, + 19.033510617911343 ], [ - 70.58044765644581, - 21.57087936278443 + 85.94531953551484, + 19.594366117856698 ], [ - 70.26815599368842, - 20.967331944966677 + 86.29490768909557, + 20.15430347664278 ], [ - 69.95191705820139, - 20.365467250374323 + 86.6464021625095, + 20.713217973461223 ], [ - 69.63121965863968, - 19.765749214107966 + 87, + 21.27100957285517 ] ] ] @@ -88860,183 +88860,6 @@ "properties": { "cellIdHex": "89a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 132.4208573990163, - 13.628636133967648 - ], - [ - 132.69620726608576, - 13.002746034453729 - ], - [ - 132.9705861877751, - 12.376251432117138 - ], - [ - 133.2440850702983, - 11.74913082912652 - ], - [ - 133.51679224344798, - 11.121364333331146 - ], - [ - 133.7887938857217, - 10.492933345721074 - ], - [ - 134.06017437680737, - 9.863820310405226 - ], - [ - 134.33101659474175, - 9.234008513297562 - ], - [ - 134.6014021705294, - 8.60348191906805 - ], - [ - 135.13804167220866, - 8.175607546454678 - ], - [ - 135.67328414145254, - 7.7464366681473695 - ], - [ - 136.20722845322138, - 7.315947442795518 - ], - [ - 136.73997162480043, - 6.8841225168171825 - ], - [ - 137.27160907377765, - 6.4509483560448615 - ], - [ - 137.80223485243573, - 6.016414688115995 - ], - [ - 138.33194186111712, - 5.5805140354058596 - ], - [ - 138.8608220429819, - 5.143241322392146 - ], - [ - 139.16646440234285, - 5.717321523379236 - ], - [ - 139.47284531592703, - 6.292255639087759 - ], - [ - 139.77992476299045, - 6.868098642541113 - ], - [ - 140.08765500144727, - 7.4449065555474645 - ], - [ - 140.39597984145752, - 8.022736425852864 - ], - [ - 140.70483384640409, - 8.601646293856085 - ], - [ - 141.01414145412753, - 9.18169514716392 - ], - [ - 141.32381601059876, - 9.762942861013215 - ], - [ - 140.87631531743943, - 10.289904421887828 - ], - [ - 140.42799711821368, - 10.815697024934158 - ], - [ - 139.9787667859938, - 11.340310481399507 - ], - [ - 139.52852934250126, - 11.86373431558934 - ], - [ - 139.07718936317247, - 12.385957764485871 - ], - [ - 138.62465087634575, - 12.906969781353336 - ], - [ - 138.1708172548573, - 13.426759044313485 - ], - [ - 137.71559109784482, - 13.945313971163772 - ], - [ - 137.059521146517, - 13.90731505951831 - ], - [ - 136.40193352343698, - 13.868501904231413 - ], - [ - 135.74276111249782, - 13.829033834593607 - ], - [ - 135.08193733294002, - 13.789085668592772 - ], - [ - 134.4193968065602, - 13.748849484199871 - ], - [ - 133.75507617321068, - 13.708536612122595 - ], - [ - 133.0889150830111, - 13.668379879030155 - ], - [ - 132.4208573990163, - 13.628636133967648 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "89e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -89212,175 +89035,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "8a20000000000000" + "cellIdHex": "89e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 141.63121965863974, - 19.765749214107966 + 132.4208573990163, + 13.628636133967648 ], [ - 141.91494750633876, - 19.098444308476555 + 132.69620726608576, + 13.002746034453729 ], [ - 142.19390227320116, - 18.432713723067838 + 132.9705861877751, + 12.376251432117138 ], [ - 142.46876297352026, - 17.76840441639068 + 133.2440850702983, + 11.74913082912652 ], [ - 142.74010941688624, - 17.10537278396115 + 133.51679224344798, + 11.121364333331146 ], [ - 143.008440823588, - 16.443484826667962 + 133.7887938857217, + 10.492933345721074 ], [ - 143.2741905125228, - 15.782615938070585 + 134.06017437680737, + 9.863820310405226 ], [ - 143.53773757942577, - 15.12265047106871 + 134.33101659474175, + 9.234008513297562 ], [ - 143.79941625045706, - 14.463481187019147 + 134.6014021705294, + 8.60348191906805 ], [ - 144.32273148954476, - 14.014156121733944 + 135.13804167220866, + 8.175607546454678 ], [ - 144.84477819391697, - 13.5633714332974 + 135.67328414145254, + 7.7464366681473695 ], [ - 145.36564568206188, - 13.111144041777466 + 136.20722845322138, + 7.315947442795518 ], [ - 145.885422778266, - 12.657490651991083 + 136.73997162480043, + 6.8841225168171825 ], [ - 146.4041979230792, - 12.202427742880495 + 137.27160907377765, + 6.4509483560448615 ], [ - 146.92205927327916, - 11.745971561108743 + 137.80223485243573, + 6.016414688115995 ], [ - 147.43909479343284, - 11.288138118190995 + 138.33194186111712, + 5.5805140354058596 ], [ - 147.9553923407429, - 10.828943190607772 + 138.8608220429819, + 5.143241322392146 ], [ - 148.26417952841075, - 11.412488048170637 + 139.16646440234285, + 5.717321523379236 ], [ - 148.57281380622544, - 11.99705537195785 + 139.47284531592703, + 6.292255639087759 ], [ - 148.88114325630676, - 12.582690091959567 + 139.77992476299045, + 6.868098642541113 ], [ - 149.18900036232947, - 13.16943709760907 + 140.08765500144727, + 7.4449065555474645 ], [ - 149.4962007172045, - 13.757341113162747 + 140.39597984145752, + 8.022736425852864 ], [ - 149.8025416251612, - 14.34644655264788 + 140.70483384640409, + 8.601646293856085 ], [ - 150.10780059043248, - 14.936797351541543 + 141.01414145412753, + 9.18169514716392 ], [ - 150.41173368434522, - 15.528436771949783 + 141.32381601059876, + 9.762942861013215 ], [ - 150.05716863551277, - 16.04251471807538 + 140.87631531743943, + 10.289904421887828 ], [ - 149.70098120956857, - 16.556654794863714 + 140.42799711821368, + 10.815697024934158 ], [ - 149.34303755054475, - 17.07085868293248 + 139.9787667859938, + 11.340310481399507 ], [ - 148.98319873721863, - 17.585126846827592 + 139.52852934250126, + 11.86373431558934 ], [ - 148.62132039648236, - 18.099458347308452 + 139.07718936317247, + 12.385957764485871 ], [ - 148.25725228910505, - 18.613850628821204 + 138.62465087634575, + 12.906969781353336 ], [ - 147.8908378656747, - 19.1282992786855 + 138.1708172548573, + 13.426759044313485 ], [ - 147.5219137903668, - 19.642797754009656 + 137.71559109784482, + 13.945313971163772 ], [ - 146.78714823453498, - 19.670330952804132 + 137.059521146517, + 13.90731505951831 ], [ - 146.05212715358653, - 19.69429229573705 + 136.40193352343698, + 13.868501904231413 ], [ - 145.31677225819482, - 19.714720627079508 + 135.74276111249782, + 13.829033834593607 ], [ - 144.58099268826675, - 19.731660977058525 + 135.08193733294002, + 13.789085668592772 ], [ - 143.8446826130986, - 19.745165949584045 + 134.4193968065602, + 13.748849484199871 ], [ - 143.10771828903637, - 19.7552974947138 + 133.75507617321068, + 13.708536612122595 ], [ - 142.36995442511397, - 19.76212919146411 + 133.0889150830111, + 13.668379879030155 ], [ - 141.63121965863974, - 19.765749214107966 + 132.4208573990163, + 13.628636133967648 ] ] ] @@ -89389,7 +89212,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "8a60000000000000" + "cellIdHex": "8a20000000000000" }, "geometry": { "type": "Polygon", @@ -89563,6 +89386,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "8a60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 141.63121965863974, + 19.765749214107966 + ], + [ + 141.91494750633876, + 19.098444308476555 + ], + [ + 142.19390227320116, + 18.432713723067838 + ], + [ + 142.46876297352026, + 17.76840441639068 + ], + [ + 142.74010941688624, + 17.10537278396115 + ], + [ + 143.008440823588, + 16.443484826667962 + ], + [ + 143.2741905125228, + 15.782615938070585 + ], + [ + 143.53773757942577, + 15.12265047106871 + ], + [ + 143.79941625045706, + 14.463481187019147 + ], + [ + 144.32273148954476, + 14.014156121733944 + ], + [ + 144.84477819391697, + 13.5633714332974 + ], + [ + 145.36564568206188, + 13.111144041777466 + ], + [ + 145.885422778266, + 12.657490651991083 + ], + [ + 146.4041979230792, + 12.202427742880495 + ], + [ + 146.92205927327916, + 11.745971561108743 + ], + [ + 147.43909479343284, + 11.288138118190995 + ], + [ + 147.9553923407429, + 10.828943190607772 + ], + [ + 148.26417952841075, + 11.412488048170637 + ], + [ + 148.57281380622544, + 11.99705537195785 + ], + [ + 148.88114325630676, + 12.582690091959567 + ], + [ + 149.18900036232947, + 13.16943709760907 + ], + [ + 149.4962007172045, + 13.757341113162747 + ], + [ + 149.8025416251612, + 14.34644655264788 + ], + [ + 150.10780059043248, + 14.936797351541543 + ], + [ + 150.41173368434522, + 15.528436771949783 + ], + [ + 150.05716863551277, + 16.04251471807538 + ], + [ + 149.70098120956857, + 16.556654794863714 + ], + [ + 149.34303755054475, + 17.07085868293248 + ], + [ + 148.98319873721863, + 17.585126846827592 + ], + [ + 148.62132039648236, + 18.099458347308452 + ], + [ + 148.25725228910505, + 18.613850628821204 + ], + [ + 147.8908378656747, + 19.1282992786855 + ], + [ + 147.5219137903668, + 19.642797754009656 + ], + [ + 146.78714823453498, + 19.670330952804132 + ], + [ + 146.05212715358653, + 19.69429229573705 + ], + [ + 145.31677225819482, + 19.714720627079508 + ], + [ + 144.58099268826675, + 19.731660977058525 + ], + [ + 143.8446826130986, + 19.745165949584045 + ], + [ + 143.10771828903637, + 19.7552974947138 + ], + [ + 142.36995442511397, + 19.76212919146411 + ], + [ + 141.63121965863974, + 19.765749214107966 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -90104,168 +90104,168 @@ "coordinates": [ [ [ - 132.0121539622109, - -5.5395539712429125 + 123, + 8.162533854955067 ], [ - 131.72820990741195, - -4.896562751656485 + 123.29885164248986, + 7.530390021971784 ], [ - 131.4447267842503, - -4.254708312632609 + 123.59629527082154, + 6.898735635532036 ], [ - 131.16161901356156, - -3.613970768281394 + 123.89240220049885, + 6.267375132306939 ], [ - 130.87880195269753, - -2.9743298550319404 + 124.1872472734758, + 5.636140955798864 ], [ - 130.5961917747536, - -2.3357648565162563 + 124.48090772296814, + 5.004888485608272 ], [ - 130.31370534982545, - -1.6982545161551712 + 124.77346237711629, + 4.3734920079586175 ], [ - 130.03126012788243, - -1.0617769353137694 + 125.06499110459856, + 3.7418414882244706 ], [ - 129.74877402286756, - -0.42630945444008767 + 125.35557443437722, + 3.1098399666444827 ], [ - 129.20381863135572, - 0.014556886277891262 + 125.90945960168006, + 2.665248288661105 ], [ - 128.65782888940686, - 0.4554068187673846 + 126.46184910321176, + 2.2218651838138572 ], [ - 128.11071886569243, - 0.8963863812880779 + 127.01280725516892, + 1.7794162308255073 ], [ 127.56240509141048, 1.3376605873804597 ], [ - 127.01280725516892, - 1.77941623082552 + 128.11071886569243, + 0.8963863812880779 ], [ - 126.46184910321176, - 2.2218651838138572 + 128.65782888940686, + 0.4554068187673846 ], [ - 125.90945960168, - 2.665248288661092 + 129.20381863135572, + 0.01455688627790404 ], [ - 125.35557443437716, - 3.10983996664447 + 129.74877402286756, + -0.42630945444008767 ], [ - 125.0583898202791, - 2.563360867460993 + 130.0457945503805, + 0.13292275320977567 ], [ - 124.7620676776977, - 2.017379137419062 + 130.34359093942055, + 0.6925672169305193 ], [ - 124.46657012644158, - 1.471833293128459 + 130.64218764960935, + 1.2526762337456925 ], [ - 124.17185733748966, - 0.9266645541039171 + 130.94160638375365, + 1.8133037611419724 ], [ - 123.87788774375184, - 0.38181668468207636 + 131.24186582112253, + 2.3745054856601358 ], [ - 123.58461822058348, - -0.1627641552748554 + 131.54298131723925, + 2.936338892013408 ], [ - 123.29200423974515, - -0.7071295512160308 + 131.84496456637805, + 3.498863332272648 ], [ - 123, - -1.251328966632093 + 132.1478232224797, + 4.0621400945523005 ], [ - 123.47755001279882, - -1.7910707032452284 + 131.68253208209399, + 4.578278183193922 ], [ - 123.9542390034718, - -2.3296810820991354 + 131.2161312749326, + 5.093527371445848 ], [ - 124.43012946752907, - -2.8673976099778504 + 130.74851339638042, + 5.607938518432806 ], [ - 124.90529082583686, - -3.4044316034361284 + 130.27956962063018, + 6.1215707773920744 ], [ - 125.37979825231525, - -3.94097154090935 + 129.80918955775473, + 6.634493101618335 ], [ - 125.85373174364491, - -4.477185926411779 + 129.33726113269398, + 7.146786076626605 ], [ - 126.32717538289091, - -5.0132257437538845 + 128.86367050097851, + 7.658544161959729 ], [ - 126.80021675916555, - -5.54922656622571 + 128.38830202323254, + 8.169878451075492 ], [ - 127.45339016572893, - -5.553211251936401 + 127.71812165240743, + 8.155493059284456 ], [ - 128.10614007269737, - -5.555393280052681 + 127.04677120801591, + 8.144050026715409 ], [ - 128.75843208913295, - -5.555941070749144 + 126.37432830257842, + 8.135956991156377 ], [ - 129.41023687942027, - -5.5550155248441495 + 125.70089036514293, + 8.131655257677641 ], [ - 130.06152979340732, - -5.552770373117133 + 125.02657748264079, + 8.131622689803521 ], [ - 130.71229052089836, - -5.549352511082709 + 124.35153560209903, + 8.13637681882015 ], [ - 131.36250276916803, - -5.544902319538789 + 123.67594013398991, + 8.146478176724946 ], [ - 132.0121539622109, - -5.5395539712429125 + 123, + 8.162533854955067 ] ] ] @@ -90281,168 +90281,168 @@ "coordinates": [ [ [ - 123, - 8.162533854955067 + 132.0121539622109, + -5.5395539712429125 ], [ - 123.29885164248986, - 7.530390021971784 + 131.72820990741195, + -4.896562751656485 ], [ - 123.59629527082154, - 6.898735635532036 + 131.4447267842503, + -4.254708312632609 ], [ - 123.89240220049885, - 6.267375132306939 + 131.16161901356156, + -3.613970768281394 ], [ - 124.1872472734758, - 5.636140955798864 + 130.87880195269753, + -2.9743298550319404 ], [ - 124.48090772296814, - 5.004888485608272 + 130.5961917747536, + -2.3357648565162563 ], [ - 124.77346237711629, - 4.3734920079586175 + 130.31370534982545, + -1.6982545161551712 ], [ - 125.06499110459856, - 3.7418414882244706 + 130.03126012788243, + -1.0617769353137694 ], [ - 125.35557443437722, - 3.1098399666444827 + 129.74877402286756, + -0.42630945444008767 ], [ - 125.90945960168006, - 2.665248288661105 + 129.20381863135572, + 0.014556886277891262 ], [ - 126.46184910321176, - 2.2218651838138572 + 128.65782888940686, + 0.4554068187673846 ], [ - 127.01280725516892, - 1.7794162308255073 + 128.11071886569243, + 0.8963863812880779 ], [ 127.56240509141048, 1.3376605873804597 ], [ - 128.11071886569243, - 0.8963863812880779 + 127.01280725516892, + 1.77941623082552 ], [ - 128.65782888940686, - 0.4554068187673846 + 126.46184910321176, + 2.2218651838138572 ], [ - 129.20381863135572, - 0.01455688627790404 + 125.90945960168, + 2.665248288661092 ], [ - 129.74877402286756, - -0.42630945444008767 + 125.35557443437716, + 3.10983996664447 ], [ - 130.0457945503805, - 0.13292275320977567 + 125.0583898202791, + 2.563360867460993 ], [ - 130.34359093942055, - 0.6925672169305193 + 124.7620676776977, + 2.017379137419062 ], [ - 130.64218764960935, - 1.2526762337456925 + 124.46657012644158, + 1.471833293128459 ], [ - 130.94160638375365, - 1.8133037611419724 + 124.17185733748966, + 0.9266645541039171 ], [ - 131.24186582112253, - 2.3745054856601358 + 123.87788774375184, + 0.38181668468207636 ], [ - 131.54298131723925, - 2.936338892013408 + 123.58461822058348, + -0.1627641552748554 ], [ - 131.84496456637805, - 3.498863332272648 + 123.29200423974515, + -0.7071295512160308 ], [ - 132.1478232224797, - 4.0621400945523005 + 123, + -1.251328966632093 ], [ - 131.68253208209399, - 4.578278183193922 + 123.47755001279882, + -1.7910707032452284 ], [ - 131.2161312749326, - 5.093527371445848 + 123.9542390034718, + -2.3296810820991354 ], [ - 130.74851339638042, - 5.607938518432806 + 124.43012946752907, + -2.8673976099778504 ], [ - 130.27956962063018, - 6.1215707773920744 + 124.90529082583686, + -3.4044316034361284 ], [ - 129.80918955775473, - 6.634493101618335 + 125.37979825231525, + -3.94097154090935 ], [ - 129.33726113269398, - 7.146786076626605 + 125.85373174364491, + -4.477185926411779 ], [ - 128.86367050097851, - 7.658544161959729 + 126.32717538289091, + -5.0132257437538845 ], [ - 128.38830202323254, - 8.169878451075492 + 126.80021675916555, + -5.54922656622571 ], [ - 127.71812165240743, - 8.155493059284456 + 127.45339016572893, + -5.553211251936401 ], [ - 127.04677120801591, - 8.144050026715409 + 128.10614007269737, + -5.555393280052681 ], [ - 126.37432830257842, - 8.135956991156377 + 128.75843208913295, + -5.555941070749144 ], [ - 125.70089036514293, - 8.131655257677641 + 129.41023687942027, + -5.5550155248441495 ], [ - 125.02657748264079, - 8.131622689803521 + 130.06152979340732, + -5.552770373117133 ], [ - 124.35153560209903, - 8.13637681882015 + 130.71229052089836, + -5.549352511082709 ], [ - 123.67594013398991, - 8.146478176724946 + 131.36250276916803, + -5.544902319538789 ], [ - 123, - 8.162533854955067 + 132.0121539622109, + -5.5395539712429125 ] ] ] @@ -90812,168 +90812,168 @@ "coordinates": [ [ [ - 104.36878034136026, - 19.765749214107977 + 96.0121539622109, + 5.539553971242925 ], [ - 103.90140687049427, - 19.225785625727074 + 96.45238668809253, + 6.087793807803679 ], [ - 103.43749584183229, - 18.68541240138084 + 96.89234614474196, + 6.635154413511085 ], [ - 102.97672599289336, - 18.144588368280502 + 97.33213661502634, + 7.181633078390141 ], [ - 102.51881076559812, - 17.60327707188238 + 97.7718625248765, + 7.7272273077118685 ], [ - 102.06349204783288, - 17.06144630435919 + 98.21162860961687, + 8.271934838413262 ], [ - 101.6105352155015, - 16.519067651621338 + 98.65154009197863, + 8.815753660725935 ], [ - 101.15972516946277, - 15.976116072179927 + 99.09170287427969, + 9.358682045737744 ], [ - 100.71086314054935, - 15.432569513598832 + 99.53222374775896, + 9.900718579752127 ], [ - 100.55946369837375, - 14.736667324306035 + 99.67737019605238, + 10.588577127466552 ], [ - 100.4098459201964, - 14.042272970301052 + 99.82267215124978, + 11.277258787061955 ], [ - 100.26165509351574, - 13.349255364037285 + 99.96833289253038, + 11.966861909755407 ], [ 100.11457722173395, 12.657490651991083 ], [ - 99.96833289253038, - 11.966861909755407 + 100.26165509351574, + 13.349255364037285 ], [ - 99.82267215124978, - 11.277258787061955 + 100.4098459201964, + 14.04227297030104 ], [ - 99.67737019605238, - 10.588577127466564 + 100.55946369837375, + 14.736667324306048 ], [ - 99.53222374775896, - 9.900718579752127 + 100.71086314054935, + 15.432569513598832 ], [ - 100.17256670648305, - 9.889032056621277 + 100.06842667997307, + 15.452327485475811 ], [ - 100.81358684311812, - 9.875639674799217 + 99.4266869250165, + 15.469948271005148 ], [ - 101.45532370259411, - 9.860598657256052 + 98.78559476458082, + 15.485386078981907 ], [ - 102.09781745861352, - 9.843969918200433 + 98.1451031071307, + 15.498598325219568 ], [ - 102.74110886776737, - 9.825818363993019 + 97.50516680970344, + 15.509545341788535 ], [ - 103.38523921097328, - 9.806213221338936 + 96.86574260413374, + 15.518190115739813 ], [ - 104.0302502203532, - 9.785228395433935 + 96.22678902150619, + 15.524498054055087 ], [ - 104.67618398940124, - 9.762942861013215 + 95.58826631565478, + 15.528436771949783 ], [ - 104.93592918577667, - 10.409013093694051 + 95.32982689973971, + 14.851750552251762 ], [ - 105.19601553594839, - 11.054993179670094 + 95.07334314816751, + 14.17622358685069 ], [ - 105.45657645100175, - 11.7009359705366 + 94.81846534184194, + 13.501761209659417 ], [ - 105.71775449767881, - 12.346898615736352 + 94.56487718047481, + 12.828273363583499 ], [ - 105.97970315563532, - 12.992943138130645 + 94.31229110539192, + 12.155674492187925 ], [ - 106.24258894961929, - 13.639137096939216 + 94.06044432880287, + 11.483883385302683 ], [ - 106.50659405641636, - 14.28555435148957 + 93.80909544908383, + 10.812822995957783 ], [ - 106.77191951737115, - 14.932275940698919 + 93.55802155392638, + 10.142420241197168 ], [ - 106.46338629722607, - 15.527609686251594 + 93.86635838763198, + 9.56520038636242 ], [ - 106.15632672608666, - 16.12531269776455 + 94.17442008872627, + 8.988583391237452 ], [ - 105.8511041831132, - 16.725469782291118 + 94.48210907230543, + 8.41253334488512 ], [ - 105.54812785912873, - 17.32816270511035 + 94.78933690645908, + 7.837014663183392 ], [ - 105.24785796639458, - 17.933469014606075 + 95.09602367418313, + 7.261992101872218 ], [ - 104.95081152607963, - 18.54146064245088 + 95.40209738005092, + 6.687430765950824 ], [ - 104.65756878828313, - 19.15220224104704 + 95.70749339868064, + 6.113296115912781 ], [ - 104.36878034136026, - 19.765749214107977 + 96.0121539622109, + 5.539553971242925 ] ] ] @@ -90989,168 +90989,168 @@ "coordinates": [ [ [ - 96.0121539622109, - 5.539553971242925 + 104.36878034136026, + 19.765749214107977 ], [ - 96.45238668809253, - 6.087793807803679 + 103.90140687049427, + 19.225785625727074 ], [ - 96.89234614474196, - 6.635154413511085 + 103.43749584183229, + 18.68541240138084 ], [ - 97.33213661502634, - 7.181633078390141 + 102.97672599289336, + 18.144588368280502 ], [ - 97.7718625248765, - 7.7272273077118685 + 102.51881076559812, + 17.60327707188238 ], [ - 98.21162860961687, - 8.271934838413262 + 102.06349204783288, + 17.06144630435919 ], [ - 98.65154009197863, - 8.815753660725935 + 101.6105352155015, + 16.519067651621338 ], [ - 99.09170287427969, - 9.358682045737744 + 101.15972516946277, + 15.976116072179927 ], [ - 99.53222374775896, - 9.900718579752127 + 100.71086314054935, + 15.432569513598832 ], [ - 99.67737019605238, - 10.588577127466552 + 100.55946369837375, + 14.736667324306035 ], [ - 99.82267215124978, - 11.277258787061955 + 100.4098459201964, + 14.042272970301052 ], [ - 99.96833289253038, - 11.966861909755407 + 100.26165509351574, + 13.349255364037285 ], [ 100.11457722173395, 12.657490651991083 ], [ - 100.26165509351574, - 13.349255364037285 + 99.96833289253038, + 11.966861909755407 ], [ - 100.4098459201964, - 14.04227297030104 + 99.82267215124978, + 11.277258787061955 ], [ - 100.55946369837375, - 14.736667324306048 + 99.67737019605238, + 10.588577127466564 ], [ - 100.71086314054935, - 15.432569513598832 + 99.53222374775896, + 9.900718579752127 ], [ - 100.06842667997307, - 15.452327485475811 + 100.17256670648305, + 9.889032056621277 ], [ - 99.4266869250165, - 15.469948271005148 + 100.81358684311812, + 9.875639674799217 ], [ - 98.78559476458082, - 15.485386078981907 + 101.45532370259411, + 9.860598657256052 ], [ - 98.1451031071307, - 15.498598325219568 + 102.09781745861352, + 9.843969918200433 ], [ - 97.50516680970344, - 15.509545341788535 + 102.74110886776737, + 9.825818363993019 ], [ - 96.86574260413374, - 15.518190115739813 + 103.38523921097328, + 9.806213221338936 ], [ - 96.22678902150619, - 15.524498054055087 + 104.0302502203532, + 9.785228395433935 ], [ - 95.58826631565478, - 15.528436771949783 + 104.67618398940124, + 9.762942861013215 ], [ - 95.32982689973971, - 14.851750552251762 + 104.93592918577667, + 10.409013093694051 ], [ - 95.07334314816751, - 14.17622358685069 + 105.19601553594839, + 11.054993179670094 ], [ - 94.81846534184194, - 13.501761209659417 + 105.45657645100175, + 11.7009359705366 ], [ - 94.56487718047481, - 12.828273363583499 + 105.71775449767881, + 12.346898615736352 ], [ - 94.31229110539192, - 12.155674492187925 + 105.97970315563532, + 12.992943138130645 ], [ - 94.06044432880287, - 11.483883385302683 + 106.24258894961929, + 13.639137096939216 ], [ - 93.80909544908383, - 10.812822995957783 + 106.50659405641636, + 14.28555435148957 ], [ - 93.55802155392638, - 10.142420241197168 + 106.77191951737115, + 14.932275940698919 ], [ - 93.86635838763198, - 9.56520038636242 + 106.46338629722607, + 15.527609686251594 ], [ - 94.17442008872627, - 8.988583391237452 + 106.15632672608666, + 16.12531269776455 ], [ - 94.48210907230543, - 8.41253334488512 + 105.8511041831132, + 16.725469782291118 ], [ - 94.78933690645908, - 7.837014663183392 + 105.54812785912873, + 17.32816270511035 ], [ - 95.09602367418313, - 7.261992101872218 + 105.24785796639458, + 17.933469014606075 ], [ - 95.40209738005092, - 6.687430765950824 + 104.95081152607963, + 18.54146064245088 ], [ - 95.70749339868064, - 6.113296115912781 + 104.65756878828313, + 19.15220224104704 ], [ - 96.0121539622109, - 5.539553971242925 + 104.36878034136026, + 19.765749214107977 ] ] ] @@ -91692,183 +91692,6 @@ "properties": { "cellIdHex": "79a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 113.98784603778904, - -5.5395539712429125 - ], - [ - 114.45639607740355, - -5.0083937210814735 - ], - [ - 114.92497446144074, - -4.478017630542148 - ], - [ - 115.3936853139611, - -3.948374722313962 - ], - [ - 115.86263187655243, - -3.4194082786617157 - ], - [ - 116.3319165244335, - -2.891055108874824 - ], - [ - 116.80164075634968, - -2.3632447023815013 - ], - [ - 117.2719051518643, - -1.8358982472226881 - ], - [ - 117.74280928781297, - -1.308927489384315 - ], - [ - 117.91651809901794, - -0.6458218262692901 - ], - [ - 118.09018338716032, - 0.016296175764827607 - ], - [ - 118.26385809203714, - 0.6774493631904095 - ], - [ - 118.43759490858952, - 1.3376605873804597 - ], - [ - 118.61144635998465, - 1.996952752350545 - ], - [ - 118.78546487039199, - 2.6553488698728347 - ], - [ - 118.95970283774409, - 3.3128721235315823 - ], - [ - 119.13421270677924, - 3.9695459436732463 - ], - [ - 118.47079653080698, - 3.9740936906688304 - ], - [ - 117.80820028672156, - 3.981178330148658 - ], - [ - 117.14647746295498, - 3.9905139361273845 - ], - [ - 116.4856712911751, - 4.001832516138981 - ], - [ - 115.82581583255694, - 4.01488282638369 - ], - [ - 115.16693696063237, - 4.029429260903227 - ], - [ - 114.5090532497519, - 4.045250811444719 - ], - [ - 113.8521767775203, - 4.0621400945523005 - ], - [ - 113.57568354201169, - 3.4311290495609765 - ], - [ - 113.29933695416264, - 2.7991502175327345 - ], - [ - 113.02305948981723, - 2.1661921917062203 - ], - [ - 112.74677338408276, - 1.532243396145345 - ], - [ - 112.47040053633611, - 0.8972920790912999 - ], - [ - 112.19386241454436, - 0.2613263082885105 - ], - [ - 111.91707995854631, - -0.3756660320218461 - ], - [ - 111.63997348195528, - -1.0136972426827335 - ], - [ - 111.93597978597285, - -1.580040329675098 - ], - [ - 112.23121579921474, - -2.146125995764998 - ], - [ - 112.52570371450292, - -2.711996785024204 - ], - [ - 112.81946794366138, - -3.277694319908723 - ], - [ - 113.11253496919323, - -3.8432593346234527 - ], - [ - 113.40493321216343, - -4.4087317083281405 - ], - [ - 113.69669291496604, - -4.974150498056712 - ], - [ - 113.98784603778904, - -5.5395539712429125 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "79e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -92044,175 +91867,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "7a20000000000000" + "cellIdHex": "79e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 105, - 0 + 113.98784603778904, + -5.5395539712429125 ], [ - 105.45419131759877, - 0.5310724057521976 + 114.45639607740355, + -5.0083937210814735 ], [ - 105.90817706895035, - 1.060939551557435 + 114.92497446144074, + -4.478017630542148 ], [ - 106.36205549747774, - 1.5895975332289387 + 115.3936853139611, + -3.948374722313962 ], [ - 106.81592429134605, - 2.1170427308839774 + 115.86263187655243, + -3.4194082786617157 ], [ - 107.26988069195545, - 2.6432718489965294 + 116.3319165244335, + -2.891055108874824 ], [ - 107.72402160466095, - 3.1682819659542947 + 116.80164075634968, + -2.3632447023815013 ], [ - 108.17844371250305, - 3.692070594738621 + 117.2719051518643, + -1.8358982472226881 ], [ - 108.63324359383967, - 4.214635756699471 + 117.74280928781297, + -1.308927489384315 ], [ - 108.79063955530222, - 4.882568632135537 + 117.91651809901794, + -0.6458218262692901 ], [ - 108.94752520234033, - 5.550098782143663 + 118.09018338716032, + 0.016296175764827607 ], [ - 109.1039657701059, - 6.217268577321624 + 118.26385809203714, + 0.6774493631904095 ], [ - 109.26002837519957, - 6.8841225168171825 + 118.43759490858952, + 1.3376605873804597 ], [ - 109.41578246233155, - 7.550707512934453 + 118.61144635998465, + 1.996952752350545 ], [ - 109.57130032451664, - 8.217073218024874 + 118.78546487039199, + 2.6553488698728347 ], [ - 109.72665771393235, - 8.883272401048544 + 118.95970283774409, + 3.3128721235315823 ], [ - 109.88193456505019, - 9.549361382649163 + 119.13421270677924, + 3.9695459436732463 ], [ - 109.22710774490145, - 9.57843985604468 + 118.47079653080698, + 3.9740936906688304 ], [ - 108.57353483960537, - 9.607092613099738 + 117.80820028672156, + 3.981178330148658 ], [ - 107.92117709963213, - 9.635180855186503 + 117.14647746295498, + 3.9905139361273845 ], [ - 107.26999443513483, - 9.662575634479998 + 116.4856712911751, + 4.001832516138981 ], [ - 106.6199457641386, - 9.689157050390252 + 115.82581583255694, + 4.01488282638369 ], [ - 105.97098931138044, - 9.714813516199449 + 115.16693696063237, + 4.029429260903227 ], [ - 105.32308286398506, - 9.739441089552022 + 114.5090532497519, + 4.045250811444719 ], [ - 104.67618398940124, - 9.762942861013215 + 113.8521767775203, + 4.0621400945523005 ], [ - 104.41665423222219, - 9.116733427807851 + 113.57568354201169, + 3.4311290495609765 ], [ - 104.15722067545227, - 8.470339103107024 + 113.29933695416264, + 2.7991502175327345 ], [ - 103.8977695273918, - 7.823717180049912 + 113.02305948981723, + 2.1661921917062203 ], [ - 103.63819157002354, - 7.176827605625976 + 112.74677338408276, + 1.532243396145345 ], [ - 103.37838141191747, - 6.529632692281432 + 112.47040053633611, + 0.8972920790912999 ], [ - 103.1182368443142, - 5.882096865730695 + 112.19386241454436, + 0.2613263082885105 ], [ - 102.85765828182787, - 5.234186444131015 + 111.91707995854631, + -0.3756660320218461 ], [ - 102.59654827278672, - 4.5858694444802 + 111.63997348195528, + -1.0136972426827335 ], [ - 102.89999405871362, - 4.01108523472533 + 111.93597978597285, + -1.580040329675098 ], [ - 103.2026160420993, - 3.436825732891527 + 112.23121579921474, + -2.146125995764998 ], [ - 103.50438970764185, - 2.8630493306059432 + 112.52570371450292, + -2.711996785024204 ], [ - 103.80529546243304, - 2.289715029829303 + 112.81946794366138, + -3.277694319908723 ], [ - 104.10531826743443, - 1.716782439709283 + 113.11253496919323, + -3.8432593346234527 ], [ - 104.4044472995426, - 1.1442117709619075 + 113.40493321216343, + -4.4087317083281405 ], [ - 104.70267564186202, - 0.5719638281265695 + 113.69669291496604, + -4.974150498056712 ], [ - 105, - 0 + 113.98784603778904, + -5.5395539712429125 ] ] ] @@ -92221,7 +92044,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "7a60000000000000" + "cellIdHex": "7a20000000000000" }, "geometry": { "type": "Polygon", @@ -92395,6 +92218,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "7a60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105, + 0 + ], + [ + 105.45419131759877, + 0.5310724057521976 + ], + [ + 105.90817706895035, + 1.060939551557435 + ], + [ + 106.36205549747774, + 1.5895975332289387 + ], + [ + 106.81592429134605, + 2.1170427308839774 + ], + [ + 107.26988069195545, + 2.6432718489965294 + ], + [ + 107.72402160466095, + 3.1682819659542947 + ], + [ + 108.17844371250305, + 3.692070594738621 + ], + [ + 108.63324359383967, + 4.214635756699471 + ], + [ + 108.79063955530222, + 4.882568632135537 + ], + [ + 108.94752520234033, + 5.550098782143663 + ], + [ + 109.1039657701059, + 6.217268577321624 + ], + [ + 109.26002837519957, + 6.8841225168171825 + ], + [ + 109.41578246233155, + 7.550707512934453 + ], + [ + 109.57130032451664, + 8.217073218024874 + ], + [ + 109.72665771393235, + 8.883272401048544 + ], + [ + 109.88193456505019, + 9.549361382649163 + ], + [ + 109.22710774490145, + 9.57843985604468 + ], + [ + 108.57353483960537, + 9.607092613099738 + ], + [ + 107.92117709963213, + 9.635180855186503 + ], + [ + 107.26999443513483, + 9.662575634479998 + ], + [ + 106.6199457641386, + 9.689157050390252 + ], + [ + 105.97098931138044, + 9.714813516199449 + ], + [ + 105.32308286398506, + 9.739441089552022 + ], + [ + 104.67618398940124, + 9.762942861013215 + ], + [ + 104.41665423222219, + 9.116733427807851 + ], + [ + 104.15722067545227, + 8.470339103107024 + ], + [ + 103.8977695273918, + 7.823717180049912 + ], + [ + 103.63819157002354, + 7.176827605625976 + ], + [ + 103.37838141191747, + 6.529632692281432 + ], + [ + 103.1182368443142, + 5.882096865730695 + ], + [ + 102.85765828182787, + 5.234186444131015 + ], + [ + 102.59654827278672, + 4.5858694444802 + ], + [ + 102.89999405871362, + 4.01108523472533 + ], + [ + 103.2026160420993, + 3.436825732891527 + ], + [ + 103.50438970764185, + 2.8630493306059432 + ], + [ + 103.80529546243304, + 2.289715029829303 + ], + [ + 104.10531826743443, + 1.716782439709283 + ], + [ + 104.4044472995426, + 1.1442117709619075 + ], + [ + 104.70267564186202, + 0.5719638281265695 + ], + [ + 105, + 0 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -94524,6 +94524,183 @@ "properties": { "cellIdHex": "7da0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 87, + 31.832359041336087 + ], + [ + 87.80844288101412, + 31.721194659549543 + ], + [ + 88.61357392322407, + 31.604582790778085 + ], + [ + 89.41535908629737, + 31.482580550439298 + ], + [ + 90.21376753648633, + 31.3552451344781 + ], + [ + 91.00877173475811, + 31.22263377455108 + ], + [ + 91.80034753008408, + 31.084803692958324 + ], + [ + 92.58847426000023, + 30.94181205743924 + ], + [ + 93.37313486095212, + 30.793715935971456 + ], + [ + 94.14093579759287, + 30.971856296684983 + ], + [ + 94.91074326869227, + 31.145995798417918 + ], + [ + 95.68258557070806, + 31.31610135117865 + ], + [ + 96.45649257601144, + 31.482138275789097 + ], + [ + 97.23249617497783, + 31.644070044283815 + ], + [ + 98.01063078876376, + 31.801857964474102 + ], + [ + 98.79093396586649, + 31.95546079552111 + ], + [ + 99.57344707838553, + 32.1048342777988 + ], + [ + 99.27555799919543, + 32.70136119911467 + ], + [ + 98.97524203981266, + 33.29625538990687 + ], + [ + 98.67222472521371, + 33.88947500120837 + ], + [ + 98.36623404454747, + 34.4809826048604 + ], + [ + 98.05699964057266, + 35.07074445283176 + ], + [ + 97.74425202909583, + 35.65872980855368 + ], + [ + 97.4277218447769, + 36.24491034158464 + ], + [ + 97.10713910985169, + 36.82925957785007 + ], + [ + 96.2463053484201, + 36.77449924548527 + ], + [ + 95.38631797197274, + 36.71429009262621 + ], + [ + 94.52719669165151, + 36.64866229494072 + ], + [ + 93.66896454692471, + 36.57764317919424 + ], + [ + 92.81164730088949, + 36.501257721210834 + ], + [ + 91.95527290412872, + 36.41952896020167 + ], + [ + 91.09987101743258, + 36.332478344236655 + ], + [ + 90.24547258529537, + 36.24012601872458 + ], + [ + 89.82011394798315, + 35.69150739527283 + ], + [ + 89.4009695320483, + 35.14203838030864 + ], + [ + 88.98772753553186, + 34.59181738547323 + ], + [ + 88.58008885974175, + 34.04093498053776 + ], + [ + 88.1777665700713, + 33.48947446435056 + ], + [ + 87.78048536277856, + 32.937512394928845 + ], + [ + 87.3879810406699, + 32.38511908152551 + ], + [ + 87, + 31.832359041336087 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "7de0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -94699,7 +94876,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "7de0000000000000" + "cellIdHex": "7e20000000000000" }, "geometry": { "type": "Polygon", @@ -94707,167 +94884,167 @@ [ [ 87, - 31.832359041336087 + 21.27100957285516 ], [ - 87.80844288101412, - 31.721194659549543 + 87.74385631106134, + 21.144564331659375 ], [ - 88.61357392322407, - 31.604582790778085 + 88.48583271994357, + 21.01362761147115 ], [ - 89.41535908629737, - 31.482580550439298 + 89.22598293513408, + 20.878258484479932 ], [ - 90.21376753648633, - 31.3552451344781 + 89.96436758354264, + 20.738518145942958 ], [ - 91.00877173475811, - 31.22263377455108 + 90.70105488766751, + 20.594470268877753 ], [ - 91.80034753008408, - 31.084803692958324 + 91.43612143676944, + 20.446181427293297 ], [ - 92.58847426000023, - 30.94181205743924 + 92.16965306836778, + 20.293721602267034 ], [ - 93.37313486095212, - 30.793715935971456 + 92.9017458795289, + 20.13716478851835 ], [ - 94.14093579759287, - 30.971856296684983 + 93.60684465204906, + 20.30422316798285 ], [ - 94.91074326869227, - 31.145995798417918 + 94.31251336652042, + 20.46797348153037 ], [ - 95.68258557070806, - 31.31610135117865 + 95.01876503908147, + 20.62840455173058 ], [ - 96.45649257601144, - 31.482138275789097 + 95.72561194773937, + 20.7855052935926 ], [ - 97.23249617497783, - 31.644070044283815 + 96.4330656942767, + 20.93926473348562 ], [ - 98.01063078876376, - 31.801857964474102 + 97.141137274367, + 21.089672029966017 ], [ - 98.79093396586649, - 31.95546079552111 + 97.84983715758699, + 21.236716496944144 ], [ - 99.57344707838553, - 32.1048342777988 + 98.55917537940525, + 21.380387629741133 ], [ - 99.27555799919543, - 32.70136119911467 + 98.23983060898746, + 21.973822550186256 ], [ - 98.97524203981266, - 33.29625538990687 + 97.92117598261507, + 22.567259162930156 ], [ - 98.67222472521371, - 33.88947500120837 + 97.60290390862019, + 23.16050809898654 ], [ - 98.36623404454747, - 34.4809826048604 + 97.28471557939753, + 23.753396537845475 ], [ - 98.05699964057266, - 35.07074445283176 + 96.9663202261338, + 24.345766646986494 ], [ - 97.74425202909583, - 35.65872980855368 + 96.64743439556332, + 24.93747414876025 ], [ - 97.4277218447769, - 36.24491034158464 + 96.32778124932008, + 25.528387004446458 ], [ - 97.10713910985169, - 36.82925957785007 + 96.00708988602287, + 26.118384205901382 ], [ - 96.2463053484201, - 36.77449924548527 + 95.24571531017443, + 26.068989845087888 ], [ - 95.38631797197274, - 36.71429009262621 + 94.4840322298275, + 26.01537752420747 ], [ - 94.52719669165151, - 36.64866229494072 + 93.72206293111128, + 25.9575418981803 ], [ - 93.66896454692471, - 36.57764317919424 + 92.95982928771281, + 25.89547797877167 ], [ - 92.81164730088949, - 36.501257721210834 + 92.1973526975886, + 25.829181128494586 ], [ - 91.95527290412872, - 36.41952896020167 + 91.4346540221618, + 25.75864705389688 ], [ - 91.09987101743258, - 36.332478344236655 + 90.67175352764025, + 25.683871798232722 ], [ - 90.24547258529537, - 36.24012601872458 + 89.90867082816328, + 25.604851733521752 ], [ - 89.82011394798315, - 35.69150739527283 + 89.53599528714756, + 25.06311027085925 ], [ - 89.4009695320483, - 35.14203838030864 + 89.16626087126838, + 24.521322329435705 ], [ - 88.98772753553186, - 34.59181738547323 + 88.79928812611047, + 23.979516316177882 ], [ - 88.58008885974175, - 34.04093498053776 + 88.43490403845891, + 23.437717587283096 ], [ - 88.1777665700713, - 33.48947446435056 + 88.07294168141891, + 22.89594870297362 ], [ - 87.78048536277856, - 32.937512394928845 + 87.71323987512642, + 22.354229661868235 ], [ - 87.3879810406699, - 32.38511908152551 + 87.35564286256982, + 21.812578116686264 ], [ 87, - 31.832359041336087 + 21.27100957285516 ] ] ] @@ -94876,7 +95053,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "7e20000000000000" + "cellIdHex": "7e60000000000000" }, "geometry": { "type": "Polygon", @@ -95050,183 +95227,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "7e60000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 87, - 21.27100957285516 - ], - [ - 87.74385631106134, - 21.144564331659375 - ], - [ - 88.48583271994357, - 21.01362761147115 - ], - [ - 89.22598293513408, - 20.878258484479932 - ], - [ - 89.96436758354264, - 20.738518145942958 - ], - [ - 90.70105488766751, - 20.594470268877753 - ], - [ - 91.43612143676944, - 20.446181427293297 - ], - [ - 92.16965306836778, - 20.293721602267034 - ], - [ - 92.9017458795289, - 20.13716478851835 - ], - [ - 93.60684465204906, - 20.30422316798285 - ], - [ - 94.31251336652042, - 20.46797348153037 - ], - [ - 95.01876503908147, - 20.62840455173058 - ], - [ - 95.72561194773937, - 20.7855052935926 - ], - [ - 96.4330656942767, - 20.93926473348562 - ], - [ - 97.141137274367, - 21.089672029966017 - ], - [ - 97.84983715758699, - 21.236716496944144 - ], - [ - 98.55917537940525, - 21.380387629741133 - ], - [ - 98.23983060898746, - 21.973822550186256 - ], - [ - 97.92117598261507, - 22.567259162930156 - ], - [ - 97.60290390862019, - 23.16050809898654 - ], - [ - 97.28471557939753, - 23.753396537845475 - ], - [ - 96.9663202261338, - 24.345766646986494 - ], - [ - 96.64743439556332, - 24.93747414876025 - ], - [ - 96.32778124932008, - 25.528387004446458 - ], - [ - 96.00708988602287, - 26.118384205901382 - ], - [ - 95.24571531017443, - 26.068989845087888 - ], - [ - 94.4840322298275, - 26.01537752420747 - ], - [ - 93.72206293111128, - 25.9575418981803 - ], - [ - 92.95982928771281, - 25.89547797877167 - ], - [ - 92.1973526975886, - 25.829181128494586 - ], - [ - 91.4346540221618, - 25.75864705389688 - ], - [ - 90.67175352764025, - 25.683871798232722 - ], - [ - 89.90867082816328, - 25.604851733521752 - ], - [ - 89.53599528714756, - 25.06311027085925 - ], - [ - 89.16626087126838, - 24.521322329435705 - ], - [ - 88.79928812611047, - 23.979516316177882 - ], - [ - 88.43490403845891, - 23.437717587283096 - ], - [ - 88.07294168141891, - 22.89594870297362 - ], - [ - 87.71323987512642, - 22.354229661868235 - ], - [ - 87.35564286256982, - 21.812578116686264 - ], - [ - 87, - 21.27100957285516 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -95768,168 +95768,168 @@ "coordinates": [ [ [ - 87, - 42.37830150075416 + 108.78835881211404, + 40.90439811308673 ], [ - 87.93611873882855, - 42.28385129983737 + 107.92658809773616, + 41.14857436118394 ], [ - 88.86796125920199, - 42.182555024874006 + 107.05966528298245, + 41.3861591161674 ], [ - 89.79541611134186, - 42.07448703477159 + 106.18748286898756, + 41.6172327861524 ], [ - 90.71837831218545, - 41.95972220341343 + 105.30995272379721, + 41.841847943788366 ], [ - 91.63674949669667, - 41.83833575925765 + 104.42700438130021, + 42.060034469851026 ], [ - 92.55043805809282, - 41.7104031150009 + 103.53858363336167, + 42.27180361956394 ], [ - 93.4593592790261, - 41.575999685857994 + 102.64465136440054, + 42.477151269020275 ], [ - 94.36343545612556, - 41.435200694602486 + 101.74518258553974, + 42.676060531926844 ], [ - 95.26535267658386, - 41.613799468904986 + 100.80076487410935, + 42.54624327782247 ], [ - 96.17297456352657, - 41.78613676546567 + 99.86282309363082, + 42.40861454411599 ], [ - 97.08641204674899, - 41.9520155649236 + 98.93120871931035, + 42.263507433395596 ], [ 98.00578215503924, 42.11121902793486 ], [ - 98.93120871931035, - 42.2635074333956 + 97.08641204674899, + 41.9520155649236 ], [ - 99.86282309363082, - 42.408614544116 + 96.17297456352657, + 41.78613676546567 ], [ - 100.80076487410935, - 42.54624327782248 + 95.26535267658386, + 41.613799468904986 ], [ - 101.74518258553974, - 42.676060531926844 + 94.36343545612556, + 41.435200694602486 ], [ - 101.45111234322655, - 43.257280224076474 + 94.72645975701943, + 40.86638028583459 ], [ - 101.15144905639556, - 43.83684620057652 + 95.08316702460434, + 40.29553110697899 ], [ - 100.8458910334092, - 44.41476570866769 + 95.43385670791588, + 39.722679890223446 ], [ - 100.53412868328633, - 44.991043632199506 + 95.77882226352483, + 39.14785212857437 ], [ - 100.21584356402724, - 45.565682298831824 + 96.11835180629362, + 38.571072378902 ], [ - 99.89070741585556, - 46.138681293123916 + 96.45272876180172, + 37.99236458136343 ], [ - 99.55838117429039, - 46.7100372724576 + 96.78223252250382, + 37.411752398525714 ], [ - 99.21851395810802, - 47.27974378301812 + 97.10713910985169, + 36.82925957785007 ], [ - 98.16303308620633, - 47.24677418802078 + 97.96880355834378, + 36.87853746504655 ], [ - 97.11123690531906, - 47.20441137008251 + 98.83128778830559, + 36.92229510782253 ], [ - 96.06317604387289, - 47.15292504558346 + 99.69458657677126, + 36.96048965172595 ], [ - 95.01890384730774, - 47.092557962266596 + 100.55870140541663, + 36.99307211367004 ], [ - 93.97847596423628, - 47.023529684367986 + 101.42364163926936, + 37.01998606714153 ], [ - 92.94194987226689, - 46.946039796042726 + 102.2894258925204, + 37.04116602319401 ], [ - 91.90938437037278, - 46.860270619625716 + 103.15608361854709, + 37.056535425204714 ], [ - 90.88083905763574, - 46.766389527751734 + 104.02365696949073, + 37.06600414949623 ], [ - 90.35814368490401, - 46.22557370755462 + 104.5729501958773, + 37.56550354605934 ], [ - 89.84725480037343, - 45.682150261281706 + 105.13436966265522, + 38.06051287293091 ], [ - 89.34761211182672, - 45.13634230037489 + 105.70845868972935, + 38.550531438483986 ], [ - 88.85867736039665, - 44.588357247593 + 106.29576934410181, + 39.03500772633549 ], [ - 88.37993394394829, - 44.03838786790545 + 106.89685903721215, + 39.51333453918161 ], [ - 87.91088644050956, - 43.48661323805234 + 107.51228622640036, + 39.9848437568858 ], [ - 87.45106005385526, - 42.933199657132036 + 108.14260506319027, + 40.4488007019546 ], [ - 87, - 42.37830150075416 + 108.78835881211404, + 40.90439811308673 ] ] ] @@ -95945,168 +95945,168 @@ "coordinates": [ [ [ - 108.78835881211404, - 40.90439811308673 + 87, + 42.37830150075416 ], [ - 107.92658809773616, - 41.14857436118394 + 87.93611873882855, + 42.28385129983737 ], [ - 107.05966528298245, - 41.3861591161674 + 88.86796125920199, + 42.182555024874006 ], [ - 106.18748286898756, - 41.6172327861524 + 89.79541611134186, + 42.07448703477159 ], [ - 105.30995272379721, - 41.841847943788366 + 90.71837831218545, + 41.95972220341343 ], [ - 104.42700438130021, - 42.060034469851026 + 91.63674949669667, + 41.83833575925765 ], [ - 103.53858363336167, - 42.27180361956394 + 92.55043805809282, + 41.7104031150009 ], [ - 102.64465136440054, - 42.477151269020275 + 93.4593592790261, + 41.575999685857994 ], [ - 101.74518258553974, - 42.676060531926844 + 94.36343545612556, + 41.435200694602486 ], [ - 100.80076487410935, - 42.54624327782247 + 95.26535267658386, + 41.613799468904986 ], [ - 99.86282309363082, - 42.40861454411599 + 96.17297456352657, + 41.78613676546567 ], [ - 98.93120871931035, - 42.263507433395596 + 97.08641204674899, + 41.9520155649236 ], [ 98.00578215503924, 42.11121902793486 ], [ - 97.08641204674899, - 41.9520155649236 + 98.93120871931035, + 42.2635074333956 ], [ - 96.17297456352657, - 41.78613676546567 + 99.86282309363082, + 42.408614544116 ], [ - 95.26535267658386, - 41.613799468904986 + 100.80076487410935, + 42.54624327782248 ], [ - 94.36343545612556, - 41.435200694602486 + 101.74518258553974, + 42.676060531926844 ], [ - 94.72645975701943, - 40.86638028583459 + 101.45111234322655, + 43.257280224076474 ], [ - 95.08316702460434, - 40.29553110697899 + 101.15144905639556, + 43.83684620057652 ], [ - 95.43385670791588, - 39.722679890223446 + 100.8458910334092, + 44.41476570866769 ], [ - 95.77882226352483, - 39.14785212857437 + 100.53412868328633, + 44.991043632199506 ], [ - 96.11835180629362, - 38.571072378902 + 100.21584356402724, + 45.565682298831824 ], [ - 96.45272876180172, - 37.99236458136343 + 99.89070741585556, + 46.138681293123916 ], [ - 96.78223252250382, - 37.411752398525714 + 99.55838117429039, + 46.7100372724576 ], [ - 97.10713910985169, - 36.82925957785007 + 99.21851395810802, + 47.27974378301812 ], [ - 97.96880355834378, - 36.87853746504655 + 98.16303308620633, + 47.24677418802078 ], [ - 98.83128778830559, - 36.92229510782253 + 97.11123690531906, + 47.20441137008251 ], [ - 99.69458657677126, - 36.96048965172595 + 96.06317604387289, + 47.15292504558346 ], [ - 100.55870140541663, - 36.99307211367004 + 95.01890384730774, + 47.092557962266596 ], [ - 101.42364163926936, - 37.01998606714153 + 93.97847596423628, + 47.023529684367986 ], [ - 102.2894258925204, - 37.04116602319401 + 92.94194987226689, + 46.946039796042726 ], [ - 103.15608361854709, - 37.056535425204714 + 91.90938437037278, + 46.860270619625716 ], [ - 104.02365696949073, - 37.06600414949623 + 90.88083905763574, + 46.766389527751734 ], [ - 104.5729501958773, - 37.56550354605934 + 90.35814368490401, + 46.22557370755462 ], [ - 105.13436966265522, - 38.06051287293091 + 89.84725480037343, + 45.682150261281706 ], [ - 105.70845868972935, - 38.550531438483986 + 89.34761211182672, + 45.13634230037489 ], [ - 106.29576934410181, - 39.03500772633549 + 88.85867736039665, + 44.588357247593 ], [ - 106.89685903721215, - 39.51333453918161 + 88.37993394394829, + 44.03838786790545 ], [ - 107.51228622640036, - 39.9848437568858 + 87.91088644050956, + 43.48661323805234 ], [ - 108.14260506319027, - 40.4488007019546 + 87.45106005385526, + 42.933199657132036 ], [ - 108.78835881211404, - 40.90439811308673 + 87, + 42.37830150075416 ] ] ] @@ -103020,183 +103020,6 @@ "properties": { "cellIdHex": "9da0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 159, - -42.398946362806555 - ], - [ - 158.84790853253236, - -43.068449938933725 - ], - [ - 158.69271651406473, - -43.73813347451768 - ], - [ - 158.5342698271608, - -44.40803021061849 - ], - [ - 158.3724046851745, - -45.07817059917287 - ], - [ - 158.20694697243198, - -45.74858270294689 - ], - [ - 158.0377114929206, - -46.41929250414428 - ], - [ - 157.86450112535096, - -47.09032414113719 - ], - [ - 157.68710587973368, - -47.76170008770643 - ], - [ - 158.0039755717056, - -48.40822394298015 - ], - [ - 158.32816655176526, - -49.054142261336565 - ], - [ - 158.66004415093312, - -49.699491040606794 - ], - [ - 159, - -50.34429896479682 - ], - [ - 159.34845362613112, - -50.988587863690306 - ], - [ - 159.70585430595128, - -51.63237305328782 - ], - [ - 160.07268318142656, - -52.275663571293514 - ], - [ - 160.44945565043002, - -52.91846231840445 - ], - [ - 161.35672316958795, - -52.57833611076986 - ], - [ - 162.2509223637291, - -52.23053739854509 - ], - [ - 163.13201167409022, - -51.87511935393242 - ], - [ - 163.99995110805958, - -51.51213145795045 - ], - [ - 164.85470075624914, - -51.14161946999428 - ], - [ - 165.69621929016358, - -50.763625424546504 - ], - [ - 166.5244624386362, - -50.37818765636516 - ], - [ - 167.33938144048233, - -49.98534085570774 - ], - [ - 167.0666801535201, - -49.32379533709943 - ], - [ - 166.80172971848117, - -48.66232147039744 - ], - [ - 166.54414203487863, - -48.00092503417989 - ], - [ - 166.29355321762705, - -47.33960967093194 - ], - [ - 166.0496217191714, - -46.67837701924976 - ], - [ - 165.8120266146144, - -46.01722682319967 - ], - [ - 165.58046603252086, - -45.356157018845494 - ], - [ - 165.3546557156866, - -44.69516379727326 - ], - [ - 164.53876060745938, - -44.43484341134727 - ], - [ - 163.72871006023638, - -44.1671289333702 - ], - [ - 162.9246442395409, - -43.891915607250105 - ], - [ - 162.1267157327312, - -43.60908840866591 - ], - [ - 161.33509187022872, - -43.31852142969875 - ], - [ - 160.54995734401132, - -43.020077254658126 - ], - [ - 159.7715171641472, - -42.71360633366738 - ], - [ - 159, - -42.398946362806555 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "9de0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -103372,175 +103195,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "9e20000000000000" + "cellIdHex": "9de0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 173.2116411878859, - -40.904398113086714 + 159, + -42.398946362806555 ], [ - 173.23383612135706, - -41.621465989657764 + 158.84790853253236, + -43.068449938933725 ], [ - 173.25447437021683, - -42.335704001482014 + 158.69271651406473, + -43.73813347451768 ], [ - 173.27407833505168, - -43.04746546164411 + 158.5342698271608, + -44.40803021061849 ], [ - 173.2930961029507, - -43.757062229312815 + 158.3724046851745, + -45.07817059917287 ], [ - 173.31191701679575, - -44.46477081420243 + 158.20694697243198, + -45.74858270294689 ], [ - 173.3308839550598, - -45.170837482342286 + 158.0377114929206, + -46.41929250414428 ], [ - 173.35030311987975, - -45.87548253731607 + 157.86450112535096, + -47.09032414113719 ], [ - 173.3704519259049, - -46.578903920274364 + 157.68710587973368, + -47.76170008770643 ], [ - 173.84795987008903, - -47.17091940044917 + 158.0039755717056, + -48.40822394298015 ], [ - 174.33705218099277, - -47.761399221080076 + 158.32816655176526, + -49.054142261336565 ], [ - 174.83823167642606, - -48.35026996422033 + 158.66004415093312, + -49.699491040606794 ], [ - 175.3520259675998, - -48.937452016875476 + 159, + -50.34429896479682 ], [ - 175.87898888394545, - -49.52285922712052 + 159.34845362613112, + -50.988587863690306 ], [ - 176.41970195401086, - -50.106398519755054 + 159.70585430595128, + -51.63237305328782 ], [ - 176.97477594277575, - -50.68796947070261 + 160.07268318142656, + -52.275663571293514 ], [ - 177.54485244440184, - -51.267463838904355 + 160.44945565043002, + -52.91846231840445 ], [ - 178.25475471074066, - -50.78923809078333 + 161.35672316958795, + -52.57833611076986 ], [ - 178.94871469501817, - -50.305090144207824 + 162.2509223637291, + -52.23053739854509 ], [ - 179.6268227106483, - -49.81509201178172 + 163.13201167409022, + -51.87511935393242 ], [ - 180.28915198030074, - -49.31931356971307 + 163.99995110805958, + -51.51213145795045 ], [ - 180.93575752855133, - -48.81782297811397 + 164.85470075624914, + -51.14161946999428 ], [ - 181.56667508266628, - -48.31068712910954 + 165.69621929016358, + -50.763625424546504 ], [ - 182.18191997511838, - -47.79797212426763 + 166.5244624386362, + -50.37818765636516 ], [ - 182.78148604189204, - -47.27974378301809 + 167.33938144048233, + -49.98534085570774 ], [ - 182.44161882570955, - -46.7100372724576 + 167.0666801535201, + -49.32379533709943 ], [ - 182.10929258414433, - -46.138681293123916 + 166.80172971848117, + -48.66232147039744 ], [ - 181.7841564359727, - -45.56568229883182 + 166.54414203487863, + -48.00092503417989 ], [ - 181.46587131671367, - -44.99104363219952 + 166.29355321762705, + -47.33960967093194 ], [ - 181.15410896659074, - -44.41476570866769 + 166.0496217191714, + -46.67837701924976 ], [ - 180.84855094360444, - -43.836846200576524 + 165.8120266146144, + -46.01722682319967 ], [ - 180.5488876567734, - -43.25728022407648 + 165.58046603252086, + -45.356157018845494 ], [ - 180.25481741446026, - -42.67606053192684 + 165.3546557156866, + -44.69516379727326 ], [ - 179.35534863559946, - -42.4771512690203 + 164.53876060745938, + -44.43484341134727 ], [ - 178.46141636663828, - -42.271803619563926 + 163.72871006023638, + -44.1671289333702 ], [ - 177.57299561869974, - -42.06003446985104 + 162.9246442395409, + -43.891915607250105 ], [ - 176.6900472762028, - -41.84184794378837 + 162.1267157327312, + -43.60908840866591 ], [ - 175.81251713101244, - -41.61723278615241 + 161.33509187022872, + -43.31852142969875 ], [ - 174.9403347170175, - -41.38615911616741 + 160.54995734401132, + -43.020077254658126 ], [ - 174.07341190226384, - -41.14857436118394 + 159.7715171641472, + -42.71360633366738 ], [ - 173.2116411878859, - -40.904398113086714 + 159, + -42.398946362806555 ] ] ] @@ -103549,7 +103372,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "9e60000000000000" + "cellIdHex": "9e20000000000000" }, "geometry": { "type": "Polygon", @@ -103723,6 +103546,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "9e60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 173.2116411878859, + -40.904398113086714 + ], + [ + 173.23383612135706, + -41.621465989657764 + ], + [ + 173.25447437021683, + -42.335704001482014 + ], + [ + 173.27407833505168, + -43.04746546164411 + ], + [ + 173.2930961029507, + -43.757062229312815 + ], + [ + 173.31191701679575, + -44.46477081420243 + ], + [ + 173.3308839550598, + -45.170837482342286 + ], + [ + 173.35030311987975, + -45.87548253731607 + ], + [ + 173.3704519259049, + -46.578903920274364 + ], + [ + 173.84795987008903, + -47.17091940044917 + ], + [ + 174.33705218099277, + -47.761399221080076 + ], + [ + 174.83823167642606, + -48.35026996422033 + ], + [ + 175.3520259675998, + -48.937452016875476 + ], + [ + 175.87898888394545, + -49.52285922712052 + ], + [ + 176.41970195401086, + -50.106398519755054 + ], + [ + 176.97477594277575, + -50.68796947070261 + ], + [ + 177.54485244440184, + -51.267463838904355 + ], + [ + 178.25475471074066, + -50.78923809078333 + ], + [ + 178.94871469501817, + -50.305090144207824 + ], + [ + 179.6268227106483, + -49.81509201178172 + ], + [ + 180.28915198030074, + -49.31931356971307 + ], + [ + 180.93575752855133, + -48.81782297811397 + ], + [ + 181.56667508266628, + -48.31068712910954 + ], + [ + 182.18191997511838, + -47.79797212426763 + ], + [ + 182.78148604189204, + -47.27974378301809 + ], + [ + 182.44161882570955, + -46.7100372724576 + ], + [ + 182.10929258414433, + -46.138681293123916 + ], + [ + 181.7841564359727, + -45.56568229883182 + ], + [ + 181.46587131671367, + -44.99104363219952 + ], + [ + 181.15410896659074, + -44.41476570866769 + ], + [ + 180.84855094360444, + -43.836846200576524 + ], + [ + 180.5488876567734, + -43.25728022407648 + ], + [ + 180.25481741446026, + -42.67606053192684 + ], + [ + 179.35534863559946, + -42.4771512690203 + ], + [ + 178.46141636663828, + -42.271803619563926 + ], + [ + 177.57299561869974, + -42.06003446985104 + ], + [ + 176.6900472762028, + -41.84184794378837 + ], + [ + 175.81251713101244, + -41.61723278615241 + ], + [ + 174.9403347170175, + -41.38615911616741 + ], + [ + 174.07341190226384, + -41.14857436118394 + ], + [ + 173.2116411878859, + -40.904398113086714 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -104264,168 +104264,168 @@ "coordinates": [ [ [ - 139.52273056293836, - -56.870744226531976 + 144.78835881211404, + -40.904398113086714 ], [ - 140.0315580415616, - -56.23106135195438 + 144.49003910703857, + -41.563053366076964 ], [ - 140.52197066091344, - -55.590102531853795 + 144.18575101123452, + -42.21997205699533 ], [ - 140.99499043031864, - -54.947964428305745 + 143.87503610359084, + -42.875268866481534 ], [ - 141.45157050749447, - -54.30473360770509 + 143.55744451361653, + -43.52903798879166 ], [ - 141.89260067008064, - -53.66048732174957 + 143.23252900381146, + -44.181355891247634 ], [ - 142.31891233900478, - -53.01529419366315 + 142.89984001832516, + -44.83228351241983 ], [ - 142.7312831931066, - -52.369214817076134 + 142.55892143645326, + -45.48186801122973 ], [ - 143.13044141230137, - -51.72230227360571 + 142.20930683638824, + -46.130144153066865 ], [ - 143.0060224681937, - -51.02761583471203 + 142.31440673147182, + -46.83472904063176 ], [ - 142.88410693022365, - -50.33200986648407 + 142.42267245217306, + -47.53733544268484 ], [ - 142.76473582175356, - -49.63534030556226 + 142.53391274245575, + -48.2381775027391 ], [ 142.64797403240016, -48.937452016875476 ], [ - 142.53391274245575, - -48.2381775027391 + 142.76473582175356, + -49.63534030556226 ], [ - 142.42267245217306, - -47.53733544268484 + 142.88410693022365, + -50.33200986648407 ], [ - 142.31440673147182, - -46.83472904063176 + 143.0060224681937, + -51.02761583471203 ], [ - 142.20930683638818, - -46.130144153066865 + 143.13044141230137, + -51.72230227360571 ], [ - 141.34848752800013, - -46.296310642505155 + 144.0967835499825, + -51.531877619262346 ], [ - 140.48375792986474, - -46.45603063445289 + 145.05627752648616, + -51.33379573080659 ], [ - 139.61520822696104, - -46.609321932748884 + 146.00875824384053, + -51.12807443480634 ], [ - 138.74293125805133, - -46.75619883704482 + 146.9540672119913, + -50.91472948513698 ], [ - 137.86702278061995, - -46.89667247174303 + 147.89205207105522, + -50.693774298214976 ], [ - 136.98758168987513, - -47.03075109682092 + 148.82256605115367, + -50.46521968803906 ], [ - 136.1047101953393, - -47.15844040167468 + 149.7454673689292, + -50.2290736016559 ], [ - 135.21851395810796, - -47.27974378301806 + 150.66061855951762, + -49.98534085570771 ], [ - 135.0506089790597, - -47.989215587777075 + 150.60045858158873, + -49.294603161475756 ], [ - 134.87813044011978, - -48.69684419664169 + 150.54088762277502, + -48.60393293485432 ], [ - 134.70050365740485, - -49.40277407852904 + 150.48190919660402, + -47.91324274970431 ], [ - 134.51715615081065, - -50.10713576802992 + 150.4235343032019, + -47.22243799460537 ], [ - 134.32751179067782, - -50.81004692351717 + 150.3657824309405, + -46.53141569505376 ], [ - 134.13098527901036, - -51.51161323229016 + 150.30868284768871, + -45.840063112265966 ], [ - 133.92697684018037, - -52.21192917541767 + 150.25227625719845, + -45.14825606770586 ], [ - 133.71486701004198, - -52.91107866300977 + 150.19661692139545, + -44.45585692899725 ], [ - 134.37881947546748, - -53.423629893115915 + 149.4742514798952, + -44.04172324062439 ], [ - 135.0598296397934, - -53.931358912020876 + 148.7642821190119, + -43.61923501944754 ], [ - 135.7582040682572, - -54.43416919789366 + 148.06707780197257, + -43.18831419682947 ], [ - 136.47427058340133, - -54.93196003118569 + 147.38304575010704, + -42.748880612430085 ], [ - 137.20837781059504, - -55.42462607672503 + 146.7126354846509, + -42.300852917166665 ], [ - 137.96089465790556, - -55.91205696943882 + 146.05634317840747, + -41.8441496582093 ], [ - 138.73220971607952, - -56.39413690370068 + 145.41471633508786, + -41.378690571860965 ], [ - 139.52273056293836, - -56.870744226531976 + 144.78835881211404, + -40.904398113086714 ] ] ] @@ -104441,168 +104441,168 @@ "coordinates": [ [ [ - 144.78835881211404, - -40.904398113086714 + 139.52273056293836, + -56.870744226531976 ], [ - 144.49003910703857, - -41.563053366076964 + 140.0315580415616, + -56.23106135195438 ], [ - 144.18575101123452, - -42.21997205699533 + 140.52197066091344, + -55.590102531853795 ], [ - 143.87503610359084, - -42.875268866481534 + 140.99499043031864, + -54.947964428305745 ], [ - 143.55744451361653, - -43.52903798879166 + 141.45157050749447, + -54.30473360770509 ], [ - 143.23252900381146, - -44.181355891247634 + 141.89260067008064, + -53.66048732174957 ], [ - 142.89984001832516, - -44.83228351241983 + 142.31891233900478, + -53.01529419366315 ], [ - 142.55892143645326, - -45.48186801122973 + 142.7312831931066, + -52.369214817076134 ], [ - 142.20930683638824, - -46.130144153066865 + 143.13044141230137, + -51.72230227360571 ], [ - 142.31440673147182, - -46.83472904063176 + 143.0060224681937, + -51.02761583471203 ], [ - 142.42267245217306, - -47.53733544268484 + 142.88410693022365, + -50.33200986648407 ], [ - 142.53391274245575, - -48.2381775027391 + 142.76473582175356, + -49.63534030556226 ], [ 142.64797403240016, -48.937452016875476 ], [ - 142.76473582175356, - -49.63534030556226 + 142.53391274245575, + -48.2381775027391 ], [ - 142.88410693022365, - -50.33200986648407 + 142.42267245217306, + -47.53733544268484 ], [ - 143.0060224681937, - -51.02761583471203 + 142.31440673147182, + -46.83472904063176 ], [ - 143.13044141230137, - -51.72230227360571 + 142.20930683638818, + -46.130144153066865 ], [ - 144.0967835499825, - -51.531877619262346 + 141.34848752800013, + -46.296310642505155 ], [ - 145.05627752648616, - -51.33379573080659 + 140.48375792986474, + -46.45603063445289 ], [ - 146.00875824384053, - -51.12807443480634 + 139.61520822696104, + -46.609321932748884 ], [ - 146.9540672119913, - -50.91472948513698 + 138.74293125805133, + -46.75619883704482 ], [ - 147.89205207105522, - -50.693774298214976 + 137.86702278061995, + -46.89667247174303 ], [ - 148.82256605115367, - -50.46521968803906 + 136.98758168987513, + -47.03075109682092 ], [ - 149.7454673689292, - -50.2290736016559 + 136.1047101953393, + -47.15844040167468 ], [ - 150.66061855951762, - -49.98534085570771 + 135.21851395810796, + -47.27974378301806 ], [ - 150.60045858158873, - -49.294603161475756 + 135.0506089790597, + -47.989215587777075 ], [ - 150.54088762277502, - -48.60393293485432 + 134.87813044011978, + -48.69684419664169 ], [ - 150.48190919660402, - -47.91324274970431 + 134.70050365740485, + -49.40277407852904 ], [ - 150.4235343032019, - -47.22243799460537 + 134.51715615081065, + -50.10713576802992 ], [ - 150.3657824309405, - -46.53141569505376 + 134.32751179067782, + -50.81004692351717 ], [ - 150.30868284768871, - -45.840063112265966 + 134.13098527901036, + -51.51161323229016 ], [ - 150.25227625719845, - -45.14825606770586 + 133.92697684018037, + -52.21192917541767 ], [ - 150.19661692139545, - -44.45585692899725 + 133.71486701004198, + -52.91107866300977 ], [ - 149.4742514798952, - -44.04172324062439 + 134.37881947546748, + -53.423629893115915 ], [ - 148.7642821190119, - -43.61923501944754 + 135.0598296397934, + -53.931358912020876 ], [ - 148.06707780197257, - -43.18831419682947 + 135.7582040682572, + -54.43416919789366 ], [ - 147.38304575010704, - -42.748880612430085 + 136.47427058340133, + -54.93196003118569 ], [ - 146.7126354846509, - -42.300852917166665 + 137.20837781059504, + -55.42462607672503 ], [ - 146.05634317840747, - -41.8441496582093 + 137.96089465790556, + -55.91205696943882 ], [ - 145.41471633508786, - -41.378690571860965 + 138.73220971607952, + -56.39413690370068 ], [ - 144.78835881211404, - -40.904398113086714 + 139.52273056293836, + -56.870744226531976 ] ] ] @@ -104972,168 +104972,168 @@ "coordinates": [ [ [ - 140.36878034136026, - -19.765749214107938 + 123, + -21.27100957285516 ], [ - 139.63004557488597, - -19.762129191464098 + 123.74469414790713, + -21.36027233039878 ], [ - 138.89228171096363, - -19.7552974947138 + 124.48915143725958, + -21.445532390258847 ], [ - 138.1553173869014, - -19.745165949584045 + 125.23337169746554, + -21.526794472204543 ], [ - 137.4190073117332, - -19.731660977058525 + 125.97735470359635, + -21.60406361678073 ], [ - 136.68322774180513, - -19.714720627079494 + 126.72110030162173, + -21.677345210969445 ], [ - 135.94787284641347, - -19.69429229573704 + 127.4646085461294, + -21.746645016668637 ], [ - 135.21285176546496, - -19.670330952804132 + 128.20787985272068, + -21.811969202676785 ], [ - 134.4780862096332, - -19.642797754009642 + 128.95091516772004, + -21.873324381037968 ], [ - 133.79114277242292, - -19.933090334027135 + 129.6474571214369, + -21.606975189861085 ], [ - 133.10361549430968, - -20.220422827416197 + 130.34195871611894, + -21.336812405433893 ], [ - 132.41519753532737, - -20.504614891202117 + 131.03460811548763, + -21.062948590774777 ], [ 131.72561194773937, -20.7855052935926 ], [ - 131.03460811548763, - -21.062948590774777 + 132.41519753532737, + -20.504614891202102 ], [ - 130.34195871611894, - -21.336812405433893 + 133.10361549430968, + -20.220422827416208 ], [ - 129.6474571214369, - -21.606975189861085 + 133.79114277242292, + -19.93309033402712 ], [ - 128.95091516772004, - -21.873324381037968 + 134.4780862096332, + -19.642797754009642 ], [ - 129.32174354904907, - -22.404212941506128 + 134.10916213432523, + -19.1282992786855 ], [ - 129.6953886313854, - -22.9350888560876 + 133.7427477108949, + -18.613850628821204 ], [ - 130.07203148365852, - -23.46592676163621 + 133.37867960351764, + -18.09945834730844 ], [ - 130.45186052357417, - -23.996697696004823 + 133.0168012627813, + -17.585126846827578 ], [ - 130.83507196658343, - -24.52736871990067 + 132.65696244945525, + -17.07085868293248 ], [ - 131.2218702970049, - -25.057902499560104 + 132.29901879043143, + -16.5566547948637 ], [ - 131.61246876164353, - -25.588256845971678 + 131.94283136448723, + -16.04251471807537 ], [ - 132.00708988602287, - -26.118384205901382 + 131.58826631565478, + -15.528436771949758 ], [ - 132.75221525331767, - -25.94390055026972 + 130.86274023987573, + -15.696541008965927 ], [ - 133.49478001325963, - -25.76495304808198 + 130.13751260884885, + -15.861719396959524 ], [ - 134.23485221759972, - -25.58159914691221 + 129.4123549214671, + -16.02380770489845 ], [ - 134.97251083843764, - -25.393897970011974 + 128.68706132504195, + -16.182658449084304 ], [ - 135.70784724746113, - -25.20191080714579 + 127.96144605704296, + -16.33813835223844 ], [ - 136.44096700030485, - -25.00570175012071 + 127.23534123247009, + -16.490126224956356 ], [ - 137.17199200115567, - -24.805338518102317 + 126.50859492440304, + -16.638511193215383 ], [ - 137.90106314419495, - -24.600893533663314 + 125.78106949391383, + -16.78319121052189 ], [ - 138.20047148691822, - -23.994288225284745 + 125.4379821185371, + -17.34656226874205 ], [ - 138.50161250129537, - -23.38770950651952 + 125.09400721963732, + -17.909490195958913 ], [ - 138.80488880308974, - -22.781415392146638 + 124.74893564522449, + -18.47184682736358 ], [ - 139.1107216276971, - -22.175696381329857 + 124.40256122061157, + -19.03351061791133 ], [ - 139.4195523435542, - -21.57087936278443 + 124.05468046448516, + -19.594366117856698 ], [ - 139.73184400631152, - -20.967331944966666 + 123.70509231090438, + -20.154303476642767 ], [ - 140.04808294179855, - -20.36546725037431 + 123.3535978374905, + -20.713217973461223 ], [ - 140.36878034136026, - -19.765749214107938 + 123, + -21.27100957285516 ] ] ] @@ -105149,168 +105149,168 @@ "coordinates": [ [ [ - 123, - -21.27100957285516 + 140.36878034136026, + -19.765749214107938 ], [ - 123.74469414790713, - -21.36027233039878 + 139.63004557488597, + -19.762129191464098 ], [ - 124.48915143725958, - -21.445532390258847 + 138.89228171096363, + -19.7552974947138 ], [ - 125.23337169746554, - -21.526794472204543 + 138.1553173869014, + -19.745165949584045 ], [ - 125.97735470359635, - -21.60406361678073 + 137.4190073117332, + -19.731660977058525 ], [ - 126.72110030162173, - -21.677345210969445 + 136.68322774180513, + -19.714720627079494 ], [ - 127.4646085461294, - -21.746645016668637 + 135.94787284641347, + -19.69429229573704 ], [ - 128.20787985272068, - -21.811969202676785 + 135.21285176546496, + -19.670330952804132 ], [ - 128.95091516772004, - -21.873324381037968 + 134.4780862096332, + -19.642797754009642 ], [ - 129.6474571214369, - -21.606975189861085 + 133.79114277242292, + -19.933090334027135 ], [ - 130.34195871611894, - -21.336812405433893 + 133.10361549430968, + -20.220422827416197 ], [ - 131.03460811548763, - -21.062948590774777 + 132.41519753532737, + -20.504614891202117 ], [ 131.72561194773937, -20.7855052935926 ], [ - 132.41519753532737, - -20.504614891202102 + 131.03460811548763, + -21.062948590774777 ], [ - 133.10361549430968, - -20.220422827416208 + 130.34195871611894, + -21.336812405433893 ], [ - 133.79114277242292, - -19.93309033402712 + 129.6474571214369, + -21.606975189861085 ], [ - 134.4780862096332, - -19.642797754009642 + 128.95091516772004, + -21.873324381037968 ], [ - 134.10916213432523, - -19.1282992786855 + 129.32174354904907, + -22.404212941506128 ], [ - 133.7427477108949, - -18.613850628821204 + 129.6953886313854, + -22.9350888560876 ], [ - 133.37867960351764, - -18.09945834730844 + 130.07203148365852, + -23.46592676163621 ], [ - 133.0168012627813, - -17.585126846827578 + 130.45186052357417, + -23.996697696004823 ], [ - 132.65696244945525, - -17.07085868293248 + 130.83507196658343, + -24.52736871990067 ], [ - 132.29901879043143, - -16.5566547948637 + 131.2218702970049, + -25.057902499560104 ], [ - 131.94283136448723, - -16.04251471807537 + 131.61246876164353, + -25.588256845971678 ], [ - 131.58826631565478, - -15.528436771949758 + 132.00708988602287, + -26.118384205901382 ], [ - 130.86274023987573, - -15.696541008965927 + 132.75221525331767, + -25.94390055026972 ], [ - 130.13751260884885, - -15.861719396959524 + 133.49478001325963, + -25.76495304808198 ], [ - 129.4123549214671, - -16.02380770489845 + 134.23485221759972, + -25.58159914691221 ], [ - 128.68706132504195, - -16.182658449084304 + 134.97251083843764, + -25.393897970011974 ], [ - 127.96144605704296, - -16.33813835223844 + 135.70784724746113, + -25.20191080714579 ], [ - 127.23534123247009, - -16.490126224956356 + 136.44096700030485, + -25.00570175012071 ], [ - 126.50859492440304, - -16.638511193215383 + 137.17199200115567, + -24.805338518102317 ], [ - 125.78106949391383, - -16.78319121052189 + 137.90106314419495, + -24.600893533663314 ], [ - 125.4379821185371, - -17.34656226874205 + 138.20047148691822, + -23.994288225284745 ], [ - 125.09400721963732, - -17.909490195958913 + 138.50161250129537, + -23.38770950651952 ], [ - 124.74893564522449, - -18.47184682736358 + 138.80488880308974, + -22.781415392146638 ], [ - 124.40256122061157, - -19.03351061791133 + 139.1107216276971, + -22.175696381329857 ], [ - 124.05468046448516, - -19.594366117856698 + 139.4195523435542, + -21.57087936278443 ], [ - 123.70509231090438, - -20.154303476642767 + 139.73184400631152, + -20.967331944966666 ], [ - 123.3535978374905, - -20.713217973461223 + 140.04808294179855, + -20.36546725037431 ], [ - 123, - -21.27100957285516 + 140.36878034136026, + -19.765749214107938 ] ] ] @@ -105852,183 +105852,6 @@ "properties": { "cellIdHex": "8da0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123, - -42.37830150075417 - ], - [ - 123.93962395000653, - -42.49892243986907 - ], - [ - 124.88203369312282, - -42.61309680557352 - ], - [ - 125.82719064331502, - -42.72075593429318 - ], - [ - 126.77505691240015, - -42.82182667002339 - ], - [ - 127.72559583221755, - -42.91623066511016 - ], - [ - 128.67877252538904, - -43.0038835592554 - ], - [ - 129.63455452829191, - -43.084694014223565 - ], - [ - 130.59291246997748, - -43.15856257693659 - ], - [ - 131.45840651420542, - -42.905416109266014 - ], - [ - 132.3156987327377, - -42.64639614357898 - ], - [ - 133.16481328380405, - -42.38162397551779 - ], - [ - 134.00578215503924, - -42.11121902793486 - ], - [ - 134.83864479650867, - -41.835298739876315 - ], - [ - 135.66344776254869, - -41.55397845747508 - ], - [ - 136.48024436514072, - -41.26737132523007 - ], - [ - 137.28909434162085, - -40.97558817581691 - ], - [ - 136.72740475817335, - -40.469135977389314 - ], - [ - 136.17784271751145, - -39.958637813286984 - ], - [ - 135.63989031067172, - -39.44446014104027 - ], - [ - 135.11304314587846, - -38.92693989100172 - ], - [ - 134.59681132852927, - -38.4063867074794 - ], - [ - 134.09072014389147, - -37.88308503825151 - ], - [ - 133.59431049100323, - -37.357296078753734 - ], - [ - 133.1071391098517, - -36.82925957785007 - ], - [ - 132.2749784671936, - -36.99266629693375 - ], - [ - 131.4382771861525, - -37.15058817528356 - ], - [ - 130.59707581391405, - -37.30295261105689 - ], - [ - 129.75141931729024, - -37.44968701481691 - ], - [ - 128.90135709819202, - -37.5907188797037 - ], - [ - 128.0469430018606, - -37.72597585158083 - ], - [ - 127.18823531699763, - -37.85538579922086 - ], - [ - 126.32529676701586, - -37.9788768845402 - ], - [ - 125.93442538537488, - -38.53708182019422 - ], - [ - 125.53705733162127, - -39.09302434364565 - ], - [ - 125.13290717074722, - -39.64665555584334 - ], - [ - 124.72168359878083, - -40.19792492578673 - ], - [ - 124.30308901702341, - -40.746780025297525 - ], - [ - 123.87681911100458, - -41.29316626807381 - ], - [ - 123.44256243460131, - -41.83702665162222 - ], - [ - 123, - -42.37830150075417 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "8de0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -106204,7 +106027,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "8e20000000000000" + "cellIdHex": "8de0000000000000" }, "geometry": { "type": "Polygon", @@ -106212,167 +106035,167 @@ [ [ 123, - -31.83235904133611 + -42.37830150075417 ], [ - 123.8103353722804, - -31.938398148952622 + 123.93962395000653, + -42.49892243986907 ], [ - 124.62114836017008, - -32.03966944539291 + 124.88203369312282, + -42.61309680557352 ], [ - 125.4324086676541, - -32.13616896353094 + 125.82719064331502, + -42.72075593429318 ], [ - 126.24408528757169, - -32.22789297397681 + 126.77505691240015, + -42.82182667002339 ], [ - 127.05614663734195, - -32.314837967607545 + 127.72559583221755, + -42.91623066511016 ], [ - 127.86856070618876, - -32.39700063154639 + 128.67877252538904, + -43.0038835592554 ], [ - 128.68129521550122, - -32.47437781747659 + 129.63455452829191, + -43.084694014223565 ], [ - 129.49431779429307, - -32.546966500935504 + 130.59291246997748, + -43.15856257693659 ], [ - 130.24256400127308, - -32.28795965427349 + 131.45840651420542, + -42.905416109266014 ], [ - 130.98563587774458, - -32.02410234253843 + 132.3156987327377, + -42.64639614357898 ], [ - 131.72359081927897, - -31.75547039557303 + 133.16481328380405, + -42.38162397551779 ], [ - 132.45649257601144, - -31.482138275789122 + 134.00578215503924, + -42.11121902793486 ], [ - 133.18441157095282, - -31.20417906590002 + 134.83864479650867, + -41.835298739876315 ], [ - 133.90742529974818, - -30.921664470089443 + 135.66344776254869, + -41.55397845747508 ], [ - 134.6256188288457, - -30.634664832587045 + 136.48024436514072, + -41.26737132523007 ], [ - 135.3390854130447, - -30.34324917904292 + 137.28909434162085, + -40.97558817581691 ], [ - 134.90297145069883, - -29.817509611348882 + 136.72740475817335, + -40.469135977389314 ], [ - 134.4730632301479, - -29.290887764931338 + 136.17784271751145, + -39.958637813286984 ], [ - 134.04904297821372, - -28.76350025615696 + 135.63989031067172, + -39.44446014104027 ], [ - 133.6306070167742, - -28.235451757095355 + 135.11304314587846, + -38.92693989100172 ], [ - 133.21746511804264, - -27.706836137865224 + 134.59681132852927, + -38.4063867074794 ], [ - 132.80933986363107, - -27.17773749824441 + 134.09072014389147, + -37.88308503825151 ], [ - 132.4059660130588, - -26.648231099444637 + 133.59431049100323, + -37.357296078753734 ], [ - 132.00708988602287, - -26.118384205901382 + 133.1071391098517, + -36.82925957785007 ], [ - 131.25934554699495, - -26.288347863309184 + 132.2749784671936, + -36.99266629693375 ], [ - 130.50893252606613, - -26.453736372755746 + 131.4382771861525, + -37.15058817528356 ], [ - 129.7558088970576, - -26.614495359129275 + 130.59707581391405, + -37.30295261105689 ], [ - 128.99993978100554, - -26.770571046739438 + 129.75141931729024, + -37.44968701481691 ], [ - 128.2412967191242, - -26.92191012503988 + 128.90135709819202, + -37.5907188797037 ], [ - 127.47985713632363, - -27.06845964665534 + 128.0469430018606, + -37.72597585158083 ], [ - 126.71560387967611, - -27.210166951020653 + 127.18823531699763, + -37.85538579922086 ], [ - 125.94852481906753, - -27.346979608405157 + 126.32529676701586, + -37.9788768845402 ], [ - 125.5932267604415, - -27.913896058195945 + 125.93442538537488, + -38.53708182019422 ], [ - 125.23457970449658, - -28.479164902383836 + 125.53705733162127, + -39.09302434364565 ], [ - 124.87236342035703, - -29.042715414843656 + 125.13290717074722, + -39.64665555584334 ], [ - 124.50635742430688, - -29.604479180256902 + 124.72168359878083, + -40.19792492578673 ], [ - 124.1363406578854, - -30.16438972187324 + 124.30308901702341, + -40.746780025297525 ], [ - 123.76209117423957, - -30.72238214920249 + 123.87681911100458, + -41.29316626807381 ], [ - 123.38338583250084, - -31.278392823788298 + 123.44256243460131, + -41.83702665162222 ], [ 123, - -31.83235904133611 + -42.37830150075417 ] ] ] @@ -106381,7 +106204,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "8e60000000000000" + "cellIdHex": "8e20000000000000" }, "geometry": { "type": "Polygon", @@ -106555,6 +106378,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "8e60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 123, + -31.83235904133611 + ], + [ + 123.8103353722804, + -31.938398148952622 + ], + [ + 124.62114836017008, + -32.03966944539291 + ], + [ + 125.4324086676541, + -32.13616896353094 + ], + [ + 126.24408528757169, + -32.22789297397681 + ], + [ + 127.05614663734195, + -32.314837967607545 + ], + [ + 127.86856070618876, + -32.39700063154639 + ], + [ + 128.68129521550122, + -32.47437781747659 + ], + [ + 129.49431779429307, + -32.546966500935504 + ], + [ + 130.24256400127308, + -32.28795965427349 + ], + [ + 130.98563587774458, + -32.02410234253843 + ], + [ + 131.72359081927897, + -31.75547039557303 + ], + [ + 132.45649257601144, + -31.482138275789122 + ], + [ + 133.18441157095282, + -31.20417906590002 + ], + [ + 133.90742529974818, + -30.921664470089443 + ], + [ + 134.6256188288457, + -30.634664832587045 + ], + [ + 135.3390854130447, + -30.34324917904292 + ], + [ + 134.90297145069883, + -29.817509611348882 + ], + [ + 134.4730632301479, + -29.290887764931338 + ], + [ + 134.04904297821372, + -28.76350025615696 + ], + [ + 133.6306070167742, + -28.235451757095355 + ], + [ + 133.21746511804264, + -27.706836137865224 + ], + [ + 132.80933986363107, + -27.17773749824441 + ], + [ + 132.4059660130588, + -26.648231099444637 + ], + [ + 132.00708988602287, + -26.118384205901382 + ], + [ + 131.25934554699495, + -26.288347863309184 + ], + [ + 130.50893252606613, + -26.453736372755746 + ], + [ + 129.7558088970576, + -26.614495359129275 + ], + [ + 128.99993978100554, + -26.770571046739438 + ], + [ + 128.2412967191242, + -26.92191012503988 + ], + [ + 127.47985713632363, + -27.06845964665534 + ], + [ + 126.71560387967611, + -27.210166951020653 + ], + [ + 125.94852481906753, + -27.346979608405157 + ], + [ + 125.5932267604415, + -27.913896058195945 + ], + [ + 125.23457970449658, + -28.479164902383836 + ], + [ + 124.87236342035703, + -29.042715414843656 + ], + [ + 124.50635742430688, + -29.604479180256902 + ], + [ + 124.1363406578854, + -30.16438972187324 + ], + [ + 123.76209117423957, + -30.72238214920249 + ], + [ + 123.38338583250084, + -31.278392823788298 + ], + [ + 123, + -31.83235904133611 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -108684,183 +108684,6 @@ "properties": { "cellIdHex": "91a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 149.5791426009837, - -13.628636133967648 - ], - [ - 149.30379273391418, - -13.002746034453729 - ], - [ - 149.02941381222485, - -12.37625143211715 - ], - [ - 148.7559149297017, - -11.74913082912652 - ], - [ - 148.48320775655196, - -11.121364333331146 - ], - [ - 148.2112061142783, - -10.492933345721074 - ], - [ - 147.93982562319263, - -9.863820310405211 - ], - [ - 147.66898340525825, - -9.234008513297548 - ], - [ - 147.39859782947053, - -8.603481919068038 - ], - [ - 146.86195832779134, - -8.175607546454678 - ], - [ - 146.32671585854746, - -7.7464366681473695 - ], - [ - 145.79277154677857, - -7.315947442795506 - ], - [ - 145.26002837519957, - -6.88412251681717 - ], - [ - 144.7283909262223, - -6.4509483560448615 - ], - [ - 144.19776514756427, - -6.016414688115981 - ], - [ - 143.66805813888288, - -5.580514035405847 - ], - [ - 143.1391779570181, - -5.143241322392146 - ], - [ - 142.83353559765715, - -5.717321523379236 - ], - [ - 142.52715468407297, - -6.292255639087746 - ], - [ - 142.2200752370095, - -6.868098642541113 - ], - [ - 141.91234499855273, - -7.444906555547451 - ], - [ - 141.60402015854243, - -8.022736425852864 - ], - [ - 141.29516615359591, - -8.601646293856072 - ], - [ - 140.98585854587247, - -9.18169514716392 - ], - [ - 140.67618398940124, - -9.762942861013215 - ], - [ - 141.12368468256057, - -10.289904421887828 - ], - [ - 141.57200288178626, - -10.815697024934158 - ], - [ - 142.0212332140062, - -11.340310481399507 - ], - [ - 142.47147065749868, - -11.86373431558934 - ], - [ - 142.92281063682748, - -12.385957764485871 - ], - [ - 143.37534912365425, - -12.906969781353336 - ], - [ - 143.8291827451427, - -13.426759044313485 - ], - [ - 144.28440890215518, - -13.94531397116376 - ], - [ - 144.94047885348306, - -13.90731505951831 - ], - [ - 145.59806647656296, - -13.868501904231401 - ], - [ - 146.25723888750213, - -13.829033834593622 - ], - [ - 146.91806266705998, - -13.789085668592772 - ], - [ - 147.58060319343974, - -13.748849484199871 - ], - [ - 148.24492382678926, - -13.708536612122595 - ], - [ - 148.91108491698884, - -13.668379879030143 - ], - [ - 149.5791426009837, - -13.628636133967648 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "91e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -109036,175 +108859,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "9220000000000000" + "cellIdHex": "91e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 140.36878034136026, - -19.765749214107952 + 149.5791426009837, + -13.628636133967648 ], [ - 140.08505249366124, - -19.098444308476555 + 149.30379273391418, + -13.002746034453729 ], [ - 139.80609772679884, - -18.432713723067838 + 149.02941381222485, + -12.37625143211715 ], [ - 139.53123702647974, - -17.76840441639068 + 148.7559149297017, + -11.74913082912652 ], [ - 139.2598905831137, - -17.10537278396114 + 148.48320775655196, + -11.121364333331146 ], [ - 138.99155917641195, - -16.44348482666795 + 148.2112061142783, + -10.492933345721074 ], [ - 138.72580948747725, - -15.782615938070572 + 147.93982562319263, + -9.863820310405211 ], [ - 138.46226242057418, - -15.122650471068695 + 147.66898340525825, + -9.234008513297548 ], [ - 138.2005837495429, - -14.463481187019147 + 147.39859782947053, + -8.603481919068038 ], [ - 137.67726851045524, - -14.01415612173393 + 146.86195832779134, + -8.175607546454678 ], [ - 137.15522180608298, - -13.5633714332974 + 146.32671585854746, + -7.7464366681473695 ], [ - 136.63435431793812, - -13.111144041777454 + 145.79277154677857, + -7.315947442795506 ], [ - 136.11457722173395, - -12.657490651991068 + 145.26002837519957, + -6.88412251681717 ], [ - 135.5958020769208, - -12.202427742880483 + 144.7283909262223, + -6.4509483560448615 ], [ - 135.07794072672078, - -11.745971561108743 + 144.19776514756427, + -6.016414688115981 ], [ - 134.5609052065671, - -11.288138118190982 + 143.66805813888288, + -5.580514035405847 ], [ - 134.04460765925705, - -10.828943190607772 + 143.1391779570181, + -5.143241322392146 ], [ - 133.73582047158925, - -11.412488048170625 + 142.83353559765715, + -5.717321523379236 ], [ - 133.42718619377456, - -11.997055371957838 + 142.52715468407297, + -6.292255639087746 ], [ - 133.11885674369324, - -12.582690091959567 + 142.2200752370095, + -6.868098642541113 ], [ - 132.81099963767048, - -13.169437097609057 + 141.91234499855273, + -7.444906555547451 ], [ - 132.50379928279546, - -13.757341113162735 + 141.60402015854243, + -8.022736425852864 ], [ - 132.1974583748388, - -14.346446552647867 + 141.29516615359591, + -8.601646293856072 ], [ - 131.89219940956752, - -14.936797351541543 + 140.98585854587247, + -9.18169514716392 ], [ - 131.58826631565478, - -15.528436771949746 + 140.67618398940124, + -9.762942861013215 ], [ - 131.94283136448723, - -16.04251471807537 + 141.12368468256057, + -10.289904421887828 ], [ - 132.29901879043143, - -16.5566547948637 + 141.57200288178626, + -10.815697024934158 ], [ - 132.65696244945525, - -17.07085868293248 + 142.0212332140062, + -11.340310481399507 ], [ - 133.0168012627813, - -17.585126846827592 + 142.47147065749868, + -11.86373431558934 ], [ - 133.37867960351764, - -18.09945834730844 + 142.92281063682748, + -12.385957764485871 ], [ - 133.7427477108949, - -18.613850628821204 + 143.37534912365425, + -12.906969781353336 ], [ - 134.10916213432523, - -19.1282992786855 + 143.8291827451427, + -13.426759044313485 ], [ - 134.4780862096332, - -19.642797754009642 + 144.28440890215518, + -13.94531397116376 ], [ - 135.21285176546496, - -19.670330952804132 + 144.94047885348306, + -13.90731505951831 ], [ - 135.94787284641347, - -19.69429229573704 + 145.59806647656296, + -13.868501904231401 ], [ - 136.68322774180513, - -19.714720627079494 + 146.25723888750213, + -13.829033834593622 ], [ - 137.4190073117332, - -19.731660977058525 + 146.91806266705998, + -13.789085668592772 ], [ - 138.1553173869014, - -19.745165949584045 + 147.58060319343974, + -13.748849484199871 ], [ - 138.89228171096363, - -19.7552974947138 + 148.24492382678926, + -13.708536612122595 ], [ - 139.63004557488603, - -19.76212919146411 + 148.91108491698884, + -13.668379879030143 ], [ - 140.36878034136026, - -19.765749214107952 + 149.5791426009837, + -13.628636133967648 ] ] ] @@ -109213,7 +109036,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "9260000000000000" + "cellIdHex": "9220000000000000" }, "geometry": { "type": "Polygon", @@ -109387,6 +109210,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "9260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 140.36878034136026, + -19.765749214107952 + ], + [ + 140.08505249366124, + -19.098444308476555 + ], + [ + 139.80609772679884, + -18.432713723067838 + ], + [ + 139.53123702647974, + -17.76840441639068 + ], + [ + 139.2598905831137, + -17.10537278396114 + ], + [ + 138.99155917641195, + -16.44348482666795 + ], + [ + 138.72580948747725, + -15.782615938070572 + ], + [ + 138.46226242057418, + -15.122650471068695 + ], + [ + 138.2005837495429, + -14.463481187019147 + ], + [ + 137.67726851045524, + -14.01415612173393 + ], + [ + 137.15522180608298, + -13.5633714332974 + ], + [ + 136.63435431793812, + -13.111144041777454 + ], + [ + 136.11457722173395, + -12.657490651991068 + ], + [ + 135.5958020769208, + -12.202427742880483 + ], + [ + 135.07794072672078, + -11.745971561108743 + ], + [ + 134.5609052065671, + -11.288138118190982 + ], + [ + 134.04460765925705, + -10.828943190607772 + ], + [ + 133.73582047158925, + -11.412488048170625 + ], + [ + 133.42718619377456, + -11.997055371957838 + ], + [ + 133.11885674369324, + -12.582690091959567 + ], + [ + 132.81099963767048, + -13.169437097609057 + ], + [ + 132.50379928279546, + -13.757341113162735 + ], + [ + 132.1974583748388, + -14.346446552647867 + ], + [ + 131.89219940956752, + -14.936797351541543 + ], + [ + 131.58826631565478, + -15.528436771949746 + ], + [ + 131.94283136448723, + -16.04251471807537 + ], + [ + 132.29901879043143, + -16.5566547948637 + ], + [ + 132.65696244945525, + -17.07085868293248 + ], + [ + 133.0168012627813, + -17.585126846827592 + ], + [ + 133.37867960351764, + -18.09945834730844 + ], + [ + 133.7427477108949, + -18.613850628821204 + ], + [ + 134.10916213432523, + -19.1282992786855 + ], + [ + 134.4780862096332, + -19.642797754009642 + ], + [ + 135.21285176546496, + -19.670330952804132 + ], + [ + 135.94787284641347, + -19.69429229573704 + ], + [ + 136.68322774180513, + -19.714720627079494 + ], + [ + 137.4190073117332, + -19.731660977058525 + ], + [ + 138.1553173869014, + -19.745165949584045 + ], + [ + 138.89228171096363, + -19.7552974947138 + ], + [ + 139.63004557488603, + -19.76212919146411 + ], + [ + 140.36878034136026, + -19.765749214107952 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -109928,168 +109928,168 @@ "coordinates": [ [ [ - 149.98784603778904, - 5.539553971242925 + 159, + -8.162533854955054 ], [ - 150.27179009258805, - 4.896562751656497 + 158.70114835751008, + -7.530390021971784 ], [ - 150.5552732157497, - 4.254708312632609 + 158.4037047291784, + -6.898735635532036 ], [ - 150.83838098643844, - 3.613970768281394 + 158.1075977995011, + -6.267375132306939 ], [ - 151.1211980473024, - 2.9743298550319404 + 157.8127527265242, + -5.636140955798851 ], [ - 151.40380822524634, - 2.3357648565162563 + 157.51909227703186, + -5.00488848560826 ], [ - 151.6862946501746, - 1.6982545161551712 + 157.2265376228837, + -4.373492007958605 ], [ - 151.96873987211757, - 1.0617769353137694 + 156.93500889540144, + -3.741841488224458 ], [ - 152.25122597713244, - 0.42630945444010043 + 156.64442556562278, + -3.10983996664447 ], [ - 152.79618136864423, - -0.014556886277891262 + 156.09054039831994, + -2.665248288661079 ], [ - 153.34217111059309, - -0.4554068187673719 + 155.53815089678824, + -2.2218651838138572 ], [ - 153.88928113430757, - -0.8963863812880651 + 154.98719274483108, + -1.7794162308255073 ], [ 154.43759490858952, -1.337660587380447 ], [ - 154.98719274483108, - -1.7794162308255073 + 153.88928113430757, + -0.8963863812880651 ], [ - 155.53815089678824, - -2.2218651838138443 + 153.34217111059309, + -0.4554068187673719 ], [ - 156.09054039831994, - -2.665248288661079 + 152.79618136864423, + -0.014556886277891262 ], [ - 156.64442556562278, - -3.10983996664447 + 152.25122597713244, + 0.42630945444010043 ], [ - 156.9416101797209, - -2.5633608674609807 + 151.95420544961945, + -0.13292275320976288 ], [ - 157.23793232230224, - -2.0173791374190486 + 151.6564090605794, + -0.6925672169305065 ], [ - 157.53342987355836, - -1.4718332931284461 + 151.3578123503906, + -1.2526762337456798 ], [ - 157.8281426625103, - -0.9266645541039044 + 151.05839361624635, + -1.8133037611419598 ], [ - 158.12211225624816, - -0.38181668468205077 + 150.75813417887747, + -2.3745054856601358 ], [ - 158.41538177941646, - 0.16276415527486818 + 150.45701868276075, + -2.9363388920133953 ], [ - 158.7079957602548, - 0.7071295512160308 + 150.1550354336219, + -3.498863332272648 ], [ - 159, - 1.2513289666321188 + 149.8521767775203, + -4.0621400945523005 ], [ - 158.52244998720118, - 1.7910707032452284 + 150.31746791790596, + -4.578278183193922 ], [ - 158.0457609965282, - 2.3296810820991354 + 150.7838687250674, + -5.093527371445836 ], [ - 157.56987053247093, - 2.867397609977863 + 151.25148660361958, + -5.607938518432806 ], [ - 157.09470917416309, - 3.4044316034361413 + 151.72043037936982, + -6.1215707773920744 ], [ - 156.62020174768475, - 3.940971540909363 + 152.19081044224527, + -6.634493101618335 ], [ - 156.14626825635503, - 4.477185926411791 + 152.66273886730596, + -7.146786076626605 ], [ - 155.67282461710903, - 5.013225743753897 + 153.13632949902149, + -7.658544161959716 ], [ - 155.19978324083445, - 5.549226566225722 + 153.61169797676746, + -8.169878451075492 ], [ - 154.54660983427107, - 5.553211251936413 + 154.28187834759257, + -8.155493059284444 ], [ - 153.89385992730263, - 5.5553932800526935 + 154.9532287919841, + -8.144050026715396 ], [ - 153.241567910867, - 5.555941070749144 + 155.62567169742158, + -8.135956991156363 ], [ - 152.58976312057973, - 5.5550155248441495 + 156.29910963485702, + -8.131655257677641 ], [ - 151.93847020659268, - 5.552770373117133 + 156.9734225173592, + -8.131622689803509 ], [ - 151.28770947910164, - 5.549352511082709 + 157.6484643979009, + -8.13637681882015 ], [ - 150.63749723083197, - 5.544902319538789 + 158.3240598660101, + -8.146478176724946 ], [ - 149.98784603778904, - 5.539553971242925 + 159, + -8.162533854955054 ] ] ] @@ -110105,168 +110105,168 @@ "coordinates": [ [ [ - 159, - -8.162533854955054 + 149.98784603778904, + 5.539553971242925 ], [ - 158.70114835751008, - -7.530390021971784 + 150.27179009258805, + 4.896562751656497 ], [ - 158.4037047291784, - -6.898735635532036 + 150.5552732157497, + 4.254708312632609 ], [ - 158.1075977995011, - -6.267375132306939 + 150.83838098643844, + 3.613970768281394 ], [ - 157.8127527265242, - -5.636140955798851 + 151.1211980473024, + 2.9743298550319404 ], [ - 157.51909227703186, - -5.00488848560826 + 151.40380822524634, + 2.3357648565162563 ], [ - 157.2265376228837, - -4.373492007958605 + 151.6862946501746, + 1.6982545161551712 ], [ - 156.93500889540144, - -3.741841488224458 + 151.96873987211757, + 1.0617769353137694 ], [ - 156.64442556562278, - -3.10983996664447 + 152.25122597713244, + 0.42630945444010043 ], [ - 156.09054039831994, - -2.665248288661079 + 152.79618136864423, + -0.014556886277891262 ], [ - 155.53815089678824, - -2.2218651838138572 + 153.34217111059309, + -0.4554068187673719 ], [ - 154.98719274483108, - -1.7794162308255073 + 153.88928113430757, + -0.8963863812880651 ], [ 154.43759490858952, -1.337660587380447 ], [ - 153.88928113430757, - -0.8963863812880651 + 154.98719274483108, + -1.7794162308255073 ], [ - 153.34217111059309, - -0.4554068187673719 + 155.53815089678824, + -2.2218651838138443 ], [ - 152.79618136864423, - -0.014556886277891262 + 156.09054039831994, + -2.665248288661079 ], [ - 152.25122597713244, - 0.42630945444010043 + 156.64442556562278, + -3.10983996664447 ], [ - 151.95420544961945, - -0.13292275320976288 + 156.9416101797209, + -2.5633608674609807 ], [ - 151.6564090605794, - -0.6925672169305065 + 157.23793232230224, + -2.0173791374190486 ], [ - 151.3578123503906, - -1.2526762337456798 + 157.53342987355836, + -1.4718332931284461 ], [ - 151.05839361624635, - -1.8133037611419598 + 157.8281426625103, + -0.9266645541039044 ], [ - 150.75813417887747, - -2.3745054856601358 + 158.12211225624816, + -0.38181668468205077 ], [ - 150.45701868276075, - -2.9363388920133953 + 158.41538177941646, + 0.16276415527486818 ], [ - 150.1550354336219, - -3.498863332272648 + 158.7079957602548, + 0.7071295512160308 ], [ - 149.8521767775203, - -4.0621400945523005 + 159, + 1.2513289666321188 ], [ - 150.31746791790596, - -4.578278183193922 + 158.52244998720118, + 1.7910707032452284 ], [ - 150.7838687250674, - -5.093527371445836 + 158.0457609965282, + 2.3296810820991354 ], [ - 151.25148660361958, - -5.607938518432806 + 157.56987053247093, + 2.867397609977863 ], [ - 151.72043037936982, - -6.1215707773920744 + 157.09470917416309, + 3.4044316034361413 ], [ - 152.19081044224527, - -6.634493101618335 + 156.62020174768475, + 3.940971540909363 ], [ - 152.66273886730596, - -7.146786076626605 + 156.14626825635503, + 4.477185926411791 ], [ - 153.13632949902149, - -7.658544161959716 + 155.67282461710903, + 5.013225743753897 ], [ - 153.61169797676746, - -8.169878451075492 + 155.19978324083445, + 5.549226566225722 ], [ - 154.28187834759257, - -8.155493059284444 + 154.54660983427107, + 5.553211251936413 ], [ - 154.9532287919841, - -8.144050026715396 + 153.89385992730263, + 5.5553932800526935 ], [ - 155.62567169742158, - -8.135956991156363 + 153.241567910867, + 5.555941070749144 ], [ - 156.29910963485702, - -8.131655257677641 + 152.58976312057973, + 5.5550155248441495 ], [ - 156.9734225173592, - -8.131622689803509 + 151.93847020659268, + 5.552770373117133 ], [ - 157.6484643979009, - -8.13637681882015 + 151.28770947910164, + 5.549352511082709 ], [ - 158.3240598660101, - -8.146478176724946 + 150.63749723083197, + 5.544902319538789 ], [ - 159, - -8.162533854955054 + 149.98784603778904, + 5.539553971242925 ] ] ] @@ -116300,168 +116300,168 @@ "coordinates": [ [ [ - 68.36878034136032, - -19.765749214107966 + 51, + -21.271009572855185 ], [ - 67.63004557488603, - -19.762129191464123 + 51.744694147907126, + -21.360272330398793 ], [ - 66.89228171096363, - -19.755297494713815 + 52.48915143725958, + -21.445532390258872 ], [ - 66.1553173869014, - -19.74516594958406 + 53.2333716974656, + -21.52679447220457 ], [ - 65.41900731173314, - -19.73166097705854 + 53.97735470359635, + -21.604063616780746 ], [ - 64.68322774180513, - -19.714720627079508 + 54.72110030162173, + -21.677345210969474 ], [ - 63.947872846413475, - -19.694292295737064 + 55.4646085461294, + -21.746645016668662 ], [ - 63.21285176546496, - -19.670330952804147 + 56.20787985272068, + -21.8119692026768 ], [ - 62.47808620963315, - -19.642797754009667 + 56.95091516772004, + -21.873324381037982 ], [ - 61.79114277242297, - -19.933090334027145 + 57.6474571214369, + -21.60697518986111 ], [ - 61.10361549430968, - -20.220422827416222 + 58.34195871611894, + -21.33681240543392 ], [ - 60.415197535327366, - -20.504614891202117 + 59.034608115487686, + -21.062948590774806 ], [ 59.72561194773937, -20.78550529359261 ], [ - 59.034608115487686, - -21.062948590774806 + 60.415197535327366, + -20.504614891202117 ], [ - 58.34195871611894, - -21.33681240543392 + 61.10361549430968, + -20.220422827416208 ], [ - 57.6474571214369, - -21.60697518986111 + 61.79114277242297, + -19.933090334027135 ], [ - 56.95091516772004, - -21.873324381037982 + 62.47808620963315, + -19.642797754009656 ], [ - 57.321743549049074, - -22.40421294150614 + 62.10916213432529, + -19.128299278685514 ], [ - 57.69538863138541, - -22.93508885608761 + 61.742747710894946, + -18.61385062882123 ], [ - 58.07203148365852, - -23.465926761636236 + 61.37867960351764, + -18.099458347308463 ], [ - 58.45186052357417, - -23.996697696004833 + 61.016801262781314, + -17.585126846827603 ], [ - 58.83507196658343, - -24.527368719900686 + 60.65696244945525, + -17.070858682932496 ], [ - 59.2218702970049, - -25.057902499560104 + 60.29901879043132, + -16.556654794863714 ], [ - 59.61246876164353, - -25.588256845971703 + 59.94283136448723, + -16.042514718075395 ], [ - 60.00708988602287, - -26.118384205901407 + 59.58826631565478, + -15.528436771949771 ], [ - 60.75221525331767, - -25.943900550269746 + 58.862740239875734, + -15.696541008965951 ], [ - 61.49478001325963, - -25.76495304808198 + 58.13751260884885, + -15.861719396959549 ], [ - 62.23485221759972, - -25.581599146912236 + 57.41235492146711, + -16.02380770489846 ], [ - 62.972510838437756, - -25.393897970012 + 56.68706132504201, + -16.182658449084332 ], [ - 63.70784724746113, - -25.20191080714579 + 55.96144605704296, + -16.33813835223845 ], [ - 64.44096700030491, - -25.00570175012071 + 55.23534123247009, + -16.490126224956366 ], [ - 65.17199200115579, - -24.805338518102342 + 54.50859492440304, + -16.638511193215408 ], [ - 65.90106314419495, - -24.600893533663328 + 53.78106949391383, + -16.78319121052189 ], [ - 66.20047148691822, - -23.99428822528476 + 53.43798211853709, + -17.346562268742066 ], [ - 66.50161250129531, - -23.38770950651953 + 53.09400721963732, + -17.909490195958938 ], [ - 66.80488880308974, - -22.781415392146638 + 52.74893564522449, + -18.47184682736362 ], [ - 67.1107216276971, - -22.17569638132987 + 52.40256122061169, + -19.033510617911354 ], [ - 67.41955234355419, - -21.570879362784446 + 52.05468046448516, + -19.59436611785671 ], [ - 67.73184400631158, - -20.96733194496669 + 51.70509231090443, + -20.15430347664279 ], [ - 68.04808294179861, - -20.365467250374333 + 51.3535978374905, + -20.713217973461223 ], [ - 68.36878034136032, - -19.765749214107966 + 51, + -21.271009572855185 ] ] ] @@ -116477,168 +116477,168 @@ "coordinates": [ [ [ - 51, - -21.271009572855185 + 68.36878034136032, + -19.765749214107966 ], [ - 51.744694147907126, - -21.360272330398793 + 67.63004557488603, + -19.762129191464123 ], [ - 52.48915143725958, - -21.445532390258872 + 66.89228171096363, + -19.755297494713815 ], [ - 53.2333716974656, - -21.52679447220457 + 66.1553173869014, + -19.74516594958406 ], [ - 53.97735470359635, - -21.604063616780746 + 65.41900731173314, + -19.73166097705854 ], [ - 54.72110030162173, - -21.677345210969474 + 64.68322774180513, + -19.714720627079508 ], [ - 55.4646085461294, - -21.746645016668662 + 63.947872846413475, + -19.694292295737064 ], [ - 56.20787985272068, - -21.8119692026768 + 63.21285176546496, + -19.670330952804147 ], [ - 56.95091516772004, - -21.873324381037982 + 62.47808620963315, + -19.642797754009667 ], [ - 57.6474571214369, - -21.60697518986111 + 61.79114277242297, + -19.933090334027145 ], [ - 58.34195871611894, - -21.33681240543392 + 61.10361549430968, + -20.220422827416222 ], [ - 59.034608115487686, - -21.062948590774806 + 60.415197535327366, + -20.504614891202117 ], [ 59.72561194773937, -20.78550529359261 ], [ - 60.415197535327366, - -20.504614891202117 + 59.034608115487686, + -21.062948590774806 ], [ - 61.10361549430968, - -20.220422827416208 + 58.34195871611894, + -21.33681240543392 ], [ - 61.79114277242297, - -19.933090334027135 + 57.6474571214369, + -21.60697518986111 ], [ - 62.47808620963315, - -19.642797754009656 + 56.95091516772004, + -21.873324381037982 ], [ - 62.10916213432529, - -19.128299278685514 + 57.321743549049074, + -22.40421294150614 ], [ - 61.742747710894946, - -18.61385062882123 + 57.69538863138541, + -22.93508885608761 ], [ - 61.37867960351764, - -18.099458347308463 + 58.07203148365852, + -23.465926761636236 ], [ - 61.016801262781314, - -17.585126846827603 + 58.45186052357417, + -23.996697696004833 ], [ - 60.65696244945525, - -17.070858682932496 + 58.83507196658343, + -24.527368719900686 ], [ - 60.29901879043132, - -16.556654794863714 + 59.2218702970049, + -25.057902499560104 ], [ - 59.94283136448723, - -16.042514718075395 + 59.61246876164353, + -25.588256845971703 ], [ - 59.58826631565478, - -15.528436771949771 + 60.00708988602287, + -26.118384205901407 ], [ - 58.862740239875734, - -15.696541008965951 + 60.75221525331767, + -25.943900550269746 ], [ - 58.13751260884885, - -15.861719396959549 + 61.49478001325963, + -25.76495304808198 ], [ - 57.41235492146711, - -16.02380770489846 + 62.23485221759972, + -25.581599146912236 ], [ - 56.68706132504201, - -16.182658449084332 + 62.972510838437756, + -25.393897970012 ], [ - 55.96144605704296, - -16.33813835223845 + 63.70784724746113, + -25.20191080714579 ], [ - 55.23534123247009, - -16.490126224956366 + 64.44096700030491, + -25.00570175012071 ], [ - 54.50859492440304, - -16.638511193215408 + 65.17199200115579, + -24.805338518102342 ], [ - 53.78106949391383, - -16.78319121052189 + 65.90106314419495, + -24.600893533663328 ], [ - 53.43798211853709, - -17.346562268742066 + 66.20047148691822, + -23.99428822528476 ], [ - 53.09400721963732, - -17.909490195958938 + 66.50161250129531, + -23.38770950651953 ], [ - 52.74893564522449, - -18.47184682736362 + 66.80488880308974, + -22.781415392146638 ], [ - 52.40256122061169, - -19.033510617911354 + 67.1107216276971, + -22.17569638132987 ], [ - 52.05468046448516, - -19.59436611785671 + 67.41955234355419, + -21.570879362784446 ], [ - 51.70509231090443, - -20.15430347664279 + 67.73184400631158, + -20.96733194496669 ], [ - 51.3535978374905, - -20.713217973461223 + 68.04808294179861, + -20.365467250374333 ], [ - 51, - -21.271009572855185 + 68.36878034136032, + -19.765749214107966 ] ] ] @@ -117180,183 +117180,6 @@ "properties": { "cellIdHex": "ada0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 51, - -42.37830150075417 - ], - [ - 51.939623950006535, - -42.49892243986907 - ], - [ - 52.88203369312282, - -42.61309680557352 - ], - [ - 53.82719064331502, - -42.72075593429318 - ], - [ - 54.775056912400146, - -42.82182667002339 - ], - [ - 55.72559583221755, - -42.91623066511019 - ], - [ - 56.678772525389036, - -43.0038835592554 - ], - [ - 57.634554528291915, - -43.084694014223565 - ], - [ - 58.59291246997748, - -43.15856257693662 - ], - [ - 59.45840651420542, - -42.905416109266014 - ], - [ - 60.3156987327377, - -42.64639614357898 - ], - [ - 61.16481328380405, - -42.38162397551781 - ], - [ - 62.00578215503924, - -42.11121902793486 - ], - [ - 62.838644796508675, - -41.83529873987634 - ], - [ - 63.663447762548685, - -41.55397845747511 - ], - [ - 64.48024436514072, - -41.26737132523007 - ], - [ - 65.28909434162085, - -40.97558817581693 - ], - [ - 64.7274047581734, - -40.469135977389314 - ], - [ - 64.17784271751145, - -39.95863781328701 - ], - [ - 63.63989031067172, - -39.44446014104027 - ], - [ - 63.113043145878464, - -38.92693989100175 - ], - [ - 62.59681132852927, - -38.40638670747942 - ], - [ - 62.09072014389153, - -37.88308503825154 - ], - [ - 61.59431049100317, - -37.357296078753734 - ], - [ - 61.10713910985169, - -36.82925957785007 - ], - [ - 60.27497846719359, - -36.99266629693375 - ], - [ - 59.438277186152504, - -37.15058817528358 - ], - [ - 58.59707581391399, - -37.30295261105692 - ], - [ - 57.75141931729024, - -37.44968701481691 - ], - [ - 56.90135709819208, - -37.5907188797037 - ], - [ - 56.046943001860654, - -37.72597585158083 - ], - [ - 55.188235316997634, - -37.85538579922086 - ], - [ - 54.32529676701586, - -37.9788768845402 - ], - [ - 53.93442538537488, - -38.537081820194246 - ], - [ - 53.53705733162133, - -39.09302434364568 - ], - [ - 53.13290717074733, - -39.64665555584334 - ], - [ - 52.72168359878083, - -40.19792492578673 - ], - [ - 52.30308901702347, - -40.746780025297525 - ], - [ - 51.87681911100458, - -41.29316626807383 - ], - [ - 51.442562434601314, - -41.837026651622246 - ], - [ - 51, - -42.37830150075417 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "ade0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -117532,7 +117355,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "ae20000000000000" + "cellIdHex": "ade0000000000000" }, "geometry": { "type": "Polygon", @@ -117540,167 +117363,167 @@ [ [ 51, - -31.83235904133611 + -42.37830150075417 ], [ - 51.810335372280406, - -31.938398148952647 + 51.939623950006535, + -42.49892243986907 ], [ - 52.62114836017008, - -32.03966944539291 + 52.88203369312282, + -42.61309680557352 ], [ - 53.43240866765416, - -32.13616896353094 + 53.82719064331502, + -42.72075593429318 ], [ - 54.24408528757169, - -32.22789297397681 + 54.775056912400146, + -42.82182667002339 ], [ - 55.05614663734195, - -32.31483796760757 + 55.72559583221755, + -42.91623066511019 ], [ - 55.86856070618876, - -32.39700063154639 + 56.678772525389036, + -43.0038835592554 ], [ - 56.68129521550122, - -32.47437781747659 + 57.634554528291915, + -43.084694014223565 ], [ - 57.494317794293124, - -32.546966500935504 + 58.59291246997748, + -43.15856257693662 ], [ - 58.242564001273195, - -32.28795965427349 + 59.45840651420542, + -42.905416109266014 ], [ - 58.985635877744585, - -32.02410234253843 + 60.3156987327377, + -42.64639614357898 ], [ - 59.723590819279025, - -31.75547039557303 + 61.16481328380405, + -42.38162397551781 ], [ - 60.45649257601144, - -31.482138275789122 + 62.00578215503924, + -42.11121902793486 ], [ - 61.18441157095276, - -31.20417906590002 + 62.838644796508675, + -41.83529873987634 ], [ - 61.90742529974818, - -30.921664470089443 + 63.663447762548685, + -41.55397845747511 ], [ - 62.625618828845745, - -30.634664832587045 + 64.48024436514072, + -41.26737132523007 ], [ - 63.3390854130447, - -30.34324917904292 + 65.28909434162085, + -40.97558817581693 ], [ - 62.90297145069894, - -29.817509611348882 + 64.7274047581734, + -40.469135977389314 ], [ - 62.473063230148, - -29.290887764931338 + 64.17784271751145, + -39.95863781328701 ], [ - 62.04904297821372, - -28.76350025615696 + 63.63989031067172, + -39.44446014104027 ], [ - 61.630607016774206, - -28.235451757095355 + 63.113043145878464, + -38.92693989100175 ], [ - 61.21746511804258, - -27.706836137865224 + 62.59681132852927, + -38.40638670747942 ], [ - 60.80933986363107, - -27.17773749824441 + 62.09072014389153, + -37.88308503825154 ], [ - 60.40596601305879, - -26.648231099444637 + 61.59431049100317, + -37.357296078753734 ], [ - 60.00708988602287, - -26.118384205901407 + 61.10713910985169, + -36.82925957785007 ], [ - 59.25934554699495, - -26.28834786330921 + 60.27497846719359, + -36.99266629693375 ], [ - 58.50893252606613, - -26.453736372755746 + 59.438277186152504, + -37.15058817528358 ], [ - 57.755808897057705, - -26.6144953591293 + 58.59707581391399, + -37.30295261105692 ], [ - 56.99993978100554, - -26.770571046739462 + 57.75141931729024, + -37.44968701481691 ], [ - 56.24129671912419, - -26.921910125039908 + 56.90135709819208, + -37.5907188797037 ], [ - 55.47985713632363, - -27.06845964665537 + 56.046943001860654, + -37.72597585158083 ], [ - 54.71560387967611, - -27.210166951020653 + 55.188235316997634, + -37.85538579922086 ], [ - 53.94852481906753, - -27.346979608405157 + 54.32529676701586, + -37.9788768845402 ], [ - 53.59322676044144, - -27.913896058195974 + 53.93442538537488, + -38.537081820194246 ], [ - 53.23457970449658, - -28.479164902383836 + 53.53705733162133, + -39.09302434364568 ], [ - 52.87236342035703, - -29.042715414843656 + 53.13290717074733, + -39.64665555584334 ], [ - 52.506357424306884, - -29.604479180256902 + 52.72168359878083, + -40.19792492578673 ], [ - 52.1363406578854, - -30.164389721873267 + 52.30308901702347, + -40.746780025297525 ], [ - 51.76209117423957, - -30.72238214920249 + 51.87681911100458, + -41.29316626807383 ], [ - 51.383385832500835, - -31.278392823788323 + 51.442562434601314, + -41.837026651622246 ], [ 51, - -31.83235904133611 + -42.37830150075417 ] ] ] @@ -117709,7 +117532,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "ae60000000000000" + "cellIdHex": "ae20000000000000" }, "geometry": { "type": "Polygon", @@ -117883,6 +117706,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "ae60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 51, + -31.83235904133611 + ], + [ + 51.810335372280406, + -31.938398148952647 + ], + [ + 52.62114836017008, + -32.03966944539291 + ], + [ + 53.43240866765416, + -32.13616896353094 + ], + [ + 54.24408528757169, + -32.22789297397681 + ], + [ + 55.05614663734195, + -32.31483796760757 + ], + [ + 55.86856070618876, + -32.39700063154639 + ], + [ + 56.68129521550122, + -32.47437781747659 + ], + [ + 57.494317794293124, + -32.546966500935504 + ], + [ + 58.242564001273195, + -32.28795965427349 + ], + [ + 58.985635877744585, + -32.02410234253843 + ], + [ + 59.723590819279025, + -31.75547039557303 + ], + [ + 60.45649257601144, + -31.482138275789122 + ], + [ + 61.18441157095276, + -31.20417906590002 + ], + [ + 61.90742529974818, + -30.921664470089443 + ], + [ + 62.625618828845745, + -30.634664832587045 + ], + [ + 63.3390854130447, + -30.34324917904292 + ], + [ + 62.90297145069894, + -29.817509611348882 + ], + [ + 62.473063230148, + -29.290887764931338 + ], + [ + 62.04904297821372, + -28.76350025615696 + ], + [ + 61.630607016774206, + -28.235451757095355 + ], + [ + 61.21746511804258, + -27.706836137865224 + ], + [ + 60.80933986363107, + -27.17773749824441 + ], + [ + 60.40596601305879, + -26.648231099444637 + ], + [ + 60.00708988602287, + -26.118384205901407 + ], + [ + 59.25934554699495, + -26.28834786330921 + ], + [ + 58.50893252606613, + -26.453736372755746 + ], + [ + 57.755808897057705, + -26.6144953591293 + ], + [ + 56.99993978100554, + -26.770571046739462 + ], + [ + 56.24129671912419, + -26.921910125039908 + ], + [ + 55.47985713632363, + -27.06845964665537 + ], + [ + 54.71560387967611, + -27.210166951020653 + ], + [ + 53.94852481906753, + -27.346979608405157 + ], + [ + 53.59322676044144, + -27.913896058195974 + ], + [ + 53.23457970449658, + -28.479164902383836 + ], + [ + 52.87236342035703, + -29.042715414843656 + ], + [ + 52.506357424306884, + -29.604479180256902 + ], + [ + 52.1363406578854, + -30.164389721873267 + ], + [ + 51.76209117423957, + -30.72238214920249 + ], + [ + 51.383385832500835, + -31.278392823788323 + ], + [ + 51, + -31.83235904133611 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -120012,6 +120012,183 @@ "properties": { "cellIdHex": "b1a0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 87, + -58.39714590743121 + ], + [ + 87.20224854480091, + -57.7098160689096 + ], + [ + 87.39767237796354, + -57.02324510368477 + ], + [ + 87.5867169040879, + -56.337411707244044 + ], + [ + 87.76979068196613, + -55.65229310833691 + ], + [ + 87.94726913528416, + -54.96786512448908 + ], + [ + 88.11949781700139, + -54.28410219175384 + ], + [ + 88.28679528663395, + -53.600977369256185 + ], + [ + 88.44945565043002, + -52.91846231840442 + ], + [ + 88.07268318142656, + -52.275663571293514 + ], + [ + 87.70585430595128, + -51.63237305328779 + ], + [ + 87.34845362613106, + -50.98858786369028 + ], + [ + 87, + -50.34429896479682 + ], + [ + 86.66004415093312, + -49.699491040606794 + ], + [ + 86.32816655176532, + -49.054142261336565 + ], + [ + 86.00397557170561, + -48.40822394298013 + ], + [ + 85.68710587973362, + -47.76170008770643 + ], + [ + 84.83866146384878, + -48.06641302673015 + ], + [ + 83.98141943484825, + -48.363434557603284 + ], + [ + 83.11551528607401, + -48.65279397174959 + ], + [ + 82.24108085190505, + -48.934515472947375 + ], + [ + 81.35824559825892, + -49.20861839533168 + ], + [ + 80.46713781867675, + -49.47511743236965 + ], + [ + 79.56788574234702, + -49.73402287478262 + ], + [ + 78.66061855951762, + -49.98534085570771 + ], + [ + 78.72137076072545, + -50.67622725329186 + ], + [ + 78.78272452799183, + -51.36733824392081 + ], + [ + 78.8446949211301, + -52.058745091098636 + ], + [ + 78.9073024286655, + -52.75051504857552 + ], + [ + 78.97057279486864, + -53.44271189047213 + ], + [ + 79.03453694926759, + -54.13539636906916 + ], + [ + 79.09923102986068, + -54.82862661172428 + ], + [ + 79.16469649469263, + -55.52245846635906 + ], + [ + 80.08346679673957, + -55.908541492371796 + ], + [ + 81.01933484185918, + -56.287235089067586 + ], + [ + 81.97242638179932, + -56.65841897896526 + ], + [ + 82.9428597843289, + -57.02196802160571 + ], + [ + 83.93074391522396, + -57.37775225363309 + ], + [ + 84.9361759362647, + -57.725636962580914 + ], + [ + 85.95923902199843, + -58.0654827959763 + ], + [ + 87, + -58.39714590743121 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "b1e0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -120187,175 +120364,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "b1e0000000000000" + "cellIdHex": "b220000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 87, - -58.39714590743121 + 106.47726943706164, + -56.870744226531976 ], [ - 87.20224854480091, - -57.7098160689096 + 106.33831462366607, + -56.170935828881056 ], [ - 87.39767237796354, - -57.02324510368477 + 106.20670013832586, + -55.47108814393498 ], [ - 87.5867169040879, - -56.337411707244044 + 106.08191974785325, + -54.77114211656776 ], [ - 87.76979068196613, - -55.65229310833691 + 105.96349972717013, + -54.07103316625273 ], [ - 87.94726913528416, - -54.96786512448908 + 105.85099453714577, + -53.3706908825173 ], [ - 88.11949781700139, - -54.28410219175384 + 105.74398280459354, + -52.670038642191344 ], [ - 88.28679528663395, - -53.600977369256185 + 105.64206352909878, + -51.96899314209126 ], [ - 88.44945565043002, - -52.91846231840442 + 105.54485244440184, + -51.267463838904355 ], [ - 88.07268318142656, - -52.275663571293514 + 104.97477594277575, + -50.68796947070261 ], [ - 87.70585430595128, - -51.63237305328779 + 104.41970195401086, + -50.106398519755054 ], [ - 87.34845362613106, - -50.98858786369028 + 103.87898888394545, + -49.52285922712052 ], [ - 87, - -50.34429896479682 + 103.35202596759979, + -48.937452016875476 ], [ - 86.66004415093312, - -49.699491040606794 + 102.83823167642606, + -48.35026996422033 ], [ - 86.32816655176532, - -49.054142261336565 + 102.33705218099277, + -47.761399221080076 ], [ - 86.00397557170561, - -48.40822394298013 + 101.84795987008903, + -47.17091940044917 ], [ - 85.68710587973362, - -47.76170008770643 + 101.37045192590489, + -46.578903920274364 ], [ - 84.83866146384878, - -48.06641302673015 + 100.66495633177328, + -47.030165779231105 ], [ - 83.98141943484825, - -48.363434557603284 + 99.94538822427387, + -47.474183208466606 ], [ - 83.11551528607401, - -48.65279397174959 + 99.21189218025597, + -47.910944327579855 ], [ - 82.24108085190505, - -48.934515472947375 + 98.46459454276123, + -48.34043542403989 ], [ - 81.35824559825892, - -49.20861839533168 + 97.70360532212396, + -48.76264056301847 ], [ - 80.46713781867675, - -49.47511743236965 + 96.929020032464, + -49.177541251976145 ], [ - 79.56788574234702, - -49.73402287478262 + 96.14092147014446, + -49.58511615541522 ], [ - 78.66061855951762, + 95.33938144048227, -49.98534085570771 ], [ - 78.72137076072545, - -50.67622725329186 + 95.62024795536422, + -50.646949955896694 ], [ - 78.78272452799183, - -51.36733824392081 + 95.90972261349793, + -51.30861209534406 ], [ - 78.8446949211301, - -52.058745091098636 + 96.20827936118354, + -51.97031405322992 ], [ - 78.9073024286655, - -52.75051504857552 + 96.51642592221725, + -52.63203969531611 ], [ - 78.97057279486864, - -53.44271189047213 + 96.8347068298595, + -53.29376970791102 ], [ - 79.03453694926759, - -54.13539636906916 + 97.16370677875, + -53.95548129746281 ], [ - 79.09923102986068, - -54.82862661172428 + 97.5040543358208, + -54.6171478519073 ], [ - 79.16469649469263, - -55.52245846635906 + 97.8564260544606, + -55.278738559214055 ], [ - 80.08346679673957, - -55.908541492371796 + 98.89903168688124, + -55.507972314069555 ], [ - 81.01933484185918, - -56.287235089067586 + 99.95210816771043, + -55.72871214539307 ], [ - 81.97242638179932, - -56.65841897896526 + 101.01544187805166, + -55.940886207695485 ], [ - 82.9428597843289, - -57.02196802160571 + 102.08880212157669, + -56.14442222754389 ], [ - 83.93074391522396, - -57.37775225363309 + 103.17194058550945, + -56.33924783527236 ], [ - 84.9361759362647, - -57.725636962580914 + 104.2645909008694, + -56.525290904815265 ], [ - 85.95923902199843, - -58.0654827959763 + 105.36646830849634, + -56.70247990012776 ], [ - 87, - -58.39714590743121 + 106.47726943706164, + -56.870744226531976 ] ] ] @@ -120364,7 +120541,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "b220000000000000" + "cellIdHex": "b260000000000000" }, "geometry": { "type": "Polygon", @@ -120538,183 +120715,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "b260000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 106.47726943706164, - -56.870744226531976 - ], - [ - 106.33831462366607, - -56.170935828881056 - ], - [ - 106.20670013832586, - -55.47108814393498 - ], - [ - 106.08191974785325, - -54.77114211656776 - ], - [ - 105.96349972717013, - -54.07103316625273 - ], - [ - 105.85099453714577, - -53.3706908825173 - ], - [ - 105.74398280459354, - -52.670038642191344 - ], - [ - 105.64206352909878, - -51.96899314209126 - ], - [ - 105.54485244440184, - -51.267463838904355 - ], - [ - 104.97477594277575, - -50.68796947070261 - ], - [ - 104.41970195401086, - -50.106398519755054 - ], - [ - 103.87898888394545, - -49.52285922712052 - ], - [ - 103.35202596759979, - -48.937452016875476 - ], - [ - 102.83823167642606, - -48.35026996422033 - ], - [ - 102.33705218099277, - -47.761399221080076 - ], - [ - 101.84795987008903, - -47.17091940044917 - ], - [ - 101.37045192590489, - -46.578903920274364 - ], - [ - 100.66495633177328, - -47.030165779231105 - ], - [ - 99.94538822427387, - -47.474183208466606 - ], - [ - 99.21189218025597, - -47.910944327579855 - ], - [ - 98.46459454276123, - -48.34043542403989 - ], - [ - 97.70360532212396, - -48.76264056301847 - ], - [ - 96.929020032464, - -49.177541251976145 - ], - [ - 96.14092147014446, - -49.58511615541522 - ], - [ - 95.33938144048227, - -49.98534085570771 - ], - [ - 95.62024795536422, - -50.646949955896694 - ], - [ - 95.90972261349793, - -51.30861209534406 - ], - [ - 96.20827936118354, - -51.97031405322992 - ], - [ - 96.51642592221725, - -52.63203969531611 - ], - [ - 96.8347068298595, - -53.29376970791102 - ], - [ - 97.16370677875, - -53.95548129746281 - ], - [ - 97.5040543358208, - -54.6171478519073 - ], - [ - 97.8564260544606, - -55.278738559214055 - ], - [ - 98.89903168688124, - -55.507972314069555 - ], - [ - 99.95210816771043, - -55.72871214539307 - ], - [ - 101.01544187805166, - -55.940886207695485 - ], - [ - 102.08880212157669, - -56.14442222754389 - ], - [ - 103.17194058550945, - -56.33924783527236 - ], - [ - 104.2645909008694, - -56.525290904815265 - ], - [ - 105.36646830849634, - -56.70247990012776 - ], - [ - 106.47726943706164, - -56.870744226531976 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -121256,168 +121256,168 @@ "coordinates": [ [ [ - 67.52273056293836, - -56.870744226531976 + 72.78835881211398, + -40.904398113086714 ], [ - 68.03155804156154, - -56.23106135195438 + 72.49003910703857, + -41.563053366076964 ], [ - 68.52197066091344, - -55.590102531853795 + 72.18575101123452, + -42.21997205699533 ], [ - 68.9949904303187, - -54.947964428305745 + 71.8750361035909, + -42.87526886648156 ], [ - 69.45157050749447, - -54.30473360770509 + 71.55744451361647, + -43.52903798879166 ], [ - 69.8926006700807, - -53.66048732174957 + 71.23252900381146, + -44.18135589124766 ], [ - 70.31891233900478, - -53.01529419366315 + 70.89984001832511, + -44.83228351241985 ], [ - 70.7312831931066, - -52.369214817076134 + 70.55892143645326, + -45.48186801122975 ], [ - 71.13044141230137, - -51.72230227360571 + 70.20930683638824, + -46.130144153066865 ], [ - 71.00602246819369, - -51.02761583471206 + 70.31440673147188, + -46.83472904063178 ], [ - 70.88410693022365, - -50.33200986648409 + 70.42267245217306, + -47.53733544268484 ], [ - 70.76473582175356, - -49.63534030556229 + 70.53391274245587, + -48.2381775027391 ], [ - 70.64797403240016, + 70.64797403240027, -48.937452016875476 ], [ - 70.53391274245587, - -48.2381775027391 + 70.76473582175356, + -49.63534030556229 ], [ - 70.42267245217306, - -47.53733544268486 + 70.88410693022365, + -50.33200986648409 ], [ - 70.31440673147188, - -46.83472904063178 + 71.00602246819369, + -51.02761583471203 ], [ - 70.20930683638824, - -46.130144153066865 + 71.13044141230137, + -51.72230227360571 ], [ - 69.34848752800008, - -46.296310642505155 + 72.09678354998255, + -51.531877619262374 ], [ - 68.48375792986474, - -46.456030634452915 + 73.05627752648616, + -51.33379573080662 ], [ - 67.61520822696104, - -46.609321932748884 + 74.00875824384059, + -51.12807443480634 ], [ - 66.74293125805139, - -46.75619883704482 + 74.95406721199129, + -50.91472948513698 ], [ - 65.86702278061989, - -46.89667247174303 + 75.89205207105522, + -50.693774298214976 ], [ - 64.98758168987513, - -47.03075109682092 + 76.82256605115367, + -50.46521968803906 ], [ - 64.1047101953393, - -47.15844040167468 + 77.74546736892921, + -50.2290736016559 ], [ - 63.218513958107906, - -47.27974378301809 + 78.66061855951762, + -49.98534085570771 ], [ - 63.05060897905969, - -47.989215587777075 + 78.60045858158878, + -49.294603161475756 ], [ - 62.878130440119776, - -48.69684419664169 + 78.54088762277502, + -48.60393293485432 ], [ - 62.70050365740485, - -49.40277407852907 + 78.48190919660397, + -47.91324274970431 ], [ - 62.517156150810706, - -50.10713576802995 + 78.4235343032019, + -47.22243799460534 ], [ - 62.32751179067782, - -50.81004692351717 + 78.3657824309405, + -46.53141569505376 ], [ - 62.130985279010474, - -51.51161323229016 + 78.30868284768871, + -45.840063112265966 ], [ - 61.92697684018049, - -52.211929175417694 + 78.25227625719845, + -45.14825606770586 ], [ - 61.714867010041985, - -52.91107866300977 + 78.19661692139539, + -44.45585692899725 ], [ - 62.37881947546748, - -53.42362989311594 + 77.4742514798952, + -44.04172324062439 ], [ - 63.059829639793406, - -53.931358912020876 + 76.76428211901191, + -43.61923501944754 ], [ - 63.758204068257214, - -54.43416919789366 + 76.06707780197257, + -43.18831419682947 ], [ - 64.47427058340133, - -54.93196003118569 + 75.38304575010704, + -42.748880612430106 ], [ - 65.20837781059504, - -55.42462607672503 + 74.71263548465095, + -42.30085291716669 ], [ - 65.96089465790556, - -55.91205696943882 + 74.05634317840759, + -41.8441496582093 ], [ - 66.73220971607952, - -56.39413690370068 + 73.41471633508786, + -41.37869057186099 ], [ - 67.52273056293836, - -56.870744226531976 + 72.78835881211398, + -40.904398113086714 ] ] ] @@ -121433,168 +121433,168 @@ "coordinates": [ [ [ - 72.78835881211398, - -40.904398113086714 + 67.52273056293836, + -56.870744226531976 ], [ - 72.49003910703857, - -41.563053366076964 + 68.03155804156154, + -56.23106135195438 ], [ - 72.18575101123452, - -42.21997205699533 + 68.52197066091344, + -55.590102531853795 ], [ - 71.8750361035909, - -42.87526886648156 + 68.9949904303187, + -54.947964428305745 ], [ - 71.55744451361647, - -43.52903798879166 + 69.45157050749447, + -54.30473360770509 ], [ - 71.23252900381146, - -44.18135589124766 + 69.8926006700807, + -53.66048732174957 ], [ - 70.89984001832511, - -44.83228351241985 + 70.31891233900478, + -53.01529419366315 ], [ - 70.55892143645326, - -45.48186801122975 + 70.7312831931066, + -52.369214817076134 ], [ - 70.20930683638824, - -46.130144153066865 + 71.13044141230137, + -51.72230227360571 ], [ - 70.31440673147188, - -46.83472904063178 + 71.00602246819369, + -51.02761583471206 ], [ - 70.42267245217306, - -47.53733544268484 + 70.88410693022365, + -50.33200986648409 ], [ - 70.53391274245587, - -48.2381775027391 + 70.76473582175356, + -49.63534030556229 ], [ - 70.64797403240027, + 70.64797403240016, -48.937452016875476 ], [ - 70.76473582175356, - -49.63534030556229 + 70.53391274245587, + -48.2381775027391 ], [ - 70.88410693022365, - -50.33200986648409 + 70.42267245217306, + -47.53733544268486 ], [ - 71.00602246819369, - -51.02761583471203 + 70.31440673147188, + -46.83472904063178 ], [ - 71.13044141230137, - -51.72230227360571 + 70.20930683638824, + -46.130144153066865 ], [ - 72.09678354998255, - -51.531877619262374 + 69.34848752800008, + -46.296310642505155 ], [ - 73.05627752648616, - -51.33379573080662 + 68.48375792986474, + -46.456030634452915 ], [ - 74.00875824384059, - -51.12807443480634 + 67.61520822696104, + -46.609321932748884 ], [ - 74.95406721199129, - -50.91472948513698 + 66.74293125805139, + -46.75619883704482 ], [ - 75.89205207105522, - -50.693774298214976 + 65.86702278061989, + -46.89667247174303 ], [ - 76.82256605115367, - -50.46521968803906 + 64.98758168987513, + -47.03075109682092 ], [ - 77.74546736892921, - -50.2290736016559 + 64.1047101953393, + -47.15844040167468 ], [ - 78.66061855951762, - -49.98534085570771 + 63.218513958107906, + -47.27974378301809 ], [ - 78.60045858158878, - -49.294603161475756 + 63.05060897905969, + -47.989215587777075 ], [ - 78.54088762277502, - -48.60393293485432 + 62.878130440119776, + -48.69684419664169 ], [ - 78.48190919660397, - -47.91324274970431 + 62.70050365740485, + -49.40277407852907 ], [ - 78.4235343032019, - -47.22243799460534 + 62.517156150810706, + -50.10713576802995 ], [ - 78.3657824309405, - -46.53141569505376 + 62.32751179067782, + -50.81004692351717 ], [ - 78.30868284768871, - -45.840063112265966 + 62.130985279010474, + -51.51161323229016 ], [ - 78.25227625719845, - -45.14825606770586 + 61.92697684018049, + -52.211929175417694 ], [ - 78.19661692139539, - -44.45585692899725 + 61.714867010041985, + -52.91107866300977 ], [ - 77.4742514798952, - -44.04172324062439 + 62.37881947546748, + -53.42362989311594 ], [ - 76.76428211901191, - -43.61923501944754 + 63.059829639793406, + -53.931358912020876 ], [ - 76.06707780197257, - -43.18831419682947 + 63.758204068257214, + -54.43416919789366 ], [ - 75.38304575010704, - -42.748880612430106 + 64.47427058340133, + -54.93196003118569 ], [ - 74.71263548465095, - -42.30085291716669 + 65.20837781059504, + -55.42462607672503 ], [ - 74.05634317840759, - -41.8441496582093 + 65.96089465790556, + -55.91205696943882 ], [ - 73.41471633508786, - -41.37869057186099 + 66.73220971607952, + -56.39413690370068 ], [ - 72.78835881211398, - -40.904398113086714 + 67.52273056293836, + -56.870744226531976 ] ] ] @@ -121964,168 +121964,168 @@ "coordinates": [ [ [ - 101.2116411878859, - -40.904398113086714 + 123, + -42.37830150075417 ], [ - 102.07341190226384, - -41.14857436118394 + 122.06388126117139, + -42.28385129983738 ], [ - 102.94033471701749, - -41.38615911616741 + 121.13203874079801, + -42.18255502487402 ], [ - 103.81251713101244, - -41.61723278615241 + 120.20458388865814, + -42.074487034771614 ], [ - 104.69004727620279, - -41.84184794378837 + 119.28162168781455, + -41.95972220341343 ], [ - 105.57299561869974, - -42.06003446985104 + 118.36325050330328, + -41.838335759257696 ], [ - 106.46141636663828, - -42.27180361956395 + 117.44956194190718, + -41.7104031150009 ], [ - 107.3553486355994, - -42.4771512690203 + 116.5406407209739, + -41.575999685857994 ], [ - 108.25481741446026, - -42.67606053192684 + 115.63656454387444, + -41.43520069460249 ], [ - 109.1992351258906, - -42.54624327782245 + 114.73464732341608, + -41.613799468904986 ], [ - 110.13717690636918, - -42.40861454411597 + 113.82702543647338, + -41.786136765465685 ], [ - 111.06879128068965, - -42.263507433395596 + 112.91358795325095, + -41.952015564923585 ], [ 111.99421784496076, - -42.11121902793483 + -42.11121902793486 ], [ - 112.91358795325095, - -41.952015564923585 + 111.06879128068965, + -42.263507433395596 ], [ - 113.82702543647338, - -41.786136765465656 + 110.13717690636918, + -42.408614544116 ], [ - 114.73464732341608, - -41.613799468904986 + 109.1992351258906, + -42.54624327782245 ], [ - 115.63656454387444, - -41.43520069460249 + 108.25481741446026, + -42.67606053192684 ], [ - 115.27354024298057, - -40.866380285834595 + 108.54888765677339, + -43.25728022407646 ], [ - 114.91683297539566, - -40.295531106979 + 108.84855094360444, + -43.836846200576524 ], [ - 114.56614329208412, - -39.72267989022345 + 109.15410896659074, + -44.41476570866769 ], [ - 114.22117773647517, - -39.147852128574364 + 109.46587131671367, + -44.99104363219952 ], [ - 113.88164819370638, - -38.57107237890203 + 109.7841564359727, + -45.565682298831845 ], [ - 113.54727123819828, - -37.992364581363425 + 110.10929258414433, + -46.138681293123916 ], [ - 113.21776747749618, - -37.41175239852572 + 110.44161882570955, + -46.710037272457626 ], [ - 112.89286089014826, - -36.82925957785007 + 110.78148604189198, + -47.27974378301812 ], [ - 112.03119644165616, - -36.878537465046556 + 111.83696691379367, + -47.24677418802078 ], [ - 111.16871221169436, - -36.92229510782253 + 112.88876309468094, + -47.204411370082525 ], [ - 110.30541342322874, - -36.960489651725965 + 113.93682395612706, + -47.152925045583444 ], [ - 109.44129859458332, - -36.993072113670046 + 114.98109615269226, + -47.092557962266596 ], [ - 108.57635836073064, - -37.01998606714153 + 116.02152403576372, + -47.023529684367965 ], [ - 107.71057410747954, - -37.041166023194 + 117.05805012773305, + -46.94603979604272 ], [ - 106.84391638145291, - -37.05653542520471 + 118.09061562962722, + -46.8602706196257 ], [ - 105.97634303050927, - -37.06600414949624 + 119.11916094236426, + -46.76638952775172 ], [ - 105.4270498041227, - -37.56550354605933 + 119.64185631509599, + -46.22557370755463 ], [ - 104.86563033734473, - -38.060512872930914 + 120.15274519962657, + -45.68215026128173 ], [ - 104.29154131027065, - -38.550531438483986 + 120.65238788817328, + -45.136342300374906 ], [ - 103.70423065589819, - -39.035007726335486 + 121.14132263960335, + -44.588357247593 ], [ - 103.10314096278785, - -39.513334539181606 + 121.62006605605171, + -44.038387867905456 ], [ - 102.48771377359958, - -39.98484375688581 + 122.08911355949044, + -43.48661323805234 ], [ - 101.85739493680967, - -40.4488007019546 + 122.54893994614474, + -42.93319965713203 ], [ - 101.2116411878859, - -40.904398113086714 + 123, + -42.37830150075417 ] ] ] @@ -122141,168 +122141,168 @@ "coordinates": [ [ [ - 123, - -42.37830150075417 + 101.2116411878859, + -40.904398113086714 ], [ - 122.06388126117139, - -42.28385129983738 + 102.07341190226384, + -41.14857436118394 ], [ - 121.13203874079801, - -42.18255502487402 + 102.94033471701749, + -41.38615911616741 ], [ - 120.20458388865814, - -42.074487034771614 + 103.81251713101244, + -41.61723278615241 ], [ - 119.28162168781455, - -41.95972220341343 + 104.69004727620279, + -41.84184794378837 ], [ - 118.36325050330328, - -41.838335759257696 + 105.57299561869974, + -42.06003446985104 ], [ - 117.44956194190718, - -41.7104031150009 + 106.46141636663828, + -42.27180361956395 ], [ - 116.5406407209739, - -41.575999685857994 + 107.3553486355994, + -42.4771512690203 ], [ - 115.63656454387444, - -41.43520069460249 + 108.25481741446026, + -42.67606053192684 ], [ - 114.73464732341608, - -41.613799468904986 + 109.1992351258906, + -42.54624327782245 ], [ - 113.82702543647338, - -41.786136765465685 + 110.13717690636918, + -42.40861454411597 ], [ - 112.91358795325095, - -41.952015564923585 + 111.06879128068965, + -42.263507433395596 ], [ 111.99421784496076, - -42.11121902793486 + -42.11121902793483 ], [ - 111.06879128068965, - -42.263507433395596 + 112.91358795325095, + -41.952015564923585 ], [ - 110.13717690636918, - -42.408614544116 + 113.82702543647338, + -41.786136765465656 ], [ - 109.1992351258906, - -42.54624327782245 + 114.73464732341608, + -41.613799468904986 ], [ - 108.25481741446026, - -42.67606053192684 + 115.63656454387444, + -41.43520069460249 ], [ - 108.54888765677339, - -43.25728022407646 + 115.27354024298057, + -40.866380285834595 ], [ - 108.84855094360444, - -43.836846200576524 + 114.91683297539566, + -40.295531106979 ], [ - 109.15410896659074, - -44.41476570866769 + 114.56614329208412, + -39.72267989022345 ], [ - 109.46587131671367, - -44.99104363219952 + 114.22117773647517, + -39.147852128574364 ], [ - 109.7841564359727, - -45.565682298831845 + 113.88164819370638, + -38.57107237890203 ], [ - 110.10929258414433, - -46.138681293123916 + 113.54727123819828, + -37.992364581363425 ], [ - 110.44161882570955, - -46.710037272457626 + 113.21776747749618, + -37.41175239852572 ], [ - 110.78148604189198, - -47.27974378301812 + 112.89286089014826, + -36.82925957785007 ], [ - 111.83696691379367, - -47.24677418802078 + 112.03119644165616, + -36.878537465046556 ], [ - 112.88876309468094, - -47.204411370082525 + 111.16871221169436, + -36.92229510782253 ], [ - 113.93682395612706, - -47.152925045583444 + 110.30541342322874, + -36.960489651725965 ], [ - 114.98109615269226, - -47.092557962266596 + 109.44129859458332, + -36.993072113670046 ], [ - 116.02152403576372, - -47.023529684367965 + 108.57635836073064, + -37.01998606714153 ], [ - 117.05805012773305, - -46.94603979604272 + 107.71057410747954, + -37.041166023194 ], [ - 118.09061562962722, - -46.8602706196257 + 106.84391638145291, + -37.05653542520471 ], [ - 119.11916094236426, - -46.76638952775172 + 105.97634303050927, + -37.06600414949624 ], [ - 119.64185631509599, - -46.22557370755463 + 105.4270498041227, + -37.56550354605933 ], [ - 120.15274519962657, - -45.68215026128173 + 104.86563033734473, + -38.060512872930914 ], [ - 120.65238788817328, - -45.136342300374906 + 104.29154131027065, + -38.550531438483986 ], [ - 121.14132263960335, - -44.588357247593 + 103.70423065589819, + -39.035007726335486 ], [ - 121.62006605605171, - -44.038387867905456 + 103.10314096278785, + -39.513334539181606 ], [ - 122.08911355949044, - -43.48661323805234 + 102.48771377359958, + -39.98484375688581 ], [ - 122.54893994614474, - -42.93319965713203 + 101.85739493680967, + -40.4488007019546 ], [ - 123, - -42.37830150075417 + 101.2116411878859, + -40.904398113086714 ] ] ] @@ -122844,183 +122844,6 @@ "properties": { "cellIdHex": "a1a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123, - -21.27100957285516 - ], - [ - 122.25614368893866, - -21.144564331659375 - ], - [ - 121.51416728005643, - -21.01362761147115 - ], - [ - 120.77401706486592, - -20.878258484479932 - ], - [ - 120.0356324164573, - -20.738518145942958 - ], - [ - 119.29894511233249, - -20.594470268877764 - ], - [ - 118.56387856323056, - -20.446181427293272 - ], - [ - 117.83034693163216, - -20.293721602267034 - ], - [ - 117.0982541204711, - -20.13716478851835 - ], - [ - 116.39315534795094, - -20.304223167982837 - ], - [ - 115.68748663347952, - -20.46797348153037 - ], - [ - 114.98123496091853, - -20.62840455173057 - ], - [ - 114.27438805226063, - -20.785505293592585 - ], - [ - 113.5669343057233, - -20.93926473348562 - ], - [ - 112.85886272563295, - -21.089672029966017 - ], - [ - 112.15016284241301, - -21.23671649694413 - ], - [ - 111.44082462059475, - -21.38038762974112 - ], - [ - 111.76016939101248, - -21.973822550186256 - ], - [ - 112.07882401738493, - -22.567259162930156 - ], - [ - 112.39709609137981, - -23.16050809898654 - ], - [ - 112.71528442060247, - -23.753396537845475 - ], - [ - 113.0336797738662, - -24.34576664698648 - ], - [ - 113.35256560443668, - -24.93747414876025 - ], - [ - 113.67221875067992, - -25.528387004446433 - ], - [ - 113.99291011397713, - -26.118384205901382 - ], - [ - 114.75428468982557, - -26.068989845087874 - ], - [ - 115.5159677701725, - -26.01537752420747 - ], - [ - 116.27793706888866, - -25.957541898180285 - ], - [ - 117.04017071228714, - -25.89547797877166 - ], - [ - 117.8026473024114, - -25.829181128494586 - ], - [ - 118.5653459778382, - -25.758647053896865 - ], - [ - 119.3282464723597, - -25.683871798232712 - ], - [ - 120.09132917183672, - -25.604851733521752 - ], - [ - 120.46400471285244, - -25.06311027085925 - ], - [ - 120.83373912873162, - -24.521322329435694 - ], - [ - 121.20071187388947, - -23.979516316177882 - ], - [ - 121.56509596154103, - -23.437717587283085 - ], - [ - 121.92705831858103, - -22.89594870297362 - ], - [ - 122.28676012487358, - -22.354229661868235 - ], - [ - 122.64435713743012, - -21.812578116686264 - ], - [ - 123, - -21.27100957285516 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "a1e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -123196,7 +123019,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "a220000000000000" + "cellIdHex": "a1e0000000000000" }, "geometry": { "type": "Polygon", @@ -123204,167 +123027,167 @@ [ [ 123, - -31.83235904133611 + -21.27100957285516 ], [ - 122.19155711898583, - -31.72119465954957 + 122.25614368893866, + -21.144564331659375 ], [ - 121.38642607677593, - -31.6045827907781 + 121.51416728005643, + -21.01362761147115 ], [ - 120.58464091370257, - -31.482580550439312 + 120.77401706486592, + -20.878258484479932 ], [ - 119.78623246351361, - -31.3552451344781 + 120.0356324164573, + -20.738518145942958 ], [ - 118.99122826524189, - -31.22263377455108 + 119.29894511233249, + -20.594470268877764 ], [ - 118.19965246991592, - -31.08480369295835 + 118.56387856323056, + -20.446181427293272 ], [ - 117.41152573999977, - -30.94181205743925 + 117.83034693163216, + -20.293721602267034 ], [ - 116.62686513904782, - -30.793715935971445 + 117.0982541204711, + -20.13716478851835 ], [ - 115.85906420240713, - -30.971856296684983 + 116.39315534795094, + -20.304223167982837 ], [ - 115.08925673130773, - -31.145995798417903 + 115.68748663347952, + -20.46797348153037 ], [ - 114.31741442929194, - -31.316101351178638 + 114.98123496091853, + -20.62840455173057 ], [ - 113.5435074239885, - -31.482138275789122 + 114.27438805226063, + -20.785505293592585 ], [ - 112.76750382502212, - -31.644070044283826 + 113.5669343057233, + -20.93926473348562 ], [ - 111.98936921123618, - -31.801857964474127 + 112.85886272563295, + -21.089672029966017 ], [ - 111.20906603413351, - -31.955460795521123 + 112.15016284241301, + -21.23671649694413 ], [ - 110.42655292161442, - -32.1048342777988 + 111.44082462059475, + -21.38038762974112 ], [ - 110.72444200080452, - -32.70136119911467 + 111.76016939101248, + -21.973822550186256 ], [ - 111.02475796018734, - -33.29625538990687 + 112.07882401738493, + -22.567259162930156 ], [ - 111.32777527478629, - -33.889475001208375 + 112.39709609137981, + -23.16050809898654 ], [ - 111.63376595545253, - -34.4809826048604 + 112.71528442060247, + -23.753396537845475 ], [ - 111.94300035942729, - -35.070744452831775 + 113.0336797738662, + -24.34576664698648 ], [ - 112.25574797090417, - -35.65872980855367 + 113.35256560443668, + -24.93747414876025 ], [ - 112.5722781552231, - -36.244910341584664 + 113.67221875067992, + -25.528387004446433 ], [ - 112.89286089014826, - -36.82925957785007 + 113.99291011397713, + -26.118384205901382 ], [ - 113.75369465157985, - -36.77449924548529 + 114.75428468982557, + -26.068989845087874 ], [ - 114.61368202802726, - -36.7142900926262 + 115.5159677701725, + -26.01537752420747 ], [ - 115.47280330834849, - -36.64866229494072 + 116.27793706888866, + -25.957541898180285 ], [ - 116.33103545307529, - -36.577643179194254 + 117.04017071228714, + -25.89547797877166 ], [ - 117.18835269911051, - -36.50125772121083 + 117.8026473024114, + -25.829181128494586 ], [ - 118.04472709587128, - -36.419528960201696 + 118.5653459778382, + -25.758647053896865 ], [ - 118.90012898256737, - -36.33247834423667 + 119.3282464723597, + -25.683871798232712 ], [ - 119.75452741470451, - -36.24012601872457 + 120.09132917183672, + -25.604851733521752 ], [ - 120.17988605201685, - -35.69150739527282 + 120.46400471285244, + -25.06311027085925 ], [ - 120.5990304679517, - -35.14203838030864 + 120.83373912873162, + -24.521322329435694 ], [ - 121.01227246446814, - -34.591817385473256 + 121.20071187388947, + -23.979516316177882 ], [ - 121.41991114025825, - -34.04093498053776 + 121.56509596154103, + -23.437717587283085 ], [ - 121.8222334299287, - -33.48947446435056 + 121.92705831858103, + -22.89594870297362 ], [ - 122.21951463722144, - -32.93751239492885 + 122.28676012487358, + -22.354229661868235 ], [ - 122.6120189593301, - -32.38511908152551 + 122.64435713743012, + -21.812578116686264 ], [ 123, - -31.83235904133611 + -21.27100957285516 ] ] ] @@ -123373,7 +123196,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "a260000000000000" + "cellIdHex": "a220000000000000" }, "geometry": { "type": "Polygon", @@ -123547,6 +123370,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "a260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 123, + -31.83235904133611 + ], + [ + 122.19155711898583, + -31.72119465954957 + ], + [ + 121.38642607677593, + -31.6045827907781 + ], + [ + 120.58464091370257, + -31.482580550439312 + ], + [ + 119.78623246351361, + -31.3552451344781 + ], + [ + 118.99122826524189, + -31.22263377455108 + ], + [ + 118.19965246991592, + -31.08480369295835 + ], + [ + 117.41152573999977, + -30.94181205743925 + ], + [ + 116.62686513904782, + -30.793715935971445 + ], + [ + 115.85906420240713, + -30.971856296684983 + ], + [ + 115.08925673130773, + -31.145995798417903 + ], + [ + 114.31741442929194, + -31.316101351178638 + ], + [ + 113.5435074239885, + -31.482138275789122 + ], + [ + 112.76750382502212, + -31.644070044283826 + ], + [ + 111.98936921123618, + -31.801857964474127 + ], + [ + 111.20906603413351, + -31.955460795521123 + ], + [ + 110.42655292161442, + -32.1048342777988 + ], + [ + 110.72444200080452, + -32.70136119911467 + ], + [ + 111.02475796018734, + -33.29625538990687 + ], + [ + 111.32777527478629, + -33.889475001208375 + ], + [ + 111.63376595545253, + -34.4809826048604 + ], + [ + 111.94300035942729, + -35.070744452831775 + ], + [ + 112.25574797090417, + -35.65872980855367 + ], + [ + 112.5722781552231, + -36.244910341584664 + ], + [ + 112.89286089014826, + -36.82925957785007 + ], + [ + 113.75369465157985, + -36.77449924548529 + ], + [ + 114.61368202802726, + -36.7142900926262 + ], + [ + 115.47280330834849, + -36.64866229494072 + ], + [ + 116.33103545307529, + -36.577643179194254 + ], + [ + 117.18835269911051, + -36.50125772121083 + ], + [ + 118.04472709587128, + -36.419528960201696 + ], + [ + 118.90012898256737, + -36.33247834423667 + ], + [ + 119.75452741470451, + -36.24012601872457 + ], + [ + 120.17988605201685, + -35.69150739527282 + ], + [ + 120.5990304679517, + -35.14203838030864 + ], + [ + 121.01227246446814, + -34.591817385473256 + ], + [ + 121.41991114025825, + -34.04093498053776 + ], + [ + 121.8222334299287, + -33.48947446435056 + ], + [ + 122.21951463722144, + -32.93751239492885 + ], + [ + 122.6120189593301, + -32.38511908152551 + ], + [ + 123, + -31.83235904133611 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -136124,168 +136124,168 @@ "coordinates": [ [ [ - -93, - -71.6383185717657 + -109.52273056293836, + -56.870744226531976 ], [ - -93.9069060261603, - -71.00902169776889 + -109.31841642789982, + -57.56045332701846 ], [ - -94.75604084418478, - -70.37625943803498 + -109.10549593885503, + -58.248552793055154 ], [ - -95.55253805737459, - -69.74022578634873 + -108.88341828929248, + -58.935055896542245 ], [ - -96.30096360613243, - -69.10109499918784 + -108.65158507214022, + -59.61997377551145 ], [ - -97.0053892198398, - -68.4590230803993 + -108.40934507368542, + -60.303315267010895 ], [ - -97.66945515339677, - -67.81414929337836 + -108.15598837599191, + -60.985086715908466 ], [ - -98.29642393256336, - -67.16659763209445 + -107.89073965942833, + -61.66529175606487 ], [ - -98.88922652871554, - -66.51647821230704 + -107.61275057729273, + -62.34393105971 ], [ - -100.1402583528369, - -66.0214209270993 + -106.66838636885291, + -62.88990425281015 ], [ - -101.34105701996862, - -65.51815898072273 + -105.68622730007598, + -63.42947562754161 ], [ - -102.49389680133856, - -65.00701997101403 + -104.6644068091498, + -63.96237612921199 ], [ -103.60097459828359, -64.48832292540706 ], [ - -104.6644068091498, - -63.96237612921199 + -102.49389680133856, + -65.00701997101403 ], [ - -105.68622730007598, - -63.42947562754164 + -101.34105701996862, + -65.51815898072273 ], [ - -106.66838636885291, - -62.88990425281015 + -100.14025835283684, + -66.0214209270993 ], [ - -107.61275057729273, - -62.34393105971 + -98.88922652871554, + -66.51647821230704 ], [ - -108.51791397154653, - -62.815156326906425 + -98.04255812233941, + -66.0012796297689 ], [ - -109.45415808275186, - -63.28056120483308 + -97.23106052843599, + -65.48211017005151 ], [ - -110.42271898855046, - -63.73986302079267 + -96.45279208172758, + -64.95919332374994 ], [ - -111.42486197033759, - -64.19276129430467 + -95.70593191493492, + -64.43273307815618 ], [ - -112.46187724918906, - -64.63893700281545 + -94.988773019576, + -63.90291558272344 ], [ - -113.5350746297508, - -65.07805189595297 + -94.2997154271385, + -63.36991067152425 ], [ - -114.6457769004179, - -65.50974787997366 + -93.63725958776365, + -62.83387325278839 ], [ - -115.79531183021612, - -65.9336464981537 + -92.99999999999994, + -62.29494457557202 ], [ - -115.15288950370143, - -66.57351320264303 + -94.00516474454895, + -61.7552169177632 ], [ - -114.47503661598847, - -67.21016713455504 + -94.97323776222856, + -61.209384908509506 ], [ - -113.75889737786088, - -67.84344206596572 + -95.90590112119548, + -60.65762076053908 ], [ - -113.00132045714008, - -68.47315107676572 + -96.80475921952166, + -60.10009481926227 ], [ - -112.19882292286076, - -69.09908406470014 + -97.67134153137198, + -59.536973948693856 ], [ - -111.34754941490189, - -69.72100493823773 + -98.5071053419606, + -58.96842032190809 ], [ - -110.4432259393887, - -70.33864846233841 + -99.31343848061209, + -58.394590533911256 ], [ - -109.4811076489068, - -70.95171673152534 + -100.09166205123807, + -57.81563497087593 ], [ - -107.49826318675491, - -71.0974043105194 + -101.29725773145879, + -57.73363039134114 ], [ - -105.48673865259389, - -71.22592731839136 + -102.49654431266356, + -57.64135752509478 ], [ - -103.44961654011854, - -71.33720050505777 + -103.68883667516604, + -57.53876939806614 ], [ - -101.39018696733484, - -71.43122502269509 + -104.87346631424202, + -57.42583817607587 ], [ - -99.31190658866979, - -71.50809644109907 + -106.04978434795379, + -57.30255426149908 ], [ - -97.21835136647132, - -71.56801229833853 + -107.21716428257355, + -57.16892536221863 ], [ - -95.11316436615505, - -71.61127908266232 + -108.37500451586288, + -57.0249755375914 ], [ - -93, - -71.6383185717657 + -109.52273056293836, + -56.870744226531976 ] ] ] @@ -136301,168 +136301,168 @@ "coordinates": [ [ [ - -109.52273056293836, - -56.870744226531976 + -93, + -71.6383185717657 ], [ - -109.31841642789982, - -57.56045332701846 + -93.9069060261603, + -71.00902169776889 ], [ - -109.10549593885503, - -58.248552793055154 + -94.75604084418478, + -70.37625943803498 ], [ - -108.88341828929248, - -58.935055896542245 + -95.55253805737459, + -69.74022578634873 ], [ - -108.65158507214022, - -59.61997377551145 + -96.30096360613243, + -69.10109499918784 ], [ - -108.40934507368542, - -60.303315267010895 + -97.0053892198398, + -68.4590230803993 ], [ - -108.15598837599191, - -60.985086715908466 + -97.66945515339677, + -67.81414929337836 ], [ - -107.89073965942833, - -61.66529175606487 + -98.29642393256336, + -67.16659763209445 ], [ - -107.61275057729273, - -62.34393105971 + -98.88922652871554, + -66.51647821230704 ], [ - -106.66838636885291, - -62.88990425281015 + -100.1402583528369, + -66.0214209270993 ], [ - -105.68622730007598, - -63.42947562754161 + -101.34105701996862, + -65.51815898072273 ], [ - -104.6644068091498, - -63.96237612921199 + -102.49389680133856, + -65.00701997101403 ], [ -103.60097459828359, -64.48832292540706 ], [ - -102.49389680133856, - -65.00701997101403 + -104.6644068091498, + -63.96237612921199 ], [ - -101.34105701996862, - -65.51815898072273 + -105.68622730007598, + -63.42947562754164 ], [ - -100.14025835283684, - -66.0214209270993 + -106.66838636885291, + -62.88990425281015 ], [ - -98.88922652871554, - -66.51647821230704 + -107.61275057729273, + -62.34393105971 ], [ - -98.04255812233941, - -66.0012796297689 + -108.51791397154653, + -62.815156326906425 ], [ - -97.23106052843599, - -65.48211017005151 + -109.45415808275186, + -63.28056120483308 ], [ - -96.45279208172758, - -64.95919332374994 + -110.42271898855046, + -63.73986302079267 ], [ - -95.70593191493492, - -64.43273307815618 + -111.42486197033759, + -64.19276129430467 ], [ - -94.988773019576, - -63.90291558272344 + -112.46187724918906, + -64.63893700281545 ], [ - -94.2997154271385, - -63.36991067152425 + -113.5350746297508, + -65.07805189595297 ], [ - -93.63725958776365, - -62.83387325278839 + -114.6457769004179, + -65.50974787997366 ], [ - -92.99999999999994, - -62.29494457557202 + -115.79531183021612, + -65.9336464981537 ], [ - -94.00516474454895, - -61.7552169177632 + -115.15288950370143, + -66.57351320264303 ], [ - -94.97323776222856, - -61.209384908509506 + -114.47503661598847, + -67.21016713455504 ], [ - -95.90590112119548, - -60.65762076053908 + -113.75889737786088, + -67.84344206596572 ], [ - -96.80475921952166, - -60.10009481926227 + -113.00132045714008, + -68.47315107676572 ], [ - -97.67134153137198, - -59.536973948693856 + -112.19882292286076, + -69.09908406470014 ], [ - -98.5071053419606, - -58.96842032190809 + -111.34754941490189, + -69.72100493823773 ], [ - -99.31343848061209, - -58.394590533911256 + -110.4432259393887, + -70.33864846233841 ], [ - -100.09166205123807, - -57.81563497087593 + -109.4811076489068, + -70.95171673152534 ], [ - -101.29725773145879, - -57.73363039134114 + -107.49826318675491, + -71.0974043105194 ], [ - -102.49654431266356, - -57.64135752509478 + -105.48673865259389, + -71.22592731839136 ], [ - -103.68883667516604, - -57.53876939806614 + -103.44961654011854, + -71.33720050505777 ], [ - -104.87346631424202, - -57.42583817607587 + -101.39018696733484, + -71.43122502269509 ], [ - -106.04978434795379, - -57.30255426149908 + -99.31190658866979, + -71.50809644109907 ], [ - -107.21716428257355, - -57.16892536221863 + -97.21835136647132, + -71.56801229833853 ], [ - -108.37500451586288, - -57.0249755375914 + -95.11316436615505, + -71.61127908266232 ], [ - -109.52273056293836, - -56.870744226531976 + -93, + -71.6383185717657 ] ] ] @@ -137004,183 +137004,6 @@ "properties": { "cellIdHex": "c1a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -148.47726943706164, - -56.870744226531976 - ], - [ - -149.06384532373573, - -57.49861364858399 - ], - [ - -149.67278343264525, - -58.12271041334715 - ], - [ - -150.30527893603727, - -58.742925694505566 - ], - [ - -150.96260464619616, - -59.35914124581788 - ], - [ - -151.6461164628617, - -59.97122885039169 - ], - [ - -152.35725916103092, - -60.579049757774385 - ], - [ - -153.09757252429904, - -61.18245411733689 - ], - [ - -153.86869782460735, - -61.781280419764386 - ], - [ - -153.99169334031888, - -62.459737930710766 - ], - [ - -154.1207647621829, - -63.13704942337846 - ], - [ - -154.25637269597962, - -63.81323730149787 - ], - [ - -154.39902540171641, - -64.48832292540706 - ], - [ - -154.549285104871, - -65.16232652980904 - ], - [ - -154.7077753353309, - -65.83526712621756 - ], - [ - -154.87518949417415, - -66.50716238725461 - ], - [ - -155.0523008941301, - -67.17802850932762 - ], - [ - -153.3782061876375, - -67.07178279974396 - ], - [ - -151.72034504635917, - -66.95129461454157 - ], - [ - -150.08047077997264, - -66.81658893453249 - ], - [ - -148.46023687626496, - -66.66773628805916 - ], - [ - -146.86118527316358, - -66.50484894764841 - ], - [ - -145.2847369127163, - -66.32807706824003 - ], - [ - -143.73218460558985, - -66.1376048112668 - ], - [ - -142.20468816978388, - -65.93364649815369 - ], - [ - -142.10809442799507, - -65.25069772992767 - ], - [ - -142.01660755498062, - -64.56674052499844 - ], - [ - -141.9298333167486, - -63.88174916074342 - ], - [ - -141.84741700778568, - -63.1956972092715 - ], - [ - -141.76903862166353, - -62.50855757306797 - ], - [ - -141.69440871229222, - -61.8203025134879 - ], - [ - -141.6232648333497, - -61.130903673185465 - ], - [ - -141.55536846386212, - -60.44033209336555 - ], - [ - -142.50706099881938, - -60.01625932876083 - ], - [ - -143.43264709340593, - -59.58538699440576 - ], - [ - -144.3328303630418, - -59.14796778791123 - ], - [ - -145.2083160449473, - -58.70424327195756 - ], - [ - -146.05980765536782, - -58.25444404204426 - ], - [ - -146.8880040943128, - -57.798789939148016 - ], - [ - -147.69359716015833, - -57.33749029847135 - ], - [ - -148.47726943706164, - -56.870744226531976 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "c1e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -137356,175 +137179,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "c220000000000000" + "cellIdHex": "c1e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -129, - -58.39714590743121 + -148.47726943706164, + -56.870744226531976 ], [ - -129.21026978439278, - -59.08407850096783 + -149.06384532373573, + -57.49861364858399 ], [ - -129.42983050640817, - -59.76945177299179 + -149.67278343264525, + -58.12271041334715 ], [ - -129.65930643936133, - -60.45327519442716 + -150.30527893603727, + -58.742925694505566 ], [ - -129.89937853684586, - -61.13555574083114 + -150.96260464619616, + -59.35914124581788 ], [ - -130.15079094893304, - -61.81629766354613 + -151.6461164628617, + -59.97122885039169 ], [ - -130.4143584483504, - -62.49550222613892 + -152.35725916103092, + -60.579049757774385 ], [ - -130.69097491657078, - -63.173167400441294 + -153.09757252429904, + -61.18245411733689 ], [ - -130.98162306824895, - -63.84928751540707 + -153.86869782460735, + -61.781280419764386 ], [ - -130.52338623009473, - -64.50069535348311 + -153.99169334031888, + -62.459737930710766 ], [ - -130.04160361517688, - -65.14983711276177 + -154.1207647621829, + -63.13704942337846 ], [ - -129.53447057520657, - -65.79663514206756 + -154.25637269597962, + -63.81323730149787 ], [ - -129, - -66.4410004053617 + -154.39902540171641, + -64.48832292540706 ], [ - -128.43599968389805, - -67.08283105304935 + -154.549285104871, + -65.16232652980904 ], [ - -127.8400464290753, - -67.72201077397624 + -154.7077753353309, + -65.83526712621756 ], [ - -127.20945636696331, - -68.35840689066394 + -154.87518949417415, + -66.50716238725461 ], [ - -126.54125089451111, - -68.9918681535092 + -155.0523008941301, + -67.17802850932762 ], [ - -125.03667996206889, - -68.64645114177644 + -153.3782061876375, + -67.07178279974396 ], [ - -123.58019676781475, - -68.28947410728276 + -151.72034504635917, + -66.95129461454157 ], [ - -122.17094020009074, - -67.92147321695388 + -150.08047077997264, + -66.81658893453249 ], [ - -120.80792220328783, - -67.54296829664354 + -148.46023687626496, + -66.66773628805916 ], [ - -119.4900517230812, - -67.15446105599361 + -146.86118527316358, + -66.50484894764841 ], [ - -118.21615649300838, - -66.75643379649287 + -145.2847369127163, + -66.32807706824003 ], [ - -116.98500259836021, - -66.34934853742338 + -143.73218460558985, + -66.1376048112668 ], [ - -115.79531183021612, - -65.9336464981537 + -142.20468816978388, + -65.93364649815369 ], [ - -116.40489567350556, - -65.29071476068167 + -142.10809442799507, + -65.25069772992767 ], [ - -116.98399750619393, - -64.64484918956319 + -142.01660755498062, + -64.56674052499844 ], [ - -117.53476302210947, - -63.99616616468446 + -141.9298333167486, + -63.88174916074342 ], [ - -118.05914908054234, - -63.34476876623584 + -141.84741700778568, + -63.1956972092715 ], [ - -118.55894311930206, - -62.690748117113216 + -141.76903862166353, + -62.50855757306797 ], [ - -119.03578034574662, - -62.03418456916589 + -141.69440871229222, + -61.8203025134879 ], [ - -119.49115897720924, - -61.37514875210421 + -141.6232648333497, + -61.130903673185465 ], [ - -119.92645376860008, - -60.71370250167179 + -141.55536846386212, + -60.44033209336555 ], [ - -121.13383483438867, - -60.459236835672726 + -142.50706099881938, + -60.01625932876083 ], [ - -122.32066992382113, - -60.194285455973755 + -143.43264709340593, + -59.58538699440576 ], [ - -123.48670300175581, - -59.919071487390916 + -144.3328303630418, + -59.14796778791123 ], [ - -124.63173937534759, - -59.63382300499936 + -145.2083160449473, + -58.70424327195756 ], [ - -125.75564275313701, - -59.338771683650684 + -146.05980765536782, + -58.25444404204426 ], [ - -126.85833206240562, - -59.0341515487227 + -146.8880040943128, + -57.798789939148016 ], [ - -127.93977808914076, - -58.72019782851198 + -147.69359716015833, + -57.33749029847135 ], [ - -129, - -58.39714590743121 + -148.47726943706164, + -56.870744226531976 ] ] ] @@ -137533,7 +137356,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "c260000000000000" + "cellIdHex": "c220000000000000" }, "geometry": { "type": "Polygon", @@ -137707,6 +137530,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "c260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -129, + -58.39714590743121 + ], + [ + -129.21026978439278, + -59.08407850096783 + ], + [ + -129.42983050640817, + -59.76945177299179 + ], + [ + -129.65930643936133, + -60.45327519442716 + ], + [ + -129.89937853684586, + -61.13555574083114 + ], + [ + -130.15079094893304, + -61.81629766354613 + ], + [ + -130.4143584483504, + -62.49550222613892 + ], + [ + -130.69097491657078, + -63.173167400441294 + ], + [ + -130.98162306824895, + -63.84928751540707 + ], + [ + -130.52338623009473, + -64.50069535348311 + ], + [ + -130.04160361517688, + -65.14983711276177 + ], + [ + -129.53447057520657, + -65.79663514206756 + ], + [ + -129, + -66.4410004053617 + ], + [ + -128.43599968389805, + -67.08283105304935 + ], + [ + -127.8400464290753, + -67.72201077397624 + ], + [ + -127.20945636696331, + -68.35840689066394 + ], + [ + -126.54125089451111, + -68.9918681535092 + ], + [ + -125.03667996206889, + -68.64645114177644 + ], + [ + -123.58019676781475, + -68.28947410728276 + ], + [ + -122.17094020009074, + -67.92147321695388 + ], + [ + -120.80792220328783, + -67.54296829664354 + ], + [ + -119.4900517230812, + -67.15446105599361 + ], + [ + -118.21615649300838, + -66.75643379649287 + ], + [ + -116.98500259836021, + -66.34934853742338 + ], + [ + -115.79531183021612, + -65.9336464981537 + ], + [ + -116.40489567350556, + -65.29071476068167 + ], + [ + -116.98399750619393, + -64.64484918956319 + ], + [ + -117.53476302210947, + -63.99616616468446 + ], + [ + -118.05914908054234, + -63.34476876623584 + ], + [ + -118.55894311930206, + -62.690748117113216 + ], + [ + -119.03578034574662, + -62.03418456916589 + ], + [ + -119.49115897720924, + -61.37514875210421 + ], + [ + -119.92645376860008, + -60.71370250167179 + ], + [ + -121.13383483438867, + -60.459236835672726 + ], + [ + -122.32066992382113, + -60.194285455973755 + ], + [ + -123.48670300175581, + -59.919071487390916 + ], + [ + -124.63173937534759, + -59.63382300499936 + ], + [ + -125.75564275313701, + -59.338771683650684 + ], + [ + -126.85833206240562, + -59.0341515487227 + ], + [ + -127.93977808914076, + -58.72019782851198 + ], + [ + -129, + -58.39714590743121 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -139836,6 +139836,183 @@ "properties": { "cellIdHex": "c5a0000000000000" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 159, + -58.39714590743123 + ], + [ + 158.78973021560722, + -59.08407850096783 + ], + [ + 158.57016949359178, + -59.76945177299182 + ], + [ + 158.34069356063867, + -60.45327519442716 + ], + [ + 158.10062146315414, + -61.135555740831165 + ], + [ + 157.84920905106696, + -61.81629766354613 + ], + [ + 157.5856415516496, + -62.495502226138946 + ], + [ + 157.30902508342922, + -63.17316740044134 + ], + [ + 157.01837693175105, + -63.8492875154071 + ], + [ + 157.47661376990533, + -64.50069535348314 + ], + [ + 157.95839638482312, + -65.14983711276179 + ], + [ + 158.46552942479343, + -65.79663514206759 + ], + [ + 159, + -66.4410004053617 + ], + [ + 159.56400031610195, + -67.08283105304938 + ], + [ + 160.15995357092464, + -67.72201077397624 + ], + [ + 160.79054363303675, + -68.35840689066396 + ], + [ + 161.4587491054889, + -68.9918681535092 + ], + [ + 162.96332003793117, + -68.64645114177647 + ], + [ + 164.41980323218525, + -68.28947410728276 + ], + [ + 165.82905979990926, + -67.92147321695388 + ], + [ + 167.19207779671217, + -67.54296829664355 + ], + [ + 168.5099482769188, + -67.15446105599364 + ], + [ + 169.78384350699162, + -66.75643379649287 + ], + [ + 171.0149974016398, + -66.34934853742338 + ], + [ + 172.20468816978388, + -65.9336464981537 + ], + [ + 171.59510432649444, + -65.29071476068167 + ], + [ + 171.01600249380607, + -64.6448491895632 + ], + [ + 170.46523697789053, + -63.99616616468448 + ], + [ + 169.94085091945766, + -63.34476876623584 + ], + [ + 169.44105688069794, + -62.69074811711324 + ], + [ + 168.96421965425338, + -62.03418456916589 + ], + [ + 168.50884102279076, + -61.37514875210421 + ], + [ + 168.07354623139992, + -60.71370250167184 + ], + [ + 166.86616516561128, + -60.459236835672726 + ], + [ + 165.67933007617887, + -60.194285455973755 + ], + [ + 164.5132969982442, + -59.919071487390916 + ], + [ + 163.3682606246524, + -59.633823004999385 + ], + [ + 162.244357246863, + -59.338771683650734 + ], + [ + 161.14166793759432, + -59.03415154872272 + ], + [ + 160.06022191085924, + -58.72019782851198 + ], + [ + 159, + -58.39714590743123 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "cellIdHex": "c5e0000000000000" + }, "geometry": { "type": "Polygon", "coordinates": [ @@ -140011,175 +140188,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "c5e0000000000000" + "cellIdHex": "c620000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 159, - -58.39714590743123 + 139.52273056293836, + -56.870744226531976 ], [ - 158.78973021560722, - -59.08407850096783 + 138.93615467626427, + -57.49861364858399 ], [ - 158.57016949359178, - -59.76945177299182 + 138.32721656735475, + -58.12271041334715 ], [ - 158.34069356063867, - -60.45327519442716 + 137.69472106396273, + -58.742925694505566 ], [ - 158.10062146315414, - -61.135555740831165 + 137.03739535380384, + -59.35914124581788 ], [ - 157.84920905106696, - -61.81629766354613 + 136.35388353713824, + -59.97122885039169 ], [ - 157.5856415516496, - -62.495502226138946 + 135.64274083896913, + -60.579049757774385 ], [ - 157.30902508342922, - -63.17316740044134 + 134.90242747570096, + -61.18245411733689 ], [ - 157.01837693175105, - -63.8492875154071 + 134.13130217539265, + -61.781280419764414 ], [ - 157.47661376990533, - -64.50069535348314 + 134.00830665968112, + -62.459737930710766 ], [ - 157.95839638482312, - -65.14983711276179 + 133.8792352378171, + -63.13704942337843 ], [ - 158.46552942479343, - -65.79663514206759 + 133.74362730402038, + -63.81323730149787 ], [ - 159, - -66.4410004053617 + 133.60097459828353, + -64.48832292540706 ], [ - 159.56400031610195, - -67.08283105304938 + 133.45071489512907, + -65.16232652980904 ], [ - 160.15995357092464, - -67.72201077397624 + 133.2922246646691, + -65.83526712621756 ], [ - 160.79054363303675, - -68.35840689066396 + 133.12481050582585, + -66.50716238725461 ], [ - 161.4587491054889, - -68.9918681535092 + 132.9476991058699, + -67.17802850932765 ], [ - 162.96332003793117, - -68.64645114177647 + 134.6217938123625, + -67.07178279974396 ], [ - 164.41980323218525, - -68.28947410728276 + 136.27965495364083, + -66.95129461454157 ], [ - 165.82905979990926, - -67.92147321695388 + 137.91952922002736, + -66.81658893453252 ], [ - 167.19207779671217, - -67.54296829664355 + 139.53976312373504, + -66.66773628805917 ], [ - 168.5099482769188, - -67.15446105599364 + 141.13881472683642, + -66.50484894764841 ], [ - 169.78384350699162, - -66.75643379649287 + 142.7152630872837, + -66.32807706824003 ], [ - 171.0149974016398, - -66.34934853742338 + 144.26781539441015, + -66.13760481126681 ], [ - 172.20468816978388, + 145.79531183021612, -65.9336464981537 ], [ - 171.59510432649444, - -65.29071476068167 + 145.89190557200493, + -65.25069772992767 ], [ - 171.01600249380607, - -64.6448491895632 + 145.98339244501943, + -64.56674052499847 ], [ - 170.46523697789053, - -63.99616616468448 + 146.0701666832514, + -63.88174916074342 ], [ - 169.94085091945766, - -63.34476876623584 + 146.15258299221432, + -63.19569720927152 ], [ - 169.44105688069794, - -62.69074811711324 + 146.23096137833647, + -62.50855757306797 ], [ - 168.96421965425338, - -62.03418456916589 + 146.30559128770778, + -61.8203025134879 ], [ - 168.50884102279076, - -61.37514875210421 + 146.37673516665035, + -61.130903673185465 ], [ - 168.07354623139992, - -60.71370250167184 + 146.44463153613788, + -60.44033209336555 ], [ - 166.86616516561128, - -60.459236835672726 + 145.49293900118062, + -60.01625932876086 ], [ - 165.67933007617887, - -60.194285455973755 + 144.56735290659407, + -59.58538699440579 ], [ - 164.5132969982442, - -59.919071487390916 + 143.6671696369582, + -59.14796778791123 ], [ - 163.3682606246524, - -59.633823004999385 + 142.7916839550527, + -58.70424327195759 ], [ - 162.244357246863, - -59.338771683650734 + 141.94019234463224, + -58.25444404204429 ], [ - 161.14166793759432, - -59.03415154872272 + 141.1119959056872, + -57.798789939148044 ], [ - 160.06022191085924, - -58.72019782851198 + 140.30640283984167, + -57.33749029847135 ], [ - 159, - -58.39714590743123 + 139.52273056293836, + -56.870744226531976 ] ] ] @@ -140188,7 +140365,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "c620000000000000" + "cellIdHex": "c660000000000000" }, "geometry": { "type": "Polygon", @@ -140362,183 +140539,6 @@ ] } }, - { - "type": "Feature", - "properties": { - "cellIdHex": "c660000000000000" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 139.52273056293836, - -56.870744226531976 - ], - [ - 138.93615467626427, - -57.49861364858399 - ], - [ - 138.32721656735475, - -58.12271041334715 - ], - [ - 137.69472106396273, - -58.742925694505566 - ], - [ - 137.03739535380384, - -59.35914124581788 - ], - [ - 136.35388353713824, - -59.97122885039169 - ], - [ - 135.64274083896913, - -60.579049757774385 - ], - [ - 134.90242747570096, - -61.18245411733689 - ], - [ - 134.13130217539265, - -61.781280419764414 - ], - [ - 134.00830665968112, - -62.459737930710766 - ], - [ - 133.8792352378171, - -63.13704942337843 - ], - [ - 133.74362730402038, - -63.81323730149787 - ], - [ - 133.60097459828353, - -64.48832292540706 - ], - [ - 133.45071489512907, - -65.16232652980904 - ], - [ - 133.2922246646691, - -65.83526712621756 - ], - [ - 133.12481050582585, - -66.50716238725461 - ], - [ - 132.9476991058699, - -67.17802850932765 - ], - [ - 134.6217938123625, - -67.07178279974396 - ], - [ - 136.27965495364083, - -66.95129461454157 - ], - [ - 137.91952922002736, - -66.81658893453252 - ], - [ - 139.53976312373504, - -66.66773628805917 - ], - [ - 141.13881472683642, - -66.50484894764841 - ], - [ - 142.7152630872837, - -66.32807706824003 - ], - [ - 144.26781539441015, - -66.13760481126681 - ], - [ - 145.79531183021612, - -65.9336464981537 - ], - [ - 145.89190557200493, - -65.25069772992767 - ], - [ - 145.98339244501943, - -64.56674052499847 - ], - [ - 146.0701666832514, - -63.88174916074342 - ], - [ - 146.15258299221432, - -63.19569720927152 - ], - [ - 146.23096137833647, - -62.50855757306797 - ], - [ - 146.30559128770778, - -61.8203025134879 - ], - [ - 146.37673516665035, - -61.130903673185465 - ], - [ - 146.44463153613788, - -60.44033209336555 - ], - [ - 145.49293900118062, - -60.01625932876086 - ], - [ - 144.56735290659407, - -59.58538699440579 - ], - [ - 143.6671696369582, - -59.14796778791123 - ], - [ - 142.7916839550527, - -58.70424327195759 - ], - [ - 141.94019234463224, - -58.25444404204429 - ], - [ - 141.1119959056872, - -57.798789939148044 - ], - [ - 140.30640283984167, - -57.33749029847135 - ], - [ - 139.52273056293836, - -56.870744226531976 - ] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -141080,168 +141080,168 @@ "coordinates": [ [ [ - -181.52273056293836, - -56.870744226531976 + -165.00000000000006, + -71.6383185717657 ], [ - -181.31841642789982, - -57.56045332701851 + -165.9069060261603, + -71.00902169776889 ], [ - -181.10549593885503, - -58.24855279305518 + -166.75604084418478, + -70.37625943803498 ], [ - -180.88341828929248, - -58.93505589654227 + -167.5525380573746, + -69.74022578634873 ], [ - -180.65158507214028, - -59.61997377551145 + -168.30096360613243, + -69.10109499918784 ], [ - -180.40934507368542, - -60.303315267010916 + -169.0053892198398, + -68.4590230803993 ], [ - -180.1559883759919, - -60.985086715908466 + -169.66945515339677, + -67.81414929337836 ], [ - -179.89073965942833, - -61.66529175606492 + -170.2964239325634, + -67.16659763209445 ], [ - -179.6127505772928, - -62.34393105971 + -170.88922652871554, + -66.51647821230706 ], [ - -178.6683863688529, - -62.889904252810176 + -172.1402583528369, + -66.0214209270993 ], [ - -177.68622730007598, - -63.42947562754164 + -173.34105701996862, + -65.51815898072273 ], [ - -176.6644068091498, - -63.96237612921199 + -174.49389680133856, + -65.00701997101406 ], [ -175.60097459828359, -64.48832292540706 ], [ - -174.49389680133856, - -65.00701997101406 + -176.6644068091498, + -63.96237612921199 ], [ - -173.34105701996862, - -65.51815898072273 + -177.68622730007598, + -63.42947562754164 ], [ - -172.14025835283684, - -66.0214209270993 + -178.6683863688529, + -62.889904252810176 ], [ - -170.88922652871554, - -66.51647821230704 + -179.6127505772928, + -62.34393105971 ], [ - -170.04255812233947, - -66.0012796297689 + -180.51791397154653, + -62.815156326906425 ], [ - -169.231060528436, - -65.48211017005151 + -181.45415808275186, + -63.28056120483308 ], [ - -168.45279208172758, - -64.95919332374994 + -182.42271898855046, + -63.73986302079267 ], [ - -167.70593191493492, - -64.43273307815619 + -183.4248619703376, + -64.1927612943047 ], [ - -166.988773019576, - -63.90291558272344 + -184.46187724918906, + -64.63893700281548 ], [ - -166.2997154271385, - -63.36991067152425 + -185.53507462975085, + -65.07805189595297 ], [ - -165.63725958776365, - -62.83387325278839 + -186.6457769004179, + -65.50974787997369 ], [ - -165.00000000000006, - -62.29494457557204 + -187.79531183021612, + -65.9336464981537 ], [ - -166.005164744549, - -61.7552169177632 + -187.15288950370143, + -66.57351320264306 ], [ - -166.97323776222856, - -61.209384908509534 + -186.47503661598847, + -67.21016713455506 ], [ - -167.90590112119548, - -60.65762076053908 + -185.75889737786088, + -67.84344206596572 ], [ - -168.80475921952166, - -60.10009481926227 + -185.00132045714008, + -68.47315107676572 ], [ - -169.67134153137198, - -59.536973948693856 + -184.19882292286076, + -69.09908406470016 ], [ - -170.5071053419606, - -58.96842032190809 + -183.3475494149019, + -69.72100493823773 ], [ - -171.3134384806121, - -58.394590533911256 + -182.44322593938875, + -70.33864846233844 ], [ - -172.09166205123807, - -57.81563497087593 + -181.4811076489068, + -70.95171673152534 ], [ - -173.29725773145879, - -57.73363039134114 + -179.4982631867549, + -71.0974043105194 ], [ - -174.4965443126635, - -57.641357525094804 + -177.48673865259389, + -71.22592731839138 ], [ - -175.68883667516604, - -57.538769398066165 + -175.44961654011854, + -71.3372005050578 ], [ - -176.87346631424202, - -57.42583817607587 + -173.3901869673349, + -71.43122502269509 ], [ - -178.04978434795385, - -57.30255426149908 + -171.31190658866979, + -71.50809644109907 ], [ - -179.21716428257355, - -57.16892536221863 + -169.21835136647132, + -71.56801229833853 ], [ - -180.37500451586288, - -57.0249755375914 + -167.1131643661551, + -71.61127908266232 ], [ - -181.52273056293836, - -56.870744226531976 + -165.00000000000006, + -71.6383185717657 ] ] ] @@ -141257,168 +141257,168 @@ "coordinates": [ [ [ - -165.00000000000006, - -71.6383185717657 + -181.52273056293836, + -56.870744226531976 ], [ - -165.9069060261603, - -71.00902169776889 + -181.31841642789982, + -57.56045332701851 ], [ - -166.75604084418478, - -70.37625943803498 + -181.10549593885503, + -58.24855279305518 ], [ - -167.5525380573746, - -69.74022578634873 + -180.88341828929248, + -58.93505589654227 ], [ - -168.30096360613243, - -69.10109499918784 + -180.65158507214028, + -59.61997377551145 ], [ - -169.0053892198398, - -68.4590230803993 + -180.40934507368542, + -60.303315267010916 ], [ - -169.66945515339677, - -67.81414929337836 + -180.1559883759919, + -60.985086715908466 ], [ - -170.2964239325634, - -67.16659763209445 + -179.89073965942833, + -61.66529175606492 ], [ - -170.88922652871554, - -66.51647821230706 + -179.6127505772928, + -62.34393105971 ], [ - -172.1402583528369, - -66.0214209270993 + -178.6683863688529, + -62.889904252810176 ], [ - -173.34105701996862, - -65.51815898072273 + -177.68622730007598, + -63.42947562754164 ], [ - -174.49389680133856, - -65.00701997101406 + -176.6644068091498, + -63.96237612921199 ], [ -175.60097459828359, -64.48832292540706 ], [ - -176.6644068091498, - -63.96237612921199 + -174.49389680133856, + -65.00701997101406 ], [ - -177.68622730007598, - -63.42947562754164 + -173.34105701996862, + -65.51815898072273 ], [ - -178.6683863688529, - -62.889904252810176 + -172.14025835283684, + -66.0214209270993 ], [ - -179.6127505772928, - -62.34393105971 + -170.88922652871554, + -66.51647821230704 ], [ - -180.51791397154653, - -62.815156326906425 + -170.04255812233947, + -66.0012796297689 ], [ - -181.45415808275186, - -63.28056120483308 + -169.231060528436, + -65.48211017005151 ], [ - -182.42271898855046, - -63.73986302079267 + -168.45279208172758, + -64.95919332374994 ], [ - -183.4248619703376, - -64.1927612943047 + -167.70593191493492, + -64.43273307815619 ], [ - -184.46187724918906, - -64.63893700281548 + -166.988773019576, + -63.90291558272344 ], [ - -185.53507462975085, - -65.07805189595297 + -166.2997154271385, + -63.36991067152425 ], [ - -186.6457769004179, - -65.50974787997369 + -165.63725958776365, + -62.83387325278839 ], [ - -187.79531183021612, - -65.9336464981537 + -165.00000000000006, + -62.29494457557204 ], [ - -187.15288950370143, - -66.57351320264306 + -166.005164744549, + -61.7552169177632 ], [ - -186.47503661598847, - -67.21016713455506 + -166.97323776222856, + -61.209384908509534 ], [ - -185.75889737786088, - -67.84344206596572 + -167.90590112119548, + -60.65762076053908 ], [ - -185.00132045714008, - -68.47315107676572 + -168.80475921952166, + -60.10009481926227 ], [ - -184.19882292286076, - -69.09908406470016 + -169.67134153137198, + -59.536973948693856 ], [ - -183.3475494149019, - -69.72100493823773 + -170.5071053419606, + -58.96842032190809 ], [ - -182.44322593938875, - -70.33864846233844 + -171.3134384806121, + -58.394590533911256 ], [ - -181.4811076489068, - -70.95171673152534 + -172.09166205123807, + -57.81563497087593 ], [ - -179.4982631867549, - -71.0974043105194 + -173.29725773145879, + -57.73363039134114 ], [ - -177.48673865259389, - -71.22592731839138 + -174.4965443126635, + -57.641357525094804 ], [ - -175.44961654011854, - -71.3372005050578 + -175.68883667516604, + -57.538769398066165 ], [ - -173.3901869673349, - -71.43122502269509 + -176.87346631424202, + -57.42583817607587 ], [ - -171.31190658866979, - -71.50809644109907 + -178.04978434795385, + -57.30255426149908 ], [ - -169.21835136647132, - -71.56801229833853 + -179.21716428257355, + -57.16892536221863 ], [ - -167.1131643661551, - -71.61127908266232 + -180.37500451586288, + -57.0249755375914 ], [ - -165.00000000000006, - -71.6383185717657 + -181.52273056293836, + -56.870744226531976 ] ] ] @@ -144620,168 +144620,168 @@ "coordinates": [ [ [ - -110.36878034136026, - -19.765749214107966 + -102.01215396221096, + -5.539553971242925 ], [ - -109.90140687049427, - -19.22578562572706 + -102.45238668809259, + -6.087793807803666 ], [ - -109.43749584183229, - -18.68541240138084 + -102.89234614474202, + -6.635154413511072 ], [ - -108.97672599289342, - -18.144588368280502 + -103.3321366150264, + -7.181633078390141 ], [ - -108.51881076559812, - -17.60327707188238 + -103.7718625248765, + -7.727227307711856 ], [ - -108.06349204783288, - -17.06144630435919 + -104.21162860961692, + -8.27193483841325 ], [ - -107.6105352155015, - -16.519067651621324 + -104.65154009197863, + -8.815753660725923 ], [ - -107.15972516946283, - -15.976116072179915 + -105.09170287427969, + -9.358682045737732 ], [ - -106.71086314054935, - -15.43256951359882 + -105.53222374775902, + -9.900718579752127 ], [ - -106.55946369837375, - -14.736667324306035 + -105.67737019605238, + -10.588577127466538 ], [ - -106.4098459201964, - -14.042272970301028 + -105.82267215124983, + -11.277258787061943 ], [ - -106.26165509351574, - -13.349255364037273 + -105.96833289253038, + -11.966861909755394 ], [ -106.11457722173401, -12.657490651991068 ], [ - -105.96833289253038, - -11.966861909755394 + -106.26165509351574, + -13.349255364037273 ], [ - -105.82267215124983, - -11.277258787061943 + -106.4098459201964, + -14.04227297030104 ], [ - -105.67737019605238, - -10.588577127466538 + -106.55946369837375, + -14.736667324306035 ], [ - -105.53222374775902, - -9.900718579752127 + -106.71086314054935, + -15.43256951359882 ], [ - -106.17256670648305, - -9.889032056621277 + -106.06842667997307, + -15.452327485475799 ], [ - -106.81358684311812, - -9.875639674799205 + -105.42668692501655, + -15.469948271005133 ], [ - -107.45532370259411, - -9.860598657256052 + -104.78559476458088, + -15.485386078981893 ], [ - -108.09781745861352, - -9.84396991820042 + -104.1451031071307, + -15.498598325219568 ], [ - -108.74110886776737, - -9.825818363993019 + -103.5051668097035, + -15.509545341788535 ], [ - -109.38523921097328, - -9.806213221338924 + -102.86574260413374, + -15.5181901157398 ], [ - -110.03025022035325, - -9.785228395433935 + -102.22678902150619, + -15.524498054055087 ], [ - -110.6761839894013, - -9.762942861013203 + -101.58826631565478, + -15.528436771949783 ], [ - -110.93592918577667, - -10.409013093694039 + -101.32982689973971, + -14.851750552251747 ], [ - -111.19601553594839, - -11.054993179670081 + -101.07334314816751, + -14.17622358685069 ], [ - -111.45657645100175, - -11.700935970536587 + -100.81846534184194, + -13.501761209659417 ], [ - -111.71775449767881, - -12.346898615736352 + -100.56487718047481, + -12.828273363583484 ], [ - -111.97970315563538, - -12.992943138130633 + -100.31229110539198, + -12.155674492187913 ], [ - -112.24258894961935, - -13.639137096939216 + -100.06044432880287, + -11.48388338530267 ], [ - -112.50659405641642, - -14.285554351489557 + -99.80909544908388, + -10.81282299595777 ], [ - -112.7719195173712, - -14.932275940698906 + -99.55802155392638, + -10.142420241197168 ], [ - -112.46338629722612, - -15.527609686251594 + -99.86635838763203, + -9.56520038636242 ], [ - -112.15632672608672, - -16.12531269776454 + -100.17442008872627, + -8.988583391237452 ], [ - -111.85110418311325, - -16.725469782291107 + -100.48210907230543, + -8.412533344885107 ], [ - -111.54812785912873, - -17.32816270511035 + -100.78933690645914, + -7.837014663183379 ], [ - -111.24785796639458, - -17.93346901460606 + -101.09602367418313, + -7.261992101872206 ], [ - -110.95081152607969, - -18.54146064245087 + -101.40209738005098, + -6.687430765950811 ], [ - -110.65756878828313, - -19.15220224104704 + -101.70749339868064, + -6.113296115912781 ], [ - -110.36878034136026, - -19.765749214107966 + -102.01215396221096, + -5.539553971242925 ] ] ] @@ -144797,168 +144797,168 @@ "coordinates": [ [ [ - -102.01215396221096, - -5.539553971242925 + -110.36878034136026, + -19.765749214107966 ], [ - -102.45238668809259, - -6.087793807803666 + -109.90140687049427, + -19.22578562572706 ], [ - -102.89234614474202, - -6.635154413511072 + -109.43749584183229, + -18.68541240138084 ], [ - -103.3321366150264, - -7.181633078390141 + -108.97672599289342, + -18.144588368280502 ], [ - -103.7718625248765, - -7.727227307711856 + -108.51881076559812, + -17.60327707188238 ], [ - -104.21162860961692, - -8.27193483841325 + -108.06349204783288, + -17.06144630435919 ], [ - -104.65154009197863, - -8.815753660725923 + -107.6105352155015, + -16.519067651621324 ], [ - -105.09170287427969, - -9.358682045737732 + -107.15972516946283, + -15.976116072179915 ], [ - -105.53222374775902, - -9.900718579752127 + -106.71086314054935, + -15.43256951359882 ], [ - -105.67737019605238, - -10.588577127466538 + -106.55946369837375, + -14.736667324306035 ], [ - -105.82267215124983, - -11.277258787061943 + -106.4098459201964, + -14.042272970301028 ], [ - -105.96833289253038, - -11.966861909755394 + -106.26165509351574, + -13.349255364037273 ], [ -106.11457722173401, -12.657490651991068 ], [ - -106.26165509351574, - -13.349255364037273 + -105.96833289253038, + -11.966861909755394 ], [ - -106.4098459201964, - -14.04227297030104 + -105.82267215124983, + -11.277258787061943 ], [ - -106.55946369837375, - -14.736667324306035 + -105.67737019605238, + -10.588577127466538 ], [ - -106.71086314054935, - -15.43256951359882 + -105.53222374775902, + -9.900718579752127 ], [ - -106.06842667997307, - -15.452327485475799 + -106.17256670648305, + -9.889032056621277 ], [ - -105.42668692501655, - -15.469948271005133 + -106.81358684311812, + -9.875639674799205 ], [ - -104.78559476458088, - -15.485386078981893 + -107.45532370259411, + -9.860598657256052 ], [ - -104.1451031071307, - -15.498598325219568 + -108.09781745861352, + -9.84396991820042 ], [ - -103.5051668097035, - -15.509545341788535 + -108.74110886776737, + -9.825818363993019 ], [ - -102.86574260413374, - -15.5181901157398 + -109.38523921097328, + -9.806213221338924 ], [ - -102.22678902150619, - -15.524498054055087 + -110.03025022035325, + -9.785228395433935 ], [ - -101.58826631565478, - -15.528436771949783 + -110.6761839894013, + -9.762942861013203 ], [ - -101.32982689973971, - -14.851750552251747 + -110.93592918577667, + -10.409013093694039 ], [ - -101.07334314816751, - -14.17622358685069 + -111.19601553594839, + -11.054993179670081 ], [ - -100.81846534184194, - -13.501761209659417 + -111.45657645100175, + -11.700935970536587 ], [ - -100.56487718047481, - -12.828273363583484 + -111.71775449767881, + -12.346898615736352 ], [ - -100.31229110539198, - -12.155674492187913 + -111.97970315563538, + -12.992943138130633 ], [ - -100.06044432880287, - -11.48388338530267 + -112.24258894961935, + -13.639137096939216 ], [ - -99.80909544908388, - -10.81282299595777 + -112.50659405641642, + -14.285554351489557 ], [ - -99.55802155392638, - -10.142420241197168 + -112.7719195173712, + -14.932275940698906 ], [ - -99.86635838763203, - -9.56520038636242 + -112.46338629722612, + -15.527609686251594 ], [ - -100.17442008872627, - -8.988583391237452 + -112.15632672608672, + -16.12531269776454 ], [ - -100.48210907230543, - -8.412533344885107 + -111.85110418311325, + -16.725469782291107 ], [ - -100.78933690645914, - -7.837014663183379 + -111.54812785912873, + -17.32816270511035 ], [ - -101.09602367418313, - -7.261992101872206 + -111.24785796639458, + -17.93346901460606 ], [ - -101.40209738005098, - -6.687430765950811 + -110.95081152607969, + -18.54146064245087 ], [ - -101.70749339868064, - -6.113296115912781 + -110.65756878828313, + -19.15220224104704 ], [ - -102.01215396221096, - -5.539553971242925 + -110.36878034136026, + -19.765749214107966 ] ] ] @@ -145500,183 +145500,6 @@ "properties": { "cellIdHex": "d5a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -119.9878460377891, - 5.539553971242925 - ], - [ - -120.45639607740355, - 5.008393721081486 - ], - [ - -120.9249744614408, - 4.478017630542161 - ], - [ - -121.3936853139611, - 3.9483747223139747 - ], - [ - -121.86263187655243, - 3.4194082786617286 - ], - [ - -122.3319165244335, - 2.891055108874837 - ], - [ - -122.80164075634968, - 2.3632447023815137 - ], - [ - -123.2719051518643, - 1.8358982472227137 - ], - [ - -123.74280928781297, - 1.3089274893843406 - ], - [ - -123.91651809901794, - 0.6458218262693028 - ], - [ - -124.09018338716038, - -0.016296175764802048 - ], - [ - -124.26385809203714, - -0.6774493631903968 - ], - [ - -124.43759490858952, - -1.337660587380447 - ], - [ - -124.61144635998471, - -1.9969527523505193 - ], - [ - -124.78546487039199, - -2.6553488698728094 - ], - [ - -124.95970283774409, - -3.3128721235315823 - ], - [ - -125.1342127067793, - -3.9695459436732334 - ], - [ - -124.47079653080698, - -3.974093690668818 - ], - [ - -123.80820028672161, - -3.981178330148645 - ], - [ - -123.14647746295498, - -3.9905139361273716 - ], - [ - -122.48567129117515, - -4.001832516138981 - ], - [ - -121.825815832557, - -4.014882826383678 - ], - [ - -121.16693696063243, - -4.029429260903215 - ], - [ - -120.5090532497519, - -4.045250811444706 - ], - [ - -119.8521767775203, - -4.062140094552287 - ], - [ - -119.57568354201169, - -3.4311290495609765 - ], - [ - -119.29933695416264, - -2.7991502175327345 - ], - [ - -119.02305948981723, - -2.1661921917062075 - ], - [ - -118.74677338408276, - -1.532243396145345 - ], - [ - -118.47040053633611, - -0.8972920790912999 - ], - [ - -118.19386241454436, - -0.2613263082885105 - ], - [ - -117.91707995854631, - 0.3756660320218461 - ], - [ - -117.63997348195528, - 1.0136972426827464 - ], - [ - -117.9359797859729, - 1.5800403296751107 - ], - [ - -118.23121579921474, - 2.1461259957650105 - ], - [ - -118.52570371450292, - 2.711996785024204 - ], - [ - -118.81946794366138, - 3.277694319908736 - ], - [ - -119.11253496919323, - 3.8432593346234527 - ], - [ - -119.40493321216343, - 4.408731708328166 - ], - [ - -119.69669291496609, - 4.974150498056712 - ], - [ - -119.9878460377891, - 5.539553971242925 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "d5e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -145852,175 +145675,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "d620000000000000" + "cellIdHex": "d5e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -111, - 0 + -119.9878460377891, + 5.539553971242925 ], [ - -111.45419131759883, - -0.531072405752185 + -120.45639607740355, + 5.008393721081486 ], [ - -111.90817706895035, - -1.060939551557448 + -120.9249744614408, + 4.478017630542161 ], [ - -112.36205549747774, - -1.5895975332289387 + -121.3936853139611, + 3.9483747223139747 ], [ - -112.81592429134611, - -2.1170427308839774 + -121.86263187655243, + 3.4194082786617286 ], [ - -113.26988069195545, - -2.6432718489965294 + -122.3319165244335, + 2.891055108874837 ], [ - -113.724021604661, - -3.1682819659542947 + -122.80164075634968, + 2.3632447023815137 ], [ - -114.17844371250305, - -3.692070594738621 + -123.2719051518643, + 1.8358982472227137 ], [ - -114.63324359383967, - -4.214635756699458 + -123.74280928781297, + 1.3089274893843406 ], [ - -114.79063955530228, - -4.882568632135537 + -123.91651809901794, + 0.6458218262693028 ], [ - -114.94752520234039, - -5.550098782143663 + -124.09018338716038, + -0.016296175764802048 ], [ - -115.1039657701059, - -6.217268577321612 + -124.26385809203714, + -0.6774493631903968 ], [ - -115.26002837519957, - -6.88412251681717 + -124.43759490858952, + -1.337660587380447 ], [ - -115.4157824623316, - -7.550707512934441 + -124.61144635998471, + -1.9969527523505193 ], [ - -115.5713003245167, - -8.217073218024874 + -124.78546487039199, + -2.6553488698728094 ], [ - -115.72665771393235, - -8.883272401048544 + -124.95970283774409, + -3.3128721235315823 ], [ - -115.88193456505019, - -9.549361382649163 + -125.1342127067793, + -3.9695459436732334 ], [ - -115.22710774490145, - -9.57843985604468 + -124.47079653080698, + -3.974093690668818 ], [ - -114.57353483960543, - -9.607092613099725 + -123.80820028672161, + -3.981178330148645 ], [ - -113.92117709963219, - -9.635180855186489 + -123.14647746295498, + -3.9905139361273716 ], [ - -113.26999443513489, - -9.662575634479998 + -122.48567129117515, + -4.001832516138981 ], [ - -112.6199457641386, - -9.689157050390252 + -121.825815832557, + -4.014882826383678 ], [ - -111.97098931138044, - -9.714813516199449 + -121.16693696063243, + -4.029429260903215 ], [ - -111.32308286398506, - -9.739441089552022 + -120.5090532497519, + -4.045250811444706 ], [ - -110.6761839894013, - -9.762942861013203 + -119.8521767775203, + -4.062140094552287 ], [ - -110.41665423222219, - -9.116733427807839 + -119.57568354201169, + -3.4311290495609765 ], [ - -110.15722067545227, - -8.470339103107012 + -119.29933695416264, + -2.7991502175327345 ], [ - -109.8977695273918, - -7.823717180049912 + -119.02305948981723, + -2.1661921917062075 ], [ - -109.63819157002354, - -7.176827605625976 + -118.74677338408276, + -1.532243396145345 ], [ - -109.37838141191747, - -6.529632692281419 + -118.47040053633611, + -0.8972920790912999 ], [ - -109.11823684431425, - -5.882096865730695 + -118.19386241454436, + -0.2613263082885105 ], [ - -108.85765828182792, - -5.234186444131002 + -117.91707995854631, + 0.3756660320218461 ], [ - -108.59654827278672, - -4.5858694444802 + -117.63997348195528, + 1.0136972426827464 ], [ - -108.89999405871362, - -4.01108523472533 + -117.9359797859729, + 1.5800403296751107 ], [ - -109.2026160420993, - -3.436825732891514 + -118.23121579921474, + 2.1461259957650105 ], [ - -109.5043897076419, - -2.8630493306059432 + -118.52570371450292, + 2.711996785024204 ], [ - -109.80529546243304, - -2.2897150298292908 + -118.81946794366138, + 3.277694319908736 ], [ - -110.10531826743443, - -1.716782439709283 + -119.11253496919323, + 3.8432593346234527 ], [ - -110.40444729954265, - -1.1442117709619075 + -119.40493321216343, + 4.408731708328166 ], [ - -110.70267564186202, - -0.5719638281265695 + -119.69669291496609, + 4.974150498056712 ], [ - -111, - 0 + -119.9878460377891, + 5.539553971242925 ] ] ] @@ -146029,7 +145852,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "d660000000000000" + "cellIdHex": "d620000000000000" }, "geometry": { "type": "Polygon", @@ -146203,6 +146026,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "d660000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -111, + 0 + ], + [ + -111.45419131759883, + -0.531072405752185 + ], + [ + -111.90817706895035, + -1.060939551557448 + ], + [ + -112.36205549747774, + -1.5895975332289387 + ], + [ + -112.81592429134611, + -2.1170427308839774 + ], + [ + -113.26988069195545, + -2.6432718489965294 + ], + [ + -113.724021604661, + -3.1682819659542947 + ], + [ + -114.17844371250305, + -3.692070594738621 + ], + [ + -114.63324359383967, + -4.214635756699458 + ], + [ + -114.79063955530228, + -4.882568632135537 + ], + [ + -114.94752520234039, + -5.550098782143663 + ], + [ + -115.1039657701059, + -6.217268577321612 + ], + [ + -115.26002837519957, + -6.88412251681717 + ], + [ + -115.4157824623316, + -7.550707512934441 + ], + [ + -115.5713003245167, + -8.217073218024874 + ], + [ + -115.72665771393235, + -8.883272401048544 + ], + [ + -115.88193456505019, + -9.549361382649163 + ], + [ + -115.22710774490145, + -9.57843985604468 + ], + [ + -114.57353483960543, + -9.607092613099725 + ], + [ + -113.92117709963219, + -9.635180855186489 + ], + [ + -113.26999443513489, + -9.662575634479998 + ], + [ + -112.6199457641386, + -9.689157050390252 + ], + [ + -111.97098931138044, + -9.714813516199449 + ], + [ + -111.32308286398506, + -9.739441089552022 + ], + [ + -110.6761839894013, + -9.762942861013203 + ], + [ + -110.41665423222219, + -9.116733427807839 + ], + [ + -110.15722067545227, + -8.470339103107012 + ], + [ + -109.8977695273918, + -7.823717180049912 + ], + [ + -109.63819157002354, + -7.176827605625976 + ], + [ + -109.37838141191747, + -6.529632692281419 + ], + [ + -109.11823684431425, + -5.882096865730695 + ], + [ + -108.85765828182792, + -5.234186444131002 + ], + [ + -108.59654827278672, + -4.5858694444802 + ], + [ + -108.89999405871362, + -4.01108523472533 + ], + [ + -109.2026160420993, + -3.436825732891514 + ], + [ + -109.5043897076419, + -2.8630493306059432 + ], + [ + -109.80529546243304, + -2.2897150298292908 + ], + [ + -110.10531826743443, + -1.716782439709283 + ], + [ + -110.40444729954265, + -1.1442117709619075 + ], + [ + -110.70267564186202, + -0.5719638281265695 + ], + [ + -111, + 0 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -148332,183 +148332,6 @@ "properties": { "cellIdHex": "d9a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -138.4208573990163, - -13.628636133967635 - ], - [ - -138.69620726608582, - -13.002746034453729 - ], - [ - -138.97058618777515, - -12.376251432117138 - ], - [ - -139.2440850702983, - -11.749130829126505 - ], - [ - -139.51679224344804, - -11.121364333331133 - ], - [ - -139.7887938857217, - -10.492933345721061 - ], - [ - -140.06017437680737, - -9.863820310405199 - ], - [ - -140.33101659474175, - -9.234008513297548 - ], - [ - -140.60140217052947, - -8.603481919068026 - ], - [ - -141.13804167220866, - -8.175607546454666 - ], - [ - -141.67328414145254, - -7.746436668147357 - ], - [ - -142.20722845322143, - -7.315947442795506 - ], - [ - -142.73997162480043, - -6.88412251681717 - ], - [ - -143.2716090737777, - -6.450948356044848 - ], - [ - -143.80223485243573, - -6.016414688115981 - ], - [ - -144.33194186111712, - -5.580514035405847 - ], - [ - -144.8608220429819, - -5.143241322392131 - ], - [ - -145.16646440234285, - -5.717321523379223 - ], - [ - -145.47284531592703, - -6.292255639087746 - ], - [ - -145.7799247629905, - -6.8680986425411 - ], - [ - -146.08765500144727, - -7.444906555547451 - ], - [ - -146.39597984145757, - -8.022736425852864 - ], - [ - -146.70483384640409, - -8.601646293856072 - ], - [ - -147.01414145412753, - -9.181695147163907 - ], - [ - -147.32381601059876, - -9.762942861013215 - ], - [ - -146.87631531743943, - -10.289904421887828 - ], - [ - -146.42799711821368, - -10.815697024934158 - ], - [ - -145.9787667859938, - -11.340310481399507 - ], - [ - -145.52852934250126, - -11.86373431558934 - ], - [ - -145.07718936317252, - -12.385957764485871 - ], - [ - -144.62465087634575, - -12.906969781353348 - ], - [ - -144.1708172548573, - -13.426759044313485 - ], - [ - -143.71559109784482, - -13.94531397116376 - ], - [ - -143.059521146517, - -13.90731505951831 - ], - [ - -142.40193352343698, - -13.868501904231401 - ], - [ - -141.74276111249787, - -13.829033834593607 - ], - [ - -141.08193733294002, - -13.78908566859276 - ], - [ - -140.41939680656026, - -13.748849484199871 - ], - [ - -139.75507617321074, - -13.708536612122582 - ], - [ - -139.0889150830111, - -13.668379879030143 - ], - [ - -138.4208573990163, - -13.628636133967635 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "d9e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -148684,175 +148507,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "da20000000000000" + "cellIdHex": "d9e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -147.63121965863974, - -19.765749214107966 + -138.4208573990163, + -13.628636133967635 ], [ - -147.91494750633882, - -19.09844430847657 + -138.69620726608582, + -13.002746034453729 ], [ - -148.19390227320116, - -18.432713723067852 + -138.97058618777515, + -12.376251432117138 ], [ - -148.46876297352026, - -17.768404416390695 + -139.2440850702983, + -11.749130829126505 ], [ - -148.7401094168863, - -17.10537278396115 + -139.51679224344804, + -11.121364333331133 ], [ - -149.00844082358805, - -16.443484826667977 + -139.7887938857217, + -10.492933345721061 ], [ - -149.27419051252275, - -15.782615938070585 + -140.06017437680737, + -9.863820310405199 ], [ - -149.53773757942582, - -15.122650471068722 + -140.33101659474175, + -9.234008513297548 ], [ - -149.79941625045717, - -14.463481187019163 + -140.60140217052947, + -8.603481919068026 ], [ - -150.32273148954476, - -14.014156121733944 + -141.13804167220866, + -8.175607546454666 ], [ - -150.84477819391702, - -13.563371433297412 + -141.67328414145254, + -7.746436668147357 ], [ - -151.36564568206188, - -13.111144041777466 + -142.20722845322143, + -7.315947442795506 ], [ - -151.88542277826605, - -12.657490651991097 + -142.73997162480043, + -6.88412251681717 ], [ - -152.4041979230792, - -12.202427742880495 + -143.2716090737777, + -6.450948356044848 ], [ - -152.92205927327922, - -11.745971561108755 + -143.80223485243573, + -6.016414688115981 ], [ - -153.43909479343284, - -11.288138118190995 + -144.33194186111712, + -5.580514035405847 ], [ - -153.95539234074295, - -10.828943190607784 + -144.8608220429819, + -5.143241322392131 ], [ - -154.26417952841075, - -11.41248804817065 + -145.16646440234285, + -5.717321523379223 ], [ - -154.57281380622544, - -11.997055371957863 + -145.47284531592703, + -6.292255639087746 ], [ - -154.8811432563067, - -12.58269009195958 + -145.7799247629905, + -6.8680986425411 ], [ - -155.18900036232952, - -13.169437097609082 + -146.08765500144727, + -7.444906555547451 ], [ - -155.4962007172045, - -13.75734111316276 + -146.39597984145757, + -8.022736425852864 ], [ - -155.8025416251612, - -14.346446552647892 + -146.70483384640409, + -8.601646293856072 ], [ - -156.10780059043248, - -14.93679735154157 + -147.01414145412753, + -9.181695147163907 ], [ - -156.41173368434522, - -15.528436771949771 + -147.32381601059876, + -9.762942861013215 ], [ - -156.05716863551277, - -16.042514718075395 + -146.87631531743943, + -10.289904421887828 ], [ - -155.70098120956862, - -16.556654794863714 + -146.42799711821368, + -10.815697024934158 ], [ - -155.3430375505448, - -17.07085868293251 + -145.9787667859938, + -11.340310481399507 ], [ - -154.9831987372187, - -17.585126846827603 + -145.52852934250126, + -11.86373431558934 ], [ - -154.62132039648236, - -18.099458347308463 + -145.07718936317252, + -12.385957764485871 ], [ - -154.2572522891051, - -18.61385062882123 + -144.62465087634575, + -12.906969781353348 ], [ - -153.89083786567477, - -19.128299278685525 + -144.1708172548573, + -13.426759044313485 ], [ - -153.5219137903668, - -19.642797754009656 + -143.71559109784482, + -13.94531397116376 ], [ - -152.78714823453504, - -19.670330952804147 + -143.059521146517, + -13.90731505951831 ], [ - -152.05212715358653, - -19.69429229573705 + -142.40193352343698, + -13.868501904231401 ], [ - -151.31677225819487, - -19.714720627079508 + -141.74276111249787, + -13.829033834593607 ], [ - -150.5809926882668, - -19.73166097705854 + -141.08193733294002, + -13.78908566859276 ], [ - -149.8446826130986, - -19.74516594958406 + -140.41939680656026, + -13.748849484199871 ], [ - -149.10771828903637, - -19.755297494713815 + -139.75507617321074, + -13.708536612122582 ], [ - -148.36995442511397, - -19.76212919146411 + -139.0889150830111, + -13.668379879030143 ], [ - -147.63121965863974, - -19.765749214107966 + -138.4208573990163, + -13.628636133967635 ] ] ] @@ -148861,7 +148684,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "da60000000000000" + "cellIdHex": "da20000000000000" }, "geometry": { "type": "Polygon", @@ -149035,6 +148858,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "da60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -147.63121965863974, + -19.765749214107966 + ], + [ + -147.91494750633882, + -19.09844430847657 + ], + [ + -148.19390227320116, + -18.432713723067852 + ], + [ + -148.46876297352026, + -17.768404416390695 + ], + [ + -148.7401094168863, + -17.10537278396115 + ], + [ + -149.00844082358805, + -16.443484826667977 + ], + [ + -149.27419051252275, + -15.782615938070585 + ], + [ + -149.53773757942582, + -15.122650471068722 + ], + [ + -149.79941625045717, + -14.463481187019163 + ], + [ + -150.32273148954476, + -14.014156121733944 + ], + [ + -150.84477819391702, + -13.563371433297412 + ], + [ + -151.36564568206188, + -13.111144041777466 + ], + [ + -151.88542277826605, + -12.657490651991097 + ], + [ + -152.4041979230792, + -12.202427742880495 + ], + [ + -152.92205927327922, + -11.745971561108755 + ], + [ + -153.43909479343284, + -11.288138118190995 + ], + [ + -153.95539234074295, + -10.828943190607784 + ], + [ + -154.26417952841075, + -11.41248804817065 + ], + [ + -154.57281380622544, + -11.997055371957863 + ], + [ + -154.8811432563067, + -12.58269009195958 + ], + [ + -155.18900036232952, + -13.169437097609082 + ], + [ + -155.4962007172045, + -13.75734111316276 + ], + [ + -155.8025416251612, + -14.346446552647892 + ], + [ + -156.10780059043248, + -14.93679735154157 + ], + [ + -156.41173368434522, + -15.528436771949771 + ], + [ + -156.05716863551277, + -16.042514718075395 + ], + [ + -155.70098120956862, + -16.556654794863714 + ], + [ + -155.3430375505448, + -17.07085868293251 + ], + [ + -154.9831987372187, + -17.585126846827603 + ], + [ + -154.62132039648236, + -18.099458347308463 + ], + [ + -154.2572522891051, + -18.61385062882123 + ], + [ + -153.89083786567477, + -19.128299278685525 + ], + [ + -153.5219137903668, + -19.642797754009656 + ], + [ + -152.78714823453504, + -19.670330952804147 + ], + [ + -152.05212715358653, + -19.69429229573705 + ], + [ + -151.31677225819487, + -19.714720627079508 + ], + [ + -150.5809926882668, + -19.73166097705854 + ], + [ + -149.8446826130986, + -19.74516594958406 + ], + [ + -149.10771828903637, + -19.755297494713815 + ], + [ + -148.36995442511397, + -19.76212919146411 + ], + [ + -147.63121965863974, + -19.765749214107966 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -149576,168 +149576,168 @@ "coordinates": [ [ [ - -138.0121539622109, - 5.539553971242925 + -129, + -8.162533854955054 ], [ - -137.72820990741195, - 4.896562751656497 + -129.29885164248992, + -7.530390021971772 ], [ - -137.4447267842503, - 4.254708312632621 + -129.59629527082154, + -6.898735635532024 ], [ - -137.16161901356156, - 3.613970768281407 + -129.8924022004989, + -6.267375132306927 ], [ - -136.87880195269753, - 2.9743298550319537 + -130.1872472734758, + -5.636140955798851 ], [ - -136.5961917747536, - 2.335764856516282 + -130.48090772296814, + -5.00488848560826 ], [ - -136.3137053498254, - 1.6982545161551839 + -130.7734623771163, + -4.373492007958592 ], [ - -136.03126012788243, - 1.0617769353137823 + -131.06499110459856, + -3.741841488224458 ], [ - -135.74877402286756, - 0.42630945444010043 + -131.35557443437722, + -3.1098399666444574 ], [ - -135.20381863135577, - -0.014556886277865702 + -131.90945960168006, + -2.665248288661079 ], [ - -134.65782888940691, - -0.4554068187673719 + -132.46184910321176, + -2.2218651838138443 ], [ - -134.11071886569243, - -0.8963863812880525 + -133.01280725516892, + -1.7794162308254944 ], [ -133.56240509141048, -1.337660587380447 ], [ - -133.01280725516892, - -1.7794162308255073 + -134.11071886569243, + -0.8963863812880525 ], [ - -132.46184910321176, - -2.2218651838138443 + -134.65782888940691, + -0.45540681876735906 ], [ - -131.90945960168006, - -2.665248288661079 + -135.20381863135577, + -0.01455688627787848 ], [ - -131.35557443437722, - -3.1098399666444574 + -135.74877402286756, + 0.42630945444010043 ], [ - -131.0583898202791, - -2.5633608674609674 + -136.04579455038055, + -0.13292275320976288 ], [ - -130.7620676776977, - -2.0173791374190486 + -136.3435909394206, + -0.6925672169305065 ], [ - -130.46657012644164, - -1.4718332931284461 + -136.64218764960935, + -1.2526762337456798 ], [ - -130.1718573374897, - -0.9266645541038917 + -136.94160638375365, + -1.8133037611419598 ], [ - -129.87788774375184, - -0.38181668468205077 + -137.24186582112253, + -2.374505485660123 ], [ - -129.58461822058354, - 0.16276415527488097 + -137.5429813172393, + -2.9363388920133824 ], [ - -129.2920042397452, - 0.7071295512160436 + -137.8449645663781, + -3.4988633322726352 ], [ - -129, - 1.2513289666321188 + -138.1478232224797, + -4.062140094552287 ], [ - -129.47755001279882, - 1.7910707032452415 + -137.68253208209399, + -4.578278183193922 ], [ - -129.9542390034718, - 2.3296810820991483 + -137.2161312749326, + -5.0935273714458225 ], [ - -130.43012946752907, - 2.8673976099778757 + -136.74851339638042, + -5.6079385184327935 ], [ - -130.90529082583691, - 3.4044316034361413 + -136.27956962063024, + -6.121570777392062 ], [ - -131.37979825231525, - 3.940971540909363 + -135.80918955775473, + -6.634493101618323 ], [ - -131.85373174364497, - 4.477185926411804 + -135.33726113269404, + -7.146786076626593 ], [ - -132.32717538289097, - 5.013225743753909 + -134.86367050097851, + -7.6585441619597034 ], [ - -132.8002167591656, - 5.549226566225722 + -134.38830202323248, + -8.16987845107548 ], [ - -133.45339016572893, - 5.5532112519364265 + -133.71812165240743, + -8.155493059284444 ], [ - -134.10614007269737, - 5.5553932800526935 + -133.0467712080159, + -8.144050026715384 ], [ - -134.75843208913295, - 5.5559410707491566 + -132.37432830257842, + -8.13595699115635 ], [ - -135.41023687942027, - 5.555015524844163 + -131.70089036514298, + -8.131655257677629 ], [ - -136.06152979340732, - 5.552770373117146 + -131.0265774826408, + -8.131622689803509 ], [ - -136.71229052089836, - 5.549352511082723 + -130.3515356020991, + -8.136376818820137 ], [ - -137.36250276916803, - 5.544902319538789 + -129.6759401339899, + -8.146478176724932 ], [ - -138.0121539622109, - 5.539553971242925 + -129, + -8.162533854955054 ] ] ] @@ -149753,168 +149753,168 @@ "coordinates": [ [ [ - -129, - -8.162533854955054 + -138.0121539622109, + 5.539553971242925 ], [ - -129.29885164248992, - -7.530390021971772 + -137.72820990741195, + 4.896562751656497 ], [ - -129.59629527082154, - -6.898735635532024 + -137.4447267842503, + 4.254708312632621 ], [ - -129.8924022004989, - -6.267375132306927 + -137.16161901356156, + 3.613970768281407 ], [ - -130.1872472734758, - -5.636140955798851 + -136.87880195269753, + 2.9743298550319537 ], [ - -130.48090772296814, - -5.00488848560826 + -136.5961917747536, + 2.335764856516282 ], [ - -130.7734623771163, - -4.373492007958592 + -136.3137053498254, + 1.6982545161551839 ], [ - -131.06499110459856, - -3.741841488224458 + -136.03126012788243, + 1.0617769353137823 ], [ - -131.35557443437722, - -3.1098399666444574 + -135.74877402286756, + 0.42630945444010043 ], [ - -131.90945960168006, - -2.665248288661079 + -135.20381863135577, + -0.014556886277865702 ], [ - -132.46184910321176, - -2.2218651838138443 + -134.65782888940691, + -0.4554068187673719 ], [ - -133.01280725516892, - -1.7794162308254944 + -134.11071886569243, + -0.8963863812880525 ], [ -133.56240509141048, -1.337660587380447 ], [ - -134.11071886569243, - -0.8963863812880525 + -133.01280725516892, + -1.7794162308255073 ], [ - -134.65782888940691, - -0.45540681876735906 + -132.46184910321176, + -2.2218651838138443 ], [ - -135.20381863135577, - -0.01455688627787848 + -131.90945960168006, + -2.665248288661079 ], [ - -135.74877402286756, - 0.42630945444010043 + -131.35557443437722, + -3.1098399666444574 ], [ - -136.04579455038055, - -0.13292275320976288 + -131.0583898202791, + -2.5633608674609674 ], [ - -136.3435909394206, - -0.6925672169305065 + -130.7620676776977, + -2.0173791374190486 ], [ - -136.64218764960935, - -1.2526762337456798 + -130.46657012644164, + -1.4718332931284461 ], [ - -136.94160638375365, - -1.8133037611419598 + -130.1718573374897, + -0.9266645541038917 ], [ - -137.24186582112253, - -2.374505485660123 + -129.87788774375184, + -0.38181668468205077 ], [ - -137.5429813172393, - -2.9363388920133824 + -129.58461822058354, + 0.16276415527488097 ], [ - -137.8449645663781, - -3.4988633322726352 + -129.2920042397452, + 0.7071295512160436 ], [ - -138.1478232224797, - -4.062140094552287 + -129, + 1.2513289666321188 ], [ - -137.68253208209399, - -4.578278183193922 + -129.47755001279882, + 1.7910707032452415 ], [ - -137.2161312749326, - -5.0935273714458225 + -129.9542390034718, + 2.3296810820991483 ], [ - -136.74851339638042, - -5.6079385184327935 + -130.43012946752907, + 2.8673976099778757 ], [ - -136.27956962063024, - -6.121570777392062 + -130.90529082583691, + 3.4044316034361413 ], [ - -135.80918955775473, - -6.634493101618323 + -131.37979825231525, + 3.940971540909363 ], [ - -135.33726113269404, - -7.146786076626593 + -131.85373174364497, + 4.477185926411804 ], [ - -134.86367050097851, - -7.6585441619597034 + -132.32717538289097, + 5.013225743753909 ], [ - -134.38830202323248, - -8.16987845107548 + -132.8002167591656, + 5.549226566225722 ], [ - -133.71812165240743, - -8.155493059284444 + -133.45339016572893, + 5.5532112519364265 ], [ - -133.0467712080159, - -8.144050026715384 + -134.10614007269737, + 5.5553932800526935 ], [ - -132.37432830257842, - -8.13595699115635 + -134.75843208913295, + 5.5559410707491566 ], [ - -131.70089036514298, - -8.131655257677629 + -135.41023687942027, + 5.555015524844163 ], [ - -131.0265774826408, - -8.131622689803509 + -136.06152979340732, + 5.552770373117146 ], [ - -130.3515356020991, - -8.136376818820137 + -136.71229052089836, + 5.549352511082723 ], [ - -129.6759401339899, - -8.146478176724932 + -137.36250276916803, + 5.544902319538789 ], [ - -129, - -8.162533854955054 + -138.0121539622109, + 5.539553971242925 ] ] ] @@ -155948,168 +155948,168 @@ "coordinates": [ [ [ - -146.36878034136026, - 19.765749214107952 + -129, + 21.27100957285517 ], [ - -145.63004557488603, - 19.76212919146411 + -129.74469414790713, + 21.36027233039878 ], [ - -144.89228171096363, - 19.7552974947138 + -130.48915143725958, + 21.445532390258858 ], [ - -144.1553173869014, - 19.74516594958406 + -131.2333716974656, + 21.526794472204557 ], [ - -143.4190073117332, - 19.731660977058525 + -131.97735470359635, + 21.60406361678073 ], [ - -142.68322774180518, - 19.714720627079494 + -132.72110030162173, + 21.677345210969445 ], [ - -141.94787284641347, - 19.69429229573705 + -133.4646085461294, + 21.746645016668637 ], [ - -141.21285176546502, - 19.670330952804132 + -134.20787985272068, + 21.811969202676785 ], [ - -140.4780862096332, - 19.642797754009656 + -134.95091516772004, + 21.873324381037982 ], [ - -139.79114277242292, - 19.933090334027145 + -135.6474571214369, + 21.606975189861085 ], [ - -139.10361549430968, - 20.220422827416208 + -136.34195871611894, + 21.336812405433907 ], [ - -138.41519753532737, - 20.504614891202117 + -137.03460811548769, + 21.06294859077479 ], [ -137.72561194773937, 20.7855052935926 ], [ - -137.03460811548769, - 21.06294859077479 + -138.41519753532737, + 20.504614891202117 ], [ - -136.34195871611894, - 21.336812405433907 + -139.10361549430968, + 20.220422827416208 ], [ - -135.6474571214369, - 21.606975189861085 + -139.79114277242292, + 19.93309033402712 ], [ - -134.95091516772004, - 21.873324381037982 + -140.4780862096332, + 19.642797754009642 ], [ - -135.32174354904907, - 22.40421294150614 + -140.1091621343253, + 19.128299278685514 ], [ - -135.6953886313854, - 22.9350888560876 + -139.7427477108949, + 18.613850628821204 ], [ - -136.07203148365852, - 23.465926761636226 + -139.37867960351764, + 18.099458347308452 ], [ - -136.45186052357417, - 23.996697696004823 + -139.01680126278137, + 17.585126846827592 ], [ - -136.83507196658343, - 24.52736871990067 + -138.65696244945525, + 17.07085868293248 ], [ - -137.2218702970049, - 25.057902499560104 + -138.29901879043143, + 16.5566547948637 ], [ - -137.61246876164353, - 25.588256845971678 + -137.94283136448723, + 16.04251471807538 ], [ - -138.00708988602287, - 26.118384205901382 + -137.58826631565478, + 15.528436771949758 ], [ - -138.75221525331767, - 25.94390055026972 + -136.86274023987573, + 15.696541008965951 ], [ - -139.49478001325969, - 25.764953048081967 + -136.13751260884885, + 15.861719396959549 ], [ - -140.23485221759972, - 25.581599146912225 + -135.41235492146717, + 16.023807704898434 ], [ - -140.9725108384377, - 25.393897970011984 + -134.687061325042, + 16.182658449084304 ], [ - -141.7078472474612, - 25.20191080714578 + -133.96144605704296, + 16.33813835223845 ], [ - -142.4409670003049, - 25.00570175012071 + -133.2353412324701, + 16.490126224956366 ], [ - -143.17199200115573, - 24.805338518102342 + -132.5085949244031, + 16.638511193215393 ], [ - -143.90106314419495, - 24.600893533663314 + -131.78106949391383, + 16.783191210521874 ], [ - -144.20047148691822, - 23.99428822528476 + -131.43798211853715, + 17.346562268742066 ], [ - -144.50161250129537, - 23.38770950651953 + -131.09400721963732, + 17.909490195958913 ], [ - -144.80488880308974, - 22.781415392146638 + -130.7489356452245, + 18.471846827363606 ], [ - -145.11072162769716, - 22.17569638132987 + -130.40256122061163, + 19.033510617911343 ], [ - -145.4195523435542, - 21.57087936278443 + -130.05468046448516, + 19.594366117856698 ], [ - -145.73184400631152, - 20.967331944966677 + -129.70509231090443, + 20.15430347664278 ], [ - -146.0480829417986, - 20.365467250374323 + -129.3535978374905, + 20.713217973461223 ], [ - -146.36878034136026, - 19.765749214107952 + -129, + 21.27100957285517 ] ] ] @@ -156125,168 +156125,168 @@ "coordinates": [ [ [ - -129, - 21.27100957285517 + -146.36878034136026, + 19.765749214107952 ], [ - -129.74469414790713, - 21.36027233039878 + -145.63004557488603, + 19.76212919146411 ], [ - -130.48915143725958, - 21.445532390258858 + -144.89228171096363, + 19.7552974947138 ], [ - -131.2333716974656, - 21.526794472204557 + -144.1553173869014, + 19.74516594958406 ], [ - -131.97735470359635, - 21.60406361678073 + -143.4190073117332, + 19.731660977058525 ], [ - -132.72110030162173, - 21.677345210969445 + -142.68322774180518, + 19.714720627079494 ], [ - -133.4646085461294, - 21.746645016668637 + -141.94787284641347, + 19.69429229573705 ], [ - -134.20787985272068, - 21.811969202676785 + -141.21285176546502, + 19.670330952804132 ], [ - -134.95091516772004, - 21.873324381037982 + -140.4780862096332, + 19.642797754009656 ], [ - -135.6474571214369, - 21.606975189861085 + -139.79114277242292, + 19.933090334027145 ], [ - -136.34195871611894, - 21.336812405433907 + -139.10361549430968, + 20.220422827416208 ], [ - -137.03460811548769, - 21.06294859077479 + -138.41519753532737, + 20.504614891202117 ], [ -137.72561194773937, 20.7855052935926 ], [ - -138.41519753532737, - 20.504614891202117 + -137.03460811548769, + 21.06294859077479 ], [ - -139.10361549430968, - 20.220422827416208 + -136.34195871611894, + 21.336812405433907 ], [ - -139.79114277242292, - 19.93309033402712 + -135.6474571214369, + 21.606975189861085 ], [ - -140.4780862096332, - 19.642797754009642 + -134.95091516772004, + 21.873324381037982 ], [ - -140.1091621343253, - 19.128299278685514 + -135.32174354904907, + 22.40421294150614 ], [ - -139.7427477108949, - 18.613850628821204 + -135.6953886313854, + 22.9350888560876 ], [ - -139.37867960351764, - 18.099458347308452 + -136.07203148365852, + 23.465926761636226 ], [ - -139.01680126278137, - 17.585126846827592 + -136.45186052357417, + 23.996697696004823 ], [ - -138.65696244945525, - 17.07085868293248 + -136.83507196658343, + 24.52736871990067 ], [ - -138.29901879043143, - 16.5566547948637 + -137.2218702970049, + 25.057902499560104 ], [ - -137.94283136448723, - 16.04251471807538 + -137.61246876164353, + 25.588256845971678 ], [ - -137.58826631565478, - 15.528436771949758 + -138.00708988602287, + 26.118384205901382 ], [ - -136.86274023987573, - 15.696541008965951 + -138.75221525331767, + 25.94390055026972 ], [ - -136.13751260884885, - 15.861719396959549 + -139.49478001325969, + 25.764953048081967 ], [ - -135.41235492146717, - 16.023807704898434 + -140.23485221759972, + 25.581599146912225 ], [ - -134.687061325042, - 16.182658449084304 + -140.9725108384377, + 25.393897970011984 ], [ - -133.96144605704296, - 16.33813835223845 + -141.7078472474612, + 25.20191080714578 ], [ - -133.2353412324701, - 16.490126224956366 + -142.4409670003049, + 25.00570175012071 ], [ - -132.5085949244031, - 16.638511193215393 + -143.17199200115573, + 24.805338518102342 ], [ - -131.78106949391383, - 16.783191210521874 + -143.90106314419495, + 24.600893533663314 ], [ - -131.43798211853715, - 17.346562268742066 + -144.20047148691822, + 23.99428822528476 ], [ - -131.09400721963732, - 17.909490195958913 + -144.50161250129537, + 23.38770950651953 ], [ - -130.7489356452245, - 18.471846827363606 + -144.80488880308974, + 22.781415392146638 ], [ - -130.40256122061163, - 19.033510617911343 + -145.11072162769716, + 22.17569638132987 ], [ - -130.05468046448516, - 19.594366117856698 + -145.4195523435542, + 21.57087936278443 ], [ - -129.70509231090443, - 20.15430347664278 + -145.73184400631152, + 20.967331944966677 ], [ - -129.3535978374905, - 20.713217973461223 + -146.0480829417986, + 20.365467250374323 ], [ - -129, - 21.27100957285517 + -146.36878034136026, + 19.765749214107952 ] ] ] @@ -156828,183 +156828,6 @@ "properties": { "cellIdHex": "dda0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -129, - 42.37830150075416 - ], - [ - -129.93962395000653, - 42.498922439869055 - ], - [ - -130.88203369312282, - 42.61309680557351 - ], - [ - -131.82719064331502, - 42.72075593429318 - ], - [ - -132.77505691240015, - 42.82182667002338 - ], - [ - -133.72559583221755, - 42.91623066511017 - ], - [ - -134.67877252538904, - 43.00388355925538 - ], - [ - -135.63455452829191, - 43.08469401422355 - ], - [ - -136.59291246997748, - 43.15856257693659 - ], - [ - -137.45840651420542, - 42.90541610926601 - ], - [ - -138.3156987327377, - 42.64639614357896 - ], - [ - -139.16481328380405, - 42.381623975517805 - ], - [ - -140.00578215503924, - 42.11121902793486 - ], - [ - -140.83864479650873, - 41.835298739876315 - ], - [ - -141.66344776254869, - 41.55397845747508 - ], - [ - -142.48024436514078, - 41.267371325230066 - ], - [ - -143.28909434162085, - 40.975588175816924 - ], - [ - -142.7274047581734, - 40.46913597738931 - ], - [ - -142.17784271751145, - 39.95863781328698 - ], - [ - -141.63989031067172, - 39.444460141040246 - ], - [ - -141.11304314587846, - 38.92693989100173 - ], - [ - -140.59681132852927, - 38.406386707479385 - ], - [ - -140.09072014389153, - 37.883085038251515 - ], - [ - -139.59431049100323, - 37.35729607875372 - ], - [ - -139.10713910985174, - 36.82925957785007 - ], - [ - -138.2749784671936, - 36.992666296933734 - ], - [ - -137.4382771861525, - 37.15058817528357 - ], - [ - -136.59707581391405, - 37.30295261105689 - ], - [ - -135.75141931729024, - 37.4496870148169 - ], - [ - -134.90135709819208, - 37.59071887970371 - ], - [ - -134.04694300186065, - 37.72597585158081 - ], - [ - -133.1882353169977, - 37.855385799220855 - ], - [ - -132.32529676701586, - 37.97887688454019 - ], - [ - -131.93442538537488, - 38.537081820194224 - ], - [ - -131.53705733162127, - 39.093024343645666 - ], - [ - -131.13290717074727, - 39.6466555558433 - ], - [ - -130.72168359878088, - 40.19792492578672 - ], - [ - -130.30308901702347, - 40.74678002529752 - ], - [ - -129.87681911100458, - 41.293166268073804 - ], - [ - -129.4425624346013, - 41.83702665162222 - ], - [ - -129, - 42.37830150075416 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "dde0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -157180,7 +157003,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "de20000000000000" + "cellIdHex": "dde0000000000000" }, "geometry": { "type": "Polygon", @@ -157188,167 +157011,167 @@ [ [ -129, - 31.832359041336087 + 42.37830150075416 ], [ - -129.8103353722804, - 31.938398148952622 + -129.93962395000653, + 42.498922439869055 ], [ - -130.62114836017008, - 32.03966944539289 + -130.88203369312282, + 42.61309680557351 ], [ - -131.43240866765416, - 32.13616896353093 + -131.82719064331502, + 42.72075593429318 ], [ - -132.2440852875717, - 32.22789297397679 + -132.77505691240015, + 42.82182667002338 ], [ - -133.056146637342, - 32.314837967607545 + -133.72559583221755, + 42.91623066511017 ], [ - -133.86856070618882, - 32.397000631546376 + -134.67877252538904, + 43.00388355925538 ], [ - -134.68129521550122, - 32.47437781747659 + -135.63455452829191, + 43.08469401422355 ], [ - -135.49431779429312, - 32.546966500935476 + -136.59291246997748, + 43.15856257693659 ], [ - -136.24256400127314, - 32.28795965427349 + -137.45840651420542, + 42.90541610926601 ], [ - -136.98563587774458, - 32.02410234253843 + -138.3156987327377, + 42.64639614357896 ], [ - -137.72359081927902, - 31.75547039557303 + -139.16481328380405, + 42.381623975517805 ], [ - -138.4564925760115, - 31.482138275789108 + -140.00578215503924, + 42.11121902793486 ], [ - -139.18441157095282, - 31.204179065899996 + -140.83864479650873, + 41.835298739876315 ], [ - -139.90742529974824, - 30.92166447008943 + -141.66344776254869, + 41.55397845747508 ], [ - -140.62561882884575, - 30.634664832587035 + -142.48024436514078, + 41.267371325230066 ], [ - -141.3390854130447, - 30.34324917904292 + -143.28909434162085, + 40.975588175816924 ], [ - -140.90297145069889, - 29.817509611348882 + -142.7274047581734, + 40.46913597738931 ], [ - -140.47306323014794, - 29.29088776493135 + -142.17784271751145, + 39.95863781328698 ], [ - -140.04904297821378, - 28.763500256156945 + -141.63989031067172, + 39.444460141040246 ], [ - -139.6306070167742, - 28.235451757095355 + -141.11304314587846, + 38.92693989100173 ], [ - -139.2174651180427, - 27.706836137865213 + -140.59681132852927, + 38.406386707479385 ], [ - -138.80933986363107, - 27.1777374982444 + -140.09072014389153, + 37.883085038251515 ], [ - -138.4059660130588, - 26.648231099444637 + -139.59431049100323, + 37.35729607875372 ], [ - -138.00708988602287, - 26.118384205901382 + -139.10713910985174, + 36.82925957785007 ], [ - -137.25934554699495, - 26.2883478633092 + -138.2749784671936, + 36.992666296933734 ], [ - -136.50893252606613, - 26.453736372755746 + -137.4382771861525, + 37.15058817528357 ], [ - -135.75580889705765, - 26.614495359129275 + -136.59707581391405, + 37.30295261105689 ], [ - -134.99993978100554, - 26.77057104673945 + -135.75141931729024, + 37.4496870148169 ], [ - -134.2412967191242, - 26.92191012503988 + -134.90135709819208, + 37.59071887970371 ], [ - -133.47985713632363, - 27.06845964665534 + -134.04694300186065, + 37.72597585158081 ], [ - -132.7156038796761, - 27.210166951020653 + -133.1882353169977, + 37.855385799220855 ], [ - -131.94852481906753, - 27.346979608405157 + -132.32529676701586, + 37.97887688454019 ], [ - -131.5932267604415, - 27.91389605819596 + -131.93442538537488, + 38.537081820194224 ], [ - -131.23457970449658, - 28.479164902383836 + -131.53705733162127, + 39.093024343645666 ], [ - -130.87236342035703, - 29.04271541484363 + -131.13290717074727, + 39.6466555558433 ], [ - -130.50635742430688, - 29.604479180256902 + -130.72168359878088, + 40.19792492578672 ], [ - -130.1363406578854, - 30.164389721873253 + -130.30308901702347, + 40.74678002529752 ], [ - -129.76209117423957, - 30.72238214920248 + -129.87681911100458, + 41.293166268073804 ], [ - -129.38338583250084, - 31.278392823788284 + -129.4425624346013, + 41.83702665162222 ], [ -129, - 31.832359041336087 + 42.37830150075416 ] ] ] @@ -157357,7 +157180,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "de60000000000000" + "cellIdHex": "de20000000000000" }, "geometry": { "type": "Polygon", @@ -157531,6 +157354,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "de60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -129, + 31.832359041336087 + ], + [ + -129.8103353722804, + 31.938398148952622 + ], + [ + -130.62114836017008, + 32.03966944539289 + ], + [ + -131.43240866765416, + 32.13616896353093 + ], + [ + -132.2440852875717, + 32.22789297397679 + ], + [ + -133.056146637342, + 32.314837967607545 + ], + [ + -133.86856070618882, + 32.397000631546376 + ], + [ + -134.68129521550122, + 32.47437781747659 + ], + [ + -135.49431779429312, + 32.546966500935476 + ], + [ + -136.24256400127314, + 32.28795965427349 + ], + [ + -136.98563587774458, + 32.02410234253843 + ], + [ + -137.72359081927902, + 31.75547039557303 + ], + [ + -138.4564925760115, + 31.482138275789108 + ], + [ + -139.18441157095282, + 31.204179065899996 + ], + [ + -139.90742529974824, + 30.92166447008943 + ], + [ + -140.62561882884575, + 30.634664832587035 + ], + [ + -141.3390854130447, + 30.34324917904292 + ], + [ + -140.90297145069889, + 29.817509611348882 + ], + [ + -140.47306323014794, + 29.29088776493135 + ], + [ + -140.04904297821378, + 28.763500256156945 + ], + [ + -139.6306070167742, + 28.235451757095355 + ], + [ + -139.2174651180427, + 27.706836137865213 + ], + [ + -138.80933986363107, + 27.1777374982444 + ], + [ + -138.4059660130588, + 26.648231099444637 + ], + [ + -138.00708988602287, + 26.118384205901382 + ], + [ + -137.25934554699495, + 26.2883478633092 + ], + [ + -136.50893252606613, + 26.453736372755746 + ], + [ + -135.75580889705765, + 26.614495359129275 + ], + [ + -134.99993978100554, + 26.77057104673945 + ], + [ + -134.2412967191242, + 26.92191012503988 + ], + [ + -133.47985713632363, + 27.06845964665534 + ], + [ + -132.7156038796761, + 27.210166951020653 + ], + [ + -131.94852481906753, + 27.346979608405157 + ], + [ + -131.5932267604415, + 27.91389605819596 + ], + [ + -131.23457970449658, + 28.479164902383836 + ], + [ + -130.87236342035703, + 29.04271541484363 + ], + [ + -130.50635742430688, + 29.604479180256902 + ], + [ + -130.1363406578854, + 30.164389721873253 + ], + [ + -129.76209117423957, + 30.72238214920248 + ], + [ + -129.38338583250084, + 31.278392823788284 + ], + [ + -129, + 31.832359041336087 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -159660,183 +159660,6 @@ "properties": { "cellIdHex": "e1a0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -155.5791426009837, - 13.628636133967648 - ], - [ - -155.30379273391424, - 13.002746034453729 - ], - [ - -155.02941381222485, - 12.37625143211715 - ], - [ - -154.7559149297017, - 11.74913082912652 - ], - [ - -154.48320775655196, - 11.121364333331146 - ], - [ - -154.2112061142783, - 10.492933345721061 - ], - [ - -153.9398256231927, - 9.863820310405211 - ], - [ - -153.66898340525825, - 9.234008513297562 - ], - [ - -153.3985978294706, - 8.603481919068038 - ], - [ - -152.8619583277914, - 8.17560754645469 - ], - [ - -152.32671585854746, - 7.7464366681473695 - ], - [ - -151.79277154677857, - 7.315947442795518 - ], - [ - -151.26002837519957, - 6.8841225168171825 - ], - [ - -150.72839092622235, - 6.4509483560448615 - ], - [ - -150.19776514756427, - 6.016414688115995 - ], - [ - -149.66805813888288, - 5.5805140354058596 - ], - [ - -149.1391779570181, - 5.143241322392146 - ], - [ - -148.83353559765715, - 5.7173215233792485 - ], - [ - -148.52715468407303, - 6.292255639087759 - ], - [ - -148.2200752370095, - 6.868098642541113 - ], - [ - -147.91234499855273, - 7.4449065555474645 - ], - [ - -147.60402015854243, - 8.022736425852877 - ], - [ - -147.29516615359591, - 8.601646293856085 - ], - [ - -146.98585854587247, - 9.18169514716392 - ], - [ - -146.67618398940124, - 9.762942861013215 - ], - [ - -147.12368468256057, - 10.28990442188784 - ], - [ - -147.57200288178632, - 10.815697024934172 - ], - [ - -148.0212332140062, - 11.340310481399507 - ], - [ - -148.47147065749874, - 11.863734315589355 - ], - [ - -148.92281063682753, - 12.385957764485884 - ], - [ - -149.37534912365425, - 12.906969781353348 - ], - [ - -149.8291827451427, - 13.426759044313485 - ], - [ - -150.28440890215518, - 13.94531397116376 - ], - [ - -150.94047885348306, - 13.90731505951831 - ], - [ - -151.59806647656302, - 13.868501904231413 - ], - [ - -152.25723888750218, - 13.829033834593622 - ], - [ - -152.91806266705998, - 13.789085668592772 - ], - [ - -153.5806031934398, - 13.748849484199871 - ], - [ - -154.24492382678932, - 13.708536612122595 - ], - [ - -154.9110849169889, - 13.668379879030155 - ], - [ - -155.5791426009837, - 13.628636133967648 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "e1e0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -160012,175 +159835,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "e220000000000000" + "cellIdHex": "e1e0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - -146.36878034136026, - 19.765749214107966 + -155.5791426009837, + 13.628636133967648 ], [ - -146.08505249366124, - 19.09844430847657 + -155.30379273391424, + 13.002746034453729 ], [ - -145.80609772679884, - 18.432713723067852 + -155.02941381222485, + 12.37625143211715 ], [ - -145.53123702647974, - 17.768404416390695 + -154.7559149297017, + 11.74913082912652 ], [ - -145.25989058311376, - 17.10537278396115 + -154.48320775655196, + 11.121364333331146 ], [ - -144.991559176412, - 16.443484826667962 + -154.2112061142783, + 10.492933345721061 ], [ - -144.72580948747725, - 15.782615938070585 + -153.9398256231927, + 9.863820310405211 ], [ - -144.46226242057423, - 15.122650471068722 + -153.66898340525825, + 9.234008513297562 ], [ - -144.2005837495429, - 14.463481187019163 + -153.3985978294706, + 8.603481919068038 ], [ - -143.67726851045524, - 14.014156121733944 + -152.8619583277914, + 8.17560754645469 ], [ - -143.15522180608303, - 13.563371433297412 + -152.32671585854746, + 7.7464366681473695 ], [ - -142.63435431793812, - 13.111144041777466 + -151.79277154677857, + 7.315947442795518 ], [ - -142.114577221734, - 12.657490651991083 + -151.26002837519957, + 6.8841225168171825 ], [ - -141.5958020769208, - 12.202427742880495 + -150.72839092622235, + 6.4509483560448615 ], [ - -141.07794072672084, - 11.745971561108755 + -150.19776514756427, + 6.016414688115995 ], [ - -140.56090520656716, - 11.288138118190995 + -149.66805813888288, + 5.5805140354058596 ], [ - -140.0446076592571, - 10.828943190607772 + -149.1391779570181, + 5.143241322392146 ], [ - -139.73582047158925, - 11.41248804817065 + -148.83353559765715, + 5.7173215233792485 ], [ - -139.42718619377456, - 11.99705537195785 + -148.52715468407303, + 6.292255639087759 ], [ - -139.1188567436933, - 12.582690091959567 + -148.2200752370095, + 6.868098642541113 ], [ - -138.81099963767053, - 13.16943709760907 + -147.91234499855273, + 7.4449065555474645 ], [ - -138.5037992827955, - 13.757341113162747 + -147.60402015854243, + 8.022736425852877 ], [ - -138.1974583748388, - 14.346446552647892 + -147.29516615359591, + 8.601646293856085 ], [ - -137.89219940956752, - 14.936797351541555 + -146.98585854587247, + 9.18169514716392 ], [ - -137.58826631565478, - 15.528436771949796 + -146.67618398940124, + 9.762942861013215 ], [ - -137.94283136448723, - 16.04251471807538 + -147.12368468256057, + 10.28990442188784 ], [ - -138.29901879043143, - 16.5566547948637 + -147.57200288178632, + 10.815697024934172 ], [ - -138.65696244945525, - 17.07085868293248 + -148.0212332140062, + 11.340310481399507 ], [ - -139.01680126278137, - 17.585126846827592 + -148.47147065749874, + 11.863734315589355 ], [ - -139.37867960351764, - 18.099458347308452 + -148.92281063682753, + 12.385957764485884 ], [ - -139.7427477108949, - 18.613850628821204 + -149.37534912365425, + 12.906969781353348 ], [ - -140.1091621343253, - 19.128299278685514 + -149.8291827451427, + 13.426759044313485 ], [ - -140.4780862096332, - 19.642797754009642 + -150.28440890215518, + 13.94531397116376 ], [ - -141.21285176546502, - 19.670330952804132 + -150.94047885348306, + 13.90731505951831 ], [ - -141.94787284641347, - 19.69429229573704 + -151.59806647656302, + 13.868501904231413 ], [ - -142.68322774180513, - 19.714720627079494 + -152.25723888750218, + 13.829033834593622 ], [ - -143.4190073117332, - 19.731660977058525 + -152.91806266705998, + 13.789085668592772 ], [ - -144.1553173869014, - 19.745165949584045 + -153.5806031934398, + 13.748849484199871 ], [ - -144.89228171096363, - 19.7552974947138 + -154.24492382678932, + 13.708536612122595 ], [ - -145.63004557488603, - 19.76212919146411 + -154.9110849169889, + 13.668379879030155 ], [ - -146.36878034136026, - 19.765749214107966 + -155.5791426009837, + 13.628636133967648 ] ] ] @@ -160189,7 +160012,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "e260000000000000" + "cellIdHex": "e220000000000000" }, "geometry": { "type": "Polygon", @@ -160363,6 +160186,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "e260000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -146.36878034136026, + 19.765749214107966 + ], + [ + -146.08505249366124, + 19.09844430847657 + ], + [ + -145.80609772679884, + 18.432713723067852 + ], + [ + -145.53123702647974, + 17.768404416390695 + ], + [ + -145.25989058311376, + 17.10537278396115 + ], + [ + -144.991559176412, + 16.443484826667962 + ], + [ + -144.72580948747725, + 15.782615938070585 + ], + [ + -144.46226242057423, + 15.122650471068722 + ], + [ + -144.2005837495429, + 14.463481187019163 + ], + [ + -143.67726851045524, + 14.014156121733944 + ], + [ + -143.15522180608303, + 13.563371433297412 + ], + [ + -142.63435431793812, + 13.111144041777466 + ], + [ + -142.114577221734, + 12.657490651991083 + ], + [ + -141.5958020769208, + 12.202427742880495 + ], + [ + -141.07794072672084, + 11.745971561108755 + ], + [ + -140.56090520656716, + 11.288138118190995 + ], + [ + -140.0446076592571, + 10.828943190607772 + ], + [ + -139.73582047158925, + 11.41248804817065 + ], + [ + -139.42718619377456, + 11.99705537195785 + ], + [ + -139.1188567436933, + 12.582690091959567 + ], + [ + -138.81099963767053, + 13.16943709760907 + ], + [ + -138.5037992827955, + 13.757341113162747 + ], + [ + -138.1974583748388, + 14.346446552647892 + ], + [ + -137.89219940956752, + 14.936797351541555 + ], + [ + -137.58826631565478, + 15.528436771949796 + ], + [ + -137.94283136448723, + 16.04251471807538 + ], + [ + -138.29901879043143, + 16.5566547948637 + ], + [ + -138.65696244945525, + 17.07085868293248 + ], + [ + -139.01680126278137, + 17.585126846827592 + ], + [ + -139.37867960351764, + 18.099458347308452 + ], + [ + -139.7427477108949, + 18.613850628821204 + ], + [ + -140.1091621343253, + 19.128299278685514 + ], + [ + -140.4780862096332, + 19.642797754009642 + ], + [ + -141.21285176546502, + 19.670330952804132 + ], + [ + -141.94787284641347, + 19.69429229573704 + ], + [ + -142.68322774180513, + 19.714720627079494 + ], + [ + -143.4190073117332, + 19.731660977058525 + ], + [ + -144.1553173869014, + 19.745165949584045 + ], + [ + -144.89228171096363, + 19.7552974947138 + ], + [ + -145.63004557488603, + 19.76212919146411 + ], + [ + -146.36878034136026, + 19.765749214107966 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -160904,168 +160904,168 @@ "coordinates": [ [ [ - -155.9878460377891, - -5.539553971242937 + -165, + 8.16253385495504 ], [ - -156.27179009258805, - -4.896562751656497 + -164.70114835751014, + 7.530390021971758 ], [ - -156.5552732157497, - -4.254708312632621 + -164.40370472917846, + 6.898735635532024 ], [ - -156.83838098643844, - -3.613970768281407 + -164.10759779950115, + 6.267375132306927 ], [ - -157.12119804730247, - -2.9743298550319537 + -163.8127527265242, + 5.6361409557988384 ], [ - -157.4038082252464, - -2.335764856516269 + -163.51909227703186, + 5.004888485608247 ], [ - -157.6862946501746, - -1.6982545161551839 + -163.2265376228837, + 4.373492007958592 ], [ - -157.96873987211757, - -1.0617769353137823 + -162.93500889540144, + 3.7418414882244453 ], [ - -158.25122597713244, - -0.42630945444010043 + -162.64442556562278, + 3.1098399666444574 ], [ - -158.79618136864428, - 0.01455688627787848 + -162.09054039832, + 2.665248288661079 ], [ - -159.34217111059314, - 0.45540681876735906 + -161.53815089678824, + 2.2218651838138315 ], [ - -159.88928113430762, - 0.8963863812880525 + -160.98719274483108, + 1.7794162308254944 ], [ -160.43759490858952, 1.3376605873804341 ], [ - -160.98719274483108, - 1.7794162308254944 + -159.88928113430762, + 0.8963863812880525 ], [ - -161.53815089678824, - 2.2218651838138315 + -159.34217111059314, + 0.45540681876735906 ], [ - -162.09054039832, - 2.665248288661079 + -158.79618136864428, + 0.01455688627787848 ], [ - -162.64442556562278, - 3.1098399666444574 + -158.25122597713244, + -0.42630945444010043 ], [ - -162.94161017972095, - 2.5633608674609674 + -157.9542054496195, + 0.1329227532097501 ], [ - -163.2379323223023, - 2.017379137419036 + -157.6564090605794, + 0.6925672169305065 ], [ - -163.53342987355842, - 1.4718332931284461 + -157.35781235039065, + 1.2526762337456798 ], [ - -163.8281426625103, - 0.9266645541038917 + -157.05839361624635, + 1.8133037611419598 ], [ - -164.12211225624816, - 0.38181668468203794 + -156.75813417887747, + 2.374505485660123 ], [ - -164.41538177941652, - -0.16276415527489377 + -156.45701868276075, + 2.9363388920133953 ], [ - -164.7079957602548, - -0.7071295512160564 + -156.15503543362195, + 3.498863332272648 ], [ - -165, - -1.2513289666321314 + -155.8521767775203, + 4.062140094552287 ], [ - -164.52244998720118, - -1.7910707032452542 + -156.31746791790601, + 4.578278183193922 ], [ - -164.0457609965282, - -2.3296810820991616 + -156.7838687250674, + 5.0935273714458225 ], [ - -163.56987053247093, - -2.8673976099778757 + -157.25148660361958, + 5.6079385184327935 ], [ - -163.09470917416314, - -3.404431603436154 + -157.72043037936982, + 6.121570777392062 ], [ - -162.62020174768475, - -3.940971540909363 + -158.19081044224527, + 6.634493101618335 ], [ - -162.14626825635509, - -4.477185926411804 + -158.66273886730602, + 7.146786076626593 ], [ - -161.67282461710903, - -5.013225743753909 + -159.13632949902149, + 7.6585441619597034 ], [ - -161.19978324083445, - -5.549226566225735 + -159.61169797676752, + 8.16987845107548 ], [ - -160.54660983427107, - -5.5532112519364265 + -160.28187834759257, + 8.155493059284444 ], [ - -159.89385992730263, - -5.555393280052707 + -160.9532287919841, + 8.144050026715384 ], [ - -159.24156791086705, - -5.5559410707491566 + -161.62567169742158, + 8.13595699115635 ], [ - -158.5897631205798, - -5.555015524844163 + -162.29910963485702, + 8.131655257677629 ], [ - -157.93847020659274, - -5.552770373117146 + -162.97342251735927, + 8.131622689803496 ], [ - -157.28770947910164, - -5.549352511082723 + -163.6484643979009, + 8.136376818820137 ], [ - -156.63749723083197, - -5.544902319538802 + -164.3240598660101, + 8.14647817672492 ], [ - -155.9878460377891, - -5.539553971242937 + -165, + 8.16253385495504 ] ] ] @@ -161081,168 +161081,168 @@ "coordinates": [ [ [ - -165, - 8.16253385495504 + -155.9878460377891, + -5.539553971242937 ], [ - -164.70114835751014, - 7.530390021971758 + -156.27179009258805, + -4.896562751656497 ], [ - -164.40370472917846, - 6.898735635532024 + -156.5552732157497, + -4.254708312632621 ], [ - -164.10759779950115, - 6.267375132306927 + -156.83838098643844, + -3.613970768281407 ], [ - -163.8127527265242, - 5.6361409557988384 + -157.12119804730247, + -2.9743298550319537 ], [ - -163.51909227703186, - 5.004888485608247 + -157.4038082252464, + -2.335764856516269 ], [ - -163.2265376228837, - 4.373492007958592 + -157.6862946501746, + -1.6982545161551839 ], [ - -162.93500889540144, - 3.7418414882244453 + -157.96873987211757, + -1.0617769353137823 ], [ - -162.64442556562278, - 3.1098399666444574 + -158.25122597713244, + -0.42630945444010043 ], [ - -162.09054039832, - 2.665248288661079 + -158.79618136864428, + 0.01455688627787848 ], [ - -161.53815089678824, - 2.2218651838138315 + -159.34217111059314, + 0.45540681876735906 ], [ - -160.98719274483108, - 1.7794162308254944 + -159.88928113430762, + 0.8963863812880525 ], [ -160.43759490858952, 1.3376605873804341 ], [ - -159.88928113430762, - 0.8963863812880525 + -160.98719274483108, + 1.7794162308254944 ], [ - -159.34217111059314, - 0.45540681876735906 + -161.53815089678824, + 2.2218651838138315 ], [ - -158.79618136864428, - 0.01455688627787848 + -162.09054039832, + 2.665248288661079 ], [ - -158.25122597713244, - -0.42630945444010043 + -162.64442556562278, + 3.1098399666444574 ], [ - -157.9542054496195, - 0.1329227532097501 + -162.94161017972095, + 2.5633608674609674 ], [ - -157.6564090605794, - 0.6925672169305065 + -163.2379323223023, + 2.017379137419036 ], [ - -157.35781235039065, - 1.2526762337456798 + -163.53342987355842, + 1.4718332931284461 ], [ - -157.05839361624635, - 1.8133037611419598 + -163.8281426625103, + 0.9266645541038917 ], [ - -156.75813417887747, - 2.374505485660123 + -164.12211225624816, + 0.38181668468203794 ], [ - -156.45701868276075, - 2.9363388920133953 + -164.41538177941652, + -0.16276415527489377 ], [ - -156.15503543362195, - 3.498863332272648 + -164.7079957602548, + -0.7071295512160564 ], [ - -155.8521767775203, - 4.062140094552287 + -165, + -1.2513289666321314 ], [ - -156.31746791790601, - 4.578278183193922 + -164.52244998720118, + -1.7910707032452542 ], [ - -156.7838687250674, - 5.0935273714458225 + -164.0457609965282, + -2.3296810820991616 ], [ - -157.25148660361958, - 5.6079385184327935 + -163.56987053247093, + -2.8673976099778757 ], [ - -157.72043037936982, - 6.121570777392062 + -163.09470917416314, + -3.404431603436154 ], [ - -158.19081044224527, - 6.634493101618335 + -162.62020174768475, + -3.940971540909363 ], [ - -158.66273886730602, - 7.146786076626593 + -162.14626825635509, + -4.477185926411804 ], [ - -159.13632949902149, - 7.6585441619597034 + -161.67282461710903, + -5.013225743753909 ], [ - -159.61169797676752, - 8.16987845107548 + -161.19978324083445, + -5.549226566225735 ], [ - -160.28187834759257, - 8.155493059284444 + -160.54660983427107, + -5.5532112519364265 ], [ - -160.9532287919841, - 8.144050026715384 + -159.89385992730263, + -5.555393280052707 ], [ - -161.62567169742158, - 8.13595699115635 + -159.24156791086705, + -5.5559410707491566 ], [ - -162.29910963485702, - 8.131655257677629 + -158.5897631205798, + -5.555015524844163 ], [ - -162.97342251735927, - 8.131622689803496 + -157.93847020659274, + -5.552770373117146 ], [ - -163.6484643979009, - 8.136376818820137 + -157.28770947910164, + -5.549352511082723 ], [ - -164.3240598660101, - 8.14647817672492 + -156.63749723083197, + -5.544902319538802 ], [ - -165, - 8.16253385495504 + -155.9878460377891, + -5.539553971242937 ] ] ] @@ -168156,183 +168156,6 @@ "properties": { "cellIdHex": "eda0000000000000" }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -165, - 42.39894636280654 - ], - [ - -164.84790853253236, - 43.068449938933725 - ], - [ - -164.69271651406478, - 43.73813347451766 - ], - [ - -164.53426982716087, - 44.40803021061849 - ], - [ - -164.3724046851745, - 45.07817059917287 - ], - [ - -164.20694697243198, - 45.748582702946884 - ], - [ - -164.0377114929206, - 46.419292504144266 - ], - [ - -163.864501125351, - 47.09032414113718 - ], - [ - -163.68710587973368, - 47.76170008770643 - ], - [ - -164.0039755717056, - 48.408223942980136 - ], - [ - -164.32816655176532, - 49.054142261336565 - ], - [ - -164.66004415093312, - 49.6994910406068 - ], - [ - -165, - 50.344298964796806 - ], - [ - -165.34845362613112, - 50.98858786369029 - ], - [ - -165.70585430595128, - 51.6323730532878 - ], - [ - -166.0726831814266, - 52.27566357129352 - ], - [ - -166.44945565043002, - 52.91846231840442 - ], - [ - -167.356723169588, - 52.57833611076985 - ], - [ - -168.25092236372916, - 52.23053739854508 - ], - [ - -169.13201167409022, - 51.87511935393241 - ], - [ - -169.99995110805963, - 51.51213145795045 - ], - [ - -170.8547007562492, - 51.14161946999426 - ], - [ - -171.69621929016364, - 50.763625424546504 - ], - [ - -172.5244624386362, - 50.37818765636516 - ], - [ - -173.33938144048233, - 49.98534085570772 - ], - [ - -173.0666801535201, - 49.323795337099426 - ], - [ - -172.80172971848123, - 48.66232147039742 - ], - [ - -172.54414203487863, - 48.00092503417988 - ], - [ - -172.29355321762705, - 47.33960967093195 - ], - [ - -172.04962171917145, - 46.678377019249744 - ], - [ - -171.8120266146144, - 46.01722682319967 - ], - [ - -171.58046603252092, - 45.3561570188455 - ], - [ - -171.35465571568665, - 44.69516379727327 - ], - [ - -170.53876060745944, - 44.43484341134726 - ], - [ - -169.72871006023638, - 44.167128933370186 - ], - [ - -168.92464423954095, - 43.8919156072501 - ], - [ - -168.1267157327312, - 43.609088408665905 - ], - [ - -167.33509187022872, - 43.31852142969875 - ], - [ - -166.54995734401132, - 43.020077254658126 - ], - [ - -165.77151716414727, - 42.71360633366737 - ], - [ - -165, - 42.39894636280654 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "cellIdHex": "ede0000000000000" - }, "geometry": { "type": "Polygon", "coordinates": [ @@ -168508,175 +168331,175 @@ { "type": "Feature", "properties": { - "cellIdHex": "ee20000000000000" + "cellIdHex": "ede0000000000000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ - 180.78835881211404, - 40.90439811308672 + -165, + 42.39894636280654 ], [ - 180.76616387864294, - 41.621465989657764 + -164.84790853253236, + 43.068449938933725 ], [ - 180.74552562978317, - 42.335704001482036 + -164.69271651406478, + 43.73813347451766 ], [ - 180.72592166494826, - 43.0474654616441 + -164.53426982716087, + 44.40803021061849 ], [ - 180.7069038970493, - 43.757062229312815 + -164.3724046851745, + 45.07817059917287 ], [ - 180.6880829832042, - 44.46477081420242 + -164.20694697243198, + 45.748582702946884 ], [ - 180.6691160449402, - 45.17083748234229 + -164.0377114929206, + 46.419292504144266 ], [ - 180.64969688012025, - 45.87548253731608 + -163.864501125351, + 47.09032414113718 ], [ - 180.62954807409506, - 46.57890392027435 + -163.68710587973368, + 47.76170008770643 ], [ - 180.15204012991092, - 47.17091940044917 + -164.0039755717056, + 48.408223942980136 ], [ - 179.66294781900717, - 47.761399221080076 + -164.32816655176532, + 49.054142261336565 ], [ - 179.16176832357394, - 48.35026996422033 + -164.66004415093312, + 49.6994910406068 ], [ - 178.64797403240016, - 48.93745201687548 + -165, + 50.344298964796806 ], [ - 178.12101111605455, - 49.52285922712051 + -165.34845362613112, + 50.98858786369029 ], [ - 177.58029804598908, - 50.106398519755054 + -165.70585430595128, + 51.6323730532878 ], [ - 177.0252240572242, - 50.68796947070261 + -166.0726831814266, + 52.27566357129352 ], [ - 176.45514755559816, - 51.267463838904355 + -166.44945565043002, + 52.91846231840442 ], [ - 175.74524528925934, - 50.7892380907833 + -167.356723169588, + 52.57833611076985 ], [ - 175.05128530498177, - 50.30509014420781 + -168.25092236372916, + 52.23053739854508 ], [ - 174.3731772893517, - 49.81509201178171 + -169.13201167409022, + 51.87511935393241 ], [ - 173.7108480196992, - 49.31931356971306 + -169.99995110805963, + 51.51213145795045 ], [ - 173.06424247144867, - 48.81782297811397 + -170.8547007562492, + 51.14161946999426 ], [ - 172.43332491733366, - 48.31068712910955 + -171.69621929016364, + 50.763625424546504 ], [ - 171.81808002488162, - 47.797972124267616 + -172.5244624386362, + 50.37818765636516 ], [ - 171.21851395810796, - 47.2797437830181 + -173.33938144048233, + 49.98534085570772 ], [ - 171.5583811742904, - 46.7100372724576 + -173.0666801535201, + 49.323795337099426 ], [ - 171.89070741585562, - 46.138681293123916 + -172.80172971848123, + 48.66232147039742 ], [ - 172.21584356402724, - 45.56568229883182 + -172.54414203487863, + 48.00092503417988 ], [ - 172.53412868328633, - 44.991043632199506 + -172.29355321762705, + 47.33960967093195 ], [ - 172.8458910334092, - 44.41476570866769 + -172.04962171917145, + 46.678377019249744 ], [ - 173.1514490563955, - 43.83684620057651 + -171.8120266146144, + 46.01722682319967 ], [ - 173.4511123432266, - 43.25728022407646 + -171.58046603252092, + 45.3561570188455 ], [ - 173.74518258553974, - 42.676060531926844 + -171.35465571568665, + 44.69516379727327 ], [ - 174.64465136440054, - 42.477151269020275 + -170.53876060745944, + 44.43484341134726 ], [ - 175.53858363336167, - 42.27180361956394 + -169.72871006023638, + 44.167128933370186 ], [ - 176.4270043813002, - 42.060034469851026 + -168.92464423954095, + 43.8919156072501 ], [ - 177.30995272379715, - 41.841847943788366 + -168.1267157327312, + 43.609088408665905 ], [ - 178.18748286898756, - 41.6172327861524 + -167.33509187022872, + 43.31852142969875 ], [ - 179.05966528298245, - 41.38615911616739 + -166.54995734401132, + 43.020077254658126 ], [ - 179.92658809773616, - 41.14857436118394 + -165.77151716414727, + 42.71360633366737 ], [ - 180.78835881211404, - 40.90439811308672 + -165, + 42.39894636280654 ] ] ] @@ -168685,7 +168508,7 @@ { "type": "Feature", "properties": { - "cellIdHex": "ee60000000000000" + "cellIdHex": "ee20000000000000" }, "geometry": { "type": "Polygon", @@ -168859,6 +168682,183 @@ ] } }, + { + "type": "Feature", + "properties": { + "cellIdHex": "ee60000000000000" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 180.78835881211404, + 40.90439811308672 + ], + [ + 180.76616387864294, + 41.621465989657764 + ], + [ + 180.74552562978317, + 42.335704001482036 + ], + [ + 180.72592166494826, + 43.0474654616441 + ], + [ + 180.7069038970493, + 43.757062229312815 + ], + [ + 180.6880829832042, + 44.46477081420242 + ], + [ + 180.6691160449402, + 45.17083748234229 + ], + [ + 180.64969688012025, + 45.87548253731608 + ], + [ + 180.62954807409506, + 46.57890392027435 + ], + [ + 180.15204012991092, + 47.17091940044917 + ], + [ + 179.66294781900717, + 47.761399221080076 + ], + [ + 179.16176832357394, + 48.35026996422033 + ], + [ + 178.64797403240016, + 48.93745201687548 + ], + [ + 178.12101111605455, + 49.52285922712051 + ], + [ + 177.58029804598908, + 50.106398519755054 + ], + [ + 177.0252240572242, + 50.68796947070261 + ], + [ + 176.45514755559816, + 51.267463838904355 + ], + [ + 175.74524528925934, + 50.7892380907833 + ], + [ + 175.05128530498177, + 50.30509014420781 + ], + [ + 174.3731772893517, + 49.81509201178171 + ], + [ + 173.7108480196992, + 49.31931356971306 + ], + [ + 173.06424247144867, + 48.81782297811397 + ], + [ + 172.43332491733366, + 48.31068712910955 + ], + [ + 171.81808002488162, + 47.797972124267616 + ], + [ + 171.21851395810796, + 47.2797437830181 + ], + [ + 171.5583811742904, + 46.7100372724576 + ], + [ + 171.89070741585562, + 46.138681293123916 + ], + [ + 172.21584356402724, + 45.56568229883182 + ], + [ + 172.53412868328633, + 44.991043632199506 + ], + [ + 172.8458910334092, + 44.41476570866769 + ], + [ + 173.1514490563955, + 43.83684620057651 + ], + [ + 173.4511123432266, + 43.25728022407646 + ], + [ + 173.74518258553974, + 42.676060531926844 + ], + [ + 174.64465136440054, + 42.477151269020275 + ], + [ + 175.53858363336167, + 42.27180361956394 + ], + [ + 176.4270043813002, + 42.060034469851026 + ], + [ + 177.30995272379715, + 41.841847943788366 + ], + [ + 178.18748286898756, + 41.6172327861524 + ], + [ + 179.05966528298245, + 41.38615911616739 + ], + [ + 179.92658809773616, + 41.14857436118394 + ], + [ + 180.78835881211404, + 40.90439811308672 + ] + ] + ] + } + }, { "type": "Feature", "properties": { @@ -169400,168 +169400,168 @@ "coordinates": [ [ [ - -145.52273056293836, - 56.870744226531954 + -150.7883588121141, + 40.90439811308672 ], [ - -146.03155804156165, - 56.23106135195437 + -150.49003910703863, + 41.563053366076964 ], [ - -146.52197066091344, - 55.59010253185378 + -150.18575101123452, + 42.219972056995324 ], [ - -146.9949904303187, - 54.94796442830572 + -149.87503610359084, + 42.87526886648155 ], [ - -147.45157050749447, - 54.304733607705074 + -149.5574445136166, + 43.52903798879164 ], [ - -147.8926006700807, - 53.66048732174956 + -149.23252900381146, + 44.18135589124764 ], [ - -148.31891233900478, - 53.01529419366314 + -148.89984001832516, + 44.83228351241983 ], [ - -148.7312831931066, - 52.369214817076134 + -148.55892143645326, + 45.48186801122973 ], [ - -149.13044141230137, - 51.722302273605706 + -148.20930683638824, + 46.13014415306687 ], [ - -149.0060224681937, - 51.027615834712044 + -148.31440673147188, + 46.83472904063177 ], [ - -148.88410693022365, - 50.33200986648408 + -148.42267245217306, + 47.53733544268485 ], [ - -148.76473582175356, - 49.63534030556225 + -148.5339127424558, + 48.2381775027391 ], [ -148.6479740324002, 48.93745201687548 ], [ - -148.5339127424558, - 48.2381775027391 + -148.76473582175356, + 49.63534030556225 ], [ - -148.42267245217306, - 47.53733544268484 + -148.88410693022365, + 50.33200986648408 ], [ - -148.31440673147188, - 46.83472904063177 + -149.0060224681937, + 51.027615834712044 ], [ - -148.20930683638824, - 46.13014415306687 + -149.13044141230137, + 51.722302273605706 ], [ - -147.34848752800013, - 46.29631064250516 + -150.0967835499825, + 51.53187761926234 ], [ - -146.48375792986474, - 46.45603063445289 + -151.05627752648616, + 51.33379573080661 ], [ - -145.61520822696104, - 46.60932193274887 + -152.0087582438406, + 51.12807443480634 ], [ - -144.74293125805139, - 46.756198837044806 + -152.9540672119913, + 50.91472948513698 ], [ - -143.86702278062, - 46.89667247174303 + -153.89205207105528, + 50.69377429821495 ], [ - -142.98758168987519, - 47.03075109682092 + -154.82256605115367, + 50.465219688039035 ], [ - -142.10471019533935, - 47.15844040167466 + -155.7454673689292, + 50.229073601655884 ], [ - -141.21851395810796, - 47.27974378301808 + -156.66061855951767, + 49.98534085570773 ], [ - -141.0506089790597, - 47.98921558777709 + -156.60045858158878, + 49.29460316147575 ], [ - -140.87813044011978, - 48.6968441966417 + -156.54088762277502, + 48.6039329348543 ], [ - -140.70050365740485, - 49.402774078529035 + -156.48190919660408, + 47.9132427497043 ], [ - -140.5171561508107, - 50.10713576802993 + -156.4235343032019, + 47.22243799460534 ], [ - -140.32751179067782, - 50.810046923517156 + -156.3657824309405, + 46.531415695053745 ], [ - -140.13098527901042, - 51.51161323229016 + -156.30868284768877, + 45.840063112265945 ], [ - -139.92697684018043, - 52.21192917541767 + -156.2522762571985, + 45.148256067705866 ], [ - -139.71486701004198, - 52.911078663009754 + -156.19661692139545, + 44.45585692899723 ], [ - -140.37881947546748, - 53.42362989311592 + -155.4742514798952, + 44.041723240624385 ], [ - -141.0598296397934, - 53.93135891202086 + -154.7642821190119, + 43.61923501944753 ], [ - -141.7582040682572, - 54.43416919789364 + -154.06707780197257, + 43.18831419682945 ], [ - -142.4742705834014, - 54.93196003118566 + -153.38304575010704, + 42.748880612430085 ], [ - -143.20837781059504, - 55.42462607672502 + -152.71263548465095, + 42.300852917166665 ], [ - -143.9608946579056, - 55.91205696943879 + -152.05634317840753, + 41.84414965820928 ], [ - -144.73220971607952, - 56.39413690370067 + -151.41471633508786, + 41.378690571860965 ], [ - -145.52273056293836, - 56.870744226531954 + -150.7883588121141, + 40.90439811308672 ] ] ] @@ -169577,168 +169577,168 @@ "coordinates": [ [ [ - -150.7883588121141, - 40.90439811308672 + -145.52273056293836, + 56.870744226531954 ], [ - -150.49003910703863, - 41.563053366076964 + -146.03155804156165, + 56.23106135195437 ], [ - -150.18575101123452, - 42.219972056995324 + -146.52197066091344, + 55.59010253185378 ], [ - -149.87503610359084, - 42.87526886648155 + -146.9949904303187, + 54.94796442830572 ], [ - -149.5574445136166, - 43.52903798879164 + -147.45157050749447, + 54.304733607705074 ], [ - -149.23252900381146, - 44.18135589124764 + -147.8926006700807, + 53.66048732174956 ], [ - -148.89984001832516, - 44.83228351241983 + -148.31891233900478, + 53.01529419366314 ], [ - -148.55892143645326, - 45.48186801122973 + -148.7312831931066, + 52.369214817076134 ], [ - -148.20930683638824, - 46.13014415306687 + -149.13044141230137, + 51.722302273605706 ], [ - -148.31440673147188, - 46.83472904063177 + -149.0060224681937, + 51.027615834712044 ], [ - -148.42267245217306, - 47.53733544268485 + -148.88410693022365, + 50.33200986648408 ], [ - -148.5339127424558, - 48.2381775027391 + -148.76473582175356, + 49.63534030556225 ], [ -148.6479740324002, 48.93745201687548 ], [ - -148.76473582175356, - 49.63534030556225 + -148.5339127424558, + 48.2381775027391 ], [ - -148.88410693022365, - 50.33200986648408 + -148.42267245217306, + 47.53733544268484 ], [ - -149.0060224681937, - 51.027615834712044 + -148.31440673147188, + 46.83472904063177 ], [ - -149.13044141230137, - 51.722302273605706 + -148.20930683638824, + 46.13014415306687 ], [ - -150.0967835499825, - 51.53187761926234 + -147.34848752800013, + 46.29631064250516 ], [ - -151.05627752648616, - 51.33379573080661 + -146.48375792986474, + 46.45603063445289 ], [ - -152.0087582438406, - 51.12807443480634 + -145.61520822696104, + 46.60932193274887 ], [ - -152.9540672119913, - 50.91472948513698 + -144.74293125805139, + 46.756198837044806 ], [ - -153.89205207105528, - 50.69377429821495 + -143.86702278062, + 46.89667247174303 ], [ - -154.82256605115367, - 50.465219688039035 + -142.98758168987519, + 47.03075109682092 ], [ - -155.7454673689292, - 50.229073601655884 + -142.10471019533935, + 47.15844040167466 ], [ - -156.66061855951767, - 49.98534085570773 + -141.21851395810796, + 47.27974378301808 ], [ - -156.60045858158878, - 49.29460316147575 + -141.0506089790597, + 47.98921558777709 ], [ - -156.54088762277502, - 48.6039329348543 + -140.87813044011978, + 48.6968441966417 ], [ - -156.48190919660408, - 47.9132427497043 + -140.70050365740485, + 49.402774078529035 ], [ - -156.4235343032019, - 47.22243799460534 + -140.5171561508107, + 50.10713576802993 ], [ - -156.3657824309405, - 46.531415695053745 + -140.32751179067782, + 50.810046923517156 ], [ - -156.30868284768877, - 45.840063112265945 + -140.13098527901042, + 51.51161323229016 ], [ - -156.2522762571985, - 45.148256067705866 + -139.92697684018043, + 52.21192917541767 ], [ - -156.19661692139545, - 44.45585692899723 + -139.71486701004198, + 52.911078663009754 ], [ - -155.4742514798952, - 44.041723240624385 + -140.37881947546748, + 53.42362989311592 ], [ - -154.7642821190119, - 43.61923501944753 + -141.0598296397934, + 53.93135891202086 ], [ - -154.06707780197257, - 43.18831419682945 + -141.7582040682572, + 54.43416919789364 ], [ - -153.38304575010704, - 42.748880612430085 + -142.4742705834014, + 54.93196003118566 ], [ - -152.71263548465095, - 42.300852917166665 + -143.20837781059504, + 55.42462607672502 ], [ - -152.05634317840753, - 41.84414965820928 + -143.9608946579056, + 55.91205696943879 ], [ - -151.41471633508786, - 41.378690571860965 + -144.73220971607952, + 56.39413690370067 ], [ - -150.7883588121141, - 40.90439811308672 + -145.52273056293836, + 56.870744226531954 ] ] ] diff --git a/tests/lattice/curve.test.ts b/tests/lattice/curve.test.ts index 5e8d489..33b9657 100644 --- a/tests/lattice/curve.test.ts +++ b/tests/lattice/curve.test.ts @@ -1,7 +1,7 @@ import {describe, it, expect} from 'vitest'; import type {IJ} from 'a5/core/coordinate-systems'; import type {Orientation, Triple} from 'a5/lattice'; -import {sToCell, sToTriple, tripleToS, tripleParity, tripleInBounds, IJToS} from 'a5/lattice'; +import {roundToTriple, sToCell, sToTriple, tripleToS, tripleParity, tripleInBounds, tripleFlavor} from 'a5/lattice'; import fixtures from '../fixtures/lattice/curve.json'; type SToCellFixture = { @@ -15,7 +15,7 @@ type SToCellFixture = { flavor: number; }; -type IJToSFixture = { +type PointToSFixture = { i: number; j: number; resolution: number; @@ -71,10 +71,10 @@ describe('tripleToS', () => { }); }); -describe('IJToS', () => { +describe('pointToS (roundToTriple + tripleToS)', () => { it('locates the containing cell of a fractional IJ point', () => { - for (const f of fixtures.IJToS as IJToSFixture[]) { - const s = IJToS([f.i, f.j] as IJ, f.resolution, f.orientation); + for (const f of fixtures.pointToS as PointToSFixture[]) { + const s = tripleToS(roundToTriple([f.i, f.j] as IJ, f.resolution), f.resolution, f.orientation); expect(Number(s), `s for (${f.i},${f.j}) res=${f.resolution} ori=${f.orientation}`).toBe(f.s); } }); @@ -88,3 +88,16 @@ describe('tripleInBounds', () => { } }); }); + +describe('tripleFlavor', () => { + it('matches the descent flavor for every cell (closed form)', () => { + // The pentagon flavor depends only on (parity, y mod 2); pin the closed + // form against the descent over all cells at res 6, two orientations. + for (const orientation of ['uv', 'wu'] as const) { + for (let s = 0n; s < 1n << 12n; s++) { + const cell = sToCell(s, 6, orientation); + expect(tripleFlavor(cell.triple)).toBe(cell.flavor); + } + } + }); +}); diff --git a/tests/lattice/lsystem.test.ts b/tests/lattice/lsystem.test.ts index 4927330..c422fd7 100644 --- a/tests/lattice/lsystem.test.ts +++ b/tests/lattice/lsystem.test.ts @@ -2,7 +2,7 @@ import {describe, it, expect} from 'vitest'; import type {IJ} from 'a5/core/coordinate-systems'; import type {Orientation, Triple} from 'a5/lattice'; import {sToCell, sToTriple, tripleToSLattice} from 'a5/lattice/lsystem'; -import {IJToS} from 'a5/lattice/curve'; +import {roundToTriple} from 'a5/lattice/curve'; import fixtures from '../fixtures/lattice/lsystem.json'; type SToCellFixture = { @@ -16,7 +16,7 @@ type SToCellFixture = { flavor: number; }; -type IJToSFixture = { +type PointToSFixture = { i: number; j: number; resolution: number; @@ -59,10 +59,10 @@ describe('lsystem tripleToSLattice', () => { }); }); -describe('lsystem IJToS', () => { +describe('lsystem pointToS (roundToTriple + tripleToSLattice)', () => { it('locates the containing cell of a fractional IJ point', () => { - for (const f of fixtures.IJToS as IJToSFixture[]) { - const s = IJToS([f.i, f.j] as IJ, f.resolution, f.orientation); + for (const f of fixtures.pointToS as PointToSFixture[]) { + const s = tripleToSLattice(roundToTriple([f.i, f.j] as IJ, f.resolution), f.resolution, f.orientation); expect(Number(s), `s for (${f.i},${f.j}) res=${f.resolution} ori=${f.orientation}`).toBe(f.s); } }); diff --git a/tests/utils/spiral.test.ts b/tests/utils/spiral.test.ts deleted file mode 100644 index 478e670..0000000 --- a/tests/utils/spiral.test.ts +++ /dev/null @@ -1,32 +0,0 @@ -import {describe, it, expect} from 'vitest'; -import {Spiral, SPIRAL_SAMPLE_COUNT} from 'a5/utils/spiral'; -import type {Cartesian, Spherical} from 'a5/core/coordinate-systems'; -import fixtures from '../fixtures/utils/spiral.json'; -import './matchers'; - -type Fixture = { - name: string; - center: [number, number]; - scaleRad: number; - sampleCount: number; - samples: number[][]; -}; - -describe('Spiral', () => { - it('SPIRAL_SAMPLE_COUNT matches fixture', () => { - expect(SPIRAL_SAMPLE_COUNT).toBe((fixtures as any).sampleCount); - }); - - for (const f of (fixtures as any).spiral as Fixture[]) { - it(`${f.name}`, () => { - const center = f.center as unknown as Spherical; - const spiral = new Spiral(center, f.scaleRad); - const out = new Float64Array(3); - expect(f.sampleCount).toBe(SPIRAL_SAMPLE_COUNT); - for (let i = 0; i < SPIRAL_SAMPLE_COUNT; i++) { - spiral.sample(out as unknown as Cartesian, i); - expect([...out]).toBeCloseToArray(f.samples[i], 6); - } - }); - } -});