Start > All Programs > OpenGrADS 2.0 > Grads Prompt

Size: px
Start display at page:

Download "Start > All Programs > OpenGrADS 2.0 > Grads Prompt"

Transcription

1 1. GrADS TUTORIAL This document presents a brief tutorial for Brian Doty's Grid Analysis and Display System (GrADS). The following sample session will give you a feeling for how to use the basic capabilities of GrADS. This sample session takes about 30 minutes to run through. 1.1 Starting and quitting GrADS To start up GrADS, click on: Start > All Programs > OpenGrADS 2.0 > Grads Prompt A (black) command window (see figure below) appears. After the prompt: Landscape mode? ( n for portrait): Type: yes (or y) At this point a second (black) graphics output window is opened on your monitor. You will be entering GrADS commands from the command window and the graphics output will appear in the graphics window. Note: on some computers it may take a while before anything happens after you issued the y(es) command, just have patience! The command window usually needs some relocation (click and drag the frame). If you really wish, you may also do some resizing of the window, but after this operation it may take quite a while before the prompt will be visible again! In the window you should now see a prompt: ga->. You will be entering GrADS commands at this prompt and see the results appear in the black graphics window. To leave GrADS at any time enter: 1

2 quit The next command you will enter is one of the following: sdfopen d:/atd/month/month1990.nc (if you are using the January 1990 data) sdfopen d:/atd/month/month2002.nc (if you are using the October 2002 data) sdfopen d:/atd/month/month2007.nc (if you are using the January 2007 data) You may want to see what sort of data is actually stored in this file, so enter: q file q is short for query. The data file contains monthly mean values for 1990, 2002 or 2007 of a limited number of variables. One of the available variables is called air, for air temperature. We can display this variable by entering: d air d is short for display. You will note that the graphics output is displayed in the graphics window. If you want to the display before typing the display command, enter: By default, GrADS will display an X, Y plot at the first time and at the lowest level in the data set. 1.2 Changing GrADS environment settings Now you will enter commands to alter the dimension environment. The display command (and implicitly, the access, operation, and output of the data) will do things with respect to the current dimension environment. You control the dimension environment with the set command: c set lon -90 set lat 40 set lev 500 set t 1 (s the display) (sets longitude to 90 degrees West; positive longitude for deg. East) (sets latitude to 40 degrees North; negative latitude for deg. South) (sets level to 500 mb = 50 kpa) (sets time to first time step) (displays the variable 'hgt i.e. geopotential height) In the above sequence of commands, we have set all four GrADS dimensions to a single value. When we set a dimension to a single value, we say that dimension is "fixed". Since all the dimensions are fixed, when we display a variable we get a single value, in this case the value at the location 90W, 40N, 500mb, and the 1st time in the data set. If we now enter: set lon (X is now a varying dimension) We have set the X dimension, or longitude, to vary. We have done this by entering two values on the set command. We now have one varying dimension (the other dimensions are still fixed), and when we display a variable we get a line graph, in this case a graph of 500mb Heights at 40N. 2

3 Now enter: set lat 0 90 We now have two varying dimensions, so by default we get a contour plot. If we have 3 varying dimensions: c set t 1 5 we get an animation sequence, in this case through time. Now enter: set lon -90 set lat set lev set t 1 d air d uwnd In this case we have set the Y (latitude) and Z (level) dimensions to vary, so we get a vertical cross section. We have also displayed two variables, which simply overlay each other. You may display as many items as you desire overlaid before you enter the command. Another example, in this case with X and T varying (Hovmöller plot): c set lon set lat 40 set lev 500 set t Operations on the data Now that you know how to select the portion of the data set to view, we will move on to the topic of operations on the data. First, set the dimension environment to a Z-Y varying one: set lon set lat 0 90 set lev 500 set t 1 Now let s say that we want to see the temperature in Kelvin instead of degrees Celcius. We can do the conversion by entering: display air

4 Any expression may be entered that involves the standard operators of +, -, *, and /, and which involves operands which may be constants, variables, or functions. An example involving functions: d sqrt(uwnd*uwnd+vwnd*vwnd) to calculate the magnitude of the wind. A function is provided to do this calculation directly: d mag(uwnd,vwnd) Another built-in function is the averaging function: d ave(hgt,t=1,t=5) In this case we calculate the mean over 5 months. We can also remove the mean from the current field: - ave(hgt,t=1,t=5) We can also take means over longitude to remove the zonal mean: -ave(hgt,x=1,x=144) We can also perform time differencing: (t=2)-hgt(t=1) This computes the change between the two fields over 1 month. We could have also done this calculation using an offset from the current time: (t+1) - hgt The complete specification of a variable name is: name.file(dim + - = value,...) If we had two files open, perhaps one with model output, the other with analyses, we could take the difference between the two fields by entering: display hgt.2 - hgt.1 Another built-in function calculates horizontal relative vorticity via finite differencing: d hcurl(uwnd,vwnd) 1.4 Controlling GrADS graphics Now we will move on to the topic of controlling the graphics output. So far, we have allowed GrADS to choose a default contour interval. We can override this by: 4

5 set cint 30 We can also control the contour color by: set ccolor 3 We can select alternate ways of displaying the data: set gxout shaded d hcurl(uwnd,vwnd) This will not display interval values. To obtain a color scale use: run cbar.gs We can apply a cubic smoother by entering: set csmooth on d hcurl(uwnd,vwnd) We can overlay different graphics types: set gxout contour set ccolor 0 set cint 30 and we can annotate: draw title 500mb Heights and Vorticity We can view wind vectors: set gxout vector d uwnd;vwnd Here we are displaying two expressions, the first for the U component of the vector; the 2nd the V component of the vector. We can also colorize the vectors by specifying a 3rd field: or maybe: d uwnd;vwnd;air d uwnd;vwnd;hcurl(uwnd,vwnd) You may display pseudo vectors by displaying any field you want: 5

6 d mag(uwnd,vwnd) ; air Here the U component is the wind speed; the V component is temperature. We can also view streamlines (and colorize them): set gxout stream d uwnd;vwnd;hcurl(uwnd,vwnd) Or we can display actual grid point values: set gxout grid d uwnd We may wish to alter the map background resolution: set lon set lat set mpdset hires set digsize 0.2 set dignum 1 d uwnd To alter the projection: set lon set lat set mpvals set mproj nps set gxout contour set cint 30 In this case, we have told grads to access and operate on data from longitude 140W to 40W, and latitude 15N to 80N. But we have told it to display a polar stereographic plot that contains the region bounded by 120W to 75W and 25N to 65N. The extra plotting area is clipped by the map projection routine. 1.5 Producing hardcopy output At this point we may wish to produce output for printing or incorporating graphics in a text file. GrADS is able to produce output files in two different ways. Simple output When you have a graphic displayed that you want to print, enter the command printim d:/filename.gif gif white This will produce a gif-file with black and white colours reversed (this is the best option for printing). Choosing black instead of white will produce an image that looks like what you have on screen (i.e. with a black background, requires much toner!!). Advanced output 6

7 If you image contains colours that you want to transform into shades of grey, then use the following procedure. Produce a file with the extension.gmf, which stands for GrADS Meta File. Do this by entering the command enable print d:/filename.gmf This enables the print command, and directs print command output to the file given. Any existing contents of this file will be lost (i.e. it will be overwritten). When you have a graphic displayed that you want to print, enter the command print This will copy the vector instructions used to create the current display into the output file in a GrADS metacode format. You must close the output file either by quitting GrADS (quit command) or the reinit command or by entering: disable print At this point a.gmf-file has been produced and is available in the d:/ directory. The PC version of GrADS contains a viewer for these file types. Double clicking the selected.gmf-file opens this file in the GrADS metafile viewer. The viewer shows the selected file with black and white colures reversed. Now the coloured graphic can be turned into a grey graphic by clicking the appropriate icon in the toolbar at the top. Next, then result can (1) be printed directly from the viewer or (2) be saved as a.wmf-file (a Windows meta file). Windows meta files can be read by most graphical packages and can also be inserted directly in most word processors (e.g. Microsoft Word). GrADS also provides utilities which create postscript files from.gmf-files. These utilities will not be discussed here. 1.6 More GrADS capabilities This concludes the sample session. At this point, you may wish to examine the data set further, or you may want to go through the GrADS documentation and try out the other options described. The GrADS documentation can be found on your computer in the form of a number of html-files describing all possibilities of this visualization tool. One of the most important possibilities not described in this tutorial is the GrADS scripting language, which is of great help in reducing the amount of tedious typing of commands. See the module for reference and exercises. 7

Each of the sections has an explanation followed with the option to select the parameters.

Each of the sections has an explanation followed with the option to select the parameters. A)Introduction to DTDM (the code, input control file, how to run) 1)The code for DTDM (Dynamics and Thermodynamics Demonstration Model) was developed in Fortran 77 by Rob Fovell. We have installed the

