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 @@ ...@@ -79,14 +79,13 @@
var irradiancestyle = new Cesium.Cesium3DTileStyle({ var irradiancestyle = new Cesium.Cesium3DTileStyle({
color : { color : {
conditions : [ conditions : [
["(${Irr_kWh} > 0) && (${Irr_kWh} < 200)", "color('#6495ED')"],
["${Irr_Class} === 'One'", "color('#6495ED')"], ["(${Irr_kWh} >= 200) && (${Irr_kWh} < 450)", "color('#9370DB')"],
["${Irr_Class} === 'Two'", "color('#9370DB')"], ["(${Irr_kWh} >= 450) && (${Irr_kWh} < 700)", "color('#8B0000')"],
["${Irr_Class} === 'Three'", "color('#8B0000')"], ["(${Irr_kWh} >= 700) && (${Irr_kWh} < 950)", "color('#D2691E')"],
["${Irr_Class} === 'Four'", "color('#D2691E')"], ["(${Irr_kWh} >= 950) && (${Irr_kWh} < 1250)", "color('#FFEBCD')"],
["${Irr_Class} === 'Five'", "color('#FFEBCD')"], ["(${Irr_kWh} >= 1250)", "color('#EC1414')"],
["${Irr_Class} === 'Six'", "color('#FFFFFF')"], ["true", "color('#000000')"]
["true", "color('#FFFFFF')"]
] ]
}, },
show: true show: true
...@@ -102,7 +101,7 @@ ...@@ -102,7 +101,7 @@
["(${PVPotential} >= 20) && (${PVPotential} < 25)", "color('#EC7014')"], ["(${PVPotential} >= 20) && (${PVPotential} < 25)", "color('#EC7014')"],
["(${PVPotential} >= 25) && (${PVPotential} < 30)", "color('#CC4C02')"], ["(${PVPotential} >= 25) && (${PVPotential} < 30)", "color('#CC4C02')"],
["(${PVPotential} >= 30)", "color('#8C2D04')"], ["(${PVPotential} >= 30)", "color('#8C2D04')"],
["true", "color('#FFFFFF')"] ["true", "color('#000000')"]
] ]
}, },
show: true show: true
...@@ -247,8 +246,9 @@ function active3DTilePicker() { ...@@ -247,8 +246,9 @@ function active3DTilePicker() {
'<tr><th>Surface ID</th><td>' + picked3DtileFeature.getProperty('gml_id') + '</td></tr>' + '<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>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>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>Surface Area (m²)</th><td>' + picked3DtileFeature.getProperty('surface_area') + '</td></tr>' +
'<tr><th>PV Potential (MWh/a)</th><td>' + picked3DtileFeature.getProperty('PVPotential_String') + '</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>' + '<tr><th>PV Specific Yield (kWh/(kWp.a))</th><td>' + picked3DtileFeature.getProperty('PVSpecificYield') + '</td></tr>' +
'</tbody></table>'; '</tbody></table>';
......
Supports Markdown
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