Hamilton County Draw Widget Measurements Page 2 of 11

Size: px
Start display at page:

Download "Hamilton County Draw Widget Measurements Page 2 of 11"

Transcription

1 Hamilton County Draw Widget Measurements Larry Stout June 11, 2013 Introduction The Hamilton County Draw Widget is based on the Draw Widget from Version 2 of the Esri Flex Viewer. We have made several enhancements to the Esri Draw Widget. These include: Displaying coordinates for point graphics with the option of selecting the spatial reference for the coordinates. Showing a point graphic dynamically while the user is locating it on the map. Moving the configuration of length and area units and spatial references for point graphic coordinates from the Draw Widget configuration file to the main configuration file so other widgets can offer the same options for their measurement and coordinate display. Displaying dynamic and final measurements on the widget as well as on the map. Displaying additional dynamic measurements on the widget (e.g. width and height for extents and ellipses, radius and diameter for circles, segment length for polylines and polygons, and close length for polygons). Expanding the context menu choices for each drawn graphic. In addition to deleting the graphic, the context menu allows the user to update symbology, update measurements, remove measurements, and stop editing. Adding the ability to save graphics to a file and load graphics from a file (taken directly from Robert Scheitlin s Draw Widget). Adding the option of rotating text. A sample text string on the widget illustrates the font; font size; bold, italic, and underline settings; color, and rotation angle. Showing text dynamically while the user is locating it on the map. This document covers our enhancements to the measurements. For the sake of simplicity, when we refer to measurements, we are including coordinates on a point graphic in addition to length and area measurements on line and polygon graphics.

2 and Measurements measurements are measurements that display when a graphic is being drawn or edited. They change as the user moves the mouse, inserts a vertex, etc. measurements reflect the properties of a completed graphic. When the mouse hovers over a graphic, the final measurements are displayed on the widget whether they are displayed on the map or not. Measurement Configuration Spatial reference options for displaying point coordinates and options for displaying length units, and area units are configured in the main configuration file (e.g. config.xml) rather than the Draw Widget configuration file. By doing this, other widgets that show measurements (e.g. Identify Widget, Search Widget, and Clicktips Widget) can use the same configuration as the Draw Widget. Here is an example of the measurement tag section in the Hamilton County config.xml file: <measurementunits> <coordsys label="ine-83 State Plane" wkid="2965" abbr="ft" xlabel="x:" ylabel="y:" precision="0" dms="false"/> <coordsys label="nad83 UTM Zone 16N" wkid="26916" abbr="m" xlabel="x:" ylabel="y:" precision="1" dms="false"/> <coordsys label="gcs WGS 1984 (Deg Min Sec)" wkid="4326" abbr="" xlabel="lon:" ylabel="lat:" precision="0" dms="true" selected="true"/> <coordsys label="gcs WGS 1984 (Decimal Deg)" wkid="4326" abbr="deg" xlabel="lon:" ylabel="lat:" precision="6" dms="false"/> <lengthunit label="feet" abbr="ft" esriunit="9003" precision="0" cascade="true"/> <lengthunit label="miles" abbr="mi" esriunit="9093" precision="2" selected="true"/> <lengthunit label="meters" abbr="m" esriunit="9001" precision="1" cascade="true"/> <lengthunit label="kilometers" abbr="km" esriunit="9036" precision="2"/> <areaunit label="sq Feet" abbr="sq ft" esriunit="esrisquarefeet" precision="0" cascade="true"/> <areaunit label="acres" abbr="ac" esriunit="esriacres" precision="2" cascade="true"/> <areaunit label="sq Miles" abbr="sq mi" esriunit="esrisquaremiles" precision="2" selected="true"/> <areaunit label="sq Meters" abbr="sq m" esriunit="esrisquaremeters" precision="0" cascade="true"/> <areaunit label="hectares" abbr="ha" esriunit="esrihectares" precision="2" cascade="true"/> <areaunit label="sq km" abbr="sq km" esriunit="esrisquarekilometers" precision="2"/> </measurementunits> Hamilton County Draw Widget Measurements Page 2 of 11

3 Measurement Calculations Measurement calculations vary depending on the spatial reference of the map. Measurements are always calculated in or converted to meters and square meters. Coordinates for all Geographic spatial references are retrieved in decimal degrees. Coordinates for Web Mercator spatial references are converted to Geographic (4326) by the client. Measurements are then converted by the client and displayed in the selected units. Coordinates are converted to a different spatial reference with a call to the Geometry Service on the ArcGIS Server. Map Spatial Reference Coordinates Lengths Areas Geographic (4326) Latitude & Longitude Calculated by the client in meters Calculated by the client in square meters Web Mercator (102113, , 3857, or 3785) Latitude & Longitude (converted to 4326 by the client) Converted by the client to 4326 and calculated by the client in meters Converted by the client to 4326 and calculated by the client in square meters Projected (other than Web X & Y (in the spatial reference Mercator) units) Calculated by the client in meters Calculated by the client in square meters Geographic (other than 4326) Latitude & Longitude Calculated by the server in meters by a call to the Geometry Service Calculated by the server in meters by a call to the Geometry Service Measurement Units Measurement units for lengths and areas are very similar to the measurement units used by the Esri Draw Widget. Coordinates The coordinate system tag (<coordsys>) has been added to give the user the option of displaying point coordinates in different spatial references. For example, if the map spatial reference is in State Plane coordinates and the user wanted the Latitude and Longitude for calling in a helicopter, the spatial reference can be set to a geographic system. Hamilton County Draw Widget Measurements Page 3 of 11

