2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION.

Size: px
Start display at page:

Download "2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION."

Transcription

1 Wastewater Profiles

2 2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION. The contents of this guide were created for Autodesk Topobase The contents of this guide are not intended for other versions of Autodesk Topobase. Country Kit Workshop Wastewater Profiles - ii

3 TABLE OF CONTENTS Table of Contents... 1 Profiles... 2 Configuration... 2 System Tables... 2 Data Model... 3 Main tables... 4 Adding tables... 5 Adding static labels... 6 Display model... 7 Steps to create a profile definition... 8 Step 1. General settings... 9 Step 2. Point feature classes Step 3. Line feature classes Step 4. Vertical lines Step 5. Attributes Step 6. Create frame Step 7. Create axes and grid lines Step 8. Create tic marks and labels Step 9. Create labels Step 10. Static Text Creating a profile Getting started Profile Settings Feature and Axis Selection Drawing Profile Country Kit Workshop Wastewater Profiles - 1

4 PROFILES Configuration System Tables These are the system tables that store the definition of the profile: Table TB_PROFILE TB_PROFILE_AXIS Description Point feature class to store the origin of a profile. It stores the general settings of the profile. Line string feature class to store the axis of the profile. TB_PROFILE_DEFINITION TB_PROFILE_DETAIL TB_PROFILE_SUB_DETAIL To store the profile definition. To store profile details. It is related to the TB_PROFILE_DEFINITION table by the FID of the profile. This table stores the exact configuration of the profile, the border lines, the grid detail at the bottom, the legend, the position of the features relative to the origin, and so on. To store profile sub details such as offsets of labels. These records are related to those in the TB_PROFILE_DETAIL by the FID. Country Kit Workshop Wastewater Profiles - 2

5 Data Model The results of the profile are stored in the database. Once a profile is generated, a set of features (points, lines, polygons, and labels) are created in the corresponding feature classes of the Profile topic. The figure below shows the feature classes that could be part of the profile: If not provided, the feature classes have to be created manually. Country Kit Workshop Wastewater Profiles - 3

6 Main tables The main tables for the profile features are: The line defined for the profile (WW_LINE_PRO), which represents the section. The attribute FID_PARENT has to be related to the WW_LINE feature class. The attribute FID_PROFILE has to be related to TB_PROFILE The WW_LINE_PRO feature class has a label feature class and as many label definitions as labels will be represented in the profile. In this case it has three label definitions to show the name, length and slope of the section. Verify the properties of the label definition Line Pro Length Label, if you enable the Automatically create label when feature is created, then the label will be created automatically when the profile line is created. Otherwise you can show the label using the Profile Designer (See Step 9. Create Labels) Country Kit Workshop Wastewater Profiles - 4

7 The SQL statement of the label definition gets the properties of the section following the syntax below: select round(c.pipe_length,2) from WW_LINE_PRO a, WW_LINE b, WW_SECTION c where a.fid = $id and a.fid_parent = b.fid and b.fid_attr = c.fid The point defined for the profile (WW_POINT_PRO) represents the network points. In the same way as with the line, the attribute FID_PARENT has to be related to the WW_POINT feature class. The attribute FID_PROFILE has to be related to TB_PROFILE The WW_POINT_PRO feature class has a label feature class and as many label definitions as labels will be represented in the profile. In this case it has two label definitions to show the name, and height of the point. Adding tables If you need to add new feature classes to be represented in the profile, e.g. decoration feature classes to store the axis, static texts, title and so on; you have to make sure that the new feature class has an attribute FID_PROFILE related to the TB_PROFILE.FID. For example, create line feature class WW_PROFILE_LINE_REP_PRO, you will use this feature class to create the tic marks for the axes. Add attributes: FID_PROFILE - NUMBER(10) related to TB_PROFILE LINESTYLE NUMBER(10) This attribute can serve to assign different line styles to use in the display manager. Country Kit Workshop Wastewater Profiles - 5

8 Note that in this data model there is a point feature class (WW_PROFILE_POINT_REP_PRO) with a label definition to generate the labels for the tic marks. Note that the feature class has an attribute DISTANCE_FROM_ORIGIN, this will store the position of the tic mark that is generated automatically. The label definition has these settings: Label definition name SQL Orientation Distance from origin select DISTANCE_FROM_ORIGIN from WW_PROFILE_POINT_REP_PRO where FID = $id Absolute, 0 degrees Adding static labels Create a label feature class WW_PRO_STATIC_TEXT_TBL for the WW_PROFILE_STATIC_TEXT point feature class. Create a label definition: Label definition name SQL Orientation Static Text Height Select 'Height' from dual Absolute, 0 degrees This label will display the text Height in the profile. Country Kit Workshop Wastewater Profiles - 6

9 Display model In order to see the profile you have to create a display model that includes all the profile feature classes. Country Kit Workshop Wastewater Profiles - 7

10 Steps to create a profile definition The following steps explain how to create a simple profile with the information shown in the figure below. Country Kit Workshop Wastewater Profiles - 8

11 Step 1. General settings Define profile general settings Country Kit Workshop Wastewater Profiles - 9

12 Step 2. Point feature classes Define point feature classes that will be part of the profile: Manhole Detail Title = Description of the detail Main feature class= WW_POINT (the feature class where the geometries are stored) Profile feature class=ww_point_pro (the feature class where the point geometry features for the profiles will be stored) Define where clause according to the type of feature class: f.f_class_id_attr in ( select f_class_id from tb_dictionary where upper(rtrim(f_class_name)) like 'WW_MANHOLE') You can create as many profile features as types of points you have. Country Kit Workshop Wastewater Profiles - 10

