RFC Errata
RFC 7946, "The GeoJSON Format", August 2016
Source of RFC: geojson (art)
Errata ID: 8046
Status: Reported
Type: Technical
Publication Format(s) : TEXT
Reported By: John Andrea
Date Reported: 2024-07-24
Section 5 says:
Example of a 2D bbox member on a Feature:
{
"type": "Feature",
"bbox": [-10.0, -10.0, 10.0, 10.0],
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-10.0, -10.0],
[10.0, -10.0],
[10.0, 10.0],
[-10.0, -10.0]
]
]
}
//...
}
It should say:
Example of a 2D bbox member on a Feature:
{
"type": "Feature",
"bbox": [-10.0, -10.0, 10.0, 10.0],
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-10.0, -10.0],
[10.0, -10.0],
[10.0, 10.0],
[-10.0, 10.0],
[-10.0, -10.0]
]
]
}
//...
}
Notes:
The bounding box as a polygon is currently missing a corner.
