Midwest-bound A Site Suitability Analysis of South Bend, Indiana for Relocation by Joi Misenti j.misenti@berkeley.edu Geog 375--Spring 2016.

Slides:



Advertisements
Similar presentations
POpulation and PLAces research group Creating Shape files using ArcGIS Susan Lomax.
Advertisements

GIS Lecture 8 Spatial Data Processing.
NSF DUE ; Module 4.3. NSF DUE ; GeoTEd Partners Module name and number.
GIS Level 2 MIT GIS Services
Geodatabase basic. The geodatabase The geodatabase is a collection of geographic datasets of various types used in ArcGIS and managed in either a file.
Lecture 16: Data input 1: Digitizing and Geocoding By Austin Troy University of Vermont Using GIS-- Introduction to GIS.
Fundamentals of GIS Materials by Austin Troy © 2008 Lecture 18: Data Input: Geocoding and Digitizing By Austin Troy University of Vermont NR 143.
©2007 Austin Troy Lecture 7: Introduction to GIS 1.Queries and table operations for a single layer in ArcGIS 2.Intro to queries in Access Lecture by Austin.
©2007 Austin Troy Lecture 7: Introduction to GIS 1.Queries and table operations for a single layer in Arc GIS 2.Intro to queries in Access Lecture by Austin.
@ 2007 Austin Troy. Geoprocessing Introduction to GIS Geoprocessing is the processing of geographic information. – Creating new polygon features through.
Intro. To GIS Lecture 6 Spatial Analysis April 8th, 2013
@ 2007 Austin Troy. Geoprocessing Introduction to GIS Geoprocessing is the processing of geographic information. Perform spatial analysis and modeling.
Lecture 4 Geodatabases. Geodatabases Outline  Data types  Geodatabases  Data table joins  Spatial joins  Field calculator  Calculate geometry 
©2012 Applied Geographics, Inc.Slide 1 How to Put GIS To Work for Voting Redistricting Empowering People with Spatial Solutions Michele.
Manufacturing Decline Within LA County: Using Cluster Analysis to Understand the Trends and Potential Policy Approaches GIS: UP206a Erin Coleman 3/14/2011.
Preparing Data for Analysis and Analyzing Spatial Data/ Geoprocessing Class 11 GISG 110.
The Attribute Table! Without the attribute table, a polygon is just a polygon, a point is a point The attribute table defines what points, lines, or polygons.
CE 525. Grading GIS Proficiency Exam 10% Attendance 10% 90–100 = A Pop Quiz Questions 10% 80 – 89 = B Homework/Certifications 20% 70 – 79 = C Midterm.
Matching school attendance boundaries with schools from CCD dataset.
Fundamentals of GIS Materials by Austin Troy © 2008 Lecture 18: Data Input: Geocoding and Digitizing By Austin Troy University of Vermont.
GIS Tutorial 1 Lecture 4 Geodatabases. Outline  Data types  Geodatabases  Data table joins  Spatial joins  Field calculator  Calculate geometry.
Copyright © 2006 by Maribeth H. Price 8-1 Chapter 8 Geoprocessing.
Data Queries Selecting features in ArcMap Data queries  Important part of a GIS project Can be a part of your data preparation or final analysis  Data.
Site Suitability for Lake Overholser Cassi Poor CRP 551.
Geo-processing tools Tools: Buffer Geo-processing tools allow you to work with your data bases on spatial relations.... at a specified distance... with.
Seattle Monorail Impact Project A GIS Study on Impacts of the New Seattle Monorail By: Wiley Coffin, Kyle Crass, Kyle Freeman, Ken Hunziker, Tony Marti.
Building Site Selection Tool using Python
Advanced GIS Using ESRI ArcGIS 9.3 Spatial Analyst 2.
Accessibility and Feasibility of Recreational and Fitness Facilities in Ames GIS-CRP 551 Final Project Yang Bai.
Using the AccuGlobe Software with the IndianaMap Using the AccuGlobe Software.
1 Overview Importing data from generic raster files Creating surfaces from point samples Mapping contours Calculating summary attributes for polygon features.
Selecting features in ArcMap
Lecture 7 Basic GIS Analysis Operations
Copyright © 2006 by Maribeth H. Price 13-1 Chapter 13 Working with Geodatabases.
Introduction to Geographic Information Systems Fall 2013 (INF 385T-28620) Dr. David Arctur Research Fellow, Adjunct Faculty University of Texas at Austin.
Unified Projects Map Functional management for spatially dependent workflows.
Intro. To GIS Pre-Lab Spatial Analysis April 1 st, 2013.
William Perry U.S. Geological Survey Western Ecological Research Center Geography 375 Final Project May 22, 2013.
Chapter 10- Map Overlays and Geoprocessing Copyright © 2015 by Maribeth H. Price 10-1.
Outline of Script Import Modules Setup Workspace Environment and Assign Data Path Variables Summary of Script Title and Author Info.
Introduction to GIS Programming Final Project Submitted by Todd Lenkin Geography 375 Spring of 2011 American River College.
Key Terms Attribute join Target table Join table Spatial join.
Graduate Students, CEE-6190
GIS Institute Center for Geographic Analysis
Improving Georeferencing Workflow with Python
Attribute Extraction.
ArcMap: Geoprocessing
Tan Hoang GEOG 362 – Final Project
Final Project: Read from a csv file and write to a database table
Attribute Extraction.
DOWNTOWN RESTAURANTS AND CRIME RELATIONSHIPS
Spatial Data Processing
Preliminaries: -- vector, raster, shapefiles, feature classes.
David R. Maidment GIS in Water Resources Fall 2018
Review- vector analyses
Environmental Injustice found in North Carolina?
Preparing raster files for Condatis
D. Archival Indicators St. Joseph County, IN
D. Archival Indicators St. Joseph County, IN
GIS Lecture: Geoprocessing
GIS Institute Center for Geographic Analysis
Vector Geoprocessing.
GIS Institute Center for Geographic Analysis
Virginia Lenvik Geography 375 Spring 2013
ESRM 250/CFR 520 Autumn 2009 Phil Hurvitz
GregWroblicky_script_Part01.py Source Datasets.
Clip & Convert to ASCII Program Kelly Knapp Spring 2010
Final Project Geog 375 Daniel Hewitt.
Ideal Parcels Locator Script
Geog 375 Individual Final Programming Project: Automated Thematic Maps
Presentation transcript:

