-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharticles.html
61 lines (61 loc) · 2.83 KB
/
articles.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Articles</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.svg">
</head>
<body>
<div id="main_content_wrap" class="outer">
<nav class="main-nav">
<ul id="main-nav-list">
<li>
<a href="index.html">
<div>
Home
</div>
</a>
</li>
<li>
<a href="articles.html" class="active">
<div>
Articles
</div>
</a>
</li>
<li>
<a href="recommendations.html">
<div>
Recommendations
</div>
</a>
</li>
<li>
<a href="contact.html">
<div>
Contact
</div>
</a>
</li>
</ul>
</nav>
<section id="main_content" class="inner">
<h1>Articles</h1>
<ul>
<li><a href="What-is-OpenStreetMap.html">What is OpenStreetMap</a> - explains the OpenStreetMap project</li>
<li><a href="geographic-data-mining-and-visualisation-for-beginners/overpass-turbo-tutorial.html">Introduction to extracting data from OpenStreetMap database for newbies, without any programming or OpenStreetMap knowledge - Overpass turbo tutorial</a> - geographic data mining and visualisation for beginners</li>
<li><a href="OpenStreetMap-ecosystem.html">OpenStreetMap ecosystem</a> - explains what people involved in OpenStreetMap project are doing</li>
<li><a href="laser/">Description of what can be mapped using laser cutter</a> - obviously maps, but they can range from 3D tactile maps to decoration map hanging an a wall. Or can appear on a wooden custom coasters.
<li><a href="prezentacje/OpenStreetMap - dane z którymi możesz - QGIS - Kraków - 2018.pdf">OpenStreetMap - data that you can use</a> - presentation introducing to OSM and describing how its data may be useful. Presented at <a href="http://www.qgis.pl/spotkania/2018/">the QGIS conference</a> at the Tadeusz Kościuszko Cracow University of Technology in 2018. Slides are in Polish, the original title was "OpenStreetMap - dane z którymi możesz"</li>
</ul>
<p>In the list above I mentioned <a href="laser/coasters.html">coasters</a>. It is not the most important thing in the world but I am happy about what I made here :)</p>
<div class="img_container">
<a href="laser/coasters.html"><img src="laser/coaster-viewA.jpg"></a>
<p><a href="laser/coasters.html">See reverse side of this coasters. Or more about coasters in general.</a></p>
</div>
</section>
</div>
</body>
</html>