The ICNet REU Freeze-Thaw Research Project The Climate Change Analysis Technical Guide: Model Output, Pre-Processing, Analysis, and Displaying Results

Size: px
Start display at page:

Download "The ICNet REU Freeze-Thaw Research Project The Climate Change Analysis Technical Guide: Model Output, Pre-Processing, Analysis, and Displaying Results"

Transcription

1 The ICNet REU Freeze-Thaw Research Project The Climate Change Analysis Technical Guide: Model Output, Pre-Processing, Analysis, and Displaying Results This guide provides the necessary steps for analyzing multiple pavement locations using a modified automation of Model 158, developed by the U.S Army Corps of Engineers. The results include.csv file outputs of daily and annual metrics as well as plots of those metrics. This set of R analysis instructions is only written for one location; Madison, ME. Therefore, steps must be repeated with naming convention adjustments to generate results for other locations. MODEL OUTPUT First, obtain necessary observed data ( ) and CMIP5 downscaled global climate model output ( ) for the geographical region being analyzed. Be sure to properly name files depending on data source chosen prior to performing R analysis. This project uses two different sources of model output: Bureau of Reclamation and Station Data. Bureau of Reclamation Follow instructions below which are adapted from the U.S Department of Transportation: Federal Highway Administration s pdf user guide, linked here: es/user_guide/ 1. Enter the Bureau of Reclamation s website by following this link: Confirm the website entry. 2. Click on the "Projections: Subset Request" tab. 1

2 3. Time Step and Period (Step 1.1) 1. Select Daily. 2. Select the full time period, January 1950 through December Domain (Step 1.2) 1. Select NLDAS (referring to North American Land-Data Assimilation System.) 5. Spatial extent selection method (Step 1.3) 1. Site coordinates must be in decimal degree format. If not, convert them using an online converter. a. For Madison, ME the coordinates: N and W were converted using to Note that Northern and Eastern coordinates are represented by positive numbers, conversely Southern and Western coordinates are shown as negative numbers. b. Choose Location as the method and copy and paste the site coordinates. Then click Map Location and zoom in using the slider tool to check that only one grid cell is selected. Do not click on the map itself because it will change the set coordinates. To focus the zooming, instead click and drag the map until the chosen location is visible. 6. Click on the second tab at the top of the form, Page 2: Products, Variables, Projections 1. Select BCCAv2-CMIP5-Climate-daily. 7. Products & Variables -- daily projections (Step 2.5) 1. Under Products, select 1/8 degree BCCA projections and 1/8 degree Observed data ( ) 2

3 2. Under Variables, select all three: Precipitation Rate (mm/day), Min Surface Air Temperature (deg C), and Max Surface Air Temperature (deg C.) 8. Emissions Scenarios, Climate Models and Runs (Step 2.6) 1. Select any number of models and model runs, but do not include multiple emissions scenarios in an output request. After one request is finished, return to this step to request additional scenarios. For Madison, ME, all available models and model runs were chosen for both requests of RCP4.5 and RCP Click on the third tab at the top of the form, Page 3: Analysis, Format, & Notification 10. Analysis (Step 3.7) 1. Select No Analysis (Extracting Time Series only) 3

4 11. Output Format (Step 3.8) 1. Select ASCII text, comma-delimited (csv.) 12. Notification when Processing is Complete (Step 3.9) 1. Enter the address where it would be helpful to receive a notification when the processing is complete. 13. Usage Information (Step 3.10) 1. Select the appropriate Entity, Application, and Sector(s). 14. Submit 1. When complete, scroll up the page to make sure all boxes for steps are colored green. If a box is white, click on that box, return to the appropriate step in these instructions, and fill in the required information. 2. Once all information is entered, click on Submit Request at the top left corner of the form. A Summary of Requested Files will appear. Select Submit to send the request. It may take up to several hours to receive the requested data. 15. When the data are available, a link to the request will be sent in an (one per emissions scenario.) Open the message and click on the link provided. 16. The link brings up a webpage with links for downloading the requested data. Click on 1_8obs.zip to download the observed data and bcca5.zip to download model output. Note that this is the last step that needs to be followed in the FHWA pdf guide. This analysis does not require the FHWA CMIP tool. Proceed with the next steps below. 17. Once the files are received, create two folders somewhere on your computer and include in the folder name the Location (first three letters, all caps) and emissions 4

5 scenario chosen. After unzipping correct files, save them to corresponding folders. Each folder should have two folders inside called 1_8obs and bcca5. These contain observed data and model output, respectively. 18. Renaming files - this is where adhering to naming conventions is vital. The contents of both folders will look the same, but different files are needed from each. Inside each 1_8obs folder find: tasmax.csv and tasmin.csv and in each bcca5 folder find: COLS_tasmax.txt, tasmax.csv, and tasmin.csv (A total of 5 files for each emissions scenario.) 5

