-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1454 lines (821 loc) · 40.2 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
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
<!DOCTYPE html>
<html lang="" xml:lang="">
<head>
<title>Remote Sensing for Identifying Rooftop Farming and Gardening Potentials in Jakarta, Indonesia</title>
<meta charset="utf-8" />
<meta name="author" content="Sheng Hu, Zhaowei Cui, Lunan Wei, Mengyu Ding" />
<script src="libs/header-attrs/header-attrs.js"></script>
<script src="libs/mark.js/mark.min.js"></script>
<link href="libs/xaringanExtra-search/search.css" rel="stylesheet" />
<script src="libs/xaringanExtra-search/search.js"></script>
<script>window.addEventListener('load', function() { window.xeSearch = new RemarkSearch({"position":"bottom-left","caseSensitive":false,"showIcon":true,"autoSearch":false}) })</script>
<link href="libs/panelset/panelset.css" rel="stylesheet" />
<script src="libs/panelset/panelset.js"></script>
<link rel="stylesheet" href="xaringan-themer.css" type="text/css" />
</head>
<body>
<textarea id="source">
class: center, middle, inverse, title-slide
.title[
# Remote Sensing for Identifying Rooftop Farming and Gardening Potentials in Jakarta, Indonesia
]
.author[
### Sheng Hu, Zhaowei Cui, Lunan Wei, Mengyu Ding
]
.institute[
### CASA, UCL
]
.date[
### 2024/02/04 (updated: 2024-03-19)
]
---
<style type="text/css">
/* Changing the font size of each slide */
/* the title font size for each slide */
.remark-slide-content h1 {
font-size: 42px;
}
.remark-slide-content h2 {
font-size: 36px;
}
/*
.remark-slide-content h3 {
font-size: 24px; */
}
</style>
<style type="text/css">
/* Changing the font size of title slide */
.title-slide, .title-slide h1, .title-slide h2 {
color: #2A4D3A;
}
.title-slide h3 {
color: #527060;
}
.title-slide h1 {
font-size: 52px;
}
.title-slide h2 {
font-size: 36px;
}
.title-slide h3 {
font-size: 24px;
}
</style>
<style type="text/css">
/* Using selected background image*/
.title-slide {
background-image: url(images/Jakarta_satellite.PNG);
background-position: 50% 50%;
background-size: 100%;
}
/* Adding an white zone for decoration */
.title-slide::before {
content: "";
position: absolute;
top: 10%;
left: 0%;
width: 100%;
height: 80%;
background-color: rgba(255, 255, 255, 0.7);
z-index: 1; /* Under the text */
}
/* Adding the dcorative icon backgrounde */
.title-slide::after {
content: "";
position: absolute;
top: 10%;
left: 0;
width: 100%;
height: 80%;
background-image: url(images/casalogobw.png);
background-size: 135%;
background-position: center;
z-index: 0; /* Under the text and white zone */
opacity: 0.3; /* transparent */
}
/* let text is above all */
.title-slide > * {
position: relative;
z-index: 2;
}
</style>
# Location
### Jakarta, Indonesia
* Jakarta is the nation's **capital city** and the centre of the **largest metropolis** of Indonesia.
* Jakarta covers **661.23 sq.km.** and has a population of **10,679,951** as of mid-2022.
* Jakarta is the **economic**, **cultural**, and **political centre** of Indonesia.
<div style="display: flex; justify-content: center;">
<div style="flex: 1; margin-right: 10px;">
<img src="images/Jakarta.jpg" alt="Image description" style="max-width: 100%; height: auto;">
</div>
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
---
# Problem Definition
.panelset[
.panel[.panel-name[Air Pollution]
.pull-left[
#### Severity:
Jakarta was again ranked **the most polluted city** in the world by Swiss technology company IQAir.
In early 2023, air pollution potentially caused more than **10,000** deaths, more than **5,000** hospitalizations for cardio-respiratory diseases, and more than **7,000** adverse health outcomes in children each year in Jakarta. The total economic burden attributable to air pollution was estimated to be US$ **2.9** billion.
]
.pull-right[
<img src="images/JakartaAQL.jpg"
height="300px" style="display: block; margin-left: auto; margin-right: auto;"/>
]
]
.panel[.panel-name[Heat Island]
.pull-left[
#### Increase in area:
Previous research shows the area of UHI, in Jakarta in 1989 reached **84.53 sq.km.** or **0.1 %** of the total area. The areas of UHI Jakarta were **36.5%**, **84.7%**, and **85.2%** of the total areas respectively in 2008, 2013 and 2018.
#### Increase in temperature:
The results show that the SUHI intensity is approximately **3°C–6°C** and AUHI is approximately **1°C–2.5 °C**.
]
.pull-right[
<img src="images/heat.jpg"
width="500px" style="display: block; margin-left: auto; margin-right: auto;"/>
<div style="font-size: 14px;"> <!-- The image source font size -->
Source: <a
href="https://www.researchgate.net/figure/Map-of-distribution-of-surface-temperature-of-Jakarta-in-year-2001-and-2014_fig4_301317835"
style="color: #7910FF;">Map of distribution of surface temperature of Jakarta in year 2001 and 2014 </a> <!-- Hyper color -->
<!-- 额外图源记得写一下描述 -->
</div>
]
]
.panel[.panel-name[Food Insecurity]
.pull-left[
#### Poverty:
**3.48 %** of Jakarta’s residents – over **312,180** people – fall below the poverty line. **High food prices** and **inadequate distribution** systems cause **low-income communities** have limited access to nutritious food.
#### Supply:
Jakarta experiences a **agricultural land reduction**.
Flood happened recently in **1996**, **1999**, **2007**, **2013**, and **2020**. These special events poses challenges to the city's food supply.
]
.pull-right[
<img src="images/food.jpg"
width="500px" style="display: block; margin-left: auto; margin-right: auto;"/>
<div style="font-size: 14px;"> <!-- The image source font size -->
Source: <a
href="https://www.plantagbiosciences.org/people/rob-o-hagan/2017/08/29/the-state-of-food-security-in-indonesia-and-west-java/"
style="color: #7910FF;">The Food Security and Vulnerability Atlas of Indonesia (FSVA) 2015 </a> <!-- Hyper color -->
<!-- 额外图源记得写一下描述 -->
</div>
]
]
]
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
---
class: inverse, middle, left
# Objective:
# Symbiotic coexistence of built environment and nature
---
# SDG Alignment
<!-- write a three columns style -->
<style>
.three-cols {
display: flex;
justify-content: space-between;
text-align: left;
}
.three-cols > div {
flex-basis: 30%; /* Adjust this value based on your content and spacing needs */
margin: 0 1%; /* Adds a little space between columns */
}
</style>
<div class="three-cols">
<div>
<!-- Left SDG 2 -->
<img src="images/SDG_image/SDGimage2.jpeg" alt="Image description" style="max-width: 100%; height: auto;">
<p>ZERO HUNGER (SDG 2)</p>
End hunger and ensure year-round access to safe, nutritious and sufficient food</p>
</div>
<div>
<!-- Middle SDG 13 -->
<img src="images/SDG_image/SDGimage13.jpeg" alt="Image description" style="max-width: 100%; height: auto;">
<p>Climate action for adaptation, resilience and mitigation (SDG 13)</p>
improvement Air quality</p>
</div>
<div>
<!-- Right SDG 15 -->
<img src="images/SDG_image/SDGimage15.jpeg" alt="Image description" style="max-width: 100%; height: auto;">
<p>Green space, habitats and biodiversity (SDG 15)</p>
Green space creation and/or management</p>
</div>
</div>
<div style="font-size: 14px;"> <!-- The image source font size -->
<p>Source: <a href="https://www.globalgoals.org/goals/"
style="color: #7910FF;"> The Global Goals </a> <!-- Hyper color -->
<!-- 额外图源记得写一下描述 -->
</div>
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
---
# Case Study / Global North
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
.panelset[
.panel[.panel-name[NYC]
.pull-left[
<img src="https://images.squarespace-cdn.com/content/v1/6063c397ece4057779563706/a93311a6-47ac-4d51-b121-4e8ce7dc26ad/DSC01942+%281%29.JPG?format=1500w"
height="270px" style="display: block; margin-left: auto; margin-right: auto;"/>
<div style="font-size: 14px;"> <!-- The image source font size -->
Vice Media’s 15,000sf green roof by Brooklyn Grange. Source: <a
href="https://www.brooklyngrangefarm.com/commercial/vice-media"
style="color: #7910FF;">Brooklyn Grange</a> <!-- Hyper color -->
<!-- 额外图源记得写一下描述 -->
</div>
]
.pull-right[
* Policy Instruments: Tax Abatement Eligibility (PTA3).
* Legislation: Local Law 92 of 2019 and Local Law 94 of 2019: Green and Solar Roof Requirements for New Buildings and Complete Roof Replacements. Source: <a
href="https://www.nyc.gov/assets/buildings/pdf/green_roof_solar_ll92-n-94of2019_sn.pdf"
style="color: #7910FF;">New York Buildings</a>
* Analysis by Tong et al. (2016) indicates a 7% to 33% PM2.5 reduction in the selected neighbourhood in Brooklyn.
* City-wide initiative launched by NYC Department of City Planning:<a
href="https://www.nyc.gov/site/agriculture/faqs/frequently-asked-questions.page"
style="color: #7910FF;"> Zone Green</a>, estimated to improve urban resilience, improve well-being and quality of life.(Beaupre, 2017)
]
]
.panel[.panel-name[Manchester]
.pull-left[
<img src="images/MancityCaseStudy.png"
height="270px" style="display: block; margin-left: auto; margin-right: auto;"/>
<div style="font-size: 14px;"> <!-- The image source font size -->
Roof level innovation offers climate resilient vision for Manchester Source: <a
href="https://www.polypipe.com/news/roof-level-innovation-offers-climate-resilient-vision-manchester"
style="color: #7910FF;">Originally from Civils & Green Urbanisation, Rooftop Greening in Mancity</a> <!-- Hyper color -->
<!-- 额外图源记得写一下描述 -->
</div>
]
.pull-right[
* Manchester developed a green roof strategy- Sustainable Cities: Options for Responding to Climate Change Impacts and Outcomes. (<a
href="https://hummedia.manchester.ac.uk/institutes/mui/cure/research/scorchio/meetings/stakeholders/CS_Selection_process_060509.pdf"
style="color: #7910FF;">SCORCHIO</a>)
* Partnering with Manchester University, the project utilised an Urban Heat Island map to identify city areas susceptible to elevated temperatures exacerbated by climate change.
* Public buildings were selected as pilot projects for green roof retrofitting, focusing on reducing the heat island effect and air pollution.
<br> <!-- 空行做排版,可自行删除 -->
<br>
]
]
.panel[.panel-name[Washington D.C.]
.pull-left[
<img src="images/USACasestudy.png"
height="270px" style="display: block; margin-left: auto; margin-right: auto;"/>
<div style="font-size: 14px;"> <!-- The image source font size -->
Rooftop Gardening in Washington D.C.Source: <a
href="https://land8.com/washington-d-c-leads-north-americas-10-green-roof-industry-growth-of-2013/"
style="color: #7910FF;">Originally from Green Roofs for Healthy Cities (GRHC), Green Roofs</a> <!-- Hyper color -->
<!-- 额外图源记得写一下描述 -->
</div>
]
.pull-right[
* Incentive programs, the one launched in Washington D.C., offer financial support to building owners for installing green roofs, providing up to $15 per square foot in certain areas (Rudzinskas, Lutz, & McElhinney, 2017).
* These policies aim to lower the upfront costs of green roof installation, making it a more feasible option for improving air quality, reducing air pollution and heat island effect.
]
]
]
---
# Prospective Outcomes
.panelset[
.panel[.panel-name[Outcomes]
* #### Capturing pollutants in the air
* #### Providing shade and evaporative cooling
* #### Enhancing urban food security
* #### Utilizing rainwater
* #### Increasing green spaces
* #### Attracting community participation.
]
.panel[.panel-name[Air polution]
#### Air Quality Improvement
Rooftop gardens can help to improve air quality by capturing airborne pollutants and particulate matter. By filtering pollutants from the air, rooftop gardens contribute to a healthier urban environment, which can indirectly contribute to cooling effects by reducing the formation of smog and haze.
]
.panel[.panel-name[Food Insecurity]
#### Improved Food Security and Self-sufficiency
Rooftop agriculture enhances urban food security, reducing reliance on external food supplies. Growing food within the city also reduces food transportation distances, thereby lowering carbon emissions.
#### Sponge city
Rooftop agriculture can improve urban water resource management by collecting and utilizing rainwater, reducing pressure on stormwater runoff and drainage systems.
]
.panel[.panel-name[Heat Island]
#### Cooling city
Rooftop gardening adds vegetation to otherwise heat-absorbing surfaces, such as rooftops, which helps to reduce the heat island effect by providing shade and evaporative cooling. Plants release water vapor through a process called transpiration. This evaporation process has a cooling effect, similar to sweating in humans.
]
.panel[.panel-name[Well being]
#### Urban Greening
Rooftop agriculture contributes to increasing green spaces in cities, improving the urban environment, enhancing air quality, and providing more leisure areas for city dwellers.
#### Community Engagement and Social Connection
Rooftop agriculture projects often attract community participation, fostering community cooperation and connections, and increasing urban residents' awareness of and involvement in food production.
]
]
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
---
class: inverse, middle, left
# Solution:
# Rooftop Farming and Gardening
---
# Current Policy Stack
.pull-left[
* **Strategy for Air Pollution Control** (SPPU)
* **Green open space masterplan at Jakarta Capital City**, Indonesia for climate change mitigation. Jakarta Government Plans to Add **800** Green Open Spaces to Deal with Air Pollution in 2023.
* In 2017, the city of Jakarta initiated a **peri-urban farming program** under its **Urban Agriculture Program** that aimed to achieve sustainable agricultural production, rural economic sustainability and long-term environmental sustainability.
]
.pull-right[
<img src="images/seals.jpg"
height="400px" style="display: block; margin-left: auto; margin-right: auto;"/>
]
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
---
# Case Study / Jarkada
<style>.panelset{--panel-tab-foreground: honeydew;--panel-tab-background: seagreen;}</style>
.panelset[
.panel[.panel-name[Commercial]
.pull-left[
<img src="images/Case study_Motivation/casestudy1.jpg"
height="300px" style="display: block; margin-left: auto; margin-right: auto;"/>
]
.pull-right[
#### sigit.kusumawijaya
* A recentpopular development is turning rooftops into dining areas,such as **cafes**, **bars** or **restaurants**.
* The demand comes not only from clients in **Jakarta** but also from other cities, such as **Yogyakarta**, and from **Bali**.
* Driven by a healthy lifestyle, many now also focus on productive plants, such as **water spinach**, **spinach**, **tomatoes**, **chilies** and etc
]
]
.panel[.panel-name[Education]
.pull-left[
<img src="images/Case study_Motivation/casestudy2.webp"
height="300px" style="display: block; margin-left: auto; margin-right: auto;"/>
]
.pull-right[
#### Santri
* The Jakarta Food Security, Marine, and Agriculture (KPKP) Office distributed **hydroponic racks** to facilitate urban farming in several Islamic boarding **schools** under the framework of National Santri Day 2022
* Santri (Islamic boarding school students) can also learn urban farming methods and produce local food products by utilizing the limited land as well as participate in the movement to realize independent food security in Indonesia," she stated.
]
]
.panel[.panel-name[Community]
.pull-left[
<img src="images/Case study_Motivation/casestudy3.jpeg"
height="300px" style="display: block; margin-left: auto; margin-right: auto;"/>
]
.pull-right[
#### Super Indo
* Committed to creating a better environment and community, Super Indo has now successfully opened its **fifth** garden with the most modern concept.
]
]
]
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
---
class: inverse, middle, left
# Methodology:
# Using Remote Sensing for Identifying Rooftop Farming/Gardening Potentials in Jakarta
---
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
# Value and Data Flow
.panelset[
.panel[.panel-name[Data Value]
<img src="images/data_value_chain.png" height="380px" style="display: block; margin-left: auto; margin-right: auto;"/>
.foognote[Original file available: <a href="illustrations/data_abstract.pdf" download="data_concept.pdf" >
<img src="https://raw.githubusercontent.com/dereksgithub/group_RS_casa0023/a21fb1ab0c2bc3f1171a7fc73f6f656f7974e71f/icons/pdf_icon.png" height="18px" alt="Download Original">
</a>]
]
.panel[.panel-name[Data Flow]
<img src="images/dataflow.png" height="380px" style="display: block; margin-left: auto; margin-right: auto;"/>
]
]
---
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
# Methodology Overview
<p align="center">
<img src="images/methodology/methodology_overview.png" height="505px"/>
</p>
.foognote[Original file available: <a href="illustrations/methodology_overview.pdf" download="methodology_overview.pdf" >
<img src="https://raw.githubusercontent.com/dereksgithub/group_RS_casa0023/a21fb1ab0c2bc3f1171a7fc73f6f656f7974e71f/icons/pdf_icon.png" height="18px" alt="Download Original">
</a>]
---
# Model Architecture
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
<p align="center">
<img src="images/methodology/ML_Overview.png" height="505px"/>
</p>
.foognote[Original file available: <a href="illustrations/ML.pdf" download="ml.pdf" >
<img src="https://raw.githubusercontent.com/dereksgithub/group_RS_casa0023/a21fb1ab0c2bc3f1171a7fc73f6f656f7974e71f/icons/pdf_icon.png" height="18px" alt="Download Original">
</a>]
---
# Project Data Source 1
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
<table>
<tr>
<td>Data Type</td>
<td>Potential Dataset</td>
<td>Access</td>
<td>Resolution</td>
</tr>
<tr>
<td>Building Footprint Data</td>
<td>Google's Open Buildings Dataset, Jakarta Building Records, Crowd-sourced World-wide Building Footprint (See et al., 2022), BIM (Building Information Model) </td>
<td>Open-source</td>
<td>Google Open Buildings: <0.5m, not up to date; </td>
</tr>
<tr>
<td>Urban Temperature</td>
<td>MODIS, Jakarta’s Historical Temperature Data</td>
<td>Open-source</td>
<td>MODIS: Daily to Monthly, Bands 1–2: 250 meter. Bands 3–7: 500 meter. Bands 8: 36 – 1000 meter</td>
</tr>
<tr>
<td>Weather</td>
<td>Global Forecast System (GFS), Jakarta Weather Data</td>
<td>Open-source</td>
<td>GFS: forecast interval every 6 hours, spatial resolution: 28 KM;</td>
</tr>
<tr>
<td>Air Quality</td>
<td>Sentinel-5P, Air quality data of Jakarta</td>
<td>Open-source</td>
<td>Sent 5P: daily, 5.5km x 3.5 km. Other Commercial Remote Sensing Data Air Quality Data. Ground Sensor Data: i.e. AQI (Lead: annual 0.50 μg/m3; PM 2.5: daily 25 μg/m3; PM10: daily 8 μg/m3; SO2: daily 0.02 ppm; NO2: daily 0.12 ppm; etc.),
</tr>
</table>
---
# Project Data Source 2
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
<table>
<tr>
<td>Data Type</td>
<td>Potential Dataset</td>
<td>Access</td>
<td>Resolution</td>
</tr>
<tr>
<td>Rainfall</td>
<td>Multi-satellite Retrievals for GPM (IMERG), Jakarta ground rainfall records</td>
<td>Open-source</td>
<td>0.1 millimeters (mm) | per month</td>
</tr>
<tr>
<td>High resolution Satellite SAR/ Optiacal Imagery</td>
<td>Landsat 8/9, Sentinel-2/Sentinel-1, and Other Commercial Data</td>
<td>Open-source and Commercial</td>
<td>Spatial resolution: 10 to 60m, Temporal: revisit less than 1 day </td>
</tr>
<tr>
<td>Other Environment Data</td>
<td>Wind Speed Data, Humidity, Historical Vegetation Coverage Data, Light Pollution Data etc.</td>
<td>Open-source</td>
<td>Various resolutions</td>
</tr>
<tr>
<td>Existing Land Use Data</td>
<td>Latest LULC Dataset (Putri, Abadi and Kafafa, 2020)</td>
<td>Open-source</td>
<td>Published data ranging from 30m to 60m. <br> Temporal: Historical records.</td>
</tr>
<tr>
<td>Census Data</td>
<td>Source: <a
href="https://energydata.info/dataset/indonesia--population-density-2015"
style="color: #7910FF;">Jakarta WorldPop Data</a></td>
<td>Open-source</td>
<td>Population density per pixel at 100 metre resolution</td>
</tr>
</table>
---
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
# Project Analysis
.panelset[
.panel[.panel-name[SWOT]
<img src="images/SWOTUpdate.png" height="440px" style="display: block; margin-left: auto; margin-right: auto;"/>
.foognote[Original file available: <a href="illustrations/swot_feasibility.pdf" download="swot_feasibility.pdf" >
<img src="https://raw.githubusercontent.com/dereksgithub/group_RS_casa0023/a21fb1ab0c2bc3f1171a7fc73f6f656f7974e71f/icons/pdf_icon.png" height="18px" alt="Download Original">
</a>]
]
.panel[.panel-name[Feasibility]
<img src="images/FeasibilityUpdate.png" height="500px" style="display: block; margin-left: auto; margin-right: auto;"/>
]
]
---
<div style="position: absolute; top: 20px; right: 40px;">
<img src="images/team_logo.png" alt="Logo" style="height: 75px; width: auto;">
</div>
# Project Planning
.panelset[
.panel[.panel-name[Workpack Breakdown]
<p align="center">
<img src="images/WP_Breakdown.png" height="410px"/>
</p>
.foognote[Original file available: <a href="illustrations/pm_all.pdf" download="pm_all.pdf" >
<img src="https://raw.githubusercontent.com/dereksgithub/group_RS_casa0023/a21fb1ab0c2bc3f1171a7fc73f6f656f7974e71f/icons/pdf_icon.png" height="18px" alt="Download Original">