Computer Applications in Engineering and Construction Programming Assignment #2 Municipal Boundaries in State Plane Coordinates

Size: px
Start display at page:

Download "Computer Applications in Engineering and Construction Programming Assignment #2 Municipal Boundaries in State Plane Coordinates"

Transcription

1 CVEN 302 Computer Applications in Engineering and Construction Programming Assignment #2 Municipal Boundaries in State Plane Coordinates Date distributed : Date due : at 10:20 p.m. Return your solution either in class or in my mail box (8th Floor, CE/TTI) by the date shown above. Please show all your work and follow the rules outlined in the course syllabus. The state plane coordinate system is a convenient tool that provides direct mapping between a local Cartesian coordinate system and the global spherical coordinate system of latitude and longitude. In this assignment, we will use a provided Matlab function to convert latitude and longitude to the Texas Central Zone state plane coordinates based on the North American Datum of 1983 (NAD-83). Once points are mapped to the Texas Central Zone, simple Cartesian geometry will be used to determine whether a point is within the city limits of Wixon Valley, Texas. Section 1 introduces more engineering background and a description of Wixon Valley, Texas. The details of the programming assignment are provided in Section 2, followed by the challenge problem in Section 3. 1 Permitting and Legal Land Descriptions This assignment is analogous to a similar problem confronted by the author as he worked as an engineering intern in the early 1990 s. A large industrial company was applying for well permits for over 500 wells. Each well had to be plotted on a map and the relevant legal authority identified. Since the jurisdiction of each legal authority was easily mapped by a series of intersecting lines, he created a program to compare the coordinates of each well to each authorities boundaries and then to create a corresponding database entry that could easily be fed into the well permit application. It took almost exactly as long to create the computer program and database link as it would have taken to plot each of the 500 wells by hand and to enter the data into the well permit application. However, once the computer tool was created, it took almost no additional time to process the next 1,500 wells the company needed to permit. The State also liked the database interface, and eventually adopted it for automating their well permit application process. In Colorado, where the above program was developed, legal land descriptions are based on a nearly square system of sections, quarter-sections, and quarter-quarter-sections. In Texas, legal land descriptions are based on way points, and each land parcel is unique. Hence, it is not economical to create a general program to determine legal jurisdictions for the whole State of Texas, but in this assignment, we will test a point s coordinates against the city limits of Wixon Valley, Texas. Figure 1 shows a Google-Earth image of Wixon Valley, Texas, which is 9.5 mi north, north-east CIVIL 3136 TAMU College Station, Texas (979) FAX (979)

2 Figure 1: City Limits of Wixon Valley. Image from Google Earth, Copyright 2009 Tele Atlas. 2

3 Table 1: Latitude and Longitude of Boundary Corners for City Limits of Wixon Valley, Texas Latitude Longitude [deg] [deg] of Bryan/College Station, Texas. Table 1 provides the latitude and longitude of each corner of the Wixon Valley city limits. In this assignment, you will need to convert these coordinates to Texas state plane coordinates, find equations for the lines between points, and then build a series of IF-statements to compare a point s location to the boundaries of Wixon Valley. To convert to Cartesian coordinates, the Matlab function gcpg83.m is provided. This function is an excerpt from the FORTRAN program spcs83.exe, distributed by the National Geodetic Survey and available for download from The program provided here is only valid for the Texas Central Zone NAD-83 state plane coordinate system. 2 Assignment You will first need to use the provided function gcpg83.m, which takes latitude and longitude in decimal degrees as input, to convert the Google-Earth way points of the Wixon Valley, Texas, city limits to the state plane coordinate system. The data in Table 1 are provided for download in the file WV Boundary.dat. You will then need to use another provided Matlab function (get points.m) to generate 100 random points near Wixon Valley, Texas, for classification. Write a Matlab computer program to take the 100 random points in decimal latitude and longitude, convert them to the state plane coordinate system, compare their locations to the city limits and then classify them as within or not within the city limits. Your program should finally create a plot of the city limit boundaries together with all of the processed points, coloring the points inside the city limits as red stars and those outside the city limits as blue dots. Figure 2 shows the output from the working solution program. Organize your results using the memorandum template from the Assignments page of the course web site. In the body of the memorandum, you should briefly describe the methods used to classify each point and include a copy of the final figure produced by your working computer code. You may also discuss any problems with your code and ideas you may have to fix them. Include a listing of your Matlab program in an Appendix. Be sure to include descriptive text with the computer 3

4 x Northing (Central Texas Zone NAD 83), (m) Easting (Central Texas Zone NAD 83), (m) x 10 6 Figure 2: Classification of Points Near Wixon Valley, Texas. code or codes in the appendix. To help you get started, the following provides a skeleton for your completed program: PROGRAM Wixon_Valley.m This program reads in the locations of the boundary corners defining Wixon Valley, Texas, converts them to state plane coordinates, and then checks whether random points are inside or outside city limits. Define Variables: Fill in with appropriate text Full name UIN Date Load in the way points load WV_Boundary.dat Convert points to decimal degrees points = zeros(length(wv_boundary),2); for i = 1:size(WV_Boundary,1); 4

