-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidator-arguments.json
More file actions
103 lines (103 loc) · 2.45 KB
/
Copy pathvalidator-arguments.json
File metadata and controls
103 lines (103 loc) · 2.45 KB
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
97
98
99
100
101
102
103
{
"type": "object",
"description": "Arguments et options de IGNF/validator",
"required": [
"model",
"srs"
],
"properties": {
"model": {
"type": "string",
"format": "uri",
"description": "L'url vers le modèle de données",
"example": "https://www.geoportail-urbanisme.gouv.fr/standard/cnig_PLU_2017.json"
},
"srs": {
"type": "string",
"description": "Le SRID de la géométrie",
"example": "EPSG:2154",
"enum": [
"IGNF:WGS84",
"EPSG:4326",
"CRS:84",
"EPSG:2154",
"IGNF:RGF93LAMB93",
"EPSG:32620",
"IGNF:WGS84UTM20",
"EPSG:4559",
"EPSG:5490",
"EPSG:2972",
"IGNF:RGFG95UTM22",
"EPSG:2975",
"IGNF:RGR92UTM40S",
"EPSG:4471",
"IGNF:RGM04UTM38S",
"EPSG:4467",
"IGNF:RGSPM06U21",
"EPSG:3942",
"EPSG:3943",
"EPSG:3944",
"EPSG:3945",
"EPSG:3946",
"EPSG:3947",
"EPSG:3948",
"EPSG:3949",
"EPSG:3950"
]
},
"max-errors": {
"type": "integer",
"description": "Le nombre maximum d'erreurs reportées pour chaque code d'erreur",
"default": 30,
"example": 30
},
"normalize": {
"type": "boolean",
"description": "Demande de normaliser les données durant la validation",
"default": true,
"example": true
},
"plugins": {
"type": "string",
"description": "Plugins du validator-cli.jar à utiliser",
"example": "PCRS",
"enum": [
"DGPR",
"CNIG",
"PCRS"
]
},
"encoding": {
"type": "string",
"description": "Encodage de données",
"default": "UTF-8",
"example": "UTF-8",
"enum": [
"UTF-8",
"LATIN1"
]
},
"dgpr-tolerance": {
"type": "integer",
"description": "tolerance expresed in meter",
"example": 10
},
"dgpr-simplify": {
"type": "integer",
"description": "geometry simplification before postgis validation expresed in meters",
"example": 2
},
"dgpr-safe-simplify": {
"type": "boolean",
"description": "geometry simplification method",
"example": true
},
"deleteData": {
"type": "boolean",
"description": "Donnees à supprimer immédiatement après la validation.",
"default": false,
"example": true
}
},
"additionalProperties": false
}