6 Rename the files starting with the Location (first three letters, all caps) and emissions scenario. See the following examples for observed (OBS) and models (MOD) in Madison, ME with RCP 8.5. a. COLS_tasmax.txt à MAD_RCP8.5_List.txt b. tasmax.csv à MAD_RCP8.5_MODTmax.csv MAD_RCP8.5_OBSTmax.csv c. tasmin.csv à MAD_RCP8.5_MODTmin.csv MAD_RCP8.5_OBSTmin.csv 19. Save each renamed file in a newly created folder on the computer called Model 158. This folder will be used for storing inputs and output during freeze-thaw R analysis. The files in this folder are now named in a consistent and distinct manner, which allows them to be saved together in one folder. Station Data and Climate Model Output 1. Station data used for this project are statistically downscaled global climate model output for the station nearest the location being analyzed. This will need to be produced by someone with expertise in statistical downscaling. For this project, Dr. Anne Stoner, TTU provided the required files. 2. Each climate variable should include both observations and model output together in a station file, as well as headers with model names. Rename files as it was done for Madison, ME with RCP 8.5. a. MAD_RCP8.5_STNTmin b. MAD_RCP8.5_STNTmax 3. If files are from a location other than Madison, ME, check which models are contained in the station files. Open up STN_Preprocess.R, saved to the Model 158 folder in the set of MODEL 158 FOLDER PREPARATION instructions below, and make sure that these lines: colnames(modmin) <- c("year","month","day","m4","m6","m7","m0","m11","m12","m16","m17"," M19") colnames(modmax) <- c("year","month","day","m4","m6","m7","m0","m11","m12","m16","m17"," M19") Do in fact show the correct names for the station file headers. This was done for Madison, ME by looking at the MAD_RCP4.5.txt file output after running all of these 6

7 instructions for the Bureau of Reclamation files. The same M# which corresponds to model name must be consistent. (Ex. "ccsm4.1.rcp85" "MAD_RCP8.5_M4.csv" is an association made for RCP8.5 in Bureau of Reclamation files. The"ccsm4.1.rcp85" model was found to be a common model between both sources of output, so when it appeared in station files it was assigned M4 as a name.) Ensure that all other model names match up with one Bureau of Reclamation.txt file of either emission scenario, and that the number of M# names equals the number of models in the station files. If they do not, add correct names to this function and File à Save. Also note which emissions scenario is used as the reference. 7

8 PRE-PROCESSING These steps will ensure that all the files needed to perform the freeze-thaw R analysis are contained in the Model 158 folder. 1. Save the following R functions and scripts in the Model 158 folder: BR_Preprocess_MOD.R BR_Preprocess_OBS.R STN_Preprocess.R M158_Ref_Temp.R M158_Setup.R M158_Calc.R M158_DailyPlot.R M158_Summary.R M158_SubAnnualPlot.R M158_AnnualPlot.R M158_Source.R M158_Names.R M158_FreezeThaw.R 2. Create a.csv file with site-specific parameters and save to the Model 158 folder. The file must have the naming convention: Location_Site.csv. Madison, ME for example is MAD_Site.csv File fields for Location_Site.csv must be: Layer= Either 1,2, or 3 depending on where frost or thaw is occurring d= thickness of the surface asphalt layer (ft) nf= n-factor for freezing nt= n-factor for thawing k= thermal conductivity (BTU/(ft*day* F)) c= volumetric heat capacity (BTU/(ft 3 * F)) L= volumetric latent heat of fusion (BTU/ft 3 ) t= annual length of time below freezing (days) Vo= difference between the mean annual temperature below the ground surface and the freezing temperature ( F) Mf= Multiplier for Frost Depth Computation Mt= Multiplier for Thaw Depth Computation a= Constant (in.) 8

9 b= Constant (in.) CF= Frost depth coefficient CT= Thaw depth coefficient Startday= Start of Winter Year, Julian Day (Ex. Oct.1) Endday= End of Winter Year, Julian Day (Ex. Jun.1) 3. Double-check that every item is in the Model 158 folder. For one location and two emissions scenarios (Ex. MAD_RCP4.5 & 8.5) there should be: 2.txt and 12.csv files obtained through data collection, 13 R files, and 1 site.csv file. Sample Model 158 Folder Contents: 9

10 10

11 FREEZE-THAW R ANALYSIS 1. Make sure that both R and RStudio are installed on the computer and that the versions are correct for the computer s operating system. Both downloads are needed but the analysis will happen inside RStudio. To install R: To install RStudio: 2. Open RStudio. Go to File à Open File and open M158_FreezeThaw.R, previously saved in the Model 158 folder. 3. At the top of the file, beneath the green text, otherwise known as comments, there is a line that looks like: setwd("c:/users/jill/downloads/files for R/Model158") It is the first non-commented line and it sets the working directory. A working directory is the computer s path that designates where inputs can be found and where outputs are stored. This is an example directory from an ICNet computer so it will need to be set again for each different user. If you know the path where you have stored the files, replace ( C /Users/jill/Downloads/Files for R/Model158 ) with your computer s path. If you are not certain what to set for the path, you can use R to help you determine the path. To do this, go to the pull-down menus Session à Set Working Directory à Choose Working Directory and select wherever the Model 158 folder is saved. The path that was taken to get to this folder will appear in the R Console: the window at the bottom of the RStudio interface. The Console is different from an R script or function like M158_FreezeThaw.R because it is not editable like a document. Its purpose is for quick calculations, tracking progress during runs, and displaying errors. When the new working directory appears in the Console, copy and paste it to replace the old working directory. Every time a new R session is started, the working directory must be set either by following this procedure or by running the setwd line. 11

12 4. Highlight and run the next line by clicking Run in the top right corner of the script window: source("m158_source.r") If this results in an error displayed in the Console claiming there is a package not found, type: install.packages( ) in the Console with whichever package name it displays inside the quotes. Press Enter on the keyboard. If R asks whether to use a desired personal library, click yes. 5. Highlight and run the following line: Detail <- if(interactive()) Choose() In the R Console at the bottom of the screen, it will display a question prompt asking which location is being analyzed. Type the answer: MAD in the console and press Enter on the keyboard. R may try to autocorrect MAD to mad, one of its built-in functions. If this occurs, click in the Console to ignore the suggestion and then press Enter. 12