5 points(i,1) = WV_Boundary(i,1) + WV_Boundary(i,2)/ WV_Boundary(i,3)/3600; points(i,2) = WV_Boundary(i,4) + WV_Boundary(i,5)/ WV_Boundary(i,6)/3600; Store northing in y-component and easting in x-component [points(i,2), points(i,1)] = gcpg83(points(i,1), points(i,2)); end Load in points to classify [latp, longp] = get_points; Convert points to state plane coordinates Add commands here Classify points Add commands here Create plot figure(1) clf Add ploting commands axis equal xlabel( Easting (Central Texas Zone NAD-83), (m) ) ylabel( Northing (Central Texas Zone NAD-83), (m) ) 3 Challenge For each point, calculate the perpendicular distance in meters and bearing in degrees from North to the nearest boundary of the city limits. Output the results as a text display using the sprintf command in Matlab. 5

SURVEYING AND MAPPING, INC. COORDINATE DATA SHEET JOB: CITY OF DECATUR CLIENT: CITY OF DECATUR SAM JOB#:

SURVEYING AND MAPPING, INC. COORDINATE DATA SHEET JOB: CITY OF DECATUR CLIENT: CITY OF DECATUR SAM JOB#: 13 March 2001 SURVEYING AND MAPPING, INC. COORDINATE DATA SHEET JOB: CITY OF DECATUR CLIENT: CITY OF DECATUR SAM JOB#: 21038-20 HORIZONTAL DATUM: NAD-83 GEODETIC VERTICAL STATION ID LATITUDE LONGITUDE

More information

GIS in Water Resources. Fall Homework #1

GIS in Water Resources. Fall Homework #1 GIS in Water Resources Fall 2015 Homework #1 Goal The goal of this homework is to reinforce the lecture material on Geodesy, Map Projections and Coordinate Systems by having you identify attributes and

More information

NC DWQ Stormwater Permitting Interactive Map

NC DWQ Stormwater Permitting Interactive Map P a g e 1 NC DWQ Stormwater Permitting Interactive Map Using This Map This interactive map viewer uses Google Fusion Tables to show North Carolina permitting information in a Google Maps Interface. Finding

More information

Georeferencing. Place names Postal addresses Postal codes Coordinate systems (lat/long, UTM, etc.)

Georeferencing. Place names Postal addresses Postal codes Coordinate systems (lat/long, UTM, etc.) Georeferencing Georeferencing Used to describe the act of assigning locations to data or information Certain requirements include that they are: unique, have shared meaning, and are persistent through

More information

GIS in Water Resources Midterm Exam Fall 2016 There are four questions on this exam. Please do all four. They are not all of equal weight.

GIS in Water Resources Midterm Exam Fall 2016 There are four questions on this exam. Please do all four. They are not all of equal weight. Page 1 of 7 Name: GIS in Water Resources Midterm Exam Fall 2016 There are four questions on this exam. Please do all four. They are not all of equal weight. Question 1. (20%) (a) Three key functions of

More information

SECTION 4 PARCEL IDENTIFIERS 4.1 LONGITUDE AND LATITUDE

SECTION 4 PARCEL IDENTIFIERS 4.1 LONGITUDE AND LATITUDE SECTION 4 PARCEL IDENTIFIERS 4.1 LONGITUDE AND LATITUDE Most maps must be drawn in such a way that points and areas can be located accurately on the earth's surface and described objectively. A uniform

More information

GIS in Water Resources Midterm Exam Fall 2008 There are 4 questions on this exam. Please do all 4.

GIS in Water Resources Midterm Exam Fall 2008 There are 4 questions on this exam. Please do all 4. Page 1 of 8 Name: GIS in Water Resources Midterm Exam Fall 2008 There are 4 questions on this exam. Please do all 4. 1. Basic Concepts [20 points] Find the letter with the best answer for each term: 1.

More information

Projections and Coordinate Systems

Projections and Coordinate Systems Projections and Coordinate Systems Overview Projections Examples of different projections Coordinate systems Datums Projections Overview Projections and Coordinate Systems GIS must accurately represent

More information

Computer Applications in Engineering and Construction Programming Assignment #9 Principle Stresses and Flow Nets in Geotechnical Design

Computer Applications in Engineering and Construction Programming Assignment #9 Principle Stresses and Flow Nets in Geotechnical Design CVEN 302-501 Computer Applications in Engineering and Construction Programming Assignment #9 Principle Stresses and Flow Nets in Geotechnical Design Date distributed : 12/2/2015 Date due : 12/9/2015 at

More information

Iowa Department of Transportation Office of Transportation Data GIS / CAD Integration

Iowa Department of Transportation Office of Transportation Data GIS / CAD Integration Iowa Department of Transportation Office of Transportation Data GIS / CAD Integration From GIS data to CAD graphics - Iowa DOT's workflow utilizing GeoMedia and MicroStation to develop map products. Mark

More information

AGGREGATE RESOURCES OF ONTARIO (ARO) METADATA

AGGREGATE RESOURCES OF ONTARIO (ARO) METADATA AGGREGATE RESOURCES OF ONTARIO (ARO) METADATA GENERAL INFORMATION Official Name of the Data Set or Information Holding: Aggregate Resources of Ontario Acronyms are Used to Identify the Data Set or Information

