forked from dtemkin-volpe/GMNS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
geometry.schema.json
23 lines (23 loc) · 957 Bytes
/
geometry.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
{
"primaryKey": "geometry_id",
"missingValues": [
"NaN"
],
"fields": [
{
"name": "geometry_id",
"type": "any",
"description": "Primary key - could be SharedStreets Geometry ID",
"constraints": {
"required": true
}
},
{
"name": "geometry",
"type": "any",
"description": "Link geometry, in well-known text (WKT) format. Optionally, other formats supported by geopandas (GeoJSON, PostGIS) may be used if specified in geometry_field_format in gmns.spec.json."
}
],
"name": "geometry.schema.json",
"description": "The geometry is an optional file that contains geometry information (shapepoints) for a line object. It is similar to Geometries in the SharedStreets reference system. The specification also allows for geometry information to be stored directly on the link table."
}