13 The next prompt asks which emissions scenario is being looked at. Choose either RCP4.5 or RCP8.5, type it in the Console, and press Enter. 6. Run every line below this line: Detail <- if(interactive()) Choose() This will run all model run and observed files for the chosen emissions scenario, Namelist, through the entire freeze-thaw Model 158 analysis. Be patient. This step may take around 7 minutes per model. The stop sign icon in the Console means that the code being run is in progress. Do not interrupt the model when it is running. 7. Open the Model 158 folder on the computer during the process and sort the viewing order by Date Modified. This is a good way to check that the functions are working and that outputs are being stored with correct naming conventions. If problems occur and this process is run multiple times, it is important to know that R cannot output a particular file 13

14 if a file of the same name is open. Make sure all.csv and.txt files are closed if the intention is to write over them. 8. After running this process with Namelist, all daily and annual output files for 1 location and 1 emissions scenario, based on input Bureau of Reclamation and Station files, should be stored. Step 6 will result in all daily and annual.csv files being present in the folder. Output for each model run could look like this in Step 8: 9. If daily plots are desired, open M158_Source.R and uncomment the line: #M158_DailyPlot(DailyCalc,Site,PlotName) By deleting the # sign before running the section, daily plots will be produced for all models in the List being run. This results in many plots, so unless necessary, leave this line commented out. Repeat Steps 4-7 to save this change and output plots. 10. If problems are occurring when all the files are run at once or daily plots are only desired for a particular list of models, uncomment lines defining List0 through List9. Then repeat Step 6, replacing List <- List0 with every defined list and then running (Ex. List <-List1) This course of action will produce the same results as Step 6, but it will instead be performing calculations for a few model files at a time, allowing you to determine which model files are causing a problem during the process. 14

15 Note: common problems with model files include: incorrect file names or file extensions and missing data. It is good practice to also monitor the file sizes of inputs and outputs, so that if a file looks out of the ordinary, you can open it to check that all expected data is present. 15

16 11. To run this process for other locations and emissions scenarios, all variables must be deleted to avoid incorrect or unwanted results. To do this, find the Environment tab in the top right window in the RStudio interface. Click the yellow broom icon to clear objects from the workspace. Refer back to Step 5 in R ANALYSIS to run this process for other combinations of locations and emissions scenarios. Do also clear objects from the workspace before attempting creation of annual plots. 16

17 DISPLAYING RESULTS: R ANNUAL PLOTS 1. To produce annual plots for a single emissions scenario, open M158_AnnualPlot.R 2. Set working directory for this script as was done for M158_FreezeThaw.R in Step 3 of FREEZE-THAW R ANALYSIS 3. Run the two source lines: 4. Run the next line and answer the same questions as in Step 5 of FREEZE-THAW R ANALYSIS 5. Run the two lines below this line: 6. Set the ModelNames and MN variables to those that should be displayed on the plots (ModelNames) and corresponding names (MN) to read in the annual.csv files. For RCP 4.5 Madison, ME s names should appear as follows: If, for another, site, actual model names should be displayed on plots, change the names in ModelNames to correspond to the file names. (Ex. ModelName<- ccsm4.1.rcp85 when MN<- M4 ) 7. If working with a site other than Madison, ME, the following customization is available to make plots more visually meaningful a. Set plot titles: Wherever T is defined, it can be changed for each annual metric by highlighting and running to replace T s previously held string value b. Set flag values: If data is missing or unrealistic, V can be changed for each annual metric to flag all these values with the same, recognizable value. 17

18 c. Set the maximum value of y-axis density scales in histograms and PDF s: If plots are not easily compared due to varying y-axis scales, MD can be changed to a maximum value found across all plots, ensuring a uniform scale d. Set the correct labels for units on y-axis scale: L1 and L2 are set to be Date and Miller Day, though they are the same values for annual metrics not measured by date 8. Highlight and run every line below the lines defining Location and Emission to produce all annual plots for 1 emissions scenario. That means these lines: 18

19 All the way until the very last lines: 9. Refer back to Step 4 of FREEZE-THAW R ANNUAL PLOTS to produce plots for other locations and emissions scenarios 19

Projections for use in the Merced River basin

Projections for use in the Merced River basin Instructions to download Downscaled CMIP3 and CMIP5 Climate and Hydrology Projections for use in the Merced River basin Go to the Downscaled CMIP3 and CMIP5 Climate and Hydrology Projections website. 1.

More information

ADVANCED INQUIRIES IN ALBEDO: PART 2 EXCEL DATA PROCESSING INSTRUCTIONS

ADVANCED INQUIRIES IN ALBEDO: PART 2 EXCEL DATA PROCESSING INSTRUCTIONS ADVANCED INQUIRIES IN ALBEDO: PART 2 EXCEL DATA PROCESSING INSTRUCTIONS Once you have downloaded a MODIS subset, there are a few steps you must take before you begin analyzing the data. Directions for

More information

DAQFactory U3 Tutorial Getting Started with DAQFactory-Express and your LabJack U3 11/3/06

