forked from dtemkin-volpe/GMNS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
50 lines (50 loc) · 1.69 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
{
"missingValues": [
"NaN"
],
"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": "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
}