13 Step 3. Line feature classes Define line feature classes that will be part of the profile: Section Detail Title = Description of the detail Main feature class= WW_LINE (the feature class where the geometries are stored) Profile feature class=ww_line_pro (the feature class where the point geometry features for the profiles will be stored) The select Statement for the section filters the coordinates of the points that are topologically connected with the section. The select gets the X, Y coordinates plus the Z value. Country Kit Workshop Wastewater Profiles - 11

14 select g.fid FID, g.geom.sdo_point.x EASTING, g.geom.sdo_point.y NORTHING, g.z HEIGHT from ww_line a, ww_conn b, ww_section f, ww_point g where ((a.fid = b.fid_from and g.fid = b.fid_to) or (a.fid = b.fid_to and g.fid = b.fid_from)) and a.fid_attr = f.fid and a.fid=$fid Country Kit Workshop Wastewater Profiles - 12

15 Step 4. Vertical lines Define the vertical lines that will connect to the manholes Select Detail Title Manhole, under vertical lines set these values: Feature class = select WW_PROFILE_LINE_PRO Offset = 10 Country Kit Workshop Wastewater Profiles - 13

16 Step 5. Attributes You can set values to some attributes of the profile features (WW_POINT_PRO, WW_LINE_PRO) for stylization. Select Detail Title Manhole, under Feature Class Attributes set these values: Attribute = select FEATURE_TYPE Value = Manhole This means that the attribute FEATURE_TYPE of the table WW_POINT_PRO will be set to Manhole. You can use this setting to stylize the feature class WW_POINT_PRO in the display manager. Country Kit Workshop Wastewater Profiles - 14

17 Step 6. Create frame In order to create a frame for the profile you need to define the width and height of it given that the profile will be drawn in the origin (0,0). The example below shows some values for the frame. Country Kit Workshop Wastewater Profiles - 15

18 a) Create left frame, in the Decoration tab: Enter the Detail Title = Frame Left and select WW_PROFILE_LINE_PRO,set the values as shown below. Select Attribute = LINESTYLE and Value = 1 Toggle on the Add profile Height in the End Northing. You can use the attribute LINESTYLE in the feature class WW_PROFILE_LINE_PRO in the display manager to stylize the different type of lines: Frames: LINESTYLE =1 Axis: LINESTYLE =2 Grid: LINESTYLE = 3 Vertical lines: LINESTYLE = NULL Country Kit Workshop Wastewater Profiles - 16

19 b) Create all the other frames in the same way and with the following properties: Detail Title/ Attribute Easting Northing Attribute Frame Left LINESTYLE = 1 Start Easting: -120 Start Northing: -60 End Easting: -120 Frame Right LINESTYLE = 1 Start Easting:100 Add Profile Width End Easting: 100 Add Profile Width Frame Bottom LINESTYLE = 1 Start Easting:-120 End Easting: 100 Add Profile Width Frame Top LINESTYLE = 1 Start Easting:-120 End Easting: 100 Add Profile Width End Northing: 80 Add Profile Height Start Northing: -60 End Northing: 80 Add Profile Height Start Northing: -60 End Northing: -60 Start Northing: 80 Add Profile Height End Northing: 80 Add Profile Height Country Kit Workshop Wastewater Profiles - 17

20 Step 7. Create axes and grid lines You will create the X and Y axes, and horizontal and vertical lines at the bottom of the profile. Continue in the Decoration tab as with the frame lines. Enter the corresponding Detail Title and select WW_PROFILE_LINE_PRO and Single Line for Decoration type. Set the values as shown in the table below. Country Kit Workshop Wastewater Profiles - 18

21 Detail Title Attribute Easting Northing XAxis LINESTYLE = 2 Start Easting: 0 Start Northing: 0 End Easting: 10 Add Profile Width YAxis LINESTYLE = 2 Start Easting: 0 End Easting: 0 Grid H1 LINESTYLE = 3 Start Easting:-25 End Easting: 10 Add Profile Width Grid H2 LINESTYLE = 3 Start Easting:-25 End Easting: 10 Add Profile Width Grid H3 LINESTYLE = 3 Start Easting:-25 End Easting: 10 Add Profile Width Grid V1 LINESTYLE = 3 Start Easting:-25 End Easting: -25 Grid V2 LINESTYLE = 3 Start Easting: 0 End Easting: 0 Grid V3 LINESTYLE = 3 Start Easting: 10 Add Profile Width End Easting: 10 Add Profile Width End Northing: 0 Start Northing: 0 End Northing: 20 Add Profile Height Start Northing: -20 End Northing: -20 Start Northing: -30 End Northing: -30 Start Northing: -40 End Northing: -40 Start Northing: -20 End Northing: -40 Start Northing: -20 End Northing: -40 Start Northing: -20 End Northing: -40 Country Kit Workshop Wastewater Profiles - 19

22 Step 8. Create tic marks and labels You can create lines or points that are repeated given an interval. For example, you could use small repetitive lines for the tic marks on the axes. Enter the values as shown below: Detail Title = XAxis Tic Mark Profile Feature Class = WW_PROFILE_LINE_REP_PRO Decoration type = Repeated Vertical Line Interval = 20 Reference Origin = o Start Easting: 0, End Easting: 0 o Start Northing: -1, End Northing: -6 You can repeat this step for the Y axis tic marks, create a repeated horizontal line instead. Country Kit Workshop Wastewater Profiles - 20

23 Now create a new decoration feature for the label of the X Axis using the point feature class WW_PROFILE_POINT_REP_PRO. Enter the values as shown below: Detail Title = XAxis Tic Mark Label Profile Feature Class = WW_PROFILE_POINT_REP_PRO Decoration type = Repeated Vertical Point Interval = 20 Reference Origin = o Start Easting: 0 o Start Northing: -10 Country Kit Workshop Wastewater Profiles - 21

