-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathboolean_within.dart
86 lines (83 loc) · 2.9 KB
/
boolean_within.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import 'package:turf/helpers.dart';
import 'package:turf/src/invariant.dart';
import 'boolean_helper.dart';
/// Returns [true] if the first [GeoJSONObject] is completely within the second [GeoJSONObject].
/// The interiors of both geometries must intersect and, the interior and boundary
/// of the primary (geometry a) must not intersect the exterior of the secondary
/// (geometry b). [booleanWithin] returns the exact opposite result of [booleanContains].
///
///
/// example:
/// ```dart
/// final point = Point(coordinates: [1, 2]);
/// final line = LineString(
/// coordinates: [
/// Position.of([1, 1]),
/// Position.of([1, 2]),
/// Position.of([1, 3]),
/// Position.of([1, 4])
/// ],
/// );
/// final isWithin = booleanWithin(point, line); // true
/// ```
bool booleanWithin(
GeoJSONObject feature1,
GeoJSONObject feature2,
) {
final geom1 = getGeom(feature1);
final geom2 = getGeom(feature2);
switch (geom1.runtimeType) {
case Point:
final point = geom1 as Point;
switch (geom2.runtimeType) {
case MultiPoint:
return isPointInMultiPoint(point, geom2 as MultiPoint);
case LineString:
return isPointOnLine(point, geom2 as LineString);
case Polygon:
return isPointInPolygon(point, geom2 as Polygon);
case MultiPolygon:
return isPointInMultiPolygon(point, geom2 as MultiPolygon);
default:
throw GeometryCombinationNotSupported(geom1, geom2);
}
case MultiPoint:
final multipoint = geom1 as MultiPoint;
switch (geom2.runtimeType) {
case MultiPoint:
return isMultiPointInMultiPoint(multipoint, geom2 as MultiPoint);
case LineString:
return isMultiPointOnLine(multipoint, geom2 as LineString);
case Polygon:
return isMultiPointInPolygon(multipoint, geom2 as Polygon);
case MultiPolygon:
return isMultiPointInMultiPolygon(multipoint, geom2 as MultiPolygon);
default:
throw GeometryCombinationNotSupported(geom1, geom2);
}
case LineString:
final line = geom1 as LineString;
switch (geom2.runtimeType) {
case LineString:
return isLineOnLine(line, geom2 as LineString);
case Polygon:
return isLineInPolygon(line, geom2 as Polygon);
case MultiPolygon:
return isLineInMultiPolygon(line, geom2 as MultiPolygon);
default:
throw GeometryCombinationNotSupported(geom1, geom2);
}
case Polygon:
final polygon = geom1 as Polygon;
switch (geom2.runtimeType) {
case Polygon:
return isPolygonInPolygon(polygon, geom2 as Polygon);
case MultiPolygon:
return isPolygonInMultiPolygon(polygon, geom2 as MultiPolygon);
default:
throw GeometryCombinationNotSupported(geom1, geom2);
}
default:
throw GeometryCombinationNotSupported(geom1, geom2);
}
}