Midwest-bound A Site Suitability Analysis of South Bend, Indiana for Relocation by Joi Misenti j.misenti@berkeley.edu Geog 375--Spring 2016

Goal: assess 3 parameters of south bend, in Proportion of people per locale holding Bachelor’s degrees Average listing price of rent per locale Distance from Notre Dame campus South Bend, Indiana Downtown

First things first Set the basic essentials of the python script. Import necessary modules. Establish folder directories and workspace.

Set up variables Grouped by the feature classes the variables are associated with.

Process: clip Clipped the neighborhoods shapefile and the block groups feature class to the study area of South Bend with special attention to areas near Notre Dame University.

Challenge: Different Spatial Reference Applied the Project routine to change coordinate system of neighborhoods shapefile from NAD83 to WGS84 to be in accordance with rest of feature class data.

Select relevant zip codes Made feature layer for St. Joseph County zip codes features class Performed Select Layer by Attribute to select only those zip codes in city of South Bend Copied the selected features to a new feature class

Super challenge: Converting String Field To Integer Field for Zip Codes Failed Joins because the field being joined on is string data type in one file and integer in the other. Code (at right) found in Esri thread at: https://geonet.esri.com/thread/86096 Formatting this code into my script (at bottom) was a difficult process since I was unsure of proper syntax for wrapping lines in mid-argument. By trial-and-error I think I found a makeshift solution.

Add fields & Calculate Fields Add field “BACHELORS” to hold the proportion of people over 25 years of age per block group holding bachelors degrees Calculate Field to populate records with equation: # respondents with Bachelors or higher divided by all respondents for education Add field “PRIORITY” to update with successive queries for preferential sites

Query for threshold proportion of Bachelors Select by Attribute for block groups containing proportion of people with Bachelors greater than 0.25 Calculate Field to populate Priority with ‘3’ for block groups meeting query selection

Bachelors quotient map This map shows the polygons symbolized according to proportion of people holding Bachelors with the darker polygons indicating a higher proportion of people. In general, the trend seems to indicate higher percentages of Bachelors to the North and Northeast for some reason.

Process: add join Create Indexes, make a Feature Layer, and Add Join List Fields for troubleshooting This process was done to connect the csv rent files with the respective feature classes for both zip codes and neighborhoods

Process: Union Defined variable to hold feature class list that will input to Union. Perform Union to fill in gaps between neighborhoods layer with existing information from other layers - This conveniently brings all the information into one layer for analysis Make feature layer for Union feature class for further routines and queries

Transfer rent statistics Due to Union, some newly associated neighborhood polygons lack rent statistic. This can be rectified by transferring the rent values from the larger, encompassing zip code polygon rent statistic.

Update cursor: Delete Records Due to Union, some sliver polygons were created that are of no consequential to analysis. These were Deleted with Update Cursor. Sliver polygons

Update cursor: Update Priority Field Define variable that holds query for both parameters satisfying education (> = 0.25) and rent maximum (<= $850) Use Update Cursor to update records in Priority field satisfying the query with priority ‘2’

Rents map This map shows the rent ranges for each polygon. The rent statistic is a monthly average for June 2016 for single-family residences, condos, and co-ops. There seems to be an increasing trend towards the northern and southern periphery of South Bend city proper.

Notre dame extraction Isolate Notre Dame as a solitary feature class from cities Create a buffer with 1.5 mile radius around the campus

Final priority ranking update Select those polygons that satisfy all 3 queried parameters Populate the Priority field with ‘1’ to indicate that these are the final polygons that meet our specifications

Final map The resulting priority map. Darker green indicates higher priority. There seem to actually be a few polygons near Notre Dame that meet my criteria.