Skip to content

Commit

Permalink
Edited README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rzninvo committed Nov 25, 2023
1 parent e814db2 commit 2fbb6e5
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,23 @@ This project presents an opportunity to explore the realms of digital twinning,
* [Checkout my other repository where I'm writing the simulation code for AWSIM.](https://github.com/rzninvo/AWSIM)

## **(LATEST UPDATE)** The real time simulation (Semi Digital Twin) for Amirkabir University of Technology Rasht Street (GIF):

![RASHT_DT_DEMO](./resource/Digital_Twin.gif)
<div id="gifContainer">
<img src="./docs/GettingStarted//QuickStartDemo/Image_top.png" alt="DT Sim" id="placeholderImage">
</div>
<script>
// Wait for the document to be fully loaded
document.addEventListener('DOMContentLoaded', function () {
// Create a new Image object
var gifImage = new Image();
// Set the source of the actual GIF
gifImage.src = './resource/Digital_Twin.gif';
// Once the GIF has loaded, replace the placeholder image
gifImage.onload = function () {
document.getElementById('gifContainer').innerHTML = '<img src="' + gifImage.src + '" alt="Actual GIF">';
};
});
</script>
<!-- ![RASHT_DT_DEMO](./resource/Digital_Twin.gif) -->

## The real time simulation (Semi Digital Twin) for an intersection demo:

Expand Down

0 comments on commit 2fbb6e5

Please sign in to comment.