More information

GrADS for Beginners. Laura Mariotti

GrADS for Beginners. Laura Mariotti GrADS for Beginners Laura Mariotti mariotti@ictp.it Outline n What is GrADS and how do I get it? n GrADS essentials n Getting started n Gridded data sets n Displaying data n Script language n Saving your

More information

Dynamics of the Atmosphere GEMPAK Supplementary Handout

Dynamics of the Atmosphere GEMPAK Supplementary Handout Dynamics of the Atmosphere GEMPAK Supplementary Handout Vertical coordinates PRES Pressure TROP Tropopause level FRZL Freezing level CLDT Cloud-top level CLDL Cloud-base level HGHT Height above the ground

More information

ITACS : Interactive Tool for Analysis of the Climate System

ITACS : Interactive Tool for Analysis of the Climate System Contents 1 2 3 4 ITACS : Interactive Tool for Analysis of the Climate System Features of the ITACS Atmospheric Analysis Data, Outgoing Longwave Radiation (by NOAA), SST, Ocean Analysis Data, etc. Plain

More information

Introduction to Unix, DTDM, GrADS. AOSC115/

Introduction to Unix, DTDM, GrADS.  AOSC115/ Introduction to Unix, DTDM, GrADS http://www.atmos.ucla.edu/~fovell/ AOSC115/ Some Unix basics (basis of Linux and Mac OS X) The command prompt is $ (do not type it) Unix commands presented in Courier

