Skip to content

Commit cd7f619

Browse files
authored
Merge pull request #2 from Jrh26/Jrh26-20102024
Add files via upload
2 parents ab9eeab + 1fd84cc commit cd7f619

12 files changed

+114098
-0
lines changed

HandsOn/Group12/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**Ronghao Jin** - *Jrh26*

HandsOn/Group12/analysis.html

+171
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
<!DOCTYPE html>
2+
<html lang="es">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Analysis</title>
8+
<style>
9+
table {
10+
border-collapse: collapse;
11+
margin: 20px;
12+
width: 80%;
13+
}
14+
15+
th,
16+
td {
17+
border: 1px solid #000;
18+
padding: 10px;
19+
text-align: left;
20+
}
21+
22+
th {
23+
background-color: #f2f2f2;
24+
}
25+
</style>
26+
</head>
27+
28+
<body>
29+
30+
<h1>Analysis</h1>
31+
32+
<h2>Data Set Analyse.</h2>
33+
<p> This dataset is about the traffic light's location on the area of Madrid.
34+
It contains 56709 traffic lights distributed on Madrid.
35+
The data set contains information such as elemet id, element type, element location and further information:
36+
</p>
37+
<table>
38+
<thead>
39+
<tr>
40+
<th>Column name</th>
41+
<th>Data type</th>
42+
<th>Format</th>
43+
<th>Description</th>
44+
</tr>
45+
</thead>
46+
47+
<tbody>
48+
49+
<tr>
50+
<td>tipo_elem</td>
51+
<td>String</td>
52+
<td>SEMAFORO x/xxx [type]</td>
53+
<td>Type of traffic light, where x indicates number, type contains{PEATON, BICI, PEATON - BICI}.</td>
54+
</tr>
55+
56+
<tr>
57+
<td>distrito</td>
58+
<td>Integer</td>
59+
<td>x</td>
60+
<td>District of the location of the traffic light, where x indicates number.</td>
61+
</tr>
62+
63+
<tr>
64+
<td>id</td>
65+
<td>Integer</td>
66+
<td>x</td>
67+
<td>Unique id for the traffic light, where x indicates number</td>
68+
</tr>
69+
70+
<tr>
71+
<td>id_cruce</td>
72+
<td>Integer</td>
73+
<td>x</td>
74+
<td>Non-unique id for the traffic light intersection, where x indicates number. Elements with same
75+
id_cruce means they are on the same intersection.</td>
76+
</tr>
77+
78+
<tr>
79+
<td>fecha_inst</td>
80+
<td>Time</td>
81+
<td>dd/mm/yyyy hh:mm</td>
82+
<td>Instalation date in format day/month/year hour:minute</td>
83+
</tr>
84+
85+
<tr>
86+
<td>utm_x</td>
87+
<td>String</td>
88+
<td>x.x.x.x.x</td>
89+
<td>X-coordinate for the Universal Transverse Mercator, where x indicates any number from 0 to 999.
90+
</td>
91+
</tr>
92+
93+
<tr>
94+
<td>utm_y</td>
95+
<td>String</td>
96+
<td>x.x.x.x.x.x</td>
97+
<td>Y-coordinate for the Universal Transverse Mercator, where x indicates any number from 0 to 999.
98+
</td>
99+
</tr>
100+
101+
<tr>
102+
<td>longitud</td>
103+
<td>String</td>
104+
<td>x.x.x.x.x</td>
105+
<td>Longitude for the Geographic Coordinate System, where x indicates any number from 0 to 999. </td>
106+
</tr>
107+
108+
<tr>
109+
<td>latitud</td>
110+
<td>String</td>
111+
<td>x.x.x.x.x.x</td>
112+
<td>Latitude for the Geographic Coordinate System, where x indicates any number from 0 to 999. </td>
113+
</tr>
114+
115+
</tbody>
116+
</table>
117+
118+
119+
120+
<h2>Data Set Licensing.</h2>
121+
122+
<p> The licence of the dataset can be found in:
123+
<a
124+
href="https://datos.madrid.es/portal/site/egob/menuitem.3efdb29b813ad8241e830cc2a8a409a0/?vgnextoid=108804d4aab90410VgnVCM100000171f5a0aRCRD&vgnextchannel=b4c412b9ace9f310VgnVCM100000171f5a0aRCRD&vgnextfmt=default">URL</a>
125+
</p>
126+
127+
<p>
128+
<b>Publisher:</b> Ayuntamiento de Madrid
129+
</p>
130+
131+
<p>
132+
<b>Rightsholder:</b> Ayuntamiento de Madrid
133+
</p>
134+
135+
<p>
136+
<b>General Conditions for Reuse:</b> <ul>
137+
<li><b>1. </b> It is prohibited to distort the meaning of the information.</li>
138+
<li><b>2. </b>The source of the documents being reused must be cited. This citation may be made as follows: "Source of data: Madrid City Council (or, as applicable, the administrative body, agency, or entity in question)."</li>
139+
<li><b>3. </b>The date of the last update of the documents being reused must be mentioned, provided that it is included in the original document.</li>
140+
<li><b>4. </b>It is not allowed to indicate, imply, or suggest that the Madrid City Council participates in, sponsors, or supports the reuse being carried out with the information.</li>
141+
<li><b>5. </b>Metadata regarding the date of update and applicable reuse conditions must be preserved, not altered or removed, including, where applicable, in the document made available for reuse.</li>
142+
<li><b>6. </b>In the case of anonymized information for the protection of personal data or other reasons, it is expressly prohibited to carry out re-identification of individuals based on this data and other possible data and information sources, past, present, or future.</li>
143+
</ul>
144+
</p>
145+
146+
<h2>Resource Naming Strategy</h2>
147+
<p>
148+
<b>Domain:</b> <i>http://semanticweb.org/</i>
149+
</p>
150+
151+
<p>
152+
<b>Path:</b> <i>http://semanticweb.org/traffic-lights/</i>
153+
</p>
154+
155+
<p>
156+
<b>Ontology:</b> <i>http://www.semanticweb.org/traffic-lights/ontology/</i>
157+
</p>
158+
159+
<p>
160+
<b>Class:</b> <i>http://www.semanticweb.org/traffic-lights/ontology/{class-name}</i>
161+
</p>
162+
163+
<p>
164+
<b>Property:</b> <i>http://www.semanticweb.org/traffic-lights/ontology/{property-name}</i>
165+
</p>
166+
167+
168+
169+
</body>
170+
171+
</html>

0 commit comments

Comments
 (0)