-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema-polygon-with-geombounds.json
96 lines (96 loc) · 2.8 KB
/
schema-polygon-with-geombounds.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":"example-polygon-invalid.csv",
"path":"https://raw.githubusercontent.com/CEREMA/schema-arrete-circulation-marchandises/v0.6.3/exemple-valide.csv"
},
{
"title":"Invalid polygon file with geompol geometry column",
"name":"example-polygon-invalid2.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":"POLYGON ((6.561512449318343 42.86044120200139, 5.445690317173171 43.59010057475595, 5.567471813710779 43.8860751165404, 6.032455709581656 44.19521093015088, 6.2391152188576 44.23331451379951, 6.614145636255817 44.27585946282259, 7.184853561048693 44.02066087075947, 7.138592392594731 42.91867862746965, 6.561512449318343 42.86044120200139))"
}
}
],
"missingValues":[
"",
"NA",
"NaN",
"N/A"
],
"primaryKey":"fid"
}