More information

McIDAS-V Tutorial Displaying Gridded Data updated January 2016 (software version 1.5)

McIDAS-V Tutorial Displaying Gridded Data updated January 2016 (software version 1.5) McIDAS-V Tutorial Displaying Gridded Data updated January 2016 (software version 1.5) McIDAS-V is a free, open source, visualization and data analysis software package that is the next generation in SSEC's

More information

McIDAS-V Tutorial Displaying Gridded Data updated June 2015 (software version 1.5)

McIDAS-V Tutorial Displaying Gridded Data updated June 2015 (software version 1.5) McIDAS-V Tutorial Displaying Gridded Data updated June 2015 (software version 1.5) McIDAS-V is a free, open source, visualization and data analysis software package that is the next generation in SSEC's

More information

SES 123 Global and Regional Energy Lab Worksheet

SES 123 Global and Regional Energy Lab Worksheet SES 123 Global and Regional Energy Lab Worksheet Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

SES 123 Global and Regional Energy Lab Procedures

SES 123 Global and Regional Energy Lab Procedures SES 123 Global and Regional Energy Lab Procedures Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

PyNGL & PyNIO Geoscience Visualization & Data IO Modules

PyNGL & PyNIO Geoscience Visualization & Data IO Modules PyNGL & PyNIO Geoscience Visualization & Data IO Modules SciPy 08 Dave Brown National Center for Atmospheric Research Boulder, CO Topics What are PyNGL and PyNIO? Quick summary of PyNGL graphics PyNIO

More information

ECMWF New Users Metview Tutorial

ECMWF New Users Metview Tutorial ECMWF New Users Metview Tutorial Author: Date: URL: Iain Russell 06-Mar-2014 08:43 https://software.ecmwf.int/wiki/display/metv/ecmwf+new+users+metview+tutorial 1 of 12 Table of Contents 1 Preparation

More information

Distributed rainfall runoff model: 1K DHM event. Demonstration and Project

Distributed rainfall runoff model: 1K DHM event. Demonstration and Project CE74.55 Modeling of Water Resources Systems February 26 th and 27 th, 2011 Distributed rainfall runoff model: 1K DHM event Demonstration and Project Yasuto TACHIKAWA Dept. of Civil and Earth Resources

More information

Lighting: FlucsDL (daylighting)

Lighting: FlucsDL (daylighting) Lighting: FlucsDL (daylighting) User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in

More information

Tutorial 01 Quick Start Tutorial

Tutorial 01 Quick Start Tutorial Tutorial 01 Quick Start Tutorial Homogeneous single material slope No water pressure (dry) Circular slip surface search (Grid Search) Intro to multi scenario modeling Introduction Model This quick start

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

33 Exploring Report Data using Drill Mode

33 Exploring Report Data using Drill Mode 33 Exploring Report Data using Drill Mode Drill Functionality enables you to explore data by moving up, down and across the dataset(s) held within the document. For example, we have the following data

More information

TCL Interface to GrADS - OpenGrads Wiki

