administrativeBoundary
Administrative Boundaries are borders surrounding Administrative Localities.
Geometry Type | LineString |
---|---|
Theme | admins |
Type | administrativeBoundary |
An Administrative Boundary is typically an officially defined border between two Administrative Localities. In light of geopolitical issues, some Administrative Boundaries can represent standalone disputed or treaty lines and therefore do not coincide with the border of an Administrative Locality. The Administrative Boundary and two Administrative Localities do no share common geometry.
Schema
- Browsable
- YAML
Loading ....
---
"$schema": https://json-schema.org/draft/2020-12/schema
title: Administrative Boundary Schema
description: >-
An Administrative Boundary is a border surrounding an Administrative
Locality. Boundaries are compatible with GeoJSON LineString features.
type: object
properties:
id:
"$ref": ../defs.yaml#/$defs/propertyDefinitions/id
geometry:
unevaluatedProperties: false
oneOf:
- "$ref": https://geojson.org/schema/LineString.json
properties:
unevaluatedProperties: false
required: [adminLevel]
allOf:
- "$ref": ../defs.yaml#/$defs/propertyContainers/overtureFeaturePropertiesContainer
properties:
adminLevel: { "$ref": "./defs.yaml#/$defs/propertyDefinitions/adminLevel" }
isMaritime: { "$ref": "./defs.yaml#/$defs/propertyDefinitions/isMaritime" }
geopolDisplay:
description: Optional value that indicates if the boundary needs special rendering logic
type: string
enum: [disputed, hidden, visible]
"$comment": >-
disputed = Indicates that an Administrative Boundary is subject of a dispute between two or more countries
hidden = Indicates that the Administrative Boundary must not be display though coinciding with an Administrative Area
visible = Indicates that the Administrative Boundary is to be displayed (i.e. used to override a maritime=yes flag)
Examples
- Administrative Boundary
- Disputed Administrative Boundary
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-61.8743292,
48.8068635
],
[
-78.4016703,
26.273714
],
[
-120.7749598,
32.2499745
],
[
-126.928757,
49.0378679
]
]
},
"properties": {
"theme": "admins",
"type": "administrativeBoundary",
"updateTime": "2023-02-22T23:55:01-08:00",
"version": 0,
"adminLevel": 2,
"isMaritime": true
}
}
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-61.8743292,
48.8068635
],
[
-78.4016703,
26.273714
],
[
-120.7749598,
32.2499745
],
[
-126.928757,
49.0378679
]
]
},
"properties": {
"theme": "admins",
"type": "administrativeBoundary",
"updateTime": "2023-02-22T23:55:01-08:00",
"version": 0,
"adminLevel": 2,
"isMaritime": true,
"geopolDisplay": "disputed"
}
}