24 The previous step creates the repetitive points at the given interval, now you need to create the label for the points. In the navigation pane, click Labels. Enter the values as shown below: Sub Detail Title = XAxis Tic Mark Label Dist Profile Feature Class = WW_PROFILE_PT_REP_PRO_TBL Reference Feature = XAxis Tic Mark label Label Definition = Distance from origin Reference Origin = o Start Easting: leave empty, the value is taken from the parent label definition o Start Northing: -12 In the same way, you can create labels for the tic marks of the Y axis. Country Kit Workshop Wastewater Profiles - 22

25 Step 9. Create labels In the navigation pane, click Labels. Enter the values as shown below: Sub Detail Title = Manhole Height Profile Feature Class = WW_POINT_PRO_TBL Reference Feature =Manhole Label Definition = Point Pro Height Label Reference Origin = o Start Easting: leave empty, the value is taken from the parent label definition o Start Northing: -27 In the same way you can add other labels such as length and slope of the sections, manholes bottom elevation and any other relevant values. Country Kit Workshop Wastewater Profiles - 23

26 Step 10. Static Text Add a static text Height in the grid. In the navigation pane, click Decoration. Enter the values as shown below: Detail Title = Static Text Height Parent Profile Feature Class = WW_PROFILE_STATIC_TEXT Decoration Type = Single Point Reference Origin = Start Easting: -20 Start Northing: -25 Country Kit Workshop Wastewater Profiles - 24

27 In the navigation pane, click Labels. Enter the values as shown below: Sub Detail Title = Static Text Height Label Profile Feature Class = WW_PRO_STATIC_TEXT_TBL Reference Feature = Static Text Height Parent Label Definition = Static Text Height Reference Origin = Start Easting: -20 Start Northing: -27 Note: If you do not specify the coordinates for the sub details, the labels will be placed relative to the geometry of the reference feature. Country Kit Workshop Wastewater Profiles - 25

28 Creating a profile Getting started In Topobase Client, select the document, right-click and select Profile Manager. The Profile Manager window is opened. To create a new profile, select the option from the menu Profile > Create Profile or click on the Create profile icon ( ) in the toolbar. Country Kit Workshop Wastewater Profiles - 26

29 The Profile Definition List is shown displaying the available definitions for the data model. Select the profile definition that you created, Profile Test. Enter a name under Profile title, this name will serve to identify the different profiles that you create. Click OK. Country Kit Workshop Wastewater Profiles - 27

30 The Profile Manager window shows the new profile with the default settings as defined in the profile definition. Profile Settings The Profile Settings area at the top of the window contains the following fields: FID: identification number of the profile, assigned automatically. User: name of the Topobase user Height scale factor: vertical exaggeration for the profile. Length scale factor: horizontal exaggeration. The length of the sections to be represented in the profile is multiplied by this factor (i.e., a value of 1 means that the length of the sections in the profile is maintained). Reference altitude: vertical offset of the profile origin. The value of the reference altitude is subtracted from the length of all vertical lines. In this data set, the bottom elevation of the manholes is a value greater than 400m; so in the profile the manhole altitude shown by the vertical lines is the actual height minus the reference altitude of 400. Reference distance: horizontal offset of the profile origin. Country Kit Workshop Wastewater Profiles - 28

31 Origin point: Easting, Northing, and Orientation of the profile origin point. The coordinates of the profile are acquired when the profile is drawn. Feature and Axis Selection There are two methods for selecting features for the profile: Topological selection with intermediate features: Choose a network topology, a start feature, an end feature, and optionally intermediate points. Topobase executes a shortest path propagation between the selected start and end features. Feature selection: Individual features (point networks or sections) are selected directly on the map. To select features through topological selection In the Profile Manager window, under Feature selection process, select the option Topological selection with intermediate feature(s) from the combo box. The Profile - Topological Selection With Intermediate Feature(s) dialog box is opened. By default it shows the available Logical topology: WW. Country Kit Workshop Wastewater Profiles - 29

32 The buttons in the Topological Selection toolbar are used to select the start, intermediate, and end features. Click on the first button to select the first feature on the map. Using the map cursor, select the starting feature (in this example manhole 4768). Then click on the third button to select the end feature. Click on manhole 140. When the features are selected, the tree explorer Main Features is updated with the FIDs of the features selected. Note that in this case the FIDs correspond to the WW_POINT feature class. The intermediate features are optional. Click OK. Country Kit Workshop Wastewater Profiles - 30

33 A shortest path propagation is generated between the selected features, and a list of all the features on this path are shown under Feature explorer in the Profile Manager window. In this example there are five points including the selected starting and ending manholes, and four sections connecting the points. The explorer also shows the FID of each feature. Note that there are buttons to highlight or zoom to the features, or to display a feature s form. If you click the highlight icon, all the features for the profile are highlighted in yellow on the map. To select an axis After selecting the features for the profile, you can select an axis where the features will be projected. There are two methods for selecting an axis: Topological selection with intermediate feature(s): Follow the same process explained above to select an axis that follows the topology of the lines. Normally you will the exact same selection as in the previous step. Country Kit Workshop Wastewater Profiles - 31

34 Polyline digitization: This option digitizes a line on the map parallel to the sections represented in the profile. Drawing Profile Once all the parameters have been set, you are ready to draw the profile. In the Profile Manager form select the option in the menu Profile > Draw Profile or click on the Draw profile icon in the toolbar. You will be prompted to place the origin on the map. It is best to place the point in the outside areas of the map so the profile does not cover any existing features. Then specify an orientation to the origin point. The features will be created and the profile will be shown on the map. Country Kit Workshop Wastewater Profiles - 32

