-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfig.schema.json
64 lines (64 loc) · 2.22 KB
/
config.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"missingValues": [
"NaN",
""
],
"fieldsMatch": "subset",
"fields": [
{
"name": "dataset_name",
"type": "any",
"description": "Name used to describe this GMNS network"
},
{
"name": "short_length",
"type": "any",
"description": "Length unit used for lane/ROW widths and linear references for segments, locations, etc. along links"
},
{
"name": "long_length",
"type": "any",
"description": "Length unit used for link lengths"
},
{
"name": "speed",
"type": "any",
"description": "Units for speed. Usually long_length units per hour"
},
{
"name": "crs",
"type": "any",
"description": "Coordinate system used for geometry data in this dataset. Preferably a string that can be accepted by pyproj (e.g., EPSG code or proj string)"
},
{
"name": "geometry_field_format",
"type": "any",
"description": "The format used for geometry fields in the dataset. For example, `WKT` for files stored as plaintext"
},
{
"name": "currency",
"type": "any",
"description": "Currency used in toll fields"
},
{
"name": "version_number",
"type": "number",
"description": "The version of the GMNS spec to which this dataset conforms"
},
{
"name": "id_type",
"type": "string",
"description": "The type of primary key IDs for interopability (node_id, zone_id, etc.). May be enforced by user, database schema, or downstream software. Must be either string or integer.",
"constraints": {
"enum": [
"string",
"integer"
]
}
}
],
"name": "config.schema.json",
"description": "Provides the units of measure, coordinate systems, and other metadata about a GMNS dataset. This table must contain a single row.",
"numRows": 1,
"$schema": "https://datapackage.org/profiles/2.0/tableschema.json"
}