did basically all of BBB hackathon
This commit is contained in:
parent
17a6b890a2
commit
d59e1a3468
3 changed files with 43 additions and 1 deletions
|
@ -12,3 +12,27 @@ tags: []
|
|||
|
||||
I'm writing this so I have one place where I've described all of my projects, in future I may make this a section of the site rather than just a post but for now this will do.
|
||||
Note for future me, the markdown sucks because you wanted to have semantic HTML here and didn't know how to get markdown to generate `<article>` or `<section>` elements, you'll find the proper markdown under the `/projects` directory.
|
||||
|
||||
<section>
|
||||
<h1 id="binghamton-better-bus-hackbu-2024">Binghamton Better Bus HackBU
|
||||
2024</h1>
|
||||
<p>See also: <a href="/posts/HackBU2024/">My blog post on HackBU
|
||||
2024</a></p>
|
||||
<h2 id="the-what">The what</h2>
|
||||
<p>Binghamton better bus in both of it’s iterations is a web app to find
|
||||
a route from point to point in Binghamton using both the Broome county
|
||||
bus system as well as the OCCT bus system. The HackBU iteration made use
|
||||
of the live maps available (at the time) to acquire the needed
|
||||
information about the bus systems.</p>
|
||||
<p>In the 24 hour hackathon I was able to get a setup where I could
|
||||
input a start and endpoint and get a route which could be a layover at
|
||||
Binghamton University, the downtown bus terminal or in theory no layover
|
||||
with a single bus. The one and only heuristic used was walking
|
||||
distance.</p>
|
||||
<h2 id="what-was-learned">What was learned</h2>
|
||||
<p>I learned some of the intricacies of the polyline algorithm and how
|
||||
the two bus live map APIs worked.</p>
|
||||
<h2 id="demo-video">Demo video</h2>
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/5WcKPhMqveY?si=WcO_duuL1VxT0cFp" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||
</iframe>
|
||||
</section>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
# Binghamton Better Bus HackBU 2024
|
||||
|
||||
See also: [My blog post on HackBU 2024](/posts/HackBU2024/)
|
||||
|
||||
## The what
|
||||
|
||||
Binghamton better bus in both of it's iterations is a web app to find a route from point to point in Binghamton using both the Broome county bus system as well as the OCCT bus system.
|
||||
The HackBU iteration made use of the live maps available (at the time) to acquire the needed information about the bus systems.
|
||||
|
||||
In the 24 hour hackathon I was able to get a setup where I could input a start and endpoint and get a route which could be a layover at Binghamton University, the downtown bus terminal or in theory no layover with a single bus.
|
||||
The one and only heuristic used was walking distance.
|
||||
|
||||
## What was learned
|
||||
|
||||
I learned some of the intricacies of the polyline algorithm and how the two bus live map APIs worked.
|
||||
|
||||
## Demo video
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/5WcKPhMqveY?si=WcO_duuL1VxT0cFp" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
|
@ -34,7 +34,6 @@
|
|||
class="icon svg" data="/static/images/house.svg" width="10" height="10">
|
||||
<a href="/" class="nav-link" aria-hidden="true" tabindex="-1">Home</a>
|
||||
</object></a>
|
||||
<a rel="prefetch" href="/projects" role="menuitem">projects</a>
|
||||
</div>
|
||||
<div class="right">
|
||||
<a class="obj-wrapper" role="menuitem" href="/index.xml"> <object aria-label="Web Feed" tabindex="-1"
|
||||
|
|
Loading…
Reference in a new issue