35 The following figure shows the profile that has been drawn on the map. (The frame is not shown in the figure below). All necessary information is displayed in the profile for analysis. You can graphically identify slopes and lengths of sections, as well as the height of features relative to the reference altitude. The relationship between slopes and length of the pipes can also be identified in the profile. All these values will help you identify necessary information, find data entry errors, and make comparisons (i.e., short pipes typically have higher slopes than longer pipes). Note that the colors of this display are defined in the Display Manager and can be changed as desired. The information displayed in the profile above: Names of the manholes are on top: 4768, 958, 959, etc. Sections names: i.e for the first section. Normally sections are named using the names of their starting and ending manholes. Height of each manhole is displayed in the first row of the grid. Lengths of the sections are shown at the bottom of the grid. You can add more values such as slopes, manhole bottom elevations and any other relevant value. Country Kit Workshop Wastewater Profiles - 33

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth Understanding Land Use and Land Cover using Google Earth Image an image is a representation of reality. It can be a sketch, a painting, a photograph, or some other graphic representation such as satellite

More information

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands.

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. GIS LAB 7 The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. This lab will ask you to work with the Spatial Analyst extension.

More information

Automatic Watershed Delineation using ArcSWAT/Arc GIS

Automatic Watershed Delineation using ArcSWAT/Arc GIS Automatic Watershed Delineation using ArcSWAT/Arc GIS By: - Endager G. and Yalelet.F 1. Watershed Delineation This tool allows the user to delineate sub watersheds based on an automatic procedure using

More information

How to Make or Plot a Graph or Chart in Excel

How to Make or Plot a Graph or Chart in Excel This is a complete video tutorial on How to Make or Plot a Graph or Chart in Excel. To make complex chart like Gantt Chart, you have know the basic principles of making a chart. Though I have used Excel

More information

Lab 1 Uniform Motion - Graphing and Analyzing Motion

Lab 1 Uniform Motion - Graphing and Analyzing Motion Lab 1 Uniform Motion - Graphing and Analyzing Motion Objectives: < To observe the distance-time relation for motion at constant velocity. < To make a straight line fit to the distance-time data. < To interpret

More information

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole.

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole. Excel 2003 Creating a Chart Introduction Page 1 By the end of this lesson, learners should be able to: Identify the parts of a chart Identify different types of charts Create an Embedded Chart Create a

More information

Space Objects. Section. When you finish this section, you should understand the following:

Space Objects. Section. When you finish this section, you should understand the following: GOLDMC02_132283433X 8/24/06 2:21 PM Page 97 Section 2 Space Objects When you finish this section, you should understand the following: How to create a 2D Space Object and label it with a Space Tag. How

More information

Comparing whole genomes

Comparing whole genomes BioNumerics Tutorial: Comparing whole genomes 1 Aim The Chromosome Comparison window in BioNumerics has been designed for large-scale comparison of sequences of unlimited length. In this tutorial you will

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

NMR Predictor. Introduction

NMR Predictor. Introduction NMR Predictor This manual gives a walk-through on how to use the NMR Predictor: Introduction NMR Predictor QuickHelp NMR Predictor Overview Chemical features GUI features Usage Menu system File menu Edit

More information

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE)

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) PART 2: Analysis in ArcGIS (THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) Step 1: Start ArcCatalog and open a geodatabase If you have a shortcut icon for ArcCatalog on your desktop, double-click it to start

More information

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes v. 10.1 WMS 10.1 Tutorial GSSHA WMS Basics Creating Feature Objects and Mapping Attributes to the 2D Grid Populate hydrologic parameters in a GSSHA model using land use and soil data Objectives This tutorial

More information

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation.

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation. ST-Links SpatialKit For ArcMap Version 3.0.x ArcMap Extension for Directly Connecting to Spatial Databases ST-Links Corporation www.st-links.com 2012 Contents Introduction... 3 Installation... 3 Database

More information

Task 1: Open ArcMap and activate the Spatial Analyst extension.

Task 1: Open ArcMap and activate the Spatial Analyst extension. Exercise 10 Spatial Analyst The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step instructions component

More information

ISIS/Draw "Quick Start"

ISIS/Draw Quick Start ISIS/Draw "Quick Start" Click to print, or click Drawing Molecules * Basic Strategy 5.1 * Drawing Structures with Template tools and template pages 5.2 * Drawing bonds and chains 5.3 * Drawing atoms 5.4

More information

Consents Resource Consents Map

Consents Resource Consents Map Consents Resource Consents Map Select the map from the Maps introduction page http://www.waikatoregion.govt.nz/maps/ If you have the map browser open the Resource Consents map will also display when selected

More information

OneStop Map Viewer Navigation

OneStop Map Viewer Navigation OneStop Map Viewer Navigation» Intended User: Industry Map Viewer users Overview The OneStop Map Viewer is an interactive map tool that helps you find and view information associated with energy development,

More information

HSC Chemistry 7.0 User's Guide

HSC Chemistry 7.0 User's Guide HSC Chemistry 7.0 47-1 HSC Chemistry 7.0 User's Guide Sim Flowsheet Module Experimental Mode Pertti Lamberg Outotec Research Oy Information Service P.O. Box 69 FIN - 28101 PORI, FINLAND Fax: +358-20 -

More information

Quantification of JEOL XPS Spectra from SpecSurf

Quantification of JEOL XPS Spectra from SpecSurf Quantification of JEOL XPS Spectra from SpecSurf The quantification procedure used by the JEOL SpecSurf software involves modifying the Scofield cross-sections to account for both an energy dependency

More information

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active.

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active. You w i ll f ol l ow these st eps : A. O pen a n i m a g e s t a c k. B. Tr a c e t h e d e n d r i t e w i t h t h e user-guided m ode. C. D e t e c t t h e s p i n e s a u t o m a t i c a l l y. D. C

More information

Work with Gravity Data in GM-SYS Profile

Work with Gravity Data in GM-SYS Profile Work with Gravity Data in GM-SYS Profile In GM-SYS Profile, a "Station" is a location at which an anomaly component is calculated and, optionally, was measured. In order for GM-SYS Profile to calculate

More information

Import Digital Spatial Data (Shapefiles) into OneStop

