Skip to content

Commit 36555a1

Browse files
committed
Fix more links
1 parent dc1c4de commit 36555a1

File tree

14 files changed

+54
-57
lines changed

14 files changed

+54
-57
lines changed

site/content/3.10/about-arangodb/features/community-edition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ see [arangodb.com/community-server/](https://www.arangodb.com/community-server/)
141141
Flexible data field pre-processing with custom queries and the ability to
142142
chain built-in and custom Analyzers. Language-agnostic tokenization of text.
143143

144-
- [**GeoJSON Support**](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson):
144+
- [**GeoJSON Support**](../../aql/functions/geo.md#geojson):
145145
Geographic data encoded in the popular GeoJSON format can be stored and used
146146
for geo-spatial queries.
147147

site/content/3.10/aql/functions/arangosearch.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ be used in conjunction with ArangoSearch.
10731073

10741074
`GEO_CONTAINS(geoJsonA, geoJsonB) → bool`
10751075

1076-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
1076+
Checks whether the [GeoJSON object](geo.md#geojson) `geoJsonA`
10771077
fully contains `geoJsonB` (every point in B is also in A).
10781078

10791079
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array
@@ -1089,7 +1089,7 @@ fully contains `geoJsonB` (every point in B is also in A).
10891089

10901090
`GEO_DISTANCE(geoJsonA, geoJsonB) → distance`
10911091

1092-
Return the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson),
1092+
Return the distance between two [GeoJSON objects](geo.md#geojson),
10931093
measured from the `centroid` of each shape.
10941094

10951095
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array
@@ -1105,7 +1105,7 @@ measured from the `centroid` of each shape.
11051105

11061106
`GEO_IN_RANGE(geoJsonA, geoJsonB, low, high, includeLow, includeHigh) → bool`
11071107

1108-
Checks whether the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson)
1108+
Checks whether the distance between two [GeoJSON objects](geo.md#geojson)
11091109
lies within a given interval. The distance is measured from the `centroid` of
11101110
each shape.
11111111

@@ -1129,7 +1129,7 @@ each shape.
11291129

11301130
`GEO_INTERSECTS(geoJsonA, geoJsonB) → bool`
11311131

1132-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
1132+
Checks whether the [GeoJSON object](geo.md#geojson) `geoJsonA`
11331133
intersects with `geoJsonB` (i.e. at least one point of B is in A or vice versa).
11341134

11351135
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array

site/content/3.10/aql/functions/geo.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ FOR doc IN coll // e.g. documents returned by a traversal
421421

422422
`GEO_CONTAINS(geoJsonA, geoJsonB) → bool`
423423

424-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
424+
Checks whether the [GeoJSON object](#geojson) `geoJsonA`
425425
fully contains `geoJsonB` (every point in B is also in A). The object `geoJsonA`
426426
has to be of type _Polygon_ or _MultiPolygon_. For other types containment is
427427
not well-defined because of numerical stability problems.
@@ -467,7 +467,7 @@ second argument. Passing it as the first argument, like
467467

468468
Return the distance between two GeoJSON objects in meters, measured from the
469469
**centroid** of each shape. For a list of supported types see the
470-
[geo index page](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson).
470+
[geo index page](#geojson).
471471

472472
- **geoJsonA** (object): first GeoJSON object, or a coordinate array in
473473
`[longitude, latitude]` order
@@ -522,9 +522,8 @@ functions.
522522

523523
`GEO_AREA(geoJson, ellipsoid) → area`
524524

525-
Return the area for a polygon or multi-polygon on a sphere with the
526-
average Earth radius, or an ellipsoid. For a list of supported types
527-
see the [geo index page](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson).
525+
Return the area for a [Polygon](#polygon) or [MultiPolygon](#multipolygon)
526+
on a sphere with the average Earth radius, or an ellipsoid.
528527

529528
- **geoJson** (object): a GeoJSON object
530529
- **ellipsoid** (string, *optional*): reference ellipsoid to use.
@@ -543,8 +542,7 @@ RETURN GEO_AREA(polygon, "wgs84")
543542

544543
`GEO_EQUALS(geoJsonA, geoJsonB) → bool`
545544

546-
Checks whether two GeoJSON objects are equal or not. For a list of supported
547-
types see the [geo index page](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson).
545+
Checks whether two [GeoJSON objects](#geojson) are equal or not.
548546

549547
- **geoJsonA** (object): first GeoJSON object.
550548
- **geoJsonB** (object): second GeoJSON object.
@@ -574,7 +572,7 @@ RETURN GEO_EQUALS(polygonA, polygonB) // false
574572

575573
`GEO_INTERSECTS(geoJsonA, geoJsonB) → bool`
576574

577-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
575+
Checks whether the [GeoJSON object](#geojson) `geoJsonA`
578576
intersects with `geoJsonB` (i.e. at least one point in B is also in A or vice-versa).
579577

580578
- **geoJsonA** (object): first GeoJSON object
@@ -605,7 +603,7 @@ second argument. Passing it as the first argument, like
605603

606604
`GEO_IN_RANGE(geoJsonA, geoJsonB, low, high, includeLow, includeHigh) → bool`
607605

608-
Checks whether the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson)
606+
Checks whether the distance between two [GeoJSON objects](#geojson)
609607
lies within a given interval. The distance is measured from the **centroid** of
610608
each shape.
611609

@@ -772,7 +770,7 @@ a linear ring. Each linear ring consists of an array with at least four
772770
longitude/latitude pairs. The first linear ring must be the outermost, while
773771
any subsequent linear ring will be interpreted as holes.
774772

775-
For details about the rules, see [GeoJSON polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#polygon).
773+
For details about the rules, see [GeoJSON Polygon](#polygon).
776774

777775
- **points** (array): an array of (arrays of) `[longitude, latitude]` pairs
778776
- returns **geoJson** (object\|null): a valid GeoJSON Polygon
@@ -811,7 +809,8 @@ RETURN GEO_POLYGON([
811809
`GEO_MULTIPOLYGON(polygons) → geoJson`
812810

813811
Construct a GeoJSON MultiPolygon. Needs at least two Polygons inside.
814-
See [GEO_POLYGON()](#geo_polygon) and [GeoJSON MultiPolygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#multipolygon) for the rules of Polygon and MultiPolygon construction.
812+
See [GEO_POLYGON()](#geo_polygon) and [GeoJSON MultiPolygon](#multipolygon)
813+
for the rules of Polygon and MultiPolygon construction.
815814

816815
- **polygons** (array): an array of arrays of arrays of `[longitude, latitude]` pairs
817816
- returns **geoJson** (object\|null): a valid GeoJSON MultiPolygon
@@ -935,7 +934,7 @@ value in an attribute of that name.
935934
`WITHIN_RECTANGLE()` is a deprecated AQL function from version 3.4.0 on. Use
936935
[`GEO_CONTAINS()`](#geo_contains) and a GeoJSON polygon instead - but note that
937936
this uses geodesic lines from version 3.10.0 onward
938-
(see [GeoJSON interpretation](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson-interpretation)):
937+
(see [GeoJSON interpretation](#geojson-interpretation)):
939938

940939
```aql
941940
LET rect = GEO_POLYGON([ [

site/content/3.10/index-and-search/analyzers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1254,7 +1254,7 @@ attributes:
12541254
- `legacy` (boolean, _optional_):
12551255
This option controls how GeoJSON Polygons are interpreted (introduced in v3.10.5).
12561256
Also see [Legacy Polygons](indexing/working-with-indexes/geo-spatial-indexes.md#legacy-polygons) and
1257-
[GeoJSON interpretation](indexing/working-with-indexes/geo-spatial-indexes.md#geojson-interpretation).
1257+
[GeoJSON interpretation](../aql/functions/geo.md#geojson-interpretation).
12581258

12591259
- If `legacy` is `true`, the smaller of the two regions defined by a
12601260
linear ring is interpreted as the interior of the ring and a ring can at most

site/content/3.10/release-notes/version-3.10/incompatible-changes-in-3-10.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ interpretation of GeoJSON polygons in version 3.9 and older:
109109
This can mean that old polygon GeoJSON data in the database is
110110
suddenly interpreted in a different way. See
111111
[Legacy Polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#legacy-polygons) for details.
112-
Also see the definition of [Polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#polygon)
112+
Also see the definition of [Polygons](../../aql/functions/geo.md#polygon)
113113
and [GeoJSON interpretation](../../aql/functions/geo.md#geojson-interpretation).
114114

115115
## `geojson` Analyzers
@@ -148,7 +148,7 @@ the new Analyzers.
148148
| The smaller of the two regions defined by a linear ring is interpreted as the interior of the ring. | The area to the left of the boundary ring's path is considered to be the interior. |
149149
| A ring can at most enclose half the Earth's surface | A ring can enclose the entire surface of the Earth |
150150

151-
Also see the definition of [Polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#polygon) and the
151+
Also see the definition of [Polygons](../../aql/functions/geo.md#polygon) and the
152152
[`geojson` Analyzer](../../index-and-search/analyzers.md#geojson) documentation.
153153

154154
## Maximum Array / Object Nesting

site/content/3.11/about-arangodb/features/community-edition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ see [arangodb.com/community-server/](https://www.arangodb.com/community-server/)
141141
Flexible data field pre-processing with custom queries and the ability to
142142
chain built-in and custom Analyzers. Language-agnostic tokenization of text.
143143

144-
- [**GeoJSON Support**](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson):
144+
- [**GeoJSON Support**](../../aql/functions/geo.md#geojson):
145145
Geographic data encoded in the popular GeoJSON format can be stored and used
146146
for geo-spatial queries.
147147

site/content/3.11/aql/functions/arangosearch.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ be used in conjunction with ArangoSearch.
10631063

10641064
`GEO_CONTAINS(geoJsonA, geoJsonB) → bool`
10651065

1066-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
1066+
Checks whether the [GeoJSON object](geo.md#geojson) `geoJsonA`
10671067
fully contains `geoJsonB` (every point in B is also in A).
10681068

10691069
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array
@@ -1079,7 +1079,7 @@ fully contains `geoJsonB` (every point in B is also in A).
10791079

10801080
`GEO_DISTANCE(geoJsonA, geoJsonB) → distance`
10811081

1082-
Return the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson),
1082+
Return the distance between two [GeoJSON objects](geo.md#geojson),
10831083
measured from the `centroid` of each shape.
10841084

10851085
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array
@@ -1095,7 +1095,7 @@ measured from the `centroid` of each shape.
10951095

10961096
`GEO_IN_RANGE(geoJsonA, geoJsonB, low, high, includeLow, includeHigh) → bool`
10971097

1098-
Checks whether the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson)
1098+
Checks whether the distance between two [GeoJSON objects](geo.md#geojson)
10991099
lies within a given interval. The distance is measured from the `centroid` of
11001100
each shape.
11011101

@@ -1119,7 +1119,7 @@ each shape.
11191119

11201120
`GEO_INTERSECTS(geoJsonA, geoJsonB) → bool`
11211121

1122-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
1122+
Checks whether the [GeoJSON object](geo.md#geojson) `geoJsonA`
11231123
intersects with `geoJsonB` (i.e. at least one point of B is in A or vice versa).
11241124

11251125
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array

site/content/3.11/aql/functions/geo.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ FOR doc IN coll // e.g. documents returned by a traversal
421421

422422
`GEO_CONTAINS(geoJsonA, geoJsonB) → bool`
423423

424-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
424+
Checks whether the [GeoJSON object](#geojson) `geoJsonA`
425425
fully contains `geoJsonB` (every point in B is also in A). The object `geoJsonA`
426426
has to be of type _Polygon_ or _MultiPolygon_. For other types containment is
427427
not well-defined because of numerical stability problems.
@@ -467,7 +467,7 @@ second argument. Passing it as the first argument, like
467467

468468
Return the distance between two GeoJSON objects in meters, measured from the
469469
**centroid** of each shape. For a list of supported types see the
470-
[geo index page](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson).
470+
[geo index page](#geojson).
471471

472472
- **geoJsonA** (object): first GeoJSON object, or a coordinate array in
473473
`[longitude, latitude]` order
@@ -520,9 +520,8 @@ functions.
520520

521521
`GEO_AREA(geoJson, ellipsoid) → area`
522522

523-
Return the area for a polygon or multi-polygon on a sphere with the
524-
average Earth radius, or an ellipsoid. For a list of supported types
525-
see the [geo index page](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson).
523+
Return the area for a [Polygon](#polygon) or [MultiPolygon](#multipolygon)
524+
on a sphere with the average Earth radius, or an ellipsoid.
526525

527526
- **geoJson** (object): a GeoJSON object
528527
- **ellipsoid** (string, *optional*): reference ellipsoid to use.
@@ -541,8 +540,7 @@ RETURN GEO_AREA(polygon, "wgs84")
541540

542541
`GEO_EQUALS(geoJsonA, geoJsonB) → bool`
543542

544-
Checks whether two GeoJSON objects are equal or not. For a list of supported
545-
types see the [geo index page](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson).
543+
Checks whether two [GeoJSON objects](#geojson) are equal or not.
546544

547545
- **geoJsonA** (object): first GeoJSON object.
548546
- **geoJsonB** (object): second GeoJSON object.
@@ -572,7 +570,7 @@ RETURN GEO_EQUALS(polygonA, polygonB) // false
572570

573571
`GEO_INTERSECTS(geoJsonA, geoJsonB) → bool`
574572

575-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
573+
Checks whether the [GeoJSON object](#geojson) `geoJsonA`
576574
intersects with `geoJsonB` (i.e. at least one point in B is also in A or vice-versa).
577575

578576
- **geoJsonA** (object): first GeoJSON object
@@ -603,7 +601,7 @@ second argument. Passing it as the first argument, like
603601

604602
`GEO_IN_RANGE(geoJsonA, geoJsonB, low, high, includeLow, includeHigh) → bool`
605603

606-
Checks whether the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson)
604+
Checks whether the distance between two [GeoJSON objects](#geojson)
607605
lies within a given interval. The distance is measured from the **centroid** of
608606
each shape.
609607

@@ -770,7 +768,7 @@ a linear ring. Each linear ring consists of an array with at least four
770768
longitude/latitude pairs. The first linear ring must be the outermost, while
771769
any subsequent linear ring will be interpreted as holes.
772770

773-
For details about the rules, see [GeoJSON polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#polygon).
771+
For details about the rules, see [GeoJSON Polygon](#polygon).
774772

775773
- **points** (array): an array of (arrays of) `[longitude, latitude]` pairs
776774
- returns **geoJson** (object\|null): a valid GeoJSON Polygon
@@ -809,7 +807,8 @@ RETURN GEO_POLYGON([
809807
`GEO_MULTIPOLYGON(polygons) → geoJson`
810808

811809
Construct a GeoJSON MultiPolygon. Needs at least two Polygons inside.
812-
See [GEO_POLYGON()](#geo_polygon) and [GeoJSON MultiPolygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#multipolygon) for the rules of Polygon and MultiPolygon construction.
810+
See [GEO_POLYGON()](#geo_polygon) and [GeoJSON MultiPolygon](#multipolygon)
811+
for the rules of Polygon and MultiPolygon construction.
813812

814813
- **polygons** (array): an array of arrays of arrays of `[longitude, latitude]` pairs
815814
- returns **geoJson** (object\|null): a valid GeoJSON MultiPolygon

site/content/3.11/index-and-search/analyzers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1254,7 +1254,7 @@ attributes:
12541254
- `legacy` (boolean, _optional_):
12551255
This option controls how GeoJSON Polygons are interpreted (introduced in v3.10.5).
12561256
Also see [Legacy Polygons](indexing/working-with-indexes/geo-spatial-indexes.md#legacy-polygons) and
1257-
[GeoJSON interpretation](indexing/working-with-indexes/geo-spatial-indexes.md#geojson-interpretation).
1257+
[GeoJSON interpretation](../aql/functions/geo.md#geojson-interpretation).
12581258

12591259
- If `legacy` is `true`, the smaller of the two regions defined by a
12601260
linear ring is interpreted as the interior of the ring and a ring can at most

site/content/3.11/release-notes/version-3.10/incompatible-changes-in-3-10.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ interpretation of GeoJSON polygons in version 3.9 and older:
109109
This can mean that old polygon GeoJSON data in the database is
110110
suddenly interpreted in a different way. See
111111
[Legacy Polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#legacy-polygons) for details.
112-
Also see the definition of [Polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#polygon)
112+
Also see the definition of [Polygons](../../aql/functions/geo.md#polygon)
113113
and [GeoJSON interpretation](../../aql/functions/geo.md#geojson-interpretation).
114114

115115
## `geojson` Analyzers
@@ -148,7 +148,7 @@ the new Analyzers.
148148
| The smaller of the two regions defined by a linear ring is interpreted as the interior of the ring. | The area to the left of the boundary ring's path is considered to be the interior. |
149149
| A ring can at most enclose half the Earth's surface | A ring can enclose the entire surface of the Earth |
150150

151-
Also see the definition of [Polygons](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#polygon) and the
151+
Also see the definition of [Polygons](../../aql/functions/geo.md#polygon) and the
152152
[`geojson` Analyzer](../../index-and-search/analyzers.md#geojson) documentation.
153153

154154
## Maximum Array / Object Nesting

site/content/3.12/about-arangodb/features/community-edition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ see [arangodb.com/community-server/](https://www.arangodb.com/community-server/)
137137
Flexible data field pre-processing with custom queries and the ability to
138138
chain built-in and custom Analyzers. Language-agnostic tokenization of text.
139139

140-
- [**GeoJSON Support**](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson):
140+
- [**GeoJSON Support**](../../aql/functions/geo.md#geojson):
141141
Geographic data encoded in the popular GeoJSON format can be stored and used
142142
for geo-spatial queries.
143143

site/content/3.12/aql/functions/arangosearch.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ be used in conjunction with ArangoSearch.
10631063

10641064
`GEO_CONTAINS(geoJsonA, geoJsonB) → bool`
10651065

1066-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
1066+
Checks whether the [GeoJSON object](geo.md#geojson) `geoJsonA`
10671067
fully contains `geoJsonB` (every point in B is also in A).
10681068

10691069
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array
@@ -1079,7 +1079,7 @@ fully contains `geoJsonB` (every point in B is also in A).
10791079

10801080
`GEO_DISTANCE(geoJsonA, geoJsonB) → distance`
10811081

1082-
Return the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson),
1082+
Return the distance between two [GeoJSON objects](geo.md#geojson),
10831083
measured from the `centroid` of each shape.
10841084

10851085
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array
@@ -1095,7 +1095,7 @@ measured from the `centroid` of each shape.
10951095

10961096
`GEO_IN_RANGE(geoJsonA, geoJsonB, low, high, includeLow, includeHigh) → bool`
10971097

1098-
Checks whether the distance between two [GeoJSON objects](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson)
1098+
Checks whether the distance between two [GeoJSON objects](geo.md#geojson)
10991099
lies within a given interval. The distance is measured from the `centroid` of
11001100
each shape.
11011101

@@ -1119,7 +1119,7 @@ each shape.
11191119

11201120
`GEO_INTERSECTS(geoJsonA, geoJsonB) → bool`
11211121

1122-
Checks whether the [GeoJSON object](../../index-and-search/indexing/working-with-indexes/geo-spatial-indexes.md#geojson) `geoJsonA`
1122+
Checks whether the [GeoJSON object](geo.md#geojson) `geoJsonA`
11231123
intersects with `geoJsonB` (i.e. at least one point of B is in A or vice versa).
11241124

11251125
- **geoJsonA** (object\|array): first GeoJSON object or coordinate array

0 commit comments

Comments
 (0)