2020-07-30 18:36:57 +02:00
|
|
|
<?php
|
|
|
|
|
2023-10-06 11:50:50 +02:00
|
|
|
require("config.php");
|
2023-10-06 12:37:02 +02:00
|
|
|
require_once("lib/attributes.php");
|
2020-07-30 18:36:57 +02:00
|
|
|
require_once("lib/functions.php");
|
|
|
|
|
2023-10-06 12:48:19 +02:00
|
|
|
$numYear=$numLatestYear;
|
|
|
|
|
2021-10-27 15:01:27 +02:00
|
|
|
|
|
|
|
$strDistrict = (isset($_GET['d'])) ? $_GET['d'] : "Hamm";
|
|
|
|
$numVehicle = (isset($_GET['v'])) ? (int) $_GET['v'] : 1;
|
|
|
|
$numYear = (isset($_GET['year'])) ? (int) $_GET['year'] : $numYear;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$result= $db->prepare("SELECT count(*) FROM district WHERE district=:district");
|
|
|
|
$result->bindParam(":district",$strDistrict);
|
|
|
|
$result->execute();
|
|
|
|
if ($row=$result->fetch(PDO::FETCH_NUM)) {
|
|
|
|
if ($row[0]==0) $strDistrict="hamm";
|
|
|
|
}
|
|
|
|
|
|
|
|
//$result = $db->query($strSQL);
|
|
|
|
$result= $db->prepare("SELECT * FROM district WHERE district=:district");
|
|
|
|
$result->bindParam(":district",$strDistrict);
|
|
|
|
$result->execute();
|
|
|
|
while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
|
|
|
|
$strDistrict = $row['district'];
|
|
|
|
$strTitle = $row['title'];
|
|
|
|
$strGeojson = $row['geojson'];
|
|
|
|
|
|
|
|
$numULAND=$row['ULAND'];
|
|
|
|
$numUREGBEZ=$row['UREGBEZ'];
|
|
|
|
$numUKREIS=$row['UKREIS'];
|
|
|
|
$numUGEMEINDE=$row['UGEMEINDE'];
|
|
|
|
|
|
|
|
$numInfoLat=$row['lat'];
|
|
|
|
$numInfoLng=$row['lng'];
|
|
|
|
$numZoom=$row['zoom'];
|
|
|
|
|
|
|
|
$strTitle = "Unfallkarte $strTitle ";
|
2023-07-27 15:05:55 +02:00
|
|
|
$strIntroText = "$strTitle basierend auf den Daten des Statistischen Bundesamtes.";
|
2021-10-27 15:01:27 +02:00
|
|
|
|
|
|
|
$fileGeojson ="geojson/$strGeojson";
|
|
|
|
$strLocation = " AND ULAND=$numULAND AND UREGBEZ=$numUREGBEZ AND UKREIS=$numUKREIS ";
|
|
|
|
if ($numUGEMEINDE>0) {
|
|
|
|
$strLocation .= "AND UGEMEINDE=$numUGEMEINDE";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$arrDisctrict = array ();
|
|
|
|
|
|
|
|
$strSQL = "SELECT district,title FROM district ORDER BY title ASC";
|
|
|
|
$result=$db->query($strSQL);
|
|
|
|
while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
|
|
|
|
$arrDistrict[$row['district']]=$row['title'];
|
|
|
|
}
|
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
$strIntro ="<h4>".$strTitle."</h4>";
|
|
|
|
$strIntro .= nl2br2($strIntroText);
|
2020-08-02 20:08:48 +02:00
|
|
|
|
|
|
|
switch ($numVehicle) {
|
|
|
|
case 1:
|
|
|
|
case 0:
|
|
|
|
$strWhere ="IstRad = 1";
|
|
|
|
$topic=2;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
$strWhere = "IstPKW = 1";
|
|
|
|
$topic=4;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
$strWhere = "IstFuss = 1";
|
|
|
|
$topic=1;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
$strWhere = "IstKrad = 1";
|
|
|
|
$topic=0;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
$strWhere = "IstGkfz = 1";
|
|
|
|
$topic=5;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
$strWhere = "IstSonstige = 1";
|
|
|
|
$topic=3;
|
|
|
|
break;
|
|
|
|
default: $strWhere ="IstRad = 1";
|
|
|
|
$topic=2;
|
2020-08-01 15:40:09 +02:00
|
|
|
}
|
|
|
|
|
2021-07-31 20:56:13 +02:00
|
|
|
$strYear = " AND UJAHR='".$numYear."' ";
|
|
|
|
|
2021-10-17 10:07:21 +02:00
|
|
|
$strSQL="SELECT * FROM data WHERE ".$strWhere.$strYear.$strLocation;
|
2020-08-01 15:40:09 +02:00
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
|
|
|
|
$result = $db->query($strSQL);
|
|
|
|
$arrMarker = array();
|
|
|
|
$arrDescription = array();
|
2020-08-02 20:08:48 +02:00
|
|
|
$description="";
|
2023-07-28 07:45:47 +02:00
|
|
|
$numId=0;
|
2021-10-17 10:07:21 +02:00
|
|
|
while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
|
2020-08-01 15:40:09 +02:00
|
|
|
//print_r($row);echo "<hr>";
|
2023-07-28 07:45:47 +02:00
|
|
|
//$id = $row['OBJECTID'];
|
|
|
|
$id=$numId;
|
2020-07-30 18:36:57 +02:00
|
|
|
$numLng = $row['XGCSWGS84'];
|
|
|
|
$numLat = $row['YGCSWGS84'];
|
2020-08-02 20:08:48 +02:00
|
|
|
if ($row['IstRad']) $description .="mit Fahrradbeteiligung, ";
|
|
|
|
if ($row['IstPKW']) $description .="mit PKW-Beteiligung, ";
|
|
|
|
if ($row['IstFuss']) $description .="mit Fußgängerbeteiligung, ";
|
|
|
|
if ($row['IstKrad']) $description .="mit Kraftradbeteiligung, ";
|
|
|
|
if ($row['IstGkfz']) $description .="mit Güterkraftzeugbeteiligung, ";
|
|
|
|
if ($row['IstSonstige']) $description .="mit Beteiligung eines oben nicht genannten Verkehrsmittels";
|
|
|
|
|
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
$strDescription=generate_tooltip_description($row);
|
2023-07-28 07:45:47 +02:00
|
|
|
$strCategory=generate_category($row);
|
2020-07-30 18:36:57 +02:00
|
|
|
$arrMarker[]="marker[".$id."] = [L.marker([".$numLat."," .$numLng."],"
|
2023-07-28 20:11:45 +02:00
|
|
|
." { icon: ".$arrMarkerType[$topic]." }),'".$strCategory."'];\n"
|
2020-07-30 18:36:57 +02:00
|
|
|
."marker[".$id."][0].addTo(mymap);\n "
|
|
|
|
."marker[".$id."][0].bindPopup('".$strDescription."');";
|
2023-07-28 07:45:47 +02:00
|
|
|
$numId++;
|
2020-07-30 18:36:57 +02:00
|
|
|
}
|
2023-07-28 07:45:47 +02:00
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
$markerid=$id+1;
|
|
|
|
/*
|
|
|
|
marker[val.id] = [L.marker([val.lat, val.lng], { "icon": L.MakiMarkers.icon({ "color": color, "size": "m", "icon": "circle" }) }).bindPopup(html), val.membertype];
|
|
|
|
marker[val.id][0].addTo(map);
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="de">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
<script src="js/jquery.min.js"></script>
|
|
|
|
<script src="js/leaflet.js"></script>
|
|
|
|
<script src="js/leaflet.ajax.js"></script>
|
|
|
|
<script src="js/leaflet.awesome-markers.js"></script>
|
|
|
|
<script src="js/leaflet.snogylop.js"></script>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="css/font-awesome.min.css">
|
|
|
|
<link rel="stylesheet" href="css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="css/leaflet.css" />
|
|
|
|
<link rel="stylesheet" href="css/leaflet.awesome-markers.css" />
|
|
|
|
<link rel="stylesheet" href="css/style.css" />
|
2020-07-31 07:34:37 +02:00
|
|
|
<title><?= $strTitle ?></title>
|
2020-07-30 18:36:57 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2023-10-06 20:27:05 +02:00
|
|
|
<!-- Navbar ######################## -->
|
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
|
|
|
|
<a class="navbar-brand" href="#"><?= $strTitle ?></a>
|
2023-10-06 20:27:05 +02:00
|
|
|
|
|
|
|
<form method="GET" action="index.php">
|
|
|
|
<select name="year" style="float:left;margin-top:0.5em;margin-right:0.5em;" onchange="this.form.submit()">
|
|
|
|
<?php
|
|
|
|
for ($i=$numLatestYear;$i>=$numStartYear;$i--) {
|
|
|
|
$strActive = ($i==$numYear) ? "selected=\"selected\"" : "";
|
|
|
|
echo "<option value='$i' $strActive >$i</a>";
|
|
|
|
}
|
|
|
|
echo "<input type='hidden' name='v' value='$numVehicle'>";
|
|
|
|
echo "<input type='hidden' name='d' value='$strDistrict'>";
|
|
|
|
?>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbars">
|
|
|
|
<ul class="navbar-nav mr-auto">
|
|
|
|
<?php foreach ($arrVehicles as $key => $strVehicle):
|
|
|
|
$strActive = ($numVehicle==$key) ? "active" : ""
|
|
|
|
?>
|
|
|
|
<li class="nav-item <?=$strActive?>">
|
|
|
|
<a class="nav-link" href="index.php?v=<?=$key?>&year=<?=$numYear?>&d=<?=$strDistrict?>"><?=$strVehicle?>
|
|
|
|
<span class="sr-only">(current)</span> </a>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
|
|
|
</ul>
|
2020-07-30 18:36:57 +02:00
|
|
|
|
2023-10-06 20:27:05 +02:00
|
|
|
<!-- District -->
|
|
|
|
|
|
|
|
<form method="GET" action="index.php">
|
|
|
|
<select name="d" style="float:left;margin-top:0.5em;margin-right:0.5em;" onchange="this.form.submit()">
|
|
|
|
<?php foreach ($arrDistrict as $key => $strTitle):
|
|
|
|
$strActive = ($strDistrict==$key) ? "selected=\"selected\"" : ""; ?>
|
|
|
|
<option value="<?=$key?>" <?=$strActive?>><?=$strTitle?></option>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</select>
|
|
|
|
</form>
|
2020-07-30 18:36:57 +02:00
|
|
|
<ul class="navbar-nav mr-auto right">
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="impressum.php">Impressum</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="datenschutz.php">Datenschutzerklärung</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2023-10-06 20:27:05 +02:00
|
|
|
|
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbars" aria-controls="navbars" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
</div>
|
|
|
|
</nav>
|
2023-10-06 20:27:05 +02:00
|
|
|
<!-- Ende Navbar ############# -->
|
2020-07-30 18:36:57 +02:00
|
|
|
|
|
|
|
<div class="container-fluid" style="margin-top: 4em;">
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<nav class="col-md-2 d-none d-md-block bg-light sidebar">
|
|
|
|
<div class="sidebar-sticky">
|
2021-07-31 20:56:13 +02:00
|
|
|
<h1>Jahr <?= $numYear?></h2>
|
2020-09-05 11:59:06 +02:00
|
|
|
<h2>Unfälle mit <?= $arrVehicles_pl[$numVehicle]; ?> </h2>
|
2020-07-30 18:36:57 +02:00
|
|
|
<ul class="nav flex-column">
|
2021-07-31 20:56:13 +02:00
|
|
|
<?php echo get_statistics($numVehicle,$strWhere,$strYear); ?>
|
2020-07-30 18:36:57 +02:00
|
|
|
</ul>
|
2020-09-05 11:59:06 +02:00
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<main role="main" class="col-md-9 ml-sm-auto col-lg-10 px-1">
|
|
|
|
<div id="mapid"></div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<!-- row -->
|
|
|
|
</div>
|
|
|
|
<!-- container-fluid -->
|
2023-07-28 22:36:31 +02:00
|
|
|
<script>
|
2020-07-30 18:36:57 +02:00
|
|
|
// Map ----------------------------------------------------------------------
|
|
|
|
var mymap = L.map('mapid').setView([<?=$numInfoLat ?>, <?=$numInfoLng ?>], <?=$numZoom ?>);
|
|
|
|
|
|
|
|
var mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
|
|
|
|
// ocmlink = '<a href="http://thunderforest.com/">Thunderforest</a>';
|
|
|
|
var ocmLink = '<a href="https://www.mapbox.com/">Mapbox</a>';
|
|
|
|
|
2023-10-06 20:27:05 +02:00
|
|
|
L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=<?=$mapbox_token?>', {
|
2020-07-30 18:36:57 +02:00
|
|
|
maxZoom: 18,
|
|
|
|
minZoom:<?=$numZoom ?>,
|
|
|
|
attribution: 'Map data © '+ mapLink +' contributors, ' +
|
|
|
|
'<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
|
|
|
|
'Imagery © ' + ocmLink,
|
|
|
|
//id: 'mapbox/streets-v11',
|
|
|
|
id: 'mapbox/outdoors-v11',
|
|
|
|
tileSize: 512,
|
|
|
|
zoomOffset: -1
|
|
|
|
}).addTo(mymap);
|
|
|
|
|
|
|
|
// markerIcons ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
var infoMarker = L.AwesomeMarkers.icon({icon: 'info', prefix: 'fa', markerColor: 'orange'});
|
2020-08-01 15:40:09 +02:00
|
|
|
var bicycleMarker = L.AwesomeMarkers.icon({icon: 'bicycle', prefix: 'fa', markerColor: 'red'});
|
2020-07-30 18:36:57 +02:00
|
|
|
var carMarker = L.AwesomeMarkers.icon({icon: 'car', prefix: 'fa', markerColor: 'red'});
|
|
|
|
var truckMarker = L.AwesomeMarkers.icon({icon: 'truck', prefix: 'fa', markerColor: 'beige'});
|
|
|
|
var trainMarker = L.AwesomeMarkers.icon({icon: 'bus', prefix: 'fa', markerColor: 'blue'});
|
|
|
|
var pedestrianMarker = L.AwesomeMarkers.icon({icon: 'male', prefix: 'fa', markerColor: 'darkblue'});
|
|
|
|
|
|
|
|
function getMarker(topic) {
|
|
|
|
var arrMarker = [];
|
|
|
|
<?php
|
|
|
|
foreach ($arrMarkerType as $key => $value) {
|
|
|
|
echo "arrMarker[".$key."]=".$value.";\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
return arrMarker[topic];
|
|
|
|
}
|
|
|
|
|
|
|
|
//Hamm-Layer - todo invers area ---------------------------------------
|
|
|
|
|
|
|
|
var myStyle = {
|
|
|
|
"color": "grey",
|
|
|
|
"fillColor": "lightblue",
|
|
|
|
"weight": 4,
|
|
|
|
"opacity": 0.6
|
|
|
|
};
|
|
|
|
|
2023-10-06 20:27:05 +02:00
|
|
|
var districtLayer = new L.GeoJSON.AJAX(["<?= $fileGeojson ?>"], {
|
2020-07-30 18:36:57 +02:00
|
|
|
style: myStyle,
|
|
|
|
invert: true
|
|
|
|
});
|
2023-10-06 20:27:05 +02:00
|
|
|
districtLayer.addTo(mymap);
|
2020-07-30 18:36:57 +02:00
|
|
|
|
|
|
|
// Marker from database -------------------------------------------------------
|
|
|
|
|
|
|
|
var marker = [];
|
|
|
|
var arrDescription = [];
|
|
|
|
|
|
|
|
<?php
|
|
|
|
foreach ($arrMarker as $idx=>$strMarker) {
|
|
|
|
echo $strMarker."\n";
|
|
|
|
}
|
|
|
|
echo "var marker_max=".$markerid."\n";
|
|
|
|
?>
|
|
|
|
|
|
|
|
// Info-Marker für Start --------------------------------------------------------
|
|
|
|
|
|
|
|
var marker2 = L.marker([<?=$numInfoLat?>, <?=$numInfoLng?>], { icon: infoMarker }).addTo(mymap);
|
2020-08-02 20:08:48 +02:00
|
|
|
|
|
|
|
|
2020-07-30 18:36:57 +02:00
|
|
|
<?php
|
2020-08-02 20:08:48 +02:00
|
|
|
echo "marker2.bindPopup('".$strIntro."');";
|
|
|
|
if ($numVehicle==0) {
|
|
|
|
echo "marker2.openPopup();";
|
|
|
|
}
|
2020-07-30 18:36:57 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Hide and show marker form checkbox ----------------------------------------
|
|
|
|
|
|
|
|
$('.check').click(function() {
|
2023-07-28 07:45:47 +02:00
|
|
|
filter = this.name;
|
2020-07-30 18:36:57 +02:00
|
|
|
if (jQuery(this).prop("checked")) {
|
|
|
|
jQuery.each(marker, function(key, value) {
|
|
|
|
if (value) {
|
2023-07-28 20:11:45 +02:00
|
|
|
if (filter.match(value[1])) { value[0].addTo(mymap); }
|
2020-07-30 18:36:57 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
jQuery.each(marker, function(key, value) {
|
|
|
|
if (value) {
|
2023-07-28 20:11:45 +02:00
|
|
|
if (filter.match(value[1])) { value[0].remove(); }
|
2020-07-30 18:36:57 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2023-07-28 22:36:31 +02:00
|
|
|
function check_all(){
|
|
|
|
jQuery.each(marker, function(key, value) {
|
|
|
|
if (value) { value[0].addTo(mymap); }
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function uncheck_all()
|
|
|
|
{
|
|
|
|
jQuery.each(marker, function(key, value) {
|
|
|
|
if (value) { value[0].remove(); }
|
|
|
|
});
|
|
|
|
};
|
2020-07-30 18:36:57 +02:00
|
|
|
|
2023-07-30 16:58:10 +02:00
|
|
|
$('input[type=radio][name=kategorie]').on('change', function() {
|
|
|
|
$('.td_ubet').hide();
|
|
|
|
$('.td_utyp').hide();
|
|
|
|
$('.td_uart').hide();
|
|
|
|
$('.td_ukat').hide();
|
|
|
|
check_all();
|
|
|
|
$("input[type=checkbox]").prop('checked', $(this).prop('checked'));
|
|
|
|
switch ($(this).val()) {
|
|
|
|
case 'UART':
|
|
|
|
$('.td_uart').show();
|
|
|
|
break;
|
|
|
|
case 'UKAT':
|
|
|
|
$('.td_ukat').show();
|
|
|
|
break;
|
|
|
|
case 'UTYP':
|
|
|
|
$('.td_utyp').show();
|
|
|
|
break;
|
|
|
|
case 'UBET':
|
2023-07-30 17:44:03 +02:00
|
|
|
$('.td_ubet').show();
|
|
|
|
$('.veh_<?=$numVehicle?>').hide();
|
2023-07-30 16:58:10 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2020-07-30 18:36:57 +02:00
|
|
|
|
2023-07-30 16:58:10 +02:00
|
|
|
$('.td_ubet').hide();
|
|
|
|
$('.td_utyp').hide();
|
|
|
|
$('.td_uart').hide();
|
|
|
|
$('.td_ukat').show();
|
|
|
|
$('input:radio[name=kategorie]').val(['UKAT']);
|
2023-10-06 12:12:25 +02:00
|
|
|
</script>
|
2020-07-30 18:36:57 +02:00
|
|
|
</body>
|
|
|
|
</html>
|