4 Measurements Displayed on the Widget The Draw Widget displays final measurements on the widget when the mouse hovers over a graphic that was drawn with the Draw Widget. The measurements are in the units selected when the graphic was drawn unless the user sets different units and then selects Update Measurements from the context menu of the graphic. The Draw Widget displays dynamic measurements on the widget as a graphic is being drawn or edited if the measurements can be computed by the client without a call to the geometry service. This is only possible when the Measurement Spatial Reference is the same as the Map Spatial Reference and these spatial references are one of the following: Web Mercator (wkid = , , 3857, or 3785) Geographic (wkid = 4326) Non Geographic (e.g. State Plane, UTM, etc.) The Show Measurements checkbox label has changed to Show Measurements on Map in the Draw Widget configuration file since the measurements are always shown on the widget. Table 1 shows the conditions where dynamic and final measurements are shown on the widget and shown on the map if the Show Measurements on Map checkbox is checked. Hamilton County Draw Widget Measurements Page 4 of 11

5 Map Spatial Reference Table 1 Measurement Spatial Reference (from config.xml) Same as Map Spatial Reference Different from Map Spatial Reference Measurements Measurements Measurements Measurements Web Mercator (102113, , 3857, or 3785) * Geographic (4326) * Geographic (other than 4326) Non Geographic (e.g. State Plane, UTM, etc.) * *Note that dynamic measurements for point graphics are shown only if the coordinate system dropdown on the widget is also set to the same spatial reference as the Map Spatial Reference. Behavior of Measurement Display for Each Drawing Tool The Draw Widget supports eight different drawing tools. Different drawing tools have different measurements displayed on the Draw Widget. Table 2 is an index to the notes that describe the dynamic and final measurements that are displayed on the widget and on the map. Figure 1 illustrates the measurement locations on the widget. Table 2 Drawing Type Initial Draw Move Rotate Scale Move Vertex Add Vertex Delete Vertex Point 1 1 NA NA NA NA NA Polyline Freehand Polyline Extent 5 14 NA 5 NA NA NA Circle Ellipse Polygon Freehand Polygon Hamilton County Draw Widget Measurements Page 5 of 11

6 Figure 1 Notes See Table 2 for an index to the notes. 1. When a point is being drawn or moved, its map coordinates are shown as follows (subject to the conditions of Table 1): 1. X Coordinate (or Longitude) Y Coordinate (or Latitude) X Coordinate (or Longitude) Y Coordinate (or Latitude) 1. X Coordinate (or Longitude) Y Coordinate (or Latitude) X Coordinate (or Longitude) Y Coordinate (or Latitude) Hamilton County Draw Widget Measurements Page 6 of 11

7 When a Polyline is being drawn, the measurements are shown as follows (subject to the conditions of Table 1): 1. Length of the Polyline Length of the current segment Length of the Polyline 1. Length of the Polyline Length of the Polyline When a Polyline or a Freehand Polyline is being edited, the measurements are shown as follows (subject to the conditions of Table 1): 1. Length of the Polyline or Freehand Polyline Length of the Polyline or Freehand Polyline 1. Length of the Polyline or Freehand Polyline Length of the Polyline or Freehand Polyline Hamilton County Draw Widget Measurements Page 7 of 11

8 When a Freehand Polyline is being drawn, the measurements are shown as follows (subject to the conditions of Table 1): 1. Length of the Freehand Polyline Length of the Freehand Polyline 1. Length of the Freehand Polyline Length of the Freehand Polyline 5. When an Extent (rectangle) is being drawn, the measurements are shown as follows (subject to the conditions of Table 1): 1. area perimeter width Area and perimeter of the Extent height 1. area perimeter width height Area and perimeter of the Extent Hamilton County Draw Widget Measurements Page 8 of 11

9 6. When a Circle is being drawn, the measurements are shown as follows (subject to the conditions of Table 1): 1. area circumference radius Area and circumference of the Circle diameter 1. area circumference radius diameter Area and circumference of the Circle 7. When a Circle is scaled, it is demoted to an Ellipse (see Note 10 for its measurement display). 8. When a vertex of a Circle or an Ellipse is edited (moved, deleted, or added), the Circle or Ellipse is demoted to a Polygon (see Note 13 for its measurement display). 9. When an Ellipse is being drawn, the measurements are shown as follows (subject to the conditions of Table 1): Circumference Width Area and circumference of the Ellipse Height Circumference Width Height Area and circumference of the Ellipse Hamilton County Draw Widget Measurements Page 9 of 11

10 10. When an Ellipse is rotated, the height and width no longer display. The measurements are shown as follows (subject to the conditions of Table 1): Circumference Area and circumference of the Ellipse Circumference Area and circumference of the Ellipse 11. When an Ellipse is being scaled, the display of its measurements varies depending on whether it has been rotated in a previous edit. If the Ellipse has been rotated in a previous edit, the height and width are no longer displayed (see Note 10 for its measurement display). If the Ellipse has not been rotated in a previous edit, the measurements are the same as an Ellipse that is being drawn (see Note 9 for its measurement display). 1 When a Polygon or a Freehand Polygon is being drawn, the measurements are shown as follows (subject to the conditions of Table 1): Perimeter Area and perimeter of the Polygon or Length of segment being drawn Freehand Polygon Length to close the polygon Perimeter Length of segment being drawn Length to close the polygon Area and perimeter of the Polygon or Freehand Polygon Hamilton County Draw Widget Measurements Page 10 of 11

