diff --git a/packages/turf-ellipse/index.ts b/packages/turf-ellipse/index.ts index 06182b9721..3b7d153883 100644 --- a/packages/turf-ellipse/index.ts +++ b/packages/turf-ellipse/index.ts @@ -1,15 +1,16 @@ import { - degreesToRadians, polygon, isObject, isNumber, Coord, Units, + point, + radiansToDegrees, } from "@turf/helpers"; -import { rhumbDestination } from "@turf/rhumb-destination"; +import { destination } from "@turf/destination"; import { transformRotate } from "@turf/transform-rotate"; import { getCoord } from "@turf/invariant"; -import { GeoJsonProperties, Feature, Polygon } from "geojson"; +import { GeoJsonProperties, Feature, Polygon, Position } from "geojson"; /** * Takes a {@link Point} and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision. @@ -47,12 +48,11 @@ function ellipse( ): Feature { // Optional params options = options || {}; - const steps = options.steps || 64; + let steps = options.steps || 64; const units = options.units || "kilometers"; - const angle = options.angle || 0; + let angle = options.angle || 0; const pivot = options.pivot || center; const properties = options.properties || {}; - // validation if (!center) throw new Error("center is required"); if (!xSemiAxis) throw new Error("xSemiAxis is required"); @@ -61,62 +61,99 @@ function ellipse( if (!isNumber(steps)) throw new Error("steps must be a number"); if (!isNumber(angle)) throw new Error("angle must be a number"); - const centerCoords = getCoord(center); - if (units !== "degrees") { - const xDest = rhumbDestination(center, xSemiAxis, 90, { units }); - const yDest = rhumbDestination(center, ySemiAxis, 0, { units }); - xSemiAxis = getCoord(xDest)[0] - centerCoords[0]; - ySemiAxis = getCoord(yDest)[1] - centerCoords[1]; - } + const centerCoords = getCoord( + transformRotate(point(getCoord(center)), angle, { pivot }) + ); + + angle = -90 + angle; + + // Divide steps by 4 for one quadrant + steps = Math.ceil(steps / 4); + + let quadrantParameters = []; + let parameters = []; + + const a = xSemiAxis; + const b = ySemiAxis; + + // Gradient x intersect + const c = b; + + // Gradient of line + const m = (a - b) / (Math.PI / 2); + + // Area under line + const A = ((a + b) * Math.PI) / 4; + + // Weighting function + const v = 0.5; + + const k = steps; - const coordinates: number[][] = []; - for (let i = 0; i < steps; i += 1) { - const stepAngle = (i * -360) / steps; - let x = - (xSemiAxis * ySemiAxis) / - Math.sqrt( - Math.pow(ySemiAxis, 2) + - Math.pow(xSemiAxis, 2) * Math.pow(getTanDeg(stepAngle), 2) - ); - let y = - (xSemiAxis * ySemiAxis) / - Math.sqrt( - Math.pow(xSemiAxis, 2) + - Math.pow(ySemiAxis, 2) / Math.pow(getTanDeg(stepAngle), 2) - ); - - if (stepAngle < -90 && stepAngle >= -270) x = -x; - if (stepAngle < -180 && stepAngle >= -360) y = -y; - if (units === "degrees") { - const angleRad = degreesToRadians(angle); - const newx = x * Math.cos(angleRad) + y * Math.sin(angleRad); - const newy = y * Math.cos(angleRad) - x * Math.sin(angleRad); - x = newx; - y = newy; + let w = 0; + let x = 0; + + for (let i = 0; i < steps; i++) { + x += w; + + if (m === 0) { + // It's a circle, so use simplified c*w - A/k == 0 + w = A / k / c; + } else { + // Otherwise, use full (v*m)*w^2 + (m*x+c)*w - A/k == 0 + // Solve as quadratic ax^2 + bx + c = 0 + w = + (-(m * x + c) + + Math.sqrt(Math.pow(m * x + c, 2) - 4 * (v * m) * -(A / k))) / + (2 * (v * m)); + } + if (x != 0) { + // easier to add it later to avoid having twice the same point + quadrantParameters.push(x); } + } - coordinates.push([x + centerCoords[0], y + centerCoords[1]]); + //NE + parameters.push(0); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push(quadrantParameters[i]); } - coordinates.push(coordinates[0]); - if (units === "degrees") { - return polygon([coordinates], properties); - } else { - return transformRotate(polygon([coordinates], properties), angle, { - pivot, - }); + //NW + parameters.push(Math.PI / 2); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push( + Math.PI - quadrantParameters[quadrantParameters.length - i - 1] + ); } -} + //SW + parameters.push(Math.PI); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push(Math.PI + quadrantParameters[i]); + } + //SE + parameters.push((3 * Math.PI) / 2); + for (let i = 0; i < quadrantParameters.length; i++) { + parameters.push( + 2 * Math.PI - quadrantParameters[quadrantParameters.length - i - 1] + ); + } + parameters.push(0); -/** - * Get Tan Degrees - * - * @private - * @param {number} deg Degrees - * @returns {number} Tan Degrees - */ -function getTanDeg(deg: number) { - const rad = (deg * Math.PI) / 180; - return Math.tan(rad); + // We can now construct the ellipse + const coords: Position[] = []; + for (const param of parameters) { + const theta = Math.atan2(b * Math.sin(param), a * Math.cos(param)); + const r = Math.sqrt( + (Math.pow(a, 2) * Math.pow(b, 2)) / + (Math.pow(a * Math.sin(theta), 2) + Math.pow(b * Math.cos(theta), 2)) + ); + coords.push( + destination(centerCoords, r, angle + radiansToDegrees(theta), { + units: units, + }).geometry.coordinates + ); + } + return polygon([coords], properties); } export { ellipse }; diff --git a/packages/turf-ellipse/package.json b/packages/turf-ellipse/package.json index e366183ccc..ad34aefefc 100644 --- a/packages/turf-ellipse/package.json +++ b/packages/turf-ellipse/package.json @@ -53,9 +53,10 @@ }, "devDependencies": { "@placemarkio/check-geojson": "^0.1.12", + "@turf/area": "workspace:^", "@turf/bbox-polygon": "workspace:^", "@turf/circle": "workspace:^", - "@turf/destination": "workspace:^", + "@turf/intersect": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", "@types/tape": "^4.13.4", @@ -70,9 +71,10 @@ "write-json-file": "^5.0.0" }, "dependencies": { + "@turf/destination": "workspace:^", + "@turf/distance": "workspace:^", "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", - "@turf/rhumb-destination": "workspace:^", "@turf/transform-rotate": "workspace:^", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" diff --git a/packages/turf-ellipse/test.ts b/packages/turf-ellipse/test.ts index 62d2065333..12cdee9c26 100644 --- a/packages/turf-ellipse/test.ts +++ b/packages/turf-ellipse/test.ts @@ -1,5 +1,4 @@ import test from "tape"; -import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; @@ -7,124 +6,101 @@ import { writeJsonFileSync } from "write-json-file"; import { circle } from "@turf/circle"; import { truncate } from "@turf/truncate"; import { check } from "@placemarkio/check-geojson"; -import { bboxPolygon } from "@turf/bbox-polygon"; -import { rhumbDestination } from "@turf/rhumb-destination"; -// import { destination } from '@turf/destination'; import { featureCollection } from "@turf/helpers"; +import { intersect } from "@turf/intersect"; +import { area } from "@turf/area"; import { ellipse } from "./index.js"; +import fs from "fs"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); -test("turf-ellipse", (t) => { - glob - .sync(path.join(__dirname, "test", "in", "*.json")) - .forEach((filepath) => { - // Define params - const { name } = path.parse(filepath); - const geojson = loadJsonFileSync(filepath); - const center = geojson.geometry.coordinates; - let { xSemiAxis, ySemiAxis, steps, angle, units } = geojson.properties; - angle = angle || 0; - const options = { steps, angle, units }; - const maxAxis = Math.max(xSemiAxis, ySemiAxis); +const directories = { + in: path.join(__dirname, "test", "in") + path.sep, + out: path.join(__dirname, "test", "out") + path.sep, +}; - // Styled results - const maxDestination0 = rhumbDestination(center, maxAxis, angle, { - units, - }); - const maxDestination90 = rhumbDestination(center, maxAxis, angle + 90, { - units, - }); - const maxDestination180 = rhumbDestination(center, maxAxis, angle + 180, { - units, - }); - const maxDestination270 = rhumbDestination(center, maxAxis, angle + 270, { - units, - }); +const fixtures = fs.readdirSync(directories.in).map((filename) => { + return { + filename, + name: path.parse(filename).name, + geojson: loadJsonFileSync(directories.in + filename), + }; +}); - const xDestination0 = rhumbDestination(center, xSemiAxis, angle, { - units, - }); - const xDestination90 = rhumbDestination(center, xSemiAxis, angle + 90, { - units, - }); - const xDestination180 = rhumbDestination(center, xSemiAxis, angle + 180, { - units, - }); - const xDestination270 = rhumbDestination(center, xSemiAxis, angle + 270, { - units, - }); +test("turf-ellipse", (t) => { + fixtures.forEach((fixture) => { + console.log(fixture.filename); + const filename = fixture.filename; + const name = fixture.name; + const geojson = fixture.geojson; + const center = geojson.geometry.coordinates; + let { xSemiAxis, ySemiAxis, steps, angle, units, accuracy } = + geojson.properties; + angle = angle || 0; + const options = { + steps: steps, + angle: angle, + units: units, + accuracy: accuracy, + }; + const maxAxis = Math.max(xSemiAxis, ySemiAxis); - const yDestination0 = rhumbDestination(center, ySemiAxis, angle, { - units, - }); - const yDestination90 = rhumbDestination(center, ySemiAxis, angle + 90, { - units, - }); - const yDestination180 = rhumbDestination(center, ySemiAxis, angle + 180, { - units, - }); - const yDestination270 = rhumbDestination(center, ySemiAxis, angle + 270, { - units, - }); + const results = featureCollection([ + geojson, + truncate(colorize(circle(center, maxAxis, options), "#F00")), + truncate( + colorize(ellipse(center, xSemiAxis, ySemiAxis, options), "#00F") + ), + truncate( + colorize( + ellipse(center, xSemiAxis, ySemiAxis, { + steps, + angle: angle + 90, + units, + accuracy: accuracy, + }), + "#0F0" + ) + ), + ]); - const bboxX = colorize( - bboxPolygon([ - xDestination270.geometry.coordinates[0], - yDestination180.geometry.coordinates[1], - xDestination90.geometry.coordinates[0], - yDestination0.geometry.coordinates[1], - ]), - "#FFF" - ); - const bboxY = colorize( - bboxPolygon([ - yDestination270.geometry.coordinates[0], - xDestination180.geometry.coordinates[1], - yDestination90.geometry.coordinates[0], - xDestination0.geometry.coordinates[1], - ]), - "#666" - ); - const bboxMax = colorize( - bboxPolygon([ - maxDestination270.geometry.coordinates[0], - maxDestination180.geometry.coordinates[1], - maxDestination90.geometry.coordinates[0], - maxDestination0.geometry.coordinates[1], - ]), - "#000" - ); + // Save to file + const out = path.join(directories.out, filename); + if (process.env.REGEN) writeJsonFileSync(out, results); + t.deepEqual(results, loadJsonFileSync(out), name); + }); + t.end(); +}); - const results = featureCollection([ - bboxX, - bboxY, - bboxMax, - geojson, - truncate(colorize(circle(center, maxAxis, options), "#F00")), - truncate( - colorize(ellipse(center, xSemiAxis, ySemiAxis, options), "#00F") - ), - truncate( - colorize( - ellipse(center, xSemiAxis, ySemiAxis, { - steps, - angle: angle + 90, - units, - }), - "#0F0" - ) - ), - ]); +test("turf-ellipse -- circle consistency", (t) => { + const ellipseGeom = truncate(ellipse([0, 60], 2000, 2000, { steps: 300 })); + const circleGeom = truncate(circle([0, 60], 2000, { steps: 300 })); + const intersectionGeom = intersect( + featureCollection([ellipseGeom, circleGeom]) + ); + const areaIntersection = + intersectionGeom != null ? area(intersectionGeom.geometry) : 0; + const areaCircle = circleGeom != null ? area(circleGeom.geometry) : 0; + t.true( + Math.abs(areaIntersection - areaCircle) / areaCircle < 0.00001, + "both areas are equal" + ); + t.end(); +}); - // Save to file - const out = filepath.replace( - path.join("test", "in"), - path.join("test", "out") - ); - if (process.env.REGEN) writeJsonFileSync(out, results); - t.deepEqual(results, loadJsonFileSync(out), name); - }); +test("turf-ellipse -- rotation consistency", (t) => { + const ellipseGeom = ellipse([0, 60], 2000, 2000, { angle: 0 }); + const ellipseTurnedGeom = ellipse([0, 60], 2000, 2000, { angle: 90 }); + const intersectionGeom = intersect( + featureCollection([ellipseGeom, ellipseTurnedGeom]) + ); + const areaIntersection = + intersectionGeom != null ? area(intersectionGeom.geometry) : 0; + const areaEllipse = ellipseGeom != null ? area(ellipseGeom.geometry) : 0; + t.true( + Math.abs(areaIntersection - areaEllipse) / areaEllipse < 0.00001, + "both areas are equal" + ); t.end(); }); diff --git a/packages/turf-ellipse/test/in/rotation-degrees.json b/packages/turf-ellipse/test/in/rotation-degrees.json index 496e8da0a8..2effdb4b96 100644 --- a/packages/turf-ellipse/test/in/rotation-degrees.json +++ b/packages/turf-ellipse/test/in/rotation-degrees.json @@ -4,7 +4,7 @@ "units": "degrees", "xSemiAxis": 0.125, "ySemiAxis": 0.025, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", diff --git a/packages/turf-ellipse/test/in/rotation.json b/packages/turf-ellipse/test/in/rotation.json index bcb5f88063..bd27786805 100644 --- a/packages/turf-ellipse/test/in/rotation.json +++ b/packages/turf-ellipse/test/in/rotation.json @@ -3,7 +3,7 @@ "properties": { "xSemiAxis": 5, "ySemiAxis": 1, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", diff --git a/packages/turf-ellipse/test/out/anti-meridian-degrees.json b/packages/turf-ellipse/test/out/anti-meridian-degrees.json index 9dc93cef4b..4a2824aa2d 100644 --- a/packages/turf-ellipse/test/out/anti-meridian-degrees.json +++ b/packages/turf-ellipse/test/out/anti-meridian-degrees.json @@ -1,72 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [-232.28458782435735, -27, -127.71541217564265, -7.000000000000003], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-232.28458782435735, -27], - [-127.71541217564265, -27], - [-127.71541217564265, -7.000000000000003], - [-232.28458782435735, -7.000000000000003], - [-232.28458782435735, -27] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-190.4569175648715, -66.99999999999999, -169.5430824351285, 33], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-190.4569175648715, -66.99999999999999], - [-169.5430824351285, -66.99999999999999], - [-169.5430824351285, 33], - [-190.4569175648715, 33], - [-190.4569175648715, -66.99999999999999] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-232.28458782435735, -66.99999999999999, -127.71541217564265, 33], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-232.28458782435735, -66.99999999999999], - [-127.71541217564265, -66.99999999999999], - [-127.71541217564265, 33], - [-232.28458782435735, 33], - [-232.28458782435735, -66.99999999999999] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -172,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-130, -17], - [-135.144121, -12.582082], - [-144.548397, -9.948238], - [-152.477908, -8.651265], - [-158.259476, -7.99478], - [-162.477758, -7.634166], - [-165.662441, -7.419949], - [-168.161441, -7.284346], - [-170.194193, -7.194193], - [-171.901575, -7.132041], - [-173.37709, -7.088114], - [-174.685172, -7.056655], - [-175.872005, -7.034139], - [-176.972101, -7.018353], - [-178.012448, -7.007904], - [-179.015277, -7.00194], + [-231.255224, -10.832176], + [-229.537115, -9.171208], + [-226.785333, -8.318289], + [-223.616357, -7.809288], + [-220.237616, -7.490076], + [-216.750783, -7.287067], + [-213.215132, -7.158857], + [-209.668909, -7.079876], + [-206.138464, -7.033411], + [-202.642783, -7.008151], + [-199.195982, -6.996301], + [-195.808785, -6.992459], + [-192.489461, -6.992913], + [-189.24444, -6.99517], + [-186.078735, -6.997636], + [-182.996251, -6.999388], [-180, -7], - [-180.984723, -7.00194], - [-181.987552, -7.007904], - [-183.027899, -7.018353], - [-184.127995, -7.034139], - [-185.314828, -7.056655], - [-186.62291, -7.088114], - [-188.098425, -7.132041], - [-189.805807, -7.194193], - [-191.838559, -7.284346], - [-194.337559, -7.419949], - [-197.522242, -7.634166], - [-201.740524, -7.99478], - [-207.522092, -8.651265], - [-215.451603, -9.948238], - [-224.855879, -12.582082], - [-230, -17], - [-224.855879, -21.417918], - [-215.451603, -24.051762], - [-207.522092, -25.348735], - [-201.740524, -26.00522], - [-197.522242, -26.365834], - [-194.337559, -26.580051], - [-191.838559, -26.715654], - [-189.805807, -26.805807], - [-188.098425, -26.867959], - [-186.62291, -26.911886], - [-185.314828, -26.943345], - [-184.127995, -26.965861], - [-183.027899, -26.981647], - [-181.987552, -26.992096], - [-180.984723, -26.99806], + [-177.003749, -6.999388], + [-173.921265, -6.997636], + [-170.75556, -6.99517], + [-167.510539, -6.992913], + [-164.191215, -6.992459], + [-160.804018, -6.996301], + [-157.357217, -7.008151], + [-153.861536, -7.033411], + [-150.331091, -7.079876], + [-146.784868, -7.158857], + [-143.249217, -7.287067], + [-139.762384, -7.490076], + [-136.383643, -7.809288], + [-133.214667, -8.318289], + [-130.462885, -9.171208], + [-128.744776, -10.832176], + [-129.549848, -13.068509], + [-131.704315, -15.006667], + [-134.457899, -16.764622], + [-137.558403, -18.370546], + [-140.881596, -19.832788], + [-144.353404, -21.153602], + [-147.923695, -22.333485], + [-151.555203, -23.372894], + [-155.218208, -24.273002], + [-158.887798, -25.036029], + [-162.542409, -25.665364], + [-166.163061, -26.16555], + [-169.732965, -26.542201], + [-173.237347, -26.80186], + [-176.663352, -26.951832], [-180, -27], - [-179.015277, -26.99806], - [-178.012448, -26.992096], - [-176.972101, -26.981647], - [-175.872005, -26.965861], - [-174.685172, -26.943345], - [-173.37709, -26.911886], - [-171.901575, -26.867959], - [-170.194193, -26.805807], - [-168.161441, -26.715654], - [-165.662441, -26.580051], - [-162.477758, -26.365834], - [-158.259476, -26.00522], - [-152.477908, -25.348735], - [-144.548397, -24.051762], - [-135.144121, -21.417918], - [-130, -17] + [-183.336648, -26.951832], + [-186.762653, -26.80186], + [-190.267035, -26.542201], + [-193.836939, -26.16555], + [-197.457591, -25.665364], + [-201.112202, -25.036029], + [-204.781792, -24.273002], + [-208.444797, -23.372894], + [-212.076305, -22.333485], + [-215.646596, -21.153602], + [-219.118404, -19.832788], + [-222.441597, -18.370546], + [-225.542101, -16.764622], + [-228.295685, -15.006667], + [-230.450152, -13.068509], + [-231.255224, -10.832176] ] ] } @@ -253,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-180, -67], - [-175.582082, -61.855879], - [-172.948238, -52.451603], - [-171.651265, -44.522092], - [-170.99478, -38.740524], - [-170.634166, -34.522242], - [-170.419949, -31.337559], - [-170.284346, -28.838559], - [-170.194193, -26.805807], - [-170.132041, -25.098425], - [-170.088114, -23.62291], - [-170.056655, -22.314828], - [-170.034139, -21.127995], - [-170.018353, -20.027899], - [-170.007904, -18.987552], - [-170.00194, -17.984723], - [-170, -17], - [-170.00194, -16.015277], - [-170.007904, -15.012448], - [-170.018353, -13.972101], - [-170.034139, -12.872005], - [-170.056655, -11.685172], - [-170.088114, -10.37709], - [-170.132041, -8.901575], - [-170.194193, -7.194193], - [-170.284346, -5.161441], - [-170.419949, -2.662441], - [-170.634166, 0.522242], - [-170.99478, 4.740524], - [-171.651265, 10.522092], - [-172.948238, 18.451603], - [-175.582082, 27.855879], [-180, 33], - [-184.417918, 27.855879], - [-187.051762, 18.451603], - [-188.348735, 10.522092], - [-189.00522, 4.740524], - [-189.365834, 0.522242], - [-189.580051, -2.662441], - [-189.715654, -5.161441], - [-189.805807, -7.194193], - [-189.867959, -8.901575], - [-189.911886, -10.37709], - [-189.943345, -11.685172], - [-189.965861, -12.872005], - [-189.981647, -13.972101], - [-189.992096, -15.012448], - [-189.99806, -16.015277], - [-190, -17], - [-189.99806, -17.984723], - [-189.992096, -18.987552], - [-189.981647, -20.027899], - [-189.965861, -21.127995], - [-189.943345, -22.314828], - [-189.911886, -23.62291], - [-189.867959, -25.098425], - [-189.805807, -26.805807], - [-189.715654, -28.838559], - [-189.580051, -31.337559], - [-189.365834, -34.522242], - [-189.00522, -38.740524], - [-188.348735, -44.522092], - [-187.051762, -52.451603], - [-184.417918, -61.855879], - [-180, -67] + [-177.649663, 31.703957], + [-176.075902, 29.197049], + [-174.899856, 26.193732], + [-173.977415, 22.936144], + [-173.23134, 19.54281], + [-172.614036, 16.082418], + [-172.093927, 12.598902], + [-171.649083, 9.122233], + [-171.263795, 5.673775], + [-170.926553, 2.269246], + [-170.628782, -1.079531], + [-170.364019, -4.363529], + [-170.127356, -7.575789], + [-169.915059, -10.710919], + [-169.724292, -13.764747], + [-169.55293, -16.734064], + [-169.394938, -19.704191], + [-169.246345, -22.760568], + [-169.109071, -25.900205], + [-168.985952, -29.119223], + [-168.881153, -32.41262], + [-168.800816, -35.773947], + [-168.754065, -39.194852], + [-168.754629, -42.664405], + [-168.823498, -46.168062], + [-168.993438, -49.685982], + [-169.316859, -53.190124], + [-169.880034, -56.638822], + [-170.829705, -59.965537], + [-172.425015, -63.051999], + [-175.146105, -65.648285], + [-180, -67], + [-184.853895, -65.648285], + [-187.574985, -63.051999], + [-189.170295, -59.965537], + [-190.119966, -56.638822], + [-190.683141, -53.190124], + [-191.006562, -49.685982], + [-191.176502, -46.168062], + [-191.245371, -42.664405], + [-191.245935, -39.194852], + [-191.199184, -35.773947], + [-191.118847, -32.41262], + [-191.014048, -29.119223], + [-190.890929, -25.900205], + [-190.753655, -22.760568], + [-190.605062, -19.704191], + [-190.44707, -16.734064], + [-190.275708, -13.764747], + [-190.084941, -10.710919], + [-189.872644, -7.575789], + [-189.635981, -4.363529], + [-189.371218, -1.079531], + [-189.073447, 2.269246], + [-188.736205, 5.673775], + [-188.350917, 9.122233], + [-187.906073, 12.598902], + [-187.385964, 16.082418], + [-186.76866, 19.54281], + [-186.022585, 22.936144], + [-185.100144, 26.193732], + [-183.924098, 29.197049], + [-182.350337, 31.703957], + [-180, 33] ] ] } diff --git a/packages/turf-ellipse/test/out/anti-meridian.json b/packages/turf-ellipse/test/out/anti-meridian.json index affda5a808..68b1e8c35b 100644 --- a/packages/turf-ellipse/test/out/anti-meridian.json +++ b/packages/turf-ellipse/test/out/anti-meridian.json @@ -1,78 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -180.4702059453939, -17.089932036372456, -179.5297940546061, -16.910067963627547 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.4702059453939, -17.089932036372456], - [-179.5297940546061, -17.089932036372456], - [-179.5297940546061, -16.910067963627547], - [-180.4702059453939, -16.910067963627547], - [-180.4702059453939, -17.089932036372456] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -180.09404118907878, -17.44966018186227, -179.90595881092122, -16.55033981813773 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.09404118907878, -17.44966018186227], - [-179.90595881092122, -17.44966018186227], - [-179.90595881092122, -16.55033981813773], - [-180.09404118907878, -16.55033981813773], - [-180.09404118907878, -17.44966018186227] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -180.4702059453939, -17.44966018186227, -179.5297940546061, -16.55033981813773 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.4702059453939, -17.44966018186227], - [-179.5297940546061, -17.44966018186227], - [-179.5297940546061, -16.55033981813773], - [-180.4702059453939, -16.55033981813773], - [-180.4702059453939, -17.44966018186227] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -177,71 +105,71 @@ "type": "Polygon", "coordinates": [ [ - [-179.529794, -17], - [-179.581966, -16.958827], - [-179.674097, -16.935174], - [-179.749219, -16.923927], - [-179.802884, -16.918352], - [-179.841585, -16.915326], - [-179.870604, -16.91354], - [-179.893277, -16.912415], - [-179.911669, -16.911669], - [-179.927087, -16.911156], - [-179.940394, -16.910793], - [-179.95218, -16.910534], - [-179.962865, -16.910349], - [-179.972765, -16.910219], - [-179.982124, -16.910133], - [-179.991144, -16.910084], + [-180.470205, -16.999461], + [-180.457964, -16.979142], + [-180.434333, -16.965124], + [-180.406011, -16.954269], + [-180.375269, -16.945497], + [-180.343224, -16.938267], + [-180.310525, -16.932253], + [-180.277591, -16.927239], + [-180.244707, -16.923072], + [-180.21208, -16.919634], + [-180.17986, -16.916835], + [-180.148164, -16.9146], + [-180.117078, -16.91287], + [-180.086671, -16.911592], + [-180.056997, -16.910724], + [-180.028096, -16.910227], [-180, -16.910068], - [-180.008856, -16.910084], - [-180.017876, -16.910133], - [-180.027235, -16.910219], - [-180.037135, -16.910349], - [-180.04782, -16.910534], - [-180.059606, -16.910793], - [-180.072913, -16.911156], - [-180.088331, -16.911669], - [-180.106723, -16.912415], - [-180.129396, -16.91354], - [-180.158415, -16.915326], - [-180.197116, -16.918352], - [-180.250781, -16.923927], - [-180.325903, -16.935174], - [-180.418034, -16.958827], - [-180.470206, -17], - [-180.418034, -17.041173], - [-180.325903, -17.064826], - [-180.250781, -17.076073], - [-180.197116, -17.081648], - [-180.158415, -17.084674], - [-180.129396, -17.08646], - [-180.106723, -17.087585], - [-180.088331, -17.088331], - [-180.072913, -17.088844], - [-180.059606, -17.089207], - [-180.04782, -17.089466], - [-180.037135, -17.089651], - [-180.027235, -17.089781], - [-180.017876, -17.089867], - [-180.008856, -17.089916], + [-179.971904, -16.910227], + [-179.943003, -16.910724], + [-179.913329, -16.911592], + [-179.882922, -16.91287], + [-179.851836, -16.9146], + [-179.82014, -16.916835], + [-179.78792, -16.919634], + [-179.755293, -16.923072], + [-179.722409, -16.927239], + [-179.689475, -16.932253], + [-179.656776, -16.938267], + [-179.624731, -16.945497], + [-179.593989, -16.954269], + [-179.565667, -16.965124], + [-179.542036, -16.979142], + [-179.529795, -16.999461], + [-179.541936, -17.019834], + [-179.565507, -17.033955], + [-179.593793, -17.044926], + [-179.624514, -17.053815], + [-179.656551, -17.061158], + [-179.689251, -17.067276], + [-179.722194, -17.072384], + [-179.755092, -17.076635], + [-179.787739, -17.080146], + [-179.81998, -17.083007], + [-179.851701, -17.085293], + [-179.882813, -17.087063], + [-179.913247, -17.088371], + [-179.942949, -17.08926], + [-179.971877, -17.089769], [-180, -17.089932], - [-179.991144, -17.089916], - [-179.982124, -17.089867], - [-179.972765, -17.089781], - [-179.962865, -17.089651], - [-179.95218, -17.089466], - [-179.940394, -17.089207], - [-179.927087, -17.088844], - [-179.911669, -17.088331], - [-179.893277, -17.087585], - [-179.870604, -17.08646], - [-179.841585, -17.084674], - [-179.802884, -17.081648], - [-179.749219, -17.076073], - [-179.674097, -17.064826], - [-179.581966, -17.041173], - [-179.529794, -17] + [-180.028123, -17.089769], + [-180.057051, -17.08926], + [-180.086753, -17.088371], + [-180.117187, -17.087063], + [-180.148299, -17.085293], + [-180.18002, -17.083007], + [-180.212261, -17.080146], + [-180.244908, -17.076635], + [-180.277806, -17.072384], + [-180.310749, -17.067276], + [-180.343449, -17.061158], + [-180.375486, -17.053815], + [-180.406207, -17.044926], + [-180.434493, -17.033955], + [-180.458064, -17.019834], + [-180.470205, -16.999461] ] ] } @@ -258,71 +186,71 @@ "type": "Polygon", "coordinates": [ [ - [-180, -17.44966], - [-179.9569, -17.399812], - [-179.932155, -17.311716], - [-179.920399, -17.239871], - [-179.914578, -17.188544], - [-179.911421, -17.151527], - [-179.90956, -17.123771], - [-179.908388, -17.102083], - [-179.907612, -17.084491], - [-179.907079, -17.069743], - [-179.906703, -17.057015], - [-179.906435, -17.045742], - [-179.906244, -17.035521], - [-179.90611, -17.026051], - [-179.906023, -17.017099], - [-179.905973, -17.008471], - [-179.905959, -17], - [-179.905978, -16.991529], - [-179.906031, -16.982901], - [-179.906123, -16.973949], - [-179.906261, -16.964479], - [-179.906458, -16.954258], - [-179.906732, -16.942985], - [-179.907114, -16.930257], - [-179.907654, -16.915509], - [-179.908438, -16.897917], - [-179.90962, -16.876229], - [-179.911492, -16.848473], - [-179.914664, -16.811456], - [-179.920501, -16.760129], - [-179.932268, -16.688284], - [-179.956992, -16.600188], [-180, -16.55034], - [-180.043009, -16.600276], - [-180.067732, -16.688391], - [-180.079499, -16.760226], - [-180.085336, -16.811538], - [-180.088508, -16.848541], - [-180.09038, -16.876286], - [-180.091562, -16.897965], - [-180.092346, -16.915549], - [-180.092886, -16.93029], - [-180.093268, -16.943012], - [-180.093542, -16.95428], - [-180.093739, -16.964496], - [-180.093877, -16.973961], - [-180.093969, -16.98291], - [-180.094022, -16.991533], - [-180.094041, -17], - [-180.094027, -17.008467], - [-180.093977, -17.01709], - [-180.09389, -17.026039], - [-180.093756, -17.035504], - [-180.093565, -17.04572], - [-180.093297, -17.056988], - [-180.092921, -17.06971], - [-180.092388, -17.084451], - [-180.091612, -17.102035], - [-180.09044, -17.123714], - [-180.088579, -17.151459], - [-180.085422, -17.188462], - [-180.079601, -17.239774], - [-180.067845, -17.311609], - [-180.0431, -17.399724], - [-180, -17.44966] + [-179.978774, -16.561997], + [-179.964091, -16.584565], + [-179.952697, -16.61163], + [-179.943474, -16.641017], + [-179.935858, -16.671656], + [-179.929514, -16.702924], + [-179.924218, -16.734422], + [-179.91981, -16.765874], + [-179.916167, -16.797083], + [-179.913197, -16.827904], + [-179.910821, -16.858226], + [-179.908978, -16.887966], + [-179.907613, -16.917056], + [-179.90668, -16.945447], + [-179.90614, -16.973098], + [-179.905959, -16.999978], + [-179.906114, -17.026859], + [-179.906626, -17.054511], + [-179.907531, -17.082902], + [-179.908869, -17.111994], + [-179.910686, -17.141735], + [-179.913037, -17.172059], + [-179.915986, -17.202882], + [-179.919609, -17.234095], + [-179.924003, -17.26555], + [-179.92929, -17.297052], + [-179.935633, -17.328324], + [-179.943257, -17.358968], + [-179.952501, -17.388359], + [-179.963931, -17.415429], + [-179.978674, -17.438], + [-180, -17.44966], + [-180.021326, -17.438], + [-180.036069, -17.415429], + [-180.047499, -17.388359], + [-180.056743, -17.358968], + [-180.064367, -17.328324], + [-180.07071, -17.297052], + [-180.075997, -17.26555], + [-180.080391, -17.234095], + [-180.084014, -17.202882], + [-180.086963, -17.172059], + [-180.089314, -17.141735], + [-180.091131, -17.111994], + [-180.092469, -17.082902], + [-180.093374, -17.054511], + [-180.093886, -17.026859], + [-180.094041, -16.999978], + [-180.09386, -16.973098], + [-180.09332, -16.945447], + [-180.092387, -16.917056], + [-180.091022, -16.887966], + [-180.089179, -16.858226], + [-180.086803, -16.827904], + [-180.083833, -16.797083], + [-180.08019, -16.765874], + [-180.075782, -16.734422], + [-180.070486, -16.702924], + [-180.064142, -16.671656], + [-180.056526, -16.641017], + [-180.047303, -16.61163], + [-180.035909, -16.584565], + [-180.021226, -16.561997], + [-180, -16.55034] ] ] } diff --git a/packages/turf-ellipse/test/out/northern-latitudes-degrees.json b/packages/turf-ellipse/test/out/northern-latitudes-degrees.json index d68fce32b1..6f56b76363 100644 --- a/packages/turf-ellipse/test/out/northern-latitudes-degrees.json +++ b/packages/turf-ellipse/test/out/northern-latitudes-degrees.json @@ -1,72 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [-112.1397763927165, 73, -75.8602236072835, 75.00000000000001], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-112.1397763927165, 73], - [-75.8602236072835, 73], - [-75.8602236072835, 75.00000000000001], - [-112.1397763927165, 75.00000000000001], - [-112.1397763927165, 73] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-97.62795527854331, 69.00000000000001, -90.37204472145669, 79], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-97.62795527854331, 69.00000000000001], - [-90.37204472145669, 69.00000000000001], - [-90.37204472145669, 79], - [-97.62795527854331, 79], - [-97.62795527854331, 69.00000000000001] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-112.1397763927165, 69.00000000000001, -75.8602236072835, 79], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-112.1397763927165, 69.00000000000001], - [-75.8602236072835, 69.00000000000001], - [-75.8602236072835, 79], - [-112.1397763927165, 79], - [-112.1397763927165, 69.00000000000001] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -172,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-89, 74], - [-89.514412, 74.441792], - [-90.45484, 74.705176], - [-91.247791, 74.834874], - [-91.825948, 74.900522], - [-92.247776, 74.936583], - [-92.566244, 74.958005], - [-92.816144, 74.971565], - [-93.019419, 74.980581], - [-93.190158, 74.986796], - [-93.337709, 74.991189], - [-93.468517, 74.994334], - [-93.587201, 74.996586], - [-93.69721, 74.998165], - [-93.801245, 74.99921], - [-93.901528, 74.999806], + [-111.609696, 73.256451], + [-111.404311, 73.510243], + [-110.70689, 73.730954], + [-109.783251, 73.928702], + [-108.725348, 74.106339], + [-107.580194, 74.2652], + [-106.376848, 74.406176], + [-105.135467, 74.53002], + [-103.871136, 74.637455], + [-102.595732, 74.729222], + [-101.318919, 74.806086], + [-100.04873, 74.86884], + [-98.79192, 74.918302], + [-97.554199, 74.955305], + [-96.340385, 74.980693], + [-95.154529, 74.995312], [-94, 75], - [-94.098472, 74.999806], - [-94.198755, 74.99921], - [-94.30279, 74.998165], - [-94.412799, 74.996586], - [-94.531483, 74.994334], - [-94.662291, 74.991189], - [-94.809842, 74.986796], - [-94.980581, 74.980581], - [-95.183856, 74.971565], - [-95.433756, 74.958005], - [-95.752224, 74.936583], - [-96.174052, 74.900522], - [-96.752209, 74.834874], - [-97.54516, 74.705176], - [-98.485588, 74.441792], - [-99, 74], - [-98.485588, 73.558208], - [-97.54516, 73.294824], - [-96.752209, 73.165126], - [-96.174052, 73.099478], - [-95.752224, 73.063417], - [-95.433756, 73.041995], - [-95.183856, 73.028435], - [-94.980581, 73.019419], - [-94.809842, 73.013204], - [-94.662291, 73.008811], - [-94.531483, 73.005666], - [-94.412799, 73.003414], - [-94.30279, 73.001835], - [-94.198755, 73.00079], - [-94.098472, 73.000194], + [-92.845471, 74.995312], + [-91.659615, 74.980693], + [-90.445801, 74.955305], + [-89.20808, 74.918302], + [-87.95127, 74.86884], + [-86.681081, 74.806086], + [-85.404268, 74.729222], + [-84.128864, 74.637455], + [-82.864533, 74.53002], + [-81.623152, 74.406176], + [-80.419806, 74.2652], + [-79.274652, 74.106339], + [-78.216749, 73.928702], + [-77.29311, 73.730954], + [-76.595689, 73.510243], + [-76.390304, 73.256451], + [-77.042091, 73.076913], + [-78.015528, 72.994911], + [-79.115088, 72.954647], + [-80.276835, 72.936876], + [-81.469995, 72.932154], + [-82.676747, 72.935073], + [-83.885546, 72.942272], + [-85.088332, 72.951565], + [-86.279178, 72.9615], + [-87.45357, 72.971111], + [-88.607982, 72.979764], + [-89.73962, 72.987065], + [-90.846251, 72.992792], + [-91.92609, 72.996848], + [-92.977713, 72.999229], [-94, 73], - [-93.901528, 73.000194], - [-93.801245, 73.00079], - [-93.69721, 73.001835], - [-93.587201, 73.003414], - [-93.468517, 73.005666], - [-93.337709, 73.008811], - [-93.190158, 73.013204], - [-93.019419, 73.019419], - [-92.816144, 73.028435], - [-92.566244, 73.041995], - [-92.247776, 73.063417], - [-91.825948, 73.099478], - [-91.247791, 73.165126], - [-90.45484, 73.294824], - [-89.514412, 73.558208], - [-89, 74] + [-95.022287, 72.999229], + [-96.07391, 72.996848], + [-97.153749, 72.992792], + [-98.26038, 72.987065], + [-99.392018, 72.979764], + [-100.54643, 72.971111], + [-101.720822, 72.9615], + [-102.911668, 72.951565], + [-104.114454, 72.942272], + [-105.323253, 72.935073], + [-106.530005, 72.932154], + [-107.723165, 72.936876], + [-108.884912, 72.954647], + [-109.984472, 72.994911], + [-110.957909, 73.076913], + [-111.609696, 73.256451] ] ] } @@ -253,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-94, 69], - [-93.558208, 69.514412], - [-93.294824, 70.45484], - [-93.165126, 71.247791], - [-93.099478, 71.825948], - [-93.063417, 72.247776], - [-93.041995, 72.566244], - [-93.028435, 72.816144], - [-93.019419, 73.019419], - [-93.013204, 73.190158], - [-93.008811, 73.337709], - [-93.005666, 73.468517], - [-93.003414, 73.587201], - [-93.001835, 73.69721], - [-93.00079, 73.801245], - [-93.000194, 73.901528], - [-93, 74], - [-93.000194, 74.098472], - [-93.00079, 74.198755], - [-93.001835, 74.30279], - [-93.003414, 74.412799], - [-93.005666, 74.531483], - [-93.008811, 74.662291], - [-93.013204, 74.809842], - [-93.019419, 74.980581], - [-93.028435, 75.183856], - [-93.041995, 75.433756], - [-93.063417, 75.752224], - [-93.099478, 76.174052], - [-93.165126, 76.752209], - [-93.294824, 77.54516], - [-93.558208, 78.485588], [-94, 79], - [-94.441792, 78.485588], - [-94.705176, 77.54516], - [-94.834874, 76.752209], - [-94.900522, 76.174052], - [-94.936583, 75.752224], - [-94.958005, 75.433756], - [-94.971565, 75.183856], - [-94.980581, 74.980581], - [-94.986796, 74.809842], - [-94.991189, 74.662291], - [-94.994334, 74.531483], - [-94.996586, 74.412799], - [-94.998165, 74.30279], - [-94.99921, 74.198755], - [-94.999806, 74.098472], - [-95, 74], - [-94.999806, 73.901528], - [-94.99921, 73.801245], - [-94.998165, 73.69721], - [-94.996586, 73.587201], - [-94.994334, 73.468517], - [-94.991189, 73.337709], - [-94.986796, 73.190158], - [-94.980581, 73.019419], - [-94.971565, 72.816144], - [-94.958005, 72.566244], - [-94.936583, 72.247776], - [-94.900522, 71.825948], - [-94.834874, 71.247791], - [-94.705176, 70.45484], - [-94.441792, 69.514412], - [-94, 69] + [-92.829533, 78.868122], + [-92.063446, 78.613133], + [-91.514439, 78.307836], + [-91.1101, 77.976934], + [-90.810522, 77.632522], + [-90.590161, 77.281607], + [-90.431305, 76.928659], + [-90.321068, 76.576722], + [-90.249767, 76.227955], + [-90.209956, 75.883941], + [-90.195813, 75.545863], + [-90.202719, 75.21462], + [-90.226974, 74.890901], + [-90.265581, 74.575235], + [-90.316097, 74.26803], + [-90.376515, 73.969595], + [-90.447416, 73.671357], + [-90.530789, 73.364764], + [-90.627066, 73.050162], + [-90.736781, 72.727995], + [-90.860599, 72.398831], + [-90.999361, 72.063398], + [-91.154149, 71.722628], + [-91.326376, 71.377739], + [-91.517927, 71.030336], + [-91.731383, 70.682588], + [-91.970405, 70.337519], + [-92.240431, 69.999537], + [-92.550102, 69.675491], + [-92.914615, 69.377145], + [-93.365745, 69.128445], + [-94, 69], + [-94.634255, 69.128445], + [-95.085385, 69.377145], + [-95.449898, 69.675491], + [-95.759569, 69.999537], + [-96.029595, 70.337519], + [-96.268617, 70.682588], + [-96.482073, 71.030336], + [-96.673624, 71.377739], + [-96.845851, 71.722628], + [-97.000639, 72.063398], + [-97.139401, 72.398831], + [-97.263219, 72.727995], + [-97.372934, 73.050162], + [-97.469211, 73.364764], + [-97.552584, 73.671357], + [-97.623485, 73.969595], + [-97.683903, 74.26803], + [-97.734419, 74.575235], + [-97.773026, 74.890901], + [-97.797281, 75.21462], + [-97.804187, 75.545863], + [-97.790044, 75.883941], + [-97.750233, 76.227955], + [-97.678932, 76.576722], + [-97.568695, 76.928659], + [-97.409839, 77.281607], + [-97.189478, 77.632522], + [-96.8899, 77.976934], + [-96.485561, 78.307836], + [-95.936554, 78.613133], + [-95.170467, 78.868122], + [-94, 79] ] ] } diff --git a/packages/turf-ellipse/test/out/northern-latitudes.json b/packages/turf-ellipse/test/out/northern-latitudes.json index 451887bfae..135b4e6cd0 100644 --- a/packages/turf-ellipse/test/out/northern-latitudes.json +++ b/packages/turf-ellipse/test/out/northern-latitudes.json @@ -1,78 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -95.63134703033796, 73.91006796362754, -92.36865296966204, 74.08993203637246 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.63134703033796, 73.91006796362754], - [-92.36865296966204, 73.91006796362754], - [-92.36865296966204, 74.08993203637246], - [-95.63134703033796, 74.08993203637246], - [-95.63134703033796, 73.91006796362754] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -94.32626940606758, 73.55033981813773, -93.67373059393242, 74.44966018186227 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-94.32626940606758, 73.55033981813773], - [-93.67373059393242, 73.55033981813773], - [-93.67373059393242, 74.44966018186227], - [-94.32626940606758, 74.44966018186227], - [-94.32626940606758, 73.55033981813773] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -95.63134703033796, 73.55033981813773, -92.36865296966204, 74.44966018186227 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.63134703033796, 73.55033981813773], - [-92.36865296966204, 73.55033981813773], - [-92.36865296966204, 74.44966018186227], - [-95.63134703033796, 74.44966018186227], - [-95.63134703033796, 73.55033981813773] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -242,135 +170,135 @@ "type": "Polygon", "coordinates": [ [ - [-92.368653, 74], - [-92.782084, 74.059832], - [-93.203223, 74.078476], - [-93.431704, 74.084299], - [-93.564304, 74.086665], - [-93.649362, 74.08783], - [-93.708311, 74.088483], - [-93.751588, 74.088883], - [-93.784783, 74.089146], - [-93.811133, 74.089327], - [-93.832637, 74.089458], - [-93.850588, 74.089554], - [-93.865863, 74.089628], - [-93.879074, 74.089685], - [-93.890664, 74.08973], - [-93.900958, 74.089766], - [-93.910204, 74.089796], - [-93.918592, 74.08982], - [-93.92627, 74.08984], - [-93.933358, 74.089857], - [-93.93995, 74.089871], - [-93.946126, 74.089883], - [-93.951951, 74.089893], - [-93.95748, 74.089901], - [-93.962759, 74.089909], - [-93.967828, 74.089915], - [-93.972723, 74.089919], - [-93.977475, 74.089923], - [-93.982112, 74.089927], - [-93.98666, 74.089929], - [-93.991143, 74.089931], - [-93.995582, 74.089932], + [-95.63094, 73.993848], + [-95.618974, 74.005314], + [-95.590643, 74.014501], + [-95.553238, 74.022313], + [-95.510009, 74.029153], + [-95.462755, 74.035244], + [-95.412603, 74.040726], + [-95.360317, 74.045697], + [-95.306446, 74.050225], + [-95.2514, 74.054363], + [-95.195495, 74.058153], + [-95.138982, 74.061628], + [-95.082063, 74.064815], + [-95.024904, 74.067738], + [-94.967645, 74.070417], + [-94.910401, 74.072868], + [-94.853272, 74.075106], + [-94.796343, 74.077145], + [-94.739687, 74.078997], + [-94.683367, 74.080672], + [-94.62744, 74.082181], + [-94.571954, 74.083531], + [-94.516951, 74.084732], + [-94.462469, 74.08579], + [-94.408542, 74.086713], + [-94.3552, 74.087507], + [-94.302467, 74.088179], + [-94.250367, 74.088734], + [-94.198921, 74.089177], + [-94.148146, 74.089514], + [-94.098058, 74.089749], + [-94.048672, 74.089887], [-94, 74.089932], - [-94.004418, 74.089932], - [-94.008857, 74.089931], - [-94.01334, 74.089929], - [-94.017888, 74.089927], - [-94.022525, 74.089923], - [-94.027277, 74.089919], - [-94.032172, 74.089915], - [-94.037241, 74.089909], - [-94.04252, 74.089901], - [-94.048049, 74.089893], - [-94.053874, 74.089883], - [-94.06005, 74.089871], - [-94.066642, 74.089857], - [-94.07373, 74.08984], - [-94.081408, 74.08982], - [-94.089796, 74.089796], - [-94.099042, 74.089766], - [-94.109336, 74.08973], - [-94.120926, 74.089685], - [-94.134137, 74.089628], - [-94.149412, 74.089554], - [-94.167363, 74.089458], - [-94.188867, 74.089327], - [-94.215217, 74.089146], - [-94.248412, 74.088883], - [-94.291689, 74.088483], - [-94.350638, 74.08783], - [-94.435696, 74.086665], - [-94.568296, 74.084299], - [-94.796777, 74.078476], - [-95.217916, 74.059832], - [-95.631347, 74], - [-95.217916, 73.940168], - [-94.796777, 73.921524], - [-94.568296, 73.915701], - [-94.435696, 73.913335], - [-94.350638, 73.91217], - [-94.291689, 73.911517], - [-94.248412, 73.911117], - [-94.215217, 73.910854], - [-94.188867, 73.910673], - [-94.167363, 73.910542], - [-94.149412, 73.910446], - [-94.134137, 73.910372], - [-94.120926, 73.910315], - [-94.109336, 73.91027], - [-94.099042, 73.910234], - [-94.089796, 73.910204], - [-94.081408, 73.91018], - [-94.07373, 73.91016], - [-94.066642, 73.910143], - [-94.06005, 73.910129], - [-94.053874, 73.910117], - [-94.048049, 73.910107], - [-94.04252, 73.910099], - [-94.037241, 73.910091], - [-94.032172, 73.910085], - [-94.027277, 73.910081], - [-94.022525, 73.910077], - [-94.017888, 73.910073], - [-94.01334, 73.910071], - [-94.008857, 73.910069], - [-94.004418, 73.910068], + [-93.951328, 74.089887], + [-93.901942, 74.089749], + [-93.851854, 74.089514], + [-93.801079, 74.089177], + [-93.749633, 74.088734], + [-93.697533, 74.088179], + [-93.6448, 74.087507], + [-93.591458, 74.086713], + [-93.537531, 74.08579], + [-93.483049, 74.084732], + [-93.428046, 74.083531], + [-93.37256, 74.082181], + [-93.316633, 74.080672], + [-93.260313, 74.078997], + [-93.203657, 74.077145], + [-93.146728, 74.075106], + [-93.089599, 74.072868], + [-93.032355, 74.070417], + [-92.975096, 74.067738], + [-92.917937, 74.064815], + [-92.861018, 74.061628], + [-92.804505, 74.058153], + [-92.7486, 74.054363], + [-92.693554, 74.050225], + [-92.639683, 74.045697], + [-92.587397, 74.040726], + [-92.537245, 74.035244], + [-92.489991, 74.029153], + [-92.446762, 74.022313], + [-92.409357, 74.014501], + [-92.381026, 74.005314], + [-92.36906, 73.993848], + [-92.383264, 73.982578], + [-92.41329, 73.973824], + [-92.452023, 73.966565], + [-92.496301, 73.960344], + [-92.544379, 73.954908], + [-92.595167, 73.950095], + [-92.647929, 73.945796], + [-92.702136, 73.941933], + [-92.757398, 73.938445], + [-92.813412, 73.935286], + [-92.86994, 73.932419], + [-92.926792, 73.929814], + [-92.98381, 73.927445], + [-93.040864, 73.925291], + [-93.097847, 73.923334], + [-93.154665, 73.921558], + [-93.21124, 73.91995], + [-93.267504, 73.918497], + [-93.323399, 73.91719], + [-93.378874, 73.916017], + [-93.433884, 73.914972], + [-93.488392, 73.914045], + [-93.542363, 73.913231], + [-93.595766, 73.912523], + [-93.648577, 73.911915], + [-93.70077, 73.911402], + [-93.752327, 73.910979], + [-93.803229, 73.910642], + [-93.853461, 73.910386], + [-93.903008, 73.910207], + [-93.951857, 73.910102], [-94, 73.910068], - [-93.995582, 73.910068], - [-93.991143, 73.910069], - [-93.98666, 73.910071], - [-93.982112, 73.910073], - [-93.977475, 73.910077], - [-93.972723, 73.910081], - [-93.967828, 73.910085], - [-93.962759, 73.910091], - [-93.95748, 73.910099], - [-93.951951, 73.910107], - [-93.946126, 73.910117], - [-93.93995, 73.910129], - [-93.933358, 73.910143], - [-93.92627, 73.91016], - [-93.918592, 73.91018], - [-93.910204, 73.910204], - [-93.900958, 73.910234], - [-93.890664, 73.91027], - [-93.879074, 73.910315], - [-93.865863, 73.910372], - [-93.850588, 73.910446], - [-93.832637, 73.910542], - [-93.811133, 73.910673], - [-93.784783, 73.910854], - [-93.751588, 73.911117], - [-93.708311, 73.911517], - [-93.649362, 73.91217], - [-93.564304, 73.913335], - [-93.431704, 73.915701], - [-93.203223, 73.921524], - [-92.782084, 73.940168], - [-92.368653, 74] + [-94.048143, 73.910102], + [-94.096992, 73.910207], + [-94.146539, 73.910386], + [-94.196771, 73.910642], + [-94.247673, 73.910979], + [-94.29923, 73.911402], + [-94.351423, 73.911915], + [-94.404234, 73.912523], + [-94.457637, 73.913231], + [-94.511608, 73.914045], + [-94.566116, 73.914972], + [-94.621126, 73.916017], + [-94.676601, 73.91719], + [-94.732496, 73.918497], + [-94.78876, 73.91995], + [-94.845335, 73.921558], + [-94.902153, 73.923334], + [-94.959136, 73.925291], + [-95.01619, 73.927445], + [-95.073208, 73.929814], + [-95.13006, 73.932419], + [-95.186588, 73.935286], + [-95.242602, 73.938445], + [-95.297864, 73.941933], + [-95.352071, 73.945796], + [-95.404833, 73.950095], + [-95.455621, 73.954908], + [-95.503699, 73.960344], + [-95.547977, 73.966565], + [-95.58671, 73.973824], + [-95.616736, 73.982578], + [-95.63094, 73.993848] ] ] } @@ -387,135 +315,135 @@ "type": "Polygon", "coordinates": [ [ - [-94, 73.55034], - [-93.785114, 73.664909], - [-93.717175, 73.780904], - [-93.695613, 73.843759], - [-93.686723, 73.880223], - [-93.682287, 73.90361], - [-93.679769, 73.919816], - [-93.678204, 73.931714], - [-93.677163, 73.940839], - [-93.676435, 73.948083], - [-93.675906, 73.953994], - [-93.675507, 73.958929], - [-93.6752, 73.963128], - [-93.674957, 73.966759], - [-93.674762, 73.969945], - [-93.674602, 73.972775], - [-93.67447, 73.975317], - [-93.674359, 73.977622], - [-93.674265, 73.979733], - [-93.674185, 73.981681], - [-93.674115, 73.983493], - [-93.674055, 73.985191], - [-93.674003, 73.986792], - [-93.673957, 73.988312], - [-93.673917, 73.989763], - [-93.673882, 73.991157], - [-93.673851, 73.992502], - [-93.673823, 73.993808], - [-93.673799, 73.995083], - [-93.673778, 73.996333], - [-93.67376, 73.997565], - [-93.673744, 73.998786], - [-93.673731, 74], - [-93.67372, 74.001214], - [-93.673711, 74.002435], - [-93.673705, 74.003667], - [-93.673701, 74.004917], - [-93.6737, 74.006192], - [-93.673702, 74.007498], - [-93.673706, 74.008843], - [-93.673714, 74.010237], - [-93.673725, 74.011688], - [-93.673741, 74.013208], - [-93.673761, 74.014809], - [-93.673788, 74.016507], - [-93.673821, 74.018319], - [-93.673863, 74.020267], - [-93.673915, 74.022378], - [-93.67398, 74.024683], - [-93.674062, 74.027225], - [-93.674166, 74.030055], - [-93.674299, 74.033241], - [-93.67447, 74.036872], - [-93.674695, 74.041071], - [-93.674997, 74.046006], - [-93.675411, 74.051917], - [-93.675999, 74.059161], - [-93.676863, 74.068286], - [-93.678202, 74.080184], - [-93.680418, 74.09639], - [-93.68443, 74.119777], - [-93.692704, 74.156241], - [-93.713378, 74.219096], - [-93.780685, 74.335091], [-94, 74.44966], - [-94.219323, 74.336314], - [-94.286632, 74.220145], - [-94.307304, 74.157045], - [-94.315576, 74.12041], - [-94.319587, 74.096907], - [-94.321802, 74.080617], - [-94.32314, 74.068657], - [-94.324005, 74.059483], - [-94.324591, 74.0522], - [-94.325006, 74.046257], - [-94.325307, 74.041296], - [-94.325532, 74.037074], - [-94.325703, 74.033423], - [-94.325836, 74.030219], - [-94.325939, 74.027374], - [-94.326021, 74.024819], - [-94.326086, 74.0225], - [-94.326138, 74.020378], - [-94.32618, 74.018419], - [-94.326213, 74.016597], - [-94.326239, 74.01489], - [-94.32626, 74.01328], - [-94.326275, 74.011752], - [-94.326287, 74.010293], - [-94.326294, 74.008892], - [-94.326299, 74.007539], - [-94.3263, 74.006226], - [-94.326299, 74.004944], - [-94.326295, 74.003687], - [-94.326289, 74.002448], - [-94.32628, 74.001221], - [-94.326269, 74], - [-94.326256, 73.998779], - [-94.32624, 73.997552], - [-94.326222, 73.996313], - [-94.326201, 73.995056], - [-94.326177, 73.993774], - [-94.326149, 73.992461], - [-94.326118, 73.991108], - [-94.326082, 73.989707], - [-94.326042, 73.988248], - [-94.325996, 73.98672], - [-94.325944, 73.98511], - [-94.325884, 73.983403], - [-94.325814, 73.981581], - [-94.325734, 73.979622], - [-94.32564, 73.9775], - [-94.325529, 73.975181], - [-94.325397, 73.972626], - [-94.325237, 73.969781], - [-94.325041, 73.966577], - [-94.324798, 73.962926], - [-94.32449, 73.958704], - [-94.324092, 73.953743], - [-94.323562, 73.9478], - [-94.322834, 73.940517], - [-94.321793, 73.931343], - [-94.320227, 73.919383], - [-94.317708, 73.903093], - [-94.313271, 73.87959], - [-94.30438, 73.842955], - [-94.282816, 73.779855], - [-94.214878, 73.663686], - [-94, 73.55034] + [-93.95759, 74.446047], + [-93.924163, 74.437989], + [-93.896135, 74.427476], + [-93.871901, 74.415395], + [-93.850567, 74.402234], + [-93.831566, 74.3883], + [-93.814511, 74.373801], + [-93.799121, 74.358884], + [-93.785183, 74.343661], + [-93.772529, 74.328217], + [-93.761024, 74.312619], + [-93.750558, 74.296922], + [-93.741037, 74.281171], + [-93.732384, 74.265401], + [-93.724528, 74.249645], + [-93.717412, 74.233928], + [-93.710983, 74.218274], + [-93.705195, 74.202701], + [-93.700005, 74.187227], + [-93.695378, 74.171865], + [-93.691278, 74.156629], + [-93.687675, 74.141531], + [-93.684541, 74.126578], + [-93.68185, 74.111782], + [-93.679578, 74.097148], + [-93.677703, 74.082684], + [-93.676204, 74.068396], + [-93.675063, 74.054289], + [-93.674262, 74.040367], + [-93.673784, 74.026635], + [-93.673612, 74.013096], + [-93.673734, 73.999754], + [-93.674142, 73.986412], + [-93.674849, 73.972874], + [-93.675868, 73.959145], + [-93.677213, 73.945226], + [-93.678898, 73.931123], + [-93.68094, 73.91684], + [-93.683354, 73.902383], + [-93.686158, 73.887756], + [-93.689373, 73.872968], + [-93.693018, 73.858026], + [-93.697116, 73.842938], + [-93.701692, 73.827715], + [-93.706773, 73.812367], + [-93.712388, 73.796907], + [-93.718569, 73.78135], + [-93.725353, 73.765713], + [-93.73278, 73.750015], + [-93.740897, 73.734278], + [-93.749757, 73.71853], + [-93.759418, 73.7028], + [-93.769952, 73.687126], + [-93.781443, 73.671553], + [-93.793988, 73.656134], + [-93.807712, 73.640937], + [-93.822766, 73.626047], + [-93.839345, 73.611574], + [-93.85771, 73.597668], + [-93.878219, 73.584533], + [-93.901403, 73.572476], + [-93.928101, 73.561986], + [-93.959832, 73.553946], + [-94, 73.55034], + [-94.040168, 73.553946], + [-94.071899, 73.561986], + [-94.098597, 73.572476], + [-94.121781, 73.584533], + [-94.14229, 73.597668], + [-94.160655, 73.611574], + [-94.177234, 73.626047], + [-94.192288, 73.640937], + [-94.206012, 73.656134], + [-94.218557, 73.671553], + [-94.230048, 73.687126], + [-94.240582, 73.7028], + [-94.250243, 73.71853], + [-94.259103, 73.734278], + [-94.26722, 73.750015], + [-94.274647, 73.765713], + [-94.281431, 73.78135], + [-94.287612, 73.796907], + [-94.293227, 73.812367], + [-94.298308, 73.827715], + [-94.302884, 73.842938], + [-94.306982, 73.858026], + [-94.310627, 73.872968], + [-94.313842, 73.887756], + [-94.316646, 73.902383], + [-94.31906, 73.91684], + [-94.321102, 73.931123], + [-94.322787, 73.945226], + [-94.324132, 73.959145], + [-94.325151, 73.972874], + [-94.325858, 73.986412], + [-94.326266, 73.999754], + [-94.326388, 74.013096], + [-94.326216, 74.026635], + [-94.325738, 74.040367], + [-94.324937, 74.054289], + [-94.323796, 74.068396], + [-94.322297, 74.082684], + [-94.320422, 74.097148], + [-94.31815, 74.111782], + [-94.315459, 74.126578], + [-94.312325, 74.141531], + [-94.308722, 74.156629], + [-94.304622, 74.171865], + [-94.299995, 74.187227], + [-94.294805, 74.202701], + [-94.289017, 74.218274], + [-94.282588, 74.233928], + [-94.275472, 74.249645], + [-94.267616, 74.265401], + [-94.258963, 74.281171], + [-94.249442, 74.296922], + [-94.238976, 74.312619], + [-94.227471, 74.328217], + [-94.214817, 74.343661], + [-94.200879, 74.358884], + [-94.185489, 74.373801], + [-94.168434, 74.3883], + [-94.149433, 74.402234], + [-94.128099, 74.415395], + [-94.103865, 74.427476], + [-94.075837, 74.437989], + [-94.04241, 74.446047], + [-94, 74.44966] ] ] } diff --git a/packages/turf-ellipse/test/out/rotation-degrees.json b/packages/turf-ellipse/test/out/rotation-degrees.json index 1a5e7432a6..f8e32d8464 100644 --- a/packages/turf-ellipse/test/out/rotation-degrees.json +++ b/packages/turf-ellipse/test/out/rotation-degrees.json @@ -1,85 +1,13 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -74.11421824800942, 40.71315533047033, -73.8809366917385, 40.748510669529665 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.11421824800942, 40.71315533047033], - [-73.8809366917385, 40.71315533047033], - [-73.8809366917385, 40.748510669529665], - [-74.11421824800942, 40.748510669529665], - [-74.11421824800942, 40.71315533047033] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.02083123236167, 40.64244465235168, -73.97417496521712, 40.819221347648316 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.02083123236167, 40.64244465235168], - [-73.97417496521712, 40.64244465235168], - [-73.97417496521712, 40.819221347648316], - [-74.02083123236167, 40.819221347648316], - [-74.02083123236167, 40.64244465235168] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.11421824800942, 40.64244465235168, -73.8809366917385, 40.819221347648316 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.11421824800942, 40.64244465235168], - [-73.8809366917385, 40.64244465235168], - [-73.8809366917385, 40.819221347648316], - [-74.11421824800942, 40.819221347648316], - [-74.11421824800942, 40.64244465235168] - ] - ] - } - }, { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 0.125, "ySemiAxis": 0.025, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", @@ -179,71 +107,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.909112, 40.642445], - [-73.910395, 40.659348], - [-73.922364, 40.680629], - [-73.934089, 40.696939], - [-73.943149, 40.70832], - [-73.949968, 40.716414], - [-73.955219, 40.722423], - [-73.959397, 40.72708], - [-73.962831, 40.730833], - [-73.96574, 40.733961], - [-73.96827, 40.736647], - [-73.970527, 40.739015], - [-73.972585, 40.741153], - [-73.974502, 40.743126], - [-73.976323, 40.744983], - [-73.978085, 40.746766], - [-73.979822, 40.748511], - [-73.981567, 40.750248], - [-73.98335, 40.75201], - [-73.985207, 40.753831], - [-73.98718, 40.755748], - [-73.989318, 40.757806], - [-73.991686, 40.760063], - [-73.994372, 40.762593], - [-73.9975, 40.765502], - [-74.001253, 40.768936], - [-74.00591, 40.773114], - [-74.011919, 40.778365], - [-74.020013, 40.785184], - [-74.031394, 40.794244], - [-74.047704, 40.805969], - [-74.068985, 40.817938], - [-74.085888, 40.819221], - [-74.084605, 40.802318], - [-74.072636, 40.781037], - [-74.060911, 40.764727], - [-74.051851, 40.753346], - [-74.045032, 40.745252], - [-74.039781, 40.739243], - [-74.035603, 40.734586], - [-74.032169, 40.730833], - [-74.02926, 40.727705], - [-74.02673, 40.725019], - [-74.024473, 40.722651], - [-74.022415, 40.720513], - [-74.020498, 40.71854], - [-74.018677, 40.716683], - [-74.016915, 40.7149], - [-74.015178, 40.713155], - [-74.013433, 40.711418], - [-74.01165, 40.709656], - [-74.009793, 40.707835], - [-74.00782, 40.705918], - [-74.005682, 40.70386], - [-74.003314, 40.701603], - [-74.000628, 40.699073], - [-73.9975, 40.696164], - [-73.993747, 40.69273], - [-73.98909, 40.688552], - [-73.983081, 40.683301], - [-73.974987, 40.676482], - [-73.963606, 40.667422], - [-73.947296, 40.655697], - [-73.926015, 40.643728], - [-73.909112, 40.642445] + [-74.140489, 40.793245], + [-74.133053, 40.796531], + [-74.123293, 40.796793], + [-74.11268, 40.795669], + [-74.10171, 40.79372], + [-74.090624, 40.791225], + [-74.079564, 40.788347], + [-74.068615, 40.785194], + [-74.057839, 40.781842], + [-74.047275, 40.778345], + [-74.036954, 40.774747], + [-74.026898, 40.771079], + [-74.017122, 40.767369], + [-74.007637, 40.763638], + [-73.998451, 40.759903], + [-73.989571, 40.756181], + [-73.980999, 40.752482], + [-73.972487, 40.748706], + [-73.963795, 40.744739], + [-73.954937, 40.740579], + [-73.945934, 40.73622], + [-73.93681, 40.731661], + [-73.927596, 40.726897], + [-73.91833, 40.721925], + [-73.909059, 40.716744], + [-73.899849, 40.711352], + [-73.890781, 40.705747], + [-73.881973, 40.699932], + [-73.87359, 40.69391], + [-73.865889, 40.687691], + [-73.859309, 40.681293], + [-73.854737, 40.674764], + [-73.854779, 40.668245], + [-73.862215, 40.664976], + [-73.871956, 40.664737], + [-73.882545, 40.665883], + [-73.893487, 40.667852], + [-73.904545, 40.670366], + [-73.915578, 40.673261], + [-73.926501, 40.676428], + [-73.937254, 40.679793], + [-73.947796, 40.683299], + [-73.958098, 40.686906], + [-73.968137, 40.69058], + [-73.9779, 40.694294], + [-73.987373, 40.698027], + [-73.99655, 40.701763], + [-74.005423, 40.705485], + [-74.01399, 40.709181], + [-74.022499, 40.712955], + [-74.031191, 40.716917], + [-74.040051, 40.721072], + [-74.049058, 40.725423], + [-74.058188, 40.729973], + [-74.067412, 40.734727], + [-74.076692, 40.739687], + [-74.085978, 40.744854], + [-74.095208, 40.750232], + [-74.104299, 40.755821], + [-74.113135, 40.761619], + [-74.121548, 40.767623], + [-74.129281, 40.773826], + [-74.135896, 40.780208], + [-74.140503, 40.786726], + [-74.140489, 40.793245] ] ] } @@ -260,71 +188,71 @@ "type": "Polygon", "coordinates": [ [ - [-74.085888, 40.642445], - [-74.068985, 40.643728], - [-74.047704, 40.655697], - [-74.031394, 40.667422], - [-74.020013, 40.676482], - [-74.011919, 40.683301], - [-74.00591, 40.688552], - [-74.001253, 40.69273], - [-73.9975, 40.696164], - [-73.994372, 40.699073], - [-73.991686, 40.701603], - [-73.989318, 40.70386], - [-73.98718, 40.705918], - [-73.985207, 40.707835], - [-73.98335, 40.709656], - [-73.981567, 40.711418], - [-73.979822, 40.713155], - [-73.978085, 40.7149], - [-73.976323, 40.716683], - [-73.974502, 40.71854], - [-73.972585, 40.720513], - [-73.970527, 40.722651], - [-73.96827, 40.725019], - [-73.96574, 40.727705], - [-73.962831, 40.730833], - [-73.959397, 40.734586], - [-73.955219, 40.739243], - [-73.949968, 40.745252], - [-73.943149, 40.753346], - [-73.934089, 40.764727], - [-73.922364, 40.781037], - [-73.910395, 40.802318], - [-73.909112, 40.819221], - [-73.926015, 40.817938], - [-73.947296, 40.805969], - [-73.963606, 40.794244], - [-73.974987, 40.785184], - [-73.983081, 40.778365], - [-73.98909, 40.773114], - [-73.993747, 40.768936], - [-73.9975, 40.765502], - [-74.000628, 40.762593], - [-74.003314, 40.760063], - [-74.005682, 40.757806], - [-74.00782, 40.755748], - [-74.009793, 40.753831], - [-74.01165, 40.75201], - [-74.013433, 40.750248], - [-74.015178, 40.748511], - [-74.016915, 40.746766], - [-74.018677, 40.744983], - [-74.020498, 40.743126], - [-74.022415, 40.741153], - [-74.024473, 40.739015], - [-74.02673, 40.736647], - [-74.02926, 40.733961], - [-74.032169, 40.730833], - [-74.035603, 40.72708], - [-74.039781, 40.722423], - [-74.045032, 40.716414], - [-74.051851, 40.70832], - [-74.060911, 40.696939], - [-74.072636, 40.680629], - [-74.084605, 40.659348], - [-74.085888, 40.642445] + [-73.914888, 40.839057], + [-73.910563, 40.833419], + [-73.910242, 40.82603], + [-73.911752, 40.817997], + [-73.914351, 40.809697], + [-73.917671, 40.80131], + [-73.921493, 40.792941], + [-73.925676, 40.784657], + [-73.93012, 40.776502], + [-73.934751, 40.768508], + [-73.939515, 40.760697], + [-73.944367, 40.753085], + [-73.949273, 40.745684], + [-73.954204, 40.738503], + [-73.959137, 40.731547], + [-73.964053, 40.724822], + [-73.968934, 40.718329], + [-73.973917, 40.711882], + [-73.979149, 40.705295], + [-73.984635, 40.698583], + [-73.99038, 40.69176], + [-73.996387, 40.684844], + [-74.002662, 40.677858], + [-74.009209, 40.67083], + [-74.016029, 40.663799], + [-74.023126, 40.65681], + [-74.0305, 40.649928], + [-74.038149, 40.643241], + [-74.046069, 40.636874], + [-74.054249, 40.631022], + [-74.062663, 40.626018], + [-74.071255, 40.622535], + [-74.079844, 40.622551], + [-74.084169, 40.628182], + [-74.084508, 40.635571], + [-74.083023, 40.643605], + [-74.080452, 40.65191], + [-74.07716, 40.660302], + [-74.073365, 40.668675], + [-74.069208, 40.676965], + [-74.064788, 40.685125], + [-74.060178, 40.693124], + [-74.055433, 40.70094], + [-74.050597, 40.708557], + [-74.045705, 40.715962], + [-74.040786, 40.723147], + [-74.035862, 40.730106], + [-74.030953, 40.736834], + [-74.026076, 40.743329], + [-74.021096, 40.74978], + [-74.015865, 40.756368], + [-74.010377, 40.763081], + [-74.004629, 40.769906], + [-73.998614, 40.776822], + [-73.992329, 40.783808], + [-73.98577, 40.790834], + [-73.978934, 40.797865], + [-73.971817, 40.80485], + [-73.96442, 40.811729], + [-73.956744, 40.818411], + [-73.948793, 40.824772], + [-73.940581, 40.830616], + [-73.932131, 40.835611], + [-73.923504, 40.839084], + [-73.914888, 40.839057] ] ] } diff --git a/packages/turf-ellipse/test/out/rotation.json b/packages/turf-ellipse/test/out/rotation.json index 66fc3f2051..96502ca989 100644 --- a/packages/turf-ellipse/test/out/rotation.json +++ b/packages/turf-ellipse/test/out/rotation.json @@ -1,84 +1,12 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -74.03946895975423, 40.724473844723505, -73.95555109008865, 40.73719215527649 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.03946895975423, 40.724473844723505], - [-73.95555109008865, 40.724473844723505], - [-73.95555109008865, 40.73719215527649], - [-74.03946895975423, 40.73719215527649], - [-74.03946895975423, 40.724473844723505] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.00589218693665, 40.69903722361756, -73.98910861505686, 40.76262877638244 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.00589218693665, 40.69903722361756], - [-73.98910861505686, 40.69903722361756], - [-73.98910861505686, 40.76262877638244], - [-74.00589218693665, 40.76262877638244], - [-74.00589218693665, 40.69903722361756] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.03946895975423, 40.69903722361756, -73.95555109008865, 40.76262877638244 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.03946895975423, 40.69903722361756], - [-73.95555109008865, 40.69903722361756], - [-73.95555109008865, 40.76262877638244], - [-74.03946895975423, 40.76262877638244], - [-74.03946895975423, 40.69903722361756] - ] - ] - } - }, { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1, - "angle": 45 + "angle": 30 }, "geometry": { "type": "Point", @@ -178,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.955551, 40.699037], - [-73.957753, 40.707639], - [-73.9654, 40.716622], - [-73.971243, 40.722312], - [-73.975203, 40.72588], - [-73.977982, 40.728278], - [-73.980035, 40.730002], - [-73.981628, 40.731313], - [-73.982916, 40.732356], - [-73.983994, 40.733219], - [-73.984923, 40.733957], - [-73.985748, 40.734604], - [-73.986496, 40.735188], - [-73.98719, 40.735725], - [-73.987847, 40.736231], - [-73.988483, 40.736717], - [-73.989108, 40.737192], - [-73.989735, 40.737666], - [-73.990376, 40.738147], - [-73.991044, 40.738646], - [-73.991753, 40.739172], - [-73.992523, 40.739739], - [-73.993378, 40.740363], - [-73.994351, 40.741068], - [-73.99549, 40.741884], - [-73.996867, 40.74286], - [-73.998597, 40.744067], - [-74.000872, 40.745624], - [-74.004037, 40.74773], - [-74.008747, 40.750732], - [-74.016256, 40.75516], - [-74.028115, 40.760958], - [-74.039469, 40.762629], - [-74.037263, 40.754029], - [-74.029609, 40.745046], - [-74.023763, 40.739356], - [-74.0198, 40.735787], - [-74.017021, 40.733389], - [-74.014966, 40.731665], - [-74.013373, 40.730354], - [-74.012085, 40.72931], - [-74.011007, 40.728447], - [-74.010077, 40.72771], - [-74.009252, 40.727062], - [-74.008504, 40.726479], - [-74.00781, 40.725941], - [-74.007152, 40.725435], - [-74.006517, 40.724949], - [-74.005891, 40.724474], - [-74.005264, 40.724], - [-74.004623, 40.723519], - [-74.003955, 40.72302], - [-74.003246, 40.722494], - [-74.002476, 40.721927], - [-74.001621, 40.721303], - [-74.000648, 40.720598], - [-73.999509, 40.719781], - [-73.998132, 40.718805], - [-73.996402, 40.717598], - [-73.994127, 40.716041], - [-73.990963, 40.713935], - [-73.986254, 40.710933], - [-73.978748, 40.706504], - [-73.966896, 40.700706], - [-73.955551, 40.699037] + [-74.048906, 40.753305], + [-74.046231, 40.754485], + [-74.042723, 40.754576], + [-74.038908, 40.754169], + [-74.034964, 40.753466], + [-74.03098, 40.752566], + [-74.027004, 40.751529], + [-74.023069, 40.750393], + [-74.019195, 40.749186], + [-74.015397, 40.747927], + [-74.011687, 40.746631], + [-74.008071, 40.745311], + [-74.004556, 40.743976], + [-74.001145, 40.742634], + [-73.997842, 40.74129], + [-73.994648, 40.739951], + [-73.991565, 40.738621], + [-73.988504, 40.737263], + [-73.985377, 40.735837], + [-73.98219, 40.734341], + [-73.978951, 40.732774], + [-73.975668, 40.731134], + [-73.972353, 40.729422], + [-73.969018, 40.727635], + [-73.965681, 40.725773], + [-73.962365, 40.723834], + [-73.959101, 40.72182], + [-73.955929, 40.71973], + [-73.95291, 40.717566], + [-73.950136, 40.715331], + [-73.947765, 40.713031], + [-73.946117, 40.710684], + [-73.946128, 40.708339], + [-73.948803, 40.707161], + [-73.95231, 40.707072], + [-73.956122, 40.707482], + [-73.960061, 40.708188], + [-73.964042, 40.70909], + [-73.968014, 40.710129], + [-73.971946, 40.711267], + [-73.975817, 40.712476], + [-73.979612, 40.713736], + [-73.98332, 40.715033], + [-73.986933, 40.716354], + [-73.990447, 40.717689], + [-73.993856, 40.719032], + [-73.997158, 40.720376], + [-74.000351, 40.721715], + [-74.003433, 40.723045], + [-74.006494, 40.724402], + [-74.009621, 40.725828], + [-74.012808, 40.727323], + [-74.016048, 40.728889], + [-74.019331, 40.730527], + [-74.022648, 40.732239], + [-74.025985, 40.734024], + [-74.029324, 40.735885], + [-74.032642, 40.737821], + [-74.035909, 40.739833], + [-74.039085, 40.741921], + [-74.042108, 40.744083], + [-74.044886, 40.746316], + [-74.047261, 40.748613], + [-74.048915, 40.75096], + [-74.048906, 40.753305] ] ] } @@ -259,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-74.039449, 40.699037], - [-74.028101, 40.700708], - [-74.01625, 40.706506], - [-74.008743, 40.710934], - [-74.004035, 40.713936], - [-74.000871, 40.716042], - [-73.998597, 40.717599], - [-73.996867, 40.718806], - [-73.99549, 40.719782], - [-73.994351, 40.720598], - [-73.993378, 40.721303], - [-73.992524, 40.721927], - [-73.991754, 40.722494], - [-73.991044, 40.72302], - [-73.990377, 40.723519], - [-73.989736, 40.724], - [-73.989109, 40.724474], - [-73.988483, 40.724949], - [-73.987848, 40.725435], - [-73.987191, 40.725941], - [-73.986496, 40.726478], - [-73.985748, 40.727062], - [-73.984924, 40.727709], - [-73.983994, 40.728447], - [-73.982916, 40.72931], - [-73.981629, 40.730353], - [-73.980035, 40.731664], - [-73.977981, 40.733388], - [-73.975202, 40.735786], - [-73.971239, 40.739354], - [-73.965394, 40.745044], - [-73.957739, 40.754027], - [-73.955531, 40.762629], - [-73.966882, 40.76096], - [-73.978741, 40.755162], - [-73.986251, 40.750733], - [-73.990961, 40.747731], - [-73.994126, 40.745625], - [-73.996402, 40.744068], - [-73.998132, 40.742861], - [-73.999509, 40.741885], - [-74.000649, 40.741068], - [-74.001622, 40.740363], - [-74.002477, 40.739739], - [-74.003247, 40.739172], - [-74.003956, 40.738646], - [-74.004624, 40.738147], - [-74.005265, 40.737666], - [-74.005892, 40.737192], - [-74.006518, 40.736717], - [-74.007153, 40.736231], - [-74.00781, 40.735725], - [-74.008505, 40.735187], - [-74.009253, 40.734604], - [-74.010077, 40.733956], - [-74.011007, 40.733219], - [-74.012085, 40.732356], - [-74.013373, 40.731312], - [-74.014966, 40.730001], - [-74.01702, 40.728277], - [-74.019798, 40.725879], - [-74.02376, 40.72231], - [-74.029602, 40.71662], - [-74.037249, 40.707637], - [-74.039449, 40.699037] + [-73.967813, 40.769771], + [-73.966257, 40.767744], + [-73.96614, 40.765085], + [-73.96668, 40.762196], + [-73.967612, 40.759209], + [-73.968803, 40.756192], + [-73.970174, 40.753181], + [-73.971676, 40.7502], + [-73.973272, 40.747266], + [-73.974936, 40.74439], + [-73.976647, 40.741579], + [-73.978391, 40.73884], + [-73.980154, 40.736178], + [-73.981926, 40.733594], + [-73.9837, 40.731091], + [-73.985467, 40.728672], + [-73.987223, 40.726336], + [-73.989015, 40.724016], + [-73.990897, 40.721647], + [-73.992871, 40.719232], + [-73.994938, 40.716777], + [-73.9971, 40.714289], + [-73.999358, 40.711776], + [-74.001714, 40.709248], + [-74.00417, 40.706719], + [-74.006725, 40.704205], + [-74.00938, 40.70173], + [-74.012135, 40.699325], + [-74.014987, 40.697036], + [-74.017934, 40.694931], + [-74.020965, 40.693132], + [-74.024059, 40.691881], + [-74.027152, 40.691887], + [-74.028708, 40.693914], + [-74.028828, 40.696572], + [-74.028291, 40.699462], + [-74.027363, 40.702449], + [-74.026176, 40.705467], + [-74.024807, 40.708479], + [-74.023309, 40.71146], + [-74.021716, 40.714395], + [-74.020055, 40.717272], + [-74.018346, 40.720083], + [-74.016605, 40.722822], + [-74.014843, 40.725486], + [-74.013072, 40.72807], + [-74.0113, 40.730573], + [-74.009533, 40.732993], + [-74.007778, 40.735329], + [-74.005987, 40.737649], + [-74.004105, 40.740019], + [-74.002131, 40.742434], + [-74.000063, 40.744889], + [-73.997901, 40.747377], + [-73.995641, 40.74989], + [-73.993283, 40.752417], + [-73.990825, 40.754946], + [-73.988268, 40.75746], + [-73.98561, 40.759934], + [-73.982851, 40.762339], + [-73.979995, 40.764628], + [-73.977044, 40.766731], + [-73.974009, 40.768529], + [-73.970909, 40.769779], + [-73.967813, 40.769771] ] ] } diff --git a/packages/turf-ellipse/test/out/simple-degrees.json b/packages/turf-ellipse/test/out/simple-degrees.json index 56edf01da7..1fc0881a2a 100644 --- a/packages/turf-ellipse/test/out/simple-degrees.json +++ b/packages/turf-ellipse/test/out/simple-degrees.json @@ -1,72 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [-80.59569231663727, 39.730833, -67.39930768336274, 41.730833], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-80.59569231663727, 39.730833], - [-67.39930768336274, 39.730833], - [-67.39930768336274, 41.730833], - [-80.59569231663727, 41.730833], - [-80.59569231663727, 39.730833] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-75.31713846332747, 35.730833, -72.67786153667254, 45.730833], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.31713846332747, 35.730833], - [-72.67786153667254, 35.730833], - [-72.67786153667254, 45.730833], - [-75.31713846332747, 45.730833], - [-75.31713846332747, 35.730833] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-80.59569231663727, 35.730833, -67.39930768336274, 45.730833], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-80.59569231663727, 35.730833], - [-67.39930768336274, 35.730833], - [-67.39930768336274, 45.730833], - [-80.59569231663727, 45.730833], - [-80.59569231663727, 35.730833] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -172,71 +106,71 @@ "type": "Polygon", "coordinates": [ [ - [-68.9975, 40.730833], - [-69.511912, 41.172625], - [-70.45234, 41.436009], - [-71.245291, 41.565707], - [-71.823448, 41.631355], - [-72.245276, 41.667416], - [-72.563744, 41.688838], - [-72.813644, 41.702398], - [-73.016919, 41.711414], - [-73.187658, 41.717629], - [-73.335209, 41.722022], - [-73.466017, 41.725167], - [-73.584701, 41.727419], - [-73.69471, 41.728998], - [-73.798745, 41.730043], - [-73.899028, 41.730639], + [-80.583334, 40.543359], + [-80.434982, 40.778295], + [-80.118789, 40.952109], + [-79.731663, 41.0934], + [-79.306767, 41.211904], + [-78.860567, 41.312527], + [-78.402775, 41.398261], + [-77.939728, 41.471161], + [-77.475834, 41.532755], + [-77.014306, 41.584252], + [-76.557557, 41.626646], + [-76.10744, 41.660784], + [-75.6654, 41.687402], + [-75.232575, 41.707154], + [-74.809867, 41.720628], + [-74.397988, 41.728358], [-73.9975, 41.730833], - [-74.095972, 41.730639], - [-74.196255, 41.730043], - [-74.30029, 41.728998], - [-74.410299, 41.727419], - [-74.528983, 41.725167], - [-74.659791, 41.722022], - [-74.807342, 41.717629], - [-74.978081, 41.711414], - [-75.181356, 41.702398], - [-75.431256, 41.688838], - [-75.749724, 41.667416], - [-76.171552, 41.631355], - [-76.749709, 41.565707], - [-77.54266, 41.436009], - [-78.483088, 41.172625], - [-78.9975, 40.730833], - [-78.483088, 40.289041], - [-77.54266, 40.025657], - [-76.749709, 39.895959], - [-76.171552, 39.830311], - [-75.749724, 39.79425], - [-75.431256, 39.772828], - [-75.181356, 39.759268], - [-74.978081, 39.750252], - [-74.807342, 39.744037], - [-74.659791, 39.739644], - [-74.528983, 39.736499], - [-74.410299, 39.734247], - [-74.30029, 39.732668], - [-74.196255, 39.731623], - [-74.095972, 39.731027], + [-73.597012, 41.728358], + [-73.185133, 41.720628], + [-72.762425, 41.707154], + [-72.3296, 41.687402], + [-71.88756, 41.660784], + [-71.437443, 41.626646], + [-70.980694, 41.584252], + [-70.519166, 41.532755], + [-70.055272, 41.471161], + [-69.592225, 41.398261], + [-69.134433, 41.312527], + [-68.688233, 41.211904], + [-68.263337, 41.0934], + [-67.876211, 40.952109], + [-67.560018, 40.778295], + [-67.411666, 40.543359], + [-67.603386, 40.327569], + [-67.945847, 40.189403], + [-68.349157, 40.088399], + [-68.783101, 40.010585], + [-69.232966, 39.948999], + [-69.690255, 39.899533], + [-70.149548, 39.859515], + [-70.607154, 39.827093], + [-71.060448, 39.800922], + [-71.507502, 39.779994], + [-71.946867, 39.763537], + [-72.377441, 39.750943], + [-72.798375, 39.74173], + [-73.209014, 39.73551], + [-73.608852, 39.731964], [-73.9975, 39.730833], - [-73.899028, 39.731027], - [-73.798745, 39.731623], - [-73.69471, 39.732668], - [-73.584701, 39.734247], - [-73.466017, 39.736499], - [-73.335209, 39.739644], - [-73.187658, 39.744037], - [-73.016919, 39.750252], - [-72.813644, 39.759268], - [-72.563744, 39.772828], - [-72.245276, 39.79425], - [-71.823448, 39.830311], - [-71.245291, 39.895959], - [-70.45234, 40.025657], - [-69.511912, 40.289041], - [-68.9975, 40.730833] + [-74.386148, 39.731964], + [-74.785986, 39.73551], + [-75.196625, 39.74173], + [-75.617559, 39.750943], + [-76.048133, 39.763537], + [-76.487498, 39.779994], + [-76.934552, 39.800922], + [-77.387846, 39.827093], + [-77.845452, 39.859515], + [-78.304745, 39.899533], + [-78.762034, 39.948999], + [-79.211899, 40.010585], + [-79.645843, 40.088399], + [-80.049153, 40.189403], + [-80.391614, 40.327569], + [-80.583334, 40.543359] ] ] } @@ -253,71 +187,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.9975, 35.730833], - [-73.555708, 36.245245], - [-73.292324, 37.185673], - [-73.162626, 37.978624], - [-73.096978, 38.556781], - [-73.060917, 38.978609], - [-73.039495, 39.297077], - [-73.025935, 39.546977], - [-73.016919, 39.750252], - [-73.010704, 39.920991], - [-73.006311, 40.068542], - [-73.003166, 40.19935], - [-73.000914, 40.318034], - [-72.999335, 40.428043], - [-72.99829, 40.532078], - [-72.997694, 40.632361], - [-72.9975, 40.730833], - [-72.997694, 40.829305], - [-72.99829, 40.929588], - [-72.999335, 41.033623], - [-73.000914, 41.143632], - [-73.003166, 41.262316], - [-73.006311, 41.393124], - [-73.010704, 41.540675], - [-73.016919, 41.711414], - [-73.025935, 41.914689], - [-73.039495, 42.164589], - [-73.060917, 42.483057], - [-73.096978, 42.904885], - [-73.162626, 43.483042], - [-73.292324, 44.275993], - [-73.555708, 45.216421], [-73.9975, 45.730833], - [-74.439292, 45.216421], - [-74.702676, 44.275993], - [-74.832374, 43.483042], - [-74.898022, 42.904885], - [-74.934083, 42.483057], - [-74.955505, 42.164589], - [-74.969065, 41.914689], - [-74.978081, 41.711414], - [-74.984296, 41.540675], - [-74.988689, 41.393124], - [-74.991834, 41.262316], - [-74.994086, 41.143632], - [-74.995665, 41.033623], - [-74.99671, 40.929588], - [-74.997306, 40.829305], - [-74.9975, 40.730833], - [-74.997306, 40.632361], - [-74.99671, 40.532078], - [-74.995665, 40.428043], - [-74.994086, 40.318034], - [-74.991834, 40.19935], - [-74.988689, 40.068542], - [-74.984296, 39.920991], - [-74.978081, 39.750252], - [-74.969065, 39.546977], - [-74.955505, 39.297077], - [-74.934083, 38.978609], - [-74.898022, 38.556781], - [-74.832374, 37.978624], - [-74.702676, 37.185673], - [-74.439292, 36.245245], - [-73.9975, 35.730833] + [-73.674533, 45.600765], + [-73.453563, 45.349008], + [-73.284769, 45.04715], + [-73.150635, 44.719483], + [-73.042184, 44.377943], + [-72.953933, 44.029476], + [-72.882164, 43.678549], + [-72.824183, 43.328221], + [-72.777941, 42.980686], + [-72.741824, 42.637559], + [-72.714527, 42.300063], + [-72.694972, 41.969133], + [-72.682254, 41.645492], + [-72.675606, 41.329702], + [-72.674366, 41.022199], + [-72.677961, 40.723319], + [-72.686198, 40.424493], + [-72.699476, 40.117156], + [-72.718202, 39.801652], + [-72.742835, 39.478429], + [-72.773905, 39.148055], + [-72.812033, 38.81126], + [-72.857956, 38.468986], + [-72.912575, 38.122458], + [-72.977017, 37.773294], + [-73.052734, 37.423681], + [-73.141681, 37.076667], + [-73.246627, 36.736695], + [-73.371792, 36.410667], + [-73.524324, 36.110436], + [-73.718686, 35.860124], + [-73.9975, 35.730833], + [-74.276314, 35.860124], + [-74.470676, 36.110436], + [-74.623208, 36.410667], + [-74.748373, 36.736695], + [-74.853319, 37.076667], + [-74.942266, 37.423681], + [-75.017983, 37.773294], + [-75.082425, 38.122458], + [-75.137044, 38.468986], + [-75.182967, 38.81126], + [-75.221095, 39.148055], + [-75.252165, 39.478429], + [-75.276798, 39.801652], + [-75.295524, 40.117156], + [-75.308802, 40.424493], + [-75.317039, 40.723319], + [-75.320634, 41.022199], + [-75.319394, 41.329702], + [-75.312746, 41.645492], + [-75.300028, 41.969133], + [-75.280473, 42.300063], + [-75.253176, 42.637559], + [-75.217059, 42.980686], + [-75.170817, 43.328221], + [-75.112836, 43.678549], + [-75.041067, 44.029476], + [-74.952816, 44.377943], + [-74.844365, 44.719483], + [-74.710231, 45.04715], + [-74.541437, 45.349008], + [-74.320467, 45.600765], + [-73.9975, 45.730833] ] ] } diff --git a/packages/turf-ellipse/test/out/simple.json b/packages/turf-ellipse/test/out/simple.json index 5f440dcd44..0f743d136c 100644 --- a/packages/turf-ellipse/test/out/simple.json +++ b/packages/turf-ellipse/test/out/simple.json @@ -1,78 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "bbox": [ - -74.05683888714123, 40.72183979636275, -73.93816111285878, 40.73982620363724 - ], - "properties": { - "stroke-width": 6, - "stroke": "#FFF", - "fill": "#FFF", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.05683888714123, 40.72183979636275], - [-73.93816111285878, 40.72183979636275], - [-73.93816111285878, 40.73982620363724], - [-74.05683888714123, 40.73982620363724], - [-74.05683888714123, 40.72183979636275] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.00936777742822, 40.68586698181377, -73.98563222257178, 40.77579901818623 - ], - "properties": { - "stroke-width": 6, - "stroke": "#666", - "fill": "#666", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.00936777742822, 40.68586698181377], - [-73.98563222257178, 40.68586698181377], - [-73.98563222257178, 40.77579901818623], - [-74.00936777742822, 40.77579901818623], - [-74.00936777742822, 40.68586698181377] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -74.05683888714123, 40.68586698181377, -73.93816111285878, 40.77579901818623 - ], - "properties": { - "stroke-width": 6, - "stroke": "#000", - "fill": "#000", - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.05683888714123, 40.68586698181377], - [-73.93816111285878, 40.68586698181377], - [-73.93816111285878, 40.77579901818623], - [-74.05683888714123, 40.77579901818623], - [-74.05683888714123, 40.68586698181377] - ] - ] - } - }, { "type": "Feature", "properties": { @@ -177,71 +105,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.938161, 40.730833], - [-73.947745, 40.735733], - [-73.961537, 40.737986], - [-73.970979, 40.738878], - [-73.97711, 40.739279], - [-73.981313, 40.739485], - [-73.984374, 40.739603], - [-73.986724, 40.739677], - [-73.988608, 40.739725], - [-73.990176, 40.739757], - [-73.991522, 40.73978], - [-73.992709, 40.739797], - [-73.993782, 40.739809], - [-73.994775, 40.739817], - [-73.995712, 40.739822], - [-73.996614, 40.739825], + [-74.056839, 40.730818], + [-74.055302, 40.732853], + [-74.052325, 40.734262], + [-74.048754, 40.735355], + [-74.044876, 40.736239], + [-74.040832, 40.73697], + [-74.036706, 40.737578], + [-74.032549, 40.738085], + [-74.028398, 40.738507], + [-74.024279, 40.738856], + [-74.020211, 40.739139], + [-74.016209, 40.739366], + [-74.012284, 40.739542], + [-74.008444, 40.739671], + [-74.004697, 40.73976], + [-74.001048, 40.73981], [-73.9975, 40.739826], - [-73.998386, 40.739825], - [-73.999288, 40.739822], - [-74.000225, 40.739817], - [-74.001218, 40.739809], - [-74.002291, 40.739797], - [-74.003478, 40.73978], - [-74.004824, 40.739757], - [-74.006392, 40.739725], - [-74.008276, 40.739677], - [-74.010626, 40.739603], - [-74.013687, 40.739485], - [-74.01789, 40.739279], - [-74.024021, 40.738878], - [-74.033463, 40.737986], - [-74.047255, 40.735733], - [-74.056839, 40.730833], - [-74.047255, 40.725933], - [-74.033463, 40.72368], - [-74.024021, 40.722788], - [-74.01789, 40.722387], - [-74.013687, 40.722181], - [-74.010626, 40.722063], - [-74.008276, 40.721989], - [-74.006392, 40.721941], - [-74.004824, 40.721909], - [-74.003478, 40.721886], - [-74.002291, 40.721869], - [-74.001218, 40.721857], - [-74.000225, 40.721849], - [-73.999288, 40.721844], - [-73.998386, 40.721841], + [-73.993952, 40.73981], + [-73.990303, 40.73976], + [-73.986556, 40.739671], + [-73.982716, 40.739542], + [-73.978791, 40.739366], + [-73.974789, 40.739139], + [-73.970721, 40.738856], + [-73.966602, 40.738507], + [-73.962451, 40.738085], + [-73.958294, 40.737578], + [-73.954168, 40.73697], + [-73.950124, 40.736239], + [-73.946246, 40.735355], + [-73.942675, 40.734262], + [-73.939698, 40.732853], + [-73.938161, 40.730818], + [-73.939701, 40.728784], + [-73.942681, 40.727378], + [-73.946253, 40.726289], + [-73.950132, 40.725407], + [-73.954176, 40.72468], + [-73.958302, 40.724075], + [-73.962459, 40.72357], + [-73.966609, 40.723151], + [-73.970728, 40.722804], + [-73.974795, 40.722522], + [-73.978796, 40.722297], + [-73.98272, 40.722122], + [-73.986559, 40.721994], + [-73.990305, 40.721906], + [-73.993953, 40.721856], [-73.9975, 40.72184], - [-73.996614, 40.721841], - [-73.995712, 40.721844], - [-73.994775, 40.721849], - [-73.993782, 40.721857], - [-73.992709, 40.721869], - [-73.991522, 40.721886], - [-73.990176, 40.721909], - [-73.988608, 40.721941], - [-73.986724, 40.721989], - [-73.984374, 40.722063], - [-73.981313, 40.722181], - [-73.97711, 40.722387], - [-73.970979, 40.722788], - [-73.961537, 40.72368], - [-73.947745, 40.725933], - [-73.938161, 40.730833] + [-74.001047, 40.721856], + [-74.004695, 40.721906], + [-74.008441, 40.721994], + [-74.01228, 40.722122], + [-74.016204, 40.722297], + [-74.020205, 40.722522], + [-74.024272, 40.722804], + [-74.028391, 40.723151], + [-74.032541, 40.72357], + [-74.036698, 40.724075], + [-74.040824, 40.72468], + [-74.044868, 40.725407], + [-74.048747, 40.726289], + [-74.052319, 40.727378], + [-74.055299, 40.728784], + [-74.056839, 40.730818] ] ] } @@ -258,71 +186,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.9975, 40.685867], - [-73.991035, 40.693131], - [-73.988062, 40.703583], - [-73.986885, 40.710737], - [-73.986356, 40.715383], - [-73.986083, 40.718568], - [-73.985927, 40.720887], - [-73.98583, 40.722668], - [-73.985767, 40.724095], - [-73.985723, 40.725283], - [-73.985693, 40.726303], - [-73.985671, 40.727202], - [-73.985656, 40.728016], - [-73.985645, 40.728768], - [-73.985638, 40.729478], - [-73.985634, 40.730162], - [-73.985632, 40.730833], - [-73.985633, 40.731504], - [-73.985637, 40.732188], - [-73.985645, 40.732898], - [-73.985655, 40.73365], - [-73.985671, 40.734464], - [-73.985692, 40.735363], - [-73.985722, 40.736383], - [-73.985766, 40.737571], - [-73.985829, 40.738998], - [-73.985925, 40.740779], - [-73.986081, 40.743098], - [-73.986354, 40.746283], - [-73.986882, 40.750929], - [-73.988058, 40.758083], - [-73.991031, 40.768535], [-73.9975, 40.775799], - [-74.003969, 40.768538], - [-74.006942, 40.758086], - [-74.008118, 40.750931], - [-74.008646, 40.746285], - [-74.008919, 40.7431], - [-74.009075, 40.74078], - [-74.009171, 40.738999], - [-74.009234, 40.737571], - [-74.009278, 40.736383], - [-74.009308, 40.735364], - [-74.009329, 40.734464], - [-74.009345, 40.73365], - [-74.009355, 40.732898], - [-74.009363, 40.732188], - [-74.009367, 40.731504], - [-74.009368, 40.730833], - [-74.009366, 40.730162], - [-74.009362, 40.729478], - [-74.009355, 40.728768], - [-74.009344, 40.728016], - [-74.009329, 40.727202], - [-74.009307, 40.726302], - [-74.009277, 40.725283], - [-74.009233, 40.724095], - [-74.00917, 40.722667], - [-74.009073, 40.720886], - [-74.008917, 40.718566], - [-74.008644, 40.715381], - [-74.008115, 40.710735], - [-74.006938, 40.70358], - [-74.003965, 40.693128], - [-73.9975, 40.685867] + [-73.994813, 40.774633], + [-73.992956, 40.772376], + [-73.991515, 40.769669], + [-73.990349, 40.76673], + [-73.989387, 40.763666], + [-73.988587, 40.760539], + [-73.987919, 40.757389], + [-73.987364, 40.754244], + [-73.986906, 40.751122], + [-73.986533, 40.74804], + [-73.986235, 40.745008], + [-73.986004, 40.742034], + [-73.985834, 40.739125], + [-73.985719, 40.736286], + [-73.985653, 40.73352], + [-73.985632, 40.730832], + [-73.985654, 40.728144], + [-73.985721, 40.725379], + [-73.985837, 40.72254], + [-73.986008, 40.719631], + [-73.98624, 40.716657], + [-73.986538, 40.713625], + [-73.986912, 40.710543], + [-73.987371, 40.707422], + [-73.987927, 40.704276], + [-73.988595, 40.701126], + [-73.989395, 40.697999], + [-73.990357, 40.694935], + [-73.991522, 40.691996], + [-73.992961, 40.68929], + [-73.994817, 40.687033], + [-73.9975, 40.685867], + [-74.000183, 40.687033], + [-74.002039, 40.68929], + [-74.003478, 40.691996], + [-74.004643, 40.694935], + [-74.005605, 40.697999], + [-74.006405, 40.701126], + [-74.007073, 40.704276], + [-74.007629, 40.707422], + [-74.008088, 40.710543], + [-74.008462, 40.713625], + [-74.00876, 40.716657], + [-74.008992, 40.719631], + [-74.009163, 40.72254], + [-74.009279, 40.725379], + [-74.009346, 40.728144], + [-74.009368, 40.730832], + [-74.009347, 40.73352], + [-74.009281, 40.736286], + [-74.009166, 40.739125], + [-74.008996, 40.742034], + [-74.008765, 40.745008], + [-74.008467, 40.74804], + [-74.008094, 40.751122], + [-74.007636, 40.754244], + [-74.007081, 40.757389], + [-74.006413, 40.760539], + [-74.005613, 40.763666], + [-74.004651, 40.76673], + [-74.003485, 40.769669], + [-74.002044, 40.772376], + [-74.000187, 40.774633], + [-73.9975, 40.775799] ] ] } diff --git a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json index 5d075c8da2..9137250ea8 100644 --- a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json +++ b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json @@ -16,195 +16,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.864013671875, 40.70892333984375], - [-73.864807128906193, 40.706298828125057], - [-73.865600585937386, 40.703674316406307], - [-73.86639404296875, 40.7012939453125], - [-73.867309570312443, 40.698730468750114], - [-73.8682861328125, 40.696289062500114], - [-73.86932373046875, 40.693725585937557], - [-73.87030029296875, 40.691284179687614], - [-73.871704101562386, 40.6881103515625], - [-73.873107910156193, 40.68487548828125], - [-73.87432861328125, 40.682495117187557], - [-73.875976562499943, 40.679321289062443], - [-73.877319335937443, 40.6768798828125], - [-73.8782958984375, 40.674926757812614], - [-73.87982177734375, 40.6724853515625], - [-73.88128662109375, 40.669921875000114], - [-73.88287353515625, 40.667480468750114], - [-73.88458251953125, 40.664916992187557], - [-73.88592529296875, 40.663085937500114], - [-73.88720703125, 40.66107177734375], - [-73.88909912109375, 40.658691406250114], - [-73.89111328125, 40.656127929687557], - [-73.8931884765625, 40.653686523437557], - [-73.895324707031193, 40.651123046875], - [-73.8975830078125, 40.648681640625], - [-73.900024414062386, 40.646301269531364], - [-73.902404785156193, 40.643920898437557], - [-73.9044189453125, 40.642089843750114], - [-73.9063720703125, 40.640502929687557], - [-73.909179687499886, 40.638305664062614], - [-73.9119873046875, 40.636108398437557], - [-73.914978027343693, 40.633911132812614], - [-73.91729736328125, 40.632324218750057], - [-73.919677734375, 40.63092041015625], - [-73.922973632812443, 40.629089355468807], - [-73.9263916015625, 40.62750244140625], - [-73.929870605468693, 40.625915527343693], - [-73.933471679687443, 40.624694824218807], - [-73.937194824218693, 40.62347412109375], - [-73.940917968749943, 40.62249755859375], - [-73.9447021484375, 40.621887207031364], - [-73.9486083984375, 40.621276855468807], - [-73.952392578125, 40.621093750000114], - [-73.956298828125, 40.621276855468807], - [-73.960205078124886, 40.621520996093864], - [-73.963989257812443, 40.622070312500114], - [-73.9677734375, 40.62310791015625], - [-73.97149658203125, 40.624328613281307], - [-73.97509765625, 40.625488281250114], - [-73.978576660156193, 40.6273193359375], - [-73.98187255859375, 40.629272460937557], - [-73.985107421875, 40.631530761718807], - [-73.988220214843693, 40.633728027343864], - [-73.991088867187443, 40.636474609375], - [-73.993774414062386, 40.6392822265625], - [-73.99639892578125, 40.642089843750114], - [-73.998229980468693, 40.644287109375], - [-73.99981689453125, 40.646728515625], - [-74.001403808593636, 40.648925781250057], - [-74.002990722656193, 40.6514892578125], - [-74.004821777343693, 40.654724121093693], - [-74.006103515625, 40.657287597656307], - [-74.00732421875, 40.65972900390625], - [-74.008728027343693, 40.663085937500114], - [-74.010009765625, 40.666503906250114], - [-74.01116943359375, 40.669921875000114], - [-74.01190185546875, 40.6724853515625], - [-74.0125732421875, 40.674926757812614], - [-74.013488769531193, 40.678283691406307], - [-74.01422119140625, 40.681701660156307], - [-74.0147705078125, 40.68487548828125], - [-74.015319824218693, 40.688293457031193], - [-74.01580810546875, 40.691528320312443], - [-74.01611328125, 40.694702148437557], - [-74.01641845703125, 40.6978759765625], - [-74.0164794921875, 40.700073242187614], - [-74.0166015625, 40.702514648437557], - [-74.016723632812443, 40.7047119140625], - [-74.016723632812443, 40.707092285156307], - [-74.016723632812443, 40.7100830078125], - [-74.0166015625, 40.713073730468864], - [-74.0164794921875, 40.715881347656307], - [-74.016174316406193, 40.718688964843807], - [-74.015991210937386, 40.7216796875], - [-74.015686035156193, 40.724914550781193], - [-74.015197753906193, 40.728515625000114], - [-74.0147705078125, 40.7310791015625], - [-74.014404296875, 40.73388671875], - [-74.013793945312443, 40.736511230468864], - [-74.013305664062443, 40.73907470703125], - [-74.01287841796875, 40.741088867187614], - [-74.0123291015625, 40.743713378906307], - [-74.011413574218636, 40.74688720703125], - [-74.010620117187443, 40.7501220703125], - [-74.009582519531193, 40.753295898437614], - [-74.00860595703125, 40.756530761718864], - [-74.00732421875, 40.760314941406307], - [-74.006103515625, 40.76348876953125], - [-74.005126953125, 40.76593017578125], - [-74.00408935546875, 40.768493652343807], - [-74.002990722656193, 40.770874023437443], - [-74.002197265625, 40.772888183593807], - [-74.0009765625, 40.77532958984375], - [-73.99951171875, 40.778503417968693], - [-73.99810791015625, 40.780883789062557], - [-73.997192382812443, 40.782897949218693], - [-73.99609375, 40.784729003906307], - [-73.994995117187443, 40.786499023437614], - [-73.993774414062386, 40.788513183593807], - [-73.992309570312443, 40.791076660156364], - [-73.990722656249886, 40.793518066406364], - [-73.988891601562443, 40.79608154296875], - [-73.98712158203125, 40.798522949218864], - [-73.98529052734375, 40.801086425781307], - [-73.983276367187443, 40.80352783203125], - [-73.9818115234375, 40.805480957031307], - [-73.980224609374943, 40.807312011718693], - [-73.977905273437443, 40.809692382812557], - [-73.976196289062443, 40.8115234375], - [-73.97442626953125, 40.813293457031307], - [-73.97198486328125, 40.815673828125114], - [-73.96929931640625, 40.818115234375057], - [-73.966674804687443, 40.82049560546875], - [-73.963806152343693, 40.822692871093807], - [-73.96087646484375, 40.82489013671875], - [-73.957885742187443, 40.826904296875114], - [-73.9547119140625, 40.828674316406193], - [-73.951416015624943, 40.830505371093807], - [-73.948913574218693, 40.831726074218693], - [-73.94622802734375, 40.8328857421875], - [-73.94268798828125, 40.834472656250057], - [-73.9390869140625, 40.835693359375114], - [-73.936279296875, 40.836486816406193], - [-73.93341064453125, 40.83709716796875], - [-73.92962646484375, 40.837890625], - [-73.92578125, 40.838500976562557], - [-73.921875, 40.838500976562557], - [-73.9180908203125, 40.838500976562557], - [-73.91522216796875, 40.838317871093807], - [-73.912292480468693, 40.837890625], - [-73.90948486328125, 40.8372802734375], - [-73.9066162109375, 40.83673095703125], - [-73.903808593749943, 40.835876464843864], - [-73.901123046875, 40.834899902343807], - [-73.897521972656193, 40.83331298828125], - [-73.894104003906193, 40.831481933593864], - [-73.891601562499943, 40.829895019531307], - [-73.8892822265625, 40.82830810546875], - [-73.886169433593693, 40.825927734375057], - [-73.883300781249943, 40.823303222656364], - [-73.880615234375, 40.8206787109375], - [-73.877990722656193, 40.817687988281307], - [-73.875671386718693, 40.814697265625114], - [-73.87347412109375, 40.8115234375], - [-73.87152099609375, 40.80828857421875], - [-73.8701171875, 40.805725097656364], - [-73.868713378906193, 40.803283691406364], - [-73.867126464843636, 40.7999267578125], - [-73.86572265625, 40.79669189453125], - [-73.8643798828125, 40.793090820312557], - [-73.86322021484375, 40.789672851562557], - [-73.86248779296875, 40.78729248046875], - [-73.8616943359375, 40.784729003906307], - [-73.860900878906193, 40.781311035156364], - [-73.860412597656193, 40.778686523437614], - [-73.85980224609375, 40.776306152343807], - [-73.85931396484375, 40.773071289062557], - [-73.858886718749943, 40.770690917968693], - [-73.85858154296875, 40.768127441406307], - [-73.8582763671875, 40.765075683593807], - [-73.857971191406136, 40.761901855468864], - [-73.85791015625, 40.759521484375057], - [-73.8577880859375, 40.757324218750114], - [-73.85772705078125, 40.754272460937614], - [-73.85772705078125, 40.75128173828125], - [-73.8577880859375, 40.748291015625057], - [-73.8577880859375, 40.745300292968864], - [-73.85809326171875, 40.741699218749943], - [-73.8582763671875, 40.73828125], - [-73.85858154296875, 40.735473632812557], - [-73.859008789062443, 40.732727050781193], - [-73.859497070312386, 40.7291259765625], - [-73.860229492187443, 40.725097656249943], - [-73.860717773437443, 40.72247314453125], - [-73.861083984374943, 40.720520019531193], - [-73.8616943359375, 40.7178955078125], - [-73.8623046875, 40.715270996093807], - [-73.86322021484375, 40.712097167968864], - [-73.864013671875, 40.70892333984375] + [-73.937242, 40.836186], + [-73.95061, 40.832464], + [-73.962925, 40.827467], + [-73.974045, 40.821573], + [-73.983949, 40.815099], + [-73.992697, 40.808283], + [-74.00039, 40.801291], + [-74.007142, 40.794228], + [-74.013069, 40.787155], + [-74.018273, 40.780095], + [-74.022843, 40.773051], + [-74.026852, 40.76601], + [-74.030356, 40.758945], + [-74.033397, 40.751824], + [-74.035999, 40.744608], + [-74.038172, 40.737256], + [-74.039907, 40.729722], + [-74.041179, 40.721963], + [-74.041939, 40.713935], + [-74.042117, 40.705603], + [-74.041611, 40.696944], + [-74.04029, 40.687956], + [-74.037986, 40.678674], + [-74.034501, 40.669186], + [-74.029617, 40.659656], + [-74.023121, 40.650342], + [-74.01485, 40.641608], + [-74.004753, 40.633898], + [-73.992947, 40.627687], + [-73.979755, 40.623387], + [-73.96568, 40.621247], + [-73.951317, 40.621297], + [-73.937242, 40.62335], + [-73.923915, 40.62707], + [-73.911634, 40.632063], + [-73.90054, 40.637951], + [-73.890654, 40.644418], + [-73.881917, 40.651226], + [-73.87423, 40.65821], + [-73.867477, 40.665265], + [-73.861546, 40.672331], + [-73.856334, 40.679384], + [-73.851753, 40.686421], + [-73.84773, 40.693457], + [-73.844209, 40.700516], + [-73.841151, 40.707632], + [-73.838529, 40.714843], + [-73.836335, 40.722192], + [-73.834577, 40.729722], + [-73.833281, 40.737479], + [-73.832495, 40.745506], + [-73.832291, 40.753837], + [-73.83277, 40.762497], + [-73.834065, 40.771488], + [-73.836343, 40.780774], + [-73.839806, 40.790268], + [-73.844672, 40.799806], + [-73.851158, 40.809129], + [-73.859428, 40.817876], + [-73.869536, 40.825598], + [-73.881366, 40.831822], + [-73.894592, 40.836133], + [-73.908711, 40.838281], + [-73.923121, 40.838237], + [-73.937242, 40.836186] ] ] } @@ -212,2368 +88,4733 @@ "features": [ { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.991069, 40.730054] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.991069, 40.730054] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-74.000192, 40.718803] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000192, 40.718803] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.983848, 40.761727] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.983848, 40.761727] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.974999, 40.680862] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974999, 40.680862] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.894885, 40.664714] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.894885, 40.664714] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.90087, 40.884667] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90087, 40.884667] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.958066, 40.800581] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958066, 40.800581] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.940858, 40.679918] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940858, 40.679918] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.898788, 40.749719] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.898788, 40.749719] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.929018, 40.75196] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929018, 40.75196] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.987409, 40.718306] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987409, 40.718306] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.891657, 40.678028] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891657, 40.678028] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.879625, 40.68152] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.879625, 40.68152] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.844435, 40.695165] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.844435, 40.695165] + } }, { "type": "Feature", - "properties": { "weight": 9 }, - "geometry": { "type": "Point", "coordinates": [-73.98177, 40.690648] } + "properties": { + "weight": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98177, 40.690648] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.82758, 40.583268] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.82758, 40.583268] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.813651, 40.588091] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.813651, 40.588091] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.891752, 40.829987] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891752, 40.829987] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.896617, 40.822142] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896617, 40.822142] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.90074, 40.856092] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90074, 40.856092] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.910136, 40.845899] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.910136, 40.845899] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.918432, 40.833768] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918432, 40.833768] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.845624, 40.754621] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.845624, 40.754621] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.869527, 40.749144] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.869527, 40.749144] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.83003, 40.759599] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83003, 40.759599] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.832569, 40.846809] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.832569, 40.846809] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.926138, 40.810476] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.926138, 40.810476] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.851221, 40.834254] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.851221, 40.834254] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-74.004131, 40.713064] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.004131, 40.713064] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.847035, 40.836488] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.847035, 40.836488] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.976713, 40.751807] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976713, 40.751807] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.982076, 40.74608] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.982076, 40.74608] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.95107, 40.785671] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95107, 40.785671] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.959873, 40.77362] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.959873, 40.77362] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.910383, 40.682851] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.910383, 40.682851] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.983109, 40.677315] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.983109, 40.677315] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.882034, 40.74237] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.882034, 40.74237] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.920785, 40.678822] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.920785, 40.678822] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.86748, 40.857192] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.86748, 40.857192] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.866134, 40.877839] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.866134, 40.877839] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.854315, 40.898286] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.854315, 40.898286] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.958099, 40.670765] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958099, 40.670765] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.893066, 40.823976] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.893066, 40.823976] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.868356, 40.848768] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.868356, 40.848768] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950079, 40.656659] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950079, 40.656659] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.889404, 40.665517] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.889404, 40.665517] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.927384, 40.818303] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.927384, 40.818303] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.925691, 40.82823] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.925691, 40.82823] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.967967, 40.762526] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.967967, 40.762526] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.904097, 40.812117] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.904097, 40.812117] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.874515, 40.829521] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.874515, 40.829521] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.886282, 40.826525] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.886282, 40.826525] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.867617, 40.831509] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867617, 40.831509] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.902984, 40.74563] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.902984, 40.74563] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.755404, 40.603995] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.755404, 40.603995] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.976336, 40.775519] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976336, 40.775519] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.964602, 40.791618] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964602, 40.791618] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.93956, 40.840718] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.93956, 40.840718] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.893509, 40.866977] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.893509, 40.866977] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.98459, 40.754184] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98459, 40.754184] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.962031, 40.661633] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.962031, 40.661633] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.995348, 40.631478] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.995348, 40.631478] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.817012, 40.702898] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.817012, 40.702898] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.83037, 40.714034] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83037, 40.714034] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.808004, 40.700382] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.808004, 40.700382] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.946054, 40.747768] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.946054, 40.747768] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.85286, 40.726505] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.85286, 40.726505] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.87722, 40.736813] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.87722, 40.736813] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.978171, 40.636118] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.978171, 40.636118] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.95999, 40.688889] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95999, 40.688889] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950312, 40.706126] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950312, 40.706126] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950247, 40.714072] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950247, 40.714072] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.901916, 40.669145] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.901916, 40.669145] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903958, 40.688866] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903958, 40.688866] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.916638, 40.686415] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.916638, 40.686415] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.947354, 40.703844] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947354, 40.703844] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.011515, 40.63497] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011515, 40.63497] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.929861, 40.756442] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929861, 40.756442] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.925822, 40.761431] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.925822, 40.761431] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.986768, 40.754611] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986768, 40.754611] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.979188, 40.752768] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979188, 40.752768] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.957624, 40.674771] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.957624, 40.674771] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.832162, 40.684331] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.832162, 40.684331] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-74.000308, 40.732254] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000308, 40.732254] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.97192, 40.757106] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.97192, 40.757106] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.976217, 40.788644] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976217, 40.788644] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.857362, 40.893143] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.857362, 40.893143] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.982208, 40.77344] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.982208, 40.77344] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.890549, 40.820947] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.890549, 40.820947] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.006277, 40.722853] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.006277, 40.722853] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.836321, 40.843863] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.836321, 40.843863] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.986599, 40.739864] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986599, 40.739864] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.945264, 40.747022] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.945264, 40.747022] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.981929, 40.768247] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981929, 40.768247] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.948916, 40.742215] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.948916, 40.742215] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.995657, 40.74408] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.995657, 40.74408] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.005367, 40.728251] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.005367, 40.728251] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.837683, 40.681711] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.837683, 40.681711] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.815832, 40.608402] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.815832, 40.608402] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.9685, 40.576311] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.9685, 40.576311] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.95358, 40.742625] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95358, 40.742625] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.96387, 40.768141] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.96387, 40.768141] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.940163, 40.750635] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940163, 40.750635] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.843852, 40.680428] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.843852, 40.680428] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.98995, 40.734673] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98995, 40.734673] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.953522, 40.689627] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953522, 40.689627] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.979735, 40.660035] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979735, 40.660035] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.980251, 40.666244] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980251, 40.666244] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.975775, 40.650781] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975775, 40.650781] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.979721, 40.644272] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979721, 40.644272] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.964357, 40.643904] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964357, 40.643904] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.962882, 40.650493] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.962882, 40.650493] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.962694, 40.635141] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.962694, 40.635141] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.961453, 40.655073] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.961453, 40.655073] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.970956, 40.675294] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.970956, 40.675294] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.977549, 40.68442] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.977549, 40.68442] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.911945, 40.678339] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.911945, 40.678339] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.975374, 40.687118] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975374, 40.687118] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.966795, 40.688094] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.966795, 40.688094] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.972852, 40.677102] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972852, 40.677102] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.976783, 40.684488] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976783, 40.684488] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.978809, 40.683665] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.978809, 40.683665] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.990151, 40.692403] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990151, 40.692403] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.835918, 40.672096] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.835918, 40.672096] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.860495, 40.854363] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860495, 40.854363] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.855359, 40.858984] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.855359, 40.858984] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950426, 40.680438] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950426, 40.680438] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.980406, 40.68831] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980406, 40.68831] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.964222, 40.672032] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964222, 40.672032] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.948847, 40.645123] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.948847, 40.645123] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.949455, 40.65086] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949455, 40.65086] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.948299, 40.639991] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.948299, 40.639991] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.947541, 40.632842] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947541, 40.632842] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950728, 40.662772] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950728, 40.662772] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.932932, 40.668978] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.932932, 40.668978] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.942159, 40.669481] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.942159, 40.669481] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.951183, 40.724479] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.951183, 40.724479] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.954425, 40.731266] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.954425, 40.731266] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.957832, 40.708383] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.957832, 40.708383] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.953488, 40.706889] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953488, 40.706889] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.929848, 40.813223] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929848, 40.813223] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.975248, 40.760086] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975248, 40.760086] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.969072, 40.757468] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.969072, 40.757468] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.988698, 40.745453] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.988698, 40.745453] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.987936, 40.749644] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987936, 40.749644] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.98168, 40.730974] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98168, 40.730974] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.986228, 40.755983] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986228, 40.755983] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.951423, 40.712774] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.951423, 40.712774] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.940496, 40.711576] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940496, 40.711576] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.943943, 40.714575] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.943943, 40.714575] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.956664, 40.717173] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.956664, 40.717173] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.939792, 40.707391] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.939792, 40.707391] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.943815, 40.746305] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.943815, 40.746305] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.949599, 40.744128] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949599, 40.744128] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.932851, 40.752763] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.932851, 40.752763] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950359, 40.82655] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950359, 40.82655] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.944889, 40.834041] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.944889, 40.834041] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.972322, 40.793919] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972322, 40.793919] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.968378, 40.799446] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.968378, 40.799446] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.951822, 40.799074] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.951822, 40.799074] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.96137, 40.79606] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.96137, 40.79606] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.98197, 40.778453] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98197, 40.778453] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.972097, 40.781346] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972097, 40.781346] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.836923, 40.718044] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.836923, 40.718044] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.968828, 40.785823] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.968828, 40.785823] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.966847, 40.803966] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.966847, 40.803966] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.964109, 40.807722] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.964109, 40.807722] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.945495, 40.807753] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.945495, 40.807753] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.94077, 40.814229] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.94077, 40.814229] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.949625, 40.802097] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949625, 40.802097] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.905227, 40.850409] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.905227, 40.850409] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.953676, 40.822007] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953676, 40.822007] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.936244, 40.82042] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.936244, 40.82042] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.911793, 40.84848] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.911793, 40.84848] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.907684, 40.853453] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907684, 40.853453] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.913399, 40.839305] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.913399, 40.839305] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.940132, 40.840555] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.940132, 40.840555] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.933595, 40.849504] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.933595, 40.849504] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.929411, 40.855225] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.929411, 40.855225] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.939703, 40.847391] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.939703, 40.847391] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.776012, 40.592942] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.776012, 40.592942] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.788521, 40.592374] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.788521, 40.592374] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.82052, 40.585385] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.82052, 40.585385] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.83559, 40.580955] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83559, 40.580955] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.768174, 40.595398] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.768174, 40.595398] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.761352, 40.600066] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.761352, 40.600066] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.803289, 40.707571] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.803289, 40.707571] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.793474, 40.710517] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.793474, 40.710517] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.862699, 40.749865] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.862699, 40.749865] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.855333, 40.751729] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.855333, 40.751729] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.861618, 40.729763] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.861618, 40.729763] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.865049, 40.677044] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.865049, 40.677044] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.979917, 40.783933] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979917, 40.783933] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903096, 40.675344] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903096, 40.675344] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.002905, 40.733422] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.002905, 40.733422] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.825797, 40.68595] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.825797, 40.68595] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.98769, 40.755477] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98769, 40.755477] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.975957, 40.576033] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975957, 40.576033] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993365, 40.747214] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993365, 40.747214] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.984264, 40.743069] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.984264, 40.743069] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.828121, 40.852461] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.828121, 40.852461] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.842951, 40.839892] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.842951, 40.839892] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.997871, 40.741039] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.997871, 40.741039] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.976041, 40.751431] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976041, 40.751431] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.796923, 40.590927] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.796923, 40.590927] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.000495, 40.732337] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000495, 40.732337] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.860087, 40.692426] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860087, 40.692426] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.852051, 40.693703] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.852051, 40.693703] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.836793, 40.697114] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.836793, 40.697114] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.828349, 40.700481] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.828349, 40.700481] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903934, 40.695518] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903934, 40.695518] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.910975, 40.699471] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.910975, 40.699471] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.88411, 40.666314] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.88411, 40.666314] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.890358, 40.672709] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.890358, 40.672709] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.885194, 40.679777] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.885194, 40.679777] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.900562, 40.664057] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.900562, 40.664057] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.902448, 40.663589] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.902448, 40.663589] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.908958, 40.662617] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.908958, 40.662617] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.90185, 40.646653] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90185, 40.646653] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.899547, 40.650468] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.899547, 40.650468] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.91633, 40.661529] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.91633, 40.661529] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.922521, 40.664766] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.922521, 40.664766] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.899277, 40.658914] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.899277, 40.658914] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.904289, 40.679366] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.904289, 40.679366] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.898526, 40.676998] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.898526, 40.676998] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.880749, 40.67413] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.880749, 40.67413] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.873929, 40.683152] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.873929, 40.683152] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.873321, 40.689616] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.873321, 40.689616] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.867287, 40.69129] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867287, 40.69129] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.896402, 40.746324] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896402, 40.746324] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.891205, 40.746867] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891205, 40.746867] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.869432, 40.733097] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.869432, 40.733097] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.912178, 40.699454] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.912178, 40.699454] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.907581, 40.702918] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907581, 40.702918] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.918232, 40.703692] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918232, 40.703692] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.912548, 40.744149] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.912548, 40.744149] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.913521, 40.756316] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.913521, 40.756316] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.906065, 40.752824] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.906065, 40.752824] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.918435, 40.743132] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918435, 40.743132] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.883697, 40.747658] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.883697, 40.747658] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.876612, 40.748408] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.876612, 40.748408] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.830301, 40.660476] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.830301, 40.660476] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.834057, 40.668234] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.834057, 40.668234] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.820692, 40.709161] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.820692, 40.709161] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.844516, 40.721594] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.844516, 40.721594] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.810832, 40.705417] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.810832, 40.705417] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.801096, 40.702067] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.801096, 40.702067] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.860214, 40.888028] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860214, 40.888028] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.879158, 40.828584] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.879158, 40.828584] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.896434, 40.816103] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896434, 40.816103] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.918095, 40.770036] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918095, 40.770036] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.912034, 40.775035] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.912034, 40.775035] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.907701, 40.816437] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907701, 40.816437] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.901777, 40.819487] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.901777, 40.819487] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.914041, 40.805368] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.914041, 40.805368] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.887693, 40.837195] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.887693, 40.837195] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.867234, 40.865483] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867234, 40.865483] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.907656, 40.808719] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.907656, 40.808719] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.897174, 40.86776] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.897174, 40.86776] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.890064, 40.873411] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.890064, 40.873411] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.93647, 40.82388] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.93647, 40.82388] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.914684, 40.844434] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.914684, 40.844434] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.897749, 40.861295] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.897749, 40.861295] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.91779, 40.840074] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.91779, 40.840074] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.887137, 40.873243] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.887137, 40.873243] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.90983, 40.87456] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.90983, 40.87456] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.904834, 40.878855] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.904834, 40.878855] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.915278, 40.869443] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.915278, 40.869443] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.918819, 40.864614] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.918819, 40.864614] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.919899, 40.868071] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.919899, 40.868071] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.898583, 40.889248] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.898583, 40.889248] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.879961, 40.840207] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.879961, 40.840207] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.862509, 40.883887] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.862509, 40.883887] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.884654, 40.879749] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.884654, 40.879749] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.878854, 40.874811] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.878854, 40.874811] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.867053, 40.871258] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.867053, 40.871258] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.83859, 40.878663] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.83859, 40.878663] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.830834, 40.888299] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.830834, 40.888299] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.783817, 40.712645] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.783817, 40.712645] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.850619, 40.903125] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.850619, 40.903125] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.959244, 40.670342] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.959244, 40.670342] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.905261, 40.68286] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.905261, 40.68286] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903117, 40.678456] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903117, 40.678456] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.846384, 40.869525] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.846384, 40.869525] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.873346, 40.841863] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.873346, 40.841863] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.925536, 40.860531] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.925536, 40.860531] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.958372, 40.81558] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958372, 40.81558] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.955827, 40.680595] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955827, 40.680595] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.926722, 40.81833] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.926722, 40.81833] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.917791, 40.816029] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.917791, 40.816029] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.921399, 40.835536] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.921399, 40.835536] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.919239, 40.807565] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.919239, 40.807565] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.930996, 40.744586] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.930996, 40.744586] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.924015, 40.743781] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.924015, 40.743781] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.944087, 40.824766] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.944087, 40.824766] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.938208, 40.830134] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.938208, 40.830134] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.92565, 40.827904] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.92565, 40.827904] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.930728, 40.679363] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.930728, 40.679363] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.920526, 40.756987] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.920526, 40.756987] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.928508, 40.693172] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.928508, 40.693172] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.922156, 40.689583] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.922156, 40.689583] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.927242, 40.697873] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.927242, 40.697873] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.91972, 40.69866] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.91972, 40.69866] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.921479, 40.766778] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.921479, 40.766778] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.922913, 40.706606] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.922913, 40.706606] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.933147, 40.706151] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.933147, 40.706151] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.937138, 40.748917] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.937138, 40.748917] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.97697, 40.629754] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.97697, 40.629754] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.025509, 40.629741] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.025509, 40.629741] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.023376, 40.634966] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.023376, 40.634966] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.994658, 40.63626] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994658, 40.63626] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.005351, 40.631385] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.005351, 40.631385] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.986829, 40.597703] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986829, 40.597703] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.993676, 40.60195] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993676, 40.60195] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.984521, 40.617108] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.984521, 40.617108] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.990453, 40.620686] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990453, 40.620686] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.030876, 40.616621] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.030876, 40.616621] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.028397, 40.622686] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.028397, 40.622686] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.000582, 40.613158] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000582, 40.613158] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.99884, 40.619258] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99884, 40.619258] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.998174, 40.604676] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.998174, 40.604676] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.001592, 40.607735] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001592, 40.607735] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.996857, 40.626224] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996857, 40.626224] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.996353, 40.624841] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996353, 40.624841] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.973376, 40.595924] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973376, 40.595924] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.972355, 40.603258] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.972355, 40.603258] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.961353, 40.57771] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.961353, 40.57771] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.954057, 40.586547] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.954057, 40.586547] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.955811, 40.599308] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955811, 40.599308] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.957608, 40.608638] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.957608, 40.608638] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.979084, 40.597235] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.979084, 40.597235] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.980373, 40.604058] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980373, 40.604058] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.974592, 40.580738] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974592, 40.580738] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.974265, 40.589449] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974265, 40.589449] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.983765, 40.58884] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.983765, 40.58884] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.978188, 40.592465] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.978188, 40.592465] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.973002, 40.608842] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973002, 40.608842] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.974048, 40.614356] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.974048, 40.614356] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.975256, 40.620731] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.975256, 40.620731] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.959243, 40.617397] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.959243, 40.617397] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.98178, 40.611455] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98178, 40.611455] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.976069, 40.625017] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.976069, 40.625017] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.960693, 40.625022] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.960693, 40.625022] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.961517, 40.629208] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.961517, 40.629208] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.955078, 40.595321] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955078, 40.595321] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.941937, 40.753739] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941937, 40.753739] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.985984, 40.762455] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.985984, 40.762455] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.981697, 40.76297] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981697, 40.76297] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.981331, 40.758641] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981331, 40.758641] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.977368, 40.764085] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.977368, 40.764085] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.966089, 40.764618] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.966089, 40.764618] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.953234, 40.759171] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.953234, 40.759171] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.981648, 40.768249] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981648, 40.768249] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.984209, 40.759801] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.984209, 40.759801] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.980729, 40.764565] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.980729, 40.764565] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.973347, 40.76481] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973347, 40.76481] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.967375, 40.762708] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.967375, 40.762708] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.991056, 40.750373] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.991056, 40.750373] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.987495, 40.755289] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987495, 40.755289] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.007623, 40.710162] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.007623, 40.710162] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.008584, 40.714111] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.008584, 40.714111] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.989735, 40.757307] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989735, 40.757307] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.949066, 40.694618] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.949066, 40.694618] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.950234, 40.700376] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950234, 40.700376] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.992765, 40.742954] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.992765, 40.742954] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.987771, 40.749789] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987771, 40.749789] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.985036, 40.688408] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.985036, 40.688408] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.987218, 40.69247] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.987218, 40.69247] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.990177, 40.713855] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990177, 40.713855] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.988078, 40.71868] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.988078, 40.71868] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.989938, 40.723401] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989938, 40.723401] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.941377, 40.700404] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941377, 40.700404] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.935623, 40.697195] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.935623, 40.697195] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.989778, 40.670271] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989778, 40.670271] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.995891, 40.673641] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.995891, 40.673641] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.990756, 40.68611] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990756, 40.68611] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.986056, 40.692255] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986056, 40.692255] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.991818, 40.694196] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.991818, 40.694196] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.990538, 40.735872] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990538, 40.735872] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.989344, 40.741302] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989344, 40.741302] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.992872, 40.665413] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.992872, 40.665413] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.988301, 40.670846] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.988301, 40.670846] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.98575, 40.73269] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.98575, 40.73269] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.990669, 40.734763] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990669, 40.734763] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.896548, 40.674541] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.896548, 40.674541] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.905316, 40.678333] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.905316, 40.678333] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.01788, 40.641361] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.01788, 40.641361] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.010006, 40.648938] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.010006, 40.648938] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.003548, 40.655143] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.003548, 40.655143] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.994448, 40.646484] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994448, 40.646484] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.014033, 40.645068] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.014033, 40.645068] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.994202, 40.640912] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994202, 40.640912] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.99809, 40.660396] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99809, 40.660396] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.994946, 40.680273] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994946, 40.680273] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.003738, 40.726227] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.003738, 40.726227] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.937969, 40.851694] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.937969, 40.851694] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.934179, 40.859021] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.934179, 40.859021] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.954797, 40.805058] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.954797, 40.805058] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.952247, 40.811071] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.952247, 40.811071] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.997702, 40.724328] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.997702, 40.724328] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.992507, 40.730464] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.992507, 40.730464] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.00657, 40.709415] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.00657, 40.709415] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.00881, 40.71305] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.00881, 40.71305] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.009266, 40.715478] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009266, 40.715478] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.985063, 40.690544] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.985063, 40.690544] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.989997, 40.693218] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.989997, 40.693218] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903879, 40.858407] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903879, 40.858407] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.901033, 40.862802] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.901033, 40.862802] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.009744, 40.712563] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009744, 40.712563] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.005229, 40.720824] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.005229, 40.720824] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.941514, 40.830517] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941514, 40.830517] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.939892, 40.836012] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.939892, 40.836012] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.007938, 40.710022] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.007938, 40.710022] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.003406, 40.713233] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.003406, 40.713233] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.999826, 40.718173] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.999826, 40.718173] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.006985, 40.713272] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.006985, 40.713272] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.001826, 40.719465] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001826, 40.719465] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.013168, 40.70173] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.013168, 40.70173] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.014007, 40.704913] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.014007, 40.704913] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.011861, 40.707557] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011861, 40.707557] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.013007, 40.703142] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.013007, 40.703142] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.012974, 40.707744] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.012974, 40.707744] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.895898, 40.706225] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.895898, 40.706225] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.889577, 40.711431] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.889577, 40.711431] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.013783, 40.707512] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.013783, 40.707512] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.012188, 40.711835] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.012188, 40.711835] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.009508, 40.710367] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009508, 40.710367] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.011055, 40.706476] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011055, 40.706476] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.011131, 40.710512] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.011131, 40.710512] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.009099, 40.70682] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.009099, 40.70682] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.92727, 40.86549] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.92727, 40.86549] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993752, 40.718266] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993752, 40.718266] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.996203, 40.725296] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996203, 40.725296] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993806, 40.720246] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993806, 40.720246] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.001054, 40.718814] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001054, 40.718814] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.998041, 40.745905] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.998041, 40.745905] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.99339, 40.752287] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99339, 40.752287] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.891298, 40.746539] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.891298, 40.746539] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.000201, 40.737825] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000201, 40.737825] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.947534, 40.817905] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947534, 40.817905] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.996208, 40.738227] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.996208, 40.738227] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.99775, 40.737741] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.99775, 40.737741] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-74.002578, 40.739776] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.002578, 40.739776] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-74.001689, 40.740893] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.001689, 40.740893] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950426, 40.669938] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950426, 40.669938] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.993085, 40.697465] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.993085, 40.697465] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.956848, 40.681379] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.956848, 40.681379] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.965837, 40.683262] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.965837, 40.683262] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.903075, 40.704412] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.903075, 40.704412] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.944249, 40.79502] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.944249, 40.79502] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.955588, 40.779491] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.955588, 40.779491] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.986884, 40.699742] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.986884, 40.699742] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.990531, 40.699336] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.990531, 40.699336] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.973945, 40.686113] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.973945, 40.686113] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.950589, 40.667883] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.950589, 40.667883] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.87875, 40.886037] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.87875, 40.886037] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.994659, 40.725914] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.994659, 40.725914] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.947478, 40.7906] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947478, 40.7906] + } }, { "type": "Feature", - "properties": { "weight": 5 }, - "geometry": { "type": "Point", "coordinates": [-73.872106, 40.675376] } + "properties": { + "weight": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.872106, 40.675376] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.85147, 40.679843] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.85147, 40.679843] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.96379, 40.64094] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.96379, 40.64094] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.941616, 40.798629] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.941616, 40.798629] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.860816, 40.833225] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.860816, 40.833225] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-74.006886, 40.719318] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.006886, 40.719318] + } }, { "type": "Feature", - "properties": { "weight": 3 }, - "geometry": { "type": "Point", "coordinates": [-73.858992, 40.679371] } + "properties": { + "weight": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.858992, 40.679371] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-73.981962, 40.753821] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981962, 40.753821] + } }, { "type": "Feature", - "properties": { "weight": 13 }, - "geometry": { "type": "Point", "coordinates": [-73.997141, 40.7223] } + "properties": { + "weight": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.997141, 40.7223] + } }, { "type": "Feature", - "properties": { "weight": 15 }, - "geometry": { "type": "Point", "coordinates": [-73.937594, 40.804138] } + "properties": { + "weight": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.937594, 40.804138] + } }, { "type": "Feature", - "properties": { "weight": 7 }, - "geometry": { "type": "Point", "coordinates": [-73.981235, 40.577281] } + "properties": { + "weight": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.981235, 40.577281] + } }, { "type": "Feature", - "properties": { "weight": 11 }, - "geometry": { "type": "Point", "coordinates": [-74.002197, 40.755446] } + "properties": { + "weight": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [-74.002197, 40.755446] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.958361, 40.768802] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.958361, 40.768802] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.95177, 40.777861] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.95177, 40.777861] + } }, { "type": "Feature", - "properties": { "weight": 1 }, - "geometry": { "type": "Point", "coordinates": [-73.947066, 40.784236] } + "properties": { + "weight": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [-73.947066, 40.784236] + } } ] } diff --git a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json index 807ff1b28b..755bec7b4e 100644 --- a/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json +++ b/packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json @@ -16,190 +16,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.961791992187443, 40.650695800781364], - [-73.964294433593693, 40.650695800781364], - [-73.966796875, 40.650878906250114], - [-73.970092773437443, 40.65130615234375], - [-73.973388671875, 40.651672363281193], - [-73.97576904296875, 40.652099609375], - [-73.978210449218693, 40.652893066406307], - [-73.98138427734375, 40.653930664062614], - [-73.984497070312443, 40.655090332031364], - [-73.98760986328125, 40.65631103515625], - [-73.990478515625, 40.657897949218807], - [-73.993408203125, 40.65972900390625], - [-73.99542236328125, 40.66107177734375], - [-73.997314453125, 40.662719726562614], - [-73.999877929687386, 40.664916992187557], - [-74.002197265625, 40.667297363281364], - [-74.004516601562443, 40.669677734375057], - [-74.006591796875, 40.67230224609375], - [-74.008422851562443, 40.675109863281364], - [-74.01031494140625, 40.677917480468807], - [-74.011779785156193, 40.68072509765625], - [-74.013305664062443, 40.683715820312443], - [-74.01458740234375, 40.686706542968864], - [-74.015502929687443, 40.68890380859375], - [-74.01629638671875, 40.691284179687614], - [-74.01727294921875, 40.694274902343807], - [-74.01812744140625, 40.697326660156307], - [-74.0186767578125, 40.700500488281193], - [-74.019226074218693, 40.702697753906307], - [-74.01947021484375, 40.705078124999943], - [-74.019897460937443, 40.708129882812443], - [-74.020080566406193, 40.710327148437557], - [-74.02032470703125, 40.712707519531193], - [-74.0203857421875, 40.716308593750114], - [-74.0203857421875, 40.720092773437614], - [-74.02032470703125, 40.722900390625057], - [-74.020080566406193, 40.72589111328125], - [-74.019897460937443, 40.72930908203125], - [-74.019409179687443, 40.732727050781193], - [-74.01898193359375, 40.735473632812557], - [-74.01849365234375, 40.73809814453125], - [-74.01800537109375, 40.740722656250114], - [-74.017578124999943, 40.74267578125], - [-74.017028808593693, 40.744689941406364], - [-74.01641845703125, 40.7470703125], - [-74.015625, 40.75030517578125], - [-74.014404296875, 40.753906249999943], - [-74.013305664062443, 40.756896972656364], - [-74.01239013671875, 40.75927734375], - [-74.011413574218636, 40.761718749999943], - [-74.0103759765625, 40.764099121093807], - [-74.009216308593693, 40.76690673828125], - [-74.007873535156193, 40.769714355468864], - [-74.00677490234375, 40.771911621093807], - [-74.005615234375, 40.774108886718864], - [-74.00408935546875, 40.776672363281307], - [-74.00250244140625, 40.77947998046875], - [-74.001281738281193, 40.781494140625057], - [-73.999572753906193, 40.784118652343807], - [-73.997802734375, 40.786682128906364], - [-73.99627685546875, 40.788696289062557], - [-73.994506835937443, 40.791076660156364], - [-73.99249267578125, 40.793701171875057], - [-73.990905761718693, 40.79571533203125], - [-73.989196777343636, 40.797729492187614], - [-73.98748779296875, 40.79949951171875], - [-73.9857177734375, 40.801513671875057], - [-73.983825683593693, 40.803283691406364], - [-73.98187255859375, 40.805297851562557], - [-73.979919433593693, 40.80712890625], - [-73.9774169921875, 40.809326171875057], - [-73.97418212890625, 40.811889648437443], - [-73.97137451171875, 40.814086914062557], - [-73.9691162109375, 40.815673828125114], - [-73.966674804687443, 40.817321777343807], - [-73.964294433593693, 40.818908691406364], - [-73.961669921875, 40.82049560546875], - [-73.9591064453125, 40.821899414062557], - [-73.9564208984375, 40.823303222656364], - [-73.95440673828125, 40.824279785156193], - [-73.952270507812443, 40.825317382812557], - [-73.950073242187443, 40.826110839843807], - [-73.947875976562443, 40.826904296875114], - [-73.945678710937443, 40.827697753906364], - [-73.943420410156136, 40.8284912109375], - [-73.9403076171875, 40.82928466796875], - [-73.93798828125, 40.829895019531307], - [-73.93560791015625, 40.830322265625057], - [-73.932373046875, 40.830871582031307], - [-73.929199218749943, 40.831298828125114], - [-73.9259033203125, 40.831481933593864], - [-73.922607421874943, 40.831481933593864], - [-73.9193115234375, 40.831481933593864], - [-73.9158935546875, 40.831115722656364], - [-73.9127197265625, 40.830688476562557], - [-73.9102783203125, 40.830078125000057], - [-73.90777587890625, 40.829528808593807], - [-73.9053955078125, 40.828674316406193], - [-73.90301513671875, 40.827880859375114], - [-73.899902343749943, 40.826721191406364], - [-73.896972656249886, 40.8250732421875], - [-73.894775390624943, 40.82391357421875], - [-73.8927001953125, 40.822509765625114], - [-73.890014648437386, 40.8206787109375], - [-73.88739013671875, 40.818481445312557], - [-73.8848876953125, 40.8162841796875], - [-73.88262939453125, 40.813720703125057], - [-73.8809814453125, 40.811889648437443], - [-73.879516601562443, 40.809875488281307], - [-73.877502441406193, 40.807312011718693], - [-73.875671386718693, 40.80450439453125], - [-73.874084472656136, 40.801696777343807], - [-73.8726806640625, 40.798706054687614], - [-73.871398925781193, 40.79571533203125], - [-73.8704833984375, 40.793273925781307], - [-73.869689941406193, 40.791076660156364], - [-73.8687744140625, 40.7880859375], - [-73.867980957031136, 40.784912109375057], - [-73.867309570312443, 40.781921386718864], - [-73.866821289062443, 40.7789306640625], - [-73.86639404296875, 40.776489257812557], - [-73.8660888671875, 40.774291992187614], - [-73.86590576171875, 40.771911621093807], - [-73.865783691406193, 40.769714355468864], - [-73.865600585937386, 40.76593017578125], - [-73.865600585937386, 40.7623291015625], - [-73.86572265625, 40.75927734375], - [-73.86590576171875, 40.756530761718864], - [-73.8660888671875, 40.75372314453125], - [-73.8665771484375, 40.7501220703125], - [-73.867126464843636, 40.74688720703125], - [-73.867492675781193, 40.744079589843807], - [-73.867980957031136, 40.74212646484375], - [-73.86846923828125, 40.739501953125057], - [-73.86932373046875, 40.736328125000114], - [-73.8699951171875, 40.73388671875], - [-73.870727539062443, 40.731323242187557], - [-73.87152099609375, 40.728881835937614], - [-73.872314453125, 40.72650146484375], - [-73.873413085937443, 40.723510742187557], - [-73.87457275390625, 40.720520019531193], - [-73.875793457031193, 40.71771240234375], - [-73.8770751953125, 40.714904785156307], - [-73.878173828124943, 40.712707519531193], - [-73.8792724609375, 40.710510253906307], - [-73.8804931640625, 40.708312988281193], - [-73.881896972656193, 40.70550537109375], - [-73.883911132812386, 40.7022705078125], - [-73.885498046874943, 40.699890136718864], - [-73.88677978515625, 40.69769287109375], - [-73.88861083984375, 40.695129394531364], - [-73.890380859374943, 40.69268798828125], - [-73.89202880859375, 40.690673828125057], - [-73.893615722656193, 40.688720703125], - [-73.89520263671875, 40.686706542968864], - [-73.89691162109375, 40.6846923828125], - [-73.89862060546875, 40.682678222656307], - [-73.900390624999943, 40.680908203125], - [-73.902221679687386, 40.678894042968864], - [-73.90472412109375, 40.676513671875], - [-73.9071044921875, 40.674316406250114], - [-73.909179687499886, 40.6724853515625], - [-73.91180419921875, 40.670288085937557], - [-73.914611816406193, 40.6680908203125], - [-73.916870117187443, 40.666503906250114], - [-73.918701171874943, 40.665283203125057], - [-73.920593261718693, 40.66412353515625], - [-73.922424316406193, 40.662902832031364], - [-73.924316406249943, 40.661926269531364], - [-73.92626953125, 40.660705566406307], - [-73.928222656249943, 40.65972900390625], - [-73.9302978515625, 40.658691406250114], - [-73.932373046875, 40.657714843750114], - [-73.935180664062443, 40.656494140625], - [-73.937377929687443, 40.655517578125], - [-73.939575195312443, 40.654907226562443], - [-73.942626953124943, 40.653686523437557], - [-73.94488525390625, 40.653076171875057], - [-73.947204589843693, 40.652526855468807], - [-73.950378417968636, 40.65191650390625], - [-73.953613281249943, 40.6514892578125], - [-73.9569091796875, 40.650878906250114], - [-73.95928955078125, 40.650695800781364], - [-73.961791992187443, 40.650695800781364] + [-73.943062, 40.828517], + [-73.954059, 40.825539], + [-73.964297, 40.821839], + [-73.973743, 40.817592], + [-73.982408, 40.812939], + [-73.990332, 40.807982], + [-73.997572, 40.802794], + [-74.004185, 40.79742], + [-74.010229, 40.791885], + [-74.015753, 40.786199], + [-74.020799, 40.780359], + [-74.025399, 40.774353], + [-74.029572, 40.76816], + [-74.033324, 40.761758], + [-74.036647, 40.755117], + [-74.039516, 40.748211], + [-74.041886, 40.741012], + [-74.043691, 40.7335], + [-74.044837, 40.725667], + [-74.045205, 40.717524], + [-74.044648, 40.709112], + [-74.042995, 40.700515], + [-74.040065, 40.691868], + [-74.035686, 40.683373], + [-74.02973, 40.675291], + [-74.022154, 40.667927], + [-74.013031, 40.661598], + [-74.00257, 40.656579], + [-73.991101, 40.653056], + [-73.979028, 40.651095], + [-73.966766, 40.65064], + [-73.954682, 40.651541], + [-73.943062, 40.65359], + [-73.932093, 40.656568], + [-73.921879, 40.660265], + [-73.912452, 40.664507], + [-73.903802, 40.669155], + [-73.895887, 40.674106], + [-73.888653, 40.679288], + [-73.882042, 40.684655], + [-73.875998, 40.690183], + [-73.87047, 40.695863], + [-73.865417, 40.701696], + [-73.860808, 40.707696], + [-73.856623, 40.713883], + [-73.852857, 40.72028], + [-73.849517, 40.726915], + [-73.846629, 40.733817], + [-73.844238, 40.741012], + [-73.842411, 40.74852], + [-73.84124, 40.756351], + [-73.840847, 40.764493], + [-73.841378, 40.772906], + [-73.843007, 40.781506], + [-73.845916, 40.790158], + [-73.850278, 40.79866], + [-73.856222, 40.806752], + [-73.863796, 40.814126], + [-73.872926, 40.820467], + [-73.883402, 40.825498], + [-73.894896, 40.829032], + [-73.906999, 40.831002], + [-73.919294, 40.831463], + [-73.93141, 40.830566], + [-73.943062, 40.828517] ] ] } diff --git a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json index 4f6d1d9825..831bfbe7e5 100644 --- a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json +++ b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json @@ -19,195 +19,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.864013671875, 40.70892333984375], - [-73.8648071289062, 40.70629882812506], - [-73.86560058593739, 40.70367431640631], - [-73.86639404296875, 40.7012939453125], - [-73.86730957031244, 40.698730468750114], - [-73.8682861328125, 40.696289062500114], - [-73.86932373046875, 40.69372558593756], - [-73.87030029296875, 40.691284179687614], - [-73.87170410156239, 40.6881103515625], - [-73.8731079101562, 40.68487548828125], - [-73.87432861328125, 40.68249511718756], - [-73.87597656249994, 40.67932128906244], - [-73.87731933593744, 40.6768798828125], - [-73.8782958984375, 40.674926757812614], - [-73.87982177734375, 40.6724853515625], - [-73.88128662109375, 40.669921875000114], - [-73.88287353515625, 40.667480468750114], - [-73.88458251953125, 40.66491699218756], - [-73.88592529296875, 40.663085937500114], - [-73.88720703125, 40.66107177734375], - [-73.88909912109375, 40.658691406250114], - [-73.89111328125, 40.65612792968756], - [-73.8931884765625, 40.65368652343756], - [-73.8953247070312, 40.651123046875], - [-73.8975830078125, 40.648681640625], - [-73.90002441406239, 40.646301269531364], - [-73.9024047851562, 40.64392089843756], - [-73.9044189453125, 40.642089843750114], - [-73.9063720703125, 40.64050292968756], - [-73.90917968749989, 40.638305664062614], - [-73.9119873046875, 40.63610839843756], - [-73.9149780273437, 40.633911132812614], - [-73.91729736328125, 40.63232421875006], - [-73.919677734375, 40.63092041015625], - [-73.92297363281244, 40.62908935546881], - [-73.9263916015625, 40.62750244140625], - [-73.9298706054687, 40.62591552734369], - [-73.93347167968744, 40.62469482421881], - [-73.9371948242187, 40.62347412109375], - [-73.94091796874994, 40.62249755859375], - [-73.9447021484375, 40.621887207031364], - [-73.9486083984375, 40.62127685546881], - [-73.952392578125, 40.621093750000114], - [-73.956298828125, 40.62127685546881], - [-73.96020507812489, 40.621520996093864], - [-73.96398925781244, 40.622070312500114], - [-73.9677734375, 40.62310791015625], - [-73.97149658203125, 40.62432861328131], - [-73.97509765625, 40.625488281250114], - [-73.9785766601562, 40.6273193359375], - [-73.98187255859375, 40.62927246093756], - [-73.985107421875, 40.63153076171881], - [-73.9882202148437, 40.633728027343864], - [-73.99108886718744, 40.636474609375], - [-73.99377441406239, 40.6392822265625], - [-73.99639892578125, 40.642089843750114], - [-73.9982299804687, 40.644287109375], - [-73.99981689453125, 40.646728515625], - [-74.00140380859364, 40.64892578125006], - [-74.0029907226562, 40.6514892578125], - [-74.0048217773437, 40.65472412109369], - [-74.006103515625, 40.65728759765631], - [-74.00732421875, 40.65972900390625], - [-74.0087280273437, 40.663085937500114], - [-74.010009765625, 40.666503906250114], - [-74.01116943359375, 40.669921875000114], - [-74.01190185546875, 40.6724853515625], - [-74.0125732421875, 40.674926757812614], - [-74.0134887695312, 40.67828369140631], - [-74.01422119140625, 40.68170166015631], - [-74.0147705078125, 40.68487548828125], - [-74.0153198242187, 40.68829345703119], - [-74.01580810546875, 40.69152832031244], - [-74.01611328125, 40.69470214843756], - [-74.01641845703125, 40.6978759765625], - [-74.0164794921875, 40.700073242187614], - [-74.0166015625, 40.70251464843756], - [-74.01672363281244, 40.7047119140625], - [-74.01672363281244, 40.70709228515631], - [-74.01672363281244, 40.7100830078125], - [-74.0166015625, 40.713073730468864], - [-74.0164794921875, 40.71588134765631], - [-74.0161743164062, 40.71868896484381], - [-74.01599121093739, 40.7216796875], - [-74.0156860351562, 40.72491455078119], - [-74.0151977539062, 40.728515625000114], - [-74.0147705078125, 40.7310791015625], - [-74.014404296875, 40.73388671875], - [-74.01379394531244, 40.736511230468864], - [-74.01330566406244, 40.73907470703125], - [-74.01287841796875, 40.741088867187614], - [-74.0123291015625, 40.74371337890631], - [-74.01141357421864, 40.74688720703125], - [-74.01062011718744, 40.7501220703125], - [-74.0095825195312, 40.753295898437614], - [-74.00860595703125, 40.756530761718864], - [-74.00732421875, 40.76031494140631], - [-74.006103515625, 40.76348876953125], - [-74.005126953125, 40.76593017578125], - [-74.00408935546875, 40.76849365234381], - [-74.0029907226562, 40.77087402343744], - [-74.002197265625, 40.77288818359381], - [-74.0009765625, 40.77532958984375], - [-73.99951171875, 40.77850341796869], - [-73.99810791015625, 40.78088378906256], - [-73.99719238281244, 40.78289794921869], - [-73.99609375, 40.78472900390631], - [-73.99499511718744, 40.786499023437614], - [-73.99377441406239, 40.78851318359381], - [-73.99230957031244, 40.791076660156364], - [-73.99072265624989, 40.793518066406364], - [-73.98889160156244, 40.79608154296875], - [-73.98712158203125, 40.798522949218864], - [-73.98529052734375, 40.80108642578131], - [-73.98327636718744, 40.80352783203125], - [-73.9818115234375, 40.80548095703131], - [-73.98022460937494, 40.80731201171869], - [-73.97790527343744, 40.80969238281256], - [-73.97619628906244, 40.8115234375], - [-73.97442626953125, 40.81329345703131], - [-73.97198486328125, 40.815673828125114], - [-73.96929931640625, 40.81811523437506], - [-73.96667480468744, 40.82049560546875], - [-73.9638061523437, 40.82269287109381], - [-73.96087646484375, 40.82489013671875], - [-73.95788574218744, 40.826904296875114], - [-73.9547119140625, 40.82867431640619], - [-73.95141601562494, 40.83050537109381], - [-73.9489135742187, 40.83172607421869], - [-73.94622802734375, 40.8328857421875], - [-73.94268798828125, 40.83447265625006], - [-73.9390869140625, 40.835693359375114], - [-73.936279296875, 40.83648681640619], - [-73.93341064453125, 40.83709716796875], - [-73.92962646484375, 40.837890625], - [-73.92578125, 40.83850097656256], - [-73.921875, 40.83850097656256], - [-73.9180908203125, 40.83850097656256], - [-73.91522216796875, 40.83831787109381], - [-73.9122924804687, 40.837890625], - [-73.90948486328125, 40.8372802734375], - [-73.9066162109375, 40.83673095703125], - [-73.90380859374994, 40.835876464843864], - [-73.901123046875, 40.83489990234381], - [-73.8975219726562, 40.83331298828125], - [-73.8941040039062, 40.831481933593864], - [-73.89160156249994, 40.82989501953131], - [-73.8892822265625, 40.82830810546875], - [-73.8861694335937, 40.82592773437506], - [-73.88330078124994, 40.823303222656364], - [-73.880615234375, 40.8206787109375], - [-73.8779907226562, 40.81768798828131], - [-73.8756713867187, 40.814697265625114], - [-73.87347412109375, 40.8115234375], - [-73.87152099609375, 40.80828857421875], - [-73.8701171875, 40.805725097656364], - [-73.8687133789062, 40.803283691406364], - [-73.86712646484364, 40.7999267578125], - [-73.86572265625, 40.79669189453125], - [-73.8643798828125, 40.79309082031256], - [-73.86322021484375, 40.78967285156256], - [-73.86248779296875, 40.78729248046875], - [-73.8616943359375, 40.78472900390631], - [-73.8609008789062, 40.781311035156364], - [-73.8604125976562, 40.778686523437614], - [-73.85980224609375, 40.77630615234381], - [-73.85931396484375, 40.77307128906256], - [-73.85888671874994, 40.77069091796869], - [-73.85858154296875, 40.76812744140631], - [-73.8582763671875, 40.76507568359381], - [-73.85797119140614, 40.761901855468864], - [-73.85791015625, 40.75952148437506], - [-73.8577880859375, 40.757324218750114], - [-73.85772705078125, 40.754272460937614], - [-73.85772705078125, 40.75128173828125], - [-73.8577880859375, 40.74829101562506], - [-73.8577880859375, 40.745300292968864], - [-73.85809326171875, 40.74169921874994], - [-73.8582763671875, 40.73828125], - [-73.85858154296875, 40.73547363281256], - [-73.85900878906244, 40.73272705078119], - [-73.85949707031239, 40.7291259765625], - [-73.86022949218744, 40.72509765624994], - [-73.86071777343744, 40.72247314453125], - [-73.86108398437494, 40.72052001953119], - [-73.8616943359375, 40.7178955078125], - [-73.8623046875, 40.71527099609381], - [-73.86322021484375, 40.712097167968864], - [-73.864013671875, 40.70892333984375] + [-73.937242, 40.836186], + [-73.95061, 40.832464], + [-73.962925, 40.827467], + [-73.974045, 40.821573], + [-73.983949, 40.815099], + [-73.992697, 40.808283], + [-74.00039, 40.801291], + [-74.007142, 40.794228], + [-74.013069, 40.787155], + [-74.018273, 40.780095], + [-74.022843, 40.773051], + [-74.026852, 40.76601], + [-74.030356, 40.758945], + [-74.033397, 40.751824], + [-74.035999, 40.744608], + [-74.038172, 40.737256], + [-74.039907, 40.729722], + [-74.041179, 40.721963], + [-74.041939, 40.713935], + [-74.042117, 40.705603], + [-74.041611, 40.696944], + [-74.04029, 40.687956], + [-74.037986, 40.678674], + [-74.034501, 40.669186], + [-74.029617, 40.659656], + [-74.023121, 40.650342], + [-74.01485, 40.641608], + [-74.004753, 40.633898], + [-73.992947, 40.627687], + [-73.979755, 40.623387], + [-73.96568, 40.621247], + [-73.951317, 40.621297], + [-73.937242, 40.62335], + [-73.923915, 40.62707], + [-73.911634, 40.632063], + [-73.90054, 40.637951], + [-73.890654, 40.644418], + [-73.881917, 40.651226], + [-73.87423, 40.65821], + [-73.867477, 40.665265], + [-73.861546, 40.672331], + [-73.856334, 40.679384], + [-73.851753, 40.686421], + [-73.84773, 40.693457], + [-73.844209, 40.700516], + [-73.841151, 40.707632], + [-73.838529, 40.714843], + [-73.836335, 40.722192], + [-73.834577, 40.729722], + [-73.833281, 40.737479], + [-73.832495, 40.745506], + [-73.832291, 40.753837], + [-73.83277, 40.762497], + [-73.834065, 40.771488], + [-73.836343, 40.780774], + [-73.839806, 40.790268], + [-73.844672, 40.799806], + [-73.851158, 40.809129], + [-73.859428, 40.817876], + [-73.869536, 40.825598], + [-73.881366, 40.831822], + [-73.894592, 40.836133], + [-73.908711, 40.838281], + [-73.923121, 40.838237], + [-73.937242, 40.836186] ] ] } @@ -221,7 +97,7 @@ "semiMinorAxis": 0.11116279583689635, "numberOfFeatures": 473, "angle": 16.480444767293083, - "percentageWithinEllipse": 67.65327695560254 + "percentageWithinEllipse": 71.88160676532769 }, "fill": "#FFF", "stroke": "#0A0", @@ -233,71 +109,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.86425018206197, 40.70817327168436], - [-73.86229362069408, 40.71539493318482], - [-73.86066196462228, 40.722756867270895], - [-73.85936208961321, 40.73030348582415], - [-73.85841504334654, 40.73807936958905], - [-73.85785804056273, 40.74612659590878], - [-73.85774708165933, 40.754480588538456], - [-73.85815997375734, 40.76316364909264], - [-73.859199167547, 40.77217517924255], - [-73.86099317541081, 40.781477665342415], - [-73.86369434043719, 40.79097814737647], - [-73.86746951914185, 40.8005067351386], - [-73.87247949307088, 40.809797379032936], - [-73.87884419223703, 40.81848131749522], - [-73.88659622795889, 40.82610771059877], - [-73.89563531096549, 40.832202836993005], - [-73.90570589866341, 40.836363029417214], - [-73.91641896720802, 40.838351521294626], - [-73.92731929245234, 40.83815531494918], - [-73.9379728415863, 40.83597407208024], - [-73.94803773180242, 40.83215070084145], - [-73.95729603850374, 40.82708121765624], - [-73.9656477572392, 40.821140278912516], - [-73.97308304184949, 40.814638587275496], - [-73.97964946042646, 40.80780946881659], - [-73.98542425881847, 40.80081380566669], - [-73.9904948544156, 40.793752992628335], - [-73.99494688213429, 40.78668327170549], - [-73.99885775898814, 40.77962826314589], - [-74.00229374454675, 40.77258871286213], - [-74.00530895641558, 40.76554956348073], - [-74.00794530937128, 40.75848486121402], - [-74.01023273548554, 40.751361083495325], - [-74.01218929685344, 40.744139421994866], - [-74.01382095292523, 40.73677748790879], - [-74.0151208279343, 40.72923086935553], - [-74.01606787420097, 40.72145498559063], - [-74.01662487698478, 40.71340775927091], - [-74.01673583588818, 40.70505376664123], - [-74.01632294379017, 40.696370706087045], - [-74.0152837500005, 40.68735917593713], - [-74.0134897421367, 40.67805668983727], - [-74.01078857711032, 40.66855620780321], - [-74.00701339840566, 40.65902762004109], - [-74.00200342447663, 40.64973697614675], - [-73.99563872531049, 40.641053037684465], - [-73.98788668958862, 40.633426644580915], - [-73.97884760658202, 40.62733151818668], - [-73.9687770188841, 40.62317132576247], - [-73.9580639503395, 40.62118283388506], - [-73.94716362509517, 40.62137904023051], - [-73.93651007596121, 40.623560283099444], - [-73.9264451857451, 40.62738365433823], - [-73.91718687904377, 40.63245313752344], - [-73.90883516030831, 40.63839407626717], - [-73.90139987569802, 40.64489576790419], - [-73.89483345712105, 40.65172488636309], - [-73.88905865872904, 40.65872054951299], - [-73.88398806313191, 40.66578136255135], - [-73.87953603541322, 40.67285108347419], - [-73.87562515855937, 40.6799060920338], - [-73.87218917300076, 40.68694564231755], - [-73.86917396113193, 40.69398479169895], - [-73.86653760817623, 40.70104949396566], - [-73.86425018206197, 40.70817327168436] + [-74.03359324546851, 40.75132103218129], + [-74.02980293400115, 40.76012863103802], + [-74.02528552411586, 40.76887197102854], + [-74.0200350928131, 40.777482909918255], + [-74.01405082863232, 40.7858879763643], + [-74.00733773756559, 40.79400823663968], + [-73.99990742755185, 40.801759182943094], + [-73.99177898248347, 40.80905064919711], + [-73.98297993893047, 40.81578676164539], + [-73.97354738172352, 40.821865933378426], + [-73.96352917838684, 40.82718091429612], + [-73.9529853775278, 40.8316189111703], + [-73.94198980319563, 40.835061796717234], + [-73.93063188669697, 40.8373864324002], + [-73.919018790595, 40.8384651377768], + [-73.90727789847813, 40.83816635070532], + [-73.89555977154562, 40.83635553942771], + [-73.88443014504873, 40.83304344443191], + [-73.87437098343747, 40.82845426835252], + [-73.86541133661937, 40.82276283715078], + [-73.85756288120297, 40.8161319079139], + [-73.8508231008489, 40.80871263328326], + [-73.84517788429955, 40.80064504272652], + [-73.8406036708805, 40.79205853130578], + [-73.83706923820884, 40.78307234930186], + [-73.83453720269986, 40.77379608793092], + [-73.83296528646396, 40.76433015771664], + [-73.83230739197033, 40.75476625704031], + [-73.83251451691409, 40.74518782909243], + [-73.8335355350701, 40.73567050597184], + [-73.83531786388474, 40.72628253907192], + [-73.83780803569908, 40.71708521519108], + [-73.84095218649749, 40.70813325803411], + [-73.84476451396527, 40.699331854062216], + [-73.84930090197322, 40.690595566053084], + [-73.85456655089425, 40.68199237410667], + [-73.86056159765634, 40.67359555113398], + [-73.86728043775769, 40.66548379754552], + [-73.87471097122668, 40.657741355762894], + [-73.88283376112537, 40.650458098876975], + [-73.89162109071555, 40.64372958637409], + [-73.90103590221698, 40.63765707803131], + [-73.91103059593168, 40.63234749469166], + [-73.92154566302204, 40.62791331145134], + [-73.93250811787672, 40.624472364501344], + [-73.94382968598299, 40.6221475469883], + [-73.95540468933167, 40.62106636106392], + [-73.9671075517279, 40.62136028164354], + [-73.97878981795107, 40.62316387047818], + [-73.98988907748351, 40.626466916318215], + [-73.99992569571032, 40.63104607657647], + [-74.00887104266555, 40.63672711589932], + [-74.01671341138922, 40.64334780103107], + [-74.02345492440752, 40.65075742560566], + [-74.02910901786136, 40.658816323886754], + [-74.0336983714282, 40.667395381445], + [-74.03725318812609, 40.67637554829524], + [-74.03980975286483, 40.68564735834254], + [-74.04140921605757, 40.69511045782774], + [-74.04209656113622, 40.704673144647536], + [-74.04191972396667, 40.71425191984239], + [-74.0409288389554, 40.723771052124086], + [-74.03917559175294, 40.73316215600696], + [-74.03671266236184, 40.742363783879206], + [-74.03359324546851, 40.75132103218129] ] ] } diff --git a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json index f05217ac46..b9af10aef2 100644 --- a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json +++ b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json @@ -19,190 +19,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.96179199218744, 40.650695800781364], - [-73.9642944335937, 40.650695800781364], - [-73.966796875, 40.650878906250114], - [-73.97009277343744, 40.65130615234375], - [-73.973388671875, 40.65167236328119], - [-73.97576904296875, 40.652099609375], - [-73.9782104492187, 40.65289306640631], - [-73.98138427734375, 40.653930664062614], - [-73.98449707031244, 40.655090332031364], - [-73.98760986328125, 40.65631103515625], - [-73.990478515625, 40.65789794921881], - [-73.993408203125, 40.65972900390625], - [-73.99542236328125, 40.66107177734375], - [-73.997314453125, 40.662719726562614], - [-73.99987792968739, 40.66491699218756], - [-74.002197265625, 40.667297363281364], - [-74.00451660156244, 40.66967773437506], - [-74.006591796875, 40.67230224609375], - [-74.00842285156244, 40.675109863281364], - [-74.01031494140625, 40.67791748046881], - [-74.0117797851562, 40.68072509765625], - [-74.01330566406244, 40.68371582031244], - [-74.01458740234375, 40.686706542968864], - [-74.01550292968744, 40.68890380859375], - [-74.01629638671875, 40.691284179687614], - [-74.01727294921875, 40.69427490234381], - [-74.01812744140625, 40.69732666015631], - [-74.0186767578125, 40.70050048828119], - [-74.0192260742187, 40.70269775390631], - [-74.01947021484375, 40.70507812499994], - [-74.01989746093744, 40.70812988281244], - [-74.0200805664062, 40.71032714843756], - [-74.02032470703125, 40.71270751953119], - [-74.0203857421875, 40.716308593750114], - [-74.0203857421875, 40.720092773437614], - [-74.02032470703125, 40.72290039062506], - [-74.0200805664062, 40.72589111328125], - [-74.01989746093744, 40.72930908203125], - [-74.01940917968744, 40.73272705078119], - [-74.01898193359375, 40.73547363281256], - [-74.01849365234375, 40.73809814453125], - [-74.01800537109375, 40.740722656250114], - [-74.01757812499994, 40.74267578125], - [-74.0170288085937, 40.744689941406364], - [-74.01641845703125, 40.7470703125], - [-74.015625, 40.75030517578125], - [-74.014404296875, 40.75390624999994], - [-74.01330566406244, 40.756896972656364], - [-74.01239013671875, 40.75927734375], - [-74.01141357421864, 40.76171874999994], - [-74.0103759765625, 40.76409912109381], - [-74.0092163085937, 40.76690673828125], - [-74.0078735351562, 40.769714355468864], - [-74.00677490234375, 40.77191162109381], - [-74.005615234375, 40.774108886718864], - [-74.00408935546875, 40.77667236328131], - [-74.00250244140625, 40.77947998046875], - [-74.0012817382812, 40.78149414062506], - [-73.9995727539062, 40.78411865234381], - [-73.997802734375, 40.786682128906364], - [-73.99627685546875, 40.78869628906256], - [-73.99450683593744, 40.791076660156364], - [-73.99249267578125, 40.79370117187506], - [-73.9909057617187, 40.79571533203125], - [-73.98919677734364, 40.797729492187614], - [-73.98748779296875, 40.79949951171875], - [-73.9857177734375, 40.80151367187506], - [-73.9838256835937, 40.803283691406364], - [-73.98187255859375, 40.80529785156256], - [-73.9799194335937, 40.80712890625], - [-73.9774169921875, 40.80932617187506], - [-73.97418212890625, 40.81188964843744], - [-73.97137451171875, 40.81408691406256], - [-73.9691162109375, 40.815673828125114], - [-73.96667480468744, 40.81732177734381], - [-73.9642944335937, 40.818908691406364], - [-73.961669921875, 40.82049560546875], - [-73.9591064453125, 40.82189941406256], - [-73.9564208984375, 40.823303222656364], - [-73.95440673828125, 40.82427978515619], - [-73.95227050781244, 40.82531738281256], - [-73.95007324218744, 40.82611083984381], - [-73.94787597656244, 40.826904296875114], - [-73.94567871093744, 40.827697753906364], - [-73.94342041015614, 40.8284912109375], - [-73.9403076171875, 40.82928466796875], - [-73.93798828125, 40.82989501953131], - [-73.93560791015625, 40.83032226562506], - [-73.932373046875, 40.83087158203131], - [-73.92919921874994, 40.831298828125114], - [-73.9259033203125, 40.831481933593864], - [-73.92260742187494, 40.831481933593864], - [-73.9193115234375, 40.831481933593864], - [-73.9158935546875, 40.831115722656364], - [-73.9127197265625, 40.83068847656256], - [-73.9102783203125, 40.83007812500006], - [-73.90777587890625, 40.82952880859381], - [-73.9053955078125, 40.82867431640619], - [-73.90301513671875, 40.827880859375114], - [-73.89990234374994, 40.826721191406364], - [-73.89697265624989, 40.8250732421875], - [-73.89477539062494, 40.82391357421875], - [-73.8927001953125, 40.822509765625114], - [-73.89001464843739, 40.8206787109375], - [-73.88739013671875, 40.81848144531256], - [-73.8848876953125, 40.8162841796875], - [-73.88262939453125, 40.81372070312506], - [-73.8809814453125, 40.81188964843744], - [-73.87951660156244, 40.80987548828131], - [-73.8775024414062, 40.80731201171869], - [-73.8756713867187, 40.80450439453125], - [-73.87408447265614, 40.80169677734381], - [-73.8726806640625, 40.798706054687614], - [-73.8713989257812, 40.79571533203125], - [-73.8704833984375, 40.79327392578131], - [-73.8696899414062, 40.791076660156364], - [-73.8687744140625, 40.7880859375], - [-73.86798095703114, 40.78491210937506], - [-73.86730957031244, 40.781921386718864], - [-73.86682128906244, 40.7789306640625], - [-73.86639404296875, 40.77648925781256], - [-73.8660888671875, 40.774291992187614], - [-73.86590576171875, 40.77191162109381], - [-73.8657836914062, 40.769714355468864], - [-73.86560058593739, 40.76593017578125], - [-73.86560058593739, 40.7623291015625], - [-73.86572265625, 40.75927734375], - [-73.86590576171875, 40.756530761718864], - [-73.8660888671875, 40.75372314453125], - [-73.8665771484375, 40.7501220703125], - [-73.86712646484364, 40.74688720703125], - [-73.8674926757812, 40.74407958984381], - [-73.86798095703114, 40.74212646484375], - [-73.86846923828125, 40.73950195312506], - [-73.86932373046875, 40.736328125000114], - [-73.8699951171875, 40.73388671875], - [-73.87072753906244, 40.73132324218756], - [-73.87152099609375, 40.728881835937614], - [-73.872314453125, 40.72650146484375], - [-73.87341308593744, 40.72351074218756], - [-73.87457275390625, 40.72052001953119], - [-73.8757934570312, 40.71771240234375], - [-73.8770751953125, 40.71490478515631], - [-73.87817382812494, 40.71270751953119], - [-73.8792724609375, 40.71051025390631], - [-73.8804931640625, 40.70831298828119], - [-73.8818969726562, 40.70550537109375], - [-73.88391113281239, 40.7022705078125], - [-73.88549804687494, 40.699890136718864], - [-73.88677978515625, 40.69769287109375], - [-73.88861083984375, 40.695129394531364], - [-73.89038085937494, 40.69268798828125], - [-73.89202880859375, 40.69067382812506], - [-73.8936157226562, 40.688720703125], - [-73.89520263671875, 40.686706542968864], - [-73.89691162109375, 40.6846923828125], - [-73.89862060546875, 40.68267822265631], - [-73.90039062499994, 40.680908203125], - [-73.90222167968739, 40.678894042968864], - [-73.90472412109375, 40.676513671875], - [-73.9071044921875, 40.674316406250114], - [-73.90917968749989, 40.6724853515625], - [-73.91180419921875, 40.67028808593756], - [-73.9146118164062, 40.6680908203125], - [-73.91687011718744, 40.666503906250114], - [-73.91870117187494, 40.66528320312506], - [-73.9205932617187, 40.66412353515625], - [-73.9224243164062, 40.662902832031364], - [-73.92431640624994, 40.661926269531364], - [-73.92626953125, 40.66070556640631], - [-73.92822265624994, 40.65972900390625], - [-73.9302978515625, 40.658691406250114], - [-73.932373046875, 40.657714843750114], - [-73.93518066406244, 40.656494140625], - [-73.93737792968744, 40.655517578125], - [-73.93957519531244, 40.65490722656244], - [-73.94262695312494, 40.65368652343756], - [-73.94488525390625, 40.65307617187506], - [-73.9472045898437, 40.65252685546881], - [-73.95037841796864, 40.65191650390625], - [-73.95361328124994, 40.6514892578125], - [-73.9569091796875, 40.650878906250114], - [-73.95928955078125, 40.650695800781364], - [-73.96179199218744, 40.650695800781364] + [-73.943062, 40.828517], + [-73.954059, 40.825539], + [-73.964297, 40.821839], + [-73.973743, 40.817592], + [-73.982408, 40.812939], + [-73.990332, 40.807982], + [-73.997572, 40.802794], + [-74.004185, 40.79742], + [-74.010229, 40.791885], + [-74.015753, 40.786199], + [-74.020799, 40.780359], + [-74.025399, 40.774353], + [-74.029572, 40.76816], + [-74.033324, 40.761758], + [-74.036647, 40.755117], + [-74.039516, 40.748211], + [-74.041886, 40.741012], + [-74.043691, 40.7335], + [-74.044837, 40.725667], + [-74.045205, 40.717524], + [-74.044648, 40.709112], + [-74.042995, 40.700515], + [-74.040065, 40.691868], + [-74.035686, 40.683373], + [-74.02973, 40.675291], + [-74.022154, 40.667927], + [-74.013031, 40.661598], + [-74.00257, 40.656579], + [-73.991101, 40.653056], + [-73.979028, 40.651095], + [-73.966766, 40.65064], + [-73.954682, 40.651541], + [-73.943062, 40.65359], + [-73.932093, 40.656568], + [-73.921879, 40.660265], + [-73.912452, 40.664507], + [-73.903802, 40.669155], + [-73.895887, 40.674106], + [-73.888653, 40.679288], + [-73.882042, 40.684655], + [-73.875998, 40.690183], + [-73.87047, 40.695863], + [-73.865417, 40.701696], + [-73.860808, 40.707696], + [-73.856623, 40.713883], + [-73.852857, 40.72028], + [-73.849517, 40.726915], + [-73.846629, 40.733817], + [-73.844238, 40.741012], + [-73.842411, 40.74852], + [-73.84124, 40.756351], + [-73.840847, 40.764493], + [-73.841378, 40.772906], + [-73.843007, 40.781506], + [-73.845916, 40.790158], + [-73.850278, 40.79866], + [-73.856222, 40.806752], + [-73.863796, 40.814126], + [-73.872926, 40.820467], + [-73.883402, 40.825498], + [-73.894896, 40.829032], + [-73.906999, 40.831002], + [-73.919294, 40.831463], + [-73.93141, 40.830566], + [-73.943062, 40.828517] ] ] } @@ -216,7 +97,7 @@ "semiMinorAxis": 0.095782813512421, "numberOfFeatures": 473, "angle": 29.231003681507175, - "percentageWithinEllipse": 57.505285412262154 + "percentageWithinEllipse": 60.46511627906977 }, "fill": "#FFF", "stroke": "#0A0", @@ -228,71 +109,71 @@ "type": "Polygon", "coordinates": [ [ - [-73.88136916881253, 40.70653072317669], - [-73.87814030470469, 40.71268175889811], - [-73.87522933224423, 40.71903809497184], - [-73.87264031979436, 40.725626827270155], - [-73.87038974791109, 40.732476417519145], - [-73.86850839929355, 40.73961395476652], - [-73.86704357528771, 40.747061369952846], - [-73.86606140876805, 40.75483009265435], - [-73.86564874379035, 40.76291364869353], - [-73.86591359639542, 40.771277898699964], - [-73.86698261753159, 40.77984920362209], - [-73.86899342126398, 40.78850199731926], - [-73.87207957481831, 40.79704912600922], - [-73.87634724335821, 40.80524043131959], - [-73.88184567550383, 40.8127760049781], - [-73.88853860560636, 40.819338137367616], - [-73.89628776244074, 40.82463889834789], - [-73.904858870295, 40.82847081807099], - [-73.9139525628125, 40.8307427448419], - [-73.92325111432643, 40.831487436835545], - [-73.93246477374285, 40.830840167484844], - [-73.94136369135974, 40.828999782239435], - [-73.94979018997724, 40.82618761377627], - [-73.95765462382637, 40.8226153939496], - [-73.96492195464074, 40.818466089440754], - [-73.97159566686506, 40.81388616195557], - [-73.97770316301975, 40.80898552993454], - [-73.98328435019002, 40.80384159641086], - [-73.98838356144428, 40.7985047476063], - [-73.99304423000417, 40.793003826869224], - [-73.99730554500583, 40.787350900793186], - [-74.00120038457646, 40.781545128349585], - [-74.0047539703658, 40.775575804107184], - [-74.00798283447364, 40.76942476838577], - [-74.01089380693409, 40.76306843231203], - [-74.01348281938397, 40.75647970001372], - [-74.01573339126723, 40.74963010976473], - [-74.01761473988478, 40.74249257251736], - [-74.01907956389061, 40.73504515733103], - [-74.02006173041028, 40.72727643462952], - [-74.02047439538798, 40.71919287859035], - [-74.02020954278291, 40.71082862858391], - [-74.01914052164673, 40.70225732366178], - [-74.01712971791434, 40.69360452996462], - [-74.01404356436001, 40.685057401274655], - [-74.00977589582011, 40.676866095964286], - [-74.0042774636745, 40.66933052230578], - [-73.99758453357197, 40.66276838991626], - [-73.98983537673759, 40.65746762893598], - [-73.98126426888332, 40.653635709212885], - [-73.97217057636583, 40.651363782441976], - [-73.96287202485189, 40.65061909044833], - [-73.95365836543547, 40.65126635979903], - [-73.94475944781858, 40.65310674504444], - [-73.93633294920109, 40.655918913507605], - [-73.92846851535195, 40.65949113333428], - [-73.92120118453758, 40.66364043784312], - [-73.91452747231327, 40.6682203653283], - [-73.90841997615857, 40.673120997349336], - [-73.9028387889883, 40.67826493087301], - [-73.89773957773404, 40.68360177967757], - [-73.89307890917415, 40.68910270041465], - [-73.8888175941725, 40.69475562649069], - [-73.88492275460186, 40.70056139893429], - [-73.88136916881253, 40.70653072317669] + [-74.02452801068807, 40.775547173294186], + [-74.01893422646326, 40.78259752726428], + [-74.01268414445943, 40.78943811380472], + [-74.00579638065156, 40.796006107373], + [-73.99829617235616, 40.80223594694747], + [-73.99021592245862, 40.80805957219015], + [-73.98159576262077, 40.8134067167014], + [-73.9724841338293, 40.81820526653445], + [-73.9629383821334, 40.82238169342446], + [-73.95302536680158, 40.8258615737414], + [-73.94282207737366, 40.82857020607593], + [-73.93241625516164, 40.83043334270903], + [-73.92190701361201, 40.831378053136305], + [-73.91140545051374, 40.83133374149704], + [-73.90103524323057, 40.83023334445488], + [-73.89093321581471, 40.82801474214651], + [-73.88124986383536, 40.82462242277314], + [-73.87237279234334, 40.82014233496311], + [-73.86460097509195, 40.81477985802708], + [-73.85795003463295, 40.80866105611467], + [-73.85242093101229, 40.80190655870187], + [-73.84800215245467, 40.79463104771375], + [-73.84467163625422, 40.786942903004004], + [-73.84239845801515, 40.77894397546494], + [-73.84114432030273, 40.77072946332155], + [-73.84086486634928, 40.76238787196388], + [-73.84151084025547, 40.75400104139124], + [-73.8430291118138, 40.7456442282593], + [-73.84536358143308, 40.73738623183474], + [-73.84845597849838, 40.72928955501612], + [-73.85224656474314, 40.72141059307866], + [-73.85667475275184, 40.71379984402171], + [-73.86167964848912, 40.70650213540208], + [-73.86728368644258, 40.69945937985531], + [-73.87354025396233, 40.69262664020811], + [-73.88043036281451, 40.68606650975553], + [-73.88792850688942, 40.67984429861887], + [-73.89600213853876, 40.67402780376825], + [-73.90461112478266, 40.668687023307626], + [-73.91370718412121, 40.66389380684423], + [-73.92323330506247, 40.659721432427446], + [-73.93312314796478, 40.656244098923295], + [-73.94330043241949, 40.653536320714245], + [-73.953678313213, 40.65167220918066], + [-73.96415874896458, 40.65072462239258], + [-73.9746318689202, 40.650764160635475], + [-73.98497534519998, 40.651857980554134], + [-73.99505378020882, 40.65406839446653], + [-74.00471812214236, 40.657451213261425], + [-74.01358239966163, 40.66192116955677], + [-74.02134836223475, 40.66727365770246], + [-74.02800018349505, 40.67338307986641], + [-74.03353641529728, 40.68012919335254], + [-74.03796786068695, 40.687397618451094], + [-74.04131571419732, 40.695080192396205], + [-74.04360992940073, 40.70307519921561], + [-74.04488778136994, 40.7112874990724], + [-74.04519259763617, 40.71962857599848], + [-74.04457263584214, 40.72801651930139], + [-74.04308008991914, 40.73637595110584], + [-74.04077020950417, 40.744637910270065], + [-74.03770051963454, 40.75273970114755], + [-74.03393012963858, 40.76062471424352], + [-74.02951912168086, 40.76824222466161], + [-74.02452801068807, 40.775547173294186] ] ] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6dc1639844..78f46c395b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2861,15 +2861,18 @@ importers: packages/turf-ellipse: dependencies: + '@turf/destination': + specifier: workspace:^ + version: link:../turf-destination + '@turf/distance': + specifier: workspace:^ + version: link:../turf-distance '@turf/helpers': specifier: workspace:^ version: link:../turf-helpers '@turf/invariant': specifier: workspace:^ version: link:../turf-invariant - '@turf/rhumb-destination': - specifier: workspace:^ - version: link:../turf-rhumb-destination '@turf/transform-rotate': specifier: workspace:^ version: link:../turf-transform-rotate @@ -2883,15 +2886,18 @@ importers: '@placemarkio/check-geojson': specifier: ^0.1.12 version: 0.1.12 + '@turf/area': + specifier: workspace:^ + version: link:../turf-area '@turf/bbox-polygon': specifier: workspace:^ version: link:../turf-bbox-polygon '@turf/circle': specifier: workspace:^ version: link:../turf-circle - '@turf/destination': + '@turf/intersect': specifier: workspace:^ - version: link:../turf-destination + version: link:../turf-intersect '@turf/truncate': specifier: workspace:^ version: link:../turf-truncate