forked from stijnvanhoey/course_gis_scripting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgis_python.html
executable file
·544 lines (376 loc) · 10.8 KB
/
gis_python.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
<!DOCTYPE html>
<html>
<head>
<title>Introduction to GIS scripting</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./img/slides.css">
<!-- <style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
#slideshow .slide .content .cols.two .col { width: 48%; }
</style>
-->
</head>
<body>
<textarea id="source">
class: center, middle
# Introduction to GIS scripting
## Python for GIS
INBO workshop, 9/11 May 2017
Stijn Van Hoey
https://github.com/stijnvanhoey/course_gis_scripting
---
class: center, middle
# Recap
---
class: left, middle
* `Packages` provide new objects and methods
```python
import datetime
import numpy as np
import pandas as pd
```
--
* `methods/functions` act on `objects` to do something -> `()`
```python
np.sum(my_array)
my_df.transpose()
```
--
* These objects have `characteristics/attributes`
```python
my_array.size
my_df.columns
```
--
* Some of these objects can be `sliced` -> `[]`
```python
my_array[1:10:2]
my_df["column_name"]
```
---
# Afternoon session
* An introduction example
* The GIS-ecosystem in Python
* Vectors: the essentials
* Raster suggestions
* Desktop GIS interaction
---
class: center, middle
# Introduction showcase
`03-geopandas-appetizer.ipynb`
---
class: center, middle
# Python's GIS ecosystem
#### ## With a subjective flavour/selection
---
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-1.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-2.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-3.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-4.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-5.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-14.png)
background-size: cover
---
class: center, middle

