├── .eslintrc.json ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── bench.md ├── docs ├── css │ └── example.css ├── index.html └── js │ └── examples.js ├── index.js ├── license.txt ├── package.json ├── readme.md ├── rollup.config.js ├── src ├── contains │ └── index.js ├── coveredby │ ├── index.js │ ├── line.js │ ├── point.js │ └── polygon.js ├── covers │ └── index.js ├── crosses │ ├── index.js │ ├── line.js │ ├── point.js │ └── polygon.js ├── disjoint │ └── index.js ├── equals │ └── index.js ├── intersects │ ├── index.js │ ├── line.js │ ├── point.js │ └── polygon.js ├── overlaps │ ├── index.js │ ├── line.js │ ├── point.js │ └── polygon.js ├── touches │ ├── index.js │ ├── line.js │ ├── point.js │ └── polygon.js ├── util │ ├── clipper.js │ ├── helpers.js │ ├── index.js │ ├── invariant.js │ ├── line.js │ ├── meta.js │ ├── partition.js │ ├── point.js │ ├── polygon.js │ └── triangulate.js └── within │ ├── index.js │ ├── line.js │ ├── point.js │ └── polygon.js └── test ├── bench.js ├── data ├── bench │ ├── LineString │ │ ├── LineString │ │ │ ├── contains.geojson │ │ │ ├── coveredby.geojson │ │ │ ├── covers.geojson │ │ │ ├── crosses.geojson │ │ │ ├── disjoint.geojson │ │ │ ├── equals.geojson │ │ │ ├── intersects.geojson │ │ │ ├── overlaps.geojson │ │ │ ├── touches.geojson │ │ │ └── within.geojson │ │ └── Polygon │ │ │ ├── coveredby.geojson │ │ │ ├── crosses.geojson │ │ │ ├── disjoint.geojson │ │ │ ├── intersects.geojson │ │ │ ├── touches.geojson │ │ │ └── within.geojson │ ├── MultiPoint │ │ ├── LineString │ │ │ ├── coveredby.geojson │ │ │ ├── crosses.geojson │ │ │ ├── disjoint.geojson │ │ │ ├── intersects.geojson │ │ │ ├── touches.geojson │ │ │ └── within.geojson │ │ ├── MultiPoint │ │ │ ├── contains.geojson │ │ │ ├── coveredby.geojson │ │ │ ├── covers.geojson │ │ │ ├── disjoint.geojson │ │ │ ├── equals.geojson │ │ │ ├── intersects.geojson │ │ │ ├── overlaps.geojson │ │ │ └── within.geojson │ │ └── Polygon │ │ │ ├── coveredby.geojson │ │ │ ├── disjoint.geojson │ │ │ ├── intersects.geojson │ │ │ ├── touches.geojson │ │ │ └── within.geojson │ └── Polygon │ │ └── Polygon │ │ ├── contains.geojson │ │ ├── coveredby.geojson │ │ ├── covers.geojson │ │ ├── disjoint.geojson │ │ ├── equals.geojson │ │ ├── intersects.geojson │ │ ├── overlaps.geojson │ │ ├── touches.geojson │ │ └── within.geojson ├── de9im │ ├── contains │ │ ├── false │ │ │ ├── GeometryCollection │ │ │ │ └── GeometryCollection │ │ │ │ │ ├── GeometryCollectionDoesNotContainBoundaryGeometryCollection-1.geojson │ │ │ │ │ ├── GeometryCollectionDoesNotContainDisjointGeometryCollection-1.geojson │ │ │ │ │ ├── GeometryCollectionDoesNotContainDisjointGeometryCollection-2.geojson │ │ │ │ │ └── GeometryCollectionDoesNotContainExteriorGeometryCollection-1.geojson │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineStringDoesNotContainBoundaryExteriorLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotContainDisjointLineString-1.geojson │ │ │ │ │ └── LineStringDoesNotContainIntersectingLineString-1.geojson │ │ │ │ └── Point │ │ │ │ │ ├── LineStringDoesNotContainBoundaryPoint-1.geojson │ │ │ │ │ ├── LineStringDoesNotContainBoundaryPoint-2.geojson │ │ │ │ │ ├── LineStringDoesNotContainDisjointPoint-1.geojson │ │ │ │ │ └── LineStringDoesNotContainDisjointPoint-2.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MultiLineStringDoesNotContainExteriorMultiLineString-1.geojson │ │ │ │ │ └── MultiLineStringDoesNotContainOverlapsMultiLineString-1.geojson │ │ │ │ └── MultiPoint │ │ │ │ │ ├── MultiLineStringDoesNotContainBoundaryMultiPoint-1.geojson │ │ │ │ │ └── MultiLineStringDoesNotContainExteriorMultiPoint-1.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiPoint │ │ │ │ │ ├── MultiPointDoesNotContainExteriorMultiPoint-1.geojson │ │ │ │ │ └── MultiPointDoesNotContainOverlapsMultiPoint-1.geojson │ │ │ ├── MultiPolygon │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MultiPolygonDoesNotContainExteriorHoleMultiLineString-1.geojson │ │ │ │ │ ├── MultiPolygonDoesNotContainExteriorMultiLineString-1.geojson │ │ │ │ │ └── MultiPolygonDoesNotContainOverlapsMultiLineString-1.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── MultiPolygonDoesNotContainBoundaryMultiPoint-1.geojson │ │ │ │ │ └── MultiPolygonDoesNotContainExteriorMultiPoint-1.geojson │ │ │ │ └── MultiPolygon │ │ │ │ │ ├── MultiPolygonDoesNotContainBoundaryExteriorMultiPolygon-1.geojson │ │ │ │ │ ├── MultiPolygonDoesNotContainExteriorHoleMultiPolygon-1.geojson │ │ │ │ │ ├── MultiPolygonDoesNotContainExteriorMultiPolygon-1.geojson │ │ │ │ │ └── MultiPolygonDoesNotContainIntersectingMultiPolygon-1.geojson │ │ │ ├── Point │ │ │ │ └── Point │ │ │ │ │ ├── PointDoesNotContainDisjointPoint-1.geojson │ │ │ │ │ ├── PointDoesNotContainDisjointPoint-2.geojson │ │ │ │ │ └── PointDoesNotContainDisjointPoint-3.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ ├── PolygonDoesNotContainBoundaryLineString-1.geojson │ │ │ │ ├── PolygonDoesNotContainExteriorLineString-1.geojson │ │ │ │ ├── PolygonDoesNotContainIntersectingLineString-1.geojson │ │ │ │ ├── PolygonDoesNotContainIntersectingLineString-2.geojson │ │ │ │ └── PolygonDoesNotContainIntersectingLineString-3.geojson │ │ │ │ ├── Point │ │ │ │ ├── PolygonDoesNotContainBoundaryPoint-1.geojson │ │ │ │ ├── PolygonDoesNotContainExteriorHolePoint-1.geojson │ │ │ │ └── PolygonDoesNotContainExteriorPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ ├── PolygonDoesNotContainBoundaryExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotContainDisjointPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotContainExteriorHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotContainExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotContainExteriorPolygon-2.geojson │ │ │ │ ├── PolygonDoesNotContainIntersectsHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotContainOverlapsPolygon-1.geojson │ │ │ │ └── PolygonDoesNotContainOverlapsPolygon-2.geojson │ │ ├── throws │ │ │ ├── LineString │ │ │ │ └── Polygon │ │ │ │ │ └── LineStringDoesNotContainAnyPolygon-1.geojson │ │ │ └── Point │ │ │ │ ├── LineString │ │ │ │ └── PointDoesNotContainAnyLineString-1.geojson │ │ │ │ └── Polygon │ │ │ │ └── PointDoesNotContainAnyPolygon-1.geojson │ │ └── true │ │ │ ├── GeometryCollection │ │ │ └── GeometryCollection │ │ │ │ ├── GeometryCollectionContainsEqualGeometryCollection-1.geojson │ │ │ │ ├── GeometryCollectionContainsInteriorGeometryCollection-1.geojson │ │ │ │ └── GeometryCollectionContainsInteriorGeometryCollection-2.geojson │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ ├── LineStringContainsContainingLineString-1.geojson │ │ │ │ ├── LineStringContainsEqualLineString-1.geojson │ │ │ │ └── LineStringContainsInteriorLineString-1.geojson │ │ │ └── Point │ │ │ │ ├── LineStringContainsInteriorPoint-1.geojson │ │ │ │ └── LineStringContainsInteriorPoint-2.geojson │ │ │ ├── MultiLineString │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineStringContainsContainingMultiLineString-1.geojson │ │ │ │ ├── MultiLineStringContainsContainingMultiLineString-2.geojson │ │ │ │ └── MultiLineStringContainsEqualMultiLineString-1.geojson │ │ │ └── MultiPoint │ │ │ │ ├── MultiLineStringContainsBoundaryInteriorMultiPoint-1.geojson │ │ │ │ └── MultiLineStringContainsInteriorMultiPoint-1.geojson │ │ │ ├── MultiPoint │ │ │ └── MultiPoint │ │ │ │ ├── MultiPointContainsEqualMultiPoint-1.geojson │ │ │ │ └── MultiPointContainsInteriorMultiPoint-1.geojson │ │ │ ├── MultiPolygon │ │ │ ├── MultiLineString │ │ │ │ ├── MultiPolygonContainsBoundaryInteriorMultiLineString-1.geojson │ │ │ │ └── MultiPolygonContainsInteriorMultiLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiPolygonContainsInteriorMultiPoint-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiPolygonContainsBoundaryInteriorMultiPolygon-1.geojson │ │ │ │ ├── MultiPolygonContainsInteriorMultiPolygon-1.geojson │ │ │ │ └── MultiPolygonContainsInteriorMultiPolygon-2.geojson │ │ │ ├── Point │ │ │ └── Point │ │ │ │ ├── PointContainsEqualPoint-1.geojson │ │ │ │ ├── PointContainsEqualPoint-2.geojson │ │ │ │ └── PointContainsEqualPoint-3.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ ├── PolygonContainsBoundaryInteriorLineString-1.geojson │ │ │ ├── PolygonContainsBoundaryInteriorLineString-2.geojson │ │ │ ├── PolygonContainsBoundaryInteriorLineString-3.geojson │ │ │ └── PolygonContainsInteriorLineString-1.geojson │ │ │ ├── Point │ │ │ └── PolygonContainsInteriorPoint-1.geojson │ │ │ └── Polygon │ │ │ ├── PolygonContainsBoundaryInteriorPolygon-1.geojson │ │ │ ├── PolygonContainsBoundaryInteriorPolygon-2.geojson │ │ │ ├── PolygonContainsEqualPolygon-1.geojson │ │ │ ├── PolygonContainsInteriorPolygon-1.geojson │ │ │ ├── PolygonContainsInteriorPolygon-2.geojson │ │ │ └── PolygonContainsInteriorPolygon-3.geojson │ ├── coveredby │ │ ├── false │ │ │ ├── GeometryCollection │ │ │ │ └── GeometryCollection │ │ │ │ │ ├── GeometryCollectionIsNotCoveredbyDisjointGeometryCollection-1.geojson │ │ │ │ │ ├── GeometryCollectionIsNotCoveredbyDisjointGeometryCollection-2.geojson │ │ │ │ │ └── GeometryCollectionIsNotCoveredbyExteriorGeometryCollection-1.geojson │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineStringIsNotCoveredbyBoundaryExteriorLineString-1.geojson │ │ │ │ │ ├── LineStringIsNotCoveredbyDisjointLineString-1.geojson │ │ │ │ │ └── LineStringIsNotCoveredbyIntersectingLineString-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineStringIsNotCoveredbyExteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotCoveredbyIntersectingPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotCoveredbyIntersectingPolygon-2.geojson │ │ │ │ │ └── LineStringIsNotCoveredbyIntersectingPolygon-3.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MultiLineStringIsNotCoveredbyExteriorMultiLineString-1.geojson │ │ │ │ │ └── MultiLineStringIsNotCoveredbyOverlapsMultiLineString-1.geojson │ │ │ │ └── MultiPolygon │ │ │ │ │ ├── MultiLineStringIsNotCoveredbyExteriorHoleMultiPolygon-1.geojson │ │ │ │ │ ├── MultiLineStringIsNotCoveredbyExteriorMultiPolygon-1.geojson │ │ │ │ │ └── MultiLineStringIsNotCoveredbyOverlapsMultiPolygon-1.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── MultiLineString │ │ │ │ │ └── MultiPointIsNotCoveredbyExteriorMultiLineString-1.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── MultiPointIsNotCoveredbyExteriorMultiPoint-1.geojson │ │ │ │ │ └── MultiPointIsNotCoveredbyOverlapsMultiPoint-1.geojson │ │ │ │ └── MultiPolygon │ │ │ │ │ └── MultiPointIsNotCoveredbyExteriorMultiPolygon-1.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── MultiPolygon │ │ │ │ │ ├── MultiPolygonIsNotCoveredbyBoundaryExteriorMultiPolygon-1.geojson │ │ │ │ │ ├── MultiPolygonIsNotCoveredbyExteriorHoleMultiPolygon-1.geojson │ │ │ │ │ ├── MultiPolygonIsNotCoveredbyExteriorMultiPolygon-1.geojson │ │ │ │ │ └── MultiPolygonIsNotCoveredbyIntersectingMultiPolygon-1.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointIsNotCoveredbyDisjointLineString-1.geojson │ │ │ │ │ └── PointIsNotCoveredbyDisjointLineString-2.geojson │ │ │ │ ├── Point │ │ │ │ │ ├── PointIsNotCoveredbyDisjointPoint-1.geojson │ │ │ │ │ ├── PointIsNotCoveredbyDisjointPoint-2.geojson │ │ │ │ │ └── PointIsNotCoveredbyDisjointPoint-3.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointIsNotCoveredbyExteriorHolePolygon-1.geojson │ │ │ │ │ └── PointIsNotCoveredbyExteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ │ └── Polygon │ │ │ │ ├── PolygonIsNotCoveredbyBoundaryExteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotCoveredbyDisjointPolygon-1.geojson │ │ │ │ ├── PolygonIsNotCoveredbyExteriorHolePolygon-1.geojson │ │ │ │ ├── PolygonIsNotCoveredbyExteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotCoveredbyExteriorPolygon-2.geojson │ │ │ │ ├── PolygonIsNotCoveredbyIntersectsHolePolygon-1.geojson │ │ │ │ ├── PolygonIsNotCoveredbyOverlapsPolygon-1.geojson │ │ │ │ └── PolygonIsNotCoveredbyOverlapsPolygon-2.geojson │ │ ├── throws │ │ │ ├── LineString │ │ │ │ └── Point │ │ │ │ │ └── LineStringIsNotCoveredbyAnyPoint-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ └── PolygonIsNotCoveredbyAnyLineString-1.geojson │ │ │ │ └── Point │ │ │ │ └── PolygonIsNotCoveredbyAnyPoint-1.geojson │ │ └── true │ │ │ ├── GeometryCollection │ │ │ └── GeometryCollection │ │ │ │ ├── GeometryCollectionCoveredbyBoundaryGeometryCollection-1.geojson │ │ │ │ ├── GeometryCollectionCoveredbyEqualGeometryCollection-1.geojson │ │ │ │ ├── GeometryCollectionCoveredbyInteriorGeometryCollection-1.geojson │ │ │ │ └── GeometryCollectionCoveredbyInteriorGeometryCollection-2.geojson │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ ├── LineStringCoveredbyContainingLineString-1.geojson │ │ │ │ ├── LineStringCoveredbyEqualLineString-1.geojson │ │ │ │ └── LineStringCoveredbyInteriorLineString-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineStringCoveredbyBoundaryInteriorPolygon-1.geojson │ │ │ │ ├── LineStringCoveredbyBoundaryInteriorPolygon-2.geojson │ │ │ │ ├── LineStringCoveredbyBoundaryInteriorPolygon-3.geojson │ │ │ │ ├── LineStringCoveredbyBoundaryPolygon-1.geojson │ │ │ │ └── LineStringCoveredbyInteriorPolygon-1.geojson │ │ │ ├── MultiLineString │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineStringCoveredbyContainingMultiLineString-1.geojson │ │ │ │ ├── MultiLineStringCoveredbyContainingMultiLineString-2.geojson │ │ │ │ └── MultiLineStringCoveredbyEqualMultiLineString-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiLineStringCoveredbyBoundaryInteriorMultiPolygon-1.geojson │ │ │ │ └── MultiLineStringCoveredbyInteriorMultiPolygon-1.geojson │ │ │ ├── MultiPoint │ │ │ ├── MultiLineString │ │ │ │ ├── MultiPointCoveredbyBoundaryInteriorMultiLineString-1.geojson │ │ │ │ ├── MultiPointCoveredbyBoundaryMultiLineString-1.geojson │ │ │ │ └── MultiPointCoveredbyInteriorMultiLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── MultiPointCoveredbyEqualMultiPoint-1.geojson │ │ │ │ └── MultiPointCoveredbyInteriorMultiPoint-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiPointCoveredbyBoundaryMultiPolygon-1.geojson │ │ │ │ └── MultiPointCoveredbyInteriorMultiPolygon-1.geojson │ │ │ ├── MultiPolygon │ │ │ └── MultiPolygon │ │ │ │ ├── MultiPolygonCoveredbyBoundaryInteriorMultiPolygon-1.geojson │ │ │ │ ├── MultiPolygonCoveredbyInteriorMultiPolygon-1.geojson │ │ │ │ └── MultiPolygonCoveredbyInteriorMultiPolygon-2.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ ├── PointCoveredbyBoundaryLineString-1.geojson │ │ │ │ ├── PointCoveredbyBoundaryLineString-2.geojson │ │ │ │ ├── PointCoveredbyInteriorLineString-1.geojson │ │ │ │ └── PointCoveredbyInteriorLineString-2.geojson │ │ │ ├── Point │ │ │ │ ├── PointCoveredbyEqualPoint-1.geojson │ │ │ │ ├── PointCoveredbyEqualPoint-2.geojson │ │ │ │ └── PointCoveredbyEqualPoint-3.geojson │ │ │ └── Polygon │ │ │ │ ├── PointCoveredbyBoundaryPolygon-1.geojson │ │ │ │ └── PointCoveredbyInteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ └── Polygon │ │ │ ├── PolygonCoveredbyBoundaryInteriorPolygon-1.geojson │ │ │ ├── PolygonCoveredbyBoundaryInteriorPolygon-2.geojson │ │ │ ├── PolygonCoveredbyEqualPolygon-1.geojson │ │ │ ├── PolygonCoveredbyInteriorPolygon-1.geojson │ │ │ ├── PolygonCoveredbyInteriorPolygon-2.geojson │ │ │ └── PolygonCoveredbyInteriorPolygon-3.geojson │ ├── covers │ │ ├── false │ │ │ ├── GeometryCollection │ │ │ │ └── GeometryCollection │ │ │ │ │ ├── GeometryCollectionDoesNotCoverDisjointGeometryCollection-1.geojson │ │ │ │ │ ├── GeometryCollectionDoesNotCoverDisjointGeometryCollection-2.geojson │ │ │ │ │ └── GeometryCollectionDoesNotCoverExteriorGeometryCollection-1.geojson │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineStringDoesNotCoverBoundaryExteriorLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotCoverDisjointLineString-1.geojson │ │ │ │ │ └── LineStringDoesNotCoverIntersectingLineString-1.geojson │ │ │ │ └── Point │ │ │ │ │ ├── LineStringDoesNotCoverDisjointPoint-1.geojson │ │ │ │ │ └── LineStringDoesNotCoverDisjointPoint-2.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MultiLineStringDoesNotCoverExteriorMultiLineString-1.geojson │ │ │ │ │ └── MultiLineStringDoesNotCoverOverlapsMultiLineString-1.geojson │ │ │ │ └── MultiPoint │ │ │ │ │ └── MultiLineStringDoesNotCoverExteriorMultiPoint-1.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiPoint │ │ │ │ │ ├── MultiPointDoesNotCoverExteriorMultiPoint-1.geojson │ │ │ │ │ └── MultiPointDoesNotCoverOverlapsMultiPoint-1.geojson │ │ │ ├── MultiPolygon │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MultiPolygonDoesNotCoverExteriorHoleMultiLineString-1.geojson │ │ │ │ │ ├── MultiPolygonDoesNotCoverExteriorMultiLineString-1.geojson │ │ │ │ │ └── MultiPolygonDoesNotCoverOverlapsMultiLineString-1.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ └── MultiPolygonDoesNotCoverExteriorMultiPoint-1.geojson │ │ │ │ └── MultiPolygon │ │ │ │ │ ├── MultiPolygonDoesNotCoverBoundaryExteriorMultiPolygon-1.geojson │ │ │ │ │ ├── MultiPolygonDoesNotCoverExteriorHoleMultiPolygon-1.geojson │ │ │ │ │ ├── MultiPolygonDoesNotCoverExteriorMultiPolygon-1.geojson │ │ │ │ │ └── MultiPolygonDoesNotCoverIntersectingMultiPolygon-1.geojson │ │ │ ├── Point │ │ │ │ └── Point │ │ │ │ │ ├── PointDoesNotCoverDisjointPoint-1.geojson │ │ │ │ │ ├── PointDoesNotCoverDisjointPoint-2.geojson │ │ │ │ │ └── PointDoesNotCoverDisjointPoint-3.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ ├── PolygonDoesNotCoverExteriorLineString-1.geojson │ │ │ │ ├── PolygonDoesNotCoverIntersectingLineString-1.geojson │ │ │ │ ├── PolygonDoesNotCoverIntersectingLineString-2.geojson │ │ │ │ └── PolygonDoesNotCoverIntersectingLineString-3.geojson │ │ │ │ ├── Point │ │ │ │ ├── PolygonDoesNotCoverExteriorHolePoint-1.geojson │ │ │ │ └── PolygonDoesNotCoverExteriorPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ ├── PolygonDoesNotCoverBoundaryExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCoverDisjointPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCoverExteriorHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCoverExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCoverExteriorPolygon-2.geojson │ │ │ │ ├── PolygonDoesNotCoverIntersectsHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCoverOverlapsPolygon-1.geojson │ │ │ │ └── PolygonDoesNotCoverOverlapsPolygon-2.geojson │ │ ├── throws │ │ │ ├── LineString │ │ │ │ └── Polygon │ │ │ │ │ └── LineStringDoesNotCoverAnyPolygon-1.geojson │ │ │ └── Point │ │ │ │ ├── LineString │ │ │ │ └── PointDoesNotCoverAnyLineString-1.geojson │ │ │ │ └── Polygon │ │ │ │ └── PointDoesNotCoverAnyPolygon-1.geojson │ │ └── true │ │ │ ├── GeometryCollection │ │ │ └── GeometryCollection │ │ │ │ ├── GeometryCollectionCoversBoundaryGeometryCollection-1.geojson │ │ │ │ ├── GeometryCollectionCoversEqualGeometryCollection-1.geojson │ │ │ │ ├── GeometryCollectionCoversInteriorGeometryCollection-1.geojson │ │ │ │ └── GeometryCollectionCoversInteriorGeometryCollection-2.geojson │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ ├── LineStringCoversContainingLineString-1.geojson │ │ │ │ ├── LineStringCoversEqualLineString-1.geojson │ │ │ │ └── LineStringCoversInteriorLineString-1.geojson │ │ │ └── Point │ │ │ │ ├── LineStringCoversBoundaryPoint-1.geojson │ │ │ │ ├── LineStringCoversBoundaryPoint-2.geojson │ │ │ │ ├── LineStringCoversInteriorPoint-1.geojson │ │ │ │ └── LineStringCoversInteriorPoint-2.geojson │ │ │ ├── MultiLineString │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineStringCoversContainingMultiLineString-1.geojson │ │ │ │ ├── MultiLineStringCoversContainingMultiLineString-2.geojson │ │ │ │ └── MultiLineStringCoversEqualMultiLineString-1.geojson │ │ │ └── MultiPoint │ │ │ │ ├── MultiLineStringCoversBoundaryInteriorMultiPoint-1.geojson │ │ │ │ ├── MultiLineStringCoversBoundaryMultiPoint-1.geojson │ │ │ │ └── MultiLineStringCoversInteriorMultiPoint-1.geojson │ │ │ ├── MultiPoint │ │ │ └── MultiPoint │ │ │ │ ├── MultiPointCoversEqualMultiPoint-1.geojson │ │ │ │ └── MultiPointCoversInteriorMultiPoint-1.geojson │ │ │ ├── MultiPolygon │ │ │ ├── MultiLineString │ │ │ │ ├── MultiPolygonCoversBoundaryInteriorMultiLineString-1.geojson │ │ │ │ └── MultiPolygonCoversInteriorMultiLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── MultiPolygonCoversBoundaryMultiPoint-1.geojson │ │ │ │ └── MultiPolygonCoversInteriorMultiPoint-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiPolygonCoversBoundaryInteriorMultiPolygon-1.geojson │ │ │ │ ├── MultiPolygonCoversInteriorMultiPolygon-1.geojson │ │ │ │ └── MultiPolygonCoversInteriorMultiPolygon-2.geojson │ │ │ ├── Point │ │ │ └── Point │ │ │ │ ├── PointCoversEqualPoint-1.geojson │ │ │ │ ├── PointCoversEqualPoint-2.geojson │ │ │ │ └── PointCoversEqualPoint-3.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ ├── PolygonCoversBoundaryInteriorLineString-1.geojson │ │ │ ├── PolygonCoversBoundaryInteriorLineString-2.geojson │ │ │ ├── PolygonCoversBoundaryInteriorLineString-3.geojson │ │ │ ├── PolygonCoversBoundaryLineString-1.geojson │ │ │ └── PolygonCoversInteriorLineString-1.geojson │ │ │ ├── Point │ │ │ ├── PolygonCoversBoundaryPoint-1.geojson │ │ │ └── PolygonCoversInteriorPoint-1.geojson │ │ │ └── Polygon │ │ │ ├── PolygonCoversBoundaryInteriorPolygon-1.geojson │ │ │ ├── PolygonCoversBoundaryInteriorPolygon-2.geojson │ │ │ ├── PolygonCoversEqualPolygon-1.geojson │ │ │ ├── PolygonCoversInteriorPolygon-1.geojson │ │ │ ├── PolygonCoversInteriorPolygon-2.geojson │ │ │ └── PolygonCoversInteriorPolygon-3.geojson │ ├── crosses │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineStringDoesNotCrossBoundaryLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotCrossContainedLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotCrossDisjointLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotCrossEqualLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotCrossInteriorLineString-1.geojson │ │ │ │ │ └── LineStringDoesNotCrossOverlappingLineString-1.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── LineStringDoesNotCrossBoundaryMultiPoint-1.geojson │ │ │ │ │ ├── LineStringDoesNotCrossDisjointMultiPoint-1.geojson │ │ │ │ │ └── LineStringDoesNotCrossInteriorMultiPoint-1.geojson │ │ │ │ ├── Point │ │ │ │ │ ├── LineStringDoesNotCrossBoundaryPoint-1.geojson │ │ │ │ │ ├── LineStringDoesNotCrossDisjointPoint-1.geojson │ │ │ │ │ └── LineStringDoesNotCrossInteriorPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineStringDoesNotCrossBoundaryPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotCrossContainingPolygon-1.geojson │ │ │ │ │ └── LineStringDoesNotCrossDisjointPolygon-1.geojson │ │ │ ├── MultiLineString │ │ │ │ └── MultiPoint │ │ │ │ │ ├── MultiLineStringDoesNotCrossBoundaryMultiPoint-1.geojson │ │ │ │ │ ├── MultiLineStringDoesNotCrossDisjointMultiPoint-1.geojson │ │ │ │ │ └── MultiLineStringDoesNotCrossInteriorMultiPoint-1.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointDoesNotCrossBoundaryLineString-1.geojson │ │ │ │ │ ├── PointDoesNotCrossContainingLineString-1.geojson │ │ │ │ │ └── PointDoesNotCrossDisjointLineString-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointDoesNotCrossBoundaryPolygon-1.geojson │ │ │ │ │ ├── PointDoesNotCrossContainingPolygon-1.geojson │ │ │ │ │ └── PointDoesNotCrossDisjointPolygon-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ ├── PolygonDoesNotCrossBoundaryInteriorLineString-1.geojson │ │ │ │ ├── PolygonDoesNotCrossBoundaryInteriorLineString-2.geojson │ │ │ │ ├── PolygonDoesNotCrossBoundaryInteriorLineString-3.geojson │ │ │ │ ├── PolygonDoesNotCrossBoundaryLineString-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorHoleLineString-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorLineString-1.geojson │ │ │ │ └── PolygonDoesNotCrossInteriorLineString-1.geojson │ │ │ │ ├── MultiPoint │ │ │ │ ├── PolygonDoesNotCrossBoundaryExteriorMultiPoint-1.geojson │ │ │ │ ├── PolygonDoesNotCrossBoundaryMultiPoint-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorHoleMultiPoint-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorMultiPoint-1.geojson │ │ │ │ └── PolygonDoesNotCrossInteriorMultiPoint-1.geojson │ │ │ │ └── Point │ │ │ │ ├── PolygonDoesNotCrossBoundaryPoint-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorHolePoint-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorPoint-1.geojson │ │ │ │ └── PolygonDoesNotCrossInteriorPoint-1.geojson │ │ ├── throws │ │ │ ├── Point │ │ │ │ └── Point │ │ │ │ │ ├── PointDoesNotCrossDisjointPoint-1.geojson │ │ │ │ │ └── PointDoesNotCrossEqualPoint-1.geojson │ │ │ └── Polygon │ │ │ │ └── Polygon │ │ │ │ ├── PolygonDoesNotCrossBoundaryExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCrossBoundaryInteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCrossBoundaryInteriorPolygon-2.geojson │ │ │ │ ├── PolygonDoesNotCrossEqualPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCrossExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCrossInteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCrossOverlappingPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotCrossOverlappingPolygon-2.geojson │ │ │ │ └── PolygonDoesNotCrossOverlappingPolygon-3.geojson │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ └── LineStringCrossesIntersectingLineString-1.geojson │ │ │ ├── MultiLineString │ │ │ │ └── LineStringCrossesCrossesMultiLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ │ └── LineStringCrossesCrossesMultiPoint-1.geojson │ │ │ └── Polygon │ │ │ │ └── LineStringCrossesIntersectingPolygon-1.geojson │ │ │ ├── MultiLineString │ │ │ ├── MultiPoint │ │ │ │ └── MultiLineStringCrossesCrossesMultiPoint-1.geojson │ │ │ └── Polygon │ │ │ │ ├── MultiLineStringCrossesCrossesPolygon-1.geojson │ │ │ │ ├── MultiLineStringCrossesCrossesPolygon-2.geojson │ │ │ │ └── MultiLineStringCrossesCrossesPolygon-3.geojson │ │ │ ├── MultiPoint │ │ │ └── MultiLineString │ │ │ │ └── MultiPointCrossesCrossesMultiLineString-1.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ ├── PolygonCrossesIntersectingLineString-1.geojson │ │ │ ├── PolygonCrossesIntersectingLineString-2.geojson │ │ │ └── PolygonCrossesIntersectingLineString-3.geojson │ │ │ └── MultiPoint │ │ │ └── PolygonCrossesCrossesMultiPoint-1.geojson │ ├── disjoint │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineStringIsNotDisjointBoundaryLineString-1.geojson │ │ │ │ │ ├── LineStringIsNotDisjointContainingLineString-1.geojson │ │ │ │ │ ├── LineStringIsNotDisjointContainingLineString-2.geojson │ │ │ │ │ ├── LineStringIsNotDisjointEqualLineString-1.geojson │ │ │ │ │ ├── LineStringIsNotDisjointInteriorLineString-1.geojson │ │ │ │ │ └── LineStringIsNotDisjointIntersectingLineString-1.geojson │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── LineStringIsNotDisjointBoundaryMultiLineString-1.geojson │ │ │ │ │ └── LineStringIsNotDisjointBoundaryMultiLineString-2.geojson │ │ │ │ ├── Point │ │ │ │ │ ├── LineStringIsNotDisjointBoundaryPoint-1.geojson │ │ │ │ │ └── LineStringIsNotDisjointContainingPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineStringIsNotDisjointBoundaryInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotDisjointBoundaryInteriorPolygon-2.geojson │ │ │ │ │ ├── LineStringIsNotDisjointBoundaryInteriorPolygon-3.geojson │ │ │ │ │ ├── LineStringIsNotDisjointBoundaryPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotDisjointInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotDisjointIntersectingPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotDisjointIntersectingPolygon-2.geojson │ │ │ │ │ └── LineStringIsNotDisjointIntersectingPolygon-3.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointIsNotDisjointBoundaryLineString-1.geojson │ │ │ │ │ └── PointIsNotDisjointInteriorLineString-1.geojson │ │ │ │ ├── Point │ │ │ │ │ └── PointIsNotDisjointEqualPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointIsNotDisjointBoundaryPolygon-1.geojson │ │ │ │ │ └── PointIsNotDisjointInteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ ├── PolygonIsNotDisjointBoundaryLineString-1.geojson │ │ │ │ ├── PolygonIsNotDisjointContainingLineString-1.geojson │ │ │ │ └── PolygonIsNotDisjointIntersectingLineString-1.geojson │ │ │ │ ├── Point │ │ │ │ ├── PolygonIsNotDisjointBoundaryPoint-1.geojson │ │ │ │ └── PolygonIsNotDisjointContainingPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ ├── PolygonIsNotDisjointBoundaryExteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotDisjointBoundaryInteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotDisjointBoundaryInteriorPolygon-2.geojson │ │ │ │ ├── PolygonIsNotDisjointEqualPolygon-1.geojson │ │ │ │ ├── PolygonIsNotDisjointInteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotDisjointIntersectsHolePolygon-1.geojson │ │ │ │ ├── PolygonIsNotDisjointOverlapsPolygon-1.geojson │ │ │ │ └── PolygonIsNotDisjointOverlapsPolygon-2.geojson │ │ ├── throws │ │ │ └── MultiPoint │ │ │ │ └── FeatureCollection │ │ │ │ └── MultiPointIsNotDisjointMixedFeatureCollection-1.geojson │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ ├── LineStringDisjointDisjointLineString-1.geojson │ │ │ │ └── LineStringDisjointDisjointLineString-2.geojson │ │ │ ├── Point │ │ │ │ └── LineStringDisjointDisjointPoint-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineStringDisjointExteriorHolePolygon-1.geojson │ │ │ │ └── LineStringDisjointExteriorPolygon-1.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ └── PointDisjointDisjointLineString-1.geojson │ │ │ ├── Point │ │ │ │ └── PointDisjointDisjointPoint-1.geojson │ │ │ └── Polygon │ │ │ │ ├── PointDisjointExteriorHolePolygon-1.geojson │ │ │ │ └── PointDisjointExteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ └── PolygonDisjointDisjointLineString-1.geojson │ │ │ ├── Point │ │ │ └── PolygonDisjointDisjointPoint-1.geojson │ │ │ └── Polygon │ │ │ ├── PolygonDisjointExteriorHolePolygon-1.geojson │ │ │ └── PolygonDisjointExteriorPolygon-1.geojson │ ├── equals │ │ ├── false │ │ │ ├── LineString │ │ │ │ └── LineString │ │ │ │ │ ├── LineStringIsNotEqualBoundaryLineString-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualContainingLineString-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualDisjointLineString-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualInteriorLineString-1.geojson │ │ │ │ │ └── LineStringIsNotEqualIntersectingLineString-1.geojson │ │ │ ├── Point │ │ │ │ └── Point │ │ │ │ │ └── PointIsNotEqualDisjointPoint-1.geojson │ │ │ └── Polygon │ │ │ │ └── Polygon │ │ │ │ ├── PolygonIsNotEqualBoundaryExteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotEqualBoundaryInteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotEqualBoundaryInteriorPolygon-2.geojson │ │ │ │ ├── PolygonIsNotEqualExteriorHolePolygon-1.geojson │ │ │ │ ├── PolygonIsNotEqualExteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotEqualInteriorPolygon-1.geojson │ │ │ │ ├── PolygonIsNotEqualIntersectsHolePolygon-1.geojson │ │ │ │ ├── PolygonIsNotEqualOverlapsPolygon-1.geojson │ │ │ │ └── PolygonIsNotEqualOverlapsPolygon-2.geojson │ │ ├── throws │ │ │ ├── LineString │ │ │ │ ├── Point │ │ │ │ │ └── LineStringIsNotEqualBoundaryPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineStringIsNotEqualBoundaryInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualBoundaryInteriorPolygon-2.geojson │ │ │ │ │ ├── LineStringIsNotEqualBoundaryInteriorPolygon-3.geojson │ │ │ │ │ ├── LineStringIsNotEqualBoundaryPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualExteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualIntersectingPolygon-1.geojson │ │ │ │ │ ├── LineStringIsNotEqualIntersectingPolygon-2.geojson │ │ │ │ │ └── LineStringIsNotEqualIntersectingPolygon-3.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointIsNotEqualBoundaryLineString-1.geojson │ │ │ │ │ ├── PointIsNotEqualDisjointLineString-1.geojson │ │ │ │ │ └── PointIsNotEqualInteriorLineString-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointIsNotEqualBoundaryPolygon-1.geojson │ │ │ │ │ ├── PointIsNotEqualExteriorHolePolygon-1.geojson │ │ │ │ │ ├── PointIsNotEqualExteriorPolygon-1.geojson │ │ │ │ │ └── PointIsNotEqualInteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ └── PolygonIsNotEqualIntersectingLineString-1.geojson │ │ │ │ └── Point │ │ │ │ └── PolygonIsNotEqualBoundaryPoint-1.geojson │ │ └── true │ │ │ ├── LineString │ │ │ └── LineString │ │ │ │ └── LineStringEqualsEqualLineString-1.geojson │ │ │ ├── MultiLineString │ │ │ └── MultiLineString │ │ │ │ └── MultiLineStringEqualsEqualsTopologicallyMultiLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ └── MultiPoint │ │ │ │ └── MultiPointEqualsEqualsTopologicallyMultiPoint-1.geojson │ │ │ ├── MultiPolygon │ │ │ └── MultiPolygon │ │ │ │ └── MultiPolygonEqualsEqualAreasMultiPolygon-1.geojson │ │ │ ├── Point │ │ │ └── Point │ │ │ │ └── PointEqualsEqualPoint-1.geojson │ │ │ └── Polygon │ │ │ └── Polygon │ │ │ └── PolygonEqualsEqualPolygon-1.geojson │ ├── intersects │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineStringDoesNotIntersectDisjointLineString-1.geojson │ │ │ │ │ └── LineStringDoesNotIntersectDisjointLineString-2.geojson │ │ │ │ ├── Point │ │ │ │ │ └── LineStringDoesNotIntersectDisjointPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineStringDoesNotIntersectExteriorHolePolygon-1.geojson │ │ │ │ │ └── LineStringDoesNotIntersectExteriorPolygon-1.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ └── PointDoesNotIntersectDisjointLineString-1.geojson │ │ │ │ ├── Point │ │ │ │ │ └── PointDoesNotIntersectDisjointPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointDoesNotIntersectExteriorHolePolygon-1.geojson │ │ │ │ │ └── PointDoesNotIntersectExteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ └── PolygonDoesNotIntersectDisjointLineString-1.geojson │ │ │ │ ├── Point │ │ │ │ └── PolygonDoesNotIntersectDisjointPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ ├── PolygonDoesNotIntersectExteriorHolePolygon-1.geojson │ │ │ │ └── PolygonDoesNotIntersectExteriorPolygon-1.geojson │ │ ├── throws │ │ │ └── MixedFeatureCollection │ │ │ │ └── MultiPoint │ │ │ │ └── MixedFeatureCollectionDoesNotIntersectMultiPoint-1.geojson │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ ├── LineStringIntersectsBoundaryLineString-1.geojson │ │ │ │ ├── LineStringIntersectsContainingLineString-1.geojson │ │ │ │ ├── LineStringIntersectsEqualLineString-1.geojson │ │ │ │ ├── LineStringIntersectsInteriorLineString-1.geojson │ │ │ │ └── LineStringIntersectsIntersectingLineString-1.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── LineStringIntersectsBoundaryMultiLineString-1.geojson │ │ │ │ └── LineStringIntersectsBoundaryMultiLineString-2.geojson │ │ │ ├── Point │ │ │ │ ├── LineStringIntersectsBoundaryPoint-1.geojson │ │ │ │ └── LineStringIntersectsContainingPoint-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineStringIntersectsBoundaryInteriorPolygon-1.geojson │ │ │ │ ├── LineStringIntersectsBoundaryInteriorPolygon-2.geojson │ │ │ │ ├── LineStringIntersectsBoundaryInteriorPolygon-3.geojson │ │ │ │ ├── LineStringIntersectsBoundaryPolygon-1.geojson │ │ │ │ ├── LineStringIntersectsInteriorPolygon-1.geojson │ │ │ │ ├── LineStringIntersectsIntersectingPolygon-1.geojson │ │ │ │ ├── LineStringIntersectsIntersectingPolygon-2.geojson │ │ │ │ └── LineStringIntersectsIntersectingPolygon-3.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ ├── PointIntersectsBoundaryLineString-1.geojson │ │ │ │ └── PointIntersectsInteriorLineString-1.geojson │ │ │ ├── Point │ │ │ │ └── PointIntersectsEqualPoint-1.geojson │ │ │ └── Polygon │ │ │ │ ├── PointIntersectsBoundaryPolygon-1.geojson │ │ │ │ └── PointIntersectsInteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ ├── PolygonIntersectsBoundaryLineString-1.geojson │ │ │ ├── PolygonIntersectsContainingLineString-1.geojson │ │ │ └── PolygonIntersectsIntersectingLineString-1.geojson │ │ │ ├── Point │ │ │ ├── PolygonIntersectsBoundaryPoint-1.geojson │ │ │ └── PolygonIntersectsContainingPoint-1.geojson │ │ │ └── Polygon │ │ │ ├── PolygonIntersectsBoundaryExteriorPolygon-1.geojson │ │ │ ├── PolygonIntersectsBoundaryInteriorPolygon-1.geojson │ │ │ ├── PolygonIntersectsBoundaryInteriorPolygon-2.geojson │ │ │ ├── PolygonIntersectsEqualPolygon-1.geojson │ │ │ ├── PolygonIntersectsInteriorPolygon-1.geojson │ │ │ ├── PolygonIntersectsIntersectsHolePolygon-1.geojson │ │ │ ├── PolygonIntersectsOverlapsPolygon-1.geojson │ │ │ └── PolygonIntersectsOverlapsPolygon-2.geojson │ ├── overlaps │ │ ├── false │ │ │ ├── LineString │ │ │ │ └── LineString │ │ │ │ │ ├── LineStringDoesNotOverlapBoundaryLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapContainedLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapDisjointLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapEqualLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapInteriorLineString-1.geojson │ │ │ │ │ └── LineStringDoesNotOverlapIntersectingLineString-1.geojson │ │ │ ├── MultiPolygon │ │ │ │ └── Polygon │ │ │ │ │ └── MultiPolygonDoesNotOverlapCoveredPolygon-1.geojson │ │ │ ├── Point │ │ │ │ └── Point │ │ │ │ │ ├── PointDoesNotOverlapDisjointPoint-1.geojson │ │ │ │ │ └── PointDoesNotOverlapEqualPoint-1.geojson │ │ │ └── Polygon │ │ │ │ └── Polygon │ │ │ │ ├── PolygonDoesNotOverlapBoundaryExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapBoundaryInteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapBoundaryInteriorPolygon-2.geojson │ │ │ │ ├── PolygonDoesNotOverlapEqualPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapExteriorHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapInteriorPolygon-1.geojson │ │ │ │ └── PolygonDoesNotOverlapOverlappingPolygon-1.geojson │ │ ├── throws │ │ │ ├── LineString │ │ │ │ ├── Point │ │ │ │ │ ├── LineStringDoesNotOverlapBoundaryPoint-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapContainingPoint-1.geojson │ │ │ │ │ └── LineStringDoesNotOverlapDisjointPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineStringDoesNotOverlapBoundaryInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapBoundaryInteriorPolygon-2.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapBoundaryInteriorPolygon-3.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapBoundaryPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapExteriorHolePolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapExteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapIntersectingPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotOverlapIntersectingPolygon-2.geojson │ │ │ │ │ └── LineStringDoesNotOverlapIntersectingPolygon-3.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointDoesNotOverlapBoundaryLineString-1.geojson │ │ │ │ │ ├── PointDoesNotOverlapDisjointLineString-1.geojson │ │ │ │ │ └── PointDoesNotOverlapInteriorLineString-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointDoesNotOverlapBoundaryPolygon-1.geojson │ │ │ │ │ ├── PointDoesNotOverlapExteriorHolePolygon-1.geojson │ │ │ │ │ ├── PointDoesNotOverlapExteriorPolygon-1.geojson │ │ │ │ │ └── PointDoesNotOverlapInteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ ├── PolygonDoesNotOverlapBoundaryLineString-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapContainingLineString-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapDisjointLineString-1.geojson │ │ │ │ └── PolygonDoesNotOverlapIntersectingLineString-1.geojson │ │ │ │ └── Point │ │ │ │ ├── PolygonDoesNotOverlapBoundaryPoint-1.geojson │ │ │ │ ├── PolygonDoesNotOverlapContainingPoint-1.geojson │ │ │ │ └── PolygonDoesNotOverlapDisjointPoint-1.geojson │ │ └── true │ │ │ ├── LineString │ │ │ └── LineString │ │ │ │ └── LineStringOverlapsOverlappingLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ └── MultiPoint │ │ │ │ └── MultiPointOverlapsOverlappingMultiPoint-1.geojson │ │ │ ├── MultiPolygon │ │ │ └── Polygon │ │ │ │ └── MultiPolygonOverlapsOverlappingPolygon-1.geojson │ │ │ └── Polygon │ │ │ └── Polygon │ │ │ ├── PolygonOverlapsOverlappingPolygon-1.geojson │ │ │ └── PolygonOverlapsOverlappingPolygon-2.geojson │ ├── touches │ │ ├── false │ │ │ ├── LineString │ │ │ │ ├── LineString │ │ │ │ │ ├── LineStringDoesNotTouchBoundaryLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchContainingLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchDisjointLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchDisjointLineString-2.geojson │ │ │ │ │ ├── LineStringDoesNotTouchEqualLineString-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchInteriorLineString-1.geojson │ │ │ │ │ └── LineStringDoesNotTouchIntersectingLineString-1.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── LineStringDoesNotTouchContainingMultiPoint-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchDisjointMultiPoint-1.geojson │ │ │ │ │ └── LineStringDoesNotTouchInteriorMultiPoint-1.geojson │ │ │ │ ├── Point │ │ │ │ │ ├── LineStringDoesNotTouchContainingPoint-1.geojson │ │ │ │ │ └── LineStringDoesNotTouchDisjointPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── LineStringDoesNotTouchBoundaryInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchBoundaryInteriorPolygon-2.geojson │ │ │ │ │ ├── LineStringDoesNotTouchBoundaryInteriorPolygon-3.geojson │ │ │ │ │ ├── LineStringDoesNotTouchExteriorHolePolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchExteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchInteriorPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchIntersectingPolygon-1.geojson │ │ │ │ │ ├── LineStringDoesNotTouchIntersectingPolygon-2.geojson │ │ │ │ │ └── LineStringDoesNotTouchIntersectingPolygon-3.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineString │ │ │ │ │ ├── MultiLineStringDoesNotTouchContainingMultiLineString-1.geojson │ │ │ │ │ ├── MultiLineStringDoesNotTouchDisjointMultiLineString-1.geojson │ │ │ │ │ ├── MultiLineStringDoesNotTouchDisjointMultiLineString-2.geojson │ │ │ │ │ ├── MultiLineStringDoesNotTouchEqualMultiLineString-1.geojson │ │ │ │ │ ├── MultiLineStringDoesNotTouchInteriorMultiLineString-1.geojson │ │ │ │ │ └── MultiLineStringDoesNotTouchIntersectingMultiLineString-1.geojson │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── MultiLineStringDoesNotTouchContainingMultiPoint-1.geojson │ │ │ │ │ └── MultiLineStringDoesNotTouchDisjointMultiPoint-1.geojson │ │ │ │ └── MultiPolygon │ │ │ │ │ ├── MultiLineStringDoesNotTouchExteriorMultiPolygon-1.geojson │ │ │ │ │ ├── MultiLineStringDoesNotTouchIntersectingMultiPolygon-1.geojson │ │ │ │ │ ├── MultiLineStringDoesNotTouchOverlappingMultiPolygon-1.geojson │ │ │ │ │ └── MultiLineStringDoesNotTouchWithinMultiPolygon-1.geojson │ │ │ ├── MultiPolygon │ │ │ │ ├── MultiPoint │ │ │ │ │ ├── MultiPolygonDoesNotTouchCrossesMultiPoint-1.geojson │ │ │ │ │ └── MultiPolygonDoesNotTouchDisjointMultiPoint-1.geojson │ │ │ │ └── MultiPolygon │ │ │ │ │ ├── MultiPolygonDoesNotTouchExteriorHoleMultiPolygon-1.geojson │ │ │ │ │ └── MultiPolygonDoesNotTouchOverlapsMultiPolygon-1.geojson │ │ │ ├── Point │ │ │ │ ├── LineString │ │ │ │ │ ├── PointDoesNotTouchDisjointLineString-1.geojson │ │ │ │ │ └── PointDoesNotTouchInteriorLineString-1.geojson │ │ │ │ └── Polygon │ │ │ │ │ ├── PointDoesNotTouchExteriorHolePolygon-1.geojson │ │ │ │ │ ├── PointDoesNotTouchExteriorPolygon-1.geojson │ │ │ │ │ └── PointDoesNotTouchInteriorPolygon-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineString │ │ │ │ ├── PolygonDoesNotTouchContainingLineString-1.geojson │ │ │ │ ├── PolygonDoesNotTouchDisjointLineString-1.geojson │ │ │ │ └── PolygonDoesNotTouchIntersectingLineString-1.geojson │ │ │ │ ├── Point │ │ │ │ ├── PolygonDoesNotTouchContainingPoint-1.geojson │ │ │ │ └── PolygonDoesNotTouchDisjointPoint-1.geojson │ │ │ │ └── Polygon │ │ │ │ ├── PolygonDoesNotTouchBoundaryInteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotTouchBoundaryInteriorPolygon-2.geojson │ │ │ │ ├── PolygonDoesNotTouchEqualPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotTouchExteriorHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotTouchExteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotTouchInteriorPolygon-1.geojson │ │ │ │ ├── PolygonDoesNotTouchIntersectsHolePolygon-1.geojson │ │ │ │ ├── PolygonDoesNotTouchOverlapsPolygon-1.geojson │ │ │ │ └── PolygonDoesNotTouchOverlapsPolygon-2.geojson │ │ ├── throws │ │ │ ├── MultiPoint │ │ │ │ └── MultiPoint │ │ │ │ │ ├── MultiPointDoesNotTouchDisjointMultiPoint-1.geojson │ │ │ │ │ └── MultiPointDoesNotTouchEqualMultiPoint-1.geojson │ │ │ └── Point │ │ │ │ └── Point │ │ │ │ ├── PointDoesNotTouchDisjointPoint-1.geojson │ │ │ │ └── PointDoesNotTouchEqualPoint-1.geojson │ │ └── true │ │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ └── LineStringTouchesBoundaryLineString-1.geojson │ │ │ ├── MultiLineString │ │ │ │ ├── LineStringTouchesBoundaryMultiLineString-1.geojson │ │ │ │ └── LineStringTouchesBoundaryMultiLineString-2.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── LineStringTouchesBoundaryMultiPoint-1.geojson │ │ │ │ └── LineStringTouchesBoundaryMultiPoint-2.geojson │ │ │ ├── Point │ │ │ │ └── LineStringTouchesBoundaryPoint-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineStringTouchesBoundaryPolygon-1.geojson │ │ │ │ └── LineStringTouchesBoundaryPolygon-2.geojson │ │ │ ├── MultiLineString │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineStringTouchesBoundaryExteriorMultiLineString-1.geojson │ │ │ │ └── MultiLineStringTouchesBoundaryMultiLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ │ └── MultiLineStringTouchesBoundaryMultiPoint-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiLineStringTouchesBoundaryMultiPolygon-1.geojson │ │ │ │ ├── MultiLineStringTouchesBoundaryMultiPolygon-2.geojson │ │ │ │ └── MultiLineStringTouchesBoundaryMultiPolygon-3.geojson │ │ │ ├── MultiPolygon │ │ │ ├── MultiPoint │ │ │ │ └── MultiPolygonTouchesBoundaryMultiPoint-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiPolygonTouchesBoundaryExteriorMultiPolygon-1.geojson │ │ │ │ └── MultiPolygonTouchesBoundaryExteriorMultiPolygon-2.geojson │ │ │ ├── Point │ │ │ ├── LineString │ │ │ │ └── PointTouchesBoundaryLineString-1.geojson │ │ │ └── Polygon │ │ │ │ └── PointTouchesBoundaryPolygon-1.geojson │ │ │ └── Polygon │ │ │ ├── LineString │ │ │ ├── PolygonTouchesBoundaryLineString-1.geojson │ │ │ ├── PolygonTouchesBoundaryLineString-2.geojson │ │ │ ├── PolygonTouchesBoundaryLineString-3.geojson │ │ │ └── PolygonTouchesBoundaryLineString-4.geojson │ │ │ ├── Point │ │ │ └── PolygonTouchesBoundaryPoint-1.geojson │ │ │ └── Polygon │ │ │ ├── PolygonTouchesBoundaryExteriorPolygon-1.geojson │ │ │ └── PolygonTouchesBoundaryExteriorPolygon-2.geojson │ └── within │ │ ├── false │ │ ├── GeometryCollection │ │ │ └── GeometryCollection │ │ │ │ ├── GeometryCollectionIsNotWithinBoundaryGeometryCollection-1.geojson │ │ │ │ ├── GeometryCollectionIsNotWithinDisjointGeometryCollection-1.geojson │ │ │ │ ├── GeometryCollectionIsNotWithinDisjointGeometryCollection-2.geojson │ │ │ │ └── GeometryCollectionIsNotWithinExteriorGeometryCollection-1.geojson │ │ ├── LineString │ │ │ ├── LineString │ │ │ │ ├── LineStringIsNotWithinBoundaryExteriorLineString-1.geojson │ │ │ │ ├── LineStringIsNotWithinBoundaryExteriorLineString-2.geojson │ │ │ │ ├── LineStringIsNotWithinBoundaryExteriorLineString-3.geojson │ │ │ │ ├── LineStringIsNotWithinDisjointLineString-1.geojson │ │ │ │ └── LineStringIsNotWithinIntersectingLineString-1.geojson │ │ │ └── Polygon │ │ │ │ ├── LineStringIsNotWithinBoundaryPolygon-1.geojson │ │ │ │ ├── LineStringIsNotWithinExteriorPolygon-1.geojson │ │ │ │ ├── LineStringIsNotWithinIntersectingPolygon-1.geojson │ │ │ │ ├── LineStringIsNotWithinIntersectingPolygon-2.geojson │ │ │ │ └── LineStringIsNotWithinIntersectingPolygon-3.geojson │ │ ├── MultiLineString │ │ │ ├── MultiLineString │ │ │ │ ├── MultiLineStringIsNotWithinExteriorMultiLineString-1.geojson │ │ │ │ └── MultiLineStringIsNotWithinOverlapsMultiLineString-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiLineStringIsNotWithinExteriorHoleMultiPolygon-1.geojson │ │ │ │ ├── MultiLineStringIsNotWithinExteriorMultiPolygon-1.geojson │ │ │ │ └── MultiLineStringIsNotWithinOverlapsMultiPolygon-1.geojson │ │ ├── MultiPoint │ │ │ ├── MultiLineString │ │ │ │ ├── MultiPointIsNotWithinBoundaryMultiLineString-1.geojson │ │ │ │ └── MultiPointIsNotWithinExteriorMultiLineString-1.geojson │ │ │ ├── MultiPoint │ │ │ │ ├── MultiPointIsNotWithinExteriorMultiPoint-1.geojson │ │ │ │ └── MultiPointIsNotWithinOverlapsMultiPoint-1.geojson │ │ │ └── MultiPolygon │ │ │ │ ├── MultiPointIsNotWithinBoundaryMultiPolygon-1.geojson │ │ │ │ └── MultiPointIsNotWithinExteriorMultiPolygon-1.geojson │ │ ├── MultiPolygon │ │ │ └── MultiPolygon │ │ │ │ ├── MultiPolygonIsNotWithinBoundaryExteriorMultiPolygon-1.geojson │ │ │ │ ├── MultiPolygonIsNotWithinExteriorHoleMultiPolygon-1.geojson │ │ │ │ ├── MultiPolygonIsNotWithinExteriorMultiPolygon-1.geojson │ │ │ │ └── MultiPolygonIsNotWithinIntersectingMultiPolygon-1.geojson │ │ ├── Point │ │ │ ├── LineString │ │ │ │ ├── PointIsNotWithinBoundaryLineString-1.geojson │ │ │ │ ├── PointIsNotWithinBoundaryLineString-2.geojson │ │ │ │ ├── PointIsNotWithinDisjointLineString-1.geojson │ │ │ │ └── PointIsNotWithinDisjointLineString-2.geojson │ │ │ ├── Point │ │ │ │ ├── PointIsNotWithinDisjointPoint-1.geojson │ │ │ │ ├── PointIsNotWithinDisjointPoint-2.geojson │ │ │ │ └── PointIsNotWithinDisjointPoint-3.geojson │ │ │ └── Polygon │ │ │ │ ├── PointIsNotWithinBoundaryPolygon-1.geojson │ │ │ │ ├── PointIsNotWithinExteriorHolePolygon-1.geojson │ │ │ │ └── PointIsNotWithinExteriorPolygon-1.geojson │ │ └── Polygon │ │ │ └── Polygon │ │ │ ├── PolygonIsNotWithinBoundaryExteriorPolygon-1.geojson │ │ │ ├── PolygonIsNotWithinDisjointPolygon-1.geojson │ │ │ ├── PolygonIsNotWithinExteriorHolePolygon-1.geojson │ │ │ ├── PolygonIsNotWithinExteriorPolygon-1.geojson │ │ │ ├── PolygonIsNotWithinExteriorPolygon-2.geojson │ │ │ ├── PolygonIsNotWithinIntersectsHolePolygon-1.geojson │ │ │ ├── PolygonIsNotWithinOverlapsPolygon-1.geojson │ │ │ └── PolygonIsNotWithinOverlapsPolygon-2.geojson │ │ ├── throws │ │ ├── LineString │ │ │ └── Point │ │ │ │ └── LineStringIsNotWithinAnyPoint-1.geojson │ │ └── Polygon │ │ │ ├── LineString │ │ │ └── PolygonIsNotWithinAnyLineString-1.geojson │ │ │ └── Point │ │ │ └── PolygonIsNotWithinAnyPoint-1.geojson │ │ └── true │ │ ├── GeometryCollection │ │ └── GeometryCollection │ │ │ ├── GeometryCollectionWithinEqualGeometryCollection-1.geojson │ │ │ ├── GeometryCollectionWithinInteriorGeometryCollection-1.geojson │ │ │ └── GeometryCollectionWithinInteriorGeometryCollection-2.geojson │ │ ├── LineString │ │ ├── LineString │ │ │ ├── LineStringWithinContainingLineString-1.geojson │ │ │ ├── LineStringWithinEqualLineString-1.geojson │ │ │ └── LineStringWithinInteriorLineString-1.geojson │ │ └── Polygon │ │ │ ├── LineStringWithinBoundaryInteriorPolygon-1.geojson │ │ │ ├── LineStringWithinBoundaryInteriorPolygon-2.geojson │ │ │ ├── LineStringWithinBoundaryInteriorPolygon-3.geojson │ │ │ └── LineStringWithinInteriorPolygon-1.geojson │ │ ├── MultiLineString │ │ ├── MultiLineString │ │ │ ├── MultiLineStringWithinContainingMultiLineString-1.geojson │ │ │ ├── MultiLineStringWithinContainingMultiLineString-2.geojson │ │ │ └── MultiLineStringWithinEqualMultiLineString-1.geojson │ │ └── MultiPolygon │ │ │ ├── MultiLineStringWithinBoundaryInteriorMultiPolygon-1.geojson │ │ │ └── MultiLineStringWithinInteriorMultiPolygon-1.geojson │ │ ├── MultiPoint │ │ ├── MultiLineString │ │ │ ├── MultiPointWithinBoundaryInteriorMultiLineString-1.geojson │ │ │ └── MultiPointWithinInteriorMultiLineString-1.geojson │ │ ├── MultiPoint │ │ │ ├── MultiPointWithinEqualMultiPoint-1.geojson │ │ │ └── MultiPointWithinInteriorMultiPoint-1.geojson │ │ └── MultiPolygon │ │ │ └── MultiPointWithinInteriorMultiPolygon-1.geojson │ │ ├── MultiPolygon │ │ └── MultiPolygon │ │ │ ├── MultiPolygonWithinBoundaryInteriorMultiPolygon-1.geojson │ │ │ ├── MultiPolygonWithinInteriorMultiPolygon-1.geojson │ │ │ └── MultiPolygonWithinInteriorMultiPolygon-2.geojson │ │ ├── Point │ │ ├── LineString │ │ │ ├── PointWithinInteriorLineString-1.geojson │ │ │ └── PointWithinInteriorLineString-2.geojson │ │ ├── Point │ │ │ ├── PointWithinEqualPoint-1.geojson │ │ │ ├── PointWithinEqualPoint-2.geojson │ │ │ └── PointWithinEqualPoint-3.geojson │ │ └── Polygon │ │ │ └── PointWithinInteriorPolygon-1.geojson │ │ └── Polygon │ │ └── Polygon │ │ ├── PolygonWithinBoundaryInteriorPolygon-1.geojson │ │ ├── PolygonWithinBoundaryInteriorPolygon-2.geojson │ │ ├── PolygonWithinEqualPolygon-1.geojson │ │ ├── PolygonWithinInteriorPolygon-1.geojson │ │ ├── PolygonWithinInteriorPolygon-2.geojson │ │ └── PolygonWithinInteriorPolygon-3.geojson └── turf │ ├── contains │ ├── 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 │ └── true │ │ ├── LineString │ │ ├── LineString │ │ │ └── LineCrossesLine.geojson │ │ └── Polygon │ │ │ ├── LineCrossesPolygon.geojson │ │ │ └── LineCrossesPolygonPartial.geojson │ │ └── MultiPoint │ │ └── LineString │ │ └── MultiPointsCrossLine.geojson │ ├── disjoint │ ├── 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 │ ├── equals │ ├── false │ │ ├── linear-rings.geojson │ │ ├── lines.geojson │ │ ├── multipoints.geojson │ │ ├── points.geojson │ │ └── polygons.geojson │ └── true │ │ ├── different-initials-poly.geojson │ │ ├── linear-rings.geojson │ │ ├── lines-extra-vertices.geojson │ │ ├── lines-reverse.geojson │ │ ├── lines.geojson │ │ ├── multipoints.geojson │ │ ├── points.geojson │ │ ├── polygons.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 │ └── 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 │ ├── overlaps │ ├── 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 │ ├── 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 │ └── 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 │ ├── 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 ├── de9im.loader.js ├── de9im.test.js ├── report.js └── turf.test.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/.gitignore -------------------------------------------------------------------------------- /bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/bench.md -------------------------------------------------------------------------------- /docs/css/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/docs/css/example.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/docs/js/examples.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/index.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/contains/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/contains/index.js -------------------------------------------------------------------------------- /src/coveredby/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/coveredby/index.js -------------------------------------------------------------------------------- /src/coveredby/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/coveredby/line.js -------------------------------------------------------------------------------- /src/coveredby/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/coveredby/point.js -------------------------------------------------------------------------------- /src/coveredby/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/coveredby/polygon.js -------------------------------------------------------------------------------- /src/covers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/covers/index.js -------------------------------------------------------------------------------- /src/crosses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/crosses/index.js -------------------------------------------------------------------------------- /src/crosses/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/crosses/line.js -------------------------------------------------------------------------------- /src/crosses/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/crosses/point.js -------------------------------------------------------------------------------- /src/crosses/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/crosses/polygon.js -------------------------------------------------------------------------------- /src/disjoint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/disjoint/index.js -------------------------------------------------------------------------------- /src/equals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/equals/index.js -------------------------------------------------------------------------------- /src/intersects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/intersects/index.js -------------------------------------------------------------------------------- /src/intersects/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/intersects/line.js -------------------------------------------------------------------------------- /src/intersects/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/intersects/point.js -------------------------------------------------------------------------------- /src/intersects/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/intersects/polygon.js -------------------------------------------------------------------------------- /src/overlaps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/overlaps/index.js -------------------------------------------------------------------------------- /src/overlaps/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/overlaps/line.js -------------------------------------------------------------------------------- /src/overlaps/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/overlaps/point.js -------------------------------------------------------------------------------- /src/overlaps/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/overlaps/polygon.js -------------------------------------------------------------------------------- /src/touches/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/touches/index.js -------------------------------------------------------------------------------- /src/touches/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/touches/line.js -------------------------------------------------------------------------------- /src/touches/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/touches/point.js -------------------------------------------------------------------------------- /src/touches/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/touches/polygon.js -------------------------------------------------------------------------------- /src/util/clipper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/clipper.js -------------------------------------------------------------------------------- /src/util/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/helpers.js -------------------------------------------------------------------------------- /src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/index.js -------------------------------------------------------------------------------- /src/util/invariant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/invariant.js -------------------------------------------------------------------------------- /src/util/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/line.js -------------------------------------------------------------------------------- /src/util/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/meta.js -------------------------------------------------------------------------------- /src/util/partition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/partition.js -------------------------------------------------------------------------------- /src/util/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/point.js -------------------------------------------------------------------------------- /src/util/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/polygon.js -------------------------------------------------------------------------------- /src/util/triangulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/util/triangulate.js -------------------------------------------------------------------------------- /src/within/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/within/index.js -------------------------------------------------------------------------------- /src/within/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/within/line.js -------------------------------------------------------------------------------- /src/within/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/within/point.js -------------------------------------------------------------------------------- /src/within/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/src/within/polygon.js -------------------------------------------------------------------------------- /test/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/bench.js -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/contains.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/contains.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/coveredby.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/coveredby.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/covers.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/covers.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/crosses.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/crosses.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/disjoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/disjoint.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/equals.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/equals.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/intersects.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/intersects.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/overlaps.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/overlaps.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/touches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/touches.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/LineString/within.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/LineString/within.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/Polygon/coveredby.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/Polygon/coveredby.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/Polygon/crosses.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/Polygon/crosses.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/Polygon/disjoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/Polygon/disjoint.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/Polygon/intersects.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/Polygon/intersects.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/Polygon/touches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/Polygon/touches.geojson -------------------------------------------------------------------------------- /test/data/bench/LineString/Polygon/within.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/LineString/Polygon/within.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/LineString/coveredby.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/LineString/coveredby.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/LineString/crosses.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/LineString/crosses.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/LineString/disjoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/LineString/disjoint.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/LineString/intersects.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/LineString/intersects.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/LineString/touches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/LineString/touches.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/LineString/within.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/LineString/within.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/contains.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/contains.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/coveredby.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/coveredby.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/covers.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/covers.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/disjoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/disjoint.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/equals.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/equals.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/intersects.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/intersects.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/overlaps.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/overlaps.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/MultiPoint/within.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/MultiPoint/within.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/Polygon/coveredby.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/Polygon/coveredby.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/Polygon/disjoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/Polygon/disjoint.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/Polygon/intersects.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/Polygon/intersects.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/Polygon/touches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/Polygon/touches.geojson -------------------------------------------------------------------------------- /test/data/bench/MultiPoint/Polygon/within.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/MultiPoint/Polygon/within.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/contains.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/contains.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/coveredby.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/coveredby.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/covers.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/covers.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/disjoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/disjoint.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/equals.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/equals.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/intersects.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/intersects.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/overlaps.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/overlaps.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/touches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/touches.geojson -------------------------------------------------------------------------------- /test/data/bench/Polygon/Polygon/within.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/bench/Polygon/Polygon/within.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainBoundaryPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainBoundaryPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainDisjointPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/LineString/Point/LineStringDoesNotContainDisjointPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Point/Point/PointDoesNotContainDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Point/Point/PointDoesNotContainDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Point/Point/PointDoesNotContainDisjointPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Point/Point/PointDoesNotContainDisjointPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Point/Point/PointDoesNotContainDisjointPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Point/Point/PointDoesNotContainDisjointPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Point/PolygonDoesNotContainBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Point/PolygonDoesNotContainBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Point/PolygonDoesNotContainExteriorHolePoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Point/PolygonDoesNotContainExteriorHolePoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Point/PolygonDoesNotContainExteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Point/PolygonDoesNotContainExteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainDisjointPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainDisjointPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainExteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainExteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/false/Polygon/Polygon/PolygonDoesNotContainOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/throws/LineString/Polygon/LineStringDoesNotContainAnyPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/throws/LineString/Polygon/LineStringDoesNotContainAnyPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/throws/Point/LineString/PointDoesNotContainAnyLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/throws/Point/LineString/PointDoesNotContainAnyLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/throws/Point/Polygon/PointDoesNotContainAnyPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/throws/Point/Polygon/PointDoesNotContainAnyPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/LineString/LineString/LineStringContainsEqualLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/LineString/LineString/LineStringContainsEqualLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/LineString/LineString/LineStringContainsInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/LineString/LineString/LineStringContainsInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/LineString/Point/LineStringContainsInteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/LineString/Point/LineStringContainsInteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/LineString/Point/LineStringContainsInteriorPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/LineString/Point/LineStringContainsInteriorPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/MultiPoint/MultiPoint/MultiPointContainsEqualMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/MultiPoint/MultiPoint/MultiPointContainsEqualMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/MultiPoint/MultiPoint/MultiPointContainsInteriorMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/MultiPoint/MultiPoint/MultiPointContainsInteriorMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Point/Point/PointContainsEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Point/Point/PointContainsEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Point/Point/PointContainsEqualPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Point/Point/PointContainsEqualPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Point/Point/PointContainsEqualPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Point/Point/PointContainsEqualPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/LineString/PolygonContainsInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/LineString/PolygonContainsInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/Point/PolygonContainsInteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/Point/PolygonContainsInteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsBoundaryInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsBoundaryInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsBoundaryInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsBoundaryInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsInteriorPolygon-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/contains/true/Polygon/Polygon/PolygonContainsInteriorPolygon-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Point/LineString/PointIsNotCoveredbyDisjointLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Point/LineString/PointIsNotCoveredbyDisjointLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Point/LineString/PointIsNotCoveredbyDisjointLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Point/LineString/PointIsNotCoveredbyDisjointLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Point/Point/PointIsNotCoveredbyDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Point/Point/PointIsNotCoveredbyDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Point/Point/PointIsNotCoveredbyDisjointPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Point/Point/PointIsNotCoveredbyDisjointPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Point/Point/PointIsNotCoveredbyDisjointPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Point/Point/PointIsNotCoveredbyDisjointPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Point/Polygon/PointIsNotCoveredbyExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Point/Polygon/PointIsNotCoveredbyExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Point/Polygon/PointIsNotCoveredbyExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Point/Polygon/PointIsNotCoveredbyExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyDisjointPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyDisjointPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyExteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyExteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/false/Polygon/Polygon/PolygonIsNotCoveredbyOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/throws/LineString/Point/LineStringIsNotCoveredbyAnyPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/throws/LineString/Point/LineStringIsNotCoveredbyAnyPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/throws/Polygon/LineString/PolygonIsNotCoveredbyAnyLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/throws/Polygon/LineString/PolygonIsNotCoveredbyAnyLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/throws/Polygon/Point/PolygonIsNotCoveredbyAnyPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/throws/Polygon/Point/PolygonIsNotCoveredbyAnyPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/LineString/LineString/LineStringCoveredbyEqualLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/LineString/LineString/LineStringCoveredbyEqualLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/LineString/Polygon/LineStringCoveredbyBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/LineString/Polygon/LineStringCoveredbyBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/LineString/Polygon/LineStringCoveredbyInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/LineString/Polygon/LineStringCoveredbyInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/MultiPoint/MultiPoint/MultiPointCoveredbyEqualMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/MultiPoint/MultiPoint/MultiPointCoveredbyEqualMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyBoundaryLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyBoundaryLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyInteriorLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/LineString/PointCoveredbyInteriorLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/Point/PointCoveredbyEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/Point/PointCoveredbyEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/Point/PointCoveredbyEqualPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/Point/PointCoveredbyEqualPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/Point/PointCoveredbyEqualPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/Point/PointCoveredbyEqualPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/Polygon/PointCoveredbyBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/Polygon/PointCoveredbyBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Point/Polygon/PointCoveredbyInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Point/Polygon/PointCoveredbyInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyBoundaryInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyBoundaryInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyBoundaryInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyBoundaryInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyInteriorPolygon-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/coveredby/true/Polygon/Polygon/PolygonCoveredbyInteriorPolygon-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/LineString/Point/LineStringDoesNotCoverDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/LineString/Point/LineStringDoesNotCoverDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/LineString/Point/LineStringDoesNotCoverDisjointPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/LineString/Point/LineStringDoesNotCoverDisjointPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Point/Point/PointDoesNotCoverDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Point/Point/PointDoesNotCoverDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Point/Point/PointDoesNotCoverDisjointPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Point/Point/PointDoesNotCoverDisjointPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Point/Point/PointDoesNotCoverDisjointPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Point/Point/PointDoesNotCoverDisjointPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/LineString/PolygonDoesNotCoverExteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/LineString/PolygonDoesNotCoverExteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Point/PolygonDoesNotCoverExteriorHolePoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Point/PolygonDoesNotCoverExteriorHolePoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Point/PolygonDoesNotCoverExteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Point/PolygonDoesNotCoverExteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverBoundaryExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverBoundaryExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverDisjointPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverDisjointPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverExteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverExteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverIntersectsHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverIntersectsHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/false/Polygon/Polygon/PolygonDoesNotCoverOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/throws/LineString/Polygon/LineStringDoesNotCoverAnyPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/throws/LineString/Polygon/LineStringDoesNotCoverAnyPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/throws/Point/LineString/PointDoesNotCoverAnyLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/throws/Point/LineString/PointDoesNotCoverAnyLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/throws/Point/Polygon/PointDoesNotCoverAnyPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/throws/Point/Polygon/PointDoesNotCoverAnyPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/LineString/LineString/LineStringCoversContainingLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/LineString/LineString/LineStringCoversContainingLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/LineString/LineString/LineStringCoversEqualLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/LineString/LineString/LineStringCoversEqualLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/LineString/LineString/LineStringCoversInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/LineString/LineString/LineStringCoversInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/LineString/Point/LineStringCoversBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/LineString/Point/LineStringCoversBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/LineString/Point/LineStringCoversBoundaryPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/LineString/Point/LineStringCoversBoundaryPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/LineString/Point/LineStringCoversInteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/LineString/Point/LineStringCoversInteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/LineString/Point/LineStringCoversInteriorPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/LineString/Point/LineStringCoversInteriorPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/MultiPoint/MultiPoint/MultiPointCoversEqualMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/MultiPoint/MultiPoint/MultiPointCoversEqualMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/MultiPoint/MultiPoint/MultiPointCoversInteriorMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/MultiPoint/MultiPoint/MultiPointCoversInteriorMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/MultiPolygon/MultiPoint/MultiPolygonCoversBoundaryMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/MultiPolygon/MultiPoint/MultiPolygonCoversBoundaryMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/MultiPolygon/MultiPoint/MultiPolygonCoversInteriorMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/MultiPolygon/MultiPoint/MultiPolygonCoversInteriorMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Point/Point/PointCoversEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Point/Point/PointCoversEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Point/Point/PointCoversEqualPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Point/Point/PointCoversEqualPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Point/Point/PointCoversEqualPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Point/Point/PointCoversEqualPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryInteriorLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryInteriorLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryInteriorLineString-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryInteriorLineString-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/LineString/PolygonCoversBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/LineString/PolygonCoversInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/LineString/PolygonCoversInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Point/PolygonCoversBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Point/PolygonCoversBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Point/PolygonCoversInteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Point/PolygonCoversInteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversBoundaryInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversBoundaryInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversBoundaryInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversBoundaryInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversInteriorPolygon-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/covers/true/Polygon/Polygon/PolygonCoversInteriorPolygon-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/LineString/Point/LineStringDoesNotCrossBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/LineString/Point/LineStringDoesNotCrossBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/LineString/Point/LineStringDoesNotCrossDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/LineString/Point/LineStringDoesNotCrossDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/LineString/Point/LineStringDoesNotCrossInteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/LineString/Point/LineStringDoesNotCrossInteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/LineString/Polygon/LineStringDoesNotCrossBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/LineString/Polygon/LineStringDoesNotCrossBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/LineString/Polygon/LineStringDoesNotCrossContainingPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/LineString/Polygon/LineStringDoesNotCrossContainingPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/LineString/Polygon/LineStringDoesNotCrossDisjointPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/LineString/Polygon/LineStringDoesNotCrossDisjointPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Point/LineString/PointDoesNotCrossBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Point/LineString/PointDoesNotCrossBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Point/LineString/PointDoesNotCrossContainingLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Point/LineString/PointDoesNotCrossContainingLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Point/LineString/PointDoesNotCrossDisjointLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Point/LineString/PointDoesNotCrossDisjointLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Point/Polygon/PointDoesNotCrossBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Point/Polygon/PointDoesNotCrossBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Point/Polygon/PointDoesNotCrossContainingPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Point/Polygon/PointDoesNotCrossContainingPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Point/Polygon/PointDoesNotCrossDisjointPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Point/Polygon/PointDoesNotCrossDisjointPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Polygon/LineString/PolygonDoesNotCrossBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Polygon/LineString/PolygonDoesNotCrossBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Polygon/LineString/PolygonDoesNotCrossExteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Polygon/LineString/PolygonDoesNotCrossExteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Polygon/LineString/PolygonDoesNotCrossInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Polygon/LineString/PolygonDoesNotCrossInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossExteriorHolePoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossExteriorHolePoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossExteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossExteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossInteriorPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/false/Polygon/Point/PolygonDoesNotCrossInteriorPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Point/Point/PointDoesNotCrossDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Point/Point/PointDoesNotCrossDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Point/Point/PointDoesNotCrossEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Point/Point/PointDoesNotCrossEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossOverlappingPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossOverlappingPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossOverlappingPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossOverlappingPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossOverlappingPolygon-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/throws/Polygon/Polygon/PolygonDoesNotCrossOverlappingPolygon-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/true/LineString/MultiPoint/LineStringCrossesCrossesMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/true/LineString/MultiPoint/LineStringCrossesCrossesMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/true/LineString/Polygon/LineStringCrossesIntersectingPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/true/LineString/Polygon/LineStringCrossesIntersectingPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/true/Polygon/LineString/PolygonCrossesIntersectingLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/true/Polygon/LineString/PolygonCrossesIntersectingLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/true/Polygon/LineString/PolygonCrossesIntersectingLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/true/Polygon/LineString/PolygonCrossesIntersectingLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/true/Polygon/LineString/PolygonCrossesIntersectingLineString-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/true/Polygon/LineString/PolygonCrossesIntersectingLineString-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/crosses/true/Polygon/MultiPoint/PolygonCrossesCrossesMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/crosses/true/Polygon/MultiPoint/PolygonCrossesCrossesMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/LineString/Point/LineStringIsNotDisjointBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/LineString/Point/LineStringIsNotDisjointBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Point/LineString/PointIsNotDisjointBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Point/LineString/PointIsNotDisjointBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Point/LineString/PointIsNotDisjointInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Point/LineString/PointIsNotDisjointInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Point/Point/PointIsNotDisjointEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Point/Point/PointIsNotDisjointEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Point/Polygon/PointIsNotDisjointBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Point/Polygon/PointIsNotDisjointBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Point/Polygon/PointIsNotDisjointInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Point/Polygon/PointIsNotDisjointInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Polygon/Point/PolygonIsNotDisjointBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Polygon/Point/PolygonIsNotDisjointBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Polygon/Point/PolygonIsNotDisjointContainingPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Polygon/Point/PolygonIsNotDisjointContainingPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/false/Polygon/Polygon/PolygonIsNotDisjointOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/LineString/Point/LineStringDisjointDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/LineString/Point/LineStringDisjointDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/LineString/Polygon/LineStringDisjointExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/LineString/Polygon/LineStringDisjointExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Point/LineString/PointDisjointDisjointLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Point/LineString/PointDisjointDisjointLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Point/Point/PointDisjointDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Point/Point/PointDisjointDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Point/Polygon/PointDisjointExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Point/Polygon/PointDisjointExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Point/Polygon/PointDisjointExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Point/Polygon/PointDisjointExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Polygon/LineString/PolygonDisjointDisjointLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Polygon/LineString/PolygonDisjointDisjointLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Polygon/Point/PolygonDisjointDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Polygon/Point/PolygonDisjointDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Polygon/Polygon/PolygonDisjointExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Polygon/Polygon/PolygonDisjointExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/disjoint/true/Polygon/Polygon/PolygonDisjointExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/disjoint/true/Polygon/Polygon/PolygonDisjointExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Point/Point/PointIsNotEqualDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Point/Point/PointIsNotEqualDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualBoundaryExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualBoundaryExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualBoundaryInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualBoundaryInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualBoundaryInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualBoundaryInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualIntersectsHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualIntersectsHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/false/Polygon/Polygon/PolygonIsNotEqualOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/LineString/Point/LineStringIsNotEqualBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/LineString/Point/LineStringIsNotEqualBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/LineString/Polygon/LineStringIsNotEqualBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/LineString/Polygon/LineStringIsNotEqualBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/LineString/Polygon/LineStringIsNotEqualExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/LineString/Polygon/LineStringIsNotEqualExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/LineString/Polygon/LineStringIsNotEqualInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/LineString/Polygon/LineStringIsNotEqualInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Point/LineString/PointIsNotEqualBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Point/LineString/PointIsNotEqualBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Point/LineString/PointIsNotEqualDisjointLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Point/LineString/PointIsNotEqualDisjointLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Point/LineString/PointIsNotEqualInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Point/LineString/PointIsNotEqualInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Point/Polygon/PointIsNotEqualInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/throws/Polygon/Point/PolygonIsNotEqualBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/throws/Polygon/Point/PolygonIsNotEqualBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/true/LineString/LineString/LineStringEqualsEqualLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/true/LineString/LineString/LineStringEqualsEqualLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/true/Point/Point/PointEqualsEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/true/Point/Point/PointEqualsEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/equals/true/Polygon/Polygon/PolygonEqualsEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/equals/true/Polygon/Polygon/PolygonEqualsEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/false/Point/Point/PointDoesNotIntersectDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/false/Point/Point/PointDoesNotIntersectDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/false/Point/Polygon/PointDoesNotIntersectExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/false/Point/Polygon/PointDoesNotIntersectExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/false/Polygon/Point/PolygonDoesNotIntersectDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/false/Polygon/Point/PolygonDoesNotIntersectDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/LineString/Point/LineStringIntersectsBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/LineString/Point/LineStringIntersectsBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/LineString/Point/LineStringIntersectsContainingPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/LineString/Point/LineStringIntersectsContainingPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Point/LineString/PointIntersectsBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Point/LineString/PointIntersectsBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Point/LineString/PointIntersectsInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Point/LineString/PointIntersectsInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Point/Point/PointIntersectsEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Point/Point/PointIntersectsEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Point/Polygon/PointIntersectsBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Point/Polygon/PointIntersectsBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Point/Polygon/PointIntersectsInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Point/Polygon/PointIntersectsInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Polygon/Point/PolygonIntersectsBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Polygon/Point/PolygonIntersectsBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Polygon/Point/PolygonIntersectsContainingPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Polygon/Point/PolygonIntersectsContainingPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/intersects/true/Polygon/Polygon/PolygonIntersectsOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/false/Point/Point/PointDoesNotOverlapDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/false/Point/Point/PointDoesNotOverlapDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/false/Point/Point/PointDoesNotOverlapEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/false/Point/Point/PointDoesNotOverlapEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/false/Polygon/Polygon/PolygonDoesNotOverlapEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/false/Polygon/Polygon/PolygonDoesNotOverlapEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/false/Polygon/Polygon/PolygonDoesNotOverlapExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/false/Polygon/Polygon/PolygonDoesNotOverlapExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/false/Polygon/Polygon/PolygonDoesNotOverlapInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/false/Polygon/Polygon/PolygonDoesNotOverlapInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/throws/Point/Polygon/PointDoesNotOverlapInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/throws/Polygon/Point/PolygonDoesNotOverlapBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/throws/Polygon/Point/PolygonDoesNotOverlapBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/throws/Polygon/Point/PolygonDoesNotOverlapContainingPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/throws/Polygon/Point/PolygonDoesNotOverlapContainingPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/throws/Polygon/Point/PolygonDoesNotOverlapDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/throws/Polygon/Point/PolygonDoesNotOverlapDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/true/Polygon/Polygon/PolygonOverlapsOverlappingPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/true/Polygon/Polygon/PolygonOverlapsOverlappingPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/overlaps/true/Polygon/Polygon/PolygonOverlapsOverlappingPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/overlaps/true/Polygon/Polygon/PolygonOverlapsOverlappingPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/LineString/Point/LineStringDoesNotTouchContainingPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/LineString/Point/LineStringDoesNotTouchContainingPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/LineString/Point/LineStringDoesNotTouchDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/LineString/Point/LineStringDoesNotTouchDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Point/LineString/PointDoesNotTouchDisjointLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Point/LineString/PointDoesNotTouchDisjointLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Point/LineString/PointDoesNotTouchInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Point/LineString/PointDoesNotTouchInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Point/Polygon/PointDoesNotTouchExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Point/Polygon/PointDoesNotTouchExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Point/Polygon/PointDoesNotTouchExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Point/Polygon/PointDoesNotTouchExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Point/Polygon/PointDoesNotTouchInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Point/Polygon/PointDoesNotTouchInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Point/PolygonDoesNotTouchContainingPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Point/PolygonDoesNotTouchContainingPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Point/PolygonDoesNotTouchDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Point/PolygonDoesNotTouchDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/false/Polygon/Polygon/PolygonDoesNotTouchOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/throws/Point/Point/PointDoesNotTouchDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/throws/Point/Point/PointDoesNotTouchDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/throws/Point/Point/PointDoesNotTouchEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/throws/Point/Point/PointDoesNotTouchEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/LineString/Point/LineStringTouchesBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/LineString/Point/LineStringTouchesBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/LineString/Polygon/LineStringTouchesBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/LineString/Polygon/LineStringTouchesBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/LineString/Polygon/LineStringTouchesBoundaryPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/LineString/Polygon/LineStringTouchesBoundaryPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Point/LineString/PointTouchesBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Point/LineString/PointTouchesBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Point/Polygon/PointTouchesBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Point/Polygon/PointTouchesBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Polygon/LineString/PolygonTouchesBoundaryLineString-4.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Polygon/Point/PolygonTouchesBoundaryPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Polygon/Point/PolygonTouchesBoundaryPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Polygon/Polygon/PolygonTouchesBoundaryExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Polygon/Polygon/PolygonTouchesBoundaryExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/touches/true/Polygon/Polygon/PolygonTouchesBoundaryExteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/touches/true/Polygon/Polygon/PolygonTouchesBoundaryExteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/LineString/Polygon/LineStringIsNotWithinBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/LineString/Polygon/LineStringIsNotWithinBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/LineString/Polygon/LineStringIsNotWithinExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/LineString/Polygon/LineStringIsNotWithinExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/LineString/PointIsNotWithinBoundaryLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/LineString/PointIsNotWithinBoundaryLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/LineString/PointIsNotWithinBoundaryLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/LineString/PointIsNotWithinBoundaryLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/LineString/PointIsNotWithinDisjointLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/LineString/PointIsNotWithinDisjointLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/LineString/PointIsNotWithinDisjointLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/LineString/PointIsNotWithinDisjointLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/Point/PointIsNotWithinDisjointPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/Point/PointIsNotWithinDisjointPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/Point/PointIsNotWithinDisjointPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/Point/PointIsNotWithinDisjointPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/Point/PointIsNotWithinDisjointPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/Point/PointIsNotWithinDisjointPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/Polygon/PointIsNotWithinBoundaryPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/Polygon/PointIsNotWithinBoundaryPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/Polygon/PointIsNotWithinExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/Polygon/PointIsNotWithinExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Point/Polygon/PointIsNotWithinExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Point/Polygon/PointIsNotWithinExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinDisjointPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinDisjointPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinExteriorHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinExteriorHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinExteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinExteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinExteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinExteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinIntersectsHolePolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinIntersectsHolePolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinOverlapsPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinOverlapsPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinOverlapsPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/false/Polygon/Polygon/PolygonIsNotWithinOverlapsPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/throws/LineString/Point/LineStringIsNotWithinAnyPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/throws/LineString/Point/LineStringIsNotWithinAnyPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/throws/Polygon/LineString/PolygonIsNotWithinAnyLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/throws/Polygon/LineString/PolygonIsNotWithinAnyLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/throws/Polygon/Point/PolygonIsNotWithinAnyPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/throws/Polygon/Point/PolygonIsNotWithinAnyPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/LineString/LineString/LineStringWithinEqualLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/LineString/LineString/LineStringWithinEqualLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/LineString/LineString/LineStringWithinInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/LineString/LineString/LineStringWithinInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/LineString/Polygon/LineStringWithinInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/LineString/Polygon/LineStringWithinInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/MultiPoint/MultiPoint/MultiPointWithinEqualMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/MultiPoint/MultiPoint/MultiPointWithinEqualMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/MultiPoint/MultiPoint/MultiPointWithinInteriorMultiPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/MultiPoint/MultiPoint/MultiPointWithinInteriorMultiPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Point/LineString/PointWithinInteriorLineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Point/LineString/PointWithinInteriorLineString-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Point/LineString/PointWithinInteriorLineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Point/LineString/PointWithinInteriorLineString-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Point/Point/PointWithinEqualPoint-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Point/Point/PointWithinEqualPoint-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Point/Point/PointWithinEqualPoint-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Point/Point/PointWithinEqualPoint-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Point/Point/PointWithinEqualPoint-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Point/Point/PointWithinEqualPoint-3.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Point/Polygon/PointWithinInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Point/Polygon/PointWithinInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Polygon/Polygon/PolygonWithinBoundaryInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Polygon/Polygon/PolygonWithinBoundaryInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Polygon/Polygon/PolygonWithinBoundaryInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Polygon/Polygon/PolygonWithinBoundaryInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Polygon/Polygon/PolygonWithinEqualPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Polygon/Polygon/PolygonWithinEqualPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Polygon/Polygon/PolygonWithinInteriorPolygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Polygon/Polygon/PolygonWithinInteriorPolygon-1.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Polygon/Polygon/PolygonWithinInteriorPolygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Polygon/Polygon/PolygonWithinInteriorPolygon-2.geojson -------------------------------------------------------------------------------- /test/data/de9im/within/true/Polygon/Polygon/PolygonWithinInteriorPolygon-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/de9im/within/true/Polygon/Polygon/PolygonWithinInteriorPolygon-3.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/LineString/LineString/LineIsNotContainedByLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/LineString/LineString/LineIsNotContainedByLine.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/LineString/Polygon/LineIsNotContainedByPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/LineString/Polygon/LineIsNotContainedByPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/LineString/Polygon/LineIsNotContainedByPolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/LineString/Polygon/LineIsNotContainedByPolygonBoundary.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/MultiPoint/LineString/MultiPointsIsNotContainedByLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/MultiPoint/LineString/MultiPointsIsNotContainedByLine.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/MultiPoint/Polygon/MultiPointIsNotContainedByPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/MultiPoint/Polygon/MultiPointIsNotContainedByPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Point/LineString/PointIsNotContainedByLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Point/LineString/PointIsNotContainedByLine.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Point/LineString/PointIsNotContainedByLineBecauseOnEnd.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Point/LineString/PointIsNotContainedByLineBecauseOnEnd.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Point/LineString/PointOnEndIsContainedByLinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Point/LineString/PointOnEndIsContainedByLinestring.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Point/MultiPoint/PointIsNotContainedBYMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Point/MultiPoint/PointIsNotContainedBYMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Point/Polygon/PointIsNotContainedByPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Point/Polygon/PointIsNotContainedByPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Point/Polygon/PointOnPolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Point/Polygon/PointOnPolygonBoundary.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Polygon/LineString/issue-#1201-false.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Polygon/LineString/issue-#1201-false.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/false/Polygon/Polygon/Polygon-Polygon2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/false/Polygon/Polygon/Polygon-Polygon2.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/LineString/LineString/LineIsContainedByLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/LineString/LineString/LineIsContainedByLine.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/LineString/LineString/LinesExactlySame.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/LineString/LineString/LinesExactlySame.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/LineString/Polygon/LineIsContainedByPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/LineString/Polygon/LineIsContainedByPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/MultiPoint/LineString/MultipointsIsContainedByLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/MultiPoint/LineString/MultipointsIsContainedByLine.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/MultiPoint/MultiPoint/MultiPointsContainedByMultiPoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/MultiPoint/MultiPoint/MultiPointsContainedByMultiPoints.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/MultiPoint/MultiPoint/MultiPointsEqual.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/MultiPoint/MultiPoint/MultiPointsEqual.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/MultiPoint/Polygon/MultiPointIsContainedByPolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/MultiPoint/Polygon/MultiPointIsContainedByPolygonBoundary.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/Point/LineString/PointIsContainedByLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/Point/LineString/PointIsContainedByLine.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/Point/MultiPoint/PointIsContainedByMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/Point/MultiPoint/PointIsContainedByMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/Point/Polygon/PointInsidePolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/Point/Polygon/PointInsidePolygonBoundary.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/Polygon/LineString/issue-#1201-true.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/Polygon/LineString/issue-#1201-true.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/Polygon/Polygon/PolygonExactSameShape.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/Polygon/Polygon/PolygonExactSameShape.geojson -------------------------------------------------------------------------------- /test/data/turf/contains/true/Polygon/Polygon/PolygonIsContainedByPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/contains/true/Polygon/Polygon/PolygonIsContainedByPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/false/LineString/LineString/LineDoesNotCrossButTouches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/false/LineString/LineString/LineDoesNotCrossButTouches.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/false/LineString/LineString/LineDoesNotCrossLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/false/LineString/LineString/LineDoesNotCrossLine.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/false/LineString/Polygon/LineDoesNotCrossPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/false/LineString/Polygon/LineDoesNotCrossPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/false/MultiPoint/LineString/MultiPointNotCrossLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/false/MultiPoint/LineString/MultiPointNotCrossLine.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/false/MultiPoint/LineString/MultiPointNotCrossLineEnd.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/false/MultiPoint/LineString/MultiPointNotCrossLineEnd.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/true/LineString/LineString/LineCrossesLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/true/LineString/LineString/LineCrossesLine.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/true/LineString/Polygon/LineCrossesPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/true/LineString/Polygon/LineCrossesPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/true/LineString/Polygon/LineCrossesPolygonPartial.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/true/LineString/Polygon/LineCrossesPolygonPartial.geojson -------------------------------------------------------------------------------- /test/data/turf/crosses/true/MultiPoint/LineString/MultiPointsCrossLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/crosses/true/MultiPoint/LineString/MultiPointsCrossLine.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/LineString/LineString/LineString-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/LineString/LineString/LineString-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/LineString/Point/LineString-Point-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/LineString/Point/LineString-Point-1.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/LineString/Point/LineString-Point-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/LineString/Point/LineString-Point-2.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/LineString/Polygon/LineString-In-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/LineString/Polygon/LineString-In-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/MultiPoint/LineString/MultiPoint-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/MultiPoint/LineString/MultiPoint-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/LineString/Point-LineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/LineString/Point-LineString-1.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/LineString/Point-LineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/LineString/Point-LineString-2.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/LineString/Point-LineString-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/LineString/Point-LineString-3.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/LineString/Point-LineString-4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/LineString/Point-LineString-4.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/MultiPoint/Point-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/MultiPoint/Point-MultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/Polygon/Point-Polygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/Polygon/Point-Polygon-1.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Point/Polygon/Point-Polygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Point/Polygon/Point-Polygon-2.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/LineString/Polygon-Containing-Linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/LineString/Polygon-Containing-Linestring.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/Polygon/Large-Inside-Small.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/Polygon/Large-Inside-Small.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/Polygon/Small-Inside-Large.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/Polygon/Small-Inside-Large.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/false/Polygon/Polygon/issue-1216.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/false/Polygon/Polygon/issue-1216.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/LineString/LineString/LineString-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/LineString/LineString/LineString-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/LineString/Point/LineString-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/LineString/Point/LineString-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/MultiPoint/LineString/MultiPoint-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/MultiPoint/LineString/MultiPoint-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/MultiPoint/Point/MultiPoint-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/MultiPoint/Point/MultiPoint-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Point/LineString/Point-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Point/LineString/Point-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Point/MultiPoint/Point-Multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Point/MultiPoint/Point-Multipoint.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Point/Polygon/Point-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Point/Polygon/Point-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/disjoint/true/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/disjoint/true/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/false/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/false/linear-rings.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/false/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/false/lines.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/false/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/false/multipoints.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/false/points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/false/points.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/false/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/false/polygons.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/different-initials-poly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/different-initials-poly.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/linear-rings.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/lines-extra-vertices.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/lines-extra-vertices.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/lines-reverse.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/lines-reverse.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/lines.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/multipoints.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/points.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/polygons.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/reverse-lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/reverse-lines.geojson -------------------------------------------------------------------------------- /test/data/turf/equals/true/reverse-polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/equals/true/reverse-polygons.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/LineString/LineString/LineString-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/LineString/LineString/LineString-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/LineString/Point/LineString-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/LineString/Point/LineString-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/MultiPoint/LineString/MultiPoint-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/MultiPoint/LineString/MultiPoint-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/MultiPoint/Point/MultiPoint-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/MultiPoint/Point/MultiPoint-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Point/LineString/Point-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Point/LineString/Point-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Point/MultiPoint/Point-Multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Point/MultiPoint/Point-Multipoint.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Point/Polygon/Point-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Point/Polygon/Point-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/LineString/LineString/LineString-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/LineString/LineString/LineString-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/LineString/Point/LineString-Point-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/LineString/Point/LineString-Point-1.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/LineString/Point/LineString-Point-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/LineString/Point/LineString-Point-2.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/LineString/Polygon/LineString-In-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/LineString/Polygon/LineString-In-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/LineString/Polygon/LineString-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/LineString/Polygon/LineString-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/MultiPoint/LineString/MultiPoint-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/MultiPoint/LineString/MultiPoint-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/LineString/Point-LineString-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/LineString/Point-LineString-1.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/LineString/Point-LineString-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/LineString/Point-LineString-2.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/LineString/Point-LineString-3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/LineString/Point-LineString-3.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/LineString/Point-LineString-4.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/LineString/Point-LineString-4.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/MultiPoint/Point-MultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/MultiPoint/Point-MultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/Point/Point-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/Point/Point-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/Polygon/Point-Polygon-1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/Polygon/Point-Polygon-1.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Point/Polygon/Point-Polygon-2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Point/Polygon/Point-Polygon-2.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/LineString/Polygon-Containing-Linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/LineString/Polygon-Containing-Linestring.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/LineString/Polygon-LineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/LineString/Polygon-LineString.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/Point/Polygon-Point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/Point/Polygon-Point.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/Polygon/Large-Inside-Small.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/Polygon/Large-Inside-Small.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/Polygon/Small-Inside-Large.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/Polygon/Small-Inside-Large.geojson -------------------------------------------------------------------------------- /test/data/turf/intersects/true/Polygon/Polygon/issue-1216.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/intersects/true/Polygon/Polygon/issue-1216.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/equal-linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/equal-linear-rings.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/equal-lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/equal-lines.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/equal-multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/equal-multipoints.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/equal-polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/equal-polygons.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/linear-rings.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/lines.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/multipoints.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/polygon-with-hole-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/polygon-with-hole-polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/false/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/false/polygons.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/true/linear-rings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/true/linear-rings.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/true/lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/true/lines.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/true/multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/true/multipoints.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/true/polygon-with-hole-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/true/polygon-with-hole-polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/true/polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/true/polygons.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/true/simple-lines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/true/simple-lines.geojson -------------------------------------------------------------------------------- /test/data/turf/overlaps/true/single-multipoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/overlaps/true/single-multipoints.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/LineString/LinesExactSame.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/LineString/LinesExactSame.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/LineString/LivesOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/LineString/LivesOverlap.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/MultiLineString/LineStringSameAsMultiLinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/MultiLineString/LineStringSameAsMultiLinestring.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/MultiPoint/LineStringDoesNotTouchMP.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/MultiPoint/LineStringDoesNotTouchMP.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/MultiPolygon/LineDoesNotTouchMultiPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/MultiPolygon/LineDoesNotTouchMultiPoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/Polygon/LineCrossesPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/Polygon/LineCrossesPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/Polygon/LineDoesNotTouch.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/Polygon/LineDoesNotTouch.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/LineString/Polygon/LineWIthinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/LineString/Polygon/LineWIthinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/LineString/MultiLineStringOverlapsLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/LineString/MultiLineStringOverlapsLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/LineString/MultiLineStringSameAsLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/LineString/MultiLineStringSameAsLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/MultiLineString/MultiLineStringsOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/MultiLineString/MultiLineStringsOverlap.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/MultiLineString/MultiLineStringsSame.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/MultiLineString/MultiLineStringsSame.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/MultiPoint/MpTouchesInternalMultiline.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/MultiPoint/MpTouchesInternalMultiline.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/MultiPoint/MultiPointNotTouchMultiline.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/MultiPoint/MultiPointNotTouchMultiline.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/MultiPolygon/MultiLineInsideMultipoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/MultiPolygon/MultiLineInsideMultipoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/Point/PointNotTouchMultiLinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/Point/PointNotTouchMultiLinestring.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/Point/PointTouchesMidLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/Point/PointTouchesMidLineString.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/Polygon/MultiLineInsidePoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/Polygon/MultiLineInsidePoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiLineString/Polygon/MultiLineNotTouchPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiLineString/Polygon/MultiLineNotTouchPoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/LineString/MultiPointTouchesInsideLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/LineString/MultiPointTouchesInsideLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/LineString/MultipointDoesNotTouchLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/LineString/MultipointDoesNotTouchLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/MultiLineString/MpDoesNotTouchMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/MultiLineString/MpDoesNotTouchMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/MultiLineString/MpTouchesInternalMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/MultiLineString/MpTouchesInternalMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/MultiPolygon/MultiPointDoesNotTouchMultipolygon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/MultiPolygon/MultiPointDoesNotTouchMultipolygon -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/MultiPolygon/multipoint-inside-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/MultiPolygon/multipoint-inside-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/Polygon/MultiPointInsidePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/Polygon/MultiPointInsidePolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPoint/Polygon/MultiPointNoTouchPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPoint/Polygon/MultiPointNoTouchPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPolygon/LineString/MultiPolyNotTouchLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPolygon/LineString/MultiPolyNotTouchLineString.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPolygon/MultiLineString/MultiPolyOverlapsMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPolygon/MultiLineString/MultiPolyOverlapsMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPolygon/MultiPoint/MultiPolyNotTouchMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPolygon/MultiPoint/MultiPolyNotTouchMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPolygon/MultiPolygon/MultiPolysDoNotTouch.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPolygon/MultiPolygon/MultiPolysDoNotTouch.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPolygon/MultiPolygon/MultiPolysOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPolygon/MultiPolygon/MultiPolysOverlap.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/MultiPolygon/Point/MultiPolyNotTouchPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/MultiPolygon/Point/MultiPolyNotTouchPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Point/LineString/PointIsNotTouchLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Point/LineString/PointIsNotTouchLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Point/LineString/PointOnMidLinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Point/LineString/PointOnMidLinestring.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Point/MultiLineString/MpNotTouchMidLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Point/MultiLineString/MpNotTouchMidLineString.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Point/MultiLineString/MpOnMidLineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Point/MultiLineString/MpOnMidLineString.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Point/MultiPolygon/PointNotTouchMultipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Point/MultiPolygon/PointNotTouchMultipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Point/Polygon/PointDoesNotTouchPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Point/Polygon/PointDoesNotTouchPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Point/Polygon/PointInsidePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Point/Polygon/PointInsidePolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/LineString/PolyDoesNotTouchLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/LineString/PolyDoesNotTouchLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/MultiLineString/PolyNotTouchMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/MultiLineString/PolyNotTouchMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/MultiLineString/PolyOverlapMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/MultiLineString/PolyOverlapMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/MultiPoint/PolygonNoTouchMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/MultiPoint/PolygonNoTouchMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/MultiPoint/PolygonOverlapsMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/MultiPoint/PolygonOverlapsMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/MultiPolygon/PolyNotTouchMultipoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/MultiPolygon/PolyNotTouchMultipoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/Point/PolygonDoesNotTouchPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/Point/PolygonDoesNotTouchPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/Point/PolygonOverlapsPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/Point/PolygonOverlapsPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/Polygon/PolygonsDontTouch.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/Polygon/PolygonsDontTouch.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/false/Polygon/Polygon/PolygonsOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/false/Polygon/Polygon/PolygonsOverlap.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/LineString/LineString/LineTouchesEndpoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/LineString/LineString/LineTouchesEndpoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/LineString/MultiLineString/LineStringTouchesEnd.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/LineString/MultiLineString/LineStringTouchesEnd.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/LineString/MultiLineString/LineStringTouchesStart.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/LineString/MultiLineString/LineStringTouchesStart.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/LineString/MultiPoint/MultipointTouchesLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/LineString/MultiPoint/MultipointTouchesLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/LineString/MultiPolygon/LineTouchesMultiPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/LineString/MultiPolygon/LineTouchesMultiPoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/LineString/MultiPolygon/LineTouchesSecondMultiPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/LineString/MultiPolygon/LineTouchesSecondMultiPoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/LineString/Polygon/LineTouchesPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/LineString/Polygon/LineTouchesPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiLineString/LineString/MultiLineTouchesLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiLineString/LineString/MultiLineTouchesLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiLineString/MultiLineString/MultiLineTouchesMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiLineString/MultiLineString/MultiLineTouchesMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiLineString/MultiPoint/MultiLineTouchesMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiLineString/MultiPoint/MultiLineTouchesMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiLineString/Point/MultiLineTouchesPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiLineString/Point/MultiLineTouchesPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiLineString/Polygon/MultiLineTouchesPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiLineString/Polygon/MultiLineTouchesPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPoint/LineString/MultipointTouchesLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPoint/LineString/MultipointTouchesLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPoint/MultiLineString/MpTouchesEndMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPoint/MultiLineString/MpTouchesEndMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPoint/MultiLineString/MpTouchesSecondMultiLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPoint/MultiLineString/MpTouchesSecondMultiLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPoint/MultiPolygon/multipoint-touches-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPoint/MultiPolygon/multipoint-touches-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPolygon/MultiLineString/MultiLineTouchesMultiPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPolygon/MultiLineString/MultiLineTouchesMultiPoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPolygon/MultiPoint/MultiPolyTouchesMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPolygon/MultiPoint/MultiPolyTouchesMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPolygon/MultiPolygon/MultiPolyTouchesMultiPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPolygon/MultiPolygon/MultiPolyTouchesMultiPoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPolygon/Point/MpTouchesPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPolygon/Point/MpTouchesPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/MultiPolygon/Polygon/MultiPolyTouchesPoly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/MultiPolygon/Polygon/MultiPolyTouchesPoly.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/LineString/PointOnEndLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/LineString/PointOnEndLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/LineString/PointOnStartLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/LineString/PointOnStartLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/MultiLineString/MpOnEndLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/MultiLineString/MpOnEndLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/MultiLineString/MpOnStartLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/MultiLineString/MpOnStartLine.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/MultiPolygon/PointTouchesMultipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/MultiPolygon/PointTouchesMultipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/MultiPolygon/PointTouchesMultipolygonHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/MultiPolygon/PointTouchesMultipolygonHole.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/Polygon/PointOnEdgePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/Polygon/PointOnEdgePolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/Polygon/PointOnHole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/Polygon/PointOnHole.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Point/Polygon/PointOnVerticePolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Point/Polygon/PointOnVerticePolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/LineString/PolygonTouchesLines.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/LineString/PolygonTouchesLines.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/MultiLineString/PolygonTouchesMultiline.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/MultiLineString/PolygonTouchesMultiline.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/MultiPoint/PolygonTouchesMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/MultiPoint/PolygonTouchesMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/MultiPolygon/PolyTouchMultiPolys.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/MultiPolygon/PolyTouchMultiPolys.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/Point/PolygonTouchesPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/Point/PolygonTouchesPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/Point/PolygonTouchesPointVertice.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/Point/PolygonTouchesPointVertice.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/Polygon/PolygonTouchesEdges.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/Polygon/PolygonTouchesEdges.geojson -------------------------------------------------------------------------------- /test/data/turf/touches/true/Polygon/Polygon/PolygonsTouchVertices.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/touches/true/Polygon/Polygon/PolygonsTouchVertices.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/LineString/LineString/LineIsNotWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/LineString/LineString/LineIsNotWithinLine.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/LineString/Polygon/LineIsNotWIthinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/LineString/Polygon/LineIsNotWIthinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/LineString/Polygon/LineIsNotWIthinPolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/LineString/Polygon/LineIsNotWIthinPolygonBoundary.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/MultiPoint/LineString/MultiPointsIsNotWIthinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/MultiPoint/LineString/MultiPointsIsNotWIthinLine.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/MultiPoint/LineString/MultiPointsOnLineEndsIsNotWIthinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/MultiPoint/LineString/MultiPointsOnLineEndsIsNotWIthinLine.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/MultiPoint/MultiPoint/MultiPointIsNotWithinMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/MultiPoint/MultiPoint/MultiPointIsNotWithinMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/MultiPoint/MultiPolygon/multipoint-not-within-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/MultiPoint/MultiPolygon/multipoint-not-within-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/MultiPoint/Polygon/MultiPointIsNotWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/MultiPoint/Polygon/MultiPointIsNotWithinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Point/LineString/PointIsNotWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Point/LineString/PointIsNotWithinLine.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Point/LineString/PointIsNotWithinLineBecauseOnEnd.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Point/LineString/PointIsNotWithinLineBecauseOnEnd.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Point/LineString/PointOnEndIsWithinLinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Point/LineString/PointOnEndIsWithinLinestring.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Point/MultiPoint/PointIsNotWithinMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Point/MultiPoint/PointIsNotWithinMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Point/MultiPolygon/point-not-within-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Point/MultiPolygon/point-not-within-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Point/Polygon/PointIsNotWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Point/Polygon/PointIsNotWithinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Point/Polygon/PointOnPolygonBoundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Point/Polygon/PointOnPolygonBoundary.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Polygon/MultiPolygon/polygon-not-within-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Polygon/MultiPolygon/polygon-not-within-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/false/Polygon/Polygon/Polygon-Polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/false/Polygon/Polygon/Polygon-Polygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/LineString/LineString/LineIsWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/LineString/LineString/LineIsWithinLine.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/LineString/LineString/LinesExactSame.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/LineString/LineString/LinesExactSame.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/LineString/Polygon/LineIsContainedByPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/LineString/Polygon/LineIsContainedByPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/MultiPoint/LineString/MultipointsIsWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/MultiPoint/LineString/MultipointsIsWithinLine.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/MultiPoint/MultiPoint/MultiPointsWithinMultiPoints.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/MultiPoint/MultiPoint/MultiPointsWithinMultiPoints.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/MultiPoint/MultiPolygon/multipoint-within-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/MultiPoint/MultiPolygon/multipoint-within-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/Point/LineString/PointIsWithinLine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/Point/LineString/PointIsWithinLine.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/Point/MultiPoint/PointIsWithinMultiPoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/Point/MultiPoint/PointIsWithinMultiPoint.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/Point/MultiPolygon/point-within-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/Point/MultiPolygon/point-within-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/Point/Polygon/PointIsWithinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/Point/Polygon/PointIsWithinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/Polygon/MultiPolygon/polygon-within-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/Polygon/MultiPolygon/polygon-within-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/Polygon/Polygon/PolygonIsWIthinPolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/Polygon/Polygon/PolygonIsWIthinPolygon.geojson -------------------------------------------------------------------------------- /test/data/turf/within/true/Polygon/Polygon/PolygonsExactSameShape.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/data/turf/within/true/Polygon/Polygon/PolygonsExactSameShape.geojson -------------------------------------------------------------------------------- /test/de9im.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/de9im.loader.js -------------------------------------------------------------------------------- /test/de9im.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/de9im.test.js -------------------------------------------------------------------------------- /test/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/report.js -------------------------------------------------------------------------------- /test/turf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpmcmlxxvi/de9im/HEAD/test/turf.test.js --------------------------------------------------------------------------------