11 1 When a Polygon or a Freehand Polygon is being scaled or when a vertex is being edited (moved, deleted, or added), the measurements are shown as follows (subject to the conditions of Table 1): Perimeter Area and perimeter of the Polygon or Freehand Polygon Perimeter Area and perimeter of the Polygon or Freehand Polygon 1 Measurements don t change (very much) during this activity, but if they are displayed on the map, their location follows the location of the graphic. There may be minor changes in the measurements during a rotate edit if the spatial reference is Web Mercator or Geographic. Hamilton County Draw Widget Measurements Page 11 of 11

SAFMC Habitat and Ecosystem Viewer

SAFMC Habitat and Ecosystem Viewer SOUTH ATLANTIC FISHERY MANAGEMENT COUNCIL SAFMC Habitat and Ecosystem Viewer Integrating Management Resources This document provides an overview of the SAFMC Habitat and Ecosystem Viewer data sources and

More information

Geometry. Geometry is the study of shapes and sizes. The next few pages will review some basic geometry facts. Enjoy the short lesson on geometry.

Geometry. Geometry is the study of shapes and sizes. The next few pages will review some basic geometry facts. Enjoy the short lesson on geometry. Geometry Introduction: We live in a world of shapes and figures. Objects around us have length, width and height. They also occupy space. On the job, many times people make decision about what they know

More information

1. NJDEP Landscape 3.3 Viewer Interface

1. NJDEP Landscape 3.3 Viewer Interface Using the Landscape Project through NJDEP Landscape 3.3 Viewer Google Chrome or Mozilla Firefox are recommended for the use of this app. Navigate to the NJDEP-DFW s Landscape Project web page at www.njfishandwildlife.com/ensp/landscape/

More information

Practice Geometry Semester 2 Exam

Practice Geometry Semester 2 Exam Practice Geometry Semester 2 Exam Short Answer 1. Explain why the triangles are similar. Then find the value of x. 6 2 11 > > x The polygons are similar, but not necessarily drawn to scale. Find the values

More information

Generating Vectors Overview

Generating Vectors Overview Generating Vectors Overview Vectors are mathematically defined shapes consisting of a series of points (nodes), which are connected by lines, arcs or curves (spans) to form the overall shape. Vectors can

More information

SPRINGBOARD UNIT 5 GEOMETRY

SPRINGBOARD UNIT 5 GEOMETRY SPRINGBOARD UNIT 5 GEOMETRY 5.1 Area and Perimeter Perimeter the distance around an object. To find perimeter, add all sides. Area the amount of space inside a 2 dimensional object. Measurements for area

More information

Welcome to the Surface Water Data Viewer!

Welcome to the Surface Water Data Viewer! 1 Welcome to the Surface Water Data Viewer! The Surface Water Data Viewer is a mapping tool for the State of Wisconsin. It provides interactive web mapping tools for a variety of datasets, including chemistry,

More information

Calculate the area of each figure. Each square on the grid represents a square that is one meter long and one meter wide.

Calculate the area of each figure. Each square on the grid represents a square that is one meter long and one meter wide. CH 3 Test Review Boundary Lines: Area of Parallelograms and Triangles Calculate the area of each figure Each square on the grid represents a square that is one meter long and one meter wide 1 You are making

More information

ESRI ArcPad 7.1 Quick Reference

ESRI ArcPad 7.1 Quick Reference ESRI ArcPad 7.1 GPS POSITION WINDOW SATELLITE SKYPLOT Shows the almanac of which satellites should be available. Black: Available and used for calculating the GPS position Blue: Available but not used

More information

Geometry 2: 2D and 3D shapes Review

Geometry 2: 2D and 3D shapes Review Geometry 2: 2D and 3D shapes Review G-GPE.7 I can use the distance formula to compute perimeter and area of triangles and rectangles. Name Period Date 3. Find the area and perimeter of the triangle with

More information

BC Spatial Member Map Viewer. Version 2.0. User Guide. May 2015

BC Spatial Member Map Viewer. Version 2.0. User Guide. May 2015 BC Spatial Member Map Viewer Version 2.0 User Guide May 2015 1 P a g e Revised: 16 June 2015 Contents Contents... 2 Introduction... 4 System Requirements... 5 BC Spatial Map Viewer... 6 I. Navigation Tools...

More information

Biodiversity GIS (BGIS) Internet Mapping User Guide

Biodiversity GIS (BGIS) Internet Mapping User Guide Biodiversity GIS (BGIS) Internet Mapping User Guide http://bgis.sanbi.org Contents 1 Basic Introduction to BGIS Website (http://bgis.sanbi.org)... 6 1.1 LUDS... 6 1.2 Projects... 6 1.3 Services... 6 1.4

More information

Euclid s Muse Directions

Euclid s Muse Directions Euclid s Muse Directions First: Draw and label three columns on your chart paper as shown below. Name Picture Definition Tape your cards to the chart paper (3 per page) in the appropriate columns. Name

More information

City of La Crosse Online Mapping Website Help Document

City of La Crosse Online Mapping Website Help Document City of La Crosse Online Mapping Website Help Document This document was created to assist in using the new City of La Crosse online mapping sites. When the website is first opened, a map showing the City

More information

Guide to Mapping Website (Public) December 2016 GC_236594

Guide to Mapping Website (Public) December 2016 GC_236594 Guide to Mapping Website (Public) December 2016 GC_236594 Table of Contents Guide to Mapping Website (Public)... 1 December 2016... 1 Quick Start... 3 Map Layers... 4 How do I?... 5 Draw on the Map...

More information

User Guide. ExploreHRM ICT BIDS. 0 P a g e

