GEO375 Final Project: From Txt to Geocoded Data. Goal My Final project is to automate the process of separating, geocoding and processing 911 data for.

Slides:



Advertisements
Similar presentations
Structured ASIC Xcellence Framescript A case study demonstrating the power of Framescript to automate the generation of a Data Book or Catalogue.
Advertisements

MAPSENGINE.GOOGLE.COM/MAP Google Maps Engine Lite (Beta)
RETRIEVING DATA FROM FCC LICENSE DATABASE Steps for obtaining query results, and importing it into MS Excel Spreadsheet.
A Visual Follow-Along Guide to the Instructions of the NBTA Modular Hotel RFP.
Course Orientation Discussion and Private Messages Tool.
Slide 1 of 39 Welcome to GSA’s Vendor and Customer Self Service (VCSS) course Section 5: Statement and Dispute Navigation This presentation is compliant.
Visualizing Multiple Physician Office Locations Exercise 9 GIS in Planning and Public Health Wansoo Im, Ph.D.
2015/6/301 TransCAD Managing Data Tables. 2015/6/302 Create a New Table.
MBAC 611.  Click on the My Computer Icon  Open your private network directory  Create a new folder named lab7  Copy your lab6 Access file to the lab7.
1Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall. Exploring Microsoft Office Access 2010 by Robert Grauer, Keith Mast, and Mary Anne.
Click to add your Name and Class Delete this box & replace with a suitable picture File menu >Insert > Picture Tip : Want to change the design template?
Please Note that prior to using XLS upload for content creation; if the content types contains file/image fields, then you need to place these files in.
PYTHON EEG ANALYSIS EXAMPLE FROM THINK PYTHON HOW TO THINK LIKE A COMPUTER SCIENTIST.
October 2003Bent Thomsen - FIT 3-21 IT – som værktøj Bent Thomsen Institut for Datalogi Aalborg Universitet.
Miscellaneous Excel Combining Excel and Access. – Importing, exporting and linking Parsing and manipulating data. 1.
1 Data List Spreadsheets or simple databases - a different use of Spreadsheets Bent Thomsen.
An introduction for Data Reporters. College Credit Plus Replaces PSEO Replaces dual enrollment.
Each slide is ready for you to edit by adding your own pictures and text. The instructions in red will help guide you. Once you follow them, click on them,
Step Two: Import Contacts. As mentioned in Step One, you can Quick Add Contacts one at a time. Adding contacts this way will only require input of the.
audio video object Options: controls autoplay Need to define height and width Options: controls autoplay.
GSA’s Vendor and Customer Self Service (VCSS).  View and Print Statements  View and print statements for your accounts.  Statement Search by Agreement.
CIT 590 Intro to Programming Files etc. Announcements From HW5 onwards (HW5, HW6,…) You can work alone. You can pick your own partner. You can also stick.
6 th Annual Focus Users’ Conference 6 th Annual Focus Users’ Conference Import Testing Data Presented by: Adrian Ruiz Presented by: Adrian Ruiz.
McGraw-Hill/Irwin The Interactive Computing Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Excel 2002 Working with Data Lists.
Files Tutor: You will need ….
 Uploads ◦ Available Methods ◦ Best Practices ◦ Performing Efficient Uploads ◦ Managing Uploads ◦ Understanding Upload Results ◦ Common Mistakes  Grant.
More Oracle SQL Scripts. Highlight (but don’t open) authors table, got o External data Excel, and make an external spreadsheet with the data.
CIT 590 Intro to Programming Files etc. Agenda Files Try catch except A module to read html off a remote website (only works sometimes)
Introduction to Blackboard Rabie A. Ramadan Session 3.
For Datatel and other applications Presented by Cheryl Sullivan.
Virginia Administrative Training Module 1: Processing, Online, Scoring and Reporting Training Presentation Training Presentation Working Within PearsonAccess.
Enlisted Association of the National Guard of the United States Data Extract Instructional Guide.
HCAI Information for ACtion 2010
GEOCODING Fall 2016 Library Workshop.
Miscellaneous Excel Combining Excel and Access.
Creates the file on disk and opens it for writing
Making a JSON file.
International Computer Driving Licence Syllabus version 5.0
Student Registration/ Personal Needs Profile
Required Data Files Review
(optional - but then again, all of these are optional)
PHASE I AND PHASE II PROCESSES
Access Lesson 14 Import and Export Data
Final Project: Read from a csv file and write to a database table
Financial Journal Form
Test Information Distribution Engine (TIDE)
REDCap Data Migration from CSV file
TRAINING OF FOCAL POINTS ON THE CountrySTAT/FENIX SYSTEM
TRAINING OF FOCAL POINTS ON THE CountrySTAT/FENIX SYSTEM
Uploading Data in the Staff Interchange
For Computer-Based Testing
Preparing your Data using Python
Conversion of journal citation data for systematic review analysis
Managing Rosters Screener Training Module Module 5
Preparing your Data using Python
Creates the file on disk and opens it for writing
TRAINING OF FOCAL POINTS on the CountrySTAT SYSTEM based on FENIX
Microsoft Excel 2007 – Level 2
1098t User Manual 2018 Tax Year.
Overview of Contract Association Batch Upload
For Computer-Based Testing
Student Registration/ Personal Needs Profile
DATA MANIPULATION Wendy Harrison Mari Morgan Dafydd Williams
Local Review is a web site used by state industry projections analysts to obtain, from local area experts, information about economic activity and any.
Lesson 3: Trifacta Basics
Student Registration/ Personal Needs Profile
Bent Thomsen Institut for Datalogi Aalborg Universitet
Improving workflow at CNDDB
Excel-eration Webinar
Introduction to Computer Science
Presentation transcript:

GEO375 Final Project: From Txt to Geocoded Data

Goal My Final project is to automate the process of separating, geocoding and processing 911 data for the Sacramento Police Department’s Everbridge program provided in text file format by AT&T.

Basic Steps Convert TXT file CSV format Delete unneeded data Convert to XLSX file Delete unneeded columns Add several new columns Geocode the data Convert back to CSV for upload

Initial text file The initial text file is a TXT file. The first line must be deleted and the quotation marks removed in order for the conversion to go into XLS format correctly.

I had to set all the needed variables There are several sections due to the size of the file (nearly 690,000 records) I created a subset of the file to use for testing the script. The variables for the test files and the “real” data files are all in the script.

Variables The picture above shows the different sections and variables for “real” data and test data.

Section 1 First line of text is deleted and the file is converted to CSV using the csv module.

Quote marks create a problem When attempting to convert the original text I ran into an issue with the quotation marks causing an extra blank line in the csv file and not letting it convert to excel correctly. Quote marks were searched and replaced.

Set column widths Column widths were set once the xlsx file was created and several new column and column headers were added.

Geocoding section Geocoding can only be done from Janeane Kuxhausen’s computer due to access restrictions to the locator created by Nate Jennings. She is also the only one who has ArcGIS and Python on her computer and has access to the data file.

Error One of the errors I ran into after changing a file name. I forgot to add TEST to the xlsx variable. Once that was changed I ran the file again.

SUCCESS!!!

Final product ready for upload