Toggle navigation
Toggle navigation
This project
Loading...
Sign in
조민지
/
2018_2_project
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
배희수
2018-12-09 22:05:16 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
976b4672097e9ce84cd8f93e47c698d9a47a1b13
976b4672
1 parent
1ea900a3
Resolve error
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
23 deletions
routes/index.js
routes/index.js
View file @
976b467
var
express
=
require
(
'express'
);
var
router
=
express
.
Router
();
var
db
=
require
(
'../lib/db'
);
require
(
'date-utils'
);
var
newDate
=
new
Date
();
/* GET home page. */
router
.
get
(
'/'
,
function
(
req
,
res
,
next
)
{
...
...
@@ -11,38 +14,52 @@ router.get('/', function(req, res, next) {
var
wsArr
=
new
Array
();
// 풍속
var
rainArr
=
new
Array
();
// 강우량
var
probArr
=
new
Array
();
// 사망 확률
var
dataLen
=
0
;
// 데이터 개수
var
empty
=
0
;
// 초기값 유뮤, 0 : 자료 있음, 1 : 자료 없음
var
sql
=
""
;
// 쿼리
var
index
;
// 이전 10분간 데이터 찾기
sql
=
"SELECT * FROM weatherInfo WHERE time >= DATE_FORMAT(DATE_ADD(now(), INTERVAL -10 MINUTE), '%Y-%m-%d %H:%i:%s')"
;
db
.
query
(
sql
,
function
(
err
,
rows
,
fields
){
if
(
err
)
{
console
.
log
(
err
);
}
else
{
if
(
rows
.
length
==
0
)
{
empty
=
1
;
}
else
{
dataLen
=
rows
.
length
;
for
(
index
=
0
;
index
<
rows
.
length
;
index
++
){
var
temp
=
rows
[
index
].
time
.
getMinutesBetween
(
newDate
);
sql
=
"SELECT * FROM weatherInfo WHERE time >= DATE_FORMAT(DATE_ADD(now(), INTERVAL -10 MINUTE), '%Y-%m-%d %H:%i:%s')"
;
db
.
query
(
sql
,
function
(
err
,
rows
,
fields
){
if
(
err
)
{
console
.
log
(
err
);
}
else
{
if
(
rows
.
length
!=
10
)
{
if
(
temp
==
index
){
probArr
.
push
(
rows
[
index
].
prob
);
time
.
push
(
rows
[
index
].
time
);
ptArr
.
push
(
rows
[
index
].
temperature
);
wsArr
.
push
(
rows
[
index
].
wind
);
rainArr
.
push
(
rows
[
index
].
rain
);
}
else
{
empty
=
1
;
}
else
{
probArr
.
push
(
rows
[
0
].
prob
);
time
.
push
(
rows
[
0
].
time
);
ptArr
.
push
(
rows
[
0
].
temperature
);
wsArr
.
push
(
rows
[
0
].
wind
);
rainArr
.
push
(
rows
[
0
].
rain
);
break
;
}
res
.
render
(
'index'
,
{
empty
,
time
,
ptArr
,
wsArr
,
rainArr
,
probArr
});
}
})
if
(
empty
==
1
&&
probArr
.
length
!=
0
)
empty
=
0
;
}
res
.
render
(
'index'
,
{
empty
,
time
,
ptArr
,
wsArr
,
rainArr
,
probArr
,
dataLen
});
}
})
});
module
.
exports
=
router
;
...
...
Please
register
or
login
to post a comment