Skip to content

Commit fe285f3

Browse files
committed
DOCS-11066: update geojson links
1 parent 76b2f14 commit fe285f3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

source/reference/geojson.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ MongoDB supports the GeoJSON object types listed on this page.
2727
.. versionadded:: 2.4
2828

2929
The following example specifies a GeoJSON `Point
30-
<http://geojson.org/geojson-spec.html#point>`_:
30+
<https://tools.ietf.org/html/rfc7946#section-3.1.2>`_:
3131

3232
.. code-block:: javascript
3333

@@ -41,7 +41,7 @@ The following example specifies a GeoJSON `Point
4141
.. versionadded:: 2.4
4242

4343
The following example specifies a GeoJSON `LineString
44-
<http://geojson.org/geojson-spec.html#linestring>`_:
44+
<https://tools.ietf.org/html/rfc7946#section-3.1.4>`_:
4545

4646
.. code-block:: javascript
4747

@@ -54,7 +54,7 @@ The following example specifies a GeoJSON `LineString
5454

5555
.. versionadded:: 2.4
5656

57-
`Polygons <http://geojson.org/geojson-spec.html#polygon>`_ consist of
57+
`Polygons <https://tools.ietf.org/html/rfc7946#section-3.1.6>`_ consist of
5858
an array of GeoJSON ``LinearRing`` coordinate arrays. These
5959
``LinearRings`` are closed ``LineStrings``. Closed ``LineStrings`` have
6060
at least four coordinate pairs and specify the same position as the
@@ -118,7 +118,7 @@ The following example represents a GeoJSON polygon with an interior ring:
118118
.. versionadded:: 2.6
119119
Requires :ref:`2dsphere-v2`
120120

121-
GeoJSON `MultiPoint <http://geojson.org/geojson-spec.html#multipoint>`_
121+
GeoJSON `MultiPoint <https://tools.ietf.org/html/rfc7946#section-3.1.3>`_
122122
embedded documents encode a list of points.
123123

124124
.. code-block:: javascript
@@ -142,7 +142,7 @@ embedded documents encode a list of points.
142142
Requires :ref:`2dsphere-v2`
143143

144144
The following example specifies a GeoJSON `MultiLineString
145-
<http://geojson.org/geojson-spec.html#multilinestring>`_:
145+
<https://tools.ietf.org/html/rfc7946#section-3.1.5>`_:
146146

147147
.. code-block:: javascript
148148

@@ -165,7 +165,7 @@ The following example specifies a GeoJSON `MultiLineString
165165
Requires :ref:`2dsphere-v2`
166166

167167
The following example specifies a GeoJSON `MultiPolygon
168-
<http://geojson.org/geojson-spec.html#multipolygon>`_:
168+
<https://tools.ietf.org/html/rfc7946#section-3.1.7>`_:
169169

170170
.. code-block:: javascript
171171

@@ -187,7 +187,7 @@ The following example specifies a GeoJSON `MultiPolygon
187187

188188
The following example stores coordinates of GeoJSON type
189189
`GeometryCollection
190-
<http://geojson.org/geojson-spec.html#geometrycollection>`_:
190+
<https://tools.ietf.org/html/rfc7946#section-3.1.8>`_:
191191

192192
.. code-block:: javascript
193193

source/reference/glossary.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ Glossary
336336
:doc:`geospatial queries </geospatial-queries>`. For
337337
supported GeoJSON objects, see :ref:`geo-overview-location-data`.
338338
For the GeoJSON format specification, see
339-
`<http://geojson.org/geojson-spec.html>`_.
339+
`<https://tools.ietf.org/html/rfc7946#section-3.1>`_.
340340

341341
geospatial
342342
Relating to geographical location. See :doc:`/geospatial-queries`.
@@ -442,7 +442,7 @@ Glossary
442442
A LineString is defined by an array of two or more positions. A
443443
closed LineString with four or more positions is called a
444444
LinearRing, as described in the GeoJSON LineString specification:
445-
`<http://geojson.org/geojson-spec.html#linestring>`_. To use a
445+
`<https://tools.ietf.org/html/rfc7946#section-3.1.4>`_. To use a
446446
LineString in MongoDB, see
447447
:ref:`geospatial-indexes-store-geojson`.
448448

@@ -653,14 +653,14 @@ Glossary
653653

654654
Point
655655
A single coordinate pair as described in the GeoJSON Point
656-
specification: `<http://geojson.org/geojson-spec.html#point>`_. To
656+
specification: `<https://tools.ietf.org/html/rfc7946#section-3.1.2>`_. To
657657
use a Point in MongoDB, see
658658
:ref:`geospatial-indexes-store-geojson`.
659659

660660
Polygon
661661
An array of :term:`LinearRing <LineString>` coordinate arrays, as
662662
described in the GeoJSON Polygon specification:
663-
`<http://geojson.org/geojson-spec.html#polygon>`_. For Polygons
663+
`<https://tools.ietf.org/html/rfc7946#section-3.1.6>`_. For Polygons
664664
with multiple rings, the first must be the exterior ring and
665665
any others must be interior rings or holes.
666666

source/release-notes/2.4.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Geospatial Support Enhancements
232232
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
233233

234234
- Add new :doc:`2dsphere index </core/2dsphere>`. The new index
235-
supports `GeoJSON <http://geojson.org/geojson-spec.html>`_ objects
235+
supports `GeoJSON <https://tools.ietf.org/html/rfc7946>`_ objects
236236
``Point``, ``LineString``, and ``Polygon``. See
237237
:doc:`/core/2dsphere` and :doc:`/geospatial-queries`.
238238

0 commit comments

Comments
 (0)