From 1aa1fbf4d665c43286683ad9e960ebc6c5a87ac8 Mon Sep 17 00:00:00 2001 From: Thomas Weiss Date: Thu, 27 Nov 2025 19:56:35 -0800 Subject: [PATCH 1/2] Addressed inconsistency between Divisions data guide and schema reference The Divisions' data guide incorrectly stated that for the `division` type, `geometry` could be a Point, Polygon, MultiPolygon, or LineString --- docs/guides/divisions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/divisions.mdx b/docs/guides/divisions.mdx index 1a262bd2..083b83e7 100644 --- a/docs/guides/divisions.mdx +++ b/docs/guides/divisions.mdx @@ -82,7 +82,7 @@ Subtypes can represent each feature's administrative level, from `country` down | column | type | description | | --- | --- | --- | | id | string | A feature ID. This may be an ID associated with the Global Entity Reference System (GERS) if—and-only-if the feature represents an entity that is part of GERS. | -| geometry | binary | A WKB representation of the entity's geometry - a Point, Polygon, MultiPolygon, or LineString. | +| geometry | binary | A WKB representation of the entity's geometry. MUST be a Point as defined by GeoJSON schema. | | bbox | struct | The bounding box of an entity's geometry, represented with float values, in a `xmin, xmax, ymin, ymax` format. | | country | string | ISO 3166-1 alpha-2 country code of the country or country-like entity, that this division represents or belongs to. If the entity this division represents has a country code, the country property contains it. If it does not, the country property contains the country code of the first division encountered by traversing the parent_division_id chain to the root. | | version | integer | Version number of the feature, incremented in each Overture release where the geometry or attributes of this feature changed. | From 7d25682ad21dc7a5d8ee2728c5121e7c45b172d0 Mon Sep 17 00:00:00 2001 From: Stephen Epps Date: Mon, 1 Dec 2025 09:10:16 -0800 Subject: [PATCH 2/2] update boundary and area geometry definition --- docs/guides/divisions.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/divisions.mdx b/docs/guides/divisions.mdx index 083b83e7..b38ad974 100644 --- a/docs/guides/divisions.mdx +++ b/docs/guides/divisions.mdx @@ -111,7 +111,7 @@ Subtypes can represent each feature's administrative level, from `country` down | column | type | description | | --- | --- | --- | | id | string | A feature ID. This may be an ID associated with the Global Entity Reference System (GERS) if—and-only-if the feature represents an entity that is part of GERS. | -| geometry | binary | A WKB representation of the entity's geometry - a Point, Polygon, MultiPolygon, or LineString. | +| geometry | binary | A WKB representation of the entity's geometry. MUST be a Polygon or MultiPolygon as defined by GeoJSON schema. | | bbox | struct | The bounding box of an entity's geometry, represented with float values, in a `xmin, xmax, ymin, ymax` format. | | country | string | ISO 3166-1 alpha-2 country code of the country or country-like entity, that this division represents or belongs to. If the entity this division represents has a country code, the country property contains it. If it does not, the country property contains the country code of the first division encountered by traversing the parent_division_id chain to the root. | | version | integer | Version number of the feature, incremented in each Overture release where the geometry or attributes of this feature changed. | @@ -133,7 +133,7 @@ Subtypes can represent each feature's administrative level, from `country` down | column | type | description | | --- | --- | --- | | id | string | A feature ID. This may be an ID associated with the Global Entity Reference System (GERS) if—and-only-if the feature represents an entity that is part of GERS. | -| geometry | binary | A WKB representation of the entity's geometry - a Point, Polygon, MultiPolygon, or LineString. | +| geometry | binary | A WKB representation of the entity's geometry. MUST be a LineString or MultiLineString as defined by GeoJSON schema. | | bbox | struct | The bounding box of an entity's geometry, represented with float values, in a `xmin, xmax, ymin, ymax` format. | | country | string | ISO 3166-1 alpha-2 country code of the country or country-like entity, that this division represents or belongs to. If the entity this division represents has a country code, the country property contains it. If it does not, the country property contains the country code of the first division encountered by traversing the parent_division_id chain to the root. | | version | integer | Version number of the feature, incremented in each Overture release where the geometry or attributes of this feature changed. |