2016-02-21 01:04:51 +00:00
{% extends 'base.html' %}
{% load static from staticfiles %}
{% block extra_head %}
< link rel = "stylesheet" href = "{% static 'css/leaflet.css' %}" / >
{% endblock %}
{% block content %}
< div class = "row" >
< div class = "col-md-12" >
< h2 >
Where is BornHack going to take place?
< / h2 >
< div id = "map" class = "map" > < / div >
< p >
< strong > Coordinates< / strong > : 55.011520, 14.975360< br / >
< strong > Address< / strong > : Baunevej 11, 3720 Aakirkeby
< / p >
< / div >
< / div >
2016-04-02 22:35:30 +00:00
< div class = "row" >
< div class = "col-md-12" >
< h2 > How do I get to Bornholm?< / h2 >
< h3 > From/Via Copenhagen< / h3 >
< p >
There are several ways to get to Bornholm from Copenhagen.
A domestic plane departs from Copenhagen Airport, and you
can get from Copenhagen Central station by either bus or
train via Ystad or the Køge-Rønne ferry connection.
< / p >
< dl >
2016-04-28 09:27:42 +00:00
< dt > Plane (expensive)< / dt >
2016-04-02 22:35:30 +00:00
< dd >
2016-04-28 09:27:42 +00:00
You can check plane departures and book tickets at
2016-05-30 16:23:03 +00:00
< a href = "https://www.dat.dk/en/" target = "_blank" > dat.dk< / a > . There are
2016-04-02 22:35:30 +00:00
multiple departures daily. The flight takes approximately
35 minutes.
< / dd >
< dt > Via Ystad (easy)< / dt >
< dd >
You can drive over Øresundsbroen to Ystad or you can
2016-04-28 09:27:42 +00:00
take the train/bus from Copenhagen Central Station. You
2016-04-02 22:35:30 +00:00
can buy train and ferry ticket at
2016-05-30 16:23:03 +00:00
< a href = "http://www.dsb.dk/en/#open" target = "_blank" > dsb.dk< / a > (Type
2016-04-02 22:35:30 +00:00
in "København H" and "Rønne Havn"). More information
2016-05-30 16:23:03 +00:00
about the < a href = "http://www.faergen.com/services/fares/bornholmerfaergen/ystad-roenne.aspx" target = "_blank" >
2016-04-02 22:35:30 +00:00
crossing< / a > .
The crossing takes 1 hour 20 minutes. In total about
3 hours 15 minutes.
< / dd >
< dt > Via Køge (cheap)< / dt >
< dd >
Take the S-train to Køge Station (you need an "all zones"
ticket) or travel by car. The ferry terminal is within
walking distance from the station. You can check out
prices
2016-05-30 16:23:03 +00:00
< a href = "http://www.faergen.com/services/fares/bornholmerfaergen/koege-roenne.aspx" target = "_blank" > here< / a > .
2016-04-02 22:35:30 +00:00
It takes approximately 1 hour to get to Køge. The crossing
takes 5 hours 30 minutes.
< / dd >
< dt > Sassnitz (Germany)< / dt >
< dd >
2016-05-30 16:23:03 +00:00
There is a direct ferry taking cars going from < a href = "http://www.faergen.com/services/fares/bornholmerfaergen/sassnitz-roenne.aspx" target = "_blank" > Sassnitz< / a > .
2016-04-02 22:35:30 +00:00
< / dd >
< dt > Kolobrzeg (Poland)< / dt >
< dd >
2016-04-28 09:27:42 +00:00
There is a passenger ferry from Kolobrzeg to Nexø havn.
2016-04-02 22:35:30 +00:00
< / dd >
< / dl >
< p >
The venue is 24km from Rønne Havn. It is possible to take
a bus with a route nearby the venue. Local taxis can also
get you here.
< / p >
< / div >
< / div >
< div class = "row" >
< div class = "col-md-12" >
< h2 > What kind of power supply can I expect?< / h2 >
2016-05-30 16:23:03 +00:00
We are working on sorting out the details. Power is a standard European
230V supply with type < a href = "http://www.worldstandards.eu/electricity/plugs-and-sockets/" target = "_blank" > C & K plugs< / a > .
2016-04-02 22:35:30 +00:00
< / div >
< / div >
< div class = "row" >
< div class = "col-md-12" >
< h2 > How much bandwidth is there going to be?< / h2 >
We will have at least a 1
gigabit fiber connection. Should be enough for everyone. ;)
< / div >
< / div >
2016-02-21 01:04:51 +00:00
2016-04-03 10:40:06 +00:00
< div class = "row" >
< div class = "col-md-12" >
< h2 > Where do I buy food?< / h2 >
< p >
It will not be possible to buy food at the venue.
We are expecting to light up a large grill every evening.
< / p >
< p >
The closest place to buy groceries is approximately
3.5 km away at Pedersker.
< / p >
< p >
About 7 km from the venue there is a larger selection
at Aakirkeby.
< / p >
< / div >
< / div >
2016-02-21 01:04:51 +00:00
< script src = "{% static 'js/leaflet.js' %}" > < / script >
< script >
var map = L.map('map', {center: [55.131520, 14.903000], zoom: 10});
L.tileLayer(
'http://{s}.tile.osm.org/{z}/{x}/{y}.png',
{
2016-05-30 16:23:03 +00:00
attribution: '© < a href = "http://osm.org/copyright" target = "_blank" > OpenStreetMap< / a > contributors',
2016-02-21 01:04:51 +00:00
}
).addTo(map);
var camp_latlong = [55.011520, 14.975360];
L.marker(camp_latlong).addTo(map);
< / script >
{% endblock %}