├── .github ├── turf-logo.png └── workflows │ ├── dart-pub-publish-on-pr.yml │ ├── dart-pub-publish.yml │ ├── dart-unit-tests-on-pr.yml │ ├── dart-unit-tests.yml │ └── pr-code-coverage-reporting.yml ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Progress.md ├── README.md ├── analysis_options.yaml ├── benchmark ├── area_benchmark.dart ├── cluster_benchmark.dart ├── explode_benchmark.dart ├── line_segment_benchmark.dart ├── meta_benchmark.dart └── polygon_smooth_benchmark.dart ├── example └── main.dart ├── lib ├── along.dart ├── area.dart ├── bbox.dart ├── bbox_polygon.dart ├── bearing.dart ├── boolean.dart ├── center.dart ├── centroid.dart ├── circle.dart ├── clean_coords.dart ├── clusters.dart ├── destination.dart ├── distance.dart ├── explode.dart ├── extensions.dart ├── helpers.dart ├── invariant.dart ├── length.dart ├── line_intersect.dart ├── line_overlap.dart ├── line_segment.dart ├── line_slice.dart ├── line_slice_along.dart ├── line_to_polygon.dart ├── meta.dart ├── midpoint.dart ├── nearest_point.dart ├── nearest_point_on_line.dart ├── point_to_line_distance.dart ├── polygon_smooth.dart ├── polygon_tangents.dart ├── polygon_to_line.dart ├── polyline.dart ├── simplify.dart ├── square.dart ├── src │ ├── along.dart │ ├── area.dart │ ├── bbox.dart │ ├── bbox_polygon.dart │ ├── bearing.dart │ ├── booleans │ │ ├── boolean_clockwise.dart │ │ ├── boolean_concave.dart │ │ ├── boolean_contains.dart │ │ ├── boolean_crosses.dart │ │ ├── boolean_disjoint.dart │ │ ├── boolean_equal.dart │ │ ├── boolean_helper.dart │ │ ├── boolean_intersects.dart │ │ ├── boolean_overlap.dart │ │ ├── boolean_parallel.dart │ │ ├── boolean_point_in_polygon.dart │ │ ├── boolean_point_on_line.dart │ │ ├── boolean_touches.dart │ │ ├── boolean_valid.dart │ │ └── boolean_within.dart │ ├── center.dart │ ├── centroid.dart │ ├── circle.dart │ ├── clean_coords.dart │ ├── destination.dart │ ├── distance.dart │ ├── explode.dart │ ├── helpers.dart │ ├── intersection.dart │ ├── invariant.dart │ ├── length.dart │ ├── line_intersect.dart │ ├── line_overlap.dart │ ├── line_segment.dart │ ├── line_slice.dart │ ├── line_slice_along.dart │ ├── line_to_polygon.dart │ ├── meta │ │ ├── cluster.dart │ │ ├── coord.dart │ │ ├── extensions.dart │ │ ├── feature.dart │ │ ├── flatten.dart │ │ ├── geom.dart │ │ ├── prop.dart │ │ └── short_circuit.dart │ ├── midpoint.dart │ ├── nearest_point.dart │ ├── nearest_point_on_line.dart │ ├── point_to_line_distance.dart │ ├── polygon_smooth.dart │ ├── polygon_tangents.dart │ ├── polygon_to_line.dart │ ├── polyline.dart │ ├── rhumb_bearing.dart │ ├── rhumb_destination.dart │ ├── rhumb_distance.dart │ ├── simplify.dart │ ├── square.dart │ ├── transform_rotate.dart │ └── truncate.dart ├── transform.dart ├── truncate.dart └── turf.dart ├── mac-gen-coverage.sh ├── pubspec.yaml └── test ├── booleans ├── clockwise_test.dart ├── concave_test.dart ├── contains_test.dart ├── crosses_test.dart ├── disjoint_test.dart ├── equal_test.dart ├── intersects_test.dart ├── overlap_test.dart ├── parallel_test.dart ├── point_in_polygon_test.dart ├── point_on_line_test.dart ├── touches_test.dart ├── valid_test.dart └── within_test.dart ├── components ├── along_test.dart ├── area_test.dart ├── bbox_polygon_test.dart ├── bbox_test.dart ├── bearing_test.dart ├── center_test.dart ├── centroid_test.dart ├── circle_test.dart ├── clean_coords_test.dart ├── cluster_test.dart ├── destination_test.dart ├── explode_test.dart ├── geojson_test.dart ├── helpers_test.dart ├── intersection_test.dart ├── invariant_test.dart ├── length_test.dart ├── line_intersect_test.dart ├── line_overlap_test.dart ├── line_segment_test.dart ├── line_slice_along_test.dart ├── line_slice_test.dart ├── line_to_polygon_test.dart ├── meta_test.dart ├── midpoint_test.dart ├── nearest_point_on_line_test.dart ├── point_to_line_distance_test.dart ├── polygon_smooth_test.dart ├── polygon_tangents_test.dart ├── polygon_to_line_test.dart ├── polyline.dart ├── rhumb_bearing_test.dart ├── rhumb_destination_test.dart ├── rhumb_distance_test.dart ├── simplify_test.dart ├── square_test.dart ├── transform_rotate_test.dart └── truncate_test.dart ├── context ├── helper.dart ├── load_test_cases.dart └── matcher.dart ├── examples ├── bbox │ ├── geometryCollection.geojson │ ├── lineString.geojson │ ├── multiLineString.geojson │ ├── multiPoint.geojson │ ├── multiPolygon.geojson │ ├── point.geojson │ └── polygon.geojson ├── booleans │ ├── clockwise │ │ ├── false │ │ │ └── counter-clockwise-line.geojson │ │ └── true │ │ │ └── clockwise-line.geojson │ ├── concave │ │ ├── false │ │ │ ├── 3vertices.geojson │ │ │ ├── diamond.geojson │ │ │ └── square.geojson │ │ └── true │ │ │ ├── polygon.geojson │ │ │ └── polygon2.geojson │ ├── contains │ │ ├── diagrams │ │ │ └── esri-contains.gif │ │ └── test │ │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ └── LineIsNotContainedByLine.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineIsNotContainedByPolygon.geojson │ │ │ │ │ └── LineIsNotContainedByPolygonBoundary.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── LineString │ │ │ │ │ ├── MultiPointsIsNotContainedByLine.geojson │ │ │ │ │ └── MultiPointsOnLineEndsIsNotContainedByLine.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── MultiPointIsNotContainedByMultiPoint.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── MultiPointAllOnBoundaryIsNotContainedByPolygon.geojson │ │ │ │ │ └── MultiPointIsNotContainedByPolygon.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointIsNotContainedByLine.geojson │ │ │ │ │ ├── PointIsNotContainedByLineBecauseOnEnd.geojson │ │ │ │ │ └── PointOnEndIsContainedByLinestring.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── PointIsNotContainedBYMultiPoint.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointIsNotContainedByPolygon.geojson │ │ │ │ │ └── PointOnPolygonBoundary.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ └── issue-#1201-false.geojson │ │ │ │ └── Polygon │ │ │ │ ├── Polygon-Polygon.geojson │ │ │ │ └── Polygon-Polygon2.geojson │ │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ ├── LineIsContainedByLine.geojson │ │ │ │ └── LinesExactlySame.geojson │ │ │ └── Polygon │ │ │ │ ├── LineIsContainedByPolygon.geojson │ │ │ │ └── LineIsContainedByPolygonWithNoInternalVertices.geojson │ │ │ ├── MultiPoint │ │ │ ├── LineString │ │ │ │ └── MultipointsIsContainedByLine.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── MultiPointsContainedByMultiPoints.geojson │ │ │ │ └── MultiPointsEqual.geojson │ │ │ └── Polygon │ │ │ │ └── MultiPointIsContainedByPolygonBoundary.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ └── PointIsContainedByLine.geojson │ │ │ ├── MultiPoint │ │ │ │ └── PointIsContainedByMultiPoint.geojson │ │ │ └── Polygon │ │ │ │ └── PointInsidePolygonBoundary.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ └── issue-#1201-true.geojson │ │ │ └── Polygon │ │ │ ├── PolygonExactSameShape.geojson │ │ │ └── PolygonIsContainedByPolygon.geojson │ ├── crosses │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineDoesNotCrossButTouches.geojson │ │ │ │ │ └── LineDoesNotCrossLine.geojson │ │ │ │ └── Polygon │ │ │ │ │ └── LineDoesNotCrossPolygon.geojson │ │ │ └── MultiPoint │ │ │ │ ├── LineString │ │ │ │ ├── MultiPointNotCrossLine.geojson │ │ │ │ └── MultiPointNotCrossLineEnd.geojson │ │ │ │ └── Polygon │ │ │ │ └── MultiPointNotCrossPolygon.geojson │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ └── LineCrossesLine.geojson │ │ │ └── Polygon │ │ │ │ ├── LineCrossesPolygon.geojson │ │ │ │ └── LineCrossesPolygonPartial.geojson │ │ │ └── MultiPoint │ │ │ ├── LineString │ │ │ └── MultiPointsCrossLine.geojson │ │ │ └── Polygon │ │ │ └── MultiPointsCrossPolygon.geojson │ ├── disjoint │ │ ├── diagrams │ │ │ └── esri-disjoint.gif │ │ └── test │ │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ └── LineString-LineString.geojson │ │ │ │ ├── Point │ │ │ │ │ ├── LineString-Point-1.geojson │ │ │ │ │ └── LineString-Point-2.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineString-In-Polygon.geojson │ │ │ │ │ └── LineString-Polygon.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── LineString │ │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ │ └── Polygon │ │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── Polygon │ │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── Point-LineString-1.geojson │ │ │ │ │ ├── Point-LineString-2.geojson │ │ │ │ │ ├── Point-LineString-3.geojson │ │ │ │ │ └── Point-LineString-4.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── Point-MultiPoint.geojson │ │ │ │ ├── Point │ │ │ │ │ └── Point-Point.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── Point-Polygon-1.geojson │ │ │ │ │ └── Point-Polygon-2.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ ├── Polygon-Containing-Linestring.geojson │ │ │ │ └── Polygon-LineString.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ │ ├── Point │ │ │ │ └── Polygon-Point.geojson │ │ │ │ └── Polygon │ │ │ │ ├── Large-Inside-Small.geojson │ │ │ │ ├── Polygon-Polygon.geojson │ │ │ │ ├── Small-Inside-Large.geojson │ │ │ │ └── issue-1216.geojson │ │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ └── LineString-LineString.geojson │ │ │ ├── Point │ │ │ │ └── LineString-Point.geojson │ │ │ └── Polygon │ │ │ │ └── LineString-Polygon.geojson │ │ │ ├── MultiPoint │ │ │ ├── LineString │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ ├── Point │ │ │ │ └── MultiPoint-Point.geojson │ │ │ └── Polygon │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ ├── MultiPolygon │ │ │ └── Polygon │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ └── Point-LineString.geojson │ │ │ ├── MultiPoint │ │ │ │ └── Point-Multipoint.geojson │ │ │ ├── Point │ │ │ │ └── Point-Point.geojson │ │ │ └── Polygon │ │ │ │ └── Point-Polygon.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ └── Polygon-LineString.geojson │ │ │ ├── MultiPolygon │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ ├── Point │ │ │ └── Polygon-Point.geojson │ │ │ └── Polygon │ │ │ └── Polygon-Polygon.geojson │ ├── equal │ │ ├── diagrams │ │ │ └── esri-equals.gif │ │ └── test │ │ │ ├── false │ │ │ ├── linear-rings.geojson │ │ │ ├── lines.geojson │ │ │ ├── multipoints.geojson │ │ │ ├── points.geojson │ │ │ ├── polygons.geojson │ │ │ ├── precision-default.geojson │ │ │ └── precision-options.geojson │ │ │ └── true │ │ │ ├── different-initials-poly.geojson │ │ │ ├── linear-rings.geojson │ │ │ ├── lines-extra-vertices.geojson │ │ │ ├── lines-reverse.geojson │ │ │ ├── lines.geojson │ │ │ ├── multipoints.geojson │ │ │ ├── points.geojson │ │ │ ├── polygons.geojson │ │ │ ├── precision-default.geojson │ │ │ ├── precision-options.geojson │ │ │ ├── reverse-lines.geojson │ │ │ └── reverse-polygons.geojson │ ├── intersects │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ └── LineString-LineString.geojson │ │ │ │ ├── Point │ │ │ │ │ └── LineString-Point.geojson │ │ │ │ └── Polygon │ │ │ │ │ └── LineString-Polygon.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── LineString │ │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ │ ├── Point │ │ │ │ │ └── MultiPoint-Point.geojson │ │ │ │ └── Polygon │ │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── Polygon │ │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ └── Point-LineString.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── Point-Multipoint.geojson │ │ │ │ ├── Point │ │ │ │ │ └── Point-Point.geojson │ │ │ │ └── Polygon │ │ │ │ │ └── Point-Polygon.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ └── Polygon-LineString.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ │ ├── Point │ │ │ │ └── Polygon-Point.geojson │ │ │ │ └── Polygon │ │ │ │ ├── Polygon-Polygon.geojson │ │ │ │ └── Polygon-SelfintersectingPolygon.geojson │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ └── LineString-LineString.geojson │ │ │ ├── Point │ │ │ │ ├── LineString-Point-1.geojson │ │ │ │ └── LineString-Point-2.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString-In-Polygon.geojson │ │ │ │ └── LineString-Polygon.geojson │ │ │ ├── MultiPoint │ │ │ ├── LineString │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ └── Polygon │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ ├── MultiPolygon │ │ │ └── Polygon │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ ├── Point-LineString-1.geojson │ │ │ │ ├── Point-LineString-2.geojson │ │ │ │ ├── Point-LineString-3.geojson │ │ │ │ └── Point-LineString-4.geojson │ │ │ ├── MultiPoint │ │ │ │ └── Point-MultiPoint.geojson │ │ │ ├── Point │ │ │ │ └── Point-Point.geojson │ │ │ └── Polygon │ │ │ │ ├── Point-Polygon-1.geojson │ │ │ │ └── Point-Polygon-2.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ ├── Polygon-Containing-Linestring.geojson │ │ │ └── Polygon-LineString.geojson │ │ │ ├── MultiPolygon │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ ├── Point │ │ │ └── Polygon-Point.geojson │ │ │ └── Polygon │ │ │ ├── Large-Inside-Small.geojson │ │ │ ├── Polygon-Polygon.geojson │ │ │ ├── Small-Inside-Large.geojson │ │ │ └── issue-1216.geojson │ ├── overlap │ │ ├── false │ │ │ ├── equal-linear-rings.geojson │ │ │ ├── equal-lines.geojson │ │ │ ├── equal-multipoints.geojson │ │ │ ├── equal-polygons.geojson │ │ │ ├── linear-rings.geojson │ │ │ ├── lines.geojson │ │ │ ├── multipoints.geojson │ │ │ ├── polygon-with-hole-polygon.geojson │ │ │ └── polygons.geojson │ │ └── true │ │ │ ├── linear-rings.geojson │ │ │ ├── lines.geojson │ │ │ ├── multipoints.geojson │ │ │ ├── polygon-with-hole-polygon.geojson │ │ │ ├── polygons.geojson │ │ │ ├── simple-lines.geojson │ │ │ └── single-multipoints.geojson │ ├── parallel │ │ ├── false │ │ │ ├── line1.geojson │ │ │ └── line2.geojson │ │ └── true │ │ │ ├── city-line.geojson │ │ │ ├── fiji.geojson │ │ │ ├── line1.geojson │ │ │ ├── line3-reverse.geojson │ │ │ ├── line3.geojson │ │ │ ├── resolute.geojson │ │ │ ├── segment1.geojson │ │ │ ├── segment2.geojson │ │ │ └── segment3.geojson │ ├── point_in_polygon │ │ └── in │ │ │ ├── multipoly-with-hole.geojson │ │ │ └── poly-with-hole.geojson │ ├── point_on_line │ │ ├── false │ │ │ ├── LineWithOnly1SegmentIgnoreBoundary.geojson │ │ │ ├── LineWithOnly1SegmentIgnoreBoundaryEnd.geojson │ │ │ ├── PointIsOnLineButFailsWithSmallEpsilonValue.geojson │ │ │ ├── PointIsOnLineButFailsWithoutEpsilonForBackwardsCompatibility.geojson │ │ │ ├── PointOnEndFailsWhenIgnoreEndpoints.geojson │ │ │ ├── PointOnStartFailsWhenIgnoreEndpoints.geojson │ │ │ └── notOnLine.geojson │ │ └── true │ │ │ ├── LineWithOnly1Segment.geojson │ │ │ ├── LineWithOnly1SegmentOnStart.geojson │ │ │ ├── PointOnFirstSegment.geojson │ │ │ ├── PointOnLastSegment.geojson │ │ │ ├── PointOnLineEnd.geojson │ │ │ ├── PointOnLineMidVertice.geojson │ │ │ ├── PointOnLineMidpoint.geojson │ │ │ ├── PointOnLineStart.geojson │ │ │ └── PointOnLineWithEpsilon.geojson │ ├── touches │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LinesExactSame.geojson │ │ │ │ │ └── LivesOverlap.geojson │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── LineStringOverlapsMultiLinestring.geojson │ │ │ │ │ └── LineStringSameAsMultiLinestring.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── LineStringDoesNotTouchMP.geojson │ │ │ │ │ └── LineStringTouchesMultiPointButInternal.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ │ └── LineDoesNotTouchMultiPoly.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineCrossesPolygon.geojson │ │ │ │ │ ├── LineDoesNotTouch.geojson │ │ │ │ │ └── LineWIthinPolygon.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── LineString │ │ │ │ │ ├── MultiLineStringOverlapsLine.geojson │ │ │ │ │ └── MultiLineStringSameAsLine.geojson │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MultiLineStringsOverlap.geojson │ │ │ │ │ └── MultiLineStringsSame.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── MpTouchesInternalMultiline.geojson │ │ │ │ │ └── MultiPointNotTouchMultiline.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ │ └── MultiLineInsideMultipoly.geojson │ │ │ │ ├── Point │ │ │ │ │ ├── PointNotTouchMultiLinestring.geojson │ │ │ │ │ └── PointTouchesMidLineString.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── MultiLineInsidePoly.geojson │ │ │ │ │ └── MultiLineNotTouchPoly.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── LineString │ │ │ │ │ ├── MultiPointTouchesInsideLine.geojson │ │ │ │ │ └── MultipointDoesNotTouchLine.geojson │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MpDoesNotTouchMultiLine.geojson │ │ │ │ │ └── MpTouchesInternalMultiLine.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ │ ├── MultiPointDoesNotTouchMultipolygon │ │ │ │ │ └── multipoint-inside-multipolygon.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── MultiPointInsidePolygon.geojson │ │ │ │ │ └── MultiPointNoTouchPolygon.geojson │ │ │ ├── MultiPolygon │ │ │ │ ├── LineString │ │ │ │ │ └── MultiPolyNotTouchLineString.geojson │ │ │ │ ├── MultiLineString │ │ │ │ │ └── MultiPolyOverlapsMultiLine.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── MultiPolyNotTouchMultiPoint.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ │ ├── MultiPolysDoNotTouch.geojson │ │ │ │ │ └── MultiPolysOverlap.geojson │ │ │ │ └── Point │ │ │ │ │ └── MultiPolyNotTouchPoint.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointIsNotTouchLine.geojson │ │ │ │ │ └── PointOnMidLinestring.geojson │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MpNotTouchMidLineString.geojson │ │ │ │ │ └── MpOnMidLineString.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ │ └── PointNotTouchMultipolygon.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointDoesNotTouchPolygon.geojson │ │ │ │ │ └── PointInsidePolygon.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ └── PolyDoesNotTouchLine.geojson │ │ │ │ ├── MultiLineString │ │ │ │ ├── PolyNotTouchMultiLine.geojson │ │ │ │ └── PolyOverlapMultiLine.geojson │ │ │ │ ├── MultiPoint │ │ │ │ ├── PolygonNoTouchMultiPoint.geojson │ │ │ │ └── PolygonOverlapsMultiPoint.geojson │ │ │ │ ├── MultiPolygon │ │ │ │ └── PolyNotTouchMultipoly.geojson │ │ │ │ ├── Point │ │ │ │ ├── PolygonDoesNotTouchPoint.geojson │ │ │ │ └── PolygonOverlapsPoint.geojson │ │ │ │ └── Polygon │ │ │ │ ├── PolygonsDontTouch.geojson │ │ │ │ └── PolygonsOverlap.geojson │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ └── LineTouchesEndpoint.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── LineStringTouchesEnd.geojson │ │ │ │ └── LineStringTouchesStart.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultipointTouchesLine.geojson │ │ │ ├── MultiPolygon │ │ │ │ ├── LineTouchesMultiPoly.geojson │ │ │ │ └── LineTouchesSecondMultiPoly.geojson │ │ │ └── Polygon │ │ │ │ └── LineTouchesPolygon.geojson │ │ │ ├── MultiLineString │ │ │ ├── LineString │ │ │ │ └── MultiLineTouchesLine.geojson │ │ │ ├── MultiLineString │ │ │ │ └── MultiLineTouchesMultiLine.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiLineTouchesMultiPoint.geojson │ │ │ ├── Point │ │ │ │ └── MultiLineTouchesPoint.geojson │ │ │ └── Polygon │ │ │ │ └── MultiLineTouchesPolygon.geojson │ │ │ ├── MultiPoint │ │ │ ├── LineString │ │ │ │ └── MultipointTouchesLine.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── MpTouchesEndMultiLine.geojson │ │ │ │ └── MpTouchesSecondMultiLine.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── multipoint-touches-multipolygon.geojson │ │ │ └── Polygon │ │ │ │ └── MultiPointIsWithinPolygon.geojson │ │ │ ├── MultiPolygon │ │ │ ├── MultiLineString │ │ │ │ └── MultiLineTouchesMultiPoly.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiPolyTouchesMultiPoint.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── MultiPolyTouchesMultiPoly.geojson │ │ │ ├── Point │ │ │ │ └── MpTouchesPoint.geojson │ │ │ └── Polygon │ │ │ │ └── MultiPolyTouchesPoly.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ ├── PointOnEndLine.geojson │ │ │ │ └── PointOnStartLine.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── MpOnEndLine.geojson │ │ │ │ └── MpOnStartLine.geojson │ │ │ ├── MultiPolygon │ │ │ │ ├── PointTouchesMultipolygon.geojson │ │ │ │ └── PointTouchesMultipolygonHole.geojson │ │ │ └── Polygon │ │ │ │ ├── PointOnEdgePolygon.geojson │ │ │ │ ├── PointOnHole.geojson │ │ │ │ └── PointOnVerticePolygon.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ └── PolygonTouchesLines.geojson │ │ │ ├── MultiLineString │ │ │ └── PolygonTouchesMultiline.geojson │ │ │ ├── MultiPoint │ │ │ └── PolygonTouchesMultiPoint.geojson │ │ │ ├── MultiPolygon │ │ │ └── PolyTouchMultiPolys.geojson │ │ │ ├── Point │ │ │ ├── PolygonTouchesPoint.geojson │ │ │ └── PolygonTouchesPointVertice.geojson │ │ │ └── Polygon │ │ │ ├── PolygonTouchesEdges.geojson │ │ │ └── PolygonsTouchVertices.geojson │ ├── valid │ │ ├── assertion │ │ │ ├── MultiPoint │ │ │ │ └── multipoint.geojson │ │ │ └── Point │ │ │ │ └── point.geojson │ │ ├── false │ │ │ ├── MultiPolygon │ │ │ │ ├── multipoly-with-2-vertices-touching.geojson │ │ │ │ ├── multipolygons-overlap.geojson │ │ │ │ └── not-enough-coords.geojson │ │ │ └── Polygon │ │ │ │ ├── not-enough-coords.geojson │ │ │ │ ├── polygon-with-hole-2-vertices-touching.geojson │ │ │ │ ├── polygon-with-puncture.geojson │ │ │ │ └── polygon-with-spike.geojson │ │ └── true │ │ │ ├── LineString │ │ │ └── linestring.geojson │ │ │ ├── MultiLineString │ │ │ └── multilinestring.geojson │ │ │ ├── MultiPoint │ │ │ ├── multipoint-with-z.geojson │ │ │ └── multipoint.geojson │ │ │ ├── MultiPolygon │ │ │ ├── multipolygon-touch.geojson │ │ │ ├── multipolygon-with-hole.geojson │ │ │ └── multipolygon.geojson │ │ │ ├── Point │ │ │ ├── point-with-z.geojson │ │ │ └── point.geojson │ │ │ └── Polygon │ │ │ ├── polygon-internal-hole.geojson │ │ │ ├── polygon-with-hole-1-vertice-touching.geojson │ │ │ └── polygon.geojson │ └── within │ │ ├── false │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ └── LineIsNotWithinLine.geojson │ │ │ └── Polygon │ │ │ │ ├── LineIsNotWIthinPolygon.geojson │ │ │ │ └── LineIsNotWIthinPolygonBoundary.geojson │ │ ├── MultiLineString │ │ │ └── MultiPolygon │ │ │ │ └── skip-multilinestring-not-within-multipolygon.geojson │ │ ├── MultiPoint │ │ │ ├── LineString │ │ │ │ ├── MultiPointsIsNotWIthinLine.geojson │ │ │ │ └── MultiPointsOnLineEndsIsNotWIthinLine.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiPointIsNotWithinMultiPoint.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── multipoint-not-within-multipolygon.geojson │ │ │ └── Polygon │ │ │ │ ├── MultiPointAllOnBoundaryIsNotWithinPolygon.geojson │ │ │ │ └── MultiPointIsNotWithinPolygon.geojson │ │ ├── Point │ │ │ ├── LineString │ │ │ │ ├── PointIsNotWithinLine.geojson │ │ │ │ ├── PointIsNotWithinLineBecauseOnEnd.geojson │ │ │ │ └── PointOnEndIsWithinLinestring.geojson │ │ │ ├── MultiPoint │ │ │ │ └── PointIsNotWithinMultiPoint.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── point-not-within-multipolygon.geojson │ │ │ └── Polygon │ │ │ │ ├── PointIsNotWithinPolygon.geojson │ │ │ │ └── PointOnPolygonBoundary.geojson │ │ └── Polygon │ │ │ ├── MultiPolygon │ │ │ └── polygon-not-within-multipolygon.geojson │ │ │ └── Polygon │ │ │ └── Polygon-Polygon.geojson │ │ └── true │ │ ├── LineString │ │ ├── LineString │ │ │ ├── LineIsWithinLine.geojson │ │ │ └── LinesExactSame.geojson │ │ └── Polygon │ │ │ ├── LineIsContainedByPolygon.geojson │ │ │ └── LineIsContainedByPolygonWithNoInternalVertices.geojson │ │ ├── MultiLineString │ │ └── MultiPolygon │ │ │ └── skip-multilinestring-within-multipolygon.geojson │ │ ├── MultiPoint │ │ ├── LineString │ │ │ └── MultipointsIsWithinLine.geojson │ │ ├── MultiPoint │ │ │ └── MultiPointsWithinMultiPoints.geojson │ │ ├── MultiPolygon │ │ │ └── multipoint-within-multipolygon.geojson │ │ └── Polygon │ │ │ ├── MultiPointIsWithinPolygon.geojson │ │ │ └── MultiPointSingleIsWithinPolygon.geojson │ │ ├── MultiPolygon │ │ └── MultiPolygon │ │ │ └── skip-multipolygon-within-multipolygon.geojson │ │ ├── Point │ │ ├── LineString │ │ │ └── PointIsWithinLine.geojson │ │ ├── MultiPoint │ │ │ └── PointIsWithinMultiPoint.geojson │ │ ├── MultiPolygon │ │ │ └── point-within-multipolygon.geojson │ │ └── Polygon │ │ │ └── PointIsWithinPolygon.geojson │ │ └── Polygon │ │ ├── MultiPolygon │ │ └── polygon-within-multipolygon.geojson │ │ └── Polygon │ │ ├── PolygonIsWIthinPolygon.geojson │ │ └── PolygonsExactSameShape.geojson ├── center │ ├── in │ │ ├── feature-collection.geojson │ │ ├── imbalanced-polygon.geojson │ │ ├── linestring.geojson │ │ ├── point.geojson │ │ ├── points-with-weights.geojson │ │ ├── polygon-without-weights.geojson │ │ └── polygon.geojson │ └── out │ │ ├── feature-collection.geojson │ │ ├── imbalanced-polygon.geojson │ │ ├── linestring.geojson │ │ ├── point.geojson │ │ ├── points-with-weights.geojson │ │ ├── polygon-without-weights.geojson │ │ └── polygon.geojson ├── centroid │ ├── in │ │ ├── feature-collection.geojson │ │ ├── imbalanced-polygon.geojson │ │ ├── linestring.geojson │ │ ├── multipolygon.geojson │ │ ├── point.geojson │ │ └── polygon.geojson │ └── out │ │ ├── feature-collection.geojson │ │ ├── imbalanced-polygon.geojson │ │ ├── linestring.geojson │ │ ├── multipolygon.geojson │ │ ├── point.geojson │ │ └── polygon.geojson ├── circle │ ├── in │ │ └── circle1.geojson │ └── out │ │ └── circle1.geojson ├── cleanCoords │ ├── in │ │ ├── clean-segment.geojson │ │ ├── closed-linestring.geojson │ │ ├── geometry.geojson │ │ ├── multiline.geojson │ │ ├── multipoint.geojson │ │ ├── multipolygon.geojson │ │ ├── point.geojson │ │ ├── polygon-with-hole.geojson │ │ ├── polygon.geojson │ │ ├── segment.geojson │ │ ├── simple-line.geojson │ │ ├── triangle.geojson │ │ └── triplicate-issue1255.geojson │ └── out │ │ ├── clean-segment.geojson │ │ ├── closed-linestring.geojson │ │ ├── geometry.geojson │ │ ├── multiline.geojson │ │ ├── multipoint.geojson │ │ ├── multipolygon.geojson │ │ ├── point.geojson │ │ ├── polygon-with-hole.geojson │ │ ├── polygon.geojson │ │ ├── segment.geojson │ │ ├── simple-line.geojson │ │ ├── triangle.geojson │ │ └── triplicate-issue1255.geojson ├── explode │ ├── in │ │ ├── geometrycollection-0-0.geojson │ │ ├── geometrycollection-xyz-0-6.geojson │ │ ├── multilinestring-0-5.geojson │ │ ├── multilinestring-xyz-0-11.geojson │ │ ├── multipoint-0-3.geojson │ │ ├── multipoint-xyz-0-9.geojson │ │ ├── multipolygon-0-4.geojson │ │ ├── multipolygon-xyz-0-10.geojson │ │ ├── one-1-0.geojson │ │ ├── one-2-0.geojson │ │ ├── point-0-2.geojson │ │ ├── point-xyz-0-8.geojson │ │ ├── polygon-0-1.geojson │ │ ├── polygon-with-properties.geojson │ │ └── polygon-xyz-0-7.geojson │ └── out │ │ ├── geometrycollection-0-0.geojson │ │ ├── geometrycollection-xyz-0-6.geojson │ │ ├── multilinestring-0-5.geojson │ │ ├── multilinestring-xyz-0-11.geojson │ │ ├── multipoint-0-3.geojson │ │ ├── multipoint-xyz-0-9.geojson │ │ ├── multipolygon-0-4.geojson │ │ ├── multipolygon-xyz-0-10.geojson │ │ ├── one-1-0.geojson │ │ ├── one-2-0.geojson │ │ ├── point-0-2.geojson │ │ ├── point-xyz-0-8.geojson │ │ ├── polygon-0-1.geojson │ │ ├── polygon-with-properties.geojson │ │ └── polygon-xyz-0-7.geojson ├── lineToPolygon │ ├── in │ │ ├── collection_linestring.geojson │ │ ├── geometry_linestring.geojson │ │ ├── linestring.geojson │ │ ├── linestring_incomplete.geojson │ │ ├── linestrings_to_multipolygons.geojson │ │ ├── multi_linestring_incomplete.geojson │ │ ├── multi_linestring_nested.geojson │ │ ├── multi_linestring_nested2.geojson │ │ ├── multi_linestring_outer_ring_middle_position.geojson │ │ ├── multi_linestring_with_hole.geojson │ │ ├── multi_linestrings_nested.geojson │ │ ├── multi_linestrings_outer_doughnut.geojson │ │ └── multi_linestrings_with_holes.geojson │ └── out │ │ ├── collection_linestring.geojson │ │ ├── geometry_linestring.geojson │ │ ├── linestring.geojson │ │ ├── linestring_incomplete.geojson │ │ ├── linestrings_to_multipolygons.geojson │ │ ├── multi_linestring_incomplete.geojson │ │ ├── multi_linestring_nested.geojson │ │ ├── multi_linestring_nested2.geojson │ │ ├── multi_linestring_outer_ring_middle_position.geojson │ │ ├── multi_linestring_with_hole.geojson │ │ ├── multi_linestrings_nested.geojson │ │ ├── multi_linestrings_outer_doughnut.geojson │ │ └── multi_linestrings_with_holes.geojson ├── line_intersect │ ├── in │ │ ├── 2-vertex-segment.geojson │ │ ├── double-intersect.geojson │ │ ├── multi-linestring.geojson │ │ ├── polygons-with-holes.geojson │ │ └── same-coordinates.geojson │ └── out │ │ ├── 2-vertex-segment.geojson │ │ ├── double-intersect.geojson │ │ ├── multi-linestring.geojson │ │ ├── polygons-with-holes.geojson │ │ └── same-coordinates.geojson ├── line_overlap │ ├── in │ │ ├── boolean-line-overlap.geojson │ │ ├── issue-#901-simplified.geojson │ │ ├── issue-#901.geojson │ │ ├── partial-overlap.geojson │ │ ├── partial-overlap2.geojson │ │ ├── polygons.geojson │ │ ├── simple1.geojson │ │ ├── simple2.geojson │ │ └── simple3.geojson │ └── out │ │ ├── boolean-line-overlap.geojson │ │ ├── issue-#901-simplified.geojson │ │ ├── issue-#901.geojson │ │ ├── partial-overlap.geojson │ │ ├── partial-overlap2.geojson │ │ ├── polygons.geojson │ │ ├── simple1.geojson │ │ ├── simple2.geojson │ │ └── simple3.geojson ├── line_slice_along │ └── fixtures │ │ ├── line1.geojson │ │ ├── route1.geojson │ │ └── route2.geojson ├── lukas-h │ └── germany-states.geojson ├── point_to_line_distance │ └── in │ │ ├── city-line1.geojson │ │ ├── city-line2.geojson │ │ ├── city-segment-inside1.geojson │ │ ├── city-segment-inside2.geojson │ │ ├── city-segment-inside3.geojson │ │ ├── city-segment-obtuse1.geojson │ │ ├── city-segment-obtuse2.geojson │ │ ├── city-segment-projected1.geojson │ │ ├── city-segment-projected2.geojson │ │ ├── issue-1156.geojson │ │ ├── line-fiji.geojson │ │ ├── line-resolute-bay.geojson │ │ ├── line1.geojson │ │ ├── line2.geojson │ │ ├── segment-fiji.geojson │ │ ├── segment1.geojson │ │ ├── segment1a.geojson │ │ ├── segment2.geojson │ │ ├── segment3.geojson │ │ └── segment4.geojson ├── polygonSmooth │ ├── in │ │ ├── close.geojson │ │ ├── geometry.geojson │ │ ├── multipolygon.geojson │ │ ├── multipolygonWithHole.geojson │ │ ├── polygon.geojson │ │ └── withHole.geojson │ └── out │ │ ├── close.geojson │ │ ├── geometry.geojson │ │ ├── multipolygon.geojson │ │ ├── multipolygonWithHole.geojson │ │ ├── polygon.geojson │ │ └── withHole.geojson ├── polygonTangents │ ├── in │ │ ├── complexPolygon.geojson │ │ ├── concave.geojson │ │ ├── high.geojson │ │ ├── island#1.geojson │ │ ├── island#2.geojson │ │ ├── multipolygon.geojson │ │ ├── polygonWithHole.geojson │ │ └── square.geojson │ └── out │ │ ├── complexPolygon.geojson │ │ ├── concave.geojson │ │ ├── high.geojson │ │ ├── island#1.geojson │ │ ├── island#2.geojson │ │ ├── multipolygon.geojson │ │ ├── polygonWithHole.geojson │ │ └── square.geojson ├── polygonToLine │ ├── in │ │ ├── geometry_polygon.geojson │ │ ├── multi_polygon.geojson │ │ ├── multi_polygon_outer_doughnut.geojson │ │ ├── multi_polygon_with_holes.geojson │ │ ├── polygon.geojson │ │ └── polygon_with_hole.geojson │ └── out │ │ ├── geometry_polygon.geojson │ │ ├── multi_polygon.geojson │ │ ├── multi_polygon_outer_doughnut.geojson │ │ ├── multi_polygon_with_holes.geojson │ │ ├── polygon.geojson │ │ └── polygon_with_hole.geojson ├── rfc7946 │ ├── README.md │ ├── antimeridianCutting1.geojson │ ├── antimeridianCutting2.geojson │ ├── featureCollection.geojson │ ├── featureCollectionWithBBox1.geojson │ ├── featureCollectionWithBBox2.geojson │ ├── featureWithBBox.geojson │ ├── geometryCollection.geojson │ ├── lineString.geojson │ ├── multiLineString.geojson │ ├── multiPoint.geojson │ ├── multiPolygon.geojson │ ├── point.geojson │ ├── polygon1.geojson │ └── polygon2.geojson ├── rhumb_bearing │ ├── in │ │ └── pair1.geojson │ └── out │ │ ├── pair1.geojson │ │ └── pair1.json ├── rhumb_destination │ ├── in │ │ ├── fiji-east-west-539-lng.geojson │ │ ├── fiji-east-west.geojson │ │ ├── fiji-west-east.geojson │ │ ├── point-0.geojson │ │ ├── point-180.geojson │ │ ├── point-90.geojson │ │ └── point-way-far-away.geojson │ └── out │ │ ├── fiji-east-west-539-lng.geojson │ │ ├── fiji-east-west.geojson │ │ ├── fiji-west-east.geojson │ │ ├── point-0.geojson │ │ ├── point-180.geojson │ │ ├── point-90.geojson │ │ └── point-way-far-away.geojson ├── rhumb_distance │ ├── in │ │ ├── fiji-539-lng.geojson │ │ ├── points-fiji.geojson │ │ ├── points1.geojson │ │ └── points2.geojson │ └── out │ │ ├── fiji-539-lng.json │ │ ├── points-fiji.json │ │ ├── points1.json │ │ └── points2.json ├── simplify │ ├── in │ │ └── linestring.geojson │ └── out │ │ └── linestring.geojson ├── square │ ├── in │ │ ├── horizontalrectangle.geojson │ │ └── verticalrectangle.geojson │ └── out │ │ ├── horizontalrectangle.geojson │ │ └── verticalrectangle.geojson ├── transform_rotate │ ├── in │ │ ├── line.geojson │ │ ├── multiLine.geojson │ │ ├── multiPoint.geojson │ │ ├── multiPolygon.geojson │ │ ├── no-rotation.geojson │ │ ├── point.geojson │ │ ├── polygon-fiji.geojson │ │ ├── polygon-resolute-bay.geojson │ │ ├── polygon-with-hole.geojson │ │ ├── polygon.geojson │ │ └── z-coord.geojson │ └── out │ │ ├── line.geojson │ │ ├── multiLine.geojson │ │ ├── multiPoint.geojson │ │ ├── multiPolygon.geojson │ │ ├── no-rotation.geojson │ │ ├── point.geojson │ │ ├── polygon-fiji.geojson │ │ ├── polygon-resolute-bay.geojson │ │ ├── polygon-with-hole.geojson │ │ ├── polygon.geojson │ │ └── z-coord.geojson ├── truncate │ ├── in │ │ ├── geometry-collection-in-feature.geojson │ │ ├── geometry-collection.geojson │ │ ├── linestring-geometry.geojson │ │ ├── multiLine.geojson │ │ ├── multiPoint.geojson │ │ ├── multiPolygon.geojson │ │ ├── point-elevation.geojson │ │ ├── point-geometry.geojson │ │ ├── point.geojson │ │ ├── points.geojson │ │ ├── polygon.geojson │ │ └── polygons.geojson │ └── out │ │ ├── geometry-collection-in-feature.geojson │ │ ├── geometry-collection.geojson │ │ ├── linestring-geometry.geojson │ │ ├── multiLine.geojson │ │ ├── multiPoint.geojson │ │ ├── multiPolygon.geojson │ │ ├── point-elevation.geojson │ │ ├── point-geometry.geojson │ │ ├── point.geojson │ │ ├── points.geojson │ │ ├── polygon.geojson │ │ └── polygons.geojson └── wikipedia │ ├── README.md │ ├── featureCollection.geojson │ ├── geometryCollection.geojson │ ├── lineString.geojson │ ├── multiLineString.geojson │ ├── multiPoint.geojson │ ├── multiPolygon1.geojson │ ├── multiPolygon2.geojson │ ├── point.geojson │ ├── polygon1.geojson │ └── polygon2.geojson └── main.dart /.github/turf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.github/turf-logo.png -------------------------------------------------------------------------------- /.github/workflows/dart-pub-publish-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.github/workflows/dart-pub-publish-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/dart-pub-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.github/workflows/dart-pub-publish.yml -------------------------------------------------------------------------------- /.github/workflows/dart-unit-tests-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.github/workflows/dart-unit-tests-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/dart-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.github/workflows/dart-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/pr-code-coverage-reporting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.github/workflows/pr-code-coverage-reporting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/LICENSE -------------------------------------------------------------------------------- /Progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/Progress.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /benchmark/area_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/benchmark/area_benchmark.dart -------------------------------------------------------------------------------- /benchmark/cluster_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/benchmark/cluster_benchmark.dart -------------------------------------------------------------------------------- /benchmark/explode_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/benchmark/explode_benchmark.dart -------------------------------------------------------------------------------- /benchmark/line_segment_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/benchmark/line_segment_benchmark.dart -------------------------------------------------------------------------------- /benchmark/meta_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/benchmark/meta_benchmark.dart -------------------------------------------------------------------------------- /benchmark/polygon_smooth_benchmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/benchmark/polygon_smooth_benchmark.dart -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/along.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/along.dart -------------------------------------------------------------------------------- /lib/area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/area.dart -------------------------------------------------------------------------------- /lib/bbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/bbox.dart -------------------------------------------------------------------------------- /lib/bbox_polygon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/bbox_polygon.dart -------------------------------------------------------------------------------- /lib/bearing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/bearing.dart -------------------------------------------------------------------------------- /lib/boolean.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/boolean.dart -------------------------------------------------------------------------------- /lib/center.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/center.dart -------------------------------------------------------------------------------- /lib/centroid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/centroid.dart -------------------------------------------------------------------------------- /lib/circle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/circle.dart -------------------------------------------------------------------------------- /lib/clean_coords.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/clean_coords.dart -------------------------------------------------------------------------------- /lib/clusters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/clusters.dart -------------------------------------------------------------------------------- /lib/destination.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/destination.dart -------------------------------------------------------------------------------- /lib/distance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/distance.dart -------------------------------------------------------------------------------- /lib/explode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/explode.dart -------------------------------------------------------------------------------- /lib/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/extensions.dart -------------------------------------------------------------------------------- /lib/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/helpers.dart -------------------------------------------------------------------------------- /lib/invariant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/invariant.dart -------------------------------------------------------------------------------- /lib/length.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/length.dart -------------------------------------------------------------------------------- /lib/line_intersect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/line_intersect.dart -------------------------------------------------------------------------------- /lib/line_overlap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/line_overlap.dart -------------------------------------------------------------------------------- /lib/line_segment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/line_segment.dart -------------------------------------------------------------------------------- /lib/line_slice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/line_slice.dart -------------------------------------------------------------------------------- /lib/line_slice_along.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/line_slice_along.dart -------------------------------------------------------------------------------- /lib/line_to_polygon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/line_to_polygon.dart -------------------------------------------------------------------------------- /lib/meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/meta.dart -------------------------------------------------------------------------------- /lib/midpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/midpoint.dart -------------------------------------------------------------------------------- /lib/nearest_point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/nearest_point.dart -------------------------------------------------------------------------------- /lib/nearest_point_on_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/nearest_point_on_line.dart -------------------------------------------------------------------------------- /lib/point_to_line_distance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/point_to_line_distance.dart -------------------------------------------------------------------------------- /lib/polygon_smooth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/polygon_smooth.dart -------------------------------------------------------------------------------- /lib/polygon_tangents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/polygon_tangents.dart -------------------------------------------------------------------------------- /lib/polygon_to_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/polygon_to_line.dart -------------------------------------------------------------------------------- /lib/polyline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/polyline.dart -------------------------------------------------------------------------------- /lib/simplify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/simplify.dart -------------------------------------------------------------------------------- /lib/square.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/square.dart -------------------------------------------------------------------------------- /lib/src/along.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/along.dart -------------------------------------------------------------------------------- /lib/src/area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/area.dart -------------------------------------------------------------------------------- /lib/src/bbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/bbox.dart -------------------------------------------------------------------------------- /lib/src/bbox_polygon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/bbox_polygon.dart -------------------------------------------------------------------------------- /lib/src/bearing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/bearing.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_clockwise.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_clockwise.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_concave.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_concave.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_contains.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_contains.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_crosses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_crosses.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_disjoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_disjoint.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_equal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_equal.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_helper.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_intersects.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_intersects.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_overlap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_overlap.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_parallel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_parallel.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_point_in_polygon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_point_in_polygon.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_point_on_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_point_on_line.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_touches.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_touches.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_valid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_valid.dart -------------------------------------------------------------------------------- /lib/src/booleans/boolean_within.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/booleans/boolean_within.dart -------------------------------------------------------------------------------- /lib/src/center.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/center.dart -------------------------------------------------------------------------------- /lib/src/centroid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/centroid.dart -------------------------------------------------------------------------------- /lib/src/circle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/circle.dart -------------------------------------------------------------------------------- /lib/src/clean_coords.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/clean_coords.dart -------------------------------------------------------------------------------- /lib/src/destination.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/destination.dart -------------------------------------------------------------------------------- /lib/src/distance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/distance.dart -------------------------------------------------------------------------------- /lib/src/explode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/explode.dart -------------------------------------------------------------------------------- /lib/src/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/helpers.dart -------------------------------------------------------------------------------- /lib/src/intersection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/intersection.dart -------------------------------------------------------------------------------- /lib/src/invariant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/invariant.dart -------------------------------------------------------------------------------- /lib/src/length.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/length.dart -------------------------------------------------------------------------------- /lib/src/line_intersect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/line_intersect.dart -------------------------------------------------------------------------------- /lib/src/line_overlap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/line_overlap.dart -------------------------------------------------------------------------------- /lib/src/line_segment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/line_segment.dart -------------------------------------------------------------------------------- /lib/src/line_slice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/line_slice.dart -------------------------------------------------------------------------------- /lib/src/line_slice_along.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/line_slice_along.dart -------------------------------------------------------------------------------- /lib/src/line_to_polygon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/line_to_polygon.dart -------------------------------------------------------------------------------- /lib/src/meta/cluster.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/cluster.dart -------------------------------------------------------------------------------- /lib/src/meta/coord.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/coord.dart -------------------------------------------------------------------------------- /lib/src/meta/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/extensions.dart -------------------------------------------------------------------------------- /lib/src/meta/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/feature.dart -------------------------------------------------------------------------------- /lib/src/meta/flatten.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/flatten.dart -------------------------------------------------------------------------------- /lib/src/meta/geom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/geom.dart -------------------------------------------------------------------------------- /lib/src/meta/prop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/prop.dart -------------------------------------------------------------------------------- /lib/src/meta/short_circuit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/meta/short_circuit.dart -------------------------------------------------------------------------------- /lib/src/midpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/midpoint.dart -------------------------------------------------------------------------------- /lib/src/nearest_point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/nearest_point.dart -------------------------------------------------------------------------------- /lib/src/nearest_point_on_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/nearest_point_on_line.dart -------------------------------------------------------------------------------- /lib/src/point_to_line_distance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/point_to_line_distance.dart -------------------------------------------------------------------------------- /lib/src/polygon_smooth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/polygon_smooth.dart -------------------------------------------------------------------------------- /lib/src/polygon_tangents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/polygon_tangents.dart -------------------------------------------------------------------------------- /lib/src/polygon_to_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/polygon_to_line.dart -------------------------------------------------------------------------------- /lib/src/polyline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/polyline.dart -------------------------------------------------------------------------------- /lib/src/rhumb_bearing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/rhumb_bearing.dart -------------------------------------------------------------------------------- /lib/src/rhumb_destination.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/rhumb_destination.dart -------------------------------------------------------------------------------- /lib/src/rhumb_distance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/rhumb_distance.dart -------------------------------------------------------------------------------- /lib/src/simplify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/simplify.dart -------------------------------------------------------------------------------- /lib/src/square.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/square.dart -------------------------------------------------------------------------------- /lib/src/transform_rotate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/transform_rotate.dart -------------------------------------------------------------------------------- /lib/src/truncate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/src/truncate.dart -------------------------------------------------------------------------------- /lib/transform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/transform.dart -------------------------------------------------------------------------------- /lib/truncate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/truncate.dart -------------------------------------------------------------------------------- /lib/turf.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/lib/turf.dart -------------------------------------------------------------------------------- /mac-gen-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/mac-gen-coverage.sh -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/booleans/clockwise_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/clockwise_test.dart -------------------------------------------------------------------------------- /test/booleans/concave_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/concave_test.dart -------------------------------------------------------------------------------- /test/booleans/contains_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/contains_test.dart -------------------------------------------------------------------------------- /test/booleans/crosses_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/crosses_test.dart -------------------------------------------------------------------------------- /test/booleans/disjoint_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/disjoint_test.dart -------------------------------------------------------------------------------- /test/booleans/equal_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/equal_test.dart -------------------------------------------------------------------------------- /test/booleans/intersects_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/intersects_test.dart -------------------------------------------------------------------------------- /test/booleans/overlap_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/overlap_test.dart -------------------------------------------------------------------------------- /test/booleans/parallel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/parallel_test.dart -------------------------------------------------------------------------------- /test/booleans/point_in_polygon_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/point_in_polygon_test.dart -------------------------------------------------------------------------------- /test/booleans/point_on_line_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/point_on_line_test.dart -------------------------------------------------------------------------------- /test/booleans/touches_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/touches_test.dart -------------------------------------------------------------------------------- /test/booleans/valid_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/valid_test.dart -------------------------------------------------------------------------------- /test/booleans/within_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/booleans/within_test.dart -------------------------------------------------------------------------------- /test/components/along_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/along_test.dart -------------------------------------------------------------------------------- /test/components/area_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/area_test.dart -------------------------------------------------------------------------------- /test/components/bbox_polygon_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/bbox_polygon_test.dart -------------------------------------------------------------------------------- /test/components/bbox_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/bbox_test.dart -------------------------------------------------------------------------------- /test/components/bearing_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/bearing_test.dart -------------------------------------------------------------------------------- /test/components/center_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/center_test.dart -------------------------------------------------------------------------------- /test/components/centroid_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/centroid_test.dart -------------------------------------------------------------------------------- /test/components/circle_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/circle_test.dart -------------------------------------------------------------------------------- /test/components/clean_coords_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/clean_coords_test.dart -------------------------------------------------------------------------------- /test/components/cluster_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/cluster_test.dart -------------------------------------------------------------------------------- /test/components/destination_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/destination_test.dart -------------------------------------------------------------------------------- /test/components/explode_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/explode_test.dart -------------------------------------------------------------------------------- /test/components/geojson_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/geojson_test.dart -------------------------------------------------------------------------------- /test/components/helpers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/helpers_test.dart -------------------------------------------------------------------------------- /test/components/intersection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/intersection_test.dart -------------------------------------------------------------------------------- /test/components/invariant_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/invariant_test.dart -------------------------------------------------------------------------------- /test/components/length_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/length_test.dart -------------------------------------------------------------------------------- /test/components/line_intersect_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/line_intersect_test.dart -------------------------------------------------------------------------------- /test/components/line_overlap_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/line_overlap_test.dart -------------------------------------------------------------------------------- /test/components/line_segment_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/line_segment_test.dart -------------------------------------------------------------------------------- /test/components/line_slice_along_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/line_slice_along_test.dart -------------------------------------------------------------------------------- /test/components/line_slice_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/line_slice_test.dart -------------------------------------------------------------------------------- /test/components/line_to_polygon_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/line_to_polygon_test.dart -------------------------------------------------------------------------------- /test/components/meta_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/meta_test.dart -------------------------------------------------------------------------------- /test/components/midpoint_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/midpoint_test.dart -------------------------------------------------------------------------------- /test/components/nearest_point_on_line_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/nearest_point_on_line_test.dart -------------------------------------------------------------------------------- /test/components/point_to_line_distance_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/point_to_line_distance_test.dart -------------------------------------------------------------------------------- /test/components/polygon_smooth_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/polygon_smooth_test.dart -------------------------------------------------------------------------------- /test/components/polygon_tangents_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/polygon_tangents_test.dart -------------------------------------------------------------------------------- /test/components/polygon_to_line_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/polygon_to_line_test.dart -------------------------------------------------------------------------------- /test/components/polyline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/polyline.dart -------------------------------------------------------------------------------- /test/components/rhumb_bearing_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/rhumb_bearing_test.dart -------------------------------------------------------------------------------- /test/components/rhumb_destination_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/rhumb_destination_test.dart -------------------------------------------------------------------------------- /test/components/rhumb_distance_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/rhumb_distance_test.dart -------------------------------------------------------------------------------- /test/components/simplify_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/simplify_test.dart -------------------------------------------------------------------------------- /test/components/square_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/square_test.dart -------------------------------------------------------------------------------- /test/components/transform_rotate_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/transform_rotate_test.dart -------------------------------------------------------------------------------- /test/components/truncate_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/components/truncate_test.dart -------------------------------------------------------------------------------- /test/context/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/context/helper.dart -------------------------------------------------------------------------------- /test/context/load_test_cases.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/context/load_test_cases.dart -------------------------------------------------------------------------------- /test/context/matcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/context/matcher.dart -------------------------------------------------------------------------------- /test/examples/bbox/geometryCollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/bbox/geometryCollection.geojson -------------------------------------------------------------------------------- /test/examples/bbox/lineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/bbox/lineString.geojson -------------------------------------------------------------------------------- /test/examples/bbox/multiLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/bbox/multiLineString.geojson -------------------------------------------------------------------------------- /test/examples/bbox/multiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/bbox/multiPoint.geojson -------------------------------------------------------------------------------- /test/examples/bbox/multiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/bbox/multiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/bbox/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/bbox/point.geojson -------------------------------------------------------------------------------- /test/examples/bbox/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/bbox/polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/clockwise/false/counter-clockwise-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/clockwise/false/counter-clockwise-line.geojson -------------------------------------------------------------------------------- /test/examples/booleans/clockwise/true/clockwise-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/clockwise/true/clockwise-line.geojson -------------------------------------------------------------------------------- /test/examples/booleans/concave/false/3vertices.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/concave/false/3vertices.geojson -------------------------------------------------------------------------------- /test/examples/booleans/concave/false/diamond.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/concave/false/diamond.geojson -------------------------------------------------------------------------------- /test/examples/booleans/concave/false/square.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/concave/false/square.geojson -------------------------------------------------------------------------------- /test/examples/booleans/concave/true/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/concave/true/polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/concave/true/polygon2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/concave/true/polygon2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/diagrams/esri-contains.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/diagrams/esri-contains.gif -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/false/Point/Polygon/PointOnPolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/false/Point/Polygon/PointOnPolygonBoundary.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/false/Polygon/LineString/issue-#1201-false.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/false/Polygon/LineString/issue-#1201-false.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/false/Polygon/Polygon/Polygon-Polygon2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/false/Polygon/Polygon/Polygon-Polygon2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/true/LineString/LineString/LinesExactlySame.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/true/LineString/LineString/LinesExactlySame.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/true/MultiPoint/MultiPoint/MultiPointsEqual.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/true/MultiPoint/MultiPoint/MultiPointsEqual.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/true/Point/LineString/PointIsContainedByLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/true/Point/LineString/PointIsContainedByLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/true/Point/Polygon/PointInsidePolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/true/Point/Polygon/PointInsidePolygonBoundary.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/true/Polygon/LineString/issue-#1201-true.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/true/Polygon/LineString/issue-#1201-true.geojson -------------------------------------------------------------------------------- /test/examples/booleans/contains/test/true/Polygon/Polygon/PolygonExactSameShape.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/contains/test/true/Polygon/Polygon/PolygonExactSameShape.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/false/LineString/LineString/LineDoesNotCrossLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/false/LineString/LineString/LineDoesNotCrossLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/false/LineString/Polygon/LineDoesNotCrossPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/false/LineString/Polygon/LineDoesNotCrossPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/false/MultiPoint/LineString/MultiPointNotCrossLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/false/MultiPoint/LineString/MultiPointNotCrossLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/false/MultiPoint/LineString/MultiPointNotCrossLineEnd.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/false/MultiPoint/LineString/MultiPointNotCrossLineEnd.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/false/MultiPoint/Polygon/MultiPointNotCrossPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/false/MultiPoint/Polygon/MultiPointNotCrossPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/true/LineString/LineString/LineCrossesLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/true/LineString/LineString/LineCrossesLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/true/LineString/Polygon/LineCrossesPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/true/LineString/Polygon/LineCrossesPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/true/LineString/Polygon/LineCrossesPolygonPartial.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/true/LineString/Polygon/LineCrossesPolygonPartial.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/true/MultiPoint/LineString/MultiPointsCrossLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/true/MultiPoint/LineString/MultiPointsCrossLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/crosses/true/MultiPoint/Polygon/MultiPointsCrossPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/crosses/true/MultiPoint/Polygon/MultiPointsCrossPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/diagrams/esri-disjoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/diagrams/esri-disjoint.gif -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/LineString/Point/LineString-Point-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/LineString/Point/LineString-Point-1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/LineString/Point/LineString-Point-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/LineString/Point/LineString-Point-2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/LineString/Polygon/LineString-In-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/LineString/Polygon/LineString-In-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-3.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/LineString/Point-LineString-4.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/MultiPoint/Point-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/MultiPoint/Point-MultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/Polygon/Point-Polygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/Polygon/Point-Polygon-1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Point/Polygon/Point-Polygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Point/Polygon/Point-Polygon-2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Polygon/Polygon/Large-Inside-Small.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Polygon/Polygon/Large-Inside-Small.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Polygon/Polygon/Small-Inside-Large.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Polygon/Polygon/Small-Inside-Large.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/false/Polygon/Polygon/issue-1216.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/false/Polygon/Polygon/issue-1216.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/LineString/Point/LineString-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/LineString/Point/LineString-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/MultiPoint/Point/MultiPoint-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/MultiPoint/Point/MultiPoint-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Point/LineString/Point-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Point/LineString/Point-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Point/MultiPoint/Point-Multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Point/MultiPoint/Point-Multipoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Point/Polygon/Point-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Point/Polygon/Point-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/disjoint/test/true/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/disjoint/test/true/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/diagrams/esri-equals.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/diagrams/esri-equals.gif -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/false/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/false/linear-rings.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/false/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/false/lines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/false/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/false/multipoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/false/points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/false/points.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/false/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/false/polygons.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/false/precision-default.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/false/precision-default.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/false/precision-options.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/false/precision-options.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/different-initials-poly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/different-initials-poly.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/linear-rings.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/lines-extra-vertices.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/lines-extra-vertices.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/lines-reverse.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/lines-reverse.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/lines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/multipoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/points.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/polygons.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/precision-default.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/precision-default.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/precision-options.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/precision-options.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/reverse-lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/reverse-lines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/equal/test/true/reverse-polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/equal/test/true/reverse-polygons.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/LineString/LineString/LineString-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/LineString/LineString/LineString-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/LineString/Point/LineString-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/LineString/Point/LineString-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/MultiPoint/LineString/MultiPoint-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/MultiPoint/LineString/MultiPoint-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/MultiPoint/Point/MultiPoint-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/MultiPoint/Point/MultiPoint-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Point/LineString/Point-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Point/LineString/Point-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Point/MultiPoint/Point-Multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Point/MultiPoint/Point-Multipoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Point/Polygon/Point-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Point/Polygon/Point-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/LineString/LineString/LineString-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/LineString/LineString/LineString-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/LineString/Point/LineString-Point-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/LineString/Point/LineString-Point-1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/LineString/Point/LineString-Point-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/LineString/Point/LineString-Point-2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/LineString/Polygon/LineString-In-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/LineString/Polygon/LineString-In-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/MultiPoint/LineString/MultiPoint-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/MultiPoint/LineString/MultiPoint-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/LineString/Point-LineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/LineString/Point-LineString-1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/LineString/Point-LineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/LineString/Point-LineString-2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/LineString/Point-LineString-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/LineString/Point-LineString-3.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/LineString/Point-LineString-4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/LineString/Point-LineString-4.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/MultiPoint/Point-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/MultiPoint/Point-MultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/Polygon/Point-Polygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/Polygon/Point-Polygon-1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Point/Polygon/Point-Polygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Point/Polygon/Point-Polygon-2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Polygon/Polygon/Large-Inside-Small.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Polygon/Polygon/Large-Inside-Small.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Polygon/Polygon/Small-Inside-Large.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Polygon/Polygon/Small-Inside-Large.geojson -------------------------------------------------------------------------------- /test/examples/booleans/intersects/true/Polygon/Polygon/issue-1216.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/intersects/true/Polygon/Polygon/issue-1216.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/equal-linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/equal-linear-rings.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/equal-lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/equal-lines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/equal-multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/equal-multipoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/equal-polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/equal-polygons.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/linear-rings.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/lines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/multipoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/polygon-with-hole-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/polygon-with-hole-polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/false/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/false/polygons.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/true/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/true/linear-rings.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/true/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/true/lines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/true/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/true/multipoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/true/polygon-with-hole-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/true/polygon-with-hole-polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/true/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/true/polygons.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/true/simple-lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/true/simple-lines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/overlap/true/single-multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/overlap/true/single-multipoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/false/line1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/false/line1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/false/line2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/false/line2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/city-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/city-line.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/fiji.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/fiji.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/line1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/line1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/line3-reverse.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/line3-reverse.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/line3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/line3.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/resolute.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/resolute.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/segment1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/segment1.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/segment2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/segment2.geojson -------------------------------------------------------------------------------- /test/examples/booleans/parallel/true/segment3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/parallel/true/segment3.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_in_polygon/in/multipoly-with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_in_polygon/in/multipoly-with-hole.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_in_polygon/in/poly-with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_in_polygon/in/poly-with-hole.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/false/LineWithOnly1SegmentIgnoreBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/false/LineWithOnly1SegmentIgnoreBoundary.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/false/LineWithOnly1SegmentIgnoreBoundaryEnd.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/false/LineWithOnly1SegmentIgnoreBoundaryEnd.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/false/PointOnEndFailsWhenIgnoreEndpoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/false/PointOnEndFailsWhenIgnoreEndpoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/false/PointOnStartFailsWhenIgnoreEndpoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/false/PointOnStartFailsWhenIgnoreEndpoints.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/false/notOnLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/false/notOnLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/LineWithOnly1Segment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/LineWithOnly1Segment.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/LineWithOnly1SegmentOnStart.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/LineWithOnly1SegmentOnStart.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/PointOnFirstSegment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/PointOnFirstSegment.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/PointOnLastSegment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/PointOnLastSegment.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/PointOnLineEnd.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/PointOnLineEnd.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/PointOnLineMidVertice.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/PointOnLineMidVertice.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/PointOnLineMidpoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/PointOnLineMidpoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/PointOnLineStart.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/PointOnLineStart.geojson -------------------------------------------------------------------------------- /test/examples/booleans/point_on_line/true/PointOnLineWithEpsilon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/point_on_line/true/PointOnLineWithEpsilon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/LineString/LineString/LinesExactSame.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/LineString/LineString/LinesExactSame.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/LineString/LineString/LivesOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/LineString/LineString/LivesOverlap.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/LineString/Polygon/LineCrossesPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/LineString/Polygon/LineCrossesPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/LineString/Polygon/LineDoesNotTouch.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/LineString/Polygon/LineDoesNotTouch.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/LineString/Polygon/LineWIthinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/LineString/Polygon/LineWIthinPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/MultiLineString/Polygon/MultiLineInsidePoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/MultiLineString/Polygon/MultiLineInsidePoly.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/MultiPoint/Polygon/MultiPointInsidePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/MultiPoint/Polygon/MultiPointInsidePolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/MultiPoint/Polygon/MultiPointNoTouchPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/MultiPoint/Polygon/MultiPointNoTouchPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/MultiPolygon/MultiPolygon/MultiPolysOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/MultiPolygon/MultiPolygon/MultiPolysOverlap.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/MultiPolygon/Point/MultiPolyNotTouchPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/MultiPolygon/Point/MultiPolyNotTouchPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Point/LineString/PointIsNotTouchLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Point/LineString/PointIsNotTouchLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Point/LineString/PointOnMidLinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Point/LineString/PointOnMidLinestring.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Point/MultiLineString/MpOnMidLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Point/MultiLineString/MpOnMidLineString.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Point/MultiPolygon/PointNotTouchMultipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Point/MultiPolygon/PointNotTouchMultipolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Point/Polygon/PointDoesNotTouchPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Point/Polygon/PointDoesNotTouchPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Point/Polygon/PointInsidePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Point/Polygon/PointInsidePolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/LineString/PolyDoesNotTouchLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/LineString/PolyDoesNotTouchLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/MultiLineString/PolyOverlapMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/MultiLineString/PolyOverlapMultiLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/MultiPoint/PolygonNoTouchMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/MultiPoint/PolygonNoTouchMultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/MultiPoint/PolygonOverlapsMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/MultiPoint/PolygonOverlapsMultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/MultiPolygon/PolyNotTouchMultipoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/MultiPolygon/PolyNotTouchMultipoly.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/Point/PolygonDoesNotTouchPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/Point/PolygonDoesNotTouchPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/Point/PolygonOverlapsPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/Point/PolygonOverlapsPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/Polygon/PolygonsDontTouch.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/Polygon/PolygonsDontTouch.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/false/Polygon/Polygon/PolygonsOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/false/Polygon/Polygon/PolygonsOverlap.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/LineString/LineString/LineTouchesEndpoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/LineString/LineString/LineTouchesEndpoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/LineString/MultiPoint/MultipointTouchesLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/LineString/MultiPoint/MultipointTouchesLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/LineString/MultiPolygon/LineTouchesMultiPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/LineString/MultiPolygon/LineTouchesMultiPoly.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/LineString/Polygon/LineTouchesPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/LineString/Polygon/LineTouchesPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/MultiLineString/Point/MultiLineTouchesPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/MultiLineString/Point/MultiLineTouchesPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/MultiPoint/LineString/MultipointTouchesLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/MultiPoint/LineString/MultipointTouchesLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/MultiPolygon/Point/MpTouchesPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/MultiPolygon/Point/MpTouchesPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/MultiPolygon/Polygon/MultiPolyTouchesPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/MultiPolygon/Polygon/MultiPolyTouchesPoly.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/LineString/PointOnEndLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/LineString/PointOnEndLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/LineString/PointOnStartLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/LineString/PointOnStartLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/MultiLineString/MpOnEndLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/MultiLineString/MpOnEndLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/MultiLineString/MpOnStartLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/MultiLineString/MpOnStartLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/MultiPolygon/PointTouchesMultipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/MultiPolygon/PointTouchesMultipolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/Polygon/PointOnEdgePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/Polygon/PointOnEdgePolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/Polygon/PointOnHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/Polygon/PointOnHole.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Point/Polygon/PointOnVerticePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Point/Polygon/PointOnVerticePolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Polygon/LineString/PolygonTouchesLines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Polygon/LineString/PolygonTouchesLines.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Polygon/MultiPoint/PolygonTouchesMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Polygon/MultiPoint/PolygonTouchesMultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Polygon/MultiPolygon/PolyTouchMultiPolys.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Polygon/MultiPolygon/PolyTouchMultiPolys.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Polygon/Point/PolygonTouchesPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Polygon/Point/PolygonTouchesPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Polygon/Point/PolygonTouchesPointVertice.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Polygon/Point/PolygonTouchesPointVertice.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Polygon/Polygon/PolygonTouchesEdges.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Polygon/Polygon/PolygonTouchesEdges.geojson -------------------------------------------------------------------------------- /test/examples/booleans/touches/true/Polygon/Polygon/PolygonsTouchVertices.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/touches/true/Polygon/Polygon/PolygonsTouchVertices.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/assertion/MultiPoint/multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/assertion/MultiPoint/multipoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/assertion/Point/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/assertion/Point/point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/false/MultiPolygon/multipolygons-overlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/false/MultiPolygon/multipolygons-overlap.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/false/MultiPolygon/not-enough-coords.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/false/MultiPolygon/not-enough-coords.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/false/Polygon/not-enough-coords.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/false/Polygon/not-enough-coords.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/false/Polygon/polygon-with-hole-2-vertices-touching.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/false/Polygon/polygon-with-hole-2-vertices-touching.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/false/Polygon/polygon-with-puncture.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/false/Polygon/polygon-with-puncture.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/false/Polygon/polygon-with-spike.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/false/Polygon/polygon-with-spike.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/LineString/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/LineString/linestring.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/MultiLineString/multilinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/MultiLineString/multilinestring.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/MultiPoint/multipoint-with-z.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/MultiPoint/multipoint-with-z.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/MultiPoint/multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/MultiPoint/multipoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/MultiPolygon/multipolygon-touch.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/MultiPolygon/multipolygon-touch.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/MultiPolygon/multipolygon-with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/MultiPolygon/multipolygon-with-hole.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/MultiPolygon/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/MultiPolygon/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/Point/point-with-z.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/Point/point-with-z.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/Point/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/Point/point.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/Polygon/polygon-internal-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/Polygon/polygon-internal-hole.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/Polygon/polygon-with-hole-1-vertice-touching.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/Polygon/polygon-with-hole-1-vertice-touching.geojson -------------------------------------------------------------------------------- /test/examples/booleans/valid/true/Polygon/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/valid/true/Polygon/polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/LineString/LineString/LineIsNotWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/LineString/LineString/LineIsNotWithinLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/LineString/Polygon/LineIsNotWIthinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/LineString/Polygon/LineIsNotWIthinPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/Point/LineString/PointIsNotWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/Point/LineString/PointIsNotWithinLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/Point/LineString/PointOnEndIsWithinLinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/Point/LineString/PointOnEndIsWithinLinestring.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/Point/MultiPoint/PointIsNotWithinMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/Point/MultiPoint/PointIsNotWithinMultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/Point/Polygon/PointIsNotWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/Point/Polygon/PointIsNotWithinPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/Point/Polygon/PointOnPolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/Point/Polygon/PointOnPolygonBoundary.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/LineString/LineString/LineIsWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/LineString/LineString/LineIsWithinLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/LineString/LineString/LinesExactSame.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/LineString/LineString/LinesExactSame.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/LineString/Polygon/LineIsContainedByPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/LineString/Polygon/LineIsContainedByPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/MultiPoint/LineString/MultipointsIsWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/MultiPoint/LineString/MultipointsIsWithinLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/Point/LineString/PointIsWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/Point/LineString/PointIsWithinLine.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/Point/MultiPoint/PointIsWithinMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/Point/MultiPoint/PointIsWithinMultiPoint.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/Point/MultiPolygon/point-within-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/Point/MultiPolygon/point-within-multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/Point/Polygon/PointIsWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/Point/Polygon/PointIsWithinPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/Polygon/Polygon/PolygonIsWIthinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/Polygon/Polygon/PolygonIsWIthinPolygon.geojson -------------------------------------------------------------------------------- /test/examples/booleans/within/true/Polygon/Polygon/PolygonsExactSameShape.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/booleans/within/true/Polygon/Polygon/PolygonsExactSameShape.geojson -------------------------------------------------------------------------------- /test/examples/center/in/feature-collection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/in/feature-collection.geojson -------------------------------------------------------------------------------- /test/examples/center/in/imbalanced-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/in/imbalanced-polygon.geojson -------------------------------------------------------------------------------- /test/examples/center/in/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/in/linestring.geojson -------------------------------------------------------------------------------- /test/examples/center/in/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/in/point.geojson -------------------------------------------------------------------------------- /test/examples/center/in/points-with-weights.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/in/points-with-weights.geojson -------------------------------------------------------------------------------- /test/examples/center/in/polygon-without-weights.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/in/polygon-without-weights.geojson -------------------------------------------------------------------------------- /test/examples/center/in/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/in/polygon.geojson -------------------------------------------------------------------------------- /test/examples/center/out/feature-collection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/out/feature-collection.geojson -------------------------------------------------------------------------------- /test/examples/center/out/imbalanced-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/out/imbalanced-polygon.geojson -------------------------------------------------------------------------------- /test/examples/center/out/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/out/linestring.geojson -------------------------------------------------------------------------------- /test/examples/center/out/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/out/point.geojson -------------------------------------------------------------------------------- /test/examples/center/out/points-with-weights.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/out/points-with-weights.geojson -------------------------------------------------------------------------------- /test/examples/center/out/polygon-without-weights.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/out/polygon-without-weights.geojson -------------------------------------------------------------------------------- /test/examples/center/out/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/center/out/polygon.geojson -------------------------------------------------------------------------------- /test/examples/centroid/in/feature-collection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/in/feature-collection.geojson -------------------------------------------------------------------------------- /test/examples/centroid/in/imbalanced-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/in/imbalanced-polygon.geojson -------------------------------------------------------------------------------- /test/examples/centroid/in/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/in/linestring.geojson -------------------------------------------------------------------------------- /test/examples/centroid/in/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/in/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/centroid/in/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/in/point.geojson -------------------------------------------------------------------------------- /test/examples/centroid/in/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/in/polygon.geojson -------------------------------------------------------------------------------- /test/examples/centroid/out/feature-collection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/out/feature-collection.geojson -------------------------------------------------------------------------------- /test/examples/centroid/out/imbalanced-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/out/imbalanced-polygon.geojson -------------------------------------------------------------------------------- /test/examples/centroid/out/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/out/linestring.geojson -------------------------------------------------------------------------------- /test/examples/centroid/out/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/out/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/centroid/out/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/out/point.geojson -------------------------------------------------------------------------------- /test/examples/centroid/out/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/centroid/out/polygon.geojson -------------------------------------------------------------------------------- /test/examples/circle/in/circle1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/circle/in/circle1.geojson -------------------------------------------------------------------------------- /test/examples/circle/out/circle1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/circle/out/circle1.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/clean-segment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/clean-segment.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/closed-linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/closed-linestring.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/geometry.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/multiline.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/multiline.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/multipoint.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/point.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/polygon-with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/polygon-with-hole.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/polygon.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/segment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/segment.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/simple-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/simple-line.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/triangle.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/triangle.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/in/triplicate-issue1255.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/in/triplicate-issue1255.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/clean-segment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/clean-segment.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/closed-linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/closed-linestring.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/geometry.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/multiline.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/multiline.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/multipoint.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/point.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/polygon-with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/polygon-with-hole.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/polygon.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/segment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/segment.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/simple-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/simple-line.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/triangle.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/triangle.geojson -------------------------------------------------------------------------------- /test/examples/cleanCoords/out/triplicate-issue1255.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/cleanCoords/out/triplicate-issue1255.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/geometrycollection-0-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/geometrycollection-0-0.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/geometrycollection-xyz-0-6.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/geometrycollection-xyz-0-6.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/multilinestring-0-5.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/multilinestring-0-5.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/multilinestring-xyz-0-11.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/multilinestring-xyz-0-11.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/multipoint-0-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/multipoint-0-3.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/multipoint-xyz-0-9.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/multipoint-xyz-0-9.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/multipolygon-0-4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/multipolygon-0-4.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/multipolygon-xyz-0-10.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/multipolygon-xyz-0-10.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/one-1-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/one-1-0.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/one-2-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/one-2-0.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/point-0-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/point-0-2.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/point-xyz-0-8.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/point-xyz-0-8.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/polygon-0-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/polygon-0-1.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/polygon-with-properties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/polygon-with-properties.geojson -------------------------------------------------------------------------------- /test/examples/explode/in/polygon-xyz-0-7.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/in/polygon-xyz-0-7.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/geometrycollection-0-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/geometrycollection-0-0.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/geometrycollection-xyz-0-6.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/geometrycollection-xyz-0-6.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/multilinestring-0-5.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/multilinestring-0-5.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/multilinestring-xyz-0-11.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/multilinestring-xyz-0-11.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/multipoint-0-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/multipoint-0-3.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/multipoint-xyz-0-9.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/multipoint-xyz-0-9.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/multipolygon-0-4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/multipolygon-0-4.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/multipolygon-xyz-0-10.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/multipolygon-xyz-0-10.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/one-1-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/one-1-0.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/one-2-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/one-2-0.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/point-0-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/point-0-2.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/point-xyz-0-8.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/point-xyz-0-8.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/polygon-0-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/polygon-0-1.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/polygon-with-properties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/polygon-with-properties.geojson -------------------------------------------------------------------------------- /test/examples/explode/out/polygon-xyz-0-7.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/explode/out/polygon-xyz-0-7.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/collection_linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/collection_linestring.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/geometry_linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/geometry_linestring.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/linestring.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/linestring_incomplete.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/linestring_incomplete.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/linestrings_to_multipolygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/linestrings_to_multipolygons.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestring_incomplete.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestring_incomplete.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestring_nested.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestring_nested.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestring_nested2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestring_nested2.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestring_outer_ring_middle_position.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestring_outer_ring_middle_position.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestring_with_hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestring_with_hole.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestrings_nested.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestrings_nested.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestrings_outer_doughnut.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestrings_outer_doughnut.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/in/multi_linestrings_with_holes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/in/multi_linestrings_with_holes.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/collection_linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/collection_linestring.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/geometry_linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/geometry_linestring.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/linestring.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/linestring_incomplete.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/linestring_incomplete.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/linestrings_to_multipolygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/linestrings_to_multipolygons.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestring_incomplete.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestring_incomplete.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestring_nested.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestring_nested.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestring_nested2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestring_nested2.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestring_outer_ring_middle_position.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestring_outer_ring_middle_position.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestring_with_hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestring_with_hole.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestrings_nested.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestrings_nested.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestrings_outer_doughnut.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestrings_outer_doughnut.geojson -------------------------------------------------------------------------------- /test/examples/lineToPolygon/out/multi_linestrings_with_holes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lineToPolygon/out/multi_linestrings_with_holes.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/in/2-vertex-segment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/in/2-vertex-segment.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/in/double-intersect.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/in/double-intersect.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/in/multi-linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/in/multi-linestring.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/in/polygons-with-holes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/in/polygons-with-holes.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/in/same-coordinates.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/in/same-coordinates.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/out/2-vertex-segment.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/out/2-vertex-segment.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/out/double-intersect.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/out/double-intersect.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/out/multi-linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/out/multi-linestring.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/out/polygons-with-holes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/out/polygons-with-holes.geojson -------------------------------------------------------------------------------- /test/examples/line_intersect/out/same-coordinates.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_intersect/out/same-coordinates.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/boolean-line-overlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/boolean-line-overlap.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/issue-#901-simplified.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/issue-#901-simplified.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/issue-#901.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/issue-#901.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/partial-overlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/partial-overlap.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/partial-overlap2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/partial-overlap2.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/polygons.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/simple1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/simple1.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/simple2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/simple2.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/in/simple3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/in/simple3.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/boolean-line-overlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/boolean-line-overlap.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/issue-#901-simplified.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/issue-#901-simplified.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/issue-#901.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/issue-#901.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/partial-overlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/partial-overlap.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/partial-overlap2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/partial-overlap2.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/polygons.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/simple1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/simple1.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/simple2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/simple2.geojson -------------------------------------------------------------------------------- /test/examples/line_overlap/out/simple3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_overlap/out/simple3.geojson -------------------------------------------------------------------------------- /test/examples/line_slice_along/fixtures/line1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_slice_along/fixtures/line1.geojson -------------------------------------------------------------------------------- /test/examples/line_slice_along/fixtures/route1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_slice_along/fixtures/route1.geojson -------------------------------------------------------------------------------- /test/examples/line_slice_along/fixtures/route2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/line_slice_along/fixtures/route2.geojson -------------------------------------------------------------------------------- /test/examples/lukas-h/germany-states.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/lukas-h/germany-states.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-line1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-line1.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-line2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-line2.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-segment-inside1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-segment-inside1.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-segment-inside2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-segment-inside2.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-segment-inside3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-segment-inside3.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-segment-obtuse1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-segment-obtuse1.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-segment-obtuse2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-segment-obtuse2.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-segment-projected1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-segment-projected1.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/city-segment-projected2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/city-segment-projected2.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/issue-1156.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/issue-1156.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/line-fiji.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/line-fiji.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/line-resolute-bay.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/line-resolute-bay.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/line1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/line1.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/line2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/line2.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/segment-fiji.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/segment-fiji.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/segment1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/segment1.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/segment1a.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/segment1a.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/segment2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/segment2.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/segment3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/segment3.geojson -------------------------------------------------------------------------------- /test/examples/point_to_line_distance/in/segment4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/point_to_line_distance/in/segment4.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/in/close.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/in/close.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/in/geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/in/geometry.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/in/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/in/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/in/multipolygonWithHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/in/multipolygonWithHole.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/in/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/in/polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/in/withHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/in/withHole.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/out/close.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/out/close.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/out/geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/out/geometry.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/out/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/out/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/out/multipolygonWithHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/out/multipolygonWithHole.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/out/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/out/polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonSmooth/out/withHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonSmooth/out/withHole.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/complexPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/complexPolygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/concave.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/concave.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/high.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/high.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/island#1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/island#1.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/island#2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/island#2.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/polygonWithHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/polygonWithHole.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/in/square.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/in/square.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/complexPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/complexPolygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/concave.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/concave.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/high.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/high.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/island#1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/island#1.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/island#2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/island#2.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/multipolygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/polygonWithHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/polygonWithHole.geojson -------------------------------------------------------------------------------- /test/examples/polygonTangents/out/square.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonTangents/out/square.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/in/geometry_polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/in/geometry_polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/in/multi_polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/in/multi_polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/in/multi_polygon_outer_doughnut.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/in/multi_polygon_outer_doughnut.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/in/multi_polygon_with_holes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/in/multi_polygon_with_holes.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/in/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/in/polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/in/polygon_with_hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/in/polygon_with_hole.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/out/geometry_polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/out/geometry_polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/out/multi_polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/out/multi_polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/out/multi_polygon_outer_doughnut.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/out/multi_polygon_outer_doughnut.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/out/multi_polygon_with_holes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/out/multi_polygon_with_holes.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/out/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/out/polygon.geojson -------------------------------------------------------------------------------- /test/examples/polygonToLine/out/polygon_with_hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/polygonToLine/out/polygon_with_hole.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/README.md -------------------------------------------------------------------------------- /test/examples/rfc7946/antimeridianCutting1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/antimeridianCutting1.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/antimeridianCutting2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/antimeridianCutting2.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/featureCollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/featureCollection.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/featureCollectionWithBBox1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/featureCollectionWithBBox1.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/featureCollectionWithBBox2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/featureCollectionWithBBox2.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/featureWithBBox.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/featureWithBBox.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/geometryCollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/geometryCollection.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/lineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/lineString.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/multiLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/multiLineString.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/multiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/multiPoint.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/multiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/multiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/point.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/polygon1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/polygon1.geojson -------------------------------------------------------------------------------- /test/examples/rfc7946/polygon2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rfc7946/polygon2.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_bearing/in/pair1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_bearing/in/pair1.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_bearing/out/pair1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_bearing/out/pair1.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_bearing/out/pair1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_bearing/out/pair1.json -------------------------------------------------------------------------------- /test/examples/rhumb_destination/in/fiji-east-west-539-lng.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/in/fiji-east-west-539-lng.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/in/fiji-east-west.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/in/fiji-east-west.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/in/fiji-west-east.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/in/fiji-west-east.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/in/point-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/in/point-0.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/in/point-180.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/in/point-180.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/in/point-90.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/in/point-90.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/in/point-way-far-away.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/in/point-way-far-away.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/out/fiji-east-west-539-lng.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/out/fiji-east-west-539-lng.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/out/fiji-east-west.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/out/fiji-east-west.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/out/fiji-west-east.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/out/fiji-west-east.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/out/point-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/out/point-0.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/out/point-180.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/out/point-180.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/out/point-90.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/out/point-90.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_destination/out/point-way-far-away.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_destination/out/point-way-far-away.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_distance/in/fiji-539-lng.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/in/fiji-539-lng.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_distance/in/points-fiji.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/in/points-fiji.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_distance/in/points1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/in/points1.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_distance/in/points2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/in/points2.geojson -------------------------------------------------------------------------------- /test/examples/rhumb_distance/out/fiji-539-lng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/out/fiji-539-lng.json -------------------------------------------------------------------------------- /test/examples/rhumb_distance/out/points-fiji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/out/points-fiji.json -------------------------------------------------------------------------------- /test/examples/rhumb_distance/out/points1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/out/points1.json -------------------------------------------------------------------------------- /test/examples/rhumb_distance/out/points2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/rhumb_distance/out/points2.json -------------------------------------------------------------------------------- /test/examples/simplify/in/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/simplify/in/linestring.geojson -------------------------------------------------------------------------------- /test/examples/simplify/out/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/simplify/out/linestring.geojson -------------------------------------------------------------------------------- /test/examples/square/in/horizontalrectangle.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/square/in/horizontalrectangle.geojson -------------------------------------------------------------------------------- /test/examples/square/in/verticalrectangle.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/square/in/verticalrectangle.geojson -------------------------------------------------------------------------------- /test/examples/square/out/horizontalrectangle.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/square/out/horizontalrectangle.geojson -------------------------------------------------------------------------------- /test/examples/square/out/verticalrectangle.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/square/out/verticalrectangle.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/line.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/multiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/multiLine.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/multiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/multiPoint.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/multiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/multiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/no-rotation.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/no-rotation.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/point.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/polygon-fiji.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/polygon-fiji.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/polygon-resolute-bay.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/polygon-resolute-bay.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/polygon-with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/polygon-with-hole.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/polygon.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/in/z-coord.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/in/z-coord.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/line.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/multiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/multiLine.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/multiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/multiPoint.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/multiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/multiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/no-rotation.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/no-rotation.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/point.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/polygon-fiji.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/polygon-fiji.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/polygon-resolute-bay.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/polygon-resolute-bay.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/polygon-with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/polygon-with-hole.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/polygon.geojson -------------------------------------------------------------------------------- /test/examples/transform_rotate/out/z-coord.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/transform_rotate/out/z-coord.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/geometry-collection-in-feature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/geometry-collection-in-feature.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/geometry-collection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/geometry-collection.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/linestring-geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/linestring-geometry.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/multiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/multiLine.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/multiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/multiPoint.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/multiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/multiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/point-elevation.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/point-elevation.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/point-geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/point-geometry.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/point.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/points.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/polygon.geojson -------------------------------------------------------------------------------- /test/examples/truncate/in/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/in/polygons.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/geometry-collection-in-feature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/geometry-collection-in-feature.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/geometry-collection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/geometry-collection.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/linestring-geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/linestring-geometry.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/multiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/multiLine.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/multiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/multiPoint.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/multiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/multiPolygon.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/point-elevation.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/point-elevation.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/point-geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/point-geometry.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/point.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/points.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/polygon.geojson -------------------------------------------------------------------------------- /test/examples/truncate/out/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/truncate/out/polygons.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/README.md -------------------------------------------------------------------------------- /test/examples/wikipedia/featureCollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/featureCollection.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/geometryCollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/geometryCollection.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/lineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/lineString.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/multiLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/multiLineString.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/multiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/multiPoint.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/multiPolygon1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/multiPolygon1.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/multiPolygon2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/multiPolygon2.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/point.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/polygon1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/polygon1.geojson -------------------------------------------------------------------------------- /test/examples/wikipedia/polygon2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartclub/turf_dart/HEAD/test/examples/wikipedia/polygon2.geojson -------------------------------------------------------------------------------- /test/main.dart: -------------------------------------------------------------------------------- 1 | // This file intentionally left blank 2 | --------------------------------------------------------------------------------