Malawi Climate Vulnerability Reproduction
Oct-05
: In this lesson, we will reproduce a climate vulnerability model of Malawi.
In this lab we will:
- complete a reproduction of Malcomb et al (2014)
- compare reproduction results with original results
- evaluate and critique sources of error and uncertainty in the original study,
particularly with regards to reproducibility
The learning goals are to:
- gain experience executing spatial research in R / RStudio
- gain practice reading research publications to understand their methodologies
- critically review research for error, uncertainty, and reproducibility
Procedure
- Fork the RPr-Malcomb-2014 repository to your own GitHub account
- Clone the repository to your local computer
- Review the data sources and metadata for the reproduction study.
- Review the pre-analysis plan for the reproduction study.
- Study and execute the reproduction study code using RStudio. Take notes for yourself comparing the code to your own workflow for the research paper, identifying similarities and differences between the two.
Georeferencing Maps
In the spring 2021 semester, we learned how to digitize results from the map figures in the Malcomb et al publication for comparison with our attempted exact reproduction results.
This is no longer a course requirement, but it does contain useful skills for reference.
Here is a video playlist of the procedure.
The procedure involved:
- Save
.jpg
images of maps from the publication. This can be achieved by saving images from the PDF, screen capture, or saving supplementary data files from the online publication.
- Load reference data in QGIS, and try to reproject the reference data to the same map projection as the published maps.
Georeference
the map images with the georeferencer plugin. This procedure involves digitizing a set of control points matching the map image to a spatial reference system, warps the map image to match a spatial reference system, applies spatial reference metadata to the image.
- Load or create a set of vector polygons equivalent to the spatial units in the map image
- If necessary, apply a negative buffer distance to avoid confusion from the boundary colors
- Summarize the color(s) in the map image by spatial units using
Zonal Statistics
- Classify the colors using
CASE
statements in Field Calculator
.
- Manually correct any misclassified values
Main Page