-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLOLMonday_latest.json
1802 lines (1802 loc) · 80.6 KB
/
LOLMonday_latest.json
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
[
{
"Week": "1",
"Date": "Oct 21, 2019",
"Name": "Dr. Keiko Nomura",
"Article Title": "Oil palm concessions in southern Myanmar consist mostly of unconverted forest",
"Article Link": "Scientific Reports",
"Twitter Handle": "@Keiko_geo",
"MM Tweet": "Nomura 2019",
"Key Words": "forest, deforestation, rubber plantations, Sentinel-1, Sentinel-2, SAR, SRTM, high resolution"
},
{
"Week": "2",
"Date": "Oct 28, 2019",
"Name": "Dr. Catherine Nakalembe",
"Article Title": "Characterizing agricultural drought in the Karamoja subregion of Uganda with meteorological and satellite-based indices",
"Article Link": "Natural Hazards",
"Twitter Handle": "@CLNakalembe",
"MM Tweet": "Nakalembe 2019",
"Key Words": "agricultural drought, NDVI, SPI, remote sensing, Karamoja, East Africa"
},
{
"Week": "3",
"Date": "Nov 4, 2019",
"Name": "Dr. Mary Henry and Dr. Jessica McCarty",
"Article Title": "Fire on the Water Towers: Mapping Burn Scars on Mount Kenya Using Satellite Data to Reconstruct Recent Fire History",
"Article Link": "Remote Sensing",
"Twitter Handle": "@MaryHenryGEO and @jmccarty_geo",
"MM Tweet": "Henry 2019",
"Key Words": "fire, Kenya, MODIS, Landsat, dNBR, active fire, burned areas, Africa"
},
{
"Week": "4",
"Date": "Nov 11, 2019",
"Name": "Sherrie Wang",
"Article Title": "Crop type mapping without field-level labels: Random forest transfer and unsupervised clustering techniques",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@sherwang",
"MM Tweet": "Wang 2019",
"Key Words": "classification, unsupervised learning, agriculture, Landsat, land cover, machine learning, Google Earth Engine, big data, remote sensing"
},
{
"Week": "5",
"Date": "Nov 18, 2019",
"Name": "Dr. Michelle Kalamandeen",
"Article Title": "Pervasive Rise of Small-scale Deforestation in Amazonia",
"Article Link": "Scientific Reports",
"Twitter Handle": "@Earth2Mika",
"MM Tweet": "Kalamandeen 2018",
"Key Words": "deforestation, Amazonia, z-scores, forest loss, Global Forest Change, Landsat, tropical forest, statistical evaluation"
},
{
"Week": "6",
"Date": "Nov 25, 2019",
"Name": "Dr. Jody Vogeler",
"Article Title": "Extracting the full value of the Landsat archive: Inter-sensor harmonization for the mapping of Minnesota forest canopy cover (1973\u20132015)",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@JodyVogeler",
"MM Tweet": "Vogeler 2018",
"Key Words": "canopy cover, Landsat time series, LandsatLinkr, LandTrendr, Minnesota"
},
{
"Week": "7",
"Date": "Dec 2, 2019",
"Name": "Dr. Temilola Fatoyinbo",
"Article Title": "Estimating mangrove aboveground biomass from airborne LiDAR data: a case study from the Zambezi River delta",
"Article Link": "Environmental Research Letters",
"Twitter Handle": "@EarthToLola",
"MM Tweet": "Fatoyinbo 2018",
"Key Words": "lidar, mangrove, biomass, canopy height, Mozambique, blue carbon, monitoring"
},
{
"Week": "8",
"Date": "Dec 9, 2019",
"Name": "Dr. Brianna R. Pag\u00e1n",
"Article Title": "Exploring the Potential of Satellite Solar-Induced Fluorescence to Constrain Global Transpiration Estimates",
"Article Link": "Remote Sensing",
"Twitter Handle": "@Brianna_R_Pagan",
"MM Tweet": "Pag\u00e1n 2019",
"Key Words": "solar-induced chlorophyll fluorescence, transpiration, transpiration efficiency, GOME-2, eddy-covariance"
},
{
"Week": "9",
"Date": "Dec 16, 2019",
"Name": "Susan M. Kotikot",
"Article Title": "Statistical characterization of frost zones: Case of tea freeze damage in the Kenyan highlands",
"Article Link": "Remote Sensing",
"Twitter Handle": "",
"MM Tweet": "Kotikot 2020",
"Key Words": "frost zones, topography, MODIS, NASA, Kenya, tea crop"
},
{
"Week": "10",
"Date": "Dec 23, 2019",
"Name": "Tianjia Liu",
"Article Title": "Missing emissions from post-monsoon agricultural fires in northwestern India: regional limitations of MODIS burned area and active fire products",
"Article Link": "Environmental Research Communications",
"Twitter Handle": "@TheRealPyroTina",
"MM Tweet": "Liu 2019",
"Key Words": "India, burned area, active fires, crop residue burning, MODIS, Landsat"
},
{
"Week": "11",
"Date": "Dec 30, 2019",
"Name": "Jen Hirdman",
"Article Title": "Google Earth Engine, Open-Access Satellite Data, and Machine Learning in Support of Large-Area Probabilistic Wetland Mapping",
"Article Link": "Remote Sensing",
"Twitter Handle": "@JNHird",
"MM Tweet": "Hird 2017",
"Key Words": "cloud computing, machine learning, wetland classification, Sentinel-1, Sentinel-2, digital terrain model, boosted regression trees, topographic wetness index, topographic position index, satellite data streams"
},
{
"Week": "12",
"Date": "Jan 6, 2020",
"Name": "Dr. Maryam Pourshamsi",
"Article Title": "A Machine-Learning Approach to PolInSAR and LiDAR Data Fusion for Improved Tropical Forest Canopy Height Estimation Using NASA AfriSAR Campaign Data",
"Article Link": "IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing",
"Twitter Handle": "@marpourshamsi",
"MM Tweet": "Pourshamsi 2018",
"Key Words": "data fusion, forest height, L-band, LiDAR (RH100), polarimetric synthetic aperture radar interferometry (PolInSAR), support vector machine (SVM)"
},
{
"Week": "13",
"Date": "Jan 13, 2020",
"Name": "Dr. Beth Tellman",
"Article Title": "Understanding the role of illicit transactions in land-change dynamics",
"Article Link": "Nature Sustainability",
"Twitter Handle": "@pazjusticiavida",
"MM Tweet": "Tellman 2020",
"Key Words": "conceptual framework, illicit land transactions, remote sensing, land use, interdisciplinary, narco-deforestation"
},
{
"Week": "14",
"Date": "Jan 20, 2020",
"Name": "Andr\u00e9a Puzzi Nicolau",
"Article Title": "A spatial pattern analysis of forest loss in the Madre de Dios region, Peru",
"Article Link": "Environmental Research Letters",
"Twitter Handle": "@puzzinicolau",
"MM Tweet": "Puzzi Nicolau 2019",
"Key Words": "Landsat, forest loss, Amazon, conservation, drivers of deforestation, Peru, spectral mixture analysis"
},
{
"Week": "15",
"Date": "Jan 27, 2020",
"Name": "Lillian Ndungu",
"Article Title": "Application of MODIS NDVI for Monitoring Kenyan Rangelands Through a Web Based Decision Support Tool",
"Article Link": "Frontiers in Environmental Science",
"Twitter Handle": "@lilianwangui",
"MM Tweet": "Ndungu 2019",
"Key Words": "ASALS, rangelands, NDVI, MODIS, vegetation indices, Kenya"
},
{
"Week": "16",
"Date": "Feb 3, 2020",
"Name": "Kelsey Herndon",
"Article Title": "An Assessment of Surface Water Detection Methods for Water Resource Management in the Nigerien Sahel",
"Article Link": "Sensors",
"Twitter Handle": "@KEHerndon",
"MM Tweet": "Herndon 2020",
"Key Words": "remote sensing, spectral indices, Landsat 8 OLI, West Africa"
},
{
"Week": "17",
"Date": "Feb 10, 2020",
"Name": "Enass Said Al-Kharusi",
"Article Title": "Large-Scale Retrieval of Coloured Dissolved Organic Matter in Northern Lakes Using Sentinel-2 Data",
"Article Link": "Remote Sensing",
"Twitter Handle": "@SaidEnass",
"MM Tweet": "Al-Kharusi 2020",
"Key Words": "Sentinel-2A, northern lakes, remote sensing, atmospheric correction, coloured dissolved organic matter (CDOM), water quality"
},
{
"Week": "18",
"Date": "Feb 17, 2020",
"Name": "Dr. Amy Neuenschwander",
"Article Title": "The ATL08 land and vegetation product for the ICESat-2 Mission",
"Article Link": "Remote Sensing of Enviornment",
"Twitter Handle": "@longhornglam",
"MM Tweet": "Neuenschwander 2019",
"Key Words": "ICESat-2, Lidar, vegetation, terrain, land"
},
{
"Week": "19",
"Date": "Feb 24, 2020",
"Name": "Dr. Pinki Mondal",
"Article Title": "A reporting framework for Sustainable Development Goal 15: Multi-scale monitoring of forest degradation using MODIS, Landsat and Sentinel data",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@environmondal",
"MM Tweet": "Mondal 2020",
"Key Words": "SDG indicator, forest degradataion, climate, rain-use efficiency, MODIS, Landsat, Sentinel, CHIRPS, Google Earth Engine, protected area, Asia"
},
{
"Week": "20",
"Date": "Mar 2, 2020",
"Name": "Dr. Agnieszka Faulkner",
"Article Title": "Coastal Tidal Effects on Industrial Thermal Plumes in Satellite Imagery",
"Article Link": "Remote Sensing",
"Twitter Handle": "@its__Agnes",
"MM Tweet": "Faulkner 2019",
"Key Words": "industrial plumes, remote sensing, Landsat 8, ASTER, SST"
},
{
"Week": "21",
"Date": "Mar 9, 2020",
"Name": "Grace Koech",
"Article Title": "Climate change vulnerability assessment using a GIS modelling approach in ASAL ecosystem: a case study of Upper Ewaso Nyiro basin, Kenya",
"Article Link": "Modeling Earth Systems and Environment",
"Twitter Handle": "@GraceKoech1",
"MM Tweet": "Koech 2020",
"Key Words": "climate change, vulnerability, spatial analyses, semi-arid"
},
{
"Week": "22",
"Date": "Mar 16, 2020",
"Name": "Dr. Eleanor Stokes",
"Article Title": "Urban Applications of Nasa\u2019s Black Marble Product Suite",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@UrbanElla",
"MM Tweet": "Stokes 2019",
"Key Words": "urbanization, energy infrastructure, nighttime lights, satellite, urban land use, human settlement, Suomi-NPP, NOAA-20, NASA Black Marble, VIIRS-DNB, Night Lights, NTL"
},
{
"Week": "23",
"Date": "Mar 23, 2020",
"Name": "Africa Flores-Anderson",
"Article Title": "Hyperspectral Satellite Remote Sensing of Water Quality in Lake Atitl\u00e1n, Guatemala",
"Article Link": "Frontiers in Environmental Science",
"Twitter Handle": "@africa_science",
"MM Tweet": "Flores-Anderson 2020",
"Key Words": "hyperspectral remote sensing, water quality, chlorophyll a concentration, Lake Atitl\u00e1n, Guatemala"
},
{
"Week": "24",
"Date": "Mar 30, 2020",
"Name": "Amanda Weigel",
"Article Title": "A Spatial Pattern Analysis of Land Surface Roughness Heterogeneity and its Relationship to the Initiation of Weak Tornadoes",
"Article Link": "Earth Interactions",
"Twitter Handle": "@amweigelWX",
"MM Tweet": "Weigel 2019",
"Key Words": "atmosphere\u2013land interaction, boundary layer, geographic information systems (GIS), land surface, tornadoes, tornadogenesis"
},
{
"Week": "25",
"Date": "Apr 6, 2020",
"Name": "Dr. Nkeiruka Nneti Onyia",
"Article Title": "Normalized Difference Vegetation Vigour Index: A New Remote Sensing Approach to Biodiversity Monitoring in Oil Polluted Regions",
"Article Link": "Remote Sensing",
"Twitter Handle": "@NNkeiru",
"MM Tweet": "Onyia 2018",
"Key Words": "biodiversity monitoring, species diversity, hyper-spectral imaging, Hyperion, spectral metrics, vegetation vigour, oil pollution"
},
{
"Week": "26",
"Date": "Apr 13, 2020",
"Name": "Dr. Mika Tosca",
"Article Title": "Attributing Accelerated Summertime Warming in the Southeast United States to Recent Reductions in Aerosol Burden: Indications from Vertically-Resolved Observations",
"Article Link": "Remote Sensing",
"Twitter Handle": "@trans_icon_mika",
"MM Tweet": "Tosca 2017",
"Key Words": "warming hole, air quality, southeast US, global warming, climate change, aerosols"
},
{
"Week": "27",
"Date": "Apr 20, 2020",
"Name": "Dr. Gopika Suresh",
"Article Title": "Application of the automatic seep location estimator (ASLE) with the use of contextual information for estimating offshore oil seeps",
"Article Link": "Remote Sensing Applications: Society and Environment",
"Twitter Handle": "@Go__pika",
"MM Tweet": "Suresh 2017",
"Key Words": "automatic classification, ASLE, oil slicks, oil seeps, SAR"
},
{
"Week": "28",
"Date": "Apr 27, 2020",
"Name": "Dr. Laura Dingle Robertson",
"Article Title": "Assessing Land Cover Change and Anthropogenic Disturbance in Wetlands Using Vegetation Fractions Derived from Landsat 5 TM Imagery (1984\u20132010)",
"Article Link": "Wetlands",
"Twitter Handle": "@LDR1",
"MM Tweet": "Dingle Robertson 2015",
"Key Words": "wetlands, spectral mixture analysis, anthropogenic disturbance, time series, Landsat"
},
{
"Week": "29",
"Date": "May 4, 2020",
"Name": "Phoebe Oduor",
"Article Title": "Land Cover Mapping for Green House Gas Inventories in Eastern and Southern Africa Using Landsat and High Resolution Imagery: Approach and Lessons Learnt",
"Article Link": "Earth Science Satellite Applications",
"Twitter Handle": "@poduor24",
"MM Tweet": "Oduor 2016",
"Key Words": "land cover, land cover change, accuracy assessment, land cover class, land cover mapping"
},
{
"Week": "30",
"Date": "May 11, 2020",
"Name": "Jesslyn Brown",
"Article Title": "Lessons learned implementing an operational continuous United States national land change monitoring capability: The Land Change Monitoring, Assessment, and Projection (LCMAP) approach",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@jesslynbrown1",
"MM Tweet": "Brown 2020",
"Key Words": "time series, Landsat, analysis ready data, land cover, change detection, monitoring, Earth observations"
},
{
"Week": "31",
"Date": "May 18, 2020",
"Name": "Dr. Harini Nagendra",
"Article Title": "Classification of Indian cities using Google Earth Engine",
"Article Link": "Journal of Land Use Science",
"Twitter Handle": "@HariniNagendra",
"MM Tweet": "Nagendra 2019",
"Key Words": "urbanization, land cover, Google Earth Engine, supervised classification, random forest classification tree, Landsat images"
},
{
"Week": "32",
"Date": "May 25, 2020",
"Name": "Dr. Inga Jonkheere",
"Article Title": "Image Analysis of Hemispherical Photographs, Algorithms and Calculations",
"Article Link": "Hemispherical Photography in Forest Science: Theory, Methods, Applications",
"Twitter Handle": "@aingejo",
"MM Tweet": "Jonkheere 2017",
"Key Words": "biophysical data extraction, hemispherical photography algorithms, image classification, sun maps, vegetation canopy structure"
},
{
"Week": "33",
"Date": "Jun 1, 2020",
"Name": "Radhika Bhargava",
"Article Title": "A cloud computing-based approach to mapping mangrove erosion and progradation: Case studies from the Sundarbans and French Guiana",
"Article Link": "Estuarine, Coastal and Shelf Science",
"Twitter Handle": "@radb06",
"MM Tweet": "Bhargava 2021",
"Key Words": "mangrove loss, coastal erosion, coastal accretion, Google Earth Engine, water classification"
},
{
"Week": "34",
"Date": "Jun 8, 2020",
"Name": "Dr. Raha Hakimdavar",
"Article Title": "Monitoring Water-Related Ecosystems with Earth Observation Data in Support of Sustainable Development Goal (SDG) 6 Reporting",
"Article Link": "Remote Sensing",
"Twitter Handle": "@RahaHakimdavar",
"MM Tweet": "Hakimdavar 2020",
"Key Words": "water-related ecosystems, surface water extent, mangroves, water quality, Sustainable Development Goal 6, Indicator 6.6.1"
},
{
"Week": "35",
"Date": "Jun 15, 2020",
"Name": "Dr. Polyanna Da Concei\u00e7\u00e3o Bispo",
"Article Title": "Mapping forest successional stages in the Brazilian Amazon using forest heights derived from TanDEM-X SAR interferometry",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@Polybispo",
"MM Tweet": "Da Concei\u00e7\u00e3o Bispo 2019",
"Key Words": "tropical forests, successional stages, forest height, Synthetic Aperture Radar, interferometry, TanDEM-X"
},
{
"Week": "36",
"Date": "Jun 22, 2020",
"Name": "Dr. Samiah Moustafa",
"Article Title": "Evaluation of satellite remote sensing albedo retrievals over the ablation area of the southwestern Greenland ice sheet",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@Samiahmou",
"MM Tweet": "Moustafa 2017",
"Key Words": "MODIS, WV-2, albedo, ablation zone, Greenland ice sheet, spatial representativeness"
},
{
"Week": "37",
"Date": "Jun 29, 2020",
"Name": "Dr. Fabiola D. Y\u00e9pez and Ana Lucrecia Rivera",
"Article Title": "Assessing hydrometeorological impacts with terrestrial and aerial Lidar data in Monterrey, M\u00e9xico",
"Article Link": "International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences",
"Twitter Handle": "@fabiolayepez and @LucreciaRivera",
"MM Tweet": "Y\u00e9pez 2013",
"Key Words": "hidrometeorological impacts, Lidar, environmental policy, risk management"
},
{
"Week": "38",
"Date": "Jul 6, 2020",
"Name": "Dr. Michelle Stuhlmacher",
"Article Title": "Environmental Outcomes of Urban Land System Change: Comparing Riparian Design Approaches in the Phoenix Metropolitan Area",
"Article Link": "Land Use Policy",
"Twitter Handle": "@MFStuhlmacher",
"MM Tweet": "Stuhlmacher 2020",
"Key Words": "land system architecture, design, urban development, remote sensing, urban land systems"
},
{
"Week": "39",
"Date": "Jul 13, 2020",
"Name": "Richa Marwaha",
"Article Title": "Object-oriented and pixel-based classification approach for land cover using airborne long-wave infrared hyperspectral data",
"Article Link": "Journal of Applied Remote Sensing",
"Twitter Handle": "@richa_marwaha",
"MM Tweet": "Marwaha 2015",
"Key Words": "support vector machine, spectral angle mapper, minimum noise fraction, error matrix"
},
{
"Week": "40",
"Date": "Jul 20, 2020",
"Name": "Meyra Fuentes and Dr. Koreen Millard",
"Article Title": "Big geospatial data analysis for Canada\u2019s Air Pollutant Emissions Inventory (APEI): using google earth engine to estimate particulate matter from exposed mine disturbance areas",
"Article Link": "GIScience & Remote Sensing",
"Twitter Handle": "@MDelMal and @GeoKoreen",
"MM Tweet": "Fuentes 2020",
"Key Words": "Google Earth Engine, random forest classification, transfer learning, air quality, mine mapping"
},
{
"Week": "41",
"Date": "Jul 27, 2020",
"Name": "Dr. Apoorva Shastry",
"Article Title": "Water Surface Elevation Constraints in a Data Assimilation Scheme to Infer Floodplain Topography: A Case Study in the Logone Floodplain",
"Article Link": "Geophysical Research Letters",
"Twitter Handle": "@ApoorvaShastry",
"MM Tweet": "Shastry 2020",
"Key Words": "flood inundation prediction, topography, Landsat 7, Landsat 8, MERIT DEM, LISFLOOD-FP, Cameroon"
},
{
"Week": "42",
"Date": "Aug 3, 2020",
"Name": "Dr. Jill Deines",
"Article Title": "Mapping three decades of annual irrigation across the US High Plains Aquifer using Landsat and Google Earth Engine",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@JillDeines",
"MM Tweet": "Deines 2019",
"Key Words": "irrigation, Google Earth Engine, Landsat time series, groundwater, High Plains Aquifer, Ogallala Aquifer, agriculture"
},
{
"Week": "43",
"Date": "Aug 10, 2020",
"Name": "Sheryl Reyes",
"Article Title": "Enhancing Sustainability in Traditional Agriculture: Indicators for Monitoring the Conservation of Globally Important Agricultural Heritage Systems(GIAHS) in Japan",
"Article Link": "Sustainability",
"Twitter Handle": "@srcreyes",
"MM Tweet": "Reyes 2020",
"Key Words": "agricultural heritage systems, traditional knowledge, socio-ecological production, landscapes and seascapes (SEPLS)"
},
{
"Week": "44",
"Date": "Aug 17, 2020",
"Name": "Dr. Katarzyna Ewa Lewi\u0144ska",
"Article Title": "Short-term vegetation loss versus decadal degradation of grasslands in the Caucasus based on Cumulative Endmember Fractions",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@kelewinska",
"MM Tweet": "Lewi\u0144ska 2020",
"Key Words": "land degradation, rangelands, spectral mixture analysis (SMA), MODIS, Caucasus mountains, LandTrendr, Landsat, Google Earth Engine"
},
{
"Week": "45",
"Date": "Aug 24, 2020",
"Name": "Agatha Czekajlo",
"Article Title": "The urban greenness score: A satellite-based metric for multi-decadal characterization of urban land dynamics",
"Article Link": "International Journal of Applied Earth Observation and Geoinformation",
"Twitter Handle": "@AgathaCzekajlo",
"MM Tweet": "Czekajlo 2020",
"Key Words": "urban, vegetation, time series, Landsat, spectral unmixing, Canada"
},
{
"Week": "46",
"Date": "Aug 31, 2020",
"Name": "Dr. Carolina Monmany Garzia",
"Article Title": "How are landscape complexity and vegetation structure related across an agricultural frontier in the subtropical Chaco, NW Argentina?",
"Article Link": "Journal of Arid Environments",
"Twitter Handle": "@CMonmanyGarzia",
"MM Tweet": "Monmany Garzia 2015",
"Key Words": "landscape metrics, QuickBird, 2-D complexity, 3-D complexity"
},
{
"Week": "47",
"Date": "Sep 7, 2020",
"Name": "Nimisha Wagle",
"Article Title": "Past and Present Practices of Topographic Base Map Database Update in Nepal",
"Article Link": "ISPRS International Journal of Geo-Information",
"Twitter Handle": "@Wagle1996",
"MM Tweet": "Wagle 2020",
"Key Words": "topographic base map, national mapping agency, updates, history, ZY-3, Nepal"
},
{
"Week": "48",
"Date": "Sep 14, 2020",
"Name": "Dr. Mirela Tulbure",
"Article Title": "Surface water extent dynamics from three decades of seasonally continuous Landsat time series at subcontinental scale in a semi-arid region",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@MirelaGTulbure",
"MM Tweet": "Tulbure 2016",
"Key Words": "Landsat time series, seasonally continuous, surface water dynamics, flooding dynamics, accuracy assessment, probability sampling design, Murray\u2013Darling Basin, Australia, competing water demands, drought, random forest, long term trends, water, river basin, water management"
},
{
"Week": "49",
"Date": "Sep 21, 2020",
"Name": "Dr. Gohar Ghazaryan",
"Article Title": "Local-scale agricultural drought monitoring with satellite-based multi-sensor time-series",
"Article Link": "GIScience & Remote Sensing",
"Twitter Handle": "@ghazaryangohar",
"MM Tweet": "Ghazaryan 2020",
"Key Words": "crop stress, Sentinel-1, Landsat-8, Sentinel 2, logistic regression, data fusion"
},
{
"Week": "50",
"Date": "Sep 28, 2020",
"Name": "Sarah Banks and Dr. Koreen Millard",
"Article Title": "Contributions of Actual and Simulated Satellite SAR Data for Substrate Type Differentiation and Shoreline Mapping in the Canadian Arctic",
"Article Link": "Remote Sensing",
"Twitter Handle": "@SAR_ahBanks and @GeoKoreen",
"MM Tweet": "Banks 2017",
"Key Words": "RADARSAT-2, RADARSAT Constellation Mission, random forests, Arctic, shorelines"
},
{
"Week": "51",
"Date": "Oct 5, 2020",
"Name": "Karen Chen",
"Article Title": "Mapping horizontal and vertical urban densification in Denmark with Landsat time-series from 1985 to 2018: A semantic segmentation solution",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@THKarenChen",
"MM Tweet": "Chen 2020",
"Key Words": "urban form; urban growth; urbanization; deep learning; semantic segmentation; multi-temporal classification; spatial and temporal transferability; Landsat"
},
{
"Week": "52",
"Date": "Oct 12, 2020",
"Name": "Dr. Karen Bailey",
"Article Title": "Land-cover change within and around protected areas in a biodiversity hotspot",
"Article Link": "Journal of Land Use Science",
"Twitter Handle": "@karnebe",
"MM Tweet": "Bailey 2015",
"Key Words": "land-cover change, land-use change, protected area, Landsat, southern Africa"
},
{
"Week": "53",
"Date": "Oct 19, 2020",
"Name": "Dr. Laura Duncanson",
"Article Title": "Biomass estimation from simulated GEDI, ICESat-2 and NISAR across environmental gradients in Sonoma County, California",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@LauraDuncanson",
"MM Tweet": "Duncanson 2020",
"Key Words": "GEDI, NISAR, ICESat-2, biomass estimation, biomass errors, data fusion"
},
{
"Week": "54",
"Date": "Oct 26, 2020",
"Name": "Dr. Vanessa Brum-Bastos",
"Article Title": "Multi-source data fusion of optical satellite imagery to characterize habitat selection from wildlife tracking data",
"Article Link": "Ecological Informatics",
"Twitter Handle": "@VanessaBBastos",
"MM Tweet": "Brum-Bastos 2020",
"Key Words": "movement analysis, remote sensing, NDVI, MODIS, Landsat, data fusion, multi-source"
},
{
"Week": "55",
"Date": "Nov 2, 2020",
"Name": "Mary K. Bennett",
"Article Title": "Automating Drone Image Processing to Map Coral Reef Substrates Using Google Earth Engine",
"Article Link": "Drones",
"Twitter Handle": "@Katie_Ben91",
"MM Tweet": "Bennett 2020",
"Key Words": "drone mapping, coral reefs, random forest, Google Earth Engine, remote sensing, RPAS, heron reef, drone imagery"
},
{
"Week": "56",
"Date": "Nov 9, 2020",
"Name": "Dr. Flavia de Souza Mendes",
"Article Title": "Optical and SAR Remote Sensing Synergism for Mapping Vegetation Types in the Endangered Cerrado/Amazon Ecotone of Nova Mutum\u2014Mato Grosso",
"Article Link": "Remote Sensing",
"Twitter Handle": "@flasmendes",
"MM Tweet": "de Souza Mendes 2019",
"Key Words": "Cerrado, Amazon, vegetation type, optical, sar, synergism, mapping"
},
{
"Week": "57",
"Date": "Nov 16, 2020",
"Name": "Dr. Alicia Caruso",
"Article Title": "Airborne hyperspectral characterisation of hydrothermal alteration in a regolith-dominated terrain, southern Gawler Ranges, South Australia",
"Article Link": "Australian Journal of Earth Sciences",
"Twitter Handle": "@aliciascaruso",
"MM Tweet": "Caruso 2020",
"Key Words": "mineral exploration, regolith-dominated terrain, hyperspectral imagery, HyMap, Spectral Feature Fitting, X-ray diffraction, hydrothermal alteration, Gawler Ranges"
},
{
"Week": "58",
"Date": "Nov 23, 2020",
"Name": "Dr. Di Yang",
"Article Title": "Open land-use map: a regional land-use mapping strategy for incorporating OpenStreetMap with earth observations",
"Article Link": "Geo-spatial Information Science",
"Twitter Handle": "@yangdi1031",
"MM Tweet": "Yang 2017",
"Key Words": "OpenStreetMap (OSM), Volunteered Geographic Information (VGI), crowdsourced data, random forest, Google Earth Engine (GEE)"
},
{
"Week": "59",
"Date": "Nov 30, 2020",
"Name": "Dr. Raechel Portelli",
"Article Title": "Describing the problem-solving strategies of expert image interpreters using graphical knowledge elicitation methods",
"Article Link": "GIScience & Remote Sensing",
"Twitter Handle": "@CurmudgeonPhD",
"MM Tweet": "Portelli 2015",
"Key Words": "image interpretation, expertise, knowledge elicitation"
},
{
"Week": "60",
"Date": "Dec 7, 2020",
"Name": "Dr. Xiao Xiang Zhu",
"Article Title": "A Review of Ten-Year Advances of Multi-Baseline SAR Interferometry Using TerraSAR-X Data",
"Article Link": "Remote Sensing",
"Twitter Handle": "@xiaoxiang_zhu",
"MM Tweet": "Zhu 2018",
"Key Words": "multi-baseline, multi-pass, PS, DS, geodetic, TomoSAR, D-TomoSAR, PSI, robust estimation, covariance matrix, InSAR, SAR, review"
},
{
"Week": "61",
"Date": "Dec 14, 2020",
"Name": "Chippie Kislik",
"Article Title": "Application of UAV Imagery to Detect and Quantify Submerged Filamentous Algae and Rooted Macrophytes in a Non-Wadeable River",
"Article Link": "Remote Sensing",
"Twitter Handle": "@chippiekizzle",
"MM Tweet": "Kislik 2020",
"Key Words": "benthic mapping, drones, submerged aquatic vegetation, filamentous algae, macrophytes"
},
{
"Week": "62",
"Date": "Dec 21, 2020",
"Name": "Dr. Priyanka deSouza",
"Article Title": "Combining low-cost, surface-based aerosol monitors with size-resolved satellite data for air quality applications",
"Article Link": "Atmospheric Measurement Techniques",
"Twitter Handle": "@PDez90",
"MM Tweet": "deSouza 2020",
"Key Words": "near-surface particulate matter, air quality, Nairobi, Kenya, ground-based monitors, aerosol optical depth, MODIS, MISR"
},
{
"Week": "63",
"Date": "Dec 28, 2020",
"Name": "2020 MM Moments Thread",
"Article Title": "",
"Article Link": "2020 MM",
"Twitter Handle": "",
"MM Tweet": "",
"Key Words": ""
},
{
"Week": "64",
"Date": "Jan 4, 2021",
"Name": "Dr. Joanne White",
"Article Title": "Evaluating the capacity of single photon lidar for terrain characterization under a range of forest conditions",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@Joanne_C_White",
"MM Tweet": "White 2021",
"Key Words": "forestry, elevation, SPL, ALS, Lidar, forest inventory"
},
{
"Week": "65",
"Date": "Jan 11, 2021",
"Name": "Dr. Dawn Wright",
"Article Title": "Swells, Soundings, and Sustainability, but\u2026\u201cHere Be Monsters\u201d",
"Article Link": "Oceanography",
"Twitter Handle": "@deepseadawn",
"MM Tweet": "Wright 2017",
"Key Words": "ocean mapping, GIS, Earth observations, multidimensional approaches, sustainable development goal monitoring, SDG"
},
{
"Week": "66",
"Date": "Jan 18, 2021",
"Name": "Dr. Meredith Brown",
"Article Title": "Intercomparison of Machine-Learning Methods for Estimating Surface Shortwave and Photosynthetically Active Radiation",
"Article Link": "Remote Sensing",
"Twitter Handle": "@mglbrown",
"MM Tweet": "Brown 2020",
"Key Words": "PAR, machine-learning, MODIS, shortwave radiation, radiative transfer, surface radiation, satellite remote sensing, radiation budget"
},
{
"Week": "67",
"Date": "Jan 25, 2021",
"Name": "Charmaine Cruz",
"Article Title": "Linear spectral unmixing of Sentinel-3 imagery for urban land cover - land surface temperature (LST) analysis: A case study of metro Manila, Philippines",
"Article Link": "International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences",
"Twitter Handle": "@charmcharmcruz",
"MM Tweet": "Cruz 2019",
"Key Words": "urbanization, urban heat island, land cover fractions, land surface temperature, remote sensing"
},
{
"Week": "68",
"Date": "Feb 1, 2021",
"Name": "Dr. Louise Leroux",
"Article Title": "Maize yield estimation in West Africa from crop process-induced combinations of multi-domain remote sensing indices",
"Article Link": "European Journal of Agronomy",
"Twitter Handle": "@LerouxLouise4",
"MM Tweet": "Leroux 2019",
"Key Words": "crop yield estimation and forecast, food security, MODIS NDVI and LST, SMOS SSM, statistical model, SARRA-O crop model, uncalibrated approach"
},
{
"Week": "69",
"Date": "Feb 8, 2021",
"Name": "Ufuoma Ovienmhada",
"Article Title": "Earth observation technology applied to environmental management : a case study in Benin",
"Article Link": "DSpace@MIT",
"Twitter Handle": "@ItsUfuoma",
"MM Tweet": "Ovienmhada 2020",
"Key Words": "Landsat, Sentinel-2, Sentinel-1, Planet, local stakeholders, invasive plant species, water quality, Benin"
},
{
"Week": "70",
"Date": "Feb 15, 2021",
"Name": "Dr. Alyssa Whitcraft",
"Article Title": "No pixel left behind: Toward integrating Earth Observations for agriculture into the United Nations Sustainable Development Goals framework",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@AKWhitcraft",
"MM Tweet": "Whitcraft 2019",
"Key Words": "Earth observations, agriculture, food security, Sustainable development goals, policy mandates, GEOGLAM"
},
{
"Week": "71",
"Date": "Feb 22, 2021",
"Name": "Jacqueline Hung",
"Article Title": "Environmental land-cover classification for integrated watershed studies: Cape Bounty, Melville Island, Nunavut",
"Article Link": "Arctic Science",
"Twitter Handle": "@jackiehung4",
"MM Tweet": "Hung 2020",
"Key Words": "parametric algorithms, non-parametric algorithms, land cover, WorldView-2, Cape Bountry Arctic Watershed Observatory, Nunavut, support vector machine"
},
{
"Week": "72",
"Date": "Mar 1, 2021",
"Name": "Carly Beneke (Mertes)",
"Article Title": "Detecting change in urban areas at continental scales with MODIS data",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@CarlyMertes",
"MM Tweet": "Mertes 2015",
"Key Words": "urban areas, urbanization, cities, land cover, change detection, classification, machine learning, decision trees, data fusion, decision fusion"
},
{
"Week": "73",
"Date": "Mar 8, 2021",
"Name": "Anam Khan",
"Article Title": "Reviews and syntheses: Ongoing and emerging opportunities to improve environmental science using observations from the Advanced Baseline Imager on the Geostationary Operational Environmental Satellites",
"Article Link": "Biogeosciences - Preprint",
"Twitter Handle": "@An_Khan3",
"MM Tweet": "Khan 2021",
"Key Words": "GOES, geostationary satellites, environmental monitoring, heat fluxes, droughts, wildfires"
},
{
"Week": "74",
"Date": "Mar 15, 2021",
"Name": "Dr. Francesca Giannetti",
"Article Title": "A New Method for Automated Clearcut Disturbance Detection in Mediterranean Coppice Forests Using Landsat Time Series",
"Article Link": "Remote Sensing",
"Twitter Handle": "@fgiannetti_FRS",
"MM Tweet": "Giannetti 2020",
"Key Words": "Landsat, forest disturbances, time series analysis, remote sensing, Mediterranean forest, optical time series images, algorithm, change detection"
},
{
"Week": "75",
"Date": "Mar 22, 2021",
"Name": "Dr. Yujia Zhang",
"Article Title": "Evaluating the effect of 3D urban form on neighborhood land surface temperature using Google Street View and geographically weighted regression",
"Article Link": "Landscape Ecology",
"Twitter Handle": "",
"MM Tweet": "Zhang 2019",
"Key Words": "Google Street View, 3D urban form, Geographically weighted regression, Land surface temperature, Urban heat island"
},
{
"Week": "76",
"Date": "Mar 29, 2021",
"Name": "Dr. Myl\u00e8ne Jacquemart",
"Article Title": "What drives large-scale glacier detachments? Insights from Flat Creek glacier, St. Elias Mountains, Alaska",
"Article Link": "Geology",
"Twitter Handle": "@MyleneJac",
"MM Tweet": "Jacquemart 2020",
"Key Words": "Planet, Arctic, DEM, glacier detachment, Flat Creek Glacier, Alaska"
},
{
"Week": "77",
"Date": "April 5, 2021",
"Name": "Kurnia Latifiana",
"Article Title": "Spatial Habitat Suitability Modeling of the Roti Snake-Necked Turtle (Chelodina Mccordi) Based on Landsat-8 Imagery and GIS",
"Article Link": "2018 4th International Conference on Science and Technology",
"Twitter Handle": "@latifiana",
"MM Tweet": "Latifiana 2018",
"Key Words": "Geographic Information System (GIS), Habitat Suitability Index (HSI), freshwater turtles, conservation"
},
{
"Week": "78",
"Date": "April 12, 2021",
"Name": "Dr. Kirsten J. Lees",
"Article Title": "Assessing the reliability of peatland GPP measurements by remote sensing: From plot to landscape scale",
"Article Link": "Science of The Total Environment",
"Twitter Handle": "@K_J_Lees",
"MM Tweet": "Lees 2021",
"Key Words": "TG model, photosynthesis, NDVI, satellite, blanket bog"
},
{
"Week": "79",
"Date": "April 26, 2021",
"Name": "Dr. Hannah Kerner",
"Article Title": "Rapid Response Crop Maps in Data Sparse Regions",
"Article Link": "KDD \u201920 Humanitarian Mapping Workshop",
"Twitter Handle": "@hannah_kerner",
"MM Tweet": "Kerner 2020",
"Key Words": "agriculture, food security, crop classification, neural networks, Earth observation"
},
{
"Week": "80",
"Date": "May 3, 2021",
"Name": "Dr. Viviana Zalles",
"Article Title": "Rapid expansion of human impact on natural land in South America since 1985",
"Article Link": "Science Advances",
"Twitter Handle": "@vzalles",
"MM Tweet": "Zalles 2021",
"Key Words": "Landsat, SWIR, NIR, NDVI, land-use conversion, land cover modification, South America"
},
{
"Week": "81",
"Date": "May 10, 2021",
"Name": "Dr. Ninni Saarinen",
"Article Title": "Understanding 3D structural complexity of individual Scots pine trees with different management history",
"Article Link": "Ecology and Evolution",
"Twitter Handle": "@ninni_saarinen",
"MM Tweet": "Saarinen 2021",
"Key Words": "box dimension, forest ecology, ground-based LiDAR, growth and yield, silviculture, terrestrial laser scanning, tree structure"
},
{
"Week": "82",
"Date": "May 17, 2021",
"Name": "Dr. Yhasmin Mendes de Moura",
"Article Title": "Carbon Dynamics in a Human-Modified Tropical Forest: A Case Study Using Multi-Temporal LiDAR Data",
"Article Link": "Remote Sensing",
"Twitter Handle": "@yhasmoura",
"MM Tweet": "Mendes de Moura 2020",
"Key Words": "airborne LiDAR, Amazon forest, aboveground carbon, canopy height, forest disturbance"
},
{
"Week": "83",
"Date": "May 24, 2021",
"Name": "Amy Pickens",
"Article Title": "Mapping and sampling to characterize global inland water dynamics from 1999 to 2018 with full Landsat time-series",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "",
"MM Tweet": "Pickens 2020",
"Key Words": "surface water, Landsat, time-series, area estimation, change detection, Global"
},
{
"Week": "84",
"Date": "May 31, 2021",
"Name": "Angel Chen",
"Article Title": "Biophysical controls of increased tundra productivity in the western Canadian Arctic",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@angelchen95",
"MM Tweet": "Chen 2021",
"Key Words": "Landsat, Random Forests, Arctic tundra, greening, EVI, vegetation indices, climate change"
},
{
"Week": "85",
"Date": "June 7, 2021",
"Name": "Dr. Teresa Konlechner",
"Article Title": "Mapping spatial variability in shoreline change hotspots from satellite data; a case study in southeast Australia",
"Article Link": "Estuarine, Coastal and Shelf Science",
"Twitter Handle": "@tkonlechner",
"MM Tweet": "Konlechner 2020",
"Key Words": "coastal erosion, Google earth engine, shoreline dynamics, shoreline detection, satellite derived shorelines"
},
{
"Week": "86",
"Date": "June 14, 2021",
"Name": "Dr. Min Xu",
"Article Title": "Implementation Strategy and Spatiotemporal Extensibility of Multipredictor Ensemble Model for Water Quality Parameter Retrieval With Multispectral Remote Sensing Data",
"Article Link": "IEEE Transactions on Geoscience and Remote Sensing",
"Twitter Handle": "@MinXu_UC",
"MM Tweet": "Xu 2021",
"Key Words": "chlorophyll-a (Chl-a), ensemble model, spatiotemporal extensibility, space and time, water quality"
},
{
"Week": "87",
"Date": "June 21, 2021",
"Name": "Dr. Kaitlin M. Gold",
"Article Title": "Hyperspectral Measurements Enable Pre-Symptomatic Detection and Differentiation of Contrasting Physiological Effects of Late Blight and Early Blight in Potato",
"Article Link": "Remote Sensing",
"Twitter Handle": "@KaitlinMGold",
"MM Tweet": "Gold 2020",
"Key Words": "field spectroscopy, pathogen; plant disease, agriculture, shortwave infrared, hyperspectral"
},
{
"Week": "88",
"Date": "June 28, 2021",
"Name": "Mary Immaculate Neh-Fru",
"Article Title": "Remote Sensing for Geological Investigation of Mayo Kila and Environs, North West Region of Cameroon",
"Article Link": "American Journal of Earth Sciences",
"Twitter Handle": "@ImmaculateNeh",
"MM Tweet": "Neh-Fru 2020",
"Key Words": "Lineaments, fractal analysis, orogeny, remote sensing, Mayo Kila"
},
{
"Week": "89",
"Date": "July 5, 2021",
"Name": "Abigail Barenblitt",
"Article Title": "The large footprint of small-scale artisanal gold mining in Ghana",
"Article Link": "Science of the Total Environment",
"Twitter Handle": "@abarenblitt",
"MM Tweet": "Barenblitt 2021",
"Key Words": "Galamsey, Landsat, extent mapping, NDVI, Google Earth Engine"
},
{
"Week": "90",
"Date": "July 12, 2021",
"Name": "Dr. Bianca Molinari",
"Article Title": "Assessing Spatial Variation in Algal Productivity in a Tropical River Floodplain Using Satellite Remote Sensing",
"Article Link": "Remote Sensing",
"Twitter Handle": "@molinari_bia",
"MM Tweet": "Molinari 2021",
"Key Words": "statistical modelling, wetlands, tropical rivers, wetland management, epiphyton, phytoplankton, primary productivity, Landsat 8, Australia"
},
{
"Week": "91",
"Date": "July 19, 2021",
"Name": "Dr. Cheryl Doughty",
"Article Title": "Characterizing spatial variability in coastal wetland biomass across multiple scales using UAV and satellite imagery",
"Article Link": "Remote Sensing in Ecology and Conservation",
"Twitter Handle": "@cherylldoughty",
"MM Tweet": "Doughty 2021",
"Key Words": "drones, Landsat, saltmarsh, semivariogram, spatial heterogeneity, unoccupied aerial systems"
},
{
"Week": "92",
"Date": "July 26, 2021",
"Name": "Dr. Lorena A. Santos",
"Article Title": "Quality control and class noise reduction of satellite image time series",
"Article Link": "ISPRS Journal of Photogrammetry and Remote Sensing",
"Twitter Handle": "@lorenaalvesgo",
"MM Tweet": "Santos 2021",
"Key Words": "self-organizing map, class noise reduction, Bayesian inference, satellite image time series, land use and cover classification"
},
{
"Week": "93",
"Date": "August 2, 2021",
"Name": "Dr. Laura Chasmer",
"Article Title": "Using Multitemporal and Multispectral Airborne Lidar to Assess Depth of Peat Loss and Correspondence With a New Active Normalized Burn Ratio for Wildfires",
"Article Link": "Geophysical Research Letters",
"Twitter Handle": "@ErsPeat",
"MM Tweet": "Chasmer 2017",
"Key Words": "active normalized burn ratio, dNBR, lidar, Landsat 7, Fort McMurray, Canada, peatland, wildfire"
},
{
"Week": "94",
"Date": "August 9, 2021",
"Name": "Gizem \u015eenel",
"Article Title": "Exploring the potential of Landsat-8 OLI and Sentinel-2 MSI data for mapping and monitoring Enez Dalyan Lagoon",
"Article Link": "Desalination and Water Treatment",
"Twitter Handle": "@GizemSenel",
"MM Tweet": "Senel 2019",
"Key Words": "coastal lagoon monitoring, Landsat 8, Sentinel-2, spectral water index algorithms, normalized difference water index"
},
{
"Week": "95",
"Date": "August 16, 2021",
"Name": "Dr. Emma Li Johansson",
"Article Title": "Mapping and quantifying perceptions of environmental change in Kilombero Valley, Tanzania",
"Article Link": "Ambio",
"Twitter Handle": "@emmalijohansson",
"MM Tweet": "Johansson & Abdi 2020",
"Key Words": "deforestation, large-scale land acquisitions, mixed methods, participatory research, remote sensing, socio-environmental change"
},
{
"Week": "96",
"Date": "August 23, 2021",
"Name": "Dr. Cibele Hummel do Amaral",
"Article Title": "Characterization of indicator tree species in neotropical environments and implications for geological mapping",
"Article Link": "Remote Sensing of Environment",
"Twitter Handle": "@CibeleHdoAmaral",
"MM Tweet": "do Amaral 2018",
"Key Words": "geobotany, Cerrado biome, sedimentary formations, multivariate analysis, spectroscopy, Spectral Mixture Analysis"
},
{
"Week": "97",
"Date": "August 30, 2021",
"Name": "Zoe Pierrat",
"Article Title": "Tower\u2010Based Remote Sensing Reveals Mechanisms Behind a Two\u2010phased Spring Transition in a Mixed\u2010Species Boreal Forest",
"Article Link": "JGR Biogeosciences",
"Twitter Handle": "@zoeapie",
"MM Tweet": "Pierrat 2021",
"Key Words": "tower-based remote sensing, PhotoSpec, vegetation indices, spring transition, Boreal forests"
},
{
"Week": "98",
"Date": "September 6, 2021",
"Name": "Rabia Kahn",
"Article Title": "Water quality monitoring over Finger Lakes region using Sentinel-2 imagery on Google Earth Engine cloud computing platform",
"Article Link": "XXIV ISPRS Congress",
"Twitter Handle": "@MunsafRabia",
"MM Tweet": "Khan 2021",
"Key Words": "Google Earth Engine, Finger Lakes, Sentinel 2, sediment loading, water quality"
},
{
"Week": "99",
"Date": "September 13, 2021",
"Name": "Dr. Catherine Champagne",
"Article Title": "Impact of Soil Moisture Data Characteristics on the Sensitivity to Crop Yields Under Drought and Excess Moisture Conditions",
"Article Link": "Remote Sensing",
"Twitter Handle": "@cathchampagne",
"MM Tweet": "Champagne 2019",
"Key Words": "soil moisture, drought, agriculture, SMOS, ESA-CCI"
},
{
"Week": "100",
"Date": "September 20, 2021",
"Name": "Mahsa Khodaee",
"Article Title": "Monitoring Forest Infestation and Fire Disturbance in the Southern Appalachian Using a Time Series Analysis of Landsat Imagery",
"Article Link": "Remote Sensing",
"Twitter Handle": "@mahsa_khodaee",
"MM Tweet": "Khodaee 2020",
"Key Words": "Hemlock Woolly Adelgid, fire, Landsat, Tasseled Cap Transformation"