More information

Town of Chino Valley. Survey Control Network Report. mgfneerhg mc N. Willow Creek Road Prescott AZ

Town of Chino Valley. Survey Control Network Report. mgfneerhg mc N. Willow Creek Road Prescott AZ Town of Chino Valley Survey Control Network Report mgfneerhg mc. 2050 N. Willow Creek Road Prescott AZ 86301 928-771-2376 Page 1 of 70 Table of Contents Town of Chino Valley Survey Datum Outline A short

More information

Teaching GIS for Land Surveying

Teaching GIS for Land Surveying Teaching GIS for Land Surveying Zhanjing (John) Yu Evergreen Valley College, San Jose, California James Crossfield California State University at Fresno, Fresno California 7/13/2006 1 Outline of the Presentation

More information

Case Study of the Coding Framework

Case Study of the Coding Framework Case Study of the Coding Framework Andres Patrignani and Tyson Ochsner Soil Physics, Plant and Soil Sciences, Oklahoma State University 1. Define objective of the code. Objective: To create a function

More information

ch02.pdf chap2.pdf chap02.pdf

ch02.pdf chap2.pdf chap02.pdf Introduction to Geographic Information Systems 8th Edition Karl Solutions Manual Full Download: http://testbanklive.com/download/introduction-to-geographic-information-systems-8th-edition-karl-solutions-manu

More information

OpenWeatherMap Module

OpenWeatherMap Module OpenWeatherMap Module Installation and Usage Guide Revision: Date: Author(s): 1.0 Friday, October 13, 2017 Richard Mullins Contents Overview 2 Installation 3 Import the TCM in to accelerator 3 Add the

More information

Computer Applications in Engineering and Construction Programming Assignment #4 Chemical equilibrium using root-finding techniques

Computer Applications in Engineering and Construction Programming Assignment #4 Chemical equilibrium using root-finding techniques CVEN 302-501 Computer Applications in Engineering and Construction Programming Assignment #4 Chemical equilibrium using root-finding techniques Date distributed : 9/30/2015 Date due : 10/9/2015 at 8:00

More information

MRD 207 METADATA DETAIL PAGE

MRD 207 METADATA DETAIL PAGE MRD 207 METADATA DETAIL PAGE The following represents the Basic description of an information holding. To obtain more information about this holding, see the section named Contacts. GENERAL INFORMATION

More information

Shape e o f f the e Earth

Shape e o f f the e Earth 1 Coordinate Systems & Projections Coordinate Systems Two map layers are not going to register spatially unless they are based on the same coordinate system. 2 Contents Shape of the earth Datum Projections

More information

GIS in Water Resources Fall 2018 Homework #1

GIS in Water Resources Fall 2018 Homework #1 GIS in Water Resources Fall 2018 Homework #1 Goal The goal of this homework is to reinforce the lecture material on Geodesy, Map Projections and Coordinate Systems by having you identify attributes and

More information

Basic Map Skills for the Outdoors

Basic Map Skills for the Outdoors Geography 80-20 80% of what there is to know, for 20% of the sweat Basic Map Skills for the Outdoors Map Scale Map source: US Geological Survey Four ways to indicate map scale: Representative fraction

More information

Lab Topographic Maps. Name: Partner: Purpose. Background Information

Lab Topographic Maps. Name: Partner: Purpose. Background Information Lab Topographic Maps Name: Partner: Purpose The purpose of this lab is to familiarize you with graphic representations of the Earth s surface primarily maps. Simple line maps show the spatial relationship

More information

Assignment 4: VBA Programming

Assignment 4: VBA Programming CEE 3804: Computer Applications in Civil Engineering Spring 2012 Assignment 4: VBA Programming Date Due: February 21, 2012 Instructor: Trani Problem 1 The distance between two points on the surface of

More information

Solving the "Grid to Ground Problem" with Custom Coordinate Systems CV327-6 About the Speaker:

Solving the Grid to Ground Problem with Custom Coordinate Systems CV327-6 About the Speaker: Solving the "Grid to Ground Problem" with Custom Coordinate Systems Richard Sincovec, LSI Director of Technology, Edward James Surveying President, Quux Software CV327-6 Grid projections such as the State

More information

GISC3325 Spring 2011 Final Exam

GISC3325 Spring 2011 Final Exam GISC3325 Spring 2011 Final Exam Name: Carefully read each question. Identify the important elements and the question being asked. Show your work for partial credit. No credit for undocumented wrong answers.

More information

CE 394K/CEE6440 GIS in Water Resources Fall 2018 Final Exam Solution

CE 394K/CEE6440 GIS in Water Resources Fall 2018 Final Exam Solution CE 394K/CEE6440 GIS in Water Resources Fall 2018 Final Exam Solution 3. Austin Population The figure below shows two feature classes, one being the extent of the 1:24,000 Austin East topographic map and

More information

Tri-County Regional Planning Commission Regional Zoning GIS Project Documentation

Tri-County Regional Planning Commission Regional Zoning GIS Project Documentation Tri-County Regional Planning Commission Regional Zoning GIS Project Documentation 12/13/00 Revised 11/07/2007 Projection Michigan GeoRef: From PDF file on Center for Geographic Information s web site:

More information

Map Projections & Coordinate Systems

Map Projections & Coordinate Systems Map Projections & Coordinate Systems 9/7/2017 1 Why? Laying the Earth Flat Need convenient means of measuring and comparing distances, directions, areas, shapes. Traditional surveying instruments measure

More information

MRD283-REV METADATA. Acronyms are Used to Identify the Data Set or Information Holding: MRD283-REV

MRD283-REV METADATA. Acronyms are Used to Identify the Data Set or Information Holding: MRD283-REV MRD283-REV METADATA GENERAL INFORMATION Official Name of the Data Set or Information Holding: Ambient Groundwater Geochemistry Data for Southern Ontario, 2007 2014 Acronyms are Used to Identify the Data

More information

LAB 1: MATLAB - Introduction to Programming. Objective:

LAB 1: MATLAB - Introduction to Programming. Objective: LAB 1: MATLAB - Introduction to Programming Objective: The objective of this laboratory is to review how to use MATLAB as a programming tool and to review a classic analytical solution to a steady-state

More information

Task 1: Start ArcMap and add the county boundary data from your downloaded dataset to the data frame.

Task 1: Start ArcMap and add the county boundary data from your downloaded dataset to the data frame. Exercise 6 Coordinate Systems and Map Projections The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step

More information

Performing. Geospatial Analysis. Using Latitude and Longitude Data. Ginger Ni - Software Engineer

Performing. Geospatial Analysis. Using Latitude and Longitude Data. Ginger Ni - Software Engineer Performing Geospatial Analysis Using Latitude and Longitude Data Ginger Ni - Software Engineer Hewlett Packard Enterprise confidential information This is a rolling (up to three year) roadmap and is subject

More information

NR402 GIS Applications in Natural Resources Lesson 4 Map Projections

NR402 GIS Applications in Natural Resources Lesson 4 Map Projections NR402 GIS Applications in Natural Resources Lesson 4 Map Projections From http://www.or.blm.gov/gis/ 1 Geographic coordinates Coordinates are expressed as Latitude and Longitude in Degrees, Minutes, Seconds

More information

Intro to GIS In Review

Intro to GIS In Review Intro to GIS In Review GIS Analysis Winter 2016 GIS A quarter in review Geographic data types Acquiring GIS data Projections / Coordinate systems Working with attribute tables Data classification Map design

More information

8 th 12 th Designing a Monitoring Plan Mapping & Analysis (Activities 1 2)

8 th 12 th Designing a Monitoring Plan Mapping & Analysis (Activities 1 2) 8 th 12 th Designing a Monitoring Plan Mapping & Analysis (Activities 1 2) Objectives for All Activities - To be able to define and describe the purpose and uses of topographic maps. - To define rules

More information

1. Label a few examples of lines of latitude and lines of longitude on the globe above left.

1. Label a few examples of lines of latitude and lines of longitude on the globe above left. Oceanography 2 Location, Direction, and Distance on Nautical Charts Please read Appendix III in the textbook for reference. Learning Objectives for the first nautical chart Lab 1. Use the latitude-longitude

More information

GPS Worldwide Laboratory: a community of knowledge-seekers spanning the globe

GPS Worldwide Laboratory: a community of knowledge-seekers spanning the globe Laboratory B: (predicting and verifying satellite visibility) Lab Date: 1 November 2014 1 day depending on your time zone). YOU MUST DO THIS PARTICULAR LAB ON THE SPECIFIED DAY. Lab Goals: Predict when

More information

Sites Field Descriptions

Sites Field Descriptions Accession# Additional Location Details This is the controlling number of the collections. It relates a site to an Accession. [ACCESSNO : Character (15)] Use this unlimited notes field to enter any addition

More information

Welcome to Lesson 4. It is important for a GIS analyst to have a thorough understanding of map projections and coordinate systems.

Welcome to Lesson 4. It is important for a GIS analyst to have a thorough understanding of map projections and coordinate systems. Welcome to Lesson 4. It is important for a GIS analyst to have a thorough understanding of map projections and coordinate systems. A GIS without coordinates would simply be a database like Microsoft Excel

More information

Lecture 4. Coordinate Systems & Projections

Lecture 4. Coordinate Systems & Projections Lecture 4 Coordinate Systems & Projections Outline Geodesy Geoids Ellipsoids Geographic Coordinate Systems Magnetic North vs. True North Datums Projections Applying Coordinate Systems and Projections Why

More information

GEOIDS FAQ. November

GEOIDS FAQ. November GEOIDS FAQ 1. What is a geoid? A geoid is a representation of the equipotential surface of the Earth s gravity field. It can be thought of as a surface coinciding with the undisturbed mean sea level extended

More information

Georeferencing, Map Projections, Cartographic Concepts. -Coordinate Systems -Datum

Georeferencing, Map Projections, Cartographic Concepts. -Coordinate Systems -Datum Georeferencing, Map Projections, Cartographic Concepts -Map Projections -Coordinate Systems -Datum Map projection is "the process of systematically transforming positions on the Earth's spherical surface

More information

Lecture 2. Map Projections and GIS Coordinate Systems. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

