forked from zephyr-data-specs/GMNS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeometry.schema.json
26 lines (26 loc) · 1.04 KB
/
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
24
25
26
{
"primaryKey": "geometry_id",
"missingValues": [
"NaN",
""
],
"fieldsMatch": "subset",
"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.",
"$schema": "https://datapackage.org/profiles/2.0/tableschema.json"
}