Commit b7f6eac7 authored by Rushikesh Padsala's avatar Rushikesh Padsala
Browse files

updated results

parent 9820be37
Pipeline #3800 passed with stage
in 22 seconds
......@@ -79,14 +79,13 @@
var irradiancestyle = new Cesium.Cesium3DTileStyle({
color : {
conditions : [
["${Irr_Class} === 'One'", "color('#6495ED')"],
["${Irr_Class} === 'Two'", "color('#9370DB')"],
["${Irr_Class} === 'Three'", "color('#8B0000')"],
["${Irr_Class} === 'Four'", "color('#D2691E')"],
["${Irr_Class} === 'Five'", "color('#FFEBCD')"],
["${Irr_Class} === 'Six'", "color('#FFFFFF')"],
["true", "color('#FFFFFF')"]
["(${Irr_kWh} > 0) && (${Irr_kWh} < 200)", "color('#6495ED')"],
["(${Irr_kWh} >= 200) && (${Irr_kWh} < 450)", "color('#9370DB')"],
["(${Irr_kWh} >= 450) && (${Irr_kWh} < 700)", "color('#8B0000')"],
["(${Irr_kWh} >= 700) && (${Irr_kWh} < 950)", "color('#D2691E')"],
["(${Irr_kWh} >= 950) && (${Irr_kWh} < 1250)", "color('#FFEBCD')"],
["(${Irr_kWh} >= 1250)", "color('#EC1414')"],
["true", "color('#000000')"]
]
},
show: true
......@@ -102,7 +101,7 @@
["(${PVPotential} >= 20) && (${PVPotential} < 25)", "color('#EC7014')"],
["(${PVPotential} >= 25) && (${PVPotential} < 30)", "color('#CC4C02')"],
["(${PVPotential} >= 30)", "color('#8C2D04')"],
["true", "color('#FFFFFF')"]
["true", "color('#000000')"]
]
},
show: true
......@@ -247,8 +246,9 @@ function active3DTilePicker() {
'<tr><th>Surface ID</th><td>' + picked3DtileFeature.getProperty('gml_id') + '</td></tr>' +
'<tr><th>Building ID</th><td>' + picked3DtileFeature.getProperty('gml_parent_id') + '</td></tr>' +
'<tr><th>Feature Type</th><td>' + picked3DtileFeature.getProperty('feature_type') + '</td></tr>' +
'<tr><th>Irradiance (kWh/(m².a))</th><td>' + picked3DtileFeature.getProperty('Irr_kWh/m2yr') + '</td></tr>' +
'<tr><th>PV Potential (MWh/a)</th><td>' + picked3DtileFeature.getProperty('PVPotential_String') + '</td></tr>' +
'<tr><th>Surface Area (m²)</th><td>' + picked3DtileFeature.getProperty('surface_area') + '</td></tr>' +
'<tr><th>Irradiance (kWh/(m².a))</th><td>' + picked3DtileFeature.getProperty('Irr_kWh') + '</td></tr>' +
'<tr><th>PV Potential (MWh/a)</th><td>' + picked3DtileFeature.getProperty('PVPotential') + '</td></tr>' +
'<tr><th>PV Specific Yield (kWh/(kWp.a))</th><td>' + picked3DtileFeature.getProperty('PVSpecificYield') + '</td></tr>' +
'</tbody></table>';
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment