mirror of
https://github.com/30hours/blah2.git
synced 2024-11-08 12:25:42 +00:00
Add max hold processing in nodejs server
This commit is contained in:
parent
56e92c09e9
commit
cc50c42748
5 changed files with 349 additions and 1 deletions
77
api/maxhold.js
Normal file
77
api/maxhold.js
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
const http = require('http');
|
||||||
|
|
||||||
|
var nCpi = 10;
|
||||||
|
var map = [];
|
||||||
|
var maxhold = '';
|
||||||
|
var timestamp = '';
|
||||||
|
const options_timestamp = {
|
||||||
|
host: '127.0.0.1',
|
||||||
|
path: '/timestamp',
|
||||||
|
port: 3000
|
||||||
|
};
|
||||||
|
const options_map = {
|
||||||
|
host: '127.0.0.1',
|
||||||
|
path: '/map',
|
||||||
|
port: 3000
|
||||||
|
};
|
||||||
|
|
||||||
|
function process(matrixArray) {
|
||||||
|
|
||||||
|
const result = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < matrixArray[0].length; i++) {
|
||||||
|
const row = [];
|
||||||
|
for (let j = 0; j < matrixArray[0][0].length; j++) {
|
||||||
|
let maxVal = matrixArray[0][i][j];
|
||||||
|
for (let k = 1; k < matrixArray.length; k++) {
|
||||||
|
maxVal = Math.max(maxVal, matrixArray[k][i][j]);
|
||||||
|
}
|
||||||
|
row.push(maxVal);
|
||||||
|
}
|
||||||
|
result.push(row);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
function update_data() {
|
||||||
|
|
||||||
|
// check if timestamp is updated
|
||||||
|
http.get(options_timestamp, function(res) {
|
||||||
|
res.setEncoding('utf8');
|
||||||
|
res.on('data', function (body) {
|
||||||
|
if (timestamp != body)
|
||||||
|
{
|
||||||
|
timestamp = body;
|
||||||
|
http.get(options_map, function(res) {
|
||||||
|
let body_map = '';
|
||||||
|
res.setEncoding('utf8');
|
||||||
|
res.on('data', (chunk) => {
|
||||||
|
body_map += chunk;
|
||||||
|
});
|
||||||
|
res.on('end', () => {
|
||||||
|
try {
|
||||||
|
maxhold = JSON.parse(body_map);
|
||||||
|
map.push(maxhold.data);
|
||||||
|
if (map.length > nCpi) {
|
||||||
|
map.shift();
|
||||||
|
}
|
||||||
|
maxhold.data = process(map);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
setInterval(update_data, 100);
|
||||||
|
|
||||||
|
function get_data() {
|
||||||
|
return maxhold;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports.get_data = get_data;
|
|
@ -2,6 +2,9 @@ const express = require('express');
|
||||||
const dgram = require('dgram');
|
const dgram = require('dgram');
|
||||||
const net = require("net");
|
const net = require("net");
|
||||||
|
|
||||||
|
var maxhold = require('./maxhold.js');
|
||||||
|
module.exports = Object.assign({}, maxhold)
|
||||||
|
|
||||||
// constants
|
// constants
|
||||||
const PORT = 3000;
|
const PORT = 3000;
|
||||||
const HOST = '0.0.0.0';
|
const HOST = '0.0.0.0';
|
||||||
|
@ -33,6 +36,9 @@ app.get('/detection', (req, res) => {
|
||||||
app.get('/timestamp', (req, res) => {
|
app.get('/timestamp', (req, res) => {
|
||||||
res.send(timestamp);
|
res.send(timestamp);
|
||||||
});
|
});
|
||||||
|
app.get('/maxhold', (req, res) => {
|
||||||
|
res.send(maxhold.get_data());
|
||||||
|
});
|
||||||
// read state of capture
|
// read state of capture
|
||||||
app.get('/capture', (req, res) => {
|
app.get('/capture', (req, res) => {
|
||||||
res.send(capture);
|
res.send(capture);
|
||||||
|
|
99
html/maxhold/index.html
Normal file
99
html/maxhold/index.html
Normal file
|
@ -0,0 +1,99 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
|
||||||
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
||||||
|
<meta http-equiv="Pragma" content="no-cache">
|
||||||
|
<meta http-equiv="Expires" content="0">
|
||||||
|
|
||||||
|
<title>blah2</title>
|
||||||
|
|
||||||
|
<!-- load lib js -->
|
||||||
|
<script src="../lib/bootstrap-5.2.3.min.js"></script>
|
||||||
|
<script src="../lib/plotly-2.20.0.min.js"></script>
|
||||||
|
<script src="../lib/jquery-3.6.4.min.js"></script>
|
||||||
|
|
||||||
|
<!-- load lib css -->
|
||||||
|
<link rel="stylesheet" href="../lib/bootstrap-5.2.3.min.css">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
h1 {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 3.5rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
h1 {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 5rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-family: 'Helvetica', sans-serif !important;
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-nav {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.plotly-notifier {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="background-color:#f78c58;">
|
||||||
|
|
||||||
|
<div style="height: 100vh; width: 90vw" class="container-fluid">
|
||||||
|
|
||||||
|
<div style="height: 100vh; width: 90vw" class="row d-flex">
|
||||||
|
|
||||||
|
<div class="justify-content-center" id="ddmap"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
<script src="plot_maxhold.js"></script>
|
||||||
|
|
||||||
|
</html>
|
166
html/maxhold/plot_maxhold.js
Normal file
166
html/maxhold/plot_maxhold.js
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
var nRows = 3;
|
||||||
|
var nCols = 3;
|
||||||
|
var host = window.location.hostname;
|
||||||
|
var timestamp = '';
|
||||||
|
|
||||||
|
var isLocalHost = (host === "localhost" || host === "127.0.0.1" || host === "192.168.0.112");
|
||||||
|
|
||||||
|
var urlMap = ''
|
||||||
|
if (isLocalHost) {
|
||||||
|
urlMap = '//' + host + ':3000/maxhold?timestamp=' + Date.now();
|
||||||
|
} else {
|
||||||
|
urlMap = '//' + host + '/api/maxhold?timestamp=' + Date.now();
|
||||||
|
}
|
||||||
|
|
||||||
|
var urlTimestamp = '';
|
||||||
|
if (isLocalHost) {
|
||||||
|
urlTimestamp = '//' + host + ':3000/timestamp?timestamp=' + Date.now();
|
||||||
|
} else {
|
||||||
|
urlTimestamp = '//' + host + '/api/timestamp?timestamp=' + Date.now();
|
||||||
|
}
|
||||||
|
|
||||||
|
var data = [
|
||||||
|
{
|
||||||
|
z: [[0, 0, 0], [0, 0, 0], [0, 0, 0]],
|
||||||
|
colorscale: 'Jet',
|
||||||
|
type: 'heatmap'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
var layout = {
|
||||||
|
autosize: false,
|
||||||
|
margin: {
|
||||||
|
l: 50,
|
||||||
|
r: 50,
|
||||||
|
b: 50,
|
||||||
|
t: 50,
|
||||||
|
pad: 0
|
||||||
|
},
|
||||||
|
width: document.getElementById('ddmap').offsetWidth,
|
||||||
|
height: document.getElementById('ddmap').offsetHeight,
|
||||||
|
plot_bgcolor: "rgba(0,0,0,0)",
|
||||||
|
paper_bgcolor: "rgba(0,0,0,0)",
|
||||||
|
annotations: [],
|
||||||
|
coloraxis: {
|
||||||
|
cmin: 0,
|
||||||
|
cmax: 1
|
||||||
|
},
|
||||||
|
displayModeBar: false,
|
||||||
|
xaxis: {
|
||||||
|
ticks: '',
|
||||||
|
side: 'bottom'
|
||||||
|
},
|
||||||
|
yaxis: {
|
||||||
|
ticks: '',
|
||||||
|
ticksuffix: ' ',
|
||||||
|
autosize: false
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
var config = {
|
||||||
|
displayModeBar: false,
|
||||||
|
responsive: true
|
||||||
|
}
|
||||||
|
|
||||||
|
Plotly.newPlot('ddmap', data, layout, config);
|
||||||
|
|
||||||
|
var intervalId = window.setInterval(function () {
|
||||||
|
|
||||||
|
// check if timestamp is updated
|
||||||
|
var timestampData = $.get(urlTimestamp, function () { })
|
||||||
|
|
||||||
|
.done(function (data) {
|
||||||
|
if (timestamp != data) {
|
||||||
|
timestamp = data;
|
||||||
|
// get new map data
|
||||||
|
var apiData = $.getJSON(urlMap, function () { })
|
||||||
|
.done(function (data) {
|
||||||
|
// case draw new plot
|
||||||
|
if (data.nRows != nRows || data.nCols != nCols) {
|
||||||
|
nRows = data.nRows;
|
||||||
|
nCols = data.nCols;
|
||||||
|
|
||||||
|
data = [
|
||||||
|
{
|
||||||
|
z: data.data,
|
||||||
|
x: data.delay,
|
||||||
|
y: data.doppler,
|
||||||
|
colorscale: 'Jet',
|
||||||
|
zauto: false,
|
||||||
|
zmin: 0,
|
||||||
|
zmax: Math.max(13, data.maxPower),
|
||||||
|
type: 'heatmap'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
layout = {
|
||||||
|
autosize: false,
|
||||||
|
margin: {
|
||||||
|
l: 50,
|
||||||
|
r: 50,
|
||||||
|
b: 50,
|
||||||
|
t: 50,
|
||||||
|
pad: 0
|
||||||
|
},
|
||||||
|
width: document.getElementById('ddmap').offsetWidth,
|
||||||
|
height: document.getElementById('ddmap').offsetHeight,
|
||||||
|
plot_bgcolor: "rgba(0,0,0,0)",
|
||||||
|
paper_bgcolor: "rgba(0,0,0,0)",
|
||||||
|
annotations: [],
|
||||||
|
displayModeBar: false,
|
||||||
|
xaxis: {
|
||||||
|
title: {
|
||||||
|
text: 'Bistatic Range (km)',
|
||||||
|
font: {
|
||||||
|
size: 24
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ticks: '',
|
||||||
|
side: 'bottom'
|
||||||
|
},
|
||||||
|
yaxis: {
|
||||||
|
title: {
|
||||||
|
text: 'Bistatic Doppler (Hz)',
|
||||||
|
font: {
|
||||||
|
size: 24
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ticks: '',
|
||||||
|
ticksuffix: ' ',
|
||||||
|
autosize: false,
|
||||||
|
categoryorder: "total descending"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Plotly.newPlot('ddmap', data, layout, { displayModeBar: false });
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
data_update =
|
||||||
|
{
|
||||||
|
'z': [data.data],
|
||||||
|
'zmax': Math.max(13, data.maxPower)
|
||||||
|
};
|
||||||
|
layout_update = {
|
||||||
|
};
|
||||||
|
Plotly.update('ddmap', data_update, layout_update, { displayModeBar: false });
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
.fail(function () {
|
||||||
|
console.log('API Fail');
|
||||||
|
})
|
||||||
|
|
||||||
|
.always(function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
.fail(function () {
|
||||||
|
console.log('API Fail');
|
||||||
|
})
|
||||||
|
|
||||||
|
.always(function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}, 100);
|
|
@ -164,4 +164,4 @@ var intervalId = window.setInterval(function () {
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
}, 500);
|
}, 100);
|
||||||
|
|
Loading…
Reference in a new issue