-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
312 lines (279 loc) · 11.3 KB
/
index.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Intro to OpenStreetMap - The Wikipedia of Google
Maps</title>
<meta name="description"
content="A brief and broad introduction into the capabilities of OpenStreetMap" />
<meta name="author" content="Matthew Cengia" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style"
content="black-translucent" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui" />
<link rel="stylesheet" href="reveal.js/css/reveal.css" />
<link rel="stylesheet" href="reveal.js/css/theme/white.css"
id="theme" />
<link rel="stylesheet" href="style.css" />
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="reveal.js/lib/css/zenburn.css" />
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'reveal.js/css/print/pdf.css' : 'reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="reveal.js/lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>Intro to OpenStreetMap</h1>
<h3>The Wikipedia of Google Maps</h3>
<p>
Presentation by Matthew Cengia<br>
<a href="http://twitter.com/mattcen">@mattcen</a><br>
<a href="https://mattcen.github.io/intro-to-openstreetmap">https://mattcen.github.io/intro-to-openstreetmap</a>
</p>
</section>
<section>
<h2>Who am I</h2>
<ul>
<li>Computer Scientist</li>
<li>Linux Systems Adminstrator/Developer</li>
<li>Playing with Linux and open source since 2005</li>
<li>Scout Leader</li>
<li>Mapping Hobbyist</li>
<li><a href="http://au.okfn.org">Open Knowledge Australia ambassador (au.okfn.org)</a></li>
</ul>
</section>
<section>
<section>
<h2>What is OpenStreetMap?</h2>
<img alt="openstreetmap.org" height="70%" width="70%"
src="img/osm-01.png" />
<p>(OpenStreetMap.org)</p>
</section>
<section>
<h2>What is OpenStreetMap?</h2>
<img alt="osmand.net" height="25%" width="25%"
src="img/osmand-01.png" />
<p>(osmand.net)</p>
</section>
<section>
<h2>What is OpenStreetMap?</h2>
<img alt="leafletjs.com, mapbox.com"
src="img/mapbox-01.png" />
<p>(leafletjs.com, mapbox.com)</p>
</section>
<section>
<h2>What is OpenStreetMap?</h2>
<img alt="hipstermelbourne.org" height="50%" width="50%"
src="img/hipstermelb-01.png" />
<p>(hipstermelbourne.org)</p>
</section>
<section>
<h2>What is OpenStreetMap?</h2>
<pre><code data-trim>
<way id="22820458" visible="true" version="6"
changeset="15666374" timestamp="2013-04-09T13:51:05Z"
user="Canley" uid="57437">
<nd ref="245537990"/>
[...]
<nd ref="245537990"/>
<tag k="addr:city" v="Melbourne"/>
<tag k="addr:housenumber" v="328"/>
<tag k="addr:postcode" v="3000"/>
<tag k="addr:street" v="Swanston Street"/>
<tag k="amenity" v="library"/>
<tag k="building" v="yes"/>
<tag k="fax" v="+61 3 96394737"/>
<tag k="landmark:name" v="No value"/>
<tag k="name" v="State Library of Victoria"/>
<tag k="name:fr" v="Bibliothèque d'État du Victoria"/>
<tag k="name:zh" v="维多利亚州立图书馆"/>
<tag k="phone" v="+61 3 86647000"/>
<tag k="website" v="http://www.slv.vic.gov.au/"/>
</way>
</code data-trim></pre>
<p>(OpenStreetMap.org)</p>
</section>
</section>
<section>
<h2>Yeah... so... What is OpenStreetMap?</h2>
<ul>
<li><a
href="https://openstreetmap.org">https://openstreetmap.org</a></li>
<li>Wikipedia of Google Maps</li>
<li>World-wide map database</li>
<li>Completely user-contributed</li>
<li>Basically unrestricted use</li>
</ul>
</section>
<section>
<h2>Cool... So what can I use it for?</h2>
<h3>Anything you like!</h3>
<ul>
<li>Trip routing</li>
<li>Offline smart phone access</li>
<li>Store maps on your hand-held GPS</li>
<li>Custom map tiles</li>
<li>Build advanced mapping websites</li>
</ul>
</section>
<section>
<section>
<h1>My local area is poorly mapped!</h1>
<h2>So fix it!</h2>
</section>
<section>
<h2>iD web-based OpenStreetMap editor</h2>
<img alt="iD OSM Editor" height="75%" width="75%" src="img/id-01.png"/>
</section>
<section>
<h2>Create traces on your hand-held GPS</h2>
<img alt="Garmin GPS" height="20%" width="20%" src="img/Garmin_GPSmap_62s.jpg"/>
<br />
<a
href="http://wiki.openstreetmap.org/wiki/File:Garmin_GPSmap_62s.jpg">
(C) Shernott 2012, OpenStreetMap.org</a>
</section>
<section>
<h2>Create traces and update points on your smart phone</h2>
<img alt="osmand.net" height="25%" width="25%"
src="img/osmand-01.png" />
<p>(osmand.net)</p>
</section>
<section>
<h2>Update maps on paper!</h2>
<img alt="fieldpapers.org" height="80%" width="80%"
src="img/field-paper-tw9d56n7.jpg" />
</section>
</section>
<section>
<h2>Custom Tiles</h2>
<img src="img/80425-1.png" title="openstreetmap.org mapquest" />
<img src="img/80425-2.png" title="openstreetmap.org humanitarian" />
<img src="img/80425-3.png" title="openstreetmap.org transport" />
<img src="img/80425-4.png" title="openstreetmap.org cycle" />
<img src="img/80425-5.png" title="openstreetmap.org standard" />
<img src="img/80425-6.png" title="cycletour.org" />
</section>
<section>
<h2>Arbitrary attributes</h2>
<pre><code data-trim>
<way id="22820458" visible="true" version="6"
changeset="15666374" timestamp="2013-04-09T13:51:05Z"
user="Canley" uid="57437">
<nd ref="245537990"/>
[...]
<nd ref="245537990"/>
<tag k="addr:city" v="Melbourne"/>
<tag k="addr:housenumber" v="328"/>
<tag k="addr:postcode" v="3000"/>
<tag k="addr:street" v="Swanston Street"/>
<tag k="amenity" v="library"/>
<tag k="building" v="yes"/>
<tag k="fax" v="+61 3 96394737"/>
<tag k="landmark:name" v="No value"/>
<tag k="name" v="State Library of Victoria"/>
<tag k="name:fr" v="Bibliothèque d'État du Victoria"/>
<tag k="name:zh" v="维多利亚州立图书馆"/>
<tag k="phone" v="+61 3 86647000"/>
<tag k="website" v="http://www.slv.vic.gov.au/"/>
</way>
</code data-trim></pre>
</section>
<section>
<h2>TileMill</h2>
<img alt="TileMill screenshot" width="80%" height="80%" src="img/tilemill.png">
</section>
<section>
<h2>CartoDB</h2>
<img alt="CartoDB screenshot" width="90%" height="90%" src="img/cartodb.png">
</section>
<section>
<h2>What about Google Maps?</h2>
<ul>
<li>Google tracks you</li>
<li>Exporting large map segments is
difficult</li>
<li>Can't use it offline on your PC or
smart phone</li>
<li>Can't store it on your GPS</li>
<li>No custom tiles</li>
<li>Restrictions on usage for websites etc.</li>
<li>Difficult to get edits approved</li>
</ul>
</section>
<section>
<h1>Demos and Questions</h1>
</section>
<section>
<p>
<a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/">
<img alt="Creative Commons License" style="border-width:0"
src="img/88x31.png"
/></a>
<br />
<span xmlns:dct="http://purl.org/dc/terms/"
href="http://purl.org/dc/dcmitype/InteractiveResource"
property="dct:title" rel="dct:type">Intro to
OpenStreetMap</span> by
<a xmlns:cc="http://creativecommons.org/ns#"
href="http://github.com/mattcen/intro-to-openstreetmap"
property="cc:attributionName" rel="cc:attributionURL">Matthew
Cengia</a>
is licensed under a <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/">Creative
Commons Attribution-ShareAlike 4.0 International License</a>.
<br />
<a href="https://github.com/mattcen/intro-to-openstreetmap">
https://github.com/mattcen/intro-to-openstreetmap
</a>
<br>
<br>
This presentation written in <a href="https://github.com/hakimel/reveal.js">reveal.js</a><br>
<a href="http://lab.hakim.se/reveal-js/">They have an example presentation here</a>
</p>
</section>
</div>
<div class='footer'>
<a href="https://twitter.com/mattcen">@mattcen</a>
#osmintro
</div>
</div>
<script src="reveal.js/lib/js/head.min.js"></script>
<script src="reveal.js/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
loop: true,
slideNumber: true,
transition: 'none', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal.js/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'reveal.js/plugin/zoom-js/zoom.js', async: true },
{ src: 'reveal.js/plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>