-
Notifications
You must be signed in to change notification settings - Fork 18
/
python-dataviz.Rmd
1020 lines (640 loc) · 40.1 KB
/
python-dataviz.Rmd
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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Mapping and Data Visualization with Python (Full Course)"
author: "Ujaval Gandhi"
subtitle: A comprehensive guide for creating static and dynamic visualizations with spatial data.
output:
# pdf_document:
# toc: yes
# toc_depth: '3'
# latex_engine: xelatex
html_document:
df_print: paged
highlight: pygments
toc: yes
toc_depth: 3
includes:
after_body: comment.html
fontsize: 12pt
header-includes:
- \usepackage{fancyhdr}
- \pagestyle{fancy}
- \renewcommand{\footrulewidth}{0.4pt}
- \fancyhead[LE,RO]{\thepage}
- \geometry{left=1in,top=0.75in,bottom=0.75in}
- \fancyfoot[CE,CO]{{\includegraphics[height=0.5cm]{images/cc-by-nc.png}} Ujaval Gandhi
http://www.spatialthoughts.com}
classoption: a4paper
---
\newpage
***
```{r echo=FALSE, fig.align='center', out.width='75%', out.width='250pt'}
knitr::include_graphics('images/spatial_thoughts_logo.png')
```
***
\newpage
# Introduction
This is an intermediate-level course that teaches you how to use Python for creating charts, plots, animations, and maps.
[![Watch the video](https://img.youtube.com/vi/E8v9aLebKyY/mqdefault.jpg)](https://www.youtube.com/watch?v=E8v9aLebKyY&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6){target="_blank"}
[Watch the Video ↗](https://www.youtube.com/watch?v=E8v9aLebKyY&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6){target="_blank"}
[Access the Presentation ↗](https://docs.google.com/presentation/d/1Mc8O7zXJt-0LwUocPjpfjvkqYj-0qRnUMUIFpftVZFw/edit?usp=sharing){target="_blank"}
# Get the Course Videos
The course is accompanied by a set of videos covering the all the modules. These videos are recorded from our live instructor-led classes and are edited to make them easier to consume for self-study. We have 2 versions of the videos:
### YouTube
We have created a YouTube Playlist with separate videos for each notebook and exercise to enable effective online-learning. [Access the YouTube Playlist ↗](https://www.youtube.com/watch?v=E8v9aLebKyY&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6){target="_blank"}
### Vimeo
We are also making combined full-length video for each module available on Vimeo. These videos can be downloaded for offline learning. [Access the Vimeo Playlist ↗](https://vimeo.com/showcase/11442350?share=copy){target="_blank"}
# Notebooks and Datasets
This course uses Google Colab for all exercises. You do not need to install any packages or download any datasets.
The notebooks can be accessed by clicking on the ![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg) buttons at the beginning of each section. Once you have opened the notebook in Colab, you can copy it to your own account by going to *File → Save a Copy in Drive*.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/colab1.png')
```
Once the notebooks are saved to your drive, you will be able to modify the code and save the updated copy. You can also click the *Share* button and share a link to the notebook with others.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/colab2.png')
```
\newpage
# Hello Colab
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/00_hello_colab.ipynb)
```{r child='python-dataviz-output/00_hello_colab.md'}
```
----
# Matplotlib Basics
[![Watch the Video](https://img.youtube.com/vi/IlVFJ3MUllQ/mqdefault.jpg)](https://www.youtube.com/watch?v=IlVFJ3MUllQ&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6&index=3){target="_blank"}
[Watch the Video ↗](https://www.youtube.com/watch?v=IlVFJ3MUllQ&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6&index=3){target="_blank"}
[View the Presentation ↗](https://docs.google.com/presentation/d/1KjHC137pQQkl8Fs9Pj6T7wzBn-Mrj04vfRJ8bp-wLzE/edit?usp=sharing){target="_blank"}
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/01_matplotlib_basics.ipynb)
```{r child='python-dataviz-output/01_matplotlib_basics.md'}
```
----
# Creating Charts
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/02_creating_charts.ipynb)
```{r child='python-dataviz-output/02_creating_charts.md'}
```
----
# Creating Maps
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/03_creating_maps.ipynb)
```{r child='python-dataviz-output/03_creating_maps.md'}
```
----
# Using Basemaps
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/04_using_basemaps.ipynb)
```{r child='python-dataviz-output/04_using_basemaps.md'}
```
----
# XArray Basics
[![Watch the Video](https://img.youtube.com/vi/ikR4SAQt2sY/mqdefault.jpg)](https://www.youtube.com/watch?v=ikR4SAQt2sY&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6&index=9){target="_blank"}
[Watch the Video ↗](https://www.youtube.com/watch?v=ikR4SAQt2sY&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6&index=9){target="_blank"}
[View the Presentation ↗](https://docs.google.com/presentation/d/1k6mVu-u2Fq5OuAB8WJWngRh2GcTAst1SfripWrHo0J0/edit?usp=sharing){target="_blank"}
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/05_xarray_basics.ipynb)
```{r child='python-dataviz-output/05_xarray_basics.md'}
```
----
# Mapping Gridded Datasets
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/06_mapping_gridded_datasets.ipynb)
```{r child='python-dataviz-output/06_mapping_gridded_datasets.md'}
```
----
# Visualizing Rasters
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/07_visualizing_rasters.ipynb)
```{r child='python-dataviz-output/07_visualizing_rasters.md'}
```
----
# Assignment
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/assignment.ipynb)
```{r child='python-dataviz-output/assignment.md'}
```
----
# Interactive Maps with Folium
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/08_interactive_maps_folium.ipynb)
```{r child='python-dataviz-output/08_interactive_maps_folium.md'}
```
----
# Multi-layer Interactive Maps
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/09_multilayer_maps.ipynb)
Open the notebook named ``09_multilayer_maps.ipynb``.
----
```{r child='python-dataviz-output/09_multilayer_maps.md'}
```
# Leafmap Basics
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/10_leafmap_basics.ipynb)
----
```{r child='python-dataviz-output/10_leafmap_basics.md'}
```
\newpage
# Streamlit Basics
Streamlit is a Python library that allows you to create web-apps and dashboard by just writing Python code. It provides you with a wide range of UI widgets and layouts that can be used to build user- interfaces. Your streamlit app is just a regular Python file with a `.py` extension.
[![Watch the Video](https://img.youtube.com/vi/FF1frIR0XoI/mqdefault.jpg)](https://www.youtube.com/watch?v=FF1frIR0XoI&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6&index=21){target="_blank"}
[Watch the Video ↗](https://www.youtube.com/watch?v=FF1frIR0XoI&list=PLppGmFLhQ1HLzGl8auwYkdUMu_z0Hz7G6&index=21){target="_blank"}
[View the Presentation ↗](https://docs.google.com/presentation/d/1aHJPScvjx4ioGkBUSBm2od8FoxKwARdgBJiJ2TSfySs/edit?usp=sharing){target="_blank"}
## Installation and Setting up the Environment
You need to install the `streamlit` package to create the app. We will be using Anaconda to install ``streamlit`` and related packages on your machine. Please review the [Anaconda Installation Guide](https://courses.spatialthoughts.com/python-foundation.html#installation-and-setting-up-the-environment) for step-by-step instructions.
1. Once you have installed Anaconda, open *Anaconda Prompt* or a *Terminal* and run the following commands.
```
conda update --all
conda create --name streamlit -y
conda activate streamlit
```
2. Now your environment is ready. We will install the required packages. First install `geopandas`.
```
conda install -c conda-forge geopandas -y
```
3. Next we will install `streamlit` and `leafmap`.
```
conda install -c conda-forge streamlit streamlit-folium leafmap -y
```
Some users have reported problems where conda is not able to resolve the environment for installing these packages. Here is an alternate installation procedure if you face difficulties with above. After install geopandas, switch to using `pip` for installing the remaining packages.
```
pip install streamlit streamlit-folium leafmap
```
4. After the installation is done, run the following command.
```
streamlit hello
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/streamlit1.png')
```
A new browser tab will open and display the streamlit Hello app.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/streamlit2.png')
```
Your installation is now complete. You can close the terminal window to stop the streamlit server.
## Create a Simple Dashboard
Let's create a simple interactive dashboard by loading a CSV file and displaying a chart with some statistics. We will get familiar with the streamlit app development workflow and explore different widgets and layout elements.
See Live Demo: [![A Simple Dashboard](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://simpledashboard.streamlit.app/)
1. Create a folder named **simple_dashboard** on your Desktop.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard1.png')
```
2. Open your favorite text editor and create a file with the following content. By convention, we import `streamlit as st`. Then we can use the `st.title()` to display the title of our dashboard and `st.write()` to add a paragraph of text. Save the file in the **simple_dashboard** folder on your desktop as `app.py`
```{python eval=FALSE}
import streamlit as st
st.title('A Simple Dashboard')
st.write('This dashboard displays a chart for the selected region.')
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard2.png')
```
3. Once the file is saved, open *Anaconda Prompt* (Windows) or *Terminal* (Mac/Linux). Switch to the conda environment where you have installed the required packages. We then use `cd` command to change the current directory to the once with the `app.py` file. Then run the following command to start the streamlit server and launch the app.
```{python eval=FALSE}
streamlit run app.py
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard3.png')
```
4. A new browser tab will open and display the output of the app.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard4.png')
```
5. Let's read some data and display it. We load a CSV file from a URL using Pandas and get a DataFrame object. We then use `st.dataframe()` widget to render the dataframe. Update your `app.py` with the following code. As you save the file, you will notice that streamlit will detect it and display a prompt to re-run your app. Choose *Always rerun*.
```{python eval=FALSE}
import streamlit as st
import pandas as pd
st.title('A Simple Dashboard')
st.write('This dashboard displays a chart for the selected region.')
data_url = 'https://github.com/spatialthoughts/python-dataviz-web/releases/' \
'download/osm/'
csv_file = 'highway_lengths_by_district.csv'
url = data_url + csv_file
df = pd.read_csv(url)
st.dataframe(df)
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard5.png')
```
6. The app will now display the dataframe. The dataframe consists of 3 columns. The `DISTRICT` column contains a unique name for the admin region. The *NH* and *SH* columns contain the length of *National Highways* and *State Highways* in Kilometers for each admin region. We will now create a dashboard that displays a chart with the lengths of highways for the user-selected admin region.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard6.png')
```
7. Let's add a dropdown menu with the list of admin regions. We first get the names from the `DISTRICT` column and use `st.selectbox()` to add a dropdown selector. Streamlit apps always run the entire `app.py` whenever any selection is changed. With our current app structure, whenever the user selected a new admin region, the source file will be fetched again and a new dataframe will be created. This is not required as the source data does not change on every interaction. A good practice is to put the data fetching in a function and use the `@st.cache_data` decorator which will cache the results. Anytime the function is called with the same arguments, it will return the cached version of the data instead of fetching it.
```{python eval=FALSE}
import streamlit as st
import pandas as pd
st.title('A Simple Dashboard')
st.write('This dashboard displays a chart for the selected region.')
@st.cache_data
def load_data():
data_url = 'https://github.com/spatialthoughts/python-dataviz-web/releases/' \
'download/osm/'
csv_file = 'highway_lengths_by_district.csv'
url = data_url + csv_file
df = pd.read_csv(url)
return df
df = load_data()
districts = df.DISTRICT.values
district = st.selectbox('Select a district', districts)
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard7.png')
```
8. As the user selects an admin region from the selectbox, the selected value is saved in the `district` variable. We use it to filter the DataFrame to the selected district. Then we use Matplotlib to create a bar-chart with the filtered dataframe and display it using `st.pyplot()` widget.
```{python eval=FALSE}
import streamlit as st
import pandas as pd
import matplotlib.pyplot as plt
st.title('A Simple Dashboard')
st.write('This dashboard displays a chart for the selected region.')
@st.cache_data
def load_data():
data_url = 'https://github.com/spatialthoughts/python-dataviz-web/releases/' \
'download/osm/'
csv_file = 'highway_lengths_by_district.csv'
url = data_url + csv_file
df = pd.read_csv(url)
return df
df = load_data()
districts = df.DISTRICT.values
district = st.selectbox('Select a district', districts)
filtered = df[df['DISTRICT'] == district]
fig, ax = plt.subplots(1, 1)
filtered.plot(kind='bar', ax=ax, color=['#0000FF', '#FF0000'],
ylabel='Kilometers', xlabel='Category')
ax.set_xticklabels([])
stats = st.pyplot(fig)
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard8.png')
```
9. Our dashboard now displays an updated chart every-time you change the selection. Streamlit provides many other user-interface widgets. Let's explore some more of them. We will use `st.color_picker()` widget to allow users to customize the color of the bar chart. We can display 2 color-pickers side-by-side using a column layout. We use `st.columns()` to create 2 columns `col1` and `col2`. We add a `color_picker()` to each column with appropriate label and a default color. If we have more than 1 widget of the same type in the app, we need to provide a unique `key` that can be used to identify the widget. We make some final tweaks to the chart and complete the dashboard.
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/simple_dashboard/app.py')}
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard9.png')
```
## Exercise
Add a radio-button to the app that allows the user to select the units for length between Kilometers and Miles as shown below. As the user toggles the radio-button, you should apply the appropriate conversion from Kilometer to Miles and update the chart.
* Hint1: Change `st.columns()` to have 3 columns and save the results into 3 separate objects. `col1, col2, col3 = st.columns(3)`
* Hint2: You can convert the values from Kilometer to Miles using `filtered = filtered[['NH', 'SH']]*0.621371`
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/dashboard_exercise.png')
```
## Create a Simple Geocoder App
Let's create a simple app that geocodes a user query and displays the results on a map. We will use [OpenRouteService Geocoding API](https://openrouteservice.org/dev/#/api-docs/geocode) for geocoding and Folium to display the results on a map.
See the live demo: [![A Simple Geocoder App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://simplegeocoder.streamlit.app/)
1. We start by creating a new folder **simple_app** and create the `app.py` with a basic layout with a title, a description and a text input for the address.
```{python eval=FALSE}
import folium
import requests
import streamlit as st
st.title('A Simple Geocoder')
st.markdown('This app uses the [OpenRouteService API](https://openrouteservice.org/) '
'to geocode the input address and display the results on a map.')
address = st.text_input('Enter an address.')
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/app1.png')
```
2. Now we add a `geocode()` function that will take an address and geocode it using OpenRouteService API.
```{python eval=FALSE}
import requests
import streamlit as st
st.title('A Simple Geocoder')
st.markdown('This app uses the [OpenRouteService API](https://openrouteservice.org/) '
'to geocode the input address and display the results on a map.')
address = st.text_input('Enter an address.')
ORS_API_KEY = '<your api key>'
@st.cache_data
def geocode(query):
parameters = {
'api_key': ORS_API_KEY,
'text' : query
}
response = requests.get(
'https://api.openrouteservice.org/geocode/search',
params=parameters)
if response.status_code == 200:
data = response.json()
if data['features']:
x, y = data['features'][0]['geometry']['coordinates']
return (y, x)
if address:
results = geocode(address)
if results:
st.write('Geocoded Coordinates: {}, {}'.format(results[0], results[1]))
else:
st.error('Request failed. No results.')
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/app2.png')
```
3. Now that we have coordinates, we can display it on a map using the [`streamlit_folium`](https://github.com/randyzwitch/streamlit-folium) component.
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/simple_app/app_nosecret.py')}
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/app3.png')
```
## Exercise
Add a dropdown menu to give the users an option to change the default basemap of the Folium map.
* Hint: Add a `st.selectbox()` with basemap strings. `st.selectbox('Select a basemap', ['OpenStreetMap', 'CartoDB Positron', 'CartoDB DarkMatter'])`
Reference: [`folium.folium.Map`](https://python-visualization.github.io/folium/modules.html#module-folium.folium)
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/app_exercise.png')
```
# Building Mapping Apps with Leafmap and Streamlit
We can leverag `leafmap` to create an interactive mapping dashboard that gives us the flexibility of using many different mapping backends and way to read a wide-variety of spatial data formats.
## Create a Mapping Dashboard
The code below creates an interactive mapping dashboard that displays the statistics of the selected region.
See the live demo: [![A Mapping Dashboard App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://mapping-dashboard.streamlit.app/)
1. We start by creating the app directory **mapping_dashboard** and creating `app.py` with the following content. This code creates a layout with a sidebar using `st.sidebar()` and adds some widgets to it. Note that while we need to use `st.title()` for the main section, we use `st.sidebar.title()` for the sidebar.
```{python eval=FALSE}
import streamlit as st
st.set_page_config(page_title='Dashboard', layout='wide')
st.title('Highway Dashboard')
st.sidebar.title('About')
st.sidebar.info('Explore the Highway Statistics')
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/mapping_dashboard1.png')
```
2. We now use `geopandas` to read 2 vector layers from a geopackage and `pandas` to read a CSV file containing road statistics. We put the code for data fetching inside a function and cache it using the `st.cache_data` decorator.
```{python eval=FALSE}
import streamlit as st
import geopandas as gpd
import pandas as pd
st.set_page_config(page_title='Dashboard', layout='wide')
st.title('Highway Dashboard')
st.sidebar.title('About')
st.sidebar.info('Explore the Highway Statistics')
data_url = 'https://storage.googleapis.com/spatialthoughts-public-data/python-dataviz/osm/'
gpkg_file = 'karnataka.gpkg'
csv_file = 'highway_lengths_by_district.csv'
@st.cache_data
def read_gdf(url, layer):
gdf = gpd.read_file(url, layer=layer)
return gdf
@st.cache_data
def read_csv(url):
df = pd.read_csv(url)
return df
data_load_state = st.text('Loading data...')
gpkg_url = data_url + gpkg_file
csv_url = data_url + csv_file
districts_gdf = read_gdf(gpkg_url, 'karnataka_districts')
roads_gdf = read_gdf(gpkg_url, 'karnataka_highways')
lengths_df = read_csv(csv_url)
data_load_state.text('Loading data... done!')
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/mapping_dashboard2.png')
```
3. Now we use the information in the CSV file to display a chart in the sidebar.
```{python eval=FALSE}
import streamlit as st
import geopandas as gpd
import pandas as pd
import matplotlib.pyplot as plt
st.set_page_config(page_title='Dashboard', layout='wide')
st.title('Highway Dashboard')
st.sidebar.title('About')
st.sidebar.info('Explore the Highway Statistics')
data_url = 'https://github.com/spatialthoughts/python-dataviz-web/releases/' \
'download/osm/'
gpkg_file = 'karnataka.gpkg'
csv_file = 'highway_lengths_by_district.csv'
@st.cache_data
def read_gdf(url, layer):
gdf = gpd.read_file(url, layer=layer)
return gdf
@st.cache_data
def read_csv(url):
df = pd.read_csv(url)
return df
gpkg_url = data_url + gpkg_file
csv_url = data_url + csv_file
districts_gdf = read_gdf(gpkg_url, 'karnataka_districts')
roads_gdf = read_gdf(gpkg_url, 'karnataka_highways')
lengths_df = read_csv(csv_url)
# Create the chart
districts = districts_gdf.DISTRICT.values
district = st.sidebar.selectbox('Select a District', districts)
district_lengths = lengths_df[lengths_df['DISTRICT'] == district]
fig, ax = plt.subplots(1, 1)
district_lengths.plot(kind='bar', ax=ax, color=['blue', 'red'],
ylabel='Kilometers', xlabel='Category')
ax.set_xticklabels([])
stats = st.sidebar.pyplot(fig)
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/mapping_dashboard3.png')
```
4. Now we create a folium map using `leafmap.Map()` and render the vector layers. We also add a third layer with the boundary of the selected district to highlight the selection.
```{python eval=FALSE}
import streamlit as st
import geopandas as gpd
import pandas as pd
import matplotlib.pyplot as plt
import leafmap.foliumap as leafmap
st.set_page_config(page_title='Dashboard', layout='wide')
st.title('Highway Dashboard')
st.sidebar.title('About')
st.sidebar.info('Explore the Highway Statistics')
data_url = 'https://github.com/spatialthoughts/python-dataviz-web/releases/' \
'download/osm/'
gpkg_file = 'karnataka.gpkg'
csv_file = 'highway_lengths_by_district.csv'
@st.cache_data
def read_gdf(url, layer):
gdf = gpd.read_file(url, layer=layer)
return gdf
@st.cache_data
def read_csv(url):
df = pd.read_csv(url)
return df
gpkg_url = data_url + gpkg_file
csv_url = data_url + csv_file
districts_gdf = read_gdf(gpkg_url, 'karnataka_districts')
roads_gdf = read_gdf(gpkg_url, 'karnataka_highways')
lengths_df = read_csv(csv_url)
# Create the chart
districts = districts_gdf.DISTRICT.values
district = st.sidebar.selectbox('Select a District', districts)
district_lengths = lengths_df[lengths_df['DISTRICT'] == district]
fig, ax = plt.subplots(1, 1)
district_lengths.plot(kind='bar', ax=ax, color=['blue', 'red'],
ylabel='Kilometers', xlabel='Category')
ax.set_xticklabels([])
stats = st.sidebar.pyplot(fig)
## Create the map
m = leafmap.Map(
layers_control=True,
draw_control=False,
measure_control=False,
fullscreen_control=False,
)
m.add_basemap('CartoDB.DarkMatter')
m.add_gdf(
gdf=districts_gdf,
zoom_to_layer=False,
layer_name='districts',
info_mode='on_click',
style={'color': '#7fcdbb', 'fillOpacity': 0.3, 'weight': 0.5},
)
selected_gdf = districts_gdf[districts_gdf['DISTRICT'] == district]
m.add_gdf(
gdf=selected_gdf,
layer_name='selected',
zoom_to_layer=True,
info_mode=None,
style={'color': 'yellow', 'fill': None, 'weight': 2}
)
m_streamlit = m.to_streamlit(800, 600)
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/mapping_dashboard4.png')
```
5. We can selectively load certain layers on the map using a user-input widget. Let's add a checkbox that allows the user to overlay the roads on the map.
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/mapping_dashboard/app.py')}
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/mapping_dashboard5.png')
```
# Publishing Apps with Streamlit Cloud
Streamlit provides free hosting for your streamlit apps. In this section, we will now learn how to deploy an app to Streamlit cloud and configure it correctly.
## Upload the app to GitHub
To run your app on Streamlit Cloud, you need to upload your app to GitHub. Streamlit supports both private and public repositories. In this example, we will be deploying a *Route Finder* app which you can preview from the link below.
See Live Demo: [![A Simple Dashboard](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://route-finder.streamlit.app/)
## Add App dependencies
If your app needs a third-party Python package, you need to add it in a separate file called `requirements.txt`. The packages listed in the file will be installed on Streamlit Cloud before running the app.
For our app, we have created the `requirements.txt` file with the following content and uploaded it to GitHub in the same directory as the `app.py`
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/route_finder/requirements.txt')}
```
You may also specify other dependencies for your app. Learn more at [App dependencies](https://docs.streamlit.io/streamlit-cloud/get-started/deploy-an-app/app-dependencies) documentation.
## Replace Sensitive Data with Secrets
It is not a good practice to store API keys or passwords in the code as it can be seen by others and can be misused. Streamlit provides an easy way for [Secrets Management](https://docs.streamlit.io/streamlit-cloud/get-started/deploy-an-app/connect-to-data-sources/secrets-management). You can store any key=value pairs in a separate location and access it in the app using `st.secrets`.
While doing local development, you create a folder named `.streamlit` in the app directory and store any key=value pairs in a file named `secrets.toml`. For example, if you want to store the ORS API Key, you can create a new file `secrets.toml` in the `.streamlit` directory with the following content. (Replace `<your api key>` with the actual key)
```
'ORS_API_KEY' = '<your api key>'
```
Once done, the value of the ORS_API_KEY can be retrieved in the streamlit app using `st.secrets['ORS_API_KEY']`. Your code will now look like below.
```
'ORS_API_KEY' = st.secrets['ORS_API_KEY']
```
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/route_finder/app.py')}
```
While deploying the app, you can configure your secrets as outlined in the next section.
## Deploy your App
Now you are ready to deploy your app to Streamlit Cloud.
1. To deploy an app, you need to upload it on GitHub. Create a repository and copy the folder containing the `app.py` and `requirements.txt` to the repository. The route finder application has been uploaded to GitHub. Visit the [GitHub repository](https://github.com/spatialthoughts/python-dataviz-web/) and click **Fork** at the top-right corner to create a copy of the repository.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud01.png')
```
2. Once done, find the app directory located at `streamlit/route_finder/` inside your repository. Copy the path to the `app.py`.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud02.png')
```
3. Visit [Streamlit Cloud](https://streamlit.io/cloud) and sign-in. If you do not have an account, you can click *Sign-up* and create a new account. Once logged-in, click the *New app* button.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud03.png')
```
4. When prompted whether *Do you already have an app?*, choose `Yup, I have an app.`
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud04.png')
```
5. Click *Paste GitHub URL* and paste the URL to your streamlit `app.py` file. Next, click *Advanced settings...*
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud05.png')
```
6. This dialog allows you to store your private information required by your apps, such as API keys, username/password for your database, etc. For the **Route Finder** app, you need to enter the API Key for OpenRouteService. Visit [OpenRouteService Dashboard](https://openrouteservice.org/dev/#/signup) and copy your API Key. Enter your API key in the following format and replace <your key> with your actual API key. Click *Save*.
```
'ORS_API_KEY' = '<your key>'
```
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud06.png')
```
7. Optionally, you can choose a custom app URL. Once done, click *Deploy!*.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud07.png')
```
8. Your app will now be deployed and will be accessible via the provided URL.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud08.png')
```
9. You can visit your Dashboard to manage the app once it is deployed.
```{r echo=FALSE, fig.align='center', out.width='75%'}
knitr::include_graphics('images/python_dataviz/cloud09.png')
```
# Supplement
## Contextily
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_artistic_rendering.ipynb)
```{r child='python-dataviz-output/supplement_artistic_rendering.md'}
```
## Advanced Plotting
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_matplotlib_themes.ipynb)
```{r child='python-dataviz-output/supplement_matplotlib_themes.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_stacked_barcharts.ipynb)
```{r child='python-dataviz-output/supplement_stacked_barcharts.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_elevation_profile_plot.ipynb)
```{r child='python-dataviz-output/supplement_elevation_profile_plot.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_eclipse_globe.ipynb)
```{r child='python-dataviz-output/supplement_eclipse_globe.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_monthly_composites.ipynb)
```{r child='python-dataviz-output/supplement_monthly_composites.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_cartographic_elements.ipynb)
```{r child='python-dataviz-output/supplement_cartographic_elements.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_labeling_features.ipynb)
```{r child='python-dataviz-output/supplement_labeling_features.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_ndvi_time_series.ipynb)
```{r child='python-dataviz-output/supplement_ndvi_time_series.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_feature_correlation_matrix.ipynb)
```{r child='python-dataviz-output/supplement_feature_correlation_matrix.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_matplotlib_anatomy.ipynb)
```{r child='python-dataviz-output/supplement_matplotlib_anatomy.md'}
```
## Animation
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_animating_maps.ipynb)
```{r child='python-dataviz-output/supplement_animating_maps.md'}
```
## Leafmap
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_leafmap_osm.ipynb)
```{r child='python-dataviz-output/supplement_leafmap_osm.md'}
```
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/spatialthoughts/python-dataviz-web/blob/main/supplement_lonboard_leafmap.ipynb)
```{r child='python-dataviz-output/supplement_lonboard_leafmap.md'}
```
## Streamlit
### Interactive Mapping Dashboard
We can utilize the bi-directional `st_folium()` component from the `streamlit-folium` package to make an interactive mapping dashboard. This component allows us to get information back when the user interacts with the map. We can use this information to update the app. The app below shows how we can modify the [Mapping Dashboard](#create-a-mapping-dashboard) created earlier to make the map interactive.
See the live demo: [![An Interactive Mapping Dashboard App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://interactive-mapping-dashboard.streamlit.app/)
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/interactive_mapping_dashboard/app.py')}
```
We must make sure to include a `requirements.txt` with the following content.
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/interactive_mapping_dashboard/requirements.txt')}
```
### Bouding Box App
This is a simple app to get the coordinates and bounding-box of any place in the world. This uses the `geopy` library for geocoding and `streamlit-folium` bi-directional component to get the real-time update of the map bounds. We use [Session State](https://docs.streamlit.io/develop/api-reference/caching-and-state/st.session_state) to store the map center and zoom level. This is used within the `folium.Map()` to initialized it the saved center and zoom level.
See the live demo: [![Bounding Box App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://boundingbox.streamlit.app/)
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/bounding_box/app.py')}
```
We must make sure to include a `requirements.txt` with the following content.
```{python eval=FALSE, code=readLines('code/python_dataviz/streamlit/bounding_box/requirements.txt')}
```
# Resources
- [Visualization with Matplotlib](https://jakevdp.github.io/PythonDataScienceHandbook/04.00-introduction-to-matplotlib.html): Python Data Science Handbook by Jake VanderPlas
- [The Python Graph Gallery](https://python-graph-gallery.com/): Collection of hundreds of charts made with Python with detailed walk-throughs.
- [Awesome Streamlit](https://github.com/MarcSkovMadsen/awesome-streamlit): A curated list of Awesome Streamlit resources and gallery of Streamlit apps.
# Data Credits
- London Crime Statistics: ASB Incidents, Crime and Outcome - UK Home Office. Retrieved 2022-01-20. https://data.police.uk/about/
- California Census Data: U.S. Census Bureau, 2019 American Community Survey 5-Year Estimates and Cartographic Boundary Files - Shapefile: 2019
- Eclipse Shapefiles: NASA's Scientific Visualization Studio Downloaded from https://svs.gsfc.nasa.gov/4518
- NASA Shuttle Radar Topography Mission (SRTM) Elevation Dataset. Downloaded from [30m SRTM Tile Downloader](https://dwtkns.com/srtm30m/%5D).
- Temperature Anomalies: GISTEMP Team, 2022: GISS Surface Temperature Analysis (GISTEMP), version 4. NASA Goddard Institute for Space Studies. Dataset accessed 2022-01-26 at https://data.giss.nasa.gov/gistemp/.