Import Digital Spatial Data (Shapefiles) into OneStop Import Digital Spatial Data (Shapefiles) into OneStop» Intended User: Pipeline Licence Applicants Overview To apply for a pipeline or pipeline installation licence, applicants must upload the proposed

More information

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS Spatial Data Analysis in Archaeology Anthropology 589b Fraser D. Neiman University of Virginia 2.19.07 Spring 2007 Kriging Artifact Density Surfaces in ArcGIS 1. The ingredients. -A data file -- in.dbf

More information

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

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

More information

Computational Study of Chemical Kinetics (GIDES)

Computational Study of Chemical Kinetics (GIDES) Computational Study of Chemical Kinetics (GIDES) Software Introduction Berkeley Madonna (http://www.berkeleymadonna.com) is a dynamic modeling program in which relational diagrams are created using a graphical

More information

In this exercise we will learn how to use the analysis tools in ArcGIS with vector and raster data to further examine potential building sites.

In this exercise we will learn how to use the analysis tools in ArcGIS with vector and raster data to further examine potential building sites. GIS Level 2 In the Introduction to GIS workshop we filtered data and visually examined it to determine where to potentially build a new mixed use facility. In order to get a low interest loan, the building

More information

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA This help guide describes how to merge two or more feature classes (vector) or rasters into one single feature class or raster dataset. The Merge Tool The Merge Tool combines input features from input

More information

Tutorial. Getting started. Sample to Insight. March 31, 2016

Tutorial. Getting started. Sample to Insight. March 31, 2016 Getting started March 31, 2016 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com Getting started

More information

Location Intelligence Infrastructure Asset Management. Confirm. Confirm Mapping Link to ArcMap Version v18.00b.am

Location Intelligence Infrastructure Asset Management. Confirm. Confirm Mapping Link to ArcMap Version v18.00b.am Location Intelligence Infrastructure Asset Management Confirm Confirm Mapping Link to ArcMap Version v18.00b.am Information in this document is subject to change without notice and does not represent a

More information

Experiment: Oscillations of a Mass on a Spring

Experiment: Oscillations of a Mass on a Spring Physics NYC F17 Objective: Theory: Experiment: Oscillations of a Mass on a Spring A: to verify Hooke s law for a spring and measure its elasticity constant. B: to check the relationship between the period

More information

Watershed Modeling Orange County Hydrology Using GIS Data

Watershed Modeling Orange County Hydrology Using GIS Data v. 10.0 WMS 10.0 Tutorial Watershed Modeling Orange County Hydrology Using GIS Data Learn how to delineate sub-basins and compute soil losses for Orange County (California) hydrologic modeling Objectives

More information

Creation and modification of a geological model Program: Stratigraphy

Creation and modification of a geological model Program: Stratigraphy Engineering manual No. 39 Updated: 11/2018 Creation and modification of a geological model Program: Stratigraphy File: Demo_manual_39.gsg Introduction The aim of this engineering manual is to explain the

More information

ArcGIS 9 ArcGIS StreetMap Tutorial

ArcGIS 9 ArcGIS StreetMap Tutorial ArcGIS 9 ArcGIS StreetMap Tutorial Copyright 2001 2008 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

GIS Workshop UCLS_Fall Forum 2014 Sowmya Selvarajan, PhD TABLE OF CONTENTS

GIS Workshop UCLS_Fall Forum 2014 Sowmya Selvarajan, PhD TABLE OF CONTENTS TABLE OF CONTENTS TITLE PAGE NO. 1. ArcGIS Basics I 2 a. Open and Save a Map Document 2 b. Work with Map Layers 2 c. Navigate in a Map Document 4 d. Measure Distances 4 2. ArcGIS Basics II 5 a. Work with

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

Data Structures & Database Queries in GIS

Data Structures & Database Queries in GIS Data Structures & Database Queries in GIS Objective In this lab we will show you how to use ArcGIS for analysis of digital elevation models (DEM s), in relationship to Rocky Mountain bighorn sheep (Ovis

More information

Using Tables and Graphing Calculators in Math 11

Using Tables and Graphing Calculators in Math 11 Using Tables and Graphing Calculators in Math 11 Graphing calculators are not required for Math 11, but they are likely to be helpful, primarily because they allow you to avoid the use of tables in some

More information

through any three given points if and only if these points are not collinear.

through any three given points if and only if these points are not collinear. Discover Parabola Time required 45 minutes Teaching Goals: 1. Students verify that a unique parabola with the equation y = ax + bx+ c, a 0, exists through any three given points if and only if these points

More information

ScienceWord and PagePlayer Chemical formulae. Dr Emile C. B. COMLAN Novoasoft Representative in Africa

ScienceWord and PagePlayer Chemical formulae. Dr Emile C. B. COMLAN Novoasoft Representative in Africa ScienceWord and PagePlayer Chemical formulae Dr Emile C. B. CMLAN Novoasoft Representative in Africa Emails: ecomlan@yahoo.com ecomlan@scienceoffice.com Web site: www.scienceoffice.com Chemical formulae

More information

Create Satellite Image, Draw Maps

Create Satellite Image, Draw Maps Create Satellite Image, Draw Maps 1. The goal Using Google Earth, we want to create and import a background file into our Adviser program. From there, we will be creating paddock boundaries. The accuracy

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism OECD QSAR Toolbox v.4.1 Tutorial illustrating new options for grouping with metabolism Outlook Background Objectives Specific Aims The exercise Workflow 2 Background Grouping with metabolism is a procedure

More information

The data for this lab comes from McDonald Forest. We will be working with spatial data representing the forest boundary, streams, roads, and stands.

The data for this lab comes from McDonald Forest. We will be working with spatial data representing the forest boundary, streams, roads, and stands. GIS LAB 6 Using the Projection Utility. Converting Data to Oregon s Approved Lambert Projection. Determining Stand Size, Stand Types, Road Length, and Stream Length. This lab will ask you to work with

More information

Exercises for Windows

Exercises for Windows Exercises for Windows CAChe User Interface for Windows Select tool Application window Document window (workspace) Style bar Tool palette Select entire molecule Select Similar Group Select Atom tool Rotate

More information

Introduction to ArcGIS 10.2

Introduction to ArcGIS 10.2 Introduction to ArcGIS 10.2 Francisco Olivera, Ph.D., P.E. Srikanth Koka Lauren Walker Aishwarya Vijaykumar Keri Clary Department of Civil Engineering April 21, 2014 Contents Brief Overview of ArcGIS 10.2...

More information

M E R C E R W I N WA L K T H R O U G H

M E R C E R W I N WA L K T H R O U G H H E A L T H W E A L T H C A R E E R WA L K T H R O U G H C L I E N T S O L U T I O N S T E A M T A B L E O F C O N T E N T 1. Login to the Tool 2 2. Published reports... 7 3. Select Results Criteria...

More information

ICM-Chemist How-To Guide. Version 3.6-1g Last Updated 12/01/2009

ICM-Chemist How-To Guide. Version 3.6-1g Last Updated 12/01/2009 ICM-Chemist How-To Guide Version 3.6-1g Last Updated 12/01/2009 ICM-Chemist HOW TO IMPORT, SKETCH AND EDIT CHEMICALS How to access the ICM Molecular Editor. 1. Click here 2. Start sketching How to sketch

More information

41. Sim Reactions Example

41. Sim Reactions Example HSC Chemistry 7.0 41-1(6) 41. Sim Reactions Example Figure 1: Sim Reactions Example, Run mode view after calculations. General This example contains instruction how to create a simple model. The example

More information

MAGNETITE OXIDATION EXAMPLE

MAGNETITE OXIDATION EXAMPLE HSC Chemistry 7.0 1 MAGNETITE OXIDATION EXAMPLE Pelletized magnetite (Fe 3 O 4 ) ore may be oxidized to hematite (Fe 2 O 3 ) in shaft furnace. Typical magnetite content in ore is some 95%. Oxidation is

More information

Curriculum Support Maps for the Study of Indiana Coal (Student Handout)

Curriculum Support Maps for the Study of Indiana Coal (Student Handout) Curriculum Support Maps for the Study of Indiana Coal (Student Handout) Introduction In this lesson you will learn how to use a geographic information system (GIS) program (IndianaMap) to investigate coal

More information

Building Inflation Tables and CER Libraries

Building Inflation Tables and CER Libraries Building Inflation Tables and CER Libraries January 2007 Presented by James K. Johnson Tecolote Research, Inc. Copyright Tecolote Research, Inc. September 2006 Abstract Building Inflation Tables and CER

More information

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6)

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V is a free, open source, visualization and data analysis software package that is the

More information

SECOORA Data Portal Exercises

SECOORA Data Portal Exercises SECOORA Data Portal Exercises Exercise #1: April 2018- Carolina Storm using Historic Real-time Sensor Exercise #2: Exploration of Data Trends for Estuarine Fish Abundance and Sea Surface Temperature Exercise

More information

How many states. Record high temperature

How many states. Record high temperature Record high temperature How many states Class Midpoint Label 94.5 99.5 94.5-99.5 0 97 99.5 104.5 99.5-104.5 2 102 102 104.5 109.5 104.5-109.5 8 107 107 109.5 114.5 109.5-114.5 18 112 112 114.5 119.5 114.5-119.5

More information

EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE

EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE Document Updated: December, 2007 Introduction This exercise is designed to provide you with possible silvicultural

More information

Agilent MassHunter Quantitative Data Analysis

Agilent MassHunter Quantitative Data Analysis Agilent MassHunter Quantitative Data Analysis Presenters: Howard Sanford Stephen Harnos MassHunter Quantitation: Batch and Method Setup Outliers, Data Review, Reporting 1 MassHunter Quantitative Analysis

More information

1. Double-click the ArcMap icon on your computer s desktop. 2. When the ArcMap start-up dialog box appears, click An existing map and click OK.

1. Double-click the ArcMap icon on your computer s desktop. 2. When the ArcMap start-up dialog box appears, click An existing map and click OK. Module 2, Lesson 1 The earth moves In this activity, you will observe worldwide patterns of seismic activity (earthquakes) and volcanic activity (volcanoes). You will analyze the relationships of those

More information

Using a GIS to Calculate Area of Occupancy. Part 1: Creating a Shapefile Grid

Using a GIS to Calculate Area of Occupancy. Part 1: Creating a Shapefile Grid Using a GIS to Calculate Area of Occupancy Part 1: Creating a Shapefile Grid By Ryan Elliott California Natural Diversity Database, A NatureServe network program December 2008 This document describes the

More information

Working with ArcGIS: Classification

Working with ArcGIS: Classification Working with ArcGIS: Classification 2 Abbreviations D-click R-click TOC Double Click Right Click Table of Content Introduction The benefit from the use of geographic information system (GIS) software is

More information

Starry Night Version 5.7 Features What s new and how to use them!

Starry Night Version 5.7 Features What s new and how to use them! Starry Night Version 5.7 Features What s new and how to use them! New Features Overview 1. Space Missions (Probe Paths) 2. 3-D Object Models 3. Advanced Telescope Control panel 4. Google Maps Integration

More information

Multiphysics Modeling

Multiphysics Modeling 11 Multiphysics Modeling This chapter covers the use of FEMLAB for multiphysics modeling and coupled-field analyses. It first describes the various ways of building multiphysics models. Then a step-by-step

More information

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Thematic maps commonly deal with either of two kinds of data: Qualitative Data showing differences in kind or type (e.g.,

More information

Using SkyTools to log Texas 45 list objects

Using SkyTools to log Texas 45 list objects Houston Astronomical Society Using SkyTools to log Texas 45 list objects You can use SkyTools to keep track of objects observed in Columbus and copy the output into the Texas 45 observation log. Preliminary

More information

How to create a new geodatabase using the extract data wizard. 1. How to Extract the Schema to create a Geodatabase using an existing design.

How to create a new geodatabase using the extract data wizard. 1. How to Extract the Schema to create a Geodatabase using an existing design. How to create a new geodatabase using the extract data wizard The Extract Data Wizard can be used to create a new database based on an existing geodatabase. This tool may be used in the following cases:

More information

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION In this lab you will learn how to use Excel to display the relationship between two quantitative variables, measure the strength and direction of the

More information

Center of Mass. Evaluation copy

Center of Mass. Evaluation copy Center of Mass Experiment 19 INTRODUCTION In the most of the previous experiments you have examined the motion of a single object as it underwent a variety of motions. You learned that an object subject

More information

DiscoveryGate SM Version 1.4 Participant s Guide

DiscoveryGate SM Version 1.4 Participant s Guide Citation Searching in CrossFire Beilstein DiscoveryGate SM Version 1.4 Participant s Guide Citation Searching in CrossFire Beilstein DiscoveryGate SM Version 1.4 Participant s Guide Elsevier MDL 14600

More information

Getting Started. Start ArcMap by opening up a new map.

Getting Started. Start ArcMap by opening up a new map. Start ArcMap by opening up a new map. Getting Started We now need to set up ArcMap to do some analysis using the Spatial Analyst extension. You will need to activate the Spatial Analyst extension by selecting

More information

St art. rp m. Km /h 1: : : : : : : : : : : : :5 2.5.

St art. rp m. Km /h 1: : : : : : : : : : : : :5 2.5. modified 22/05/14 t 3:5 2.5 3:5 5.0 3:5 7.5 4:0 0.0 4:0 2.5 4:0 5.0 4:0 7.5 4:1 0.0 4:1 2.5 4:1 5.0 4:1 7.5 4:2 0.0 Km /h 0 25 50 75 100 125 150 175 200 225 rp m 0 250 0 500 0 750 0 100 00 125 00 1 2 3

More information

Agilent MassHunter Quantitative Data Analysis

Agilent MassHunter Quantitative Data Analysis Agilent MassHunter Quantitative Data Analysis Presenters: Howard Sanford Stephen Harnos MassHunter Quantitation: Batch Table, Compound Information Setup, Calibration Curve and Globals Settings 1 MassHunter

More information

10. Facies Modeling Sequential Indicator Simulation (SIS)

10. Facies Modeling Sequential Indicator Simulation (SIS) 10. Facies Modeling 10.1 Sequential Indicator Simulation (SIS) In this section the process of building a basic facies model conditioned to well observations using SIS. The variogram type, ranges, and azimuth

More information

Esri UC2013. Technical Workshop.

Esri UC2013. Technical Workshop. Esri International User Conference San Diego, California Technical Workshops July 9, 2013 CAD: Introduction to using CAD Data in ArcGIS Jeff Reinhart & Phil Sanchez Agenda Overview of ArcGIS CAD Support

More information

Activity P11: Collision Impulse and Momentum (Force Sensor, Motion Sensor)

Activity P11: Collision Impulse and Momentum (Force Sensor, Motion Sensor) Name Class Date Activity P11: Collision Impulse and Momentum (Force Sensor, Motion Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) Newton s Laws P11 Impulse.DS P14 Collision P14_COLL.SWS

More information

Integrated Square-Shaped Spiral Inductor

Integrated Square-Shaped Spiral Inductor Page 1 of 9 Electrical Component Models : Integrated Square-Shaped Spiral Inductor Integrated Square-Shaped Spiral Inductor This example presents a model of a micro-scale square inductor, used for LC bandpass

More information

Geology Wilson Computer lab Pitfalls II

Geology Wilson Computer lab Pitfalls II Geology 554 - Wilson Computer lab Pitfalls II Today we ll explore a subtle pitfall that can have significant influence on the interpretation of both simple and complex structures alike (see example 10

More information

Working with Digital Elevation Models in ArcGIS 8.3

Working with Digital Elevation Models in ArcGIS 8.3 Working with Digital Elevation Models in ArcGIS 8.3 The homework that you need to turn in is found at the end of this document. This lab continues your introduction to using the Spatial Analyst Extension

More information

OECD QSAR Toolbox v.3.0

OECD QSAR Toolbox v.3.0 OECD QSAR Toolbox v.3.0 Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists Background Objectives Specific Aims Trend analysis The exercise

More information

Introduction to ArcMap

Introduction to ArcMap Introduction to ArcMap ArcMap ArcMap is a Map-centric GUI tool used to perform map-based tasks Mapping Create maps by working geographically and interactively Display and present Export or print Publish

More information

How do I do that in Quantum GIS: illustrating classic GIS tasks Edited by: Arthur J. Lembo, Jr.; Salisbury University

How do I do that in Quantum GIS: illustrating classic GIS tasks Edited by: Arthur J. Lembo, Jr.; Salisbury University How do I do that in Quantum GIS: illustrating classic GIS tasks Edited by: Arthur J. Lembo, Jr.; Salisbury University How do I do that in Quantum GIS Page 1 Introduction from the editor:... 4 Database

More information

Workshop: Build a Basic HEC-HMS Model from Scratch

Workshop: Build a Basic HEC-HMS Model from Scratch Workshop: Build a Basic HEC-HMS Model from Scratch This workshop is designed to help new users of HEC-HMS learn how to apply the software. Not all the capabilities in HEC-HMS are demonstrated in the workshop

More information

ncounter PlexSet Data Analysis Guidelines

ncounter PlexSet Data Analysis Guidelines ncounter PlexSet Data Analysis Guidelines NanoString Technologies, Inc. 530 airview Ave North Seattle, Washington 98109 USA Telephone: 206.378.6266 888.358.6266 E-mail: info@nanostring.com Molecules That

More information

Student Activity Sheet- Denali Topo Map

Student Activity Sheet- Denali Topo Map Student Activity Sheet- Denali Topo Map Directions: Follow the steps in order and answer the associated questions as you proceed through the activity. The first part of the activity will be guided by your

More information

Vector components and motion

Vector components and motion Vector components and motion Objectives Distinguish between vectors and scalars and give examples of each. Use vector diagrams to interpret the relationships among vector quantities such as force and acceleration.

More information

Newton's 2 nd Law. . Your end results should only be interms of m

Newton's 2 nd Law. . Your end results should only be interms of m Newton's nd Law Introduction: In today's lab you will demonstrate the validity of Newton's Laws in predicting the motion of a simple mechanical system. The system that you will investigate consists of

More information

Geodatabases and ArcCatalog

Geodatabases and ArcCatalog Geodatabases and ArcCatalog Francisco Olivera, Ph.D., P.E. Srikanth Koka Lauren Walker Aishwarya Vijaykumar Keri Clary Department of Civil Engineering April 21, 2014 Contents Geodatabases and ArcCatalog...

More information

Geodatabases and ArcCatalog

Geodatabases and ArcCatalog Geodatabases and ArcCatalog Prepared by Francisco Olivera, Ph.D. and Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of Geodatabases Goals of the

More information

Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring

Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring Print Your Name Print Your Partners' Names Instructions April 20, 2016 Before lab,

More information

Athena Visual Software, Inc. 1

Athena Visual Software, Inc. 1 Athena Visual Studio Visual Kinetics Tutorial VisualKinetics is an integrated tool within the Athena Visual Studio software environment, which allows scientists and engineers to simulate the dynamic behavior

More information

LAB 3 INSTRUCTIONS SIMPLE LINEAR REGRESSION

LAB 3 INSTRUCTIONS SIMPLE LINEAR REGRESSION LAB 3 INSTRUCTIONS SIMPLE LINEAR REGRESSION In this lab you will first learn how to display the relationship between two quantitative variables with a scatterplot and also how to measure the strength of

More information

Chem 1 Kinetics. Objectives. Concepts

Chem 1 Kinetics. Objectives. Concepts Chem 1 Kinetics Objectives 1. Learn some basic ideas in chemical kinetics. 2. Understand how the computer visualizations can be used to benefit the learning process. 3. Understand how the computer models

More information

Measuring Planck s Constant By Martin Hackworth

Measuring Planck s Constant By Martin Hackworth Measuring Planck s Constant By Martin Hackworth Historical Perspective and Physics Theory Max Planck (1858-1947) was born in Kiel Germany and attended schools in Munich and Berlin. Planck was an early

More information

Jasco V-670 absorption spectrometer

Jasco V-670 absorption spectrometer Laser Spectroscopy Labs Jasco V-670 absorption spectrometer Operation instructions 1. Turn ON the power switch on the right side of the spectrophotometer. It takes about 5 minutes for the light source

More information

5-Sep-15 PHYS101-2 GRAPHING

5-Sep-15 PHYS101-2 GRAPHING GRAPHING Objectives 1- To plot and analyze a graph manually and using Microsoft Excel. 2- To find constants from a nonlinear relation. Exercise 1 - Using Excel to plot a graph Suppose you have measured

More information

Table of content. Understanding workflow automation - Making the right choice Creating a workflow...05

Table of content. Understanding workflow automation - Making the right choice Creating a workflow...05 Marketers need to categorize their audience to maximize their r e a c h. Z o h o C a m p a i g n s a u t o m a t e s r e c i p i e n t c l a s s i fi c a t i o n a n d action performance to free up marketers

More information

The OptiSage module. Use the OptiSage module for the assessment of Gibbs energy data. Table of contents

The OptiSage module. Use the OptiSage module for the assessment of Gibbs energy data. Table of contents The module Use the module for the assessment of Gibbs energy data. Various types of experimental data can be utilized in order to generate optimized parameters for the Gibbs energies of stoichiometric

More information

Learning ArcGIS: Introduction to ArcCatalog 10.1

Learning ArcGIS: Introduction to ArcCatalog 10.1 Learning ArcGIS: Introduction to ArcCatalog 10.1 Estimated Time: 1 Hour Information systems help us to manage what we know by making it easier to organize, access, manipulate, and apply knowledge to the

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

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

More information

caused displacement of ocean water resulting in a massive tsunami. II. Purpose

caused displacement of ocean water resulting in a massive tsunami. II. Purpose I. Introduction The Great Sumatra Earthquake event took place on December 26, 2004, and was one of the most notable and devastating natural disasters of the decade. The event consisted of a major initial

More information

NCSS Statistical Software. Harmonic Regression. This section provides the technical details of the model that is fit by this procedure.

NCSS Statistical Software. Harmonic Regression. This section provides the technical details of the model that is fit by this procedure. Chapter 460 Introduction This program calculates the harmonic regression of a time series. That is, it fits designated harmonics (sinusoidal terms of different wavelengths) using our nonlinear regression

More information

PROJECT LEADER TIP #6 HOW TO ADD SAMPLING UNITS

PROJECT LEADER TIP #6 HOW TO ADD SAMPLING UNITS PROJECT LEADER TIP #6 HOW TO ADD SAMPLING UNITS Before beginning, it is important to understand that sampling locations are set-up hierarchically. For example, Pacific Flyway Shorebird Survey the hierarchy

More information

Dose-Response Analysis Report

Dose-Response Analysis Report Contents Introduction... 1 Step 1 - Treatment Selection... 2 Step 2 - Data Column Selection... 2 Step 3 - Chemical Selection... 2 Step 4 - Rate Verification... 3 Step 5 - Sample Verification... 4 Step

More information