DAQFactory U3 Tutorial Getting Started with DAQFactory-Express and your LabJack U3 11/3/06 DAQFactory U3 Tutorial Getting Started with DAQFactory-Express and your LabJack U3 11/3/06 Congratulations on the purchase of your new LabJack U3. Included on your installation CD is a fully licensed copy

More information

CellaVision Proficiency Software

CellaVision Proficiency Software CellaVision Proficiency USER S MANUAL 2.3 CellaVision Proficiency Preface CellaVision is a trademark of CellaVision AB. All other trademarks used in this document are property of their respective owners.

More information

User Guide for the WegenerNet Data Portal

User Guide for the WegenerNet Data Portal User Guide for the WegenerNet Data Portal (v9/18feb2010) The WegenerNet Data Portal provides access to measurement data from the climate stations as well as detailed information about the project. Quality-checked

More information

Go back to your Excel sheet. Choose Paste to Sheet tab at the bottom.

Go back to your Excel sheet. Choose Paste to Sheet tab at the bottom. PCC: How to easily calculate monthly weights. All names on this report are fictitious to protect patient information. The images contained are from a Mac computer, if you use a PC and have difficulty with

More information

General Guidelines: SAS Analyst

General Guidelines: SAS Analyst General Guidelines: SAS Analyst The Analyst application is a data analysis tool in SAS for Windows (version 7 and later) that provides easy access to basic statistical analyses using a point-and-click

More information

Objectives This tutorial shows how to build a Sedimentation and River Hydraulics Two-Dimensional (SRH-2D) simulation.

Objectives This tutorial shows how to build a Sedimentation and River Hydraulics Two-Dimensional (SRH-2D) simulation. v. 12.1 SMS 12.1 Tutorial Objectives This tutorial shows how to build a Sedimentation and River Hydraulics Two-Dimensional () simulation. Prerequisites SMS Overview tutorial Requirements Model Map Module

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

Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide

Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide Updated: 10/17/2018 Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide Table of Contents Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting... 3 Introduction... 3 Getting Started...

More information

RITIS Training Module 4 Script

RITIS Training Module 4 Script RITIS Training Module 4 Script Welcome to the Regional Integrated Information System or RITIS Module 04 CBT. To begin, select the start button or press Shift+N on your keyboard. This training module will

More information

RITIS Training Module 10 Script. To return to the Florida Analytics main page, select Florida Analytics Tools in the upper left corner of the page.

RITIS Training Module 10 Script. To return to the Florida Analytics main page, select Florida Analytics Tools in the upper left corner of the page. RITIS Training Module 10 Script Welcome to the Regional Integrated Transportation Information System or RITIS Module 10 CBT. To begin, select the start button or press Shift+N on your keyboard. To return

More information

v Overview SMS Tutorials Prerequisites Requirements Time Objectives

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

More information

v SRH-2D Post-Processing SMS 12.3 Tutorial Prerequisites Requirements Time Objectives

v SRH-2D Post-Processing SMS 12.3 Tutorial Prerequisites Requirements Time Objectives v. 12.3 SMS 12.3 Tutorial SRH-2D Post-Processing Objectives This tutorial illustrates some techniques for manipulating the solution generated by the Sedimentation and River Hydraulics Two-Dimensional (SRH-2D)

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

D2M2 - GIS USER'S MANUAL

D2M2 - GIS USER'S MANUAL D2M2 - GIS USER'S MANUAL USACE ERDC, July 2012 1 Content Overview of D2M2... 3 User Interface... 4 Menus... 4 File Menu... 4 Edit Menu... 5 View Menu... 5 Layer Menu... 6 Analysis Menu... 6 Tools Menu...

More information

SAS Visual Analytics 8.2: Getting Started with Reports

SAS Visual Analytics 8.2: Getting Started with Reports SAS Visual Analytics 8.2: Getting Started with Reports Introduction Reporting The SAS Visual Analytics tools give you everything you need to produce and distribute clear and compelling reports. SAS Visual

More information

Technical Documentation Version 7.2 Slots

Technical Documentation Version 7.2 Slots Technical Documentation Version 7.2 Slots These documents are copyrighted by the Regents of the University of Colorado. No part of this document may be reproduced, stored in a retrieval system, or transmitted

More information

RPMA - Roadway Project Mapping Application

RPMA - Roadway Project Mapping Application RPMA - Roadway Project Mapping Application RPMA Training Documentation Version: 1/9/2018 Title of Report 1 Table of Contents Table of Contents...2 Background Info on Roadway Project Mapping Application...3

More information

RClimTool USER MANUAL

RClimTool USER MANUAL RClimTool USER MANUAL By Lizeth Llanos Herrera, student Statistics This tool is designed to support, process automation and analysis of climatic series within the agreement of CIAT-MADR. It is not intended

More information

Steady-State and Transient Thermal Analysis of a Circuit Board

Steady-State and Transient Thermal Analysis of a Circuit Board Steady-State and Transient Thermal Analysis of a Circuit Board Problem Description The circuit board shown below includes three chips that produce heat during normal operation. One chip stays energized

More information

Getting Started with CAPS

Getting Started with CAPS Getting Started with CAPS Starting Out The first time you start the CAPS software, you will be asked for your activation code and then prompted to fill in your Email address and Locale information. The

More information

MATLAB Introduction to MATLAB Programming

MATLAB Introduction to MATLAB Programming MATLAB Introduction to MATLAB Programming MATLAB Scripts So far we have typed all the commands in the Command Window which were executed when we hit Enter. Although every MATLAB command can be executed