Lecture 2. Map Projections and GIS Coordinate Systems. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Lecture 2 Map Projections and GIS Coordinate Systems Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Map Projections Map projections are mathematical formulas

More information

Intro to GIS Fall 2010 Georeferencing & Map Projections

Intro to GIS Fall 2010 Georeferencing & Map Projections Intro to GIS Fall 2010 Georeferencing & Map Projections SHAPE OF THE EARTH Earth's Shape Geoid: shape of earth minus topographic features (irregular due to local variations in gravity) Ellipsoid: elongated

More information

Surveying I. Unit - I. Different methods and instruments are being used to facilitate the work of

Surveying I. Unit - I. Different methods and instruments are being used to facilitate the work of Surveying I Unit - I Definition of Survey Surveying is the art of determining the relative positions of different objects on the surface of the earth by measuring the horizontal distances between them,

More information

Modern Navigation. Thomas Herring

Modern Navigation. Thomas Herring 12.215 Modern Navigation Thomas Herring Today s class Map Projections: Why projections are needed Types of map projections Classification by type of projection Classification by characteristics of projection

More information

Problems and Challenges

Problems and Challenges 2018 Esri Petroleum GIS Conference Problems and Challenges May 9 10, 2018 Houston, Texas George R. Brown Convention Center Disunity of drawing standards and format Large amount of work in Cartography,

More information

APPLICATION FOR CHANGE OF WATER RIGHT

APPLICATION FOR CHANGE OF WATER RIGHT District Court, Water Division, Colorado Court Address: CONCERNING THE APPLICATION FOR WATER RIGHTS OF Applicant: In the River or its Tributaries In COUNTY COURT USE ONLY Attorney or Party Without Attorney

More information

WindNinja Tutorial 3: Point Initialization

WindNinja Tutorial 3: Point Initialization WindNinja Tutorial 3: Point Initialization 6/27/2018 Introduction Welcome to WindNinja Tutorial 3: Point Initialization. This tutorial will step you through the process of downloading weather station data

More information

Participants. Participatory Mapping. Village : Date : Page : / No. Name Job Gender. Entered by. Interviewer. Author. Checked by

Participants. Participatory Mapping. Village : Date : Page : / No. Name Job Gender. Entered by. Interviewer. Author. Checked by Participatory Mapping Author Interviewer Entered by Checked by Original or Copy O C File name Checked by Has been written on back? Y N Has been copied? Village Participants No. Name Job Gender 1 2 3 4

More information

Lecture 9: Reference Maps & Aerial Photography

Lecture 9: Reference Maps & Aerial Photography Lecture 9: Reference Maps & Aerial Photography I. Overview of Reference and Topographic Maps There are two basic types of maps? Reference Maps - General purpose maps & Thematic Maps - maps made for a specific

More information

ENV101 EARTH SYSTEMS

ENV101 EARTH SYSTEMS ENV101 EARTH SYSTEMS Practical Exercise 2 Introduction to ArcMap and Map Projections 1. OVERVIEW This practical is designed to familiarise students with the use of ArcMap for visualising spatial data and

More information

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Rainfall Report. Bevens Engineering, Inc. Susan M. Benedict REFERENCE:

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Rainfall Report. Bevens Engineering, Inc. Susan M. Benedict REFERENCE: SAMPLE SITE SPECIFIC WEATHER ANALYSIS Rainfall Report PREPARED FOR: Bevens Engineering, Inc. Susan M. Benedict REFERENCE: DUBOWSKI RESIDENCE / FILE# 11511033 CompuWeather Sample Report Please note that

More information

Lauren Jacob May 6, Tectonics of the Northern Menderes Massif: The Simav Detachment and its relationship to three granite plutons

Lauren Jacob May 6, Tectonics of the Northern Menderes Massif: The Simav Detachment and its relationship to three granite plutons Lauren Jacob May 6, 2010 Tectonics of the Northern Menderes Massif: The Simav Detachment and its relationship to three granite plutons I. Introduction: Purpose: While reading through the literature regarding

More information

Name of Applicant Mailing Address address Telephone Number

