Tutorial 4: Import streets

Size: px
Start display at page:

Download "Tutorial 4: Import streets"

Transcription

1 Copyright Esri. All rights reserved.

2 Table of Contents Tutorial 4: Import streets Copyright Esri. All rights reserved. 2

3 Tutorial 4: Import streets Download items Tutorial data Tutorial PDF Import DXF street data CityEngine street networks CityEngine street networks are attributed graphs, consisting of graph nodes (crossings) and graph edges (street segments). They can be generated with the street grow feature, created in CityEngine, or imported via an external file, such as DXF. Prepare street data for CityEngine In this example, the main road structure for a seaside city has been sketched in Illustrator using its path and geometry tools. Export a DXF file from external CAD applications When exporting the street network, make sure the units fit the CityEngine unit system, which always interprets numbers in imported files as meters. You can open the.dxf in a text editor and look for the vertex data to see what dimensions are written out. In this example, an export scale of 1 pixel equals 10 units is set to get the needed dimensions (see the export options screen shot below). The following is vertex data generated by the DXF export operation: Vertex data... AcDb2dVertex VERTEX... The following screen shot shows suggested options in the Illustrator DXF/DWG Options dialog box: Copyright Esri. All rights reserved. 3

4 Import a DXF file into CityEngine 1. Open the sesame_01.cej scene file. 2. Locate the sesame_streetsketch.dxf file in the data folder. 3. Right-click the file, and choose Import. The Layer 2 data layer is already added as a graph layer to be imported. Copyright Esri. All rights reserved. 4

5 4. Make sure Run Graph Cleanup Tool after Import is checked, and click Next. 5. Enable Intersect Segments, Snap Nodes to Segments, and Merge Nodes. 6. Set the snapping distance to 1 and the merging distance to Click Finish. A new graph layer called sesame_streetsketch appears in the Scene Editor. Alternatively, you can open the sesame_02.cej scene file to get the scene with the imported data. Grow minor streets Once the major streets are imported, you can start to refine the street network and grow the minor streets in between. The Street Grow Algorithm in CityEngine tries to fill existing closed blocks, so you can iteratively fill the street blocks with streets. 1. Focus the street block you want to create minor streets. 2. Create two single small streets using the graph edit tool. This a) specifies the general orientation of the streets in the block, and b) defines a starting node for the Street Grow Algorithm. 3. Manually create some street segments. 4. Select the segments (q key), and fill in the blank areas using the Grow Streets dialog box. Copyright Esri. All rights reserved. 5

6 The sesame_03.cej scene file contains the finished street network. Final result The sesame_12.cej scene file contains a finished street network with extracted and subdivided lots. The following screen shot shows Sesame City with generated minor streets and extracted building footprints: Copyright Esri. All rights reserved. 6

7 The following screen shot shows Sesame City with simple buildings and vegetation models: Import OSM street data "OpenStreetMap is a project aimed squarely at creating and providing free geographic data such as street maps to anyone who wants them." openstreetmap.org OpenStreetMap OSM is an XML-based format used to describe vector data in a map. It defines three basic data types nodes, ways, and closed ways which are used to describe all the other elements: Nodes Points between which segments are drawn. Ways Ordered list of nodes, displayed as connected by line segments in the editor. Closed Ways Ways that go in a complete loop. They are used to describe areas such as parks, lakes, or islands. Copyright Esri. All rights reserved. 7

8 Export an OSM file from OpenStreetMap The OSM data for this tutorial (area of historical Pompeii) was downloaded from api.openstreetmap.org/api/0.6/ map?bbox= , , , Find the.osm file in the data folder of your current CityEngine project. Import an OSM file into CityEngine 1. Open a new scene file by clicking File > New > CityEngine > CityEngine scene. 2. Drag the file into the 3D viewport. 3. In the OSM import dialog box, choose the layers to import. Typically, all streets are in the highway layer and buildings are in the building layer. Use the Select/deselect all check box to deselect all layers if necessary. 4. Set the additional options as shown in the following screen shot: Copyright Esri. All rights reserved. 8

9 5. Click Finish. 6. Accept the suggested coordinate system WGS 1984 UTM Zone 33N. 7. Click OK. Two new layers (street network and shapes) appear in the Scene Editor, and the OSM data is visible in the 3D viewport, with automatically created street shapes on the imported street centerlines. 8. Rename the graph network layer to OSM_Streets. 9. Rename the shape layer to OSM_Shapes. Street widths If you look closely at the generated street shapes, you'll notice that they differ in width. When importing OSM data with the Map OSM tags option enabled, CityEngine creates layer attributes that define street widths from OSM street types. Select a street segment and note its parameters in the Inspector. In the following screen shot, a street with highway type primary has assigned street and sidewalk width parameters according to the layer attribute mapping from the imported OSM Layer OSM_Streets: Copyright Esri. All rights reserved. 9

10 You can manually modify the street width by setting a new width value to the streetwidth parameter (the value will change to a userset value) or by using the Street Edit tool on the toolbar. OSM attribute mapping 1. Select the new graph network layer in the Scene Editor, and look at the layer attribute code in the Inspector. The street segment in the previous image is of type tertiary and is mapped to 6 meters in the function streetwidthbyclass. You can change the mapping here as desired. # // // Example OSM Tag Mapping streetscale = 1 // street width scale factor width = getobjectattr("width") lanes = getobjectattr("lanes") attr streetwidth = // street width depending on available attributes case width > 0 : width * streetscale case lanes > 0 : lanes * 3 * streetscale else : streetwidthbyclass * streetscale * one-way class = getobjectattr("highway") streetwidthbyclass = case class == "primary" : 8 case class == "secondary" : 7 case class == "tertiary" : 6 case class == "motorway" : 12 case class == "trunk" : 11 case class == "road" : 6 case class == "residential" : 5 case class == "footway" : 2 case class == "cycleway" : 2 case class == "steps" : 2 else : 4 one-way = // one-way width correction case getobjectattr("one-way") == "yes" : 0.5 else : 1 sidewalkscale = 1 // sidewalk width scale factor sidewalkwidth = case class == "primary" : 2 case class == "secondary" : 2 case class == "tertiary" : 2 case class == "residential" : 2 else : 0 attr sidewalkwidthleft = sidewalkwidth * sidewalkscale attr sidewalkwidthright = sidewalkwidth * sidewalkscale Data conflicts Imported OSM data often is not very clean and leads to conflicts (for example, overlapping streets). Open blocks or red dotted lines are indications of unconnected segments or overlapping streets, which can lead to invalid blocks. There are a number of ways to deal with such conflicts: Use the Cleanup Graph tool with different parameters. Select fewer streets from the highway layer in the import dialog box. Set street and sidewalk widths to lower values (resulting in less overlapping streets). Manually clean up the street network after import by combining or removing nearby crossings or parallel streets. Copyright Esri. All rights reserved. 10

11 The following screen shots show an example of unconnected graph nodes before and after cleaning: Note: OSM street data usually contains elevation data (attribute level), but it may be faulty. If you activate the Run Generate Bridges Tool option, CityEngine automatically works out a possible solution to deal with this. Add a map layer with georeferenced satellite imagery 1. Click File > Import > CityEngine Layers > Texture Import. 2. Browse to the pompeii_satellite.tif file in the maps folder. The pompeii_satellite.tfw world file accompanies the pompeii_satellite.tif file and stores the georeference information for the image. Therefore, the Size (bounds) and Offset (location) parameters are automatically set. See world file raster datasets for more information. 3. Click Finish to create the new texture map layer. Copyright Esri. All rights reserved. 11

12 Note: CityEngine does not reproject images on import. Choosing the coordinate system on image import is only used to calculate the correct location information. It is therefore crucial to have image data prepared in the projection used in the CityEngine scene. (In the previous example, the Pompeii satellite image has been reprojected in ArcMap to WGS 1984 UTM Zone 33N (the Scene Coordinate System used for this tutorial scene). The following screen shot show the satellite map added to OSM street data: Generate models 1. Select all shapes in the OSM_Shapes layer in the Scene Editor.. 2. Assign the osm_generic.cga rule file. Because some shapes already have a valid start rule set, the Set Start Rule dialog box appears. 3. Click Skip. 4. Click Generate. As you may have noticed, only the streets have been generated. The building shapes were not generated. Select one of them and note in the Inspector that there is no start rule assigned. Copyright Esri. All rights reserved. 12

13 5. To fix it, right-click the selected shape in the viewport and choose Select > Select Objects with Same Start Rule from the context menu. This selects all shapes with no start rule set. 6. In the Inspector, click the Select button next to the Start Rule field. 7. In the Set Start Rule dialog box, choose Lot. 8. Click Generate again. The following screen shot shows simple generic models generated on OSM data: Import shapefile (and geodatabase) street data Because the operation of importing streets from shapefiles and geodatabase files is almost identical, a specific example for geodatabases is not shown here. Shapefile data 1. Locate the streets.shp file in the data folder of the tutorial project. The shapefile also has a.prj file, which ensures correct georeferencing on import. The data consists of polylines that import as street segments in CityEngine. The data also contains a width attribute, which controls street width in CityEngine. Attribute table of the shapefile as displayed in ArcMap: Copyright Esri. All rights reserved. 13

14 Import data 1. Create a new empty CityEngine scene. 2. Drag and drop the streets.shp file from the Navigator into the 3D viewport. 3. During import, CityEngine prompts you to choose a scene coordinate system. The projection defined for the shapefile is suggested as default; use that here. Note: The.shp data in this example contains the width attribute to control the street width. Data with no such attribute results in default street widths. Street widths can also be set manually after import. Mappings to other attribute names are possible as well using attribute mapping. See the CityEngine manual for details. Cleanup The imported street shapes show some conflicting street shapes, marked with red dotted lines. Use the Cleanup Graph operation with Resolve Conflicting Shapes enabled to fix those automatically. You can also use the Simplify Graph tool to reduce unneeded complex graph segments by approximating the graph by deleting unneeded graph settings and setting the tangents. See the Street Network section of the CityEngine manual for details. Assign rule file 1. Select all street shapes. 2. From the File Navigator, drag the sesame_01.cga rule file from the projects rule folder onto the selected shapes in the 3D viewport. Simple street models are generated. Copyright Esri. All rights reserved. 14

15 Copyright Esri. All rights reserved. 15

Tutorial 17: Desert City Tutorial

Tutorial 17: Desert City Tutorial Tutorial 17: Desert City Tutorial Table of Contents Tutorial 17: Desert city........................................... 3 2 Tutorial 17: Desert city Download items Tutorial data Tutorial PDF Prerequisites

More information

Tutorial 2: Terrain and Dynamic City Layouts

Tutorial 2: Terrain and Dynamic City Layouts Tutorial 2: Terrain and Dynamic City Layouts Table of Contents Tutorial 2: Terrain and dynamic city layouts................................... 3 2 Tutorial 2: Terrain and dynamic city layouts Download

More information

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project. v. 12.3 SMS 12.3 Tutorial Working with map projections in SMS Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

More information

Tutorial 3: Map control

Tutorial 3: Map control Table of Contents........................................... 3 2 Download items Tutorial data Tutorial PDF CGA parameters Cities consist of a large number of objects. Controlling these by setting attributes

More information

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project. v. 12.2 SMS 12.2 Tutorial Working with map projections in SMS Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

More information

Display Layers in Geosoft 3D View

Display Layers in Geosoft 3D View Use the New 2D/3D Workflow features in Target for ArcGIS In Target for ArcGIS version 3.5, there are three new interconnected features that make integrating 2D and 3D data in plan and section maps easier.

More information

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Practical: Creating and Editing Shapefiles Using Straight, AutoComplete and Cut Polygon Tools Use ArcCatalog to copy data files from:

More information

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project. v. 10.2 GMS 10.2 Tutorial Working with map projections in GMS Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

More information

Tutorial 1: Essential skills

Tutorial 1: Essential skills Table of Contents.......................................... 3 2 Download items Tutorial data Tutorial PDF Set up a new project Create a new project and scene First, you'll create a new CityEngine project.

More information

In this exercise, you will convert labels into geodatabase annotation so you can edit the text features.

In this exercise, you will convert labels into geodatabase annotation so you can edit the text features. Instructions: Use the provided data stored in a USB. For the report: 1. Start a new word document. 2. Follow an exercise step as given below. 3. Describe what you did in that step in the word document

More information

Explore some of the new functionality in ArcMap 10

Explore some of the new functionality in ArcMap 10 Explore some of the new functionality in ArcMap 10 Scenario In this exercise, imagine you are a GIS analyst working for Old Dominion University. Construction will begin shortly on renovation of the new

More information

Bentley ConceptStation Workshop 2017 FLUG Spring Training Event

Bentley ConceptStation Workshop 2017 FLUG Spring Training Event Bentley ConceptStation Workshop 2017 FLUG Spring Training Event 430 - QuickStart using OpenRoads ConceptStation Bentley Systems, Incorporated 685 Stockton Drive Exton, PA 19341 www.bentley.com Practice

More information

v SMS 12.2 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives

v SMS 12.2 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives v. 12.2 SMS 12.2 Tutorial Objectives This tutorial demonstrates how to read in data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. This tutorial will

More information

Water Distribution System Modeling EPANET. Import an existing water distribution model and modify link and node parameters within WMS

Water Distribution System Modeling EPANET. Import an existing water distribution model and modify link and node parameters within WMS v. 10.1 WMS 10.1 Tutorial Water Distribution System Modeling EPANET Hydraulic Model Import an existing water distribution model and modify link and node parameters within WMS Objectives View an existing

More information

Lab 6: Transforming Spatial Data

Lab 6: Transforming Spatial Data Lab 6: Transforming Spatial Data Objectives: The primary objectives of this lab are to georeference a raster dataset and to create GIS data by digitizing features from an image as a backdrop. Specifics:

More information

3DCity: Create 3D city features

3DCity: Create 3D city features 3DCity: Create 3D city features Workflow: 3D City Creation Version: 1.0 Date: September 12, 2012 Map templates and workflows are ArcGIS resources that can be used to help create 2D / 3D maps and web map

More information

Starting the QGIS Program. Exercise 1: Exploring QGIS

Starting the QGIS Program. Exercise 1: Exploring QGIS Exercise 1: Exploring QGIS In this exercise you will learn how to open maps, manipulate layers, add spatial data, change symbols, and navigate within QGIS. You will also learn to repair broken data links.

More information

1. Preparing the base map. 2. Creating new shapefiles. Collecting Spatial Data by Digitizing

1. Preparing the base map. 2. Creating new shapefiles. Collecting Spatial Data by Digitizing Topics: 1. Preparing the base map 2. Creating new shapefiles 3. Digitizing Features 4. Modifying Existing Features 5. Adding Data Fields and editing Feature Attributes 6. Displaying and Labelling features

More information

v SMS 12.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives

v SMS 12.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives v. 12.1 SMS 12.1 Tutorial Objectives This tutorial demonstrates how to read in data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. This tutorial will

More information

Introducing ArcScan for ArcGIS

Introducing ArcScan for ArcGIS Introducing ArcScan for ArcGIS An ESRI White Paper August 2003 ESRI 380 New York St., Redlands, CA 92373-8100, USA TEL 909-793-2853 FAX 909-793-5953 E-MAIL info@esri.com WEB www.esri.com Copyright 2003

More information

Quick Guide to MapWindow GIS Desktop Application

Quick Guide to MapWindow GIS Desktop Application Quick Guide to MapWindow 1 Quick Guide to MapWindow GIS Desktop Application Version 2 January 2007 Adapted by Tom Croft. This is a summary user guide for commonly used tools and capabilities and does not

More information

Lesson 8 : How to Create a Distance from a Water Layer

Lesson 8 : How to Create a Distance from a Water Layer Created By: Lane Carter Advisor: Paul Evangelista Date: July 2011 Software: ArcGIS 10 Lesson 8 : How to Create a Distance from a Water Layer Background This tutorial will cover the basic processes involved

More information

SPATIAL DESIGN NETWORK ANALYSIS sdna in QGIS

SPATIAL DESIGN NETWORK ANALYSIS sdna in QGIS SPATIAL DESIGN NETWORK ANALYSIS sdna in QGIS 1 Installing sdna+ as plugin for QGIS... 2 1.1 Download & Install sdna... 2 1.2 Setting up sdna in QGIS... 3 1.3 Open the sdna toolbox... 5 2 sdna in QGIS Processing

More information

Lab 3: Digitizing in ArcMap

Lab 3: Digitizing in ArcMap Lab 3: Digitizing in ArcMap What You ll Learn: In this Lab you ll be introduced to basic digitizing techniques using ArcMap. You should read Chapter 4 in the GIS Fundamentals textbook before starting this

More information

4. If you are prompted to enable hardware acceleration to improve performance, click

4. If you are prompted to enable hardware acceleration to improve performance, click Exercise 1a: Creating new points ArcGIS 10 Complexity: Beginner Data Requirement: ArcGIS Tutorial Data Setup About creating new points In this exercise, you will use an aerial photograph to create a new

More information

Introduction to QGIS: Instructor s Notes

Introduction to QGIS: Instructor s Notes 2016 Introduction to QGIS: Instructor s Notes Created by: MARK DE BLOIS, CEO / FOUNDER, UPANDE LIMITED WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR INTERNATIONAL DEVELOPMENT (DFID) Module

More information

Measuring Area/Length of Organisms with GIS

Measuring Area/Length of Organisms with GIS Measuring Area/Length of Organisms with GIS These instructions enable you to measure the length and area of microscopic organisms in ArcGIS from digital photographs. The four-step process involves: georeferencing

More information

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap

ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcCatalog or the ArcCatalog tab in ArcMap ArcGIS Procedures NUMBER OPERATION APPLICATION: TOOLBAR 1 Import interchange file to coverage 2 Create a new 3 Create a new feature dataset 4 Import Rasters into a 5 Import tables into a PROCEDURE Coverage

More information

2) Make sure that the georeferencing extension is on by right-clicking in the task bar area and selecting Georeferencing

2) Make sure that the georeferencing extension is on by right-clicking in the task bar area and selecting Georeferencing HGIS Workshop Module 1 Georeferencing Large Scale Scanned Historical Maps Objective: Learn the Principles of Georeferencing 1) In ArcMap, open the project 01 data\arcdata_10_1\arcdata\toronto\georeference.mxd

More information

Basic Tasks in ArcGIS 10.3.x

Basic Tasks in ArcGIS 10.3.x Basic Tasks in ArcGIS 10.3.x This guide provides instructions for performing a few basic tasks in ArcGIS 10.3.1, such as adding data to a map document, viewing and changing coordinate system information,

More information

Geospatial Day II Introduction to ArcGIS Editor for Open Street Map

Geospatial Day II Introduction to ArcGIS Editor for Open Street Map Geospatial Day II Introduction to ArcGIS Editor for Open Street Map Geospatial Operations Support Team (GOST) Katie McWilliams kmcwilliams@worldbankgroup.org GOST@worldbank.org 0 Using OSM for Network

More information

v SMS 12.2 Tutorial Online Data Dynamic Images Prerequisites None Requirements Internet Connection Time minutes

v SMS 12.2 Tutorial Online Data Dynamic Images Prerequisites None Requirements Internet Connection Time minutes v. 12.2 SMS 12.2 Tutorial Dynamic Images Objectives This lesson is designed to help users become familiar with the Dynamic Image option offered by SMS. This option connects SMS to a web based program that

More information

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project. v. 10.4 GMS 10.4 Tutorial Working with map projections in GMS Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

More information

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center In this workshop, we will cover the basics of working with spatial data, as well as its main uses for archaeology.

More information

Searching and Downloading OpenStreetMap Data

Searching and Downloading OpenStreetMap Data Searching and Downloading OpenStreetMap Data QGIS Tutorials and Tips Author Ujaval Gandhi http://www.spatialthoughts.com This work is licensed under a Creative Commons Attribution 4.0 International License.

More information

Introduction to QGIS: Student Workbook

Introduction to QGIS: Student Workbook 2016 Introduction to QGIS: Student Workbook Created by: MARK DE BLOIS, CEO / FOUNDER, UPANDE LIMITED WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR INTERNATIONAL DEVELOPMENT (DFID) Module 3:

More information

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are:

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are: Validating for Missing Maps Using JOSM This document covers processes for checking data quality in OpenStreetMap, particularly in the context of Humanitarian OpenStreetMap Team and Red Cross Missing Maps

More information

Creating a Smaller Data Set from a Larger Data Set Vector Data

Creating a Smaller Data Set from a Larger Data Set Vector Data Creating a Smaller Data Set from a Larger Data Set Vector Data Written by Barbara Parmenter, revised by Carolyn Talmadge January 16, 2015 USING THE SELECTION METHOD QUICK METHOD BY CREATING A LAYER FILE...

More information

ArcScan for ArcGIS Tutorial

ArcScan for ArcGIS Tutorial ArcGIS 9 ArcScan for ArcGIS Tutorial Copyright 00 008 ESRI All rights reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

ArcScan. for ArcGIS. GIS by ESRI

ArcScan. for ArcGIS. GIS by ESRI ArcScan for ArcGIS GIS by ESRI Copyright 2002 ESRI All rights reserved Printed in the United States of America The information contained in this document is the exclusive property of ESRI This work is

More information

ArcGIS Basics Working with Labels and Annotation

ArcGIS Basics Working with Labels and Annotation ArcGIS Basics Working with Labels and Annotation Labeling in ArcGIS has changed considerably from the old ArcView 3.X version. In ArcGIS label positions are generated automatically, are not selectable,

More information

v SMS 12.3 Tutorial GIS P Prerequisites Time Requirements Objectives

v SMS 12.3 Tutorial GIS P Prerequisites Time Requirements Objectives v. 12.3 SMS 12.3 Tutorial Objectives This tutorial demonstrates how to import data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. This tutorial will instruct

More information

Tutorial 7: Adding Features and Editing Line and Polygon Layers

Tutorial 7: Adding Features and Editing Line and Polygon Layers Tutorial 7: Adding Features and Editing Line and Polygon Layers Tutorial Content 7.1. When should I use a line layer to represent data? 7.2. How do I add line features? 7.3. How to use the snapping tool?

More information

GIS Basics for Urban Studies

GIS Basics for Urban Studies GIS Basics for Urban Studies Date: March 21, 2018 Contacts: Mehdi Aminipouri, Graduate Peer GIS Faciliator, SFU Library (maminipo@sfu.ca) Keshav Mukunda, GIS & Map Librarian Librarian for Geography (kmukunda@sfu.ca)

More information

v SMS 11.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives

v SMS 11.1 Tutorial GIS Requirements GIS Module Map Module ArcGis (Optional) Time minutes Prerequisites None Objectives v. 11.1 SMS 11.1 Tutorial GIS Objectives This tutorial demonstrates how you can read in GIS data, visualize it, and convert it into SMS coverage data that could be used to build a numeric model. We will

More information

Lab.4 & Assignment 2. Lab4. Conversion of Hardcopy Map to ArcGIS Map

Lab.4 & Assignment 2. Lab4. Conversion of Hardcopy Map to ArcGIS Map EATS4400 GIS Lab.4 & Assignment 2 Lab4 Conversion of Hardcopy Map to ArcGIS Map In this lab exercise you will have chance to go through the steps to convert hardcopy map into digital map for ArcGIS. Digitizing

More information

Roadway Alignments and Profiles

Roadway Alignments and Profiles NOTES Module 15 Roadway Alignments and Profiles In this module, you learn how to create horizontal alignments, surface profiles, layout (design) profiles, and profile views in AutoCAD Civil 3D. This module

More information

_Tutorials. Arcmap. Linking additional files outside from Geodata

_Tutorials. Arcmap. Linking additional files outside from Geodata _Tutorials Arcmap Linking additional files outside from Geodata 2017 Sourcing the Data (Option 1): Extracting Data from Auckland Council GIS P1 First you want to get onto the Auckland Council GIS website

More information

Digitising a map in arcgis desktop 10.3

Digitising a map in arcgis desktop 10.3 Digitising a map in arcgis desktop 10.3 1 CONTENTS 2 Evaluating your map... 2 3 Setting up the base map... 3 4 Georeferencing your map/maps... 3 4.1 Georeferencing tips.... 4 5 Digitising your maps...

More information

Schematics in ArcMap Tutorial

Schematics in ArcMap Tutorial Schematics in ArcMap Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Introducing Schematics in ArcMap Tutorial........................ 3 Exercise 1: Getting familiar with Schematics

More information

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are:

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are: Validating for Missing Maps Using JOSM This document covers processes for checking data quality in OpenStreetMap, particularly in the context of Humanitarian OpenStreetMap Team and Red Cross Missing Maps

More information

Using ArcScan for ArcGIS

Using ArcScan for ArcGIS ArcGIS 9 Using ArcScan for ArcGIS Copyright 00 005 ESRI All rights reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

ArcGIS Extension User's Guide

ArcGIS Extension User's Guide ArcGIS Extension 2010 - User's Guide Table of Contents OpenSpirit ArcGIS Extension 2010... 1 Installation ( ArcGIS 9.3 or 9.3.1)... 3 Prerequisites... 3 Installation Steps... 3 Installation ( ArcGIS 10)...

More information

Calculate a Distance Matrix of Locations along River Network

Calculate a Distance Matrix of Locations along River Network Calculate a Distance Matrix of Locations along River Network These instructions enable you to measure the length of line segments between points, which is much more useful than simple straight-line distances

More information

Exercise 3: Creating a Geodatabase

Exercise 3: Creating a Geodatabase Exercise 3: Creating a Geodatabase Introduction: A database (DB) is an organized collection of data, that we can visualize as being a group of tables. An example of a simple database can be seen below:

More information

Appendix 2: Random Plots Workbook: Unstratified Sample

Appendix 2: Random Plots Workbook: Unstratified Sample Appendix 2: Random Plots Workbook: Unstratified Sample These instructions will help users of all skill levels create a random sample of i-tree Eco plot centers, plot areas, and the associated i-tree Eco-required

More information

Creating USNG Mapbooks

Creating USNG Mapbooks Creating USNG Mapbooks This is a basic guide for creating a map book based on the U.S. National Grid (USNG), using Data Driven Pages in ArcMap. Data Driven Pages is a feature of ArcMap that was added at

More information

QUICK START GUIDE. SOLO Forest

QUICK START GUIDE. SOLO Forest QUICK START GUIDE SOLO Forest Software Installation 1. For PC installation, run the.msi file. 2. For Mobile device installation, copy the.cab file onto the device 3. Run the.cab file Starting the Program

More information

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch User Guide for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch allows the user to quickly create, or sketch, features in ArcMap using easy-to-use

More information

Objectives Learn how to work with projections in WMS, and how to combine data from different coordinate systems into the same WMS project.

Objectives Learn how to work with projections in WMS, and how to combine data from different coordinate systems into the same WMS project. s v. 11.0 Projections / Coordinate Systems WMS 11.0 Tutorial Projections / Coordinate Systems Working with map projections in WMS Objectives Learn how to work with projections in WMS, and how to combine

More information

Geocoding Reference USA data in ArcMap 9.3

Geocoding Reference USA data in ArcMap 9.3 Tufts GIS Tip Sheet Geocoding Reference USA data in ArcMap 9.3 Written by Barbara Parmenter Revised 3/1/2011 In this exercise, you will map businesses or services for a town in the Boston metropolitan

More information

Lecture 7 Digitizing. Dr. Zhang Spring, 2017

Lecture 7 Digitizing. Dr. Zhang Spring, 2017 Lecture 7 Digitizing Dr. Zhang Spring, 2017 Model of the course Using and making maps Navigating GIS maps Map design Working with spatial data Geoprocessing Spatial data infrastructure Digitizing File

More information

Esri and OpenStreetMap: Tools, Apps, Maps. Christine White - Esri Monday March 10 th, 4:00pm - 4:30pm

Esri and OpenStreetMap: Tools, Apps, Maps. Christine White - Esri Monday March 10 th, 4:00pm - 4:30pm Esri and OpenStreetMap: Tools, Apps, Maps Christine White - Esri Monday March 10 th, 4:00pm - 4:30pm What is OpenStreetMap? http://www.openstreetmap.org Apply open data principles from to the creation

More information

v Prerequisite Tutorials GSSHA Modeling Basics Stream Flow GSSHA WMS Basics Creating Feature Objects and Mapping their Attributes to the 2D Grid

v Prerequisite Tutorials GSSHA Modeling Basics Stream Flow GSSHA WMS Basics Creating Feature Objects and Mapping their Attributes to the 2D Grid v. 10.1 WMS 10.1 Tutorial GSSHA Modeling Basics Developing a GSSHA Model Using the Hydrologic Modeling Wizard in WMS Learn how to setup a basic GSSHA model using the hydrologic modeling wizard Objectives

More information

George Mason University Department of Civil, Environmental and Infrastructure Engineering. Dr. Celso Ferreira Prepared by Lora Baumgartner

George Mason University Department of Civil, Environmental and Infrastructure Engineering. Dr. Celso Ferreira Prepared by Lora Baumgartner George Mason University Department of Civil, Environmental and Infrastructure Engineering Dr. Celso Ferreira Prepared by Lora Baumgartner Exercise Topic: Getting started with HEC GeoRAS Objective: Create

More information

Managing Imagery and Raster Data Using Mosaic Datasets

Managing Imagery and Raster Data Using Mosaic Datasets 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Managing Imagery and Raster Data Using Mosaic Datasets Hong Xu, Prashant Mangtani Esri UC2013. Technical

More information

Lab#6: Editing Shapefiles With ArcMap. create a point layer from a text file, then join a table to your point attribute table

Lab#6: Editing Shapefiles With ArcMap. create a point layer from a text file, then join a table to your point attribute table NRM338 Fall 2018 Lab#6 Page#1 of 17 In this lab, you will Lab#6: Editing Shapefiles With ArcMap create a point layer from a text file, then join a table to your point attribute table create hyperlinks

More information

GSSHA WMS Basics Loading DEMs, Contour Options, Images, and Projection Systems

GSSHA WMS Basics Loading DEMs, Contour Options, Images, and Projection Systems v. 10.0 WMS 10.0 Tutorial GSSHA WMS Basics Loading DEMs, Contour Options, Images, and Projection Systems Learn how to work with DEMs and images and to convert between projection systems in the WMS interface

More information

Quarry Evolution in the Nova Olinda Region, Ceará, Brazil Lizzy McKinnon GIS and GPS Applications, Fall 2016

Quarry Evolution in the Nova Olinda Region, Ceará, Brazil Lizzy McKinnon GIS and GPS Applications, Fall 2016 Quarry Evolution in the Nova Olinda Region, Ceará, Brazil Lizzy McKinnon GIS and GPS Applications, Fall 2016 ABSTRACT Quarry growth in the Nova Olinda region is rapid and poorly understood. This study

More information

Soil and Water Conservation Laboratory Standard Operating Procedure

Soil and Water Conservation Laboratory Standard Operating Procedure Soil and Water Conservation Laboratory Standard Operating Procedure Sherman 230, Soil and Water Conservation Laboratory, UH Mānoa Collecting GPS data with the Trimble handheld through ArcGIS & related

More information

Feature Analyst Quick Start Guide

Feature Analyst Quick Start Guide Feature Analyst Quick Start Guide River Extraction River extractions are much like road extractions, in that you are trying to identify a continuous object running through other features within your image.

More information

ArcGIS Pro Editing. Jennifer Cadkin & Phil Sanchez

ArcGIS Pro Editing. Jennifer Cadkin & Phil Sanchez ArcGIS Pro Editing Jennifer Cadkin & Phil Sanchez ArcGIS Pro Editing Overview Provides tools that allow you to maintain, update, and create new data - Modifying geometry, drawing new features - Entering

More information

I. An Intro to ArcMap Version 9.3 and 10. 1) Arc Map is basically a build your own Google map

I. An Intro to ArcMap Version 9.3 and 10. 1) Arc Map is basically a build your own Google map I. An Intro to ArcMap Version 9.3 and 10 What is Arc Map? 1) Arc Map is basically a build your own Google map a. Display and manage geo-spatial data (maps, images, points that have a geographic location)

More information

Lab 3: Digitizing in ArcGIS Pro

Lab 3: Digitizing in ArcGIS Pro Lab 3: Digitizing in ArcGIS Pro What You ll Learn: In this Lab you ll be introduced to basic digitizing techniques using ArcGIS Pro. You should read Chapter 4 in the GIS Fundamentals textbook before starting

More information

Mosaic Tutorial: Advanced Workflow

Mosaic Tutorial: Advanced Workflow Mosaic Tutorial: Advanced Workflow This tutorial demonstrates how to mosaic two scenes with different color variations. You will learn how to: Reorder the display of the input scenes Achieve a consistent

More information

16) After contour layer is chosen, on column height_field, choose Elevation, and on tag_field column, choose <None>. Click OK button.

16) After contour layer is chosen, on column height_field, choose Elevation, and on tag_field column, choose <None>. Click OK button. 16) After contour layer is chosen, on column height_field, choose Elevation, and on tag_field column, choose . Click OK button. 17) The process of TIN making will take some time. Various process

More information

Working with Events in ArcGIS 8.2

Working with Events in ArcGIS 8.2 Working with Events in ArcGIS 8.2 This tutorial is a companion to the article, Understanding Dynamic Segmentation: Working with Events in ArcGIS in the October December 2002 issue of ArcUser magazine.

More information

CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION

CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION CHAPTER 2 GEOREFERENCING AND SHAPEFILE CREATION Georeferencing is the process of assigning real-world coordinates to each pixel of the raster. These coordinates are obtained by doing field surveys - collecting

More information

Getting Started with GIS using ArcGIS 10.6 What is GIS? and - Module 1 Creating a map document

Getting Started with GIS using ArcGIS 10.6 What is GIS? and - Module 1 Creating a map document Getting Started with GIS using ArcGIS 10.6 What is GIS? and - Module 1 Creating a map document Marcel Fortin Map & Data Library mdl@library.utoronto.ca 2018 http://mdl.library.utoronto.ca This workshop

More information

Making Yield Contour Maps Using John Deere Data

Making Yield Contour Maps Using John Deere Data Making Yield Contour Maps Using John Deere Data Exporting the Yield Data Using JDOffice 1. Data Format On Hard Drive 2. Start program JD Office. a. From the PC Card menu on the left of the screen choose

More information

Import, view, edit, convert, and digitize triangulated irregular networks

Import, view, edit, convert, and digitize triangulated irregular networks v. 10.1 WMS 10.1 Tutorial Import, view, edit, convert, and digitize triangulated irregular networks Objectives Import survey data in an XYZ format. Digitize elevation points using contour imagery. Edit

More information

Bentley OpenRoads Workshop 2017 FLUG Fall Training Event

Bentley OpenRoads Workshop 2017 FLUG Fall Training Event Bentley OpenRoads Workshop 2017 FLUG Fall Training Event F-1E - QuickStart using OpenRoads ConceptStation Bentley Systems, Incorporated 685 Stockton Drive Exton, PA 19341 www.bentley.com Practice Workbook

More information

Workshop #12 Using ModelBuilder and Customizing the ArcMap Interface

Workshop #12 Using ModelBuilder and Customizing the ArcMap Interface Workshop #12 Using ModelBuilder and Customizing the ArcMap Interface Toolboxes can be created in ArcToolbox, in folders or within geodatabases. In this tutorial you will place the toolbox in your project

More information

Files Used in this Tutorial

Files Used in this Tutorial RPC Orthorectification Tutorial In this tutorial, you will use ground control points (GCPs), an orthorectified reference image, and a digital elevation model (DEM) to orthorectify an OrbView-3 scene that

More information

User Manual. Version 2.0

User Manual. Version 2.0 User Manual Version 2.0 Table of Contents Introduction Quick Start Inspector Explained FAQ Documentation Introduction Map ity allows you to use any real world locations by providing access to OpenStreetMap

More information

Create a personal geodatabase

Create a personal geodatabase Create a personal geodatabase To create a personal geodatabase that corresponds to the same release as the ArcGIS for Desktop client you are using, follow these steps: 1. In ArcCatalog, right-click the

More information

Table of Contents. 1. Prepare Data for Input. CVEN 2012 Intro Geomatics Final Project Help Using ArcGIS

Table of Contents. 1. Prepare Data for Input. CVEN 2012 Intro Geomatics Final Project Help Using ArcGIS Table of Contents 1. Prepare Data for Input... 1 2. ArcMap Preliminaries... 2 3. Adding the Point Data... 2 4. Set Map Units... 3 5. Styling Point Data: Symbology... 4 6. Styling Point Data: Labels...

More information

Making flow direction data

Making flow direction data Step 4. Making flow direction data Training Module 1) The first step in hydrology analysis is making flow direction data. On Arc Toolbox window, click symbol + on Spatial Analyst Tools Hydrology, double

More information

v SMS 11.1 Tutorial Overview Time minutes

v SMS 11.1 Tutorial Overview Time minutes v. 11.1 SMS 11.1 Tutorial Overview Objectives This tutorial describes the major components of the SMS interface and gives a brief introduction to the different SMS modules. It is suggested that this tutorial

More information

v Overview SMS Tutorials Prerequisites Requirements Time Objectives

v Overview SMS Tutorials Prerequisites Requirements Time Objectives v. 12.2 SMS 12.2 Tutorial Overview Objectives This tutorial describes the major components of the SMS interface and gives a brief introduction to the different SMS modules. Ideally, this tutorial should

More information

GIS Exercise 10 March 30, 2018 The USGS NCGMP09v11 tools

GIS Exercise 10 March 30, 2018 The USGS NCGMP09v11 tools GIS Exercise 10 March 30, 2018 The USGS NCGMP09v11 tools As a result of the collaboration between ESRI (the manufacturer of ArcGIS) and USGS, ESRI released its Geologic Mapping Template (GMT) in 2009 which

More information

v Water Distribution System Modeling Working with WMS Tutorials Building a Hydraulic Model Using Shapefiles Prerequisite Tutorials None

v Water Distribution System Modeling Working with WMS Tutorials Building a Hydraulic Model Using Shapefiles Prerequisite Tutorials None v. 10.1 WMS 10.1 Tutorial Water Distribution System Modeling Working with EPANET Building a Hydraulic Model Using Shapefiles Objectives Open shapefiles containing the geometry and attributes of EPANET

More information

CityEngine: An Introduction. Eric Wittner 3D Product Manager

CityEngine: An Introduction. Eric Wittner 3D Product Manager CityEngine: An Introduction Eric Wittner 3D Product Manager 2 minute city LegoScript + parameterized instructions + Legos Shapes = Scope and Geometry Shape Operations modify scope and geometry Rule = Sequence

More information

Georeferencing and Digitizing

Georeferencing and Digitizing INTRODUCTION There is a great deal of geographic data available in formats that cannot be immediately integrated with other GIS data. In order to use these types of data in GIS it is necessary to align

More information

ArcGIS Pro Editing: An Introduction. Jennifer Cadkin & Phil Sanchez

ArcGIS Pro Editing: An Introduction. Jennifer Cadkin & Phil Sanchez ArcGIS Pro Editing: An Introduction Jennifer Cadkin & Phil Sanchez See Us Here WORKSHOP ArcGIS Pro Editing: An Introduction LOCATION SDCC - Ballroom 20 D TIME FRAME Thursday 10:00 11:00 ArcGIS Pro: 3D

More information

Introduction to GIS 2011

Introduction to GIS 2011 Introduction to GIS 2011 Digital Elevation Models CREATING A TIN SURFACE FROM CONTOUR LINES 1. Start ArcCatalog from either Desktop or Start Menu. 2. In ArcCatalog, create a new folder dem under your c:\introgis_2011

More information

v Getting Started An introduction to GMS GMS Tutorials Time minutes Prerequisite Tutorials None

v Getting Started An introduction to GMS GMS Tutorials Time minutes Prerequisite Tutorials None v. 10.3 GMS 10.3 Tutorial An introduction to GMS Objectives This tutorial introduces GMS and covers the basic elements of the user interface. It is the first tutorial that new users should complete. Prerequisite

More information

New Media in Landscape Architecture: Advanced GIS

New Media in Landscape Architecture: Advanced GIS New Media in Landscape Architecture: Advanced GIS - Projections and Transformations - Version 10.2, English ANHALT UNIVERSITY OF APPLIED SCIENCES Hochschule Anhalt Author: Dr. Matthias Pietsch Tutorial-Version:

More information

Creating Contours using ArcMap

Creating Contours using ArcMap Creating Contours with ArcMap and ArcScene Digital elevation models (DEMs) are geospatial datasets that contain elevation values sampled according to a regularly spaced rectangular grid. They can be used

More information

Editing Parcel Fabrics Tutorial

Editing Parcel Fabrics Tutorial Editing Parcel Fabrics Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Tutorial: Getting started with parcel fabric editing...................... 3 Tutorial: Creating new parcels

More information