-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhuman_emissions_treatment.json
More file actions
71 lines (71 loc) · 1.86 KB
/
Copy pathhuman_emissions_treatment.json
File metadata and controls
71 lines (71 loc) · 1.86 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
{
"title": "Wastewater treatment schema",
"description": "This schema is used for simulations at a global scale (0.5 degree resolution).",
"fields": [
{
"name": "gid",
"type": "string",
"title": "Fraction for GADM ID for country/subarea",
"description": ""
},
{
"name": "FractionPrimarytreatment",
"type": "number",
"title": "Fraction for Primary treatment",
"description": "",
"float_number": true,
"constraints": {
"minimum": 0,
"maximum": 1
}
},
{
"name": "FractionSecondarytreatment",
"type": "number",
"title": "Fraction for Secondary treatment",
"description": "",
"float_number": true,
"constraints": {
"minimum": 0,
"maximum": 1
}
},
{
"name": "FractionTertiarytreatment",
"type": "number",
"title": "Fraction for Tertiary treatment",
"description": "",
"float_number": true,
"constraints": {
"minimum": 0,
"maximum": 1
}
},
{
"name": "FractionQuaternarytreatment",
"type": "number",
"title": "Fraction for Quaternary treatment",
"description": "",
"float_number": true,
"constraints": {
"minimum": 0,
"maximum": 1
}
}
],
"missingValues": [
"",
"N/A",
"NA",
"n/a"
],
"foreignKeys": [
{
"fields": "gid",
"reference": {
"resource": "population",
"fields": "gid"
}
}
]
}