From 8174e5d141dc15730ecef51d09b5bfb929247d19 Mon Sep 17 00:00:00 2001
From: Daria Kolokolnikova <72koda1bif@hft-stuttgart.de>
Date: Thu, 13 Jan 2022 02:33:36 +0100
Subject: [PATCH] added radioButtons for different PV-values

---
 public/main.html | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/public/main.html b/public/main.html
index fd36b2f..b6bf6df 100644
--- a/public/main.html
+++ b/public/main.html
@@ -274,6 +274,36 @@
 					  <label for="pvPotential">PV-Value				  
 						<input id="pvPotential" type="radio" key="pvPotential" name="dropp" value="pvPotential"  onclick="chosenAttributeHandler(this);">				  
 					  </label>
+					  <label for="specificYield">Specific Yield				  
+						<input id="specificYield" type="radio" key="specificYield" name="specificYield" value="specificYield"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="totalInvestment">Total Investment				  
+						<input id="totalInvestment" type="radio" key="totalInvestment" name="dropp" value="totalInvestment"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="potentialYield">Potential Yield				  
+						<input id="potentialYield" type="radio" key="potentialYield" name="dropp" value="potentialYield"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="maintenancePerYear">Maintenance Per Year				  
+						<input id="maintenancePerYear" type="radio" key="maintenancePerYear" name="dropp" value="maintenancePerYear"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="netPresentValue">Net Present Value			  
+						<input id="netPresentValue" type="radio" key="netPresentValue" name="dropp" value="netPresentValue"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="nominalPower">Nominal Power				  
+						<input id="nominalPower" type="radio" key="nominalPower" name="dropp" value="nominalPower"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="paybackPeriod">Payback Period				  
+						<input id="paybackPeriod" type="radio" key="paybackPeriod" name="dropp" value="paybackPeriod"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="levelizedCostOfElectricity">Levelized Cost Of Electricity			  
+						<input id="levelizedCostOfElectricity" type="radio" key="levelizedCostOfElectricity" name="dropp" value="levelizedCostOfElectricity"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="internalRateOfReturn">Internal Rate Of Return			  
+						<input id="internalRateOfReturn" type="radio" key="internalRateOfReturn" name="dropp" value="internalRateOfReturn"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
+					  <label for="discountedPaybackPeriod">Discounted Payback Period			  
+						<input id="discountedPaybackPeriod" type="radio" key="discountedPaybackPeriod" name="dropp" value="discountedPaybackPeriod"  onclick="chosenAttributeHandler(this);">				  
+					  </label>
 					  <label for="shadowData">Shadow-Value				  
 						<input id="shadowValue" type="radio"  name="dropp" value="shadowValue" checked onclick="chosenAttributeHandler(this);">				  
 					  </label>				  
@@ -370,13 +400,15 @@
 		</script>
 
 		<script type="text/javascript" src="js/colorPalettes.js"></script>
-
+		
 		<script type="text/javascript" src="js/sidebar.js"></script>
 		<script type="text/javascript" src="js/globe.js"></script>
 		<script type="text/javascript" src="js/areaCharts.js"></script>
 		<script type="text/javascript" src="js/connectToAPI.js"></script>
 		<script type="text/javascript" src="js/draw.js"></script>
 		<script type="text/javascript" src="js/buildingCharts.js"></script>
+		<script type="text/javascript" src="js/pvPotentialNormalization.js"></script>
+
 </body>
 
 </html>
-- 
GitLab