More information

Turning Point Response System and Turning Point Anywhere

Turning Point Response System and Turning Point Anywhere What s in the TurningPoint Clicker Case? Each TurningPoint Clicker Case should have two primary components: USB input receiver (1) Clickers (30) How to Test the Response Devices Click TurningPoint AnyWhere

More information

ORS Employee Contact Information (ECI) Build MR.299

ORS Employee Contact Information (ECI) Build MR.299 ORS Employee Contact Information (ECI) Build MR.299 Use this program to generate a file that contains the contact information for your employees. The program will gather the information requested by the

More information

N2KExtractor. Maretron Data Extraction Software User s Manual

N2KExtractor. Maretron Data Extraction Software User s Manual N2KExtractor Maretron Data Extraction Software User s Manual Revision 3.1.6 Copyright 2017 Maretron, LLP All Rights Reserved Maretron, LLP 9014 N. 23rd Ave #10 Phoenix, AZ 85021-7850 http://www.maretron.com

More information

RITIS Training Module 9 Script

RITIS Training Module 9 Script RITIS Training Module 9 Script Welcome to the Regional Integrated Information System or RITIS Module 09 CBT. To begin, select the start button or press Shift+N on your keyboard. This training module will

More information

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at : GOOGLE APPS Application: Usage: Program Link: Contact: is an electronic collaboration tool. As needed by any staff member http://www.google.com or http://drive.google.com If you have difficulty using

More information

Stream Depletion Factor Model SDF View

Stream Depletion Factor Model SDF View Stream Depletion Factor Model SDF View User Manual - Version 1.2 Developed for the South Platte Advisory Committee by the Integrated Decision Support Group (IDS) at Colorado State University User Manual

More information

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout Fusion 1 CBR Fusion MLS Level 1 Core Functions Class Handout GETTING STARTED IN FUSION Logging On and Off To log on to Fusion MLS: 1. Type your user name in the User ID box. 2. Type your password in the

More information

MDA V8.1 What s New Functionality Overview

MDA V8.1 What s New Functionality Overview 1 Basic Concepts of MDA V8.1 Version General Notes Ribbon Configuration File Explorer Export Measure Data Signal Explorer Instrument Box Instrument and Time Slider Oscilloscope Table Configuration Manager

More information

SW860 FlukeView Software

SW860 FlukeView Software SW860 FlukeView Software Version 2 (Windows and DOS) Users Manual PN 944520 January 1995 Rev. 1 12/95 1995 Fluke Corporation, Inc. All rights reserved. Printed in U.S.A. All product names are trademarks

More information

Valley. Scheduling. Client User Manual _ Valmont Industries, Inc., Valley, NE USA. All rights reserved.

Valley. Scheduling. Client User Manual _ Valmont Industries, Inc., Valley, NE USA. All rights reserved. Valley Scheduling Client User Manual 09805_0 09 Valmont Industries, Inc., Valley, NE 6806 USA. All rights reserved. www.valleyirrigation.com Valley Scheduling This page was left blank intentionally Table

More information

SAS Universal Viewer 1.3

SAS Universal Viewer 1.3 SAS Universal Viewer 1.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Universal Viewer 1.3: User's Guide. Cary, NC: SAS

More information

.txt - Exporting and Importing. Table of Contents

.txt - Exporting and Importing. Table of Contents .txt - Exporting and Importing Table of Contents Export... 2 Using Add Skip... 3 Delimiter... 3 Other Options... 4 Saving Templates of Options Chosen... 4 Editing Information in the lower Grid... 5 Import...

More information

Reports Tab - Booklet Report

Reports Tab - Booklet Report Reports Tab - Booklet Report 1. Click on the Reports Tab. The Booklet Report tab will be visible. This option allows you to create all reports available in I.F.A.R.M. from this one function tab. All reporting

More information

Welcome to the Rainfall Atlas of Hawai i interactive map!

Welcome to the Rainfall Atlas of Hawai i interactive map! Welcome to the Rainfall Atlas of Hawai i interactive map! This guide will walk you through all of the capabilities of the interactive map so that you can make the most of all it has to offer. Conditions

More information

v SMS 11.1 Tutorial SRH-2D Prerequisites None Time minutes Requirements Map Module Mesh Module Scatter Module Generic Model SRH-2D

v SMS 11.1 Tutorial SRH-2D Prerequisites None Time minutes Requirements Map Module Mesh Module Scatter Module Generic Model SRH-2D v. 11.1 SMS 11.1 Tutorial SRH-2D Objectives This lesson will teach you how to prepare an unstructured mesh, run the SRH-2D numerical engine and view the results all within SMS. You will start by reading

More information

User's Guide. For CarChip and CarChip E/X 8210 & 8220

User's Guide. For CarChip and CarChip E/X 8210 & 8220 User's Guide TM For CarChip and CarChip E/X 8210 & 8220 Product Number: 8210, 8220 Davis Instruments Part Number: 7395.064 DriveRight CarChip User s Manual Rev A (January 2, 2003) Davis Instruments Corp.,

More information

Highway Performance Monitoring System

Highway Performance Monitoring System Highway Performance Monitoring System Version 1.0 June 2011 Quick Start Guide for Version 8.0 Federal Highway Administration Table of Contents Chapter 1 Introduction... 1 Chapter 2 HPMS Workflow... 2 Chapter

More information

OnCOR Silverlight Viewer Guide

