localityArea
Adds land or maritime area polygon to locality.
Property localityId
points at Locality feature that this area belongs to.
Geometry Type | Polygon or MultiPolygon |
---|---|
Theme | admins |
Type | localityArea |
Schema
- Browsable
- YAML
Loading ....
---
"$schema": https://json-schema.org/draft/2020-12/schema
title: Locality Area Schema
description: >-
Adds land or maritime area polygon to locality.
type: object
properties:
id:
"$ref": ../defs.yaml#/$defs/propertyDefinitions/id
geometry:
unevaluatedProperties: false
oneOf:
- "$ref": https://geojson.org/schema/Polygon.json
- "$ref": https://geojson.org/schema/MultiPolygon.json
properties:
unevaluatedProperties: false
required: [localityId]
allOf:
- "$ref": ../defs.yaml#/$defs/propertyContainers/overtureFeaturePropertiesContainer
properties:
localityId:
description: References specific feature of locality type
type: string
Examples
- LocalityArea
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-61.8743292,
48.8068635
],
[
-78.4016703,
26.273714
],
[
-120.7749598,
32.2499745
],
[
-126.928757,
49.0378679
],
[
-61.8743292,
48.8068635
]
]
]
]
},
"properties": {
"theme": "admins",
"type": "localityArea",
"updateTime": "2023-02-22T23:55:01-08:00",
"version": 0,
"localityId": "unitedStates"
}
}