-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmapsandstatistics.php
92 lines (82 loc) · 3.18 KB
/
mapsandstatistics.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
/*
* This file is part of enviroCar.
*
* enviroCar is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* enviroCar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with enviroCar. If not, see <http://www.gnu.org/licenses/>.
*/
require_once('./assets/includes/authentification.php');
$logged_in = false;
if(!is_logged_in()){
$logged_in = false;
include('header-start.php');
}else{
$logged_in = true;
include('header.php');
}
?>
<div id="data-preview" class="container">
<div class="row-fluid">
<div class="span6 well data-preview leftband first-row">
<div class="span4">
<a href="http://52north.maps.arcgis.com/apps/webappviewer/index.html?id=602699b2f09340f6bd4086cacf2916d4" class="thumbnail" target="_blank" title="Live track overview map">
<img src="http://52north.maps.arcgis.com/sharing/rest/content/items/602699b2f09340f6bd4086cacf2916d4/info/thumbnail/aggregation_thumbnail.png" alt="map preview">
</a>
</div>
<div class="span8">
<h2> <?php echo $speed_titel ?></h2>
<?php echo $speed_description ?>
</div>
</div>
<div class="span6 well data-preview leftband first-row">
<div class="span4">
<a href="http://www.arcgis.com/home/webmap/viewer.html?webmap=5db4e1ea445e4b4b8612443e7ba76119" class="thumbnail" target="_blank" title="CO2 Hotspot Analysis Map">
<img src="http://www.arcgis.com/sharing/rest/content/items/5db4e1ea445e4b4b8612443e7ba76119/info/thumbnail/ago_downloaded.png" alt="map preview">
</a>
</div>
<div class="span8">
<h2><?php echo $hotspot_titel ?></h2>
<?php echo $hotspot_description ?>
</div>
</div>
</div>
</div>
<div id="data-preview" class="container">
<div class="row-fluid">
<div class="span6 well data-preview leftband">
<div class="span4">
<a href="http://rpubs.com/edzer/enviroCar" target="_blank" class="thumbnail" title="Analyzing enviroCar trajectories with R">
<img src="./assets/img/analyzing_with_R_thumb.jpg" alt="Thumbnail of R analysis script for envirocar data">
</a>
</div>
<div class="span8">
<h2><?php echo $analyzing_with_R_titel ?></h2>
<?php echo $analyzing_with_R_description ?>
</div>
</div>
<div class="span6 well data-preview leftband first-row">
<div class="span4">
<a href="http://52north.maps.arcgis.com/home/index.html" class="thumbnail" target="_blank" title="ArcGIS Online enviroCar page">
<img src="./assets/img/agol_thumb.png" alt="preview">
</a>
</div>
<div class="span8">
<h2><?php echo $agol_titel ?></h2>
<?php echo $agol_description ?>
</div>
</div>
</div>
</div>
<?
include('footer.php');
?>