OnCOR Silverlight Viewer Guide Getting Around There are many ways to move around the map! The simplest option is to use your mouse in the map area. If you hold the left button down, then click and drag, you can pan the map to a new

More information

CAPS Computer Aided Product Selection Program

CAPS Computer Aided Product Selection Program CAPS Computer Aided Product Selection Program This instructional guide includes: Improve and Increase Your Design Throughput and Productivity with CAPS....... 3 1. Create a My Greenheck Account............................

More information

Customizing Local Precipitation Data Files for SWAT

Customizing Local Precipitation Data Files for SWAT Customizing Local Precipitation Data Files for SWAT Zhulu Lin and David Radicliffe University of Georgia March 4, 2007 In order to successfully apply SWAT, meteorological data local to the area being studied

More information

Welcome to Cole On-line Help system!

Welcome to Cole On-line Help system! Welcome to Cole On-line Help system! Cole Online is an Internet based information directory that allows fast and efficient access to demographic information about residences and businesses. You can search

More information

Roadway Alignments and Profiles

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

More information

ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0

ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0 ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0 Contents Contents... i Oracle isupplier Portal Overview...1 Recommended Browsers and Settings...2 Advanced Settings...2 Turn-off pop-up blocker or Allow pop-up

More information

Tutorial For LamTopo

Tutorial For LamTopo Tutorial For LamTopo Automatic Grid Generation for LaModel One of the nicest features introduced in LaModel 2.0 was the capability of building the seam and topographic grid automatically from AutoCAD files.

More information

Instruction: Download and Install R and RStudio

Instruction: Download and Install R and RStudio 1 Instruction: Download and Install R and RStudio We will use a free statistical package R, and a free version of RStudio. Please refer to the following two steps to download both R and RStudio on your

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

More information

How to calculate population and jobs within ½ mile radius of site

How to calculate population and jobs within ½ mile radius of site How to calculate population and jobs within ½ mile radius of site Caltrans Project P359, Trip Generation Rates for Transportation Impact Analyses of Smart Growth Land Use Projects SECTION PAGE Population

More information

Technical Documentation Version 7.3 Scenario Management

Technical Documentation Version 7.3 Scenario Management Technical Documentation Version 7.3 Scenario Management These documents are copyrighted by the Regents of the University of Colorado. No part of this document may be reproduced, stored in a retrieval system,

More information

AGA User Manual. Version 1.0. January 2014

AGA User Manual. Version 1.0. January 2014 AGA User Manual Version 1.0 January 2014 Contents 1. Getting Started... 3 1a. Minimum Computer Specifications and Requirements... 3 1b. Installation... 3 1c. Running the Application... 4 1d. File Preparation...

More information

N2KExtractor. NMEA 2000 Data Extractor Software. User s Manual

N2KExtractor. NMEA 2000 Data Extractor Software. User s Manual N2KExtractor NMEA 2000 Data Extractor Software User s Manual Revision 1.0.0 Copyright 2012 Maretron, LLP All Rights Reserved Maretron, LLP 9014 N. 23 rd Ave #10 Phoenix, AZ 85021-7850 http://www.maretron.com

More information

1. Setup Everyone: Mount the /geobase/geo5215 drive and add a new Lab4 folder in you Labs directory.

1. Setup Everyone: Mount the /geobase/geo5215 drive and add a new Lab4 folder in you Labs directory. L A B 4 E X C E L For this lab, you will practice importing datasets into an Excel worksheet using different types of formatting. First, you will import data that is nicely organized at the source. Then

More information

DuctworkPro. User Guide

DuctworkPro. User Guide DuctworkPro for AutoCAD User Guide Version 2.0, March. 2004 Copyright 2004, Randall C. Wilkinson By Randall C. Wilkinson Freeware Version Users: This document describes the Professional Version of Ductwork.

More information

Welcome / Introductions

Welcome / Introductions A23 - CECAS Analytics Tool I Training Script (11.12.2014) 1 Welcome / Introductions Hello. I m Patricia Smith, regional trainer for regions 5 and 7. I d like to welcome you to this CECAS Analytics Tool

More information

User Guide. Avery Dennison Web Ordering Solution for Steinmart

User Guide. Avery Dennison Web Ordering Solution for Steinmart User Guide Avery Dennison Web Ordering Solution for Steinmart March 2012 Copyright 2012 A very Dennison The information in this document is subject to change without notice and should not be construed

More information

EXERCISE: GETTING STARTED WITH SAV

EXERCISE: GETTING STARTED WITH SAV Sequencing Analysis Viewer (SAV) Overview 1 EXERCISE: GETTING STARTED WITH SAV Purpose This exercise explores the following topics: How to load run data into SAV How to explore run metrics with SAV Getting

More information

Below is an example workflow of file inventorying at the American Geographical Society Library at UWM Libraries.

Below is an example workflow of file inventorying at the American Geographical Society Library at UWM Libraries. File Inventory with DROID Updated January 2018 Tool Homepage: http://www.nationalarchives.gov.uk/information-management/manageinformation/policy-process/digital-continuity/file-profiling-tool-droid/ Introduction

More information

GPS to GIS Tutorial Exploration of Native Plants

GPS to GIS Tutorial Exploration of Native Plants Grossmont College Introduction to GIScience NAME: Instructors: Curran & Goodman 1 GPS to GIS Tutorial Exploration of Native Plants 1. Create a folder on your USB drive titled: GPS1 2. Using your GPS receiver,

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

