-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema-polygon.json
96 lines (96 loc) · 2.37 KB
/
schema-polygon.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"$schema": "https://specs.frictionlessdata.io/schemas/table-schema.json",
"name": "spatial-data",
"title": "Spatial Data",
"description": "Specifications for the Spatial Data",
"keywords": [
"foo",
"test"
],
"countryCode": "FR",
"homepage": "https://github.com/datagistips/spatial-schema",
"path": "https://github.com/datagistips/spatial-schema/schema.json",
"image": "https://github.com/datagistips/spatial-schema/image.png",
"licenses": [
{
"title": "Etalab Licence Ouverte 2.0",
"name": "etalab-2.0",
"path": "https://spdx.org/licenses/etalab-2.0.html"
}
],
"resources": [
{
"title": "Invalid polygon file ",
"name": "invalid-polygon.csv",
"path": "https://raw.githubusercontent.com/CEREMA/schema-arrete-circulation-marchandises/v0.6.3/exemple-valide.csv"
}
],
"sources": [
{
"title": "foo",
"path": "foo"
}
],
"created": "2021-12-30",
"lastModified": "2021-12-30",
"version": "0.6.3",
"contributors": [
{
"title": "Mathieu Rajerison",
"email": "[email protected]",
"organisation": "datagistips",
"role": "author"
}
],
"fields": [
{
"name": "fid",
"title": "Identifier",
"description": "Identifier for the entity",
"example": "1",
"type": "integer",
"constraints": {
"required": true,
"unique": true
}
},
{
"name": "label",
"title": "Label",
"description": "Label.",
"example": "My object",
"type": "string",
"constraints": {
"required": false
}
},
{
"name": "_geom",
"title": "Polygon geometry",
"description": "Polygon geometry",
"type": "wkt",
"geomtype": "polygon",
"crs": "EPSG:4326",
"horizontalAccuracy": 5,
"constraints": {
"required": true,
"unique": true,
"overlaps": false,
"minArea": 100000000,
"bounds": [
4.9283,
43.0756,
7.6412,
45.0923
]
}
}
],
"missingValues": [
"",
"NA",
"NaN",
"N/A"
],
"primaryKey": "fid"
}