TCL Interface to GrADS - OpenGrads Wiki TCL Interface to GrADS From OpenGrads Wiki Tclgrads is a library of procedures for executing commands in GrADS from a Tcl script. It uses Tcl (http://www.tcl.tk) to send commands to GrADS and parse its

More information

COMPOSER User Manual

COMPOSER User Manual COMPOSER User Manual June 2009 Contents I. II. III. IV. Getting Started...Pg. 1 The Map Interface Pg. 2 Toolbar Menus......Pg. 3 Right Hand Tool Panel Menus... Pg. 11 1 Getting Started To get started,

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

METIER Course n februray Introduction to ArcView 3

METIER Course n februray Introduction to ArcView 3 METIER Course n 2 Information Management in Environmental Sciences 19-23 februray 2007 Introduction to ArcView 3 tél : (33) 04 67 54 87 54 Maison de la Télédétection en Languedoc-Roussillon fax : (33)

More information

How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and

How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and save it directly into Microsoft Word (pg 8 9) 4. How to

More information

1 An Introduction to GrADS Software

1 An Introduction to GrADS Software 1 An Introduction to GrADS Software The Grid Analysis and Display System (GrADS) is an interactive desktop tool to display earth science data. The followings are the features of GrADS. Advantages Free

More information

Acquiring and Processing NREL Wind Prospector Data. Steven Wallace, Old Saw Consulting, 27 Sep 2016

Acquiring and Processing NREL Wind Prospector Data. Steven Wallace, Old Saw Consulting, 27 Sep 2016 Acquiring and Processing NREL Wind Prospector Data Steven Wallace, Old Saw Consulting, 27 Sep 2016 NREL Wind Prospector Interactive web page for viewing and querying wind data Over 40,000 sites in the

More information

Visualization with ParaView

Visualization with ParaView Visualization with Before we begin Make sure you have 3.10.1 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.html http://www.paraview.org/ Background

More information

Open a new Excel workbook and look for the Standard Toolbar.

Open a new Excel workbook and look for the Standard Toolbar. This activity shows how to use a spreadsheet to draw line graphs. Open a new Excel workbook and look for the Standard Toolbar. If it is not there, left click on View then Toolbars, then Standard to make

More information

Prerequisites: This tutorial assumes that you are familiar with the menu structure in FLUENT, and that you have solved Tutorial 1.

Prerequisites: This tutorial assumes that you are familiar with the menu structure in FLUENT, and that you have solved Tutorial 1. Tutorial 22. Postprocessing Introduction: In this tutorial, the postprocessing capabilities of FLUENT are demonstrated for a 3D laminar flow involving conjugate heat transfer. The flow is over a rectangular

More information

You will create some icons yourself, but some are supplied for you. If you are at ECMWF then you can copy the icons from the command line like this:

You will create some icons yourself, but some are supplied for you. If you are at ECMWF then you can copy the icons from the command line like this: Metview WMS Tutorial This tutorial explains how to use the WMS (Web Map Service) client within Metview. Requirements Please note that this tutorial requires Metview version 4.0.5 or later. Preparations

More information

ISF Watchkeeper 3 Getting Started Users Guide

ISF Watchkeeper 3 Getting Started Users Guide ISF Watchkeeper 3 Getting Started Users Guide ISF Watchkeeper is a computer software program, for use on board ships. The software is designed for maintaining records of seafarers hours of work and rest,

More information

ECDL Module 6 REFERENCE MANUAL

ECDL Module 6 REFERENCE MANUAL ECDL Module 6 REFERENCE MANUAL Presentation Microsoft PowerPoint XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 6 (USING POWERPOINT XP) - MANUAL 6.1 GETTING STARTED... 4 6.1.1 FIRST STEPS WITH

More information

ENVI Tutorial: Interactive Display Functions

ENVI Tutorial: Interactive Display Functions ENVI Tutorial: Interactive Display Functions Table of Contents OVERVIEW OF THIS TUTORIAL...2 OPENING A PANCHROMATIC (SPOT) IMAGE FILE...2 PERFORMING INTERACTIVE CONTRAST STRETCHING...2 Linear Stretching

More information

Doc #: IDI06-11F Rev: 1.3 Issued: 22/02/18. Well Seeker PRO How To Guide Rev 1.3. Page 1 of 26

Doc #: IDI06-11F Rev: 1.3 Issued: 22/02/18. Well Seeker PRO How To Guide Rev 1.3. Page 1 of 26 Well Seeker PRO How To Guide Rev 1.3 Page 1 of 26 Contents 1.0 - Getting Started... 4 1.1 - Display... 4 2.0 - Creating a new Well... 5 2.1 - Unit Selection... 5 2.2 - New Instant Plan / Survey... 6 2.3

More information

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files.

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files. Parts of this functionality will only be available in INTERAXO Pro. Introduction The viewer provides users with the capability to load a wide variety of document types online using a web browser. Documents

More information

NEVADA CLIMATE CHANGE PORTAL WORKSHOP

NEVADA CLIMATE CHANGE PORTAL WORKSHOP NEVADA CLIMATE CHANGE PORTAL WORKSHOP SAMPLE PORTAL ACTIVITIES Welcome to the Nevada Climate Change Portal! To help guide your exploration of the web site, we have created a list of activities that demonstrate

More information

Natural Light in Design: IAP 2009

Natural Light in Design: IAP 2009 ECOTECT TUTORIAL --Si Siân Kleindienst-- 1 Getting Started 1.1 -- Entering the License The first time you start Ecotect, it will present you with this screen: You should begin by clicking on activate license

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

Full Search Map Tab. This map is the result of selecting the Map tab within Full Search.

Full Search Map Tab. This map is the result of selecting the Map tab within Full Search. Full Search Map Tab This map is the result of selecting the Map tab within Full Search. This map can be used when defining your parameters starting from a Full Search. Once you have entered your desired

More information

This guide will show you how to create a basic multi-media PowerPoint presentation containing text, graphics, charts, and audio/video elements.

This guide will show you how to create a basic multi-media PowerPoint presentation containing text, graphics, charts, and audio/video elements. This guide will show you how to create a basic multi-media PowerPoint presentation containing text, graphics, charts, and audio/video elements. Before starting the steps outlined in this guide, it is recommended

More information

Basic Tasks in ArcGIS 10.3.x

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

More information

All textures produced with Texture Maker. Not Applicable. Beginner.

All textures produced with Texture Maker. Not Applicable. Beginner. Tutorial for Texture Maker 2.8 or above. Note:- Texture Maker is a texture creation tool by Tobias Reichert. For further product information please visit the official site at http://www.texturemaker.com

More information

A Step-by-step guide to creating a Professional PowerPoint Presentation

A Step-by-step guide to creating a Professional PowerPoint Presentation Quick introduction to Microsoft PowerPoint A Step-by-step guide to creating a Professional PowerPoint Presentation Created by Cruse Control creative services Tel +44 (0) 1923 842 295 training@crusecontrol.com

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

EcoGEnIE: A practical course in global ocean ecosystem modelling

EcoGEnIE: A practical course in global ocean ecosystem modelling EcoGEnIE: A practical course in global ocean ecosystem modelling Lesson zero.c: Ocean circulation and Atlantic overturning stability Stuff to keep in mind: Nothing at all keep your mind completely empty

More information

JASCO CANVAS PROGRAM OPERATION MANUAL

JASCO CANVAS PROGRAM OPERATION MANUAL JASCO CANVAS PROGRAM OPERATION MANUAL P/N: 0302-1840A April 1999 Contents 1. What is JASCO Canvas?...1 1.1 Features...1 1.2 About this Manual...1 2. Installation...1 3. Operating Procedure - Tutorial...2

More information

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database Microsoft Office Access 2003 Tutorial 3b Querying a Database 1 Learn how to use the Query window in Design view The Query window in Design view allows you to specify the results you want for a query. In

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

EnSight 10 Basic Training Exercises

EnSight 10 Basic Training Exercises Exercise 1: Color the Comanche helicopter EnSight 10 Basic Training Exercises 1. Start EnSight 10 and press the Cancel button on the Welcome screen 2. Click on File -> Open and select the Simple Interface

More information

Appendix B: Creating and Analyzing a Simple Model in Abaqus/CAE

Appendix B: Creating and Analyzing a Simple Model in Abaqus/CAE Getting Started with Abaqus: Interactive Edition Appendix B: Creating and Analyzing a Simple Model in Abaqus/CAE The following section is a basic tutorial for the experienced Abaqus user. It leads you

More information

This user guide covers select features of the desktop site. These include:

This user guide covers select features of the desktop site. These include: User Guide myobservatory Topics Covered: Desktop Site, Select Features Date: January 27, 2014 Overview This user guide covers select features of the desktop site. These include: 1. Data Uploads... 2 1.1

More information

Chapter 2 Surfer Tutorial

Chapter 2 Surfer Tutorial Chapter 2 Surfer Tutorial Overview This tutorial introduces you to some of Surfer s features and shows you the steps to take to produce maps. In addition, the tutorial will help previous Surfer users learn

More information

AEMLog Users Guide. Version 1.01

AEMLog Users Guide. Version 1.01 AEMLog Users Guide Version 1.01 INTRODUCTION...2 DOCUMENTATION...2 INSTALLING AEMLOG...4 AEMLOG QUICK REFERENCE...5 THE MAIN GRAPH SCREEN...5 MENU COMMANDS...6 File Menu...6 Graph Menu...7 Analysis Menu...8

More information

FlucsDL User Guide IES Virtual Environment 6.4. Lighting

FlucsDL User Guide IES Virtual Environment 6.4. Lighting FlucsDL User Guide IES Virtual Environment Lighting 1. Introduction to FlucsDL... 8 1.1. What s new in this version... 8 1.2. Calculations... 8 2. Menus... 9 2.1. File Menu... 9 2.1.1. Save Project, Save

More information

GEBCO Digital Atlas Software Interface Users Guide

GEBCO Digital Atlas Software Interface Users Guide GEBCO Digital Atlas Software Interface Users Guide Introduction Using the GDA Software Interface GDA Software Interface Menu Bar GDA Software Interface Toolbar Red text in this document indicates active

More information

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide SyncFirst Standard Quick Start Guide Step-By-Step Guide How to Use This Manual This manual contains the complete documentation set for the SyncFirst system. The SyncFirst documentation set consists of

More information

Ocean Data View (ODV) Manual V1.0

Ocean Data View (ODV) Manual V1.0 Ocean Data View (ODV) Manual V1.0 Prepared by the Coastal and Regional Oceanography Lab UNSW, Australia (www.oceanography.unsw.edu.au ) for the Sydney Institute of Marine Science. Table of Contents 1 Introduction

More information

HBS Training - IT Solutions. PlanWeb. Intermediate

HBS Training - IT Solutions. PlanWeb. Intermediate HBS Training - IT Solutions PlanWeb Intermediate CONTENTS Logging on to the system...3 The PlanWeb Window...5 The Tool Bar...6 The Status Bar...6 The Map Window...6 The Information Window...7 Changing

More information

Exercise 1: Introduction to MapInfo

Exercise 1: Introduction to MapInfo Geog 578 Exercise 1: Introduction to MapInfo Page: 1/22 Geog 578: GIS Applications Exercise 1: Introduction to MapInfo Assigned on January 25 th, 2006 Due on February 1 st, 2006 Total Points: 10 0. Convention

More information

SaVi - satellite constellation visualization INTRODUCTION AND INSTRUCTIONS FOR USE

SaVi - satellite constellation visualization INTRODUCTION AND INSTRUCTIONS FOR USE SaVi - satellite constellation visualization INTRODUCTION AND INSTRUCTIONS FOR USE Constellations lecture by Lloyd Wood, International Space University Summer Session '06. 1. To launch SaVi SaVi is installed

More information

Metview 4 ECMWF s latest generation meteorological workstation

Metview 4 ECMWF s latest generation meteorological workstation Metview 4 ECMWF s latest generation meteorological workstation Iain Russell, Stephan Siemen, Fernando Ii, Sándor Kertész, Sylvie Lamy-Thépaut, Vesa Karhila Version 4 builds on the flexible and proven modular

More information

Touring the Universe through Binoculars Atlas Help File

Touring the Universe through Binoculars Atlas Help File Using the Atlas Touring the Universe through Binoculars Atlas Help File The atlas charts are controlled with the floating toolbar pictured above along the left side of the screen. The function of each

More information

Excel Core Certification

Excel Core Certification Microsoft Office Specialist 2010 Microsoft Excel Core Certification 2010 Lesson 6: Working with Charts Lesson Objectives This lesson introduces you to working with charts. You will look at how to create

More information

Terrain Modeling with ArcView GIS from ArcUser magazine

Terrain Modeling with ArcView GIS from ArcUser magazine Lesson 6: DEM-Based Terrain Modeling Lesson Goal: Lean how to output a grid theme that can be used to generate a thematic two-dimensional map, compute an attractive hillshaded map, and create a contour

More information

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance Good Practice Guide No 8 An Introduction to Spreadsheets for Finance WYCAS provides a range of specialist services designed to meet the needs of the third sector One to one support and training Preparation

More information

SunCast - User Guide. IES Virtual Environment 2013

SunCast - User Guide. IES Virtual Environment 2013 SunCast - User Guide IES Virtual Environment 2013 Contents 1 Introduction to SunCast... 3 1.1 SunCast Features...3 1.2 Getting Help...3 2 Starting SunCast... 3 2.1 Application Bar...3 2.2 Mode...4 3 The

More information

ENVI Classic Tutorial: Interactive Display Functions 2

ENVI Classic Tutorial: Interactive Display Functions 2 ENVI Classic Tutorial: Interactive Display Functions Interactive Display Functions 2 Files Used in this Tutorial 2 Opening a Panchromatic (SPOT) Image File 3 Performing Interactive Contrast Stretching

More information

Advanced GIS Using GRASS to create SVF and LRM

Advanced GIS Using GRASS to create SVF and LRM Advanced GIS Using GRASS to create SVF and LRM Table of Contents Aims...2 Outcomes...2 How to use this booklet...2 Task 1 Creating a GRASS location from QGIS...3 Task 2 Changing the GRASS Region...8 Task

More information

Areacomp 2010 Land Area Calculating Converting and Drawing Software For Windows operating systems up to and including Vista and Windows 7

Areacomp 2010 Land Area Calculating Converting and Drawing Software For Windows operating systems up to and including Vista and Windows 7 Areacomp 2010 Land Area Calculating Converting and Drawing Software For Windows operating systems up to and including Vista and Windows 7 Areacomp 2010 User Guide Page 1 of 25 www.ajmsurveys.com Areacomp

More information

Quick Start: GeoDAS-LT with Single Beam Echo Sounder

Quick Start: GeoDAS-LT with Single Beam Echo Sounder Quick Start: GeoDAS-LT with Single Beam Echo Sounder I. Setting up GeoDAS-LT for Single Beam Echo Sounder Survey 1. Connect your single beam echo sounder, GPS receiver and other sensors (e.g. gyro and

More information

GeoTide Predictor User Guide

GeoTide Predictor User Guide GeoTide Predictor GeoTide Predictor User Guide The software described in this document is provided under licence and may only be used in accordance with the terms of the agreement. Whilst every attempt

More information

MLEP Intermediate GPS Workshop Exercise Two Using Maps

MLEP Intermediate GPS Workshop Exercise Two Using Maps During this exercise, you will scale coordinates from a map and enter them into the GPS receiver. This requires a ruler (provided) and all calculations require a paper and pencil. During this exercise,

More information

Getting Started with DADiSP

Getting Started with DADiSP Section 1: Welcome to DADiSP Getting Started with DADiSP This guide is designed to introduce you to the DADiSP environment. It gives you the opportunity to build and manipulate your own sample Worksheets

More information

Metview 4 ECMWF s latest generation meteorological workstation

Metview 4 ECMWF s latest generation meteorological workstation from Newsletter Number 126 Winter 2010/11 COMPUTING Metview 4 ECMWF s latest generation meteorological workstation doi:10.21957/v4xszl60 This article appeared in the Computing section of ECMWF Newsletter

More information

Introduction to Fitting ASCII Data with Errors: Single Component Source Models

Introduction to Fitting ASCII Data with Errors: Single Component Source Models Fitting ASCII Data Sherpa Introduction to Fitting ASCII Data with Errors: Single Component Source Models Sherpa Threads (CIAO 3.4) Introduction to Fitting ASCII Data with Errors: Single Component Source

More information

DragNet (Fixed WiMAX) d Manual version 1.1

DragNet (Fixed WiMAX) d Manual version 1.1 DragNet (Fixed WiMAX) 802.16d Manual version 1.1 Projector User Manual Installation...... 2 Quick Start... 2 Create a Projection...... 3 Getting a Quick Projection........ 6 Procedure for Creating a BVS

More information

Distributed flow routing model: 1K FRM event. Demonstration and Project

Distributed flow routing model: 1K FRM event. Demonstration and Project CE74.55 Modeling of Water Resources Systems March 21 st, 22 th and 23 rd, 2012 Distributed flow routing model: 1K FRM event Demonstration and Project Yasuto TACHIKAWA Dept. of Civil and Earth Resources

More information

HBS Training - IT Solutions. PlanWeb. Introduction

HBS Training - IT Solutions. PlanWeb. Introduction HBS Training - IT Solutions PlanWeb Introduction CONTENTS Logging on to the system...3 The PlanWeb Window...5 The Tool Bar...6 The Status Bar...6 The Map Window...6 The Information Window...7 Changing

More information

3 Selecting the standard map and area of interest

3 Selecting the standard map and area of interest Anomalies, EOF/PCA Mati Kahru 2005-2008 1 Anomalies, EOF/PC analysis with WAM 1 Introduction Calculating anomalies is a method of change detection in time series. Empirical Orthogonal Function (EOF) analysis

More information

AOS 452 Lab 9 Handout Automated Plot Generation

AOS 452 Lab 9 Handout Automated Plot Generation 1 AOS 452 Lab 9 Handout Automated Plot Generation INTRODUCTION The command that is new to this lab is crontab. Crontab allows one to run scripts automatically without having to be at the computer terminal

More information

+ Make it from the satellite images in sale, (Easier & Faster, but not always available) (It does cost much. An astronomical number!

+ Make it from the satellite images in sale, (Easier & Faster, but not always available) (It does cost much. An astronomical number! BaseMap: + Look for it among the existent digital maps, (Easiest & Fastest because no processing required) (Therefore, the most desirable, but not always available) (It can cost much) + Make it from the

More information

Introduction to GIS 2011

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

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

Getting Started With VERIS 6.0

Getting Started With VERIS 6.0 Getting Started With VERIS 6.0 Welcome to VERIS 6.0. This newly enhanced version simplifies program use for the technician while maintaining the versatility and flexibility of previous versions. With this

More information

PROFESSIONAL TUTORIAL. Trinity Innovations 2010 All Rights Reserved.

PROFESSIONAL TUTORIAL. Trinity Innovations 2010 All Rights Reserved. PROFESSIONAL TUTORIAL Trinity Innovations 2010 All Rights Reserved www.3dissue.com PART ONE Converting PDFs into the correct JPEG format To create a new digital edition from a PDF we are going to use the

More information

Intro to GMT Part 1. Beth Meyers Matt Herman

Intro to GMT Part 1. Beth Meyers Matt Herman Intro to GMT Part 1 Beth Meyers Matt Herman By the end of of this tutorial you will be able to create the following figures: By the end of of this tutorial you will be able to create the following figures:

More information

ViewONE User Manual !"##$$$

ViewONE User Manual !##$$$ ViewONE User Manual!"##$$$ Contents Introduction 3 Features 4 The User interface 5 Toolbars 6 Menus 19 The Keyboard 29 ViewONE is a Java applet that extends your web browser so that you can view, zoom,

More information

GeoGebra 4. Calculus - Differentiation

GeoGebra 4. Calculus - Differentiation GeoGebra 4 Calculus - Differentiation Approximating the gradient of a curve with a chord Creating Slider-dependent points on a graph Open a new file and create 3 Slider controls named n, p and h. From

More information

Introduction to GMT (Part 1)

Introduction to GMT (Part 1) Introduction to GMT (Part 1) An example of what you can make with GMT! Beth Meyers Matt Herman Last updated: 31 January 2018 Objectives Basic GMT commands psbasemap pscoast psxy GMT syntax and command

More information

Overview: Printing MFworks Documents

Overview: Printing MFworks Documents Overview: Printing MFworks Documents The Layout Window Printing Printing to Disk Overview: Printing MFworks Documents MFworks is designed to print to any standard Windows compatible printer this includes

More information

IT Services Financial Services. IT Services Financial Services.

IT Services Financial Services. IT Services Financial Services. eledgers IT Services Financial Services IT Services Financial Services http://finserv.uchicago.edu Table of Contents Logging into eledgers... 3 17BThe eledgers Workspace... 4 Basic Search using Custom

More information

ClipArt and Image Files

ClipArt and Image Files ClipArt and Image Files Chapter 4 Adding pictures and graphics to our document not only breaks the monotony of text it can help convey the message quickly. Objectives In this section you will learn how

More information

Tutorial 1: Standard usage

Tutorial 1: Standard usage Introduction This tutorial details the following steps: importing an existing data set, editing the data, saving the project, running and monitoring simulation, viewing results vectors, and creating reports.

More information

Getting Started. What is SAS/SPECTRAVIEW Software? CHAPTER 1

Getting Started. What is SAS/SPECTRAVIEW Software? CHAPTER 1 3 CHAPTER 1 Getting Started What is SAS/SPECTRAVIEW Software? 3 Using SAS/SPECTRAVIEW Software 5 Data Set Requirements 5 How the Software Displays Data 6 Spatial Data 6 Non-Spatial Data 7 Summary of Software

More information

Section 8. 8 Format Editor

Section 8. 8 Format Editor Section 8 8 Format Editor The Format Editor allows the creation and editing of the log presentation or format files. The output of the format editor are files of the type *.prs which are subsequently used

More information

Tutorial 3 Sets, Planes and Queries

Tutorial 3 Sets, Planes and Queries Tutorial 3 Sets, Planes and Queries Add User Plane Add Set Window / Freehand / Cluster Analysis Weighted / Unweighted Planes Query Examples Major Planes Plot Introduction This tutorial is a continuation

More information

Exercise (3.1) Question 1: How will you describe the position of a table lamp on your study table to another person?

Exercise (3.1) Question 1: How will you describe the position of a table lamp on your study table to another person? Class IX - NCERT Maths Exercise (3.1) Question 1: How will you describe the position of a table lamp on your study table to another person? Solution 1: Let us consider the given below figure of a study

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

Ariel Dynamics, Inc. TRIM MODULE. Revision 1.0. Ariel Dynamics, Inc. C3D TRANSFORM MODULE

Ariel Dynamics, Inc. TRIM MODULE. Revision 1.0. Ariel Dynamics, Inc. C3D TRANSFORM MODULE Ariel Dynamics, Inc. TRIM MODULE Revision 1.0 Ariel Dynamics, Inc. C3D TRANSFORM MODULE Contents i Contents ARIEL TRIM PROGRAM 1 INTRODUCTION...1 WHAT S NEW IN TRIM 1.0...1 SYSTEM REQUIREMENTS...2 TO START

More information

Geology Interpretation Project Big Injun Sand & Trenton-Black River plays, Central Appalachian Basin, WV

Geology Interpretation Project Big Injun Sand & Trenton-Black River plays, Central Appalachian Basin, WV Geology 554 - Interpretation Project Big Injun Sand & Trenton-Black River plays, Central Appalachian Basin, WV Part 1 - Access and Basic Interpretation of the Seismic Data Using Kingdom T. H. Wilson (2005)

More information

Interpolation. Computer User Training Course Paul Dando. User Support. ECMWF 25 February 2016

Interpolation. Computer User Training Course Paul Dando. User Support. ECMWF 25 February 2016 Interpolation Computer User Training Course 2016 Paul Dando User Support advisory@ecmwf.int ECMWF 25 February 2016 1 Contents Introduction Overview of Interpolation Spectral Transformations Grid point

More information

Contents. Table of Contents. Table of Contents... iii Preface... xvii. Getting Started iii

Contents. Table of Contents. Table of Contents... iii Preface... xvii. Getting Started iii Contents Discovering the Possibilities... iii Preface... xvii Preface to the First Edition xvii Preface to the Second Edition xviii Getting Started... 1 Chapter Overview 1 Philosophy Behind this Book 1

More information