-
Notifications
You must be signed in to change notification settings - Fork 2
/
publications.html
1594 lines (1579 loc) · 87.3 KB
/
publications.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
<h2>Publications and presentations on development and applications of Open Source GIS</h2>
<ul>
<li><a href="#books">Books</a></li>
<li><a href="#peer">Peer-reviewed Publications</a></li>
<li><a href="#proceedings">Papers in Conference Proceedings<!-- TODO: remove following? and other Publications--></a></li>
<li><a href="#theses">Theses and Dissertations</a></li>
<li><a href="#presentations">Presentations</a></li>
<li><a href="#other">Other Publications</a></li>
<li><a href="#outreach">Outreach</a></li>
</ul>
Check also our <a href=software.html>software</a> at a separate page.
<h3 id="books">Books</h3>
<ul class="image-list long-list">
<li>
<img src="./publications_pictures/TLbook2.png" alt="book_illustration">
<p>
Petrasova, A., Harmon, B., Petras, V., Tabrizian, P., Mitasova, H., 2018,
<a href="https://link.springer.com/book/10.1007%2F978-3-319-89303-7">
<em>Tangible Modeling with Open Source GIS,</em>
</a> second edition,
Springer International Publishing, 202 p.
eBook ISBN: 978-3-319-89303-7, Hardcover ISBN: 978-3-319-89302-0,
DOI: 10.1007/978-3-319-89303-7
</p>
</li>
<li>
<img src="./publications_pictures/tangible_landscape_book.jpg" alt="book_illustration">
<p>
Petrasova, A., Harmon, B., Petras, V., Mitasova, H., 2015,
<a href="http://www.springer.com/us/book/9783319257730">
<em>Tangible Modeling with Open Source GIS,</em>
</a>
Springer International Publishing, 135 p.
eBook ISBN: 978-3-319-25775-4, Hardcover ISBN: 978-3-319-25773-0,
DOI: 10.1007/978-3-319-25775-4
</p>
</li>
<li>
<img src="./publications_pictures/HardinThesis.png" alt="book_illustration">
<p>
Hardin, E., Mitasova, H., Tateosian, L., Overton, M., 2014,
<a href="http://www.springer.com/us/book/9781493918348">
<em>GIS-based Analysis of Coastal Lidar Time-Series,</em>
</a>
Springer Briefs in Computer Science, Springer, New York, 84 p.
</p>
</li>
<li>
<img src="./logos/grass_logo.png" alt="book illustration">
<p>
Neteler, M. and Mitasova, H., 2008,
<a href="http://www.grassbook.org/">
<em>Open source GIS: A GRASS GIS Approach,</em>
</a>
Third edition, Springer, New York, 406p
</p>
</li>
</ul>
<h3 id="peer">Peer-reviewed Publications</h3>
<ul class="image-list long-list">
<li>
<img src="./publications_pictures/Sanchez_2023.png" alt="FUTURES v3 result">
Sanchez G.M., Petrasova A., Skrip M.M., Collins E.L., Lawrimore M.A., Vogler J.B., Terando A.,
Vukomanovic J., Mitasova H., Meentemeyer R.K. 2023.
<em><a href="https://doi.org/10.1038/s41598-023-46195-9">
Spatially interactive modeling of land change identifies location-specific adaptations most likely to lower future flood risk.</a></em>
In: Scientific Reports.
</li>
<li>
<img src="./publications_pictures/openplains2023.png" alt="OpenPlains logo">
White C.T., Petrasova A., Petras V., Tateosian L.G., Vukomanovic J., Mitasova H., Meentemeyer R.K. 2023.
<em><a href="https://doi.org/10.1016/j.envsoft.2023.105767">
An open-source platform for geospatial participatory modeling in the cloud.</a></em>
In: Environmental Modelling & Software.
</li>
<li>
<img src="./publications_pictures/grass_jupyter_TGIS.jpg" alt="jupyter notebook">
Haedrich, C., Petras, V., Petrasova, A., Blumentrath, S., Mitasova, H. 2023.
<em><a href="https://doi.org/10.1111/tgis.13031">
Integrating GRASS GIS and Jupyter Notebooks to facilitate advanced geospatial modeling education.</a></em>
In: Transactions in GIS.
</li>
<li>
<img src="./publications_pictures/petras_density_2023.png" alt="point patterns">
Petras, V., Petrasova, A., McCarter, J.B., Mitasova, H., Meentemeyer, R.K. 2022.
<em><a href="https://doi.org/10.3390/s23031593">
Point Density Variations in Airborne Lidar Point Clouds.</a></em>
In: Sensors 2023, 23, 1593.
</li>
<li>
<img src="./publications_pictures/SLF_2022.png" alt="PoPS model">
Jones C. M., Skrip M. M., Seliger B. J., Jones S., Wakie T., Takeuchi Y., Petras V., Petrasova A., Meentemeyer R. K. 2022.
<em><a href="https://doi.org/10.1038/s42003-022-03447-0">
Spotted lanternfly predicted to establish in California by 2033 without preventative management.</a></em>
In: Communications Biology.
</li>
<li>
<img src="./publications_pictures/kellyn_posp_border22.png" alt="PoPS Border">
Montgomery K., Petras V., Takeuchi Y., Katsar C. 2022.
<em><a href="https://doi.org/10.1111/risa.13943">
Contaminated consignment simulation to support risk-based inspection design.</a></em>
In: Risk Analysis.
</li>
<li>
<img src="./publications_pictures/rapid-dsm.png" alt="Rapid DSM">
White C.T., Reckling W., Petrasova A., Meentemeyer R.K., Mitasova H. 2022.
<em><a href="https://doi.org/10.3390/rs14071718">
Rapid-DEM: Rapid Topographic Updates through Satellite Change Detection and UAS Data Fusion.</a></em>
In: Remote Sensing.
</li>
<li>
<img src="./publications_pictures/Collins_ERL2022floodrisk.png" alt="Flood Risk">
Collins, E.L., Sanchez G.M., Terando A., Stillwell, C.C., Mitasova H., Sebastian A., Meentemeyer, R.K., 2022.
<em><a href="https://iopscience.iop.org/article/10.1088/1748-9326/ac4f0f/meta">
Predicting flood damage probability across the conterminous United States</a></em>
In: Environmental Research Letters 17, 034006.
</li>
<li>
<img src="./publications_pictures/Mitas_Nuennen2022.png" alt="Museum Tour">
Mitas, O., Mitasova H., Millar G., Boode W., Neveu V., Hover M., van den Eijden V.,Bastiaansen M., 2022.
<em><a href="https://journals.sagepub.com/doi/abs/10.1177/1096348020957075">
More is not better: The emotional dynamics of an excellent experience</a></em>
In: Journal of Hospitality & Tourism Research 46 (1), 78-99
</li>
<li>
<img src="./publications_pictures/white_land_2021.png" alt="word cloud">
White C. T., Mitasova H., BenDor T. K., Foy K., Pala O., Vukomanovic J., Meentemeyer R. K. 2021.
<em><a href="https://doi.org/10.3390/land10111114">
Spatially Explicit Fuzzy Cognitive Mapping for Participatory Modeling of Stormwater Management.</a></em>
In: Land.
</li>
<li>
<img src="./publications_pictures/reckling_drones_2021.png" alt="plant">
Reckling W., Mitasova H., Wegmann K., Kauffman G., Reid R. 2021.
<em><a href="https://doi.org/10.3390/drones5040110">
Efficient Drone-Based Rare Plant Monitoring Using a Species Distribution Model and AI-Based Object Detection.</a></em>
In: Drones.
</li>
<li>
<img src="./publications_pictures/evaluation_gaydos_2021.png" alt="PoPS workshop">
Gaydos D., Jones C. M., Jones S. K., Garrett M. C., Petras V., Petrasova A., Mitasova H., Meentemeyer R. K. 2021.
<em><a href="https://doi.org/10.1002/eap.2446">
Evaluating online and tangible interfaces for engaging stakeholders in forecasting and control of biological invasions.</a></em>
In: Ecological Applications.
</li>
<li>
<img src="./publications_pictures/UCGIS_BoK.png" alt="UCGIS Book of Knowledge entry">
Petras V., Mitasova H., Petrasova, A. 2021.
<em><a href="https://doi.org/10.22224/gistbok/2021.2.4">
Open Source Software Development.</a></em>
In: The Geographic Information Science & Technology Body of Knowledge (2nd Quarter 2021 Edition), John P. Wilson (ed.).
</li>
<li>
<img src="./publications_pictures/pops_frontiers_Jones.png" alt="PoPS model">
Jones C. M., Jones S., Petrasova A., Petras V., Gaydos D., Skrip M. M., Takeuchi Y., Bigsby K., Meentemeyer R. K. 2021.
<em><a href="https://doi.org/10.1002/fee.2357">
Iteratively forecasting biological invasions with PoPS and a little help from our friends.</a></em>
In: Frontiers in Ecology and the Environment.
</li>
<li>
<img src="./publications_pictures/Millar_urban_physiology.png" alt="human physiology">
Millar G. C., Mitas O., Boode W., Hoeke L., de Kruij J., Petrasova A., Mitasova H. 2021.
<em><a href="https://doi.org/10.1016/j.compenvurbsys.2020.101554">
Space-time analytics of human physiology for urban planning.</a></em>
In: Computers, Environment and Urban Systems, 85.
</li>
<li>
<img src="./publications_pictures/Ruckerflooding2021.png" alt="human physiology">
Rucker C, Tull N, Dietrich J, Langan T, Mitasova H, Blanton B, Fleming J, Luettich R. 2021
<em><a href="https://link.springer.com/article/10.1007/s11069-021-04634-8">
Downscaling of real-time coastal flooding predictions for decision support.</a></em>
In: Natural Hazards, 107(2):1341-1369.
</li>
<li>
<img src="./publications_pictures/geosimulation_steering_Petrasova.png" alt="Geosimulation steering">
Petrasova A., Gaydos D. A., Petras V., Jones C. M., Mitasova H., Meentemeyer R. K. 2020.
<em><a href="https://doi.org/10.1016/j.envsoft.2020.104801">
Geospatial simulation steering for adaptive management.</a></em>
In: Environmental Modelling & Software, 133.
</li>
<li>
<img src="./publications_pictures/canopy_structure_Montgomery.png" alt="Canopy Structure">
Montgomery K., Henry J. B., Vann M. C., Whipker B. E., Huseth A. S., Mitasova H. 2020.
<em><a href="https://doi.org/10.3390/drones4030036">
Measures of Canopy Structure from Low-Cost UAS for Monitoring Crop Nutrient Status.</a></em>
In: Drones 4(3).
</li>
<li>
<img src="./publications_pictures/viewsheds_Tabrizian_IJGI.png" alt="Viewscape modeling">
Tabrizian P., Petrasova A., Baran P. K., Vukomanovic J., Mitasova H., Meentemeyer R. K. 2020.
<em><a href="https://www.mdpi.com/2220-9964/9/7/445">
High Resolution Viewscape Modeling Evaluated Through Immersive Virtual Environments.</a></em>
In: ISPRS Int. J. Geo-Inf, 9(7).
</li>
<li>
<img src="./publications_pictures/open_geo_Coetzee.png" alt="open source geospatial">
Coetzee S., Ivanova I., Mitasova H., Brovelli M. A. 2020.
<em><a href="https://doi.org/10.3390/ijgi9020090">
Open Geospatial Software and Data: A Review of theCurrent State and A Perspective into the Future.</a></em>
In: ISPRS Int. J. Geo-Inf, 9(2).
</li>
<li>
<img src="./publications_pictures/UAS_DSM_White.png" alt="paper_illustration">
<p>
White C., Petrasova A., Reckling W., Mitasova, H. 2020,
<a href="https://www.int-arch-photogramm-remote-sens-spatial-inf-sci.net/XLII-3-W11/155/2020/isprs-archives-XLII-3-W11-155-2020.pdf"><em>
Automated land cover change detection through rapid UAS updates of digital surface models.
</em></a>
In: ISPRS Archives, Volume XLII-3/W11.
</p>
</li>
<li>
<img src="./publications_pictures/STCwebcam.png" alt="STC from webcams illustration">
Petrasova A., Hipp J. A., Mitasova H. 2019.
<em><a href="https://www.mdpi.com/2220-9964/8/12/559">
Visualization of Pedestrian Density Dynamics Using Data Extracted from Public Webcams.</a></em>
In: ISPRS Int. J. Geo-Inf, 8(12).
</li>
<li>
<img src="./publications_pictures/rsimterrain.png" alt="r.sim.terrain illustration">
Harmon B., Mitasova H., Petrasova A., Petras V. 2019.
<em><a href="https://www.geosci-model-dev.net/12/2837/2019/gmd-12-2837-2019.pdf">
r.sim.terrain 1.0: a landscape evolution model with dynamic hydrology.</a></em>
In: Geoscientific Model Development, 12(7).
</li>
<li>
<img src="./publications_pictures/tangible_teaching.jpg" alt="tangible teaching illustration">
Millar G., Tabrizian P., Petrasova A., Petras V., Harmon B., Mitasova H., Meetenmeyer R. 2018.
<em><a href="https://www.researchgate.net/publication/322355724_Tangible_Landscape_A_Hands-on_Method_for_Teaching_Terrain_Analysis">
Tangible Landscape: A Hands-on Method for Teaching Terrain Analysis.</a></em>
ACM CHI 2018, Montréal, Canada. (<a href="https://gcmillar.github.io/presentations/chi2018#/">presentation</a>)
</li>
<li>
<img src="./publications_pictures/Harmon_difference.jpg" alt="Paper illustration">
Harmon B., Petrasova A., Petras V., Mitasova H., Meentemeyer R. 2017.
<em><a href="https://www.researchgate.net/publication/322661694_Tangible_topographic_modeling_for_landscape_architects">
Tangible topographic modeling for landscape architects.</a></em>
International Journal of Architectural Computing.
</li>
<li>
<img src="./publications_pictures/acadia.jpg" alt="ACADIA illustration">
<p>Tabrizian, P., Harmon, B., Petrasova, A., Petras, V., Mitasova, H., Meentemeyer, R. 2017.
<em><a href="https://www.researchgate.net/publication/318846696_Tangible_Immersion_for_Ecological_Design">
Tangible Immersion for Ecological Design</a></em>.
Association for Computer Aided Design in Architecture (ACADIA), at Cambridge, MA.
</li>
<li>
<img src="./publications_pictures/forest_fragmentation.png" alt="Forest fragmentation index illustration">
<p>Petras V., Newcomb D. J., Mitasova H, 2017.
<em><a href="https://opengeospatialdata.springeropen.com/articles/10.1186/s40965-017-0021-8">
Generalized 3D fragmentation index derived from lidar point clouds</a></em>.
In: Open Geospatial Data, Software and Standards.
</li>
<li>
<img src="./publications_pictures/fusion.png" alt="DEM fusion illustration">
<p>Petrasova, A., Mitasova, H., Petras, V., Jeziorska, J. 2017.
<em><a href="https://opengeospatialdata.springeropen.com/articles/10.1186/s40965-017-0019-2">
Fusion of high-resolution DEMs for water flow modeling</a></em>. In: Open Geospatial Data, Software and Standards.
</li>
<li>
<img src="./publications_pictures/TL_SOD.jpg" alt="Tangible geospatial modeling for SOD illustration">
<p>Tonini, F. Shoemaker, D., Petrasova, A., Harmon, B. A., Petras, V., Cobb, R. C., Mitasova, H., and Meentemeyer, R. K., 2017.
<em><a href="http://www.sciencedirect.com/science/article/pii/S1364815217300488">
Tangible geospatial modeling for collaborative solutions to invasive species management</a></em>. In: Environmental Modelling & Software.
</li>
<li>
<img src="./publications_pictures/immersive.png" alt="Immersive Tangible geospatial modeling illustration">
<p>Tabrizian, P., Petrasova, A., Harmon, B. A., Petras, V., Mitasova, H., and Meentemeyer, R. K., 2016.
<em><a href="https://www.researchgate.net/publication/309458110_Immersive_Tangible_Geospatial_Modeling">
Immersive Tangible Geospatial Modeling</a></em> (demo paper). Proceedings of ACM SIGSPATIAL 2016, Burlingame, CA, USA.
</li>
<li>
<img src="./publications_pictures/tangeoms_raleigh_woods.png" alt="paper_illustration">
<p>
Harmon, B. A., Petrasova, A., Petras, V., and Mitasova, H., 2016,
<em>
Computational Landscape Architecture:
Procedural, Tangible, and Open Landscapes.
</em>
In: J. R. Anderson & D. Ortega (Eds.),
Innovations in Landscape Architecture. Routledge.
</p>
</li>
<li>
<img src="./publications_pictures/jeziorska2016_isprs_overland.png" alt="paper_illustration">
<p>
Jeziorska, J; Mitasova, H; Petrasova, A; Petras, V; Divakaran, D; Zajkowski, T., 2016,
<a href="http://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/III-8/159/2016/isprs-annals-III-8-159-2016.pdf"><em>
Overland flow analysis using time series of sUAS-derived elevation models,
</em></a>
ISPRS Annals.
</p>
</li>
<li>
<img src="./publications_pictures/petras2015geomorphometry.png" alt="paper_illustration">
<p>
Petras, V., Mitasova, H., Petrasova, A., 2015.
<a href="http://geomorphometry.org/system/files/Petras2015geomorphometry.pdf"><em>
Mapping gradient fields of landform migration</em></a>.
In: Jaroslaw, J., Zwolinski, Z., Mitasova, H., Hengl, T.
Geomorphometry for Geosciences.
Bogucki Wydawnictwo Naukowe, Adam Mickiewicz University in Poznan
– Institute of Geoecology and Geoinformation.
Poznan, Poland.
ISBN: 978-83-7986-059-3
</p>
</li>
<li>
<img src="./publications_pictures/petras2015edu_isprs.png" alt="paper_illustration">
<p>
Petras, V., Petrasova, A., Harmon, B., Meentemeyer, R.K., Mitasova, H.
<a href="http://www.mdpi.com/2220-9964/4/2/942/pdf"><em>
Integrating Free and Open Source Solutions into Geospatial Science Education</em></a>.
ISPRS International Journal of Geo-Information. 2015, 4, 942-956.
<a href="http://dx.doi.org/10.3390/ijgi4020942">doi:10.3390/ijgi4020942</a>
</p>
</li>
<li>
<img src="./publications_pictures/Paris_mass2014.png" alt="paper_illustration">
<p>Paris, P., and Mitasova, H., 2014, <em>Barrier Island Dynamics using Mass Center Analysis-A new way to detect
and track large-scale change.</em> ISPRS Int. Journal of Geo-Information 3(1), p.49-65.</p>
</li>
<li>
<img src="./publications_pictures/tangeoms_raleigh_woods.png" alt="paper_illustration">
<p>Petrasova, A., Harmon, B., Petras, V., Mitasova, H., 2014.
<a href="publications/Petrasova_GIS-based_modeling.pdf">
<em>GIS-based environmental modeling with tangible interaction and dynamic visualization</em></a>.
In: Ames, D.P., Quinn, N.W.T., Rizzoli, A.E. (Eds.),
Proceedings of the 7th International Congress on Environmental Modelling and Software,
June 15-19, San Diego, California, USA. ISBN: 978-88-9035-744-2</p>
</li>
<li>
<img src="./publications_pictures/2013_Visualizations_of_Coastal_Terrain_Time-series.png" alt="paper_illustration">
<p>Tateosian L., Mitasova, H., Thakur S., Hardin E., Russ E., Bundell B. 2014,
<em>Visualizations of Coastal Terrain Time-series</em>, Information Visualization, 13(3), pp. 266-282. DOI: 10.1177/1473871613487086</p>
</li>
<li>
<img src="./publications_pictures/LyonsLandslides2013.png" alt="paper_illustration">
<p>Lyons, N.J., Mitasova, H., Wegmann K.W., 2013,
<em>Improving mass-wasting inventories of debris flow-dominated channels in non-glaciated terrains</em>,
Landslides, 11(3) pp. 385-397, DOI 10.1007/s10346-013-0398-0</p>
</li>
<li>
<img src="./publications_pictures/Helena_Erosion2013.png" alt="paper_illustration">
<p>Mitasova H., Hofierka, J., Harmon R.S., Barton M.C., Ullah, I., 2013, <em>GIS-based Soil Erosion Modeling</em>,
In: Shroder, J. (Editor in Chief), Bishop, M.P. (Ed.), Treatise on Geomorphology. Academic Press, San Diego, CA, vol. 3,
Remote Sensing and GIScience in Geomorphology, pp. 228–258.</p>
</li>
<li>
<img src="./publications_pictures/2013_Stream_Bank_Evolution.png" alt="paper_illustration">
<p>Starek, M.J., Mitasova H., Wegmann, K, Lyons, N., 2013,
<em>Space-Time Cube Representation of Stream Bank Evolution Mapped by Terrestrial Laser Scanning</em>,
IEEE Geoscience and Remote Sensing Letters PP(99), DOI 10.1109/LGRS.2013.2241730</p>
</li>
<li>
<img src="./publications_pictures/MitasJR.png" alt="paper_illustration">
<p>Mitas, O., Mitasova, H.; Brothers, G., Weaver, K., 2013, <em>Managing Dune Landscape Changes
at Jockey's Ridge State Park, North Carolina</em>, Tourism in Marine Environments 9(3-4), pp. 155-167.</p>
</li>
<li>
<img src="./publications_pictures/Paul_Linesinsand2013.png" alt="paper_illustration">
<p>Paris P.J., Hardin E., Mitasova H., Starek M.J., Kurum O.M., Overton M.F., 2013,
<em>Lines in the Sand: Geomorphic and Geospatial Characterization and Interpretation of Sandy Shorelines and Beaches</em>,
Geography Compass 7(5), p. 315-343.</p>
</li>
<li>
<img src="./publications_pictures/Thakur_summaryviz2013.png" alt="paper_illustration">
<p>Thakur S, Tateosian L., Mitasova, H and Hardin E. 2013,
<em>Summary Visualizations for Coastal Spatial-Temporal Dynamics</em>,
Int. Journal for Uncertainty Quantification 3(3), p. 241-253.</p>
</li>
<li>
<img src="./publications_pictures/MitasovaOverton_shoreline2012.png" alt="paper_illustration">
<p>Mitasova, H., Overton, M.F., Oliver, R., and Hardin, E., 2012,
<em>Ocean shoreline migration, In: 2012 Albemarle-Pamlico Ecosystem Assessment</em>,
Ed. D.E. Carpenter and L. Dubbs, APNEP, Raleigh NC, p. 138-143.</p>
</li>
<li>
<img src="./publications_pictures/ClinchRuss_Irebe2012.png" alt="paper_illustration">
<p>Clinch, A.S., Russ, E.,Oliver, R.C., Mitasova H., and Overton, M.F. 2012,
<a href="publications/clinch_shorepaper2012.pdf">
<em>Remote sensing estimation of Hurricane Irene soundside surge elevations on the North Carolina Outer Banks</em></a>,
Shore and Beach 80, p. 1-10.</p>
</li>
<li>
<img src="./publications_pictures/BartonUllah2012.png" alt="paper_illustration">
<p>Barton, M.C., Ullah, I.T., Bergin, S.M., Mitasova, H., Sarjoughian, H., 2012,
<a href="publications/Bartonetal_ecomodeling2012.pdf">
<em>Looking for the Future in the Past: Long-Term Change in Socioecological Systems</em></a>,
Ecological Modelling 241, p. 42-53. http://dx.doi.org/10.1016/j.ecolmodel.2012.02.010</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Hardin E., Kurum O., Mitasova H., Overton MF, 2012, <a href="https://doi.org/10.2112/JCOASTRES-D-11-00126.1">
<em>Least cost path extraction of topographic features for storm impact scale mapping</em></a>,
Journal of Coastal Research 28(4), p. 970-978.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitas, O., Mitasova, H., Brothers G., Weaver K., 2012,
<em>Managing change at dune landscape</em>, Proc. 7th Int. Coastal and Marine Tourism Congress,
Ed. D. Korteweg Maris, NRIT Media and NHTV Breda, Netherlands, pp. 61-74.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova H., Harmon R.S., Weaver K.J., Lyons, N.J. and Overton, M.F., 2012,
<a href="publications/Geomorph_Visu2011.pdf"><em>Scientific visualization of landscapes and landforms</em></a>,
Geomorphology 137(1), p. 122-137. (doi: 10.1016/j.geomorph.2010.09.033)</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Alvarez J., Mitasova H., Allen H.L., 2011, <a href="publications/ChileSolar2011.pdf">
<em>Estimating monthly solar radiation in South-Central Chile</em></a>, Chilean Journal of Agricultural Research 71(4), 601-609.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Starek, M.J., Mitasova H., Hardin, E., Overton, M.F., Harmon, R.S., 2011,
<em>Modeling and analysis of landscape evolution using airborne, terrestrial, and laboratory laser scanning</em>,
Geosphere, 7(6), p. 1340–1356.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova H., Hardin E., Starek, M.J., Harmon R.S,. and Overton, M.F, 2011,
<a href="publications/Mitasova2011geomorphometry.pdf"><em>Landscape dynamics from LiDAR data time series</em></a>,
In: Geomorphometry 2011, Hengl, T., Evans, I.S., Wilson, J.P., Gould, M. (eds.), Redlands, CA, p. 3-6.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Jolma, A., Ames, D.P., Horning, N., Mitasova, H., Neteler, M., Racicot, A. and Sutton, T. 2011,
<em>Environmental Modeling and Management using Free and Open Source Geospatial Tools.</em>
In: Kresse, W. and Danko D.M. (eds.) Handbook of Geographic Information, Springer.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Metz M., Mitasova H., and Harmon R.S., 2011,
<em>Efficient extraction of drainage networks from massive, radar-based elevation models with least cost path search</em>,
Hydrology and Earth System Sciences, 15, 667-678, 2011 doi:10.5194/hess-15-667-2011r</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Tateosian, L.G., Mitasova, H., Fogleman, B., Harmon, B., Weaver K., and Harmon R.S., 2010,
<em>TanGeoMS: Tangible geospatial modeling system</em>,
IEEE Transactions on Visualization and Computer Graphics (TVCG), 16(6), p. 1605-1612.
doi:http://doi.ieeecomputersociety.org/10.1109/TVCG.2010.202
[<a href="https://vimeo.com/76104430">video</a>]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova H., Hardin E., Kurum, M.O., Overton M.F., 2010,
<em>Geospatial analysis of vulnerable beach-foredune systems from decadal time series of lidar data</em>,
Journal of Costal Conservation, Management and Planning, 14(3), p.161-172. DOI 10.1007/s11852-010-0088-1 [pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Barton, M.C., Ullah, I., and Mitasova, H., 2009,
<em>Computational modeling and socioecological dynamics in the neolythic of SW Asia</em>,
American Antiquity, 75(2), pp. 364-386.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Harmon, R.S., Lyons, W.B., Long, D.T., Ogden, F.L., Mitasova, H., Gardner, C.B., Kathleen A. Welch, and Rebecca A. Witherow, 2009,
<em>Geochemistry of Four Tropical Montane Watersheds</em>, Central Panama, Applied Geochemistry 24, p. 624-640.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Overton, M., Recalde, J.J., Bernstein, D., and Freeman C., 2009,
<em>Raster-based Analysis of Coastal Terrain Dynamics from Multitemporal Lidar Data</em>,
Journal of Coastal Research 25(2), p. 507-514, DOI: 10.2112/07-0976.1.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Jolma, A., Ames, D.P., Horning, N., Mitasova, H., Neteler, M., Racicot, A. and Sutton, T. 2008,
<em>Free and open source geospatial tools for environmental modelling and management</em>.
In: Jakeman, A.J., Voinov, A.A., Rizzoli, A.E. and Chen, S.H. (eds.) Environmental Modelling,
Software and Decision Support. State of the Art and New Perspectives.
Developments in Integrated Environmental Assessment Vol. 3: 163-180.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Neteler, M. and Mitasova, H., 2008, <em>Open Source GIS: A GRASS GIS Approach</em>.
Third Edition. The International Series in Engineering and Computer Science: Volume 773. Springer New York Inc, p. 406.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Hofierka, J., Mitasova, H., Neteler, M., 2008. <em>Geomorphometry in GRASS GIS</em>.
In: Hengl, T. and Reuter, H.I. (Eds), Geomorphometry: Geomorphometry: Concepts, Software, Applications.
Developments in Soil Science, vol. 33, Elsevier, 387-410 pp.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Mitas, L., Ratti, C., Ishii, H., Alonso J., and Harmon, R.S., 2006,
<em>Real-time Human Interaction With Landscape Models Using a Tangible Geospatial Modeling Environment</em>,
IEEE Computer Graphics & Applications, Special Issue - GeoVisualization, 26(4), pp 55-63.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Overton, M., Harmon, R.S., 2005,
<em>Geospatial analysis of a coastal sand dune field evolution: Jockey's Ridge, North Carolina</em>,
Geomorphology 72, pp 204-221.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>H.Mitasova, H., Mitas, L. and Harmon, R.S., 2005,
<em>Simultaneous spline interpolation and topographic analysis for lidar elevation data: methods for Open source GIS</em>,
IEEE GRSL 2(4), pp. 375- 379.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Markus Neteler, Helena Mitasova, 2004, <em>Open Source GIS: A GRASS GIS Approach</em>, Second Edition,
Kluwer International Series in Engineering and Computer Science, 773,
Kluwer Academic Press, Boston, Dordrecht, 424 pages. Hardbound and eBook.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H and Neteler, M, 2004, <em>GRASS as Open Source - Free Software GIS: accomplishments and perspectives.</em>
Transactions in GIS 8(2), 145-154[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Drake, T.G., Harmon, R.S., Bernstein, D. 2004.
<em>Quantifying rapid changes in coastal topography using modern mapping techniques and GIS</em>,
Environmental and Engineering Geoscience, 10(1), 1-11.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H. and Hofierka, J., 2003, <em>Impact of new mapping technologies on communication of geospatial information.</em>
Kartograficke listy 11, pp. 53-61.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Markus Neteler, Helena Mitasova, 2002, <em>Open Source GIS: A GRASS GIS Approach</em>,
Kluwer International Series in Engineering and Computer Science, 689, Kluwer Academic Press, Boston, Dordrecht, 464 pages.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H.,Mitas, L., Brown, W.M., 2002, <em>Multiscale simulation of land use impact on soil erosion and deposition patterns.</em>
In: D.E. Stott, R.H. Mohtar and G.C. Steinhart (eds) Sustaining the Global Farm.
Selected papers from the 10th ISCO Meeting held May 24-29, 1999 at Purdue University and the USDA-ARS NSERL, 1163-1169.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitas, L., Mitasova, H., 2002,
<em>Multiscale Green's function Monte Carlo approach to erosion modelling and its application to land use optimization</em>.
In: W. Summer and D.E. Walling (eds), Modelling erosion, sediment transport and sediment yield.
International Hydrological Programme VI, UNESCO, Paris, 69-87.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Hofierka J., Parajka J., Mitasova H., Mitas L., 2002, <em>Multivariate Interpolation of Precipitation Using Regularized Spline with Tension.</em>
Transactions in GIS, Vol 6(2), 135-150.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Mitas, L., 2002, <em>Modeling Physical Systems</em>,
In: Geographic Information Systems and Environmental Modeling, Parks B., Crane M. and Clarke, K eds.,
Prentice Hall, 189-210. draft version</p></li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Mitas, L., 2001, <em>Multiscale soil erosion simulations for land use management</em>,
In: Landscape erosion and landscape evolution modeling, Harmon R. and Doe W. eds., Kluwer Academic/Plenum Publishers, pp. 321-347.</p>
</li>
</ul>
<h3 id="proceedings">Papers in Conference Proceedings and Reports<!-- and other Publications--></h3>
<ul class="image-list long-list">
<li>
<img src="./publications_pictures/ObenourWRRI_2022.png" alt="watersheds">
<p>Obenour, D.R. and Mitasova, H., 2022.
<a href="https://repository.lib.ncsu.edu/handle/1840.20/39528"><em>
Assessing Controls on Nutrient Loading at the Watershed Scale through Data-Driven Modeling.
</em></a>
NCWRRI report, UNC-WRRI;496;WRRI Project;20-07-W.
</p>
</li>
<li>
<img src="./publications_pictures/Mitas_Overujjsell2022.png" alt="tourist_differences">
<p>Mitas, O.,Verhoeven M., Verstraten K., de Graaf L., Badal R., Mitasova H., Klijs J., 2022.
<a href="https://www.celth.nl/sites/default/files/2022-04/Q53KOi-Report_Overijssel_final%20EN.pdf"><em>
Optimal tourist experience and density in Overijssel via social interaction in the conversational
recommender system, Travel With Zoey.
</em></a>
Breda University of Applied Sciences, pp.29.
</p>
</li>
<li>
<img src="./publications_pictures/g_citation_Loewe.png" alt="paper_illustration">
<p>Loewe P., Petras V., Neteler M., Mitasova H. 2019.
<a href="https://www.preprints.org/manuscript/201904.0008/v1"><em>
Enabling Fine-Grained Scientific Citation for GRASS GIS Software Modules.
</em></a>
In: Preprints.
</p>
</li>
<li>
<img src="./publications_pictures/tateosian2017_utility.png" alt="paper_illustration">
<p>Tateosian, L., Amindarbari, R., Healey, C., Kozik, P., and Enns, J.,
<a href="http://scholarworks.umass.edu/cgi/viewcontent.cgi?article=1023&context=foss4g"><em>
The Utility of Beautiful Visualizations,
</em></a>
Volume 17 (2017) FOSS4G 2017 Full Conference Proceedings, Boston, USA.
</p>
</li>
<li>
<img src="./publications_pictures/petrasova2016_isprs_urban.png" alt="paper_illustration">
<p>
Petrasova, A., Petras, V., Van Berkel, D., Harmon, B. A., Mitasova, H., and Meentemeyer, R. K., 2016.
<a href="http://www.int-arch-photogramm-remote-sens-spatial-inf-sci.net/XLI-B7/953/2016/isprs-archives-XLI-B7-953-2016.pdf"><em>
Open source approach to urban growth simulation.
</em></a>
Int. Arch. Photogramm. Remote Sens. Spatial Inf. Sci., XLI-B7, 953-959. DOI: 10.5194/isprsarchives-XLI-B7-953-2016
</p>
</li>
<li>
<img src="./publications_pictures/petras2016_isprs_processing.png" alt="paper_illustration">
<p>
Petras, V; Petrasova, A; Jeziorska, J; Mitasova, H, 2016,
<a href="http://www.int-arch-photogramm-remote-sens-spatial-inf-sci.net/XLI-B7/945/2016/isprs-archives-XLI-B7-945-2016.pdf"><em>
Processing UAV and lidar point clouds in GRASS GIS,
</em></a>
Int. Arch. Photogramm. Remote Sens. Spatial Inf. Sci. DOI: 10.5194/isprsarchives-XLI-B7-945-2016
</p>
</li>
<li>
<img src="./publications_pictures/harmon2016_isprs.png" alt="paper_illustration">
<p>
Harmon BA, Petrasova A, Petras V, Mitasova H, Meentemeyer RK, 2016,
<a href="http://www.int-arch-photogramm-remote-sens-spatial-inf-sci.net/XLI-B2/647/2016/isprs-archives-XLI-B2-647-2016.pdf"><em>
Tangible Landscape: Cognitively grasping the flow of water
</em></a>
Int. Arch. Photogramm. Remote Sens. Spatial Inf. Sci. DOI: 10.5194/isprsarchives-XLI-B2-647-2016
</p>
</li>
<li>
<img src="./publications_pictures/petrasova2015_futures.png" alt="paper_illustration">
<p>
Petrasova, A., Petras, V., Shoemaker, D. A., Dorning, M. A., and Meentemeyer, R. K., 2015,
<a href="http://www4.ncsu.edu/~akratoc/publications/FUTURES_in_GRASS_FOSS4G2015.pdf"><em>
The integration of land change modeling framework FUTURES into GRASS GIS 7,
</em></a>
Geomatics Workbooks n° 12 - FOSS4G Europe: Como 2015.
</p>
</li>
<li>
<img src="./publications_pictures/MitasovaGIM2013b.png" alt="paper_illustration">
<p>Mitasova, H., Schweik, C.M, 2013, <em>Building a Global Network: Open Source Geospatial Education and Research</em>,
GIM International, August 2013, p. 25-29.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Brovelli, M, Mitasova, H, Neteler, M, Raghavan, V, 2012,
<em>Free and open source desktop and Web GIS solutions</em>, Applied Geomatics 4(2), 65-66</p>
</li>
<li>
<img src="./publications_pictures/hardin2012_vulnerability.png" alt="paper_illustration">
<p>Hardin, E., Kurum, O., Mitasova, H., Overton, M.F., 2012,
<em>GIS-based approach to analysis of storm vulnerability change at Pea Island, NC, new breach location</em>,
Proceedings of the 33rd International Conference on Coastal Engineering (ICCE 2012), Santander, Spain.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Kurum, O., Overton, M.F., Mitasova, H., 2012,
<em>The influence of antecedent topographic conditions and geologic layers on post-storm coastal morphology</em>,
Proceedings of the 33rd International Conference on Coastal Engineering (ICCE 2012), Santander, Spain.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Starek, M.J., Mitasova H., Harmon, R.S., 2011,
<em>Fort Fisher, NC Past and Present: A Geospatial Analysis using LiDAR and GIS</em>,
Proc. 9th International Military Geosciences Conference.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Hardin, E., Mitasova, H.., Overton, M.F., 2011,
<em>Quantification and characterization of terrain evolution on the Outer banks, NC,</em>
Proc. Coastal Sediments 2011, Miami, p.739-753.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Kurum, O., Mitasova, H., Overton, M.F., 2011,
<em>Geospatial techniques to derive short term dynamics of coastal morphology</em>,
Proc. Coastal Sediments 2011, Miami.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Kurum O., Kumar, M., Overton M.F., Mitasova H., Edge W., 2010,
<em>Effects of coastal landform change on storm surge along the Hatteras island breach area</em>,
32nd International Conference on Coastal Engineering (ICCE 2010) Shanghai, China.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Metz M., Mitasova H., and Harmon R.S., 2009,
<em>Fast stream extraction from large, radar-based elevation models with variable level of detail</em>,
In: Geomorphometry 2009 Conference Proceedings, Edited by R. Purves, S. Gruber, R. Straumann and T. Hengl. University of Zurich, Zurich, 2009.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Hardin, E., Overton, M., and Harmon, R.S., 2009,
<em>New spatial measures of terrain dynamics derived from time series of lidar data</em>,
Proc. 17th Int. Conf. Geoinformatics, Fairfax, VA. [pdf]
DOI10.1109/GEOINFORMATICS.2009.5293539 animation illustrating core and envelope surfaces</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Overton, M., Mitasova H., Recalde, J.J., 2008,
<em>Geospatial time series analysis of volumetric change</em>,
Proceedings of ICCE 2008 meeting, Hamburg, Germany. [pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Neteler, M., Mitas, L. and Harmon, R.S., 2007,
<em>Environmental Data Management, Analysis and Modeling in GRASS6</em>.
Proc. ISESS Prague 2007 [pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Jolma, A., D.P. Ames, N. Horning, H. Mitasova, M. Neteler, A. Racicot, and T. Sutton, 2007,
<em>Environmental Modeling and Management using Free and Open Source Geospatial Tools</em>,
In: Encyclopedia of GIS, Springer, in press.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., 2007, <em>Interpolation</em>,
In: Encyclopedia of Geographic Information Science, edited by Kemp, K., Sage Publications Inc., in press.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Overton, M., Mitasova H., Recalde, J.J. and Vanderbeke, N., 2006,
<em>Morphological evolution of a shoreline on a decadal time scale</em>, Proceedings of ICCE 2006 meeting.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Barton, M., Hessam Sarjoughian, Falconer, S., Mitasova, H., Arrowsmith, R. and Fall, P., 2006,
<em>Modeling Long-Term Landscape Dynamics and the Emergence of Intensification</em>,
Proc. Society for American Archaeology 70th Annual Meeting.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Colson, T.P., Gregory, J.D., Mitasova, H. , Nelson S.A.C., 2006,
<em>Comparison of stream extraction models using lidar DEMs</em>,
Proc. GIS and Water Resources IV, AWRA, Houston, TX, May, 2006.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Bernstein, D., Harmon, R.S., Hofierka, J., McLaughlin, R., 2005,
<em>Monitoring and modeling natural and anthropogenic terrain change: Spatial analysis and simulations of impact on landscape processes</em>.
Proceedings of GISPlanet, Estoril, Portugal, May-June 2005.[pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Overton, M.F., Bernstein, D., Harmon, R.S., 2004,
<em>Assessing coastal hazards using recent 3d evolution of beach geomorphology based on lidar and rtk-gps surveys</em>.
Proceedings of the International Conference for Coastal Engineering, Lisbon, Portugal, September 2004.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Thaxton, C., Hofierka, J., McLaughlin, R., Moore, A., Mitas L., 2005,
<em>Path sampling method for modeling overland water flow, sediment transport and short term terrain evolution in Open Source GIS</em>.
In: C.T. Miller, M.W. Farthing, V.G. Gray, G.F. Pinder eds., Proceedings of the XVth International Conference
on Computational Methods in Water Resources (CMWR XV), June 13-17 2004, Chapel Hill, NC, USA, Elsevier, pp. 1479-1490. [pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Kinner D., Mitasova, H. Harmon, R. Toma, L., Stallard R., 2005,
<em>GIS-based Stream Network Analysis for The Chagres River Basin, Republic of Panama</em>.
In: The Rio Chagres: A Multidisciplinary Profile of a Tropical Watershed, R. Harmon (Ed.), Springer/Kluwer, p.83-95. [pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Freeman, Ch., Bernstein, D.J., and Mitasova, H., 2004,
<em>Rapid response 3D survey techniques for seamless topo/bathy modeling: 2003 Hatteras Breach, North Carolina</em>,
Shore and Beach, 72(2), p. 25-30.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Thaxton, C., Mitasova, H., Mitas L., and McLaughlin, R., 2004,
<em>Simulations of distributed watershed erosion, deposition and terrain evolution using a path sampling Monte Carlo method</em>.
Proceeding for the ASAE/CSAE Annual International Meeting, Ottawa, Ontario, Canada, CDROM.</p>
</li>
<li>
<img src="./publications_pictures/MitasovaGIM2013.png" alt="paper_illustration">
<p>H. Mitasova and M. Neteler. <em>Free General-purpose GIS. A Geographic Resources Analysis Support System</em>.
GIM International, 17(11), 2003, p. 40-43., japanese translation in The Journal of Survey 54(2) February 2004, p. 34-39</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Bernstein, D., Drake, T.G., Harmon, R., and Miller, C.H., 2003,
<em>Spatio-temporal analysis of beach morphology using LIDAR, RTK-GPS and Open source GRASS GIS</em>,
Proceedings of the International Conference on Coastal Sediments 2003.
CD-ROM Published by World Scientific Publishing Corp. and East Meets West Productions, Corpus Christi, Texas, USA. ISBN 981-238-422-7 [pdf]</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Bernstein, D.J., Jun-Yong Park, Forte, M.F., Gayes, P.T., Freeman, Ch., and Mitasova, H., 2003,
<em>Spatial Survey Design Analysis for 3D Mapping of Beach and Shoreface Morphology</em>.
Proceedings of the International Conference on Coastal Sediments 2003.
CD-ROM Published by World Scientific Publishing Corp. and East Meets West Productions, Corpus Christi, Texas, USA. ISBN 981-238-422-7</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Drake, T.G., Harmon, R.S. and Hofierka, J.
<em>Spatio-temporal monitoring of evolving topography using LIDAR, RTKS and sonar data</em>.
Proceedings of the "Open Source Free Software GIS - GRASS users conference 2002",
Ciolli M., Zatelli P. Editors, Trento, Italy, 11-13 September 2002.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Mitasova, H., Hofierka, J. and Mitas, L.,
<em>GRASS and modeling landscape processes using duality between particles and fields</em>.
Proceedings of the "Open Source Free Software GIS - GRASS users conference 2002",
Ciolli M., Zatelli P. Editors, Trento, Italy, 11-13 September 2002.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="paper_illustration">
<p>Neteler, M. and Mitasova, H., <em>Freedom in geoinformation science and software development: A GRASS GIS contribution</em>.
Proceedings of the "Open Source Free Software GIS - GRASS users conference 2002",
Ciolli M., Zatelli P. Editors, Trento, Italy, 11-13 September 2002.</p>
</li>
</ul>
<h3 id="theses">Theses and Dissertations</h3>
<ul class="image-list">
<li>
<img src="./publications_pictures/openplains2023.png" alt="thesis illustration">
<p>White, C. T., 2023, <a href="https://repository.lib.ncsu.edu/handle/1840.20/40848">
<em>Facilitating Civic Engagement in Rapidly Urbanizing Regions through Geospatial Participatory Modeling.
</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/Montgomery_thesis_2021.png" alt="thesis illustration">
<p>Montgomery, K. P., 2021, <a href="https://www.lib.ncsu.edu/resolver/1840.20/39096">
<em>Analytical Approaches for Plant Pest Management Across the Biosecurity Continuum.
</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/payam_thesis.png" alt="thesis illustration">
<p>Payam, T., 2018, <a href="http://www.lib.ncsu.edu/resolver/1840.20/35668">
<em>Integrating Geospatial Computation, Virtual Reality and Tangible Interaction
to Improve Landscape Design and Research.</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/vashek_thesis.png" alt="thesis illustration">
<p>Petras, V., 2018, <a href="https://repository.lib.ncsu.edu/handle/1840.20/35242">
<em>Geospatial Analytics for Point Clouds in an Open Science Framework.</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/coastal_game.png" alt="thesis illustration">
<p>Petrasova, A., 2018, <a href="http://www.lib.ncsu.edu/resolver/1840.20/34996">
<em>Tangible Geospatial Modeling.</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/Harmon_dissertation.jpg" alt="thesis illustration">
<p>Harmon, B., 2017, <a href="http://www.lib.ncsu.edu/resolver/1840.20/33502">
<em>Tangible Landscape.</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/Paris_mass2014.png" alt="thesis illustration">
<p>Paris, P., 2014, <a href="http://www.lib.ncsu.edu/resolver/1840.16/9530">
<em>Geomorphic Contrasts between Natural and Human-Altered Barrier Islands:
Outer Banks, North Carolina.</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/EmilyThesis.png" alt="thesis illustration">
<p>Russ, E., 2013, <a href="http://www.lib.ncsu.edu/resolver/1840.16/9031">
<em>Geospatial Techniques for Analyzing Storm Impacts and Visualizing
Coastal Topographic Change on the Outer Banks.</em></a> Master's thesis.</p>
</li>
<li>
<img src="./publications_pictures/HardinThesis.png" alt="thesis illustration">
<p>Hardin, E., 2013, <a href="http://www.lib.ncsu.edu/resolver/1840.16/8457">
<em>A Transient Landscape: Geospatial Analysis and Numerical
Modeling of Coastal Geomorphology in the Outer Banks, North Carolina.</em></a> Doctoral dissertation.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="thesis illustration">
<p>Lyons, N., 2011, <a href="http://www.lib.ncsu.edu/resolver/1840.16/7285">
<em>Landslide Inventories and Grain Size Trends in Debris Flow-Dominated Channels.</em></a> Master's thesis.</p>
</li>
<li>
<img src="./publications_pictures/blank.png" alt="thesis illustration">
<p>Weaver, K., 2011, <a href="http://www.lib.ncsu.edu/resolver/1840.16/7381">
<em>Impacts of Vegetation and Development on the Morphology of Coastal Sand Dunes
Using Modern Geospatial Techniques: Jockey's Ridge Case Study.</em></a> Master's thesis.</p>
</li>
</ul>
<h3 id="presentations">Presentations</h3>
<ul class="image-list long-list">
<li>
<p>Haedrich C.
<img src="./publications_pictures/foss4g22_haedrich.png" alt="GRASS talk">
<em><a href="https://github.com/chaedri/grass-jupyter-talk-foss4g-2022">
Using GRASS GIS in Jupyter Notebooks: An Introduction to grass.jupyter</a></em>.
FOSS4G 2022.
</p>
</li>
<li>
<p>Petrasova A., Petras V.
<img src="./publications_pictures/foss4g22_parallel.png" alt="GRASS talk">
<em><a href="https://petrasovaa.github.io/FUTURES-CONUS-talk/foss4g2022.html">
Tips for parallelization in GRASS GIS in the context of land change modeling</a></em>.
FOSS4G 2022.
</p>
</li>
<li>
<p>Petras V.
<img src="./publications_pictures/foss4g22_code_checks.jpg" alt="GRASS talk">
<em><a href="https://wenzeslaus.github.io/code-quality-measures-foss4g-2022">
Take-Home Messages from Adding Code Quality Measures to GRASS GIS</a></em>.
FOSS4G 2022.
</p>
</li>
<li>
<p>Petras V.
<img src="./publications_pictures/grass_DOI2022.png" alt="GRASS talk">
<em><a href="https://wenzeslaus.github.io/grass-gis-talks/ncgis2021.html">
Convenience and Speed with GRASS GIS 8.0 and 8</a></em>.
DOI Open Source Geospatial Committee Meeting, 2022.
</p>
</li>
<li>
<p>Mitasova H. and the Geoforall lab team.
<img src="./publications_pictures/Changingtopo.jpg" alt="OpenGeotalk">
<em><a href="https://av.tib.eu/media/59786">
Spatio-temporal modeling of changing topographies: from point clouds to tangible interfaces
</a>
</em> and <a href="https://docs.google.com/presentation/d/1Hp7qTOOLGbNCqBY0-dFoVe4or6A-c60iOE0-QRQXQmo/edit#slide=id.p1">
slides.</a> Keynote at Open Data Science Workshop, 13-16. June 2022, Prague, CZ.
</p>
</li>
<li>
<p>Mitasova H. and the Geoforall lab team.
<img src="./publications_pictures/Coastaltalk2022.png" alt="NC coast">
<em><a href="https://www.youtube.com/watch?v=9e-eMg4nUiQ">
Dynamic coastal topography shaped by nature and humans (recording
</a>
</em>.
and
<a href="https://docs.google.com/presentation/d/1FCV6jJUD_pFkAMR_nx13z4b0A4FhJ0zokZ8LfXPGaxw/edit?usp=sharing">
slides)</a>
Seminar series "What is the future of Coastal Resilience and Sustainability Research and Communications?",
NCSU Coastal Resilience and Sustainability Initiative, 2022.
</p>
</li>
<li>
<p>Petras V., GRASS Development Team.
<img src="./publications_pictures/grass_splash.png" alt="GRASS talk">
<em><a href="https://wenzeslaus.github.io/grass-gis-talks/foss4g2021.html">
State of GRASS GIS: The Dawn of a New Era</a></em>. FOSS4G 2021.
(<a href="https://www.youtube.com/watch?v=wk3X_Vzp8zg&list=PLqa06jy1NEM3PI3eQGemUgEmKS5oHAw7B&index=19">see presentation recording</a>)
</p>
</li>
<li>
<p>Petrasova A.
<img src="./publications_pictures/FUTURES_DOI2021.png" alt="FUTURES talk">
<em><a href="https://petrasovaa.github.io/FUTURES-CONUS-talk/doi2021_FUTURES.html">
FUTURES: Urban Growth Modeling at Scale</a></em>.
DOI Open Source Geospatial Committee Meeting, 2021.
</p>
</li>
<li>
<p>Petras V., Petrasova A.
<img src="./publications_pictures/grass_NCGIS2021.png" alt="GRASS talk">
<em><a href="https://wenzeslaus.github.io/grass-gis-talks/ncgis2021.html">
New Major Release of GRASS GIS</a></em>. NCGIS 2021.
</p>
</li>
<li>
<p>Reckling S., Mitasova H., and Team 7 in PFAST network
<img src="./publications_pictures/PFASmapstalk2020..png" alt="PFAS maps">
<em><a href="https://docs.google.com/presentation/d/12yCSpPnQzdOU08QoQ1qqHNGcXCwyC23uSpiPEw1d_6Y/edit?usp=sharing">
Data Hub Visual Style and Symbology for Static PFAS Maps</a></em>.
NCSU PFAS group seminar, June 2020. Follow-up talk
<em><a href="https://docs.google.com/presentation/d/1O49RzXmhETCdEiQXSAH6blFSlvMXMSfO/edit#slide=id.p1">
Mapping PFAS in North Carolina Public Drinking Water Sources </a></em>, Sept. 2020.
</p>
</li>
<li>
<p>Petras V., White C., Newcomb, D.
<img src="./publications_pictures/grass_NCGIS2019_2.png" alt="GRASS talk">
<em><a href="https://wenzeslaus.github.io/grass-gis-talks/ncgis2019_whats_new.html">
GRASS GIS: Getting Started</a></em>. NCGIS 2019 Winston-Salem.
</p>
</li>
<li>
<p>Petras V., White C., Newcomb, D.
<img src="./publications_pictures/grass_NCGIS2019.png" alt="GRASS splash screen">
<em><a href="https://wenzeslaus.github.io/grass-gis-talks/ncgis2019_whats_new.html">
GRASS GIS: What's New</a></em>. NCGIS 2019 Winston-Salem.
</p>
</li>
<li>
<p>Millar, G. C., Money, E. S., Bunds, K. S., Mitasova, H., AGU 2018.
<img src="./publications_pictures/GAPS.png" alt="GAPS presentation">
<em><a href="https://gcmillar.github.io/presentations/agu2018#/">