User Guide. ExploreHRM ICT BIDS. 0 P a g e User Guide ICT BIDS 0 P a g e Contents Introduction... 2 Top Left Panel Navigation and Search Widgets... 3 Search... 3 Zoom In/Out... 3 Home... 3 Zoom Extent... 3 Right Panel Information and Print Widgets...

More information

PWC County Mapper XM User Instruction (AS OF 12/03/2009)

PWC County Mapper XM User Instruction (AS OF 12/03/2009) PWC County Mapper XM User Instruction (AS OF 12/03/2009) MAP NAVIGATION There are several ways to navigate the map, you can use your keyboard/mouse combination, use the Navigation toolbar, use the slider

More information

IApioneer v3.0.3 Demo Manual. Powered by the GeoSPHERIC v3.0.3 Common Code Foundation

IApioneer v3.0.3 Demo Manual. Powered by the GeoSPHERIC v3.0.3 Common Code Foundation IApioneer v3.0.3 Demo Manual Powered by the GeoSPHERIC v3.0.3 Common Code Foundation CONTENTS 1 Introduction... 1 1.1 About this Manual... 1 2 Configuration... 2 2.1 Customizing IApioneer... 2 2.2 Configuration

More information

Washington State Math Championship 2009 Geometry 5 th

Washington State Math Championship 2009 Geometry 5 th Geometry 5 th 1. If the area of a square is 40 square units and you double the dimensions of both the length and the width, what will the area of the new square be? 2. If you walk 50 yards south, then

More information

Properties of a Circle Diagram Source:

Properties of a Circle Diagram Source: Properties of a Circle Diagram Source: http://www.ricksmath.com/circles.html Definitions: Circumference (c): The perimeter of a circle is called its circumference Diameter (d): Any straight line drawn

More information

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line DC2 File Format The DesignCAD DC2 drawing file is an ASCII file, with the data present in character format. Each "record" in the file is actually a line in a text file. There are four types of records,

More information

Smart GIS Course. Developed By. Mohamed Elsayed Elshayal. Elshayal Smart GIS Map Editor and Surface Analysis. First Arabian GIS Software

Smart GIS Course. Developed By. Mohamed Elsayed Elshayal. Elshayal Smart GIS Map Editor and Surface Analysis. First Arabian GIS Software Smart GIS Course Developed By Mohamed Elsayed Elshayal Elshayal Smart GIS Map Editor and Surface Analysis First Arabian GIS Software http://www.freesmartgis.blogspot.com/ http://tech.groups.yahoo.com/group/elshayalsmartgis/

More information

Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney

Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney 1. Wrapping a string around a trash can measures the circumference of the trash can. Assuming the trash can is circular,

More information

Unit E Geometry Unit Review Packet

Unit E Geometry Unit Review Packet Unit E Geometry Unit Review Packet Name Directions: Do ALL (A) Questions. Check Your Answers to (A) Questions. If ALL (A) Questions are correct, skip (B) Questions and move onto next I can statement. If

More information

Shape 2 Assessment Calculator allowed for all questions

Shape 2 Assessment Calculator allowed for all questions Shape Assessment Calculator allowed for all questions Foundation Higher All questions Time for the test: 50 minutes Use the π button or take π to be.4 Name: _ Grade Title of clip Marks Score Percentage

More information

Map Viewer User Guide

Map Viewer User Guide Map Viewer User Guide Sea Level Scenario Sketch Planning Tool Version 2, 2017 University of Florida GeoPlan Center Introduction The purpose of this document is to guide users on how to use the Sea Level

More information

Finding Perimeters and Areas of Regular Polygons

Finding Perimeters and Areas of Regular Polygons Finding Perimeters and Areas of Regular Polygons Center of a Regular Polygon - A point within the polygon that is equidistant from all vertices. Central Angle of a Regular Polygon - The angle whose vertex

More information

Area of Polygons And Circles

Area of Polygons And Circles Name: Date: Geometry 2011-2012 Area of Polygons And Circles Name: Teacher: Pd: Table of Contents DAY 1: SWBAT: Calculate the area and perimeter of Parallelograms and Triangles Pgs: 1-5 HW: Pgs: 6-7 DAY

