< Return to Video

#rC3 A few quantitative thoughts on parking in Marburg

  • 0:00 - 0:17
    hacc preroll music
  • 0:17 - 0:21
    Herald: And a lovely welcome back to the
    haccs stage on the third day this
  • 0:21 - 0:27
    Congress, we are here with a talk on "A
    few quantitive thoughts on parking in
  • 0:27 - 0:36
    Marburg" by Martin L. He's interested in
    data analytics now and infrastructure and
  • 0:36 - 0:41
    traffic in general. And because of that,
    he started scraping publicly available
  • 0:41 - 0:47
    parking data in Marburg and just went on
    and analyzed it and found a lot of
  • 0:47 - 0:52
    interesting things which he is going to
    present in this talk to you right now. In
  • 0:52 - 0:59
    case you didn't know, there is IRC client
    on the live.hacc.media where you can ask
  • 0:59 - 1:04
    questions later or with the #rC3hacc tag
    on Twitter.
  • 1:04 - 1:10
    Martin Lellep: Welcome to my talk "A few
    quantitative thoughts on parking in
  • 1:10 - 1:16
    Marburg". I am delighted to speak here on
    this Congress because I love the yearly
  • 1:16 - 1:20
    conferences. Also, thank you to the
    organizing team for making all this
  • 1:20 - 1:26
    possible. You do an absolutely fabulous
    job. Now, the first question that you
  • 1:26 - 1:33
    should ask is: why? The following is a
    purely hobby project question, I came up
  • 1:33 - 1:37
    with a question because transportation is
    important, but unfortunately, it's also
  • 1:37 - 1:43
    difficult. The most popular vehicles these
    days are cars and hence the question, how
  • 1:43 - 1:50
    do people park in Marburg? Who am I? My
    name is Martin, and I analyze publicly
  • 1:50 - 1:59
    available data. I live close to Marburg,
    therefore the parking in Marburg. Now, a
  • 1:59 - 2:05
    little bit of background regarding
    Marburg, it's a small picturesque, vibrant
  • 2:05 - 2:10
    university town. There are a few highlights,
    such as the castle, the old town and the
  • 2:10 - 2:17
    river, just to name a few. It has around
    80,000 residents and a somewhat dense core
  • 2:17 - 2:22
    around the old town. You can see a few
    pictures here of the castle, the old town
  • 2:22 - 2:30
    and the river, respectively. Now, at this
    point, I would like to give my props to
  • 2:30 - 2:34
    David Kriesel because all this work was
    inspired by his amazing data science
  • 2:34 - 2:39
    talks. You can find them on YouTube. And I
    absolutely encourage you to look for the
  • 2:39 - 2:49
    Bahnmining, Spiegelmining and the Xerox
    story talks. OK, so if you have questions,
  • 2:49 - 2:54
    then please ask, I will be there live
    during the Q&A of this conference and also
  • 2:54 - 3:02
    you can send me an email with whatever you
    like, essentially. OK, so first of all, I
  • 3:02 - 3:07
    would like to give a quick introduction to
    the data source. Now, the data, the
  • 3:07 - 3:14
    parking data from Marburg is publicly,
    well it's published live on a system that
  • 3:14 - 3:18
    is implemented by the city, by the city
    council, I believe . It's called
  • 3:18 - 3:26
    Parkleitsystem Marburg or PLS for now, and
    it publishes the data such as the parking
  • 3:26 - 3:32
    decks, the number of free parking spots
    and the location. The address here is
  • 3:32 - 3:39
    pls.marburg.de. And let's see how it
    looks. Yeah, so obviously it's still
  • 3:39 - 3:44
    online and you can see here the parking
    deck names listed, the number of free
  • 3:44 - 3:52
    parking spots. Color coded is if it is
    rather full or if it's rather empty, you
  • 3:52 - 3:58
    can see here all of them are in the green.
    The green color coding here, it's
  • 3:58 - 4:03
    because it's probably close to Christmas.
    Nobody wants to really park in the city.
  • 4:03 - 4:09
    And the only one that's this one here, the
    Marktdreieck Parkdeck that it has some
  • 4:09 - 4:16
    load to it. Then also there's a button
    called route. So whenever you click on the
  • 4:16 - 4:23
    on this button, say we we pick the
    Erlenring-Center button, we are redirected
  • 4:23 - 4:32
    to Google Maps and we can see here the
    location of this parking deck, for
  • 4:32 - 4:37
    example. Let's go back. Last but not
    least, there's also the maximum vehicle
  • 4:37 - 4:44
    allowance and of course, the time stamp of
    the data. OK, back to the presentation
  • 4:44 - 4:49
    now. This is a very simple website, so of
    course it's easy to scrape and that's what
  • 4:49 - 4:58
    I did. Regarding the scraper, I used a
    Linux computer and a docker container. And
  • 4:58 - 5:06
    this scraper, you can see a small sketch
    here to the left, it simply visits the
  • 5:06 - 5:11
    website every 3 minutes inside the docker
    container and writes the data into I
  • 5:11 - 5:18
    believe it was csv files, which are
    subsequently used for the data analysis.
  • 5:18 - 5:25
    All of it, the scraper and the analysis
    scripts are written in Python. OK, the
  • 5:25 - 5:33
    data format is pretty simple, it's
    processed internally with data frames,
  • 5:33 - 5:37
    with the package panda. Everybody who
    knows Python probably knows panda, anyway.
  • 5:37 - 5:43
    It's the data format is as follows. The
    row corresponds to the time. The column
  • 5:43 - 5:47
    corresponds to the specific parking deck,
    and the cell corresponds to the number of
  • 5:47 - 5:54
    free parking spots at that time of that
    parking deck. Now, in order to make the
  • 5:54 - 6:00
    numbers a bit more usable, I transformed
    the number of free parking spots to the
  • 6:00 - 6:06
    number of used parking spots by
    subtracting it from the maximum along the
  • 6:06 - 6:14
    time. OK, now the intro is just to get
    used to the data, we'd like to take a look
  • 6:14 - 6:20
    at the locations of the of the park houses
    or the park decks. This is a screenshot.
  • 6:20 - 6:27
    There's an interactive version. Let me
    open it here. It's a interactive map. You
  • 6:27 - 6:34
    can see two types of markers, the first
    one red, the second one green, and that's
  • 6:34 - 6:39
    because the red ones are the ones that are
    given, well they are encoded in the links
  • 6:39 - 6:46
    of the PLS system, and they
    are actually wrong. So when you click on
  • 6:46 - 6:54
    the for instance. Erlenring-Center parking
    deck that I've done before, the location,
  • 6:54 - 6:59
    longitude and latitude are actually
    incorrect and, um, Google Maps corrected
  • 6:59 - 7:04
    on the fly. And therefore, I have shown
    here the ones given on the website that
  • 7:04 - 7:11
    are incorrect in red and the ones shown
    that are correct. So you can safely focus
  • 7:11 - 7:17
    only on the green ones. Um, a quick
    overview here is the train station region,
  • 7:17 - 7:22
    there are two. And then they are scattered
    around the city. Um, sometimes there are
  • 7:22 - 7:30
    two parking decks very close by, for
    instance, these two and these two. And
  • 7:30 - 7:34
    that's because it's essentially one
    parking deck with two parking sections
  • 7:34 - 7:40
    typically inside the building and on top
    of the building. OK, let's go back to the
  • 7:40 - 7:49
    presentation. With that in place, we or we
    take a look at the joined data, meaning I
  • 7:49 - 7:56
    accumulate the number of used parking
    spots across all the parking decks. You
  • 7:56 - 8:00
    can see that here now, so it's a quite
    comprehensive picture, I started data
  • 8:00 - 8:06
    scraping in August 2019 and stopped it at
    the end of February 2020.
  • 8:06 - 8:13
    This data here is a different resample
    frequency of the original and raw data. I
  • 8:13 - 8:17
    started with a resample of one hour. So
    just a reminder, it's the true frequency
  • 8:17 - 8:23
    is three minutes. Again, I resampled here
    into one hour. It's not very easy to
  • 8:23 - 8:28
    understand on that scale here. Then to one
    day it's the orange now and lastly on one
  • 8:28 - 8:33
    week and we can learn different things
    from it. So in particular, the orange
  • 8:33 - 8:39
    curve of one day shows that there might be
    some periodicity in the signal. And the
  • 8:39 - 8:44
    green one shows that there are times or
    weeks that are particularly... where
  • 8:44 - 8:48
    there's particularly little parking
    demand, for instance, here around
  • 8:48 - 8:56
    Christmas 2019. OK, so again, from the
    orange signal, you can see that there's
  • 8:56 - 9:02
    probably some periodicity, and in order to
    quantify that, I plotted the or computed
  • 9:02 - 9:07
    the auto correlation function. The auto
    correlation function essentially takes a
  • 9:07 - 9:12
    time signal and computes the overlap
    between the time signal and the same
  • 9:12 - 9:18
    signal shifted by some time and whenever
    there's a large overlap. That points
  • 9:18 - 9:24
    towards the periodicity, and here we can
    see that the periodicity maximum or the
  • 9:24 - 9:28
    auto correlation maximum, the first one
    corresponds to one week and therefore the
  • 9:28 - 9:34
    periodicity can be safely assumed to be at
    seven days. Of course, when there's
  • 9:34 - 9:41
    periodicity and a signal at seven days,
    for instance, there's also periodicity. In
  • 9:41 - 9:45
    14 days and in 21 days, but the
    correlation coefficients, they decay
  • 9:45 - 9:53
    typically. OK, now we have the periodicity
    with respect to days in place. Now let's
  • 9:53 - 9:59
    take a look at the day and hour demand.
    And for that, I computed a two dimensional
  • 9:59 - 10:06
    histogram with the day Monday to Sunday on
    the one axis and the other axis
  • 10:06 - 10:12
    corresponds to the hour. And here we can
    clearly see that the majority of the
  • 10:12 - 10:18
    parking demand is around the noon hour. So
    starting from 11 to to approximately,
  • 10:18 - 10:26
    let's say, 5 p.m. or so. Interestingly.
    That was a point where I was surprised is
  • 10:26 - 10:31
    that Sunday's is a day where there's
    little parking demand in Marburg, I
  • 10:31 - 10:36
    wouldv'e guesstimated that Sunday when
    everybody has spare time, they typically
  • 10:36 - 10:40
    rush into the city. But that's obviously
    not the case. Another interesting fact is
  • 10:40 - 10:45
    that Monday morning seemed to be very
    difficult to get up because you can see
  • 10:45 - 10:55
    the parking demand is smaller than on on
    other mornings. OK, now, after that, I
  • 10:55 - 11:01
    come to the separated... separate and
    analysis where I take a look at the
  • 11:01 - 11:08
    individual parking decks. So first of all,
    again, the times series, it's it's a bit
  • 11:08 - 11:12
    dense and it's very hard to see. So there
    are a few things to learn from the
  • 11:12 - 11:16
    picture. So first of all, the green
    signal that corresponds to the Erlenring-
  • 11:16 - 11:22
    Center. Reminder, I just opened it. In the
    very beginning of this talk seems to be
  • 11:22 - 11:32
    the dominant one, then there are quite a
    few data gaps. So take for instance. Well,
  • 11:32 - 11:37
    it's very apparent here for the violet
    one, the Furthstraße-Parkdeck, this one
  • 11:37 - 11:45
    here. And that's an extreme case. It had
    obviously some kind of problem. It was
  • 11:45 - 11:49
    open for some time and then closed for
    some other times. Typically, park houses
  • 11:49 - 11:54
    or parking decks are either open 24/7, but
    there are also quite a few that are that
  • 11:54 - 12:07
    close overnight. OK, next I was interested
    in the statistics of parking demand for
  • 12:07 - 12:14
    individual parking decks, so I
    concentrated only on, say, one parking
  • 12:14 - 12:21
    deck and computed the histograms of the
    used parking spots also, depending on the
  • 12:21 - 12:28
    time. Let's focus here on the Oberstadt,
    it's the old town and you can see that the
  • 12:28 - 12:37
    overall parking demand peaks at around,
    let's say, maybe 20 used parking spots, so
  • 12:37 - 12:42
    that's the average, but that's not for all
    times when we make that statement,
  • 12:42 - 12:46
    depending on the time, for instance, the
    morning we can see that's approximately
  • 12:46 - 12:52
    the same. But when we go towards noon, we
    can see that the number of parking spots
  • 12:52 - 12:59
    or used parking spots increases. There are
    even a few times when it's at the maximum
  • 12:59 - 13:06
    around noon. Now, when we go towards later
    hours, the maximum shifts towards smaller
  • 13:06 - 13:12
    values again. Now, this this behavior of
    the maximum shifting, so clearly,
  • 13:12 - 13:17
    depending on the hour, is not not apparent
    for all the parking decks. For instance,
  • 13:17 - 13:24
    the Parkdreieck here ... Marktdreieck,
    sorry, that doesn't show the signal as
  • 13:24 - 13:33
    clear as the Oberstadt one. OK, from this
    all now we can quantify also the, I call
  • 13:33 - 13:38
    it integral parking demand, simply it's
    the the number of parking spots that have
  • 13:38 - 13:45
    been provided per parking deck. Now the
    picture here, it's normalized to the
  • 13:45 - 13:50
    maximum and one can see from this picture
    here very easily that the Erlenring-
  • 13:50 - 13:54
    Center, as we've estimated or guessed
    previously already is the one that's
  • 13:54 - 14:02
    dominating the whole city. It's providing
    the most parking spots by a large margin,
  • 14:02 - 14:08
    actually. The next one is the Lahn-Center
    and then maybe the Oberstadt and the other
  • 14:08 - 14:13
    ones follow after these. Another
    interesting point here is that the
  • 14:13 - 14:21
    proportion of parking spots provided on
    weekends differs for the different parking
  • 14:21 - 14:25
    decks. For instance, here you can see this
    one here is quite a big portion, the
  • 14:25 - 14:30
    Erlenring-Center, also on weekends.
    Contrary, the Marktdreieck-Parkdeck has
  • 14:30 - 14:38
    only a very small portion of, um, of
    parking spots provided on weekends. It
  • 14:38 - 14:44
    might be interesting to know that this
    particular parking station is ... it's the
  • 14:44 - 14:48
    one that is used if you want to go to a
    doctor, because it's very close. So many
  • 14:48 - 14:51
    doctors are not open on Sundays, on
    Saturdays, and therefore probably the
  • 14:51 - 14:56
    parking demand is quite low. Now, there's
    a temporal version also where I rendered a
  • 14:56 - 15:02
    small video that I'm opening now, and you
    can see essentially the same as in the
  • 15:02 - 15:08
    previous graph, but against time. Again,
    it's very apparent that there's a
  • 15:08 - 15:16
    periodicity and here my scraper crashed
    and it's back in business again, and I
  • 15:16 - 15:23
    found it interesting to see that there are
    parking decks that have cars... well that
  • 15:23 - 15:28
    host cars, even at night, for instance,
    here the Erlenring-Center again in the
  • 15:28 - 15:34
    Lahn-Center, the ones that are the largest
    one, they offer parking also overnight.
  • 15:34 - 15:42
    And there are some cars in there,
    probably. OK, let's close that again. Now,
  • 15:42 - 15:51
    I come lastly to the prediction part now.
    The goal here is to measure the parking
  • 15:51 - 15:56
    demand through the parking decks, but then
    to interpolate between the parking decks,
  • 15:56 - 16:02
    so I would like... so I have ...say the
    Oberstadt the old town and the, I don't
  • 16:02 - 16:06
    know, the Erlenring, which was the largest
    one. I would like to know what's the
  • 16:06 - 16:12
    parking demand in between, for instance.
    For doing so, I use a spatial fit and I
  • 16:12 - 16:16
    use a machine learning model for that, in
    order to do that spatial fit. It is now,
  • 16:16 - 16:22
    in this particular case, a non parametric
    model called Gaussian Process Regression.
  • 16:22 - 16:27
    And the nice thing about that is that it
    also returns the uncertainty. Because say,
  • 16:27 - 16:31
    for instance, you would like to use these
    model, machine learning predictions to
  • 16:31 - 16:38
    say, build some kind of parking deck or to
    get rid of one. All these operations, all
  • 16:38 - 16:42
    these derived actions would be very
    expensive. So you would like to know if
  • 16:42 - 16:46
    the uncertainty is large or small for
    whatever the machine learning model
  • 16:46 - 16:51
    predicts. Just for the math oriented
    people. If you're interested in that
  • 16:51 - 16:57
    model, definitely take a look at the, I
    would call it, Gaussian process bible by
  • 16:57 - 17:06
    Rasmussen. It's amazing to read. Yeah,
    there are two, um, evaluations now, I did.
  • 17:06 - 17:10
    The first one is based on the whole data
    set, so there's no spatial or..sorry...
  • 17:10 - 17:17
    there's no temporal resolution. And what I
    do, I did well, I rrendered a video and I
  • 17:17 - 17:23
    would like to explain you the outcome of
    that while it is running. The top picture
  • 17:23 - 17:27
    here shows you the prediction by the
    machine learning model. And the the bottom
  • 17:27 - 17:35
    picture shows you the uncertainty. The
    training data, meaning the parking decks,
  • 17:35 - 17:41
    is denoted by the black points. Now, first
    of all, the uncertainty, you can see that
  • 17:41 - 17:46
    wherever there is training data, the
    uncertainty goes down. So the model is,
  • 17:46 - 17:51
    um, certain about its prediction that
    because, well, there's training data and
  • 17:51 - 17:58
    in between the uncertainty rises again.
    Now the prediction, you can see some small
  • 17:58 - 18:06
    hill. It's exactly the Erlenring-Center,
    which was the largest one. Now, what is
  • 18:06 - 18:11
    shown in the video is it's rotating. You
    can see the coordinates of Marburg on the
  • 18:11 - 18:16
    on the plane, on the bottom plane. And at
    some point, the view rotates upwards and
  • 18:16 - 18:21
    gives you a top down perspective with a
    corresponding color bars or corresponding
  • 18:21 - 18:29
    color map. So, again, here's the the
    maximum, the Erlenring-Center. And I did
  • 18:29 - 18:37
    that because next we would like to finally
    measure the parking demand between
  • 18:37 - 18:45
    stations. OK, there's another small video
    again, and now we start right from the top
  • 18:45 - 18:49
    down, color coded view and again, the
    black points are the... is the training
  • 18:49 - 18:53
    data, but now the red points are, is kind
    of test data, meaning positions in
  • 18:53 - 19:00
    between. I concentrated now on the Mensa
    because I have a special relation with the
  • 19:00 - 19:05
    Mensa, the physics department, the
    university library, the train station and
  • 19:05 - 19:10
    the cinema. And just to demonstrate from
    this spatial fit, we can derive the
  • 19:10 - 19:15
    parking demand at these positions also.
    Here, this yellow pike, it's the
  • 19:15 - 19:21
    Erlenring-Center again. Now, that's only a
    qualitative result, of course, I don't
  • 19:21 - 19:25
    want to derive any quantitative at this
    point, it's just a proof of concept that
  • 19:25 - 19:32
    it is possible to derive something like
    that from the publicly available data.
  • 19:32 - 19:36
    Now I forgot to mention the beginning that
    there's a bonus and I would like to come
  • 19:36 - 19:44
    to the bonus now. It is about the Corona
    crisis or pandemic, of course. What I did
  • 19:44 - 19:48
    is, the initial data acquisition phase,
    here in black, that's the whole talk was
  • 19:48 - 19:54
    about that black portion here. I stopped
    it at around the end of February and I
  • 19:54 - 20:00
    restarted the whole data acquisition
    process now again at in approximately
  • 20:00 - 20:06
    April. Just to capture something from the
    Corona crisis as well. And you can see
  • 20:06 - 20:12
    here again, the time series. I think the
    most interesting bit about it and the most
  • 20:12 - 20:17
    comprehensive bit is the the mean . You
    can see the the mean across the whole time
  • 20:17 - 20:21
    denoted by this dashed line. And you can
    see that the mean is smaller. So during
  • 20:21 - 20:27
    the Corona pandemic fewer people parked in
    Marburg, which is reasonable, I would say.
  • 20:27 - 20:35
    But there are also times where the number
    of parking spots decreased significantly.
  • 20:35 - 20:40
    So for instance, right when the Corona
    crisis started in April and now the second
  • 20:40 - 20:46
    wave in October, November, December, it is
    visible that the parking demand decreased
  • 20:46 - 20:53
    a lot. And I went one step further and
    wanted to know the the differences between
  • 20:53 - 20:59
    pre Corona and during Corona also for each
    of the parking decks, that's what I did
  • 20:59 - 21:05
    here. It's now not the normalized parking
    demand, but the absolute parking demand.
  • 21:05 - 21:11
    So now we can see also the absolute
    numbers, the black black bars you've seen
  • 21:11 - 21:16
    previously already. Now the red bars is
    for the during the Corona crisis. And then
  • 21:16 - 21:22
    I defined these, the first wave and the
    second wave as serious corona times. So I
  • 21:22 - 21:26
    also plotted a third bar... set of bars
    here. And it's interesting to see that
  • 21:26 - 21:33
    while most of the parking decks, of
    course, suffered in terms of providing
  • 21:33 - 21:40
    parking demands or most of them provided
    fewer parking decks, parking spots. But
  • 21:40 - 21:44
    there are a few, like, for instance, the
    Marktdreieck-Parkdeck here that, well,
  • 21:44 - 21:50
    almost increased. We can see during the
    corona in general it increased a bit. And
  • 21:50 - 21:54
    then during the heavy corona, it increased
    even more. And as I mentioned before, this
  • 21:54 - 22:00
    is the parking deck that corresponds to,
    yeah, a whole collection of doctors. So. I
  • 22:00 - 22:07
    derive that well during Corona times the
    parking demand in front of doctors even
  • 22:07 - 22:13
    increased a tiny bit. Yeah, with that, I
    would like to come to my conclusions.
  • 22:13 - 22:18
    Thank you for sticking with me until now.
    So I scraped publicly available data here
  • 22:18 - 22:27
    with a small scraper set up. I analyzed
    it, for instance, for day and hour
  • 22:27 - 22:31
    patterns. And last but not least, did some
    machine learning in order to quantify the
  • 22:31 - 22:39
    demand in between the stations, there is
    an accompanying blog article also. You can
  • 22:39 - 22:42
    find it down here, there all the figures
    in higher resolution and you can play
  • 22:42 - 22:48
    around with an interactive map also, if
    you like. Um, and to finally now conclude
  • 22:48 - 22:51
    the presentation. I would like to hear
    from you what you think about this
  • 22:51 - 22:57
    analysis. I'd like to improve with these
    kind of mini studies. And therefore, I
  • 22:57 - 23:03
    would be very interested in your critique
    regarding the content, the presentation
  • 23:03 - 23:08
    and general content... comments. Again,
    you can email me to this email address
  • 23:08 - 23:16
    here, or alternatively, I set up a Google,
    um, Google form. So the Google forms
  • 23:16 - 23:21
    document that exactly comprised of these
    questions, and you can simply type them in
  • 23:21 - 23:25
    if you're interested. Thank you very much.
  • 23:25 - 23:30
    Herald: All right, first of all, thank you
    for this amazing talk, I have a few
  • 23:30 - 23:34
    questions what have been relayed to me and
    I'm just going to ask them one after the
  • 23:34 - 23:39
    other. And let's not waste any time and
    start with the first one. Have you found
  • 23:39 - 23:47
    parking decks that are usually heavily
    overloaded or never completely used?
  • 23:47 - 23:56
    Martin: Um so. Given that there are only
    around what was it, 8 or 9 or 10 in the
  • 23:56 - 24:05
    data set, honestly, I never looked for for
    that question. So, um, short answers is:
  • 24:05 - 24:11
    No. Long answer, yes, I could have or I
    still could, I would say.
  • 24:11 - 24:17
    H: OK. Have you tried prediction in time,
    so guessing which parking decks will be
  • 24:17 - 24:22
    exhausted soon?
    M: No, no. So that's obviously it's
  • 24:22 - 24:27
    like... it's... I would consider that
    something like the predictive maintenance
  • 24:27 - 24:33
    of traffic business kind of. It's
    definitely a thing that people that have
  • 24:33 - 24:38
    more time and more are willing to invest
    more definitely should do and could do. I
  • 24:38 - 24:44
    would say I mean, there's lots of lots of
    additional data that might be of interest,
  • 24:44 - 24:49
    like weather data. And, for instance, is
    it a is it a public holiday, yes or no and
  • 24:49 - 24:56
    all that kind of stuff. So, again, short
    answer.: No. Long answer. Yes. Would be
  • 24:56 - 25:01
    possible.
    H: OK, so if anyone watching has the time
  • 25:01 - 25:06
    or energy to do that, they could.
    M: Absolutely. Yes.
  • 25:06 - 25:11
    H: OK, and the last question I have right
    now is, will the code or especially the
  • 25:11 - 25:17
    scraping part be available publicly or
    like in the GitHub or somewhere?
  • 25:17 - 25:25
    H: Um, I could do that. So I was very I
    was quite hesitant with it. So obviously
  • 25:25 - 25:30
    publishing the data could be problematic.
    I have no experience with it on the legal
  • 25:30 - 25:34
    side. So I would probably not publish the
    data, which is I mean, it's old data
  • 25:34 - 25:41
    anyway. So and but then regarding the
    code, I was just waiting if anybody's
  • 25:41 - 25:45
    interested. So given that somebody stated
    the interest, I would probably publish it.
  • 25:45 - 25:50
    Yes.
    H: OK, yeah I think that's it from the
  • 25:50 - 25:52
    question side .
    M: Hmhm.
  • 25:52 - 25:59
    H: And they were all answered quite
    nicely. And judging by that, I don't get
  • 25:59 - 26:05
    any more questions right now. So, yeah, I
    would conclude is talk. Maybe you can also
  • 26:05 - 26:08
    like have a last word. From my side I'm
    done here.
  • 26:08 - 26:15
    M: Yes. So, um, well, thank you very much
    for watching the talk. And I try to
  • 26:15 - 26:20
    improve. I think I said it on the last
    slide. If I'm right, let me know if you
  • 26:20 - 26:26
    have any doubts or things to improve
    essentially on. And then regarding maybe
  • 26:26 - 26:32
    the last question of publishing it, I
    believe that I put a link there to find my
  • 26:32 - 26:38
    blog and I would probably just add another
    blog post stating well there's an github
  • 26:38 - 26:42
    repository. You can go there and just find
    just find the code and stuff like that
  • 26:42 - 26:48
    there. So if you're interested, just, you
    know, find my website. My name is Martin
  • 26:48 - 26:56
    Lellep. Um, and then you will in a few
    days, I guess probably in 2021 only. So I
  • 26:56 - 27:00
    won't be able to publish it in the next
    two days. But then the code will be
  • 27:00 - 27:06
    public. Yes.
    H: OK, then. Have a great day. Great time
  • 27:06 - 27:09
    at Congress and byebye.
  • 27:09 - 27:11
    postroll music
  • 27:11 - 27:38
    Subtitles created by c3subtitles.de
    in the year 2021. Join, and help us!
Title:
#rC3 A few quantitative thoughts on parking in Marburg
Description:

more » « less
Video Language:
English
Duration:
27:38

English subtitles

Revisions