-
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
100 additions
and
8 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
defmodule Data.Article.Blog.BudapesterStrasse2 do | ||
use Article.Default | ||
|
||
def title(), do: "Budapester Straße (Glacischaussee bis Clemens-Schultz-Straße)" | ||
|
||
def summary(), | ||
do: | ||
"Hochbordradwege werden neu gepflastert und teilweise verbreitert. Die Breiten reichen von 1,2m bis 2,5m, wobei Breiten ab 2,0m überwiegen." | ||
|
||
def type(), do: :planned | ||
|
||
def tags(), do: ["bundesstraße-4"] | ||
|
||
def start(), do: ~d[2024-12] | ||
def stop(), do: ~d[2025-03] | ||
|
||
def tracks(), do: Data.Article.Blog.BudapesterStrasse1.tracks() | ||
|
||
@attrib {"LSBG Hamburg (B1)", "https://lsbg.hamburg.de/ueber-uns/kontakt"} | ||
def map_image do | ||
Data.MapImage.new(__MODULE__, @attrib, { | ||
%{lat: 53.552423011, lon: 9.967208061}, | ||
%{lat: 53.550919463, lon: 9.970717878}, | ||
%{lat: 53.550274033, lon: 9.969934530}, | ||
%{lat: 53.551777582, lon: 9.966424713} | ||
}) | ||
end | ||
|
||
def links(_assigns) do | ||
[ | ||
{"Lageplan", ~d[2024-10], | ||
"https://fragdenstaat.de/anfrage/budapester-strasse-millerntorplatz-millerntordamm-glacischaussee/"} | ||
] | ||
end | ||
|
||
def text(assigns) do | ||
~H""" | ||
<h4>Alter Zustand</h4> | ||
<p>Es sind beidseitig <.ref>Hochbordradwege</.ref> vorhanden. Sie erreichen Breiten von 1,0m bis 1,25m.</p> | ||
<.h4_planning ref={@ref} checked={@show_map_image}/> | ||
<p>Der Radweg auf <.v bounds="9.966579,53.550049,9.971266,53.552424" lon={9.967056} lat={53.551929} dir="backward" ref={@ref}>Häuserseite</.v> soll verbreitert werden. Zunächst auf 2,5m, <.v bounds="9.967756,53.549893,9.971195,53.551824" lon={9.968708} lat={53.551106} dir="backward" ref={@ref} highlight="Simon-von-Utrecht-Straße">nach der Simon-von-Utrecht-Straße</.v> noch auf 2,0m. Auch einige der Wege um die Kreuzung am Millerntorplatz werden zu Lasten der Gehwege verbreitert.</p> | ||
<p>Die <.v bounds="9.966882,53.550157,9.971227,53.552366" lon={9.968303} lat={53.551665} dir="forward" ref={@ref}>Seite des Heiligengeistfeld</.v> wird <em>nicht</em> mit dieser Maßnahme erneuert.</p> | ||
<h4>Meinung</h4> | ||
<p>Weil nur geringfügig saniert wird, bleiben gefährliche Verkehrsführungen wie der <.v bounds="9.967588,53.550806,9.969461,53.551827" lon={9.96829} lat={53.551359} dir="backward" ref={@ref} highlight="Simon-von-Utrecht-Straße">ungesicherte Rechtsabbieger in die Simon-von-Utrecht-Straße</.v>. Brauchbarer als jetzt werden die Radwege aber trotzdem, weil man einander überholen kann.</p> | ||
<p>Langfristig muss der gesamte Bereich städtebaulich neu gedacht werden. Der <.v bounds="9.96879,53.549624,9.972212,53.551564" lon={9.969703} lat={53.55068} dir="backward" ref={@ref}>Millerntorplatz</.v> sollte wieder ein Platz werden und keine reine Kreuzung für den Durchgangsverkehr. Dabei könnten auch gleich die historischen Fehler wie die Zerschneidung der Parks und die isolierte U-Bahn-Station in Kreuzungsmitte behoben werden.</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.