More information

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL DIGITAL MAPPING FILES (very efficient/extremely accurate): 1. G.I.S. dataset formats that we can accept: FORMAT FILE EXT(S) FORMAT FILE EXT(S) AutoCAD (*.dwg,

More information

11.4 CIRCUMFERENCE AND ARC LENGTH 11.5 AREA OF A CIRCLE & SECTORS

11.4 CIRCUMFERENCE AND ARC LENGTH 11.5 AREA OF A CIRCLE & SECTORS 11.4 CIRCUMFERENCE AND ARC LENGTH 11.5 AREA OF A CIRCLE & SECTORS Section 4.1, Figure 4.2, Standard Position of an Angle, pg. 248 Measuring Angles The measure of an angle is determined by the amount of

More information

Strategy. Using Strategy 1

Strategy. Using Strategy 1 Strategy Using Strategy 1 Scan Path / Strategy It is important to visualize the scan path you want for a feature before you begin taking points on your part. You want to try to place your points in a way

More information

RAPIDMAP Geocortex HTML5 Viewer Manual

RAPIDMAP Geocortex HTML5 Viewer Manual RAPIDMAP Geocortex HTML5 Viewer Manual This site was developed using the evolving HTML5 web standard and should work in most modern browsers including IE, Safari, Chrome and Firefox. Even though it was

More information

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out.

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out. Navigate Around the Map Interactive maps provide many choices for displaying information, searching for more details, and moving around the map. Most navigation uses the mouse, but at times you may also

More information

How To Guide for Using Maryland Incentive Zone Interactive Map

How To Guide for Using Maryland Incentive Zone Interactive Map How To Guide for Using Maryland Incentive Zone Interactive Map http://www.dhcd.state.md.us/gis/revitalize/index.html Purpose This How To guide is intended to: Determine if addresses are located within

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

Answer Section. Honors Geometry Final Study Guide 2013 Solutions and Section References 1. ANS: 900

Answer Section. Honors Geometry Final Study Guide 2013 Solutions and Section References 1. ANS: 900 Honors Geometry Final Study Guide 2013 Solutions and Section References Answer Section 1. ANS: 900 2. ANS: 6300 3. ANS: B 4. ANS: x = 111, y = 64 5. ANS: 45 6. ANS: 110 7. ANS: REF: 6-2 Properties of Parallelograms

More information

Chapter 10 Practice Test

Chapter 10 Practice Test Chapter 10 Practice Test Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Find the area. The figure is not drawn to scale. 7.6 cm 3.7 cm a. b. c. d. 2.

More information

COGCC GIS Online Map Instructions - Internet Site April 10, 2018

COGCC GIS Online Map Instructions - Internet Site April 10, 2018 COGCC GIS Online Map Instructions - Internet Site April 10, 2018 Table of Contents Page Section Page Section 1 Introduction 8 Clear Selection 2 Double Click 8 Buffer 3 Arrow Tip Information 9 Select within

More information

Unit 4 End-of-Unit Assessment Study Guide

Unit 4 End-of-Unit Assessment Study Guide Circles Unit 4 End-of-Unit Assessment Study Guide Definitions Radius (r) = distance from the center of a circle to the circle s edge Diameter (d) = distance across a circle, from edge to edge, through

More information

Chapter 1 : Getting Started with Integrity... Chapter 2 : Interface Layout... Chapter 3 : Navigation... Chapter 4 : Printing...

Chapter 1 : Getting Started with Integrity... Chapter 2 : Interface Layout... Chapter 3 : Navigation... Chapter 4 : Printing... .0 User s Manual Table of Contents Chapter : Getting Started with Integrity... Chapter : Interface Layout... Chapter : Navigation... Chapter : Printing... Chapter : Quick Search and Results Pane... Results

More information

3. The diagonals of a rectangle are 18 cm long and intersect at a 60 angle. Find the area of the rectangle.

3. The diagonals of a rectangle are 18 cm long and intersect at a 60 angle. Find the area of the rectangle. Geometry Chapter 11 Remaining Problems from the Textbook 1. Find the area of a square with diagonals of length d. 2. The lengths of the sides of three squares are s, s + 1, and s + 2. If their total area

More information

3.2 Extrema & Function Analysis Name: 1

3.2 Extrema & Function Analysis Name: 1 Precalculus Write our questions and thoughts here! 3.2 Etrema & Function Analsis Name: 1 Absolute ma/min absolutel the. Relative ma/min a point on the function that is. Finding a ma/min means finding the

More information

BobCAD-CAM FAQ #50: How do I use a rotary 4th axis on a mill?

BobCAD-CAM FAQ #50: How do I use a rotary 4th axis on a mill? BobCAD-CAM FAQ #50: How do I use a rotary 4th axis on a mill? Q: I ve read FAQ #46 on how to set up my milling machine. How do I enable 4th axis to actually use it? A: Enabling 4th axis in the machine

More information

Understanding and Using Geometry, Projections, and Spatial Reference Systems in ArcGIS. Rob Juergens, Melita Kennedy, Annette Locke

Understanding and Using Geometry, Projections, and Spatial Reference Systems in ArcGIS. Rob Juergens, Melita Kennedy, Annette Locke Understanding and Using Geometry, Projections, and Spatial Reference Systems in ArcGIS Rob Juergens, Melita Kennedy, Annette Locke Introduction We want to give you a basic understanding of geometry and

More information

Name: Target 12.2: Find and apply surface of Spheres and Composites 12.2a: Surface Area of Spheres 12.2b: Surface Area of Composites Solids

Name: Target 12.2: Find and apply surface of Spheres and Composites 12.2a: Surface Area of Spheres 12.2b: Surface Area of Composites Solids Unit 12: Surface Area and Volume of Solids Target 12.0: Euler s Formula and Introduction to Solids Target 12.1: Find and apply surface area of solids 12.1a: Surface Area of Prisms and Cylinders 12.1b:

More information

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL DIGITAL MAPPING FILES (very efficient/extremely accurate): 1. G.I.S. dataset formats that we can accept: FORMAT FILE EXT(S) FORMAT FILE EXT(S) AutoCAD (*.dwg,

More information

Prosurv LLC Presents

Prosurv LLC Presents Prosurv LLC Presents An Enterprise-Level Geo-Spatial Data Visualizer Signing-In If you re an Admin user, such as an Executive, Manager, or Human Resources (HR) member, you will see the following screen

More information

Open Source Cloud Map User Guide

Open Source Cloud Map User Guide Open Source Cloud Map User Guide Table of Contents Map Page... 1 Static Mercator Map... 1 Customizable Map... 1 Title Bar... 2 Toolbar... 2 Non Toolbar Navigation... 3 Map Window... 3 Layers / Legend Window...

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap Harvard University Introduction to ArcMap Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 1: Basic Mapping in ArcMap Individual files (lab instructions,

More information

Number- Algebra. Problem solving Statistics Investigations

Number- Algebra. Problem solving Statistics Investigations Place Value Addition, Subtraction, Multiplication and Division Fractions Position and Direction Decimals Percentages Algebra Converting units Perimeter, Area and Volume Ratio Properties of Shapes Problem

More information

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL

SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL SPECS FOR G.I.S. DATA PROVIDED TO ONE-CALL DIGITAL MAPPING FILES (very efficient/extremely accurate): 1. G.I.S. dataset formats that we can accept: FORMAT FILE EXT(S) FORMAT FILE EXT(S) AutoCAD (*.dwg,

More information

Greenville County Internet Mapping System User s Guide

Greenville County Internet Mapping System User s Guide Greenville County Internet Mapping System User s Guide Version 2.0 Greenville County Geographic Information Systems May 30, 2006 Table of Contents NAVIGATING TO THE ONLINE MAPPING APPLICATIONS...- 3 -

More information

TEST REVIEW: UNIT 8 Surface Area 2018

TEST REVIEW: UNIT 8 Surface Area 2018 Class: Date: TEST REVIEW: UNIT 8 Surface Area 2018 Find the area. The figure is not drawn to scale. 1. 5. Find the area. All lengths are in centimeters. Round answer to the nearest tenth. 2. 6. A can of

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

Geometry Workbook WALCH PUBLISHING

Geometry Workbook WALCH PUBLISHING Geometry Workbook WALCH PUBLISHING Table of Contents To the Student..............................vii Unit 1: Lines and Triangles Activity 1 Dimensions............................. 1 Activity 2 Parallel

More information

Vocabulary. Term Page Definition Clarifying Example. apothem. center of a circle. center of a regular polygon. central angle of a regular polygon

Vocabulary. Term Page Definition Clarifying Example. apothem. center of a circle. center of a regular polygon. central angle of a regular polygon CHAPTER 9 Vocabulary The table contains important vocabulary terms from Chapter 9. As you work through the chapter, fill in the page number, definition, and a clarifying example. apothem Term Page Definition

More information

End-of-Year Assessment Goals

End-of-Year Assessment Goals End-of-Year Assessment Goals The End-of-Year Assessment (pages 24 241) provides an additional opportunity that you may use as part of your balanced assessment plan. It covers some of the important concepts

More information

POLYGONS

POLYGONS POLYGONS 8.1.1 8.1.5 After studying triangles and quadrilaterals, the students now extend their knowledge to all polygons. A polygon is a closed, two-dimensional figure made of three or more non-intersecting

More information

"Unpacking the Standards" 4th Grade Student Friendly "I Can" Statements I Can Statements I can explain why, when and how I got my answer.

Unpacking the Standards 4th Grade Student Friendly I Can Statements I Can Statements I can explain why, when and how I got my answer. 0406.1.1 4th Grade I can explain why, when and how I got my answer. 0406.1.2 I can identify the range of an appropriate estimate. I can identify the range of over-estimates. I can identify the range of

More information

10-2. Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Geometry

10-2. Warm Up Lesson Presentation Lesson Quiz. Holt McDougal Geometry Warm Up Lesson Presentation Lesson Quiz Geometry Warm Up Find the unknown side lengths in each special right triangle. 1. a 30-60 -90 triangle with hypotenuse 2 ft 2. a 45-45 -90 triangle with leg length

More information

Geometry SIA #3. Name: Class: Date: Short Answer. 1. Find the perimeter of parallelogram ABCD with vertices A( 2, 2), B(4, 2), C( 6, 1), and D(0, 1).

Geometry SIA #3. Name: Class: Date: Short Answer. 1. Find the perimeter of parallelogram ABCD with vertices A( 2, 2), B(4, 2), C( 6, 1), and D(0, 1). Name: Class: Date: ID: A Geometry SIA #3 Short Answer 1. Find the perimeter of parallelogram ABCD with vertices A( 2, 2), B(4, 2), C( 6, 1), and D(0, 1). 2. If the perimeter of a square is 72 inches, what

More information

From Data to Map in 30 Minutes. Aileen Buckley, PhD

From Data to Map in 30 Minutes. Aileen Buckley, PhD From Data to Map in 30 Minutes Aileen Buckley, PhD This session Crater Lake online map From NPS: https://www.nps.gov/carto/hfc/carto/media/crlamap1.pdf Download Crater Lake map packages here: ArcGIS Pro

More information

Guided Problem Solving

Guided Problem Solving -1 Guided Problem Solving GPS Student Page 57, Exercises 1 1: Match each rule with the correct translation. A. (x, y) (x, y 1 ) I. P(, 1) P (3, ) B. (x, y) (x 1 3, y) II. Q(3, 0) Q (3, ) C. (x, y) (x 1,

More information

Overview of ArcGIS Online Applications. Champaign County

Overview of ArcGIS Online Applications. Champaign County Overview of ArcGIS Online Applications Champaign County Champaign County GIS Consortium Updated: April 2017 Table of Contents ArcGIS Online Application Overview... 3 Map Interface Symbology and Terminology...

More information

Study Guide and Review

Study Guide and Review State whether each sentence is or false. If false, replace the underlined term to make a sentence. 1. The center of a trapezoid is the perpendicular distance between the bases. false; height false; height

More information

Area rectangles & parallelograms

Area rectangles & parallelograms Area rectangles & parallelograms Rectangles One way to describe the size of a room is by naming its dimensions. So a room that measures 12 ft. by 10 ft. could be described by saying its a 12 by 10 foot

More information

CCBC Math 081 Geometry Section 2.2

CCBC Math 081 Geometry Section 2.2 2.2 Geometry Geometry is the study of shapes and their mathematical properties. In this section, we will learn to calculate the perimeter, area, and volume of a few basic geometric shapes. Perimeter We

More information

Geometry 2 nd Semester Review Packet PART 1: Chapter 4

Geometry 2 nd Semester Review Packet PART 1: Chapter 4 Geometry 2 nd Semester Review Packet PART 1: Chapter 4 Name 1. Determine if these are scale figures. If so state the scale factor, treating the larger image as the original figure, and the smaller as the

More information

Using the Kendall County GIS CAMA/Sales GIS Viewer

Using the Kendall County GIS CAMA/Sales GIS Viewer Using the Kendall County GIS CAMA/Sales 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

More information

Chapter Test Form A. 173 Holt Geometry. Name Date Class. 1. Find the area of the triangle.

Chapter Test Form A. 173 Holt Geometry. Name Date Class. 1. Find the area of the triangle. Form A 1. Find the area of the triangle. 6. A square has a perimeter of 8 inches. Find the area of the square. cm 7. Find the circumference of C in terms of.. Find the area of the parallelogram. 11 cm

More information

Geometry Surface Area and Volume of Pyramids and Cones.

Geometry Surface Area and Volume of Pyramids and Cones. Geometry 11.6 Surface Area and Volume of Pyramids and Cones mbhaub@mpsaz.org 11.6 Essential Question How do you find the surface area and volume of a pyramid or a cone? Geometry 1.3 Surface Area of Pyramids

More information

iii Map Intelligence Client User Manual

iii Map Intelligence Client User Manual Map Intelligence Client User Manual iii TM Map Intelligence Client User Manual ii CONTENTS INTRODUCTION... 5 Purpose... 5 Audience... 5 Conventions... 6 Prerequisites... 6 CONCEPTS... 7 What is Map Intelligence?...

More information

2D Geometry Part 2: Area

2D Geometry Part 2: Area Slide 1 / 81 Slide 2 / 81 2D Geometry Part 2: Area Rectangles Parallelograms Triangles Trapezoids Circles Mixed Review Irregular Shapes Shaded Regions Click on a topic to go to that section Slide 3 / 81

More information

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9 14 Number/Computation addend Any number being added algorithm A step-by-step method for computing array A picture that shows a number of items arranged in rows and columns to form a rectangle associative

More information

MANITOBA LAND USE AND DEVELOPMENT WEB APPLICATION: How-to guide and help document

MANITOBA LAND USE AND DEVELOPMENT WEB APPLICATION: How-to guide and help document MANITOBA LAND USE AND DEVELOPMENT WEB APPLICATION: How-to guide and help document 2 Index Index... 2 Layout & View... 3 Overview... 3 Layers... 4 Municipal Relations Data Layers... 4 Application Toolbar...

More information

9 Find the area of the figure. Round to the. 11 Find the area of the figure. Round to the

9 Find the area of the figure. Round to the. 11 Find the area of the figure. Round to the Name: Period: Date: Show all work for full credit. Provide exact answers and decimal (rounded to nearest tenth, unless instructed differently). Ch 11 Retake Test Review 1 Find the area of a regular octagon

More information

ACT Math test Plane Geometry Review

ACT Math test Plane Geometry Review Plane geometry problems account for 14 questions on the ACT Math Test that s almost a quarter of the questions on the Subject Test. If you ve taken high school geometry, you ve probably covered all of

More information

SOL Review April Home work-nallari Math 8 Measurement & Geometry SOL -CAT Questions 13 SOL 8.6a, 8.7a-b, 8.8a-b,8.9,8.10a-b&8.

SOL Review April Home work-nallari Math 8 Measurement & Geometry SOL -CAT Questions 13 SOL 8.6a, 8.7a-b, 8.8a-b,8.9,8.10a-b&8. SOL Review April 18-22 Home work-nallari Math 8 Measurement & Geometry SOL -CAT Questions 13 SOL 8.6a, 8.7a-b, 8.8a-b,8.9,8.10a-b&8.11 Nallari Math 8 Class 1 SOL8.6a 1. If two angles add up to 180 o they

More information

Geometry 10 and 11 Notes

Geometry 10 and 11 Notes Geometry 10 and 11 Notes Area and Volume Name Per Date 10.1 Area is the amount of space inside of a two dimensional object. When working with irregular shapes, we can find its area by breaking it up into

More information

pine cone Ratio = 13:8 or 8:5

pine cone Ratio = 13:8 or 8:5 Chapter 10: Introducing Geometry 10.1 Basic Ideas of Geometry Geometry is everywhere o Road signs o Carpentry o Architecture o Interior design o Advertising o Art o Science Understanding and appreciating

More information

Review: What is the definition of a parallelogram? What are the properties of a parallelogram? o o o o o o

Review: What is the definition of a parallelogram? What are the properties of a parallelogram? o o o o o o Geometry CP Lesson 11-1: Areas of Parallelograms Page 1 of 2 Objectives: Find perimeters and areas of parallelograms Determine whether points on a coordinate plane define a parallelogram CA Geometry Standard:

More information

2D Geometry Part 2: Area

2D Geometry Part 2: Area Slide 1 / 81 2D Geometry Part 2: Area Table of Contents Slide 2 / 81 Rectangles Parallelograms Triangles Trapezoids Circles Mixed Review Irregular Shapes Shaded Regions Click on a topic to go to that section

More information

17-18 ACP Geometry Final Exam REVIEW

17-18 ACP Geometry Final Exam REVIEW 17-18 ACP Geometry Final Exam REVIEW Chapter 7 Similarity 1. Given ABC DEF. Find the value of x. Justify your answer. Are the following triangles similar? If so, justify your answer, and write a similarity

More information

Chapter 9. Attribute joins

Chapter 9. Attribute joins Chapter 9 Spatial Joins 9-1 Copyright McGraw-Hill Education. Permission required for reproduction or display. Attribute joins Recall that Attribute joins: involve combining two attribute tables together

More information

Log1 Contest Round 2 Theta Circles, Parabolas and Polygons. 4 points each

Log1 Contest Round 2 Theta Circles, Parabolas and Polygons. 4 points each Name: Units do not have to be included. 016 017 Log1 Contest Round Theta Circles, Parabolas and Polygons 4 points each 1 Find the value of x given that 8 x 30 Find the area of a triangle given that it

More information

Motic Images Plus 3.0 ML Software. Windows OS User Manual

Motic Images Plus 3.0 ML Software. Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual CONTENTS (Linked) Introduction 05 Menus and tools 05 File 06 New 06 Open 07 Save 07 Save

More information

Chapter 10 Test Review

Chapter 10 Test Review Name: Class: Date: Chapter 10 Test Review Short Answer 1. Write an equation of a parabola with a vertex at the origin and a focus at ( 2, 0). 2. Write an equation of a parabola with a vertex at the origin

More information

NJ-GeoWeb: Primer and Tutorial

NJ-GeoWeb: Primer and Tutorial NJ-GeoWeb: Primer and Tutorial New Jersey Department of Environmental Protection Office of Information Resources Management Bureau of Geographic Information Systems PO Box 420 Mail Code 401-01 Trenton,

More information

Geometry Semester 2 Practice Exam

Geometry Semester 2 Practice Exam 1. tire has a radius of 15 inches. What is the approximate circumference, in inches, of the tire?. 47 in.. 94 in.. 188 in. D. 707 in. 2. In the figure below, adjacent sides of the polygon are perpendicular.

More information

Geometry - Additional Questions: Sheet 1

Geometry - Additional Questions: Sheet 1 Geometry - Additional Questions: Sheet 1 Parallel Lines Eercises (G3E) e g f h L1 L1 L2 1.) How many angles do you need to know in order to replace the letters in the diagram to the left? b c a d L2 2.)

More information

Precalculus 4.1 Notes Angle Measures, Arc Length, and Sector Area

Precalculus 4.1 Notes Angle Measures, Arc Length, and Sector Area Precalculus 4.1 Notes Angle Measures, Arc Length, and Sector Area An angle can be formed by rotating one ray away from a fixed ray indicated by an arrow. The fixed ray is the initial side and the rotated

More information

Honors Geometry Final Study Guide 2014

Honors Geometry Final Study Guide 2014 Honors Geometry Final Study Guide 2014 1. Find the sum of the measures of the angles of the figure. 2. What is the sum of the angle measures of a 37-gon? 3. Complete this statement: A polygon with all

More information

Name: Date: Class: Honors Geometry Advancement Practice (Part 2)

Name: Date: Class: Honors Geometry Advancement Practice (Part 2) Name: Date: lass: Honors Geometry Advancement Practice (Part 2) Part 1 Multiple hoice: Identify the choice that best completes the statement or answers the question. Place your answer on the Scantron sheet

More information

Spring 2012 Student Performance Analysis

Spring 2012 Student Performance Analysis Spring 2012 Student Performance Analysis Geometry Standards of Learning Presentation may be paused and resumed using the arrow keys or the mouse. 1 Translating a Short Verbal Argument into Symbolic Form

More information

GM1 End-of-unit Test. 1 Calculate the size of angles a, b and c. 2 ABC is a right-angled triangle. Work out the size of the marked angles.

GM1 End-of-unit Test. 1 Calculate the size of angles a, b and c. 2 ABC is a right-angled triangle. Work out the size of the marked angles. GM End-of-unit Test Calculate the size of angles a, and c. 2 ABC is a right-angled triangle. a = = c = 3 marks Work out the size of the marked angles. p = q = r = 3 marks Original material Camridge University

More information

C in. 2. D in Find the volume of a 7-inch tall drinking glass with a 4-inch diameter. C lateral faces. A in. 3 B in.

C in. 2. D in Find the volume of a 7-inch tall drinking glass with a 4-inch diameter. C lateral faces. A in. 3 B in. Standardized Test A For use after Chapter Multiple Choice. Which figure is a polyhedron? A B 7. Find the surface area of the regular pyramid. A 300 ft 2 B 340 ft 2 C 400 ft 2 C D D 700 ft 2 2. A polyhedron

More information

Geometry Term 2 Final Exam Review

Geometry Term 2 Final Exam Review Geometry Term Final Eam Review 1. If X(5,4) is reflected in the line y =, then find X.. (5,). (5,0). (-1,) D. (-1,4) Name 6. Find the tangent of angle X. Round your answer to four decimal places. X. 0.5

More information

Chapter 9: Integrating Widgets

Chapter 9: Integrating Widgets Chapter 9: Integrating Widgets The API for JavaScript comes with several out of the box widgets that you can drop into your application for enhanced productivity. Included are the BasemapGallery, Legend,

More information

New Swannington Primary School 2014 Year 6

New Swannington Primary School 2014 Year 6 Number Number and Place Value Number Addition and subtraction, Multiplication and division Number fractions inc decimals & % Ratio & Proportion Algebra read, write, order and compare numbers up to 0 000

More information

Free Response. Test A. 1. What is the estimated area of the figure?

Free Response. Test A. 1. What is the estimated area of the figure? Test A 1. What is the estimated area of the 6. An 8.5 in. by 11 in. sheet of paper is enlarged to make a poster by doubling its length and width. What is the new perimeter? 7. How does the area of a square

More information