Skip to content

Commit

Permalink
adding link checker and fixing some links
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Mar 10, 2024
1 parent 005a9cd commit 8644174
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 4 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: linkcheck

on:
push:
workflow_dispatch:
schedule:
- cron: '30 1 * * *' # daily at 01:30 UTC

jobs:
external-link-check:
runs-on: ubuntu-latest

steps:
- name: Cloning repository
uses: actions/checkout@v4

- name: Lychee Link Checker
uses: lycheeverse/lychee-action@v1
with:
fail: true
args: -c lychee.toml -n 20* index.html about/ conference/ contact/
2 changes: 1 addition & 1 deletion 2019/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ <h1 id="sessions-and-presentations">Sessions and Presentations</h1>
<li>Reinforcement Learning Agent under Partial Observability for Traffic Light Control in Presence of Gridlocks</li>
</ul>
<h1 id="registration">Registration</h1>
<p>The registration fee includes a two and a half day conference program with refreshments, lunch, proceedings and social events in the evening. Accommodation is not included within the registration fee and must be pre-booked separately. <strong>Register <a href="https://sumo2019.besl-eventservice.de/front/index.php">here</a></strong>.</p>
<p>The registration fee includes a two and a half day conference program with refreshments, lunch, proceedings and social events in the evening. Accommodation is not included within the registration fee and must be pre-booked separately.</p>
<h1 id="language">Language</h1>
<p>The conference language is English.</p>
<h1 id="social-event">Social Event</h1>
Expand Down
2 changes: 1 addition & 1 deletion 2022/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ <h3><i>Simulating and modelling traffic: What are we trying to achieve?</i></h3>
<h6>Prof. Dr.-Ing. Heather Kaths</h6>
Head of the Department for Bicycle Traffic Planning<br>
University of Wuppertal<br>
<a href="https://radverkehr.uni-wuppertal.de/en/home/associates/prof-dr-ing-heather-kaths.html" class="btn btn-sm btn-outline-info" style="margin-top:10px;">Website</a>
<a href="https://radverkehr.uni-wuppertal.de/de/team/prof-dr-ing-heather-kaths/" class="btn btn-sm btn-outline-info" style="margin-top:10px;">Website</a>
<p>Our ability to virtually recreate infrastructure and traffic flow at many different scales, from the very detailed simulation of systems used to drive and control vehicles to the depiction of congestion in country-wide highway networks, has improved drastically over the last decades. The data needed to develop, calibrate and validate simulation models is increasingly at our fingertips. An active and growing community of academics and industry personnel dedicate time and expert knowledge to improving and optimizing traffic simulation tools and workflows. At the same time, issues such as air pollution, traffic injuries and fatalities, noise and disconnected urban space persist. In this keynote, I want to explore how tools for creating virtual, simulated worlds are helping to solve actual problems in our real world: what is done today, and what opportunities are there for tomorrow?</p>
<h1 id="tapas-workshop">TAPAS Workshop</h1>
<p>The agent-based demand model TAPAS is an open source development of DLR’s Institute for Transport Research. TAPAS simulated the mobility patterns of a virtual population of a modelled regions. Both the population as well as the activity places are represented individually. TAPAS distinguishes a large set of person groups, and different modes of transport. The mobility behavior of the population is determined using empirical daily mobility plans. The result is a list of daily activities for each person within the modeled area, including the starting location, the destination location, the begin of the ride and the ride’s duration as well as the chosen mode, among others. The result can be used as an input for the microscopic traffic flow simulation SUMO.</p>
Expand Down
14 changes: 14 additions & 0 deletions lychee.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Maximum number of allowed redirects.
max_redirects = 20

# Proceed for server connections considered insecure (invalid TLS).
insecure = true

# Remap URI matching pattern to different URI.
#remap = ['%7B%7BVersion%7D%7D 1.19.0']

# Exclude URLs and mail addresses from checking (supports regex).
exclude = ['dlr\.de', 'linkedin\.com', 'twitter\.com']



2 changes: 1 addition & 1 deletion src/content/2019.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Instructions for authors and a template can be found here: <https://easychair.or
- Reinforcement Learning Agent under Partial Observability for Traffic Light Control in Presence of Gridlocks

# Registration
The registration fee includes a two and a half day conference program with refreshments, lunch, proceedings and social events in the evening. Accommodation is not included within the registration fee and must be pre-booked separately. **Register [here](https://sumo2019.besl-eventservice.de/front/index.php)**.
The registration fee includes a two and a half day conference program with refreshments, lunch, proceedings and social events in the evening. Accommodation is not included within the registration fee and must be pre-booked separately.

# Language
The conference language is English.
Expand Down
2 changes: 1 addition & 1 deletion src/content/2022.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ You can find all videos here: <a href="https://www.youtube.com/playlist?list=PLy
<h6>Prof. Dr.-Ing. Heather Kaths</h6>
Head of the Department for Bicycle Traffic Planning<br>
University of Wuppertal<br>
<a href="https://radverkehr.uni-wuppertal.de/en/home/associates/prof-dr-ing-heather-kaths.html" class="btn btn-sm btn-outline-info" style="margin-top:10px;">Website</a>
<a href="https://radverkehr.uni-wuppertal.de/de/team/prof-dr-ing-heather-kaths/" class="btn btn-sm btn-outline-info" style="margin-top:10px;">Website</a>


Our ability to virtually recreate infrastructure and traffic flow at many different scales, from the very detailed simulation of systems used to drive and control vehicles to the depiction of congestion in country-wide highway networks, has improved drastically over the last decades. The data needed to develop, calibrate and validate simulation models is increasingly at our fingertips. An active and growing community of academics and industry personnel dedicate time and expert knowledge to improving and optimizing traffic simulation tools and workflows. At the same time, issues such as air pollution, traffic injuries and fatalities, noise and disconnected urban space persist. In this keynote, I want to explore how tools for creating virtual, simulated worlds are helping to solve actual problems in our real world: what is done today, and what opportunities are there for tomorrow?
Expand Down

0 comments on commit 8644174

Please sign in to comment.