GIS4PP'20

Exercises

Table of Contents

Exercise 1: Introduction to QGIS

Deadline

Objectives

Instructions

Setup

  1. If you have not done so already, download and install QGIS, Version 3.4, on your laptop.
  2. Download the exercise data.

Analysis

Using QGIS, answer the following questions (posting your answers on ilearn)

  1. How many features are in this data set?
  2. How many fields are in this data set?
  3. What unit is area measured in this data set?
  4. How many acres does the largest feature have?
  5. What tract has the largest are in acres?
  6. What is the maximum population of a tract in this database?
  7. What county has the tract with the largest Hispanic population?

Creating a new layer

  1. Create a new layer that only includes the tracts from Riverside County
  2. Save your project
  3. Submit a screenshot that shows the layer panel and the canvas with the new Riverside layer on top of the original layer

Exercise 2: Working with Attributes

Deadline

Objectives

Instructions

Setup

Analysis

Joins and Attribute Creation

  1. Using a table join, attach a new attribute with the name CountyName that uses the COUNTY as the field to match on.
  2. Create an attribute named pctHISP that reports the percentage of the tract’s total population that is Hispanic.
  3. Create an attribute named pctNHBLK that reports the percentage of the tract’s total population that is non-Hispanic Black.
  4. Create an attribute named majHISP that takes a value of 1 if the pctHISP is greater than 0.50.
  5. Create an attribute named majNHBLK that takes a value of 1 if the pctNHBLK is greater than 0.50.

Layer creation

  1. Create a layer that contains the tracts where majHISP takes a value of 1. Name this layer majHISP
  2. Create a layer that contains the tracts where majNHBLK takes a value of 1. Name this layer majNHBLK
  3. Upload a screen shot that shows the map canvas with the two new layers on top of the original project layer.
  4. Comment on the spatial distribution displayed in the majHISP and majNHBLK layers.

Virtual Layers

The next steps require building different virtual layers to generate table reports:

  1. Report the number of tracts by county.
  2. Report the number of majority Hispanic tracts by county
  3. Report the percentage of majority Hispanic tracts by county
  4. Report the percentage of the total county population that is Hispanic by county.
  5. Compare the previous percentage to the average of the Hispanic population by tract in each county.
  6. Comment on the last report. Why do the two views of percentage Hispanic differ?

Exercise 3: Choropleth Maps

Deadline

Objectives

Instructions

Readings

Read the chapter on Laying out the Map

You will be handing in a single pdf that combines maps and text supporting your analysis below. All maps must be produced using the Layout manager and exported to pdf prior to compiling your single document.

Setup

Analysis

Read through the entire set of tasks below before carrying out any analysis.

Data Creation

  1. Using the SCAG layer create (or recreate) the following attributes:
    • pctHISP = 100 X HISP/TOTPOP
    • majHISP = 1 if pctHISP > 0.5, 0 otherwise
  2. Create two new layers: one that contains the tracts for the inland counties, and a second for the coastal Counties.
  3. Provide a step by step description of how you used QGIS to create these new layers.

Choropleth Maps

  1. For each of the two subregions (coastal, inland) create a choropleth map for the pctHISP variable.
  2. For each of the two subregions (coastal, inland) create a choropleth map for the majHISP variable.
  3. For the entire SCAG region, make a map for pctHISP
  4. Explain your design choices regarding:
    • classification scheme and number of classes
    • color scheme

Comparison of Coastal and Inland Distributions

Using your maps from the previous steps, compare the pctHISP distributions between the inland and the coastal subregions. Be sure to comment on both the statistical distributions as well as the spatial distributions, and explain how the design of your maps supports your analysis.

Exercise 4: Disparities in Exposure to Freeway Pollution

Deadline

Readings

Read the description of the LA Times Freeway Pollution Project

You will be handing in a single pdf that combines maps and text supporting your analysis below. All maps must be produced using the Layout manager and exported to pdf prior to compiling your single document.

Setup

Analysis

Read through the entire set of tasks below before carrying out any analysis.

In all the analysis that follows, provide screenshots and a description of your workflow with enough detail that a colleague (or your instructor) could replicate your results.

Buffering Part I

  1. Construct a 500 foot buffer around the state highway system.
  2. Identify all the tracts in the SCAG region that intersect this buffer
  3. Estimate the percentages of the following groups who live in tracts that intersect the buffer
    • TOTPOP
    • HISP
    • NHWHT
    • NHBLK
    • NHASIAN

Buffering Part II

Using the buffer from part I

  1. Estimate the percentage of the population living within 500 feet of the freeway system for the following groups:
    • TOTPOP
    • HISP
    • NHWHT
    • NHBLK
    • NHASIAN

Discussion

  1. Provide an interpretation of your data analysis. Does your analysis support a finding of disparities in exposure to freeway pollution? Why or why not?
  2. How do the results from the two approaches (Part I and Part II) differ. Why is this?
  3. What are the qualifications you need to make regarding your analysis?
  4. How might this study be extended in future work for a more refined estimation of population exposure to freeway pollution?