Name of Applicant Mailing Address  address Telephone Number District Court, Water Division, Colorado Court Address: CONCERNING THE APPLICATION FOR WATER RIGHTS OF Applicant: In the River or its Tributaries In COUNTY Attorney or Party Without Attorney (Name and

More information

Homework #1 Solution: March 8, 2006

Homework #1 Solution: March 8, 2006 12.540 Homework #1 Solution: March 8, 2006 Question 1: (a) Convert geodetic position 290 deg Long 42 deg latitude ellipsoidal height 0 m into Cartesian and geocentric coordinates. (b) How far apart on

More information

Importance of Understanding Coordinate Systems and Map Projections.

Importance of Understanding Coordinate Systems and Map Projections. Importance of Understanding Coordinate Systems and Map Projections. 1 It is extremely important that you gain an understanding of coordinate systems and map projections. GIS works with spatial data, and,

More information

Lesson 5: Map Scale and Projections

Lesson 5: Map Scale and Projections Organizing Data and Information Lesson 5: Map Scale and Projections Map Scales Projections Information can be organized as lists, numbers, tables, text, pictures, maps, or indexes. Clusters of information

More information

Introduction to GIS - 2

Introduction to GIS - 2 Introduction to GIS - 2 Outline Using GIS Representation of spatial objects in GIS Prof. D. Nagesh Kumar Department of Civil Engineering Indian Institute of Science Bangalore 560 012, India http://www.civil.iisc.ernet.in/~nagesh

More information

Geographers Perspectives on the World

Geographers Perspectives on the World What is Geography? Geography is not just about city and country names Geography is not just about population and growth Geography is not just about rivers and mountains Geography is a broad field that

More information

Lab #3 Map Projections.

Lab #3 Map Projections. Lab #3 Map Projections http://visual.merriam-webster.com/images/earth/geography/cartography/map-projections.jpg Map Projections Projection: a systematic arrangement of parallels and meridians on a plane

More information

Mobile Mapping Tips and Tricks

Mobile Mapping Tips and Tricks Mobile Mapping Tips and Tricks Projections, Datums and Geoids, May 2017 Introduction This guide is designed to provide a basic understanding of coordinate system projections, datums and geoids. The guide

More information

MRD273-REV METADATA. Acronyms are Used to Identify the Data Set or Information Holding: MRD273-REV

MRD273-REV METADATA. Acronyms are Used to Identify the Data Set or Information Holding: MRD273-REV MRD273-REV METADATA GENERAL INFORMATION Official Name of the Data Set or Information Holding: Ontario Precambrian Bedrock Magnetic Susceptibility Geodatabase for 2001 to 2012 Acronyms are Used to Identify

More information

for more please visit :

for more please visit : articlopedia.gigcities.com for more please visit : http://articlopedia.gigcities.com file:///d /important.html9/13/2006 8:50:19 PM CHAPTER 3 ASTRONOMICAL PHENOMENA 3.1 Sunrise, Sunset, and Twilight Introduction

More information

4. GIS Implementation of the TxDOT Hydrology Extensions

4. GIS Implementation of the TxDOT Hydrology Extensions 4. GIS Implementation of the TxDOT Hydrology Extensions A Geographic Information System (GIS) is a computer-assisted system for the capture, storage, retrieval, analysis and display of spatial data. It

More information

Answer key for chapter questions in Getting to Know ArcGIS Desktop, 5th edition

Answer key for chapter questions in Getting to Know ArcGIS Desktop, 5th edition Answer Key 1 Answer key for chapter questions in Getting to Know ArcGIS Desktop, 5th edition Exercise 3a Q: Two countries display populations greater than 500 million. Can you name them? A: China and India

More information

National Park Service Safety Management

National Park Service Safety Management National Park Service Safety Management Locating Crashes Spatially from the National Park Service Service-wide Traffic Accident Reporting System (STARS) Database By Daniel Van Gilder Federal Highway Administration

More information

WindNinja Tutorial 3: Point Initialization

WindNinja Tutorial 3: Point Initialization WindNinja Tutorial 3: Point Initialization 07/20/2017 Introduction Welcome to. This tutorial will step you through the process of running a WindNinja simulation that is initialized by location specific

More information

ELECTRONICS DIVISION INTERNAL REPORT NO. 324

ELECTRONICS DIVISION INTERNAL REPORT NO. 324 NATIONAL RADIO ASTRONOMY OBSERVATORY Green Bank, West Virginia ELECTRONICS DIVISION INTERNAL REPORT NO. 324 NRAO 43m Antenna Coordinates and Angular Limits (Version 4) Glen Langston September 14, 2012

More information

How does an ellipsoid differ from a sphere in approximating the shape and size of the Earth?

How does an ellipsoid differ from a sphere in approximating the shape and size of the Earth? Chapter 02 Test Bank Worksheet Questions 1. What is a map projection? Topic: Map Projection 2. How does an ellipsoid differ from a sphere in approximating the shape and size of the Earth? Topic: Ellipsoid

More information

GEOPHYSICAL DATA SET (GDS) 1084B METADATA

GEOPHYSICAL DATA SET (GDS) 1084B METADATA GEOPHYSICAL DATA SET (GDS) 1084B METADATA GENERAL INFORMATION Official Name of the Data Set or Information Holding: Ontario Airborne Geophysical Surveys, Magnetic Gradiometer and Gamma-Ray Spectrometric

More information

10/13/2011. Introduction. Introduction to GPS and GIS Workshop. Schedule. What We Will Cover

10/13/2011. Introduction. Introduction to GPS and GIS Workshop. Schedule. What We Will Cover Introduction Introduction to GPS and GIS Workshop Institute for Social and Environmental Research Nepal October 13 October 15, 2011 Alex Zvoleff azvoleff@mail.sdsu.edu http://rohan.sdsu.edu/~zvoleff Instructor:

More information

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012 CSCE 155N Fall 2012 Homework Assignment 2: Stress-Strain Curve Assigned: September 11, 2012 Due: October 02, 2012 Note: This assignment is to be completed individually - collaboration is strictly prohibited.

More information

Appendix B Calculating Pipe Length and Mean Slope from GPS Data

Appendix B Calculating Pipe Length and Mean Slope from GPS Data Appendix B Calculating Pipe Length and Mean Slope from GPS Data B.1 THE BASICS: NORTHING AND EASTING Dimensions of the potential site for a water network can be measured with landbased surveying equipment,

More information

This week s topics. Week 6. FE 257. GIS and Forest Engineering Applications. Week 6

This week s topics. Week 6. FE 257. GIS and Forest Engineering Applications. Week 6 FE 257. GIS and Forest Engineering Applications Week 6 Week 6 Last week Chapter 8 Combining and splitting landscape features and merging GIS databases Chapter 11 Overlay processes Questions? Next week

More information

Structure contours on Bone Spring Formation (Lower Permian), Delaware Basin

Structure contours on Bone Spring Formation (Lower Permian), Delaware Basin Structure contours on Bone Spring Formation (Lower Permian), Delaware Basin By Ronald F. Broadhead and Lewis Gillard New Mexico Bureau of Geology and Mineral Resources, a division of New Mexico Tech, Socorro

More information

MRD 228 METADATA. Official Name of the Data Set or Information Holding: Physiography of Southern Ontario

MRD 228 METADATA. Official Name of the Data Set or Information Holding: Physiography of Southern Ontario MRD 228 METADATA GENERAL INFORMATION Official Name of the Data Set or Information Holding: Physiography of Southern Ontario Acronyms are Used to Identify the Data Set or Information Holding: MRD228 Describe

More information

GPS Strain & Earthquakes Unit 5: 2014 South Napa earthquake GPS strain analysis student exercise

GPS Strain & Earthquakes Unit 5: 2014 South Napa earthquake GPS strain analysis student exercise GPS Strain & Earthquakes Unit 5: 2014 South Napa earthquake GPS strain analysis student exercise Strain Analysis Introduction Name: The earthquake cycle can be viewed as a process of slow strain accumulation

More information

HORIZONTAL PROJECTION PARAMETERS: DANE COUNTY COORDINATES

HORIZONTAL PROJECTION PARAMETERS: DANE COUNTY COORDINATES Recommended RTK GPS Configuration Parameters for the City of Madison, WI Base Station Compiled by: Dan Rodman RLS, City of Madison (608)266-6674 drodman@cityofmadison.com For base station information see

More information

PROJECTIONS AND COORDINATES EXPLORED THROUGH GOOGLE EARTH EXERCISE (SOLUTION SHEET)

PROJECTIONS AND COORDINATES EXPLORED THROUGH GOOGLE EARTH EXERCISE (SOLUTION SHEET) PROJECTIONS AND COORDINATES EXPLORED THROUGH GOOGLE EARTH EXERCISE (SOLUTION SHEET) Name: Date: Period: Note: Correct answers on some problems are indicated with a yellow highlight. PROJECTIONS 1. Here

More information

If you aren t familiar with Geographical Information Systems (GIS), you. GIS, when combined with a database that stores response information,

If you aren t familiar with Geographical Information Systems (GIS), you. GIS, when combined with a database that stores response information, Geographical Information Systems in EMS By William E. Ott If you aren t familiar with Geographical Information Systems (GIS), you should take a look at what GIS can offer you as an EMS manager. GIS, when

More information

Applying GIS Data to Radar Video Maps Air Traffic Control Towers

Applying GIS Data to Radar Video Maps Air Traffic Control Towers Applying GIS Data to Radar Video Maps Air Traffic Control Towers National Aeronautical Charting Group (NACG) Silver Spring, MD Introduction Background Functions, History, Facts/Stats Mapping Environment

More information

Frequently Asked Questions about MnDOT s Railroad Map Conversion Project

Frequently Asked Questions about MnDOT s Railroad Map Conversion Project Frequently Asked Questions about MnDOT s Railroad Map Conversion Project What were the main objectives of the project? What are the results and end products? What can these railroad maps be used for? Who

More information

LAWS OF NEW YORK, 1995 CHAPTER 605

LAWS OF NEW YORK, 1995 CHAPTER 605 LAWS OF NEW YORK, 1995 CHAPTER 605 to amend chapter 545 of the laws of 1938, relating to a system of coordinates located in four zones for land boundary and survey station descriptions, in relation to

More information

WeatherHawk Weather Station Protocol

WeatherHawk Weather Station Protocol WeatherHawk Weather Station Protocol Purpose To log atmosphere data using a WeatherHawk TM weather station Overview A weather station is setup to measure and record atmospheric measurements at 15 minute

More information

Regulatory Report (Grid North)

Regulatory Report (Grid North) Forge Energy Winkler County, TX (NAD 27 TC) UL 20 Tensleep #1H OH Survey: SDI Keeper Gyro Drop Regulatory Report (Grid North) 06 December, 2016 Regulatory Report (Grid North) Company: Forge Energy Local

More information

Chapter 1 Overview of Maps

Chapter 1 Overview of Maps Chapter 1 Overview of Maps In this chapter you will learn about: Key points when working with maps General types of maps Incident specific maps Map legend and symbols Map sources A map is a navigational

More information

Structure contours on Abo Formation (Lower Permian) Northwest Shelf of Permian Basin

Structure contours on Abo Formation (Lower Permian) Northwest Shelf of Permian Basin Structure contours on Abo Formation (Lower Permian) Northwest Shelf of Permian Basin By Ronald F. Broadhead 1, Lewis Gillard 1, and Nilay Engin 2 1 New Mexico Bureau of Geology and Mineral Resources, a

More information

Selection and Ranking of Canals in the Gulf Coast Irrigation Division by Expected Seepage and/or Other Types of Losses APPENDIXES

Selection and Ranking of Canals in the Gulf Coast Irrigation Division by Expected Seepage and/or Other Types of Losses APPENDIXES Selection and Ranking of Canals in the Gulf Coast Irrigation Division by Expected Seepage and/or Other Types of Losses APPENDIXES Final Report Submitted to the Lower Colorado River Authority September

More information

ANNEX 23 RESOLUTION MSC.231(82) ADOPTION OF AMENDMENTS TO THE EXISTING MANDATORY SHIP REPORTING SYSTEM IN THE GULF OF FINLAND

ANNEX 23 RESOLUTION MSC.231(82) ADOPTION OF AMENDMENTS TO THE EXISTING MANDATORY SHIP REPORTING SYSTEM IN THE GULF OF FINLAND RESOLUTION MSC.231(82) (adopted on 5 December 2006) ADOPTION OF AMENDMENTS TO THE EXISTING MANDATORY SHIP REPORTING SYSTEM IN THE GULF OF FINLAND THE MARITIME SAFETY COMMITTEE, RECALLING Article 28(b)

More information

Regulatory Report (Grid North)

Regulatory Report (Grid North) EP Energy Reagan County, TX (NAD27 TC) University Central 8-24 N,O,P,Q,R Pad University Central 8-24 QH OH Design: OH Regulatory Report (Grid North) 17 August, 2016 Regulatory Report (Grid North) Company:

More information

Illustrator: Vector base Each line/point store some sort of information Mapping Representation of the world

Illustrator: Vector base Each line/point store some sort of information Mapping Representation of the world Illustrator: Vector base Each line/point store some sort of information Mapping Representation of the world Photoshop Raster base Images can be overlaid Pixel vector data model: [data models] A representation

More information

ESCI 121 Physical Geology

ESCI 121 Physical Geology Observing Streams & Rivers in Google Earth Dr. Jennifer L. Piatek Dept. of Physics and Earth Sciences Central Connecticut State University 506 Copernicus Hall 1615 Stanley Street New Britain, CT 06050

More information

DEVELOPMENT OF GPS PHOTOS DATABASE FOR LAND USE AND LAND COVER APPLICATIONS

DEVELOPMENT OF GPS PHOTOS DATABASE FOR LAND USE AND LAND COVER APPLICATIONS DEVELOPMENT OF GPS PHOTOS DATABASE FOR LAND USE AND LAND COVER APPLICATIONS An Ngoc VAN and Wataru TAKEUCHI Institute of Industrial Science University of Tokyo 4-6-1 Komaba, Meguro-ku, Tokyo 153-8505 Japan

More information

MRD 281. Official Name of the Data Set or Information Holding: Northeastern Ontario Rhyolite Database

MRD 281. Official Name of the Data Set or Information Holding: Northeastern Ontario Rhyolite Database MRD 281 GENERAL INFORMATION Official Name of the Data Set or Information Holding: Northeastern Ontario Rhyolite Database Acronyms are Used to Identify the Data Set or Information Holding: MRD281 Describe

More information

Positional Accuracy of the Google Earth Imagery In The Gaza Strip

Positional Accuracy of the Google Earth Imagery In The Gaza Strip Positional Accuracy of the Google Earth Imagery In The Gaza Strip Maher A. El-Hallaq Associate Professor of Surveying Civil Engineering Department The Islamic University of Gaza, Palestine mhallaq@iugaza.edu.ps

More information

Dr. ABOLGHASEM AKBARI Faculty of Civil Engineering & Earth Resources, University Malaysia Pahang (UMP)

Dr. ABOLGHASEM AKBARI Faculty of Civil Engineering & Earth Resources, University Malaysia Pahang (UMP) Workshop on : Dr. ABOLGHASEM AKBARI Faculty of Civil Engineering & Earth Resources, University Malaysia Pahang (UMP) 14-15 April 2016 Venue: Tehran, Iran GIS definitions GIS: A simplified view of the real

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Introduction Basic Lesson 3: Using Microsoft Excel to Analyze Weather Data: Topography and Temperature This lesson uses NCDC data to compare

More information

Exercise 6: Coordinate Systems

Exercise 6: Coordinate Systems Exercise 6: Coordinate Systems This exercise will teach you the fundamentals of Coordinate Systems within QGIS. In this exercise you will learn: How to determine the coordinate system of a layer How the

More information

Acknowledgments xiii Preface xv. GIS Tutorial 1 Introducing GIS and health applications 1. What is GIS? 2

Acknowledgments xiii Preface xv. GIS Tutorial 1 Introducing GIS and health applications 1. What is GIS? 2 Acknowledgments xiii Preface xv GIS Tutorial 1 Introducing GIS and health applications 1 What is GIS? 2 Spatial data 2 Digital map infrastructure 4 Unique capabilities of GIS 5 Installing ArcView and the

More information