Synchronize poorly done offline changes

This commit is contained in:
Innovation 2024-05-25 04:46:16 +01:00
parent d973245735
commit a6d4748f0b
2 changed files with 27 additions and 15 deletions

View file

@ -49,7 +49,9 @@ def getMapImage(distance):
# I'm not sure how to handle this short of saving it and then reading it. :( # I'm not sure how to handle this short of saving it and then reading it. :(
filepath = uuid+".png" filepath = uuid+".png"
ox.plot_graph(G, show=True, node_size=0, edge_linewidth=2, bgcolor="#0B1629", edge_color="#5FE0E9", save=True, filepath=filepath) fig, ax = ox.plot_graph(G, show=True, node_size=0, edge_linewidth=2, bgcolor="#0B1629", edge_color="#5FE0E9", save=True, filepath=filepath, close=True)
#fig.close()
except ox._errors.InsufficientResponseError: except ox._errors.InsufficientResponseError:
print("Insufficient response. Skipping.") print("Insufficient response. Skipping.")

View file

@ -20,7 +20,7 @@
margin-right: 1%; margin-right: 1%;
margin-left: 1%; margin-left: 1%;
height: 96%; height: 96%;
border: 1px solid #F00; /* TODO: Remove this later. */ /*border: 1px solid #F00; TODO: Remove this later. */
} }
/* Below are all top elements - Vitals, Top Message, and Map */ /* Below are all top elements - Vitals, Top Message, and Map */
@ -63,7 +63,7 @@
flex-grow: 2; flex-grow: 2;
margin-left: 2px; margin-left: 2px;
margin-right: 2px; margin-right: 2px;
border: 1px solid #F00; /* TODO: Remove this later */ /*border: 1px solid #F00; TODO: Remove this later */
} }
#environmentTemperature { #environmentTemperature {
@ -103,7 +103,7 @@
height: 0; height: 0;
padding-bottom: 100%; padding-bottom: 100%;
width: 100%; width: 100%;
border: 1px solid #F00; /* TODO: Remove later */ /*border: 1px solid #F00; TODO: Remove later */
margin-left: 8px; margin-left: 8px;
flex-shrink: 0; flex-shrink: 0;
} }
@ -159,28 +159,28 @@
flex-grow: 2; flex-grow: 2;
display: flex; display: flex;
margin-top: 2px; margin-top: 2px;
border: 1px solid #0FF; /* TODO: Remove this later */ /*border: 1px solid #0FF; TODO: Remove this later */
} }
#commsPanel { #commsPanel {
width: 20%; width: 20%;
/*flex-grow: 1;*/ /*flex-grow: 1;*/
margin-left: 2px; margin-left: 2px;
border: 1px solid #F00; /* TODO: Remove this later */ /*border: 1px solid #F00; TODO: Remove this later */
} }
#popupPanel { #popupPanel {
flex-grow: 2; flex-grow: 2;
margin-left: 2px; margin-left: 2px;
margin-right: 2px; margin-right: 2px;
border: 1px soild #0F0; /* TODO: Remove this later */ /*border: 1px soild #0F0; TODO: Remove this later */
} }
#infoPanel { #infoPanel {
width: 20%; width: 20%;
/*flex-grow: 1;*/ /*flex-grow: 1;*/
margin-right: 2px; margin-right: 2px;
border: 1px solid #00F; /* TODO: Remove this later */ /*border: 1px solid #00F; TODO: Remove this later */
} }
@ -188,7 +188,7 @@
flex-grow: 1; flex-grow: 1;
margin-top: 2px; margin-top: 2px;
margin-bottom: 2px; margin-bottom: 2px;
border: 1px solid #0FF; /* TODO: Remove this later */ /*border: 1px solid #0FF; TODO: Remove this later */
} }
</style> </style>
</head> </head>
@ -202,7 +202,7 @@
<div id="bodyTemperature"></div> <div id="bodyTemperature"></div>
</div> </div>
<div id="topMessage"> <div id="topMessage">
<p>Top message - Notifications, warnings, and malfunctions and such</p> <!--<p>Top message - Notifications, warnings, and malfunctions and such</p>-->
</div> </div>
<div id="map"> <div id="map">
<div id="mapElements"> <div id="mapElements">
@ -220,24 +220,24 @@
<div id="mapDot"></div> <div id="mapDot"></div>
</div> </div>
<div id="mapTime"> <div id="mapTime">
<p id="time">00:00:00</p> <p id="time">00:00</p>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div id="centerElements"> <div id="centerElements">
<div id="commsPanel"> <div id="commsPanel">
<p>Comms</p> <!--<p>Comms</p>-->
</div> </div>
<div id="popupPanel"> <div id="popupPanel">
<p>Popup</p> <!--<p>Popup</p>-->
</div> </div>
<div id="infoPanel"> <div id="infoPanel">
<p>Info</p> <!--<p>Info</p>-->
</div> </div>
</div> </div>
<div id="bottomElements"> <div id="bottomElements">
<p>Test2</p> <!--<p>Test2</p>-->
</div> </div>
</div> </div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.2/jquery.min.js" integrity="sha512-tWHlutFnuG0C6nQRlpvrEhE4QpkG1nn2MOUMWmUeRePl4e3Aki0VB6W1v3oLjFtd0hVOtRQ9PHpSfN6u6/QXkQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.2/jquery.min.js" integrity="sha512-tWHlutFnuG0C6nQRlpvrEhE4QpkG1nn2MOUMWmUeRePl4e3Aki0VB6W1v3oLjFtd0hVOtRQ9PHpSfN6u6/QXkQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
@ -354,6 +354,14 @@
} }
} }
function updateTime() {
var timeText = document.getElementById("time");
var time = new Date();
var newTime = time.getHours()+":"+time.getMinutes();
timeText.innerHTML = newTime;
}
function updateAll() { function updateAll() {
$.get(vitalsUrl, (data, status) => { $.get(vitalsUrl, (data, status) => {
if(status == "success") { if(status == "success") {
@ -389,6 +397,8 @@
//stopInterval(t) //stopInterval(t)
updateNavigationImage() updateNavigationImage()
updateTime()
} }
var t=setInterval(updateAll, 1000) var t=setInterval(updateAll, 1000)
</script> </script>