-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
114 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
data/articles/blog/2024-05-11-billstedter-hauptstrasse-1.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
defmodule Data.Article.Blog.BillstedterHauptstrasse1 do | ||
use Article.Default | ||
|
||
def title(), do: "Billstedter Hauptstraße – zwischen Am Alten Zoll und Hertelstieg (Radroute 8)" | ||
|
||
def summary(), | ||
do: | ||
"Radfahrstreifen werden verbreitert und teilweise als Protected-Bike-Lane hergerichtet. Platz an der Möllner Landstraße wird umgestaltet, bleibt durch den Erhalt der KFZ-Parkplätze aber hässlich." | ||
|
||
def type(), do: :planned | ||
|
||
def stop(), do: ~d[2025-08-18] | ||
|
||
def tags(), do: ["8"] | ||
|
||
@attrib {"SBI beratende Ingenieure für BAU-VERKEHR-VERMESSUNGS GmbH", "https://www.sbi.de/"} | ||
def map_image do | ||
[ | ||
Data.MapImage.new(__MODULE__, @attrib, 1, { | ||
%{lat: 53.540195687, lon: 10.102666526}, | ||
%{lat: 53.539037993, lon: 10.104990569}, | ||
%{lat: 53.538694763, lon: 10.104506557}, | ||
%{lat: 53.539852550, lon: 10.102182305} | ||
}), | ||
Data.MapImage.new(__MODULE__, @attrib, 2, { | ||
%{lat: 53.539056975, lon: 10.104989416}, | ||
%{lat: 53.537884869, lon: 10.107324348}, | ||
%{lat: 53.537528114, lon: 10.106817107}, | ||
%{lat: 53.538700158, lon: 10.104482370} | ||
}) | ||
] | ||
end | ||
|
||
def links(_assigns) do | ||
[ | ||
{"Ausschreibung Umbau", "Mai 2024", | ||
"https://fbhh-evergabe.web.hamburg.de/evergabe.bieter/api/external/deeplink/subproject/e57e41bd-8b1e-4ffd-a8a6-dc8b1e2c702e"} | ||
] | ||
end | ||
|
||
def text(assigns) do | ||
~H""" | ||
<h4>Alter Zustand</h4> | ||
<p>Es sind beidseitig rund 1,6m breite <.ref>Radfahrstreifen</.ref> vorhanden.</p> | ||
<.h4_planning checked={@show_map_image}/> | ||
<p>Es sind beidseitig rund 2,5m breite <.ref>Radfahrstreifen</.ref> bzw. 2,25m breite <.ref>Protected-Bike-Lanes</.ref> vorgesehen. Die Trennsteine werden für Einfahrten, Einmündungen und bei KFZ-Parkplätzen rechts des Radwegs unterbrochen.</p> | ||
<p>Auf <.v bounds="10.10192,53.537984,10.106929,53.54026" lon={10.103921} lat={53.539273} dir="backward" ref="8">Höhe des Platzes</.v> soll in Straßenmitte eine neue Baumreihe gepflanzt werden. Diese wird gepflastert und dient auch als Sprunginsel, damit die Straße zu Fuß leichter gequert werden kann. Entsprechend ist in diesem Bereich ein Radfahrstreifen geplant. Die KFZ-Parkplätze auf der Nordseite bleiben in etwa wie heute, wofür einige Bäume gefällt werden.</p> | ||
<p>Linksabbiegen ist nur <.ref>direkt</.ref> möglich, sofern man nicht über den Gehweg schieben möchte.</p> | ||
<h4>Meinung</h4> | ||
<p>Die Radfahrstreifen zu verbreitern und vom KFZ-Verkehr abzutrennen ist gut.</p> | ||
<p>Auch den Platz als solchen herzurichten ist eine gute Idee. Dazu passt allerdings nicht, dass die Sprunginsel und der Platz von einer Reihe an KFZ-Parkplätzen durchschnitten wird. Als Ladezone in Ordnung, ist KFZ-Parken angesichts der zahlreichen und teils kostenlosen Parkhäuser unverständlich. Dafür die Bäume auf dem Platz zu opfern ist sehr kurzsichtig gedacht.</p> | ||
<h4>Quelle</h4> | ||
<.structured_links ref={@ref}/> | ||
""" | ||
end | ||
end |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.