Description: In the division_area table of the current release (queried from bigquery-public-data.overture_maps.division_area), the country-level land border records for Russia and Australia have a NULL geometry.
Affected IDs:
Russia (land): ac63467c-e698-452a-bce3-0729d2974a7e (or search name Россия)
Australia (land): 4420c9c8-f137-4466-9225-6d35a72a445c
Query to reproduce:
sql
SELECT id, names.primary, country, subtype, class, geometry IS NULL
FROM `bigquery-public-data.overture_maps.division_area`
WHERE subtype = 'country' AND geometry IS NULL
Note: These are the only two countries globally that return true for geometry IS NULL.
returns
| id |
primary |
country |
subtype |
class |
f0_ |
| 4420c9c8-f137-4466-9225-6d35a72a445c |
Australia |
AU |
country |
land |
true |
| ac63467c-e698-452a-bce3-0729d2974a7e |
Россия |
RU |
country |
land |
true |
Description: In the division_area table of the current release (queried from bigquery-public-data.overture_maps.division_area), the country-level land border records for Russia and Australia have a NULL geometry.
Affected IDs:
Russia (land): ac63467c-e698-452a-bce3-0729d2974a7e (or search name Россия)
Australia (land): 4420c9c8-f137-4466-9225-6d35a72a445c
Query to reproduce:
sql
Note: These are the only two countries globally that return true for geometry IS NULL.
returns