이승규

aaa

...@@ -162,7 +162,7 @@ module.exports = (server, app) => { ...@@ -162,7 +162,7 @@ module.exports = (server, app) => {
162 //죽을 확률 계산(내맘대로 커스텀) 162 //죽을 확률 계산(내맘대로 커스텀)
163 info.death_prob = ( 163 info.death_prob = (
164 (info.heat / 50) + (Math.abs(info.sensible_temperature - 15) / 10) + (info.discomport / 10) + (info.UV / 10) 164 (info.heat / 50) + (Math.abs(info.sensible_temperature - 15) / 10) + (info.discomport / 10) + (info.UV / 10)
165 - + info.windspd*1 + (info.rain / 10) + (Math.abs(info.current_temperature - 15) / 10) //+ (info.traffic / 5) 165 + + info.windspd*1 + (info.rain / 10) + (Math.abs(info.current_temperature - 15) / 10)
166 ); 166 );
167 167
168 // ------------------------------ death_factor 정의 ------------------------------ 168 // ------------------------------ death_factor 정의 ------------------------------
......