Skip to content

Instantly share code, notes, and snippets.

@bin-yan
Last active July 12, 2017 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bin-yan/3072c337862c54fbacf49c503a378421 to your computer and use it in GitHub Desktop.
Save bin-yan/3072c337862c54fbacf49c503a378421 to your computer and use it in GitHub Desktop.
Some Madness in Sankey
<!DOCTYPE html>
<html>
<head>
<title>vertical sankey visualization in D3</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="sankey.css" type="text/css"/>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" charset="utf-8"></script>
<script src="sankey.js"></script>
</head>
<body>
<p id="chart">
<script>
$(function() {
var margin = {top: 5, right: 0, bottom: 50, left: 10},
width = 950 - margin.left - margin.right,
height = 480 - margin.top - margin.bottom;
var formatNumber = d3.format(",.0f"),
format = function (d) {
return formatNumber(d);
},
color = d3.scale.category20();
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var sankey = d3.sankey()
.nodeWidth(25) // was 15 | 35
.nodePadding(0) // was 10 | 7
.size([width, height]);
var path = sankey.link();
var themes = ["employment", "health", "housing", "education", "safety", "income",
"energy", "technology", "transit", "waste", "recycle", "materials", "existing",
"water", "greenery", "ecology", "agriculture", "pollution"];
themes.reverse();
var categories = [1, 2, 3, 4, 5, 6, 7, 8, 9];
var colorCode = {"energy": "#f16021", "transit": "#f2b536", "waste": "#dcd589", "pollution":"#7c7b7b", "employment":"#b476b2",
"health": "#df9ab7", "housing": "#89236c", "education": "#a15785", "technology": "#f5851f", "water": "#7accc7", "greenery": "#94c83d",
"ecology": "#46b974", "agriculture": "#637fbf", "safety": "#c4b6d9", "recycle": "#dcc589", "materials": "#facbcb", "existing": "#a9813a",
"income": "#824c9e", 2: "#A6A6A5", 3: "#808181", 4: "#5A5A5A", 5: "#404040", 6: "#262626"};
var sumThemes = function(d) {
var result = 0;
for(var i=0; i<themes.length; i++)
if(d[themes[i]] == 1)
result = result + 1;
return result;
};
d3.json("sankey_crazy.json", function (data) {
data.forEach(function(d){
d.numTheme = sumThemes(d);
});
var filteredData = data.filter(function(d){
return (d.numTheme > 1);
});
filteredData.sort(function(a,b){
return a.numTheme - b.numTheme;
});
filteredData.reverse();
var sources = new Object(), targets = new Object(), energy = {"nodes": [], "links": []};
// Source are indicators
themes.forEach(function(d,i){
targets[d] = i + filteredData.length;
});
filteredData.forEach(function(d,i){
energy.nodes.push({"name": d.id.toString(), "numTheme": d.numTheme});
});
themes.forEach(function(d){
energy.nodes.push({"name": d, "numTheme": null});
});
filteredData.forEach(function(d,i){
themes.forEach(function(e){
if(d[e])
energy.links.push({"source": i, "target": targets[e], "value": 1});
});
});
sankey
.nodes(energy.nodes)
.links(energy.links)
.layout(32);
var link = svg.append("g").selectAll(".link")
.data(energy.links)
.enter().append("path")
.attr("class", "link")
.attr("d", path)
.style("stroke-width", function(d) { return Math.max(1, d.dy); })
.style("stroke", function(d) { return d.target.color = colorCode[d.target.name]; })
.sort(function(a, b) { return b.dy - a.dy; });
link.append("title")
.text(function(d) { return d.source.name + " → " + d.target.name; });
// title is an SVG standard way of providing tooltips, up to the browser how to render this, so changing the style is tricky
var node = svg.append("g").selectAll(".node")
.data(energy.nodes)
.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) {
return "translate(" + d.x + "," + d.y + ")";
})
.sort(function(a, b) { return parseInt(a.name) - parseInt(b.name); })
.call(d3.behavior.drag()
.origin(function(d) { return d; })
.on("dragstart", function() { this.parentNode.appendChild(this); })
.on("drag", dragmove));
node.append("rect")
.attr("height", sankey.nodeWidth())
.attr("width", function(d) { return d.dy; })
.style("fill", function(d) {
if(d.numTheme)
return d.color = colorCode[d.numTheme];
else
return d.color = colorCode[d.name];
})
.style("stroke", function(d) { return d3.rgb(d.color).darker(1); })
.append("title")
.text(function(d) { return d.name + "\n" + format(d.value); });
node.append("text")
.attr("text-anchor", "middle")
.attr("x", function (d) { return d.dy / 2 })
.attr("y", function(d){
if(d.numTheme)
return -sankey.nodeWidth()/2;
else {
if(d.dy > 38)
return sankey.nodeWidth() + 15;
else
return sankey.nodeWidth() + 35;
}
})
.attr("dy", ".35em")
.text(function(d) {
if(!d.dy > 0) return "";
if(!d.numTheme)
return d.name})
.filter(function(d) { return d.x < width / 2; });
function dragmove(d) {
if(d.numTheme)
// first line only allows y direction move, second x
//d3.select(this).attr("transform", "translate(" + d.x + "," + (d.y = Math.max(0, d3.event.y)) + ")");
d3.select(this).attr("transform", "translate(" + (d.x = Math.max(0, Math.min(width - d.dy, d3.event.x))) + "," + d.y + ")");
if(!d.numTheme)
d3.select(this).attr("transform", "translate(" + (d.x = Math.max(0, Math.min(width - d.dy, d3.event.x))) + "," + d.y + ")");
sankey.relayout();
link.attr("d", path);
}
});
});
</script>
</div>
</body>
</html>
body {
background-color: white;
}
.node rect {
cursor: move;
fill-opacity: .9;
shape-rendering: crispEdges;
}
.node text {
pointer-events: none;
text-shadow: 0 1px 0 #fff;
}
.link {
fill: none;
/*stroke: #000;*/
stroke-opacity: .5;
}
.link:hover {
stroke-opacity: .8;
}
#chart {
background-color: rgb(255, 255, 255);
}
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8, // was 8, needs to be much bigger. these numbers are actually overwritten in the html when we instantiate the viz!
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;
nodeWidth = +_;
return sankey;
};
sankey.nodePadding = function(_) {
if (!arguments.length) return nodePadding;
nodePadding = +_;
return sankey;
};
sankey.nodes = function(_) {
if (!arguments.length) return nodes;
nodes = _;
return sankey;
};
sankey.links = function(_) {
if (!arguments.length) return links;
links = _;
return sankey;
};
sankey.size = function(_) {
if (!arguments.length) return size;
size = _;
return sankey;
};
sankey.layout = function(iterations) {
computeNodeLinks();
computeNodeValues();
// big changes here
// change the order and depths (y pos) won't need iterations
computeNodeDepths();
computeNodeBreadths(iterations);
computeLinkDepths();
return sankey;
};
sankey.relayout = function() {
computeLinkDepths();
return sankey;
};
sankey.link = function() {
var curvature = .5;
// x0 = line start X
// y0 = line start Y
// x1 = line end X
// y1 = line end Y
// y2 = control point 1 (Y pos)
// y3 = control point 2 (Y pos)
function link(d) {
// big changes here obviously, more comments to follow
var x0 = d.source.x + d.sy + d.dy / 2,
x1 = d.target.x + d.ty + d.dy / 2,
y0 = d.source.y + nodeWidth,
y1 = d.target.y,
yi = d3.interpolateNumber(y0, y1),
y2 = yi(curvature),
y3 = yi(1 - curvature);
// ToDo - nice to have - allow flow up or down! Plenty of use cases for starting at the bottom,
// but main one is trickle down (economics, budgets etc), not up
return "M" + x0 + "," + y0 // start (of SVG path)
+ "C" + x0 + "," + y2 // CP1 (curve control point)
+ " " + x1 + "," + y3 // CP2
+ " " + x1 + "," + y1; // end
}
link.curvature = function(_) {
if (!arguments.length) return curvature;
curvature = +_;
return link;
};
return link;
};
// Populate the sourceLinks and targetLinks for each node.
// Also, if the source and target are not objects, assume they are indices.
function computeNodeLinks() {
nodes.forEach(function(node) {
node.sourceLinks = [];
node.targetLinks = [];
});
links.forEach(function(link) {
var source = link.source,
target = link.target;
if (typeof source === "number") source = link.source = nodes[link.source];
if (typeof target === "number") target = link.target = nodes[link.target];
source.sourceLinks.push(link);
target.targetLinks.push(link);
});
}
// Compute the value (size) of each node by summing the associated links.
function computeNodeValues() {
nodes.forEach(function(node) {
node.value = Math.max(
d3.sum(node.sourceLinks, value),
d3.sum(node.targetLinks, value)
);
});
}
// take a grouping of the nodes - the vertical columns
// there shouldnt be 8 - there will be more, the total number of 1st level sources
// then iterate over them and give them an incrementing x
// because the data structure is ALL nodes, just flattened, don't just apply at the top level
// then everything should have an X
// THEN, for the Y
// do the same thing, this time on the grouping of 8! i.e. 8 different Y values, not loads of different ones!
function computeNodeBreadths(iterations) {
var nodesByBreadth = d3.nest()
.key(function(d) { return d.y; })
.sortKeys(d3.ascending)
.entries(nodes)
.map(function(d) { return d.values; }); // values! we are using the values also as a way to seperate nodes (not just stroke width)?
// this bit is actually the node sizes (widths)
//var ky = (size[1] - (nodes.length - 1) * nodePadding) / d3.sum(nodes, value)
// this should be only source nodes surely (level 1)
var ky = (size[0] - (nodesByBreadth[0].length - 1) * nodePadding) / d3.sum(nodesByBreadth[0], value);
// I'd like them to be much bigger, this calc doesn't seem to fill the space!?
nodesByBreadth.forEach(function(nodes) {
nodes.forEach(function(node, i) {
node.x = i;
node.dy = node.value * ky;
});
});
links.forEach(function(link) {
link.dy = link.value * ky;
});
resolveCollisions();
// Bin changed:
/*
for (var alpha = 1; iterations > 0; --iterations) {
relaxLeftToRight(alpha);
resolveCollisions();
relaxRightToLeft(alpha *= .99);
resolveCollisions();
}
*/
// these relax methods should probably be operating on one level of the nodes, not all!?
function relaxLeftToRight(alpha) {
nodesByBreadth.forEach(function(nodes, breadth) {
nodes.forEach(function(node) {
if (node.targetLinks.length) {
var y = d3.sum(node.targetLinks, weightedSource) / d3.sum(node.targetLinks, value);
node.x += (y - center(node)) * alpha;
}
});
});
function weightedSource(link) {
return center(link.source) * link.value;
}
}
function relaxRightToLeft(alpha) {
nodesByBreadth.slice().reverse().forEach(function(nodes) {
nodes.forEach(function(node) {
if (node.sourceLinks.length) {
var y = d3.sum(node.sourceLinks, weightedTarget) / d3.sum(node.sourceLinks, value);
node.x += (y - center(node)) * alpha;
}
});
});
function weightedTarget(link) {
return center(link.target) * link.value;
}
}
function resolveCollisions() {
nodesByBreadth.forEach(function(nodes) {
var node,
dy,
x0 = 0,
n = nodes.length,
i;
// Push any overlapping nodes right.
nodes.sort(ascendingDepth);
for (i = 0; i < n; ++i) {
node = nodes[i];
dy = x0 - node.x;
if (dy > 0) node.x += dy;
x0 = node.x + node.dy + nodePadding;
}
// If the rightmost node goes outside the bounds, push it left.
dy = x0 - nodePadding - size[0]; // was size[1]
if (dy > 0) {
x0 = node.x -= dy;
// Push any overlapping nodes left.
for (i = n - 2; i >= 0; --i) {
node = nodes[i];
dy = node.x + node.dy + nodePadding - x0; // was y0
if (dy > 0) node.x -= dy;
x0 = node.x;
}
}
});
}
function ascendingDepth(a, b) {
//return a.y - b.y; // flows go up
return b.x - a.x; // flows go down
//return a.x - b.x;
}
}
// this moves all end points (sinks!) to the most extreme bottom
function moveSinksDown(y) {
nodes.forEach(function(node) {
if (!node.sourceLinks.length) {
node.y = y - 1;
}
});
}
// shift their locations out to occupy the screen
function scaleNodeBreadths(kx) {
nodes.forEach(function(node) {
node.y *= kx;
});
}
function computeNodeDepths() {
var remainingNodes = nodes,
nextNodes,
y = 0;
while (remainingNodes.length) {
nextNodes = [];
remainingNodes.forEach(function(node) {
node.y = y;
//node.dx = nodeWidth;
node.sourceLinks.forEach(function(link) {
if (nextNodes.indexOf(link.target) < 0) {
nextNodes.push(link.target);
}
});
});
remainingNodes = nextNodes;
++y;
}
// move end points to the very bottom
moveSinksDown(y);
scaleNodeBreadths((size[1] - nodeWidth) / (y - 1));
}
// .ty is the offset in terms of node position of the link (target)
function computeLinkDepths() {
nodes.forEach(function(node) {
node.sourceLinks.sort(ascendingTargetDepth);
node.targetLinks.sort(ascendingSourceDepth);
});
nodes.forEach(function(node) {
var sy = 0, ty = 0;
//ty = node.dy;
node.sourceLinks.forEach(function(link) {
link.sy = sy;
sy += link.dy;
});
node.targetLinks.forEach(function(link) {
// this is simply saying, for each target, keep adding the width of the link
// so what if it was the other way round. start with full width then subtract?
link.ty = ty;
ty += link.dy;
//ty -= link.dy;
});
});
function ascendingSourceDepth(a, b) {
//return a.source.y - b.source.y;
return a.source.x - b.source.x;
}
function ascendingTargetDepth(a, b) {
//return a.target.y - b.target.y;
return a.target.x - b.target.x;
}
}
function center(node) {
return node.y + node.dy / 2;
}
function value(link) {
return link.value;
}
return sankey;
};
[
{
"id":1,
"cid":1,
"category":1,
"name":"LEED_smart location and linkage_location_01_infill_well-connected to adjacent development street network_well-served by transit neighborhood amenities",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":2,
"cid":2,
"category":1,
"name":"LEED_smart location and linkage_location_02_infill developed site_infill not developed site_adjacent to existing developed site_not adjacent or infill developed site_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":3,
"cid":3,
"category":1,
"name":"LEED_smart location and linkage_location_03_well connected street network_intersection_200 to 250 per square mile_250 to 300 per square mile_300 to 350 per square mile_350 to 400 per square mile_More than 400 per sq mile_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":4,
"cid":4,
"category":1,
"name":"LEED_smart location and linkage_location_04_economic distressed area_ affordable housing_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":5,
"cid":5,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_01_build on habitat species endangered_threatened_conservation_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":6,
"cid":6,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_02_build on wetland water bodies_leave buffer 50 to 100 ft_undevelopement_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":7,
"cid":7,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_03_build on prime agricultural land_unless is infill_transit served_ soil loss",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":8,
"cid":8,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_04_no build on floodplains_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":9,
"cid":9,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_05_conserve existing habitat_native plants_wetlands_ water bodies_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":10,
"cid":10,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_06_restores degraded habitat_plants_wetlands_ water bodies and conserves_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":11,
"cid":11,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_07_long term_10 years_plan for wetlands_water bodies_habitat_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":12,
"cid":12,
"category":1,
"name":"LEED_smart location and linkage_ecosystem and open spaces_08_limits development on steep slopes_15%_restore previous slopes_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":13,
"cid":13,
"category":1,
"name":"LEED_smart location and linkage_contaminated sites_remediates a contaminated site_economic distressed area_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":14,
"cid":14,
"category":1,
"name":"LEED_smart location and linkage_transit oriented locations_walking distance__mile_rapid transit_rail_ferry_bus_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":15,
"cid":15,
"category":1,
"name":"LEED_smart location and linkage_cycling facilities_ bicycle network_mile_bicycle storage_parking_connects 10 diverse land use_residential building_occupants_visitors_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":16,
"cid":16,
"category":1,
"name":"LEED_smart location and linkage_jobs and housing proximity_job walk distance_mile_affordable housing_dwelling units_existing public transport_infill site_rail_ferry_tram_bus_public transit_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":17,
"cid":17,
"category":1,
"name":"LEED_neighborhood pattern and design_walkable streets_01_90% frontage building entrance_public space_parking lot_height to street ratio_sidewalks_garage doors_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":18,
"cid":18,
"category":1,
"name":"LEED_neighborhood pattern and design_walkable streets_02_distance sidewalk_entries_windows_blank walls_street parking_ground floor_height to street ratio_design speed_driveway crossing_dwelling units_low speed_driveway_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":19,
"cid":19,
"category":1,
"name":"LEED_neighborhood pattern and design_walkable streets_03_60% of street non invasive trees_noon time shade_trunk center_sidewalk_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":20,
"cid":20,
"category":1,
"name":"LEED_neighborhood pattern and design_compact development_01_minimum density_dwelling unit_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":21,
"cid":21,
"category":1,
"name":"LEED_neighborhood pattern and design_compact development_02_exceeds increasing density thresholds_dwelling unit_non residential_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":22,
"cid":22,
"category":1,
"name":"LEED_neighborhood pattern and design_neighborhood connections_01_street_pathway_ every 800 ft_140 or 90 intersection_street network_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":23,
"cid":23,
"category":1,
"name":"LEED_neighborhood pattern and design_neighborhood connections_02_no cul de sac_includes street_pathway_every 400 ft_intersection 300 to 400 sq mile_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":24,
"cid":24,
"category":1,
"name":"LEED_neighborhood pattern and design_mixed uses_ walking access_land use_neighborhood center_commercial civic facilities_restaurant_schools_pharmacy_market_parks_library_shop_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":25,
"cid":25,
"category":1,
"name":"LEED_neighborhood pattern and design_affordable and diverse housing_multiple housing type_size_rental_sale_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":26,
"cid":26,
"category":1,
"name":"LEED_neighborhood pattern and design_parking and transportation demand_01_surface parking area_off street parking_building_occupant_bicycle storage_visitors_carpool_shared vehicle_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":27,
"cid":27,
"category":1,
"name":"LEED_neighborhood pattern and design_parking and transportation demand_02_shelters_benches_lighting_information displays_transit stop_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":28,
"cid":28,
"category":1,
"name":"LEED_neighborhood pattern and design_parking and transportation demand_03_transit passes_price_cost_transit services facilities_vehicle sharing_parking_dwelling unit_transportation demand management_trips_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":29,
"cid":29,
"category":1,
"name":"LEED_neighborhood pattern and design_parks and recreation_01_access to public space_walk distance_square_parks_plazas_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":30,
"cid":30,
"category":1,
"name":"LEED_neighborhood pattern and design_parks and recreation_02_access to indoor outdoor reacreational facilities_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":31,
"cid":31,
"category":1,
"name":"LEED_neighborhood pattern and design_universal design_universal accessibility 20% or 100% dwelling unit_people_public rights_diverse_ability_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":32,
"cid":32,
"category":1,
"name":"LEED_neighborhood pattern and design_community participation_input_feedback to guide the project_design charrette_smart growth_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":33,
"cid":33,
"category":1,
"name":"LEED_neighborhood pattern and design_local food_gardening space_shares_farmer market_walk distance_growing of produce_balconies_rooftop_patio",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":34,
"cid":34,
"category":1,
"name":"LEED_neighborhood pattern and design_school access and design_walk distance to existing_new school campuses_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":35,
"cid":35,
"category":1,
"name":"LEED_green infrastructure and buildings_construction techniques_01_erosion and sedimentation control plan for construction activities_soil_pollution_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":36,
"cid":36,
"category":1,
"name":"LEED_green infrastructure and buildings_construction techniques_02_preserve heritage trees_undeveloped land 10% to 20%_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":37,
"cid":37,
"category":1,
"name":"LEED_green infrastructure and buildings_energy efficiency and conservation_01_90% building sq f meets energy efficiency requirements_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":38,
"cid":38,
"category":1,
"name":"LEED_green infrastructure and buildings_energy efficiency and conservation_02_90% building sq f increases threshold for energy efficiency_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":39,
"cid":39,
"category":1,
"name":"LEED_green infrastructure and buildings_energy efficiency and conservation_03_orient 75% of buildings_dense blocks_ to maximize passive active solar_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":40,
"cid":40,
"category":1,
"name":"LEED_green infrastructure and buildings_energy production and distribution_01_renewable energy on site_electrical thermal_energy cost_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":41,
"cid":41,
"category":1,
"name":"LEED_green infrastructure and buildings_energy production and distribution_02_80% buildings heating cooling neighborhood shared system_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":42,
"cid":42,
"category":1,
"name":"LEED_green infrastructure and buildings_energy production and distribution_03_energy efficiency infrastructure_traffic light_street light_water wastewater pumps_QT",
"energy":1,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":43,
"cid":43,
"category":1,
"name":"LEED_green infrastructure and buildings_water efficiency and conservation_01_minimum requirements water efficiency in buildings_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":44,
"cid":44,
"category":1,
"name":"LEED_green infrastructure and buildings_water efficiency and conservation_02_exceeds increased thresholds for water efficiency_buildings_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":45,
"cid":45,
"category":1,
"name":"LEED_green infrastructure and buildings_water efficiency and conservation_03_reduce water consumption_outdoor landscape_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":46,
"cid":46,
"category":1,
"name":"LEED_green infrastructure and buildings_stormwater and wastewater_01_retain and treat stormwater_rainstorm_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":47,
"cid":47,
"category":1,
"name":"LEED_green infrastructure and buildings_stormwater and wastewater_02_treats and reuses wastewater_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":48,
"cid":48,
"category":1,
"name":"LEED_green infrastructure and buildings_green building process_01_uses rating system to certify at least one project building_QT QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":49,
"cid":49,
"category":1,
"name":"LEED_green infrastructure and buildings_green building process_02_uses rating system to certify 10 to 50% of project buildings_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":50,
"cid":50,
"category":1,
"name":"LEED_green infrastructure and buildings_historic and existing building reuse_01_reuse and restore 20% of existing building stock_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":51,
"cid":51,
"category":1,
"name":"LEED_green infrastructure and buildings_historic and existing building reuse_02_includes historic building_rehabilitates_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":52,
"cid":52,
"category":1,
"name":"LEED_green infrastructure and buildings_heat islands_solar reflective roofs_vegetated roof_shade_paving_roads_sidewalk_hardscape_parking areas_QT",
"energy":1,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":53,
"cid":53,
"category":1,
"name":"LEED_green infrastructure and buildings_reuse and recycling_01_recycled content in 50% of total mass of public infrastructure materials_paving_road_street_water_sewer_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":54,
"cid":54,
"category":1,
"name":"LEED_green infrastructure and buildings_reuse and recycling_02_recycling services_resident_waste disposal_composting_receptacles_mixed use_construction waste_QT",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":55,
"cid":55,
"category":1,
"name":"LEED_green infrastructure and buildings_light pollution_motion sensors_daylight_reducing brightness_exterior lighting_rural areas_residential_mixed use neighborhood_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":56,
"cid":56,
"category":1,
"name":"LEED_innovation and design process_innovation and exemplary performance_01_environment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":57,
"cid":57,
"category":1,
"name":"LEED_innovation and design process_innovation and exemplary performance_02_smart growth_nature_resource_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":58,
"cid":58,
"category":1,
"name":"LEED_regional priority_environment_social equity_public health",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":59,
"cid":1,
"category":2,
"name":"BREEAM_C_S1_governance_01_consultation plan (Crit 1) CN1_member local community stakeholders_occupants_type_size project_shared facilities_local authority_service_maintenance_conmplex environment_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":60,
"cid":2,
"category":2,
"name":"BREEAM_C_S1_governance_01_consultation plan (Crit 3) CN2_minimum consultation content_stakeholders_impact development_design quality_management_maintenance_shared facilities_infrastructure_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":61,
"cid":3,
"category":2,
"name":"BREEAM_C_S1_governance_01_consultation plan (Crit 5) CN3_faciliated community consultation method_engagement_design_proposal_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":62,
"cid":4,
"category":2,
"name":"BREEAM_C_S1_governance_01_consultation plan (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":63,
"cid":5,
"category":2,
"name":"BREEAM_C_S2_governance_02_consultation and engagement (Crit 2) CN1_good practice consultation methods_local community_stakeholders_informed_consulted_involved in the preparation of proposal_guidelines_options_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":64,
"cid":6,
"category":2,
"name":"BREEAM_C_S2_governance_02_consultation and engagement (Crit 3) CN2_feedback_summary_outcome_implementations of suggestions_feasible options_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":65,
"cid":7,
"category":2,
"name":"BREEAM_C_S2_governance_02_consultation and engagement (Crit 1)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":66,
"cid":8,
"category":2,
"name":"BREEAM_C_S2_governance_02_consultation and engagement (Crit 5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":67,
"cid":9,
"category":2,
"name":"BREEAM_C_S2_governance_02_consultation and engagement (Crit 7)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":68,
"cid":10,
"category":2,
"name":"BREEAM_C_S2_governance_03_design review (Crit 1) CN1_community engagement process_ activities_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":69,
"cid":11,
"category":2,
"name":"BREEAM_C_S2_governance_03_design review (Crit 1 & 3) CN3_independent interdisciplinary panel_review panel independent of the developer and local authority_design development_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":70,
"cid":12,
"category":2,
"name":"BREEAM_C_S2_governance_03_design review (Crit 1, 3 & 5) CN4_design review_process_assess the overall design quality_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":71,
"cid":13,
"category":2,
"name":"BREEAM_C_S2_governance_03_design review (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":72,
"cid":14,
"category":2,
"name":"BREEAM_C_S2_governance_03_design review (Crit 3)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":73,
"cid":15,
"category":2,
"name":"BREEAM_C_S2_governance_03_design review (Crit 7)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":74,
"cid":16,
"category":2,
"name":"BREEAM_C_S3_governance_04_community management of facilities (Crit 1) CN1_community facility_amenity_menagement_buildings_meeting place_public access_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":75,
"cid":17,
"category":2,
"name":"BREEAM_C_S3_governance_04_community management of facilities (Crit 4) CN3_significant support_financial_technical_operational_measures_community",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":76,
"cid":18,
"category":2,
"name":"BREEAM_C_S3_governance_04_community management of facilities (Crit 6) CN4_community development trust_social purpose_ownership_buildings_land_economic_envioronment_urban_rural areas_neighborhood_public sector_private business_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":77,
"cid":19,
"category":2,
"name":"BREEAM_C_S3_governance_04_community management of facilities (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":78,
"cid":20,
"category":2,
"name":"BREEAM_C_S1_social and economic_01_economic impact (Crit 1) CN1_economic study_local authority_business_employment_unemployment rates_economic activities_location of business_demographic needs_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":79,
"cid":21,
"category":2,
"name":"BREEAM_C_S1_social and economic_01_economic impact (Crit 4) CN2_infrastructure and facilities_transport_communications_power_community facilities_technical industrial_QT",
"energy":1,
"transit":1,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":80,
"cid":22,
"category":2,
"name":"BREEAM_C_S1_social and economic_01_economic impact (Crit 3 & 7) CN3_employment opportunities provided development_temporary permanent jobs_apprenticeships_labour skills_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":81,
"cid":23,
"category":2,
"name":"BREEAM_C_S1_social and economic_01_economic impact (Crit 8) CN4_training provider_colleges_universities_higher educational institutions_apprenticeship scheme_ QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":82,
"cid":24,
"category":2,
"name":"BREEAM_C_S1_social and economic_01_economic impact (Crit 5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":83,
"cid":25,
"category":2,
"name":"BREEAM_C_S1_social and economic_01_economic impact (Crit 9)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":84,
"cid":26,
"category":2,
"name":"BREEAM_C_S1_social and economic_02_demographic needs and priorities (Crit 1) CN1_demographic profiles_local authority and census data_age gender religion_household size_values_population_headship_deprivation_income_health_disability_ageing population_children_employment_education_crime_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":85,
"cid":27,
"category":2,
"name":"BREEAM_C_S1_social and economic_02_demographic needs and priorities (Crit 2) CN2_local needs and requirements_assessment of the services facilities amenties housing_community_affordalble housing_education_green space_leisure facilities_health social care_farmers market_fruit vegetable_children_communication services_bank_public house_religious places_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":86,
"cid":28,
"category":2,
"name":"BREEAM_C_S1_social and economic_02_demographic needs and priorities (Crit 4) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":87,
"cid":29,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment (Crit 1) CN1_flood risk assessment_size density development_area m2_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":88,
"cid":30,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment (Crit 1) CN2_sources of flooding_streams rivers coastal estuarine groundwater sewers highway drains surface water infrastructure failure_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":89,
"cid":31,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment (Crit 1) CN3_appropriate statutory body_environment agency deparment rivers internal drainage_local authorities_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":90,
"cid":32,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment_CN4_alternative standards and recommendations from statutory body_local authority_criteria_credits_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":91,
"cid":33,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment_CN5_third party defences_motorway railway embankments walls_lifetime_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":92,
"cid":34,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment_CN6_downgrade flood risk due to flood defences_downgraded circumstances category guidelines compliance_risk of flooding_policy guidelines_agency_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":93,
"cid":35,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment_CN7_assessments in the functional flood plain_located classified zone_water_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":94,
"cid":36,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment_CN8_ allowance for climate change_accordance with best practice and planning policy_flood risk_context location_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":95,
"cid":37,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":96,
"cid":38,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment (Crit 3)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":97,
"cid":39,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment (Crit 5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":98,
"cid":40,
"category":2,
"name":"BREEAM_C_S1_social and economic_03_flood risk assessment (Crit 7)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":99,
"cid":41,
"category":2,
"name":"BREEAM_C_S1_social and economic_04_noise pollution (Crit 7 & 10) CN1_rating noise level_characteristic features of the noise_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":100,
"cid":42,
"category":2,
"name":"BREEAM_C_S1_social and economic_04_noise pollution (Crit 1)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":101,
"cid":43,
"category":2,
"name":"BREEAM_C_S1_social and economic_04_noise pollution (Crit 3)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":102,
"cid":44,
"category":2,
"name":"BREEAM_C_S1_social and economic_04_noise pollution (Crit 4)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":103,
"cid":45,
"category":2,
"name":"BREEAM_C_S1_social and economic_04_noise pollution (Crit 6)",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":104,
"cid":46,
"category":2,
"name":"BREEAM_C_S1_social and economic_04_noise pollution (Crit 9)",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":105,
"cid":47,
"category":2,
"name":"BREEAM_C_S2_social and economic_05_housing provision (Crit 2) CN1_affordable housing_diverse type of housing_local requirements_people needs_demographic needs",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":106,
"cid":48,
"category":2,
"name":"BREEAM_C_S2_social and economic_05_housing provision (Crit 3) CN2_minimum space standards for housing_floor area cooking_bedroom_bathroom_storage_play space_recreational space_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":107,
"cid":49,
"category":2,
"name":"BREEAM_C_S2_social and economic_05_housing provision (Crit 1) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":108,
"cid":50,
"category":2,
"name":"BREEAM_C_S2_social and economic_05_housing provision (Crit 5) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":109,
"cid":51,
"category":2,
"name":"BREEAM_C_S2_social and economic_05_housing provision (Crit 7) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":110,
"cid":52,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 1) CN1_local needs and requirements_demographic needs_green spaces_public park_village__infrastructure_amenities_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":111,
"cid":53,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 5, 8 & 11) CN2_walking distance_access_public transport_urban rural development_local facilities_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":112,
"cid":54,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 5, 8 & 11) CN5_safe convenient pedestrian route rural development_grass_footpath_road housing speed_junctions_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":113,
"cid":55,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 5, 8 & 11) CN6_pedestrian route extend beyond site boundary_accessible_convenient_safe_connection_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":114,
"cid":56,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 2) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":115,
"cid":57,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 4) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":116,
"cid":58,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 7) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":117,
"cid":59,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 10) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":118,
"cid":60,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 13) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":119,
"cid":61,
"category":2,
"name":"BREEAM_C_S2_social and economic_06_delivery of services facilities and amenities (Crit 14) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":120,
"cid":62,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 1) CN1_consultation_engagement_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":121,
"cid":63,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 2) CN2_multiple uses different residents_demographic needs and priorities",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":122,
"cid":64,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 5) CN3_shared space_consultation_engagement",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":123,
"cid":65,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 9) CN4_microclimate_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":124,
"cid":66,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 10) CN5_local identity_local community_engagement_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":125,
"cid":67,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 3) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":126,
"cid":68,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 6) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":127,
"cid":69,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 7) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":128,
"cid":70,
"category":2,
"name":"BREEAM_C_S2_social and economic_07_public realm (Crit 11) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":129,
"cid":71,
"category":2,
"name":"BREEAM_C_S2_social and economic_08_microclimate (Crit 1) CN1_microclimatic factors_temperature_thermal comfort_solar_skyview_shadow__air_wind speed_dust_pollution_acoustic environment_specific needs_site_integrated approach_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":130,
"cid":72,
"category":2,
"name":"BREEAM_C_S2_social and economic_08_microclimate (Crit 4) CN2_seasonal tailoring_adaptation_shade_cooling_air movement_wind_rain_tree_public square_natural light_plaza_comfort_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":131,
"cid":73,
"category":2,
"name":"BREEAM_C_S2_social and economic_08_microclimate_CN3_demonstrating compliance_design_project team_outcome_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":132,
"cid":74,
"category":2,
"name":"BREEAM_C_S2_social and economic_08_microclimate (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":133,
"cid":75,
"category":2,
"name":"BREEAM_C_S2_social and economic_08_microclimate (Crit 6)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":134,
"cid":76,
"category":2,
"name":"BREEAM_C_S2_social and economic_08_microclimate (Crit 7)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":135,
"cid":77,
"category":2,
"name":"BREEAM_C_S2_social and economic_08_microclimate (Crit 8)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":136,
"cid":78,
"category":2,
"name":"BREEAM_C_S2_social and economic_09_utilities (Crit 1) CN1_scope of services_heating_cooling_power_water_sewerage_communication_public space_area_maintenance_repair",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":137,
"cid":79,
"category":2,
"name":"BREEAM_C_S2_social and economic_09_utilities (Crit 1) CN2_single point of access_maintenance_junctions_people movement_site_service entry_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":138,
"cid":80,
"category":2,
"name":"BREEAM_C_S2_social and economic_09_utilities (Crit 4) CN3_circulation route_public access_maintenance_people movement_QL",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":139,
"cid":81,
"category":2,
"name":"BREEAM_C_S2_social and economic_09_utilities (Crit 2)",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":140,
"cid":82,
"category":2,
"name":"BREEAM_C_S2_social and economic_09_utilities (Crit 5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":141,
"cid":83,
"category":2,
"name":"BREEAM_C_S2_social and economic_09_utilities (Crit 6)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":142,
"cid":84,
"category":2,
"name":"BREEAM_C_S2_social and economic_10_adapting to climate change (Crit 1) CN1_impacts climate change_temperature_heat island_flood risk_weather_water resource_ground conditions_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":143,
"cid":85,
"category":2,
"name":"BREEAM_C_S2_social and economic_10_adapting to climate change (Crit 2) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":144,
"cid":86,
"category":2,
"name":"BREEAM_C_S2_social and economic_10_adapting to climate change (Crit 4) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":145,
"cid":87,
"category":2,
"name":"BREEAM_C_S2_social and economic_10_adapting to climate change (Crit 6) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":146,
"cid":88,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 1) CN1_consultation_governance_engagement_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":147,
"cid":89,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 2) CN2_green infrastructure plan_ecology_value",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":148,
"cid":90,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 4) CN3_walking distance_access_public transport_urban_rural development_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":149,
"cid":91,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 4) CN4_safe convenient pedestrian route_services_facilities_amenities_site boundary",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":150,
"cid":92,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 8) CN5_access_accessible natural green space standard_housing_home_population_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":151,
"cid":93,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 10) CN6_reasonably justified_green infrastructure_size_site_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":152,
"cid":94,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 10) CN7_access_constrained site_green space_developer_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":153,
"cid":95,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 5) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":154,
"cid":96,
"category":2,
"name":"BREEAM_C_S2_social and economic_11_green Infrastructure (Crit 7) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":155,
"cid":97,
"category":2,
"name":"BREEAM_C_S2_social and economic_12_local parking (Crit 4) CN1_integrating parking into the development_small scale_trees and hedges_street_car parking_vehicles_entrance underground_ramps_pedestrians_materials",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":156,
"cid":98,
"category":2,
"name":"BREEAM_C_S2_social and economic_12_local parking (Crit 6) CN2_secure parking garage_residential parking_credit_controlled access_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":157,
"cid":99,
"category":2,
"name":"BREEAM_C_S2_social and economic_12_local parking (Crit 1) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":158,
"cid":100,
"category":2,
"name":"BREEAM_C_S2_social and economic_12_local parking (Crit 2) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":159,
"cid":101,
"category":2,
"name":"BREEAM_C_S2_social and economic_12_local parking (Crit 5) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":160,
"cid":102,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 2) CN1_appropriately qualified professional_water pollution",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":161,
"cid":103,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 2) CN2_report_run off_permeable_impermeable surfaces_infiltration test_lifetime_climate change_design_mitigation measures_summary_results",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":162,
"cid":104,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 3) CN3_pre-development_site condition_brownfield_greenfield_run off",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":163,
"cid":105,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 3) CN4_calculating the volume of run off_development_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":164,
"cid":106,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 3) CN5_calculating peak rate run off greenfield sites_catchments_flood_ecology_hydrology_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":165,
"cid":107,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 3) CN6_calculating peak rate run off brownfield sites_drainage_discharge point_soil_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":166,
"cid":108,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 5) CN7_allowance climate change_flood risk",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":167,
"cid":109,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 5) CN8_SuDS techniques_run off_pollution_wet pond_infiltration detention basin_swales_reed beds_permeable paving_rain water_drain_green rooftops_roof_underground storage_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":168,
"cid":110,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 7) CN9_design system failure_urban drainage",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":169,
"cid":111,
"category":2,
"name":"BREEAM_C_S2_social and economic_13_flood risk management (Crit 1)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":170,
"cid":112,
"category":2,
"name":"BREEAM_C_S3_social and economic_14_local vernacular (Crit 1) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":171,
"cid":113,
"category":2,
"name":"BREEAM_C_S3_social and economic_14_local vernacular (Crit 2) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":1,
"income":null
},
{
"id":172,
"cid":114,
"category":2,
"name":"BREEAM_C_S3_social and economic_14_local vernacular (Crit 3) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":173,
"cid":115,
"category":2,
"name":"BREEAM_C_S3_social and economic_14_local vernacular (Crit 5) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":174,
"cid":116,
"category":2,
"name":"BREEAM_C_S3_social and economic_14_local vernacular (Crit 7) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":1,
"income":null
},
{
"id":175,
"cid":117,
"category":2,
"name":"BREEAM_C_S3_social and economic_15_inclusive design (Crit 1) CN1_inclusive design and management strategy_inclusion and access_environment_transport interchange_housing and buildings_public realm_open space_sport recreation space_highway_footpath cycle way",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":176,
"cid":118,
"category":2,
"name":"BREEAM_C_S3_social and economic_15_inclusive design (Crit 5) CN2_the role of an inclusive design champion_facilities_estates_operational menagement_customer services_dveloper_public sector_social enterprise_community relations_policy_environment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":177,
"cid":119,
"category":2,
"name":"BREEAM_C_S3_social and economic_15_inclusive design (Crit 7) CN3_the role of a consultant_project management_stakeholder_implementation and construction_inclusion",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":178,
"cid":120,
"category":2,
"name":"BREEAM_C_S3_social and economic_15_inclusive design (Crit 9) CN4_operational management strategy_environment_public realm_buildings_printed and electronic information_emergency evacuation",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":179,
"cid":121,
"category":2,
"name":"BREEAM_C_S3_social and economic_15_inclusive design (Crit 2) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":180,
"cid":122,
"category":2,
"name":"BREEAM_C_S3_social and economic_15_inclusive design (Crit 3) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":181,
"cid":123,
"category":2,
"name":"BREEAM_C_S3_social and economic_15_inclusive design (Crit 8) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":182,
"cid":124,
"category":2,
"name":"BREEAM_C_S3_social and economic_16_light pollution (Crit 3) CN1_street lighting_light_urban design",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":183,
"cid":125,
"category":2,
"name":"BREEAM_C_S3_social and economic_16_light pollution (Crit 5) CN2_additional lighting_minimise disruption_local neighborhood_residents_sport facilities_commercial areas_car park_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":184,
"cid":126,
"category":2,
"name":"BREEAM_C_S3_social and economic_16_light pollution (Crit 1) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":185,
"cid":127,
"category":2,
"name":"BREEAM_C_S3_social and economic_16_light pollution (Crit 6) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":186,
"cid":128,
"category":2,
"name":"BREEAM_C_S3_social and economic_17_labour and skills (Crit 4) CN1_support and promote a legacy skills base_credit_training_apprenticeship",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":187,
"cid":129,
"category":2,
"name":"BREEAM_C_S3_social and economic_17_labour and skills (Crit 5) CN2_build a local skills base_credit_developer_local training",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":188,
"cid":130,
"category":2,
"name":"BREEAM_C_S3_social and economic_17_labour and skills (Crit 1)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":189,
"cid":131,
"category":2,
"name":"BREEAM_C_S3_social and economic_17_labour and skills (Crit 3)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":190,
"cid":132,
"category":2,
"name":"BREEAM_C_S1_resources and energy_01_energy strategy (Crit 1) CN1_energy strategy_prediction demand_emission_site consumption_heating cooling electricity_street lighting_site layout_topography_shading_solar orientation_daylighting_wind_natural ventilation_decentralised energy_networks_system_carbon_source_land use_local_noise_life cycle cost_technology_QT",
"energy":1,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":191,
"cid":133,
"category":2,
"name":"BREEAM_C_S1_resources and energy_01_energy strategy (Crit 3) ",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":192,
"cid":134,
"category":2,
"name":"BREEAM_C_S1_resources and energy_01_energy strategy (Crit 5) ",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":193,
"cid":135,
"category":2,
"name":"BREEAM C_S1_resources and energy_02_existing buildings and infrastructure (Crit 1) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":1,
"income":null
},
{
"id":194,
"cid":136,
"category":2,
"name":"BREEAM C_S1_resources and energy_02_existing buildings and infrastructure (Crit 2) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":1,
"income":null
},
{
"id":195,
"cid":137,
"category":2,
"name":"BREEAM C_S1_resources and energy_02_existing buildings and infrastructure (Crit 4) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":1,
"income":null
},
{
"id":196,
"cid":138,
"category":2,
"name":"BREEAM C_S1_resources and energy_02_existing buildings and infrastructure (Crit 6) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":197,
"cid":139,
"category":2,
"name":"BREEAM_C_S1_resources and energy_03_water strategy (Crit 1) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":198,
"cid":140,
"category":2,
"name":"BREEAM_C_S1_resources and energy_03_water strategy (Crit 2) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":199,
"cid":141,
"category":2,
"name":"BREEAM_C_S1_resources and energy_03_water strategy (Crit 4) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":200,
"cid":142,
"category":2,
"name":"BREEAM_C_S1_resources and energy_03_water strategy (Crit 5) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":201,
"cid":143,
"category":2,
"name":"BREEAM_C_S1_resources and energy_03_water strategy (Crit 6) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":202,
"cid":144,
"category":2,
"name":"BREEAM_C_S3_resources and energy_04_sustainable buildings (Crit 5) CN1_code for sustainable homes_developer_arrangement",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":203,
"cid":145,
"category":2,
"name":"BREEAM_C_S3_resources and energy_04_sustainable buildings (Crit 1) ",
"energy":1,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":204,
"cid":146,
"category":2,
"name":"BREEAM_C_S3_resources and energy_04_sustainable buildings (Crit 2) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":205,
"cid":147,
"category":2,
"name":"BREEAM_C_S3_resources and energy_04_sustainable buildings (Crit 3) ",
"energy":1,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":206,
"cid":148,
"category":2,
"name":"BREEAM_C_S3_resources and energy_04_sustainable buildings (Crit 4) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":207,
"cid":149,
"category":2,
"name":"BREEAM_C_S3_resources and energy_04_sustainable buildings (Crit 6) ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":208,
"cid":150,
"category":2,
"name":"BREEAM_C_S3_resources and energy_05_low impact materials (Crit 1)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":209,
"cid":151,
"category":2,
"name":"BREEAM_C_S3_resources and energy_05_low impact materials (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":210,
"cid":152,
"category":2,
"name":"BREEAM_C_S3_resources and energy_05_low impact materials (Crit 4)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":211,
"cid":153,
"category":2,
"name":"BREEAM_C_S3_resources and energy_05_low impact materials (Crit 6)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":212,
"cid":154,
"category":2,
"name":"BREEAM_C_S3_resources and energy_05_low impact materials (Crit 7)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":213,
"cid":155,
"category":2,
"name":"BREEAM_C_S3_resources and energy_05_low impact materials (Crit 8)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":214,
"cid":156,
"category":2,
"name":"BREEAM_C_S3_resources and energy_05_low impact materials (Crit 9)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":215,
"cid":157,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 1) CN1_pre-demolition audit_demolition protocol",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":216,
"cid":158,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 1) CN2_high grade application_crushed material_fill material_construction site",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":217,
"cid":159,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 3) CN3_WRAP principles of designing out waste_resource efficiency_building level_credit_QT",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":218,
"cid":160,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 2 & 4) CN4_waste management strategy plan_resource efficiency_construction waste_refurbishment_demolition_excavation_monitoring_measuring_sorting_reuse_recycling_QT",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":219,
"cid":161,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 10) CN5_diversion from landfill_reuse material on site_energy recovery_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":220,
"cid":162,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 6) ",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":221,
"cid":163,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 7) ",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":222,
"cid":164,
"category":2,
"name":"BREEAM_C_S3_resources and energy_06_resource efficiency (Crit 8) ",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":223,
"cid":165,
"category":2,
"name":"BREEAM_C_S3_resources and energy_07_transport carbon emission (Crit 1)",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":224,
"cid":166,
"category":2,
"name":"BREEAM_C_S3_resources and energy_07_transport carbon emission (Crit 2)",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":225,
"cid":167,
"category":2,
"name":"BREEAM_C_S3_resources and energy_07_transport carbon emission (Crit 4)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":226,
"cid":168,
"category":2,
"name":"BREEAM_C_S3_resources and energy_07_transport carbon emission (Crit 5)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":227,
"cid":169,
"category":2,
"name":"BREEAM_C_S3_resources and energy_07_transport carbon emission (Crit 6)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":228,
"cid":170,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 1) CN1_ecological impact assessment_IEEM_large scale development_environment_impact_management_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":229,
"cid":171,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 3) CN3_ecology strategy_protection_local habitat_water supply_shelter_flora_fauna_movement_migration route_social_economic",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":230,
"cid":172,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 4) CN4_valued ecological resources",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":231,
"cid":173,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":232,
"cid":174,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":233,
"cid":175,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 6)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":234,
"cid":176,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 8)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":235,
"cid":177,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_01_ecology strategy (Crit 9)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":236,
"cid":178,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_02_land use (Crit 1) CN1_preliminary investigation_contamination site_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":237,
"cid":179,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_02_land use (Crit 2) CN2_site investigation_code of practice_contamination site_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":238,
"cid":180,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_02_land use (Crit 4) CN5_masterplan site layout and design_contamination area_land use_ground_parking_soil_drainage system_materials",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":239,
"cid":181,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_02_land use (Crit 6) CN6_remediation strategy_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":240,
"cid":182,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_02_land use (Crit 7)",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":241,
"cid":183,
"category":2,
"name":"BREEAM_C_S1_land use and ecology_02_land use (Crit 8)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":242,
"cid":184,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_03_water pollution (Crit 1) CN1_drainage plan_drain_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":243,
"cid":185,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_03_water pollution (Crit 4) CN2_appropriately qualified professional_skills and experience_water management_drainage system_rainfall_ run off_engineering_landscape_hydrology_infiltration_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":244,
"cid":186,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_03_water pollution (Crit 6) CN3_areas where oil separators required_pollution_prevention_surface_water_drainage_risk of contamination",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":245,
"cid":187,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_03_water pollution (Crit 8) CN4_5mm discharge for minimising water course pollution_pond and basin_run off_control_prevention_rain fall_green roof_permeable_surface_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":246,
"cid":188,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_03_water pollution (Crit 2)",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":247,
"cid":189,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_03_water pollution (Crit 5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":248,
"cid":190,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_04_enhancement of ecological value (Crit 1)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":249,
"cid":191,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_04_enhancement of ecological value (Crit 3)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":250,
"cid":192,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_04_enhancement of ecological value (Crit 5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":251,
"cid":193,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 1) CN1_suitably qualified ecologist_ecology strategy_plant_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":252,
"cid":194,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 3) CN2_ecology clerk of works_qualified ecologist_mitigation and or compensation measure",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":253,
"cid":195,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 4)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":254,
"cid":196,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 6)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":255,
"cid":197,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 8)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":256,
"cid":198,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 10)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":257,
"cid":199,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 11)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":258,
"cid":200,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 12)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":259,
"cid":201,
"category":2,
"name":"BREEAM_C_S2_land use and ecology_05_landscape (Crit 13)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":260,
"cid":202,
"category":2,
"name":"BREEAM_C_S3_land use and ecology_06_rainwater harvesting (Crit 1) CN1_use of rain water_percentage collection rain water_toilet flushing demand_washing machine_buildings_irrigation_plant_landscape_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":261,
"cid":203,
"category":2,
"name":"BREEAM_C_S3_land use and ecology_06_rainwater harvesting (Crit 2) CN2_calculation of roof collection area_area impervious roof surface_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":262,
"cid":204,
"category":2,
"name":"BREEAM_C_S3_land use and ecology_06_rainwater harvesting (Crit 4)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":263,
"cid":205,
"category":2,
"name":"BREEAM_C_S3_land use and ecology_06_rainwater harvesting (Crit 6)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":264,
"cid":206,
"category":2,
"name":"BREEAM_C_S1_transport and movement_01_transport and assessment (Crit 1) CN1_transport statement_traffic flows transport impact_trips_travel_public transport_highway network_injury accident_site layout_land use_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":265,
"cid":207,
"category":2,
"name":"BREEAM_C_S1_transport and movement_01_transport and assessment (Crit 1) CN2_transport assessment_environment impact_public transport_parking facilities_traffic flow_links_junctions_road network_air quality__noise_highway network_carbon emission_trip_walking_cycling_safety_movement_accident_infrastructure_accessibility_economic_integration_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":266,
"cid":208,
"category":2,
"name":"BREEAM_C_S1_transport and movement_01_transport and assessment (Crit 2) CN3_travel plan coordinator_scale development_travel_trips_transport_QL",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":267,
"cid":209,
"category":2,
"name":"BREEAM_C_S1_transport and movement_01_transport and assessment (Crit 3) CN4_travel Plans_ sustainable outcomes_transport_travel_access to site_accessibility_policy_QL",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":268,
"cid":210,
"category":2,
"name":"BREEAM_C_S1_transport and movement_01_transport and assessment (Crit 5)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":269,
"cid":211,
"category":2,
"name":"BREEAM_C_S1_transport and movement_01_transport and assessment (Crit 7)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":270,
"cid":212,
"category":2,
"name":"BREEAM_C_S1_transport and movement_01_transport and assessment (Crit 8)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":271,
"cid":213,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 2) CN1_context appraisal_form_scale_pattern_character street_buildings_open space_local character and distinctiveness_public realm_link and destination_connection_public space_transport node_educational facilities_office_retail area_movement_pedestrian_cyclist_transport_vehicle_traffic_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":272,
"cid":214,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 3) CN2_movement framework_street_transport_pedestrian_cyclist_public transport_vehicle_traffic_environment_building_landscape_activity_connection_permeable street network_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":273,
"cid":215,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 6) CN3_design measures for street safety and large vehicles_car parking_risk of collision_visitors_storage",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":274,
"cid":216,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 1)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":275,
"cid":217,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 5)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":276,
"cid":218,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 8)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":277,
"cid":219,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 9)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":278,
"cid":220,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 11)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":279,
"cid":221,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 12)",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":280,
"cid":222,
"category":2,
"name":"BREEAM_C_S2_transport and movement_02_safe and appealing streets (Crit 14)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":281,
"cid":223,
"category":2,
"name":"BREEAM_C_S2_transport and movement_03_cycling network (Crit 1)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":282,
"cid":224,
"category":2,
"name":"BREEAM_C_S2_transport and movement_03_cycling network (Crit 3)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":283,
"cid":225,
"category":2,
"name":"BREEAM_C_S2_transport and movement_04_access to public transport (Crit 1)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":284,
"cid":226,
"category":2,
"name":"BREEAM_C_S3_transport and movement_05_cycling facilities (Crit 4) CN1_compliant cycle storage_non residential_storage facilities_secure_light_covered_protect from weather_permanent structure_buildings_wall_distance_access_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":285,
"cid":227,
"category":2,
"name":"BREEAM_C_S3_transport and movement_05_cycling facilities (Crit 4) CN2_compliantcycle storage_residentials_space requirement flexible_garden tools_garage_car_parking_access_dwelling_public_communal store_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":286,
"cid":228,
"category":2,
"name":"BREEAM_C_S3_transport and movement_05_cycling facilities (Crit 7) CN3_funding for maintenance and adjustment_local authority_cost_financial resources_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":287,
"cid":229,
"category":2,
"name":"BREEAM_C_S3_transport and movement_05_cycling facilities (Crit 1) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":288,
"cid":230,
"category":2,
"name":"BREEAM_C_S3_transport and movement_05_cycling facilities (Crit 2) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":289,
"cid":231,
"category":2,
"name":"BREEAM_C_S3_transport and movement_05_cycling facilities (Crit 5) ",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":290,
"cid":232,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities (Crit 4) CN1_shelter dimensions_local authority_size of development_QL",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":291,
"cid":233,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities (Crit 1 to 6) CN3_pavement obstruction_public transport shelters_passing pedestrians_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":292,
"cid":234,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities (Crit 6) CN4_shelter from the elements out of the weather_precipitation and prevailing wind_local authority_roof_wall_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":293,
"cid":235,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities_CN5_key community focal points_facilities_local amenities_schools_parks_hospital",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":294,
"cid":236,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities (Crit 1)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":295,
"cid":237,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities (Crit 2)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":296,
"cid":238,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities (Crit 3)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":297,
"cid":239,
"category":2,
"name":"BREEAM_C_S3_transport and movement_06_public transport facilities (Crit 8)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":298,
"cid":1,
"category":3,
"name":"CASBEE_UD_environment_resource_water resource_waterworks_rain water utilization_level of rain measure utilization rate_inside building outdoor watering_80% or higher _ utilization rate method_waste water_calculate consumption collecting area storage capacity diagram_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":299,
"cid":2,
"category":3,
"name":"CASBEE_UD_environment_resource_water resource_waterworks_treated water_measures water supply evaluated_some facilities_majority_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":300,
"cid":3,
"category":3,
"name":"CASBEE_UD_environment_resource_water resource_sewerage_reduction of waste water discharge amount_treatment facilities evaluated_toilet system_ratio 80%_reuses water_building_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":301,
"cid":4,
"category":3,
"name":"CASBEE_UD_environment_resource_water resource_sewerage_reduction of rain water discharge amount 01_capacity of detention pond_efforts suppression discharge temporary storage evaluated_legal requirement_regulation_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":302,
"cid":5,
"category":3,
"name":"CASBEE_UD_environment_resource_water resource_sewerage_reduction of rain water discharge amount 02_rain water permeable surface and equipment_Efforts suppression promotion permeation evaluated_vacant space permable trench_permeable pavement inlet trench_level_rooftop greening_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":303,
"cid":6,
"category":3,
"name":"CASBEE_UD_environment_resource_resources recycling_construction 01 wood material_produced sustainable forests is evaluated_nultiple buildings sustainable forests_0.005m3 area 1m2_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":304,
"cid":7,
"category":3,
"name":"CASBEE_UD_environment_resource_resources recycling_construction 02 recycled material_recycled materials used_articles_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":305,
"cid":8,
"category":3,
"name":"CASBEE_UD_environment_resource_resources recycling_operation 01 garbage separation_the garbage separation level in operation is evaluated_number of separation items municipality_QT",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":306,
"cid":9,
"category":3,
"name":"CASBEE_UD_environment_resource_resources recycling_operation 02 in area resource circulation_resource circulation executed in the object area is evaluated_fallen leaves compost resource_raw garbage_QT",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":307,
"cid":10,
"category":3,
"name":"CASBEE_UD_environment_nature_greenery_ground greening_greening ratio_ground surfaces evaluated_percentage_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":308,
"cid":11,
"category":3,
"name":"CASBEE_UD_environment_nature_greenery_building top greening_rooftop greening_level building is evaluated_percentage_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":309,
"cid":12,
"category":3,
"name":"CASBEE_UD_environment_nature_greenery_building top greening_wall greening_evaluated_level_percentage_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":310,
"cid":13,
"category":3,
"name":"CASBEE_UD_environment_nature_biodiversity_preservation_natural resources_level of natural resources object area_preserved_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":311,
"cid":14,
"category":3,
"name":"CASBEE_UD_environment_nature_biodiversity_preservation_landform_consideration of development proporty transformation evaluated_performed according development activity_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":312,
"cid":15,
"category":3,
"name":"CASBEE_UD_environment_nature_biodiversity_regeneration and creation_patch planar quality 01 habitat space of species_various species established_green areas people cannot_various organisms 3% percentage area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":313,
"cid":16,
"category":3,
"name":"CASBEE_UD_environment_nature_biodiversity_regeneration and creation_patch planar quality 02 consideration for regionality_existence of consideration regionality evaluated_greening conscious plant native species",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":314,
"cid":17,
"category":3,
"name":"CASBEE_UD_environment_nature_biodiversity_regeneration and creation_corridor network quality_network peripheral evaluated_ecological corridor road trees_level_diagrams_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":315,
"cid":18,
"category":3,
"name":"CASBEE_UD_environment_artifact_environmentally friendly buildings_casbee assessment new construction_detached house evaluated_rank_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":316,
"cid":19,
"category":3,
"name":"CASBEE_UD_society_impartiality fairness_compliance_evaluated highly observes law regulation wind damage_radio waves_traffic_sunlight_light damage_soil pollution_noise_vibration_odors_air pollution_ground water withdrawal_water quality_project environmental assessment measurement results_level_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":317,
"cid":20,
"category":3,
"name":"CASBEE_UD_society_impartiality fairness_area management_neighborhood association area management organization involving inhabitants tenant companies employees government operate continuously system regional_level_community_town council alliance_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":318,
"cid":21,
"category":3,
"name":"CASBEE_UD_society_security safety_disaster prevention_basic disaster prevention performance 01 understanding hazard maps natural disasters fire countermeasures earthquakes landslides floods infrastructures level performance water supply_communication systems_treatment infrastructure_heating cooling system_power supply_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":319,
"cid":22,
"category":3,
"name":"CASBEE_UD_society_security safety_disaster prevention_basic disaster prevention performance 02 disaster prevention of various infrastructures",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":320,
"cid":23,
"category":3,
"name":"CASBEE_UD_society_security safety_disaster prevention_disaster response ability 01 improving periphery area routine life certain time period_maintenance evacuation route network conditions_disaster prevention vacant space and evacuation route_level_vacant space_distance nearest evacuation 250 m or less_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":321,
"cid":24,
"category":3,
"name":"CASBEE_UD_society_security safety_disaster prevention_disaster response ability 02 continuity of business and life in the block_level_ bcp lcp_accident_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":322,
"cid":25,
"category":3,
"name":"CASBEE_UD_society_security safety_traffic safety_stablishing sidewalks securing pedestrian safety movement lines universla design_level_QL",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":323,
"cid":26,
"category":3,
"name":"CASBEE_UD_society_security safety_crime prevention_level of efforts security measures night lighting monitorable periphery cameras patrol systems_level_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":324,
"cid":27,
"category":3,
"name":"CASBEE_UD_society_amenity_convenience welfare_evaluated standart distance time facilities area covers 80%_convenience_level_1500 m 300 m_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":325,
"cid":28,
"category":3,
"name":"CASBEE_UD_society_amenity_convenience welfare_evaluated standart distance time facilities area covers 80%__health and welfare education_minutes scale_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":326,
"cid":29,
"category":3,
"name":"CASBEE_UD_society_amenity_culture_history preservation restoration legacies inheritance traditional landscape skylines guidelines tools_history and culture_level_items",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":327,
"cid":30,
"category":3,
"name":"CASBEE_UD_society_amenity_culture_history preservation restoration legacies inheritance traditional landscape skylines guidelines tools_view_judged determination harmonization master plan qualitatively_level_item_content_Harmonization with the periphery",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":328,
"cid":31,
"category":3,
"name":"CASBEE_UD_society_amenity_culture_view 02",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":329,
"cid":32,
"category":3,
"name":"CASBEE_UD_economy_traffic urban structure_traffic_support regional economic activities people logistics_Development of traffic facilities_traffic facilities in the district_level roads parkings lots bicycles parking area_level_usability of public transportation_railway station LRT BRT bus stop comprehensive system_1 km 300 m_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":330,
"cid":33,
"category":3,
"name":"CASBEE_UD_economy_traffic urban structure_traffic_support regional economic activities people logistics_logistics management_system block evaluated terms rationalization cooperative delivery_level_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":331,
"cid":34,
"category":3,
"name":"CASBEE_UD_economy_traffic urban structure_urban structure_consistency with and complementing of upper level planning_assessment performed based urban infrastructures existence planned management policy evaluated_level_municipal_QL",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":332,
"cid":35,
"category":3,
"name":"CASBEE_UD_economy_traffic urban structure_urban structure_land use_01 utilization level of standard floor area ratio_400 % _level_handling of brownfield site_soil contamination coutermeasures evaluated_level_QT",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":333,
"cid":36,
"category":3,
"name":"CASBEE_UD_economy_traffic urban structure_urban structure_land use_02 utilization level of standard floor area ratio_400 % _level_handling of brownfield site_soil contamination coutermeasures evaluated_level_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":334,
"cid":37,
"category":3,
"name":"CASBEE_UD_economy_growth potencial_population_inhabitant staying population_inhabitant population_implementation results relevant district based increase decrease past state_level_staying population_implementation results relevant district based increase decrease past state_level",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":335,
"cid":38,
"category":3,
"name":"CASBEE_UD_economy_growth potencial_population_inhabitant staying population_staying population_implementation results relevant district based increase decrease past state_level",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":336,
"cid":39,
"category":3,
"name":"CASBEE_UD_economy_growth potencial_economic development_viewpoint that inviting companies investment community support local economy_revitalization activity_efforts economic revilization programs housing system non housing system_perform weighted average rate scale floor area_level_items_QT",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":337,
"cid":40,
"category":3,
"name":"CASBEE_UD_economy_efficiency rationality_information system_flexibility and usability information environment block LAN wireless evaluated_information service performance_communication line capacity internet speed methods_level_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":338,
"cid":41,
"category":3,
"name":"CASBEE_UD_economy_efficiency rationality_information system_flexibility and usability information environment block LAN wireless evaluated_block management_uniform management conditions of infrastructure in the block are evaluated_level_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":339,
"cid":42,
"category":3,
"name":"CASBEE_UD_economy_efficiency rationality_energy system_flexibility change energy demand price_possibility to make demand supply sustem smart_technology introduction smartification energy demand supply system number items_level_item_content_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":340,
"cid":43,
"category":3,
"name":"CASBEE_UD_economy_efficiency rationality_energy system_flexibility change energy demand price_updating and expandability_efforts of piping and wiring are evaluated based on renewadability_renewability and expandability_level_item_content_QT",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":341,
"cid":1,
"category":4,
"name":"CASBEE_cities_Q1_environment_01_mean urban air pollution of particulate matter_PM10 and PM2.5",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":342,
"cid":2,
"category":4,
"name":"CASBEE_cities_Q1_environment_02_area of public and green space as a proportion total city space",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":343,
"cid":3,
"category":4,
"name":"CASBEE_cities_Q1_environment_03_percentage urban solid waste collected and well managed ",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":344,
"cid":4,
"category":4,
"name":"CASBEE_cities_Q1_environment_04_fine particulate matter_PM2.5_concentration",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":345,
"cid":5,
"category":4,
"name":"CASBEE_cities_Q1_environment_05_particulate matter_PM10_concentration",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":346,
"cid":6,
"category":4,
"name":"CASBEE_cities_Q1_environment_06_NO2 nitrogen dioxide concentration",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":347,
"cid":7,
"category":4,
"name":"CASBEE_cities_Q1_environment_07_SO2 sulphur dioxide concentration ",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":348,
"cid":8,
"category":4,
"name":"CASBEE_cities_Q1_environment_08_O3 ozone concentration ",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":349,
"cid":9,
"category":4,
"name":"CASBEE_cities_Q1_environment_09_noise pollution",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":350,
"cid":10,
"category":4,
"name":"CASBEE_cities_Q1_environment_10_percentage city population with regular solid waste collection",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":351,
"cid":11,
"category":4,
"name":"CASBEE_cities_Q1_environment_11_total collected municipal solid waste per capita",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":352,
"cid":12,
"category":4,
"name":"CASBEE_cities_Q1_environment_12_percentage city solid waste_recycle",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":353,
"cid":13,
"category":4,
"name":"CASBEE_cities_Q1_environment_13_percentage solid waste_diposed in a sanitary landfil",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":354,
"cid":14,
"category":4,
"name":"CASBEE_cities_Q1_environment_14_percentage solid waste_disposed of in a incinerator ",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":355,
"cid":15,
"category":4,
"name":"CASBEE_cities_Q1_environment_15_percentage solid waste_burned openly",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":356,
"cid":16,
"category":4,
"name":"CASBEE_cities_Q1_environment_16_percentage solid waste_open dump",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":357,
"cid":17,
"category":4,
"name":"CASBEE_cities_Q1_environment_17_percentage solid waste_other means",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":358,
"cid":18,
"category":4,
"name":"CASBEE_cities_Q1_environment_18_hazardous waste generation per capita_tonnes",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":359,
"cid":19,
"category":4,
"name":"CASBEE_cities_Q1_environment_19_percentage city hazardous waste_recycle",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":360,
"cid":20,
"category":4,
"name":"CASBEE_cities_Q1_environment_20_green area_hectares_100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":361,
"cid":21,
"category":4,
"name":"CASBEE_cities_Q1_environment_21_annual number trees planted_100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":362,
"cid":22,
"category":4,
"name":"CASBEE_cities_Q1_environment_22_disclosure natural resources rights holdings",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":363,
"cid":23,
"category":4,
"name":"CASBEE_cities_Q1_environment_23_global food loss indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":364,
"cid":24,
"category":4,
"name":"CASBEE_cities_Q1_environment_24_consumption ozone depleting substances_ MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":365,
"cid":25,
"category":4,
"name":"CASBEE_cities_Q1_environment_25_aerosol optical depth_AOD",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":366,
"cid":26,
"category":4,
"name":"CASBEE_cities_Q1_environment_26_share companies valued more than 1 billion_publish integrated monitoring",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":367,
"cid":27,
"category":4,
"name":"CASBEE_cities_Q1_environment_27_number of businesses_100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":368,
"cid":28,
"category":4,
"name":"CASBEE_cities_Q1_environment_28_share coastal marine areas protected",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":369,
"cid":29,
"category":4,
"name":"CASBEE_cities_Q1_environment_29_percentage fish tonnage landed within maximum sustainable yield_MSY",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":370,
"cid":30,
"category":4,
"name":"CASBEE_cities_Q1_environment_30_annual change forest area_land under cultivation_modified MDG indicator ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":371,
"cid":31,
"category":4,
"name":"CASBEE_cities_Q1_environment_31_area forest under sustainable forest management as a percent of forest area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":372,
"cid":32,
"category":4,
"name":"CASBEE_cities_Q1_environment_32_annual change in degraded or desertified arable land_percentage or ha",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":373,
"cid":33,
"category":4,
"name":"CASBEE_cities_Q1_environment_33_red list index",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":374,
"cid":34,
"category":4,
"name":"CASBEE_cities_Q1_environment_34_protected areas overlay_biodiversity",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":375,
"cid":35,
"category":4,
"name":"CASBEE_cities_Q1_environment_35_percentage change number of native species ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":376,
"cid":36,
"category":4,
"name":"CASBEE_cities_Q2_society_01_percentage urban population living in slums or informal settlements _MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":377,
"cid":37,
"category":4,
"name":"CASBEE_cities_Q2_society_02_percentage of people within 0.5 km public transit running at least every 20 minutes",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":378,
"cid":38,
"category":4,
"name":"CASBEE_cities_Q2_society_03_ratio land consumption rate population growth rate_comparable scale",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":379,
"cid":39,
"category":4,
"name":"CASBEE_cities_Q2_society_04_losses natural disasters_climate and non climate related events_US dollar and lives lost",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":380,
"cid":40,
"category":4,
"name":"CASBEE_cities_Q2_society_05_number of fire related deaths per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":381,
"cid":41,
"category":4,
"name":"CASBEE_cities_Q2_society_06_number of natural disasters related deaths per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":382,
"cid":42,
"category":4,
"name":"CASBEE_cities_Q2_society_07_square meters public indoor recreation space per capita ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":383,
"cid":43,
"category":4,
"name":"CASBEE_cities_Q2_society_08_square meters public outdoor recreation space per capita ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":384,
"cid":44,
"category":4,
"name":"CASBEE_cities_Q2_society_09_number of police officers per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":385,
"cid":45,
"category":4,
"name":"CASBEE_cities_Q2_society_10_number of homicides per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":386,
"cid":46,
"category":4,
"name":"CASBEE_cities_Q2_society_11_crimes against property per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":387,
"cid":47,
"category":4,
"name":"CASBEE_cities_Q2_society_12_response time for police department from initial call",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":388,
"cid":48,
"category":4,
"name":"CASBEE_cities_Q2_society_13_percentage population living in slums",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":389,
"cid":49,
"category":4,
"name":"CASBEE_cities_Q2_society_14_number of homeless per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":390,
"cid":50,
"category":4,
"name":"CASBEE_cities_Q2_society_15_percentage households exist without registered legal titles",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":391,
"cid":51,
"category":4,
"name":"CASBEE_cities_Q2_society_16_area size informal settlements as a percentage of city area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":392,
"cid":52,
"category":4,
"name":"CASBEE_cities_Q2_society_17_proportion population below minimum level dietary energy consumption_MDG indicator ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":393,
"cid":53,
"category":4,
"name":"CASBEE_cities_Q2_society_18_percentage women reproductive age_15 to 49_ with anemia",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":394,
"cid":54,
"category":4,
"name":"CASBEE_cities_Q2_society_19_prevalence of stunting and wasting in children under 5 years old",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":395,
"cid":55,
"category":4,
"name":"CASBEE_cities_Q2_society_20_percentage children less than six months old who are fed breast milk alone_no liquids or food",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":396,
"cid":56,
"category":4,
"name":"CASBEE_cities_Q2_society_21_percentage of women_15 to 49 years of age_consumption_at least 5 out of 10 defined food group",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":397,
"cid":57,
"category":4,
"name":"CASBEE_cities_Q2_society_22_crop yield gap_actual yield as percentage of attainable yield",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":398,
"cid":58,
"category":4,
"name":"CASBEE_cities_Q2_society_23_number of agricultural extension workers per 1000 farmers_or share of farmerscovered by agricultural extension programs and services",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":399,
"cid":59,
"category":4,
"name":"CASBEE_cities_Q2_society_24_nitrogen use efficiency in food systems",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":400,
"cid":60,
"category":4,
"name":"CASBEE_cities_Q2_society_25_crop water productivity_tons of harvested product per unit irrigation water",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":401,
"cid":61,
"category":4,
"name":"CASBEE_cities_Q2_society_26_maternal mortality ratio_MDG indicator_ and rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":402,
"cid":62,
"category":4,
"name":"CASBEE_cities_Q2_society_27_neonatal_infant_and under 5 years old_mortality rate_modified MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":403,
"cid":63,
"category":4,
"name":"CASBEE_cities_Q2_society_28_percent children receiving full immunization_national vaccination schedules",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":404,
"cid":64,
"category":4,
"name":"CASBEE_cities_Q2_society_29_HIV incidence_treatment rate_mortality_modified MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":405,
"cid":65,
"category":4,
"name":"CASBEE_cities_Q2_society_30_incidence_prevalence_death rates associates with all forms of TB_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":406,
"cid":66,
"category":4,
"name":"CASBEE_cities_Q2_society_31_incidence_death rates associates with malaria_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":407,
"cid":67,
"category":4,
"name":"CASBEE_cities_Q2_society_32_probability of dying between exact ages 30 and 70 from any cardiovascular disease_cancer_diabetes_respiratory disease_suicide",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":408,
"cid":68,
"category":4,
"name":"CASBEE_cities_Q2_society_33_percent population overweight and obese_including children under 5",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":409,
"cid":69,
"category":4,
"name":"CASBEE_cities_Q2_society_34_road traffic deaths per 100000 population",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":410,
"cid":70,
"category":4,
"name":"CASBEE_cities_Q2_society_35_consultations with lincesed provider in a health facility or the community per person_per year",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":411,
"cid":71,
"category":4,
"name":"CASBEE_cities_Q2_society_36_percentage population without effective financial protection for health care",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":412,
"cid":72,
"category":4,
"name":"CASBEE_cities_Q2_society_37_proportion of persons with a severe mental disorder_psychosis_bipolar_depression_who are using services",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":413,
"cid":73,
"category":4,
"name":"CASBEE_cities_Q2_society_38_cotraceptive prevalence rate_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":414,
"cid":74,
"category":4,
"name":"CASBEE_cities_Q2_society_39_current use of any tabacco product_age standardized rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":415,
"cid":75,
"category":4,
"name":"CASBEE_cities_Q2_society_40_average life expectancy ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":416,
"cid":76,
"category":4,
"name":"CASBEE_cities_Q2_society_41_number of in patient hospital per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":417,
"cid":77,
"category":4,
"name":"CASBEE_cities_Q2_society_42_number of physicians per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":418,
"cid":78,
"category":4,
"name":"CASBEE_cities_Q2_society_43_ under age five mortality per 1000 live births",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":419,
"cid":79,
"category":4,
"name":"CASBEE_cities_Q2_society_44_number of nursing and midwifery personnel per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":420,
"cid":80,
"category":4,
"name":"CASBEE_cities_Q2_society_45_number of mental health practitioners per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":421,
"cid":81,
"category":4,
"name":"CASBEE_cities_Q2_society_46_suicide rate per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":422,
"cid":82,
"category":4,
"name":"CASBEE_cities_Q2_society_47_transportation fatalities per 100000 population",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":423,
"cid":83,
"category":4,
"name":"CASBEE_cities_Q2_society_48_percentage of children_36 to 59 months_receiving at least of one year quality pre-primary education program_QL",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":424,
"cid":84,
"category":4,
"name":"CASBEE_cities_Q2_society_49_early child development index_ECDI",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":425,
"cid":85,
"category":4,
"name":"CASBEE_cities_Q2_society_50_primary completion rates for girls and boys",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":426,
"cid":86,
"category":4,
"name":"CASBEE_cities_Q2_society_51_percentage of girls and boys who master a broad range foundational skills_literacy_mathematics_by the end of the primary school cycle_based on credibly established national benchmarks",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":427,
"cid":87,
"category":4,
"name":"CASBEE_cities_Q2_society_52_secondary completion rates for girls and boys",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":428,
"cid":88,
"category":4,
"name":"CASBEE_cities_Q2_society_53_percentage of girls and boys achieve proficiency a broad range learning outcomes_literacy_mathematics_by the end of lower secondary school cycle_based on credibly established national benchmarks",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":429,
"cid":89,
"category":4,
"name":"CASBEE_cities_Q2_society_54_tertiary enrollment rates for women and men",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":430,
"cid":90,
"category":4,
"name":"CASBEE_cities_Q2_society_55_percentage students completing primary education_survival rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":431,
"cid":91,
"category":4,
"name":"CASBEE_cities_Q2_society_56_percentage students completing secondary education_survival rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":432,
"cid":92,
"category":4,
"name":"CASBEE_cities_Q2_society_57_primary education_student_teacher ratio",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":433,
"cid":93,
"category":4,
"name":"CASBEE_cities_Q2_society_58_percentage of male_school aged_population enrolled in schools ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":434,
"cid":94,
"category":4,
"name":"CASBEE_cities_Q2_society_59_percentage of school aged_population enrolled in schools ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":435,
"cid":95,
"category":4,
"name":"CASBEE_cities_Q2_society_60_number of higher education degrees per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":436,
"cid":96,
"category":4,
"name":"CASBEE_cities_Q2_society_61_prevalence of girls and women_15 to 49_who have experienced physical or sexual violence_by intimate partner_in the last 12 months",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":437,
"cid":97,
"category":4,
"name":"CASBEE_cities_Q2_society_62_percentage of referred cases of sexual and gender based violence against women and children that are investigated and sentenced",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":438,
"cid":98,
"category":4,
"name":"CASBEE_cities_Q2_society_63_percentage of women aged 20 to 24 who were married or in a union before age 18",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":439,
"cid":99,
"category":4,
"name":"CASBEE_cities_Q2_society_64_percentage of girls and women aged 15 to 49 years who have undergone FGM_C",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":440,
"cid":100,
"category":4,
"name":"CASBEE_cities_Q2_society_65_average number hours spent on paid and unpaid work combined_by sex ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":441,
"cid":101,
"category":4,
"name":"CASBEE_cities_Q2_society_66_percentage of seats held by women and minorities in national parliament and or sub national elected office according to their respective share of the population_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":442,
"cid":102,
"category":4,
"name":"CASBEE_cities_Q2_society_67_met demand for family planning_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":443,
"cid":103,
"category":4,
"name":"CASBEE_cities_Q2_society_68_percentage of female school aged population enrolled in schools ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":444,
"cid":104,
"category":4,
"name":"CASBEE_cities_Q2_society_69_women as a percentage of total elected to city level office",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":445,
"cid":105,
"category":4,
"name":"CASBEE_cities_Q2_society_70_percentage of women employed in the city government workforce",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":446,
"cid":106,
"category":4,
"name":"CASBEE_cities_Q2_society_71_percentage of population using safely managed water services_by urban and rural_modified MDF indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":447,
"cid":107,
"category":4,
"name":"CASBEE_cities_Q2_society_72_percentage of population using safely managed sanitation services_by urban and rural_modified MDF indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":448,
"cid":108,
"category":4,
"name":"CASBEE_cities_Q2_society_73_percentage of waste water flows treated to national standards_and reused",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":449,
"cid":109,
"category":4,
"name":"CASBEE_cities_Q2_society_74_indicator on water resource management",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":450,
"cid":110,
"category":4,
"name":"CASBEE_cities_Q2_society_75_proportion total water resources used_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":451,
"cid":111,
"category":4,
"name":"CASBEE_cities_Q2_society_76_percentage of city population served by waste water collection",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":452,
"cid":112,
"category":4,
"name":"CASBEE_cities_Q2_society_77_percentage of city waste water that has received no treatment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":453,
"cid":113,
"category":4,
"name":"CASBEE_cities_Q2_society_78_percentage city waste water receiving primary treatment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":454,
"cid":114,
"category":4,
"name":"CASBEE_cities_Q2_society_79_percentage city waste water receiving secondary treatment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":455,
"cid":115,
"category":4,
"name":"CASBEE_cities_Q2_society_80_percentage city waste water receiving tertiary treatment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":456,
"cid":116,
"category":4,
"name":"CASBEE_cities_Q2_society_81_percentage city population with potable water supply service",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":457,
"cid":117,
"category":4,
"name":"CASBEE_cities_Q2_society_82_percentage city population with sustainable access to an improved water source",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":458,
"cid":118,
"category":4,
"name":"CASBEE_cities_Q2_society_83_percentge population with access to improve sanitation",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":459,
"cid":119,
"category":4,
"name":"CASBEE_cities_Q2_society_84_total domestic water consumption per capita_litres per day",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":460,
"cid":120,
"category":4,
"name":"CASBEE_cities_Q2_society_85_total water consumption per capita_litres per day",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":461,
"cid":121,
"category":4,
"name":"CASBEE_cities_Q2_society_86_average annual hours of water service interruption per household",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":462,
"cid":122,
"category":4,
"name":"CASBEE_cities_Q2_society_87_percentage of water loss_unaccounted for water",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":463,
"cid":123,
"category":4,
"name":"CASBEE_cities_Q2_society_88_access to all weather road_percentage access within x km distance to road",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":464,
"cid":124,
"category":4,
"name":"CASBEE_cities_Q2_society_89_mobile broadband subscriptions per 100 inhabitants_urban and rural",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":465,
"cid":125,
"category":4,
"name":"CASBEE_cities_Q2_society_90_index on ICT maturity",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":466,
"cid":126,
"category":4,
"name":"CASBEE_cities_Q2_society_91_manufacturing value added_MVA_as percent of GDP",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":467,
"cid":127,
"category":4,
"name":"CASBEE_cities_Q2_society_92_total energy and industry related GHG emissions by gas and sector_expressed as production and demand based emissions_CO2e",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":468,
"cid":128,
"category":4,
"name":"CASBEE_cities_Q2_society_93_personnel in R&D_per million inhabitants",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":469,
"cid":129,
"category":4,
"name":"CASBEE_cities_Q2_society_94_average number of electrical interruptions per customer per year",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":470,
"cid":130,
"category":4,
"name":"CASBEE_cities_Q2_society_95_average length of electrical interruptions_in hours",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":471,
"cid":131,
"category":4,
"name":"CASBEE_cities_Q2_society_96_number of firefighters per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":472,
"cid":132,
"category":4,
"name":"CASBEE_cities_Q2_society_97_number of volunteer and part time firefighters per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":473,
"cid":133,
"category":4,
"name":"CASBEE_cities_Q2_society_98_response time for emergency response services from initial call",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":474,
"cid":134,
"category":4,
"name":"CASBEE_cities_Q2_society_99_respinse time for fire department from initial call",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":475,
"cid":135,
"category":4,
"name":"CASBEE_cities_Q2_society_100_number of internet connections per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":476,
"cid":136,
"category":4,
"name":"CASBEE_cities_Q2_society_101_number of cell phone connections per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":477,
"cid":137,
"category":4,
"name":"CASBEE_cities_Q2_society_102_number of landline phone connections per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":478,
"cid":138,
"category":4,
"name":"CASBEE_cities_Q2_society_103_kilometres of high capacity public transport system per 100000 population",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":479,
"cid":139,
"category":4,
"name":"CASBEE_cities_Q2_society_104_kilometres of light passenger public transport system per 100000 population",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":480,
"cid":140,
"category":4,
"name":"CASBEE_cities_Q2_society_105_annual number of public transport trip per capita",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":481,
"cid":141,
"category":4,
"name":"CASBEE_cities_Q2_society_106_number of personal automobiles per capita",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":482,
"cid":142,
"category":4,
"name":"CASBEE_cities_Q2_society_107_percentage of commuters using a travel mode to work other than a personal vehicle",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":483,
"cid":143,
"category":4,
"name":"CASBEE_cities_Q2_society_108_number of two wheel motorized vehicles per capita",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":484,
"cid":144,
"category":4,
"name":"CASBEE_cities_Q2_society_109_kilometres of bicycle paths and lanes per 100000 population",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":485,
"cid":145,
"category":4,
"name":"CASBEE_cities_Q2_society_110_commercial air connectivity_number of non stop commercial air destinations",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":486,
"cid":146,
"category":4,
"name":"CASBEE_cities_Q2_society_111_violent injuries and deaths per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":487,
"cid":147,
"category":4,
"name":"CASBEE_cities_Q2_society_112_number of refugees",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":488,
"cid":148,
"category":4,
"name":"CASBEE_cities_Q2_society_113_proportion of legal persons and arrangements for which beneficial ownership information is publicly available",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":489,
"cid":149,
"category":4,
"name":"CASBEE_cities_Q2_society_114_revenues_expenditures_financing of all central government entities are presented on a gross basis in public budget documentation and authorized by the legislature",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":490,
"cid":150,
"category":4,
"name":"CASBEE_cities_Q2_society_115_percentage of children under age 5 whose birth is registered with a civil authority ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":491,
"cid":151,
"category":4,
"name":"CASBEE_cities_Q2_society_116_existence and implementation of a national law and or constitutional guarantee on the right to information ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":492,
"cid":152,
"category":4,
"name":"CASBEE_cities_Q2_society_117_perception of public sector corruption",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":493,
"cid":153,
"category":4,
"name":"CASBEE_cities_Q2_society_118_debt service ratio_debt service expenditure and a percentage of a municipality own source revenue",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":494,
"cid":154,
"category":4,
"name":"CASBEE_cities_Q2_society_119_capital spending as a percentage of total expenditure",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":495,
"cid":155,
"category":4,
"name":"CASBEE_cities_Q2_society_120_own source revenue as a percentage of total revenues",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":496,
"cid":156,
"category":4,
"name":"CASBEE_cities_Q2_society_121_tax collected as a percentage of tax billed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":497,
"cid":157,
"category":4,
"name":"CASBEE_cities_Q2_society_122_voter participation in last municipal election_percentage of eligible voters",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":498,
"cid":158,
"category":4,
"name":"CASBEE_cities_Q2_society_123_number of convictions for corruption and or bribery by city officials per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":499,
"cid":159,
"category":4,
"name":"CASBEE_cities_Q2_society_124_citizen representation_number of local officials elected to office per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":500,
"cid":160,
"category":4,
"name":"CASBEE_cities_Q2_society_125_number of registered voters as a percentage of the voting age population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":501,
"cid":161,
"category":4,
"name":"CASBEE_cities_Q2_society_126_violent crime rate per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":502,
"cid":162,
"category":4,
"name":"CASBEE_cities_Q3_economy_01_domestic revenues allocated to sustainable development as percent of GNI_by sector",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":503,
"cid":163,
"category":4,
"name":"CASBEE_cities_Q3_economy_02_assessed value of commercial and industrial properties as a percentage of total assessed value of all properties",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":504,
"cid":164,
"category":4,
"name":"CASBEE_cities_Q3_economy_03_proportion of population below 1point25_PPP_per day_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":505,
"cid":165,
"category":4,
"name":"CASBEE_cities_Q3_economy_04_proportion of popuplation living below national poverty line_by urban and rural_MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":506,
"cid":166,
"category":4,
"name":"CASBEE_cities_Q3_economy_05_multidimensional poverty index",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":507,
"cid":167,
"category":4,
"name":"CASBEE_cities_Q3_economy_06_percentage of eligible population covered by national social protection programs ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":508,
"cid":168,
"category":4,
"name":"CASBEE_cities_Q3_economy_07_percentage of women_men_indigenous people_local communities_secure rights to land_property_natural resources_percentage documented or recognized evidence of tenure_and percentage who perceive rights are recognized and protected",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":509,
"cid":169,
"category":4,
"name":"CASBEE_cities_Q3_economy_08_losses from natural disasters_climate and non climate related events",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":510,
"cid":170,
"category":4,
"name":"CASBEE_cities_Q3_economy_09_total fertility rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":511,
"cid":171,
"category":4,
"name":"CASBEE_cities_Q3_economy_10_percentage city population living in poverty",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":512,
"cid":172,
"category":4,
"name":"CASBEE_cities_Q3_economy_11_share of the population using modern cooking solutions_by urban and rural",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":513,
"cid":173,
"category":4,
"name":"CASBEE_cities_Q3_economy_12_share of the population using reliable electricity_by urban and rural",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":514,
"cid":174,
"category":4,
"name":"CASBEE_cities_Q3_economy_13_implicit incentives for low carbon energy in the electricity sector_measured as US dollar MWh_or US dollar per ton avoided CO2",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":515,
"cid":175,
"category":4,
"name":"CASBEE_cities_Q3_economy_14_rate of primary energy intensity improvement",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":516,
"cid":176,
"category":4,
"name":"CASBEE_cities_Q3_economy_15_total residential electrical energy use per capita_kWh per year",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":517,
"cid":177,
"category":4,
"name":"CASBEE_cities_Q3_economy_16_percentage city population with authorized electrical service",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":518,
"cid":178,
"category":4,
"name":"CASBEE_cities_Q3_economy_17_energy consumption of public buildings per year_kWh per metre square",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":519,
"cid":179,
"category":4,
"name":"CASBEE_cities_Q3_economy_18_percentage of total energy derived from renewable sources_as a share of the city total energy consumption",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":520,
"cid":180,
"category":4,
"name":"CASBEE_cities_Q3_economy_19_total electrical energy use per capita_kWh per year",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":521,
"cid":181,
"category":4,
"name":"CASBEE_cities_Q3_economy_20_GNI per capita_PPP_current US dollar atlas method",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":522,
"cid":182,
"category":4,
"name":"CASBEE_cities_Q3_economy_21_country implements and reports on system of environmental economic accounting_SEEA accounts",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":523,
"cid":183,
"category":4,
"name":"CASBEE_cities_Q3_economy_22_youth employment rate_by formal and informal sector",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":524,
"cid":184,
"category":4,
"name":"CASBEE_cities_Q3_economy_23_ratification and implementation of fundamental ILO labor standards and compliance in law and practice ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":525,
"cid":185,
"category":4,
"name":"CASBEE_cities_Q3_economy_24_city unemployment rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":526,
"cid":186,
"category":4,
"name":"CASBEE_cities_Q3_economy_25_percentage of persons in full time employment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":527,
"cid":187,
"category":4,
"name":"CASBEE_cities_Q3_economy_26_youth unemployment rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":528,
"cid":188,
"category":4,
"name":"CASBEE_cities_Q3_economy_27_jobs_housing ratio",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":529,
"cid":189,
"category":4,
"name":"CASBEE_cities_Q3_economy_28_indicator on inequality at top end of income distribution_GNI share of richest 10 percent or palma ratio",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":530,
"cid":190,
"category":4,
"name":"CASBEE_cities_Q3_economy_29_percentage of households with incomes below 50 percent of median income_relative poverty",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":531,
"cid":191,
"category":4,
"name":"CASBEE_cities_Q3_economy_30_domestic revenues allocated to sustainable development as percent of GNI_by sector",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":532,
"cid":192,
"category":4,
"name":"CASBEE_cities_Q3_economy_31_official development assistance and net private grants as percent of GNI",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":533,
"cid":193,
"category":4,
"name":"CASBEE_cities_Q3_economy_32_private net flows for sustainable development at market rates as share of high income country GNI_by sector",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":534,
"cid":194,
"category":4,
"name":"CASBEE_cities_Q3_economy_33_annual report by bank for international settlements_BIS_international accounting standards board_IASB_international financial reporting standards_IFRS_international monetary fund_IMF_world intellectual property organization_WIPO_world trade organization_WTO_on the relationship between international rules and the SDG and the implementation of relevant SDG targets",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":535,
"cid":195,
"category":4,
"name":"CASBEE_cities_Q3_economy_34_share of SDG indicators that are reported annually",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":536,
"cid":196,
"category":4,
"name":"CASBEE_cities_Q3_economy_35_evaluative wellbeing and positive mood affect",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":537,
"cid":197,
"category":4,
"name":"CASBEE_cities_Q3_economy_36_number of new patents per 100000 population per year",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":538,
"cid":1,
"category":5,
"name":"Gold Standard City_environment_air quality_01_mean urban air pollution of particulate matter_PM10 and PM2point5",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":539,
"cid":2,
"category":5,
"name":"Gold Standard City_environment_air quality_02_mortality from indoor air pollution_to be developed ",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":540,
"cid":3,
"category":5,
"name":"Gold Standard City_environment_air quality_03_mean concentration of Sox and Nox",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":541,
"cid":4,
"category":5,
"name":"Gold Standard City_environment_water quality and quantity_01_percentage of households connected with city water supply network",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":542,
"cid":5,
"category":5,
"name":"Gold Standard City_environment_water quality and quantity_02_per capita water consumption level",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":543,
"cid":6,
"category":5,
"name":"Gold Standard City_environment_water quality and quantity_03_continuity of water services_hours per day of continuous water supply",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":544,
"cid":7,
"category":5,
"name":"Gold Standard City_environment_water quality and quantity_04_percentage of waste water flows treated to national standards_by municipal and industrial source",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":545,
"cid":8,
"category":5,
"name":"Gold Standard City_environment_water quality and quantity_05_percentage of water samples in a year that comply with national potable water quality standard",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":546,
"cid":9,
"category":5,
"name":"Gold Standard City_environment_solid waste management_01_percentage of urban households with regular solid waste collection and recycling_to be developed",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":547,
"cid":10,
"category":5,
"name":"Gold Standard City_environment_solid waste management_02_solid waste generation per capita",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":548,
"cid":11,
"category":5,
"name":"Gold Standard City_environment_solid waste management_03_percentage of the city municipal solid waste percentage disposed of in sanitary landfills or treated_compostinganaerobic digestion",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":549,
"cid":12,
"category":5,
"name":"Gold Standard City_environment_solid waste management_04_percentage of the city municipal solid waste percentage disposed of in open dumps _controlled dumps _bodies of water_burnt",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":550,
"cid":13,
"category":5,
"name":"Gold Standard City_environment_biodiversity_01_urban green space per capita or green area per 100000 residents",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":551,
"cid":14,
"category":5,
"name":"Gold Standard City_environment_biodiversity_02_annual change in forest area and land under cultivation",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":552,
"cid":15,
"category":5,
"name":"Gold Standard City_environment_biodiversity_03_area of forest under sustainable forest management as a percent of forest area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":553,
"cid":16,
"category":5,
"name":"Gold Standard City_environment_other_level_time and frequency of noise",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":554,
"cid":17,
"category":5,
"name":"Gold Standard City_environment_pollutants noise solid liquid waste from construction activities soil pollution_solid liquid waste from the construction stage",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":555,
"cid":18,
"category":5,
"name":"Gold Standard City_environment_climate change mitigation adaptation preparedness for extreme natural disasters_01_availability and implementation of transparent and detailed decarbonization strategy_2C or below global carbon budget_GHG emission targets for 2020_2030_2050",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":556,
"cid":19,
"category":5,
"name":"Gold Standard City_environment_climate change mitigation adaptation preparedness for extreme natural disasters_02_CO2 intensity of the power sector_new power generation capacity installed_kWh",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":557,
"cid":20,
"category":5,
"name":"Gold Standard City_environment_climate change mitigation adaptation preparedness for extreme natural disasters_03_CO2 intensity of the transport sector and of new cars and trucks",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":558,
"cid":21,
"category":5,
"name":"Gold Standard City_environment_climate change mitigation adaptation preparedness for extreme natural disasters_04_prioritization and implementation of city level adaptation plan_strategies and or inclusion of disaster risk management planning in city development planning",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":559,
"cid":22,
"category":5,
"name":"Gold Standard City_environment_climate change mitigation adaptation preparedness for extreme natural disasters_05_CO2 intensity of the building sector and of new buildings_kgCO2 per m2 per year",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":560,
"cid":23,
"category":5,
"name":"Gold Standard City_environment_sustainable infrastructure_01_modal split_public transport_share of each mode_cars_buses_coaches_trains",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":561,
"cid":24,
"category":5,
"name":"Gold Standard City_environment_sustainable infrastructure_02_kilometers of roads_bicycle path_sidewalk_pedestrians path per 100000 population_km",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":562,
"cid":25,
"category":5,
"name":"Gold Standard City_environment_sustainable infrastructure_03_percentage of buildings adhering to national international green building standard",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":563,
"cid":26,
"category":5,
"name":"Gold Standard City_environment_sustainable infrastructure_04_percentage of people within 0point5 km of puplic transit running at least every 20 minutes",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":564,
"cid":27,
"category":5,
"name":"Gold Standard City_environment_sustainable infrastructure_05_sustainable development strategy for each urban agglomeration above 250000",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":565,
"cid":28,
"category":5,
"name":"Gold Standard City_environment_environmental safeguards_01_precautionary approach to environmental challenges",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":566,
"cid":29,
"category":5,
"name":"Gold Standard City_environment_environmental safeguards_02_conversion or degradation of critical natural habitats",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":567,
"cid":30,
"category":5,
"name":"Gold Standard City_social_human rights_01_human rights abuses",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":568,
"cid":31,
"category":5,
"name":"Gold Standard City_social_human rights_02_involuntary settlement",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":569,
"cid":32,
"category":5,
"name":"Gold Standard City_social_human rights_03_damage on critical cultural heritage",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":570,
"cid":33,
"category":5,
"name":"Gold Standard City_social_labour standards_01_freedom of association and rights to collective bargaining ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":571,
"cid":34,
"category":5,
"name":"Gold Standard City_social_labour standards_02_safe working environment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":572,
"cid":35,
"category":5,
"name":"Gold Standard City_social_labour standards_03_forced or compulsory labour",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":573,
"cid":36,
"category":5,
"name":"Gold Standard City_social_labour standards_04_child labour",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":574,
"cid":37,
"category":5,
"name":"Gold Standard City_social_labour standards_05_discrimination based on gender_race_religion_sexual orientation_other basis",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":575,
"cid":38,
"category":5,
"name":"Gold Standard City_social_access to affordable and clean energy sources_01_share of the population with access to modern cooking solutions_by urban and rural",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":576,
"cid":39,
"category":5,
"name":"Gold Standard City_social_access to affordable and clean energy sources_02_share of the population with access to reliable electricity_by urban and rural",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":577,
"cid":40,
"category":5,
"name":"Gold Standard City_social_access to affordable and clean energy sources_03_rate of primary energy intensity improvement",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":578,
"cid":41,
"category":5,
"name":"Gold Standard City_social_access to affordable and clean energy sources_04_primary energy by type",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":579,
"cid":42,
"category":5,
"name":"Gold Standard City_social_access to affordable and clean energy sources_05_percentage share amongst four key sources_coal_oil_gas_renewables_in total generation or consumption at city level",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":580,
"cid":43,
"category":5,
"name":"Gold Standard City_social_access to affordable and clean energy sources_06_support incentive mechanism for promotion of renewable energy",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":581,
"cid":44,
"category":5,
"name":"Gold Standard City_social_quality of employment_01_training events for health and safety at work place",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":1,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":582,
"cid":45,
"category":5,
"name":"Gold Standard City_social_quality of employment_02_type of jobs generated_high or low skill jobs_temporary or permanent",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":583,
"cid":46,
"category":5,
"name":"Gold Standard City_social_quality of employment_03_share of informal employment in total employment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":584,
"cid":47,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_01_percentage of urban population living in slums or settlements - MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":585,
"cid":48,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_02_percentage of the population living below urban poverty line",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":586,
"cid":49,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_03_road traffic deaths per 100000 population",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":587,
"cid":50,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_04_incidence rate of diarrheal disease in children under five years",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":588,
"cid":51,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_05_percentage of women and men in urban areas with security of tenure_measured by percentage with documented rights to housing",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":589,
"cid":52,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_06_percentage of population using basic sanitation services_by urban and rural_modified MDG indicator",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":590,
"cid":53,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_07_percentage of households with toilet facility",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":591,
"cid":54,
"category":5,
"name":"Gold Standard City_social_livelihood of poor_08_continuity of water services_hours per day of continuous water supply",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":592,
"cid":55,
"category":5,
"name":"Gold Standard City_economic and technical development_quantitative employment and income generation_01_number of job created",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":593,
"cid":56,
"category":5,
"name":"Gold Standard City_economic and technical development_quantitative employment and income generation_02_local employment for skilled unskilled and permanent jobs",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":594,
"cid":57,
"category":5,
"name":"Gold Standard City_economic and technical development_access to investment_01_amount of domestic investment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":595,
"cid":58,
"category":5,
"name":"Gold Standard City_economic and technical development_access to investment_02_amount of foreign direct investment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":596,
"cid":59,
"category":5,
"name":"Gold Standard City_economic and technical development_technology transfer and technology self reliance_01_number of workshop_seminars_training_related activities for capacity buildings",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":597,
"cid":60,
"category":5,
"name":"Gold Standard City_economic and technical development_technology transfer and technology self reliance_02_amount of financial resources provided for the capacity building for development and transfer technology",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":598,
"cid":61,
"category":5,
"name":"Gold Standard City_economic and technical development_technology transfer and technology self reliance_03_number of participants or experts in training programmes on the development and transfer of technology",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":599,
"cid":62,
"category":5,
"name":"Gold Standard City_economic and technical development_technology transfer and technology self reliance_04_total volume_number and dollar value_of joint research and development opportunities_environmental_sound technology_ESTs",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":600,
"cid":63,
"category":5,
"name":"Gold Standard City_governance_governance safeguard_corruption",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":601,
"cid":64,
"category":5,
"name":"Gold Standard City_governance_participation and civic engagement_requirement of stakeholder involvement in decision making and implementing of urban policies and strategies",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":602,
"cid":65,
"category":5,
"name":"Gold Standard City_governance_institutional capacity_01_integration of climate change_adaptation measures in the city_including sector_planning",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":603,
"cid":66,
"category":5,
"name":"Gold Standard City_governance_institutional capacity_02_evidence of strengthened capacity and coordination mechanism to mainstream the climate resilience",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":604,
"cid":67,
"category":5,
"name":"Gold Standard City_governance_capacity building and awareness_no of training events for capacity buildings and awareness",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":605,
"cid":1,
"category":6,
"name":"CPSSP_01_livable built environment_01_plan for multimodal transportation_multimodal transportation system allows people to use a variety of transportation modes_ walking_biking_and other mobility devices_wheelchairs_as well as transit_ reduce dependence on automobiles_encourages more active forms of personal transportation_improving health outcomes_increasing the mobility of those who are unable or unwilling to drive_youth_persons with disabilities_the elderly_Fewer cars on the road also translates to reduced air pollution_greenhouse gas emissions_health and environmental benefits",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":606,
"cid":2,
"category":6,
"name":"CPSSP_01_livable built environment_02_plan for transit oriented development_transit oriented development_TOD_ concentration higher density mixed use development around transit stations and along transit lines_such that the location and the design of the development encourage transit use and pedestrian activity_ communities to focus new residential and commercial development in areas that are well connected to public transit_ enables residents to more easily use transit service_which can reduce vehicle miles traveled and fossil fuels consumed and associated pollution and greenhouse gas emissions_ It can also reduce the need for personal automobile ownership_resulting in a decreased need for parking spaces and other automobile oriented infrastructure",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":607,
"cid":3,
"category":6,
"name":"CPSSP_01_livable built environment_03_coordinate regional transportation investments with job clusters_ areas of high employment densities_ transportation efficiency and economic development_ creating and improving access to employment opportunities_particularly for disadvantaged populations without easy access to personal automobiles",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":608,
"cid":4,
"category":6,
"name":"CPSSP_01_livable built environment_04_provide complete streets serving multiple functions_designed and operated with all users in mind_including motorists_pedestrians_bicyclists_public transit riders_ages and abilities_to support a multi modal transportation system_ street network safely and conveniently accommodates all users and desired functions_ not all modes or functions will be equally prioritized on any given street segment_multiple functions can accommodate travel_social interaction_and commerce_to provide for more vibrant neighborhoods and more livable communities",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":609,
"cid":5,
"category":6,
"name":"CPSSP_01_livable built environment_05_plan for mixed land use patterns that are walkable and bikeable_residential and non residential land uses located in close proximity to one another_ housing in close proximity to everyday destinations_shops_ schools_civic places_workplaces_ walking and biking and reduce the need to make trips by automobile_safe_convenient_accessible_and attractive design features_sidewalks_bike_street furniture_bicycle facilities_street trees",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":1,
"education":1,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":610,
"cid":6,
"category":6,
"name":"CPSSP_01_livable built environment_06_plan for infill development_development or redevelopment of undeveloped or underutilized parcels of land in otherwise built up areas_which are usually served by or have ready access to existing infrastructure and services_existing infrastructure while helping to steer development away from greenfield sites on the urban fringe_which are more expensive to serve with infrastructure and services",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":611,
"cid":7,
"category":6,
"name":"CPSSP_01_livable built environment_07_encourage design standards appropriate to the community context_neighborhood_corridor_special district_or jurisdiction as a whole_function and aesthetic appeal of a community_building placement_building massing and materials_the location and appearance of elements_landscape_signage_street furniture_community context and that enhances sense of place",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":1,
"income":null
},
{
"id":612,
"cid":8,
"category":6,
"name":"CPSSP_01_livable built environment_08_provide accessible public facilities and spaces_communities_persons of all ages and abilities_equitably distributed throughout the community_located and designed to be safe_served by different transportation modes_and accessible to visitors with mobility impairments",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":613,
"cid":9,
"category":6,
"name":"CPSSP_01_livable built environment_09_conserve and reuse historic resources_ historic resources are buildings_sites_landmarks_districts_cultural heritage of a community_resources eligible for listing on the national register of historic places_or local inventory of historic resources_ conservation and reuse of historic resources_sense of place_economy _tourism_environment_construct new buildings that consume land and resources ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":614,
"cid":10,
"category":6,
"name":"CPSSP_01_livable built environment_10_implement green building design and energy conservation_minimize the environmental impacts of the building over the course of its lifespan_energy and resource efficiency_waste reduction and pollution prevention_and occupant health and productivity_reducing energy consumption through energy efficiency or behavioral change",
"energy":1,
"transit":null,
"waste":1,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":615,
"cid":11,
"category":6,
"name":"CPSSP_01_livable built environment_11_discourage development in hazard zones_green building designs that meet the standards of the US green building council leadership in energy and environmental design _LEED_ or similar rating system are energy and resource efficient_reduce waste and pollution_improve occupant health and productivity_energy conservation_reduce energy consumption through energy efficiency or behavioral change_energy costs and improve environmental quality and community health_code requirements_regulatory incentives_and investment programs",
"energy":1,
"transit":null,
"waste":1,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":616,
"cid":12,
"category":6,
"name":"CPSSP_02_harmony with nature_01_restore connect and protect natural habitats and sensitive lands_natural habitats are areas or landscape_wetlands_riparian corridors_and woodlands_inhabited by a species or community of species_steep slopes and geographically unstable areas_ contain natural features_disturbed by human activity_resources_environmental benefits_restoring degraded habitat natural diversity ecosystem services",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":617,
"cid":13,
"category":6,
"name":"CPSSP_02_harmony with nature_02_plan for the provision and protection of green infrastructure_green infrastructure network of green open spaces_including parks_greenways_and protected lands_natural topography and vegetation to capture_store_stormwater run off_often in urban settings_bioswales_rain gardens_green roofs_ecosystem services to communities, _wildlife habitat_stormwater management_and recreational opportunities",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":618,
"cid":14,
"category":6,
"name":"CPSSP_02_harmony with nature_03_encourage development that respects natural topography_sensitive natural topography includes features such as hillsides_ridges_steep slopes_or lowlands_ private development and public infrastructure_construction costs_minimize natural hazard risks from flooding or landslides_mitigate the impacts of construction on natural resources_including soil_vegetation,_ water systems",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":619,
"cid":15,
"category":6,
"name":"CPSSP_02_harmony with nature_04_enact policies to reduce carbon footprints_carbon footprint_carbon dioxide and other greenhouse gases emitted_individual_company_or city_in a certain time frame_environmental impact_lifestyle or operation_direct consumption of fossil fuels as well as indirect emissions_manufacture and transport of all goods and services_policies designed to reduce the carbon footprint_environment_air quality and health_energy conservation economic benefits for local governments and community members",
"energy":1,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":620,
"cid":16,
"category":6,
"name":"CPSSP_02_harmony with nature_05_comply with state and local air quality standards_air quality_pollutants in the air during a given period in a defined area_environmental protection agency_ air quality standards for ground level ozone_lead_particulate matter_carbon monoxide_sulfur dioxide_nitrogen dioxide to protect public health and the environment and enforced by state and local governments_pollutants may come from mobile sources_cars and trucks_area sources _small businesses_or point sources_power ",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":1,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":621,
"cid":17,
"category":6,
"name":"CPSSP_02_harmony with nature_06_encourage climate change adaptation_adapting to climate change_natural and human systems_sea level rise_extreme weather events as well as long-term shifts in precipitation levels_growing season length_native vegetation and wildlife populations_community vulnerability and minimize adverse effects on the environment_ economy_public health",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":622,
"cid":18,
"category":6,
"name":"CPSSP_02_harmony with nature_07_provide for renewable energy use_renewable energy sources_ sun or natural movements and mechanisms of the environment including solar_wind_biomass_hydropower_ocean thermal_wave action_tidal action_coal-fired energy plants_fossil fuels",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":623,
"cid":19,
"category":6,
"name":"CPSSP_02_harmony with nature_08_provide for solid waste reduction_solid waste is garbage or refuse resulting from human activities_food scraps_yard waste_packaging materials_broken or discarded household items_construction and demolition debris_solid waste items_glass_luminum and other metals_paper and cardboard_plastics_organic materials_recycled into new products or composted",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":1,
"materials":1,
"existing":null,
"income":null
},
{
"id":624,
"cid":20,
"category":6,
"name":"CPSSP_02_harmony with nature_09_encourage water conservation and plan for a lasting water supply_reducing water use by buildings and landscape _water conservation and planning for a lasting water supply_ community long term sustainability_region limited precipitation or other sources of water_ground or surface water sources supply system to deliver water",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":1,
"existing":1,
"income":null
},
{
"id":625,
"cid":21,
"category":6,
"name":"CPSSP_02_harmony with nature_10_protect and manage streams watersheds flood plains_watershed is an area of land drained by a river_river system_or other body of water_flood plain is an area of low lying ground adjacent to a body of water that is susceptible to inundation_ urban environments_constructing buildings in the floodplain negatively affecting the natural and beneficial functions they provide_Watershed management protecting water supply_water quality_drainage_stormwater run off",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":626,
"cid":22,
"category":6,
"name":"CPSSP_03_resilient economy_01_provide the physical capacity for economic growth_economic growth_goods and services produce over time_commercial and industrial development and redevelopment for nonresidential land uses_communities land and structures appropriately built_sized_located to support existing and future production of goods and services",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":627,
"cid":23,
"category":6,
"name":"CPSSP_03_resilient economy_02_plan for a balanced land use mix for fiscal sustainability_land use mix_residential and non residential uses_public services to residents_business owners_visitors_tax or user-fee revenue",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":628,
"cid":24,
"category":6,
"name":"CPSSP_03_resilient economy_03_plan for transportation access to employment centers_high job density are accessible to employees via one or more travel modes_automobile_transit_bicycling_walking_ commuting options_access to employment opportunities_articularly among populations that may not have personal vehicles",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":629,
"cid":25,
"category":6,
"name":"CPSSP_03_resilient economy_04_promote green businesses and jobs_environmentally friendly products and services_agricultural_manufacturing_research and development_administrative_service_or other business activities that contribute substantially to preserving or restoring environmental quality_industrial processes with closed loop systems in which the wastes of one industry are the raw materials for another",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":1,
"existing":null,
"income":null
},
{
"id":630,
"cid":26,
"category":6,
"name":"CPSSP_03_resilient economy_05_encourage community based economic development and revitalization_businesses that serve local needs and are compatible with the vision_character_cultural values of the community_local resources_economic opportunities _ improving social conditions and supporting locally owned and produced goods and services_sense of place_reduce the need for imports_local economy_ revitalization of downtowns_ommercial areas_neighborhoods",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":631,
"cid":27,
"category":6,
"name":"CPSSP_03_resilient economy_06_provide and maintain infrastructure capacity in line with growth or decline demands_structures and networks are appropriately sized to adequately serve existing and future development_ quality of service provision with costs to the local government_neighborhoods experiencing protracted population decline_residential uses to green infrastructure_urban agriculture_enewable energy production",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":632,
"cid":28,
"category":6,
"name":"CPSSP_03_resilient economy_07_plan for post disaster economic recovery_post disaster economic recovery before a disaster happens helps communities resume economic activities following damage or destruction by a natural or human made disaster_hurricane_landslide_wildfire_earthquake_terrorist attack_polices and implementation tools ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":633,
"cid":29,
"category":6,
"name":"CPSSP_04_interwoven equity_01_provide a range of housing types_residential units of different sizes_configurations_tenures_price points located in building_ages_ownership structures_ lifestyle choices and affordability_households of different sizes and income level_ close proximity",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":634,
"cid":30,
"category":6,
"name":"CPSSP_04_interwoven equity_02_plan for jobs and housing balance_equal number of jobs and housing units _households_ within a commuter shed_labor force living in the commuter shed_vehicle miles traveled_worker productivity_quality of life_ transportation investments_employment opportunities for disadvantaged populations",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":635,
"cid":31,
"category":6,
"name":"CPSSP_04_interwoven equity_03_plan for the physical environmental and economic improvement of at risk distressed and disadvantaged neighborhoods_ falling property values_high real estate foreclosure rates_rapid depopulation_physical deterioration_distressed neighborhoods_physical deterioration _cheap land on the urban fringe_aging building stock_economic restructuring_land speculation_dissolution or relocation of anchor institutions_high levels of poverty and unemployment and low levels of educational attainment_abandoned buildings_graffiti_vandalism_social disorder_crime_violence_drinking and drug ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":1,
"income":1
},
{
"id":636,
"cid":32,
"category":6,
"name":"CPSSP_04_interwoven equity_04_plan for improved health and safety for at risk populations_health or safety impacts_race or ethnicity_socioeconomic status_geography_gender_age_behavior_disability status_natural or human-made disaster or period of extreme weather_or throughout an indefinite period of localized instability related to an economic downturn or a period of social turmoil_children_elderly_persons with disabilities_living in institutionalized settings_ limited english proficiency_ transportation disadvantaged",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":637,
"cid":33,
"category":6,
"name":"CPSSP_04_interwoven equity_05_provide accessible and quality public services facilities and health care to minority and low income neighborhoods_ building or property_library_park_community center owned_leased_ funded by a public entity_public services_facilities_health care _public have safe and convenient transportation options to reach quality services and facilities_minority and low income neighborhoods are often underserved by public services and facilities and healthcare providers",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":638,
"cid":34,
"category":6,
"name":"CPSSP_04_interwoven equity_06_upgrade infrastructure and facilities in older and substandard areas_ water mains_storm and sanitary sewers_electrical grids_telecommunications facilities_transportation facilities _bridges_tunnels_roadways_addition or replacement of existing components with newer versions_older area is a neighborhood_corridor_district occupied for multiple decades_ a substandard area is a neighborhood_district_ corridor with infrastructure that fails to meet established standards",
"energy":1,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":639,
"cid":35,
"category":6,
"name":"CPSSP_04_interwoven equity_07_plan for workforce diversity and development_employment of a wide variety of people in terms of age_cultural background_physical ability_r race and ethnicity_religion_and gender identity_economic development strategy_region economic stability_ local workforce or training workers to meet the labor needs of local industries",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":640,
"cid":36,
"category":6,
"name":"CPSSP_04_interwoven equity_08_protect vulnerable populations from natural hazards_ natural hazard is a natural event that threatens lives_property_floods_high wind events_landslides, earthquakes_wildfires_vulnerable neighborhoods face higher risks_disaster events occur_location_socioeconomic status or resources_lack of leadership and organization_lack of planning",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":641,
"cid":37,
"category":6,
"name":"CPSSP_04_interwoven equity_09_promote environmental justice_fair treatment and meaningful involvement of all people_regardless of race_color_national origin_or income_in the development_implementation and enforcement of environmental laws_regulations_policies_ communities and persons _protection from environmental and health hazards_equal decision making processes_healthy environments live_learn_work",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":642,
"cid":38,
"category":6,
"name":"CPSSP_05_healthy community_01_reduce exposure to toxins and pollutants in the natural and built environments_disease in living organisms_waste substances or forms of energy_noise_light_heat_often resulting from industrial processes_contaminate air_water_soil _changes in the environment_carbon monoxide and other gases _particulate matter _fossil fuel combustion_toxic chemicals used or created in industrial processes_pesticides and excess nutrients from agricultural operations_toxic gases released by paints or adhesives",
"energy":1,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":643,
"cid":39,
"category":6,
"name":"CPSSP_05_healthy community_02_plan for increased public safety through reduction of crime and injuries_crimes or disasters_danger_injury_or damage to the general public_governmental responsibility_police_fire_emergency services_also environmental design using crime prevention through environmental design (CPTED) principles",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":644,
"cid":40,
"category":6,
"name":"CPSSP_05_healthy community_03_plan for the mitigation and redevelopment of brownfields for productive uses_abandoned_idled_underused real property where expansion or redevelopment is complicated by the presence or potential presence of environmental contamination_environmental assessment to determine the extent of contamination and to develop remediation strategies_site cleanup_market forces_reuse options_open space to mixed use development",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":645,
"cid":41,
"category":6,
"name":"CPSSP_05_healthy community_04_plan for physical activity and healthy lifestyles_individual practices and behavioral choices that enhance health and wellbeing_physical environment can influence rates of physical activity and health benefits_active transportation facilities _sidewalks and bike lanes_accessible_equitably distributed recreational opportunities support physical activity and healthy lifestyles",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":646,
"cid":42,
"category":6,
"name":"CPSSP_05_healthy community_05_provide accessible parks recreation facilities greenways and open space near all neighborhoods_natural state or improved with facilities for rest and recreation_greenways are strips of undeveloped land that provide corridors for environmental and recreational use and connect areas of open space_benefits to residents_physical activity_proximity of parks to neighborhoods _social and environmental impediments such as crime_unsafe pedestrian conditions_noxious land uses_ type of park and its function and design are appropriate for its locational context",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":647,
"cid":43,
"category":6,
"name":"CPSSP_05_healthy community_06_plan for access to healthy locally grown foods for all neighborhoods_fresh healthy foods_obesity and negative health outcomes_urban areas_buying affordable or good-quality fresh food_ low in fat_sodium_cholesterol_locally grown goods in proximity to consumers in terms of both geographic distance and the supply chain_backyards and community gardens_farms within the region or state",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":648,
"cid":44,
"category":6,
"name":"CPSSP_05_healthy community_07_plan for equitable access to health care providers schools public safety facilities and arts and cultural facilities_equitable access ensures services and facilities_social or economic background_healthcare providers individuals_institutions_agencies that provide healthcare services to consumers_schools education or instruction_public safety facilities_emergency services to a community_police and fire protection_performing arts centers_concert halls_museums_galleries",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":649,
"cid":45,
"category":6,
"name":"CPSSP_06_responsible regionalism_01_coordinate local land use plans with regional transportation investments_neighborhood_corridor_district plan describing or depicting desirable future uses of land within a jurisdiction_regional transportation investments are any projects listed in a transportation improvement program intended to improve a transportation network serving a multi jurisdictional area_often included in metropolitan planning organization plans_highways and streets_public transit_pedestrian and bicycle systems",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":650,
"cid":46,
"category":6,
"name":"CPSSP_06_responsible regionalism_02_coordinate local and regional housing plan goals_regional housing plan current housing conditions and describing or depicting desirable future housing conditions multijurisdictional area_ fair share plans establishing target affordable housing unit allocations among constituent jurisdictions_local communities affordable housing_regional housing plans",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":651,
"cid":47,
"category":6,
"name":"CPSSP_06_responsible regionalism_03_coordinate local open space plans with regional green infrastructure plans_local open space plan functional plan or comprehensive plan element_local jurisdiction_regional green infrastructure plan_parks_greenways_protected lands_ecological and public benefits_ trails",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":652,
"cid":48,
"category":6,
"name":"CPSSP_06_responsible regionalism_04_delineate designated growth areas that are served by transit_local or regional higher density development_including public transportation_growth over a 20-year timeframe_ municipality_county_region_compact_resource efficient pattern of development",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":653,
"cid":49,
"category":6,
"name":"CPSSP_06_responsible regionalism_05_promote regional cooperation and sharing of resources_regional cooperation sharing of resources covers any situation where multiple jurisdictions coordinate the provision of public services and facilities_ share equipment or facilities_consolidate service or facility provision_share a tax base_local jurisdictions share tax _economic disparities",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":654,
"cid":50,
"category":6,
"name":"CPSSP_06_responsible regionalism_06_enhance connections between local activity centers and regional destinations_node containing a high concentration of employment and commerce_regional destination trip ends_transportation network_job cluster_shopping or cultural center_district_park or recreational facility_surface streets_grade separated highways_off road trails_transit corridors",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":655,
"cid":51,
"category":6,
"name":"CPSSP_06_responsible regionalism_07_coordinate local and regional population and economic projections_employment by industry or sector_personal income_public revenue_common time horizons for population and economic projections are 20 to 30 years_risk of planning cross purposes as the result of inconsistent data",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":656,
"cid":52,
"category":6,
"name":"CPSSP_06_responsible regionalism_08_include regional development visions and plans in local planning scenarios_ plan development patterns across a multijurisdictional area_policy_demographic_economic assumptions_ participants collective vision",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":657,
"cid":53,
"category":6,
"name":"CPSSP_06_responsible regionalism_09_encourage consistency between local capital improvement programs and regional infrastructure priorities_local jurisdiction during a multiyear_monetary resources_investment policies that identify regional infrastructure facility_multijurisdictional area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":658,
"cid":54,
"category":6,
"name":"CPSSP_07_authentic participation_01_engage stakeholders at all stages of the planning process_creating a community vision to defining goals_principles_objectives_implementation and evaluation_reflects community values and addresses priority and needs_engagement public understanding and ownership of the adopted plan ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":659,
"cid":55,
"category":6,
"name":"CPSSP_07_authentic participation_02_seek diverse participation in the plan development process_wide range of participants across generations_ethnic groups_income_community governance_including representatives of disadvantaged and minority communities",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":660,
"cid":56,
"category":6,
"name":"CPSSP_07_authentic participation_03_promote leadership development in disadvantaged communities during the planning process_leaders and respected members_participation in the process can encourage development of emerging leaders",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":661,
"cid":57,
"category":6,
"name":"CPSSP_07_authentic participation_04_develop alternative scenarios of the future_policy frameworks and development patterns_communities to envision the consequences of business as usual_planning process",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":662,
"cid":58,
"category":6,
"name":"CPSSP_07_authentic participation_05_provide ongoing and understandable information for all participants_information available in multiple_languages_non english speakers_such communication may involve translating professional terms into more common lay vocabulary",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":663,
"cid":59,
"category":6,
"name":"CPSSP_07_authentic participation_06_use a variety of communications channels to inform and involve the community_planning process include traditional media_social media_internet based platforms",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":664,
"cid":60,
"category":6,
"name":"CPSSP_07_authentic participation_07_continue to engage the public after the comprehensive plan is adopted_stakeholder engagement should not end with the adoption of the comprehensive plan_engage stakeholders during the implementing_updating_amending of the plan_public remains involved with ongoing proposals and decisions",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":665,
"cid":61,
"category":6,
"name":"CPSSP_08_accountable Implementation_01_indicate specific actions for implementation_accountable implementation policy_regulatory_investment_and programmatic actions that indicate the responsible agency_recommended timeframe_possible sources of funding",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":666,
"cid":62,
"category":6,
"name":"CPSSP_08_accountable Implementation_02_connect plan implementation to the capital planning process_prioritize investments in facilities and infrastructure_capital planning",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":667,
"cid":63,
"category":6,
"name":"CPSSP_08_accountable Implementation_03_connect plan implementation to the annual budgeting process_plan objectives linked to budget_community_planning outcomes",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":668,
"cid":64,
"category":6,
"name":"CPSSP_08_accountable Implementation_04_establish interagency and organizational cooperation_coordinating the activities and schedules of internal departments and external agencies and organizations increases implementation effectiveness and can leverage resources for achieving local and regional planning goals",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":669,
"cid":65,
"category":6,
"name":"CPSSP_08_accountable Implementation_05_identify funding sources for plan implementation_coordinating public and private funding sources_federal_state_and foundation grant programs_facilitates implementation of priority plan items_community support",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":670,
"cid":66,
"category":6,
"name":"CPSSP_08_accountable Implementation_06_establish indicators benchmarks and targets_indicators allow quantitative measurement of achievement of social_environmental_economic _ existing conditions_monitoring of progress in plan implementation",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":671,
"cid":67,
"category":6,
"name":"CPSSP_08_accountable Implementation_07_regularly evaluate and report on implementation progress_process for evaluating and reporting plan implementation status and progress to both the public and elected officials following adoption ensures accountability and keeps the community informed about plan implementation progress",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":672,
"cid":68,
"category":6,
"name":"CPSSP_08_accountable Implementation_08_adjust the plan as necessary based on evaluation_process for adjusting plan goals_strategies_and priorities over time as conditions change or targets are not met keeps the plan current and in line with present conditions_ evaluation of and reporting on implementation progress",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":673,
"cid":1,
"category":7,
"name":"ECI_01_citizens satisfaction with the local community_01 level of social relationships",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":674,
"cid":2,
"category":7,
"name":"ECI_01_citizens satisfaction with the local community_02 opportunities to do hobbies and enjoy leisure",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":675,
"cid":3,
"category":7,
"name":"ECI_01_citizens satisfaction with the local community_03 level of basic services_health and social services_schools_public transport",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":676,
"cid":4,
"category":7,
"name":"ECI_01_citizens satisfaction with the local community_04 natural and built environments",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":677,
"cid":5,
"category":7,
"name":"ECI_01_citizens satisfaction with the local community_05 employment opportunities",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":678,
"cid":6,
"category":7,
"name":"ECI_01_citizens satisfaction with the local community_06 opportunities to participate in local planning processes",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":679,
"cid":7,
"category":7,
"name":"ECI_02_local contribution to global climate change_annual tons of CO2 equivalent emissions_refers to anthropogenic emissions of carbon dioxide differentiated by sector_residential_industry_tertiary and transport_and energy vector_methane emissions from waste reported in terms of CO2 equivalent emissions",
"energy":1,
"transit":1,
"waste":1,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":680,
"cid":8,
"category":7,
"name":"ECI_03_local mobility and passenger transportation_01 the number of trips that_on average,_each citizen makes during the day_where trip indicates a displacement with a starting-point and a destination_number of daily trips per capita",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":681,
"cid":9,
"category":7,
"name":"ECI_03_local mobility and passenger transportation_02 the reason for the trips and their regularity during the week_allowing for the trips to be classified as either systematic or unsystematic",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":682,
"cid":10,
"category":7,
"name":"ECI_03_local mobility and passenger transportation_03 the average distance covered by each citizen during the day _km/per capita",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":683,
"cid":11,
"category":7,
"name":"ECI_03_local mobility and passenger transportation_04 the time taken by each citizen for his/her trips minutes taken for the trips",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":684,
"cid":12,
"category":7,
"name":"ECI_03_local mobility and passenger transportation_05 modes of transport used for the trips and/or for the different distances associated with each trip_% relating to the different modes of transport considered",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":685,
"cid":13,
"category":7,
"name":"ECI_03_local mobility and passenger transportation_06 analysis of trips taken by private car_kind of car park used, number of passengers transported and reason for the choice",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":686,
"cid":14,
"category":7,
"name":"ECI_03_local mobility and passenger transportation_07 qualitative level of the systematic trips",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":687,
"cid":15,
"category":7,
"name":"ECI_04_availability of local public open areas and services_01 public parks_gardens or open spaces_or the exclusive use of pedestrians and cyclists_except green traffic islands or dividers_graveyards _unless the local authority recognises their recreational function or natural_historical or cultural importance",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":688,
"cid":16,
"category":7,
"name":"ECI_04_availability of local public open areas and services_02 open air sports facilities accessible to the public free of charge",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":689,
"cid":17,
"category":7,
"name":"ECI_04_availability of local public open areas and services_03 private areas_agricultural areas_ private parks_accessible to the public free of charge",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":690,
"cid":18,
"category":7,
"name":"ECI_04_availability of local public open areas and services_04 primary public health services_general practitioners_hospitals_first aid posts_family advice bureaux or other public centres supplying medical services such as diagnosis or specialist examinations",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":691,
"cid":19,
"category":7,
"name":"ECI_04_availability of local public open areas and services_05 collective transport routes that at least for part of a normal business day have a minimum frequency half hourly service",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":692,
"cid":20,
"category":7,
"name":"ECI_04_availability of local public open areas and services_06 public schools_compulsory attendance schools_kindergartens",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":693,
"cid":21,
"category":7,
"name":"ECI_04_availability of local public open areas and services_07 bakeries and greengroceries",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":694,
"cid":22,
"category":7,
"name":"ECI_04_availability of local public open areas and services_08 recycling facilities or services for solid waste_including recycling bins",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":695,
"cid":23,
"category":7,
"name":"ECI_05_quality of the air_01 the number of times the limit value is exceeded for the following air pollutants_sulphur dioxide_nitrogen dioxide _particulate matter _carbon monoxide_ozone ",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":696,
"cid":24,
"category":7,
"name":"ECI_05_quality of the air_02 the existence and level of implementation of the plan for the improvement management of the quality of the air",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":697,
"cid":25,
"category":7,
"name":"ECI_06_children journeys to and from school_01 walking",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":698,
"cid":26,
"category":7,
"name":"ECI_06_children journeys to and from school_02 cycling",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":699,
"cid":27,
"category":7,
"name":"ECI_06_children journeys to and from school_03 collective transport",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":700,
"cid":28,
"category":7,
"name":"ECI_06_children journeys to and from school_04 private car",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":701,
"cid":29,
"category":7,
"name":"ECI_06_children journeys to and from school_05 other",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":702,
"cid":30,
"category":7,
"name":"ECI_07_sustainable management of local authority and local enterprises_01 percentage of organisations that have adopted environmental management procedures",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":703,
"cid":31,
"category":7,
"name":"ECI_07_sustainable management of local authority and local enterprises_02 percentage of organisations that have adopted social management procedures",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":704,
"cid":32,
"category":7,
"name":"ECI_07_sustainable management of local authority and local enterprises_03 percentage of organisations that have adopted environmental and social management procedures",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":705,
"cid":33,
"category":7,
"name":"ECI_07_sustainable management of local authority and local enterprises_04 percentage of total number of large enterprises that have adopted environmental and/or social management procedures_classified according to the NACE code",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":706,
"cid":34,
"category":7,
"name":"ECI_07_sustainable management of local authority and local enterprises_05 percentage of total number of small and medium sized enterprises that have adopted environmental and/or social management procedures_assified according to the NACE code_ 3 categories of SMEs",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":707,
"cid":35,
"category":7,
"name":"ECI_07_sustainable management of local authority and local enterprises_06 percentage of total number of public organisations that have adopted environmental and/or social management procedures",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":708,
"cid":36,
"category":7,
"name":"ECI_07_sustainable management of local authority and local enterprises_07 percentage of total number of non governmental organisations that have adopted environmental and or social management procedures_ broken down_into different types of organisations_example NGO_ charities",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":709,
"cid":37,
"category":7,
"name":"ECI_08_noise pollution_01 the estimated number of people living in dwellings exposed to each of the following bands of values of Lden in dBA_road_rail and air traffic noise and noise from industrial sources",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":710,
"cid":38,
"category":7,
"name":"ECI_08_noise pollution_02 the estimated total number of people living in dwellings exposed to each of the following bands of values of Lnight in dBA_ road_rail and air traffic noise and noise from industrial sources",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":711,
"cid":39,
"category":7,
"name":"ECI_08_noise pollution_03 the proportion of measurements corresponding to each of the above mentioned value bands of Lden and Lnight_and the total number of measurements taken",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":712,
"cid":40,
"category":7,
"name":"ECI_08_noise pollution_04 existence and figures corresponding to the percentage implementation for each single measure action identified in the action plan programme",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":713,
"cid":41,
"category":7,
"name":"ECI_09_sustainable land use_01 urbanised or artificially modelled land_the size of the artificially modelled area as a percentage of the total municipal area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":714,
"cid":42,
"category":7,
"name":"ECI_09_sustainable land use_02 derelict or contaminated land_the size of the derelict or contaminated area",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":715,
"cid":43,
"category":7,
"name":"ECI_09_sustainable land use_03 intensity of use_number of inhabitants per km2 of the area classified as urbanised land",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":716,
"cid":44,
"category":7,
"name":"ECI_09_sustainable land use_04 new development_new building on virgin area greenfield sites and new building on contaminated or derelict area_brownfield sites_compared to the total area ",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":717,
"cid":45,
"category":7,
"name":"ECI_09_sustainable land use_05 restoration of urban areas_renovation and conversion of derelict buildings_total number",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":718,
"cid":46,
"category":7,
"name":"ECI_09_sustainable land use_06 restoration of urban areas_renovation and conversion of derelict buildings_total of m2 of each floor",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":1,
"income":null
},
{
"id":719,
"cid":47,
"category":7,
"name":"ECI_09_sustainable land use_07 restoration of urban areas_redevelopment of derelict areas for new uses_including public open spaces_area in m2",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":1,
"income":null
},
{
"id":720,
"cid":48,
"category":7,
"name":"ECI_09_sustainable land use_08 restoration of urban areas_cleansing of contaminated land_area in m2",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":721,
"cid":49,
"category":7,
"name":"ECI_09_sustainable land use_10 protected areas_size of the protected area as a percentage of the total municipal area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":1,
"income":null
},
{
"id":722,
"cid":50,
"category":7,
"name":"ECI_10_products promoting sustainability_01 consumption_percentage of families buying sustainable products _per category and per given product out of total number of families",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":723,
"cid":51,
"category":7,
"name":"ECI_10_products promoting sustainability_02 consumption_percentage of families usually buying sustainable products_per category and per given product_out of families buying sustainable products",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":724,
"cid":52,
"category":7,
"name":"ECI_10_products promoting sustainability_02 availability_availability of sustainable products_number of retail outlets offering them and number of consumers daily served_percentage of certified products_per type of retail outlet and per given product_out of total products sold",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":725,
"cid":53,
"category":7,
"name":"ECI_10_products promoting sustainability_02 availability_number of specialised store_ example fair trade stores_organic stores per 10000 inhabitants",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":726,
"cid":54,
"category":7,
"name":"ECI_10_products promoting sustainability_03 green purchasing of local authority_existence of procedures that encourage purchases of eco labelled_organic_energy efficient_certified timber and fair trade products and public canteens that serve organic food",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":727,
"cid":55,
"category":7,
"name":"ECI_10_products promoting sustainability_03 green purchasing of local authority_use of recycled paper in local authority offices",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":728,
"cid":1,
"category":8,
"name":"GCI_performance indicators_city services_education_01 student teacher ratio_percentage of school-aged population enrolled in schools",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":729,
"cid":2,
"category":8,
"name":"GCI_performance indicators_city services_education_02 percentage of students completing primary and secondary education_survival rate_percentage of male school-aged population enrolled in schools",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":730,
"cid":3,
"category":8,
"name":"GCI_performance indicators_city services_education_03 percentage of students completing primary education_percentage of female school aged population enrolled in schools",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":731,
"cid":4,
"category":8,
"name":"GCI_performance indicators_city services_education_04 percentage of students completing secondary education",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":732,
"cid":5,
"category":8,
"name":"GCI_performance indicators_city services_fire and emergency response_01 number of firefighters per 100,000 population_response time for fire department from initial call",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":733,
"cid":6,
"category":8,
"name":"GCI_performance indicators_city services_fire and emergency response_02 number of fire related deaths per 100,000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":734,
"cid":7,
"category":8,
"name":"GCI_performance indicators_city services_health_01 number of in patient hospital beds per 100000 population_response time for fire department from initial call",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":735,
"cid":8,
"category":8,
"name":"GCI_performance indicators_city services_health_02 number of physicians per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":736,
"cid":9,
"category":8,
"name":"GCI_performance indicators_city services_health_03 average life expectancy",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":737,
"cid":10,
"category":8,
"name":"GCI_performance indicators_city services_health_04 under age five mortality per 1000 live births",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":738,
"cid":11,
"category":8,
"name":"GCI_performance indicators_city services_recreation_01 square metres of public indoor recreation space per capita",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":739,
"cid":12,
"category":8,
"name":"GCI_performance indicators_city services_recreation_02 square metres of public outdoor recreation space per capita",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":740,
"cid":13,
"category":8,
"name":"GCI_performance indicators_city services_safety_01 number of police officers per 100000 population_violent crime rate per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":741,
"cid":14,
"category":8,
"name":"GCI_performance indicators_city services_safety_02 number of homicides per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":742,
"cid":15,
"category":8,
"name":"GCI_performance indicators_city services_solid waste_01 percentage of city population with regular solid waste collection_percentage of the city solid waste that is disposed of in an incinerator",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":743,
"cid":16,
"category":8,
"name":"GCI_performance indicators_city services_solid waste_02 percentage of city�s solid waste that is recycled_percentage of the city solid waste that is burned openly",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":744,
"cid":17,
"category":8,
"name":"GCI_performance indicators_city services_solid waste_02 percentage of city�s solid waste that is recycled_percentage of the city solid waste that is disposed of in an open dump",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":745,
"cid":18,
"category":8,
"name":"GCI_performance indicators_city services_solid waste_02 percentage of city�s solid waste that is recycled_percentage of the city solid waste that is disposed of in a sanitary landfill",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":746,
"cid":19,
"category":8,
"name":"GCI_performance indicators_city services_solid waste_02 percentage of city�s solid waste that is recycled_percentage of the city solid waste that is disposed of by other means",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":1,
"materials":null,
"existing":null,
"income":null
},
{
"id":747,
"cid":20,
"category":8,
"name":"GCI_performance indicators_city services_transportation_01 km of high capacity public transit system per 100000 population_number of two wheel motorized vehicles per capita",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":748,
"cid":21,
"category":8,
"name":"GCI_performance indicators_city services_transportation_02 km of light passenger transit system per 100000 population_commercial air connectivity_number of non stop commercial air destinations",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":749,
"cid":22,
"category":8,
"name":"GCI_performance indicators_city services_transportation_03 number of personal automobiles per capita_transportation fatalities per 100000 population",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":750,
"cid":23,
"category":8,
"name":"GCI_performance indicators_city services_transportation_04 annual number of public transit trips per capita",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":751,
"cid":24,
"category":8,
"name":"GCI_performance indicators_city services_wastewater_01 percentage of city population served by_percentage of the city wastewater",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":752,
"cid":25,
"category":8,
"name":"GCI_performance indicators_city services_wastewater_02 wastewater collection_receiving primary treatment",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":753,
"cid":26,
"category":8,
"name":"GCI_performance indicators_city services_wastewater_03 percentage of the city wastewater that has received no treatment_percentage of the city wastewater receiving secondary treatment",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":754,
"cid":27,
"category":8,
"name":"GCI_performance indicators_city services_wastewater_03 percentage of the city wastewater that has received no treatment_percentage of the city wastewater receiving tertiary treatment",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":755,
"cid":28,
"category":8,
"name":"GCI_performance indicators_city services_water_01 percentage of city population with potable water supply service_total water consumption per capita (litres/day)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":756,
"cid":29,
"category":8,
"name":"GCI_performance indicators_city services_water_02 domestic water consumption per capita (litres/day)_percentage of water loss",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":757,
"cid":30,
"category":8,
"name":"GCI_performance indicators_city services_water_03 percentage of city population with sustainable access to an improved water source_average annual hours of water service interruption per household",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":758,
"cid":31,
"category":8,
"name":"GCI_performance indicators_city services_energy_01 percentage of city population with authorized electrical service_total electrical use per capita (kWh/year)",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":759,
"cid":32,
"category":8,
"name":"GCI_performance indicators_city services_energy_02 total residential electrical use per capita (kWh/year)_the average number of electrical interruptions per customer per year",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":760,
"cid":33,
"category":8,
"name":"GCI_performance indicators_city services_energy_02 total residential electrical use per capita (kWh/year)_average length of electrical interruptions (in hours)",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":761,
"cid":34,
"category":8,
"name":"GCI_performance indicators_city services_finance_01 debt service ratio _debt service expenditure as a percent of a municipality own source revenue_tax collected as percentage of tax billed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":762,
"cid":35,
"category":8,
"name":"GCI_performance indicators_city services_finance_01 debt service ratio _debt service expenditure as a percent of a municipality own source revenue_own source revenue as a percentage of total revenues",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":763,
"cid":36,
"category":8,
"name":"GCI_performance indicators_city services_finance_01 debt service ratio _debt service expenditure as a percent of a municipality own source revenue_capital spending as a percentage of total expenditures",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":764,
"cid":37,
"category":8,
"name":"GCI_performance indicators_city services_governance_percentage of women employed in the city government workforce",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":765,
"cid":38,
"category":8,
"name":"GCI_performance indicators_city services_urban planning_01 jobs housing ratio_areal size of informal settlements as a percent of city area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":766,
"cid":39,
"category":8,
"name":"GCI_performance indicators_city services_urban planning_01 jobs housing ratio_green area (hectares) per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":1,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":767,
"cid":40,
"category":8,
"name":"GCI_performance indicators_city quality of life_civic engagement_voter participation in last municipal election (as a percent of eligible voters)_citizen representation_ number of local officials elected to office per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":768,
"cid":41,
"category":8,
"name":"GCI_performance indicators_city quality of life_culture_percentage of jobs in the cultural sector",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":769,
"cid":42,
"category":8,
"name":"GCI_performance indicators_city quality of life_economy_percentage of persons in full time employment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":770,
"cid":43,
"category":8,
"name":"GCI_performance indicators_city quality of life_environment_PM10 concentration_greenhouse gas emissions measured in tonnes per capita",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":771,
"cid":44,
"category":8,
"name":"GCI_performance indicators_city quality of life_shelter_01 percentage of city population living in slums_percentage of households that exist without registered legal titles",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":772,
"cid":45,
"category":8,
"name":"GCI_performance indicators_city quality of life_shelter_02 number of homeless people per 100,000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":773,
"cid":46,
"category":8,
"name":"GCI_performance indicators_city quality of life_social equity_ percentage of city population living in poverty",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":774,
"cid":47,
"category":8,
"name":"GCI_performance indicators_city quality of life_technology and innovation_number of internet connections per 100000 population_number of new patents per 100000 per year",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":775,
"cid":48,
"category":8,
"name":"GCI_performance indicators_city quality of life_technology and innovation_number of internet connections per 100000 population_number of higher education degrees per 100000",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":776,
"cid":49,
"category":8,
"name":"GCI_performance indicators_city quality of life_technology and innovation_number of internet connections per 100000 population_number of telephone connections (landlines and cell phones) per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":777,
"cid":50,
"category":8,
"name":"GCI_performance indicators_city quality of life_technology and innovation_number of internet connections per 100000 population_number of landline phone connections per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":778,
"cid":51,
"category":8,
"name":"GCI_performance indicators_city quality of life_technology and innovation_number of internet connections per 100000 population_number of cell phone connections per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":779,
"cid":1,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_01 extreme income poverty_proportion of population below $1_25 (PPP) per day (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":780,
"cid":2,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_02 extreme multi dimensional poverty_proportion of population in extreme multidimensional poverty _ indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":781,
"cid":3,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_03 children with adequate caloric protein intake_prevalence of stunting in children under [5] years of age",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":782,
"cid":4,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_04 population with adequate caloric protein intake_proportion of population below minimum level of dietary energy consumption (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":783,
"cid":5,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_05 population with adequate micronutrient intake_proportion of population with shortfalls of any one of the following essential micronutrients_ indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":784,
"cid":6,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_06 impact of conflict and violence_violent injuries and deaths per 100000 population",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":785,
"cid":7,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_07 impact of conflict and violence_refugees and internal displacement caused by conflict and violence",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":786,
"cid":8,
"category":9,
"name":"SDG_01 end extreme poverty including hunger_08 support to vulnerable countries_percent of UN emergency appeals and funds for UN peacebuilding fund delivered",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":787,
"cid":9,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_01 economic development_GNI per capita (PPP, current US$ Atlas method)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":788,
"cid":10,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_02 labor market_share of informal employment in total employment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":789,
"cid":11,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_03 labor market_placeholder for index of decent work",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":790,
"cid":12,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_04 Nitrogen and phosphorus fluxes_excessive loss of reactive nitrogen to the environment (kg/ha) _ indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":791,
"cid":13,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_05 aerosol concentrations_aerosol optical depth (AOD)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":792,
"cid":14,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_06 release of ozone depleting substances_consumption of ozone depleting substances (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":793,
"cid":15,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_07 population dynamics_total fertility rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":794,
"cid":16,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_08 realization of sexual and reproductive health rights_contraceptive prevalence rate (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":795,
"cid":17,
"category":9,
"name":"SDG_02 achieve development within planetary boundaries_09 realization of sexual and reproductive health rights_unmet need for family planning (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":796,
"cid":18,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_01 access to early childhood development programs (ECD)_proportion of children receiving at least one year of a quality pre primary education program",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":797,
"cid":19,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_02 access to early childhood development programs (ECD)_early child development index (ECDI)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":798,
"cid":20,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_03 primary schooling outcomes_primary completion rates for girls and boys",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":799,
"cid":21,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_04 primary schooling outcomes_ poportion of girls and boys who master a broad range of foundational skills_ including in literacy and mathematics by the end of the primary school cycle",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":800,
"cid":22,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_05 secondary schooling outcomes_secondary completion rates for girls and boys",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":801,
"cid":23,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_06 secondary schooling outcomes_proportion of girls and boys who achieve proficiency across a broad range of learning outcomes_ including in reading and in mathematics by end of the secondary schooling cycle ",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":802,
"cid":24,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_07 youth participation in the labor force_percentage of young people not in education_training_or employment",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":1,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":803,
"cid":25,
"category":9,
"name":"SDG_03 ensure effective learning for all children and youth for life and livelihood_08 investing in youth_tertiary enrollment rates for girls and boys",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":804,
"cid":26,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_01 birth registration_percentage of children under age 5 whose birth is registered with a civil authority",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":805,
"cid":27,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_02 compliance with UN human rights treaties and protocols_compliance with recommendations from the universal periodic review and UN treaties",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":806,
"cid":28,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_03 discrimination_proportion of seats held by women and minorities in national parliament and or sub national elected office according to their respective share of the population (revised MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":807,
"cid":29,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_04 compliance with ILO standards_ratification and implementation of key ILO labor standards and compliance in law and practice",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":808,
"cid":30,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_05 inequality_proportion of households with incomes below 50% of median income _relative poverty",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":809,
"cid":31,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_06 inequality_gini coefficient",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":810,
"cid":32,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_07 violence against women_rate of women subjected to violence in the last 12 months by an intimate partner",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":811,
"cid":33,
"category":9,
"name":"SDG_04 achieve gender equality and social inclusion and human rights_08 violence against women and access to justice_percentage of referred cases of sexual and gender based violence against women and children that are investigated and sentenced",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":812,
"cid":34,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_01 physical access to primary health care_percent of population with access to basic primary health services_including EmOC_Indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":813,
"cid":35,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_02 financial access to health care_out of pocket expenditure on health as a percentage of total expenditure on health",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":814,
"cid":36,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_03 immunization coverage_percent of children receiving full immunization as recommended by WHO",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":815,
"cid":37,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_04 mental health coverage (example depression and mood disorders)_functioning programs of multi sectoral mental health promotion and prevention in existence_Indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":816,
"cid":38,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_05 child health_neonatal_infant_and under five mortality rates (modified MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":817,
"cid":39,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_06 maternal death_maternal mortality ratio (MDG Indicator) and rate",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":818,
"cid":40,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_07 life expectancy_healthy life expectancy at birth",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":819,
"cid":41,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_08 HIV and AIDS coverage_HIV prevalence_treatment rates_and mortality (modified MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":820,
"cid":42,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_09 malaria deaths_incidence and death rates associated with malaria (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":821,
"cid":43,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_10 TB deaths_incidence_ prevalence_and death rates associated with TB (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":822,
"cid":44,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_11 non communicable diseases_probability of dying between exact ages 30 and 70 from any of cardiovascular disease_ cancer_diabetes or chronic respiratory disease",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":823,
"cid":45,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_12 unhealthy behavior_percent of population overweight and obese",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":824,
"cid":46,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_13 healthy diets_household dietary diversity score",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":825,
"cid":47,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_14 unhealthy behavior_current use of any tobacco product (age-standardized rate)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":826,
"cid":48,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_15 unhealthy behavior_harmful use of alcohol",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":827,
"cid":49,
"category":9,
"name":"SDG_05 achieve health and wellbeing at all ages_16 subjective well being (evaluative)_Evaluative Wellbeing and Positive Mood Affect",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":828,
"cid":50,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_01 staple crop yields_crop yield gap (actual yield as % of attainable yield)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":829,
"cid":51,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_02 sustainability of agriculture_crop nitrogen use efficiency (%)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":830,
"cid":52,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_03_water productivity_crop water productivity _tons of harvested product per unit irrigation water_ indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":831,
"cid":53,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_04 food loss_share of agricultural produce loss and food waste (% of food production)_ indicator to be developed",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":832,
"cid":54,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_05 conversion of land to agricultural and other uses_annual change in forest area and land under cultivation (modified MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":833,
"cid":55,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_06 degradation of agricultural land_annual change in degraded or desertified arable land (% or ha)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":834,
"cid":56,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_07 impact of extreme climate events_economic losses from disasters in rural areas_by climatic and non-climatic events (in US$)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":835,
"cid":57,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_08 rural infrastructure and services_percentage of rural population using basic drinking water (modified MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":836,
"cid":58,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_09 rural infrastructure and services_proportion of rural population using basic sanitation services (modified MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":837,
"cid":59,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_10 rural infrastructure and services_access to all weather road (% access within number km distance to road)",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":838,
"cid":60,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_11 rural infrastructure and services_mobile broadband subscriptions per 100 inhabitants in rural areas",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":839,
"cid":61,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_12 rural infrastructure and services_access to drying_storage and processing facilities_ndicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":840,
"cid":62,
"category":9,
"name":"SDG_06 improve agriculture systems and raise rural prosperity_13 rural infrastructure and services_share of farmers covered by agricultural extension or equivalent programs _indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":841,
"cid":63,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_01 urban poverty_percentage of urban population with incomes below national extreme poverty line (adapted MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":842,
"cid":64,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_02 urban sustainable development_indicator on the deployment of a sustainable development strategy for each urban agglomeration above 250000 to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":843,
"cid":65,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_03 slum conditions_proportion of urban population living in slums or informal settlements (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":844,
"cid":66,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_04 access to water_percentage of urban population using basic drinking water (modified MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":845,
"cid":67,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_05 access to sanitation_percentage of urban population using basic sanitation (modified MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":846,
"cid":68,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_06 solid waste collection_proportion of urban households with weekly solid waste collection",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":847,
"cid":69,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_07 access to transportation_proportion of urban households with access to reliable public transportation",
"energy":null,
"transit":1,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":848,
"cid":70,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_08 access to ICT_mobile broadband subscriptions per 100 inhabitants in urban areas",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":849,
"cid":71,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_09 air quality_mean urban air pollution of particulate matter (PM10 and PM2_5)",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":850,
"cid":72,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_10 water quality and treatment_percentage of wastewater flows treated to national standards_by domestic and industrial source",
"energy":null,
"transit":null,
"waste":1,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":851,
"cid":73,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_11 urban green space_urban green space per capita",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":852,
"cid":74,
"category":9,
"name":"SDG_07 empower inclusive and productive and resilient cities_12 vulnerability to extreme climate events_economic losses from disasters in urban areas_by climatic and non climatic events (in US$)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":853,
"cid":75,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_01 access to energy_share of the population with access to modern cooking solutions (%)",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":854,
"cid":76,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_02 access to energy_share of the population with access to reliable electricity (%)",
"energy":1,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":855,
"cid":77,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_03 national deep decarbonization strategies_availability of a transparent and detailed deep decarbonization strategy_consistent with the 2Cglobal carbon budget_and with GHG emission targets for 2020_2030 and 2050",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":856,
"cid":78,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_04 GHG emissions_total energy and industry related GHG emissions by gas and sector_expressed as production and demand based emissions (tCO2e)",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":857,
"cid":79,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_05 GHG emission reduction measures_CO2 intensity of the power sector_and of new power generation capacity installed (gCO2 per kWh)",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":858,
"cid":80,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_06 GHG emission reduction measures_CO2 intensity of the transport sector (gCO2/vkm)_and of new cars (gCO2/pkm) and trucks (tCO2/tkm)",
"energy":null,
"transit":1,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":859,
"cid":81,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_07 GHG emissions from land use change_net GHG emissions in the Agriculture_ Forest and other Land Use (AFOLU) sector (tCO2e)",
"energy":null,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":1,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":860,
"cid":82,
"category":9,
"name":"SDG_08 curb human induced climate change and ensure sustainable energy_08 incentives to reduce GHG emissions_implicit incentives for low carbon energy in the electricity sector (measured as US$/MWh or US$ per ton avoided CO2)",
"energy":1,
"transit":null,
"waste":null,
"pollution":1,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":861,
"cid":83,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_01 ocean_ocean health index (national index)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":1,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":862,
"cid":84,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_02 biodiversity_Red List Index (by country and major species group)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":863,
"cid":85,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_03 critical biome management_protected areas overlay with biodiversity (regional_national_global level)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":864,
"cid":86,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_04 forests_area of forest under sustainable forest management as a percent of forest area",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":1,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":865,
"cid":87,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_05 sustainable fisheries management_proportion of fish stocks within safe biological limits (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":1,
"ecology":1,
"agriculture":null,
"safety":1,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":866,
"cid":88,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_06 trans boundary river shed management_reporting of international river shed authorities on trans boundary river shed management_indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":867,
"cid":89,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_07 water resource management_proportion of total water resources used (MDG Indicator)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":1,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":868,
"cid":90,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_08 access to land_access to land in rural areas index",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":1,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":869,
"cid":91,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_09 business code of behavior_publication of resource based contracts",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":870,
"cid":92,
"category":9,
"name":"SDG_09 Secure Ecosystem Services and Biodiversity and Ensure Good Management of Water and Oceans and Forests and Natural Resources_10 good governance and business code of behavior_publication of all payments made to governments under resource contracts",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":871,
"cid":93,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_01 integrated government reporting_country implements and reports on System of Environmental-Economic Accounting (SEEA) accounts",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":872,
"cid":94,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_02 integrated business reporting_share of companies valued at more than $1 billion that publish integrated reporting_indicator to be developed",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":1,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":873,
"cid":95,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_03 corruption_perception of public sector corruption",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":874,
"cid":96,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_04 international rules and SDGs_annual report by Bank for International Settlements (BIS)_International Accounting Standards Board (IASB)_International Financial Reporting Standards (IFRS)_International Monetary Fund (IMF)_World Intellectual Property Organization (WIPO)_and World Trade Organization (WTO) on the relationship between international rules and the SDGs",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":875,
"cid":97,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_05 use of tax havens_assets and liabilities of BIS reporting banks in international tax havens (as per OECD definition) by country (US$)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":876,
"cid":98,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_06 domestic resource mobilization_domestic revenues allocated to sustainable development as percent of GNI",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":877,
"cid":99,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_07 ODA and other grants_official development assistance (ODA) and net private grants as percent of high income country GNI",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":878,
"cid":100,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_08 official climate finance_official climate financing from developed countries that is incremental to ODA (in US$)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":879,
"cid":101,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_09 pooled ODA and other grants_percent of official development assistance (ODA)_net private grants_and official climate finance channeled through priority pooled multilateral financing mechanisms",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":880,
"cid":102,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_10 private finance_private net flows for sustainable development at market rates as share of high income country GNI",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":1
},
{
"id":881,
"cid":103,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_11 sustainable technologies and ICT_placeholder for indicator on coverage of ICT and possibly other advanced technologies in key sectors",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":882,
"cid":104,
"category":9,
"name":"SDG_10 transform governance and technologies for sustainable development_12 technology transfer_researchers and technicians in R&D (per million people)",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":1,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":null,
"cid":null,
"category":null,
"name":"",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":null,
"cid":null,
"category":null,
"name":"",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":null,
"cid":null,
"category":null,
"name":"",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":null,
"cid":null,
"category":null,
"name":"",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
},
{
"id":null,
"cid":null,
"category":null,
"name":"",
"energy":null,
"transit":null,
"waste":null,
"pollution":null,
"employment":null,
"health":null,
"housing":null,
"education":null,
"technology":null,
"water":null,
"greenery":null,
"ecology":null,
"agriculture":null,
"safety":null,
"recycle":null,
"materials":null,
"existing":null,
"income":null
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment