Gunnison County Web Map

Size: px
Start display at page:

Download "Gunnison County Web Map"

Transcription

1 Gunnison County Web Map Find Data - Find data - Navigate tools - Mouse over tooltip Make Maps - Layers - Legend - Drawing tools - Printing Analysis - Measurement - Selecting - Queries Spatial SQL - Basic SQL - Spatial About the Data FINDING DATA To find data if you know the data your after (i.e., a property owner s name),then use the Find Data search tool. To find data if you know where on the map to look, use the various Navigation tools or the Zoom to tools. Once you ve navigated to the desired area on the map, you can then use the info tool to click on the map object which will bring up its data table. If the layer contains a linked PDF, uncheck the box Info from all layers clicked? to allow the field containing the link to become clickable. URL hyperlinks within a layer are accessed via the data table or by using the hyperlink tool. By default, the map displays X, Y coordinates of the mouse cursor underneath the map in State Plane, Colorado Central, NAD 83. The coordinates can be changed to display longitude and latitude by clicking the blue text switch to Long/Lat coord. Click the blue label to the left of the readout to toggle between the 3 common forms (DD Decimal degrees, GPS Degree Decimal Minutes, and DMS Degree Minutes Seconds). For quick display of a layer s data as you mouse over map objects, enable the tool tip setting for the desired layer under the Settings dropdown (see image to the right). For faster map redraws if your internet connection is slow, consider switching to a smaller screen size using the dropdown in the bottom left corner.

2 MAKING MAPS Use the Layers dropdown to turn on/off the desired mapping layers. The Legend dropdown will automatically update with the selected layers. The Drawing toolbar is accessed from the pencil icon and It contains tools to: 1) draw various shapes or labels on the map; 2) edit the data attached to those shapes; 3) delete drawn objects; and 4) export the drawn objects as a shapefile (a GIS interchange format). The objects drawn are placed into a layer called Drawing Layer. Use the Print tool to export your map to a PDF or JPEG format. The PDF format usually provides the best image and allows for turning layers on/off. ANALYZING DATA There are 3 measurement tools to measure distances, areas, as well as optimal routes along roads. The route is determined by indicating the start and end point along the roads. This function will also provide driving directions, however, it simply finds the shortest route and does not consider the type of road (i.e., 4-wheel drive) or if a road is closed in winter. The route is drawn into the Drawing Layer which can be cleared via the delete tools in the Drawing toolbar (see above). There are a variety of preset queries available to do more indepth analysis of the data. Queries can work on the entire dataset or only on a selected group of map objects. In addition, some queries return only data (i.e., area statistics of selected parcels), while others draw objects into the Drawing Layer (i.e., buffer around selected objects). Queries that return data can be modified by first running the query and then opening up the Free SQL box (described below) to expose its parameters. The user can then change parameters and rerun the query in the Free SQL box. Please note that in order to conserve computer resources, queries are limited to display 500 records in the table. However, queries are not limited in the number of objects that can be selected on the map. To select the desired objects, use the selection tool, as well as the selection mode tool to add to, delete from, or replace the current selection.

3 The table displaying query results can be opened or closed with the table tool and the results can be cleared with the unselect tool. The table contents can be exported to Excel if desired. Advanced users can use the Custom SQL options to write their own queries using either the SQL Builder or Free SQL option. The queries are written in Manifold GIS s implementation of Structured Query Language that includes many spatial functions. These spatial functions create wonderful flexibility but require special knowledge to use. The SQL builder provides a means to build simple queries with minimal understanding while the Free SQL box provides no assistance. BASIC SQL AND SPATIAL FUNCTIONS Always begin with Select. Then determine the desire fields to be returned, list them in this example s format: name, city, state, zipcode or simply use * as a wildcard for all fields. Next enter from and choose what layers contain the data, such as parcels. The next step is to limit your query with a where clause inconjunction with a field name like [Account Type] and an operator, such as =, >, <, etc. If the field contains text then place it within quotes. Only exact case sensitive matches will be returned, so be sure to look at the table first. Also, all text in the parcel layer is in uppercase. Place field names with spaces in brackets, such as [geologic hazards]. EXAMPLES: Select all fields from all parcels that have an agriculture account type. select * from parcels where [Account Type] = "Agricultural" Change query to residential account type and a land actual value of greater than $100,000. select * from parcels where [Account Type] = "Residential" and [Sale Price] > Change query to a land actual value of greater than $20,000 or less than $100,000. select * from parcels where [Account Type] = "Residential" and [GIS Acres] between 10 and 35 Change query to select several different account types. select * from parcels where [Account Type] in ("Commercial", "Mixed Use") and [Mail State] <> "CO" Change query to select several different account types where RES is exists within data string. select * from parcels where [Owner Name] like ("%SMITH%") Adding spatial functions such as buffer, distance, contains, centroid, clipintersect, union, boundary, linepart, etc. to a SQL query provides a means to create much more interesting analysis but requires more knowledge. The online Manifold help manual provides that knowledge for the adventurous, however it s easier to simply modify a few parameters from an existing query instead. Here are some examples. Also the SQL of preset queries is exposed in the Free SQL box to allow changing their parameters.

4 EXAMPLES: Select all parcels that are within 50 feet of Gothic Avenue. select * from parcels where distance(parcels.id, (select id from roads where fullname = "GOTHIC AVE")) < 50 Select all parcels touching Ohio Creek. select * from parcels, streams where touches(parcels.id, streams.id) and Streams.name = "OHIO CREEK" Return the acres of geologic hazards contained in a parcel. select [Description], round(sum(area(clipintersect(parcels.id, [geologic hazards].id))/43560),2) as Acres from parcels, [geologic hazards] where [Parcel number] = " " group by [Description] Note: queries that return several thousand records or that involve complex spatial functions may take awhile to run. Queries that are too involved for our web server may time-out all together. ABOUT THE DATA LAYERS Parcels - Gunnison County GIS updates this layer continually as changes occur or for corrections. It varies widely in accuracy from < 10 ft in towns and some subdivisions to hundreds of feet in mining claim areas were survey land positions are not in our system. Information regarding survey land positions are always welcome. Subdivisions Gunnison County GIS maintains this layer and updates the information as changes occur. Section Lines Originally from the U.S. BLM Public Land Survey System, but many sections have been modified by Gunnison County GIS to fit the parcel layer. Towns Created by Gunnison County GIS, using annexation information from the towns. Addresses Gunnison County GIS updates this layer continually as changes occur or errors are fixed. This point layer was originally created in 2007 from center of parcels using Assessor situs addresses for E911. The layer has been greatly improved from its beginnings by fixing incorrect addresses, readdressing poorly addressed locations, and moving address points to overlay structures on aerials. Roads Gunnison County GIS created this layer in 2006 by digitizing from the 2005 NAIP aerial photography. It gets updated as needed with new roads, road name changes, and corrections. Places Downloaded from the USGS at This point layer contains most of the labels found on USGS topographical maps. The accuracy is unknown but locations should be considered very approximate. Streams and Lakes Downloaded from the Colorado State Division of Wildlife at The data has been slightly modified by Gunnison County GIS, such as modifying data tables and merging stream records.

5 Geologic Hazards Created by Colorado State Geologic Survey in the late 1970s. More info available at Mapping was based on 1:24,000 topographical maps from the USGS. Wildfire Hazards This layer was created jointly by the Colorado State Forest Service (CSFS) and Gunnison County GIS in 2003, using a methodology provided by CSFS that involves vegetation type, slope, aspect, forest density, low vegetation, and insects/disease. The vegetation was mapped using 1:24,000, black and white aerial photography with field checks and the terrain used 30 meter DEMs. Aerial Photography The 2005 and 2009 aerials come from the National Agriculture Imagery Program, USDA. They are 1 meter resolution, county mosaics. The 2007 aerial provides 6-inch resolution and was flown for the Standard Mine Superfund cleanup, but expanded for the Crested Butte area. USGS topographical Maps This is a mosaic of 1:24,000 scale USGS maps. Recent Sales This layer shows the parcels with sales within the last 4 years of the current year. The layer is linked to the following query: select [geom (I)], year(saledt) as [Year] from parcels where [SaleDT] > DateAdd("yyyy", -4, Current_Date) General Data Disclaimer: The data herein is general in nature and not assumed to be complete nor accurate in its entirety and is therefore to be used with all discretions necessary. The data portrayed should not be relied upon to establish legal title, boundary lines, the precise location of improvements, ownership, maintenance, easements or public right-of-ways.

Map Navigation Controls. An Interactive, Locally Based Knowledge Resource LivingstonLive.org/maps OR gisapps/livingstonviewerinternal

Map Navigation Controls. An Interactive, Locally Based Knowledge Resource LivingstonLive.org/maps OR gisapps/livingstonviewerinternal Livingston County s Internet Mapping Portal User Guide An Interactive, Locally Based Knowledge Resource LivingstonLive.org/maps OR gisapps/livingstonviewerinternal A vast majority of County government

More information

Kodiak Island Borough GIS Online Tools

Kodiak Island Borough GIS Online Tools Kodiak Island Borough GIS Online Tools The Kodiak Island Borough website is located at http://www.kodiakak.us/ You can access the GIS resources by clicking on the MAP CENTER icon in the middle of the page,

More information

3D-GIS in the Cloud USER MANUAL. August, 2014

3D-GIS in the Cloud USER MANUAL. August, 2014 3D-GIS in the Cloud USER MANUAL August, 2014 3D GIS in the Cloud User Manual August, 2014 Table of Contents 1. Quick Reference: Navigating and Exploring in the 3D GIS in the Cloud... 2 1.1 Using the Mouse...

More information

Ingham County Equalization/Tax Mapping Viewer Tutorial

Ingham County Equalization/Tax Mapping Viewer Tutorial MAP LAYERS (RIGHT SIDE) All data layers listed here can be displayed on the map. To display a layer, make sure that the box is checked (by default parcel and city layers are displayed, uncheck to turn

More information

Geocortex HTML 5 Viewer Manual

Geocortex HTML 5 Viewer Manual 1 FAQ Nothing Happens When I Print? How Do I Search? How Do I Find Feature Information? How Do I Print? How can I Email A Map? How Do I See the Legend? How Do I Find the Coordinates of a Location? How

More information

Help Document for WWW.SAGIS.ORG. Step by step, how-to instructions for navigating and using the Savannah Area GIS viewer.

Help Document for WWW.SAGIS.ORG. Step by step, how-to instructions for navigating and using the Savannah Area GIS viewer. Help Document for WWW.SAGIS.ORG Step by step, how-to instructions for navigating and using the Savannah Area GIS viewer. 1 SAGIS Savannah Area GIS is focused on providing access to Geospatial data in a

More information

Watershed Ecosystem & Restoration Services (WERS Mapping Application) User s Guide

Watershed Ecosystem & Restoration Services (WERS Mapping Application) User s Guide Watershed Ecosystem & Restoration Services (WERS Mapping Application) User s Guide CONTACT Site Administrators: David Gillum, GISP, AACO, OIT Rick Fisher, AACO, WERS ITGILL00@aacounty.org rfisher@aacounty.org

More information

DCAD Website Instruction Manual

DCAD Website Instruction Manual DCAD Website Instruction Manual - 1-9/1/2010 INDEX PAGE Search Appraisal ---------------------------- 3-4 Owner Name ------------------------------ 5-6 Account Number ------------------------------ 7 Street

More information

delorme.com/earthmate Earthmate A Guide to the Complete GPS Navigation Solution for Smartphones and Tablets.

delorme.com/earthmate Earthmate A Guide to the Complete GPS Navigation Solution for Smartphones and Tablets. delorme.com/earthmate Earthmate A Guide to the Complete GPS Navigation Solution for Smartphones and Tablets. EARTHMATE I N C L U D E D A guide to Earthmate Hunt Edition is included in this document. Earthmate

More information

National Register of Historic Places: GIS Webinar Cultural Resource GIS Facility National Park Service June 2012

National Register of Historic Places: GIS Webinar Cultural Resource GIS Facility National Park Service June 2012 National Register of Historic Places: GIS Webinar Cultural Resource GIS Facility National Park Service June 2012 In February and March 2012 the National Register of Historic Places held webinars in conjunction

More information

Investigating Natural Gas Production and Consumption with Web GIS Teacher Handout

Investigating Natural Gas Production and Consumption with Web GIS Teacher Handout Web GIS Natural Gas Teacher Handout Investigating Natural Gas Production and Consumption with Web GIS Teacher Handout Natural gas is made up of remains of dead plants and animals that lived millions of

More information

Texas Wildfire Risk Assessment Portal (TxWRAP) User Manual. Texas A&M Forest Service

Texas Wildfire Risk Assessment Portal (TxWRAP) User Manual. Texas A&M Forest Service Texas Wildfire Risk Assessment Portal (TxWRAP) User Manual Texas A&M Forest Service October 2012 Table of Contents 1 ABOUT TXWRAP... 7 1.1 ACCESSING TXWRAP... 7 1.2 GETTING SUPPORT... 8 Documentation...

More information

Using the Kendall County GIS Basic GIS Viewer

Using the Kendall County GIS Basic GIS Viewer Using the Kendall County GIS Basic GIS Viewer Link to Viewer Gallery: http://gis.co.kendall.il.us/gisviewer_gallery.aspx Help and About Initial View Introduction Navigation Identify Tool Search Tool Search

More information

IDOT Getting Around Illinois Interactive Map Quick Reference Guide

IDOT Getting Around Illinois Interactive Map Quick Reference Guide IDOT Getting Around Illinois Interactive Map Quick Reference Guide 1 2 3 4 5 6 7 8 9 10 1) Navigation Tools The Navigation tools are used to reposition the visible area on the map display. Zoom In Clicking

More information

How to georectify an image in ArcMap 10

How to georectify an image in ArcMap 10 How to georectify an image in ArcMap 10 The University Library has a large collection of historical aerial photos for some North Carolina Counties ( http://www.lib.unc.edu/reference/gis/usda/index.html

More information

Chapter 6: Data Acquisition Methods, Procedures, and Issues

Chapter 6: Data Acquisition Methods, Procedures, and Issues Chapter 6: Data Acquisition Methods, Procedures, and Issues In this Exercise: Data Acquisition Downloading Geographic Data Accessing Data Via Web Map Service Using Data from a Text File or Spreadsheet

More information

Finding GIS Data and Preparing it for Use

Finding GIS Data and Preparing it for Use Finding_Data_Tutorial.Doc Page 1 of 19 Getting Ready for the Tutorial Sign Up for the GIS-L Listserv Finding GIS Data and Preparing it for Use The Yale University GIS-L Listserv is an internal University

More information

Getting Started With Mortgage MarketSmart

Getting Started With Mortgage MarketSmart Getting Started With Mortgage MarketSmart We are excited that you are using Mortgage MarketSmart and hope that you will enjoy being one of its first users. This Getting Started guide is a work in progress,

More information

Activity: Using ArcGIS Explorer

Activity: Using ArcGIS Explorer Activity: Using ArcGIS Explorer Requirements You must have ArcGIS Explorer for this activity. Preparation: Download ArcGIS Explorer. The link below will bring you to the ESRI ArcGIS Explorer download page.

More information

Expert Review and Questionnaire (PART I)

Expert Review and Questionnaire (PART I) NASA ARC Project 1-9-2001 Web-based Geospatial Information Services and Analytic Tools for Habitat Conservation and Management Expert Review and Questionnaire (PART I) Thank you for participating in this

More information

Contents. The OWRB Floodplain Viewer. Creating Maps... 8. Helpful Tips... 10

Contents. The OWRB Floodplain Viewer. Creating Maps... 8. Helpful Tips... 10 Contents QUICK START GUIDE... 2-5 Add layers...9 Search for Layers...9 COMPREHENSIVE GUIDE... 6 Navigate the map...6 Locate specific places...6 Add layer from file...9 Add layer from web...9 Display pop-up

More information

Mapping Your Land: An Overview for Landowners

Mapping Your Land: An Overview for Landowners Mapping Your Land: An Overview for Landowners Online Mapping and Spatial Resources for the Private Forest Landowner Tutorials by John C. Gilbert 1 and John S. Kush 1 Design and Layout by Elizabeth P. Bowersock

More information

CARVER COUNTY FIBER MAPPING USER GUIDE

CARVER COUNTY FIBER MAPPING USER GUIDE CARVER COUNTY FIBER MAPPING USER GUIDE GETTING AROUND When you open the application, you have the option to search for a specific fiber project address, fiber segment, city, or address. When you go to

More information

How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS. Lynne W Fielding, GISP Town of Westwood

How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS. Lynne W Fielding, GISP Town of Westwood How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS Lynne W Fielding, GISP Town of Westwood PDF maps are a very handy way to share your information with the public as well

More information

GeoMap.WA. user guide

GeoMap.WA. user guide GeoMap.WA user guide Version 1.1 March 2011 Preface: The information provided is interpretive. The information is made available in good faith and derived from sources believed to be reliable and accurate

More information

Selecting Features by Attributes in ArcGIS Using the Query Builder

Selecting Features by Attributes in ArcGIS Using the Query Builder Helping Organizations Succeed with GIS www.junipergis.com Bend, OR 97702 Ph: 541-389-6225 Fax: 541-389-6263 Selecting Features by Attributes in ArcGIS Using the Query Builder ESRI provides an easy to use

More information

Doña Ana County, NM Map Help

Doña Ana County, NM Map Help Doña Ana County, NM Map Help Map Features Introduction 1. Toolbar 2. Zoom Control Buttons 3. Map/Legend Tabs 4. Layer Control 5. Parcel Search Tools 6. Selected Feature Attributes Toolbar The map toolbar

More information

Downloading and Installing Google Earth

Downloading and Installing Google Earth Google Earth is a GIS software package that can be used to view aerial photography and other data. Although its data analysis capabilities are less powerful than other GIS software, it is relatively simple

More information

Realist A Quick Start Guide for New Users

Realist A Quick Start Guide for New Users Realist A Quick Start Guide for New Users Realist is a service from: First American Real Estate Solutions 4 First American Way Santa Ana, CA 92707 Contents 1. Welcome to Realist... 2 2. How to Access Realist...

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 2: Using ArcGIS Explorer to Analyze the Connection between Topography and Rainfall This lesson introduces Geographical

More information

CITRUS COUNTY PROPERTY APPRAISER S OFFICE How to perform a search

CITRUS COUNTY PROPERTY APPRAISER S OFFICE How to perform a search Address Search Use this search option to locate properties using a street number, name or direction. 1. For best results leave off the street suffix. 2. Use the * as a wild card to match any string of

More information

Guide to Viewing Maps in Google Earth

Guide to Viewing Maps in Google Earth Guide to Viewing Maps in Google Earth The BCT made the decision to provide the GIS (Geographic Information System) resources for Bat Groups in the form of Google Earth maps because they do not require

More information

Extracting Aerial Images From GIS Based Ortho Photos Using ArcMap 9

Extracting Aerial Images From GIS Based Ortho Photos Using ArcMap 9 Extracting Aerial Images From GIS Based Ortho Photos Using ArcMap 9 Tutorial Updated August 2006 CP-208 Plan Preparation Studio - Prof. Elizabeth Macdonald 2 In this tutorial we will learn to extract aerial

More information

How to Create a Custom TracDat Report With the Ad Hoc Reporting Tool

How to Create a Custom TracDat Report With the Ad Hoc Reporting Tool TracDat Version 4 User Reference Guide Ad Hoc Reporting Tool This reference guide is intended for TracDat users with access to the Ad Hoc Reporting Tool. This reporting tool allows the user to create custom

More information

Doña Ana County, NM Interactive Zoning Map

Doña Ana County, NM Interactive Zoning Map Doña Ana County, NM Interactive Zoning Map Users Guide Basic Map Navigation Zoom Control The most efficient way of zooming, or changing the scale of the map is with the use of a mouse with a scroll wheel.

More information

Getting Land Survey Vertical & Horizontal Control via the Internet

Getting Land Survey Vertical & Horizontal Control via the Internet Getting Land Survey Vertical & Horizontal Control via the Internet https://www.auroragov.org aka: City of Aurora home page ROLL OVER City Hall Dropdown will appear 1 PICK Maps In the Info List 2 PICK Mapping

More information

Realist 2.0 MLS Support (512) 454-7636 Monday thru Friday 9:00 am 5:00 pm

Realist 2.0 MLS Support (512) 454-7636 Monday thru Friday 9:00 am 5:00 pm Realist 2.0 MLS Support (512) 454-7636 Monday thru Friday 9:00 am 5:00 pm 0 Understanding Realist On Realist s main page you ll find a full set of searching and mapping tools, all contained within one,

More information

Modeling Fire Hazard By Monica Pratt, ArcUser Editor

Modeling Fire Hazard By Monica Pratt, ArcUser Editor By Monica Pratt, ArcUser Editor Spatial modeling technology is growing like wildfire within the emergency management community. In areas of the United States where the population has expanded to abut natural

More information

What do I do first in ArcView 8.x? When the program starts Select from the Dialog box: A new empty map

What do I do first in ArcView 8.x? When the program starts Select from the Dialog box: A new empty map www.library.carleton.ca/find/gis Introduction Introduction to Georeferenced Images using ArcGIS Georeferenced images such as aerial photographs or satellite images can be used in many ways in both GIS

More information

GIS III: GIS Analysis Module 2a: Introduction to Network Analyst

GIS III: GIS Analysis Module 2a: Introduction to Network Analyst *** Files needed for exercise: nc_cty.shp; target_stores_infousa.dbf; streets.sdc (provided by street map usa); NC_tracts_2000sf1.shp Goals: To learn how to use the Network analyst tools to perform network

More information

GIS Spatial Data Standards

GIS Spatial Data Standards GIS Spatial Data Standards Manatee County, FL GIS Section, Information Services Department TABLE OF CONTENTS I. Introduction 2 A. Purpose 2 B. Reference 2 II. Spatial Reference Information 2 A. Projection:

More information

Set up your Database. Contents

Set up your Database. Contents Set up your Database Contents Basic DIMA Concepts... 2 Sites, Plots, and Lines... 2 Methods... 4 Geographic Information... 4 Species Lists... 4 Tags... 5 Tips for Successfully using DIMA... 6 Close vs.

More information

GEOGRAPHIC INFORMATION SYSTEMS

GEOGRAPHIC INFORMATION SYSTEMS GIS GEOGRAPHIC INFORMATION SYSTEMS FOR CADASTRAL MAPPING Chapter 7 2015 Cadastral Mapping Manual 7-0 GIS - GEOGRAPHIC INFORMATION SYSTEMS What is GIS For a long time people have sketched, drawn and studied

More information

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 1) Navigate to the C:/temp folder 2) Make a directory using your initials. 3) Use your web browser to navigate to www.library.yale.edu/mapcoll/ and

More information

Mosaicking and Subsetting Images

Mosaicking and Subsetting Images Mosaicking and Subsetting Images Using SAGA GIS Tutorial ID: IGET_RS_005 This tutorial has been developed by BVIEER as part of the IGET web portal intended to provide easy access to geospatial education.

More information

CentralMass DataCommon

CentralMass DataCommon CentralMass DataCommon User Training Guide Welcome to the DataCommon! Whether you are a data novice or an expert researcher, the CentralMass DataCommon can help you get the information you need to learn

More information

Getting Started with the ArcGIS Predictive Analysis Add-In

Getting Started with the ArcGIS Predictive Analysis Add-In Getting Started with the ArcGIS Predictive Analysis Add-In Table of Contents ArcGIS Predictive Analysis Add-In....................................... 3 Getting Started 4..............................................

More information

Linear Referencing Tutorial

Linear Referencing Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents An overview of the linear referencing tutorial........................ 3 Exercise 1: Organizing your linear referencing data in ArcCatalog...............

More information

PennDOT s Internet Traffic Monitoring System (itms) Users Manual Version 003.001

PennDOT s Internet Traffic Monitoring System (itms) Users Manual Version 003.001 PennDOT s Internet Traffic Monitoring System (itms) Users Manual Version 003.001 The online itms for PennDOT s Internet site provides users with general traffic information data as well as a direct link

More information

There are various ways to find data using the Hennepin County GIS Open Data site:

There are various ways to find data using the Hennepin County GIS Open Data site: Finding Data There are various ways to find data using the Hennepin County GIS Open Data site: Type in a subject or keyword in the search bar at the top of the page and press the Enter key or click the

More information

GIS III: GIS Analysis Module 1a: Network Analysis Tools

GIS III: GIS Analysis Module 1a: Network Analysis Tools *** Files needed for exercise: MI_ACS09_cty.shp; USBusiness09_MI.dbf; MI_ACS09_trt.shp; and streets.sdc (provided by Street Map USA) Goals: To learn how to use the Network Analyst tools to perform network-based

More information

Creating a Guided Tour with Google Earth

Creating a Guided Tour with Google Earth Creating a Guided Tour with Google Earth Before creating a tour, first orient yourself to basic Google Earth functions. To start, download Google Earth to your desktop. This is free through earth.google.com.

More information

LYON COUNTY GEOMOOSE 2 HELP DOCUMENT

LYON COUNTY GEOMOOSE 2 HELP DOCUMENT LYON COUNTY GEOMOOSE 2 HELP DOCUMENT TABLE OF CONTENTS Lyon County Geomoose 2 Help Document... 1 Introduction... 3 Quick Reference Chart... 4 The Interface... 4 The Table of Contents... 5 Quick Reference

More information

MetroBoston DataCommon Training

MetroBoston DataCommon Training MetroBoston DataCommon Training Whether you are a data novice or an expert researcher, the MetroBoston DataCommon can help you get the information you need to learn more about your community, understand

More information

Data Collection and Reporting Tool Training Presentation

Data Collection and Reporting Tool Training Presentation Data Collection and Reporting Tool Training Presentation 1 Table of Contents Introduction to the tool: Slides 3-9 How to use the tool General Information: Slides 11-14 Country Coordinator: Slides 15-35

More information

Web GIS User Guide MainStreetGIS, LLC

Web GIS User Guide MainStreetGIS, LLC Web GIS User Guide MainStreetGIS, LLC www.mainstreetgis.com Navigation There are two ways to navigate the map interface: 1. Activate one of the map tools a. Zoom In Tool Activate the tool, then click on

More information

What Do You Think? for Instructors

What Do You Think? for Instructors Accessing course reports and analysis views What Do You Think? for Instructors Introduction As an instructor, you can use the What Do You Think? Course Evaluation System to see student course evaluation

More information

Understanding Raster Data

Understanding Raster Data Introduction The following document is intended to provide a basic understanding of raster data. Raster data layers (commonly referred to as grids) are the essential data layers used in all tools developed

More information

Market Analysis Best Practices: Using Submarkets for Search & Analysis. Digital Map Products Spatial Technology Made Easy www.digmap.

Market Analysis Best Practices: Using Submarkets for Search & Analysis. Digital Map Products Spatial Technology Made Easy www.digmap. Market Analysis Best Practices: Using Submarkets for Search & Analysis Digital Map Products Market Analysis Best Practices: Using Submarkets for Search & Analysis As builders and developers try to compete

More information

Executive Dashboard. User Guide

Executive Dashboard. User Guide Executive Dashboard User Guide 2 Contents Executive Dashboard Overview 3 Naming conventions 3 Getting started 4 Welcome to Socialbakers Executive Dashboard! 4 Comparison View 5 Setting up a comparison

More information

Investigating World Development with a GIS

Investigating World Development with a GIS Investigating World Development with a GIS Economic and human development is not consistent across the world. Some countries have developed more quickly than others and we call these countries MEDCs (More

More information

Creating a File Geodatabase

Creating a File Geodatabase Creating a File Geodatabase Updated by Thomas Stieve January 06, 2012 This exercise demonstrates how to create a file geodatabase in ArcGIS 10; how to import existing data into the geodatabase, and how

More information

Basic Steps to Using the Wildlife Application

Basic Steps to Using the Wildlife Application Basic Steps to Using the Wildlife Application The intent of the Wildlife Application (http://gisweb1.serm.gov.sk.ca/wildlifelogin/form.asp) is to provide a tool to search an area in the province of Saskatchewan

More information

Request for Proposals for Topographic Mapping. Issued by: Teton County GIS and Teton County Engineering Teton County, Wyoming

Request for Proposals for Topographic Mapping. Issued by: Teton County GIS and Teton County Engineering Teton County, Wyoming Request for Proposals for Topographic Mapping Issued by: Teton County GIS and Teton County Engineering Teton County, Wyoming Proposals due: 2:00PM MDT July 1, 2015 Proposals may be delivered to: Teton

More information

APPENDICES. Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm

APPENDICES. Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm APPENDICES Appendix 1 Autodesk MapGuide Viewer R6 Help http://www.mapguide.com/help/ver6/viewer/en/index.htm Appendix 2 The MapPlace Toolbar and Popup Menu http://www.em.gov.bc.ca/mining/geolsurv/mapplace/menudesc.htm

More information

ONPOINT Internet Training Manual

ONPOINT Internet Training Manual The Internet version of ONPOINT is for use by the general public and can be accessed from a computer that is on the Internet by using the following URL: (http://gis.arlingtonva.us/acmap ). OnPoint is fully

More information

Mobile Community Online Maps

Mobile Community Online Maps Mobile Community Online Maps User Guide October 2015 Page - 1 - 1.0 Background Since 2003 the County of Hastings GIS has developed and maintained a variety of web-based, online mapping applications. The

More information

User Guide Vancouver Police Department 2015

User Guide Vancouver Police Department 2015 User Guide Vancouver Police Department 2015 1. Introduction The Vancouver Police Department s GeoDASH is a crime mapping tool that provides the public access to information about crimes that were reported

More information

Prints and Photographs Online Catalog Web Address http://www.loc.gov/rr/print/catalog.html

Prints and Photographs Online Catalog Web Address http://www.loc.gov/rr/print/catalog.html Historic Photo Geographic Inventory A Guide for Geocoding Library of Congress Photo Images. NYS Adirondack Park Agency GIS J. W. Barge - January 19, 2006 Background The Library of Congress Prints and Photographs

More information

Frequently Asked Questions: Wetlands Mapper

Frequently Asked Questions: Wetlands Mapper Frequently Asked Questions: Wetlands Mapper December 2015 Mapper Content and Display How does the public access the new Mapper? The Wetlands Mapper can be found at: http://www.fws.gov/wetlands/ Does the

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

From GPS Data Collection to GIS Data Display A Walk-Through Example

From GPS Data Collection to GIS Data Display A Walk-Through Example From GPS Data Collection to GIS Data Display A Walk-Through Example The Global Positioning System (GPS) is a satellite based navigation system consisting of 24 satellites, a worldwide network of tracking

More information

Data Warehousing With Microsoft Access

Data Warehousing With Microsoft Access R. Jason Weiss Development Dimensions International This issue s edition of the Leading Edge was submitted by guest writer Robert J. Townsend. Data Warehousing With Microsoft Access Robert J. Townsend

More information

Using Google Earth for Environmental Science Research

Using Google Earth for Environmental Science Research Using Google Earth for Environmental Science Research This document is up-to-date as of August 2013. If you have any questions or additions to this material please email dan.friess@nus.edu.sg. Note: this

More information

WEB MAPPING TOOL DOCUMENTATION

WEB MAPPING TOOL DOCUMENTATION ENTERPRISE ZONES RE DESIGNATION WEB MAPPING TOOL DOCUMENTATION January 26, 2015 COVER PAGE TABLE OF CONTENTS INTRODUCTION 1 APPLICATION LAYOUT 2 WEB MAP NAVIGATION 3 LOCATION SEARCH 4 MAP LEGEND 5 BASEMAP

More information

Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis. Data management operations

Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis. Data management operations Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis Transform (reproject) Merge Append Clip Dissolve The role of topology in GIS analysis Data management

More information

HOW TO GET A SOIL MAP FROM THE WEB SOIL SURVEY

HOW TO GET A SOIL MAP FROM THE WEB SOIL SURVEY Cooperative Extension of Ocean County Extension Center 1623 Whitesville Road Toms River, NJ 08755-1199 njaes.rutgers.edu/extension 732-349-1227 4-H 732-349-1246 Agriculture 732-349-1247 FCHS 732-349-1247

More information

Remote Sensing, GPS and GIS Technique to Produce a Bathymetric Map

Remote Sensing, GPS and GIS Technique to Produce a Bathymetric Map Remote Sensing, GPS and GIS Technique to Produce a Bathymetric Map Mark Schnur EES 5053 Remote Sensing Fall 2007 University of Texas at San Antonio, Department of Earth and Environmental Science, San Antonio,

More information

Online Digitizing and Editing of GIS Layers (On-Screen or Head s Up Digitizing)

Online Digitizing and Editing of GIS Layers (On-Screen or Head s Up Digitizing) Online Digitizing and Editing of GIS Layers (On-Screen or Head s Up Digitizing) 2011 Charlie Schweik, Alexander Stepanov, Maria Fernandez, Lara Aniskoff Note: This work is licensed under the Creative Commons

More information

How to Download Census Data from American Factfinder and Display it in ArcMap

How to Download Census Data from American Factfinder and Display it in ArcMap How to Download Census Data from American Factfinder and Display it in ArcMap Factfinder provides census and ACS (American Community Survey) data that can be downloaded in a tabular format and joined with

More information

A Beginner s Step by Step Guide to Geocaching

A Beginner s Step by Step Guide to Geocaching A Beginner s Step by Step Guide to Geocaching Geocaching is a great motivator to get outside and do some exploring, get some exercise and learn about areas you might otherwise never visit. You can think

More information

OnPoint 7.0 Tools and Functionality

OnPoint 7.0 Tools and Functionality P a g e 1 OnPoint 7.0 Tools and Functionality The new version of the OnPoint website has the same functionality as the old site, but the look and feel of the page has changed. This document will compare

More information

www.lpi.nsw.gov.au SCIMS Online Support Guide

www.lpi.nsw.gov.au SCIMS Online Support Guide www.lpi.nsw.gov.au SCIMS Online Support Guide November 2012 Document Status Revision Version 1.7 Version date 01/11/2012 Author Owner John Kelaher and Cheryl Wheeler Land and Property Information Surveying

More information

GIS Lesson 6 MAPS WITH RASTER IMAGES III: SATELLITE IMAGERY TEACHER INFORMATION

GIS Lesson 6 MAPS WITH RASTER IMAGES III: SATELLITE IMAGERY TEACHER INFORMATION GIS Lesson 6 MAPS WITH RASTER IMAGES III: SATELLITE IMAGERY TEACHER INFORMATION Lesson Summary: During this lesson students use GIS to load and view truecolor and enhanced satellite images of Alaska. Based

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

ArcFuels Supplemental Material: GIS 9.x Tips and Tricks

ArcFuels Supplemental Material: GIS 9.x Tips and Tricks ArcFuels Supplemental Material: GIS 9.x Tips and Tricks Supplemental material: GIS Tips and Tricks... 1 Shapefiles: Points, Lines, and Polygons... 2 Creating a New Shapefile (point, line, or polygon)...

More information

Tips & Tricks for ArcGIS. Presented by: Jim Mallard, Crime Analysis Supervisor Arlington, Texas. 2007 IACA Conference Pasadena, Ca

Tips & Tricks for ArcGIS. Presented by: Jim Mallard, Crime Analysis Supervisor Arlington, Texas. 2007 IACA Conference Pasadena, Ca Tips & Tricks for ArcGIS Presented by: Jim Mallard, Crime Analysis Supervisor Arlington, Texas 2007 IACA Conference Pasadena, Ca Table of Contents Lock & Load Labels for Maximum Speed!...2 Choose your

More information

WFP Liberia Country Office

WFP Liberia Country Office 1 Oscar Gobbato oscar.gobbato@wfp.org oscar.gobbato@libero.it WFP Liberia Country Office GIS training - Summary Objectives 1 To introduce to participants the basic concepts and techniques in using Geographic

More information

Halifax Water Hydrant and Catchbasin Interactive Mapping USER GUIDE. Halifax Water Hydrant & Catchbasin Interactive Mapping USER GUIDE Page 1

Halifax Water Hydrant and Catchbasin Interactive Mapping USER GUIDE. Halifax Water Hydrant & Catchbasin Interactive Mapping USER GUIDE Page 1 Halifax Water Hydrant and Catchbasin Interactive Mapping USER GUIDE Halifax Water Hydrant & Catchbasin Interactive Mapping USER GUIDE Page 1 Navigation Tools These tools may be used to maneuver your way

More information

Gaston County GIS Interactive Mapping Website

Gaston County GIS Interactive Mapping Website Gaston County GIS Interactive Mapping Website 2014 Contents Gaston County GIS Website The New look... 3 Banner... 4 Basemap... 4 Search Tools... 4 Parcel Number Search... 4 Owner Name Search... 4 Address

More information

GPS Tracking Software Training and User Manual

GPS Tracking Software Training and User Manual GPS Tracking Software Training and User Manual Table of Contents Introduction... 4 Login Page... 4 Dashboard... 4 Create Group... 5 Edit Group... 6 Group Editor... 6 Add New Vehicle... 7 Configure Tracking...

More information

Analyzing PDFs with Citavi 5

Analyzing PDFs with Citavi 5 Analyzing PDFs with Citavi 5 Introduction Just Like on Paper... 2 Methods in Detail Highlight Only (Yellow)... 3 Highlighting with a Main Idea (Red)... 4 Adding Direct Quotations (Blue)... 5 Adding Indirect

More information

How to use PGS: Basic Services Provision Map App

How to use PGS: Basic Services Provision Map App How to use PGS: Basic Services Provision Map App The PGS: Basic Services Provision Map App The main features of the PGP Basic Services web application includes: Navigation Tools Map Tools Main Map Links

More information

Tutorial 6 GPS/Point Shapefile Creation

Tutorial 6 GPS/Point Shapefile Creation Tutorial 6 GPS/Point Shapefile Creation The objectives of this tutorial include: 1. Converting GPS field collected point information into a shapefile 2. Creating a shapefile from a simple x,y coordinate

More information

Community Health Maps Lab Series:

Community Health Maps Lab Series: Community Health Maps Lab Series: Lab 6 Data Visualization With CartoDB Objective: Understand How To Use CartoDB To Create an Online Visualization of Your Data Document Version: 2015-09-15 (V2) This course

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

Development of an Impervious-Surface Database for the Little Blackwater River Watershed, Dorchester County, Maryland

Development of an Impervious-Surface Database for the Little Blackwater River Watershed, Dorchester County, Maryland Development of an Impervious-Surface Database for the Little Blackwater River Watershed, Dorchester County, Maryland By Lesley E. Milheim, John W. Jones, and Roger A. Barlow Open-File Report 2007 1308

More information

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES A TUTORIAL FROM SPATIAL AND NUMERIC DATA SERVICES NICOLE SCHOLTZ AND GEOFF IVERSON Overview... 2 A. Get a Digital Elevation Model (DEM)... 3 B. Open ArcMap,

More information

Spatial / GIS Resources Brown Bag Discussion: Metro LAR-IAC4 Pictometry Tool

Spatial / GIS Resources Brown Bag Discussion: Metro LAR-IAC4 Pictometry Tool Los Angeles County Metropolitan Transportation Authority Spatial / GIS Resources Brown Bag Discussion: Metro LAR-IAC4 Pictometry Tool M. Quant Rail Operations Strategic Planning 8/18/2015 Agenda Metro

More information

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 5: Analyzing Spatial Data. Buffering Features:

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 5: Analyzing Spatial Data. Buffering Features: : Analyzing Spatial Data Buffering Features: A buffer operation is one of the most common spatial analysis tools. A buffer is a map feature that represents a uniform distance around a feature. When creating

More information