AMP User Manual Reports

AMP User Manual Reports AMP User Manual Reports AMP s reporting capabilities are designed to allow you the ability to create various types of customized reports that organize data in the way you need it presented. It is worth

More information

ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2

ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2 ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2 Document Control Change Record 4 Date Author Version Change Reference 12-Dec-2016 DOF 1.0 08-Feb-2017 DOF 1.1 Updated with new URL links 23-Mar-2017 DOF 1.2

More information

Active Display Lite. Beta User Notes. v22 January 2011

Active Display Lite. Beta User Notes. v22 January 2011 Active Display Lite Beta User Notes v22 January 2011 Welcome to Active Display Lite (ADLite), which has been designed by the same team (TVC (UK) Ltd, in association with the Gatwick Aviation Society) that

More information

Table of Contents. Getting Started...1 What is QCTool...1 Terms (Notational Conventions)...1

Table of Contents. Getting Started...1 What is QCTool...1 Terms (Notational Conventions)...1 2008 Table of Contents Getting Started...1 What is QCTool...1 Terms (Notational Conventions)...1 Importing Data...3 How to Import Data to QCTool...3 ASCII Columnar Format...3 To specify the header line...4

More information

StpScn Utility TRG-NT 15 5/19/2004

StpScn Utility TRG-NT 15 5/19/2004 StpScn Utility This utility will address match stops. This process is similar to running Adscan for matching student addresses. NOTE: If a batch called Stpscan doesn t already exist you will need to create

More information

Introduction to GIS & Mapping: ArcGIS Desktop

Introduction to GIS & Mapping: ArcGIS Desktop Introduction to GIS & Mapping: ArcGIS Desktop Your task in this exercise is to determine the best place to build a mixed use facility in Hudson County, NJ. In order to revitalize the community and take

More information

TABLE OF CONTENTS INTRODUCTION...2

TABLE OF CONTENTS INTRODUCTION...2 WINGARD PE 6.0 August 2010 TABLE OF CONTENTS TABLE OF CONTENTS...1 1. INTRODUCTION...2 2. PROGRAM OVERVIEW...3 2.1. PROGRAM MENUS... 4 2.2. MAIN TOOLBAR... 5 2.3. ANALYSIS... 7 2.4. OUTPUT... 10 2.5. DISPLAY

More information

CompassAA v3.50 Quick Start Guide AA Single Image Data Demo

CompassAA v3.50 Quick Start Guide AA Single Image Data Demo CompassAA CompassTA www.compassdatainc.com CompassAA v3.50 Quick Start Guide AA Single Image Data Demo Purpose of this Document This document is meant to introduce the new or beginning user to CompassAA

More information

BCM 4.0 Personal Call Manager User Guide. BCM 4.0 Business Communications Manager

BCM 4.0 Personal Call Manager User Guide. BCM 4.0 Business Communications Manager BCM 4.0 Personal Call Manager User Guide BCM 4.0 Business Communications Manager Document Status: Beta Document Version: 02 Part Code: N0027256 Date: January 2006 Copyright Nortel Networks Limited 2006

More information

GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I)

GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I) DEPARTMENT OF GEOGRAPHY HONG KONG BAPTIST UNIVERSITY Prof. Q. Zhou GEOG4017 Geographical Information Systems Lab 3 Data Collection and Integration (I) Objectives Before we can use GIS for any analysis

More information

SOLAR GRADE ROSTER UPLOAD - QUICK GUIDE

SOLAR GRADE ROSTER UPLOAD - QUICK GUIDE SOLAR GRADE ROSTER UPLOAD - QUICK GUIDE INTRODUCTION Grades that are downloaded from a PC as a.csv (comma delimited) or.txt (tab delimited) file can be imported into the SOLAR grade roster. Mac users must

More information

Using the GLOBE Visualization System

Using the GLOBE Visualization System Using the GLOBE Visualization System Hold the mouse over the GLOBE Data menu, then click on Visualize and Retrieve Data. Or, use the quick link shown below. Click on Enter the Visualization System link.

More information

hvpcp.apr user s guide: set up and tour

hvpcp.apr user s guide: set up and tour : set up and tour by Rob Edsall HVPCP (HealthVis-ParallelCoordinatePlot) is a visualization environment that serves as a follow-up to HealthVis (produced by Dan Haug and Alan MacEachren at Penn State)

More information

Analysis of Networks with Interactive MOdelling. User s Manual

Analysis of Networks with Interactive MOdelling. User s Manual Analysis of Networks with Interactive MOdelling User s Manual Contents 1 Requirements and installation 1 1.1 Java............................. 1 1.2 Cytoscape........................... 2 1.3 UPPAAL...........................

More information

Report Builder Fields on Report Filters

Report Builder Fields on Report Filters Report Builder The Report Builder allows you to create custom reports based on predefined Report categories and templates. The category describes the type of Report, for example, Age Analysis, Appointments,

More information

How to Import Part Numbers to Proman

How to Import Part Numbers to Proman How to Import Part Numbers to Proman This is a brief document that outlines how to take an Excel spreadsheet and either load new parts numbers into Proman or update data on existing part numbers. Before

More information

Release Notes for April StatCrunch Updates

Release Notes for April StatCrunch Updates Release Notes for April 2018 - StatCrunch Updates Major additions Introducing accessibility features that support full keyboard functionality including new keyboard shortcuts. [Go to page 2] Measures to

More information