[GDAL (Geospatial Data Abstraction Library)](http://www.gdal.org/) is the<br>
open source Swiss Army knife<br> for raster and vector geospatial data formats.
--
<br><br><br><br>
<small>Traditionally `GDAL` used to design the raster part of the library, and `OGR` the vector part for Simple Features. Starting with GDAL 2.0, both sides have been more integrated.<small>
---
GDAL's python bindings expose most of the functionality of GDAL.
```python
from osgeo import gdal
from osgeo import ogr
```
--
### But...
--
GDAL python bindings are not very "pythonic"
```python
geo = gdal.Open(raster_file)
drv = geo.GetDriver()
print(drv.GetMetadataItem('DMD_LONGNAME'))
```
--
.center[

]
---
class: left, middle
### More pythonic libraries for reading GIS data
* OGR (vector) -> Fiona
* GDAL (raster) -> Rasterio
---
## fiona
Fiona is a Python package for reading (and writing) `vector data`.<br>
Fiona provides `Python objects` (e.g. a dictionary for each record) to geospatial data in various formats.
```python
> with fiona.open('../data/deelbekkens/Deelbekken.shp') as deelbekkens:
feature = next(iter(deelbekkens)) # Just one checking the first
print("Bekken: ", feature['properties']['BEKNAAM'])
print("Vectortype: ", feature['geometry']['type'])
Bekken: Boven-Scheldebekken
Vectortype: Polygon
```
---
## shapely
Shapely is a Python library for geometric operations (**GEOS** library).
Shapely can perform:
* geometry validation
* geometry creation (e.g. collections)
* **geometry operations**
--
`difference`, `intersection`, `union`,...
.center[

]
---
class: middle
**Compare geometries**
* `object.almost_equals(other[, decimal=6])`
* `object.contains(other)`
* `object.crosses(other)`
* `object.disjoint(other)`
* `object.equals(other)`
* `object.intersects(other)`
* `object.touches(other)`
* `object.within(other)`
---
## pyproj
### handling Spatial Reference Systems (SRS)
Examples:
* `EPSG:4326` -> latitude, longitude in WGS-84 coordinate system
* `EPSG:31370` -> Belge 1972 / Belgian Lambert 72
A number of formats exist to represent the SRS:
* WKT
* PROJ.4
* EPSG:xxxx
---
class: center, middle
# Vectors: the essentials
`04-gis-python-vectors.ipynb`
---
class: center, middle
## The curious case of GDAL
---
## GDAL functions: CMD
Available on the command line... with [documentation](http://gdal.org/1.11/gdalwarp.html)...<br>
.center[

]
<br><br>
This [online cheat-sheet](https://github.com/dwtkns/gdal-cheat-sheet) is a great resource!
---
## GDAL functions: QGIS
* Add [gdaltools plugin](https://docs.qgis.org/2.2/en/docs/user_manual/plugins/plugins_gdaltools.html) to QGis
.center[

]
---
## GDAL functions: QGIS
* Build the command using the interface and copy paste your command for later usage...
.center[

]
---
## GDAL functions: Python
* Import the GDAL library and use it within a script
```python
from osgeo import gdal
#...
```
--
* Write a Python function to call a specific GDAL command
```python
# No 'from osgeo import gdal' (!)
subprocess.call(['gdalwarp', inraster, outraster, '-cutline', inshape,
'-crop_to_cutline', '-overwrite'])
```
---
class: center, middle
# call GDAL
`05-the-power-of-gdal.ipynb`
---
## Rasterio
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<small>(*All credits to [Kelsey Jordahl](https://github.com/kjordahl/SciPy-Tutorial-2015) for the example*)</small>
---
### Rasterio python API
```python
with rasterio.open('manhattan.tif') as f:
img = f.read(1)
imshow(img, cmap='gray')
```
.center[

]
---
### Rasterize vector features
Using GeoPandas to generate a vector mask and applying it to a raster image with rasterio ([example](https://github.com/kjordahl/SciPy-Tutorial-2015/blob/master/examples/rasterio_mask.py)).
.center[

]
---
### Rasterize vector features
Using GeoPandas to generate a vector mask and applying it to a raster image with rasterio ([example](https://github.com/kjordahl/SciPy-Tutorial-2015/blob/master/examples/rasterio_mask.py)).
```python
from rasterio.features import rasterize
mask = rasterize([poly], transform=src.transform, out_shape=src.shape)
```
.center[

]
---
class: center, middle
# Raster data in Python
(*only for illustration purposes*)
`06-gis-python-rasters.ipynb`
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-6.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-7.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-8.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-9.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-10.png)
background-size: cover
---
count: false
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-11.png)
background-size: cover
---
# arcpy
```python
import arcpy
```
The `arcpy` Package provides a [set of `objects` and `functions`](http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/alphabetical-list-of-arcpy-functions.htm)
--
<br>
For example, the interaction with Numpy:
```python
arcpy.env.workspace = os.getcwd() + "\\demo.gdb" # connect to gdb
arr = arcpy.da.TableToNumPyArray("canton", "pop_2008")
print("Sum : {:,}".format(arr['pop_2008'].sum()))
```
--
<br>
<div class="alert alert-info">
Hence, the same as we've been doing the whole day... (except of the licen$e)
</div>
--
You can also [export](http://desktop.arcgis.com/en/arcmap/10.3/analyze/modelbuilder/exporting-a-model-to-a-python-script.htm) a model builder setup<br> as a Python script and start working on it...
---
class: center, middle
# QGis scripts in Python
`split vector layer by attribute`-demo
---
class: center, middle

---
count: false
class: center, middle

---
count: false
class: center, middle

---
count: false
class: center, middle

---
class: center, middle
# QGis scripts in Python
`split vector layer by attribute`-demo
Check the information [here](https://docs.qgis.org/2.8/en/docs/user_manual/processing/scripts.html) and [here](http://docs.qgis.org/2.0/en/docs/user_manual/processing/console.html) to write your own QGIS scripts.
---
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-11.png)
background-size: cover
---
class: center, middle, bgheader
background-image: url(./img/StijnVH-ecosystem-gis-11_alpha.png)
background-size: cover
<div class="alert alert-success">
Don't be overwhelmed,<br>enlarge your toolbox function by function...
</div>
---
class: center, middle
... and help each other!

---
class: center, middle
## Good luck!

</textarea>
<!-- <script src="https://gnab.github.io/remark/downloads/remark-latest.min.js">
</script>-->
<script src="./img/remark.min.js" type="text/javascript">
</script>
<script>
var slideshow = remark.create();
</script>
<script>
remark.macros.scale = function (percentage) {
var url = this;
return '<img src="' + url + '" style="width: ' + percentage + '" />';
};
var slideshow = remark.create();
</script>
</script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>