forked from dtemkin-volpe/GMNS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zone.schema.json
34 lines (34 loc) · 1010 Bytes
/
zone.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"primaryKey": "zone_id",
"missingValues": [
"NaN"
],
"fields": [
{
"name": "zone_id",
"type": "any",
"description": "Primary key.",
"constraints": {
"required": true
}
},
{
"name": "name",
"type": "string",
"description": "Optional."
},
{
"name": "boundary",
"type": "any",
"description": "Optional. The polygon geometry of the zone."
},
{
"name": "super_zone",
"type": "string",
"foreign_key": ".zone_id",
"description": "Optional. If there is a hierarchy of zones (e.g., parcels and TAZs), indicates the zone of next higher level."
}
],
"name": "zone.schema.json",
"description": "Locates zones (travel analysis zones, parcels) on a map. Zones are represented as polygons in geographic information systems."
}