Chapter 3 Editing and Assigning Data Values

Chapter 3 Editing and Assigning Data Values Chapter 3 Editing and Assigning Data Values Customized data items are powerful tools for forecasting and for creating what if scenarios. With Standard & Poor s Research Insight, you can assign data values

More information

I>clicker 7. Synchronization. Guide for Instructors

I>clicker 7. Synchronization. Guide for Instructors I>clicker 7 Synchronization Guide for Instructors What does synchronization mean? Why sync? How do I sync? These are questions instructors new with i>clicker often ask. As synchronization requires a number

More information

Tips for Responding to a Solicitation

Tips for Responding to a Solicitation Tips for Responding to a Solicitation If you run into any issues or have questions on how to submit a response please contact our helpdesk at erphelpdesk@hrsd.com or by phone at (757) 460-7318. Please

More information

Mapping Tabular Data Display XY points from csv

Mapping Tabular Data Display XY points from csv Mapping Tabular Data Display XY points from csv Materials needed: AussiePublicToilets.csv. [1] Open and examine the data: Open ArcMap and use the Add Data button to add the table AussiePublicToilets.csv

More information

VOCAL. Video Optical Comparison and Logging. User Guide

VOCAL. Video Optical Comparison and Logging. User Guide VOCAL Video Optical Comparison and Logging User Guide VOCAL is a custom user interface developed by Gradient Lens Corporation and designed to work within the VisionGauge measurement software to provide

More information

Gallios TM Quick Reference

Gallios TM Quick Reference Gallios TM Quick Reference Purpose: The purpose of this Quick Reference is to provide a simple step by step outline of the information needed to perform various tasks on the system. We begin with basic

More information

MDA V8.3.1 What s New. Functional Enhancements & Usability Improvements

MDA V8.3.1 What s New. Functional Enhancements & Usability Improvements MDA V8.3.1 What s New Functional Enhancements & Usability Improvements Functional Enhancements & Usability Improvements Functional Enhancements Files, Formats and Data Types Usability Improvements Version

More information

CLIMATE ANALOGUES_2.0 R PACKAGE INSTALLATION AND USER GUIDE

CLIMATE ANALOGUES_2.0 R PACKAGE INSTALLATION AND USER GUIDE CLIMATE ANALOGUES_2.0 R PACKAGE INSTALLATION AND USER GUIDE David Arango 1,2,,Edward Jones 1,2, Julian Ramirez-Villegas 1,2,3, Osana Bonilla 1,2, Andy Jarvis 1,2. 1 CGIAR Research Program on Climate Change,

More information

A whirlwind introduction to using R for your research

A whirlwind introduction to using R for your research A whirlwind introduction to using R for your research Jeremy Chacón 1 Outline 1. Why use R? 2. The R-Studio work environment 3. The mock experimental analysis: 1. Writing and running code 2. Getting data

More information

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software.

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software. CenterStone Reports User Guide Version 1 Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software The information contained herein is the property of Manhattan Software,

More information

TopSURV 8: Creating a Custom Code Library. Oscar R. Cantu

TopSURV 8: Creating a Custom Code Library. Oscar R. Cantu Oscar R. Cantu Data Entry Method of Codes versus Notes, review Supported Code Library File Formats, review Export existing Code Library from office software Modify for Import into TopSURV Import a Code

More information

Chapter 2 Assignment (due Thursday, April 19)

Chapter 2 Assignment (due Thursday, April 19) (due Thursday, April 19) Introduction: The purpose of this assignment is to analyze data sets by creating histograms and scatterplots. You will use the STATDISK program for both. Therefore, you should

More information

What s New in Version 4.0

What s New in Version 4.0 Import Version 4.0 Import What s New in Version 4.0 1 Importing Requirements 2 All Applications 2 Microsoft Paint 2 Installing Import 4.0 3 Introduction to Importing 7 Image Import Software Compatibility

More information

ENABLING WEBCHAT HOSTED USER GUIDE

ENABLING WEBCHAT HOSTED USER GUIDE ENABLING WEBCHAT HOSTED USER GUIDE CONTENTS... 1 Sign up Process... 2 Sign up Process (Continued)... 3 Logging In/ Out... 4 Admin Dashboard... 5 Creating, Edit, Delete A User... 5 Creating, Edit, Delete

More information

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Generating a Custom Bill of Materials Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report.

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

Tabular Building Template Manager (BTM)

Tabular Building Template Manager (BTM) Tabular Building Template Manager (BTM) User Guide IES Vi rtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced

More information

TexRAD Research Version Client User Guide Version 3.9

TexRAD Research Version Client User Guide Version 3.9 Imaging tools for medical decision makers Cambridge Computed Imaging Ltd Grange Park Broadway Bourn Cambridge CB23 2TA UK TexRAD Research Version Client User Guide Version 3.9 Release date 23/05/2016 Number

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Colleague UI4.3 Documentation

Colleague UI4.3 Documentation Colleague UI4.3 Documentation Table of Contents Getting Started... 2 Add the Shortcuts to your Desktop... 2 Searching for and Using Forms... 3 Begin Your Form Search... 3 Form Search Results... 3 The Navigation

More information

Tutorial 3: Constructing a PEBI simulation grid

Tutorial 3: Constructing a PEBI simulation grid Objective The aim of this section is to demonstrate how a PEBI simulation grid can be constructed using the Unstructured Gridder option in ECLIPSE Office. The primary purpose of this tutorial is to familiarize

More information